Thomas Gleixner | 20c8ccb | 2019-06-04 10:11:32 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Kernel-based Virtual Machine driver for Linux |
| 4 | * |
| 5 | * derived from drivers/kvm/kvm_main.c |
| 6 | * |
| 7 | * Copyright (C) 2006 Qumranet, Inc. |
Ben-Ami Yassour | 4d5c5d0 | 2008-07-28 19:26:26 +0300 | [diff] [blame] | 8 | * Copyright (C) 2008 Qumranet, Inc. |
| 9 | * Copyright IBM Corporation, 2008 |
Nicolas Kaiser | 9611c18 | 2010-10-06 14:23:22 +0200 | [diff] [blame] | 10 | * Copyright 2010 Red Hat, Inc. and/or its affiliates. |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 11 | * |
| 12 | * Authors: |
| 13 | * Avi Kivity <avi@qumranet.com> |
| 14 | * Yaniv Kamay <yaniv@qumranet.com> |
Ben-Ami Yassour | 4d5c5d0 | 2008-07-28 19:26:26 +0300 | [diff] [blame] | 15 | * Amit Shah <amit.shah@qumranet.com> |
| 16 | * Ben-Ami Yassour <benami@il.ibm.com> |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 17 | */ |
| 18 | |
Avi Kivity | edf8841 | 2007-12-16 11:02:48 +0200 | [diff] [blame] | 19 | #include <linux/kvm_host.h> |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 20 | #include "irq.h" |
Zhang Xiantao | 1d737c8 | 2007-12-14 09:35:10 +0800 | [diff] [blame] | 21 | #include "mmu.h" |
Sheng Yang | 7837699 | 2008-01-28 05:10:22 +0800 | [diff] [blame] | 22 | #include "i8254.h" |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 23 | #include "tss.h" |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 24 | #include "kvm_cache_regs.h" |
Sean Christopherson | 2f728d6 | 2020-02-18 15:29:49 -0800 | [diff] [blame] | 25 | #include "kvm_emulate.h" |
Avi Kivity | 26eef70 | 2008-07-03 14:59:22 +0300 | [diff] [blame] | 26 | #include "x86.h" |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 27 | #include "cpuid.h" |
Wei Huang | 474a5bb | 2015-06-19 13:54:23 +0200 | [diff] [blame] | 28 | #include "pmu.h" |
Andrey Smetanin | e83d588 | 2015-07-03 15:01:34 +0300 | [diff] [blame] | 29 | #include "hyperv.h" |
Suravee Suthikulpanit | 8df14af | 2019-11-14 14:15:06 -0600 | [diff] [blame] | 30 | #include "lapic.h" |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 31 | |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 32 | #include <linux/clocksource.h> |
Ben-Ami Yassour | 4d5c5d0 | 2008-07-28 19:26:26 +0300 | [diff] [blame] | 33 | #include <linux/interrupt.h> |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 34 | #include <linux/kvm.h> |
| 35 | #include <linux/fs.h> |
| 36 | #include <linux/vmalloc.h> |
Paul Gortmaker | 1767e93 | 2016-07-13 20:19:00 -0400 | [diff] [blame] | 37 | #include <linux/export.h> |
| 38 | #include <linux/moduleparam.h> |
Zhang Xiantao | 0de1034 | 2007-11-20 16:25:04 +0800 | [diff] [blame] | 39 | #include <linux/mman.h> |
Marcelo Tosatti | 2bacc55 | 2007-12-12 10:46:12 -0500 | [diff] [blame] | 40 | #include <linux/highmem.h> |
Joerg Roedel | 19de40a | 2008-12-03 14:43:34 +0100 | [diff] [blame] | 41 | #include <linux/iommu.h> |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 42 | #include <linux/intel-iommu.h> |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 43 | #include <linux/cpufreq.h> |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 44 | #include <linux/user-return-notifier.h> |
Marcelo Tosatti | a983fb2 | 2009-12-23 14:35:23 -0200 | [diff] [blame] | 45 | #include <linux/srcu.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 46 | #include <linux/slab.h> |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 47 | #include <linux/perf_event.h> |
Lai Jiangshan | 7bee342 | 2010-06-02 17:06:03 +0800 | [diff] [blame] | 48 | #include <linux/uaccess.h> |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 49 | #include <linux/hash.h> |
Joerg Roedel | a1b60c1 | 2011-09-06 18:46:34 +0200 | [diff] [blame] | 50 | #include <linux/pci.h> |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 51 | #include <linux/timekeeper_internal.h> |
| 52 | #include <linux/pvclock_gtod.h> |
Feng Wu | 8727688 | 2015-09-18 22:29:40 +0800 | [diff] [blame] | 53 | #include <linux/kvm_irqfd.h> |
| 54 | #include <linux/irqbypass.h> |
Ingo Molnar | 3905f9a | 2017-02-05 12:07:04 +0100 | [diff] [blame] | 55 | #include <linux/sched/stat.h> |
Wanpeng Li | 0c5f81d | 2019-07-06 09:26:51 +0800 | [diff] [blame] | 56 | #include <linux/sched/isolation.h> |
Tom Lendacky | d0ec49d | 2017-07-17 16:10:27 -0500 | [diff] [blame] | 57 | #include <linux/mem_encrypt.h> |
Ingo Molnar | 3905f9a | 2017-02-05 12:07:04 +0100 | [diff] [blame] | 58 | |
Avi Kivity | aec51dc | 2009-07-01 16:01:02 +0300 | [diff] [blame] | 59 | #include <trace/events/kvm.h> |
Xiao Guangrong | 2ed152a | 2010-03-10 19:00:43 +0800 | [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> |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 70 | #include <asm/mshyperv.h> |
Vitaly Kuznetsov | 0092e43 | 2018-01-24 14:23:37 +0100 | [diff] [blame] | 71 | #include <asm/hypervisor.h> |
Chao Peng | bf8c55d | 2018-10-24 16:05:14 +0800 | [diff] [blame] | 72 | #include <asm/intel_pt.h> |
Masami Hiramatsu | b3dc069 | 2019-09-06 22:13:59 +0900 | [diff] [blame] | 73 | #include <asm/emulate_prefix.h> |
Michael Kelley | dd2cb34 | 2019-07-01 04:26:06 +0000 | [diff] [blame] | 74 | #include <clocksource/hyperv_timer.h> |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 75 | |
Dave Hansen | d1898b7 | 2016-06-01 10:42:20 -0700 | [diff] [blame] | 76 | #define CREATE_TRACE_POINTS |
| 77 | #include "trace.h" |
| 78 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 79 | #define MAX_IO_MSRS 256 |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 80 | #define KVM_MAX_MCE_BANKS 32 |
Ashok Raj | c45dcc7 | 2016-06-22 14:59:56 +0800 | [diff] [blame] | 81 | u64 __read_mostly kvm_mce_cap_supported = MCG_CTL_P | MCG_SER_P; |
| 82 | EXPORT_SYMBOL_GPL(kvm_mce_cap_supported); |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 83 | |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 84 | #define emul_to_vcpu(ctxt) \ |
Sean Christopherson | c9b8b07 | 2020-02-18 15:29:48 -0800 | [diff] [blame] | 85 | ((struct kvm_vcpu *)(ctxt)->vcpu) |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 86 | |
Joerg Roedel | 50a37eb | 2008-01-31 14:57:38 +0100 | [diff] [blame] | 87 | /* EFER defaults: |
| 88 | * - enable syscall per default because its emulated by KVM |
| 89 | * - enable LME and LMA per default on 64 bit KVM |
| 90 | */ |
| 91 | #ifdef CONFIG_X86_64 |
Lai Jiangshan | 1260edbe | 2011-02-21 11:51:35 +0800 | [diff] [blame] | 92 | static |
| 93 | 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] | 94 | #else |
Lai Jiangshan | 1260edbe | 2011-02-21 11:51:35 +0800 | [diff] [blame] | 95 | static u64 __read_mostly efer_reserved_bits = ~((u64)EFER_SCE); |
Joerg Roedel | 50a37eb | 2008-01-31 14:57:38 +0100 | [diff] [blame] | 96 | #endif |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 97 | |
Sean Christopherson | b11306b | 2019-12-10 14:44:13 -0800 | [diff] [blame] | 98 | static u64 __read_mostly cr4_reserved_bits = CR4_RESERVED_BITS; |
| 99 | |
Paolo Bonzini | 833b45d | 2019-09-30 18:48:44 +0200 | [diff] [blame] | 100 | #define VM_STAT(x, ...) offsetof(struct kvm, stat.x), KVM_STAT_VM, ## __VA_ARGS__ |
| 101 | #define VCPU_STAT(x, ...) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU, ## __VA_ARGS__ |
Hollis Blanchard | 417bc30 | 2007-10-31 17:24:23 -0500 | [diff] [blame] | 102 | |
Radim Krčmář | c519265 | 2016-07-12 22:09:28 +0200 | [diff] [blame] | 103 | #define KVM_X2APIC_API_VALID_FLAGS (KVM_X2APIC_API_USE_32BIT_IDS | \ |
| 104 | KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK) |
Radim Krčmář | 37131313 | 2016-07-12 22:09:27 +0200 | [diff] [blame] | 105 | |
Gleb Natapov | cb142eb | 2009-08-09 15:17:40 +0300 | [diff] [blame] | 106 | static void update_cr8_intercept(struct kvm_vcpu *vcpu); |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 107 | static void process_nmi(struct kvm_vcpu *vcpu); |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 108 | static void enter_smm(struct kvm_vcpu *vcpu); |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 109 | static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags); |
Ken Hofsass | 01643c5 | 2018-01-31 16:03:36 -0800 | [diff] [blame] | 110 | static void store_regs(struct kvm_vcpu *vcpu); |
| 111 | static int sync_regs(struct kvm_vcpu *vcpu); |
Avi Kivity | 674eea0 | 2008-02-11 18:37:23 +0200 | [diff] [blame] | 112 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 113 | struct kvm_x86_ops kvm_x86_ops __read_mostly; |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 114 | EXPORT_SYMBOL_GPL(kvm_x86_ops); |
Zhang Xiantao | 97896d0 | 2007-11-14 20:09:30 +0800 | [diff] [blame] | 115 | |
Paolo Bonzini | 893590c | 2015-11-06 11:46:24 +0100 | [diff] [blame] | 116 | static bool __read_mostly ignore_msrs = 0; |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 117 | module_param(ignore_msrs, bool, S_IRUGO | S_IWUSR); |
Andre Przywara | ed85c06 | 2009-06-25 12:36:49 +0200 | [diff] [blame] | 118 | |
Eyal Moscovici | fab0aa3 | 2017-11-08 14:32:08 +0200 | [diff] [blame] | 119 | static bool __read_mostly report_ignored_msrs = true; |
| 120 | module_param(report_ignored_msrs, bool, S_IRUGO | S_IWUSR); |
| 121 | |
Wanpeng Li | 4c27625 | 2018-05-05 04:02:32 -0700 | [diff] [blame] | 122 | unsigned int min_timer_period_us = 200; |
Marcelo Tosatti | 9ed96e8 | 2014-01-06 12:00:02 -0200 | [diff] [blame] | 123 | module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR); |
| 124 | |
Marcelo Tosatti | 630994b | 2015-05-12 22:42:04 -0300 | [diff] [blame] | 125 | static bool __read_mostly kvmclock_periodic_sync = true; |
| 126 | module_param(kvmclock_periodic_sync, bool, S_IRUGO); |
| 127 | |
Paolo Bonzini | 893590c | 2015-11-06 11:46:24 +0100 | [diff] [blame] | 128 | bool __read_mostly kvm_has_tsc_control; |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 129 | EXPORT_SYMBOL_GPL(kvm_has_tsc_control); |
Paolo Bonzini | 893590c | 2015-11-06 11:46:24 +0100 | [diff] [blame] | 130 | u32 __read_mostly kvm_max_guest_tsc_khz; |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 131 | EXPORT_SYMBOL_GPL(kvm_max_guest_tsc_khz); |
Haozhong Zhang | bc9b961 | 2015-10-20 15:39:01 +0800 | [diff] [blame] | 132 | u8 __read_mostly kvm_tsc_scaling_ratio_frac_bits; |
| 133 | EXPORT_SYMBOL_GPL(kvm_tsc_scaling_ratio_frac_bits); |
| 134 | u64 __read_mostly kvm_max_tsc_scaling_ratio; |
| 135 | EXPORT_SYMBOL_GPL(kvm_max_tsc_scaling_ratio); |
Yunhong Jiang | 64672c9 | 2016-06-13 14:19:59 -0700 | [diff] [blame] | 136 | u64 __read_mostly kvm_default_tsc_scaling_ratio; |
| 137 | EXPORT_SYMBOL_GPL(kvm_default_tsc_scaling_ratio); |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 138 | |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 139 | /* 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] | 140 | static u32 __read_mostly tsc_tolerance_ppm = 250; |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 141 | module_param(tsc_tolerance_ppm, uint, S_IRUGO | S_IWUSR); |
| 142 | |
Sean Christopherson | c3941d9 | 2019-04-17 10:15:33 -0700 | [diff] [blame] | 143 | /* |
| 144 | * lapic timer advance (tscdeadline mode only) in nanoseconds. '-1' enables |
| 145 | * adaptive tuning starting from default advancment of 1000ns. '0' disables |
| 146 | * advancement entirely. Any other value is used as-is and disables adaptive |
| 147 | * tuning, i.e. allows priveleged userspace to set an exact advancement time. |
| 148 | */ |
| 149 | static int __read_mostly lapic_timer_advance_ns = -1; |
Wanpeng Li | 0e6edce | 2019-05-20 16:18:06 +0800 | [diff] [blame] | 150 | module_param(lapic_timer_advance_ns, int, S_IRUGO | S_IWUSR); |
Marcelo Tosatti | d0659d9 | 2014-12-16 09:08:15 -0500 | [diff] [blame] | 151 | |
Feng Wu | 52004014 | 2016-01-25 16:53:33 +0800 | [diff] [blame] | 152 | static bool __read_mostly vector_hashing = true; |
| 153 | module_param(vector_hashing, bool, S_IRUGO); |
| 154 | |
Liran Alon | c4ae60e | 2018-03-12 13:12:47 +0200 | [diff] [blame] | 155 | bool __read_mostly enable_vmware_backdoor = false; |
| 156 | module_param(enable_vmware_backdoor, bool, S_IRUGO); |
| 157 | EXPORT_SYMBOL_GPL(enable_vmware_backdoor); |
| 158 | |
Wanpeng Li | 6c86eed | 2018-04-03 16:28:49 -0700 | [diff] [blame] | 159 | static bool __read_mostly force_emulation_prefix = false; |
| 160 | module_param(force_emulation_prefix, bool, S_IRUGO); |
| 161 | |
Wanpeng Li | 0c5f81d | 2019-07-06 09:26:51 +0800 | [diff] [blame] | 162 | int __read_mostly pi_inject_timer = -1; |
| 163 | module_param(pi_inject_timer, bint, S_IRUGO | S_IWUSR); |
| 164 | |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 165 | #define KVM_NR_SHARED_MSRS 16 |
| 166 | |
| 167 | struct kvm_shared_msrs_global { |
| 168 | int nr; |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 169 | u32 msrs[KVM_NR_SHARED_MSRS]; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 170 | }; |
| 171 | |
| 172 | struct kvm_shared_msrs { |
| 173 | struct user_return_notifier urn; |
| 174 | bool registered; |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 175 | struct kvm_shared_msr_values { |
| 176 | u64 host; |
| 177 | u64 curr; |
| 178 | } values[KVM_NR_SHARED_MSRS]; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 179 | }; |
| 180 | |
| 181 | static struct kvm_shared_msrs_global __read_mostly shared_msrs_global; |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 182 | static struct kvm_shared_msrs __percpu *shared_msrs; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 183 | |
Sean Christopherson | cfc4818 | 2020-03-02 15:56:23 -0800 | [diff] [blame] | 184 | #define KVM_SUPPORTED_XCR0 (XFEATURE_MASK_FP | XFEATURE_MASK_SSE \ |
| 185 | | XFEATURE_MASK_YMM | XFEATURE_MASK_BNDREGS \ |
| 186 | | XFEATURE_MASK_BNDCSR | XFEATURE_MASK_AVX512 \ |
| 187 | | XFEATURE_MASK_PKRU) |
| 188 | |
Sean Christopherson | 9166198 | 2020-03-02 15:57:06 -0800 | [diff] [blame] | 189 | u64 __read_mostly host_efer; |
| 190 | EXPORT_SYMBOL_GPL(host_efer); |
| 191 | |
Aaron Lewis | 139a12c | 2019-10-21 16:30:25 -0700 | [diff] [blame] | 192 | static u64 __read_mostly host_xss; |
Paolo Bonzini | 408e9a3 | 2020-03-05 16:11:56 +0100 | [diff] [blame] | 193 | u64 __read_mostly supported_xss; |
| 194 | EXPORT_SYMBOL_GPL(supported_xss); |
Aaron Lewis | 139a12c | 2019-10-21 16:30:25 -0700 | [diff] [blame] | 195 | |
Hollis Blanchard | 417bc30 | 2007-10-31 17:24:23 -0500 | [diff] [blame] | 196 | struct kvm_stats_debugfs_item debugfs_entries[] = { |
Avi Kivity | ba1389b | 2007-11-18 16:24:12 +0200 | [diff] [blame] | 197 | { "pf_fixed", VCPU_STAT(pf_fixed) }, |
| 198 | { "pf_guest", VCPU_STAT(pf_guest) }, |
| 199 | { "tlb_flush", VCPU_STAT(tlb_flush) }, |
| 200 | { "invlpg", VCPU_STAT(invlpg) }, |
| 201 | { "exits", VCPU_STAT(exits) }, |
| 202 | { "io_exits", VCPU_STAT(io_exits) }, |
| 203 | { "mmio_exits", VCPU_STAT(mmio_exits) }, |
| 204 | { "signal_exits", VCPU_STAT(signal_exits) }, |
| 205 | { "irq_window", VCPU_STAT(irq_window_exits) }, |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 206 | { "nmi_window", VCPU_STAT(nmi_window_exits) }, |
Avi Kivity | ba1389b | 2007-11-18 16:24:12 +0200 | [diff] [blame] | 207 | { "halt_exits", VCPU_STAT(halt_exits) }, |
Paolo Bonzini | f781951 | 2015-02-04 18:20:58 +0100 | [diff] [blame] | 208 | { "halt_successful_poll", VCPU_STAT(halt_successful_poll) }, |
Paolo Bonzini | 62bea5b | 2015-09-15 18:27:57 +0200 | [diff] [blame] | 209 | { "halt_attempted_poll", VCPU_STAT(halt_attempted_poll) }, |
Christian Borntraeger | 3491caf | 2016-05-13 12:16:35 +0200 | [diff] [blame] | 210 | { "halt_poll_invalid", VCPU_STAT(halt_poll_invalid) }, |
Avi Kivity | ba1389b | 2007-11-18 16:24:12 +0200 | [diff] [blame] | 211 | { "halt_wakeup", VCPU_STAT(halt_wakeup) }, |
Amit Shah | f11c3a8 | 2008-02-21 01:00:30 +0530 | [diff] [blame] | 212 | { "hypercalls", VCPU_STAT(hypercalls) }, |
Avi Kivity | ba1389b | 2007-11-18 16:24:12 +0200 | [diff] [blame] | 213 | { "request_irq", VCPU_STAT(request_irq_exits) }, |
| 214 | { "irq_exits", VCPU_STAT(irq_exits) }, |
| 215 | { "host_state_reload", VCPU_STAT(host_state_reload) }, |
Avi Kivity | ba1389b | 2007-11-18 16:24:12 +0200 | [diff] [blame] | 216 | { "fpu_reload", VCPU_STAT(fpu_reload) }, |
| 217 | { "insn_emulation", VCPU_STAT(insn_emulation) }, |
| 218 | { "insn_emulation_fail", VCPU_STAT(insn_emulation_fail) }, |
Avi Kivity | fa89a81 | 2008-09-01 15:57:51 +0300 | [diff] [blame] | 219 | { "irq_injections", VCPU_STAT(irq_injections) }, |
Jan Kiszka | c4abb7c | 2008-09-26 09:30:55 +0200 | [diff] [blame] | 220 | { "nmi_injections", VCPU_STAT(nmi_injections) }, |
Paolo Bonzini | 0f1e261 | 2016-12-17 16:05:19 +0100 | [diff] [blame] | 221 | { "req_event", VCPU_STAT(req_event) }, |
Paolo Bonzini | c595cee | 2018-07-02 13:07:14 +0200 | [diff] [blame] | 222 | { "l1d_flush", VCPU_STAT(l1d_flush) }, |
Avi Kivity | 4cee576 | 2007-11-18 16:37:07 +0200 | [diff] [blame] | 223 | { "mmu_shadow_zapped", VM_STAT(mmu_shadow_zapped) }, |
| 224 | { "mmu_pte_write", VM_STAT(mmu_pte_write) }, |
| 225 | { "mmu_pte_updated", VM_STAT(mmu_pte_updated) }, |
| 226 | { "mmu_pde_zapped", VM_STAT(mmu_pde_zapped) }, |
| 227 | { "mmu_flooded", VM_STAT(mmu_flooded) }, |
| 228 | { "mmu_recycled", VM_STAT(mmu_recycled) }, |
Avi Kivity | dfc5aa0 | 2007-12-18 19:47:18 +0200 | [diff] [blame] | 229 | { "mmu_cache_miss", VM_STAT(mmu_cache_miss) }, |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 230 | { "mmu_unsync", VM_STAT(mmu_unsync) }, |
Avi Kivity | 0f74a24 | 2007-11-20 23:01:14 +0200 | [diff] [blame] | 231 | { "remote_tlb_flush", VM_STAT(remote_tlb_flush) }, |
Paolo Bonzini | 833b45d | 2019-09-30 18:48:44 +0200 | [diff] [blame] | 232 | { "largepages", VM_STAT(lpages, .mode = 0444) }, |
Paolo Bonzini | b8e8c83 | 2019-11-04 12:22:02 +0100 | [diff] [blame] | 233 | { "nx_largepages_splitted", VM_STAT(nx_lpage_splits, .mode = 0444) }, |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 234 | { "max_mmu_page_hash_collisions", |
| 235 | VM_STAT(max_mmu_page_hash_collisions) }, |
Hollis Blanchard | 417bc30 | 2007-10-31 17:24:23 -0500 | [diff] [blame] | 236 | { NULL } |
| 237 | }; |
| 238 | |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 239 | u64 __read_mostly host_xcr0; |
Sean Christopherson | cfc4818 | 2020-03-02 15:56:23 -0800 | [diff] [blame] | 240 | u64 __read_mostly supported_xcr0; |
| 241 | EXPORT_SYMBOL_GPL(supported_xcr0); |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 242 | |
Marc Orr | b666a4b | 2018-11-06 14:53:56 -0800 | [diff] [blame] | 243 | struct kmem_cache *x86_fpu_cache; |
| 244 | EXPORT_SYMBOL_GPL(x86_fpu_cache); |
| 245 | |
Sean Christopherson | c9b8b07 | 2020-02-18 15:29:48 -0800 | [diff] [blame] | 246 | static struct kmem_cache *x86_emulator_cache; |
| 247 | |
| 248 | static struct kmem_cache *kvm_alloc_emulator_cache(void) |
| 249 | { |
Sean Christopherson | 06add25 | 2020-02-18 15:29:50 -0800 | [diff] [blame] | 250 | unsigned int useroffset = offsetof(struct x86_emulate_ctxt, src); |
| 251 | unsigned int size = sizeof(struct x86_emulate_ctxt); |
| 252 | |
| 253 | return kmem_cache_create_usercopy("x86_emulator", size, |
Sean Christopherson | c9b8b07 | 2020-02-18 15:29:48 -0800 | [diff] [blame] | 254 | __alignof__(struct x86_emulate_ctxt), |
Sean Christopherson | 06add25 | 2020-02-18 15:29:50 -0800 | [diff] [blame] | 255 | SLAB_ACCOUNT, useroffset, |
| 256 | size - useroffset, NULL); |
Sean Christopherson | c9b8b07 | 2020-02-18 15:29:48 -0800 | [diff] [blame] | 257 | } |
| 258 | |
Jan Kiszka | b6785de | 2012-09-20 07:43:17 +0200 | [diff] [blame] | 259 | static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt); |
Avi Kivity | d6aa100 | 2011-04-20 15:47:13 +0300 | [diff] [blame] | 260 | |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 261 | static inline void kvm_async_pf_hash_reset(struct kvm_vcpu *vcpu) |
| 262 | { |
| 263 | int i; |
| 264 | for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU); i++) |
| 265 | vcpu->arch.apf.gfns[i] = ~0; |
| 266 | } |
| 267 | |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 268 | static void kvm_on_user_return(struct user_return_notifier *urn) |
| 269 | { |
| 270 | unsigned slot; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 271 | struct kvm_shared_msrs *locals |
| 272 | = container_of(urn, struct kvm_shared_msrs, urn); |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 273 | struct kvm_shared_msr_values *values; |
Ignacio Alvarado | 1650b4e | 2016-11-04 12:15:55 -0700 | [diff] [blame] | 274 | unsigned long flags; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 275 | |
Ignacio Alvarado | 1650b4e | 2016-11-04 12:15:55 -0700 | [diff] [blame] | 276 | /* |
| 277 | * Disabling irqs at this point since the following code could be |
| 278 | * interrupted and executed through kvm_arch_hardware_disable() |
| 279 | */ |
| 280 | local_irq_save(flags); |
| 281 | if (locals->registered) { |
| 282 | locals->registered = false; |
| 283 | user_return_notifier_unregister(urn); |
| 284 | } |
| 285 | local_irq_restore(flags); |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 286 | for (slot = 0; slot < shared_msrs_global.nr; ++slot) { |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 287 | values = &locals->values[slot]; |
| 288 | if (values->host != values->curr) { |
| 289 | wrmsrl(shared_msrs_global.msrs[slot], values->host); |
| 290 | values->curr = values->host; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 291 | } |
| 292 | } |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 293 | } |
| 294 | |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 295 | void kvm_define_shared_msr(unsigned slot, u32 msr) |
| 296 | { |
Nadav Amit | 0123be4 | 2014-07-24 15:06:56 +0300 | [diff] [blame] | 297 | BUG_ON(slot >= KVM_NR_SHARED_MSRS); |
Paolo Bonzini | c847fe8 | 2015-07-29 11:06:34 +0200 | [diff] [blame] | 298 | shared_msrs_global.msrs[slot] = msr; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 299 | if (slot >= shared_msrs_global.nr) |
| 300 | shared_msrs_global.nr = slot + 1; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 301 | } |
| 302 | EXPORT_SYMBOL_GPL(kvm_define_shared_msr); |
| 303 | |
| 304 | static void kvm_shared_msr_cpu_online(void) |
| 305 | { |
Sean Christopherson | 05c19c2 | 2019-11-22 12:04:50 -0800 | [diff] [blame] | 306 | unsigned int cpu = smp_processor_id(); |
| 307 | struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu); |
| 308 | u64 value; |
| 309 | int i; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 310 | |
Sean Christopherson | 05c19c2 | 2019-11-22 12:04:50 -0800 | [diff] [blame] | 311 | for (i = 0; i < shared_msrs_global.nr; ++i) { |
| 312 | rdmsrl_safe(shared_msrs_global.msrs[i], &value); |
| 313 | smsr->values[i].host = value; |
| 314 | smsr->values[i].curr = value; |
| 315 | } |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 316 | } |
| 317 | |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 318 | int kvm_set_shared_msr(unsigned slot, u64 value, u64 mask) |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 319 | { |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 320 | unsigned int cpu = smp_processor_id(); |
| 321 | struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu); |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 322 | int err; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 323 | |
Paolo Bonzini | de1fca5 | 2019-11-18 12:23:00 -0500 | [diff] [blame] | 324 | value = (value & mask) | (smsr->values[slot].host & ~mask); |
| 325 | if (value == smsr->values[slot].curr) |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 326 | return 0; |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 327 | err = wrmsrl_safe(shared_msrs_global.msrs[slot], value); |
| 328 | if (err) |
| 329 | return 1; |
| 330 | |
Paolo Bonzini | de1fca5 | 2019-11-18 12:23:00 -0500 | [diff] [blame] | 331 | smsr->values[slot].curr = value; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 332 | if (!smsr->registered) { |
| 333 | smsr->urn.on_user_return = kvm_on_user_return; |
| 334 | user_return_notifier_register(&smsr->urn); |
| 335 | smsr->registered = true; |
| 336 | } |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 337 | return 0; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 338 | } |
| 339 | EXPORT_SYMBOL_GPL(kvm_set_shared_msr); |
| 340 | |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 341 | static void drop_user_return_notifiers(void) |
Avi Kivity | 3548bab | 2009-11-28 14:18:47 +0200 | [diff] [blame] | 342 | { |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 343 | unsigned int cpu = smp_processor_id(); |
| 344 | struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu); |
Avi Kivity | 3548bab | 2009-11-28 14:18:47 +0200 | [diff] [blame] | 345 | |
| 346 | if (smsr->registered) |
| 347 | kvm_on_user_return(&smsr->urn); |
| 348 | } |
| 349 | |
Carsten Otte | 6866b83 | 2007-10-29 16:09:10 +0100 | [diff] [blame] | 350 | u64 kvm_get_apic_base(struct kvm_vcpu *vcpu) |
| 351 | { |
Gleb Natapov | 8a5a87d | 2012-08-05 15:58:26 +0300 | [diff] [blame] | 352 | return vcpu->arch.apic_base; |
Carsten Otte | 6866b83 | 2007-10-29 16:09:10 +0100 | [diff] [blame] | 353 | } |
| 354 | EXPORT_SYMBOL_GPL(kvm_get_apic_base); |
| 355 | |
Jim Mattson | 5887164 | 2018-05-09 16:56:04 -0400 | [diff] [blame] | 356 | enum lapic_mode kvm_get_apic_mode(struct kvm_vcpu *vcpu) |
| 357 | { |
| 358 | return kvm_apic_mode(kvm_get_apic_base(vcpu)); |
| 359 | } |
| 360 | EXPORT_SYMBOL_GPL(kvm_get_apic_mode); |
| 361 | |
Jan Kiszka | 58cb628 | 2014-01-24 16:48:44 +0100 | [diff] [blame] | 362 | 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] | 363 | { |
Jim Mattson | 5887164 | 2018-05-09 16:56:04 -0400 | [diff] [blame] | 364 | enum lapic_mode old_mode = kvm_get_apic_mode(vcpu); |
| 365 | enum lapic_mode new_mode = kvm_apic_mode(msr_info->data); |
Radim Krčmář | d6321d4 | 2017-08-05 00:12:49 +0200 | [diff] [blame] | 366 | u64 reserved_bits = ((~0ULL) << cpuid_maxphyaddr(vcpu)) | 0x2ff | |
| 367 | (guest_cpuid_has(vcpu, X86_FEATURE_X2APIC) ? 0 : X2APIC_ENABLE); |
Jan Kiszka | 58cb628 | 2014-01-24 16:48:44 +0100 | [diff] [blame] | 368 | |
Jim Mattson | 5887164 | 2018-05-09 16:56:04 -0400 | [diff] [blame] | 369 | if ((msr_info->data & reserved_bits) != 0 || new_mode == LAPIC_MODE_INVALID) |
Jim Mattson | d380228 | 2017-08-10 10:14:13 -0700 | [diff] [blame] | 370 | return 1; |
Jim Mattson | 5887164 | 2018-05-09 16:56:04 -0400 | [diff] [blame] | 371 | if (!msr_info->host_initiated) { |
| 372 | if (old_mode == LAPIC_MODE_X2APIC && new_mode == LAPIC_MODE_XAPIC) |
| 373 | return 1; |
| 374 | if (old_mode == LAPIC_MODE_DISABLED && new_mode == LAPIC_MODE_X2APIC) |
| 375 | return 1; |
| 376 | } |
Jan Kiszka | 58cb628 | 2014-01-24 16:48:44 +0100 | [diff] [blame] | 377 | |
| 378 | kvm_lapic_set_base(vcpu, msr_info->data); |
Wanpeng Li | 4abaffc | 2020-02-26 10:41:02 +0800 | [diff] [blame] | 379 | kvm_recalculate_apic_map(vcpu->kvm); |
Jan Kiszka | 58cb628 | 2014-01-24 16:48:44 +0100 | [diff] [blame] | 380 | return 0; |
Carsten Otte | 6866b83 | 2007-10-29 16:09:10 +0100 | [diff] [blame] | 381 | } |
| 382 | EXPORT_SYMBOL_GPL(kvm_set_apic_base); |
| 383 | |
Andi Kleen | 2605fc2 | 2014-05-02 00:44:37 +0200 | [diff] [blame] | 384 | asmlinkage __visible void kvm_spurious_fault(void) |
Geoff Levand | e3ba45b | 2013-04-05 19:20:30 +0000 | [diff] [blame] | 385 | { |
| 386 | /* Fault while not rebooting. We want the trace. */ |
kbuild test robot | b4fdcf6 | 2019-09-29 18:43:28 +0200 | [diff] [blame] | 387 | BUG_ON(!kvm_rebooting); |
Geoff Levand | e3ba45b | 2013-04-05 19:20:30 +0000 | [diff] [blame] | 388 | } |
| 389 | EXPORT_SYMBOL_GPL(kvm_spurious_fault); |
| 390 | |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 391 | #define EXCPT_BENIGN 0 |
| 392 | #define EXCPT_CONTRIBUTORY 1 |
| 393 | #define EXCPT_PF 2 |
| 394 | |
| 395 | static int exception_class(int vector) |
| 396 | { |
| 397 | switch (vector) { |
| 398 | case PF_VECTOR: |
| 399 | return EXCPT_PF; |
| 400 | case DE_VECTOR: |
| 401 | case TS_VECTOR: |
| 402 | case NP_VECTOR: |
| 403 | case SS_VECTOR: |
| 404 | case GP_VECTOR: |
| 405 | return EXCPT_CONTRIBUTORY; |
| 406 | default: |
| 407 | break; |
| 408 | } |
| 409 | return EXCPT_BENIGN; |
| 410 | } |
| 411 | |
Nadav Amit | d6e8c85 | 2014-07-24 14:51:24 +0300 | [diff] [blame] | 412 | #define EXCPT_FAULT 0 |
| 413 | #define EXCPT_TRAP 1 |
| 414 | #define EXCPT_ABORT 2 |
| 415 | #define EXCPT_INTERRUPT 3 |
| 416 | |
| 417 | static int exception_type(int vector) |
| 418 | { |
| 419 | unsigned int mask; |
| 420 | |
| 421 | if (WARN_ON(vector > 31 || vector == NMI_VECTOR)) |
| 422 | return EXCPT_INTERRUPT; |
| 423 | |
| 424 | mask = 1 << vector; |
| 425 | |
| 426 | /* #DB is trap, as instruction watchpoints are handled elsewhere */ |
| 427 | if (mask & ((1 << DB_VECTOR) | (1 << BP_VECTOR) | (1 << OF_VECTOR))) |
| 428 | return EXCPT_TRAP; |
| 429 | |
| 430 | if (mask & ((1 << DF_VECTOR) | (1 << MC_VECTOR))) |
| 431 | return EXCPT_ABORT; |
| 432 | |
| 433 | /* Reserved exceptions will result in fault */ |
| 434 | return EXCPT_FAULT; |
| 435 | } |
| 436 | |
Jim Mattson | da998b4 | 2018-10-16 14:29:22 -0700 | [diff] [blame] | 437 | void kvm_deliver_exception_payload(struct kvm_vcpu *vcpu) |
| 438 | { |
| 439 | unsigned nr = vcpu->arch.exception.nr; |
| 440 | bool has_payload = vcpu->arch.exception.has_payload; |
| 441 | unsigned long payload = vcpu->arch.exception.payload; |
| 442 | |
| 443 | if (!has_payload) |
| 444 | return; |
| 445 | |
| 446 | switch (nr) { |
Jim Mattson | f10c729 | 2018-10-16 14:29:23 -0700 | [diff] [blame] | 447 | case DB_VECTOR: |
| 448 | /* |
| 449 | * "Certain debug exceptions may clear bit 0-3. The |
| 450 | * remaining contents of the DR6 register are never |
| 451 | * cleared by the processor". |
| 452 | */ |
| 453 | vcpu->arch.dr6 &= ~DR_TRAP_BITS; |
| 454 | /* |
| 455 | * DR6.RTM is set by all #DB exceptions that don't clear it. |
| 456 | */ |
| 457 | vcpu->arch.dr6 |= DR6_RTM; |
| 458 | vcpu->arch.dr6 |= payload; |
| 459 | /* |
| 460 | * Bit 16 should be set in the payload whenever the #DB |
| 461 | * exception should clear DR6.RTM. This makes the payload |
| 462 | * compatible with the pending debug exceptions under VMX. |
| 463 | * Though not currently documented in the SDM, this also |
| 464 | * makes the payload compatible with the exit qualification |
| 465 | * for #DB exceptions under VMX. |
| 466 | */ |
| 467 | vcpu->arch.dr6 ^= payload & DR6_RTM; |
Oliver Upton | 307f1cf | 2020-02-07 02:36:04 -0800 | [diff] [blame] | 468 | |
| 469 | /* |
| 470 | * The #DB payload is defined as compatible with the 'pending |
| 471 | * debug exceptions' field under VMX, not DR6. While bit 12 is |
| 472 | * defined in the 'pending debug exceptions' field (enabled |
| 473 | * breakpoint), it is reserved and must be zero in DR6. |
| 474 | */ |
| 475 | vcpu->arch.dr6 &= ~BIT(12); |
Jim Mattson | f10c729 | 2018-10-16 14:29:23 -0700 | [diff] [blame] | 476 | break; |
Jim Mattson | da998b4 | 2018-10-16 14:29:22 -0700 | [diff] [blame] | 477 | case PF_VECTOR: |
| 478 | vcpu->arch.cr2 = payload; |
| 479 | break; |
| 480 | } |
| 481 | |
| 482 | vcpu->arch.exception.has_payload = false; |
| 483 | vcpu->arch.exception.payload = 0; |
| 484 | } |
| 485 | EXPORT_SYMBOL_GPL(kvm_deliver_exception_payload); |
| 486 | |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 487 | static void kvm_multiple_exception(struct kvm_vcpu *vcpu, |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 488 | unsigned nr, bool has_error, u32 error_code, |
Jim Mattson | 91e86d2 | 2018-10-16 14:29:21 -0700 | [diff] [blame] | 489 | bool has_payload, unsigned long payload, bool reinject) |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 490 | { |
| 491 | u32 prev_nr; |
| 492 | int class1, class2; |
| 493 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 494 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 495 | |
Wanpeng Li | 664f8e2 | 2017-08-24 03:35:09 -0700 | [diff] [blame] | 496 | if (!vcpu->arch.exception.pending && !vcpu->arch.exception.injected) { |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 497 | queue: |
Nadav Amit | 3ffb246 | 2014-11-02 11:54:42 +0200 | [diff] [blame] | 498 | if (has_error && !is_protmode(vcpu)) |
| 499 | has_error = false; |
Wanpeng Li | 664f8e2 | 2017-08-24 03:35:09 -0700 | [diff] [blame] | 500 | if (reinject) { |
| 501 | /* |
| 502 | * On vmentry, vcpu->arch.exception.pending is only |
| 503 | * true if an event injection was blocked by |
| 504 | * nested_run_pending. In that case, however, |
| 505 | * vcpu_enter_guest requests an immediate exit, |
| 506 | * and the guest shouldn't proceed far enough to |
| 507 | * need reinjection. |
| 508 | */ |
| 509 | WARN_ON_ONCE(vcpu->arch.exception.pending); |
| 510 | vcpu->arch.exception.injected = true; |
Jim Mattson | 91e86d2 | 2018-10-16 14:29:21 -0700 | [diff] [blame] | 511 | if (WARN_ON_ONCE(has_payload)) { |
| 512 | /* |
| 513 | * A reinjected event has already |
| 514 | * delivered its payload. |
| 515 | */ |
| 516 | has_payload = false; |
| 517 | payload = 0; |
| 518 | } |
Wanpeng Li | 664f8e2 | 2017-08-24 03:35:09 -0700 | [diff] [blame] | 519 | } else { |
| 520 | vcpu->arch.exception.pending = true; |
| 521 | vcpu->arch.exception.injected = false; |
| 522 | } |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 523 | vcpu->arch.exception.has_error_code = has_error; |
| 524 | vcpu->arch.exception.nr = nr; |
| 525 | vcpu->arch.exception.error_code = error_code; |
Jim Mattson | 91e86d2 | 2018-10-16 14:29:21 -0700 | [diff] [blame] | 526 | vcpu->arch.exception.has_payload = has_payload; |
| 527 | vcpu->arch.exception.payload = payload; |
Oliver Upton | a06230b | 2020-02-07 02:36:06 -0800 | [diff] [blame] | 528 | if (!is_guest_mode(vcpu)) |
Jim Mattson | da998b4 | 2018-10-16 14:29:22 -0700 | [diff] [blame] | 529 | kvm_deliver_exception_payload(vcpu); |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 530 | return; |
| 531 | } |
| 532 | |
| 533 | /* to check exception */ |
| 534 | prev_nr = vcpu->arch.exception.nr; |
| 535 | if (prev_nr == DF_VECTOR) { |
| 536 | /* triple fault -> shutdown */ |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 537 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 538 | return; |
| 539 | } |
| 540 | class1 = exception_class(prev_nr); |
| 541 | class2 = exception_class(nr); |
| 542 | if ((class1 == EXCPT_CONTRIBUTORY && class2 == EXCPT_CONTRIBUTORY) |
| 543 | || (class1 == EXCPT_PF && class2 != EXCPT_BENIGN)) { |
Wanpeng Li | 664f8e2 | 2017-08-24 03:35:09 -0700 | [diff] [blame] | 544 | /* |
| 545 | * Generate double fault per SDM Table 5-5. Set |
| 546 | * exception.pending = true so that the double fault |
| 547 | * can trigger a nested vmexit. |
| 548 | */ |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 549 | vcpu->arch.exception.pending = true; |
Wanpeng Li | 664f8e2 | 2017-08-24 03:35:09 -0700 | [diff] [blame] | 550 | vcpu->arch.exception.injected = false; |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 551 | vcpu->arch.exception.has_error_code = true; |
| 552 | vcpu->arch.exception.nr = DF_VECTOR; |
| 553 | vcpu->arch.exception.error_code = 0; |
Jim Mattson | c851436 | 2018-10-16 14:29:19 -0700 | [diff] [blame] | 554 | vcpu->arch.exception.has_payload = false; |
| 555 | vcpu->arch.exception.payload = 0; |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 556 | } else |
| 557 | /* replace previous exception with a new one in a hope |
| 558 | that instruction re-execution will regenerate lost |
| 559 | exception */ |
| 560 | goto queue; |
| 561 | } |
| 562 | |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 563 | void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr) |
| 564 | { |
Jim Mattson | 91e86d2 | 2018-10-16 14:29:21 -0700 | [diff] [blame] | 565 | kvm_multiple_exception(vcpu, nr, false, 0, false, 0, false); |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 566 | } |
| 567 | EXPORT_SYMBOL_GPL(kvm_queue_exception); |
| 568 | |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 569 | void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr) |
| 570 | { |
Jim Mattson | 91e86d2 | 2018-10-16 14:29:21 -0700 | [diff] [blame] | 571 | kvm_multiple_exception(vcpu, nr, false, 0, false, 0, true); |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 572 | } |
| 573 | EXPORT_SYMBOL_GPL(kvm_requeue_exception); |
| 574 | |
Jim Mattson | f10c729 | 2018-10-16 14:29:23 -0700 | [diff] [blame] | 575 | static void kvm_queue_exception_p(struct kvm_vcpu *vcpu, unsigned nr, |
| 576 | unsigned long payload) |
| 577 | { |
| 578 | kvm_multiple_exception(vcpu, nr, false, 0, true, payload, false); |
| 579 | } |
| 580 | |
Jim Mattson | da998b4 | 2018-10-16 14:29:22 -0700 | [diff] [blame] | 581 | static void kvm_queue_exception_e_p(struct kvm_vcpu *vcpu, unsigned nr, |
| 582 | u32 error_code, unsigned long payload) |
| 583 | { |
| 584 | kvm_multiple_exception(vcpu, nr, true, error_code, |
| 585 | true, payload, false); |
| 586 | } |
| 587 | |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 588 | int kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err) |
Avi Kivity | c3c91fe | 2007-11-25 14:04:58 +0200 | [diff] [blame] | 589 | { |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 590 | if (err) |
| 591 | kvm_inject_gp(vcpu, 0); |
| 592 | else |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 593 | return kvm_skip_emulated_instruction(vcpu); |
| 594 | |
| 595 | return 1; |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 596 | } |
| 597 | EXPORT_SYMBOL_GPL(kvm_complete_insn_gp); |
Joerg Roedel | 8df25a3 | 2010-09-10 17:30:46 +0200 | [diff] [blame] | 598 | |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 599 | 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] | 600 | { |
Avi Kivity | c3c91fe | 2007-11-25 14:04:58 +0200 | [diff] [blame] | 601 | ++vcpu->stat.pf_guest; |
Wanpeng Li | adfe20f | 2017-07-13 18:30:41 -0700 | [diff] [blame] | 602 | vcpu->arch.exception.nested_apf = |
| 603 | is_guest_mode(vcpu) && fault->async_page_fault; |
Jim Mattson | da998b4 | 2018-10-16 14:29:22 -0700 | [diff] [blame] | 604 | if (vcpu->arch.exception.nested_apf) { |
Wanpeng Li | adfe20f | 2017-07-13 18:30:41 -0700 | [diff] [blame] | 605 | vcpu->arch.apf.nested_apf_token = fault->address; |
Jim Mattson | da998b4 | 2018-10-16 14:29:22 -0700 | [diff] [blame] | 606 | kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code); |
| 607 | } else { |
| 608 | kvm_queue_exception_e_p(vcpu, PF_VECTOR, fault->error_code, |
| 609 | fault->address); |
| 610 | } |
Avi Kivity | c3c91fe | 2007-11-25 14:04:58 +0200 | [diff] [blame] | 611 | } |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 612 | EXPORT_SYMBOL_GPL(kvm_inject_page_fault); |
Avi Kivity | c3c91fe | 2007-11-25 14:04:58 +0200 | [diff] [blame] | 613 | |
Paolo Bonzini | ef54bcf | 2014-09-04 19:46:15 +0200 | [diff] [blame] | 614 | 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] | 615 | { |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 616 | if (mmu_is_nested(vcpu) && !fault->nested_page_fault) |
| 617 | vcpu->arch.nested_mmu.inject_page_fault(vcpu, fault); |
Joerg Roedel | d4f8cf6 | 2010-09-10 17:30:55 +0200 | [diff] [blame] | 618 | else |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 619 | vcpu->arch.mmu->inject_page_fault(vcpu, fault); |
Paolo Bonzini | ef54bcf | 2014-09-04 19:46:15 +0200 | [diff] [blame] | 620 | |
| 621 | return fault->nested_page_fault; |
Joerg Roedel | d4f8cf6 | 2010-09-10 17:30:55 +0200 | [diff] [blame] | 622 | } |
| 623 | |
Sheng Yang | 3419ffc | 2008-05-15 09:52:48 +0800 | [diff] [blame] | 624 | void kvm_inject_nmi(struct kvm_vcpu *vcpu) |
| 625 | { |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 626 | atomic_inc(&vcpu->arch.nmi_queued); |
| 627 | kvm_make_request(KVM_REQ_NMI, vcpu); |
Sheng Yang | 3419ffc | 2008-05-15 09:52:48 +0800 | [diff] [blame] | 628 | } |
| 629 | EXPORT_SYMBOL_GPL(kvm_inject_nmi); |
| 630 | |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 631 | void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code) |
| 632 | { |
Jim Mattson | 91e86d2 | 2018-10-16 14:29:21 -0700 | [diff] [blame] | 633 | kvm_multiple_exception(vcpu, nr, true, error_code, false, 0, false); |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 634 | } |
| 635 | EXPORT_SYMBOL_GPL(kvm_queue_exception_e); |
| 636 | |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 637 | void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code) |
| 638 | { |
Jim Mattson | 91e86d2 | 2018-10-16 14:29:21 -0700 | [diff] [blame] | 639 | kvm_multiple_exception(vcpu, nr, true, error_code, false, 0, true); |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 640 | } |
| 641 | EXPORT_SYMBOL_GPL(kvm_requeue_exception_e); |
| 642 | |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 643 | /* |
Avi Kivity | 0a79b00 | 2009-09-01 12:03:25 +0300 | [diff] [blame] | 644 | * Checks if cpl <= required_cpl; if true, return true. Otherwise queue |
| 645 | * a #GP and return false. |
| 646 | */ |
| 647 | bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl) |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 648 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 649 | if (kvm_x86_ops.get_cpl(vcpu) <= required_cpl) |
Avi Kivity | 0a79b00 | 2009-09-01 12:03:25 +0300 | [diff] [blame] | 650 | return true; |
| 651 | kvm_queue_exception_e(vcpu, GP_VECTOR, 0); |
| 652 | return false; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 653 | } |
Avi Kivity | 0a79b00 | 2009-09-01 12:03:25 +0300 | [diff] [blame] | 654 | EXPORT_SYMBOL_GPL(kvm_require_cpl); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 655 | |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 656 | bool kvm_require_dr(struct kvm_vcpu *vcpu, int dr) |
| 657 | { |
| 658 | if ((dr != 4 && dr != 5) || !kvm_read_cr4_bits(vcpu, X86_CR4_DE)) |
| 659 | return true; |
| 660 | |
| 661 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 662 | return false; |
| 663 | } |
| 664 | EXPORT_SYMBOL_GPL(kvm_require_dr); |
| 665 | |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 666 | /* |
Joerg Roedel | ec92fe4 | 2010-09-10 17:30:51 +0200 | [diff] [blame] | 667 | * 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] | 668 | * 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] | 669 | * can read from guest physical or from the guest's guest physical memory. |
| 670 | */ |
| 671 | int kvm_read_guest_page_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, |
| 672 | gfn_t ngfn, void *data, int offset, int len, |
| 673 | u32 access) |
| 674 | { |
Paolo Bonzini | 54987b7 | 2014-09-02 13:23:06 +0200 | [diff] [blame] | 675 | struct x86_exception exception; |
Joerg Roedel | ec92fe4 | 2010-09-10 17:30:51 +0200 | [diff] [blame] | 676 | gfn_t real_gfn; |
| 677 | gpa_t ngpa; |
| 678 | |
| 679 | ngpa = gfn_to_gpa(ngfn); |
Paolo Bonzini | 54987b7 | 2014-09-02 13:23:06 +0200 | [diff] [blame] | 680 | real_gfn = mmu->translate_gpa(vcpu, ngpa, access, &exception); |
Joerg Roedel | ec92fe4 | 2010-09-10 17:30:51 +0200 | [diff] [blame] | 681 | if (real_gfn == UNMAPPED_GVA) |
| 682 | return -EFAULT; |
| 683 | |
| 684 | real_gfn = gpa_to_gfn(real_gfn); |
| 685 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 686 | return kvm_vcpu_read_guest_page(vcpu, real_gfn, data, offset, len); |
Joerg Roedel | ec92fe4 | 2010-09-10 17:30:51 +0200 | [diff] [blame] | 687 | } |
| 688 | EXPORT_SYMBOL_GPL(kvm_read_guest_page_mmu); |
| 689 | |
Fengguang Wu | 69b0049 | 2015-01-19 22:33:39 +0800 | [diff] [blame] | 690 | 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] | 691 | void *data, int offset, int len, u32 access) |
| 692 | { |
| 693 | return kvm_read_guest_page_mmu(vcpu, vcpu->arch.walk_mmu, gfn, |
| 694 | data, offset, len, access); |
| 695 | } |
| 696 | |
Sean Christopherson | 16cfacc | 2019-09-03 16:36:45 -0700 | [diff] [blame] | 697 | static inline u64 pdptr_rsvd_bits(struct kvm_vcpu *vcpu) |
| 698 | { |
| 699 | return rsvd_bits(cpuid_maxphyaddr(vcpu), 63) | rsvd_bits(5, 8) | |
| 700 | rsvd_bits(1, 2); |
| 701 | } |
| 702 | |
Joerg Roedel | ec92fe4 | 2010-09-10 17:30:51 +0200 | [diff] [blame] | 703 | /* |
Sean Christopherson | 16cfacc | 2019-09-03 16:36:45 -0700 | [diff] [blame] | 704 | * Load the pae pdptrs. Return 1 if they are all valid, 0 otherwise. |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 705 | */ |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 706 | 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] | 707 | { |
| 708 | gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT; |
| 709 | unsigned offset = ((cr3 & (PAGE_SIZE-1)) >> 5) << 2; |
| 710 | int i; |
| 711 | int ret; |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 712 | u64 pdpte[ARRAY_SIZE(mmu->pdptrs)]; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 713 | |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 714 | ret = kvm_read_guest_page_mmu(vcpu, mmu, pdpt_gfn, pdpte, |
| 715 | offset * sizeof(u64), sizeof(pdpte), |
| 716 | PFERR_USER_MASK|PFERR_WRITE_MASK); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 717 | if (ret < 0) { |
| 718 | ret = 0; |
| 719 | goto out; |
| 720 | } |
| 721 | for (i = 0; i < ARRAY_SIZE(pdpte); ++i) { |
Bandan Das | 812f30b | 2016-07-12 18:18:50 -0400 | [diff] [blame] | 722 | if ((pdpte[i] & PT_PRESENT_MASK) && |
Sean Christopherson | 16cfacc | 2019-09-03 16:36:45 -0700 | [diff] [blame] | 723 | (pdpte[i] & pdptr_rsvd_bits(vcpu))) { |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 724 | ret = 0; |
| 725 | goto out; |
| 726 | } |
| 727 | } |
| 728 | ret = 1; |
| 729 | |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 730 | memcpy(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs)); |
Sean Christopherson | cb3c1e2 | 2019-09-27 14:45:22 -0700 | [diff] [blame] | 731 | kvm_register_mark_dirty(vcpu, VCPU_EXREG_PDPTR); |
| 732 | |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 733 | out: |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 734 | |
| 735 | return ret; |
| 736 | } |
Joerg Roedel | cc4b687 | 2008-02-07 13:47:43 +0100 | [diff] [blame] | 737 | EXPORT_SYMBOL_GPL(load_pdptrs); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 738 | |
Ladi Prosek | 9ed38ffa | 2016-11-30 16:03:10 +0100 | [diff] [blame] | 739 | bool pdptrs_changed(struct kvm_vcpu *vcpu) |
Avi Kivity | d835dfe | 2007-11-21 02:57:59 +0200 | [diff] [blame] | 740 | { |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 741 | u64 pdpte[ARRAY_SIZE(vcpu->arch.walk_mmu->pdptrs)]; |
Joerg Roedel | 3d06b8b | 2010-09-10 17:30:53 +0200 | [diff] [blame] | 742 | int offset; |
| 743 | gfn_t gfn; |
Avi Kivity | d835dfe | 2007-11-21 02:57:59 +0200 | [diff] [blame] | 744 | int r; |
| 745 | |
Paolo Bonzini | bf03d4f | 2019-06-06 18:52:44 +0200 | [diff] [blame] | 746 | if (!is_pae_paging(vcpu)) |
Avi Kivity | d835dfe | 2007-11-21 02:57:59 +0200 | [diff] [blame] | 747 | return false; |
| 748 | |
Sean Christopherson | cb3c1e2 | 2019-09-27 14:45:22 -0700 | [diff] [blame] | 749 | if (!kvm_register_is_available(vcpu, VCPU_EXREG_PDPTR)) |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 750 | return true; |
| 751 | |
Paolo Bonzini | a512177 | 2017-07-24 18:54:38 +0200 | [diff] [blame] | 752 | gfn = (kvm_read_cr3(vcpu) & 0xffffffe0ul) >> PAGE_SHIFT; |
| 753 | offset = (kvm_read_cr3(vcpu) & 0xffffffe0ul) & (PAGE_SIZE - 1); |
Joerg Roedel | 3d06b8b | 2010-09-10 17:30:53 +0200 | [diff] [blame] | 754 | r = kvm_read_nested_guest_page(vcpu, gfn, pdpte, offset, sizeof(pdpte), |
| 755 | PFERR_USER_MASK | PFERR_WRITE_MASK); |
Avi Kivity | d835dfe | 2007-11-21 02:57:59 +0200 | [diff] [blame] | 756 | if (r < 0) |
Miaohe Lin | 7f7f0d9 | 2019-10-25 18:54:34 +0800 | [diff] [blame] | 757 | return true; |
Avi Kivity | d835dfe | 2007-11-21 02:57:59 +0200 | [diff] [blame] | 758 | |
Miaohe Lin | 7f7f0d9 | 2019-10-25 18:54:34 +0800 | [diff] [blame] | 759 | return memcmp(pdpte, vcpu->arch.walk_mmu->pdptrs, sizeof(pdpte)) != 0; |
Avi Kivity | d835dfe | 2007-11-21 02:57:59 +0200 | [diff] [blame] | 760 | } |
Ladi Prosek | 9ed38ffa | 2016-11-30 16:03:10 +0100 | [diff] [blame] | 761 | EXPORT_SYMBOL_GPL(pdptrs_changed); |
Avi Kivity | d835dfe | 2007-11-21 02:57:59 +0200 | [diff] [blame] | 762 | |
Avi Kivity | 49a9b07 | 2010-06-10 17:02:14 +0300 | [diff] [blame] | 763 | int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0) |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 764 | { |
Sheng Yang | aad8270 | 2010-05-12 16:40:42 +0800 | [diff] [blame] | 765 | unsigned long old_cr0 = kvm_read_cr0(vcpu); |
Xiao Guangrong | d81135a | 2015-05-13 14:42:28 +0800 | [diff] [blame] | 766 | unsigned long update_bits = X86_CR0_PG | X86_CR0_WP; |
Sheng Yang | aad8270 | 2010-05-12 16:40:42 +0800 | [diff] [blame] | 767 | |
Avi Kivity | f9a48e6 | 2010-01-06 19:10:22 +0200 | [diff] [blame] | 768 | cr0 |= X86_CR0_ET; |
| 769 | |
Gleb Natapov | ab34482 | 2010-01-21 15:28:46 +0200 | [diff] [blame] | 770 | #ifdef CONFIG_X86_64 |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 771 | if (cr0 & 0xffffffff00000000UL) |
| 772 | return 1; |
Gleb Natapov | ab34482 | 2010-01-21 15:28:46 +0200 | [diff] [blame] | 773 | #endif |
| 774 | |
| 775 | cr0 &= ~CR0_RESERVED_BITS; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 776 | |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 777 | if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD)) |
| 778 | return 1; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 779 | |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 780 | if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE)) |
| 781 | return 1; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 782 | |
| 783 | if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) { |
| 784 | #ifdef CONFIG_X86_64 |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 785 | if ((vcpu->arch.efer & EFER_LME)) { |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 786 | int cs_db, cs_l; |
| 787 | |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 788 | if (!is_pae(vcpu)) |
| 789 | return 1; |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 790 | 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] | 791 | if (cs_l) |
| 792 | return 1; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 793 | } else |
| 794 | #endif |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 795 | if (is_pae(vcpu) && !load_pdptrs(vcpu, vcpu->arch.walk_mmu, |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 796 | kvm_read_cr3(vcpu))) |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 797 | return 1; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 798 | } |
| 799 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 800 | if (!(cr0 & X86_CR0_PG) && kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE)) |
| 801 | return 1; |
| 802 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 803 | kvm_x86_ops.set_cr0(vcpu, cr0); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 804 | |
Lai Jiangshan | d170c41 | 2011-02-21 11:21:30 +0800 | [diff] [blame] | 805 | if ((cr0 ^ old_cr0) & X86_CR0_PG) { |
Xiao Guangrong | e5f3f02 | 2010-11-12 14:47:01 +0800 | [diff] [blame] | 806 | kvm_clear_async_pf_completion_queue(vcpu); |
Lai Jiangshan | d170c41 | 2011-02-21 11:21:30 +0800 | [diff] [blame] | 807 | kvm_async_pf_hash_reset(vcpu); |
| 808 | } |
Xiao Guangrong | e5f3f02 | 2010-11-12 14:47:01 +0800 | [diff] [blame] | 809 | |
Sheng Yang | aad8270 | 2010-05-12 16:40:42 +0800 | [diff] [blame] | 810 | if ((cr0 ^ old_cr0) & update_bits) |
| 811 | kvm_mmu_reset_context(vcpu); |
Xiao Guangrong | b18d543 | 2015-06-15 16:55:21 +0800 | [diff] [blame] | 812 | |
Laszlo Ersek | 879ae18 | 2015-11-04 12:54:41 +0100 | [diff] [blame] | 813 | if (((cr0 ^ old_cr0) & X86_CR0_CD) && |
| 814 | kvm_arch_has_noncoherent_dma(vcpu->kvm) && |
| 815 | !kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED)) |
Xiao Guangrong | b18d543 | 2015-06-15 16:55:21 +0800 | [diff] [blame] | 816 | kvm_zap_gfn_range(vcpu->kvm, 0, ~0ULL); |
| 817 | |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 818 | return 0; |
| 819 | } |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 820 | EXPORT_SYMBOL_GPL(kvm_set_cr0); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 821 | |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 822 | void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw) |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 823 | { |
Avi Kivity | 49a9b07 | 2010-06-10 17:02:14 +0300 | [diff] [blame] | 824 | (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] | 825 | } |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 826 | EXPORT_SYMBOL_GPL(kvm_lmsw); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 827 | |
Aaron Lewis | 139a12c | 2019-10-21 16:30:25 -0700 | [diff] [blame] | 828 | void kvm_load_guest_xsave_state(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | 42bdf99 | 2013-04-15 23:30:13 -0300 | [diff] [blame] | 829 | { |
Aaron Lewis | 139a12c | 2019-10-21 16:30:25 -0700 | [diff] [blame] | 830 | if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)) { |
Marcelo Tosatti | 42bdf99 | 2013-04-15 23:30:13 -0300 | [diff] [blame] | 831 | |
Aaron Lewis | 139a12c | 2019-10-21 16:30:25 -0700 | [diff] [blame] | 832 | if (vcpu->arch.xcr0 != host_xcr0) |
| 833 | xsetbv(XCR_XFEATURE_ENABLED_MASK, vcpu->arch.xcr0); |
| 834 | |
| 835 | if (vcpu->arch.xsaves_enabled && |
| 836 | vcpu->arch.ia32_xss != host_xss) |
| 837 | wrmsrl(MSR_IA32_XSS, vcpu->arch.ia32_xss); |
| 838 | } |
Marcelo Tosatti | 42bdf99 | 2013-04-15 23:30:13 -0300 | [diff] [blame] | 839 | } |
Aaron Lewis | 139a12c | 2019-10-21 16:30:25 -0700 | [diff] [blame] | 840 | EXPORT_SYMBOL_GPL(kvm_load_guest_xsave_state); |
| 841 | |
| 842 | void kvm_load_host_xsave_state(struct kvm_vcpu *vcpu) |
| 843 | { |
| 844 | if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)) { |
| 845 | |
| 846 | if (vcpu->arch.xcr0 != host_xcr0) |
| 847 | xsetbv(XCR_XFEATURE_ENABLED_MASK, host_xcr0); |
| 848 | |
| 849 | if (vcpu->arch.xsaves_enabled && |
| 850 | vcpu->arch.ia32_xss != host_xss) |
| 851 | wrmsrl(MSR_IA32_XSS, host_xss); |
| 852 | } |
| 853 | |
| 854 | } |
| 855 | EXPORT_SYMBOL_GPL(kvm_load_host_xsave_state); |
Marcelo Tosatti | 42bdf99 | 2013-04-15 23:30:13 -0300 | [diff] [blame] | 856 | |
Fengguang Wu | 69b0049 | 2015-01-19 22:33:39 +0800 | [diff] [blame] | 857 | 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] | 858 | { |
Liu, Jinsong | 56c103e | 2014-02-21 17:39:02 +0000 | [diff] [blame] | 859 | u64 xcr0 = xcr; |
| 860 | u64 old_xcr0 = vcpu->arch.xcr0; |
Paolo Bonzini | 46c34cb | 2013-10-17 16:50:46 +0200 | [diff] [blame] | 861 | u64 valid_bits; |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 862 | |
| 863 | /* Only support XCR_XFEATURE_ENABLED_MASK(xcr0) now */ |
| 864 | if (index != XCR_XFEATURE_ENABLED_MASK) |
| 865 | return 1; |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 866 | if (!(xcr0 & XFEATURE_MASK_FP)) |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 867 | return 1; |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 868 | if ((xcr0 & XFEATURE_MASK_YMM) && !(xcr0 & XFEATURE_MASK_SSE)) |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 869 | return 1; |
Paolo Bonzini | 46c34cb | 2013-10-17 16:50:46 +0200 | [diff] [blame] | 870 | |
| 871 | /* |
| 872 | * Do not allow the guest to set bits that we do not support |
| 873 | * saving. However, xcr0 bit 0 is always set, even if the |
| 874 | * emulated CPU does not support XSAVE (see fx_init). |
| 875 | */ |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 876 | valid_bits = vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FP; |
Paolo Bonzini | 46c34cb | 2013-10-17 16:50:46 +0200 | [diff] [blame] | 877 | if (xcr0 & ~valid_bits) |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 878 | return 1; |
Paolo Bonzini | 46c34cb | 2013-10-17 16:50:46 +0200 | [diff] [blame] | 879 | |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 880 | if ((!(xcr0 & XFEATURE_MASK_BNDREGS)) != |
| 881 | (!(xcr0 & XFEATURE_MASK_BNDCSR))) |
Liu, Jinsong | 390bd52 | 2014-02-24 10:58:09 +0000 | [diff] [blame] | 882 | return 1; |
| 883 | |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 884 | if (xcr0 & XFEATURE_MASK_AVX512) { |
| 885 | if (!(xcr0 & XFEATURE_MASK_YMM)) |
Chao Peng | 612263b | 2014-10-22 17:35:24 +0800 | [diff] [blame] | 886 | return 1; |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 887 | if ((xcr0 & XFEATURE_MASK_AVX512) != XFEATURE_MASK_AVX512) |
Chao Peng | 612263b | 2014-10-22 17:35:24 +0800 | [diff] [blame] | 888 | return 1; |
| 889 | } |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 890 | vcpu->arch.xcr0 = xcr0; |
Liu, Jinsong | 56c103e | 2014-02-21 17:39:02 +0000 | [diff] [blame] | 891 | |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 892 | if ((xcr0 ^ old_xcr0) & XFEATURE_MASK_EXTEND) |
Liu, Jinsong | 56c103e | 2014-02-21 17:39:02 +0000 | [diff] [blame] | 893 | kvm_update_cpuid(vcpu); |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 894 | return 0; |
| 895 | } |
| 896 | |
| 897 | int kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr) |
| 898 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 899 | if (kvm_x86_ops.get_cpl(vcpu) != 0 || |
Zhanghaoyu (A) | 764bcbc | 2013-06-14 07:36:13 +0000 | [diff] [blame] | 900 | __kvm_set_xcr(vcpu, index, xcr)) { |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 901 | kvm_inject_gp(vcpu, 0); |
| 902 | return 1; |
| 903 | } |
| 904 | return 0; |
| 905 | } |
| 906 | EXPORT_SYMBOL_GPL(kvm_set_xcr); |
| 907 | |
Sean Christopherson | 345599f | 2019-12-10 14:44:16 -0800 | [diff] [blame] | 908 | #define __cr4_reserved_bits(__cpu_has, __c) \ |
| 909 | ({ \ |
| 910 | u64 __reserved_bits = CR4_RESERVED_BITS; \ |
| 911 | \ |
| 912 | if (!__cpu_has(__c, X86_FEATURE_XSAVE)) \ |
| 913 | __reserved_bits |= X86_CR4_OSXSAVE; \ |
| 914 | if (!__cpu_has(__c, X86_FEATURE_SMEP)) \ |
| 915 | __reserved_bits |= X86_CR4_SMEP; \ |
| 916 | if (!__cpu_has(__c, X86_FEATURE_SMAP)) \ |
| 917 | __reserved_bits |= X86_CR4_SMAP; \ |
| 918 | if (!__cpu_has(__c, X86_FEATURE_FSGSBASE)) \ |
| 919 | __reserved_bits |= X86_CR4_FSGSBASE; \ |
| 920 | if (!__cpu_has(__c, X86_FEATURE_PKU)) \ |
| 921 | __reserved_bits |= X86_CR4_PKE; \ |
| 922 | if (!__cpu_has(__c, X86_FEATURE_LA57)) \ |
| 923 | __reserved_bits |= X86_CR4_LA57; \ |
Sean Christopherson | d76c7fb | 2020-01-28 15:53:44 -0800 | [diff] [blame] | 924 | if (!__cpu_has(__c, X86_FEATURE_UMIP)) \ |
| 925 | __reserved_bits |= X86_CR4_UMIP; \ |
Sean Christopherson | 345599f | 2019-12-10 14:44:16 -0800 | [diff] [blame] | 926 | __reserved_bits; \ |
| 927 | }) |
| 928 | |
Sean Christopherson | b11306b | 2019-12-10 14:44:13 -0800 | [diff] [blame] | 929 | static u64 kvm_host_cr4_reserved_bits(struct cpuinfo_x86 *c) |
| 930 | { |
Sean Christopherson | 345599f | 2019-12-10 14:44:16 -0800 | [diff] [blame] | 931 | u64 reserved_bits = __cr4_reserved_bits(cpu_has, c); |
Sean Christopherson | b11306b | 2019-12-10 14:44:13 -0800 | [diff] [blame] | 932 | |
Sean Christopherson | c10398b | 2020-03-02 15:56:46 -0800 | [diff] [blame] | 933 | if (kvm_cpu_cap_has(X86_FEATURE_LA57)) |
Sean Christopherson | 345599f | 2019-12-10 14:44:16 -0800 | [diff] [blame] | 934 | reserved_bits &= ~X86_CR4_LA57; |
Sean Christopherson | b11306b | 2019-12-10 14:44:13 -0800 | [diff] [blame] | 935 | |
Sean Christopherson | 90d2f60 | 2020-03-02 15:56:47 -0800 | [diff] [blame] | 936 | if (kvm_cpu_cap_has(X86_FEATURE_UMIP)) |
Sean Christopherson | 345599f | 2019-12-10 14:44:16 -0800 | [diff] [blame] | 937 | reserved_bits &= ~X86_CR4_UMIP; |
Sean Christopherson | b11306b | 2019-12-10 14:44:13 -0800 | [diff] [blame] | 938 | |
| 939 | return reserved_bits; |
| 940 | } |
| 941 | |
Wanpeng Li | 3ca9419 | 2019-09-18 17:50:10 +0800 | [diff] [blame] | 942 | static int kvm_valid_cr4(struct kvm_vcpu *vcpu, unsigned long cr4) |
| 943 | { |
Sean Christopherson | b11306b | 2019-12-10 14:44:13 -0800 | [diff] [blame] | 944 | if (cr4 & cr4_reserved_bits) |
Wanpeng Li | 3ca9419 | 2019-09-18 17:50:10 +0800 | [diff] [blame] | 945 | return -EINVAL; |
| 946 | |
Sean Christopherson | 345599f | 2019-12-10 14:44:16 -0800 | [diff] [blame] | 947 | if (cr4 & __cr4_reserved_bits(guest_cpuid_has, vcpu)) |
Wanpeng Li | 3ca9419 | 2019-09-18 17:50:10 +0800 | [diff] [blame] | 948 | return -EINVAL; |
| 949 | |
| 950 | return 0; |
| 951 | } |
| 952 | |
Avi Kivity | a83b29c | 2010-06-10 17:02:15 +0300 | [diff] [blame] | 953 | int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4) |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 954 | { |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 955 | unsigned long old_cr4 = kvm_read_cr4(vcpu); |
Xiao Guangrong | 0be0226 | 2015-05-11 22:55:21 +0800 | [diff] [blame] | 956 | 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] | 957 | X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE; |
Xiao Guangrong | 0be0226 | 2015-05-11 22:55:21 +0800 | [diff] [blame] | 958 | |
Wanpeng Li | 3ca9419 | 2019-09-18 17:50:10 +0800 | [diff] [blame] | 959 | if (kvm_valid_cr4(vcpu, cr4)) |
Paolo Bonzini | ae3e61e | 2016-07-12 10:36:41 +0200 | [diff] [blame] | 960 | return 1; |
| 961 | |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 962 | if (is_long_mode(vcpu)) { |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 963 | if (!(cr4 & X86_CR4_PAE)) |
| 964 | return 1; |
Avi Kivity | a2edf57 | 2009-05-24 22:19:00 +0300 | [diff] [blame] | 965 | } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE) |
| 966 | && ((cr4 ^ old_cr4) & pdptr_bits) |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 967 | && !load_pdptrs(vcpu, vcpu->arch.walk_mmu, |
| 968 | kvm_read_cr3(vcpu))) |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 969 | return 1; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 970 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 971 | if ((cr4 & X86_CR4_PCIDE) && !(old_cr4 & X86_CR4_PCIDE)) { |
Radim Krčmář | d6321d4 | 2017-08-05 00:12:49 +0200 | [diff] [blame] | 972 | if (!guest_cpuid_has(vcpu, X86_FEATURE_PCID)) |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 973 | return 1; |
| 974 | |
| 975 | /* PCID can not be enabled when cr3[11:0]!=000H or EFER.LMA=0 */ |
| 976 | if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_MASK) || !is_long_mode(vcpu)) |
| 977 | return 1; |
| 978 | } |
| 979 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 980 | if (kvm_x86_ops.set_cr4(vcpu, cr4)) |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 981 | return 1; |
| 982 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 983 | if (((cr4 ^ old_cr4) & pdptr_bits) || |
| 984 | (!(cr4 & X86_CR4_PCIDE) && (old_cr4 & X86_CR4_PCIDE))) |
Sheng Yang | aad8270 | 2010-05-12 16:40:42 +0800 | [diff] [blame] | 985 | kvm_mmu_reset_context(vcpu); |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 986 | |
Huaitong Han | b9baba8 | 2016-03-22 16:51:21 +0800 | [diff] [blame] | 987 | if ((cr4 ^ old_cr4) & (X86_CR4_OSXSAVE | X86_CR4_PKE)) |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 988 | kvm_update_cpuid(vcpu); |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 989 | |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 990 | return 0; |
| 991 | } |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 992 | EXPORT_SYMBOL_GPL(kvm_set_cr4); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 993 | |
Avi Kivity | 2390218 | 2010-06-10 17:02:16 +0300 | [diff] [blame] | 994 | int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3) |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 995 | { |
Junaid Shahid | ade61e2 | 2018-06-27 14:59:15 -0700 | [diff] [blame] | 996 | bool skip_tlb_flush = false; |
Paolo Bonzini | ac14623 | 2014-11-10 13:53:25 +0100 | [diff] [blame] | 997 | #ifdef CONFIG_X86_64 |
Junaid Shahid | c19986f | 2018-05-04 11:37:13 -0700 | [diff] [blame] | 998 | bool pcid_enabled = kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE); |
| 999 | |
Junaid Shahid | ade61e2 | 2018-06-27 14:59:15 -0700 | [diff] [blame] | 1000 | if (pcid_enabled) { |
Junaid Shahid | 208320b | 2018-06-27 14:59:21 -0700 | [diff] [blame] | 1001 | skip_tlb_flush = cr3 & X86_CR3_PCID_NOFLUSH; |
| 1002 | cr3 &= ~X86_CR3_PCID_NOFLUSH; |
Junaid Shahid | ade61e2 | 2018-06-27 14:59:15 -0700 | [diff] [blame] | 1003 | } |
Paolo Bonzini | ac14623 | 2014-11-10 13:53:25 +0100 | [diff] [blame] | 1004 | #endif |
Nadav Amit | 9d88fca | 2014-11-02 11:54:52 +0200 | [diff] [blame] | 1005 | |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 1006 | if (cr3 == kvm_read_cr3(vcpu) && !pdptrs_changed(vcpu)) { |
Junaid Shahid | 956bf35 | 2018-06-27 14:59:18 -0700 | [diff] [blame] | 1007 | if (!skip_tlb_flush) { |
| 1008 | kvm_mmu_sync_roots(vcpu); |
Junaid Shahid | ade61e2 | 2018-06-27 14:59:15 -0700 | [diff] [blame] | 1009 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Junaid Shahid | 956bf35 | 2018-06-27 14:59:18 -0700 | [diff] [blame] | 1010 | } |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 1011 | return 0; |
Avi Kivity | d835dfe | 2007-11-21 02:57:59 +0200 | [diff] [blame] | 1012 | } |
| 1013 | |
Yu Zhang | d1cd3ce | 2017-08-24 20:27:53 +0800 | [diff] [blame] | 1014 | if (is_long_mode(vcpu) && |
Wanpeng Li | a780a3e | 2018-05-13 02:24:47 -0700 | [diff] [blame] | 1015 | (cr3 & rsvd_bits(cpuid_maxphyaddr(vcpu), 63))) |
Yu Zhang | d1cd3ce | 2017-08-24 20:27:53 +0800 | [diff] [blame] | 1016 | return 1; |
Paolo Bonzini | bf03d4f | 2019-06-06 18:52:44 +0200 | [diff] [blame] | 1017 | else if (is_pae_paging(vcpu) && |
| 1018 | !load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3)) |
Nadav Amit | 346874c | 2014-04-18 03:35:09 +0300 | [diff] [blame] | 1019 | return 1; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 1020 | |
Junaid Shahid | ade61e2 | 2018-06-27 14:59:15 -0700 | [diff] [blame] | 1021 | kvm_mmu_new_cr3(vcpu, cr3, skip_tlb_flush); |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 1022 | vcpu->arch.cr3 = cr3; |
Sean Christopherson | cb3c1e2 | 2019-09-27 14:45:22 -0700 | [diff] [blame] | 1023 | kvm_register_mark_available(vcpu, VCPU_EXREG_CR3); |
Junaid Shahid | 7c390d3 | 2018-06-27 14:59:06 -0700 | [diff] [blame] | 1024 | |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 1025 | return 0; |
| 1026 | } |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 1027 | EXPORT_SYMBOL_GPL(kvm_set_cr3); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 1028 | |
Andre Przywara | eea1cff | 2010-12-21 11:12:00 +0100 | [diff] [blame] | 1029 | int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8) |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 1030 | { |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 1031 | if (cr8 & CR8_RESERVED_BITS) |
| 1032 | return 1; |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 1033 | if (lapic_in_kernel(vcpu)) |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 1034 | kvm_lapic_set_tpr(vcpu, cr8); |
| 1035 | else |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 1036 | vcpu->arch.cr8 = cr8; |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 1037 | return 0; |
| 1038 | } |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 1039 | EXPORT_SYMBOL_GPL(kvm_set_cr8); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 1040 | |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 1041 | unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu) |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 1042 | { |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 1043 | if (lapic_in_kernel(vcpu)) |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 1044 | return kvm_lapic_get_cr8(vcpu); |
| 1045 | else |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 1046 | return vcpu->arch.cr8; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 1047 | } |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 1048 | EXPORT_SYMBOL_GPL(kvm_get_cr8); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 1049 | |
Nadav Amit | ae561ed | 2015-04-02 03:10:37 +0300 | [diff] [blame] | 1050 | static void kvm_update_dr0123(struct kvm_vcpu *vcpu) |
| 1051 | { |
| 1052 | int i; |
| 1053 | |
| 1054 | if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) { |
| 1055 | for (i = 0; i < KVM_NR_DB_REGS; i++) |
| 1056 | vcpu->arch.eff_db[i] = vcpu->arch.db[i]; |
| 1057 | vcpu->arch.switch_db_regs |= KVM_DEBUGREG_RELOAD; |
| 1058 | } |
| 1059 | } |
| 1060 | |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 1061 | static void kvm_update_dr6(struct kvm_vcpu *vcpu) |
| 1062 | { |
| 1063 | if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 1064 | kvm_x86_ops.set_dr6(vcpu, vcpu->arch.dr6); |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 1065 | } |
| 1066 | |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 1067 | static void kvm_update_dr7(struct kvm_vcpu *vcpu) |
| 1068 | { |
| 1069 | unsigned long dr7; |
| 1070 | |
| 1071 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) |
| 1072 | dr7 = vcpu->arch.guest_debug_dr7; |
| 1073 | else |
| 1074 | dr7 = vcpu->arch.dr7; |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 1075 | kvm_x86_ops.set_dr7(vcpu, dr7); |
Paolo Bonzini | 360b948 | 2014-02-21 09:55:56 +0100 | [diff] [blame] | 1076 | vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_BP_ENABLED; |
| 1077 | if (dr7 & DR7_BP_EN_MASK) |
| 1078 | vcpu->arch.switch_db_regs |= KVM_DEBUGREG_BP_ENABLED; |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 1079 | } |
| 1080 | |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 1081 | static u64 kvm_dr6_fixed(struct kvm_vcpu *vcpu) |
| 1082 | { |
| 1083 | u64 fixed = DR6_FIXED_1; |
| 1084 | |
Radim Krčmář | d6321d4 | 2017-08-05 00:12:49 +0200 | [diff] [blame] | 1085 | if (!guest_cpuid_has(vcpu, X86_FEATURE_RTM)) |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 1086 | fixed |= DR6_RTM; |
| 1087 | return fixed; |
| 1088 | } |
| 1089 | |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 1090 | 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] | 1091 | { |
Marios Pomonis | ea74005 | 2019-12-11 12:47:52 -0800 | [diff] [blame] | 1092 | size_t size = ARRAY_SIZE(vcpu->arch.db); |
| 1093 | |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 1094 | switch (dr) { |
| 1095 | case 0 ... 3: |
Marios Pomonis | ea74005 | 2019-12-11 12:47:52 -0800 | [diff] [blame] | 1096 | vcpu->arch.db[array_index_nospec(dr, size)] = val; |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 1097 | if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) |
| 1098 | vcpu->arch.eff_db[dr] = val; |
| 1099 | break; |
| 1100 | case 4: |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 1101 | /* fall through */ |
| 1102 | case 6: |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 1103 | if (val & 0xffffffff00000000ULL) |
| 1104 | return -1; /* #GP */ |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 1105 | vcpu->arch.dr6 = (val & DR6_VOLATILE) | kvm_dr6_fixed(vcpu); |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 1106 | kvm_update_dr6(vcpu); |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 1107 | break; |
| 1108 | case 5: |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 1109 | /* fall through */ |
| 1110 | default: /* 7 */ |
Krish Sadhukhan | b91991b | 2020-01-15 19:54:32 -0500 | [diff] [blame] | 1111 | if (!kvm_dr7_valid(val)) |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 1112 | return -1; /* #GP */ |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 1113 | vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1; |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 1114 | kvm_update_dr7(vcpu); |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 1115 | break; |
| 1116 | } |
| 1117 | |
| 1118 | return 0; |
| 1119 | } |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 1120 | |
| 1121 | int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val) |
| 1122 | { |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 1123 | if (__kvm_set_dr(vcpu, dr, val)) { |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 1124 | kvm_inject_gp(vcpu, 0); |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 1125 | return 1; |
| 1126 | } |
| 1127 | return 0; |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 1128 | } |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 1129 | EXPORT_SYMBOL_GPL(kvm_set_dr); |
| 1130 | |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 1131 | 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] | 1132 | { |
Marios Pomonis | ea74005 | 2019-12-11 12:47:52 -0800 | [diff] [blame] | 1133 | size_t size = ARRAY_SIZE(vcpu->arch.db); |
| 1134 | |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 1135 | switch (dr) { |
| 1136 | case 0 ... 3: |
Marios Pomonis | ea74005 | 2019-12-11 12:47:52 -0800 | [diff] [blame] | 1137 | *val = vcpu->arch.db[array_index_nospec(dr, size)]; |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 1138 | break; |
| 1139 | case 4: |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 1140 | /* fall through */ |
| 1141 | case 6: |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 1142 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) |
| 1143 | *val = vcpu->arch.dr6; |
| 1144 | else |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 1145 | *val = kvm_x86_ops.get_dr6(vcpu); |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 1146 | break; |
| 1147 | case 5: |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 1148 | /* fall through */ |
| 1149 | default: /* 7 */ |
| 1150 | *val = vcpu->arch.dr7; |
| 1151 | break; |
| 1152 | } |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 1153 | return 0; |
| 1154 | } |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 1155 | EXPORT_SYMBOL_GPL(kvm_get_dr); |
| 1156 | |
Avi Kivity | 022cd0e | 2011-11-10 14:57:23 +0200 | [diff] [blame] | 1157 | bool kvm_rdpmc(struct kvm_vcpu *vcpu) |
| 1158 | { |
Sean Christopherson | de3cd11 | 2019-04-30 10:36:17 -0700 | [diff] [blame] | 1159 | u32 ecx = kvm_rcx_read(vcpu); |
Avi Kivity | 022cd0e | 2011-11-10 14:57:23 +0200 | [diff] [blame] | 1160 | u64 data; |
| 1161 | int err; |
| 1162 | |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 1163 | err = kvm_pmu_rdpmc(vcpu, ecx, &data); |
Avi Kivity | 022cd0e | 2011-11-10 14:57:23 +0200 | [diff] [blame] | 1164 | if (err) |
| 1165 | return err; |
Sean Christopherson | de3cd11 | 2019-04-30 10:36:17 -0700 | [diff] [blame] | 1166 | kvm_rax_write(vcpu, (u32)data); |
| 1167 | kvm_rdx_write(vcpu, data >> 32); |
Avi Kivity | 022cd0e | 2011-11-10 14:57:23 +0200 | [diff] [blame] | 1168 | return err; |
| 1169 | } |
| 1170 | EXPORT_SYMBOL_GPL(kvm_rdpmc); |
| 1171 | |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 1172 | /* |
| 1173 | * List of msr numbers which we expose to userspace through KVM_GET_MSRS |
| 1174 | * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST. |
| 1175 | * |
Chenyi Qiang | 7a5ee6e | 2019-11-06 14:35:20 +0800 | [diff] [blame] | 1176 | * The three MSR lists(msrs_to_save, emulated_msrs, msr_based_features) |
| 1177 | * extract the supported MSRs from the related const lists. |
| 1178 | * msrs_to_save is selected from the msrs_to_save_all to reflect the |
Glauber Costa | e3267cb | 2009-10-06 13:24:50 -0400 | [diff] [blame] | 1179 | * capabilities of the host cpu. This capabilities test skips MSRs that are |
Chenyi Qiang | 7a5ee6e | 2019-11-06 14:35:20 +0800 | [diff] [blame] | 1180 | * kvm-specific. Those are put in emulated_msrs_all; filtering of emulated_msrs |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 1181 | * may depend on host virtualization features rather than host cpu features. |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 1182 | */ |
Glauber Costa | e3267cb | 2009-10-06 13:24:50 -0400 | [diff] [blame] | 1183 | |
Chenyi Qiang | 7a5ee6e | 2019-11-06 14:35:20 +0800 | [diff] [blame] | 1184 | static const u32 msrs_to_save_all[] = { |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 1185 | MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP, |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 1186 | MSR_STAR, |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 1187 | #ifdef CONFIG_X86_64 |
| 1188 | MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR, |
| 1189 | #endif |
Nadav Har'El | b3897a4 | 2013-07-08 19:12:35 +0800 | [diff] [blame] | 1190 | MSR_IA32_TSC, MSR_IA32_CR_PAT, MSR_VM_HSAVE_PA, |
Sean Christopherson | 32ad73d | 2019-12-20 20:44:55 -0800 | [diff] [blame] | 1191 | MSR_IA32_FEAT_CTL, MSR_IA32_BNDCFGS, MSR_TSC_AUX, |
Xiaoyao Li | 2bdb76c | 2019-03-08 15:57:20 +0800 | [diff] [blame] | 1192 | MSR_IA32_SPEC_CTRL, |
Chao Peng | bf8c55d | 2018-10-24 16:05:14 +0800 | [diff] [blame] | 1193 | MSR_IA32_RTIT_CTL, MSR_IA32_RTIT_STATUS, MSR_IA32_RTIT_CR3_MATCH, |
| 1194 | MSR_IA32_RTIT_OUTPUT_BASE, MSR_IA32_RTIT_OUTPUT_MASK, |
| 1195 | MSR_IA32_RTIT_ADDR0_A, MSR_IA32_RTIT_ADDR0_B, |
| 1196 | MSR_IA32_RTIT_ADDR1_A, MSR_IA32_RTIT_ADDR1_B, |
| 1197 | MSR_IA32_RTIT_ADDR2_A, MSR_IA32_RTIT_ADDR2_B, |
| 1198 | MSR_IA32_RTIT_ADDR3_A, MSR_IA32_RTIT_ADDR3_B, |
Tao Xu | 6e3ba4a | 2019-07-16 14:55:50 +0800 | [diff] [blame] | 1199 | MSR_IA32_UMWAIT_CONTROL, |
| 1200 | |
Jim Mattson | e2ada66 | 2019-08-21 11:20:04 -0700 | [diff] [blame] | 1201 | MSR_ARCH_PERFMON_FIXED_CTR0, MSR_ARCH_PERFMON_FIXED_CTR1, |
| 1202 | MSR_ARCH_PERFMON_FIXED_CTR0 + 2, MSR_ARCH_PERFMON_FIXED_CTR0 + 3, |
| 1203 | MSR_CORE_PERF_FIXED_CTR_CTRL, MSR_CORE_PERF_GLOBAL_STATUS, |
| 1204 | MSR_CORE_PERF_GLOBAL_CTRL, MSR_CORE_PERF_GLOBAL_OVF_CTRL, |
| 1205 | MSR_ARCH_PERFMON_PERFCTR0, MSR_ARCH_PERFMON_PERFCTR1, |
| 1206 | MSR_ARCH_PERFMON_PERFCTR0 + 2, MSR_ARCH_PERFMON_PERFCTR0 + 3, |
| 1207 | MSR_ARCH_PERFMON_PERFCTR0 + 4, MSR_ARCH_PERFMON_PERFCTR0 + 5, |
| 1208 | MSR_ARCH_PERFMON_PERFCTR0 + 6, MSR_ARCH_PERFMON_PERFCTR0 + 7, |
| 1209 | MSR_ARCH_PERFMON_PERFCTR0 + 8, MSR_ARCH_PERFMON_PERFCTR0 + 9, |
| 1210 | MSR_ARCH_PERFMON_PERFCTR0 + 10, MSR_ARCH_PERFMON_PERFCTR0 + 11, |
| 1211 | MSR_ARCH_PERFMON_PERFCTR0 + 12, MSR_ARCH_PERFMON_PERFCTR0 + 13, |
| 1212 | MSR_ARCH_PERFMON_PERFCTR0 + 14, MSR_ARCH_PERFMON_PERFCTR0 + 15, |
| 1213 | MSR_ARCH_PERFMON_PERFCTR0 + 16, MSR_ARCH_PERFMON_PERFCTR0 + 17, |
Jim Mattson | e2ada66 | 2019-08-21 11:20:04 -0700 | [diff] [blame] | 1214 | MSR_ARCH_PERFMON_EVENTSEL0, MSR_ARCH_PERFMON_EVENTSEL1, |
| 1215 | MSR_ARCH_PERFMON_EVENTSEL0 + 2, MSR_ARCH_PERFMON_EVENTSEL0 + 3, |
| 1216 | MSR_ARCH_PERFMON_EVENTSEL0 + 4, MSR_ARCH_PERFMON_EVENTSEL0 + 5, |
| 1217 | MSR_ARCH_PERFMON_EVENTSEL0 + 6, MSR_ARCH_PERFMON_EVENTSEL0 + 7, |
| 1218 | MSR_ARCH_PERFMON_EVENTSEL0 + 8, MSR_ARCH_PERFMON_EVENTSEL0 + 9, |
| 1219 | MSR_ARCH_PERFMON_EVENTSEL0 + 10, MSR_ARCH_PERFMON_EVENTSEL0 + 11, |
| 1220 | MSR_ARCH_PERFMON_EVENTSEL0 + 12, MSR_ARCH_PERFMON_EVENTSEL0 + 13, |
| 1221 | MSR_ARCH_PERFMON_EVENTSEL0 + 14, MSR_ARCH_PERFMON_EVENTSEL0 + 15, |
| 1222 | MSR_ARCH_PERFMON_EVENTSEL0 + 16, MSR_ARCH_PERFMON_EVENTSEL0 + 17, |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 1223 | }; |
| 1224 | |
Chenyi Qiang | 7a5ee6e | 2019-11-06 14:35:20 +0800 | [diff] [blame] | 1225 | static u32 msrs_to_save[ARRAY_SIZE(msrs_to_save_all)]; |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 1226 | static unsigned num_msrs_to_save; |
| 1227 | |
Chenyi Qiang | 7a5ee6e | 2019-11-06 14:35:20 +0800 | [diff] [blame] | 1228 | static const u32 emulated_msrs_all[] = { |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 1229 | MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK, |
| 1230 | MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW, |
| 1231 | HV_X64_MSR_GUEST_OS_ID, HV_X64_MSR_HYPERCALL, |
| 1232 | HV_X64_MSR_TIME_REF_COUNT, HV_X64_MSR_REFERENCE_TSC, |
Ladi Prosek | 72c139b | 2017-07-26 13:32:59 +0200 | [diff] [blame] | 1233 | HV_X64_MSR_TSC_FREQUENCY, HV_X64_MSR_APIC_FREQUENCY, |
Andrey Smetanin | e7d9513 | 2015-07-03 15:01:37 +0300 | [diff] [blame] | 1234 | HV_X64_MSR_CRASH_P0, HV_X64_MSR_CRASH_P1, HV_X64_MSR_CRASH_P2, |
| 1235 | 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] | 1236 | HV_X64_MSR_RESET, |
Andrey Smetanin | 11c4b1c | 2015-09-16 12:29:49 +0300 | [diff] [blame] | 1237 | HV_X64_MSR_VP_INDEX, |
Andrey Smetanin | 9eec50b | 2015-09-16 12:29:50 +0300 | [diff] [blame] | 1238 | HV_X64_MSR_VP_RUNTIME, |
Andrey Smetanin | 5c919412 | 2015-11-10 15:36:34 +0300 | [diff] [blame] | 1239 | HV_X64_MSR_SCONTROL, |
Andrey Smetanin | 1f4b34f | 2015-11-30 19:22:21 +0300 | [diff] [blame] | 1240 | HV_X64_MSR_STIMER0_CONFIG, |
Ladi Prosek | d4abc57 | 2018-03-20 15:02:07 +0100 | [diff] [blame] | 1241 | HV_X64_MSR_VP_ASSIST_PAGE, |
Vitaly Kuznetsov | a2e164e | 2018-03-01 15:15:12 +0100 | [diff] [blame] | 1242 | HV_X64_MSR_REENLIGHTENMENT_CONTROL, HV_X64_MSR_TSC_EMULATION_CONTROL, |
| 1243 | HV_X64_MSR_TSC_EMULATION_STATUS, |
| 1244 | |
| 1245 | MSR_KVM_ASYNC_PF_EN, MSR_KVM_STEAL_TIME, |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 1246 | MSR_KVM_PV_EOI_EN, |
| 1247 | |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 1248 | MSR_IA32_TSC_ADJUST, |
Liu, Jinsong | a3e06bb | 2011-09-22 16:55:52 +0800 | [diff] [blame] | 1249 | MSR_IA32_TSCDEADLINE, |
Xiaoyao Li | 2bdb76c | 2019-03-08 15:57:20 +0800 | [diff] [blame] | 1250 | MSR_IA32_ARCH_CAPABILITIES, |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 1251 | MSR_IA32_MISC_ENABLE, |
Avi Kivity | 908e75f | 2010-07-07 14:09:38 +0300 | [diff] [blame] | 1252 | MSR_IA32_MCG_STATUS, |
| 1253 | MSR_IA32_MCG_CTL, |
Ashok Raj | c45dcc7 | 2016-06-22 14:59:56 +0800 | [diff] [blame] | 1254 | MSR_IA32_MCG_EXT_CTL, |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 1255 | MSR_IA32_SMBASE, |
Liran Alon | 52797bf | 2017-11-15 13:43:14 +0200 | [diff] [blame] | 1256 | MSR_SMI_COUNT, |
Kyle Huey | db2336a | 2017-03-20 01:16:28 -0700 | [diff] [blame] | 1257 | MSR_PLATFORM_INFO, |
| 1258 | MSR_MISC_FEATURES_ENABLES, |
Tom Lendacky | bc226f0 | 2018-05-10 22:06:39 +0200 | [diff] [blame] | 1259 | MSR_AMD64_VIRT_SPEC_CTRL, |
Liran Alon | 6c6a2ab | 2019-04-15 18:45:26 +0300 | [diff] [blame] | 1260 | MSR_IA32_POWER_CTL, |
Paolo Bonzini | 99634e3 | 2020-01-20 14:22:55 +0100 | [diff] [blame] | 1261 | MSR_IA32_UCODE_REV, |
Borislav Petkov | 191c813 | 2019-04-18 18:32:50 +0200 | [diff] [blame] | 1262 | |
Paolo Bonzini | 95c5c7c | 2019-07-02 14:45:24 +0200 | [diff] [blame] | 1263 | /* |
| 1264 | * The following list leaves out MSRs whose values are determined |
| 1265 | * by arch/x86/kvm/vmx/nested.c based on CPUID or other MSRs. |
| 1266 | * We always support the "true" VMX control MSRs, even if the host |
| 1267 | * processor does not, so I am putting these registers here rather |
Chenyi Qiang | 7a5ee6e | 2019-11-06 14:35:20 +0800 | [diff] [blame] | 1268 | * than in msrs_to_save_all. |
Paolo Bonzini | 95c5c7c | 2019-07-02 14:45:24 +0200 | [diff] [blame] | 1269 | */ |
| 1270 | MSR_IA32_VMX_BASIC, |
| 1271 | MSR_IA32_VMX_TRUE_PINBASED_CTLS, |
| 1272 | MSR_IA32_VMX_TRUE_PROCBASED_CTLS, |
| 1273 | MSR_IA32_VMX_TRUE_EXIT_CTLS, |
| 1274 | MSR_IA32_VMX_TRUE_ENTRY_CTLS, |
| 1275 | MSR_IA32_VMX_MISC, |
| 1276 | MSR_IA32_VMX_CR0_FIXED0, |
| 1277 | MSR_IA32_VMX_CR4_FIXED0, |
| 1278 | MSR_IA32_VMX_VMCS_ENUM, |
| 1279 | MSR_IA32_VMX_PROCBASED_CTLS2, |
| 1280 | MSR_IA32_VMX_EPT_VPID_CAP, |
| 1281 | MSR_IA32_VMX_VMFUNC, |
| 1282 | |
Borislav Petkov | 191c813 | 2019-04-18 18:32:50 +0200 | [diff] [blame] | 1283 | MSR_K7_HWCR, |
Marcelo Tosatti | 2d5ba19 | 2019-06-03 19:52:44 -0300 | [diff] [blame] | 1284 | MSR_KVM_POLL_CONTROL, |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 1285 | }; |
| 1286 | |
Chenyi Qiang | 7a5ee6e | 2019-11-06 14:35:20 +0800 | [diff] [blame] | 1287 | static u32 emulated_msrs[ARRAY_SIZE(emulated_msrs_all)]; |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 1288 | static unsigned num_emulated_msrs; |
| 1289 | |
Tom Lendacky | 801e459 | 2018-02-21 13:39:51 -0600 | [diff] [blame] | 1290 | /* |
| 1291 | * List of msr numbers which are used to expose MSR-based features that |
| 1292 | * can be used by a hypervisor to validate requested CPU features. |
| 1293 | */ |
Chenyi Qiang | 7a5ee6e | 2019-11-06 14:35:20 +0800 | [diff] [blame] | 1294 | static const u32 msr_based_features_all[] = { |
Paolo Bonzini | 1389309 | 2018-02-26 13:40:09 +0100 | [diff] [blame] | 1295 | MSR_IA32_VMX_BASIC, |
| 1296 | MSR_IA32_VMX_TRUE_PINBASED_CTLS, |
| 1297 | MSR_IA32_VMX_PINBASED_CTLS, |
| 1298 | MSR_IA32_VMX_TRUE_PROCBASED_CTLS, |
| 1299 | MSR_IA32_VMX_PROCBASED_CTLS, |
| 1300 | MSR_IA32_VMX_TRUE_EXIT_CTLS, |
| 1301 | MSR_IA32_VMX_EXIT_CTLS, |
| 1302 | MSR_IA32_VMX_TRUE_ENTRY_CTLS, |
| 1303 | MSR_IA32_VMX_ENTRY_CTLS, |
| 1304 | MSR_IA32_VMX_MISC, |
| 1305 | MSR_IA32_VMX_CR0_FIXED0, |
| 1306 | MSR_IA32_VMX_CR0_FIXED1, |
| 1307 | MSR_IA32_VMX_CR4_FIXED0, |
| 1308 | MSR_IA32_VMX_CR4_FIXED1, |
| 1309 | MSR_IA32_VMX_VMCS_ENUM, |
| 1310 | MSR_IA32_VMX_PROCBASED_CTLS2, |
| 1311 | MSR_IA32_VMX_EPT_VPID_CAP, |
| 1312 | MSR_IA32_VMX_VMFUNC, |
| 1313 | |
Tom Lendacky | d1d93fa | 2018-02-24 00:18:20 +0100 | [diff] [blame] | 1314 | MSR_F10H_DECFG, |
Wanpeng Li | 518e7b9 | 2018-02-28 14:03:31 +0800 | [diff] [blame] | 1315 | MSR_IA32_UCODE_REV, |
Paolo Bonzini | cd28325 | 2018-06-25 14:04:37 +0200 | [diff] [blame] | 1316 | MSR_IA32_ARCH_CAPABILITIES, |
Tom Lendacky | 801e459 | 2018-02-21 13:39:51 -0600 | [diff] [blame] | 1317 | }; |
| 1318 | |
Chenyi Qiang | 7a5ee6e | 2019-11-06 14:35:20 +0800 | [diff] [blame] | 1319 | static u32 msr_based_features[ARRAY_SIZE(msr_based_features_all)]; |
Tom Lendacky | 801e459 | 2018-02-21 13:39:51 -0600 | [diff] [blame] | 1320 | static unsigned int num_msr_based_features; |
| 1321 | |
Xiaoyao Li | 4d22c17 | 2019-04-19 10:16:24 +0800 | [diff] [blame] | 1322 | static u64 kvm_get_arch_capabilities(void) |
Paolo Bonzini | 5b76a3c | 2018-08-05 16:07:47 +0200 | [diff] [blame] | 1323 | { |
Xiaoyao Li | 4d22c17 | 2019-04-19 10:16:24 +0800 | [diff] [blame] | 1324 | u64 data = 0; |
Paolo Bonzini | 5b76a3c | 2018-08-05 16:07:47 +0200 | [diff] [blame] | 1325 | |
Xiaoyao Li | 4d22c17 | 2019-04-19 10:16:24 +0800 | [diff] [blame] | 1326 | if (boot_cpu_has(X86_FEATURE_ARCH_CAPABILITIES)) |
| 1327 | rdmsrl(MSR_IA32_ARCH_CAPABILITIES, data); |
Paolo Bonzini | 5b76a3c | 2018-08-05 16:07:47 +0200 | [diff] [blame] | 1328 | |
| 1329 | /* |
Paolo Bonzini | b8e8c83 | 2019-11-04 12:22:02 +0100 | [diff] [blame] | 1330 | * If nx_huge_pages is enabled, KVM's shadow paging will ensure that |
| 1331 | * the nested hypervisor runs with NX huge pages. If it is not, |
| 1332 | * L1 is anyway vulnerable to ITLB_MULTIHIT explots from other |
| 1333 | * L1 guests, so it need not worry about its own (L2) guests. |
| 1334 | */ |
| 1335 | data |= ARCH_CAP_PSCHANGE_MC_NO; |
| 1336 | |
| 1337 | /* |
Paolo Bonzini | 5b76a3c | 2018-08-05 16:07:47 +0200 | [diff] [blame] | 1338 | * If we're doing cache flushes (either "always" or "cond") |
| 1339 | * we will do one whenever the guest does a vmlaunch/vmresume. |
| 1340 | * If an outer hypervisor is doing the cache flush for us |
| 1341 | * (VMENTER_L1D_FLUSH_NESTED_VM), we can safely pass that |
| 1342 | * capability to the guest too, and if EPT is disabled we're not |
| 1343 | * vulnerable. Overall, only VMENTER_L1D_FLUSH_NEVER will |
| 1344 | * require a nested hypervisor to do a flush of its own. |
| 1345 | */ |
| 1346 | if (l1tf_vmx_mitigation != VMENTER_L1D_FLUSH_NEVER) |
| 1347 | data |= ARCH_CAP_SKIP_VMENTRY_L1DFLUSH; |
| 1348 | |
Paolo Bonzini | 0c54914 | 2019-08-19 17:24:07 +0200 | [diff] [blame] | 1349 | if (!boot_cpu_has_bug(X86_BUG_CPU_MELTDOWN)) |
| 1350 | data |= ARCH_CAP_RDCL_NO; |
| 1351 | if (!boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS)) |
| 1352 | data |= ARCH_CAP_SSB_NO; |
| 1353 | if (!boot_cpu_has_bug(X86_BUG_MDS)) |
| 1354 | data |= ARCH_CAP_MDS_NO; |
| 1355 | |
Pawan Gupta | e1d38b6 | 2019-10-23 12:23:33 +0200 | [diff] [blame] | 1356 | /* |
Paolo Bonzini | c11f83e | 2019-11-18 12:23:00 -0500 | [diff] [blame] | 1357 | * On TAA affected systems: |
| 1358 | * - nothing to do if TSX is disabled on the host. |
| 1359 | * - we emulate TSX_CTRL if present on the host. |
| 1360 | * This lets the guest use VERW to clear CPU buffers. |
Pawan Gupta | e1d38b6 | 2019-10-23 12:23:33 +0200 | [diff] [blame] | 1361 | */ |
Paolo Bonzini | cbbaa27 | 2019-11-18 18:58:26 +0100 | [diff] [blame] | 1362 | if (!boot_cpu_has(X86_FEATURE_RTM)) |
Paolo Bonzini | c11f83e | 2019-11-18 12:23:00 -0500 | [diff] [blame] | 1363 | data &= ~(ARCH_CAP_TAA_NO | ARCH_CAP_TSX_CTRL_MSR); |
Paolo Bonzini | cbbaa27 | 2019-11-18 18:58:26 +0100 | [diff] [blame] | 1364 | else if (!boot_cpu_has_bug(X86_BUG_TAA)) |
| 1365 | data |= ARCH_CAP_TAA_NO; |
Pawan Gupta | e1d38b6 | 2019-10-23 12:23:33 +0200 | [diff] [blame] | 1366 | |
Paolo Bonzini | 5b76a3c | 2018-08-05 16:07:47 +0200 | [diff] [blame] | 1367 | return data; |
| 1368 | } |
Paolo Bonzini | 5b76a3c | 2018-08-05 16:07:47 +0200 | [diff] [blame] | 1369 | |
Wanpeng Li | 66421c1 | 2018-02-28 14:03:30 +0800 | [diff] [blame] | 1370 | static int kvm_get_msr_feature(struct kvm_msr_entry *msr) |
| 1371 | { |
| 1372 | switch (msr->index) { |
Paolo Bonzini | cd28325 | 2018-06-25 14:04:37 +0200 | [diff] [blame] | 1373 | case MSR_IA32_ARCH_CAPABILITIES: |
Paolo Bonzini | 5b76a3c | 2018-08-05 16:07:47 +0200 | [diff] [blame] | 1374 | msr->data = kvm_get_arch_capabilities(); |
| 1375 | break; |
| 1376 | case MSR_IA32_UCODE_REV: |
Paolo Bonzini | cd28325 | 2018-06-25 14:04:37 +0200 | [diff] [blame] | 1377 | rdmsrl_safe(msr->index, &msr->data); |
Wanpeng Li | 518e7b9 | 2018-02-28 14:03:31 +0800 | [diff] [blame] | 1378 | break; |
Wanpeng Li | 66421c1 | 2018-02-28 14:03:30 +0800 | [diff] [blame] | 1379 | default: |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 1380 | if (kvm_x86_ops.get_msr_feature(msr)) |
Wanpeng Li | 66421c1 | 2018-02-28 14:03:30 +0800 | [diff] [blame] | 1381 | return 1; |
| 1382 | } |
| 1383 | return 0; |
| 1384 | } |
| 1385 | |
Tom Lendacky | 801e459 | 2018-02-21 13:39:51 -0600 | [diff] [blame] | 1386 | static int do_get_msr_feature(struct kvm_vcpu *vcpu, unsigned index, u64 *data) |
| 1387 | { |
| 1388 | struct kvm_msr_entry msr; |
Wanpeng Li | 66421c1 | 2018-02-28 14:03:30 +0800 | [diff] [blame] | 1389 | int r; |
Tom Lendacky | 801e459 | 2018-02-21 13:39:51 -0600 | [diff] [blame] | 1390 | |
| 1391 | msr.index = index; |
Wanpeng Li | 66421c1 | 2018-02-28 14:03:30 +0800 | [diff] [blame] | 1392 | r = kvm_get_msr_feature(&msr); |
| 1393 | if (r) |
| 1394 | return r; |
Tom Lendacky | 801e459 | 2018-02-21 13:39:51 -0600 | [diff] [blame] | 1395 | |
| 1396 | *data = msr.data; |
| 1397 | |
| 1398 | return 0; |
| 1399 | } |
| 1400 | |
Sean Christopherson | 1198849 | 2019-04-02 08:19:15 -0700 | [diff] [blame] | 1401 | static bool __kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer) |
| 1402 | { |
| 1403 | if (efer & EFER_FFXSR && !guest_cpuid_has(vcpu, X86_FEATURE_FXSR_OPT)) |
| 1404 | return false; |
| 1405 | |
| 1406 | if (efer & EFER_SVME && !guest_cpuid_has(vcpu, X86_FEATURE_SVM)) |
| 1407 | return false; |
| 1408 | |
Sean Christopherson | 0a62956 | 2019-04-02 08:19:16 -0700 | [diff] [blame] | 1409 | if (efer & (EFER_LME | EFER_LMA) && |
| 1410 | !guest_cpuid_has(vcpu, X86_FEATURE_LM)) |
| 1411 | return false; |
| 1412 | |
| 1413 | if (efer & EFER_NX && !guest_cpuid_has(vcpu, X86_FEATURE_NX)) |
| 1414 | return false; |
| 1415 | |
Sean Christopherson | 1198849 | 2019-04-02 08:19:15 -0700 | [diff] [blame] | 1416 | return true; |
| 1417 | |
| 1418 | } |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 1419 | bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer) |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1420 | { |
Roedel, Joerg | b69e8ca | 2010-05-06 11:38:43 +0200 | [diff] [blame] | 1421 | if (efer & efer_reserved_bits) |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 1422 | return false; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1423 | |
Sean Christopherson | 1198849 | 2019-04-02 08:19:15 -0700 | [diff] [blame] | 1424 | return __kvm_valid_efer(vcpu, efer); |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 1425 | } |
| 1426 | EXPORT_SYMBOL_GPL(kvm_valid_efer); |
| 1427 | |
Sean Christopherson | 1198849 | 2019-04-02 08:19:15 -0700 | [diff] [blame] | 1428 | static int set_efer(struct kvm_vcpu *vcpu, struct msr_data *msr_info) |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 1429 | { |
| 1430 | u64 old_efer = vcpu->arch.efer; |
Sean Christopherson | 1198849 | 2019-04-02 08:19:15 -0700 | [diff] [blame] | 1431 | u64 efer = msr_info->data; |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 1432 | |
Sean Christopherson | 1198849 | 2019-04-02 08:19:15 -0700 | [diff] [blame] | 1433 | if (efer & efer_reserved_bits) |
Paolo Bonzini | 66f61c9 | 2019-05-24 21:52:46 +0200 | [diff] [blame] | 1434 | return 1; |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 1435 | |
Sean Christopherson | 1198849 | 2019-04-02 08:19:15 -0700 | [diff] [blame] | 1436 | if (!msr_info->host_initiated) { |
| 1437 | if (!__kvm_valid_efer(vcpu, efer)) |
| 1438 | return 1; |
| 1439 | |
| 1440 | if (is_paging(vcpu) && |
| 1441 | (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME)) |
| 1442 | return 1; |
| 1443 | } |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 1444 | |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1445 | efer &= ~EFER_LMA; |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 1446 | efer |= vcpu->arch.efer & EFER_LMA; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1447 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 1448 | kvm_x86_ops.set_efer(vcpu, efer); |
Sheng Yang | a3d204e | 2010-05-12 16:40:40 +0800 | [diff] [blame] | 1449 | |
Sheng Yang | aad8270 | 2010-05-12 16:40:42 +0800 | [diff] [blame] | 1450 | /* Update reserved bits */ |
| 1451 | if ((efer ^ old_efer) & EFER_NX) |
| 1452 | kvm_mmu_reset_context(vcpu); |
| 1453 | |
Roedel, Joerg | b69e8ca | 2010-05-06 11:38:43 +0200 | [diff] [blame] | 1454 | return 0; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1455 | } |
| 1456 | |
Joerg Roedel | f2b4b7d | 2008-01-31 14:57:37 +0100 | [diff] [blame] | 1457 | void kvm_enable_efer_bits(u64 mask) |
| 1458 | { |
| 1459 | efer_reserved_bits &= ~mask; |
| 1460 | } |
| 1461 | EXPORT_SYMBOL_GPL(kvm_enable_efer_bits); |
| 1462 | |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1463 | /* |
Sean Christopherson | f20935d | 2019-09-05 14:22:54 -0700 | [diff] [blame] | 1464 | * Write @data into the MSR specified by @index. Select MSR specific fault |
| 1465 | * checks are bypassed if @host_initiated is %true. |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1466 | * Returns 0 on success, non-0 otherwise. |
| 1467 | * Assumes vcpu_load() was already called. |
| 1468 | */ |
Sean Christopherson | f20935d | 2019-09-05 14:22:54 -0700 | [diff] [blame] | 1469 | static int __kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data, |
| 1470 | bool host_initiated) |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1471 | { |
Sean Christopherson | f20935d | 2019-09-05 14:22:54 -0700 | [diff] [blame] | 1472 | struct msr_data msr; |
| 1473 | |
| 1474 | switch (index) { |
Nadav Amit | 854e8bb | 2014-09-16 03:24:05 +0300 | [diff] [blame] | 1475 | case MSR_FS_BASE: |
| 1476 | case MSR_GS_BASE: |
| 1477 | case MSR_KERNEL_GS_BASE: |
| 1478 | case MSR_CSTAR: |
| 1479 | case MSR_LSTAR: |
Sean Christopherson | f20935d | 2019-09-05 14:22:54 -0700 | [diff] [blame] | 1480 | if (is_noncanonical_address(data, vcpu)) |
Nadav Amit | 854e8bb | 2014-09-16 03:24:05 +0300 | [diff] [blame] | 1481 | return 1; |
| 1482 | break; |
| 1483 | case MSR_IA32_SYSENTER_EIP: |
| 1484 | case MSR_IA32_SYSENTER_ESP: |
| 1485 | /* |
| 1486 | * IA32_SYSENTER_ESP and IA32_SYSENTER_EIP cause #GP if |
| 1487 | * non-canonical address is written on Intel but not on |
| 1488 | * AMD (which ignores the top 32-bits, because it does |
| 1489 | * not implement 64-bit SYSENTER). |
| 1490 | * |
| 1491 | * 64-bit code should hence be able to write a non-canonical |
| 1492 | * value on AMD. Making the address canonical ensures that |
| 1493 | * vmentry does not fail on Intel after writing a non-canonical |
| 1494 | * value, and that something deterministic happens if the guest |
| 1495 | * invokes 64-bit SYSENTER. |
| 1496 | */ |
Sean Christopherson | f20935d | 2019-09-05 14:22:54 -0700 | [diff] [blame] | 1497 | data = get_canonical(data, vcpu_virt_addr_bits(vcpu)); |
Nadav Amit | 854e8bb | 2014-09-16 03:24:05 +0300 | [diff] [blame] | 1498 | } |
Sean Christopherson | f20935d | 2019-09-05 14:22:54 -0700 | [diff] [blame] | 1499 | |
| 1500 | msr.data = data; |
| 1501 | msr.index = index; |
| 1502 | msr.host_initiated = host_initiated; |
| 1503 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 1504 | return kvm_x86_ops.set_msr(vcpu, &msr); |
Sean Christopherson | f20935d | 2019-09-05 14:22:54 -0700 | [diff] [blame] | 1505 | } |
| 1506 | |
| 1507 | /* |
| 1508 | * Read the MSR specified by @index into @data. Select MSR specific fault |
| 1509 | * checks are bypassed if @host_initiated is %true. |
| 1510 | * Returns 0 on success, non-0 otherwise. |
| 1511 | * Assumes vcpu_load() was already called. |
| 1512 | */ |
Paolo Bonzini | edef5c3 | 2019-11-18 12:23:00 -0500 | [diff] [blame] | 1513 | int __kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data, |
| 1514 | bool host_initiated) |
Sean Christopherson | f20935d | 2019-09-05 14:22:54 -0700 | [diff] [blame] | 1515 | { |
| 1516 | struct msr_data msr; |
| 1517 | int ret; |
| 1518 | |
| 1519 | msr.index = index; |
| 1520 | msr.host_initiated = host_initiated; |
| 1521 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 1522 | ret = kvm_x86_ops.get_msr(vcpu, &msr); |
Sean Christopherson | f20935d | 2019-09-05 14:22:54 -0700 | [diff] [blame] | 1523 | if (!ret) |
| 1524 | *data = msr.data; |
| 1525 | return ret; |
| 1526 | } |
| 1527 | |
| 1528 | int kvm_get_msr(struct kvm_vcpu *vcpu, u32 index, u64 *data) |
| 1529 | { |
| 1530 | return __kvm_get_msr(vcpu, index, data, false); |
| 1531 | } |
| 1532 | EXPORT_SYMBOL_GPL(kvm_get_msr); |
| 1533 | |
| 1534 | int kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data) |
| 1535 | { |
| 1536 | return __kvm_set_msr(vcpu, index, data, false); |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1537 | } |
Nadav Amit | 854e8bb | 2014-09-16 03:24:05 +0300 | [diff] [blame] | 1538 | EXPORT_SYMBOL_GPL(kvm_set_msr); |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1539 | |
Sean Christopherson | 1edce0a | 2019-09-05 14:22:55 -0700 | [diff] [blame] | 1540 | int kvm_emulate_rdmsr(struct kvm_vcpu *vcpu) |
| 1541 | { |
| 1542 | u32 ecx = kvm_rcx_read(vcpu); |
| 1543 | u64 data; |
| 1544 | |
| 1545 | if (kvm_get_msr(vcpu, ecx, &data)) { |
| 1546 | trace_kvm_msr_read_ex(ecx); |
| 1547 | kvm_inject_gp(vcpu, 0); |
| 1548 | return 1; |
| 1549 | } |
| 1550 | |
| 1551 | trace_kvm_msr_read(ecx, data); |
| 1552 | |
| 1553 | kvm_rax_write(vcpu, data & -1u); |
| 1554 | kvm_rdx_write(vcpu, (data >> 32) & -1u); |
| 1555 | return kvm_skip_emulated_instruction(vcpu); |
| 1556 | } |
| 1557 | EXPORT_SYMBOL_GPL(kvm_emulate_rdmsr); |
| 1558 | |
| 1559 | int kvm_emulate_wrmsr(struct kvm_vcpu *vcpu) |
| 1560 | { |
| 1561 | u32 ecx = kvm_rcx_read(vcpu); |
| 1562 | u64 data = kvm_read_edx_eax(vcpu); |
| 1563 | |
| 1564 | if (kvm_set_msr(vcpu, ecx, data)) { |
| 1565 | trace_kvm_msr_write_ex(ecx, data); |
| 1566 | kvm_inject_gp(vcpu, 0); |
| 1567 | return 1; |
| 1568 | } |
| 1569 | |
| 1570 | trace_kvm_msr_write(ecx, data); |
| 1571 | return kvm_skip_emulated_instruction(vcpu); |
| 1572 | } |
| 1573 | EXPORT_SYMBOL_GPL(kvm_emulate_wrmsr); |
| 1574 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 1575 | /* |
Wanpeng Li | 1e9e262 | 2019-11-21 11:17:11 +0800 | [diff] [blame] | 1576 | * The fast path for frequent and performance sensitive wrmsr emulation, |
| 1577 | * i.e. the sending of IPI, sending IPI early in the VM-Exit flow reduces |
| 1578 | * the latency of virtual IPI by avoiding the expensive bits of transitioning |
| 1579 | * from guest to host, e.g. reacquiring KVM's SRCU lock. In contrast to the |
| 1580 | * other cases which must be called after interrupts are enabled on the host. |
| 1581 | */ |
| 1582 | static int handle_fastpath_set_x2apic_icr_irqoff(struct kvm_vcpu *vcpu, u64 data) |
| 1583 | { |
Wanpeng Li | e1be9ac | 2020-03-26 10:20:01 +0800 | [diff] [blame] | 1584 | if (!lapic_in_kernel(vcpu) || !apic_x2apic_mode(vcpu->arch.apic)) |
| 1585 | return 1; |
| 1586 | |
| 1587 | if (((data & APIC_SHORT_MASK) == APIC_DEST_NOSHORT) && |
Wanpeng Li | 1e9e262 | 2019-11-21 11:17:11 +0800 | [diff] [blame] | 1588 | ((data & APIC_DEST_MASK) == APIC_DEST_PHYSICAL) && |
Wanpeng Li | 4064a4c | 2020-04-02 16:20:26 +0800 | [diff] [blame^] | 1589 | ((data & APIC_MODE_MASK) == APIC_DM_FIXED) && |
| 1590 | ((u32)(data >> 32) != X2APIC_BROADCAST)) { |
Wanpeng Li | 1e9e262 | 2019-11-21 11:17:11 +0800 | [diff] [blame] | 1591 | |
Wanpeng Li | d536167 | 2020-03-26 10:20:02 +0800 | [diff] [blame] | 1592 | data &= ~(1 << 12); |
| 1593 | kvm_apic_send_ipi(vcpu->arch.apic, (u32)data, (u32)(data >> 32)); |
Wanpeng Li | 1e9e262 | 2019-11-21 11:17:11 +0800 | [diff] [blame] | 1594 | kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR2, (u32)(data >> 32)); |
Wanpeng Li | d536167 | 2020-03-26 10:20:02 +0800 | [diff] [blame] | 1595 | kvm_lapic_set_reg(vcpu->arch.apic, APIC_ICR, (u32)data); |
| 1596 | trace_kvm_apic_write(APIC_ICR, (u32)data); |
| 1597 | return 0; |
Wanpeng Li | 1e9e262 | 2019-11-21 11:17:11 +0800 | [diff] [blame] | 1598 | } |
| 1599 | |
| 1600 | return 1; |
| 1601 | } |
| 1602 | |
| 1603 | enum exit_fastpath_completion handle_fastpath_set_msr_irqoff(struct kvm_vcpu *vcpu) |
| 1604 | { |
| 1605 | u32 msr = kvm_rcx_read(vcpu); |
Wanpeng Li | 8a1038d | 2020-03-26 10:20:00 +0800 | [diff] [blame] | 1606 | u64 data; |
Wanpeng Li | 1e9e262 | 2019-11-21 11:17:11 +0800 | [diff] [blame] | 1607 | int ret = 0; |
| 1608 | |
| 1609 | switch (msr) { |
| 1610 | case APIC_BASE_MSR + (APIC_ICR >> 4): |
Wanpeng Li | 8a1038d | 2020-03-26 10:20:00 +0800 | [diff] [blame] | 1611 | data = kvm_read_edx_eax(vcpu); |
Wanpeng Li | 1e9e262 | 2019-11-21 11:17:11 +0800 | [diff] [blame] | 1612 | ret = handle_fastpath_set_x2apic_icr_irqoff(vcpu, data); |
| 1613 | break; |
| 1614 | default: |
| 1615 | return EXIT_FASTPATH_NONE; |
| 1616 | } |
| 1617 | |
| 1618 | if (!ret) { |
| 1619 | trace_kvm_msr_write(msr, data); |
| 1620 | return EXIT_FASTPATH_SKIP_EMUL_INS; |
| 1621 | } |
| 1622 | |
| 1623 | return EXIT_FASTPATH_NONE; |
| 1624 | } |
| 1625 | EXPORT_SYMBOL_GPL(handle_fastpath_set_msr_irqoff); |
| 1626 | |
| 1627 | /* |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 1628 | * Adapt set_msr() to msr_io()'s calling convention |
| 1629 | */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 1630 | static int do_get_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data) |
| 1631 | { |
Sean Christopherson | f20935d | 2019-09-05 14:22:54 -0700 | [diff] [blame] | 1632 | return __kvm_get_msr(vcpu, index, data, true); |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 1633 | } |
| 1634 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 1635 | static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data) |
| 1636 | { |
Sean Christopherson | f20935d | 2019-09-05 14:22:54 -0700 | [diff] [blame] | 1637 | return __kvm_set_msr(vcpu, index, *data, true); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 1638 | } |
| 1639 | |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1640 | #ifdef CONFIG_X86_64 |
Marcelo Tosatti | 53fafdb | 2019-10-28 12:36:22 -0200 | [diff] [blame] | 1641 | struct pvclock_clock { |
| 1642 | int vclock_mode; |
| 1643 | u64 cycle_last; |
| 1644 | u64 mask; |
| 1645 | u32 mult; |
| 1646 | u32 shift; |
Paolo Bonzini | 917f947 | 2020-01-22 14:32:20 +0100 | [diff] [blame] | 1647 | u64 base_cycles; |
| 1648 | u64 offset; |
Marcelo Tosatti | 53fafdb | 2019-10-28 12:36:22 -0200 | [diff] [blame] | 1649 | }; |
| 1650 | |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1651 | struct pvclock_gtod_data { |
| 1652 | seqcount_t seq; |
| 1653 | |
Marcelo Tosatti | 53fafdb | 2019-10-28 12:36:22 -0200 | [diff] [blame] | 1654 | struct pvclock_clock clock; /* extract of a clocksource struct */ |
| 1655 | struct pvclock_clock raw_clock; /* extract of a clocksource struct */ |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1656 | |
Paolo Bonzini | 917f947 | 2020-01-22 14:32:20 +0100 | [diff] [blame] | 1657 | ktime_t offs_boot; |
Marcelo Tosatti | 55dd00a | 2017-01-24 15:09:39 -0200 | [diff] [blame] | 1658 | u64 wall_time_sec; |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1659 | }; |
| 1660 | |
| 1661 | static struct pvclock_gtod_data pvclock_gtod_data; |
| 1662 | |
| 1663 | static void update_pvclock_gtod(struct timekeeper *tk) |
| 1664 | { |
| 1665 | struct pvclock_gtod_data *vdata = &pvclock_gtod_data; |
| 1666 | |
| 1667 | write_seqcount_begin(&vdata->seq); |
| 1668 | |
| 1669 | /* copy pvclock gtod data */ |
Thomas Gleixner | b95a8a2 | 2020-02-07 13:38:56 +0100 | [diff] [blame] | 1670 | vdata->clock.vclock_mode = tk->tkr_mono.clock->vdso_clock_mode; |
Peter Zijlstra | 876e788 | 2015-03-19 10:09:06 +0100 | [diff] [blame] | 1671 | vdata->clock.cycle_last = tk->tkr_mono.cycle_last; |
| 1672 | vdata->clock.mask = tk->tkr_mono.mask; |
| 1673 | vdata->clock.mult = tk->tkr_mono.mult; |
| 1674 | vdata->clock.shift = tk->tkr_mono.shift; |
Paolo Bonzini | 917f947 | 2020-01-22 14:32:20 +0100 | [diff] [blame] | 1675 | vdata->clock.base_cycles = tk->tkr_mono.xtime_nsec; |
| 1676 | vdata->clock.offset = tk->tkr_mono.base; |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1677 | |
Thomas Gleixner | b95a8a2 | 2020-02-07 13:38:56 +0100 | [diff] [blame] | 1678 | vdata->raw_clock.vclock_mode = tk->tkr_raw.clock->vdso_clock_mode; |
Marcelo Tosatti | 53fafdb | 2019-10-28 12:36:22 -0200 | [diff] [blame] | 1679 | vdata->raw_clock.cycle_last = tk->tkr_raw.cycle_last; |
| 1680 | vdata->raw_clock.mask = tk->tkr_raw.mask; |
| 1681 | vdata->raw_clock.mult = tk->tkr_raw.mult; |
| 1682 | vdata->raw_clock.shift = tk->tkr_raw.shift; |
Paolo Bonzini | 917f947 | 2020-01-22 14:32:20 +0100 | [diff] [blame] | 1683 | vdata->raw_clock.base_cycles = tk->tkr_raw.xtime_nsec; |
| 1684 | vdata->raw_clock.offset = tk->tkr_raw.base; |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1685 | |
Marcelo Tosatti | 55dd00a | 2017-01-24 15:09:39 -0200 | [diff] [blame] | 1686 | vdata->wall_time_sec = tk->xtime_sec; |
| 1687 | |
Paolo Bonzini | 917f947 | 2020-01-22 14:32:20 +0100 | [diff] [blame] | 1688 | vdata->offs_boot = tk->offs_boot; |
Marcelo Tosatti | 53fafdb | 2019-10-28 12:36:22 -0200 | [diff] [blame] | 1689 | |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1690 | write_seqcount_end(&vdata->seq); |
| 1691 | } |
Paolo Bonzini | 8171cd6 | 2020-01-22 14:36:09 +0100 | [diff] [blame] | 1692 | |
| 1693 | static s64 get_kvmclock_base_ns(void) |
| 1694 | { |
| 1695 | /* Count up from boot time, but with the frequency of the raw clock. */ |
| 1696 | return ktime_to_ns(ktime_add(ktime_get_raw(), pvclock_gtod_data.offs_boot)); |
| 1697 | } |
| 1698 | #else |
| 1699 | static s64 get_kvmclock_base_ns(void) |
| 1700 | { |
| 1701 | /* Master clock not used, so we can just use CLOCK_BOOTTIME. */ |
| 1702 | return ktime_get_boottime_ns(); |
| 1703 | } |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1704 | #endif |
| 1705 | |
Nicholas Krause | bab5bb3 | 2015-01-01 22:05:18 -0500 | [diff] [blame] | 1706 | void kvm_set_pending_timer(struct kvm_vcpu *vcpu) |
| 1707 | { |
Nicholas Krause | bab5bb3 | 2015-01-01 22:05:18 -0500 | [diff] [blame] | 1708 | kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu); |
Wanpeng Li | 4d151bf | 2019-07-06 09:26:50 +0800 | [diff] [blame] | 1709 | kvm_vcpu_kick(vcpu); |
Nicholas Krause | bab5bb3 | 2015-01-01 22:05:18 -0500 | [diff] [blame] | 1710 | } |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1711 | |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1712 | static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock) |
| 1713 | { |
Avi Kivity | 9ed3c44 | 2010-05-04 15:00:37 +0300 | [diff] [blame] | 1714 | int version; |
| 1715 | int r; |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1716 | struct pvclock_wall_clock wc; |
Paolo Bonzini | 8171cd6 | 2020-01-22 14:36:09 +0100 | [diff] [blame] | 1717 | u64 wall_nsec; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1718 | |
| 1719 | if (!wall_clock) |
| 1720 | return; |
| 1721 | |
Avi Kivity | 9ed3c44 | 2010-05-04 15:00:37 +0300 | [diff] [blame] | 1722 | r = kvm_read_guest(kvm, wall_clock, &version, sizeof(version)); |
| 1723 | if (r) |
| 1724 | return; |
| 1725 | |
| 1726 | if (version & 1) |
| 1727 | ++version; /* first time write, random junk */ |
| 1728 | |
| 1729 | ++version; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1730 | |
Nicholas Krause | 1dab134 | 2015-12-30 13:08:46 -0500 | [diff] [blame] | 1731 | if (kvm_write_guest(kvm, wall_clock, &version, sizeof(version))) |
| 1732 | return; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1733 | |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1734 | /* |
| 1735 | * The guest calculates current wall clock time by adding |
Zachary Amsden | 34c238a | 2010-09-18 14:38:14 -1000 | [diff] [blame] | 1736 | * system time (updated by kvm_guest_time_update below) to the |
Paolo Bonzini | 8171cd6 | 2020-01-22 14:36:09 +0100 | [diff] [blame] | 1737 | * wall clock specified here. We do the reverse here. |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1738 | */ |
Paolo Bonzini | 8171cd6 | 2020-01-22 14:36:09 +0100 | [diff] [blame] | 1739 | wall_nsec = ktime_get_real_ns() - get_kvmclock_ns(kvm); |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1740 | |
Paolo Bonzini | 8171cd6 | 2020-01-22 14:36:09 +0100 | [diff] [blame] | 1741 | wc.nsec = do_div(wall_nsec, 1000000000); |
| 1742 | wc.sec = (u32)wall_nsec; /* overflow in 2106 guest time */ |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1743 | wc.version = version; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1744 | |
| 1745 | kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc)); |
| 1746 | |
| 1747 | version++; |
| 1748 | kvm_write_guest(kvm, wall_clock, &version, sizeof(version)); |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1749 | } |
| 1750 | |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1751 | static uint32_t div_frac(uint32_t dividend, uint32_t divisor) |
| 1752 | { |
Paolo Bonzini | b51012d | 2016-01-22 11:39:22 +0100 | [diff] [blame] | 1753 | do_shl32_div32(dividend, divisor); |
| 1754 | return dividend; |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1755 | } |
| 1756 | |
Paolo Bonzini | 3ae13fa | 2016-02-08 15:11:15 +0100 | [diff] [blame] | 1757 | 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] | 1758 | s8 *pshift, u32 *pmultiplier) |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1759 | { |
Zachary Amsden | 5f4e3f8 | 2010-09-18 14:38:13 -1000 | [diff] [blame] | 1760 | uint64_t scaled64; |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1761 | int32_t shift = 0; |
| 1762 | uint64_t tps64; |
| 1763 | uint32_t tps32; |
| 1764 | |
Paolo Bonzini | 3ae13fa | 2016-02-08 15:11:15 +0100 | [diff] [blame] | 1765 | tps64 = base_hz; |
| 1766 | scaled64 = scaled_hz; |
Jan Kiszka | 5093362 | 2010-09-26 13:00:53 +0200 | [diff] [blame] | 1767 | while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) { |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1768 | tps64 >>= 1; |
| 1769 | shift--; |
| 1770 | } |
| 1771 | |
| 1772 | tps32 = (uint32_t)tps64; |
Jan Kiszka | 5093362 | 2010-09-26 13:00:53 +0200 | [diff] [blame] | 1773 | while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) { |
| 1774 | if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000) |
Zachary Amsden | 5f4e3f8 | 2010-09-18 14:38:13 -1000 | [diff] [blame] | 1775 | scaled64 >>= 1; |
| 1776 | else |
| 1777 | tps32 <<= 1; |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1778 | shift++; |
| 1779 | } |
| 1780 | |
Zachary Amsden | 5f4e3f8 | 2010-09-18 14:38:13 -1000 | [diff] [blame] | 1781 | *pshift = shift; |
| 1782 | *pmultiplier = div_frac(scaled64, tps32); |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1783 | } |
| 1784 | |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1785 | #ifdef CONFIG_X86_64 |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1786 | static atomic_t kvm_guest_has_master_clock = ATOMIC_INIT(0); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1787 | #endif |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1788 | |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 1789 | static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz); |
Fengguang Wu | 69b0049 | 2015-01-19 22:33:39 +0800 | [diff] [blame] | 1790 | static unsigned long max_tsc_khz; |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 1791 | |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 1792 | static u32 adjust_tsc_khz(u32 khz, s32 ppm) |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 1793 | { |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 1794 | u64 v = (u64)khz * (1000000 + ppm); |
| 1795 | do_div(v, 1000000); |
| 1796 | return v; |
| 1797 | } |
| 1798 | |
Haozhong Zhang | 381d585 | 2015-10-20 15:39:04 +0800 | [diff] [blame] | 1799 | static int set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz, bool scale) |
| 1800 | { |
| 1801 | u64 ratio; |
| 1802 | |
| 1803 | /* Guest TSC same frequency as host TSC? */ |
| 1804 | if (!scale) { |
| 1805 | vcpu->arch.tsc_scaling_ratio = kvm_default_tsc_scaling_ratio; |
| 1806 | return 0; |
| 1807 | } |
| 1808 | |
| 1809 | /* TSC scaling supported? */ |
| 1810 | if (!kvm_has_tsc_control) { |
| 1811 | if (user_tsc_khz > tsc_khz) { |
| 1812 | vcpu->arch.tsc_catchup = 1; |
| 1813 | vcpu->arch.tsc_always_catchup = 1; |
| 1814 | return 0; |
| 1815 | } else { |
Paolo Bonzini | 3f16a5c | 2019-06-26 14:16:13 +0200 | [diff] [blame] | 1816 | pr_warn_ratelimited("user requested TSC rate below hardware speed\n"); |
Haozhong Zhang | 381d585 | 2015-10-20 15:39:04 +0800 | [diff] [blame] | 1817 | return -1; |
| 1818 | } |
| 1819 | } |
| 1820 | |
| 1821 | /* TSC scaling required - calculate ratio */ |
| 1822 | ratio = mul_u64_u32_div(1ULL << kvm_tsc_scaling_ratio_frac_bits, |
| 1823 | user_tsc_khz, tsc_khz); |
| 1824 | |
| 1825 | if (ratio == 0 || ratio >= kvm_max_tsc_scaling_ratio) { |
Paolo Bonzini | 3f16a5c | 2019-06-26 14:16:13 +0200 | [diff] [blame] | 1826 | pr_warn_ratelimited("Invalid TSC scaling ratio - virtual-tsc-khz=%u\n", |
| 1827 | user_tsc_khz); |
Haozhong Zhang | 381d585 | 2015-10-20 15:39:04 +0800 | [diff] [blame] | 1828 | return -1; |
| 1829 | } |
| 1830 | |
| 1831 | vcpu->arch.tsc_scaling_ratio = ratio; |
| 1832 | return 0; |
| 1833 | } |
| 1834 | |
Paolo Bonzini | 4941b8c | 2016-02-08 14:51:12 +0100 | [diff] [blame] | 1835 | 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] | 1836 | { |
| 1837 | u32 thresh_lo, thresh_hi; |
| 1838 | int use_scaling = 0; |
| 1839 | |
Marcelo Tosatti | 03ba32c | 2013-03-11 23:10:24 -0300 | [diff] [blame] | 1840 | /* tsc_khz can be zero if TSC calibration fails */ |
Paolo Bonzini | 4941b8c | 2016-02-08 14:51:12 +0100 | [diff] [blame] | 1841 | if (user_tsc_khz == 0) { |
Haozhong Zhang | ad721883 | 2015-10-20 15:39:02 +0800 | [diff] [blame] | 1842 | /* set tsc_scaling_ratio to a safe value */ |
| 1843 | vcpu->arch.tsc_scaling_ratio = kvm_default_tsc_scaling_ratio; |
Haozhong Zhang | 381d585 | 2015-10-20 15:39:04 +0800 | [diff] [blame] | 1844 | return -1; |
Haozhong Zhang | ad721883 | 2015-10-20 15:39:02 +0800 | [diff] [blame] | 1845 | } |
Marcelo Tosatti | 03ba32c | 2013-03-11 23:10:24 -0300 | [diff] [blame] | 1846 | |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 1847 | /* Compute a scale to convert nanoseconds in TSC cycles */ |
Paolo Bonzini | 3ae13fa | 2016-02-08 15:11:15 +0100 | [diff] [blame] | 1848 | kvm_get_time_scale(user_tsc_khz * 1000LL, NSEC_PER_SEC, |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 1849 | &vcpu->arch.virtual_tsc_shift, |
| 1850 | &vcpu->arch.virtual_tsc_mult); |
Paolo Bonzini | 4941b8c | 2016-02-08 14:51:12 +0100 | [diff] [blame] | 1851 | vcpu->arch.virtual_tsc_khz = user_tsc_khz; |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 1852 | |
| 1853 | /* |
| 1854 | * Compute the variation in TSC rate which is acceptable |
| 1855 | * within the range of tolerance and decide if the |
| 1856 | * rate being applied is within that bounds of the hardware |
| 1857 | * rate. If so, no scaling or compensation need be done. |
| 1858 | */ |
| 1859 | thresh_lo = adjust_tsc_khz(tsc_khz, -tsc_tolerance_ppm); |
| 1860 | thresh_hi = adjust_tsc_khz(tsc_khz, tsc_tolerance_ppm); |
Paolo Bonzini | 4941b8c | 2016-02-08 14:51:12 +0100 | [diff] [blame] | 1861 | if (user_tsc_khz < thresh_lo || user_tsc_khz > thresh_hi) { |
| 1862 | 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] | 1863 | use_scaling = 1; |
| 1864 | } |
Paolo Bonzini | 4941b8c | 2016-02-08 14:51:12 +0100 | [diff] [blame] | 1865 | return set_tsc_khz(vcpu, user_tsc_khz, use_scaling); |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 1866 | } |
| 1867 | |
| 1868 | static u64 compute_guest_tsc(struct kvm_vcpu *vcpu, s64 kernel_ns) |
| 1869 | { |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 1870 | u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.this_tsc_nsec, |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 1871 | vcpu->arch.virtual_tsc_mult, |
| 1872 | vcpu->arch.virtual_tsc_shift); |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 1873 | tsc += vcpu->arch.this_tsc_write; |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 1874 | return tsc; |
| 1875 | } |
| 1876 | |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 1877 | static inline int gtod_is_based_on_tsc(int mode) |
| 1878 | { |
Thomas Gleixner | b95a8a2 | 2020-02-07 13:38:56 +0100 | [diff] [blame] | 1879 | return mode == VDSO_CLOCKMODE_TSC || mode == VDSO_CLOCKMODE_HVCLOCK; |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 1880 | } |
| 1881 | |
Fengguang Wu | 69b0049 | 2015-01-19 22:33:39 +0800 | [diff] [blame] | 1882 | static void kvm_track_tsc_matching(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1883 | { |
| 1884 | #ifdef CONFIG_X86_64 |
| 1885 | bool vcpus_matched; |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1886 | struct kvm_arch *ka = &vcpu->kvm->arch; |
| 1887 | struct pvclock_gtod_data *gtod = &pvclock_gtod_data; |
| 1888 | |
| 1889 | vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 == |
| 1890 | atomic_read(&vcpu->kvm->online_vcpus)); |
| 1891 | |
Marcelo Tosatti | 7f18792 | 2014-11-04 21:30:44 -0200 | [diff] [blame] | 1892 | /* |
| 1893 | * Once the masterclock is enabled, always perform request in |
| 1894 | * order to update it. |
| 1895 | * |
| 1896 | * In order to enable masterclock, the host clocksource must be TSC |
| 1897 | * and the vcpus need to have matched TSCs. When that happens, |
| 1898 | * perform request to enable masterclock. |
| 1899 | */ |
| 1900 | if (ka->use_master_clock || |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 1901 | (gtod_is_based_on_tsc(gtod->clock.vclock_mode) && vcpus_matched)) |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1902 | kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu); |
| 1903 | |
| 1904 | trace_kvm_track_tsc(vcpu->vcpu_id, ka->nr_vcpus_matched_tsc, |
| 1905 | atomic_read(&vcpu->kvm->online_vcpus), |
| 1906 | ka->use_master_clock, gtod->clock.vclock_mode); |
| 1907 | #endif |
| 1908 | } |
| 1909 | |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 1910 | static void update_ia32_tsc_adjust_msr(struct kvm_vcpu *vcpu, s64 offset) |
| 1911 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 1912 | u64 curr_offset = kvm_x86_ops.read_l1_tsc_offset(vcpu); |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 1913 | vcpu->arch.ia32_tsc_adjust_msr += offset - curr_offset; |
| 1914 | } |
| 1915 | |
Haozhong Zhang | 35181e8 | 2015-10-20 15:39:03 +0800 | [diff] [blame] | 1916 | /* |
| 1917 | * Multiply tsc by a fixed point number represented by ratio. |
| 1918 | * |
| 1919 | * The most significant 64-N bits (mult) of ratio represent the |
| 1920 | * integral part of the fixed point number; the remaining N bits |
| 1921 | * (frac) represent the fractional part, ie. ratio represents a fixed |
| 1922 | * point number (mult + frac * 2^(-N)). |
| 1923 | * |
| 1924 | * N equals to kvm_tsc_scaling_ratio_frac_bits. |
| 1925 | */ |
| 1926 | static inline u64 __scale_tsc(u64 ratio, u64 tsc) |
| 1927 | { |
| 1928 | return mul_u64_u64_shr(tsc, ratio, kvm_tsc_scaling_ratio_frac_bits); |
| 1929 | } |
| 1930 | |
| 1931 | u64 kvm_scale_tsc(struct kvm_vcpu *vcpu, u64 tsc) |
| 1932 | { |
| 1933 | u64 _tsc = tsc; |
| 1934 | u64 ratio = vcpu->arch.tsc_scaling_ratio; |
| 1935 | |
| 1936 | if (ratio != kvm_default_tsc_scaling_ratio) |
| 1937 | _tsc = __scale_tsc(ratio, tsc); |
| 1938 | |
| 1939 | return _tsc; |
| 1940 | } |
| 1941 | EXPORT_SYMBOL_GPL(kvm_scale_tsc); |
| 1942 | |
Haozhong Zhang | 07c1419 | 2015-10-20 15:39:05 +0800 | [diff] [blame] | 1943 | static u64 kvm_compute_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc) |
| 1944 | { |
| 1945 | u64 tsc; |
| 1946 | |
| 1947 | tsc = kvm_scale_tsc(vcpu, rdtsc()); |
| 1948 | |
| 1949 | return target_tsc - tsc; |
| 1950 | } |
| 1951 | |
Haozhong Zhang | 4ba7653 | 2015-10-20 15:39:07 +0800 | [diff] [blame] | 1952 | u64 kvm_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc) |
| 1953 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 1954 | u64 tsc_offset = kvm_x86_ops.read_l1_tsc_offset(vcpu); |
KarimAllah Ahmed | e79f245 | 2018-04-14 05:10:52 +0200 | [diff] [blame] | 1955 | |
| 1956 | return tsc_offset + kvm_scale_tsc(vcpu, host_tsc); |
Haozhong Zhang | 4ba7653 | 2015-10-20 15:39:07 +0800 | [diff] [blame] | 1957 | } |
| 1958 | EXPORT_SYMBOL_GPL(kvm_read_l1_tsc); |
| 1959 | |
Luiz Capitulino | a545ab6 | 2016-09-07 14:47:19 -0400 | [diff] [blame] | 1960 | static void kvm_vcpu_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset) |
| 1961 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 1962 | vcpu->arch.tsc_offset = kvm_x86_ops.write_l1_tsc_offset(vcpu, offset); |
Luiz Capitulino | a545ab6 | 2016-09-07 14:47:19 -0400 | [diff] [blame] | 1963 | } |
| 1964 | |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 1965 | static inline bool kvm_check_tsc_unstable(void) |
| 1966 | { |
| 1967 | #ifdef CONFIG_X86_64 |
| 1968 | /* |
| 1969 | * TSC is marked unstable when we're running on Hyper-V, |
| 1970 | * 'TSC page' clocksource is good. |
| 1971 | */ |
Thomas Gleixner | b95a8a2 | 2020-02-07 13:38:56 +0100 | [diff] [blame] | 1972 | if (pvclock_gtod_data.clock.vclock_mode == VDSO_CLOCKMODE_HVCLOCK) |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 1973 | return false; |
| 1974 | #endif |
| 1975 | return check_tsc_unstable(); |
| 1976 | } |
| 1977 | |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 1978 | void kvm_write_tsc(struct kvm_vcpu *vcpu, struct msr_data *msr) |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 1979 | { |
| 1980 | struct kvm *kvm = vcpu->kvm; |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 1981 | u64 offset, ns, elapsed; |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 1982 | unsigned long flags; |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1983 | bool matched; |
Tomasz Grabiec | 0d3da0d | 2014-06-24 09:42:43 +0200 | [diff] [blame] | 1984 | bool already_matched; |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 1985 | u64 data = msr->data; |
Denis Plotnikov | c5e8ec8 | 2017-04-07 12:09:52 +0300 | [diff] [blame] | 1986 | bool synchronizing = false; |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 1987 | |
Jan Kiszka | 038f8c1 | 2011-02-04 10:49:11 +0100 | [diff] [blame] | 1988 | raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags); |
Haozhong Zhang | 07c1419 | 2015-10-20 15:39:05 +0800 | [diff] [blame] | 1989 | offset = kvm_compute_tsc_offset(vcpu, data); |
Paolo Bonzini | 8171cd6 | 2020-01-22 14:36:09 +0100 | [diff] [blame] | 1990 | ns = get_kvmclock_base_ns(); |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 1991 | elapsed = ns - kvm->arch.last_tsc_nsec; |
Zachary Amsden | 5d3cb0f6 | 2012-02-03 15:43:51 -0200 | [diff] [blame] | 1992 | |
Marcelo Tosatti | 03ba32c | 2013-03-11 23:10:24 -0300 | [diff] [blame] | 1993 | if (vcpu->arch.virtual_tsc_khz) { |
Denis Plotnikov | bd8fab3 | 2017-04-07 12:09:53 +0300 | [diff] [blame] | 1994 | if (data == 0 && msr->host_initiated) { |
| 1995 | /* |
| 1996 | * detection of vcpu initialization -- need to sync |
| 1997 | * with other vCPUs. This particularly helps to keep |
| 1998 | * kvm_clock stable after CPU hotplug |
| 1999 | */ |
| 2000 | synchronizing = true; |
| 2001 | } else { |
| 2002 | u64 tsc_exp = kvm->arch.last_tsc_write + |
| 2003 | nsec_to_cycles(vcpu, elapsed); |
| 2004 | u64 tsc_hz = vcpu->arch.virtual_tsc_khz * 1000LL; |
| 2005 | /* |
| 2006 | * Special case: TSC write with a small delta (1 second) |
| 2007 | * of virtual cycle time against real time is |
| 2008 | * interpreted as an attempt to synchronize the CPU. |
| 2009 | */ |
| 2010 | synchronizing = data < tsc_exp + tsc_hz && |
| 2011 | data + tsc_hz > tsc_exp; |
| 2012 | } |
Denis Plotnikov | c5e8ec8 | 2017-04-07 12:09:52 +0300 | [diff] [blame] | 2013 | } |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 2014 | |
| 2015 | /* |
Zachary Amsden | 5d3cb0f6 | 2012-02-03 15:43:51 -0200 | [diff] [blame] | 2016 | * For a reliable TSC, we can match TSC offsets, and for an unstable |
| 2017 | * TSC, we add elapsed time in this computation. We could let the |
| 2018 | * compensation code attempt to catch up if we fall behind, but |
| 2019 | * it's better to try to match offsets from the beginning. |
| 2020 | */ |
Denis Plotnikov | c5e8ec8 | 2017-04-07 12:09:52 +0300 | [diff] [blame] | 2021 | if (synchronizing && |
Zachary Amsden | 5d3cb0f6 | 2012-02-03 15:43:51 -0200 | [diff] [blame] | 2022 | vcpu->arch.virtual_tsc_khz == kvm->arch.last_tsc_khz) { |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 2023 | if (!kvm_check_tsc_unstable()) { |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 2024 | offset = kvm->arch.cur_tsc_offset; |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 2025 | } else { |
Joerg Roedel | 857e409 | 2011-03-25 09:44:50 +0100 | [diff] [blame] | 2026 | u64 delta = nsec_to_cycles(vcpu, elapsed); |
Zachary Amsden | 5d3cb0f6 | 2012-02-03 15:43:51 -0200 | [diff] [blame] | 2027 | data += delta; |
Haozhong Zhang | 07c1419 | 2015-10-20 15:39:05 +0800 | [diff] [blame] | 2028 | offset = kvm_compute_tsc_offset(vcpu, data); |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 2029 | } |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 2030 | matched = true; |
Tomasz Grabiec | 0d3da0d | 2014-06-24 09:42:43 +0200 | [diff] [blame] | 2031 | already_matched = (vcpu->arch.this_tsc_generation == kvm->arch.cur_tsc_generation); |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 2032 | } else { |
| 2033 | /* |
| 2034 | * We split periods of matched TSC writes into generations. |
| 2035 | * For each generation, we track the original measured |
| 2036 | * nanosecond time, offset, and write, so if TSCs are in |
| 2037 | * sync, we can match exact offset, and if not, we can match |
Guo Chao | 4a96998 | 2012-06-28 15:17:27 +0800 | [diff] [blame] | 2038 | * exact software computation in compute_guest_tsc() |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 2039 | * |
| 2040 | * These values are tracked in kvm->arch.cur_xxx variables. |
| 2041 | */ |
| 2042 | kvm->arch.cur_tsc_generation++; |
| 2043 | kvm->arch.cur_tsc_nsec = ns; |
| 2044 | kvm->arch.cur_tsc_write = data; |
| 2045 | kvm->arch.cur_tsc_offset = offset; |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 2046 | matched = false; |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 2047 | } |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 2048 | |
| 2049 | /* |
| 2050 | * We also track th most recent recorded KHZ, write and time to |
| 2051 | * allow the matching interval to be extended at each write. |
| 2052 | */ |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 2053 | kvm->arch.last_tsc_nsec = ns; |
| 2054 | kvm->arch.last_tsc_write = data; |
Zachary Amsden | 5d3cb0f6 | 2012-02-03 15:43:51 -0200 | [diff] [blame] | 2055 | kvm->arch.last_tsc_khz = vcpu->arch.virtual_tsc_khz; |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 2056 | |
Zachary Amsden | b183aa5 | 2012-02-03 15:43:53 -0200 | [diff] [blame] | 2057 | vcpu->arch.last_guest_tsc = data; |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 2058 | |
| 2059 | /* Keep track of which generation this VCPU has synchronized to */ |
| 2060 | vcpu->arch.this_tsc_generation = kvm->arch.cur_tsc_generation; |
| 2061 | vcpu->arch.this_tsc_nsec = kvm->arch.cur_tsc_nsec; |
| 2062 | vcpu->arch.this_tsc_write = kvm->arch.cur_tsc_write; |
| 2063 | |
Radim Krčmář | d6321d4 | 2017-08-05 00:12:49 +0200 | [diff] [blame] | 2064 | if (!msr->host_initiated && guest_cpuid_has(vcpu, X86_FEATURE_TSC_ADJUST)) |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 2065 | update_ia32_tsc_adjust_msr(vcpu, offset); |
Radim Krčmář | d6321d4 | 2017-08-05 00:12:49 +0200 | [diff] [blame] | 2066 | |
Luiz Capitulino | a545ab6 | 2016-09-07 14:47:19 -0400 | [diff] [blame] | 2067 | kvm_vcpu_write_tsc_offset(vcpu, offset); |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 2068 | raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags); |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 2069 | |
| 2070 | spin_lock(&kvm->arch.pvclock_gtod_sync_lock); |
Tomasz Grabiec | 0d3da0d | 2014-06-24 09:42:43 +0200 | [diff] [blame] | 2071 | if (!matched) { |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 2072 | kvm->arch.nr_vcpus_matched_tsc = 0; |
Tomasz Grabiec | 0d3da0d | 2014-06-24 09:42:43 +0200 | [diff] [blame] | 2073 | } else if (!already_matched) { |
| 2074 | kvm->arch.nr_vcpus_matched_tsc++; |
| 2075 | } |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 2076 | |
| 2077 | kvm_track_tsc_matching(vcpu); |
| 2078 | spin_unlock(&kvm->arch.pvclock_gtod_sync_lock); |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 2079 | } |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 2080 | |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 2081 | EXPORT_SYMBOL_GPL(kvm_write_tsc); |
| 2082 | |
Haozhong Zhang | 58ea676 | 2015-10-20 15:39:06 +0800 | [diff] [blame] | 2083 | static inline void adjust_tsc_offset_guest(struct kvm_vcpu *vcpu, |
| 2084 | s64 adjustment) |
| 2085 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 2086 | u64 tsc_offset = kvm_x86_ops.read_l1_tsc_offset(vcpu); |
Leonid Shatz | 326e742 | 2018-11-06 12:14:25 +0200 | [diff] [blame] | 2087 | kvm_vcpu_write_tsc_offset(vcpu, tsc_offset + adjustment); |
Haozhong Zhang | 58ea676 | 2015-10-20 15:39:06 +0800 | [diff] [blame] | 2088 | } |
| 2089 | |
| 2090 | static inline void adjust_tsc_offset_host(struct kvm_vcpu *vcpu, s64 adjustment) |
| 2091 | { |
| 2092 | if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio) |
| 2093 | WARN_ON(adjustment < 0); |
| 2094 | adjustment = kvm_scale_tsc(vcpu, (u64) adjustment); |
Paolo Bonzini | ea26e4e | 2016-11-01 00:39:48 +0100 | [diff] [blame] | 2095 | adjust_tsc_offset_guest(vcpu, adjustment); |
Haozhong Zhang | 58ea676 | 2015-10-20 15:39:06 +0800 | [diff] [blame] | 2096 | } |
| 2097 | |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2098 | #ifdef CONFIG_X86_64 |
| 2099 | |
Thomas Gleixner | a5a1d1c | 2016-12-21 20:32:01 +0100 | [diff] [blame] | 2100 | static u64 read_tsc(void) |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2101 | { |
Thomas Gleixner | a5a1d1c | 2016-12-21 20:32:01 +0100 | [diff] [blame] | 2102 | u64 ret = (u64)rdtsc_ordered(); |
Andy Lutomirski | 03b9730 | 2015-06-25 18:44:08 +0200 | [diff] [blame] | 2103 | u64 last = pvclock_gtod_data.clock.cycle_last; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2104 | |
| 2105 | if (likely(ret >= last)) |
| 2106 | return ret; |
| 2107 | |
| 2108 | /* |
| 2109 | * GCC likes to generate cmov here, but this branch is extremely |
Adam Buchbinder | 6a6256f | 2016-02-23 15:34:30 -0800 | [diff] [blame] | 2110 | * predictable (it's just a function of time and the likely is |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2111 | * very likely) and there's a data dependence, so force GCC |
| 2112 | * to generate a branch instead. I don't barrier() because |
| 2113 | * we don't actually need a barrier, and if this function |
| 2114 | * ever gets inlined it will generate worse code. |
| 2115 | */ |
| 2116 | asm volatile (""); |
| 2117 | return last; |
| 2118 | } |
| 2119 | |
Marcelo Tosatti | 53fafdb | 2019-10-28 12:36:22 -0200 | [diff] [blame] | 2120 | static inline u64 vgettsc(struct pvclock_clock *clock, u64 *tsc_timestamp, |
| 2121 | int *mode) |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2122 | { |
| 2123 | long v; |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 2124 | u64 tsc_pg_val; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2125 | |
Marcelo Tosatti | 53fafdb | 2019-10-28 12:36:22 -0200 | [diff] [blame] | 2126 | switch (clock->vclock_mode) { |
Thomas Gleixner | b95a8a2 | 2020-02-07 13:38:56 +0100 | [diff] [blame] | 2127 | case VDSO_CLOCKMODE_HVCLOCK: |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 2128 | tsc_pg_val = hv_read_tsc_page_tsc(hv_get_tsc_page(), |
| 2129 | tsc_timestamp); |
| 2130 | if (tsc_pg_val != U64_MAX) { |
| 2131 | /* TSC page valid */ |
Thomas Gleixner | b95a8a2 | 2020-02-07 13:38:56 +0100 | [diff] [blame] | 2132 | *mode = VDSO_CLOCKMODE_HVCLOCK; |
Marcelo Tosatti | 53fafdb | 2019-10-28 12:36:22 -0200 | [diff] [blame] | 2133 | v = (tsc_pg_val - clock->cycle_last) & |
| 2134 | clock->mask; |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 2135 | } else { |
| 2136 | /* TSC page invalid */ |
Thomas Gleixner | b95a8a2 | 2020-02-07 13:38:56 +0100 | [diff] [blame] | 2137 | *mode = VDSO_CLOCKMODE_NONE; |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 2138 | } |
| 2139 | break; |
Thomas Gleixner | b95a8a2 | 2020-02-07 13:38:56 +0100 | [diff] [blame] | 2140 | case VDSO_CLOCKMODE_TSC: |
| 2141 | *mode = VDSO_CLOCKMODE_TSC; |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 2142 | *tsc_timestamp = read_tsc(); |
Marcelo Tosatti | 53fafdb | 2019-10-28 12:36:22 -0200 | [diff] [blame] | 2143 | v = (*tsc_timestamp - clock->cycle_last) & |
| 2144 | clock->mask; |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 2145 | break; |
| 2146 | default: |
Thomas Gleixner | b95a8a2 | 2020-02-07 13:38:56 +0100 | [diff] [blame] | 2147 | *mode = VDSO_CLOCKMODE_NONE; |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 2148 | } |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2149 | |
Thomas Gleixner | b95a8a2 | 2020-02-07 13:38:56 +0100 | [diff] [blame] | 2150 | if (*mode == VDSO_CLOCKMODE_NONE) |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 2151 | *tsc_timestamp = v = 0; |
| 2152 | |
Marcelo Tosatti | 53fafdb | 2019-10-28 12:36:22 -0200 | [diff] [blame] | 2153 | return v * clock->mult; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2154 | } |
| 2155 | |
Marcelo Tosatti | 53fafdb | 2019-10-28 12:36:22 -0200 | [diff] [blame] | 2156 | static int do_monotonic_raw(s64 *t, u64 *tsc_timestamp) |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2157 | { |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2158 | struct pvclock_gtod_data *gtod = &pvclock_gtod_data; |
Thomas Gleixner | cbcf2dd | 2014-07-16 21:04:54 +0000 | [diff] [blame] | 2159 | unsigned long seq; |
| 2160 | int mode; |
| 2161 | u64 ns; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2162 | |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2163 | do { |
| 2164 | seq = read_seqcount_begin(>od->seq); |
Paolo Bonzini | 917f947 | 2020-01-22 14:32:20 +0100 | [diff] [blame] | 2165 | ns = gtod->raw_clock.base_cycles; |
Marcelo Tosatti | 53fafdb | 2019-10-28 12:36:22 -0200 | [diff] [blame] | 2166 | ns += vgettsc(>od->raw_clock, tsc_timestamp, &mode); |
Paolo Bonzini | 917f947 | 2020-01-22 14:32:20 +0100 | [diff] [blame] | 2167 | ns >>= gtod->raw_clock.shift; |
| 2168 | ns += ktime_to_ns(ktime_add(gtod->raw_clock.offset, gtod->offs_boot)); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2169 | } while (unlikely(read_seqcount_retry(>od->seq, seq))); |
Thomas Gleixner | cbcf2dd | 2014-07-16 21:04:54 +0000 | [diff] [blame] | 2170 | *t = ns; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2171 | |
| 2172 | return mode; |
| 2173 | } |
| 2174 | |
Arnd Bergmann | 899a31f | 2018-04-23 10:04:26 +0200 | [diff] [blame] | 2175 | static int do_realtime(struct timespec64 *ts, u64 *tsc_timestamp) |
Marcelo Tosatti | 55dd00a | 2017-01-24 15:09:39 -0200 | [diff] [blame] | 2176 | { |
| 2177 | struct pvclock_gtod_data *gtod = &pvclock_gtod_data; |
| 2178 | unsigned long seq; |
| 2179 | int mode; |
| 2180 | u64 ns; |
| 2181 | |
| 2182 | do { |
| 2183 | seq = read_seqcount_begin(>od->seq); |
Marcelo Tosatti | 55dd00a | 2017-01-24 15:09:39 -0200 | [diff] [blame] | 2184 | ts->tv_sec = gtod->wall_time_sec; |
Paolo Bonzini | 917f947 | 2020-01-22 14:32:20 +0100 | [diff] [blame] | 2185 | ns = gtod->clock.base_cycles; |
Marcelo Tosatti | 53fafdb | 2019-10-28 12:36:22 -0200 | [diff] [blame] | 2186 | ns += vgettsc(>od->clock, tsc_timestamp, &mode); |
Marcelo Tosatti | 55dd00a | 2017-01-24 15:09:39 -0200 | [diff] [blame] | 2187 | ns >>= gtod->clock.shift; |
| 2188 | } while (unlikely(read_seqcount_retry(>od->seq, seq))); |
| 2189 | |
| 2190 | ts->tv_sec += __iter_div_u64_rem(ns, NSEC_PER_SEC, &ns); |
| 2191 | ts->tv_nsec = ns; |
| 2192 | |
| 2193 | return mode; |
| 2194 | } |
| 2195 | |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 2196 | /* returns true if host is using TSC based clocksource */ |
| 2197 | static bool kvm_get_time_and_clockread(s64 *kernel_ns, u64 *tsc_timestamp) |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2198 | { |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2199 | /* checked again under seqlock below */ |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 2200 | if (!gtod_is_based_on_tsc(pvclock_gtod_data.clock.vclock_mode)) |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2201 | return false; |
| 2202 | |
Marcelo Tosatti | 53fafdb | 2019-10-28 12:36:22 -0200 | [diff] [blame] | 2203 | return gtod_is_based_on_tsc(do_monotonic_raw(kernel_ns, |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 2204 | tsc_timestamp)); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2205 | } |
Marcelo Tosatti | 55dd00a | 2017-01-24 15:09:39 -0200 | [diff] [blame] | 2206 | |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 2207 | /* returns true if host is using TSC based clocksource */ |
Arnd Bergmann | 899a31f | 2018-04-23 10:04:26 +0200 | [diff] [blame] | 2208 | static bool kvm_get_walltime_and_clockread(struct timespec64 *ts, |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 2209 | u64 *tsc_timestamp) |
Marcelo Tosatti | 55dd00a | 2017-01-24 15:09:39 -0200 | [diff] [blame] | 2210 | { |
| 2211 | /* checked again under seqlock below */ |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 2212 | if (!gtod_is_based_on_tsc(pvclock_gtod_data.clock.vclock_mode)) |
Marcelo Tosatti | 55dd00a | 2017-01-24 15:09:39 -0200 | [diff] [blame] | 2213 | return false; |
| 2214 | |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 2215 | return gtod_is_based_on_tsc(do_realtime(ts, tsc_timestamp)); |
Marcelo Tosatti | 55dd00a | 2017-01-24 15:09:39 -0200 | [diff] [blame] | 2216 | } |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2217 | #endif |
| 2218 | |
| 2219 | /* |
| 2220 | * |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 2221 | * Assuming a stable TSC across physical CPUS, and a stable TSC |
| 2222 | * across virtual CPUs, the following condition is possible. |
| 2223 | * Each numbered line represents an event visible to both |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2224 | * CPUs at the next numbered event. |
| 2225 | * |
| 2226 | * "timespecX" represents host monotonic time. "tscX" represents |
| 2227 | * RDTSC value. |
| 2228 | * |
| 2229 | * VCPU0 on CPU0 | VCPU1 on CPU1 |
| 2230 | * |
| 2231 | * 1. read timespec0,tsc0 |
| 2232 | * 2. | timespec1 = timespec0 + N |
| 2233 | * | tsc1 = tsc0 + M |
| 2234 | * 3. transition to guest | transition to guest |
| 2235 | * 4. ret0 = timespec0 + (rdtsc - tsc0) | |
| 2236 | * 5. | ret1 = timespec1 + (rdtsc - tsc1) |
| 2237 | * | ret1 = timespec0 + N + (rdtsc - (tsc0 + M)) |
| 2238 | * |
| 2239 | * Since ret0 update is visible to VCPU1 at time 5, to obey monotonicity: |
| 2240 | * |
| 2241 | * - ret0 < ret1 |
| 2242 | * - timespec0 + (rdtsc - tsc0) < timespec0 + N + (rdtsc - (tsc0 + M)) |
| 2243 | * ... |
| 2244 | * - 0 < N - M => M < N |
| 2245 | * |
| 2246 | * That is, when timespec0 != timespec1, M < N. Unfortunately that is not |
| 2247 | * always the case (the difference between two distinct xtime instances |
| 2248 | * might be smaller then the difference between corresponding TSC reads, |
| 2249 | * when updating guest vcpus pvclock areas). |
| 2250 | * |
| 2251 | * To avoid that problem, do not allow visibility of distinct |
| 2252 | * system_timestamp/tsc_timestamp values simultaneously: use a master |
| 2253 | * copy of host monotonic time values. Update that master copy |
| 2254 | * in lockstep. |
| 2255 | * |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 2256 | * Rely on synchronization of host TSCs and guest TSCs for monotonicity. |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2257 | * |
| 2258 | */ |
| 2259 | |
| 2260 | static void pvclock_update_vm_gtod_copy(struct kvm *kvm) |
| 2261 | { |
| 2262 | #ifdef CONFIG_X86_64 |
| 2263 | struct kvm_arch *ka = &kvm->arch; |
| 2264 | int vclock_mode; |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 2265 | bool host_tsc_clocksource, vcpus_matched; |
| 2266 | |
| 2267 | vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 == |
| 2268 | atomic_read(&kvm->online_vcpus)); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2269 | |
| 2270 | /* |
| 2271 | * If the host uses TSC clock, then passthrough TSC as stable |
| 2272 | * to the guest. |
| 2273 | */ |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 2274 | host_tsc_clocksource = kvm_get_time_and_clockread( |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2275 | &ka->master_kernel_ns, |
| 2276 | &ka->master_cycle_now); |
| 2277 | |
Marcelo Tosatti | 16a9602 | 2014-05-14 12:43:24 -0300 | [diff] [blame] | 2278 | ka->use_master_clock = host_tsc_clocksource && vcpus_matched |
Ladi Prosek | a826faf | 2017-06-26 09:56:43 +0200 | [diff] [blame] | 2279 | && !ka->backwards_tsc_observed |
Marcelo Tosatti | 54750f2 | 2015-01-20 15:54:52 -0200 | [diff] [blame] | 2280 | && !ka->boot_vcpu_runs_old_kvmclock; |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 2281 | |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2282 | if (ka->use_master_clock) |
| 2283 | atomic_set(&kvm_guest_has_master_clock, 1); |
| 2284 | |
| 2285 | vclock_mode = pvclock_gtod_data.clock.vclock_mode; |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 2286 | trace_kvm_update_master_clock(ka->use_master_clock, vclock_mode, |
| 2287 | vcpus_matched); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2288 | #endif |
| 2289 | } |
| 2290 | |
Paolo Bonzini | 2860c4b | 2016-01-07 15:05:10 +0100 | [diff] [blame] | 2291 | void kvm_make_mclock_inprogress_request(struct kvm *kvm) |
| 2292 | { |
| 2293 | kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS); |
| 2294 | } |
| 2295 | |
Marcelo Tosatti | 2e762ff | 2013-08-27 23:55:29 -0300 | [diff] [blame] | 2296 | static void kvm_gen_update_masterclock(struct kvm *kvm) |
| 2297 | { |
| 2298 | #ifdef CONFIG_X86_64 |
| 2299 | int i; |
| 2300 | struct kvm_vcpu *vcpu; |
| 2301 | struct kvm_arch *ka = &kvm->arch; |
| 2302 | |
| 2303 | spin_lock(&ka->pvclock_gtod_sync_lock); |
| 2304 | kvm_make_mclock_inprogress_request(kvm); |
| 2305 | /* no guest entries from this point */ |
| 2306 | pvclock_update_vm_gtod_copy(kvm); |
| 2307 | |
| 2308 | kvm_for_each_vcpu(i, vcpu, kvm) |
Guo Hui Liu | 105b21b | 2014-09-12 13:43:19 +0800 | [diff] [blame] | 2309 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu); |
Marcelo Tosatti | 2e762ff | 2013-08-27 23:55:29 -0300 | [diff] [blame] | 2310 | |
| 2311 | /* guest entries allowed */ |
| 2312 | kvm_for_each_vcpu(i, vcpu, kvm) |
Radim Krčmář | 72875d8 | 2017-04-26 22:32:19 +0200 | [diff] [blame] | 2313 | kvm_clear_request(KVM_REQ_MCLOCK_INPROGRESS, vcpu); |
Marcelo Tosatti | 2e762ff | 2013-08-27 23:55:29 -0300 | [diff] [blame] | 2314 | |
| 2315 | spin_unlock(&ka->pvclock_gtod_sync_lock); |
| 2316 | #endif |
| 2317 | } |
| 2318 | |
Marcelo Tosatti | e891a32 | 2017-04-17 12:51:37 -0300 | [diff] [blame] | 2319 | u64 get_kvmclock_ns(struct kvm *kvm) |
Paolo Bonzini | 108b249 | 2016-09-01 14:21:03 +0200 | [diff] [blame] | 2320 | { |
Paolo Bonzini | 108b249 | 2016-09-01 14:21:03 +0200 | [diff] [blame] | 2321 | struct kvm_arch *ka = &kvm->arch; |
Paolo Bonzini | 8b95344 | 2016-11-16 18:31:30 +0100 | [diff] [blame] | 2322 | struct pvclock_vcpu_time_info hv_clock; |
Wanpeng Li | e2c2206 | 2017-05-11 18:12:05 -0700 | [diff] [blame] | 2323 | u64 ret; |
Paolo Bonzini | 108b249 | 2016-09-01 14:21:03 +0200 | [diff] [blame] | 2324 | |
Paolo Bonzini | 8b95344 | 2016-11-16 18:31:30 +0100 | [diff] [blame] | 2325 | spin_lock(&ka->pvclock_gtod_sync_lock); |
| 2326 | if (!ka->use_master_clock) { |
| 2327 | spin_unlock(&ka->pvclock_gtod_sync_lock); |
Paolo Bonzini | 8171cd6 | 2020-01-22 14:36:09 +0100 | [diff] [blame] | 2328 | return get_kvmclock_base_ns() + ka->kvmclock_offset; |
Paolo Bonzini | 108b249 | 2016-09-01 14:21:03 +0200 | [diff] [blame] | 2329 | } |
| 2330 | |
Paolo Bonzini | 8b95344 | 2016-11-16 18:31:30 +0100 | [diff] [blame] | 2331 | hv_clock.tsc_timestamp = ka->master_cycle_now; |
| 2332 | hv_clock.system_time = ka->master_kernel_ns + ka->kvmclock_offset; |
| 2333 | spin_unlock(&ka->pvclock_gtod_sync_lock); |
| 2334 | |
Wanpeng Li | e2c2206 | 2017-05-11 18:12:05 -0700 | [diff] [blame] | 2335 | /* both __this_cpu_read() and rdtsc() should be on the same cpu */ |
| 2336 | get_cpu(); |
| 2337 | |
Wanpeng Li | e70b57a | 2017-11-20 14:55:05 -0800 | [diff] [blame] | 2338 | if (__this_cpu_read(cpu_tsc_khz)) { |
| 2339 | kvm_get_time_scale(NSEC_PER_SEC, __this_cpu_read(cpu_tsc_khz) * 1000LL, |
| 2340 | &hv_clock.tsc_shift, |
| 2341 | &hv_clock.tsc_to_system_mul); |
| 2342 | ret = __pvclock_read_cycles(&hv_clock, rdtsc()); |
| 2343 | } else |
Paolo Bonzini | 8171cd6 | 2020-01-22 14:36:09 +0100 | [diff] [blame] | 2344 | ret = get_kvmclock_base_ns() + ka->kvmclock_offset; |
Wanpeng Li | e2c2206 | 2017-05-11 18:12:05 -0700 | [diff] [blame] | 2345 | |
| 2346 | put_cpu(); |
| 2347 | |
| 2348 | return ret; |
Paolo Bonzini | 108b249 | 2016-09-01 14:21:03 +0200 | [diff] [blame] | 2349 | } |
| 2350 | |
Paolo Bonzini | 0d6dd2f | 2016-09-01 14:20:09 +0200 | [diff] [blame] | 2351 | static void kvm_setup_pvclock_page(struct kvm_vcpu *v) |
| 2352 | { |
| 2353 | struct kvm_vcpu_arch *vcpu = &v->arch; |
| 2354 | struct pvclock_vcpu_time_info guest_hv_clock; |
| 2355 | |
Paolo Bonzini | 4e335d9 | 2017-05-02 16:20:18 +0200 | [diff] [blame] | 2356 | if (unlikely(kvm_read_guest_cached(v->kvm, &vcpu->pv_time, |
Paolo Bonzini | 0d6dd2f | 2016-09-01 14:20:09 +0200 | [diff] [blame] | 2357 | &guest_hv_clock, sizeof(guest_hv_clock)))) |
| 2358 | return; |
| 2359 | |
| 2360 | /* This VCPU is paused, but it's legal for a guest to read another |
| 2361 | * VCPU's kvmclock, so we really have to follow the specification where |
| 2362 | * it says that version is odd if data is being modified, and even after |
| 2363 | * it is consistent. |
| 2364 | * |
| 2365 | * Version field updates must be kept separate. This is because |
| 2366 | * kvm_write_guest_cached might use a "rep movs" instruction, and |
| 2367 | * writes within a string instruction are weakly ordered. So there |
| 2368 | * are three writes overall. |
| 2369 | * |
| 2370 | * As a small optimization, only write the version field in the first |
| 2371 | * and third write. The vcpu->pv_time cache is still valid, because the |
| 2372 | * version field is the first in the struct. |
| 2373 | */ |
| 2374 | BUILD_BUG_ON(offsetof(struct pvclock_vcpu_time_info, version) != 0); |
| 2375 | |
Liran Alon | 51c4b8b | 2017-11-05 16:11:30 +0200 | [diff] [blame] | 2376 | if (guest_hv_clock.version & 1) |
| 2377 | ++guest_hv_clock.version; /* first time write, random junk */ |
| 2378 | |
Paolo Bonzini | 0d6dd2f | 2016-09-01 14:20:09 +0200 | [diff] [blame] | 2379 | vcpu->hv_clock.version = guest_hv_clock.version + 1; |
Paolo Bonzini | 4e335d9 | 2017-05-02 16:20:18 +0200 | [diff] [blame] | 2380 | kvm_write_guest_cached(v->kvm, &vcpu->pv_time, |
| 2381 | &vcpu->hv_clock, |
| 2382 | sizeof(vcpu->hv_clock.version)); |
Paolo Bonzini | 0d6dd2f | 2016-09-01 14:20:09 +0200 | [diff] [blame] | 2383 | |
| 2384 | smp_wmb(); |
| 2385 | |
| 2386 | /* retain PVCLOCK_GUEST_STOPPED if set in guest copy */ |
| 2387 | vcpu->hv_clock.flags |= (guest_hv_clock.flags & PVCLOCK_GUEST_STOPPED); |
| 2388 | |
| 2389 | if (vcpu->pvclock_set_guest_stopped_request) { |
| 2390 | vcpu->hv_clock.flags |= PVCLOCK_GUEST_STOPPED; |
| 2391 | vcpu->pvclock_set_guest_stopped_request = false; |
| 2392 | } |
| 2393 | |
| 2394 | trace_kvm_pvclock_update(v->vcpu_id, &vcpu->hv_clock); |
| 2395 | |
Paolo Bonzini | 4e335d9 | 2017-05-02 16:20:18 +0200 | [diff] [blame] | 2396 | kvm_write_guest_cached(v->kvm, &vcpu->pv_time, |
| 2397 | &vcpu->hv_clock, |
| 2398 | sizeof(vcpu->hv_clock)); |
Paolo Bonzini | 0d6dd2f | 2016-09-01 14:20:09 +0200 | [diff] [blame] | 2399 | |
| 2400 | smp_wmb(); |
| 2401 | |
| 2402 | vcpu->hv_clock.version++; |
Paolo Bonzini | 4e335d9 | 2017-05-02 16:20:18 +0200 | [diff] [blame] | 2403 | kvm_write_guest_cached(v->kvm, &vcpu->pv_time, |
| 2404 | &vcpu->hv_clock, |
| 2405 | sizeof(vcpu->hv_clock.version)); |
Paolo Bonzini | 0d6dd2f | 2016-09-01 14:20:09 +0200 | [diff] [blame] | 2406 | } |
| 2407 | |
Zachary Amsden | 34c238a | 2010-09-18 14:38:14 -1000 | [diff] [blame] | 2408 | static int kvm_guest_time_update(struct kvm_vcpu *v) |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2409 | { |
Paolo Bonzini | 78db6a5 | 2016-02-08 14:51:40 +0100 | [diff] [blame] | 2410 | unsigned long flags, tgt_tsc_khz; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2411 | struct kvm_vcpu_arch *vcpu = &v->arch; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2412 | struct kvm_arch *ka = &v->kvm->arch; |
Marcelo Tosatti | f25e656 | 2014-01-06 12:18:59 -0200 | [diff] [blame] | 2413 | s64 kernel_ns; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2414 | u64 tsc_timestamp, host_tsc; |
Marcelo Tosatti | 51d59c6 | 2012-08-03 15:57:49 -0300 | [diff] [blame] | 2415 | u8 pvclock_flags; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2416 | bool use_master_clock; |
| 2417 | |
| 2418 | kernel_ns = 0; |
| 2419 | host_tsc = 0; |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 2420 | |
Zachary Amsden | 1d5f066 | 2010-08-19 22:07:30 -1000 | [diff] [blame] | 2421 | /* |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2422 | * If the host uses TSC clock, then passthrough TSC as stable |
| 2423 | * to the guest. |
| 2424 | */ |
| 2425 | spin_lock(&ka->pvclock_gtod_sync_lock); |
| 2426 | use_master_clock = ka->use_master_clock; |
| 2427 | if (use_master_clock) { |
| 2428 | host_tsc = ka->master_cycle_now; |
| 2429 | kernel_ns = ka->master_kernel_ns; |
| 2430 | } |
| 2431 | spin_unlock(&ka->pvclock_gtod_sync_lock); |
Marcelo Tosatti | c09664b | 2013-03-18 13:54:32 -0300 | [diff] [blame] | 2432 | |
| 2433 | /* Keep irq disabled to prevent changes to the clock */ |
| 2434 | local_irq_save(flags); |
Paolo Bonzini | 78db6a5 | 2016-02-08 14:51:40 +0100 | [diff] [blame] | 2435 | tgt_tsc_khz = __this_cpu_read(cpu_tsc_khz); |
| 2436 | if (unlikely(tgt_tsc_khz == 0)) { |
Marcelo Tosatti | c09664b | 2013-03-18 13:54:32 -0300 | [diff] [blame] | 2437 | local_irq_restore(flags); |
| 2438 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, v); |
| 2439 | return 1; |
| 2440 | } |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2441 | if (!use_master_clock) { |
Andy Lutomirski | 4ea1636 | 2015-06-25 18:44:07 +0200 | [diff] [blame] | 2442 | host_tsc = rdtsc(); |
Paolo Bonzini | 8171cd6 | 2020-01-22 14:36:09 +0100 | [diff] [blame] | 2443 | kernel_ns = get_kvmclock_base_ns(); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2444 | } |
| 2445 | |
Haozhong Zhang | 4ba7653 | 2015-10-20 15:39:07 +0800 | [diff] [blame] | 2446 | tsc_timestamp = kvm_read_l1_tsc(v, host_tsc); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2447 | |
| 2448 | /* |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 2449 | * We may have to catch up the TSC to match elapsed wall clock |
| 2450 | * time for two reasons, even if kvmclock is used. |
| 2451 | * 1) CPU could have been running below the maximum TSC rate |
| 2452 | * 2) Broken TSC compensation resets the base at each VCPU |
| 2453 | * entry to avoid unknown leaps of TSC even when running |
| 2454 | * again on the same CPU. This may cause apparent elapsed |
| 2455 | * time to disappear, and the guest to stand still or run |
| 2456 | * very slowly. |
| 2457 | */ |
| 2458 | if (vcpu->tsc_catchup) { |
| 2459 | u64 tsc = compute_guest_tsc(v, kernel_ns); |
| 2460 | if (tsc > tsc_timestamp) { |
Marcelo Tosatti | f1e2b26 | 2012-02-03 15:43:55 -0200 | [diff] [blame] | 2461 | adjust_tsc_offset_guest(v, tsc - tsc_timestamp); |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 2462 | tsc_timestamp = tsc; |
| 2463 | } |
| 2464 | } |
| 2465 | |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2466 | local_irq_restore(flags); |
| 2467 | |
Paolo Bonzini | 0d6dd2f | 2016-09-01 14:20:09 +0200 | [diff] [blame] | 2468 | /* With all the info we got, fill in the values */ |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 2469 | |
Paolo Bonzini | 78db6a5 | 2016-02-08 14:51:40 +0100 | [diff] [blame] | 2470 | if (kvm_has_tsc_control) |
| 2471 | tgt_tsc_khz = kvm_scale_tsc(v, tgt_tsc_khz); |
| 2472 | |
| 2473 | if (unlikely(vcpu->hw_tsc_khz != tgt_tsc_khz)) { |
Paolo Bonzini | 3ae13fa | 2016-02-08 15:11:15 +0100 | [diff] [blame] | 2474 | kvm_get_time_scale(NSEC_PER_SEC, tgt_tsc_khz * 1000LL, |
Zachary Amsden | 5f4e3f8 | 2010-09-18 14:38:13 -1000 | [diff] [blame] | 2475 | &vcpu->hv_clock.tsc_shift, |
| 2476 | &vcpu->hv_clock.tsc_to_system_mul); |
Paolo Bonzini | 78db6a5 | 2016-02-08 14:51:40 +0100 | [diff] [blame] | 2477 | vcpu->hw_tsc_khz = tgt_tsc_khz; |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 2478 | } |
| 2479 | |
Zachary Amsden | 1d5f066 | 2010-08-19 22:07:30 -1000 | [diff] [blame] | 2480 | vcpu->hv_clock.tsc_timestamp = tsc_timestamp; |
Zachary Amsden | 759379d | 2010-08-19 22:07:25 -1000 | [diff] [blame] | 2481 | vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset; |
Zachary Amsden | 28e4639 | 2010-09-18 14:38:12 -1000 | [diff] [blame] | 2482 | vcpu->last_guest_tsc = tsc_timestamp; |
Marcelo Tosatti | 51d59c6 | 2012-08-03 15:57:49 -0300 | [diff] [blame] | 2483 | |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2484 | /* If the host uses TSC clocksource, then it is stable */ |
Paolo Bonzini | 0d6dd2f | 2016-09-01 14:20:09 +0200 | [diff] [blame] | 2485 | pvclock_flags = 0; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 2486 | if (use_master_clock) |
| 2487 | pvclock_flags |= PVCLOCK_TSC_STABLE_BIT; |
| 2488 | |
Marcelo Tosatti | 78c0337 | 2012-11-27 23:28:47 -0200 | [diff] [blame] | 2489 | vcpu->hv_clock.flags = pvclock_flags; |
| 2490 | |
Paolo Bonzini | 095cf55 | 2016-02-08 12:54:12 +0100 | [diff] [blame] | 2491 | if (vcpu->pv_time_enabled) |
| 2492 | kvm_setup_pvclock_page(v); |
| 2493 | if (v == kvm_get_vcpu(v->kvm, 0)) |
| 2494 | kvm_hv_setup_tsc_page(v->kvm, &vcpu->hv_clock); |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 2495 | return 0; |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 2496 | } |
| 2497 | |
Marcelo Tosatti | 0061d53d | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 2498 | /* |
| 2499 | * kvmclock updates which are isolated to a given vcpu, such as |
| 2500 | * vcpu->cpu migration, should not allow system_timestamp from |
| 2501 | * the rest of the vcpus to remain static. Otherwise ntp frequency |
| 2502 | * correction applies to one vcpu's system_timestamp but not |
| 2503 | * the others. |
| 2504 | * |
| 2505 | * So in those cases, request a kvmclock update for all vcpus. |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 2506 | * We need to rate-limit these requests though, as they can |
| 2507 | * considerably slow guests that have a large number of vcpus. |
| 2508 | * The time for a remote vcpu to update its kvmclock is bound |
| 2509 | * by the delay we use to rate-limit the updates. |
Marcelo Tosatti | 0061d53d | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 2510 | */ |
| 2511 | |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 2512 | #define KVMCLOCK_UPDATE_DELAY msecs_to_jiffies(100) |
| 2513 | |
| 2514 | static void kvmclock_update_fn(struct work_struct *work) |
Marcelo Tosatti | 0061d53d | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 2515 | { |
| 2516 | int i; |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 2517 | struct delayed_work *dwork = to_delayed_work(work); |
| 2518 | struct kvm_arch *ka = container_of(dwork, struct kvm_arch, |
| 2519 | kvmclock_update_work); |
| 2520 | struct kvm *kvm = container_of(ka, struct kvm, arch); |
Marcelo Tosatti | 0061d53d | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 2521 | struct kvm_vcpu *vcpu; |
| 2522 | |
| 2523 | kvm_for_each_vcpu(i, vcpu, kvm) { |
Guo Hui Liu | 105b21b | 2014-09-12 13:43:19 +0800 | [diff] [blame] | 2524 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu); |
Marcelo Tosatti | 0061d53d | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 2525 | kvm_vcpu_kick(vcpu); |
| 2526 | } |
| 2527 | } |
| 2528 | |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 2529 | static void kvm_gen_kvmclock_update(struct kvm_vcpu *v) |
| 2530 | { |
| 2531 | struct kvm *kvm = v->kvm; |
| 2532 | |
Guo Hui Liu | 105b21b | 2014-09-12 13:43:19 +0800 | [diff] [blame] | 2533 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, v); |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 2534 | schedule_delayed_work(&kvm->arch.kvmclock_update_work, |
| 2535 | KVMCLOCK_UPDATE_DELAY); |
| 2536 | } |
| 2537 | |
Andrew Jones | 332967a | 2014-02-28 12:52:55 +0100 | [diff] [blame] | 2538 | #define KVMCLOCK_SYNC_PERIOD (300 * HZ) |
| 2539 | |
| 2540 | static void kvmclock_sync_fn(struct work_struct *work) |
| 2541 | { |
| 2542 | struct delayed_work *dwork = to_delayed_work(work); |
| 2543 | struct kvm_arch *ka = container_of(dwork, struct kvm_arch, |
| 2544 | kvmclock_sync_work); |
| 2545 | struct kvm *kvm = container_of(ka, struct kvm, arch); |
| 2546 | |
Marcelo Tosatti | 630994b | 2015-05-12 22:42:04 -0300 | [diff] [blame] | 2547 | if (!kvmclock_periodic_sync) |
| 2548 | return; |
| 2549 | |
Andrew Jones | 332967a | 2014-02-28 12:52:55 +0100 | [diff] [blame] | 2550 | schedule_delayed_work(&kvm->arch.kvmclock_update_work, 0); |
| 2551 | schedule_delayed_work(&kvm->arch.kvmclock_sync_work, |
| 2552 | KVMCLOCK_SYNC_PERIOD); |
| 2553 | } |
| 2554 | |
Borislav Petkov | 191c813 | 2019-04-18 18:32:50 +0200 | [diff] [blame] | 2555 | /* |
| 2556 | * On AMD, HWCR[McStatusWrEn] controls whether setting MCi_STATUS results in #GP. |
| 2557 | */ |
| 2558 | static bool can_set_mci_status(struct kvm_vcpu *vcpu) |
| 2559 | { |
| 2560 | /* McStatusWrEn enabled? */ |
Sean Christopherson | 23493d0 | 2020-03-04 17:34:33 -0800 | [diff] [blame] | 2561 | if (guest_cpuid_is_amd_or_hygon(vcpu)) |
Borislav Petkov | 191c813 | 2019-04-18 18:32:50 +0200 | [diff] [blame] | 2562 | return !!(vcpu->arch.msr_hwcr & BIT_ULL(18)); |
| 2563 | |
| 2564 | return false; |
| 2565 | } |
| 2566 | |
Wanpeng Li | 9ffd986 | 2017-10-19 06:47:56 -0700 | [diff] [blame] | 2567 | static int set_msr_mce(struct kvm_vcpu *vcpu, struct msr_data *msr_info) |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2568 | { |
| 2569 | u64 mcg_cap = vcpu->arch.mcg_cap; |
| 2570 | unsigned bank_num = mcg_cap & 0xff; |
Wanpeng Li | 9ffd986 | 2017-10-19 06:47:56 -0700 | [diff] [blame] | 2571 | u32 msr = msr_info->index; |
| 2572 | u64 data = msr_info->data; |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2573 | |
| 2574 | switch (msr) { |
| 2575 | case MSR_IA32_MCG_STATUS: |
| 2576 | vcpu->arch.mcg_status = data; |
| 2577 | break; |
| 2578 | case MSR_IA32_MCG_CTL: |
Paolo Bonzini | 44883f0 | 2018-07-26 13:01:52 +0200 | [diff] [blame] | 2579 | if (!(mcg_cap & MCG_CTL_P) && |
| 2580 | (data || !msr_info->host_initiated)) |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2581 | return 1; |
| 2582 | if (data != 0 && data != ~(u64)0) |
Paolo Bonzini | 44883f0 | 2018-07-26 13:01:52 +0200 | [diff] [blame] | 2583 | return 1; |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2584 | vcpu->arch.mcg_ctl = data; |
| 2585 | break; |
| 2586 | default: |
| 2587 | if (msr >= MSR_IA32_MC0_CTL && |
Chen Yucong | 81760dc | 2014-09-23 10:44:35 +0800 | [diff] [blame] | 2588 | msr < MSR_IA32_MCx_CTL(bank_num)) { |
Marios Pomonis | 6ec4c5e | 2019-12-11 12:47:49 -0800 | [diff] [blame] | 2589 | u32 offset = array_index_nospec( |
| 2590 | msr - MSR_IA32_MC0_CTL, |
| 2591 | MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL); |
| 2592 | |
Andre Przywara | 114be42 | 2010-03-24 17:46:42 +0100 | [diff] [blame] | 2593 | /* only 0 or all 1s can be written to IA32_MCi_CTL |
| 2594 | * some Linux kernels though clear bit 10 in bank 4 to |
| 2595 | * workaround a BIOS/GART TBL issue on AMD K8s, ignore |
| 2596 | * this to avoid an uncatched #GP in the guest |
| 2597 | */ |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2598 | if ((offset & 0x3) == 0 && |
Andre Przywara | 114be42 | 2010-03-24 17:46:42 +0100 | [diff] [blame] | 2599 | data != 0 && (data | (1 << 10)) != ~(u64)0) |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2600 | return -1; |
Borislav Petkov | 191c813 | 2019-04-18 18:32:50 +0200 | [diff] [blame] | 2601 | |
| 2602 | /* MCi_STATUS */ |
Wanpeng Li | 9ffd986 | 2017-10-19 06:47:56 -0700 | [diff] [blame] | 2603 | if (!msr_info->host_initiated && |
Borislav Petkov | 191c813 | 2019-04-18 18:32:50 +0200 | [diff] [blame] | 2604 | (offset & 0x3) == 1 && data != 0) { |
| 2605 | if (!can_set_mci_status(vcpu)) |
| 2606 | return -1; |
| 2607 | } |
| 2608 | |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2609 | vcpu->arch.mce_banks[offset] = data; |
| 2610 | break; |
| 2611 | } |
| 2612 | return 1; |
| 2613 | } |
| 2614 | return 0; |
| 2615 | } |
| 2616 | |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 2617 | static int xen_hvm_config(struct kvm_vcpu *vcpu, u64 data) |
| 2618 | { |
| 2619 | struct kvm *kvm = vcpu->kvm; |
| 2620 | int lm = is_long_mode(vcpu); |
| 2621 | u8 *blob_addr = lm ? (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_64 |
| 2622 | : (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_32; |
| 2623 | u8 blob_size = lm ? kvm->arch.xen_hvm_config.blob_size_64 |
| 2624 | : kvm->arch.xen_hvm_config.blob_size_32; |
| 2625 | u32 page_num = data & ~PAGE_MASK; |
| 2626 | u64 page_addr = data & PAGE_MASK; |
| 2627 | u8 *page; |
| 2628 | int r; |
| 2629 | |
| 2630 | r = -E2BIG; |
| 2631 | if (page_num >= blob_size) |
| 2632 | goto out; |
| 2633 | r = -ENOMEM; |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 2634 | page = memdup_user(blob_addr + (page_num * PAGE_SIZE), PAGE_SIZE); |
| 2635 | if (IS_ERR(page)) { |
| 2636 | r = PTR_ERR(page); |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 2637 | goto out; |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 2638 | } |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 2639 | if (kvm_vcpu_write_guest(vcpu, page_addr, page, PAGE_SIZE)) |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 2640 | goto out_free; |
| 2641 | r = 0; |
| 2642 | out_free: |
| 2643 | kfree(page); |
| 2644 | out: |
| 2645 | return r; |
| 2646 | } |
| 2647 | |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 2648 | static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data) |
| 2649 | { |
| 2650 | gpa_t gpa = data & ~0x3f; |
| 2651 | |
Wanpeng Li | 52a5c15 | 2017-07-13 18:30:42 -0700 | [diff] [blame] | 2652 | /* Bits 3:5 are reserved, Should be zero */ |
| 2653 | if (data & 0x38) |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 2654 | return 1; |
| 2655 | |
| 2656 | vcpu->arch.apf.msr_val = data; |
| 2657 | |
| 2658 | if (!(data & KVM_ASYNC_PF_ENABLED)) { |
| 2659 | kvm_clear_async_pf_completion_queue(vcpu); |
| 2660 | kvm_async_pf_hash_reset(vcpu); |
| 2661 | return 0; |
| 2662 | } |
| 2663 | |
Paolo Bonzini | 4e335d9 | 2017-05-02 16:20:18 +0200 | [diff] [blame] | 2664 | if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.apf.data, gpa, |
Andrew Honig | 8f96452 | 2013-03-29 09:35:21 -0700 | [diff] [blame] | 2665 | sizeof(u32))) |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 2666 | return 1; |
| 2667 | |
Gleb Natapov | 6adba52 | 2010-10-14 11:22:55 +0200 | [diff] [blame] | 2668 | vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS); |
Wanpeng Li | 52a5c15 | 2017-07-13 18:30:42 -0700 | [diff] [blame] | 2669 | vcpu->arch.apf.delivery_as_pf_vmexit = data & KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT; |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 2670 | kvm_async_pf_wakeup_all(vcpu); |
| 2671 | return 0; |
| 2672 | } |
| 2673 | |
Glauber Costa | 12f9a48 | 2011-02-01 14:16:40 -0500 | [diff] [blame] | 2674 | static void kvmclock_reset(struct kvm_vcpu *vcpu) |
| 2675 | { |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 2676 | vcpu->arch.pv_time_enabled = false; |
Paolo Bonzini | 49dedf0 | 2019-10-10 12:49:22 +0200 | [diff] [blame] | 2677 | vcpu->arch.time = 0; |
Glauber Costa | 12f9a48 | 2011-02-01 14:16:40 -0500 | [diff] [blame] | 2678 | } |
| 2679 | |
Wanpeng Li | f38a7b7 | 2017-12-12 17:33:04 -0800 | [diff] [blame] | 2680 | static void kvm_vcpu_flush_tlb(struct kvm_vcpu *vcpu, bool invalidate_gpa) |
| 2681 | { |
| 2682 | ++vcpu->stat.tlb_flush; |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 2683 | kvm_x86_ops.tlb_flush(vcpu, invalidate_gpa); |
Wanpeng Li | f38a7b7 | 2017-12-12 17:33:04 -0800 | [diff] [blame] | 2684 | } |
| 2685 | |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2686 | static void record_steal_time(struct kvm_vcpu *vcpu) |
| 2687 | { |
Boris Ostrovsky | b043138 | 2019-12-05 03:45:32 +0000 | [diff] [blame] | 2688 | struct kvm_host_map map; |
| 2689 | struct kvm_steal_time *st; |
| 2690 | |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2691 | if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED)) |
| 2692 | return; |
| 2693 | |
Boris Ostrovsky | b043138 | 2019-12-05 03:45:32 +0000 | [diff] [blame] | 2694 | /* -EAGAIN is returned in atomic context so we can just return. */ |
| 2695 | if (kvm_map_gfn(vcpu, vcpu->arch.st.msr_val >> PAGE_SHIFT, |
| 2696 | &map, &vcpu->arch.st.cache, false)) |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2697 | return; |
| 2698 | |
Boris Ostrovsky | b043138 | 2019-12-05 03:45:32 +0000 | [diff] [blame] | 2699 | st = map.hva + |
| 2700 | offset_in_page(vcpu->arch.st.msr_val & KVM_STEAL_VALID_BITS); |
| 2701 | |
Wanpeng Li | f38a7b7 | 2017-12-12 17:33:04 -0800 | [diff] [blame] | 2702 | /* |
| 2703 | * Doing a TLB flush here, on the guest's behalf, can avoid |
| 2704 | * expensive IPIs. |
| 2705 | */ |
Wanpeng Li | b382f44 | 2019-08-05 10:03:24 +0800 | [diff] [blame] | 2706 | trace_kvm_pv_tlb_flush(vcpu->vcpu_id, |
Boris Ostrovsky | b043138 | 2019-12-05 03:45:32 +0000 | [diff] [blame] | 2707 | st->preempted & KVM_VCPU_FLUSH_TLB); |
| 2708 | if (xchg(&st->preempted, 0) & KVM_VCPU_FLUSH_TLB) |
Wanpeng Li | f38a7b7 | 2017-12-12 17:33:04 -0800 | [diff] [blame] | 2709 | kvm_vcpu_flush_tlb(vcpu, false); |
Pan Xinhui | 0b9f6c4 | 2016-11-02 05:08:35 -0400 | [diff] [blame] | 2710 | |
Boris Ostrovsky | a6bd811 | 2019-12-06 15:36:12 +0000 | [diff] [blame] | 2711 | vcpu->arch.st.preempted = 0; |
Wanpeng Li | 35f3fae1 | 2016-05-03 11:43:10 +0800 | [diff] [blame] | 2712 | |
Boris Ostrovsky | b043138 | 2019-12-05 03:45:32 +0000 | [diff] [blame] | 2713 | if (st->version & 1) |
| 2714 | st->version += 1; /* first time write, random junk */ |
Wanpeng Li | 35f3fae1 | 2016-05-03 11:43:10 +0800 | [diff] [blame] | 2715 | |
Boris Ostrovsky | b043138 | 2019-12-05 03:45:32 +0000 | [diff] [blame] | 2716 | st->version += 1; |
Wanpeng Li | 35f3fae1 | 2016-05-03 11:43:10 +0800 | [diff] [blame] | 2717 | |
| 2718 | smp_wmb(); |
| 2719 | |
Boris Ostrovsky | b043138 | 2019-12-05 03:45:32 +0000 | [diff] [blame] | 2720 | st->steal += current->sched_info.run_delay - |
Liang Chen | c54cdf1 | 2016-03-16 19:33:16 +0800 | [diff] [blame] | 2721 | vcpu->arch.st.last_steal; |
| 2722 | vcpu->arch.st.last_steal = current->sched_info.run_delay; |
Wanpeng Li | 35f3fae1 | 2016-05-03 11:43:10 +0800 | [diff] [blame] | 2723 | |
Wanpeng Li | 35f3fae1 | 2016-05-03 11:43:10 +0800 | [diff] [blame] | 2724 | smp_wmb(); |
| 2725 | |
Boris Ostrovsky | b043138 | 2019-12-05 03:45:32 +0000 | [diff] [blame] | 2726 | st->version += 1; |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2727 | |
Boris Ostrovsky | b043138 | 2019-12-05 03:45:32 +0000 | [diff] [blame] | 2728 | kvm_unmap_gfn(vcpu, &map, &vcpu->arch.st.cache, true, false); |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2729 | } |
| 2730 | |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2731 | 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] | 2732 | { |
Gleb Natapov | 5753785 | 2012-01-15 14:17:22 +0200 | [diff] [blame] | 2733 | bool pr = false; |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2734 | u32 msr = msr_info->index; |
| 2735 | u64 data = msr_info->data; |
Gleb Natapov | 5753785 | 2012-01-15 14:17:22 +0200 | [diff] [blame] | 2736 | |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2737 | switch (msr) { |
Borislav Petkov | 2e32b71 | 2013-02-19 19:33:13 +0100 | [diff] [blame] | 2738 | case MSR_AMD64_NB_CFG: |
Borislav Petkov | 2e32b71 | 2013-02-19 19:33:13 +0100 | [diff] [blame] | 2739 | case MSR_IA32_UCODE_WRITE: |
| 2740 | case MSR_VM_HSAVE_PA: |
| 2741 | case MSR_AMD64_PATCH_LOADER: |
| 2742 | case MSR_AMD64_BU_CFG2: |
Ladi Prosek | 405a353 | 2017-04-06 15:22:20 +0200 | [diff] [blame] | 2743 | case MSR_AMD64_DC_CFG: |
Eduardo Habkost | 0e1b869 | 2018-12-17 22:34:18 -0200 | [diff] [blame] | 2744 | case MSR_F15H_EX_CFG: |
Borislav Petkov | 2e32b71 | 2013-02-19 19:33:13 +0100 | [diff] [blame] | 2745 | break; |
| 2746 | |
Wanpeng Li | 518e7b9 | 2018-02-28 14:03:31 +0800 | [diff] [blame] | 2747 | case MSR_IA32_UCODE_REV: |
| 2748 | if (msr_info->host_initiated) |
| 2749 | vcpu->arch.microcode_version = data; |
| 2750 | break; |
Sean Christopherson | 0cf9135 | 2019-03-07 15:43:02 -0800 | [diff] [blame] | 2751 | case MSR_IA32_ARCH_CAPABILITIES: |
| 2752 | if (!msr_info->host_initiated) |
| 2753 | return 1; |
| 2754 | vcpu->arch.arch_capabilities = data; |
| 2755 | break; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2756 | case MSR_EFER: |
Sean Christopherson | 1198849 | 2019-04-02 08:19:15 -0700 | [diff] [blame] | 2757 | return set_efer(vcpu, msr_info); |
Andre Przywara | 8f1589d | 2009-06-24 12:44:33 +0200 | [diff] [blame] | 2758 | case MSR_K7_HWCR: |
| 2759 | data &= ~(u64)0x40; /* ignore flush filter disable */ |
Joerg Roedel | 8249402 | 2010-02-24 18:59:16 +0100 | [diff] [blame] | 2760 | data &= ~(u64)0x100; /* ignore ignne emulation enable */ |
Nicolae Mogoreanu | a223c31 | 2012-02-21 13:44:21 -0800 | [diff] [blame] | 2761 | data &= ~(u64)0x8; /* ignore TLB cache disable */ |
Borislav Petkov | 191c813 | 2019-04-18 18:32:50 +0200 | [diff] [blame] | 2762 | |
| 2763 | /* Handle McStatusWrEn */ |
| 2764 | if (data == BIT_ULL(18)) { |
| 2765 | vcpu->arch.msr_hwcr = data; |
| 2766 | } else if (data != 0) { |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 2767 | vcpu_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n", |
| 2768 | data); |
Andre Przywara | 8f1589d | 2009-06-24 12:44:33 +0200 | [diff] [blame] | 2769 | return 1; |
| 2770 | } |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2771 | break; |
Andre Przywara | f7c6d14 | 2009-07-02 15:04:14 +0200 | [diff] [blame] | 2772 | case MSR_FAM10H_MMIO_CONF_BASE: |
| 2773 | if (data != 0) { |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 2774 | vcpu_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: " |
| 2775 | "0x%llx\n", data); |
Andre Przywara | f7c6d14 | 2009-07-02 15:04:14 +0200 | [diff] [blame] | 2776 | return 1; |
| 2777 | } |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2778 | break; |
Alexander Graf | b5e2fec | 2008-07-22 08:00:45 +0200 | [diff] [blame] | 2779 | case MSR_IA32_DEBUGCTLMSR: |
| 2780 | if (!data) { |
| 2781 | /* We support the non-activated case already */ |
| 2782 | break; |
| 2783 | } else if (data & ~(DEBUGCTLMSR_LBR | DEBUGCTLMSR_BTF)) { |
| 2784 | /* Values other than LBR and BTF are vendor-specific, |
| 2785 | thus reserved and should throw a #GP */ |
| 2786 | return 1; |
| 2787 | } |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 2788 | vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTLMSR 0x%llx, nop\n", |
| 2789 | __func__, data); |
Alexander Graf | b5e2fec | 2008-07-22 08:00:45 +0200 | [diff] [blame] | 2790 | break; |
Avi Kivity | 9ba075a | 2008-05-26 20:06:35 +0300 | [diff] [blame] | 2791 | case 0x200 ... 0x2ff: |
Xiao Guangrong | ff53604 | 2015-06-15 16:55:22 +0800 | [diff] [blame] | 2792 | return kvm_mtrr_set_msr(vcpu, msr, data); |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2793 | case MSR_IA32_APICBASE: |
Jan Kiszka | 58cb628 | 2014-01-24 16:48:44 +0100 | [diff] [blame] | 2794 | return kvm_set_apic_base(vcpu, msr_info); |
Gleb Natapov | 0105d1a | 2009-07-05 17:39:36 +0300 | [diff] [blame] | 2795 | case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff: |
| 2796 | return kvm_x2apic_msr_write(vcpu, msr, data); |
Liu, Jinsong | a3e06bb | 2011-09-22 16:55:52 +0800 | [diff] [blame] | 2797 | case MSR_IA32_TSCDEADLINE: |
| 2798 | kvm_set_lapic_tscdeadline_msr(vcpu, data); |
| 2799 | break; |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 2800 | case MSR_IA32_TSC_ADJUST: |
Radim Krčmář | d6321d4 | 2017-08-05 00:12:49 +0200 | [diff] [blame] | 2801 | if (guest_cpuid_has(vcpu, X86_FEATURE_TSC_ADJUST)) { |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 2802 | if (!msr_info->host_initiated) { |
Chris J Arges | d913b90 | 2014-11-12 21:00:39 -0600 | [diff] [blame] | 2803 | s64 adj = data - vcpu->arch.ia32_tsc_adjust_msr; |
Haozhong Zhang | d7add05 | 2015-08-07 11:24:32 +0800 | [diff] [blame] | 2804 | adjust_tsc_offset_guest(vcpu, adj); |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 2805 | } |
| 2806 | vcpu->arch.ia32_tsc_adjust_msr = data; |
| 2807 | } |
| 2808 | break; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2809 | case MSR_IA32_MISC_ENABLE: |
Wanpeng Li | 511a8556 | 2019-05-21 14:06:54 +0800 | [diff] [blame] | 2810 | if (!kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_MISC_ENABLE_NO_MWAIT) && |
| 2811 | ((vcpu->arch.ia32_misc_enable_msr ^ data) & MSR_IA32_MISC_ENABLE_MWAIT)) { |
| 2812 | if (!guest_cpuid_has(vcpu, X86_FEATURE_XMM3)) |
| 2813 | return 1; |
| 2814 | vcpu->arch.ia32_misc_enable_msr = data; |
| 2815 | kvm_update_cpuid(vcpu); |
| 2816 | } else { |
| 2817 | vcpu->arch.ia32_misc_enable_msr = data; |
| 2818 | } |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2819 | break; |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 2820 | case MSR_IA32_SMBASE: |
| 2821 | if (!msr_info->host_initiated) |
| 2822 | return 1; |
| 2823 | vcpu->arch.smbase = data; |
| 2824 | break; |
Paolo Bonzini | 73f624f | 2019-06-06 14:32:59 +0200 | [diff] [blame] | 2825 | case MSR_IA32_POWER_CTL: |
| 2826 | vcpu->arch.msr_ia32_power_ctl = data; |
| 2827 | break; |
Paolo Bonzini | dd25993 | 2018-04-13 11:38:35 +0200 | [diff] [blame] | 2828 | case MSR_IA32_TSC: |
| 2829 | kvm_write_tsc(vcpu, msr_info); |
| 2830 | break; |
Aaron Lewis | 864e2ab | 2019-10-21 16:30:26 -0700 | [diff] [blame] | 2831 | case MSR_IA32_XSS: |
| 2832 | if (!msr_info->host_initiated && |
| 2833 | !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES)) |
| 2834 | return 1; |
| 2835 | /* |
Sean Christopherson | a1bead2 | 2020-03-02 15:57:00 -0800 | [diff] [blame] | 2836 | * KVM supports exposing PT to the guest, but does not support |
| 2837 | * IA32_XSS[bit 8]. Guests have to use RDMSR/WRMSR rather than |
| 2838 | * XSAVES/XRSTORS to save/restore PT MSRs. |
Aaron Lewis | 864e2ab | 2019-10-21 16:30:26 -0700 | [diff] [blame] | 2839 | */ |
Paolo Bonzini | 408e9a3 | 2020-03-05 16:11:56 +0100 | [diff] [blame] | 2840 | if (data & ~supported_xss) |
Aaron Lewis | 864e2ab | 2019-10-21 16:30:26 -0700 | [diff] [blame] | 2841 | return 1; |
| 2842 | vcpu->arch.ia32_xss = data; |
| 2843 | break; |
Liran Alon | 52797bf | 2017-11-15 13:43:14 +0200 | [diff] [blame] | 2844 | case MSR_SMI_COUNT: |
| 2845 | if (!msr_info->host_initiated) |
| 2846 | return 1; |
| 2847 | vcpu->arch.smi_count = data; |
| 2848 | break; |
Glauber Costa | 11c6bff | 2010-05-11 12:17:41 -0400 | [diff] [blame] | 2849 | case MSR_KVM_WALL_CLOCK_NEW: |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2850 | case MSR_KVM_WALL_CLOCK: |
| 2851 | vcpu->kvm->arch.wall_clock = data; |
| 2852 | kvm_write_wall_clock(vcpu->kvm, data); |
| 2853 | break; |
Glauber Costa | 11c6bff | 2010-05-11 12:17:41 -0400 | [diff] [blame] | 2854 | case MSR_KVM_SYSTEM_TIME_NEW: |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2855 | case MSR_KVM_SYSTEM_TIME: { |
Marcelo Tosatti | 54750f2 | 2015-01-20 15:54:52 -0200 | [diff] [blame] | 2856 | struct kvm_arch *ka = &vcpu->kvm->arch; |
| 2857 | |
Marcelo Tosatti | 54750f2 | 2015-01-20 15:54:52 -0200 | [diff] [blame] | 2858 | if (vcpu->vcpu_id == 0 && !msr_info->host_initiated) { |
| 2859 | bool tmp = (msr == MSR_KVM_SYSTEM_TIME); |
| 2860 | |
| 2861 | if (ka->boot_vcpu_runs_old_kvmclock != tmp) |
Radim Krčmář | 1bd2009 | 2017-04-26 22:32:20 +0200 | [diff] [blame] | 2862 | kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu); |
Marcelo Tosatti | 54750f2 | 2015-01-20 15:54:52 -0200 | [diff] [blame] | 2863 | |
| 2864 | ka->boot_vcpu_runs_old_kvmclock = tmp; |
| 2865 | } |
| 2866 | |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2867 | vcpu->arch.time = data; |
Marcelo Tosatti | 0061d53d | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 2868 | kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu); |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2869 | |
| 2870 | /* we verify if the enable bit is set... */ |
Paolo Bonzini | 49dedf0 | 2019-10-10 12:49:22 +0200 | [diff] [blame] | 2871 | vcpu->arch.pv_time_enabled = false; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2872 | if (!(data & 1)) |
| 2873 | break; |
| 2874 | |
Paolo Bonzini | 49dedf0 | 2019-10-10 12:49:22 +0200 | [diff] [blame] | 2875 | if (!kvm_gfn_to_hva_cache_init(vcpu->kvm, |
Andrew Honig | 8f96452 | 2013-03-29 09:35:21 -0700 | [diff] [blame] | 2876 | &vcpu->arch.pv_time, data & ~1ULL, |
| 2877 | sizeof(struct pvclock_vcpu_time_info))) |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 2878 | vcpu->arch.pv_time_enabled = true; |
Xiao Guangrong | 32cad84 | 2012-08-03 15:42:52 +0800 | [diff] [blame] | 2879 | |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2880 | break; |
| 2881 | } |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 2882 | case MSR_KVM_ASYNC_PF_EN: |
| 2883 | if (kvm_pv_enable_async_pf(vcpu, data)) |
| 2884 | return 1; |
| 2885 | break; |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2886 | case MSR_KVM_STEAL_TIME: |
| 2887 | |
| 2888 | if (unlikely(!sched_info_on())) |
| 2889 | return 1; |
| 2890 | |
| 2891 | if (data & KVM_STEAL_RESERVED_MASK) |
| 2892 | return 1; |
| 2893 | |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2894 | vcpu->arch.st.msr_val = data; |
| 2895 | |
| 2896 | if (!(data & KVM_MSR_ENABLED)) |
| 2897 | break; |
| 2898 | |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2899 | kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu); |
| 2900 | |
| 2901 | break; |
Michael S. Tsirkin | ae7a2a3 | 2012-06-24 19:25:07 +0300 | [diff] [blame] | 2902 | case MSR_KVM_PV_EOI_EN: |
Ladi Prosek | 72bbf93 | 2018-10-16 18:49:59 +0200 | [diff] [blame] | 2903 | if (kvm_lapic_enable_pv_eoi(vcpu, data, sizeof(u8))) |
Michael S. Tsirkin | ae7a2a3 | 2012-06-24 19:25:07 +0300 | [diff] [blame] | 2904 | return 1; |
| 2905 | break; |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2906 | |
Marcelo Tosatti | 2d5ba19 | 2019-06-03 19:52:44 -0300 | [diff] [blame] | 2907 | case MSR_KVM_POLL_CONTROL: |
| 2908 | /* only enable bit supported */ |
| 2909 | if (data & (-1ULL << 1)) |
| 2910 | return 1; |
| 2911 | |
| 2912 | vcpu->arch.msr_kvm_poll_control = data; |
| 2913 | break; |
| 2914 | |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2915 | case MSR_IA32_MCG_CTL: |
| 2916 | case MSR_IA32_MCG_STATUS: |
Chen Yucong | 81760dc | 2014-09-23 10:44:35 +0800 | [diff] [blame] | 2917 | case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1: |
Wanpeng Li | 9ffd986 | 2017-10-19 06:47:56 -0700 | [diff] [blame] | 2918 | return set_msr_mce(vcpu, msr_info); |
Andre Przywara | 71db602 | 2009-06-12 22:01:29 +0200 | [diff] [blame] | 2919 | |
Wei Huang | 6912ac3 | 2015-06-12 01:34:56 -0400 | [diff] [blame] | 2920 | case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3: |
| 2921 | case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1: |
| 2922 | pr = true; /* fall through */ |
| 2923 | case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3: |
| 2924 | case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1: |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 2925 | if (kvm_pmu_is_valid_msr(vcpu, msr)) |
Paolo Bonzini | afd80d8 | 2013-03-28 17:18:35 +0100 | [diff] [blame] | 2926 | return kvm_pmu_set_msr(vcpu, msr_info); |
Gleb Natapov | 5753785 | 2012-01-15 14:17:22 +0200 | [diff] [blame] | 2927 | |
| 2928 | if (pr || data != 0) |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 2929 | vcpu_unimpl(vcpu, "disabled perfctr wrmsr: " |
| 2930 | "0x%x data 0x%llx\n", msr, data); |
Gleb Natapov | 5753785 | 2012-01-15 14:17:22 +0200 | [diff] [blame] | 2931 | break; |
Jes Sorensen | 84e0cef | 2010-09-01 11:42:04 +0200 | [diff] [blame] | 2932 | case MSR_K7_CLK_CTL: |
| 2933 | /* |
| 2934 | * Ignore all writes to this no longer documented MSR. |
| 2935 | * Writes are only relevant for old K7 processors, |
| 2936 | * all pre-dating SVM, but a recommended workaround from |
Guo Chao | 4a96998 | 2012-06-28 15:17:27 +0800 | [diff] [blame] | 2937 | * AMD for these chips. It is possible to specify the |
Jes Sorensen | 84e0cef | 2010-09-01 11:42:04 +0200 | [diff] [blame] | 2938 | * affected processor models on the command line, hence |
| 2939 | * the need to ignore the workaround. |
| 2940 | */ |
| 2941 | break; |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 2942 | case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15: |
Andrey Smetanin | e7d9513 | 2015-07-03 15:01:37 +0300 | [diff] [blame] | 2943 | case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4: |
| 2944 | case HV_X64_MSR_CRASH_CTL: |
Andrey Smetanin | 1f4b34f | 2015-11-30 19:22:21 +0300 | [diff] [blame] | 2945 | case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT: |
Vitaly Kuznetsov | a2e164e | 2018-03-01 15:15:12 +0100 | [diff] [blame] | 2946 | case HV_X64_MSR_REENLIGHTENMENT_CONTROL: |
| 2947 | case HV_X64_MSR_TSC_EMULATION_CONTROL: |
| 2948 | case HV_X64_MSR_TSC_EMULATION_STATUS: |
Andrey Smetanin | e7d9513 | 2015-07-03 15:01:37 +0300 | [diff] [blame] | 2949 | return kvm_hv_set_msr_common(vcpu, msr, data, |
| 2950 | msr_info->host_initiated); |
john cooper | 91c9c3e | 2011-01-21 00:21:00 -0500 | [diff] [blame] | 2951 | case MSR_IA32_BBL_CR_CTL3: |
| 2952 | /* Drop writes to this legacy MSR -- see rdmsr |
| 2953 | * counterpart for further detail. |
| 2954 | */ |
Eyal Moscovici | fab0aa3 | 2017-11-08 14:32:08 +0200 | [diff] [blame] | 2955 | if (report_ignored_msrs) |
| 2956 | vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data 0x%llx\n", |
| 2957 | msr, data); |
john cooper | 91c9c3e | 2011-01-21 00:21:00 -0500 | [diff] [blame] | 2958 | break; |
Boris Ostrovsky | 2b036c6 | 2012-01-09 14:00:35 -0500 | [diff] [blame] | 2959 | case MSR_AMD64_OSVW_ID_LENGTH: |
Radim Krčmář | d6321d4 | 2017-08-05 00:12:49 +0200 | [diff] [blame] | 2960 | if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW)) |
Boris Ostrovsky | 2b036c6 | 2012-01-09 14:00:35 -0500 | [diff] [blame] | 2961 | return 1; |
| 2962 | vcpu->arch.osvw.length = data; |
| 2963 | break; |
| 2964 | case MSR_AMD64_OSVW_STATUS: |
Radim Krčmář | d6321d4 | 2017-08-05 00:12:49 +0200 | [diff] [blame] | 2965 | if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW)) |
Boris Ostrovsky | 2b036c6 | 2012-01-09 14:00:35 -0500 | [diff] [blame] | 2966 | return 1; |
| 2967 | vcpu->arch.osvw.status = data; |
| 2968 | break; |
Kyle Huey | db2336a | 2017-03-20 01:16:28 -0700 | [diff] [blame] | 2969 | case MSR_PLATFORM_INFO: |
| 2970 | if (!msr_info->host_initiated || |
Kyle Huey | db2336a | 2017-03-20 01:16:28 -0700 | [diff] [blame] | 2971 | (!(data & MSR_PLATFORM_INFO_CPUID_FAULT) && |
| 2972 | cpuid_fault_enabled(vcpu))) |
| 2973 | return 1; |
| 2974 | vcpu->arch.msr_platform_info = data; |
| 2975 | break; |
| 2976 | case MSR_MISC_FEATURES_ENABLES: |
| 2977 | if (data & ~MSR_MISC_FEATURES_ENABLES_CPUID_FAULT || |
| 2978 | (data & MSR_MISC_FEATURES_ENABLES_CPUID_FAULT && |
| 2979 | !supports_cpuid_fault(vcpu))) |
| 2980 | return 1; |
| 2981 | vcpu->arch.msr_misc_features_enables = data; |
| 2982 | break; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2983 | default: |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 2984 | if (msr && (msr == vcpu->kvm->arch.xen_hvm_config.msr)) |
| 2985 | return xen_hvm_config(vcpu, data); |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 2986 | if (kvm_pmu_is_valid_msr(vcpu, msr)) |
Paolo Bonzini | afd80d8 | 2013-03-28 17:18:35 +0100 | [diff] [blame] | 2987 | return kvm_pmu_set_msr(vcpu, msr_info); |
Andre Przywara | ed85c06 | 2009-06-25 12:36:49 +0200 | [diff] [blame] | 2988 | if (!ignore_msrs) { |
Bandan Das | ae0f549 | 2016-11-15 01:36:18 -0500 | [diff] [blame] | 2989 | vcpu_debug_ratelimited(vcpu, "unhandled wrmsr: 0x%x data 0x%llx\n", |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 2990 | msr, data); |
Andre Przywara | ed85c06 | 2009-06-25 12:36:49 +0200 | [diff] [blame] | 2991 | return 1; |
| 2992 | } else { |
Eyal Moscovici | fab0aa3 | 2017-11-08 14:32:08 +0200 | [diff] [blame] | 2993 | if (report_ignored_msrs) |
| 2994 | vcpu_unimpl(vcpu, |
| 2995 | "ignored wrmsr: 0x%x data 0x%llx\n", |
| 2996 | msr, data); |
Andre Przywara | ed85c06 | 2009-06-25 12:36:49 +0200 | [diff] [blame] | 2997 | break; |
| 2998 | } |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2999 | } |
| 3000 | return 0; |
| 3001 | } |
| 3002 | EXPORT_SYMBOL_GPL(kvm_set_msr_common); |
| 3003 | |
Paolo Bonzini | 44883f0 | 2018-07-26 13:01:52 +0200 | [diff] [blame] | 3004 | static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata, bool host) |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 3005 | { |
| 3006 | u64 data; |
| 3007 | u64 mcg_cap = vcpu->arch.mcg_cap; |
| 3008 | unsigned bank_num = mcg_cap & 0xff; |
| 3009 | |
| 3010 | switch (msr) { |
| 3011 | case MSR_IA32_P5_MC_ADDR: |
| 3012 | case MSR_IA32_P5_MC_TYPE: |
| 3013 | data = 0; |
| 3014 | break; |
| 3015 | case MSR_IA32_MCG_CAP: |
| 3016 | data = vcpu->arch.mcg_cap; |
| 3017 | break; |
| 3018 | case MSR_IA32_MCG_CTL: |
Paolo Bonzini | 44883f0 | 2018-07-26 13:01:52 +0200 | [diff] [blame] | 3019 | if (!(mcg_cap & MCG_CTL_P) && !host) |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 3020 | return 1; |
| 3021 | data = vcpu->arch.mcg_ctl; |
| 3022 | break; |
| 3023 | case MSR_IA32_MCG_STATUS: |
| 3024 | data = vcpu->arch.mcg_status; |
| 3025 | break; |
| 3026 | default: |
| 3027 | if (msr >= MSR_IA32_MC0_CTL && |
Chen Yucong | 81760dc | 2014-09-23 10:44:35 +0800 | [diff] [blame] | 3028 | msr < MSR_IA32_MCx_CTL(bank_num)) { |
Marios Pomonis | 6ec4c5e | 2019-12-11 12:47:49 -0800 | [diff] [blame] | 3029 | u32 offset = array_index_nospec( |
| 3030 | msr - MSR_IA32_MC0_CTL, |
| 3031 | MSR_IA32_MCx_CTL(bank_num) - MSR_IA32_MC0_CTL); |
| 3032 | |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 3033 | data = vcpu->arch.mce_banks[offset]; |
| 3034 | break; |
| 3035 | } |
| 3036 | return 1; |
| 3037 | } |
| 3038 | *pdata = data; |
| 3039 | return 0; |
| 3040 | } |
| 3041 | |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3042 | 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] | 3043 | { |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3044 | switch (msr_info->index) { |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 3045 | case MSR_IA32_PLATFORM_ID: |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 3046 | case MSR_IA32_EBL_CR_POWERON: |
Alexander Graf | b5e2fec | 2008-07-22 08:00:45 +0200 | [diff] [blame] | 3047 | case MSR_IA32_DEBUGCTLMSR: |
| 3048 | case MSR_IA32_LASTBRANCHFROMIP: |
| 3049 | case MSR_IA32_LASTBRANCHTOIP: |
| 3050 | case MSR_IA32_LASTINTFROMIP: |
| 3051 | case MSR_IA32_LASTINTTOIP: |
Jaswinder Singh Rajput | 60af2ec | 2009-05-14 11:00:10 +0530 | [diff] [blame] | 3052 | case MSR_K8_SYSCFG: |
Paolo Bonzini | 3afb112 | 2015-09-18 17:33:04 +0200 | [diff] [blame] | 3053 | case MSR_K8_TSEG_ADDR: |
| 3054 | case MSR_K8_TSEG_MASK: |
Avi Kivity | 61a6bd6 | 2008-12-29 17:32:28 +0200 | [diff] [blame] | 3055 | case MSR_VM_HSAVE_PA: |
Andre Przywara | 1fdbd48 | 2009-06-24 12:44:34 +0200 | [diff] [blame] | 3056 | case MSR_K8_INT_PENDING_MSG: |
Andre Przywara | c323c0e | 2009-06-24 15:37:05 +0200 | [diff] [blame] | 3057 | case MSR_AMD64_NB_CFG: |
Andre Przywara | f7c6d14 | 2009-07-02 15:04:14 +0200 | [diff] [blame] | 3058 | case MSR_FAM10H_MMIO_CONF_BASE: |
Borislav Petkov | 2e32b71 | 2013-02-19 19:33:13 +0100 | [diff] [blame] | 3059 | case MSR_AMD64_BU_CFG2: |
Dmitry Bilunov | 0c2df2a | 2016-05-31 17:38:24 +0300 | [diff] [blame] | 3060 | case MSR_IA32_PERF_CTL: |
Ladi Prosek | 405a353 | 2017-04-06 15:22:20 +0200 | [diff] [blame] | 3061 | case MSR_AMD64_DC_CFG: |
Eduardo Habkost | 0e1b869 | 2018-12-17 22:34:18 -0200 | [diff] [blame] | 3062 | case MSR_F15H_EX_CFG: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3063 | msr_info->data = 0; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 3064 | break; |
Janakarajan Natarajan | c51eb52 | 2018-02-05 13:24:52 -0600 | [diff] [blame] | 3065 | case MSR_F15H_PERF_CTL0 ... MSR_F15H_PERF_CTR5: |
Wei Huang | 6912ac3 | 2015-06-12 01:34:56 -0400 | [diff] [blame] | 3066 | case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3: |
| 3067 | case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3: |
| 3068 | case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1: |
| 3069 | case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1: |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 3070 | if (kvm_pmu_is_valid_msr(vcpu, msr_info->index)) |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3071 | return kvm_pmu_get_msr(vcpu, msr_info->index, &msr_info->data); |
| 3072 | msr_info->data = 0; |
Gleb Natapov | 5753785 | 2012-01-15 14:17:22 +0200 | [diff] [blame] | 3073 | break; |
Marcelo Tosatti | 742bc67 | 2011-07-29 19:44:21 -0300 | [diff] [blame] | 3074 | case MSR_IA32_UCODE_REV: |
Wanpeng Li | 518e7b9 | 2018-02-28 14:03:31 +0800 | [diff] [blame] | 3075 | msr_info->data = vcpu->arch.microcode_version; |
Marcelo Tosatti | 742bc67 | 2011-07-29 19:44:21 -0300 | [diff] [blame] | 3076 | break; |
Sean Christopherson | 0cf9135 | 2019-03-07 15:43:02 -0800 | [diff] [blame] | 3077 | case MSR_IA32_ARCH_CAPABILITIES: |
| 3078 | if (!msr_info->host_initiated && |
| 3079 | !guest_cpuid_has(vcpu, X86_FEATURE_ARCH_CAPABILITIES)) |
| 3080 | return 1; |
| 3081 | msr_info->data = vcpu->arch.arch_capabilities; |
| 3082 | break; |
Paolo Bonzini | 73f624f | 2019-06-06 14:32:59 +0200 | [diff] [blame] | 3083 | case MSR_IA32_POWER_CTL: |
| 3084 | msr_info->data = vcpu->arch.msr_ia32_power_ctl; |
| 3085 | break; |
Paolo Bonzini | dd25993 | 2018-04-13 11:38:35 +0200 | [diff] [blame] | 3086 | case MSR_IA32_TSC: |
| 3087 | msr_info->data = kvm_scale_tsc(vcpu, rdtsc()) + vcpu->arch.tsc_offset; |
| 3088 | break; |
Avi Kivity | 9ba075a | 2008-05-26 20:06:35 +0300 | [diff] [blame] | 3089 | case MSR_MTRRcap: |
Avi Kivity | 9ba075a | 2008-05-26 20:06:35 +0300 | [diff] [blame] | 3090 | case 0x200 ... 0x2ff: |
Xiao Guangrong | ff53604 | 2015-06-15 16:55:22 +0800 | [diff] [blame] | 3091 | return kvm_mtrr_get_msr(vcpu, msr_info->index, &msr_info->data); |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 3092 | case 0xcd: /* fsb frequency */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3093 | msr_info->data = 3; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 3094 | break; |
Jes Sorensen | 7b91409 | 2010-09-09 12:06:46 +0200 | [diff] [blame] | 3095 | /* |
| 3096 | * MSR_EBC_FREQUENCY_ID |
| 3097 | * Conservative value valid for even the basic CPU models. |
| 3098 | * Models 0,1: 000 in bits 23:21 indicating a bus speed of |
| 3099 | * 100MHz, model 2 000 in bits 18:16 indicating 100MHz, |
| 3100 | * and 266MHz for model 3, or 4. Set Core Clock |
| 3101 | * Frequency to System Bus Frequency Ratio to 1 (bits |
| 3102 | * 31:24) even though these are only valid for CPU |
| 3103 | * models > 2, however guests may end up dividing or |
| 3104 | * multiplying by zero otherwise. |
| 3105 | */ |
| 3106 | case MSR_EBC_FREQUENCY_ID: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3107 | msr_info->data = 1 << 24; |
Jes Sorensen | 7b91409 | 2010-09-09 12:06:46 +0200 | [diff] [blame] | 3108 | break; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 3109 | case MSR_IA32_APICBASE: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3110 | msr_info->data = kvm_get_apic_base(vcpu); |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 3111 | break; |
Gleb Natapov | 0105d1a | 2009-07-05 17:39:36 +0300 | [diff] [blame] | 3112 | case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3113 | return kvm_x2apic_msr_read(vcpu, msr_info->index, &msr_info->data); |
Liu, Jinsong | a3e06bb | 2011-09-22 16:55:52 +0800 | [diff] [blame] | 3114 | case MSR_IA32_TSCDEADLINE: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3115 | msr_info->data = kvm_get_lapic_tscdeadline_msr(vcpu); |
Liu, Jinsong | a3e06bb | 2011-09-22 16:55:52 +0800 | [diff] [blame] | 3116 | break; |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 3117 | case MSR_IA32_TSC_ADJUST: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3118 | msr_info->data = (u64)vcpu->arch.ia32_tsc_adjust_msr; |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 3119 | break; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 3120 | case MSR_IA32_MISC_ENABLE: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3121 | msr_info->data = vcpu->arch.ia32_misc_enable_msr; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 3122 | break; |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 3123 | case MSR_IA32_SMBASE: |
| 3124 | if (!msr_info->host_initiated) |
| 3125 | return 1; |
| 3126 | msr_info->data = vcpu->arch.smbase; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 3127 | break; |
Liran Alon | 52797bf | 2017-11-15 13:43:14 +0200 | [diff] [blame] | 3128 | case MSR_SMI_COUNT: |
| 3129 | msr_info->data = vcpu->arch.smi_count; |
| 3130 | break; |
Alexander Graf | 847f0ad | 2008-02-21 12:11:01 +0100 | [diff] [blame] | 3131 | case MSR_IA32_PERF_STATUS: |
| 3132 | /* TSC increment by tick */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3133 | msr_info->data = 1000ULL; |
Alexander Graf | 847f0ad | 2008-02-21 12:11:01 +0100 | [diff] [blame] | 3134 | /* CPU multiplier */ |
Nicolas Iooss | b0996ae | 2015-06-29 18:39:23 +0800 | [diff] [blame] | 3135 | msr_info->data |= (((uint64_t)4ULL) << 40); |
Alexander Graf | 847f0ad | 2008-02-21 12:11:01 +0100 | [diff] [blame] | 3136 | break; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 3137 | case MSR_EFER: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3138 | msr_info->data = vcpu->arch.efer; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 3139 | break; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 3140 | case MSR_KVM_WALL_CLOCK: |
Glauber Costa | 11c6bff | 2010-05-11 12:17:41 -0400 | [diff] [blame] | 3141 | case MSR_KVM_WALL_CLOCK_NEW: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3142 | msr_info->data = vcpu->kvm->arch.wall_clock; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 3143 | break; |
| 3144 | case MSR_KVM_SYSTEM_TIME: |
Glauber Costa | 11c6bff | 2010-05-11 12:17:41 -0400 | [diff] [blame] | 3145 | case MSR_KVM_SYSTEM_TIME_NEW: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3146 | msr_info->data = vcpu->arch.time; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 3147 | break; |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 3148 | case MSR_KVM_ASYNC_PF_EN: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3149 | msr_info->data = vcpu->arch.apf.msr_val; |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 3150 | break; |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 3151 | case MSR_KVM_STEAL_TIME: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3152 | msr_info->data = vcpu->arch.st.msr_val; |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 3153 | break; |
Michael S. Tsirkin | 1d92128 | 2012-08-26 18:00:29 +0300 | [diff] [blame] | 3154 | case MSR_KVM_PV_EOI_EN: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3155 | msr_info->data = vcpu->arch.pv_eoi.msr_val; |
Michael S. Tsirkin | 1d92128 | 2012-08-26 18:00:29 +0300 | [diff] [blame] | 3156 | break; |
Marcelo Tosatti | 2d5ba19 | 2019-06-03 19:52:44 -0300 | [diff] [blame] | 3157 | case MSR_KVM_POLL_CONTROL: |
| 3158 | msr_info->data = vcpu->arch.msr_kvm_poll_control; |
| 3159 | break; |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 3160 | case MSR_IA32_P5_MC_ADDR: |
| 3161 | case MSR_IA32_P5_MC_TYPE: |
| 3162 | case MSR_IA32_MCG_CAP: |
| 3163 | case MSR_IA32_MCG_CTL: |
| 3164 | case MSR_IA32_MCG_STATUS: |
Chen Yucong | 81760dc | 2014-09-23 10:44:35 +0800 | [diff] [blame] | 3165 | case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1: |
Paolo Bonzini | 44883f0 | 2018-07-26 13:01:52 +0200 | [diff] [blame] | 3166 | return get_msr_mce(vcpu, msr_info->index, &msr_info->data, |
| 3167 | msr_info->host_initiated); |
Aaron Lewis | 864e2ab | 2019-10-21 16:30:26 -0700 | [diff] [blame] | 3168 | case MSR_IA32_XSS: |
| 3169 | if (!msr_info->host_initiated && |
| 3170 | !guest_cpuid_has(vcpu, X86_FEATURE_XSAVES)) |
| 3171 | return 1; |
| 3172 | msr_info->data = vcpu->arch.ia32_xss; |
| 3173 | break; |
Jes Sorensen | 84e0cef | 2010-09-01 11:42:04 +0200 | [diff] [blame] | 3174 | case MSR_K7_CLK_CTL: |
| 3175 | /* |
| 3176 | * Provide expected ramp-up count for K7. All other |
| 3177 | * are set to zero, indicating minimum divisors for |
| 3178 | * every field. |
| 3179 | * |
| 3180 | * This prevents guest kernels on AMD host with CPU |
| 3181 | * type 6, model 8 and higher from exploding due to |
| 3182 | * the rdmsr failing. |
| 3183 | */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3184 | msr_info->data = 0x20000000; |
Jes Sorensen | 84e0cef | 2010-09-01 11:42:04 +0200 | [diff] [blame] | 3185 | break; |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 3186 | case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15: |
Andrey Smetanin | e7d9513 | 2015-07-03 15:01:37 +0300 | [diff] [blame] | 3187 | case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4: |
| 3188 | case HV_X64_MSR_CRASH_CTL: |
Andrey Smetanin | 1f4b34f | 2015-11-30 19:22:21 +0300 | [diff] [blame] | 3189 | case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT: |
Vitaly Kuznetsov | a2e164e | 2018-03-01 15:15:12 +0100 | [diff] [blame] | 3190 | case HV_X64_MSR_REENLIGHTENMENT_CONTROL: |
| 3191 | case HV_X64_MSR_TSC_EMULATION_CONTROL: |
| 3192 | case HV_X64_MSR_TSC_EMULATION_STATUS: |
Andrey Smetanin | e83d588 | 2015-07-03 15:01:34 +0300 | [diff] [blame] | 3193 | return kvm_hv_get_msr_common(vcpu, |
Paolo Bonzini | 44883f0 | 2018-07-26 13:01:52 +0200 | [diff] [blame] | 3194 | msr_info->index, &msr_info->data, |
| 3195 | msr_info->host_initiated); |
john cooper | 91c9c3e | 2011-01-21 00:21:00 -0500 | [diff] [blame] | 3196 | case MSR_IA32_BBL_CR_CTL3: |
| 3197 | /* This legacy MSR exists but isn't fully documented in current |
| 3198 | * silicon. It is however accessed by winxp in very narrow |
| 3199 | * scenarios where it sets bit #19, itself documented as |
| 3200 | * a "reserved" bit. Best effort attempt to source coherent |
| 3201 | * read data here should the balance of the register be |
| 3202 | * interpreted by the guest: |
| 3203 | * |
| 3204 | * L2 cache control register 3: 64GB range, 256KB size, |
| 3205 | * enabled, latency 0x1, configured |
| 3206 | */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3207 | msr_info->data = 0xbe702111; |
john cooper | 91c9c3e | 2011-01-21 00:21:00 -0500 | [diff] [blame] | 3208 | break; |
Boris Ostrovsky | 2b036c6 | 2012-01-09 14:00:35 -0500 | [diff] [blame] | 3209 | case MSR_AMD64_OSVW_ID_LENGTH: |
Radim Krčmář | d6321d4 | 2017-08-05 00:12:49 +0200 | [diff] [blame] | 3210 | if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW)) |
Boris Ostrovsky | 2b036c6 | 2012-01-09 14:00:35 -0500 | [diff] [blame] | 3211 | return 1; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3212 | msr_info->data = vcpu->arch.osvw.length; |
Boris Ostrovsky | 2b036c6 | 2012-01-09 14:00:35 -0500 | [diff] [blame] | 3213 | break; |
| 3214 | case MSR_AMD64_OSVW_STATUS: |
Radim Krčmář | d6321d4 | 2017-08-05 00:12:49 +0200 | [diff] [blame] | 3215 | if (!guest_cpuid_has(vcpu, X86_FEATURE_OSVW)) |
Boris Ostrovsky | 2b036c6 | 2012-01-09 14:00:35 -0500 | [diff] [blame] | 3216 | return 1; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3217 | msr_info->data = vcpu->arch.osvw.status; |
Boris Ostrovsky | 2b036c6 | 2012-01-09 14:00:35 -0500 | [diff] [blame] | 3218 | break; |
Kyle Huey | db2336a | 2017-03-20 01:16:28 -0700 | [diff] [blame] | 3219 | case MSR_PLATFORM_INFO: |
Drew Schmitt | 6fbbde9 | 2018-08-20 10:32:15 -0700 | [diff] [blame] | 3220 | if (!msr_info->host_initiated && |
| 3221 | !vcpu->kvm->arch.guest_can_read_msr_platform_info) |
| 3222 | return 1; |
Kyle Huey | db2336a | 2017-03-20 01:16:28 -0700 | [diff] [blame] | 3223 | msr_info->data = vcpu->arch.msr_platform_info; |
| 3224 | break; |
| 3225 | case MSR_MISC_FEATURES_ENABLES: |
| 3226 | msr_info->data = vcpu->arch.msr_misc_features_enables; |
| 3227 | break; |
Borislav Petkov | 191c813 | 2019-04-18 18:32:50 +0200 | [diff] [blame] | 3228 | case MSR_K7_HWCR: |
| 3229 | msr_info->data = vcpu->arch.msr_hwcr; |
| 3230 | break; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 3231 | default: |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 3232 | if (kvm_pmu_is_valid_msr(vcpu, msr_info->index)) |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3233 | return kvm_pmu_get_msr(vcpu, msr_info->index, &msr_info->data); |
Andre Przywara | ed85c06 | 2009-06-25 12:36:49 +0200 | [diff] [blame] | 3234 | if (!ignore_msrs) { |
Bandan Das | ae0f549 | 2016-11-15 01:36:18 -0500 | [diff] [blame] | 3235 | vcpu_debug_ratelimited(vcpu, "unhandled rdmsr: 0x%x\n", |
| 3236 | msr_info->index); |
Andre Przywara | ed85c06 | 2009-06-25 12:36:49 +0200 | [diff] [blame] | 3237 | return 1; |
| 3238 | } else { |
Eyal Moscovici | fab0aa3 | 2017-11-08 14:32:08 +0200 | [diff] [blame] | 3239 | if (report_ignored_msrs) |
| 3240 | vcpu_unimpl(vcpu, "ignored rdmsr: 0x%x\n", |
| 3241 | msr_info->index); |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3242 | msr_info->data = 0; |
Andre Przywara | ed85c06 | 2009-06-25 12:36:49 +0200 | [diff] [blame] | 3243 | } |
| 3244 | break; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 3245 | } |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 3246 | return 0; |
| 3247 | } |
| 3248 | EXPORT_SYMBOL_GPL(kvm_get_msr_common); |
| 3249 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3250 | /* |
| 3251 | * Read or write a bunch of msrs. All parameters are kernel addresses. |
| 3252 | * |
| 3253 | * @return number of msrs set successfully. |
| 3254 | */ |
| 3255 | static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs, |
| 3256 | struct kvm_msr_entry *entries, |
| 3257 | int (*do_msr)(struct kvm_vcpu *vcpu, |
| 3258 | unsigned index, u64 *data)) |
| 3259 | { |
Tom Lendacky | 801e459 | 2018-02-21 13:39:51 -0600 | [diff] [blame] | 3260 | int i; |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3261 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3262 | for (i = 0; i < msrs->nmsrs; ++i) |
| 3263 | if (do_msr(vcpu, entries[i].index, &entries[i].data)) |
| 3264 | break; |
| 3265 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3266 | return i; |
| 3267 | } |
| 3268 | |
| 3269 | /* |
| 3270 | * Read or write a bunch of msrs. Parameters are user addresses. |
| 3271 | * |
| 3272 | * @return number of msrs set successfully. |
| 3273 | */ |
| 3274 | static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs, |
| 3275 | int (*do_msr)(struct kvm_vcpu *vcpu, |
| 3276 | unsigned index, u64 *data), |
| 3277 | int writeback) |
| 3278 | { |
| 3279 | struct kvm_msrs msrs; |
| 3280 | struct kvm_msr_entry *entries; |
| 3281 | int r, n; |
| 3282 | unsigned size; |
| 3283 | |
| 3284 | r = -EFAULT; |
Jordan Borgner | 0e96f31 | 2018-10-28 12:58:28 +0000 | [diff] [blame] | 3285 | if (copy_from_user(&msrs, user_msrs, sizeof(msrs))) |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3286 | goto out; |
| 3287 | |
| 3288 | r = -E2BIG; |
| 3289 | if (msrs.nmsrs >= MAX_IO_MSRS) |
| 3290 | goto out; |
| 3291 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3292 | size = sizeof(struct kvm_msr_entry) * msrs.nmsrs; |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 3293 | entries = memdup_user(user_msrs->entries, size); |
| 3294 | if (IS_ERR(entries)) { |
| 3295 | r = PTR_ERR(entries); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3296 | goto out; |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 3297 | } |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3298 | |
| 3299 | r = n = __msr_io(vcpu, &msrs, entries, do_msr); |
| 3300 | if (r < 0) |
| 3301 | goto out_free; |
| 3302 | |
| 3303 | r = -EFAULT; |
| 3304 | if (writeback && copy_to_user(user_msrs->entries, entries, size)) |
| 3305 | goto out_free; |
| 3306 | |
| 3307 | r = n; |
| 3308 | |
| 3309 | out_free: |
Avi Kivity | 7a73c02 | 2010-07-22 23:24:52 +0300 | [diff] [blame] | 3310 | kfree(entries); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3311 | out: |
| 3312 | return r; |
| 3313 | } |
| 3314 | |
Wanpeng Li | 4d5422c | 2018-03-12 04:53:02 -0700 | [diff] [blame] | 3315 | static inline bool kvm_can_mwait_in_guest(void) |
| 3316 | { |
| 3317 | return boot_cpu_has(X86_FEATURE_MWAIT) && |
KarimAllah Ahmed | 8e9b29b | 2018-04-11 11:16:03 +0200 | [diff] [blame] | 3318 | !boot_cpu_has_bug(X86_BUG_MONITOR) && |
| 3319 | boot_cpu_has(X86_FEATURE_ARAT); |
Wanpeng Li | 4d5422c | 2018-03-12 04:53:02 -0700 | [diff] [blame] | 3320 | } |
| 3321 | |
Alexander Graf | 784aa3d | 2014-07-14 18:27:35 +0200 | [diff] [blame] | 3322 | int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext) |
Zhang Xiantao | 018d00d | 2007-11-15 23:07:47 +0800 | [diff] [blame] | 3323 | { |
Wanpeng Li | 4d5422c | 2018-03-12 04:53:02 -0700 | [diff] [blame] | 3324 | int r = 0; |
Zhang Xiantao | 018d00d | 2007-11-15 23:07:47 +0800 | [diff] [blame] | 3325 | |
| 3326 | switch (ext) { |
| 3327 | case KVM_CAP_IRQCHIP: |
| 3328 | case KVM_CAP_HLT: |
| 3329 | case KVM_CAP_MMU_SHADOW_CACHE_CONTROL: |
Zhang Xiantao | 018d00d | 2007-11-15 23:07:47 +0800 | [diff] [blame] | 3330 | case KVM_CAP_SET_TSS_ADDR: |
Dan Kenigsberg | 0771671 | 2007-11-21 17:10:04 +0200 | [diff] [blame] | 3331 | case KVM_CAP_EXT_CPUID: |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 3332 | case KVM_CAP_EXT_EMUL_CPUID: |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 3333 | case KVM_CAP_CLOCKSOURCE: |
Sheng Yang | 7837699 | 2008-01-28 05:10:22 +0800 | [diff] [blame] | 3334 | case KVM_CAP_PIT: |
Marcelo Tosatti | a28e4f5 | 2008-02-22 12:21:36 -0500 | [diff] [blame] | 3335 | case KVM_CAP_NOP_IO_DELAY: |
Marcelo Tosatti | 62d9f0d | 2008-04-11 13:24:45 -0300 | [diff] [blame] | 3336 | case KVM_CAP_MP_STATE: |
Avi Kivity | ed84862 | 2008-07-29 11:30:57 +0300 | [diff] [blame] | 3337 | case KVM_CAP_SYNC_MMU: |
Lai Jiangshan | a355c85 | 2010-12-14 17:57:47 +0800 | [diff] [blame] | 3338 | case KVM_CAP_USER_NMI: |
Marcelo Tosatti | 52d939a | 2008-12-30 15:55:06 -0200 | [diff] [blame] | 3339 | case KVM_CAP_REINJECT_CONTROL: |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 3340 | case KVM_CAP_IRQ_INJECT_STATUS: |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 3341 | case KVM_CAP_IOEVENTFD: |
Michael S. Tsirkin | f848a5a | 2014-03-31 21:50:38 +0300 | [diff] [blame] | 3342 | case KVM_CAP_IOEVENTFD_NO_LENGTH: |
Jan Kiszka | c5ff41c | 2009-05-14 22:42:53 +0200 | [diff] [blame] | 3343 | case KVM_CAP_PIT2: |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 3344 | case KVM_CAP_PIT_STATE2: |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 3345 | case KVM_CAP_SET_IDENTITY_MAP_ADDR: |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 3346 | case KVM_CAP_XEN_HVM: |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3347 | case KVM_CAP_VCPU_EVENTS: |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 3348 | case KVM_CAP_HYPERV: |
Gleb Natapov | 10388a0 | 2010-01-17 15:51:23 +0200 | [diff] [blame] | 3349 | case KVM_CAP_HYPERV_VAPIC: |
Gleb Natapov | c25bc16 | 2010-01-17 15:51:24 +0200 | [diff] [blame] | 3350 | case KVM_CAP_HYPERV_SPIN: |
Andrey Smetanin | 5c919412 | 2015-11-10 15:36:34 +0300 | [diff] [blame] | 3351 | case KVM_CAP_HYPERV_SYNIC: |
Roman Kagan | efc479e | 2017-06-22 16:51:01 +0300 | [diff] [blame] | 3352 | case KVM_CAP_HYPERV_SYNIC2: |
Roman Kagan | d3457c8 | 2017-07-14 17:13:20 +0300 | [diff] [blame] | 3353 | case KVM_CAP_HYPERV_VP_INDEX: |
Roman Kagan | faeb783 | 2018-02-01 16:48:32 +0300 | [diff] [blame] | 3354 | case KVM_CAP_HYPERV_EVENTFD: |
Vitaly Kuznetsov | c1aea91 | 2018-05-16 17:21:31 +0200 | [diff] [blame] | 3355 | case KVM_CAP_HYPERV_TLBFLUSH: |
Vitaly Kuznetsov | 214ff83 | 2018-09-26 19:02:59 +0200 | [diff] [blame] | 3356 | case KVM_CAP_HYPERV_SEND_IPI: |
Vitaly Kuznetsov | 2bc3997 | 2018-12-10 18:21:56 +0100 | [diff] [blame] | 3357 | case KVM_CAP_HYPERV_CPUID: |
Zhai, Edwin | ab9f4ec | 2010-01-29 14:38:44 +0800 | [diff] [blame] | 3358 | case KVM_CAP_PCI_SEGMENT: |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3359 | case KVM_CAP_DEBUGREGS: |
Jan Kiszka | d2be165 | 2010-02-23 17:47:57 +0100 | [diff] [blame] | 3360 | case KVM_CAP_X86_ROBUST_SINGLESTEP: |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3361 | case KVM_CAP_XSAVE: |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 3362 | case KVM_CAP_ASYNC_PF: |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 3363 | case KVM_CAP_GET_TSC_KHZ: |
Eric B Munson | 1c0b28c | 2012-03-10 14:37:27 -0500 | [diff] [blame] | 3364 | case KVM_CAP_KVMCLOCK_CTRL: |
Xiao Guangrong | 4d8b81a | 2012-08-21 11:02:51 +0800 | [diff] [blame] | 3365 | case KVM_CAP_READONLY_MEM: |
Paolo Bonzini | 5f66b62 | 2014-01-29 18:10:45 +0100 | [diff] [blame] | 3366 | case KVM_CAP_HYPERV_TIME: |
Gabriel L. Somlo | 100943c | 2014-02-27 23:06:17 -0500 | [diff] [blame] | 3367 | case KVM_CAP_IOAPIC_POLARITY_IGNORED: |
Radim Krčmář | defcf51 | 2015-01-08 15:59:30 +0100 | [diff] [blame] | 3368 | case KVM_CAP_TSC_DEADLINE_TIMER: |
Nadav Amit | 90de4a1 | 2015-04-13 01:53:41 +0300 | [diff] [blame] | 3369 | case KVM_CAP_DISABLE_QUIRKS: |
Paolo Bonzini | d71ba78 | 2015-07-29 11:56:48 +0200 | [diff] [blame] | 3370 | case KVM_CAP_SET_BOOT_CPU_ID: |
Steve Rutherford | 49df639 | 2015-07-29 23:21:40 -0700 | [diff] [blame] | 3371 | case KVM_CAP_SPLIT_IRQCHIP: |
Paolo Bonzini | 460df4c | 2017-02-08 11:50:15 +0100 | [diff] [blame] | 3372 | case KVM_CAP_IMMEDIATE_EXIT: |
Eric Hankland | 66bb8a0 | 2019-07-10 18:25:15 -0700 | [diff] [blame] | 3373 | case KVM_CAP_PMU_EVENT_FILTER: |
Tom Lendacky | 801e459 | 2018-02-21 13:39:51 -0600 | [diff] [blame] | 3374 | case KVM_CAP_GET_MSR_FEATURES: |
Drew Schmitt | 6fbbde9 | 2018-08-20 10:32:15 -0700 | [diff] [blame] | 3375 | case KVM_CAP_MSR_PLATFORM_INFO: |
Jim Mattson | c4f5519 | 2018-10-16 14:29:24 -0700 | [diff] [blame] | 3376 | case KVM_CAP_EXCEPTION_PAYLOAD: |
Zhang Xiantao | 018d00d | 2007-11-15 23:07:47 +0800 | [diff] [blame] | 3377 | r = 1; |
| 3378 | break; |
Ken Hofsass | 01643c5 | 2018-01-31 16:03:36 -0800 | [diff] [blame] | 3379 | case KVM_CAP_SYNC_REGS: |
| 3380 | r = KVM_SYNC_X86_VALID_FIELDS; |
| 3381 | break; |
Paolo Bonzini | e3fd9a9 | 2016-11-09 17:48:15 +0100 | [diff] [blame] | 3382 | case KVM_CAP_ADJUST_CLOCK: |
| 3383 | r = KVM_CLOCK_TSC_STABLE; |
| 3384 | break; |
Wanpeng Li | 4d5422c | 2018-03-12 04:53:02 -0700 | [diff] [blame] | 3385 | case KVM_CAP_X86_DISABLE_EXITS: |
Wanpeng Li | b517006 | 2019-05-21 14:06:53 +0800 | [diff] [blame] | 3386 | r |= KVM_X86_DISABLE_EXITS_HLT | KVM_X86_DISABLE_EXITS_PAUSE | |
| 3387 | KVM_X86_DISABLE_EXITS_CSTATE; |
Wanpeng Li | 4d5422c | 2018-03-12 04:53:02 -0700 | [diff] [blame] | 3388 | if(kvm_can_mwait_in_guest()) |
| 3389 | r |= KVM_X86_DISABLE_EXITS_MWAIT; |
Michael S. Tsirkin | 668fffa | 2017-04-21 12:27:17 +0200 | [diff] [blame] | 3390 | break; |
Paolo Bonzini | 6d396b5 | 2015-04-01 14:25:33 +0200 | [diff] [blame] | 3391 | case KVM_CAP_X86_SMM: |
| 3392 | /* SMBASE is usually relocated above 1M on modern chipsets, |
| 3393 | * and SMM handlers might indeed rely on 4G segment limits, |
| 3394 | * so do not report SMM to be available if real mode is |
| 3395 | * emulated via vm86 mode. Still, do not go to great lengths |
| 3396 | * to avoid userspace's usage of the feature, because it is a |
| 3397 | * fringe case that is not enabled except via specific settings |
| 3398 | * of the module parameters. |
| 3399 | */ |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 3400 | r = kvm_x86_ops.has_emulated_msr(MSR_IA32_SMBASE); |
Paolo Bonzini | 6d396b5 | 2015-04-01 14:25:33 +0200 | [diff] [blame] | 3401 | break; |
Avi Kivity | 774ead3 | 2007-12-26 13:57:04 +0200 | [diff] [blame] | 3402 | case KVM_CAP_VAPIC: |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 3403 | r = !kvm_x86_ops.cpu_has_accelerated_tpr(); |
Avi Kivity | 774ead3 | 2007-12-26 13:57:04 +0200 | [diff] [blame] | 3404 | break; |
Avi Kivity | f725230 | 2008-02-20 11:53:16 +0200 | [diff] [blame] | 3405 | case KVM_CAP_NR_VCPUS: |
Sasha Levin | 8c3ba33 | 2011-07-18 17:17:15 +0300 | [diff] [blame] | 3406 | r = KVM_SOFT_MAX_VCPUS; |
| 3407 | break; |
| 3408 | case KVM_CAP_MAX_VCPUS: |
Avi Kivity | f725230 | 2008-02-20 11:53:16 +0200 | [diff] [blame] | 3409 | r = KVM_MAX_VCPUS; |
| 3410 | break; |
Thomas Huth | a86cb41 | 2019-05-23 18:43:08 +0200 | [diff] [blame] | 3411 | case KVM_CAP_MAX_VCPU_ID: |
| 3412 | r = KVM_MAX_VCPU_ID; |
| 3413 | break; |
Marcelo Tosatti | a68a6a7 | 2009-10-01 19:28:39 -0300 | [diff] [blame] | 3414 | case KVM_CAP_PV_MMU: /* obsolete */ |
| 3415 | r = 0; |
Marcelo Tosatti | 2f333bc | 2008-02-22 12:21:37 -0500 | [diff] [blame] | 3416 | break; |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 3417 | case KVM_CAP_MCE: |
| 3418 | r = KVM_MAX_MCE_BANKS; |
| 3419 | break; |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3420 | case KVM_CAP_XCRS: |
Borislav Petkov | d366bf7 | 2016-04-04 22:25:02 +0200 | [diff] [blame] | 3421 | r = boot_cpu_has(X86_FEATURE_XSAVE); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3422 | break; |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 3423 | case KVM_CAP_TSC_CONTROL: |
| 3424 | r = kvm_has_tsc_control; |
| 3425 | break; |
Radim Krčmář | 37131313 | 2016-07-12 22:09:27 +0200 | [diff] [blame] | 3426 | case KVM_CAP_X2APIC_API: |
| 3427 | r = KVM_X2APIC_API_VALID_FLAGS; |
| 3428 | break; |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 3429 | case KVM_CAP_NESTED_STATE: |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 3430 | r = kvm_x86_ops.get_nested_state ? |
| 3431 | kvm_x86_ops.get_nested_state(NULL, NULL, 0) : 0; |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 3432 | break; |
Tianyu Lan | 344c6c8 | 2019-08-22 22:30:20 +0800 | [diff] [blame] | 3433 | case KVM_CAP_HYPERV_DIRECT_TLBFLUSH: |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 3434 | r = kvm_x86_ops.enable_direct_tlbflush != NULL; |
Vitaly Kuznetsov | 5a0165f | 2019-08-28 09:59:05 +0200 | [diff] [blame] | 3435 | break; |
| 3436 | case KVM_CAP_HYPERV_ENLIGHTENED_VMCS: |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 3437 | r = kvm_x86_ops.nested_enable_evmcs != NULL; |
Tianyu Lan | 344c6c8 | 2019-08-22 22:30:20 +0800 | [diff] [blame] | 3438 | break; |
Zhang Xiantao | 018d00d | 2007-11-15 23:07:47 +0800 | [diff] [blame] | 3439 | default: |
Zhang Xiantao | 018d00d | 2007-11-15 23:07:47 +0800 | [diff] [blame] | 3440 | break; |
| 3441 | } |
| 3442 | return r; |
| 3443 | |
| 3444 | } |
| 3445 | |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 3446 | long kvm_arch_dev_ioctl(struct file *filp, |
| 3447 | unsigned int ioctl, unsigned long arg) |
| 3448 | { |
| 3449 | void __user *argp = (void __user *)arg; |
| 3450 | long r; |
| 3451 | |
| 3452 | switch (ioctl) { |
| 3453 | case KVM_GET_MSR_INDEX_LIST: { |
| 3454 | struct kvm_msr_list __user *user_msr_list = argp; |
| 3455 | struct kvm_msr_list msr_list; |
| 3456 | unsigned n; |
| 3457 | |
| 3458 | r = -EFAULT; |
Jordan Borgner | 0e96f31 | 2018-10-28 12:58:28 +0000 | [diff] [blame] | 3459 | if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list))) |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 3460 | goto out; |
| 3461 | n = msr_list.nmsrs; |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 3462 | msr_list.nmsrs = num_msrs_to_save + num_emulated_msrs; |
Jordan Borgner | 0e96f31 | 2018-10-28 12:58:28 +0000 | [diff] [blame] | 3463 | if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list))) |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 3464 | goto out; |
| 3465 | r = -E2BIG; |
Jan Kiszka | e125e7b | 2009-07-02 21:45:47 +0200 | [diff] [blame] | 3466 | if (n < msr_list.nmsrs) |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 3467 | goto out; |
| 3468 | r = -EFAULT; |
| 3469 | if (copy_to_user(user_msr_list->indices, &msrs_to_save, |
| 3470 | num_msrs_to_save * sizeof(u32))) |
| 3471 | goto out; |
Jan Kiszka | e125e7b | 2009-07-02 21:45:47 +0200 | [diff] [blame] | 3472 | if (copy_to_user(user_msr_list->indices + num_msrs_to_save, |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 3473 | &emulated_msrs, |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 3474 | num_emulated_msrs * sizeof(u32))) |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 3475 | goto out; |
| 3476 | r = 0; |
| 3477 | break; |
| 3478 | } |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 3479 | case KVM_GET_SUPPORTED_CPUID: |
| 3480 | case KVM_GET_EMULATED_CPUID: { |
Avi Kivity | 674eea0 | 2008-02-11 18:37:23 +0200 | [diff] [blame] | 3481 | struct kvm_cpuid2 __user *cpuid_arg = argp; |
| 3482 | struct kvm_cpuid2 cpuid; |
| 3483 | |
| 3484 | r = -EFAULT; |
Jordan Borgner | 0e96f31 | 2018-10-28 12:58:28 +0000 | [diff] [blame] | 3485 | if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid))) |
Avi Kivity | 674eea0 | 2008-02-11 18:37:23 +0200 | [diff] [blame] | 3486 | goto out; |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 3487 | |
| 3488 | r = kvm_dev_ioctl_get_cpuid(&cpuid, cpuid_arg->entries, |
| 3489 | ioctl); |
Avi Kivity | 674eea0 | 2008-02-11 18:37:23 +0200 | [diff] [blame] | 3490 | if (r) |
| 3491 | goto out; |
| 3492 | |
| 3493 | r = -EFAULT; |
Jordan Borgner | 0e96f31 | 2018-10-28 12:58:28 +0000 | [diff] [blame] | 3494 | if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid))) |
Avi Kivity | 674eea0 | 2008-02-11 18:37:23 +0200 | [diff] [blame] | 3495 | goto out; |
| 3496 | r = 0; |
| 3497 | break; |
| 3498 | } |
Xiaoyao Li | cf6c26e | 2020-02-29 10:52:12 +0800 | [diff] [blame] | 3499 | case KVM_X86_GET_MCE_CAP_SUPPORTED: |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 3500 | r = -EFAULT; |
Ashok Raj | c45dcc7 | 2016-06-22 14:59:56 +0800 | [diff] [blame] | 3501 | if (copy_to_user(argp, &kvm_mce_cap_supported, |
| 3502 | sizeof(kvm_mce_cap_supported))) |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 3503 | goto out; |
| 3504 | r = 0; |
| 3505 | break; |
Tom Lendacky | 801e459 | 2018-02-21 13:39:51 -0600 | [diff] [blame] | 3506 | case KVM_GET_MSR_FEATURE_INDEX_LIST: { |
| 3507 | struct kvm_msr_list __user *user_msr_list = argp; |
| 3508 | struct kvm_msr_list msr_list; |
| 3509 | unsigned int n; |
| 3510 | |
| 3511 | r = -EFAULT; |
| 3512 | if (copy_from_user(&msr_list, user_msr_list, sizeof(msr_list))) |
| 3513 | goto out; |
| 3514 | n = msr_list.nmsrs; |
| 3515 | msr_list.nmsrs = num_msr_based_features; |
| 3516 | if (copy_to_user(user_msr_list, &msr_list, sizeof(msr_list))) |
| 3517 | goto out; |
| 3518 | r = -E2BIG; |
| 3519 | if (n < msr_list.nmsrs) |
| 3520 | goto out; |
| 3521 | r = -EFAULT; |
| 3522 | if (copy_to_user(user_msr_list->indices, &msr_based_features, |
| 3523 | num_msr_based_features * sizeof(u32))) |
| 3524 | goto out; |
| 3525 | r = 0; |
| 3526 | break; |
| 3527 | } |
| 3528 | case KVM_GET_MSRS: |
| 3529 | r = msr_io(NULL, argp, do_get_msr_feature, 1); |
| 3530 | break; |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 3531 | default: |
| 3532 | r = -EINVAL; |
Xiaoyao Li | cf6c26e | 2020-02-29 10:52:12 +0800 | [diff] [blame] | 3533 | break; |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 3534 | } |
| 3535 | out: |
| 3536 | return r; |
| 3537 | } |
| 3538 | |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 3539 | static void wbinvd_ipi(void *garbage) |
| 3540 | { |
| 3541 | wbinvd(); |
| 3542 | } |
| 3543 | |
| 3544 | static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu) |
| 3545 | { |
Alex Williamson | e0f0bbc | 2013-10-30 11:02:30 -0600 | [diff] [blame] | 3546 | return kvm_arch_has_noncoherent_dma(vcpu->kvm); |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 3547 | } |
| 3548 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3549 | void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu) |
| 3550 | { |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 3551 | /* Address WBINVD may be executed by guest */ |
| 3552 | if (need_emulate_wbinvd(vcpu)) { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 3553 | if (kvm_x86_ops.has_wbinvd_exit()) |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 3554 | cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask); |
| 3555 | else if (vcpu->cpu != -1 && vcpu->cpu != cpu) |
| 3556 | smp_call_function_single(vcpu->cpu, |
| 3557 | wbinvd_ipi, NULL, 1); |
| 3558 | } |
| 3559 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 3560 | kvm_x86_ops.vcpu_load(vcpu, cpu); |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 3561 | |
| 3562 | /* Apply any externally detected TSC adjustments (due to suspend) */ |
| 3563 | if (unlikely(vcpu->arch.tsc_offset_adjustment)) { |
| 3564 | adjust_tsc_offset_host(vcpu, vcpu->arch.tsc_offset_adjustment); |
| 3565 | vcpu->arch.tsc_offset_adjustment = 0; |
Guo Hui Liu | 105b21b | 2014-09-12 13:43:19 +0800 | [diff] [blame] | 3566 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu); |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 3567 | } |
| 3568 | |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 3569 | if (unlikely(vcpu->cpu != cpu) || kvm_check_tsc_unstable()) { |
Zachary Amsden | 6f526ec | 2012-02-03 15:43:54 -0200 | [diff] [blame] | 3570 | s64 tsc_delta = !vcpu->arch.last_host_tsc ? 0 : |
Andy Lutomirski | 4ea1636 | 2015-06-25 18:44:07 +0200 | [diff] [blame] | 3571 | rdtsc() - vcpu->arch.last_host_tsc; |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 3572 | if (tsc_delta < 0) |
| 3573 | mark_tsc_unstable("KVM discovered backwards TSC"); |
Yunhong Jiang | ce7a058 | 2016-06-13 14:20:01 -0700 | [diff] [blame] | 3574 | |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 3575 | if (kvm_check_tsc_unstable()) { |
Haozhong Zhang | 07c1419 | 2015-10-20 15:39:05 +0800 | [diff] [blame] | 3576 | u64 offset = kvm_compute_tsc_offset(vcpu, |
Zachary Amsden | b183aa5 | 2012-02-03 15:43:53 -0200 | [diff] [blame] | 3577 | vcpu->arch.last_guest_tsc); |
Luiz Capitulino | a545ab6 | 2016-09-07 14:47:19 -0400 | [diff] [blame] | 3578 | kvm_vcpu_write_tsc_offset(vcpu, offset); |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 3579 | vcpu->arch.tsc_catchup = 1; |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 3580 | } |
Paolo Bonzini | a749e24 | 2017-06-29 17:14:50 +0200 | [diff] [blame] | 3581 | |
| 3582 | if (kvm_lapic_hv_timer_in_use(vcpu)) |
| 3583 | kvm_lapic_restart_hv_timer(vcpu); |
| 3584 | |
Marcelo Tosatti | d98d07c | 2012-11-27 23:29:04 -0200 | [diff] [blame] | 3585 | /* |
| 3586 | * On a host with synchronized TSC, there is no need to update |
| 3587 | * kvmclock on vcpu->cpu migration |
| 3588 | */ |
| 3589 | if (!vcpu->kvm->arch.use_master_clock || vcpu->cpu == -1) |
Marcelo Tosatti | 0061d53d | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 3590 | kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu); |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 3591 | if (vcpu->cpu != cpu) |
Radim Krčmář | 1bd2009 | 2017-04-26 22:32:20 +0200 | [diff] [blame] | 3592 | kvm_make_request(KVM_REQ_MIGRATE_TIMER, vcpu); |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 3593 | vcpu->cpu = cpu; |
Zachary Amsden | 6b7d7e7 | 2009-10-09 16:26:08 -1000 | [diff] [blame] | 3594 | } |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 3595 | |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 3596 | kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3597 | } |
| 3598 | |
Pan Xinhui | 0b9f6c4 | 2016-11-02 05:08:35 -0400 | [diff] [blame] | 3599 | static void kvm_steal_time_set_preempted(struct kvm_vcpu *vcpu) |
| 3600 | { |
Boris Ostrovsky | b043138 | 2019-12-05 03:45:32 +0000 | [diff] [blame] | 3601 | struct kvm_host_map map; |
| 3602 | struct kvm_steal_time *st; |
| 3603 | |
Pan Xinhui | 0b9f6c4 | 2016-11-02 05:08:35 -0400 | [diff] [blame] | 3604 | if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED)) |
| 3605 | return; |
| 3606 | |
Boris Ostrovsky | a6bd811 | 2019-12-06 15:36:12 +0000 | [diff] [blame] | 3607 | if (vcpu->arch.st.preempted) |
Boris Ostrovsky | 8c6de56 | 2019-10-30 19:01:31 +0000 | [diff] [blame] | 3608 | return; |
Pan Xinhui | 0b9f6c4 | 2016-11-02 05:08:35 -0400 | [diff] [blame] | 3609 | |
Boris Ostrovsky | b043138 | 2019-12-05 03:45:32 +0000 | [diff] [blame] | 3610 | if (kvm_map_gfn(vcpu, vcpu->arch.st.msr_val >> PAGE_SHIFT, &map, |
| 3611 | &vcpu->arch.st.cache, true)) |
| 3612 | return; |
Pan Xinhui | 0b9f6c4 | 2016-11-02 05:08:35 -0400 | [diff] [blame] | 3613 | |
Boris Ostrovsky | b043138 | 2019-12-05 03:45:32 +0000 | [diff] [blame] | 3614 | st = map.hva + |
| 3615 | offset_in_page(vcpu->arch.st.msr_val & KVM_STEAL_VALID_BITS); |
| 3616 | |
Boris Ostrovsky | a6bd811 | 2019-12-06 15:36:12 +0000 | [diff] [blame] | 3617 | st->preempted = vcpu->arch.st.preempted = KVM_VCPU_PREEMPTED; |
Boris Ostrovsky | b043138 | 2019-12-05 03:45:32 +0000 | [diff] [blame] | 3618 | |
| 3619 | kvm_unmap_gfn(vcpu, &map, &vcpu->arch.st.cache, true, true); |
Pan Xinhui | 0b9f6c4 | 2016-11-02 05:08:35 -0400 | [diff] [blame] | 3620 | } |
| 3621 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3622 | void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu) |
| 3623 | { |
Andrea Arcangeli | cc0d907 | 2016-12-17 19:13:32 +0100 | [diff] [blame] | 3624 | int idx; |
Longpeng(Mike) | de63ad4 | 2017-08-08 12:05:33 +0800 | [diff] [blame] | 3625 | |
| 3626 | if (vcpu->preempted) |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 3627 | vcpu->arch.preempted_in_kernel = !kvm_x86_ops.get_cpl(vcpu); |
Longpeng(Mike) | de63ad4 | 2017-08-08 12:05:33 +0800 | [diff] [blame] | 3628 | |
Andrea Arcangeli | 931f261 | 2016-12-17 18:43:52 +0100 | [diff] [blame] | 3629 | /* |
| 3630 | * Disable page faults because we're in atomic context here. |
| 3631 | * kvm_write_guest_offset_cached() would call might_fault() |
| 3632 | * that relies on pagefault_disable() to tell if there's a |
| 3633 | * bug. NOTE: the write to guest memory may not go through if |
| 3634 | * during postcopy live migration or if there's heavy guest |
| 3635 | * paging. |
| 3636 | */ |
| 3637 | pagefault_disable(); |
Andrea Arcangeli | cc0d907 | 2016-12-17 19:13:32 +0100 | [diff] [blame] | 3638 | /* |
| 3639 | * kvm_memslots() will be called by |
| 3640 | * kvm_write_guest_offset_cached() so take the srcu lock. |
| 3641 | */ |
| 3642 | idx = srcu_read_lock(&vcpu->kvm->srcu); |
Pan Xinhui | 0b9f6c4 | 2016-11-02 05:08:35 -0400 | [diff] [blame] | 3643 | kvm_steal_time_set_preempted(vcpu); |
Andrea Arcangeli | cc0d907 | 2016-12-17 19:13:32 +0100 | [diff] [blame] | 3644 | srcu_read_unlock(&vcpu->kvm->srcu, idx); |
Andrea Arcangeli | 931f261 | 2016-12-17 18:43:52 +0100 | [diff] [blame] | 3645 | pagefault_enable(); |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 3646 | kvm_x86_ops.vcpu_put(vcpu); |
Andy Lutomirski | 4ea1636 | 2015-06-25 18:44:07 +0200 | [diff] [blame] | 3647 | vcpu->arch.last_host_tsc = rdtsc(); |
Wanpeng Li | efdab99 | 2017-12-13 10:46:40 +0100 | [diff] [blame] | 3648 | /* |
Radim Krčmář | f9dcf08 | 2018-10-23 16:31:38 +0200 | [diff] [blame] | 3649 | * If userspace has set any breakpoints or watchpoints, dr6 is restored |
| 3650 | * on every vmexit, but if not, we might have a stale dr6 from the |
| 3651 | * guest. do_debug expects dr6 to be cleared after it runs, do the same. |
Wanpeng Li | efdab99 | 2017-12-13 10:46:40 +0100 | [diff] [blame] | 3652 | */ |
Radim Krčmář | f9dcf08 | 2018-10-23 16:31:38 +0200 | [diff] [blame] | 3653 | set_debugreg(0, 6); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3654 | } |
| 3655 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3656 | static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu, |
| 3657 | struct kvm_lapic_state *s) |
| 3658 | { |
Liran Alon | fa59cc0 | 2017-12-24 18:12:53 +0200 | [diff] [blame] | 3659 | if (vcpu->arch.apicv_active) |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 3660 | kvm_x86_ops.sync_pir_to_irr(vcpu); |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 3661 | |
Radim Krčmář | a92e254 | 2016-07-12 22:09:22 +0200 | [diff] [blame] | 3662 | return kvm_apic_get_state(vcpu, s); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3663 | } |
| 3664 | |
| 3665 | static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu, |
| 3666 | struct kvm_lapic_state *s) |
| 3667 | { |
Radim Krčmář | a92e254 | 2016-07-12 22:09:22 +0200 | [diff] [blame] | 3668 | int r; |
| 3669 | |
| 3670 | r = kvm_apic_set_state(vcpu, s); |
| 3671 | if (r) |
| 3672 | return r; |
Gleb Natapov | cb142eb | 2009-08-09 15:17:40 +0300 | [diff] [blame] | 3673 | update_cr8_intercept(vcpu); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3674 | |
| 3675 | return 0; |
| 3676 | } |
| 3677 | |
Matt Gingell | 127a457 | 2015-11-17 17:32:05 +0100 | [diff] [blame] | 3678 | static int kvm_cpu_accept_dm_intr(struct kvm_vcpu *vcpu) |
| 3679 | { |
| 3680 | return (!lapic_in_kernel(vcpu) || |
| 3681 | kvm_apic_accept_pic_intr(vcpu)); |
| 3682 | } |
| 3683 | |
Matt Gingell | 782d422 | 2015-11-16 15:26:00 -0800 | [diff] [blame] | 3684 | /* |
| 3685 | * if userspace requested an interrupt window, check that the |
| 3686 | * interrupt window is open. |
| 3687 | * |
| 3688 | * No need to exit to userspace if we already have an interrupt queued. |
| 3689 | */ |
| 3690 | static int kvm_vcpu_ready_for_interrupt_injection(struct kvm_vcpu *vcpu) |
| 3691 | { |
| 3692 | return kvm_arch_interrupt_allowed(vcpu) && |
| 3693 | !kvm_cpu_has_interrupt(vcpu) && |
| 3694 | !kvm_event_needs_reinjection(vcpu) && |
| 3695 | kvm_cpu_accept_dm_intr(vcpu); |
| 3696 | } |
| 3697 | |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 3698 | static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, |
| 3699 | struct kvm_interrupt *irq) |
| 3700 | { |
Chen Gang | 02cdb50 | 2013-02-27 11:33:25 +0800 | [diff] [blame] | 3701 | if (irq->irq >= KVM_NR_INTERRUPTS) |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 3702 | return -EINVAL; |
Steve Rutherford | 1c1a9ce | 2015-07-30 11:27:16 +0200 | [diff] [blame] | 3703 | |
| 3704 | if (!irqchip_in_kernel(vcpu->kvm)) { |
| 3705 | kvm_queue_interrupt(vcpu, irq->irq, false); |
| 3706 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 3707 | return 0; |
| 3708 | } |
| 3709 | |
| 3710 | /* |
| 3711 | * With in-kernel LAPIC, we only use this to inject EXTINT, so |
| 3712 | * fail for in-kernel 8259. |
| 3713 | */ |
| 3714 | if (pic_in_kernel(vcpu->kvm)) |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 3715 | return -ENXIO; |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 3716 | |
Steve Rutherford | 1c1a9ce | 2015-07-30 11:27:16 +0200 | [diff] [blame] | 3717 | if (vcpu->arch.pending_external_vector != -1) |
| 3718 | return -EEXIST; |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 3719 | |
Steve Rutherford | 1c1a9ce | 2015-07-30 11:27:16 +0200 | [diff] [blame] | 3720 | vcpu->arch.pending_external_vector = irq->irq; |
Matt Gingell | 934bf65 | 2015-11-16 15:26:05 -0800 | [diff] [blame] | 3721 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 3722 | return 0; |
| 3723 | } |
| 3724 | |
Jan Kiszka | c4abb7c | 2008-09-26 09:30:55 +0200 | [diff] [blame] | 3725 | static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu) |
| 3726 | { |
Jan Kiszka | c4abb7c | 2008-09-26 09:30:55 +0200 | [diff] [blame] | 3727 | kvm_inject_nmi(vcpu); |
Jan Kiszka | c4abb7c | 2008-09-26 09:30:55 +0200 | [diff] [blame] | 3728 | |
| 3729 | return 0; |
| 3730 | } |
| 3731 | |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 3732 | static int kvm_vcpu_ioctl_smi(struct kvm_vcpu *vcpu) |
| 3733 | { |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 3734 | kvm_make_request(KVM_REQ_SMI, vcpu); |
| 3735 | |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 3736 | return 0; |
| 3737 | } |
| 3738 | |
Avi Kivity | b209749f | 2007-10-22 16:50:39 +0200 | [diff] [blame] | 3739 | static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu, |
| 3740 | struct kvm_tpr_access_ctl *tac) |
| 3741 | { |
| 3742 | if (tac->flags) |
| 3743 | return -EINVAL; |
| 3744 | vcpu->arch.tpr_access_reporting = !!tac->enabled; |
| 3745 | return 0; |
| 3746 | } |
| 3747 | |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 3748 | static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu, |
| 3749 | u64 mcg_cap) |
| 3750 | { |
| 3751 | int r; |
| 3752 | unsigned bank_num = mcg_cap & 0xff, bank; |
| 3753 | |
| 3754 | r = -EINVAL; |
Jan Kiszka | a9e38c3e | 2009-10-23 09:37:00 +0200 | [diff] [blame] | 3755 | if (!bank_num || bank_num >= KVM_MAX_MCE_BANKS) |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 3756 | goto out; |
Ashok Raj | c45dcc7 | 2016-06-22 14:59:56 +0800 | [diff] [blame] | 3757 | if (mcg_cap & ~(kvm_mce_cap_supported | 0xff | 0xff0000)) |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 3758 | goto out; |
| 3759 | r = 0; |
| 3760 | vcpu->arch.mcg_cap = mcg_cap; |
| 3761 | /* Init IA32_MCG_CTL to all 1s */ |
| 3762 | if (mcg_cap & MCG_CTL_P) |
| 3763 | vcpu->arch.mcg_ctl = ~(u64)0; |
| 3764 | /* Init IA32_MCi_CTL to all 1s */ |
| 3765 | for (bank = 0; bank < bank_num; bank++) |
| 3766 | vcpu->arch.mce_banks[bank*4] = ~(u64)0; |
Ashok Raj | c45dcc7 | 2016-06-22 14:59:56 +0800 | [diff] [blame] | 3767 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 3768 | kvm_x86_ops.setup_mce(vcpu); |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 3769 | out: |
| 3770 | return r; |
| 3771 | } |
| 3772 | |
| 3773 | static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu, |
| 3774 | struct kvm_x86_mce *mce) |
| 3775 | { |
| 3776 | u64 mcg_cap = vcpu->arch.mcg_cap; |
| 3777 | unsigned bank_num = mcg_cap & 0xff; |
| 3778 | u64 *banks = vcpu->arch.mce_banks; |
| 3779 | |
| 3780 | if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL)) |
| 3781 | return -EINVAL; |
| 3782 | /* |
| 3783 | * if IA32_MCG_CTL is not all 1s, the uncorrected error |
| 3784 | * reporting is disabled |
| 3785 | */ |
| 3786 | if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) && |
| 3787 | vcpu->arch.mcg_ctl != ~(u64)0) |
| 3788 | return 0; |
| 3789 | banks += 4 * mce->bank; |
| 3790 | /* |
| 3791 | * if IA32_MCi_CTL is not all 1s, the uncorrected error |
| 3792 | * reporting is disabled for the bank |
| 3793 | */ |
| 3794 | if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0) |
| 3795 | return 0; |
| 3796 | if (mce->status & MCI_STATUS_UC) { |
| 3797 | if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) || |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 3798 | !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) { |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 3799 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 3800 | return 0; |
| 3801 | } |
| 3802 | if (banks[1] & MCI_STATUS_VAL) |
| 3803 | mce->status |= MCI_STATUS_OVER; |
| 3804 | banks[2] = mce->addr; |
| 3805 | banks[3] = mce->misc; |
| 3806 | vcpu->arch.mcg_status = mce->mcg_status; |
| 3807 | banks[1] = mce->status; |
| 3808 | kvm_queue_exception(vcpu, MC_VECTOR); |
| 3809 | } else if (!(banks[1] & MCI_STATUS_VAL) |
| 3810 | || !(banks[1] & MCI_STATUS_UC)) { |
| 3811 | if (banks[1] & MCI_STATUS_VAL) |
| 3812 | mce->status |= MCI_STATUS_OVER; |
| 3813 | banks[2] = mce->addr; |
| 3814 | banks[3] = mce->misc; |
| 3815 | banks[1] = mce->status; |
| 3816 | } else |
| 3817 | banks[1] |= MCI_STATUS_OVER; |
| 3818 | return 0; |
| 3819 | } |
| 3820 | |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3821 | static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu, |
| 3822 | struct kvm_vcpu_events *events) |
| 3823 | { |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 3824 | process_nmi(vcpu); |
Jim Mattson | 59073aa | 2018-10-16 14:29:20 -0700 | [diff] [blame] | 3825 | |
Wanpeng Li | 664f8e2 | 2017-08-24 03:35:09 -0700 | [diff] [blame] | 3826 | /* |
Oliver Upton | a06230b | 2020-02-07 02:36:06 -0800 | [diff] [blame] | 3827 | * In guest mode, payload delivery should be deferred, |
| 3828 | * so that the L1 hypervisor can intercept #PF before |
| 3829 | * CR2 is modified (or intercept #DB before DR6 is |
| 3830 | * modified under nVMX). Unless the per-VM capability, |
| 3831 | * KVM_CAP_EXCEPTION_PAYLOAD, is set, we may not defer the delivery of |
| 3832 | * an exception payload and handle after a KVM_GET_VCPU_EVENTS. Since we |
| 3833 | * opportunistically defer the exception payload, deliver it if the |
| 3834 | * capability hasn't been requested before processing a |
| 3835 | * KVM_GET_VCPU_EVENTS. |
| 3836 | */ |
| 3837 | if (!vcpu->kvm->arch.exception_payload_enabled && |
| 3838 | vcpu->arch.exception.pending && vcpu->arch.exception.has_payload) |
| 3839 | kvm_deliver_exception_payload(vcpu); |
| 3840 | |
| 3841 | /* |
Jim Mattson | 59073aa | 2018-10-16 14:29:20 -0700 | [diff] [blame] | 3842 | * The API doesn't provide the instruction length for software |
| 3843 | * exceptions, so don't report them. As long as the guest RIP |
| 3844 | * isn't advanced, we should expect to encounter the exception |
| 3845 | * again. |
Wanpeng Li | 664f8e2 | 2017-08-24 03:35:09 -0700 | [diff] [blame] | 3846 | */ |
Jim Mattson | 59073aa | 2018-10-16 14:29:20 -0700 | [diff] [blame] | 3847 | if (kvm_exception_is_soft(vcpu->arch.exception.nr)) { |
| 3848 | events->exception.injected = 0; |
| 3849 | events->exception.pending = 0; |
| 3850 | } else { |
| 3851 | events->exception.injected = vcpu->arch.exception.injected; |
| 3852 | events->exception.pending = vcpu->arch.exception.pending; |
| 3853 | /* |
| 3854 | * For ABI compatibility, deliberately conflate |
| 3855 | * pending and injected exceptions when |
| 3856 | * KVM_CAP_EXCEPTION_PAYLOAD isn't enabled. |
| 3857 | */ |
| 3858 | if (!vcpu->kvm->arch.exception_payload_enabled) |
| 3859 | events->exception.injected |= |
| 3860 | vcpu->arch.exception.pending; |
| 3861 | } |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3862 | events->exception.nr = vcpu->arch.exception.nr; |
| 3863 | events->exception.has_error_code = vcpu->arch.exception.has_error_code; |
| 3864 | events->exception.error_code = vcpu->arch.exception.error_code; |
Jim Mattson | 59073aa | 2018-10-16 14:29:20 -0700 | [diff] [blame] | 3865 | events->exception_has_payload = vcpu->arch.exception.has_payload; |
| 3866 | events->exception_payload = vcpu->arch.exception.payload; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3867 | |
Jan Kiszka | 03b82a3 | 2010-02-15 10:45:41 +0100 | [diff] [blame] | 3868 | events->interrupt.injected = |
Liran Alon | 04140b4 | 2018-03-23 03:01:31 +0300 | [diff] [blame] | 3869 | vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3870 | events->interrupt.nr = vcpu->arch.interrupt.nr; |
Jan Kiszka | 03b82a3 | 2010-02-15 10:45:41 +0100 | [diff] [blame] | 3871 | events->interrupt.soft = 0; |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 3872 | events->interrupt.shadow = kvm_x86_ops.get_interrupt_shadow(vcpu); |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3873 | |
| 3874 | events->nmi.injected = vcpu->arch.nmi_injected; |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 3875 | events->nmi.pending = vcpu->arch.nmi_pending != 0; |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 3876 | events->nmi.masked = kvm_x86_ops.get_nmi_mask(vcpu); |
Vasiliy Kulikov | 97e69aa | 2010-10-30 22:54:47 +0400 | [diff] [blame] | 3877 | events->nmi.pad = 0; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3878 | |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 3879 | events->sipi_vector = 0; /* never valid when reporting to user space */ |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3880 | |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 3881 | events->smi.smm = is_smm(vcpu); |
| 3882 | events->smi.pending = vcpu->arch.smi_pending; |
| 3883 | events->smi.smm_inside_nmi = |
| 3884 | !!(vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK); |
| 3885 | events->smi.latched_init = kvm_lapic_latched_init(vcpu); |
| 3886 | |
Jan Kiszka | dab4b91 | 2009-12-06 18:24:15 +0100 | [diff] [blame] | 3887 | events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 3888 | | KVM_VCPUEVENT_VALID_SHADOW |
| 3889 | | KVM_VCPUEVENT_VALID_SMM); |
Jim Mattson | 59073aa | 2018-10-16 14:29:20 -0700 | [diff] [blame] | 3890 | if (vcpu->kvm->arch.exception_payload_enabled) |
| 3891 | events->flags |= KVM_VCPUEVENT_VALID_PAYLOAD; |
| 3892 | |
Vasiliy Kulikov | 97e69aa | 2010-10-30 22:54:47 +0400 | [diff] [blame] | 3893 | memset(&events->reserved, 0, sizeof(events->reserved)); |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3894 | } |
| 3895 | |
Sean Christopherson | c5833c7 | 2019-04-02 08:03:10 -0700 | [diff] [blame] | 3896 | static void kvm_smm_changed(struct kvm_vcpu *vcpu); |
Xiao Guangrong | 6ef4e07 | 2016-12-24 10:00:42 +0100 | [diff] [blame] | 3897 | |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3898 | static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu, |
| 3899 | struct kvm_vcpu_events *events) |
| 3900 | { |
Jan Kiszka | dab4b91 | 2009-12-06 18:24:15 +0100 | [diff] [blame] | 3901 | if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 3902 | | KVM_VCPUEVENT_VALID_SIPI_VECTOR |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 3903 | | KVM_VCPUEVENT_VALID_SHADOW |
Jim Mattson | 59073aa | 2018-10-16 14:29:20 -0700 | [diff] [blame] | 3904 | | KVM_VCPUEVENT_VALID_SMM |
| 3905 | | KVM_VCPUEVENT_VALID_PAYLOAD)) |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3906 | return -EINVAL; |
| 3907 | |
Jim Mattson | 59073aa | 2018-10-16 14:29:20 -0700 | [diff] [blame] | 3908 | if (events->flags & KVM_VCPUEVENT_VALID_PAYLOAD) { |
| 3909 | if (!vcpu->kvm->arch.exception_payload_enabled) |
| 3910 | return -EINVAL; |
| 3911 | if (events->exception.pending) |
| 3912 | events->exception.injected = 0; |
| 3913 | else |
| 3914 | events->exception_has_payload = 0; |
| 3915 | } else { |
| 3916 | events->exception.pending = 0; |
| 3917 | events->exception_has_payload = 0; |
| 3918 | } |
| 3919 | |
| 3920 | if ((events->exception.injected || events->exception.pending) && |
| 3921 | (events->exception.nr > 31 || events->exception.nr == NMI_VECTOR)) |
Paolo Bonzini | 78e546c | 2016-06-01 14:09:20 +0200 | [diff] [blame] | 3922 | return -EINVAL; |
| 3923 | |
David Hildenbrand | 28bf288 | 2017-03-23 11:46:03 +0100 | [diff] [blame] | 3924 | /* INITs are latched while in SMM */ |
| 3925 | if (events->flags & KVM_VCPUEVENT_VALID_SMM && |
| 3926 | (events->smi.smm || events->smi.pending) && |
| 3927 | vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) |
| 3928 | return -EINVAL; |
| 3929 | |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 3930 | process_nmi(vcpu); |
Jim Mattson | 59073aa | 2018-10-16 14:29:20 -0700 | [diff] [blame] | 3931 | vcpu->arch.exception.injected = events->exception.injected; |
| 3932 | vcpu->arch.exception.pending = events->exception.pending; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3933 | vcpu->arch.exception.nr = events->exception.nr; |
| 3934 | vcpu->arch.exception.has_error_code = events->exception.has_error_code; |
| 3935 | vcpu->arch.exception.error_code = events->exception.error_code; |
Jim Mattson | 59073aa | 2018-10-16 14:29:20 -0700 | [diff] [blame] | 3936 | vcpu->arch.exception.has_payload = events->exception_has_payload; |
| 3937 | vcpu->arch.exception.payload = events->exception_payload; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3938 | |
Liran Alon | 04140b4 | 2018-03-23 03:01:31 +0300 | [diff] [blame] | 3939 | vcpu->arch.interrupt.injected = events->interrupt.injected; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3940 | vcpu->arch.interrupt.nr = events->interrupt.nr; |
| 3941 | vcpu->arch.interrupt.soft = events->interrupt.soft; |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 3942 | if (events->flags & KVM_VCPUEVENT_VALID_SHADOW) |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 3943 | kvm_x86_ops.set_interrupt_shadow(vcpu, |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 3944 | events->interrupt.shadow); |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3945 | |
| 3946 | vcpu->arch.nmi_injected = events->nmi.injected; |
Jan Kiszka | dab4b91 | 2009-12-06 18:24:15 +0100 | [diff] [blame] | 3947 | if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING) |
| 3948 | vcpu->arch.nmi_pending = events->nmi.pending; |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 3949 | kvm_x86_ops.set_nmi_mask(vcpu, events->nmi.masked); |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3950 | |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 3951 | if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR && |
Paolo Bonzini | bce87cc | 2016-01-08 13:48:51 +0100 | [diff] [blame] | 3952 | lapic_in_kernel(vcpu)) |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 3953 | vcpu->arch.apic->sipi_vector = events->sipi_vector; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3954 | |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 3955 | if (events->flags & KVM_VCPUEVENT_VALID_SMM) { |
Sean Christopherson | c5833c7 | 2019-04-02 08:03:10 -0700 | [diff] [blame] | 3956 | if (!!(vcpu->arch.hflags & HF_SMM_MASK) != events->smi.smm) { |
| 3957 | if (events->smi.smm) |
| 3958 | vcpu->arch.hflags |= HF_SMM_MASK; |
| 3959 | else |
| 3960 | vcpu->arch.hflags &= ~HF_SMM_MASK; |
| 3961 | kvm_smm_changed(vcpu); |
| 3962 | } |
Xiao Guangrong | 6ef4e07 | 2016-12-24 10:00:42 +0100 | [diff] [blame] | 3963 | |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 3964 | vcpu->arch.smi_pending = events->smi.pending; |
Wanpeng Li | f4ef191 | 2017-08-01 16:05:25 -0700 | [diff] [blame] | 3965 | |
| 3966 | if (events->smi.smm) { |
| 3967 | if (events->smi.smm_inside_nmi) |
| 3968 | vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK; |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 3969 | else |
Wanpeng Li | f4ef191 | 2017-08-01 16:05:25 -0700 | [diff] [blame] | 3970 | vcpu->arch.hflags &= ~HF_SMM_INSIDE_NMI_MASK; |
Liran Alon | ff90afa | 2019-11-11 11:16:39 +0200 | [diff] [blame] | 3971 | } |
| 3972 | |
| 3973 | if (lapic_in_kernel(vcpu)) { |
| 3974 | if (events->smi.latched_init) |
| 3975 | set_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events); |
| 3976 | else |
| 3977 | clear_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events); |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 3978 | } |
| 3979 | } |
| 3980 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 3981 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 3982 | |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3983 | return 0; |
| 3984 | } |
| 3985 | |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3986 | static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu, |
| 3987 | struct kvm_debugregs *dbgregs) |
| 3988 | { |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 3989 | unsigned long val; |
| 3990 | |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3991 | memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db)); |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 3992 | kvm_get_dr(vcpu, 6, &val); |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 3993 | dbgregs->dr6 = val; |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3994 | dbgregs->dr7 = vcpu->arch.dr7; |
| 3995 | dbgregs->flags = 0; |
Vasiliy Kulikov | 97e69aa | 2010-10-30 22:54:47 +0400 | [diff] [blame] | 3996 | memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved)); |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3997 | } |
| 3998 | |
| 3999 | static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu, |
| 4000 | struct kvm_debugregs *dbgregs) |
| 4001 | { |
| 4002 | if (dbgregs->flags) |
| 4003 | return -EINVAL; |
| 4004 | |
Paolo Bonzini | d14bdb5 | 2016-06-01 14:09:23 +0200 | [diff] [blame] | 4005 | if (dbgregs->dr6 & ~0xffffffffull) |
| 4006 | return -EINVAL; |
| 4007 | if (dbgregs->dr7 & ~0xffffffffull) |
| 4008 | return -EINVAL; |
| 4009 | |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 4010 | memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db)); |
Nadav Amit | ae561ed | 2015-04-02 03:10:37 +0300 | [diff] [blame] | 4011 | kvm_update_dr0123(vcpu); |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 4012 | vcpu->arch.dr6 = dbgregs->dr6; |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 4013 | kvm_update_dr6(vcpu); |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 4014 | vcpu->arch.dr7 = dbgregs->dr7; |
Jan Kiszka | 9926c9f | 2014-01-04 18:47:15 +0100 | [diff] [blame] | 4015 | kvm_update_dr7(vcpu); |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 4016 | |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 4017 | return 0; |
| 4018 | } |
| 4019 | |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 4020 | #define XSTATE_COMPACTION_ENABLED (1ULL << 63) |
| 4021 | |
| 4022 | static void fill_xsave(u8 *dest, struct kvm_vcpu *vcpu) |
| 4023 | { |
Marc Orr | b666a4b | 2018-11-06 14:53:56 -0800 | [diff] [blame] | 4024 | struct xregs_state *xsave = &vcpu->arch.guest_fpu->state.xsave; |
Ingo Molnar | 400e4b2 | 2015-04-24 10:19:47 +0200 | [diff] [blame] | 4025 | u64 xstate_bv = xsave->header.xfeatures; |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 4026 | u64 valid; |
| 4027 | |
| 4028 | /* |
| 4029 | * Copy legacy XSAVE area, to avoid complications with CPUID |
| 4030 | * leaves 0 and 1 in the loop below. |
| 4031 | */ |
| 4032 | memcpy(dest, xsave, XSAVE_HDR_OFFSET); |
| 4033 | |
| 4034 | /* Set XSTATE_BV */ |
Radim Krčmář | 00c87e9 | 2017-02-01 14:19:53 +0100 | [diff] [blame] | 4035 | xstate_bv &= vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FPSSE; |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 4036 | *(u64 *)(dest + XSAVE_HDR_OFFSET) = xstate_bv; |
| 4037 | |
| 4038 | /* |
| 4039 | * Copy each region from the possibly compacted offset to the |
| 4040 | * non-compacted offset. |
| 4041 | */ |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 4042 | valid = xstate_bv & ~XFEATURE_MASK_FPSSE; |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 4043 | while (valid) { |
Sebastian Andrzej Siewior | abd16d6 | 2019-04-03 18:41:40 +0200 | [diff] [blame] | 4044 | u64 xfeature_mask = valid & -valid; |
| 4045 | int xfeature_nr = fls64(xfeature_mask) - 1; |
| 4046 | void *src = get_xsave_addr(xsave, xfeature_nr); |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 4047 | |
| 4048 | if (src) { |
| 4049 | u32 size, offset, ecx, edx; |
Sebastian Andrzej Siewior | abd16d6 | 2019-04-03 18:41:40 +0200 | [diff] [blame] | 4050 | cpuid_count(XSTATE_CPUID, xfeature_nr, |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 4051 | &size, &offset, &ecx, &edx); |
Sebastian Andrzej Siewior | abd16d6 | 2019-04-03 18:41:40 +0200 | [diff] [blame] | 4052 | if (xfeature_nr == XFEATURE_PKRU) |
Paolo Bonzini | 38cfd5e | 2017-08-23 23:16:29 +0200 | [diff] [blame] | 4053 | memcpy(dest + offset, &vcpu->arch.pkru, |
| 4054 | sizeof(vcpu->arch.pkru)); |
| 4055 | else |
| 4056 | memcpy(dest + offset, src, size); |
| 4057 | |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 4058 | } |
| 4059 | |
Sebastian Andrzej Siewior | abd16d6 | 2019-04-03 18:41:40 +0200 | [diff] [blame] | 4060 | valid -= xfeature_mask; |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 4061 | } |
| 4062 | } |
| 4063 | |
| 4064 | static void load_xsave(struct kvm_vcpu *vcpu, u8 *src) |
| 4065 | { |
Marc Orr | b666a4b | 2018-11-06 14:53:56 -0800 | [diff] [blame] | 4066 | struct xregs_state *xsave = &vcpu->arch.guest_fpu->state.xsave; |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 4067 | u64 xstate_bv = *(u64 *)(src + XSAVE_HDR_OFFSET); |
| 4068 | u64 valid; |
| 4069 | |
| 4070 | /* |
| 4071 | * Copy legacy XSAVE area, to avoid complications with CPUID |
| 4072 | * leaves 0 and 1 in the loop below. |
| 4073 | */ |
| 4074 | memcpy(xsave, src, XSAVE_HDR_OFFSET); |
| 4075 | |
| 4076 | /* Set XSTATE_BV and possibly XCOMP_BV. */ |
Ingo Molnar | 400e4b2 | 2015-04-24 10:19:47 +0200 | [diff] [blame] | 4077 | xsave->header.xfeatures = xstate_bv; |
Borislav Petkov | 782511b | 2016-04-04 22:25:03 +0200 | [diff] [blame] | 4078 | if (boot_cpu_has(X86_FEATURE_XSAVES)) |
Ingo Molnar | 3a54450 | 2015-04-24 10:14:36 +0200 | [diff] [blame] | 4079 | xsave->header.xcomp_bv = host_xcr0 | XSTATE_COMPACTION_ENABLED; |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 4080 | |
| 4081 | /* |
| 4082 | * Copy each region from the non-compacted offset to the |
| 4083 | * possibly compacted offset. |
| 4084 | */ |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 4085 | valid = xstate_bv & ~XFEATURE_MASK_FPSSE; |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 4086 | while (valid) { |
Sebastian Andrzej Siewior | abd16d6 | 2019-04-03 18:41:40 +0200 | [diff] [blame] | 4087 | u64 xfeature_mask = valid & -valid; |
| 4088 | int xfeature_nr = fls64(xfeature_mask) - 1; |
| 4089 | void *dest = get_xsave_addr(xsave, xfeature_nr); |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 4090 | |
| 4091 | if (dest) { |
| 4092 | u32 size, offset, ecx, edx; |
Sebastian Andrzej Siewior | abd16d6 | 2019-04-03 18:41:40 +0200 | [diff] [blame] | 4093 | cpuid_count(XSTATE_CPUID, xfeature_nr, |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 4094 | &size, &offset, &ecx, &edx); |
Sebastian Andrzej Siewior | abd16d6 | 2019-04-03 18:41:40 +0200 | [diff] [blame] | 4095 | if (xfeature_nr == XFEATURE_PKRU) |
Paolo Bonzini | 38cfd5e | 2017-08-23 23:16:29 +0200 | [diff] [blame] | 4096 | memcpy(&vcpu->arch.pkru, src + offset, |
| 4097 | sizeof(vcpu->arch.pkru)); |
| 4098 | else |
| 4099 | memcpy(dest, src + offset, size); |
Wanpeng Li | ee4100d | 2015-07-09 15:44:52 +0800 | [diff] [blame] | 4100 | } |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 4101 | |
Sebastian Andrzej Siewior | abd16d6 | 2019-04-03 18:41:40 +0200 | [diff] [blame] | 4102 | valid -= xfeature_mask; |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 4103 | } |
| 4104 | } |
| 4105 | |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4106 | static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu, |
| 4107 | struct kvm_xsave *guest_xsave) |
| 4108 | { |
Borislav Petkov | d366bf7 | 2016-04-04 22:25:02 +0200 | [diff] [blame] | 4109 | if (boot_cpu_has(X86_FEATURE_XSAVE)) { |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 4110 | memset(guest_xsave, 0, sizeof(struct kvm_xsave)); |
| 4111 | fill_xsave((u8 *) guest_xsave->region, vcpu); |
Paolo Bonzini | 4344ee9 | 2013-10-02 16:06:16 +0200 | [diff] [blame] | 4112 | } else { |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4113 | memcpy(guest_xsave->region, |
Marc Orr | b666a4b | 2018-11-06 14:53:56 -0800 | [diff] [blame] | 4114 | &vcpu->arch.guest_fpu->state.fxsave, |
Ingo Molnar | c47ada3 | 2015-04-30 17:15:32 +0200 | [diff] [blame] | 4115 | sizeof(struct fxregs_state)); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4116 | *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)] = |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 4117 | XFEATURE_MASK_FPSSE; |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4118 | } |
| 4119 | } |
| 4120 | |
Wanpeng Li | a575813 | 2017-05-11 02:58:55 -0700 | [diff] [blame] | 4121 | #define XSAVE_MXCSR_OFFSET 24 |
| 4122 | |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4123 | static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu, |
| 4124 | struct kvm_xsave *guest_xsave) |
| 4125 | { |
| 4126 | u64 xstate_bv = |
| 4127 | *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)]; |
Wanpeng Li | a575813 | 2017-05-11 02:58:55 -0700 | [diff] [blame] | 4128 | u32 mxcsr = *(u32 *)&guest_xsave->region[XSAVE_MXCSR_OFFSET / sizeof(u32)]; |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4129 | |
Borislav Petkov | d366bf7 | 2016-04-04 22:25:02 +0200 | [diff] [blame] | 4130 | if (boot_cpu_has(X86_FEATURE_XSAVE)) { |
Paolo Bonzini | d7876f1 | 2013-10-02 16:06:15 +0200 | [diff] [blame] | 4131 | /* |
| 4132 | * Here we allow setting states that are not present in |
| 4133 | * CPUID leaf 0xD, index 0, EDX:EAX. This is for compatibility |
| 4134 | * with old userspace. |
| 4135 | */ |
Sean Christopherson | cfc4818 | 2020-03-02 15:56:23 -0800 | [diff] [blame] | 4136 | if (xstate_bv & ~supported_xcr0 || mxcsr & ~mxcsr_feature_mask) |
Paolo Bonzini | d7876f1 | 2013-10-02 16:06:15 +0200 | [diff] [blame] | 4137 | return -EINVAL; |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 4138 | load_xsave(vcpu, (u8 *)guest_xsave->region); |
Paolo Bonzini | d7876f1 | 2013-10-02 16:06:15 +0200 | [diff] [blame] | 4139 | } else { |
Wanpeng Li | a575813 | 2017-05-11 02:58:55 -0700 | [diff] [blame] | 4140 | if (xstate_bv & ~XFEATURE_MASK_FPSSE || |
| 4141 | mxcsr & ~mxcsr_feature_mask) |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4142 | return -EINVAL; |
Marc Orr | b666a4b | 2018-11-06 14:53:56 -0800 | [diff] [blame] | 4143 | memcpy(&vcpu->arch.guest_fpu->state.fxsave, |
Ingo Molnar | c47ada3 | 2015-04-30 17:15:32 +0200 | [diff] [blame] | 4144 | guest_xsave->region, sizeof(struct fxregs_state)); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4145 | } |
| 4146 | return 0; |
| 4147 | } |
| 4148 | |
| 4149 | static void kvm_vcpu_ioctl_x86_get_xcrs(struct kvm_vcpu *vcpu, |
| 4150 | struct kvm_xcrs *guest_xcrs) |
| 4151 | { |
Borislav Petkov | d366bf7 | 2016-04-04 22:25:02 +0200 | [diff] [blame] | 4152 | if (!boot_cpu_has(X86_FEATURE_XSAVE)) { |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4153 | guest_xcrs->nr_xcrs = 0; |
| 4154 | return; |
| 4155 | } |
| 4156 | |
| 4157 | guest_xcrs->nr_xcrs = 1; |
| 4158 | guest_xcrs->flags = 0; |
| 4159 | guest_xcrs->xcrs[0].xcr = XCR_XFEATURE_ENABLED_MASK; |
| 4160 | guest_xcrs->xcrs[0].value = vcpu->arch.xcr0; |
| 4161 | } |
| 4162 | |
| 4163 | static int kvm_vcpu_ioctl_x86_set_xcrs(struct kvm_vcpu *vcpu, |
| 4164 | struct kvm_xcrs *guest_xcrs) |
| 4165 | { |
| 4166 | int i, r = 0; |
| 4167 | |
Borislav Petkov | d366bf7 | 2016-04-04 22:25:02 +0200 | [diff] [blame] | 4168 | if (!boot_cpu_has(X86_FEATURE_XSAVE)) |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4169 | return -EINVAL; |
| 4170 | |
| 4171 | if (guest_xcrs->nr_xcrs > KVM_MAX_XCRS || guest_xcrs->flags) |
| 4172 | return -EINVAL; |
| 4173 | |
| 4174 | for (i = 0; i < guest_xcrs->nr_xcrs; i++) |
| 4175 | /* Only support XCR0 currently */ |
Paolo Bonzini | c67a04c | 2013-10-17 16:50:47 +0200 | [diff] [blame] | 4176 | if (guest_xcrs->xcrs[i].xcr == XCR_XFEATURE_ENABLED_MASK) { |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4177 | r = __kvm_set_xcr(vcpu, XCR_XFEATURE_ENABLED_MASK, |
Paolo Bonzini | c67a04c | 2013-10-17 16:50:47 +0200 | [diff] [blame] | 4178 | guest_xcrs->xcrs[i].value); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4179 | break; |
| 4180 | } |
| 4181 | if (r) |
| 4182 | r = -EINVAL; |
| 4183 | return r; |
| 4184 | } |
| 4185 | |
Eric B Munson | 1c0b28c | 2012-03-10 14:37:27 -0500 | [diff] [blame] | 4186 | /* |
| 4187 | * kvm_set_guest_paused() indicates to the guest kernel that it has been |
| 4188 | * stopped by the hypervisor. This function will be called from the host only. |
| 4189 | * EINVAL is returned when the host attempts to set the flag for a guest that |
| 4190 | * does not support pv clocks. |
| 4191 | */ |
| 4192 | static int kvm_set_guest_paused(struct kvm_vcpu *vcpu) |
| 4193 | { |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 4194 | if (!vcpu->arch.pv_time_enabled) |
Eric B Munson | 1c0b28c | 2012-03-10 14:37:27 -0500 | [diff] [blame] | 4195 | return -EINVAL; |
Marcelo Tosatti | 51d59c6 | 2012-08-03 15:57:49 -0300 | [diff] [blame] | 4196 | vcpu->arch.pvclock_set_guest_stopped_request = true; |
Eric B Munson | 1c0b28c | 2012-03-10 14:37:27 -0500 | [diff] [blame] | 4197 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu); |
| 4198 | return 0; |
| 4199 | } |
| 4200 | |
Andrey Smetanin | 5c919412 | 2015-11-10 15:36:34 +0300 | [diff] [blame] | 4201 | static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu, |
| 4202 | struct kvm_enable_cap *cap) |
| 4203 | { |
Vitaly Kuznetsov | 57b119d | 2018-10-16 18:50:01 +0200 | [diff] [blame] | 4204 | int r; |
| 4205 | uint16_t vmcs_version; |
| 4206 | void __user *user_ptr; |
| 4207 | |
Andrey Smetanin | 5c919412 | 2015-11-10 15:36:34 +0300 | [diff] [blame] | 4208 | if (cap->flags) |
| 4209 | return -EINVAL; |
| 4210 | |
| 4211 | switch (cap->cap) { |
Roman Kagan | efc479e | 2017-06-22 16:51:01 +0300 | [diff] [blame] | 4212 | case KVM_CAP_HYPERV_SYNIC2: |
| 4213 | if (cap->args[0]) |
| 4214 | return -EINVAL; |
Gustavo A. R. Silva | b2869f2 | 2019-01-25 12:23:17 -0600 | [diff] [blame] | 4215 | /* fall through */ |
| 4216 | |
Andrey Smetanin | 5c919412 | 2015-11-10 15:36:34 +0300 | [diff] [blame] | 4217 | case KVM_CAP_HYPERV_SYNIC: |
Wanpeng Li | 546d87e | 2017-01-03 18:56:19 -0800 | [diff] [blame] | 4218 | if (!irqchip_in_kernel(vcpu->kvm)) |
| 4219 | return -EINVAL; |
Roman Kagan | efc479e | 2017-06-22 16:51:01 +0300 | [diff] [blame] | 4220 | return kvm_hv_activate_synic(vcpu, cap->cap == |
| 4221 | KVM_CAP_HYPERV_SYNIC2); |
Vitaly Kuznetsov | 57b119d | 2018-10-16 18:50:01 +0200 | [diff] [blame] | 4222 | case KVM_CAP_HYPERV_ENLIGHTENED_VMCS: |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 4223 | if (!kvm_x86_ops.nested_enable_evmcs) |
Sean Christopherson | 5158917 | 2018-12-03 13:53:10 -0800 | [diff] [blame] | 4224 | return -ENOTTY; |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 4225 | r = kvm_x86_ops.nested_enable_evmcs(vcpu, &vmcs_version); |
Vitaly Kuznetsov | 57b119d | 2018-10-16 18:50:01 +0200 | [diff] [blame] | 4226 | if (!r) { |
| 4227 | user_ptr = (void __user *)(uintptr_t)cap->args[0]; |
| 4228 | if (copy_to_user(user_ptr, &vmcs_version, |
| 4229 | sizeof(vmcs_version))) |
| 4230 | r = -EFAULT; |
| 4231 | } |
| 4232 | return r; |
Tianyu Lan | 344c6c8 | 2019-08-22 22:30:20 +0800 | [diff] [blame] | 4233 | case KVM_CAP_HYPERV_DIRECT_TLBFLUSH: |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 4234 | if (!kvm_x86_ops.enable_direct_tlbflush) |
Tianyu Lan | 344c6c8 | 2019-08-22 22:30:20 +0800 | [diff] [blame] | 4235 | return -ENOTTY; |
| 4236 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 4237 | return kvm_x86_ops.enable_direct_tlbflush(vcpu); |
Vitaly Kuznetsov | 57b119d | 2018-10-16 18:50:01 +0200 | [diff] [blame] | 4238 | |
Andrey Smetanin | 5c919412 | 2015-11-10 15:36:34 +0300 | [diff] [blame] | 4239 | default: |
| 4240 | return -EINVAL; |
| 4241 | } |
| 4242 | } |
| 4243 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 4244 | long kvm_arch_vcpu_ioctl(struct file *filp, |
| 4245 | unsigned int ioctl, unsigned long arg) |
| 4246 | { |
| 4247 | struct kvm_vcpu *vcpu = filp->private_data; |
| 4248 | void __user *argp = (void __user *)arg; |
| 4249 | int r; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 4250 | union { |
| 4251 | struct kvm_lapic_state *lapic; |
| 4252 | struct kvm_xsave *xsave; |
| 4253 | struct kvm_xcrs *xcrs; |
| 4254 | void *buffer; |
| 4255 | } u; |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 4256 | |
Christoffer Dall | 9b062471 | 2017-12-04 21:35:36 +0100 | [diff] [blame] | 4257 | vcpu_load(vcpu); |
| 4258 | |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 4259 | u.buffer = NULL; |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 4260 | switch (ioctl) { |
| 4261 | case KVM_GET_LAPIC: { |
Marcelo Tosatti | 2204ae3 | 2009-10-29 13:44:16 -0200 | [diff] [blame] | 4262 | r = -EINVAL; |
Paolo Bonzini | bce87cc | 2016-01-08 13:48:51 +0100 | [diff] [blame] | 4263 | if (!lapic_in_kernel(vcpu)) |
Marcelo Tosatti | 2204ae3 | 2009-10-29 13:44:16 -0200 | [diff] [blame] | 4264 | goto out; |
Ben Gardon | 254272c | 2019-02-11 11:02:50 -0800 | [diff] [blame] | 4265 | u.lapic = kzalloc(sizeof(struct kvm_lapic_state), |
| 4266 | GFP_KERNEL_ACCOUNT); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 4267 | |
Dave Hansen | b772ff3 | 2008-08-11 10:01:47 -0700 | [diff] [blame] | 4268 | r = -ENOMEM; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 4269 | if (!u.lapic) |
Dave Hansen | b772ff3 | 2008-08-11 10:01:47 -0700 | [diff] [blame] | 4270 | goto out; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 4271 | r = kvm_vcpu_ioctl_get_lapic(vcpu, u.lapic); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 4272 | if (r) |
| 4273 | goto out; |
| 4274 | r = -EFAULT; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 4275 | if (copy_to_user(argp, u.lapic, sizeof(struct kvm_lapic_state))) |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 4276 | goto out; |
| 4277 | r = 0; |
| 4278 | break; |
| 4279 | } |
| 4280 | case KVM_SET_LAPIC: { |
Marcelo Tosatti | 2204ae3 | 2009-10-29 13:44:16 -0200 | [diff] [blame] | 4281 | r = -EINVAL; |
Paolo Bonzini | bce87cc | 2016-01-08 13:48:51 +0100 | [diff] [blame] | 4282 | if (!lapic_in_kernel(vcpu)) |
Marcelo Tosatti | 2204ae3 | 2009-10-29 13:44:16 -0200 | [diff] [blame] | 4283 | goto out; |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 4284 | u.lapic = memdup_user(argp, sizeof(*u.lapic)); |
Christoffer Dall | 9b062471 | 2017-12-04 21:35:36 +0100 | [diff] [blame] | 4285 | if (IS_ERR(u.lapic)) { |
| 4286 | r = PTR_ERR(u.lapic); |
| 4287 | goto out_nofree; |
| 4288 | } |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 4289 | |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 4290 | r = kvm_vcpu_ioctl_set_lapic(vcpu, u.lapic); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 4291 | break; |
| 4292 | } |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 4293 | case KVM_INTERRUPT: { |
| 4294 | struct kvm_interrupt irq; |
| 4295 | |
| 4296 | r = -EFAULT; |
Jordan Borgner | 0e96f31 | 2018-10-28 12:58:28 +0000 | [diff] [blame] | 4297 | if (copy_from_user(&irq, argp, sizeof(irq))) |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 4298 | goto out; |
| 4299 | r = kvm_vcpu_ioctl_interrupt(vcpu, &irq); |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 4300 | break; |
| 4301 | } |
Jan Kiszka | c4abb7c | 2008-09-26 09:30:55 +0200 | [diff] [blame] | 4302 | case KVM_NMI: { |
| 4303 | r = kvm_vcpu_ioctl_nmi(vcpu); |
Jan Kiszka | c4abb7c | 2008-09-26 09:30:55 +0200 | [diff] [blame] | 4304 | break; |
| 4305 | } |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 4306 | case KVM_SMI: { |
| 4307 | r = kvm_vcpu_ioctl_smi(vcpu); |
| 4308 | break; |
| 4309 | } |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 4310 | case KVM_SET_CPUID: { |
| 4311 | struct kvm_cpuid __user *cpuid_arg = argp; |
| 4312 | struct kvm_cpuid cpuid; |
| 4313 | |
| 4314 | r = -EFAULT; |
Jordan Borgner | 0e96f31 | 2018-10-28 12:58:28 +0000 | [diff] [blame] | 4315 | if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid))) |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 4316 | goto out; |
| 4317 | r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 4318 | break; |
| 4319 | } |
Dan Kenigsberg | 0771671 | 2007-11-21 17:10:04 +0200 | [diff] [blame] | 4320 | case KVM_SET_CPUID2: { |
| 4321 | struct kvm_cpuid2 __user *cpuid_arg = argp; |
| 4322 | struct kvm_cpuid2 cpuid; |
| 4323 | |
| 4324 | r = -EFAULT; |
Jordan Borgner | 0e96f31 | 2018-10-28 12:58:28 +0000 | [diff] [blame] | 4325 | if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid))) |
Dan Kenigsberg | 0771671 | 2007-11-21 17:10:04 +0200 | [diff] [blame] | 4326 | goto out; |
| 4327 | r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid, |
Amit Shah | 1935547 | 2009-01-14 16:56:00 +0000 | [diff] [blame] | 4328 | cpuid_arg->entries); |
Dan Kenigsberg | 0771671 | 2007-11-21 17:10:04 +0200 | [diff] [blame] | 4329 | break; |
| 4330 | } |
| 4331 | case KVM_GET_CPUID2: { |
| 4332 | struct kvm_cpuid2 __user *cpuid_arg = argp; |
| 4333 | struct kvm_cpuid2 cpuid; |
| 4334 | |
| 4335 | r = -EFAULT; |
Jordan Borgner | 0e96f31 | 2018-10-28 12:58:28 +0000 | [diff] [blame] | 4336 | if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid))) |
Dan Kenigsberg | 0771671 | 2007-11-21 17:10:04 +0200 | [diff] [blame] | 4337 | goto out; |
| 4338 | r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid, |
Amit Shah | 1935547 | 2009-01-14 16:56:00 +0000 | [diff] [blame] | 4339 | cpuid_arg->entries); |
Dan Kenigsberg | 0771671 | 2007-11-21 17:10:04 +0200 | [diff] [blame] | 4340 | if (r) |
| 4341 | goto out; |
| 4342 | r = -EFAULT; |
Jordan Borgner | 0e96f31 | 2018-10-28 12:58:28 +0000 | [diff] [blame] | 4343 | if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid))) |
Dan Kenigsberg | 0771671 | 2007-11-21 17:10:04 +0200 | [diff] [blame] | 4344 | goto out; |
| 4345 | r = 0; |
| 4346 | break; |
| 4347 | } |
Tom Lendacky | 801e459 | 2018-02-21 13:39:51 -0600 | [diff] [blame] | 4348 | case KVM_GET_MSRS: { |
| 4349 | int idx = srcu_read_lock(&vcpu->kvm->srcu); |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 4350 | r = msr_io(vcpu, argp, do_get_msr, 1); |
Tom Lendacky | 801e459 | 2018-02-21 13:39:51 -0600 | [diff] [blame] | 4351 | srcu_read_unlock(&vcpu->kvm->srcu, idx); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 4352 | break; |
Tom Lendacky | 801e459 | 2018-02-21 13:39:51 -0600 | [diff] [blame] | 4353 | } |
| 4354 | case KVM_SET_MSRS: { |
| 4355 | int idx = srcu_read_lock(&vcpu->kvm->srcu); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 4356 | r = msr_io(vcpu, argp, do_set_msr, 0); |
Tom Lendacky | 801e459 | 2018-02-21 13:39:51 -0600 | [diff] [blame] | 4357 | srcu_read_unlock(&vcpu->kvm->srcu, idx); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 4358 | break; |
Tom Lendacky | 801e459 | 2018-02-21 13:39:51 -0600 | [diff] [blame] | 4359 | } |
Avi Kivity | b209749f | 2007-10-22 16:50:39 +0200 | [diff] [blame] | 4360 | case KVM_TPR_ACCESS_REPORTING: { |
| 4361 | struct kvm_tpr_access_ctl tac; |
| 4362 | |
| 4363 | r = -EFAULT; |
Jordan Borgner | 0e96f31 | 2018-10-28 12:58:28 +0000 | [diff] [blame] | 4364 | if (copy_from_user(&tac, argp, sizeof(tac))) |
Avi Kivity | b209749f | 2007-10-22 16:50:39 +0200 | [diff] [blame] | 4365 | goto out; |
| 4366 | r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac); |
| 4367 | if (r) |
| 4368 | goto out; |
| 4369 | r = -EFAULT; |
Jordan Borgner | 0e96f31 | 2018-10-28 12:58:28 +0000 | [diff] [blame] | 4370 | if (copy_to_user(argp, &tac, sizeof(tac))) |
Avi Kivity | b209749f | 2007-10-22 16:50:39 +0200 | [diff] [blame] | 4371 | goto out; |
| 4372 | r = 0; |
| 4373 | break; |
| 4374 | }; |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 4375 | case KVM_SET_VAPIC_ADDR: { |
| 4376 | struct kvm_vapic_addr va; |
Paolo Bonzini | 7301d6a | 2016-11-17 15:55:46 +0100 | [diff] [blame] | 4377 | int idx; |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 4378 | |
| 4379 | r = -EINVAL; |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 4380 | if (!lapic_in_kernel(vcpu)) |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 4381 | goto out; |
| 4382 | r = -EFAULT; |
Jordan Borgner | 0e96f31 | 2018-10-28 12:58:28 +0000 | [diff] [blame] | 4383 | if (copy_from_user(&va, argp, sizeof(va))) |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 4384 | goto out; |
Paolo Bonzini | 7301d6a | 2016-11-17 15:55:46 +0100 | [diff] [blame] | 4385 | idx = srcu_read_lock(&vcpu->kvm->srcu); |
Andy Honig | fda4e2e | 2013-11-20 10:23:22 -0800 | [diff] [blame] | 4386 | r = kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr); |
Paolo Bonzini | 7301d6a | 2016-11-17 15:55:46 +0100 | [diff] [blame] | 4387 | srcu_read_unlock(&vcpu->kvm->srcu, idx); |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 4388 | break; |
| 4389 | } |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 4390 | case KVM_X86_SETUP_MCE: { |
| 4391 | u64 mcg_cap; |
| 4392 | |
| 4393 | r = -EFAULT; |
Jordan Borgner | 0e96f31 | 2018-10-28 12:58:28 +0000 | [diff] [blame] | 4394 | if (copy_from_user(&mcg_cap, argp, sizeof(mcg_cap))) |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 4395 | goto out; |
| 4396 | r = kvm_vcpu_ioctl_x86_setup_mce(vcpu, mcg_cap); |
| 4397 | break; |
| 4398 | } |
| 4399 | case KVM_X86_SET_MCE: { |
| 4400 | struct kvm_x86_mce mce; |
| 4401 | |
| 4402 | r = -EFAULT; |
Jordan Borgner | 0e96f31 | 2018-10-28 12:58:28 +0000 | [diff] [blame] | 4403 | if (copy_from_user(&mce, argp, sizeof(mce))) |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 4404 | goto out; |
| 4405 | r = kvm_vcpu_ioctl_x86_set_mce(vcpu, &mce); |
| 4406 | break; |
| 4407 | } |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 4408 | case KVM_GET_VCPU_EVENTS: { |
| 4409 | struct kvm_vcpu_events events; |
| 4410 | |
| 4411 | kvm_vcpu_ioctl_x86_get_vcpu_events(vcpu, &events); |
| 4412 | |
| 4413 | r = -EFAULT; |
| 4414 | if (copy_to_user(argp, &events, sizeof(struct kvm_vcpu_events))) |
| 4415 | break; |
| 4416 | r = 0; |
| 4417 | break; |
| 4418 | } |
| 4419 | case KVM_SET_VCPU_EVENTS: { |
| 4420 | struct kvm_vcpu_events events; |
| 4421 | |
| 4422 | r = -EFAULT; |
| 4423 | if (copy_from_user(&events, argp, sizeof(struct kvm_vcpu_events))) |
| 4424 | break; |
| 4425 | |
| 4426 | r = kvm_vcpu_ioctl_x86_set_vcpu_events(vcpu, &events); |
| 4427 | break; |
| 4428 | } |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 4429 | case KVM_GET_DEBUGREGS: { |
| 4430 | struct kvm_debugregs dbgregs; |
| 4431 | |
| 4432 | kvm_vcpu_ioctl_x86_get_debugregs(vcpu, &dbgregs); |
| 4433 | |
| 4434 | r = -EFAULT; |
| 4435 | if (copy_to_user(argp, &dbgregs, |
| 4436 | sizeof(struct kvm_debugregs))) |
| 4437 | break; |
| 4438 | r = 0; |
| 4439 | break; |
| 4440 | } |
| 4441 | case KVM_SET_DEBUGREGS: { |
| 4442 | struct kvm_debugregs dbgregs; |
| 4443 | |
| 4444 | r = -EFAULT; |
| 4445 | if (copy_from_user(&dbgregs, argp, |
| 4446 | sizeof(struct kvm_debugregs))) |
| 4447 | break; |
| 4448 | |
| 4449 | r = kvm_vcpu_ioctl_x86_set_debugregs(vcpu, &dbgregs); |
| 4450 | break; |
| 4451 | } |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4452 | case KVM_GET_XSAVE: { |
Ben Gardon | 254272c | 2019-02-11 11:02:50 -0800 | [diff] [blame] | 4453 | u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL_ACCOUNT); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4454 | r = -ENOMEM; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 4455 | if (!u.xsave) |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4456 | break; |
| 4457 | |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 4458 | kvm_vcpu_ioctl_x86_get_xsave(vcpu, u.xsave); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4459 | |
| 4460 | r = -EFAULT; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 4461 | if (copy_to_user(argp, u.xsave, sizeof(struct kvm_xsave))) |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4462 | break; |
| 4463 | r = 0; |
| 4464 | break; |
| 4465 | } |
| 4466 | case KVM_SET_XSAVE: { |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 4467 | u.xsave = memdup_user(argp, sizeof(*u.xsave)); |
Christoffer Dall | 9b062471 | 2017-12-04 21:35:36 +0100 | [diff] [blame] | 4468 | if (IS_ERR(u.xsave)) { |
| 4469 | r = PTR_ERR(u.xsave); |
| 4470 | goto out_nofree; |
| 4471 | } |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4472 | |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 4473 | r = kvm_vcpu_ioctl_x86_set_xsave(vcpu, u.xsave); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4474 | break; |
| 4475 | } |
| 4476 | case KVM_GET_XCRS: { |
Ben Gardon | 254272c | 2019-02-11 11:02:50 -0800 | [diff] [blame] | 4477 | u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL_ACCOUNT); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4478 | r = -ENOMEM; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 4479 | if (!u.xcrs) |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4480 | break; |
| 4481 | |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 4482 | kvm_vcpu_ioctl_x86_get_xcrs(vcpu, u.xcrs); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4483 | |
| 4484 | r = -EFAULT; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 4485 | if (copy_to_user(argp, u.xcrs, |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4486 | sizeof(struct kvm_xcrs))) |
| 4487 | break; |
| 4488 | r = 0; |
| 4489 | break; |
| 4490 | } |
| 4491 | case KVM_SET_XCRS: { |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 4492 | u.xcrs = memdup_user(argp, sizeof(*u.xcrs)); |
Christoffer Dall | 9b062471 | 2017-12-04 21:35:36 +0100 | [diff] [blame] | 4493 | if (IS_ERR(u.xcrs)) { |
| 4494 | r = PTR_ERR(u.xcrs); |
| 4495 | goto out_nofree; |
| 4496 | } |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4497 | |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 4498 | r = kvm_vcpu_ioctl_x86_set_xcrs(vcpu, u.xcrs); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 4499 | break; |
| 4500 | } |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 4501 | case KVM_SET_TSC_KHZ: { |
| 4502 | u32 user_tsc_khz; |
| 4503 | |
| 4504 | r = -EINVAL; |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 4505 | user_tsc_khz = (u32)arg; |
| 4506 | |
| 4507 | if (user_tsc_khz >= kvm_max_guest_tsc_khz) |
| 4508 | goto out; |
| 4509 | |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 4510 | if (user_tsc_khz == 0) |
| 4511 | user_tsc_khz = tsc_khz; |
| 4512 | |
Haozhong Zhang | 381d585 | 2015-10-20 15:39:04 +0800 | [diff] [blame] | 4513 | if (!kvm_set_tsc_khz(vcpu, user_tsc_khz)) |
| 4514 | r = 0; |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 4515 | |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 4516 | goto out; |
| 4517 | } |
| 4518 | case KVM_GET_TSC_KHZ: { |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 4519 | r = vcpu->arch.virtual_tsc_khz; |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 4520 | goto out; |
| 4521 | } |
Eric B Munson | 1c0b28c | 2012-03-10 14:37:27 -0500 | [diff] [blame] | 4522 | case KVM_KVMCLOCK_CTRL: { |
| 4523 | r = kvm_set_guest_paused(vcpu); |
| 4524 | goto out; |
| 4525 | } |
Andrey Smetanin | 5c919412 | 2015-11-10 15:36:34 +0300 | [diff] [blame] | 4526 | case KVM_ENABLE_CAP: { |
| 4527 | struct kvm_enable_cap cap; |
| 4528 | |
| 4529 | r = -EFAULT; |
| 4530 | if (copy_from_user(&cap, argp, sizeof(cap))) |
| 4531 | goto out; |
| 4532 | r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap); |
| 4533 | break; |
| 4534 | } |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4535 | case KVM_GET_NESTED_STATE: { |
| 4536 | struct kvm_nested_state __user *user_kvm_nested_state = argp; |
| 4537 | u32 user_data_size; |
| 4538 | |
| 4539 | r = -EINVAL; |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 4540 | if (!kvm_x86_ops.get_nested_state) |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4541 | break; |
| 4542 | |
| 4543 | BUILD_BUG_ON(sizeof(user_data_size) != sizeof(user_kvm_nested_state->size)); |
Liran Alon | 26b471c | 2018-09-16 14:28:20 +0300 | [diff] [blame] | 4544 | r = -EFAULT; |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4545 | if (get_user(user_data_size, &user_kvm_nested_state->size)) |
Liran Alon | 26b471c | 2018-09-16 14:28:20 +0300 | [diff] [blame] | 4546 | break; |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4547 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 4548 | r = kvm_x86_ops.get_nested_state(vcpu, user_kvm_nested_state, |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4549 | user_data_size); |
| 4550 | if (r < 0) |
Liran Alon | 26b471c | 2018-09-16 14:28:20 +0300 | [diff] [blame] | 4551 | break; |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4552 | |
| 4553 | if (r > user_data_size) { |
| 4554 | if (put_user(r, &user_kvm_nested_state->size)) |
Liran Alon | 26b471c | 2018-09-16 14:28:20 +0300 | [diff] [blame] | 4555 | r = -EFAULT; |
| 4556 | else |
| 4557 | r = -E2BIG; |
| 4558 | break; |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4559 | } |
Liran Alon | 26b471c | 2018-09-16 14:28:20 +0300 | [diff] [blame] | 4560 | |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4561 | r = 0; |
| 4562 | break; |
| 4563 | } |
| 4564 | case KVM_SET_NESTED_STATE: { |
| 4565 | struct kvm_nested_state __user *user_kvm_nested_state = argp; |
| 4566 | struct kvm_nested_state kvm_state; |
Sean Christopherson | ad5996d | 2019-11-22 08:58:18 -0800 | [diff] [blame] | 4567 | int idx; |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4568 | |
| 4569 | r = -EINVAL; |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 4570 | if (!kvm_x86_ops.set_nested_state) |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4571 | break; |
| 4572 | |
Liran Alon | 26b471c | 2018-09-16 14:28:20 +0300 | [diff] [blame] | 4573 | r = -EFAULT; |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4574 | if (copy_from_user(&kvm_state, user_kvm_nested_state, sizeof(kvm_state))) |
Liran Alon | 26b471c | 2018-09-16 14:28:20 +0300 | [diff] [blame] | 4575 | break; |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4576 | |
Liran Alon | 26b471c | 2018-09-16 14:28:20 +0300 | [diff] [blame] | 4577 | r = -EINVAL; |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4578 | if (kvm_state.size < sizeof(kvm_state)) |
Liran Alon | 26b471c | 2018-09-16 14:28:20 +0300 | [diff] [blame] | 4579 | break; |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4580 | |
| 4581 | if (kvm_state.flags & |
Vitaly Kuznetsov | 8cab650 | 2018-10-16 18:50:09 +0200 | [diff] [blame] | 4582 | ~(KVM_STATE_NESTED_RUN_PENDING | KVM_STATE_NESTED_GUEST_MODE |
| 4583 | | KVM_STATE_NESTED_EVMCS)) |
Liran Alon | 26b471c | 2018-09-16 14:28:20 +0300 | [diff] [blame] | 4584 | break; |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4585 | |
| 4586 | /* nested_run_pending implies guest_mode. */ |
Vitaly Kuznetsov | 8cab650 | 2018-10-16 18:50:09 +0200 | [diff] [blame] | 4587 | if ((kvm_state.flags & KVM_STATE_NESTED_RUN_PENDING) |
| 4588 | && !(kvm_state.flags & KVM_STATE_NESTED_GUEST_MODE)) |
Liran Alon | 26b471c | 2018-09-16 14:28:20 +0300 | [diff] [blame] | 4589 | break; |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4590 | |
Sean Christopherson | ad5996d | 2019-11-22 08:58:18 -0800 | [diff] [blame] | 4591 | idx = srcu_read_lock(&vcpu->kvm->srcu); |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 4592 | r = kvm_x86_ops.set_nested_state(vcpu, user_kvm_nested_state, &kvm_state); |
Sean Christopherson | ad5996d | 2019-11-22 08:58:18 -0800 | [diff] [blame] | 4593 | srcu_read_unlock(&vcpu->kvm->srcu, idx); |
Jim Mattson | 8fcc4b5 | 2018-07-10 11:27:20 +0200 | [diff] [blame] | 4594 | break; |
| 4595 | } |
Vitaly Kuznetsov | 2bc3997 | 2018-12-10 18:21:56 +0100 | [diff] [blame] | 4596 | case KVM_GET_SUPPORTED_HV_CPUID: { |
| 4597 | struct kvm_cpuid2 __user *cpuid_arg = argp; |
| 4598 | struct kvm_cpuid2 cpuid; |
| 4599 | |
| 4600 | r = -EFAULT; |
| 4601 | if (copy_from_user(&cpuid, cpuid_arg, sizeof(cpuid))) |
| 4602 | goto out; |
| 4603 | |
| 4604 | r = kvm_vcpu_ioctl_get_hv_cpuid(vcpu, &cpuid, |
| 4605 | cpuid_arg->entries); |
| 4606 | if (r) |
| 4607 | goto out; |
| 4608 | |
| 4609 | r = -EFAULT; |
| 4610 | if (copy_to_user(cpuid_arg, &cpuid, sizeof(cpuid))) |
| 4611 | goto out; |
| 4612 | r = 0; |
| 4613 | break; |
| 4614 | } |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 4615 | default: |
| 4616 | r = -EINVAL; |
| 4617 | } |
| 4618 | out: |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 4619 | kfree(u.buffer); |
Christoffer Dall | 9b062471 | 2017-12-04 21:35:36 +0100 | [diff] [blame] | 4620 | out_nofree: |
| 4621 | vcpu_put(vcpu); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 4622 | return r; |
| 4623 | } |
| 4624 | |
Souptick Joarder | 1499fa8 | 2018-04-19 00:49:58 +0530 | [diff] [blame] | 4625 | vm_fault_t kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf) |
Carsten Otte | 5b1c149 | 2012-01-04 10:25:23 +0100 | [diff] [blame] | 4626 | { |
| 4627 | return VM_FAULT_SIGBUS; |
| 4628 | } |
| 4629 | |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4630 | static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr) |
| 4631 | { |
| 4632 | int ret; |
| 4633 | |
| 4634 | if (addr > (unsigned int)(-3 * PAGE_SIZE)) |
Guo Chao | 951179c | 2012-11-02 18:33:22 +0800 | [diff] [blame] | 4635 | return -EINVAL; |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 4636 | ret = kvm_x86_ops.set_tss_addr(kvm, addr); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4637 | return ret; |
| 4638 | } |
| 4639 | |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 4640 | static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm, |
| 4641 | u64 ident_addr) |
| 4642 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 4643 | return kvm_x86_ops.set_identity_map_addr(kvm, ident_addr); |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 4644 | } |
| 4645 | |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4646 | static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm, |
Ben Gardon | bc8a3d8 | 2019-04-08 11:07:30 -0700 | [diff] [blame] | 4647 | unsigned long kvm_nr_mmu_pages) |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4648 | { |
| 4649 | if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES) |
| 4650 | return -EINVAL; |
| 4651 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 4652 | mutex_lock(&kvm->slots_lock); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4653 | |
| 4654 | kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages); |
Zhang Xiantao | f05e70a | 2007-12-14 10:01:48 +0800 | [diff] [blame] | 4655 | kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4656 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 4657 | mutex_unlock(&kvm->slots_lock); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4658 | return 0; |
| 4659 | } |
| 4660 | |
Ben Gardon | bc8a3d8 | 2019-04-08 11:07:30 -0700 | [diff] [blame] | 4661 | static unsigned long kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm) |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4662 | { |
Dave Hansen | 39de71e | 2010-08-19 18:11:14 -0700 | [diff] [blame] | 4663 | return kvm->arch.n_max_mmu_pages; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4664 | } |
| 4665 | |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4666 | static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip) |
| 4667 | { |
David Hildenbrand | 90bca05 | 2017-04-07 10:50:23 +0200 | [diff] [blame] | 4668 | struct kvm_pic *pic = kvm->arch.vpic; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4669 | int r; |
| 4670 | |
| 4671 | r = 0; |
| 4672 | switch (chip->chip_id) { |
| 4673 | case KVM_IRQCHIP_PIC_MASTER: |
David Hildenbrand | 90bca05 | 2017-04-07 10:50:23 +0200 | [diff] [blame] | 4674 | memcpy(&chip->chip.pic, &pic->pics[0], |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4675 | sizeof(struct kvm_pic_state)); |
| 4676 | break; |
| 4677 | case KVM_IRQCHIP_PIC_SLAVE: |
David Hildenbrand | 90bca05 | 2017-04-07 10:50:23 +0200 | [diff] [blame] | 4678 | memcpy(&chip->chip.pic, &pic->pics[1], |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4679 | sizeof(struct kvm_pic_state)); |
| 4680 | break; |
| 4681 | case KVM_IRQCHIP_IOAPIC: |
David Hildenbrand | 33392b4 | 2017-04-07 10:50:27 +0200 | [diff] [blame] | 4682 | kvm_get_ioapic(kvm, &chip->chip.ioapic); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4683 | break; |
| 4684 | default: |
| 4685 | r = -EINVAL; |
| 4686 | break; |
| 4687 | } |
| 4688 | return r; |
| 4689 | } |
| 4690 | |
| 4691 | static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip) |
| 4692 | { |
David Hildenbrand | 90bca05 | 2017-04-07 10:50:23 +0200 | [diff] [blame] | 4693 | struct kvm_pic *pic = kvm->arch.vpic; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4694 | int r; |
| 4695 | |
| 4696 | r = 0; |
| 4697 | switch (chip->chip_id) { |
| 4698 | case KVM_IRQCHIP_PIC_MASTER: |
David Hildenbrand | 90bca05 | 2017-04-07 10:50:23 +0200 | [diff] [blame] | 4699 | spin_lock(&pic->lock); |
| 4700 | memcpy(&pic->pics[0], &chip->chip.pic, |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4701 | sizeof(struct kvm_pic_state)); |
David Hildenbrand | 90bca05 | 2017-04-07 10:50:23 +0200 | [diff] [blame] | 4702 | spin_unlock(&pic->lock); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4703 | break; |
| 4704 | case KVM_IRQCHIP_PIC_SLAVE: |
David Hildenbrand | 90bca05 | 2017-04-07 10:50:23 +0200 | [diff] [blame] | 4705 | spin_lock(&pic->lock); |
| 4706 | memcpy(&pic->pics[1], &chip->chip.pic, |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4707 | sizeof(struct kvm_pic_state)); |
David Hildenbrand | 90bca05 | 2017-04-07 10:50:23 +0200 | [diff] [blame] | 4708 | spin_unlock(&pic->lock); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4709 | break; |
| 4710 | case KVM_IRQCHIP_IOAPIC: |
David Hildenbrand | 33392b4 | 2017-04-07 10:50:27 +0200 | [diff] [blame] | 4711 | kvm_set_ioapic(kvm, &chip->chip.ioapic); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4712 | break; |
| 4713 | default: |
| 4714 | r = -EINVAL; |
| 4715 | break; |
| 4716 | } |
David Hildenbrand | 90bca05 | 2017-04-07 10:50:23 +0200 | [diff] [blame] | 4717 | kvm_pic_update_irq(pic); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4718 | return r; |
| 4719 | } |
| 4720 | |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 4721 | static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps) |
| 4722 | { |
Radim Krčmář | 34f3941 | 2016-03-02 22:56:50 +0100 | [diff] [blame] | 4723 | struct kvm_kpit_state *kps = &kvm->arch.vpit->pit_state; |
| 4724 | |
| 4725 | BUILD_BUG_ON(sizeof(*ps) != sizeof(kps->channels)); |
| 4726 | |
| 4727 | mutex_lock(&kps->lock); |
| 4728 | memcpy(ps, &kps->channels, sizeof(*ps)); |
| 4729 | mutex_unlock(&kps->lock); |
Saurabh Sengar | 2da29bc | 2015-10-30 12:56:11 +0530 | [diff] [blame] | 4730 | return 0; |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 4731 | } |
| 4732 | |
| 4733 | static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps) |
| 4734 | { |
Andrew Honig | 0185604 | 2015-11-18 14:50:23 -0800 | [diff] [blame] | 4735 | int i; |
Radim Krčmář | 09edea7 | 2016-03-02 22:56:43 +0100 | [diff] [blame] | 4736 | struct kvm_pit *pit = kvm->arch.vpit; |
| 4737 | |
| 4738 | mutex_lock(&pit->pit_state.lock); |
Radim Krčmář | 34f3941 | 2016-03-02 22:56:50 +0100 | [diff] [blame] | 4739 | memcpy(&pit->pit_state.channels, ps, sizeof(*ps)); |
Andrew Honig | 0185604 | 2015-11-18 14:50:23 -0800 | [diff] [blame] | 4740 | for (i = 0; i < 3; i++) |
Radim Krčmář | 09edea7 | 2016-03-02 22:56:43 +0100 | [diff] [blame] | 4741 | kvm_pit_load_count(pit, i, ps->channels[i].count, 0); |
| 4742 | mutex_unlock(&pit->pit_state.lock); |
Saurabh Sengar | 2da29bc | 2015-10-30 12:56:11 +0530 | [diff] [blame] | 4743 | return 0; |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 4744 | } |
| 4745 | |
| 4746 | static int kvm_vm_ioctl_get_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps) |
| 4747 | { |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 4748 | mutex_lock(&kvm->arch.vpit->pit_state.lock); |
| 4749 | memcpy(ps->channels, &kvm->arch.vpit->pit_state.channels, |
| 4750 | sizeof(ps->channels)); |
| 4751 | ps->flags = kvm->arch.vpit->pit_state.flags; |
| 4752 | mutex_unlock(&kvm->arch.vpit->pit_state.lock); |
Vasiliy Kulikov | 97e69aa | 2010-10-30 22:54:47 +0400 | [diff] [blame] | 4753 | memset(&ps->reserved, 0, sizeof(ps->reserved)); |
Saurabh Sengar | 2da29bc | 2015-10-30 12:56:11 +0530 | [diff] [blame] | 4754 | return 0; |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 4755 | } |
| 4756 | |
| 4757 | static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps) |
| 4758 | { |
Saurabh Sengar | 2da29bc | 2015-10-30 12:56:11 +0530 | [diff] [blame] | 4759 | int start = 0; |
Andrew Honig | 0185604 | 2015-11-18 14:50:23 -0800 | [diff] [blame] | 4760 | int i; |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 4761 | u32 prev_legacy, cur_legacy; |
Radim Krčmář | 09edea7 | 2016-03-02 22:56:43 +0100 | [diff] [blame] | 4762 | struct kvm_pit *pit = kvm->arch.vpit; |
| 4763 | |
| 4764 | mutex_lock(&pit->pit_state.lock); |
| 4765 | prev_legacy = pit->pit_state.flags & KVM_PIT_FLAGS_HPET_LEGACY; |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 4766 | cur_legacy = ps->flags & KVM_PIT_FLAGS_HPET_LEGACY; |
| 4767 | if (!prev_legacy && cur_legacy) |
| 4768 | start = 1; |
Radim Krčmář | 09edea7 | 2016-03-02 22:56:43 +0100 | [diff] [blame] | 4769 | memcpy(&pit->pit_state.channels, &ps->channels, |
| 4770 | sizeof(pit->pit_state.channels)); |
| 4771 | pit->pit_state.flags = ps->flags; |
Andrew Honig | 0185604 | 2015-11-18 14:50:23 -0800 | [diff] [blame] | 4772 | for (i = 0; i < 3; i++) |
Radim Krčmář | 09edea7 | 2016-03-02 22:56:43 +0100 | [diff] [blame] | 4773 | kvm_pit_load_count(pit, i, pit->pit_state.channels[i].count, |
Paolo Bonzini | e5e57e7 | 2016-01-07 13:50:38 +0100 | [diff] [blame] | 4774 | start && i == 0); |
Radim Krčmář | 09edea7 | 2016-03-02 22:56:43 +0100 | [diff] [blame] | 4775 | mutex_unlock(&pit->pit_state.lock); |
Saurabh Sengar | 2da29bc | 2015-10-30 12:56:11 +0530 | [diff] [blame] | 4776 | return 0; |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 4777 | } |
| 4778 | |
Marcelo Tosatti | 52d939a | 2008-12-30 15:55:06 -0200 | [diff] [blame] | 4779 | static int kvm_vm_ioctl_reinject(struct kvm *kvm, |
| 4780 | struct kvm_reinject_control *control) |
| 4781 | { |
Radim Krčmář | 71474e2 | 2016-03-02 22:56:45 +0100 | [diff] [blame] | 4782 | struct kvm_pit *pit = kvm->arch.vpit; |
| 4783 | |
Radim Krčmář | 71474e2 | 2016-03-02 22:56:45 +0100 | [diff] [blame] | 4784 | /* pit->pit_state.lock was overloaded to prevent userspace from getting |
| 4785 | * an inconsistent state after running multiple KVM_REINJECT_CONTROL |
| 4786 | * ioctls in parallel. Use a separate lock if that ioctl isn't rare. |
| 4787 | */ |
| 4788 | mutex_lock(&pit->pit_state.lock); |
| 4789 | kvm_pit_set_reinject(pit, control->pit_reinject); |
| 4790 | mutex_unlock(&pit->pit_state.lock); |
Radim Krčmář | b39c90b | 2016-03-02 22:56:44 +0100 | [diff] [blame] | 4791 | |
Marcelo Tosatti | 52d939a | 2008-12-30 15:55:06 -0200 | [diff] [blame] | 4792 | return 0; |
| 4793 | } |
| 4794 | |
Sean Christopherson | 0dff084 | 2020-02-18 13:07:29 -0800 | [diff] [blame] | 4795 | void kvm_arch_sync_dirty_log(struct kvm *kvm, struct kvm_memory_slot *memslot) |
Zhang Xiantao | 5bb064d | 2007-11-18 20:29:43 +0800 | [diff] [blame] | 4796 | { |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 4797 | /* |
| 4798 | * Flush potentially hardware-cached dirty pages to dirty_bitmap. |
| 4799 | */ |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 4800 | if (kvm_x86_ops.flush_log_dirty) |
| 4801 | kvm_x86_ops.flush_log_dirty(kvm); |
Zhang Xiantao | 5bb064d | 2007-11-18 20:29:43 +0800 | [diff] [blame] | 4802 | } |
| 4803 | |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 4804 | int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event, |
| 4805 | bool line_status) |
Christoffer Dall | 23d43cf | 2012-07-24 08:51:20 -0400 | [diff] [blame] | 4806 | { |
| 4807 | if (!irqchip_in_kernel(kvm)) |
| 4808 | return -ENXIO; |
| 4809 | |
| 4810 | irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID, |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 4811 | irq_event->irq, irq_event->level, |
| 4812 | line_status); |
Christoffer Dall | 23d43cf | 2012-07-24 08:51:20 -0400 | [diff] [blame] | 4813 | return 0; |
| 4814 | } |
| 4815 | |
Paolo Bonzini | e5d83c7 | 2017-02-16 10:40:56 +0100 | [diff] [blame] | 4816 | int kvm_vm_ioctl_enable_cap(struct kvm *kvm, |
| 4817 | struct kvm_enable_cap *cap) |
Nadav Amit | 90de4a1 | 2015-04-13 01:53:41 +0300 | [diff] [blame] | 4818 | { |
| 4819 | int r; |
| 4820 | |
| 4821 | if (cap->flags) |
| 4822 | return -EINVAL; |
| 4823 | |
| 4824 | switch (cap->cap) { |
| 4825 | case KVM_CAP_DISABLE_QUIRKS: |
| 4826 | kvm->arch.disabled_quirks = cap->args[0]; |
| 4827 | r = 0; |
| 4828 | break; |
Steve Rutherford | 49df639 | 2015-07-29 23:21:40 -0700 | [diff] [blame] | 4829 | case KVM_CAP_SPLIT_IRQCHIP: { |
| 4830 | mutex_lock(&kvm->lock); |
Steve Rutherford | b053b2a | 2015-07-29 23:32:35 -0700 | [diff] [blame] | 4831 | r = -EINVAL; |
| 4832 | if (cap->args[0] > MAX_NR_RESERVED_IOAPIC_PINS) |
| 4833 | goto split_irqchip_unlock; |
Steve Rutherford | 49df639 | 2015-07-29 23:21:40 -0700 | [diff] [blame] | 4834 | r = -EEXIST; |
| 4835 | if (irqchip_in_kernel(kvm)) |
| 4836 | goto split_irqchip_unlock; |
Paolo Bonzini | 557abc4 | 2016-06-13 14:50:04 +0200 | [diff] [blame] | 4837 | if (kvm->created_vcpus) |
Steve Rutherford | 49df639 | 2015-07-29 23:21:40 -0700 | [diff] [blame] | 4838 | goto split_irqchip_unlock; |
| 4839 | r = kvm_setup_empty_irq_routing(kvm); |
David Hildenbrand | 5c0aea0 | 2017-04-28 17:06:20 +0200 | [diff] [blame] | 4840 | if (r) |
Steve Rutherford | 49df639 | 2015-07-29 23:21:40 -0700 | [diff] [blame] | 4841 | goto split_irqchip_unlock; |
| 4842 | /* Pairs with irqchip_in_kernel. */ |
| 4843 | smp_wmb(); |
Radim Krčmář | 49776fa | 2016-12-16 16:10:02 +0100 | [diff] [blame] | 4844 | kvm->arch.irqchip_mode = KVM_IRQCHIP_SPLIT; |
Steve Rutherford | b053b2a | 2015-07-29 23:32:35 -0700 | [diff] [blame] | 4845 | kvm->arch.nr_reserved_ioapic_pins = cap->args[0]; |
Steve Rutherford | 49df639 | 2015-07-29 23:21:40 -0700 | [diff] [blame] | 4846 | r = 0; |
| 4847 | split_irqchip_unlock: |
| 4848 | mutex_unlock(&kvm->lock); |
| 4849 | break; |
| 4850 | } |
Radim Krčmář | 37131313 | 2016-07-12 22:09:27 +0200 | [diff] [blame] | 4851 | case KVM_CAP_X2APIC_API: |
| 4852 | r = -EINVAL; |
| 4853 | if (cap->args[0] & ~KVM_X2APIC_API_VALID_FLAGS) |
| 4854 | break; |
| 4855 | |
| 4856 | if (cap->args[0] & KVM_X2APIC_API_USE_32BIT_IDS) |
| 4857 | kvm->arch.x2apic_format = true; |
Radim Krčmář | c519265 | 2016-07-12 22:09:28 +0200 | [diff] [blame] | 4858 | if (cap->args[0] & KVM_X2APIC_API_DISABLE_BROADCAST_QUIRK) |
| 4859 | kvm->arch.x2apic_broadcast_quirk_disabled = true; |
Radim Krčmář | 37131313 | 2016-07-12 22:09:27 +0200 | [diff] [blame] | 4860 | |
| 4861 | r = 0; |
| 4862 | break; |
Wanpeng Li | 4d5422c | 2018-03-12 04:53:02 -0700 | [diff] [blame] | 4863 | case KVM_CAP_X86_DISABLE_EXITS: |
| 4864 | r = -EINVAL; |
| 4865 | if (cap->args[0] & ~KVM_X86_DISABLE_VALID_EXITS) |
| 4866 | break; |
| 4867 | |
| 4868 | if ((cap->args[0] & KVM_X86_DISABLE_EXITS_MWAIT) && |
| 4869 | kvm_can_mwait_in_guest()) |
| 4870 | kvm->arch.mwait_in_guest = true; |
Michael S. Tsirkin | 766d357 | 2018-06-08 02:19:53 +0300 | [diff] [blame] | 4871 | if (cap->args[0] & KVM_X86_DISABLE_EXITS_HLT) |
Wanpeng Li | caa057a | 2018-03-12 04:53:03 -0700 | [diff] [blame] | 4872 | kvm->arch.hlt_in_guest = true; |
Wanpeng Li | b31c114 | 2018-03-12 04:53:04 -0700 | [diff] [blame] | 4873 | if (cap->args[0] & KVM_X86_DISABLE_EXITS_PAUSE) |
| 4874 | kvm->arch.pause_in_guest = true; |
Wanpeng Li | b517006 | 2019-05-21 14:06:53 +0800 | [diff] [blame] | 4875 | if (cap->args[0] & KVM_X86_DISABLE_EXITS_CSTATE) |
| 4876 | kvm->arch.cstate_in_guest = true; |
Wanpeng Li | 4d5422c | 2018-03-12 04:53:02 -0700 | [diff] [blame] | 4877 | r = 0; |
| 4878 | break; |
Drew Schmitt | 6fbbde9 | 2018-08-20 10:32:15 -0700 | [diff] [blame] | 4879 | case KVM_CAP_MSR_PLATFORM_INFO: |
| 4880 | kvm->arch.guest_can_read_msr_platform_info = cap->args[0]; |
| 4881 | r = 0; |
| 4882 | break; |
Jim Mattson | c4f5519 | 2018-10-16 14:29:24 -0700 | [diff] [blame] | 4883 | case KVM_CAP_EXCEPTION_PAYLOAD: |
| 4884 | kvm->arch.exception_payload_enabled = cap->args[0]; |
| 4885 | r = 0; |
| 4886 | break; |
Nadav Amit | 90de4a1 | 2015-04-13 01:53:41 +0300 | [diff] [blame] | 4887 | default: |
| 4888 | r = -EINVAL; |
| 4889 | break; |
| 4890 | } |
| 4891 | return r; |
| 4892 | } |
| 4893 | |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4894 | long kvm_arch_vm_ioctl(struct file *filp, |
| 4895 | unsigned int ioctl, unsigned long arg) |
| 4896 | { |
| 4897 | struct kvm *kvm = filp->private_data; |
| 4898 | void __user *argp = (void __user *)arg; |
Avi Kivity | 367e131 | 2009-08-26 14:57:07 +0300 | [diff] [blame] | 4899 | int r = -ENOTTY; |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 4900 | /* |
| 4901 | * This union makes it completely explicit to gcc-3.x |
| 4902 | * that these two variables' stack usage should be |
| 4903 | * combined, not added together. |
| 4904 | */ |
| 4905 | union { |
| 4906 | struct kvm_pit_state ps; |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 4907 | struct kvm_pit_state2 ps2; |
Jan Kiszka | c5ff41c | 2009-05-14 22:42:53 +0200 | [diff] [blame] | 4908 | struct kvm_pit_config pit_config; |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 4909 | } u; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4910 | |
| 4911 | switch (ioctl) { |
| 4912 | case KVM_SET_TSS_ADDR: |
| 4913 | r = kvm_vm_ioctl_set_tss_addr(kvm, arg); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4914 | break; |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 4915 | case KVM_SET_IDENTITY_MAP_ADDR: { |
| 4916 | u64 ident_addr; |
| 4917 | |
David Hildenbrand | 1af1ac9 | 2017-08-24 20:51:36 +0200 | [diff] [blame] | 4918 | mutex_lock(&kvm->lock); |
| 4919 | r = -EINVAL; |
| 4920 | if (kvm->created_vcpus) |
| 4921 | goto set_identity_unlock; |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 4922 | r = -EFAULT; |
Jordan Borgner | 0e96f31 | 2018-10-28 12:58:28 +0000 | [diff] [blame] | 4923 | if (copy_from_user(&ident_addr, argp, sizeof(ident_addr))) |
David Hildenbrand | 1af1ac9 | 2017-08-24 20:51:36 +0200 | [diff] [blame] | 4924 | goto set_identity_unlock; |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 4925 | r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr); |
David Hildenbrand | 1af1ac9 | 2017-08-24 20:51:36 +0200 | [diff] [blame] | 4926 | set_identity_unlock: |
| 4927 | mutex_unlock(&kvm->lock); |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 4928 | break; |
| 4929 | } |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4930 | case KVM_SET_NR_MMU_PAGES: |
| 4931 | r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4932 | break; |
| 4933 | case KVM_GET_NR_MMU_PAGES: |
| 4934 | r = kvm_vm_ioctl_get_nr_mmu_pages(kvm); |
| 4935 | break; |
Marcelo Tosatti | 3ddea12 | 2009-10-29 13:44:15 -0200 | [diff] [blame] | 4936 | case KVM_CREATE_IRQCHIP: { |
Marcelo Tosatti | 3ddea12 | 2009-10-29 13:44:15 -0200 | [diff] [blame] | 4937 | mutex_lock(&kvm->lock); |
Radim Krčmář | 0994136 | 2016-12-16 16:10:03 +0100 | [diff] [blame] | 4938 | |
Marcelo Tosatti | 3ddea12 | 2009-10-29 13:44:15 -0200 | [diff] [blame] | 4939 | r = -EEXIST; |
Radim Krčmář | 35e6eaa | 2016-12-16 16:10:01 +0100 | [diff] [blame] | 4940 | if (irqchip_in_kernel(kvm)) |
Marcelo Tosatti | 3ddea12 | 2009-10-29 13:44:15 -0200 | [diff] [blame] | 4941 | goto create_irqchip_unlock; |
Radim Krčmář | 0994136 | 2016-12-16 16:10:03 +0100 | [diff] [blame] | 4942 | |
Avi Kivity | 3e51570 | 2012-03-05 14:23:29 +0200 | [diff] [blame] | 4943 | r = -EINVAL; |
Paolo Bonzini | 557abc4 | 2016-06-13 14:50:04 +0200 | [diff] [blame] | 4944 | if (kvm->created_vcpus) |
Avi Kivity | 3e51570 | 2012-03-05 14:23:29 +0200 | [diff] [blame] | 4945 | goto create_irqchip_unlock; |
Radim Krčmář | 0994136 | 2016-12-16 16:10:03 +0100 | [diff] [blame] | 4946 | |
| 4947 | r = kvm_pic_init(kvm); |
| 4948 | if (r) |
Marcelo Tosatti | 3ddea12 | 2009-10-29 13:44:15 -0200 | [diff] [blame] | 4949 | goto create_irqchip_unlock; |
Radim Krčmář | 0994136 | 2016-12-16 16:10:03 +0100 | [diff] [blame] | 4950 | |
| 4951 | r = kvm_ioapic_init(kvm); |
| 4952 | if (r) { |
Radim Krčmář | 0994136 | 2016-12-16 16:10:03 +0100 | [diff] [blame] | 4953 | kvm_pic_destroy(kvm); |
Radim Krčmář | 0994136 | 2016-12-16 16:10:03 +0100 | [diff] [blame] | 4954 | goto create_irqchip_unlock; |
| 4955 | } |
| 4956 | |
Avi Kivity | 399ec80 | 2008-11-19 13:58:46 +0200 | [diff] [blame] | 4957 | r = kvm_setup_default_irq_routing(kvm); |
| 4958 | if (r) { |
Wei Yongjun | 72bb2fc | 2010-02-09 10:33:03 +0800 | [diff] [blame] | 4959 | kvm_ioapic_destroy(kvm); |
Radim Krčmář | 0994136 | 2016-12-16 16:10:03 +0100 | [diff] [blame] | 4960 | kvm_pic_destroy(kvm); |
Paolo Bonzini | 71ba994 | 2015-07-29 12:31:15 +0200 | [diff] [blame] | 4961 | goto create_irqchip_unlock; |
Avi Kivity | 399ec80 | 2008-11-19 13:58:46 +0200 | [diff] [blame] | 4962 | } |
Radim Krčmář | 49776fa | 2016-12-16 16:10:02 +0100 | [diff] [blame] | 4963 | /* Write kvm->irq_routing before enabling irqchip_in_kernel. */ |
Paolo Bonzini | 71ba994 | 2015-07-29 12:31:15 +0200 | [diff] [blame] | 4964 | smp_wmb(); |
Radim Krčmář | 49776fa | 2016-12-16 16:10:02 +0100 | [diff] [blame] | 4965 | kvm->arch.irqchip_mode = KVM_IRQCHIP_KERNEL; |
Marcelo Tosatti | 3ddea12 | 2009-10-29 13:44:15 -0200 | [diff] [blame] | 4966 | create_irqchip_unlock: |
| 4967 | mutex_unlock(&kvm->lock); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4968 | break; |
Marcelo Tosatti | 3ddea12 | 2009-10-29 13:44:15 -0200 | [diff] [blame] | 4969 | } |
Sheng Yang | 7837699 | 2008-01-28 05:10:22 +0800 | [diff] [blame] | 4970 | case KVM_CREATE_PIT: |
Jan Kiszka | c5ff41c | 2009-05-14 22:42:53 +0200 | [diff] [blame] | 4971 | u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY; |
| 4972 | goto create_pit; |
| 4973 | case KVM_CREATE_PIT2: |
| 4974 | r = -EFAULT; |
| 4975 | if (copy_from_user(&u.pit_config, argp, |
| 4976 | sizeof(struct kvm_pit_config))) |
| 4977 | goto out; |
| 4978 | create_pit: |
Paolo Bonzini | 250715a | 2016-06-01 14:09:24 +0200 | [diff] [blame] | 4979 | mutex_lock(&kvm->lock); |
Avi Kivity | 269e05e | 2009-01-05 15:21:42 +0200 | [diff] [blame] | 4980 | r = -EEXIST; |
| 4981 | if (kvm->arch.vpit) |
| 4982 | goto create_pit_unlock; |
Sheng Yang | 7837699 | 2008-01-28 05:10:22 +0800 | [diff] [blame] | 4983 | r = -ENOMEM; |
Jan Kiszka | c5ff41c | 2009-05-14 22:42:53 +0200 | [diff] [blame] | 4984 | kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags); |
Sheng Yang | 7837699 | 2008-01-28 05:10:22 +0800 | [diff] [blame] | 4985 | if (kvm->arch.vpit) |
| 4986 | r = 0; |
Avi Kivity | 269e05e | 2009-01-05 15:21:42 +0200 | [diff] [blame] | 4987 | create_pit_unlock: |
Paolo Bonzini | 250715a | 2016-06-01 14:09:24 +0200 | [diff] [blame] | 4988 | mutex_unlock(&kvm->lock); |
Sheng Yang | 7837699 | 2008-01-28 05:10:22 +0800 | [diff] [blame] | 4989 | break; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4990 | case KVM_GET_IRQCHIP: { |
| 4991 | /* 0: PIC master, 1: PIC slave, 2: IOAPIC */ |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 4992 | struct kvm_irqchip *chip; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4993 | |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 4994 | chip = memdup_user(argp, sizeof(*chip)); |
| 4995 | if (IS_ERR(chip)) { |
| 4996 | r = PTR_ERR(chip); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4997 | goto out; |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 4998 | } |
| 4999 | |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 5000 | r = -ENXIO; |
Radim Krčmář | 826da32 | 2016-12-16 16:10:06 +0100 | [diff] [blame] | 5001 | if (!irqchip_kernel(kvm)) |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 5002 | goto get_irqchip_out; |
| 5003 | r = kvm_vm_ioctl_get_irqchip(kvm, chip); |
| 5004 | if (r) |
| 5005 | goto get_irqchip_out; |
| 5006 | r = -EFAULT; |
Jordan Borgner | 0e96f31 | 2018-10-28 12:58:28 +0000 | [diff] [blame] | 5007 | if (copy_to_user(argp, chip, sizeof(*chip))) |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 5008 | goto get_irqchip_out; |
| 5009 | r = 0; |
| 5010 | get_irqchip_out: |
| 5011 | kfree(chip); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 5012 | break; |
| 5013 | } |
| 5014 | case KVM_SET_IRQCHIP: { |
| 5015 | /* 0: PIC master, 1: PIC slave, 2: IOAPIC */ |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 5016 | struct kvm_irqchip *chip; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 5017 | |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 5018 | chip = memdup_user(argp, sizeof(*chip)); |
| 5019 | if (IS_ERR(chip)) { |
| 5020 | r = PTR_ERR(chip); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 5021 | goto out; |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 5022 | } |
| 5023 | |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 5024 | r = -ENXIO; |
Radim Krčmář | 826da32 | 2016-12-16 16:10:06 +0100 | [diff] [blame] | 5025 | if (!irqchip_kernel(kvm)) |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 5026 | goto set_irqchip_out; |
| 5027 | r = kvm_vm_ioctl_set_irqchip(kvm, chip); |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 5028 | set_irqchip_out: |
| 5029 | kfree(chip); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 5030 | break; |
| 5031 | } |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 5032 | case KVM_GET_PIT: { |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 5033 | r = -EFAULT; |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 5034 | if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state))) |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 5035 | goto out; |
| 5036 | r = -ENXIO; |
| 5037 | if (!kvm->arch.vpit) |
| 5038 | goto out; |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 5039 | r = kvm_vm_ioctl_get_pit(kvm, &u.ps); |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 5040 | if (r) |
| 5041 | goto out; |
| 5042 | r = -EFAULT; |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 5043 | if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state))) |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 5044 | goto out; |
| 5045 | r = 0; |
| 5046 | break; |
| 5047 | } |
| 5048 | case KVM_SET_PIT: { |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 5049 | r = -EFAULT; |
Jordan Borgner | 0e96f31 | 2018-10-28 12:58:28 +0000 | [diff] [blame] | 5050 | if (copy_from_user(&u.ps, argp, sizeof(u.ps))) |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 5051 | goto out; |
| 5052 | r = -ENXIO; |
| 5053 | if (!kvm->arch.vpit) |
| 5054 | goto out; |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 5055 | r = kvm_vm_ioctl_set_pit(kvm, &u.ps); |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 5056 | break; |
| 5057 | } |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 5058 | case KVM_GET_PIT2: { |
| 5059 | r = -ENXIO; |
| 5060 | if (!kvm->arch.vpit) |
| 5061 | goto out; |
| 5062 | r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2); |
| 5063 | if (r) |
| 5064 | goto out; |
| 5065 | r = -EFAULT; |
| 5066 | if (copy_to_user(argp, &u.ps2, sizeof(u.ps2))) |
| 5067 | goto out; |
| 5068 | r = 0; |
| 5069 | break; |
| 5070 | } |
| 5071 | case KVM_SET_PIT2: { |
| 5072 | r = -EFAULT; |
| 5073 | if (copy_from_user(&u.ps2, argp, sizeof(u.ps2))) |
| 5074 | goto out; |
| 5075 | r = -ENXIO; |
| 5076 | if (!kvm->arch.vpit) |
| 5077 | goto out; |
| 5078 | r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2); |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 5079 | break; |
| 5080 | } |
Marcelo Tosatti | 52d939a | 2008-12-30 15:55:06 -0200 | [diff] [blame] | 5081 | case KVM_REINJECT_CONTROL: { |
| 5082 | struct kvm_reinject_control control; |
| 5083 | r = -EFAULT; |
| 5084 | if (copy_from_user(&control, argp, sizeof(control))) |
| 5085 | goto out; |
Miaohe Lin | cad23e7 | 2019-12-07 17:25:22 +0800 | [diff] [blame] | 5086 | r = -ENXIO; |
| 5087 | if (!kvm->arch.vpit) |
| 5088 | goto out; |
Marcelo Tosatti | 52d939a | 2008-12-30 15:55:06 -0200 | [diff] [blame] | 5089 | r = kvm_vm_ioctl_reinject(kvm, &control); |
Marcelo Tosatti | 52d939a | 2008-12-30 15:55:06 -0200 | [diff] [blame] | 5090 | break; |
| 5091 | } |
Paolo Bonzini | d71ba78 | 2015-07-29 11:56:48 +0200 | [diff] [blame] | 5092 | case KVM_SET_BOOT_CPU_ID: |
| 5093 | r = 0; |
| 5094 | mutex_lock(&kvm->lock); |
Paolo Bonzini | 557abc4 | 2016-06-13 14:50:04 +0200 | [diff] [blame] | 5095 | if (kvm->created_vcpus) |
Paolo Bonzini | d71ba78 | 2015-07-29 11:56:48 +0200 | [diff] [blame] | 5096 | r = -EBUSY; |
| 5097 | else |
| 5098 | kvm->arch.bsp_vcpu_id = arg; |
| 5099 | mutex_unlock(&kvm->lock); |
| 5100 | break; |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 5101 | case KVM_XEN_HVM_CONFIG: { |
Paolo Bonzini | 5177604 | 2017-10-26 15:45:47 +0200 | [diff] [blame] | 5102 | struct kvm_xen_hvm_config xhc; |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 5103 | r = -EFAULT; |
Paolo Bonzini | 5177604 | 2017-10-26 15:45:47 +0200 | [diff] [blame] | 5104 | if (copy_from_user(&xhc, argp, sizeof(xhc))) |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 5105 | goto out; |
| 5106 | r = -EINVAL; |
Paolo Bonzini | 5177604 | 2017-10-26 15:45:47 +0200 | [diff] [blame] | 5107 | if (xhc.flags) |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 5108 | goto out; |
Paolo Bonzini | 5177604 | 2017-10-26 15:45:47 +0200 | [diff] [blame] | 5109 | memcpy(&kvm->arch.xen_hvm_config, &xhc, sizeof(xhc)); |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 5110 | r = 0; |
| 5111 | break; |
| 5112 | } |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 5113 | case KVM_SET_CLOCK: { |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 5114 | struct kvm_clock_data user_ns; |
| 5115 | u64 now_ns; |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 5116 | |
| 5117 | r = -EFAULT; |
| 5118 | if (copy_from_user(&user_ns, argp, sizeof(user_ns))) |
| 5119 | goto out; |
| 5120 | |
| 5121 | r = -EINVAL; |
| 5122 | if (user_ns.flags) |
| 5123 | goto out; |
| 5124 | |
| 5125 | r = 0; |
Radim Krčmář | 0bc48be | 2017-05-16 22:50:00 +0200 | [diff] [blame] | 5126 | /* |
| 5127 | * TODO: userspace has to take care of races with VCPU_RUN, so |
| 5128 | * kvm_gen_update_masterclock() can be cut down to locked |
| 5129 | * pvclock_update_vm_gtod_copy(). |
| 5130 | */ |
| 5131 | kvm_gen_update_masterclock(kvm); |
Marcelo Tosatti | e891a32 | 2017-04-17 12:51:37 -0300 | [diff] [blame] | 5132 | now_ns = get_kvmclock_ns(kvm); |
Paolo Bonzini | 108b249 | 2016-09-01 14:21:03 +0200 | [diff] [blame] | 5133 | kvm->arch.kvmclock_offset += user_ns.clock - now_ns; |
Radim Krčmář | 0bc48be | 2017-05-16 22:50:00 +0200 | [diff] [blame] | 5134 | kvm_make_all_cpus_request(kvm, KVM_REQ_CLOCK_UPDATE); |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 5135 | break; |
| 5136 | } |
| 5137 | case KVM_GET_CLOCK: { |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 5138 | struct kvm_clock_data user_ns; |
| 5139 | u64 now_ns; |
| 5140 | |
Marcelo Tosatti | e891a32 | 2017-04-17 12:51:37 -0300 | [diff] [blame] | 5141 | now_ns = get_kvmclock_ns(kvm); |
Paolo Bonzini | 108b249 | 2016-09-01 14:21:03 +0200 | [diff] [blame] | 5142 | user_ns.clock = now_ns; |
Paolo Bonzini | e3fd9a9 | 2016-11-09 17:48:15 +0100 | [diff] [blame] | 5143 | user_ns.flags = kvm->arch.use_master_clock ? KVM_CLOCK_TSC_STABLE : 0; |
Vasiliy Kulikov | 97e69aa | 2010-10-30 22:54:47 +0400 | [diff] [blame] | 5144 | memset(&user_ns.pad, 0, sizeof(user_ns.pad)); |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 5145 | |
| 5146 | r = -EFAULT; |
| 5147 | if (copy_to_user(argp, &user_ns, sizeof(user_ns))) |
| 5148 | goto out; |
| 5149 | r = 0; |
| 5150 | break; |
| 5151 | } |
Brijesh Singh | 5acc5c0 | 2017-12-04 10:57:26 -0600 | [diff] [blame] | 5152 | case KVM_MEMORY_ENCRYPT_OP: { |
| 5153 | r = -ENOTTY; |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 5154 | if (kvm_x86_ops.mem_enc_op) |
| 5155 | r = kvm_x86_ops.mem_enc_op(kvm, argp); |
Brijesh Singh | 5acc5c0 | 2017-12-04 10:57:26 -0600 | [diff] [blame] | 5156 | break; |
| 5157 | } |
Brijesh Singh | 69eaede | 2017-12-04 10:57:26 -0600 | [diff] [blame] | 5158 | case KVM_MEMORY_ENCRYPT_REG_REGION: { |
| 5159 | struct kvm_enc_region region; |
| 5160 | |
| 5161 | r = -EFAULT; |
| 5162 | if (copy_from_user(®ion, argp, sizeof(region))) |
| 5163 | goto out; |
| 5164 | |
| 5165 | r = -ENOTTY; |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 5166 | if (kvm_x86_ops.mem_enc_reg_region) |
| 5167 | r = kvm_x86_ops.mem_enc_reg_region(kvm, ®ion); |
Brijesh Singh | 69eaede | 2017-12-04 10:57:26 -0600 | [diff] [blame] | 5168 | break; |
| 5169 | } |
| 5170 | case KVM_MEMORY_ENCRYPT_UNREG_REGION: { |
| 5171 | struct kvm_enc_region region; |
| 5172 | |
| 5173 | r = -EFAULT; |
| 5174 | if (copy_from_user(®ion, argp, sizeof(region))) |
| 5175 | goto out; |
| 5176 | |
| 5177 | r = -ENOTTY; |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 5178 | if (kvm_x86_ops.mem_enc_unreg_region) |
| 5179 | r = kvm_x86_ops.mem_enc_unreg_region(kvm, ®ion); |
Brijesh Singh | 69eaede | 2017-12-04 10:57:26 -0600 | [diff] [blame] | 5180 | break; |
| 5181 | } |
Roman Kagan | faeb783 | 2018-02-01 16:48:32 +0300 | [diff] [blame] | 5182 | case KVM_HYPERV_EVENTFD: { |
| 5183 | struct kvm_hyperv_eventfd hvevfd; |
| 5184 | |
| 5185 | r = -EFAULT; |
| 5186 | if (copy_from_user(&hvevfd, argp, sizeof(hvevfd))) |
| 5187 | goto out; |
| 5188 | r = kvm_vm_ioctl_hv_eventfd(kvm, &hvevfd); |
| 5189 | break; |
| 5190 | } |
Eric Hankland | 66bb8a0 | 2019-07-10 18:25:15 -0700 | [diff] [blame] | 5191 | case KVM_SET_PMU_EVENT_FILTER: |
| 5192 | r = kvm_vm_ioctl_set_pmu_event_filter(kvm, argp); |
| 5193 | break; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 5194 | default: |
Paolo Bonzini | ad6260d | 2017-03-27 14:30:40 +0200 | [diff] [blame] | 5195 | r = -ENOTTY; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 5196 | } |
| 5197 | out: |
| 5198 | return r; |
| 5199 | } |
| 5200 | |
Zhang Xiantao | a16b043 | 2007-11-16 14:38:21 +0800 | [diff] [blame] | 5201 | static void kvm_init_msr_list(void) |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 5202 | { |
Paolo Bonzini | 24c29b7 | 2019-10-01 15:18:26 +0200 | [diff] [blame] | 5203 | struct x86_pmu_capability x86_pmu; |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 5204 | u32 dummy[2]; |
Chenyi Qiang | 7a5ee6e | 2019-11-06 14:35:20 +0800 | [diff] [blame] | 5205 | unsigned i; |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 5206 | |
Jim Mattson | e2ada66 | 2019-08-21 11:20:04 -0700 | [diff] [blame] | 5207 | BUILD_BUG_ON_MSG(INTEL_PMC_MAX_FIXED != 4, |
Chenyi Qiang | 7a5ee6e | 2019-11-06 14:35:20 +0800 | [diff] [blame] | 5208 | "Please update the fixed PMCs in msrs_to_saved_all[]"); |
Paolo Bonzini | 24c29b7 | 2019-10-01 15:18:26 +0200 | [diff] [blame] | 5209 | |
| 5210 | perf_get_x86_pmu_capability(&x86_pmu); |
Jim Mattson | e2ada66 | 2019-08-21 11:20:04 -0700 | [diff] [blame] | 5211 | |
Xiaoyao Li | 6cbee2b | 2019-11-13 09:15:21 +0800 | [diff] [blame] | 5212 | num_msrs_to_save = 0; |
| 5213 | num_emulated_msrs = 0; |
| 5214 | num_msr_based_features = 0; |
| 5215 | |
Chenyi Qiang | 7a5ee6e | 2019-11-06 14:35:20 +0800 | [diff] [blame] | 5216 | for (i = 0; i < ARRAY_SIZE(msrs_to_save_all); i++) { |
| 5217 | if (rdmsr_safe(msrs_to_save_all[i], &dummy[0], &dummy[1]) < 0) |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 5218 | continue; |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 5219 | |
| 5220 | /* |
| 5221 | * Even MSRs that are valid in the host may not be exposed |
Paolo Bonzini | 9dbe6cf | 2015-11-12 14:49:17 +0100 | [diff] [blame] | 5222 | * to the guests in some cases. |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 5223 | */ |
Chenyi Qiang | 7a5ee6e | 2019-11-06 14:35:20 +0800 | [diff] [blame] | 5224 | switch (msrs_to_save_all[i]) { |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 5225 | case MSR_IA32_BNDCFGS: |
Liran Alon | 503234b | 2018-09-14 03:25:53 +0300 | [diff] [blame] | 5226 | if (!kvm_mpx_supported()) |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 5227 | continue; |
| 5228 | break; |
Paolo Bonzini | 9dbe6cf | 2015-11-12 14:49:17 +0100 | [diff] [blame] | 5229 | case MSR_TSC_AUX: |
Sean Christopherson | 1390851 | 2020-03-02 15:56:57 -0800 | [diff] [blame] | 5230 | if (!kvm_cpu_cap_has(X86_FEATURE_RDTSCP)) |
Paolo Bonzini | 9dbe6cf | 2015-11-12 14:49:17 +0100 | [diff] [blame] | 5231 | continue; |
| 5232 | break; |
Chao Peng | bf8c55d | 2018-10-24 16:05:14 +0800 | [diff] [blame] | 5233 | case MSR_IA32_RTIT_CTL: |
| 5234 | case MSR_IA32_RTIT_STATUS: |
Sean Christopherson | 7b874c2 | 2020-03-02 15:56:59 -0800 | [diff] [blame] | 5235 | if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT)) |
Chao Peng | bf8c55d | 2018-10-24 16:05:14 +0800 | [diff] [blame] | 5236 | continue; |
| 5237 | break; |
| 5238 | case MSR_IA32_RTIT_CR3_MATCH: |
Sean Christopherson | 7b874c2 | 2020-03-02 15:56:59 -0800 | [diff] [blame] | 5239 | if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) || |
Chao Peng | bf8c55d | 2018-10-24 16:05:14 +0800 | [diff] [blame] | 5240 | !intel_pt_validate_hw_cap(PT_CAP_cr3_filtering)) |
| 5241 | continue; |
| 5242 | break; |
| 5243 | case MSR_IA32_RTIT_OUTPUT_BASE: |
| 5244 | case MSR_IA32_RTIT_OUTPUT_MASK: |
Sean Christopherson | 7b874c2 | 2020-03-02 15:56:59 -0800 | [diff] [blame] | 5245 | if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) || |
Chao Peng | bf8c55d | 2018-10-24 16:05:14 +0800 | [diff] [blame] | 5246 | (!intel_pt_validate_hw_cap(PT_CAP_topa_output) && |
| 5247 | !intel_pt_validate_hw_cap(PT_CAP_single_range_output))) |
| 5248 | continue; |
| 5249 | break; |
| 5250 | case MSR_IA32_RTIT_ADDR0_A ... MSR_IA32_RTIT_ADDR3_B: { |
Sean Christopherson | 7b874c2 | 2020-03-02 15:56:59 -0800 | [diff] [blame] | 5251 | if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT) || |
Chenyi Qiang | 7a5ee6e | 2019-11-06 14:35:20 +0800 | [diff] [blame] | 5252 | msrs_to_save_all[i] - MSR_IA32_RTIT_ADDR0_A >= |
Chao Peng | bf8c55d | 2018-10-24 16:05:14 +0800 | [diff] [blame] | 5253 | intel_pt_validate_hw_cap(PT_CAP_num_address_ranges) * 2) |
| 5254 | continue; |
| 5255 | break; |
Paolo Bonzini | cf05a67 | 2019-10-01 15:33:07 +0200 | [diff] [blame] | 5256 | case MSR_ARCH_PERFMON_PERFCTR0 ... MSR_ARCH_PERFMON_PERFCTR0 + 17: |
Chenyi Qiang | 7a5ee6e | 2019-11-06 14:35:20 +0800 | [diff] [blame] | 5257 | if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_PERFCTR0 >= |
Paolo Bonzini | 24c29b7 | 2019-10-01 15:18:26 +0200 | [diff] [blame] | 5258 | min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp)) |
| 5259 | continue; |
| 5260 | break; |
Paolo Bonzini | cf05a67 | 2019-10-01 15:33:07 +0200 | [diff] [blame] | 5261 | case MSR_ARCH_PERFMON_EVENTSEL0 ... MSR_ARCH_PERFMON_EVENTSEL0 + 17: |
Chenyi Qiang | 7a5ee6e | 2019-11-06 14:35:20 +0800 | [diff] [blame] | 5262 | if (msrs_to_save_all[i] - MSR_ARCH_PERFMON_EVENTSEL0 >= |
Paolo Bonzini | 24c29b7 | 2019-10-01 15:18:26 +0200 | [diff] [blame] | 5263 | min(INTEL_PMC_MAX_GENERIC, x86_pmu.num_counters_gp)) |
| 5264 | continue; |
Chao Peng | bf8c55d | 2018-10-24 16:05:14 +0800 | [diff] [blame] | 5265 | } |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 5266 | default: |
| 5267 | break; |
| 5268 | } |
| 5269 | |
Chenyi Qiang | 7a5ee6e | 2019-11-06 14:35:20 +0800 | [diff] [blame] | 5270 | msrs_to_save[num_msrs_to_save++] = msrs_to_save_all[i]; |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 5271 | } |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 5272 | |
Chenyi Qiang | 7a5ee6e | 2019-11-06 14:35:20 +0800 | [diff] [blame] | 5273 | for (i = 0; i < ARRAY_SIZE(emulated_msrs_all); i++) { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 5274 | if (!kvm_x86_ops.has_emulated_msr(emulated_msrs_all[i])) |
Tom Lendacky | bc226f0 | 2018-05-10 22:06:39 +0200 | [diff] [blame] | 5275 | continue; |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 5276 | |
Chenyi Qiang | 7a5ee6e | 2019-11-06 14:35:20 +0800 | [diff] [blame] | 5277 | emulated_msrs[num_emulated_msrs++] = emulated_msrs_all[i]; |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 5278 | } |
Tom Lendacky | 801e459 | 2018-02-21 13:39:51 -0600 | [diff] [blame] | 5279 | |
Chenyi Qiang | 7a5ee6e | 2019-11-06 14:35:20 +0800 | [diff] [blame] | 5280 | for (i = 0; i < ARRAY_SIZE(msr_based_features_all); i++) { |
Tom Lendacky | 801e459 | 2018-02-21 13:39:51 -0600 | [diff] [blame] | 5281 | struct kvm_msr_entry msr; |
| 5282 | |
Chenyi Qiang | 7a5ee6e | 2019-11-06 14:35:20 +0800 | [diff] [blame] | 5283 | msr.index = msr_based_features_all[i]; |
Wanpeng Li | 66421c1 | 2018-02-28 14:03:30 +0800 | [diff] [blame] | 5284 | if (kvm_get_msr_feature(&msr)) |
Tom Lendacky | 801e459 | 2018-02-21 13:39:51 -0600 | [diff] [blame] | 5285 | continue; |
| 5286 | |
Chenyi Qiang | 7a5ee6e | 2019-11-06 14:35:20 +0800 | [diff] [blame] | 5287 | msr_based_features[num_msr_based_features++] = msr_based_features_all[i]; |
Tom Lendacky | 801e459 | 2018-02-21 13:39:51 -0600 | [diff] [blame] | 5288 | } |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 5289 | } |
| 5290 | |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 5291 | static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len, |
| 5292 | const void *v) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5293 | { |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 5294 | int handled = 0; |
| 5295 | int n; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5296 | |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 5297 | do { |
| 5298 | n = min(len, 8); |
Paolo Bonzini | bce87cc | 2016-01-08 13:48:51 +0100 | [diff] [blame] | 5299 | if (!(lapic_in_kernel(vcpu) && |
Nikolay Nikolaev | e32edf4 | 2015-03-26 14:39:28 +0000 | [diff] [blame] | 5300 | !kvm_iodevice_write(vcpu, &vcpu->arch.apic->dev, addr, n, v)) |
| 5301 | && kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, n, v)) |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 5302 | break; |
| 5303 | handled += n; |
| 5304 | addr += n; |
| 5305 | len -= n; |
| 5306 | v += n; |
| 5307 | } while (len); |
| 5308 | |
| 5309 | return handled; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5310 | } |
| 5311 | |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 5312 | 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] | 5313 | { |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 5314 | int handled = 0; |
| 5315 | int n; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5316 | |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 5317 | do { |
| 5318 | n = min(len, 8); |
Paolo Bonzini | bce87cc | 2016-01-08 13:48:51 +0100 | [diff] [blame] | 5319 | if (!(lapic_in_kernel(vcpu) && |
Nikolay Nikolaev | e32edf4 | 2015-03-26 14:39:28 +0000 | [diff] [blame] | 5320 | !kvm_iodevice_read(vcpu, &vcpu->arch.apic->dev, |
| 5321 | addr, n, v)) |
| 5322 | && kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, n, v)) |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 5323 | break; |
Wanpeng Li | e39d200f | 2017-12-14 17:40:50 -0800 | [diff] [blame] | 5324 | trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, v); |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 5325 | handled += n; |
| 5326 | addr += n; |
| 5327 | len -= n; |
| 5328 | v += n; |
| 5329 | } while (len); |
| 5330 | |
| 5331 | return handled; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5332 | } |
| 5333 | |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 5334 | static void kvm_set_segment(struct kvm_vcpu *vcpu, |
| 5335 | struct kvm_segment *var, int seg) |
| 5336 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 5337 | kvm_x86_ops.set_segment(vcpu, var, seg); |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 5338 | } |
| 5339 | |
| 5340 | void kvm_get_segment(struct kvm_vcpu *vcpu, |
| 5341 | struct kvm_segment *var, int seg) |
| 5342 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 5343 | kvm_x86_ops.get_segment(vcpu, var, seg); |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 5344 | } |
| 5345 | |
Paolo Bonzini | 54987b7 | 2014-09-02 13:23:06 +0200 | [diff] [blame] | 5346 | gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access, |
| 5347 | struct x86_exception *exception) |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 5348 | { |
| 5349 | gpa_t t_gpa; |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 5350 | |
| 5351 | BUG_ON(!mmu_is_nested(vcpu)); |
| 5352 | |
| 5353 | /* NPT walks are always user-walks */ |
| 5354 | access |= PFERR_USER_MASK; |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 5355 | t_gpa = vcpu->arch.mmu->gva_to_gpa(vcpu, gpa, access, exception); |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 5356 | |
| 5357 | return t_gpa; |
| 5358 | } |
| 5359 | |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 5360 | gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva, |
| 5361 | struct x86_exception *exception) |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 5362 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 5363 | 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] | 5364 | return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 5365 | } |
| 5366 | |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 5367 | gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva, |
| 5368 | struct x86_exception *exception) |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 5369 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 5370 | u32 access = (kvm_x86_ops.get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0; |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 5371 | access |= PFERR_FETCH_MASK; |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 5372 | return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 5373 | } |
| 5374 | |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 5375 | gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva, |
| 5376 | struct x86_exception *exception) |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 5377 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 5378 | u32 access = (kvm_x86_ops.get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0; |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 5379 | access |= PFERR_WRITE_MASK; |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 5380 | return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 5381 | } |
| 5382 | |
| 5383 | /* uses this to access any guest's mapped memory without checking CPL */ |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 5384 | gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva, |
| 5385 | struct x86_exception *exception) |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 5386 | { |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 5387 | return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, 0, exception); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 5388 | } |
| 5389 | |
| 5390 | static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes, |
| 5391 | struct kvm_vcpu *vcpu, u32 access, |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 5392 | struct x86_exception *exception) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5393 | { |
| 5394 | void *data = val; |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 5395 | int r = X86EMUL_CONTINUE; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5396 | |
| 5397 | while (bytes) { |
Joerg Roedel | 14dfe85 | 2010-09-10 17:30:49 +0200 | [diff] [blame] | 5398 | 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] | 5399 | exception); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5400 | unsigned offset = addr & (PAGE_SIZE-1); |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 5401 | unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5402 | int ret; |
| 5403 | |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 5404 | if (gpa == UNMAPPED_GVA) |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 5405 | return X86EMUL_PROPAGATE_FAULT; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 5406 | ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, data, |
| 5407 | offset, toread); |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 5408 | if (ret < 0) { |
Gleb Natapov | c3cd7ff | 2010-04-28 19:15:35 +0300 | [diff] [blame] | 5409 | r = X86EMUL_IO_NEEDED; |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 5410 | goto out; |
| 5411 | } |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5412 | |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 5413 | bytes -= toread; |
| 5414 | data += toread; |
| 5415 | addr += toread; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5416 | } |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 5417 | out: |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 5418 | return r; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5419 | } |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 5420 | |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 5421 | /* used for instruction fetching */ |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 5422 | static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt, |
| 5423 | gva_t addr, void *val, unsigned int bytes, |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 5424 | struct x86_exception *exception) |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 5425 | { |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 5426 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 5427 | 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] | 5428 | unsigned offset; |
| 5429 | int ret; |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 5430 | |
Paolo Bonzini | 44583cb | 2014-05-13 14:02:13 +0200 | [diff] [blame] | 5431 | /* Inline kvm_read_guest_virt_helper for speed. */ |
| 5432 | gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access|PFERR_FETCH_MASK, |
| 5433 | exception); |
| 5434 | if (unlikely(gpa == UNMAPPED_GVA)) |
| 5435 | return X86EMUL_PROPAGATE_FAULT; |
| 5436 | |
| 5437 | offset = addr & (PAGE_SIZE-1); |
| 5438 | if (WARN_ON(offset + bytes > PAGE_SIZE)) |
| 5439 | bytes = (unsigned)PAGE_SIZE - offset; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 5440 | ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, val, |
| 5441 | offset, bytes); |
Paolo Bonzini | 44583cb | 2014-05-13 14:02:13 +0200 | [diff] [blame] | 5442 | if (unlikely(ret < 0)) |
| 5443 | return X86EMUL_IO_NEEDED; |
| 5444 | |
| 5445 | return X86EMUL_CONTINUE; |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 5446 | } |
| 5447 | |
Paolo Bonzini | ce14e868a | 2018-06-06 17:37:49 +0200 | [diff] [blame] | 5448 | int kvm_read_guest_virt(struct kvm_vcpu *vcpu, |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 5449 | gva_t addr, void *val, unsigned int bytes, |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 5450 | struct x86_exception *exception) |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 5451 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 5452 | 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] | 5453 | |
Paolo Bonzini | 353c095 | 2019-01-29 18:41:16 +0100 | [diff] [blame] | 5454 | /* |
| 5455 | * FIXME: this should call handle_emulation_failure if X86EMUL_IO_NEEDED |
| 5456 | * is returned, but our callers are not ready for that and they blindly |
| 5457 | * call kvm_inject_page_fault. Ensure that they at least do not leak |
| 5458 | * uninitialized kernel stack memory into cr2 and error code. |
| 5459 | */ |
| 5460 | memset(exception, 0, sizeof(*exception)); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 5461 | return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access, |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 5462 | exception); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 5463 | } |
Nadav Har'El | 064aea7 | 2011-05-25 23:04:56 +0300 | [diff] [blame] | 5464 | EXPORT_SYMBOL_GPL(kvm_read_guest_virt); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 5465 | |
Paolo Bonzini | ce14e868a | 2018-06-06 17:37:49 +0200 | [diff] [blame] | 5466 | static int emulator_read_std(struct x86_emulate_ctxt *ctxt, |
| 5467 | gva_t addr, void *val, unsigned int bytes, |
Paolo Bonzini | 3c9fa24 | 2018-06-06 17:38:09 +0200 | [diff] [blame] | 5468 | struct x86_exception *exception, bool system) |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 5469 | { |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 5470 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Paolo Bonzini | 3c9fa24 | 2018-06-06 17:38:09 +0200 | [diff] [blame] | 5471 | u32 access = 0; |
| 5472 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 5473 | if (!system && kvm_x86_ops.get_cpl(vcpu) == 3) |
Paolo Bonzini | 3c9fa24 | 2018-06-06 17:38:09 +0200 | [diff] [blame] | 5474 | access |= PFERR_USER_MASK; |
| 5475 | |
| 5476 | return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access, exception); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 5477 | } |
| 5478 | |
Radim Krčmář | 7a036a6 | 2015-10-30 16:36:24 +0100 | [diff] [blame] | 5479 | static int kvm_read_guest_phys_system(struct x86_emulate_ctxt *ctxt, |
| 5480 | unsigned long addr, void *val, unsigned int bytes) |
| 5481 | { |
| 5482 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
| 5483 | int r = kvm_vcpu_read_guest(vcpu, addr, val, bytes); |
| 5484 | |
| 5485 | return r < 0 ? X86EMUL_IO_NEEDED : X86EMUL_CONTINUE; |
| 5486 | } |
| 5487 | |
Paolo Bonzini | ce14e868a | 2018-06-06 17:37:49 +0200 | [diff] [blame] | 5488 | static int kvm_write_guest_virt_helper(gva_t addr, void *val, unsigned int bytes, |
| 5489 | struct kvm_vcpu *vcpu, u32 access, |
| 5490 | struct x86_exception *exception) |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 5491 | { |
| 5492 | void *data = val; |
| 5493 | int r = X86EMUL_CONTINUE; |
| 5494 | |
| 5495 | while (bytes) { |
Joerg Roedel | 14dfe85 | 2010-09-10 17:30:49 +0200 | [diff] [blame] | 5496 | gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, |
Paolo Bonzini | ce14e868a | 2018-06-06 17:37:49 +0200 | [diff] [blame] | 5497 | access, |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 5498 | exception); |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 5499 | unsigned offset = addr & (PAGE_SIZE-1); |
| 5500 | unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset); |
| 5501 | int ret; |
| 5502 | |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 5503 | if (gpa == UNMAPPED_GVA) |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 5504 | return X86EMUL_PROPAGATE_FAULT; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 5505 | ret = kvm_vcpu_write_guest(vcpu, gpa, data, towrite); |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 5506 | if (ret < 0) { |
Gleb Natapov | c3cd7ff | 2010-04-28 19:15:35 +0300 | [diff] [blame] | 5507 | r = X86EMUL_IO_NEEDED; |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 5508 | goto out; |
| 5509 | } |
| 5510 | |
| 5511 | bytes -= towrite; |
| 5512 | data += towrite; |
| 5513 | addr += towrite; |
| 5514 | } |
| 5515 | out: |
| 5516 | return r; |
| 5517 | } |
Paolo Bonzini | ce14e868a | 2018-06-06 17:37:49 +0200 | [diff] [blame] | 5518 | |
| 5519 | static int emulator_write_std(struct x86_emulate_ctxt *ctxt, gva_t addr, void *val, |
Paolo Bonzini | 3c9fa24 | 2018-06-06 17:38:09 +0200 | [diff] [blame] | 5520 | unsigned int bytes, struct x86_exception *exception, |
| 5521 | bool system) |
Paolo Bonzini | ce14e868a | 2018-06-06 17:37:49 +0200 | [diff] [blame] | 5522 | { |
| 5523 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Paolo Bonzini | 3c9fa24 | 2018-06-06 17:38:09 +0200 | [diff] [blame] | 5524 | u32 access = PFERR_WRITE_MASK; |
| 5525 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 5526 | if (!system && kvm_x86_ops.get_cpl(vcpu) == 3) |
Paolo Bonzini | 3c9fa24 | 2018-06-06 17:38:09 +0200 | [diff] [blame] | 5527 | access |= PFERR_USER_MASK; |
Paolo Bonzini | ce14e868a | 2018-06-06 17:37:49 +0200 | [diff] [blame] | 5528 | |
| 5529 | return kvm_write_guest_virt_helper(addr, val, bytes, vcpu, |
Paolo Bonzini | 3c9fa24 | 2018-06-06 17:38:09 +0200 | [diff] [blame] | 5530 | access, exception); |
Paolo Bonzini | ce14e868a | 2018-06-06 17:37:49 +0200 | [diff] [blame] | 5531 | } |
| 5532 | |
| 5533 | int kvm_write_guest_virt_system(struct kvm_vcpu *vcpu, gva_t addr, void *val, |
| 5534 | unsigned int bytes, struct x86_exception *exception) |
| 5535 | { |
Paolo Bonzini | c595cee | 2018-07-02 13:07:14 +0200 | [diff] [blame] | 5536 | /* kvm_write_guest_virt_system can pull in tons of pages. */ |
| 5537 | vcpu->arch.l1tf_flush_l1d = true; |
| 5538 | |
Fuqian Huang | 541ab2a | 2019-09-12 12:18:17 +0800 | [diff] [blame] | 5539 | /* |
| 5540 | * FIXME: this should call handle_emulation_failure if X86EMUL_IO_NEEDED |
| 5541 | * is returned, but our callers are not ready for that and they blindly |
| 5542 | * call kvm_inject_page_fault. Ensure that they at least do not leak |
| 5543 | * uninitialized kernel stack memory into cr2 and error code. |
| 5544 | */ |
| 5545 | memset(exception, 0, sizeof(*exception)); |
Paolo Bonzini | ce14e868a | 2018-06-06 17:37:49 +0200 | [diff] [blame] | 5546 | return kvm_write_guest_virt_helper(addr, val, bytes, vcpu, |
| 5547 | PFERR_WRITE_MASK, exception); |
| 5548 | } |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 5549 | EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system); |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 5550 | |
Wanpeng Li | 082d06e | 2018-04-03 16:28:48 -0700 | [diff] [blame] | 5551 | int handle_ud(struct kvm_vcpu *vcpu) |
| 5552 | { |
Masami Hiramatsu | b3dc069 | 2019-09-06 22:13:59 +0900 | [diff] [blame] | 5553 | static const char kvm_emulate_prefix[] = { __KVM_EMULATE_PREFIX }; |
Wanpeng Li | 6c86eed | 2018-04-03 16:28:49 -0700 | [diff] [blame] | 5554 | int emul_type = EMULTYPE_TRAP_UD; |
Wanpeng Li | 6c86eed | 2018-04-03 16:28:49 -0700 | [diff] [blame] | 5555 | char sig[5]; /* ud2; .ascii "kvm" */ |
| 5556 | struct x86_exception e; |
Wanpeng Li | 082d06e | 2018-04-03 16:28:48 -0700 | [diff] [blame] | 5557 | |
Wanpeng Li | 6c86eed | 2018-04-03 16:28:49 -0700 | [diff] [blame] | 5558 | if (force_emulation_prefix && |
Paolo Bonzini | 3c9fa24 | 2018-06-06 17:38:09 +0200 | [diff] [blame] | 5559 | kvm_read_guest_virt(vcpu, kvm_get_linear_rip(vcpu), |
| 5560 | sig, sizeof(sig), &e) == 0 && |
Masami Hiramatsu | b3dc069 | 2019-09-06 22:13:59 +0900 | [diff] [blame] | 5561 | memcmp(sig, kvm_emulate_prefix, sizeof(sig)) == 0) { |
Wanpeng Li | 6c86eed | 2018-04-03 16:28:49 -0700 | [diff] [blame] | 5562 | kvm_rip_write(vcpu, kvm_rip_read(vcpu) + sizeof(sig)); |
Sean Christopherson | b400060 | 2019-08-27 14:40:32 -0700 | [diff] [blame] | 5563 | emul_type = EMULTYPE_TRAP_UD_FORCED; |
Wanpeng Li | 6c86eed | 2018-04-03 16:28:49 -0700 | [diff] [blame] | 5564 | } |
| 5565 | |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 5566 | return kvm_emulate_instruction(vcpu, emul_type); |
Wanpeng Li | 082d06e | 2018-04-03 16:28:48 -0700 | [diff] [blame] | 5567 | } |
| 5568 | EXPORT_SYMBOL_GPL(handle_ud); |
| 5569 | |
Tom Lendacky | 0f89b20 | 2016-12-14 14:59:23 -0500 | [diff] [blame] | 5570 | static int vcpu_is_mmio_gpa(struct kvm_vcpu *vcpu, unsigned long gva, |
| 5571 | gpa_t gpa, bool write) |
| 5572 | { |
| 5573 | /* For APIC access vmexit */ |
| 5574 | if ((gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE) |
| 5575 | return 1; |
| 5576 | |
| 5577 | if (vcpu_match_mmio_gpa(vcpu, gpa)) { |
| 5578 | trace_vcpu_match_mmio(gva, gpa, write, true); |
| 5579 | return 1; |
| 5580 | } |
| 5581 | |
| 5582 | return 0; |
| 5583 | } |
| 5584 | |
Xiao Guangrong | af7cc7d | 2011-07-12 03:22:46 +0800 | [diff] [blame] | 5585 | static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva, |
| 5586 | gpa_t *gpa, struct x86_exception *exception, |
| 5587 | bool write) |
| 5588 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 5589 | u32 access = ((kvm_x86_ops.get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0) |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 5590 | | (write ? PFERR_WRITE_MASK : 0); |
Xiao Guangrong | af7cc7d | 2011-07-12 03:22:46 +0800 | [diff] [blame] | 5591 | |
Huaitong Han | be94f6b | 2016-03-22 16:51:20 +0800 | [diff] [blame] | 5592 | /* |
| 5593 | * currently PKRU is only applied to ept enabled guest so |
| 5594 | * there is no pkey in EPT page table for L1 guest or EPT |
| 5595 | * shadow page table for L2 guest. |
| 5596 | */ |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 5597 | if (vcpu_match_mmio_gva(vcpu, gva) |
Feng Wu | 97ec8c0 | 2014-04-01 17:46:34 +0800 | [diff] [blame] | 5598 | && !permission_fault(vcpu, vcpu->arch.walk_mmu, |
Sean Christopherson | 871bd03 | 2019-08-01 13:35:21 -0700 | [diff] [blame] | 5599 | vcpu->arch.mmio_access, 0, access)) { |
Xiao Guangrong | bebb106 | 2011-07-12 03:23:20 +0800 | [diff] [blame] | 5600 | *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT | |
| 5601 | (gva & (PAGE_SIZE - 1)); |
Xiao Guangrong | 4f02264 | 2011-07-12 03:34:24 +0800 | [diff] [blame] | 5602 | trace_vcpu_match_mmio(gva, *gpa, write, false); |
Xiao Guangrong | bebb106 | 2011-07-12 03:23:20 +0800 | [diff] [blame] | 5603 | return 1; |
| 5604 | } |
| 5605 | |
Xiao Guangrong | af7cc7d | 2011-07-12 03:22:46 +0800 | [diff] [blame] | 5606 | *gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception); |
| 5607 | |
| 5608 | if (*gpa == UNMAPPED_GVA) |
| 5609 | return -1; |
| 5610 | |
Tom Lendacky | 0f89b20 | 2016-12-14 14:59:23 -0500 | [diff] [blame] | 5611 | return vcpu_is_mmio_gpa(vcpu, gva, *gpa, write); |
Xiao Guangrong | af7cc7d | 2011-07-12 03:22:46 +0800 | [diff] [blame] | 5612 | } |
| 5613 | |
Marcelo Tosatti | 3200f40 | 2008-03-29 20:17:59 -0300 | [diff] [blame] | 5614 | int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa, |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 5615 | const void *val, int bytes) |
Avi Kivity | 9f81128 | 2008-03-02 14:06:05 +0200 | [diff] [blame] | 5616 | { |
| 5617 | int ret; |
| 5618 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 5619 | ret = kvm_vcpu_write_guest(vcpu, gpa, val, bytes); |
Avi Kivity | 9f81128 | 2008-03-02 14:06:05 +0200 | [diff] [blame] | 5620 | if (ret < 0) |
| 5621 | return 0; |
Xiao Guangrong | 0eb05bf | 2016-02-24 17:51:13 +0800 | [diff] [blame] | 5622 | kvm_page_track_write(vcpu, gpa, val, bytes); |
Avi Kivity | 9f81128 | 2008-03-02 14:06:05 +0200 | [diff] [blame] | 5623 | return 1; |
| 5624 | } |
| 5625 | |
Xiao Guangrong | 77d197b | 2011-07-13 14:31:50 +0800 | [diff] [blame] | 5626 | struct read_write_emulator_ops { |
| 5627 | int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val, |
| 5628 | int bytes); |
| 5629 | int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa, |
| 5630 | void *val, int bytes); |
| 5631 | int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa, |
| 5632 | int bytes, void *val); |
| 5633 | int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa, |
| 5634 | void *val, int bytes); |
| 5635 | bool write; |
| 5636 | }; |
| 5637 | |
| 5638 | static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes) |
| 5639 | { |
| 5640 | if (vcpu->mmio_read_completed) { |
Xiao Guangrong | 77d197b | 2011-07-13 14:31:50 +0800 | [diff] [blame] | 5641 | trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes, |
Wanpeng Li | e39d200f | 2017-12-14 17:40:50 -0800 | [diff] [blame] | 5642 | vcpu->mmio_fragments[0].gpa, val); |
Xiao Guangrong | 77d197b | 2011-07-13 14:31:50 +0800 | [diff] [blame] | 5643 | vcpu->mmio_read_completed = 0; |
| 5644 | return 1; |
| 5645 | } |
| 5646 | |
| 5647 | return 0; |
| 5648 | } |
| 5649 | |
| 5650 | static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa, |
| 5651 | void *val, int bytes) |
| 5652 | { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 5653 | return !kvm_vcpu_read_guest(vcpu, gpa, val, bytes); |
Xiao Guangrong | 77d197b | 2011-07-13 14:31:50 +0800 | [diff] [blame] | 5654 | } |
| 5655 | |
| 5656 | static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa, |
| 5657 | void *val, int bytes) |
| 5658 | { |
| 5659 | return emulator_write_phys(vcpu, gpa, val, bytes); |
| 5660 | } |
| 5661 | |
| 5662 | static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val) |
| 5663 | { |
Wanpeng Li | e39d200f | 2017-12-14 17:40:50 -0800 | [diff] [blame] | 5664 | trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, val); |
Xiao Guangrong | 77d197b | 2011-07-13 14:31:50 +0800 | [diff] [blame] | 5665 | return vcpu_mmio_write(vcpu, gpa, bytes, val); |
| 5666 | } |
| 5667 | |
| 5668 | static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, |
| 5669 | void *val, int bytes) |
| 5670 | { |
Wanpeng Li | e39d200f | 2017-12-14 17:40:50 -0800 | [diff] [blame] | 5671 | trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, NULL); |
Xiao Guangrong | 77d197b | 2011-07-13 14:31:50 +0800 | [diff] [blame] | 5672 | return X86EMUL_IO_NEEDED; |
| 5673 | } |
| 5674 | |
| 5675 | static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, |
| 5676 | void *val, int bytes) |
| 5677 | { |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 5678 | struct kvm_mmio_fragment *frag = &vcpu->mmio_fragments[0]; |
| 5679 | |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 5680 | memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len)); |
Xiao Guangrong | 77d197b | 2011-07-13 14:31:50 +0800 | [diff] [blame] | 5681 | return X86EMUL_CONTINUE; |
| 5682 | } |
| 5683 | |
Mathias Krause | 0fbe9b0 | 2012-08-30 01:30:17 +0200 | [diff] [blame] | 5684 | static const struct read_write_emulator_ops read_emultor = { |
Xiao Guangrong | 77d197b | 2011-07-13 14:31:50 +0800 | [diff] [blame] | 5685 | .read_write_prepare = read_prepare, |
| 5686 | .read_write_emulate = read_emulate, |
| 5687 | .read_write_mmio = vcpu_mmio_read, |
| 5688 | .read_write_exit_mmio = read_exit_mmio, |
| 5689 | }; |
| 5690 | |
Mathias Krause | 0fbe9b0 | 2012-08-30 01:30:17 +0200 | [diff] [blame] | 5691 | static const struct read_write_emulator_ops write_emultor = { |
Xiao Guangrong | 77d197b | 2011-07-13 14:31:50 +0800 | [diff] [blame] | 5692 | .read_write_emulate = write_emulate, |
| 5693 | .read_write_mmio = write_mmio, |
| 5694 | .read_write_exit_mmio = write_exit_mmio, |
| 5695 | .write = true, |
| 5696 | }; |
| 5697 | |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 5698 | static int emulator_read_write_onepage(unsigned long addr, void *val, |
| 5699 | unsigned int bytes, |
| 5700 | struct x86_exception *exception, |
| 5701 | struct kvm_vcpu *vcpu, |
Mathias Krause | 0fbe9b0 | 2012-08-30 01:30:17 +0200 | [diff] [blame] | 5702 | const struct read_write_emulator_ops *ops) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5703 | { |
Xiao Guangrong | af7cc7d | 2011-07-12 03:22:46 +0800 | [diff] [blame] | 5704 | gpa_t gpa; |
| 5705 | int handled, ret; |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 5706 | bool write = ops->write; |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 5707 | struct kvm_mmio_fragment *frag; |
Sean Christopherson | c9b8b07 | 2020-02-18 15:29:48 -0800 | [diff] [blame] | 5708 | struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt; |
Tom Lendacky | 0f89b20 | 2016-12-14 14:59:23 -0500 | [diff] [blame] | 5709 | |
| 5710 | /* |
| 5711 | * If the exit was due to a NPF we may already have a GPA. |
| 5712 | * If the GPA is present, use it to avoid the GVA to GPA table walk. |
| 5713 | * Note, this cannot be used on string operations since string |
| 5714 | * operation using rep will only have the initial GPA from the NPF |
| 5715 | * occurred. |
| 5716 | */ |
Sean Christopherson | 744e699 | 2020-02-18 15:03:09 -0800 | [diff] [blame] | 5717 | if (ctxt->gpa_available && emulator_can_use_gpa(ctxt) && |
| 5718 | (addr & ~PAGE_MASK) == (ctxt->gpa_val & ~PAGE_MASK)) { |
| 5719 | gpa = ctxt->gpa_val; |
Brijesh Singh | 618232e | 2017-08-17 18:36:57 +0200 | [diff] [blame] | 5720 | ret = vcpu_is_mmio_gpa(vcpu, addr, gpa, write); |
| 5721 | } else { |
| 5722 | ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write); |
| 5723 | if (ret < 0) |
| 5724 | return X86EMUL_PROPAGATE_FAULT; |
Tom Lendacky | 0f89b20 | 2016-12-14 14:59:23 -0500 | [diff] [blame] | 5725 | } |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 5726 | |
Brijesh Singh | 618232e | 2017-08-17 18:36:57 +0200 | [diff] [blame] | 5727 | if (!ret && ops->read_write_emulate(vcpu, gpa, val, bytes)) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5728 | return X86EMUL_CONTINUE; |
| 5729 | |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5730 | /* |
| 5731 | * Is this MMIO handled locally? |
| 5732 | */ |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 5733 | handled = ops->read_write_mmio(vcpu, gpa, bytes, val); |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 5734 | if (handled == bytes) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5735 | return X86EMUL_CONTINUE; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5736 | |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 5737 | gpa += handled; |
| 5738 | bytes -= handled; |
| 5739 | val += handled; |
| 5740 | |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 5741 | WARN_ON(vcpu->mmio_nr_fragments >= KVM_MAX_MMIO_FRAGMENTS); |
| 5742 | frag = &vcpu->mmio_fragments[vcpu->mmio_nr_fragments++]; |
| 5743 | frag->gpa = gpa; |
| 5744 | frag->data = val; |
| 5745 | frag->len = bytes; |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 5746 | return X86EMUL_CONTINUE; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5747 | } |
| 5748 | |
Xiubo Li | 52eb5a6 | 2015-03-13 17:39:45 +0800 | [diff] [blame] | 5749 | static int emulator_read_write(struct x86_emulate_ctxt *ctxt, |
| 5750 | unsigned long addr, |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 5751 | void *val, unsigned int bytes, |
| 5752 | struct x86_exception *exception, |
Mathias Krause | 0fbe9b0 | 2012-08-30 01:30:17 +0200 | [diff] [blame] | 5753 | const struct read_write_emulator_ops *ops) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5754 | { |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 5755 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 5756 | gpa_t gpa; |
| 5757 | int rc; |
| 5758 | |
| 5759 | if (ops->read_write_prepare && |
| 5760 | ops->read_write_prepare(vcpu, val, bytes)) |
| 5761 | return X86EMUL_CONTINUE; |
| 5762 | |
| 5763 | vcpu->mmio_nr_fragments = 0; |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 5764 | |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5765 | /* Crossing a page boundary? */ |
| 5766 | if (((addr + bytes - 1) ^ addr) & PAGE_MASK) { |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 5767 | int now; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5768 | |
| 5769 | now = -addr & ~PAGE_MASK; |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 5770 | rc = emulator_read_write_onepage(addr, val, now, exception, |
| 5771 | vcpu, ops); |
| 5772 | |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5773 | if (rc != X86EMUL_CONTINUE) |
| 5774 | return rc; |
| 5775 | addr += now; |
Nadav Amit | bac15531 | 2015-01-26 09:32:26 +0200 | [diff] [blame] | 5776 | if (ctxt->mode != X86EMUL_MODE_PROT64) |
| 5777 | addr = (u32)addr; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5778 | val += now; |
| 5779 | bytes -= now; |
| 5780 | } |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 5781 | |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 5782 | rc = emulator_read_write_onepage(addr, val, bytes, exception, |
| 5783 | vcpu, ops); |
| 5784 | if (rc != X86EMUL_CONTINUE) |
| 5785 | return rc; |
| 5786 | |
| 5787 | if (!vcpu->mmio_nr_fragments) |
| 5788 | return rc; |
| 5789 | |
| 5790 | gpa = vcpu->mmio_fragments[0].gpa; |
| 5791 | |
| 5792 | vcpu->mmio_needed = 1; |
| 5793 | vcpu->mmio_cur_fragment = 0; |
| 5794 | |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 5795 | vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len); |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 5796 | vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write; |
| 5797 | vcpu->run->exit_reason = KVM_EXIT_MMIO; |
| 5798 | vcpu->run->mmio.phys_addr = gpa; |
| 5799 | |
| 5800 | return ops->read_write_exit_mmio(vcpu, gpa, val, bytes); |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 5801 | } |
| 5802 | |
| 5803 | static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt, |
| 5804 | unsigned long addr, |
| 5805 | void *val, |
| 5806 | unsigned int bytes, |
| 5807 | struct x86_exception *exception) |
| 5808 | { |
| 5809 | return emulator_read_write(ctxt, addr, val, bytes, |
| 5810 | exception, &read_emultor); |
| 5811 | } |
| 5812 | |
Xiubo Li | 52eb5a6 | 2015-03-13 17:39:45 +0800 | [diff] [blame] | 5813 | static int emulator_write_emulated(struct x86_emulate_ctxt *ctxt, |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 5814 | unsigned long addr, |
| 5815 | const void *val, |
| 5816 | unsigned int bytes, |
| 5817 | struct x86_exception *exception) |
| 5818 | { |
| 5819 | return emulator_read_write(ctxt, addr, (void *)val, bytes, |
| 5820 | exception, &write_emultor); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5821 | } |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5822 | |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 5823 | #define CMPXCHG_TYPE(t, ptr, old, new) \ |
| 5824 | (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old)) |
| 5825 | |
| 5826 | #ifdef CONFIG_X86_64 |
| 5827 | # define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new) |
| 5828 | #else |
| 5829 | # define CMPXCHG64(ptr, old, new) \ |
Jan Kiszka | 9749a6c | 2010-03-20 10:14:13 +0100 | [diff] [blame] | 5830 | (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old)) |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 5831 | #endif |
| 5832 | |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 5833 | static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt, |
| 5834 | unsigned long addr, |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5835 | const void *old, |
| 5836 | const void *new, |
| 5837 | unsigned int bytes, |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 5838 | struct x86_exception *exception) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5839 | { |
KarimAllah Ahmed | 42e35f8 | 2019-01-31 21:24:39 +0100 | [diff] [blame] | 5840 | struct kvm_host_map map; |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 5841 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 5842 | gpa_t gpa; |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 5843 | char *kaddr; |
| 5844 | bool exchanged; |
| 5845 | |
Marcelo Tosatti | 2bacc55 | 2007-12-12 10:46:12 -0500 | [diff] [blame] | 5846 | /* guests cmpxchg8b have to be emulated atomically */ |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 5847 | if (bytes > 8 || (bytes & (bytes - 1))) |
| 5848 | goto emul_write; |
Marcelo Tosatti | 2bacc55 | 2007-12-12 10:46:12 -0500 | [diff] [blame] | 5849 | |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 5850 | gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL); |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 5851 | |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 5852 | if (gpa == UNMAPPED_GVA || |
| 5853 | (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE) |
| 5854 | goto emul_write; |
Marcelo Tosatti | 2bacc55 | 2007-12-12 10:46:12 -0500 | [diff] [blame] | 5855 | |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 5856 | if (((gpa + bytes - 1) & PAGE_MASK) != (gpa & PAGE_MASK)) |
| 5857 | goto emul_write; |
Marcelo Tosatti | 2bacc55 | 2007-12-12 10:46:12 -0500 | [diff] [blame] | 5858 | |
KarimAllah Ahmed | 42e35f8 | 2019-01-31 21:24:39 +0100 | [diff] [blame] | 5859 | if (kvm_vcpu_map(vcpu, gpa_to_gfn(gpa), &map)) |
Wei Yongjun | c19b8bd | 2010-07-15 08:51:58 +0800 | [diff] [blame] | 5860 | goto emul_write; |
Izik Eidus | 72dc67a | 2008-02-10 18:04:15 +0200 | [diff] [blame] | 5861 | |
KarimAllah Ahmed | 42e35f8 | 2019-01-31 21:24:39 +0100 | [diff] [blame] | 5862 | kaddr = map.hva + offset_in_page(gpa); |
| 5863 | |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 5864 | switch (bytes) { |
| 5865 | case 1: |
| 5866 | exchanged = CMPXCHG_TYPE(u8, kaddr, old, new); |
| 5867 | break; |
| 5868 | case 2: |
| 5869 | exchanged = CMPXCHG_TYPE(u16, kaddr, old, new); |
| 5870 | break; |
| 5871 | case 4: |
| 5872 | exchanged = CMPXCHG_TYPE(u32, kaddr, old, new); |
| 5873 | break; |
| 5874 | case 8: |
| 5875 | exchanged = CMPXCHG64(kaddr, old, new); |
| 5876 | break; |
| 5877 | default: |
| 5878 | BUG(); |
Marcelo Tosatti | 2bacc55 | 2007-12-12 10:46:12 -0500 | [diff] [blame] | 5879 | } |
KarimAllah Ahmed | 42e35f8 | 2019-01-31 21:24:39 +0100 | [diff] [blame] | 5880 | |
| 5881 | kvm_vcpu_unmap(vcpu, &map, true); |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 5882 | |
| 5883 | if (!exchanged) |
| 5884 | return X86EMUL_CMPXCHG_FAILED; |
| 5885 | |
Xiao Guangrong | 0eb05bf | 2016-02-24 17:51:13 +0800 | [diff] [blame] | 5886 | kvm_page_track_write(vcpu, gpa, new, bytes); |
Gleb Natapov | 8f6abd0 | 2010-04-13 10:21:56 +0300 | [diff] [blame] | 5887 | |
| 5888 | return X86EMUL_CONTINUE; |
Avi Kivity | 4a5f48f | 2010-03-15 13:59:55 +0200 | [diff] [blame] | 5889 | |
Marcelo Tosatti | 3200f40 | 2008-03-29 20:17:59 -0300 | [diff] [blame] | 5890 | emul_write: |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 5891 | printk_once(KERN_WARNING "kvm: emulating exchange as write\n"); |
Marcelo Tosatti | 2bacc55 | 2007-12-12 10:46:12 -0500 | [diff] [blame] | 5892 | |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 5893 | return emulator_write_emulated(ctxt, addr, new, bytes, exception); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5894 | } |
| 5895 | |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5896 | static int kernel_pio(struct kvm_vcpu *vcpu, void *pd) |
| 5897 | { |
Wanpeng Li | cbfc6c9 | 2017-05-19 02:46:56 -0700 | [diff] [blame] | 5898 | int r = 0, i; |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5899 | |
Wanpeng Li | cbfc6c9 | 2017-05-19 02:46:56 -0700 | [diff] [blame] | 5900 | for (i = 0; i < vcpu->arch.pio.count; i++) { |
| 5901 | if (vcpu->arch.pio.in) |
| 5902 | r = kvm_io_bus_read(vcpu, KVM_PIO_BUS, vcpu->arch.pio.port, |
| 5903 | vcpu->arch.pio.size, pd); |
| 5904 | else |
| 5905 | r = kvm_io_bus_write(vcpu, KVM_PIO_BUS, |
| 5906 | vcpu->arch.pio.port, vcpu->arch.pio.size, |
| 5907 | pd); |
| 5908 | if (r) |
| 5909 | break; |
| 5910 | pd += vcpu->arch.pio.size; |
| 5911 | } |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5912 | return r; |
| 5913 | } |
| 5914 | |
Xiao Guangrong | 6f6fbe9 | 2011-09-22 16:55:10 +0800 | [diff] [blame] | 5915 | static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size, |
| 5916 | unsigned short port, void *val, |
| 5917 | unsigned int count, bool in) |
| 5918 | { |
Xiao Guangrong | 6f6fbe9 | 2011-09-22 16:55:10 +0800 | [diff] [blame] | 5919 | vcpu->arch.pio.port = port; |
| 5920 | vcpu->arch.pio.in = in; |
| 5921 | vcpu->arch.pio.count = count; |
| 5922 | vcpu->arch.pio.size = size; |
| 5923 | |
| 5924 | if (!kernel_pio(vcpu, vcpu->arch.pio_data)) { |
| 5925 | vcpu->arch.pio.count = 0; |
| 5926 | return 1; |
| 5927 | } |
| 5928 | |
| 5929 | vcpu->run->exit_reason = KVM_EXIT_IO; |
| 5930 | vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT; |
| 5931 | vcpu->run->io.size = size; |
| 5932 | vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE; |
| 5933 | vcpu->run->io.count = count; |
| 5934 | vcpu->run->io.port = port; |
| 5935 | |
| 5936 | return 0; |
| 5937 | } |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5938 | |
Sean Christopherson | 2e3bb4d | 2020-02-18 15:29:41 -0800 | [diff] [blame] | 5939 | static int emulator_pio_in(struct kvm_vcpu *vcpu, int size, |
| 5940 | unsigned short port, void *val, unsigned int count) |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5941 | { |
Xiao Guangrong | 6f6fbe9 | 2011-09-22 16:55:10 +0800 | [diff] [blame] | 5942 | int ret; |
Avi Kivity | ca1d4a9 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 5943 | |
Gleb Natapov | 7972995 | 2010-03-18 15:20:24 +0200 | [diff] [blame] | 5944 | if (vcpu->arch.pio.count) |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5945 | goto data_avail; |
| 5946 | |
Wanpeng Li | cbfc6c9 | 2017-05-19 02:46:56 -0700 | [diff] [blame] | 5947 | memset(vcpu->arch.pio_data, 0, size * count); |
| 5948 | |
Xiao Guangrong | 6f6fbe9 | 2011-09-22 16:55:10 +0800 | [diff] [blame] | 5949 | ret = emulator_pio_in_out(vcpu, size, port, val, count, true); |
| 5950 | if (ret) { |
| 5951 | data_avail: |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5952 | memcpy(val, vcpu->arch.pio_data, size * count); |
Ulrich Obergfell | 1171903 | 2014-05-02 17:57:47 +0200 | [diff] [blame] | 5953 | 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] | 5954 | vcpu->arch.pio.count = 0; |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5955 | return 1; |
| 5956 | } |
| 5957 | |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5958 | return 0; |
| 5959 | } |
| 5960 | |
Sean Christopherson | 2e3bb4d | 2020-02-18 15:29:41 -0800 | [diff] [blame] | 5961 | static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt, |
| 5962 | int size, unsigned short port, void *val, |
| 5963 | unsigned int count) |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5964 | { |
Sean Christopherson | 2e3bb4d | 2020-02-18 15:29:41 -0800 | [diff] [blame] | 5965 | return emulator_pio_in(emul_to_vcpu(ctxt), size, port, val, count); |
Avi Kivity | ca1d4a9 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 5966 | |
Sean Christopherson | 2e3bb4d | 2020-02-18 15:29:41 -0800 | [diff] [blame] | 5967 | } |
| 5968 | |
| 5969 | static int emulator_pio_out(struct kvm_vcpu *vcpu, int size, |
| 5970 | unsigned short port, const void *val, |
| 5971 | unsigned int count) |
| 5972 | { |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5973 | memcpy(vcpu->arch.pio_data, val, size * count); |
Ulrich Obergfell | 1171903 | 2014-05-02 17:57:47 +0200 | [diff] [blame] | 5974 | 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] | 5975 | return emulator_pio_in_out(vcpu, size, port, (void *)val, count, false); |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5976 | } |
| 5977 | |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5978 | static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt, |
| 5979 | int size, unsigned short port, |
| 5980 | const void *val, unsigned int count) |
| 5981 | { |
Sean Christopherson | 2e3bb4d | 2020-02-18 15:29:41 -0800 | [diff] [blame] | 5982 | return emulator_pio_out(emul_to_vcpu(ctxt), size, port, val, count); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5983 | } |
| 5984 | |
| 5985 | static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg) |
| 5986 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 5987 | return kvm_x86_ops.get_segment_base(vcpu, seg); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5988 | } |
| 5989 | |
Avi Kivity | 3cb16fe | 2011-04-20 15:38:44 +0300 | [diff] [blame] | 5990 | static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5991 | { |
Avi Kivity | 3cb16fe | 2011-04-20 15:38:44 +0300 | [diff] [blame] | 5992 | kvm_mmu_invlpg(emul_to_vcpu(ctxt), address); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5993 | } |
| 5994 | |
Jiang Biao | ae6a237 | 2016-11-07 08:54:51 +0800 | [diff] [blame] | 5995 | static int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu) |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 5996 | { |
| 5997 | if (!need_emulate_wbinvd(vcpu)) |
| 5998 | return X86EMUL_CONTINUE; |
| 5999 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 6000 | if (kvm_x86_ops.has_wbinvd_exit()) { |
Jan Kiszka | 2eec734 | 2010-11-01 14:01:29 +0100 | [diff] [blame] | 6001 | int cpu = get_cpu(); |
| 6002 | |
| 6003 | cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask); |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 6004 | smp_call_function_many(vcpu->arch.wbinvd_dirty_mask, |
| 6005 | wbinvd_ipi, NULL, 1); |
Jan Kiszka | 2eec734 | 2010-11-01 14:01:29 +0100 | [diff] [blame] | 6006 | put_cpu(); |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 6007 | cpumask_clear(vcpu->arch.wbinvd_dirty_mask); |
Jan Kiszka | 2eec734 | 2010-11-01 14:01:29 +0100 | [diff] [blame] | 6008 | } else |
| 6009 | wbinvd(); |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 6010 | return X86EMUL_CONTINUE; |
| 6011 | } |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 6012 | |
| 6013 | int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu) |
| 6014 | { |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6015 | kvm_emulate_wbinvd_noskip(vcpu); |
| 6016 | return kvm_skip_emulated_instruction(vcpu); |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 6017 | } |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 6018 | EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd); |
| 6019 | |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 6020 | |
| 6021 | |
Avi Kivity | bcaf5cc | 2011-04-20 15:53:23 +0300 | [diff] [blame] | 6022 | static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt) |
| 6023 | { |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 6024 | kvm_emulate_wbinvd_noskip(emul_to_vcpu(ctxt)); |
Avi Kivity | bcaf5cc | 2011-04-20 15:53:23 +0300 | [diff] [blame] | 6025 | } |
| 6026 | |
Xiubo Li | 52eb5a6 | 2015-03-13 17:39:45 +0800 | [diff] [blame] | 6027 | static int emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr, |
| 6028 | unsigned long *dest) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 6029 | { |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 6030 | return kvm_get_dr(emul_to_vcpu(ctxt), dr, dest); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 6031 | } |
| 6032 | |
Xiubo Li | 52eb5a6 | 2015-03-13 17:39:45 +0800 | [diff] [blame] | 6033 | static int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr, |
| 6034 | unsigned long value) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 6035 | { |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 6036 | |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 6037 | return __kvm_set_dr(emul_to_vcpu(ctxt), dr, value); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 6038 | } |
| 6039 | |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 6040 | static u64 mk_cr_64(u64 curr_cr, u32 new_val) |
| 6041 | { |
| 6042 | return (curr_cr & ~((1ULL << 32) - 1)) | new_val; |
| 6043 | } |
| 6044 | |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 6045 | 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] | 6046 | { |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 6047 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 6048 | unsigned long value; |
| 6049 | |
| 6050 | switch (cr) { |
| 6051 | case 0: |
| 6052 | value = kvm_read_cr0(vcpu); |
| 6053 | break; |
| 6054 | case 2: |
| 6055 | value = vcpu->arch.cr2; |
| 6056 | break; |
| 6057 | case 3: |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 6058 | value = kvm_read_cr3(vcpu); |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 6059 | break; |
| 6060 | case 4: |
| 6061 | value = kvm_read_cr4(vcpu); |
| 6062 | break; |
| 6063 | case 8: |
| 6064 | value = kvm_get_cr8(vcpu); |
| 6065 | break; |
| 6066 | default: |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 6067 | kvm_err("%s: unexpected cr %u\n", __func__, cr); |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 6068 | return 0; |
| 6069 | } |
| 6070 | |
| 6071 | return value; |
| 6072 | } |
| 6073 | |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 6074 | 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] | 6075 | { |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 6076 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 6077 | int res = 0; |
| 6078 | |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 6079 | switch (cr) { |
| 6080 | case 0: |
Avi Kivity | 49a9b07 | 2010-06-10 17:02:14 +0300 | [diff] [blame] | 6081 | 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] | 6082 | break; |
| 6083 | case 2: |
| 6084 | vcpu->arch.cr2 = val; |
| 6085 | break; |
| 6086 | case 3: |
Avi Kivity | 2390218 | 2010-06-10 17:02:16 +0300 | [diff] [blame] | 6087 | res = kvm_set_cr3(vcpu, val); |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 6088 | break; |
| 6089 | case 4: |
Avi Kivity | a83b29c | 2010-06-10 17:02:15 +0300 | [diff] [blame] | 6090 | 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] | 6091 | break; |
| 6092 | case 8: |
Andre Przywara | eea1cff | 2010-12-21 11:12:00 +0100 | [diff] [blame] | 6093 | res = kvm_set_cr8(vcpu, val); |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 6094 | break; |
| 6095 | default: |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 6096 | kvm_err("%s: unexpected cr %u\n", __func__, cr); |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 6097 | res = -1; |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 6098 | } |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 6099 | |
| 6100 | return res; |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 6101 | } |
| 6102 | |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 6103 | static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt) |
Gleb Natapov | 9c53724 | 2010-03-18 15:20:05 +0200 | [diff] [blame] | 6104 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 6105 | return kvm_x86_ops.get_cpl(emul_to_vcpu(ctxt)); |
Gleb Natapov | 9c53724 | 2010-03-18 15:20:05 +0200 | [diff] [blame] | 6106 | } |
| 6107 | |
Avi Kivity | 4bff1e86 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 6108 | 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] | 6109 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 6110 | kvm_x86_ops.get_gdt(emul_to_vcpu(ctxt), dt); |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 6111 | } |
| 6112 | |
Avi Kivity | 4bff1e86 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 6113 | 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] | 6114 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 6115 | kvm_x86_ops.get_idt(emul_to_vcpu(ctxt), dt); |
Mohammed Gamal | 160ce1f | 2010-08-04 05:44:24 +0300 | [diff] [blame] | 6116 | } |
| 6117 | |
Avi Kivity | 1ac9d0c | 2011-04-20 15:12:00 +0300 | [diff] [blame] | 6118 | static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt) |
| 6119 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 6120 | kvm_x86_ops.set_gdt(emul_to_vcpu(ctxt), dt); |
Avi Kivity | 1ac9d0c | 2011-04-20 15:12:00 +0300 | [diff] [blame] | 6121 | } |
| 6122 | |
| 6123 | static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt) |
| 6124 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 6125 | kvm_x86_ops.set_idt(emul_to_vcpu(ctxt), dt); |
Avi Kivity | 1ac9d0c | 2011-04-20 15:12:00 +0300 | [diff] [blame] | 6126 | } |
| 6127 | |
Avi Kivity | 4bff1e86 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 6128 | static unsigned long emulator_get_cached_segment_base( |
| 6129 | struct x86_emulate_ctxt *ctxt, int seg) |
Gleb Natapov | 5951c44 | 2010-04-28 19:15:29 +0300 | [diff] [blame] | 6130 | { |
Avi Kivity | 4bff1e86 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 6131 | return get_segment_base(emul_to_vcpu(ctxt), seg); |
Gleb Natapov | 5951c44 | 2010-04-28 19:15:29 +0300 | [diff] [blame] | 6132 | } |
| 6133 | |
Avi Kivity | 1aa3661 | 2011-04-27 13:20:30 +0300 | [diff] [blame] | 6134 | static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector, |
| 6135 | struct desc_struct *desc, u32 *base3, |
| 6136 | int seg) |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 6137 | { |
| 6138 | struct kvm_segment var; |
| 6139 | |
Avi Kivity | 4bff1e86 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 6140 | kvm_get_segment(emul_to_vcpu(ctxt), &var, seg); |
Avi Kivity | 1aa3661 | 2011-04-27 13:20:30 +0300 | [diff] [blame] | 6141 | *selector = var.selector; |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 6142 | |
Gleb Natapov | 378a8b0 | 2013-01-21 15:36:48 +0200 | [diff] [blame] | 6143 | if (var.unusable) { |
| 6144 | memset(desc, 0, sizeof(*desc)); |
Radim Krčmář | f0367ee | 2017-05-18 19:37:30 +0200 | [diff] [blame] | 6145 | if (base3) |
| 6146 | *base3 = 0; |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 6147 | return false; |
Gleb Natapov | 378a8b0 | 2013-01-21 15:36:48 +0200 | [diff] [blame] | 6148 | } |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 6149 | |
| 6150 | if (var.g) |
| 6151 | var.limit >>= 12; |
| 6152 | set_desc_limit(desc, var.limit); |
| 6153 | set_desc_base(desc, (unsigned long)var.base); |
Gleb Natapov | 5601d05 | 2011-03-07 14:55:06 +0200 | [diff] [blame] | 6154 | #ifdef CONFIG_X86_64 |
| 6155 | if (base3) |
| 6156 | *base3 = var.base >> 32; |
| 6157 | #endif |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 6158 | desc->type = var.type; |
| 6159 | desc->s = var.s; |
| 6160 | desc->dpl = var.dpl; |
| 6161 | desc->p = var.present; |
| 6162 | desc->avl = var.avl; |
| 6163 | desc->l = var.l; |
| 6164 | desc->d = var.db; |
| 6165 | desc->g = var.g; |
| 6166 | |
| 6167 | return true; |
| 6168 | } |
| 6169 | |
Avi Kivity | 1aa3661 | 2011-04-27 13:20:30 +0300 | [diff] [blame] | 6170 | static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector, |
| 6171 | struct desc_struct *desc, u32 base3, |
| 6172 | int seg) |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 6173 | { |
Avi Kivity | 4bff1e86 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 6174 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 6175 | struct kvm_segment var; |
| 6176 | |
Avi Kivity | 1aa3661 | 2011-04-27 13:20:30 +0300 | [diff] [blame] | 6177 | var.selector = selector; |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 6178 | var.base = get_desc_base(desc); |
Gleb Natapov | 5601d05 | 2011-03-07 14:55:06 +0200 | [diff] [blame] | 6179 | #ifdef CONFIG_X86_64 |
| 6180 | var.base |= ((u64)base3) << 32; |
| 6181 | #endif |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 6182 | var.limit = get_desc_limit(desc); |
| 6183 | if (desc->g) |
| 6184 | var.limit = (var.limit << 12) | 0xfff; |
| 6185 | var.type = desc->type; |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 6186 | var.dpl = desc->dpl; |
| 6187 | var.db = desc->d; |
| 6188 | var.s = desc->s; |
| 6189 | var.l = desc->l; |
| 6190 | var.g = desc->g; |
| 6191 | var.avl = desc->avl; |
| 6192 | var.present = desc->p; |
| 6193 | var.unusable = !var.present; |
| 6194 | var.padding = 0; |
| 6195 | |
| 6196 | kvm_set_segment(vcpu, &var, seg); |
| 6197 | return; |
| 6198 | } |
| 6199 | |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 6200 | static int emulator_get_msr(struct x86_emulate_ctxt *ctxt, |
| 6201 | u32 msr_index, u64 *pdata) |
| 6202 | { |
Sean Christopherson | f20935d | 2019-09-05 14:22:54 -0700 | [diff] [blame] | 6203 | return kvm_get_msr(emul_to_vcpu(ctxt), msr_index, pdata); |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 6204 | } |
| 6205 | |
| 6206 | static int emulator_set_msr(struct x86_emulate_ctxt *ctxt, |
| 6207 | u32 msr_index, u64 data) |
| 6208 | { |
Sean Christopherson | f20935d | 2019-09-05 14:22:54 -0700 | [diff] [blame] | 6209 | return kvm_set_msr(emul_to_vcpu(ctxt), msr_index, data); |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 6210 | } |
| 6211 | |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 6212 | static u64 emulator_get_smbase(struct x86_emulate_ctxt *ctxt) |
| 6213 | { |
| 6214 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
| 6215 | |
| 6216 | return vcpu->arch.smbase; |
| 6217 | } |
| 6218 | |
| 6219 | static void emulator_set_smbase(struct x86_emulate_ctxt *ctxt, u64 smbase) |
| 6220 | { |
| 6221 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
| 6222 | |
| 6223 | vcpu->arch.smbase = smbase; |
| 6224 | } |
| 6225 | |
Nadav Amit | 67f4d42 | 2014-06-02 18:34:09 +0300 | [diff] [blame] | 6226 | static int emulator_check_pmc(struct x86_emulate_ctxt *ctxt, |
| 6227 | u32 pmc) |
| 6228 | { |
Like Xu | 98ff80f | 2019-10-27 18:52:40 +0800 | [diff] [blame] | 6229 | return kvm_pmu_is_valid_rdpmc_ecx(emul_to_vcpu(ctxt), pmc); |
Nadav Amit | 67f4d42 | 2014-06-02 18:34:09 +0300 | [diff] [blame] | 6230 | } |
| 6231 | |
Avi Kivity | 222d21a | 2011-11-10 14:57:30 +0200 | [diff] [blame] | 6232 | static int emulator_read_pmc(struct x86_emulate_ctxt *ctxt, |
| 6233 | u32 pmc, u64 *pdata) |
| 6234 | { |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 6235 | return kvm_pmu_rdpmc(emul_to_vcpu(ctxt), pmc, pdata); |
Avi Kivity | 222d21a | 2011-11-10 14:57:30 +0200 | [diff] [blame] | 6236 | } |
| 6237 | |
Avi Kivity | 6c3287f | 2011-04-20 15:43:05 +0300 | [diff] [blame] | 6238 | static void emulator_halt(struct x86_emulate_ctxt *ctxt) |
| 6239 | { |
| 6240 | emul_to_vcpu(ctxt)->arch.halt_request = 1; |
| 6241 | } |
| 6242 | |
Avi Kivity | 2953538 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 6243 | static int emulator_intercept(struct x86_emulate_ctxt *ctxt, |
Joerg Roedel | 8a76d7f | 2011-04-04 12:39:27 +0200 | [diff] [blame] | 6244 | struct x86_instruction_info *info, |
Avi Kivity | c4f035c | 2011-04-04 12:39:22 +0200 | [diff] [blame] | 6245 | enum x86_intercept_stage stage) |
| 6246 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 6247 | return kvm_x86_ops.check_intercept(emul_to_vcpu(ctxt), info, stage, |
Sean Christopherson | 21f1b8f | 2020-02-18 15:29:42 -0800 | [diff] [blame] | 6248 | &ctxt->exception); |
Avi Kivity | c4f035c | 2011-04-04 12:39:22 +0200 | [diff] [blame] | 6249 | } |
| 6250 | |
Yu Zhang | e911eb3 | 2017-08-24 20:27:52 +0800 | [diff] [blame] | 6251 | static bool emulator_get_cpuid(struct x86_emulate_ctxt *ctxt, |
Sean Christopherson | f91af51 | 2020-03-04 17:34:37 -0800 | [diff] [blame] | 6252 | u32 *eax, u32 *ebx, u32 *ecx, u32 *edx, |
| 6253 | bool exact_only) |
Stephan Bärwolf | bdb42f5 | 2012-01-12 16:43:03 +0100 | [diff] [blame] | 6254 | { |
Sean Christopherson | f91af51 | 2020-03-04 17:34:37 -0800 | [diff] [blame] | 6255 | return kvm_cpuid(emul_to_vcpu(ctxt), eax, ebx, ecx, edx, exact_only); |
Stephan Bärwolf | bdb42f5 | 2012-01-12 16:43:03 +0100 | [diff] [blame] | 6256 | } |
| 6257 | |
Sean Christopherson | 5ae78e9 | 2019-12-17 13:32:38 -0800 | [diff] [blame] | 6258 | static bool emulator_guest_has_long_mode(struct x86_emulate_ctxt *ctxt) |
| 6259 | { |
| 6260 | return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_LM); |
| 6261 | } |
| 6262 | |
| 6263 | static bool emulator_guest_has_movbe(struct x86_emulate_ctxt *ctxt) |
| 6264 | { |
| 6265 | return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_MOVBE); |
| 6266 | } |
| 6267 | |
| 6268 | static bool emulator_guest_has_fxsr(struct x86_emulate_ctxt *ctxt) |
| 6269 | { |
| 6270 | return guest_cpuid_has(emul_to_vcpu(ctxt), X86_FEATURE_FXSR); |
| 6271 | } |
| 6272 | |
Avi Kivity | dd856ef | 2012-08-27 23:46:17 +0300 | [diff] [blame] | 6273 | static ulong emulator_read_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg) |
| 6274 | { |
| 6275 | return kvm_register_read(emul_to_vcpu(ctxt), reg); |
| 6276 | } |
| 6277 | |
| 6278 | static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val) |
| 6279 | { |
| 6280 | kvm_register_write(emul_to_vcpu(ctxt), reg, val); |
| 6281 | } |
| 6282 | |
Nadav Amit | 801806d | 2015-01-26 09:32:23 +0200 | [diff] [blame] | 6283 | static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked) |
| 6284 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 6285 | kvm_x86_ops.set_nmi_mask(emul_to_vcpu(ctxt), masked); |
Nadav Amit | 801806d | 2015-01-26 09:32:23 +0200 | [diff] [blame] | 6286 | } |
| 6287 | |
Ladi Prosek | 6ed071f | 2017-04-25 16:42:44 +0200 | [diff] [blame] | 6288 | static unsigned emulator_get_hflags(struct x86_emulate_ctxt *ctxt) |
| 6289 | { |
| 6290 | return emul_to_vcpu(ctxt)->arch.hflags; |
| 6291 | } |
| 6292 | |
| 6293 | static void emulator_set_hflags(struct x86_emulate_ctxt *ctxt, unsigned emul_flags) |
| 6294 | { |
Sean Christopherson | c5833c7 | 2019-04-02 08:03:10 -0700 | [diff] [blame] | 6295 | emul_to_vcpu(ctxt)->arch.hflags = emul_flags; |
Ladi Prosek | 6ed071f | 2017-04-25 16:42:44 +0200 | [diff] [blame] | 6296 | } |
| 6297 | |
Sean Christopherson | ed19321 | 2019-04-02 08:03:09 -0700 | [diff] [blame] | 6298 | static int emulator_pre_leave_smm(struct x86_emulate_ctxt *ctxt, |
| 6299 | const char *smstate) |
Ladi Prosek | 0234bf8 | 2017-10-11 16:54:40 +0200 | [diff] [blame] | 6300 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 6301 | return kvm_x86_ops.pre_leave_smm(emul_to_vcpu(ctxt), smstate); |
Ladi Prosek | 0234bf8 | 2017-10-11 16:54:40 +0200 | [diff] [blame] | 6302 | } |
| 6303 | |
Sean Christopherson | c5833c7 | 2019-04-02 08:03:10 -0700 | [diff] [blame] | 6304 | static void emulator_post_leave_smm(struct x86_emulate_ctxt *ctxt) |
| 6305 | { |
| 6306 | kvm_smm_changed(emul_to_vcpu(ctxt)); |
| 6307 | } |
| 6308 | |
Vitaly Kuznetsov | 02d4160 | 2019-08-13 15:53:32 +0200 | [diff] [blame] | 6309 | static int emulator_set_xcr(struct x86_emulate_ctxt *ctxt, u32 index, u64 xcr) |
| 6310 | { |
| 6311 | return __kvm_set_xcr(emul_to_vcpu(ctxt), index, xcr); |
| 6312 | } |
| 6313 | |
Mathias Krause | 0225fb5 | 2012-08-30 01:30:16 +0200 | [diff] [blame] | 6314 | static const struct x86_emulate_ops emulate_ops = { |
Avi Kivity | dd856ef | 2012-08-27 23:46:17 +0300 | [diff] [blame] | 6315 | .read_gpr = emulator_read_gpr, |
| 6316 | .write_gpr = emulator_write_gpr, |
Paolo Bonzini | ce14e868a | 2018-06-06 17:37:49 +0200 | [diff] [blame] | 6317 | .read_std = emulator_read_std, |
| 6318 | .write_std = emulator_write_std, |
Radim Krčmář | 7a036a6 | 2015-10-30 16:36:24 +0100 | [diff] [blame] | 6319 | .read_phys = kvm_read_guest_phys_system, |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 6320 | .fetch = kvm_fetch_guest_virt, |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 6321 | .read_emulated = emulator_read_emulated, |
| 6322 | .write_emulated = emulator_write_emulated, |
| 6323 | .cmpxchg_emulated = emulator_cmpxchg_emulated, |
Avi Kivity | 3cb16fe | 2011-04-20 15:38:44 +0300 | [diff] [blame] | 6324 | .invlpg = emulator_invlpg, |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 6325 | .pio_in_emulated = emulator_pio_in_emulated, |
| 6326 | .pio_out_emulated = emulator_pio_out_emulated, |
Avi Kivity | 1aa3661 | 2011-04-27 13:20:30 +0300 | [diff] [blame] | 6327 | .get_segment = emulator_get_segment, |
| 6328 | .set_segment = emulator_set_segment, |
Gleb Natapov | 5951c44 | 2010-04-28 19:15:29 +0300 | [diff] [blame] | 6329 | .get_cached_segment_base = emulator_get_cached_segment_base, |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 6330 | .get_gdt = emulator_get_gdt, |
Mohammed Gamal | 160ce1f | 2010-08-04 05:44:24 +0300 | [diff] [blame] | 6331 | .get_idt = emulator_get_idt, |
Avi Kivity | 1ac9d0c | 2011-04-20 15:12:00 +0300 | [diff] [blame] | 6332 | .set_gdt = emulator_set_gdt, |
| 6333 | .set_idt = emulator_set_idt, |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 6334 | .get_cr = emulator_get_cr, |
| 6335 | .set_cr = emulator_set_cr, |
Gleb Natapov | 9c53724 | 2010-03-18 15:20:05 +0200 | [diff] [blame] | 6336 | .cpl = emulator_get_cpl, |
Gleb Natapov | 35aa537 | 2010-04-28 19:15:27 +0300 | [diff] [blame] | 6337 | .get_dr = emulator_get_dr, |
| 6338 | .set_dr = emulator_set_dr, |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 6339 | .get_smbase = emulator_get_smbase, |
| 6340 | .set_smbase = emulator_set_smbase, |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 6341 | .set_msr = emulator_set_msr, |
| 6342 | .get_msr = emulator_get_msr, |
Nadav Amit | 67f4d42 | 2014-06-02 18:34:09 +0300 | [diff] [blame] | 6343 | .check_pmc = emulator_check_pmc, |
Avi Kivity | 222d21a | 2011-11-10 14:57:30 +0200 | [diff] [blame] | 6344 | .read_pmc = emulator_read_pmc, |
Avi Kivity | 6c3287f | 2011-04-20 15:43:05 +0300 | [diff] [blame] | 6345 | .halt = emulator_halt, |
Avi Kivity | bcaf5cc | 2011-04-20 15:53:23 +0300 | [diff] [blame] | 6346 | .wbinvd = emulator_wbinvd, |
Avi Kivity | d6aa100 | 2011-04-20 15:47:13 +0300 | [diff] [blame] | 6347 | .fix_hypercall = emulator_fix_hypercall, |
Avi Kivity | c4f035c | 2011-04-04 12:39:22 +0200 | [diff] [blame] | 6348 | .intercept = emulator_intercept, |
Stephan Bärwolf | bdb42f5 | 2012-01-12 16:43:03 +0100 | [diff] [blame] | 6349 | .get_cpuid = emulator_get_cpuid, |
Sean Christopherson | 5ae78e9 | 2019-12-17 13:32:38 -0800 | [diff] [blame] | 6350 | .guest_has_long_mode = emulator_guest_has_long_mode, |
| 6351 | .guest_has_movbe = emulator_guest_has_movbe, |
| 6352 | .guest_has_fxsr = emulator_guest_has_fxsr, |
Nadav Amit | 801806d | 2015-01-26 09:32:23 +0200 | [diff] [blame] | 6353 | .set_nmi_mask = emulator_set_nmi_mask, |
Ladi Prosek | 6ed071f | 2017-04-25 16:42:44 +0200 | [diff] [blame] | 6354 | .get_hflags = emulator_get_hflags, |
| 6355 | .set_hflags = emulator_set_hflags, |
Ladi Prosek | 0234bf8 | 2017-10-11 16:54:40 +0200 | [diff] [blame] | 6356 | .pre_leave_smm = emulator_pre_leave_smm, |
Sean Christopherson | c5833c7 | 2019-04-02 08:03:10 -0700 | [diff] [blame] | 6357 | .post_leave_smm = emulator_post_leave_smm, |
Vitaly Kuznetsov | 02d4160 | 2019-08-13 15:53:32 +0200 | [diff] [blame] | 6358 | .set_xcr = emulator_set_xcr, |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 6359 | }; |
| 6360 | |
Gleb Natapov | 95cb229 | 2010-04-28 19:15:43 +0300 | [diff] [blame] | 6361 | static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask) |
| 6362 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 6363 | u32 int_shadow = kvm_x86_ops.get_interrupt_shadow(vcpu); |
Gleb Natapov | 95cb229 | 2010-04-28 19:15:43 +0300 | [diff] [blame] | 6364 | /* |
| 6365 | * an sti; sti; sequence only disable interrupts for the first |
| 6366 | * instruction. So, if the last instruction, be it emulated or |
| 6367 | * not, left the system with the INT_STI flag enabled, it |
| 6368 | * means that the last instruction is an sti. We should not |
| 6369 | * leave the flag on in this case. The same goes for mov ss |
| 6370 | */ |
Paolo Bonzini | 37ccdcb | 2014-05-20 14:29:47 +0200 | [diff] [blame] | 6371 | if (int_shadow & mask) |
| 6372 | mask = 0; |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 6373 | if (unlikely(int_shadow || mask)) { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 6374 | kvm_x86_ops.set_interrupt_shadow(vcpu, mask); |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 6375 | if (!mask) |
| 6376 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 6377 | } |
Gleb Natapov | 95cb229 | 2010-04-28 19:15:43 +0300 | [diff] [blame] | 6378 | } |
| 6379 | |
Paolo Bonzini | ef54bcf | 2014-09-04 19:46:15 +0200 | [diff] [blame] | 6380 | static bool inject_emulated_exception(struct kvm_vcpu *vcpu) |
Gleb Natapov | 54b8486 | 2010-04-28 19:15:44 +0300 | [diff] [blame] | 6381 | { |
Sean Christopherson | c9b8b07 | 2020-02-18 15:29:48 -0800 | [diff] [blame] | 6382 | struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt; |
Avi Kivity | da9cb57 | 2010-11-22 17:53:21 +0200 | [diff] [blame] | 6383 | if (ctxt->exception.vector == PF_VECTOR) |
Paolo Bonzini | ef54bcf | 2014-09-04 19:46:15 +0200 | [diff] [blame] | 6384 | return kvm_propagate_fault(vcpu, &ctxt->exception); |
| 6385 | |
| 6386 | if (ctxt->exception.error_code_valid) |
Avi Kivity | da9cb57 | 2010-11-22 17:53:21 +0200 | [diff] [blame] | 6387 | kvm_queue_exception_e(vcpu, ctxt->exception.vector, |
| 6388 | ctxt->exception.error_code); |
Gleb Natapov | 54b8486 | 2010-04-28 19:15:44 +0300 | [diff] [blame] | 6389 | else |
Avi Kivity | da9cb57 | 2010-11-22 17:53:21 +0200 | [diff] [blame] | 6390 | kvm_queue_exception(vcpu, ctxt->exception.vector); |
Paolo Bonzini | ef54bcf | 2014-09-04 19:46:15 +0200 | [diff] [blame] | 6391 | return false; |
Gleb Natapov | 54b8486 | 2010-04-28 19:15:44 +0300 | [diff] [blame] | 6392 | } |
| 6393 | |
Sean Christopherson | c9b8b07 | 2020-02-18 15:29:48 -0800 | [diff] [blame] | 6394 | static struct x86_emulate_ctxt *alloc_emulate_ctxt(struct kvm_vcpu *vcpu) |
| 6395 | { |
| 6396 | struct x86_emulate_ctxt *ctxt; |
| 6397 | |
| 6398 | ctxt = kmem_cache_zalloc(x86_emulator_cache, GFP_KERNEL_ACCOUNT); |
| 6399 | if (!ctxt) { |
| 6400 | pr_err("kvm: failed to allocate vcpu's emulator\n"); |
| 6401 | return NULL; |
| 6402 | } |
| 6403 | |
| 6404 | ctxt->vcpu = vcpu; |
| 6405 | ctxt->ops = &emulate_ops; |
| 6406 | vcpu->arch.emulate_ctxt = ctxt; |
| 6407 | |
| 6408 | return ctxt; |
| 6409 | } |
| 6410 | |
Mohammed Gamal | 8ec4722 | 2010-08-16 00:47:01 +0300 | [diff] [blame] | 6411 | static void init_emulate_ctxt(struct kvm_vcpu *vcpu) |
| 6412 | { |
Sean Christopherson | c9b8b07 | 2020-02-18 15:29:48 -0800 | [diff] [blame] | 6413 | struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt; |
Mohammed Gamal | 8ec4722 | 2010-08-16 00:47:01 +0300 | [diff] [blame] | 6414 | int cs_db, cs_l; |
| 6415 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 6416 | kvm_x86_ops.get_cs_db_l_bits(vcpu, &cs_db, &cs_l); |
Mohammed Gamal | 8ec4722 | 2010-08-16 00:47:01 +0300 | [diff] [blame] | 6417 | |
Sean Christopherson | 744e699 | 2020-02-18 15:03:09 -0800 | [diff] [blame] | 6418 | ctxt->gpa_available = false; |
Takuya Yoshikawa | adf5223 | 2011-05-25 11:06:16 +0900 | [diff] [blame] | 6419 | ctxt->eflags = kvm_get_rflags(vcpu); |
Paolo Bonzini | c8401dd | 2017-06-07 15:13:14 +0200 | [diff] [blame] | 6420 | ctxt->tf = (ctxt->eflags & X86_EFLAGS_TF) != 0; |
| 6421 | |
Takuya Yoshikawa | adf5223 | 2011-05-25 11:06:16 +0900 | [diff] [blame] | 6422 | ctxt->eip = kvm_rip_read(vcpu); |
| 6423 | ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL : |
| 6424 | (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 : |
Nadav Amit | 42bf549 | 2014-04-18 07:11:34 +0300 | [diff] [blame] | 6425 | (cs_l && is_long_mode(vcpu)) ? X86EMUL_MODE_PROT64 : |
Takuya Yoshikawa | adf5223 | 2011-05-25 11:06:16 +0900 | [diff] [blame] | 6426 | cs_db ? X86EMUL_MODE_PROT32 : |
| 6427 | X86EMUL_MODE_PROT16; |
Paolo Bonzini | a584539 | 2015-04-01 18:18:53 +0200 | [diff] [blame] | 6428 | BUILD_BUG_ON(HF_GUEST_MASK != X86EMUL_GUEST_MASK); |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 6429 | BUILD_BUG_ON(HF_SMM_MASK != X86EMUL_SMM_MASK); |
| 6430 | BUILD_BUG_ON(HF_SMM_INSIDE_NMI_MASK != X86EMUL_SMM_INSIDE_NMI_MASK); |
Takuya Yoshikawa | adf5223 | 2011-05-25 11:06:16 +0900 | [diff] [blame] | 6431 | |
Avi Kivity | dd856ef | 2012-08-27 23:46:17 +0300 | [diff] [blame] | 6432 | init_decode_cache(ctxt); |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 6433 | vcpu->arch.emulate_regs_need_sync_from_vcpu = false; |
Mohammed Gamal | 8ec4722 | 2010-08-16 00:47:01 +0300 | [diff] [blame] | 6434 | } |
| 6435 | |
Sean Christopherson | 9497e1f | 2019-08-27 14:40:36 -0700 | [diff] [blame] | 6436 | void 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] | 6437 | { |
Sean Christopherson | c9b8b07 | 2020-02-18 15:29:48 -0800 | [diff] [blame] | 6438 | struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt; |
Mohammed Gamal | 6399565 | 2010-09-19 14:34:06 +0200 | [diff] [blame] | 6439 | int ret; |
| 6440 | |
| 6441 | init_emulate_ctxt(vcpu); |
| 6442 | |
Avi Kivity | 9dac77f | 2011-06-01 15:34:25 +0300 | [diff] [blame] | 6443 | ctxt->op_bytes = 2; |
| 6444 | ctxt->ad_bytes = 2; |
| 6445 | ctxt->_eip = ctxt->eip + inc_eip; |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 6446 | ret = emulate_int_real(ctxt, irq); |
Mohammed Gamal | 6399565 | 2010-09-19 14:34:06 +0200 | [diff] [blame] | 6447 | |
Sean Christopherson | 9497e1f | 2019-08-27 14:40:36 -0700 | [diff] [blame] | 6448 | if (ret != X86EMUL_CONTINUE) { |
| 6449 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
| 6450 | } else { |
| 6451 | ctxt->eip = ctxt->_eip; |
| 6452 | kvm_rip_write(vcpu, ctxt->eip); |
| 6453 | kvm_set_rflags(vcpu, ctxt->eflags); |
| 6454 | } |
Mohammed Gamal | 6399565 | 2010-09-19 14:34:06 +0200 | [diff] [blame] | 6455 | } |
| 6456 | EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt); |
| 6457 | |
Liran Alon | e236617 | 2018-03-12 13:12:49 +0200 | [diff] [blame] | 6458 | static int handle_emulation_failure(struct kvm_vcpu *vcpu, int emulation_type) |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 6459 | { |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 6460 | ++vcpu->stat.insn_emulation_fail; |
| 6461 | trace_kvm_emulate_insn_failed(vcpu); |
Liran Alon | e236617 | 2018-03-12 13:12:49 +0200 | [diff] [blame] | 6462 | |
Sean Christopherson | 42cbf06 | 2019-08-27 14:40:31 -0700 | [diff] [blame] | 6463 | if (emulation_type & EMULTYPE_VMWARE_GP) { |
| 6464 | kvm_queue_exception_e(vcpu, GP_VECTOR, 0); |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 6465 | return 1; |
Sean Christopherson | 42cbf06 | 2019-08-27 14:40:31 -0700 | [diff] [blame] | 6466 | } |
Liran Alon | e236617 | 2018-03-12 13:12:49 +0200 | [diff] [blame] | 6467 | |
Sean Christopherson | 738fece | 2019-08-27 14:40:34 -0700 | [diff] [blame] | 6468 | if (emulation_type & EMULTYPE_SKIP) { |
| 6469 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 6470 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION; |
| 6471 | vcpu->run->internal.ndata = 0; |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 6472 | return 0; |
Sean Christopherson | 738fece | 2019-08-27 14:40:34 -0700 | [diff] [blame] | 6473 | } |
| 6474 | |
Sean Christopherson | 22da61c | 2019-08-27 14:40:28 -0700 | [diff] [blame] | 6475 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 6476 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 6477 | if (!is_guest_mode(vcpu) && kvm_x86_ops.get_cpl(vcpu) == 0) { |
Joerg Roedel | fc3a915 | 2010-11-29 17:51:49 +0100 | [diff] [blame] | 6478 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 6479 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION; |
| 6480 | vcpu->run->internal.ndata = 0; |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 6481 | return 0; |
Joerg Roedel | fc3a915 | 2010-11-29 17:51:49 +0100 | [diff] [blame] | 6482 | } |
Liran Alon | e236617 | 2018-03-12 13:12:49 +0200 | [diff] [blame] | 6483 | |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 6484 | return 1; |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 6485 | } |
| 6486 | |
Sean Christopherson | 736c291 | 2019-12-06 15:57:14 -0800 | [diff] [blame] | 6487 | static bool reexecute_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa, |
Gleb Natapov | 991eebf | 2013-04-11 12:10:51 +0300 | [diff] [blame] | 6488 | bool write_fault_to_shadow_pgtable, |
| 6489 | int emulation_type) |
Gleb Natapov | a6f177e | 2010-07-08 12:41:12 +0300 | [diff] [blame] | 6490 | { |
Sean Christopherson | 736c291 | 2019-12-06 15:57:14 -0800 | [diff] [blame] | 6491 | gpa_t gpa = cr2_or_gpa; |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 6492 | kvm_pfn_t pfn; |
Gleb Natapov | a6f177e | 2010-07-08 12:41:12 +0300 | [diff] [blame] | 6493 | |
Sean Christopherson | 92daa48 | 2020-02-18 15:03:08 -0800 | [diff] [blame] | 6494 | if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF)) |
Gleb Natapov | 991eebf | 2013-04-11 12:10:51 +0300 | [diff] [blame] | 6495 | return false; |
| 6496 | |
Sean Christopherson | 92daa48 | 2020-02-18 15:03:08 -0800 | [diff] [blame] | 6497 | if (WARN_ON_ONCE(is_guest_mode(vcpu)) || |
| 6498 | WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF))) |
Sean Christopherson | 6c3dfeb | 2018-08-23 13:56:51 -0700 | [diff] [blame] | 6499 | return false; |
| 6500 | |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 6501 | if (!vcpu->arch.mmu->direct_map) { |
Xiao Guangrong | 95b3cf6 | 2013-01-13 23:46:52 +0800 | [diff] [blame] | 6502 | /* |
| 6503 | * Write permission should be allowed since only |
| 6504 | * write access need to be emulated. |
| 6505 | */ |
Sean Christopherson | 736c291 | 2019-12-06 15:57:14 -0800 | [diff] [blame] | 6506 | gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL); |
Gleb Natapov | 68be080 | 2010-07-14 19:05:45 +0300 | [diff] [blame] | 6507 | |
Xiao Guangrong | 95b3cf6 | 2013-01-13 23:46:52 +0800 | [diff] [blame] | 6508 | /* |
| 6509 | * If the mapping is invalid in guest, let cpu retry |
| 6510 | * it to generate fault. |
| 6511 | */ |
| 6512 | if (gpa == UNMAPPED_GVA) |
| 6513 | return true; |
| 6514 | } |
Gleb Natapov | a6f177e | 2010-07-08 12:41:12 +0300 | [diff] [blame] | 6515 | |
Xiao Guangrong | 8e3d9d0 | 2012-08-21 10:57:42 +0800 | [diff] [blame] | 6516 | /* |
| 6517 | * Do not retry the unhandleable instruction if it faults on the |
| 6518 | * readonly host memory, otherwise it will goto a infinite loop: |
| 6519 | * retry instruction -> write #PF -> emulation fail -> retry |
| 6520 | * instruction -> ... |
| 6521 | */ |
| 6522 | pfn = gfn_to_pfn(vcpu->kvm, gpa_to_gfn(gpa)); |
Xiao Guangrong | 95b3cf6 | 2013-01-13 23:46:52 +0800 | [diff] [blame] | 6523 | |
| 6524 | /* |
| 6525 | * If the instruction failed on the error pfn, it can not be fixed, |
| 6526 | * report the error to userspace. |
| 6527 | */ |
| 6528 | if (is_error_noslot_pfn(pfn)) |
| 6529 | return false; |
| 6530 | |
| 6531 | kvm_release_pfn_clean(pfn); |
| 6532 | |
| 6533 | /* The instructions are well-emulated on direct mmu. */ |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 6534 | if (vcpu->arch.mmu->direct_map) { |
Xiao Guangrong | 95b3cf6 | 2013-01-13 23:46:52 +0800 | [diff] [blame] | 6535 | unsigned int indirect_shadow_pages; |
| 6536 | |
| 6537 | spin_lock(&vcpu->kvm->mmu_lock); |
| 6538 | indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages; |
| 6539 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 6540 | |
| 6541 | if (indirect_shadow_pages) |
| 6542 | kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa)); |
| 6543 | |
Gleb Natapov | a6f177e | 2010-07-08 12:41:12 +0300 | [diff] [blame] | 6544 | return true; |
Xiao Guangrong | 8e3d9d0 | 2012-08-21 10:57:42 +0800 | [diff] [blame] | 6545 | } |
Gleb Natapov | a6f177e | 2010-07-08 12:41:12 +0300 | [diff] [blame] | 6546 | |
Xiao Guangrong | 95b3cf6 | 2013-01-13 23:46:52 +0800 | [diff] [blame] | 6547 | /* |
| 6548 | * if emulation was due to access to shadowed page table |
| 6549 | * and it failed try to unshadow page and re-enter the |
| 6550 | * guest to let CPU execute the instruction. |
| 6551 | */ |
| 6552 | kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa)); |
Xiao Guangrong | 93c05d3 | 2013-01-13 23:49:07 +0800 | [diff] [blame] | 6553 | |
| 6554 | /* |
| 6555 | * If the access faults on its page table, it can not |
| 6556 | * be fixed by unprotecting shadow page and it should |
| 6557 | * be reported to userspace. |
| 6558 | */ |
| 6559 | return !write_fault_to_shadow_pgtable; |
Gleb Natapov | a6f177e | 2010-07-08 12:41:12 +0300 | [diff] [blame] | 6560 | } |
| 6561 | |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 6562 | static bool retry_instruction(struct x86_emulate_ctxt *ctxt, |
Sean Christopherson | 736c291 | 2019-12-06 15:57:14 -0800 | [diff] [blame] | 6563 | gpa_t cr2_or_gpa, int emulation_type) |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 6564 | { |
| 6565 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Sean Christopherson | 736c291 | 2019-12-06 15:57:14 -0800 | [diff] [blame] | 6566 | unsigned long last_retry_eip, last_retry_addr, gpa = cr2_or_gpa; |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 6567 | |
| 6568 | last_retry_eip = vcpu->arch.last_retry_eip; |
| 6569 | last_retry_addr = vcpu->arch.last_retry_addr; |
| 6570 | |
| 6571 | /* |
| 6572 | * If the emulation is caused by #PF and it is non-page_table |
| 6573 | * writing instruction, it means the VM-EXIT is caused by shadow |
| 6574 | * page protected, we can zap the shadow page and retry this |
| 6575 | * instruction directly. |
| 6576 | * |
| 6577 | * Note: if the guest uses a non-page-table modifying instruction |
| 6578 | * on the PDE that points to the instruction, then we will unmap |
| 6579 | * the instruction and go to an infinite loop. So, we cache the |
| 6580 | * last retried eip and the last fault address, if we meet the eip |
| 6581 | * and the address again, we can break out of the potential infinite |
| 6582 | * loop. |
| 6583 | */ |
| 6584 | vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0; |
| 6585 | |
Sean Christopherson | 92daa48 | 2020-02-18 15:03:08 -0800 | [diff] [blame] | 6586 | if (!(emulation_type & EMULTYPE_ALLOW_RETRY_PF)) |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 6587 | return false; |
| 6588 | |
Sean Christopherson | 92daa48 | 2020-02-18 15:03:08 -0800 | [diff] [blame] | 6589 | if (WARN_ON_ONCE(is_guest_mode(vcpu)) || |
| 6590 | WARN_ON_ONCE(!(emulation_type & EMULTYPE_PF))) |
Sean Christopherson | 6c3dfeb | 2018-08-23 13:56:51 -0700 | [diff] [blame] | 6591 | return false; |
| 6592 | |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 6593 | if (x86_page_table_writing_insn(ctxt)) |
| 6594 | return false; |
| 6595 | |
Sean Christopherson | 736c291 | 2019-12-06 15:57:14 -0800 | [diff] [blame] | 6596 | if (ctxt->eip == last_retry_eip && last_retry_addr == cr2_or_gpa) |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 6597 | return false; |
| 6598 | |
| 6599 | vcpu->arch.last_retry_eip = ctxt->eip; |
Sean Christopherson | 736c291 | 2019-12-06 15:57:14 -0800 | [diff] [blame] | 6600 | vcpu->arch.last_retry_addr = cr2_or_gpa; |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 6601 | |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 6602 | if (!vcpu->arch.mmu->direct_map) |
Sean Christopherson | 736c291 | 2019-12-06 15:57:14 -0800 | [diff] [blame] | 6603 | gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2_or_gpa, NULL); |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 6604 | |
Xiao Guangrong | 2236802 | 2013-01-13 23:44:12 +0800 | [diff] [blame] | 6605 | kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa)); |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 6606 | |
| 6607 | return true; |
| 6608 | } |
| 6609 | |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6610 | static int complete_emulated_mmio(struct kvm_vcpu *vcpu); |
| 6611 | static int complete_emulated_pio(struct kvm_vcpu *vcpu); |
| 6612 | |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 6613 | static void kvm_smm_changed(struct kvm_vcpu *vcpu) |
Paolo Bonzini | a584539 | 2015-04-01 18:18:53 +0200 | [diff] [blame] | 6614 | { |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 6615 | if (!(vcpu->arch.hflags & HF_SMM_MASK)) { |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6616 | /* This is a good place to trace that we are exiting SMM. */ |
| 6617 | trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, false); |
| 6618 | |
Paolo Bonzini | c43203c | 2016-06-01 22:26:00 +0200 | [diff] [blame] | 6619 | /* Process a latched INIT or SMI, if any. */ |
| 6620 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 6621 | } |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 6622 | |
| 6623 | kvm_mmu_reset_context(vcpu); |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 6624 | } |
| 6625 | |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 6626 | static int kvm_vcpu_check_hw_bp(unsigned long addr, u32 type, u32 dr7, |
| 6627 | unsigned long *db) |
| 6628 | { |
| 6629 | u32 dr6 = 0; |
| 6630 | int i; |
| 6631 | u32 enable, rwlen; |
| 6632 | |
| 6633 | enable = dr7; |
| 6634 | rwlen = dr7 >> 16; |
| 6635 | for (i = 0; i < 4; i++, enable >>= 2, rwlen >>= 4) |
| 6636 | if ((enable & 3) && (rwlen & 15) == type && db[i] == addr) |
| 6637 | dr6 |= (1 << i); |
| 6638 | return dr6; |
| 6639 | } |
| 6640 | |
Sean Christopherson | 120c2c4 | 2019-08-27 14:40:29 -0700 | [diff] [blame] | 6641 | static int kvm_vcpu_do_singlestep(struct kvm_vcpu *vcpu) |
Paolo Bonzini | 663f4c6 | 2013-06-25 18:32:07 +0200 | [diff] [blame] | 6642 | { |
| 6643 | struct kvm_run *kvm_run = vcpu->run; |
| 6644 | |
Paolo Bonzini | c8401dd | 2017-06-07 15:13:14 +0200 | [diff] [blame] | 6645 | if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) { |
| 6646 | kvm_run->debug.arch.dr6 = DR6_BS | DR6_FIXED_1 | DR6_RTM; |
| 6647 | kvm_run->debug.arch.pc = vcpu->arch.singlestep_rip; |
| 6648 | kvm_run->debug.arch.exception = DB_VECTOR; |
| 6649 | kvm_run->exit_reason = KVM_EXIT_DEBUG; |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 6650 | return 0; |
Paolo Bonzini | 663f4c6 | 2013-06-25 18:32:07 +0200 | [diff] [blame] | 6651 | } |
Sean Christopherson | 120c2c4 | 2019-08-27 14:40:29 -0700 | [diff] [blame] | 6652 | kvm_queue_exception_p(vcpu, DB_VECTOR, DR6_BS); |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 6653 | return 1; |
Paolo Bonzini | 663f4c6 | 2013-06-25 18:32:07 +0200 | [diff] [blame] | 6654 | } |
| 6655 | |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6656 | int kvm_skip_emulated_instruction(struct kvm_vcpu *vcpu) |
| 6657 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 6658 | unsigned long rflags = kvm_x86_ops.get_rflags(vcpu); |
Vitaly Kuznetsov | f8ea7c6 | 2019-08-13 15:53:30 +0200 | [diff] [blame] | 6659 | int r; |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6660 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 6661 | r = kvm_x86_ops.skip_emulated_instruction(vcpu); |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 6662 | if (unlikely(!r)) |
Vitaly Kuznetsov | f8ea7c6 | 2019-08-13 15:53:30 +0200 | [diff] [blame] | 6663 | return 0; |
Paolo Bonzini | c8401dd | 2017-06-07 15:13:14 +0200 | [diff] [blame] | 6664 | |
| 6665 | /* |
| 6666 | * rflags is the old, "raw" value of the flags. The new value has |
| 6667 | * not been saved yet. |
| 6668 | * |
| 6669 | * This is correct even for TF set by the guest, because "the |
| 6670 | * processor will not generate this exception after the instruction |
| 6671 | * that sets the TF flag". |
| 6672 | */ |
| 6673 | if (unlikely(rflags & X86_EFLAGS_TF)) |
Sean Christopherson | 120c2c4 | 2019-08-27 14:40:29 -0700 | [diff] [blame] | 6674 | r = kvm_vcpu_do_singlestep(vcpu); |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 6675 | return r; |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 6676 | } |
| 6677 | EXPORT_SYMBOL_GPL(kvm_skip_emulated_instruction); |
| 6678 | |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 6679 | static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r) |
| 6680 | { |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 6681 | if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) && |
| 6682 | (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) { |
Nadav Amit | 82b3277 | 2014-11-02 11:54:45 +0200 | [diff] [blame] | 6683 | struct kvm_run *kvm_run = vcpu->run; |
| 6684 | unsigned long eip = kvm_get_linear_rip(vcpu); |
| 6685 | u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0, |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 6686 | vcpu->arch.guest_debug_dr7, |
| 6687 | vcpu->arch.eff_db); |
| 6688 | |
| 6689 | if (dr6 != 0) { |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 6690 | kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1 | DR6_RTM; |
Nadav Amit | 82b3277 | 2014-11-02 11:54:45 +0200 | [diff] [blame] | 6691 | kvm_run->debug.arch.pc = eip; |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 6692 | kvm_run->debug.arch.exception = DB_VECTOR; |
| 6693 | kvm_run->exit_reason = KVM_EXIT_DEBUG; |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 6694 | *r = 0; |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 6695 | return true; |
| 6696 | } |
| 6697 | } |
| 6698 | |
Nadav Amit | 4161a56 | 2014-07-17 01:19:31 +0300 | [diff] [blame] | 6699 | if (unlikely(vcpu->arch.dr7 & DR7_BP_EN_MASK) && |
| 6700 | !(kvm_get_rflags(vcpu) & X86_EFLAGS_RF)) { |
Nadav Amit | 82b3277 | 2014-11-02 11:54:45 +0200 | [diff] [blame] | 6701 | unsigned long eip = kvm_get_linear_rip(vcpu); |
| 6702 | u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0, |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 6703 | vcpu->arch.dr7, |
| 6704 | vcpu->arch.db); |
| 6705 | |
| 6706 | if (dr6 != 0) { |
Liran Alon | 1fc5d194 | 2019-06-06 01:54:47 +0300 | [diff] [blame] | 6707 | vcpu->arch.dr6 &= ~DR_TRAP_BITS; |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 6708 | vcpu->arch.dr6 |= dr6 | DR6_RTM; |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 6709 | kvm_queue_exception(vcpu, DB_VECTOR); |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 6710 | *r = 1; |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 6711 | return true; |
| 6712 | } |
| 6713 | } |
| 6714 | |
| 6715 | return false; |
| 6716 | } |
| 6717 | |
Liran Alon | 04789b6 | 2018-03-12 13:12:50 +0200 | [diff] [blame] | 6718 | static bool is_vmware_backdoor_opcode(struct x86_emulate_ctxt *ctxt) |
| 6719 | { |
Arbel Moshe | 2d7921c | 2018-03-12 13:12:53 +0200 | [diff] [blame] | 6720 | switch (ctxt->opcode_len) { |
| 6721 | case 1: |
| 6722 | switch (ctxt->b) { |
| 6723 | case 0xe4: /* IN */ |
| 6724 | case 0xe5: |
| 6725 | case 0xec: |
| 6726 | case 0xed: |
| 6727 | case 0xe6: /* OUT */ |
| 6728 | case 0xe7: |
| 6729 | case 0xee: |
| 6730 | case 0xef: |
| 6731 | case 0x6c: /* INS */ |
| 6732 | case 0x6d: |
| 6733 | case 0x6e: /* OUTS */ |
| 6734 | case 0x6f: |
| 6735 | return true; |
| 6736 | } |
| 6737 | break; |
| 6738 | case 2: |
| 6739 | switch (ctxt->b) { |
| 6740 | case 0x33: /* RDPMC */ |
| 6741 | return true; |
| 6742 | } |
| 6743 | break; |
Liran Alon | 04789b6 | 2018-03-12 13:12:50 +0200 | [diff] [blame] | 6744 | } |
| 6745 | |
| 6746 | return false; |
| 6747 | } |
| 6748 | |
Sean Christopherson | 736c291 | 2019-12-06 15:57:14 -0800 | [diff] [blame] | 6749 | int x86_emulate_instruction(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa, |
| 6750 | int emulation_type, void *insn, int insn_len) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 6751 | { |
Gleb Natapov | 95cb229 | 2010-04-28 19:15:43 +0300 | [diff] [blame] | 6752 | int r; |
Sean Christopherson | c9b8b07 | 2020-02-18 15:29:48 -0800 | [diff] [blame] | 6753 | struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt; |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 6754 | bool writeback = true; |
Xiao Guangrong | 93c05d3 | 2013-01-13 23:49:07 +0800 | [diff] [blame] | 6755 | bool write_fault_to_spt = vcpu->arch.write_fault_to_shadow_pgtable; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 6756 | |
Paolo Bonzini | c595cee | 2018-07-02 13:07:14 +0200 | [diff] [blame] | 6757 | vcpu->arch.l1tf_flush_l1d = true; |
| 6758 | |
Xiao Guangrong | 93c05d3 | 2013-01-13 23:49:07 +0800 | [diff] [blame] | 6759 | /* |
| 6760 | * Clear write_fault_to_shadow_pgtable here to ensure it is |
| 6761 | * never reused. |
| 6762 | */ |
| 6763 | vcpu->arch.write_fault_to_shadow_pgtable = false; |
Avi Kivity | 26eef70 | 2008-07-03 14:59:22 +0300 | [diff] [blame] | 6764 | kvm_clear_exception_queue(vcpu); |
Gleb Natapov | 8d7d8102 | 2011-04-12 12:36:21 +0300 | [diff] [blame] | 6765 | |
Sheng Yang | 571008d | 2008-01-02 14:49:22 +0800 | [diff] [blame] | 6766 | if (!(emulation_type & EMULTYPE_NO_DECODE)) { |
Mohammed Gamal | 8ec4722 | 2010-08-16 00:47:01 +0300 | [diff] [blame] | 6767 | init_emulate_ctxt(vcpu); |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 6768 | |
| 6769 | /* |
| 6770 | * We will reenter on the same instruction since |
| 6771 | * we do not set complete_userspace_io. This does not |
| 6772 | * handle watchpoints yet, those would be handled in |
| 6773 | * the emulate_ops. |
| 6774 | */ |
Vitaly Kuznetsov | d391f12 | 2018-01-25 16:37:07 +0100 | [diff] [blame] | 6775 | if (!(emulation_type & EMULTYPE_SKIP) && |
| 6776 | kvm_vcpu_check_breakpoint(vcpu, &r)) |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 6777 | return r; |
| 6778 | |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 6779 | ctxt->interruptibility = 0; |
| 6780 | ctxt->have_exception = false; |
Paolo Bonzini | e0ad0b4 | 2014-08-20 10:08:23 +0200 | [diff] [blame] | 6781 | ctxt->exception.vector = -1; |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 6782 | ctxt->perm_ok = false; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 6783 | |
Borislav Petkov | b51e974 | 2013-09-22 16:44:52 +0200 | [diff] [blame] | 6784 | ctxt->ud = emulation_type & EMULTYPE_TRAP_UD; |
Avi Kivity | 4005996 | 2011-02-01 16:32:04 +0200 | [diff] [blame] | 6785 | |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 6786 | r = x86_decode_insn(ctxt, insn, insn_len); |
Joerg Roedel | d47f00a | 2010-09-10 17:30:56 +0200 | [diff] [blame] | 6787 | |
Avi Kivity | e46479f | 2010-04-11 13:05:16 +0300 | [diff] [blame] | 6788 | trace_kvm_emulate_insn_start(vcpu); |
Avi Kivity | f2b5756 | 2007-11-18 15:17:51 +0200 | [diff] [blame] | 6789 | ++vcpu->stat.insn_emulation; |
Takuya Yoshikawa | 1d2887e | 2011-07-30 18:03:34 +0900 | [diff] [blame] | 6790 | if (r != EMULATION_OK) { |
Sean Christopherson | b400060 | 2019-08-27 14:40:32 -0700 | [diff] [blame] | 6791 | if ((emulation_type & EMULTYPE_TRAP_UD) || |
Sean Christopherson | c83fad65e | 2019-08-27 14:40:33 -0700 | [diff] [blame] | 6792 | (emulation_type & EMULTYPE_TRAP_UD_FORCED)) { |
| 6793 | kvm_queue_exception(vcpu, UD_VECTOR); |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 6794 | return 1; |
Sean Christopherson | c83fad65e | 2019-08-27 14:40:33 -0700 | [diff] [blame] | 6795 | } |
Sean Christopherson | 736c291 | 2019-12-06 15:57:14 -0800 | [diff] [blame] | 6796 | if (reexecute_instruction(vcpu, cr2_or_gpa, |
| 6797 | write_fault_to_spt, |
| 6798 | emulation_type)) |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 6799 | return 1; |
Jan Dakinevich | 8530a79 | 2019-08-27 13:07:09 +0000 | [diff] [blame] | 6800 | if (ctxt->have_exception) { |
Jan Dakinevich | c8848ce | 2019-08-27 13:07:08 +0000 | [diff] [blame] | 6801 | /* |
| 6802 | * #UD should result in just EMULATION_FAILED, and trap-like |
| 6803 | * exception should not be encountered during decode. |
| 6804 | */ |
| 6805 | WARN_ON_ONCE(ctxt->exception.vector == UD_VECTOR || |
| 6806 | exception_type(ctxt->exception.vector) == EXCPT_TRAP); |
Jan Dakinevich | 8530a79 | 2019-08-27 13:07:09 +0000 | [diff] [blame] | 6807 | inject_emulated_exception(vcpu); |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 6808 | return 1; |
Jan Dakinevich | 8530a79 | 2019-08-27 13:07:09 +0000 | [diff] [blame] | 6809 | } |
Liran Alon | e236617 | 2018-03-12 13:12:49 +0200 | [diff] [blame] | 6810 | return handle_emulation_failure(vcpu, emulation_type); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 6811 | } |
| 6812 | } |
| 6813 | |
Sean Christopherson | 42cbf06 | 2019-08-27 14:40:31 -0700 | [diff] [blame] | 6814 | if ((emulation_type & EMULTYPE_VMWARE_GP) && |
| 6815 | !is_vmware_backdoor_opcode(ctxt)) { |
| 6816 | kvm_queue_exception_e(vcpu, GP_VECTOR, 0); |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 6817 | return 1; |
Sean Christopherson | 42cbf06 | 2019-08-27 14:40:31 -0700 | [diff] [blame] | 6818 | } |
Liran Alon | 04789b6 | 2018-03-12 13:12:50 +0200 | [diff] [blame] | 6819 | |
Sean Christopherson | 1957aa6 | 2019-08-27 14:40:39 -0700 | [diff] [blame] | 6820 | /* |
| 6821 | * Note, EMULTYPE_SKIP is intended for use *only* by vendor callbacks |
| 6822 | * for kvm_skip_emulated_instruction(). The caller is responsible for |
| 6823 | * updating interruptibility state and injecting single-step #DBs. |
| 6824 | */ |
Gleb Natapov | ba8afb6 | 2009-04-12 13:36:57 +0300 | [diff] [blame] | 6825 | if (emulation_type & EMULTYPE_SKIP) { |
Avi Kivity | 9dac77f | 2011-06-01 15:34:25 +0300 | [diff] [blame] | 6826 | kvm_rip_write(vcpu, ctxt->_eip); |
Nadav Amit | bb663c7 | 2014-07-21 14:37:26 +0300 | [diff] [blame] | 6827 | if (ctxt->eflags & X86_EFLAGS_RF) |
| 6828 | kvm_set_rflags(vcpu, ctxt->eflags & ~X86_EFLAGS_RF); |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 6829 | return 1; |
Gleb Natapov | ba8afb6 | 2009-04-12 13:36:57 +0300 | [diff] [blame] | 6830 | } |
| 6831 | |
Sean Christopherson | 736c291 | 2019-12-06 15:57:14 -0800 | [diff] [blame] | 6832 | if (retry_instruction(ctxt, cr2_or_gpa, emulation_type)) |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 6833 | return 1; |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 6834 | |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 6835 | /* this is needed for vmware backdoor interface to work since it |
Gleb Natapov | 4d2179e | 2010-04-28 19:15:42 +0300 | [diff] [blame] | 6836 | changes registers values during IO operation */ |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 6837 | if (vcpu->arch.emulate_regs_need_sync_from_vcpu) { |
| 6838 | vcpu->arch.emulate_regs_need_sync_from_vcpu = false; |
Avi Kivity | dd856ef | 2012-08-27 23:46:17 +0300 | [diff] [blame] | 6839 | emulator_invalidate_register_cache(ctxt); |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 6840 | } |
Gleb Natapov | 4d2179e | 2010-04-28 19:15:42 +0300 | [diff] [blame] | 6841 | |
Gleb Natapov | 5cd2191 | 2010-03-18 15:20:26 +0200 | [diff] [blame] | 6842 | restart: |
Sean Christopherson | 92daa48 | 2020-02-18 15:03:08 -0800 | [diff] [blame] | 6843 | if (emulation_type & EMULTYPE_PF) { |
| 6844 | /* Save the faulting GPA (cr2) in the address field */ |
| 6845 | ctxt->exception.address = cr2_or_gpa; |
| 6846 | |
| 6847 | /* With shadow page tables, cr2 contains a GVA or nGPA. */ |
| 6848 | if (vcpu->arch.mmu->direct_map) { |
Sean Christopherson | 744e699 | 2020-02-18 15:03:09 -0800 | [diff] [blame] | 6849 | ctxt->gpa_available = true; |
| 6850 | ctxt->gpa_val = cr2_or_gpa; |
Sean Christopherson | 92daa48 | 2020-02-18 15:03:08 -0800 | [diff] [blame] | 6851 | } |
| 6852 | } else { |
| 6853 | /* Sanitize the address out of an abundance of paranoia. */ |
| 6854 | ctxt->exception.address = 0; |
| 6855 | } |
Tom Lendacky | 0f89b20 | 2016-12-14 14:59:23 -0500 | [diff] [blame] | 6856 | |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 6857 | r = x86_emulate_insn(ctxt); |
Gleb Natapov | c3cd7ff | 2010-04-28 19:15:35 +0300 | [diff] [blame] | 6858 | |
Joerg Roedel | 775fde8 | 2011-04-04 12:39:24 +0200 | [diff] [blame] | 6859 | if (r == EMULATION_INTERCEPTED) |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 6860 | return 1; |
Joerg Roedel | 775fde8 | 2011-04-04 12:39:24 +0200 | [diff] [blame] | 6861 | |
Gleb Natapov | d2ddd1c | 2010-08-25 12:47:43 +0300 | [diff] [blame] | 6862 | if (r == EMULATION_FAILED) { |
Sean Christopherson | 736c291 | 2019-12-06 15:57:14 -0800 | [diff] [blame] | 6863 | if (reexecute_instruction(vcpu, cr2_or_gpa, write_fault_to_spt, |
Gleb Natapov | 991eebf | 2013-04-11 12:10:51 +0300 | [diff] [blame] | 6864 | emulation_type)) |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 6865 | return 1; |
Gleb Natapov | c3cd7ff | 2010-04-28 19:15:35 +0300 | [diff] [blame] | 6866 | |
Liran Alon | e236617 | 2018-03-12 13:12:49 +0200 | [diff] [blame] | 6867 | return handle_emulation_failure(vcpu, emulation_type); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 6868 | } |
| 6869 | |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 6870 | if (ctxt->have_exception) { |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 6871 | r = 1; |
Paolo Bonzini | ef54bcf | 2014-09-04 19:46:15 +0200 | [diff] [blame] | 6872 | if (inject_emulated_exception(vcpu)) |
| 6873 | return r; |
Gleb Natapov | d2ddd1c | 2010-08-25 12:47:43 +0300 | [diff] [blame] | 6874 | } else if (vcpu->arch.pio.count) { |
Paolo Bonzini | 0912c97 | 2013-08-27 15:41:43 +0200 | [diff] [blame] | 6875 | if (!vcpu->arch.pio.in) { |
| 6876 | /* FIXME: return into emulator if single-stepping. */ |
Gleb Natapov | e85d28f | 2010-07-29 15:11:52 +0300 | [diff] [blame] | 6877 | vcpu->arch.pio.count = 0; |
Paolo Bonzini | 0912c97 | 2013-08-27 15:41:43 +0200 | [diff] [blame] | 6878 | } else { |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 6879 | writeback = false; |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6880 | vcpu->arch.complete_userspace_io = complete_emulated_pio; |
| 6881 | } |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 6882 | r = 0; |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 6883 | } else if (vcpu->mmio_needed) { |
Sean Christopherson | bc8a0aa | 2019-08-27 14:40:27 -0700 | [diff] [blame] | 6884 | ++vcpu->stat.mmio_exits; |
| 6885 | |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 6886 | if (!vcpu->mmio_is_write) |
| 6887 | writeback = false; |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 6888 | r = 0; |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6889 | vcpu->arch.complete_userspace_io = complete_emulated_mmio; |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 6890 | } else if (r == EMULATION_RESTART) |
Gleb Natapov | e85d28f | 2010-07-29 15:11:52 +0300 | [diff] [blame] | 6891 | goto restart; |
Gleb Natapov | d2ddd1c | 2010-08-25 12:47:43 +0300 | [diff] [blame] | 6892 | else |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 6893 | r = 1; |
Gleb Natapov | e85d28f | 2010-07-29 15:11:52 +0300 | [diff] [blame] | 6894 | |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 6895 | if (writeback) { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 6896 | unsigned long rflags = kvm_x86_ops.get_rflags(vcpu); |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 6897 | toggle_interruptibility(vcpu, ctxt->interruptibility); |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 6898 | vcpu->arch.emulate_regs_need_sync_to_vcpu = false; |
Nadav Amit | 38827db | 2014-11-02 11:54:53 +0200 | [diff] [blame] | 6899 | if (!ctxt->have_exception || |
Sean Christopherson | 75ee23b | 2019-08-23 13:55:44 -0700 | [diff] [blame] | 6900 | exception_type(ctxt->exception.vector) == EXCPT_TRAP) { |
| 6901 | kvm_rip_write(vcpu, ctxt->eip); |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 6902 | if (r && ctxt->tf) |
Sean Christopherson | 120c2c4 | 2019-08-27 14:40:29 -0700 | [diff] [blame] | 6903 | r = kvm_vcpu_do_singlestep(vcpu); |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 6904 | if (kvm_x86_ops.update_emulated_instruction) |
| 6905 | kvm_x86_ops.update_emulated_instruction(vcpu); |
Nadav Amit | 38827db | 2014-11-02 11:54:53 +0200 | [diff] [blame] | 6906 | __kvm_set_rflags(vcpu, ctxt->eflags); |
Sean Christopherson | 75ee23b | 2019-08-23 13:55:44 -0700 | [diff] [blame] | 6907 | } |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 6908 | |
| 6909 | /* |
| 6910 | * For STI, interrupts are shadowed; so KVM_REQ_EVENT will |
| 6911 | * do nothing, and it will be requested again as soon as |
| 6912 | * the shadow expires. But we still need to check here, |
| 6913 | * because POPF has no interrupt shadow. |
| 6914 | */ |
| 6915 | if (unlikely((ctxt->eflags & ~rflags) & X86_EFLAGS_IF)) |
| 6916 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 6917 | } else |
| 6918 | vcpu->arch.emulate_regs_need_sync_to_vcpu = true; |
Gleb Natapov | 3457e41 | 2010-04-28 19:15:38 +0300 | [diff] [blame] | 6919 | |
Gleb Natapov | e85d28f | 2010-07-29 15:11:52 +0300 | [diff] [blame] | 6920 | return r; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 6921 | } |
Sean Christopherson | c60658d | 2018-08-23 13:56:53 -0700 | [diff] [blame] | 6922 | |
| 6923 | int kvm_emulate_instruction(struct kvm_vcpu *vcpu, int emulation_type) |
| 6924 | { |
| 6925 | return x86_emulate_instruction(vcpu, 0, emulation_type, NULL, 0); |
| 6926 | } |
| 6927 | EXPORT_SYMBOL_GPL(kvm_emulate_instruction); |
| 6928 | |
| 6929 | int kvm_emulate_instruction_from_buffer(struct kvm_vcpu *vcpu, |
| 6930 | void *insn, int insn_len) |
| 6931 | { |
| 6932 | return x86_emulate_instruction(vcpu, 0, 0, insn, insn_len); |
| 6933 | } |
| 6934 | EXPORT_SYMBOL_GPL(kvm_emulate_instruction_from_buffer); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 6935 | |
Sean Christopherson | 8764ed5 | 2019-04-29 07:04:15 -0700 | [diff] [blame] | 6936 | static int complete_fast_pio_out_port_0x7e(struct kvm_vcpu *vcpu) |
| 6937 | { |
| 6938 | vcpu->arch.pio.count = 0; |
| 6939 | return 1; |
| 6940 | } |
| 6941 | |
Sean Christopherson | 45def77 | 2019-03-11 20:01:05 -0700 | [diff] [blame] | 6942 | static int complete_fast_pio_out(struct kvm_vcpu *vcpu) |
| 6943 | { |
| 6944 | vcpu->arch.pio.count = 0; |
| 6945 | |
| 6946 | if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip))) |
| 6947 | return 1; |
| 6948 | |
| 6949 | return kvm_skip_emulated_instruction(vcpu); |
| 6950 | } |
| 6951 | |
Sean Christopherson | dca7f12 | 2018-03-08 08:57:27 -0800 | [diff] [blame] | 6952 | static int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size, |
| 6953 | unsigned short port) |
Carsten Otte | de7d789 | 2007-10-30 18:44:25 +0100 | [diff] [blame] | 6954 | { |
Sean Christopherson | de3cd11 | 2019-04-30 10:36:17 -0700 | [diff] [blame] | 6955 | unsigned long val = kvm_rax_read(vcpu); |
Sean Christopherson | 2e3bb4d | 2020-02-18 15:29:41 -0800 | [diff] [blame] | 6956 | int ret = emulator_pio_out(vcpu, size, port, &val, 1); |
| 6957 | |
Sean Christopherson | 8764ed5 | 2019-04-29 07:04:15 -0700 | [diff] [blame] | 6958 | if (ret) |
| 6959 | return ret; |
Sean Christopherson | 45def77 | 2019-03-11 20:01:05 -0700 | [diff] [blame] | 6960 | |
Sean Christopherson | 8764ed5 | 2019-04-29 07:04:15 -0700 | [diff] [blame] | 6961 | /* |
| 6962 | * Workaround userspace that relies on old KVM behavior of %rip being |
| 6963 | * incremented prior to exiting to userspace to handle "OUT 0x7e". |
| 6964 | */ |
| 6965 | if (port == 0x7e && |
| 6966 | kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_OUT_7E_INC_RIP)) { |
| 6967 | vcpu->arch.complete_userspace_io = |
| 6968 | complete_fast_pio_out_port_0x7e; |
| 6969 | kvm_skip_emulated_instruction(vcpu); |
| 6970 | } else { |
Sean Christopherson | 45def77 | 2019-03-11 20:01:05 -0700 | [diff] [blame] | 6971 | vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu); |
| 6972 | vcpu->arch.complete_userspace_io = complete_fast_pio_out; |
| 6973 | } |
Sean Christopherson | 8764ed5 | 2019-04-29 07:04:15 -0700 | [diff] [blame] | 6974 | return 0; |
Carsten Otte | de7d789 | 2007-10-30 18:44:25 +0100 | [diff] [blame] | 6975 | } |
Carsten Otte | de7d789 | 2007-10-30 18:44:25 +0100 | [diff] [blame] | 6976 | |
Tom Lendacky | 8370c3d | 2016-11-23 12:01:50 -0500 | [diff] [blame] | 6977 | static int complete_fast_pio_in(struct kvm_vcpu *vcpu) |
| 6978 | { |
| 6979 | unsigned long val; |
| 6980 | |
| 6981 | /* We should only ever be called with arch.pio.count equal to 1 */ |
| 6982 | BUG_ON(vcpu->arch.pio.count != 1); |
| 6983 | |
Sean Christopherson | 45def77 | 2019-03-11 20:01:05 -0700 | [diff] [blame] | 6984 | if (unlikely(!kvm_is_linear_rip(vcpu, vcpu->arch.pio.linear_rip))) { |
| 6985 | vcpu->arch.pio.count = 0; |
| 6986 | return 1; |
| 6987 | } |
| 6988 | |
Tom Lendacky | 8370c3d | 2016-11-23 12:01:50 -0500 | [diff] [blame] | 6989 | /* For size less than 4 we merge, else we zero extend */ |
Sean Christopherson | de3cd11 | 2019-04-30 10:36:17 -0700 | [diff] [blame] | 6990 | val = (vcpu->arch.pio.size < 4) ? kvm_rax_read(vcpu) : 0; |
Tom Lendacky | 8370c3d | 2016-11-23 12:01:50 -0500 | [diff] [blame] | 6991 | |
| 6992 | /* |
Sean Christopherson | 2e3bb4d | 2020-02-18 15:29:41 -0800 | [diff] [blame] | 6993 | * Since vcpu->arch.pio.count == 1 let emulator_pio_in perform |
Tom Lendacky | 8370c3d | 2016-11-23 12:01:50 -0500 | [diff] [blame] | 6994 | * the copy and tracing |
| 6995 | */ |
Sean Christopherson | 2e3bb4d | 2020-02-18 15:29:41 -0800 | [diff] [blame] | 6996 | emulator_pio_in(vcpu, vcpu->arch.pio.size, vcpu->arch.pio.port, &val, 1); |
Sean Christopherson | de3cd11 | 2019-04-30 10:36:17 -0700 | [diff] [blame] | 6997 | kvm_rax_write(vcpu, val); |
Tom Lendacky | 8370c3d | 2016-11-23 12:01:50 -0500 | [diff] [blame] | 6998 | |
Sean Christopherson | 45def77 | 2019-03-11 20:01:05 -0700 | [diff] [blame] | 6999 | return kvm_skip_emulated_instruction(vcpu); |
Tom Lendacky | 8370c3d | 2016-11-23 12:01:50 -0500 | [diff] [blame] | 7000 | } |
| 7001 | |
Sean Christopherson | dca7f12 | 2018-03-08 08:57:27 -0800 | [diff] [blame] | 7002 | static int kvm_fast_pio_in(struct kvm_vcpu *vcpu, int size, |
| 7003 | unsigned short port) |
Tom Lendacky | 8370c3d | 2016-11-23 12:01:50 -0500 | [diff] [blame] | 7004 | { |
| 7005 | unsigned long val; |
| 7006 | int ret; |
| 7007 | |
| 7008 | /* For size less than 4 we merge, else we zero extend */ |
Sean Christopherson | de3cd11 | 2019-04-30 10:36:17 -0700 | [diff] [blame] | 7009 | val = (size < 4) ? kvm_rax_read(vcpu) : 0; |
Tom Lendacky | 8370c3d | 2016-11-23 12:01:50 -0500 | [diff] [blame] | 7010 | |
Sean Christopherson | 2e3bb4d | 2020-02-18 15:29:41 -0800 | [diff] [blame] | 7011 | ret = emulator_pio_in(vcpu, size, port, &val, 1); |
Tom Lendacky | 8370c3d | 2016-11-23 12:01:50 -0500 | [diff] [blame] | 7012 | if (ret) { |
Sean Christopherson | de3cd11 | 2019-04-30 10:36:17 -0700 | [diff] [blame] | 7013 | kvm_rax_write(vcpu, val); |
Tom Lendacky | 8370c3d | 2016-11-23 12:01:50 -0500 | [diff] [blame] | 7014 | return ret; |
| 7015 | } |
| 7016 | |
Sean Christopherson | 45def77 | 2019-03-11 20:01:05 -0700 | [diff] [blame] | 7017 | vcpu->arch.pio.linear_rip = kvm_get_linear_rip(vcpu); |
Tom Lendacky | 8370c3d | 2016-11-23 12:01:50 -0500 | [diff] [blame] | 7018 | vcpu->arch.complete_userspace_io = complete_fast_pio_in; |
| 7019 | |
| 7020 | return 0; |
| 7021 | } |
Sean Christopherson | dca7f12 | 2018-03-08 08:57:27 -0800 | [diff] [blame] | 7022 | |
| 7023 | int kvm_fast_pio(struct kvm_vcpu *vcpu, int size, unsigned short port, int in) |
| 7024 | { |
Sean Christopherson | 45def77 | 2019-03-11 20:01:05 -0700 | [diff] [blame] | 7025 | int ret; |
Sean Christopherson | dca7f12 | 2018-03-08 08:57:27 -0800 | [diff] [blame] | 7026 | |
Sean Christopherson | dca7f12 | 2018-03-08 08:57:27 -0800 | [diff] [blame] | 7027 | if (in) |
Sean Christopherson | 45def77 | 2019-03-11 20:01:05 -0700 | [diff] [blame] | 7028 | ret = kvm_fast_pio_in(vcpu, size, port); |
Sean Christopherson | dca7f12 | 2018-03-08 08:57:27 -0800 | [diff] [blame] | 7029 | else |
Sean Christopherson | 45def77 | 2019-03-11 20:01:05 -0700 | [diff] [blame] | 7030 | ret = kvm_fast_pio_out(vcpu, size, port); |
| 7031 | return ret && kvm_skip_emulated_instruction(vcpu); |
Sean Christopherson | dca7f12 | 2018-03-08 08:57:27 -0800 | [diff] [blame] | 7032 | } |
| 7033 | EXPORT_SYMBOL_GPL(kvm_fast_pio); |
Tom Lendacky | 8370c3d | 2016-11-23 12:01:50 -0500 | [diff] [blame] | 7034 | |
Sebastian Andrzej Siewior | 251a5fd | 2016-07-13 17:16:33 +0000 | [diff] [blame] | 7035 | static int kvmclock_cpu_down_prep(unsigned int cpu) |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 7036 | { |
Tejun Heo | 0a3aee0 | 2010-12-18 16:28:55 +0100 | [diff] [blame] | 7037 | __this_cpu_write(cpu_tsc_khz, 0); |
Sebastian Andrzej Siewior | 251a5fd | 2016-07-13 17:16:33 +0000 | [diff] [blame] | 7038 | return 0; |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 7039 | } |
| 7040 | |
| 7041 | static void tsc_khz_changed(void *data) |
| 7042 | { |
| 7043 | struct cpufreq_freqs *freq = data; |
| 7044 | unsigned long khz = 0; |
| 7045 | |
| 7046 | if (data) |
| 7047 | khz = freq->new; |
| 7048 | else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) |
| 7049 | khz = cpufreq_quick_get(raw_smp_processor_id()); |
| 7050 | if (!khz) |
| 7051 | khz = tsc_khz; |
Tejun Heo | 0a3aee0 | 2010-12-18 16:28:55 +0100 | [diff] [blame] | 7052 | __this_cpu_write(cpu_tsc_khz, khz); |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 7053 | } |
| 7054 | |
Thomas Gleixner | 5fa4ec9 | 2018-01-31 09:41:40 +0100 | [diff] [blame] | 7055 | #ifdef CONFIG_X86_64 |
Vitaly Kuznetsov | 0092e43 | 2018-01-24 14:23:37 +0100 | [diff] [blame] | 7056 | static void kvm_hyperv_tsc_notifier(void) |
| 7057 | { |
Vitaly Kuznetsov | 0092e43 | 2018-01-24 14:23:37 +0100 | [diff] [blame] | 7058 | struct kvm *kvm; |
| 7059 | struct kvm_vcpu *vcpu; |
| 7060 | int cpu; |
| 7061 | |
Junaid Shahid | 0d9ce16 | 2019-01-03 17:14:28 -0800 | [diff] [blame] | 7062 | mutex_lock(&kvm_lock); |
Vitaly Kuznetsov | 0092e43 | 2018-01-24 14:23:37 +0100 | [diff] [blame] | 7063 | list_for_each_entry(kvm, &vm_list, vm_list) |
| 7064 | kvm_make_mclock_inprogress_request(kvm); |
| 7065 | |
| 7066 | hyperv_stop_tsc_emulation(); |
| 7067 | |
| 7068 | /* TSC frequency always matches when on Hyper-V */ |
| 7069 | for_each_present_cpu(cpu) |
| 7070 | per_cpu(cpu_tsc_khz, cpu) = tsc_khz; |
| 7071 | kvm_max_guest_tsc_khz = tsc_khz; |
| 7072 | |
| 7073 | list_for_each_entry(kvm, &vm_list, vm_list) { |
| 7074 | struct kvm_arch *ka = &kvm->arch; |
| 7075 | |
| 7076 | spin_lock(&ka->pvclock_gtod_sync_lock); |
| 7077 | |
| 7078 | pvclock_update_vm_gtod_copy(kvm); |
| 7079 | |
| 7080 | kvm_for_each_vcpu(cpu, vcpu, kvm) |
| 7081 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu); |
| 7082 | |
| 7083 | kvm_for_each_vcpu(cpu, vcpu, kvm) |
| 7084 | kvm_clear_request(KVM_REQ_MCLOCK_INPROGRESS, vcpu); |
| 7085 | |
| 7086 | spin_unlock(&ka->pvclock_gtod_sync_lock); |
| 7087 | } |
Junaid Shahid | 0d9ce16 | 2019-01-03 17:14:28 -0800 | [diff] [blame] | 7088 | mutex_unlock(&kvm_lock); |
Vitaly Kuznetsov | 0092e43 | 2018-01-24 14:23:37 +0100 | [diff] [blame] | 7089 | } |
Thomas Gleixner | 5fa4ec9 | 2018-01-31 09:41:40 +0100 | [diff] [blame] | 7090 | #endif |
Vitaly Kuznetsov | 0092e43 | 2018-01-24 14:23:37 +0100 | [diff] [blame] | 7091 | |
Viresh Kumar | df24014 | 2019-04-29 15:03:58 +0530 | [diff] [blame] | 7092 | static void __kvmclock_cpufreq_notifier(struct cpufreq_freqs *freq, int cpu) |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 7093 | { |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 7094 | struct kvm *kvm; |
| 7095 | struct kvm_vcpu *vcpu; |
| 7096 | int i, send_ipi = 0; |
| 7097 | |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 7098 | /* |
| 7099 | * We allow guests to temporarily run on slowing clocks, |
| 7100 | * provided we notify them after, or to run on accelerating |
| 7101 | * clocks, provided we notify them before. Thus time never |
| 7102 | * goes backwards. |
| 7103 | * |
| 7104 | * However, we have a problem. We can't atomically update |
| 7105 | * the frequency of a given CPU from this function; it is |
| 7106 | * merely a notifier, which can be called from any CPU. |
| 7107 | * Changing the TSC frequency at arbitrary points in time |
| 7108 | * requires a recomputation of local variables related to |
| 7109 | * the TSC for each VCPU. We must flag these local variables |
| 7110 | * to be updated and be sure the update takes place with the |
| 7111 | * new frequency before any guests proceed. |
| 7112 | * |
| 7113 | * Unfortunately, the combination of hotplug CPU and frequency |
| 7114 | * change creates an intractable locking scenario; the order |
| 7115 | * of when these callouts happen is undefined with respect to |
| 7116 | * CPU hotplug, and they can race with each other. As such, |
| 7117 | * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is |
| 7118 | * undefined; you can actually have a CPU frequency change take |
| 7119 | * place in between the computation of X and the setting of the |
| 7120 | * variable. To protect against this problem, all updates of |
| 7121 | * the per_cpu tsc_khz variable are done in an interrupt |
| 7122 | * protected IPI, and all callers wishing to update the value |
| 7123 | * must wait for a synchronous IPI to complete (which is trivial |
| 7124 | * if the caller is on the CPU already). This establishes the |
| 7125 | * necessary total order on variable updates. |
| 7126 | * |
| 7127 | * Note that because a guest time update may take place |
| 7128 | * anytime after the setting of the VCPU's request bit, the |
| 7129 | * correct TSC value must be set before the request. However, |
| 7130 | * to ensure the update actually makes it to any guest which |
| 7131 | * starts running in hardware virtualization between the set |
| 7132 | * and the acquisition of the spinlock, we must also ping the |
| 7133 | * CPU after setting the request bit. |
| 7134 | * |
| 7135 | */ |
| 7136 | |
Viresh Kumar | df24014 | 2019-04-29 15:03:58 +0530 | [diff] [blame] | 7137 | smp_call_function_single(cpu, tsc_khz_changed, freq, 1); |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 7138 | |
Junaid Shahid | 0d9ce16 | 2019-01-03 17:14:28 -0800 | [diff] [blame] | 7139 | mutex_lock(&kvm_lock); |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 7140 | list_for_each_entry(kvm, &vm_list, vm_list) { |
Gleb Natapov | 988a2ca | 2009-06-09 15:56:29 +0300 | [diff] [blame] | 7141 | kvm_for_each_vcpu(i, vcpu, kvm) { |
Viresh Kumar | df24014 | 2019-04-29 15:03:58 +0530 | [diff] [blame] | 7142 | if (vcpu->cpu != cpu) |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 7143 | continue; |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 7144 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu); |
Junaid Shahid | 0d9ce16 | 2019-01-03 17:14:28 -0800 | [diff] [blame] | 7145 | if (vcpu->cpu != raw_smp_processor_id()) |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 7146 | send_ipi = 1; |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 7147 | } |
| 7148 | } |
Junaid Shahid | 0d9ce16 | 2019-01-03 17:14:28 -0800 | [diff] [blame] | 7149 | mutex_unlock(&kvm_lock); |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 7150 | |
| 7151 | if (freq->old < freq->new && send_ipi) { |
| 7152 | /* |
| 7153 | * We upscale the frequency. Must make the guest |
| 7154 | * doesn't see old kvmclock values while running with |
| 7155 | * the new frequency, otherwise we risk the guest sees |
| 7156 | * time go backwards. |
| 7157 | * |
| 7158 | * In case we update the frequency for another cpu |
| 7159 | * (which might be in guest context) send an interrupt |
| 7160 | * to kick the cpu out of guest context. Next time |
| 7161 | * guest context is entered kvmclock will be updated, |
| 7162 | * so the guest will not see stale values. |
| 7163 | */ |
Viresh Kumar | df24014 | 2019-04-29 15:03:58 +0530 | [diff] [blame] | 7164 | smp_call_function_single(cpu, tsc_khz_changed, freq, 1); |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 7165 | } |
Viresh Kumar | df24014 | 2019-04-29 15:03:58 +0530 | [diff] [blame] | 7166 | } |
| 7167 | |
| 7168 | static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val, |
| 7169 | void *data) |
| 7170 | { |
| 7171 | struct cpufreq_freqs *freq = data; |
| 7172 | int cpu; |
| 7173 | |
| 7174 | if (val == CPUFREQ_PRECHANGE && freq->old > freq->new) |
| 7175 | return 0; |
| 7176 | if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new) |
| 7177 | return 0; |
| 7178 | |
| 7179 | for_each_cpu(cpu, freq->policy->cpus) |
| 7180 | __kvmclock_cpufreq_notifier(freq, cpu); |
| 7181 | |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 7182 | return 0; |
| 7183 | } |
| 7184 | |
| 7185 | static struct notifier_block kvmclock_cpufreq_notifier_block = { |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 7186 | .notifier_call = kvmclock_cpufreq_notifier |
| 7187 | }; |
| 7188 | |
Sebastian Andrzej Siewior | 251a5fd | 2016-07-13 17:16:33 +0000 | [diff] [blame] | 7189 | static int kvmclock_cpu_online(unsigned int cpu) |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 7190 | { |
Sebastian Andrzej Siewior | 251a5fd | 2016-07-13 17:16:33 +0000 | [diff] [blame] | 7191 | tsc_khz_changed(NULL); |
| 7192 | return 0; |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 7193 | } |
| 7194 | |
Zachary Amsden | b820cc0 | 2009-09-29 11:38:34 -1000 | [diff] [blame] | 7195 | static void kvm_timer_init(void) |
| 7196 | { |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 7197 | max_tsc_khz = tsc_khz; |
Srivatsa S. Bhat | 460dd42 | 2014-03-11 02:09:01 +0530 | [diff] [blame] | 7198 | |
Zachary Amsden | b820cc0 | 2009-09-29 11:38:34 -1000 | [diff] [blame] | 7199 | if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) { |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 7200 | #ifdef CONFIG_CPU_FREQ |
Paolo Bonzini | aaec7c0 | 2020-02-28 10:49:10 +0100 | [diff] [blame] | 7201 | struct cpufreq_policy *policy; |
Borislav Petkov | 758f588 | 2016-09-04 19:13:57 +0200 | [diff] [blame] | 7202 | int cpu; |
| 7203 | |
Avi Kivity | 3e26f23 | 2010-12-16 12:16:34 +0200 | [diff] [blame] | 7204 | cpu = get_cpu(); |
Paolo Bonzini | aaec7c0 | 2020-02-28 10:49:10 +0100 | [diff] [blame] | 7205 | policy = cpufreq_cpu_get(cpu); |
Wanpeng Li | 9a11997 | 2020-03-02 15:15:36 +0800 | [diff] [blame] | 7206 | if (policy) { |
| 7207 | if (policy->cpuinfo.max_freq) |
| 7208 | max_tsc_khz = policy->cpuinfo.max_freq; |
| 7209 | cpufreq_cpu_put(policy); |
| 7210 | } |
Avi Kivity | 3e26f23 | 2010-12-16 12:16:34 +0200 | [diff] [blame] | 7211 | put_cpu(); |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 7212 | #endif |
Zachary Amsden | b820cc0 | 2009-09-29 11:38:34 -1000 | [diff] [blame] | 7213 | cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block, |
| 7214 | CPUFREQ_TRANSITION_NOTIFIER); |
| 7215 | } |
Srivatsa S. Bhat | 460dd42 | 2014-03-11 02:09:01 +0530 | [diff] [blame] | 7216 | |
Thomas Gleixner | 73c1b41 | 2016-12-21 20:19:54 +0100 | [diff] [blame] | 7217 | cpuhp_setup_state(CPUHP_AP_X86_KVM_CLK_ONLINE, "x86/kvm/clk:online", |
Sebastian Andrzej Siewior | 251a5fd | 2016-07-13 17:16:33 +0000 | [diff] [blame] | 7218 | kvmclock_cpu_online, kvmclock_cpu_down_prep); |
Zachary Amsden | b820cc0 | 2009-09-29 11:38:34 -1000 | [diff] [blame] | 7219 | } |
| 7220 | |
Andi Kleen | dd60d21 | 2017-07-25 17:20:32 -0700 | [diff] [blame] | 7221 | DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu); |
| 7222 | EXPORT_PER_CPU_SYMBOL_GPL(current_vcpu); |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 7223 | |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 7224 | int kvm_is_in_guest(void) |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 7225 | { |
Alex,Shi | 086c985 | 2011-10-20 15:34:01 +0800 | [diff] [blame] | 7226 | return __this_cpu_read(current_vcpu) != NULL; |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 7227 | } |
| 7228 | |
| 7229 | static int kvm_is_user_mode(void) |
| 7230 | { |
| 7231 | int user_mode = 3; |
Zhang, Yanmin | dcf46b9 | 2010-04-20 10:13:58 +0800 | [diff] [blame] | 7232 | |
Alex,Shi | 086c985 | 2011-10-20 15:34:01 +0800 | [diff] [blame] | 7233 | if (__this_cpu_read(current_vcpu)) |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7234 | user_mode = kvm_x86_ops.get_cpl(__this_cpu_read(current_vcpu)); |
Zhang, Yanmin | dcf46b9 | 2010-04-20 10:13:58 +0800 | [diff] [blame] | 7235 | |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 7236 | return user_mode != 0; |
| 7237 | } |
| 7238 | |
| 7239 | static unsigned long kvm_get_guest_ip(void) |
| 7240 | { |
| 7241 | unsigned long ip = 0; |
Zhang, Yanmin | dcf46b9 | 2010-04-20 10:13:58 +0800 | [diff] [blame] | 7242 | |
Alex,Shi | 086c985 | 2011-10-20 15:34:01 +0800 | [diff] [blame] | 7243 | if (__this_cpu_read(current_vcpu)) |
| 7244 | ip = kvm_rip_read(__this_cpu_read(current_vcpu)); |
Zhang, Yanmin | dcf46b9 | 2010-04-20 10:13:58 +0800 | [diff] [blame] | 7245 | |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 7246 | return ip; |
| 7247 | } |
| 7248 | |
Luwei Kang | 8479e04 | 2019-02-18 19:26:07 -0500 | [diff] [blame] | 7249 | static void kvm_handle_intel_pt_intr(void) |
| 7250 | { |
| 7251 | struct kvm_vcpu *vcpu = __this_cpu_read(current_vcpu); |
| 7252 | |
| 7253 | kvm_make_request(KVM_REQ_PMI, vcpu); |
| 7254 | __set_bit(MSR_CORE_PERF_GLOBAL_OVF_CTRL_TRACE_TOPA_PMI_BIT, |
| 7255 | (unsigned long *)&vcpu->arch.pmu.global_status); |
| 7256 | } |
| 7257 | |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 7258 | static struct perf_guest_info_callbacks kvm_guest_cbs = { |
| 7259 | .is_in_guest = kvm_is_in_guest, |
| 7260 | .is_user_mode = kvm_is_user_mode, |
| 7261 | .get_guest_ip = kvm_get_guest_ip, |
Luwei Kang | 8479e04 | 2019-02-18 19:26:07 -0500 | [diff] [blame] | 7262 | .handle_intel_pt_intr = kvm_handle_intel_pt_intr, |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 7263 | }; |
| 7264 | |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 7265 | #ifdef CONFIG_X86_64 |
| 7266 | static void pvclock_gtod_update_fn(struct work_struct *work) |
| 7267 | { |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 7268 | struct kvm *kvm; |
| 7269 | |
| 7270 | struct kvm_vcpu *vcpu; |
| 7271 | int i; |
| 7272 | |
Junaid Shahid | 0d9ce16 | 2019-01-03 17:14:28 -0800 | [diff] [blame] | 7273 | mutex_lock(&kvm_lock); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 7274 | list_for_each_entry(kvm, &vm_list, vm_list) |
| 7275 | kvm_for_each_vcpu(i, vcpu, kvm) |
Guo Hui Liu | 105b21b | 2014-09-12 13:43:19 +0800 | [diff] [blame] | 7276 | kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 7277 | atomic_set(&kvm_guest_has_master_clock, 0); |
Junaid Shahid | 0d9ce16 | 2019-01-03 17:14:28 -0800 | [diff] [blame] | 7278 | mutex_unlock(&kvm_lock); |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 7279 | } |
| 7280 | |
| 7281 | static DECLARE_WORK(pvclock_gtod_work, pvclock_gtod_update_fn); |
| 7282 | |
| 7283 | /* |
| 7284 | * Notification about pvclock gtod data update. |
| 7285 | */ |
| 7286 | static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused, |
| 7287 | void *priv) |
| 7288 | { |
| 7289 | struct pvclock_gtod_data *gtod = &pvclock_gtod_data; |
| 7290 | struct timekeeper *tk = priv; |
| 7291 | |
| 7292 | update_pvclock_gtod(tk); |
| 7293 | |
| 7294 | /* disable master clock if host does not trust, or does not |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 7295 | * use, TSC based clocksource. |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 7296 | */ |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 7297 | if (!gtod_is_based_on_tsc(gtod->clock.vclock_mode) && |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 7298 | atomic_read(&kvm_guest_has_master_clock) != 0) |
| 7299 | queue_work(system_long_wq, &pvclock_gtod_work); |
| 7300 | |
| 7301 | return 0; |
| 7302 | } |
| 7303 | |
| 7304 | static struct notifier_block pvclock_gtod_notifier = { |
| 7305 | .notifier_call = pvclock_gtod_notify, |
| 7306 | }; |
| 7307 | #endif |
| 7308 | |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 7309 | int kvm_arch_init(void *opaque) |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 7310 | { |
Sean Christopherson | d008dfd | 2020-03-21 13:25:56 -0700 | [diff] [blame] | 7311 | struct kvm_x86_init_ops *ops = opaque; |
Zachary Amsden | b820cc0 | 2009-09-29 11:38:34 -1000 | [diff] [blame] | 7312 | int r; |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 7313 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7314 | if (kvm_x86_ops.hardware_enable) { |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 7315 | printk(KERN_ERR "kvm: already loaded the other module\n"); |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 7316 | r = -EEXIST; |
| 7317 | goto out; |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 7318 | } |
| 7319 | |
| 7320 | if (!ops->cpu_has_kvm_support()) { |
Erwan Velu | ef935c25 | 2020-02-27 19:00:46 +0100 | [diff] [blame] | 7321 | pr_err_ratelimited("kvm: no hardware support\n"); |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 7322 | r = -EOPNOTSUPP; |
| 7323 | goto out; |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 7324 | } |
| 7325 | if (ops->disabled_by_bios()) { |
Erwan Velu | ef935c25 | 2020-02-27 19:00:46 +0100 | [diff] [blame] | 7326 | pr_err_ratelimited("kvm: disabled by bios\n"); |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 7327 | r = -EOPNOTSUPP; |
| 7328 | goto out; |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 7329 | } |
| 7330 | |
Marc Orr | b666a4b | 2018-11-06 14:53:56 -0800 | [diff] [blame] | 7331 | /* |
| 7332 | * KVM explicitly assumes that the guest has an FPU and |
| 7333 | * FXSAVE/FXRSTOR. For example, the KVM_GET_FPU explicitly casts the |
| 7334 | * vCPU's FPU state as a fxregs_state struct. |
| 7335 | */ |
| 7336 | if (!boot_cpu_has(X86_FEATURE_FPU) || !boot_cpu_has(X86_FEATURE_FXSR)) { |
| 7337 | printk(KERN_ERR "kvm: inadequate fpu\n"); |
| 7338 | r = -EOPNOTSUPP; |
| 7339 | goto out; |
| 7340 | } |
| 7341 | |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 7342 | r = -ENOMEM; |
Paolo Bonzini | ed8e481 | 2018-12-21 11:25:59 +0100 | [diff] [blame] | 7343 | x86_fpu_cache = kmem_cache_create("x86_fpu", sizeof(struct fpu), |
Marc Orr | b666a4b | 2018-11-06 14:53:56 -0800 | [diff] [blame] | 7344 | __alignof__(struct fpu), SLAB_ACCOUNT, |
| 7345 | NULL); |
| 7346 | if (!x86_fpu_cache) { |
| 7347 | printk(KERN_ERR "kvm: failed to allocate cache for x86 fpu\n"); |
| 7348 | goto out; |
| 7349 | } |
| 7350 | |
Sean Christopherson | c9b8b07 | 2020-02-18 15:29:48 -0800 | [diff] [blame] | 7351 | x86_emulator_cache = kvm_alloc_emulator_cache(); |
| 7352 | if (!x86_emulator_cache) { |
| 7353 | pr_err("kvm: failed to allocate cache for x86 emulator\n"); |
| 7354 | goto out_free_x86_fpu_cache; |
| 7355 | } |
| 7356 | |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 7357 | shared_msrs = alloc_percpu(struct kvm_shared_msrs); |
| 7358 | if (!shared_msrs) { |
| 7359 | printk(KERN_ERR "kvm: failed to allocate percpu kvm_shared_msrs\n"); |
Sean Christopherson | c9b8b07 | 2020-02-18 15:29:48 -0800 | [diff] [blame] | 7360 | goto out_free_x86_emulator_cache; |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 7361 | } |
| 7362 | |
Avi Kivity | 97db56c | 2008-01-13 13:23:56 +0200 | [diff] [blame] | 7363 | r = kvm_mmu_module_init(); |
| 7364 | if (r) |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 7365 | goto out_free_percpu; |
Avi Kivity | 97db56c | 2008-01-13 13:23:56 +0200 | [diff] [blame] | 7366 | |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 7367 | kvm_mmu_set_mask_ptes(PT_USER_MASK, PT_ACCESSED_MASK, |
Bandan Das | ffb128c | 2016-07-12 18:18:49 -0400 | [diff] [blame] | 7368 | PT_DIRTY_MASK, PT64_NX_MASK, 0, |
Tom Lendacky | d0ec49d | 2017-07-17 16:10:27 -0500 | [diff] [blame] | 7369 | PT_PRESENT_MASK, 0, sme_me_mask); |
Zachary Amsden | b820cc0 | 2009-09-29 11:38:34 -1000 | [diff] [blame] | 7370 | kvm_timer_init(); |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 7371 | |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 7372 | perf_register_guest_info_callbacks(&kvm_guest_cbs); |
| 7373 | |
Sean Christopherson | cfc4818 | 2020-03-02 15:56:23 -0800 | [diff] [blame] | 7374 | if (boot_cpu_has(X86_FEATURE_XSAVE)) { |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 7375 | host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK); |
Sean Christopherson | cfc4818 | 2020-03-02 15:56:23 -0800 | [diff] [blame] | 7376 | supported_xcr0 = host_xcr0 & KVM_SUPPORTED_XCR0; |
| 7377 | } |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 7378 | |
Gleb Natapov | c5cc421 | 2012-08-05 15:58:30 +0300 | [diff] [blame] | 7379 | kvm_lapic_init(); |
Wanpeng Li | 0c5f81d | 2019-07-06 09:26:51 +0800 | [diff] [blame] | 7380 | if (pi_inject_timer == -1) |
| 7381 | pi_inject_timer = housekeeping_enabled(HK_FLAG_TIMER); |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 7382 | #ifdef CONFIG_X86_64 |
| 7383 | pvclock_gtod_register_notifier(&pvclock_gtod_notifier); |
Vitaly Kuznetsov | 0092e43 | 2018-01-24 14:23:37 +0100 | [diff] [blame] | 7384 | |
Thomas Gleixner | 5fa4ec9 | 2018-01-31 09:41:40 +0100 | [diff] [blame] | 7385 | if (hypervisor_is_type(X86_HYPER_MS_HYPERV)) |
Vitaly Kuznetsov | 0092e43 | 2018-01-24 14:23:37 +0100 | [diff] [blame] | 7386 | set_hv_tscchange_cb(kvm_hyperv_tsc_notifier); |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 7387 | #endif |
| 7388 | |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 7389 | return 0; |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 7390 | |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 7391 | out_free_percpu: |
| 7392 | free_percpu(shared_msrs); |
Sean Christopherson | c9b8b07 | 2020-02-18 15:29:48 -0800 | [diff] [blame] | 7393 | out_free_x86_emulator_cache: |
| 7394 | kmem_cache_destroy(x86_emulator_cache); |
Marc Orr | b666a4b | 2018-11-06 14:53:56 -0800 | [diff] [blame] | 7395 | out_free_x86_fpu_cache: |
| 7396 | kmem_cache_destroy(x86_fpu_cache); |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 7397 | out: |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 7398 | return r; |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 7399 | } |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 7400 | |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 7401 | void kvm_arch_exit(void) |
| 7402 | { |
Vitaly Kuznetsov | 0092e43 | 2018-01-24 14:23:37 +0100 | [diff] [blame] | 7403 | #ifdef CONFIG_X86_64 |
Thomas Gleixner | 5fa4ec9 | 2018-01-31 09:41:40 +0100 | [diff] [blame] | 7404 | if (hypervisor_is_type(X86_HYPER_MS_HYPERV)) |
Vitaly Kuznetsov | 0092e43 | 2018-01-24 14:23:37 +0100 | [diff] [blame] | 7405 | clear_hv_tscchange_cb(); |
| 7406 | #endif |
David Matlack | cef84c3 | 2016-12-16 14:30:36 -0800 | [diff] [blame] | 7407 | kvm_lapic_exit(); |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 7408 | perf_unregister_guest_info_callbacks(&kvm_guest_cbs); |
| 7409 | |
Jan Kiszka | 888d256 | 2009-04-17 19:24:58 +0200 | [diff] [blame] | 7410 | if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) |
| 7411 | cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block, |
| 7412 | CPUFREQ_TRANSITION_NOTIFIER); |
Sebastian Andrzej Siewior | 251a5fd | 2016-07-13 17:16:33 +0000 | [diff] [blame] | 7413 | cpuhp_remove_state_nocalls(CPUHP_AP_X86_KVM_CLK_ONLINE); |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 7414 | #ifdef CONFIG_X86_64 |
| 7415 | pvclock_gtod_unregister_notifier(&pvclock_gtod_notifier); |
| 7416 | #endif |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7417 | kvm_x86_ops.hardware_enable = NULL; |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 7418 | kvm_mmu_module_exit(); |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 7419 | free_percpu(shared_msrs); |
Marc Orr | b666a4b | 2018-11-06 14:53:56 -0800 | [diff] [blame] | 7420 | kmem_cache_destroy(x86_fpu_cache); |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 7421 | } |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 7422 | |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 7423 | int kvm_vcpu_halt(struct kvm_vcpu *vcpu) |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 7424 | { |
| 7425 | ++vcpu->stat.halt_exits; |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 7426 | if (lapic_in_kernel(vcpu)) { |
Avi Kivity | a453529 | 2008-04-13 17:54:35 +0300 | [diff] [blame] | 7427 | vcpu->arch.mp_state = KVM_MP_STATE_HALTED; |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 7428 | return 1; |
| 7429 | } else { |
| 7430 | vcpu->run->exit_reason = KVM_EXIT_HLT; |
| 7431 | return 0; |
| 7432 | } |
| 7433 | } |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 7434 | EXPORT_SYMBOL_GPL(kvm_vcpu_halt); |
| 7435 | |
| 7436 | int kvm_emulate_halt(struct kvm_vcpu *vcpu) |
| 7437 | { |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 7438 | int ret = kvm_skip_emulated_instruction(vcpu); |
| 7439 | /* |
| 7440 | * TODO: we might be squashing a GUESTDBG_SINGLESTEP-triggered |
| 7441 | * KVM_EXIT_DEBUG here. |
| 7442 | */ |
| 7443 | return kvm_vcpu_halt(vcpu) && ret; |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 7444 | } |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 7445 | EXPORT_SYMBOL_GPL(kvm_emulate_halt); |
| 7446 | |
Arnd Bergmann | 8ef81a9 | 2017-02-09 16:10:42 +0100 | [diff] [blame] | 7447 | #ifdef CONFIG_X86_64 |
Marcelo Tosatti | 55dd00a | 2017-01-24 15:09:39 -0200 | [diff] [blame] | 7448 | static int kvm_pv_clock_pairing(struct kvm_vcpu *vcpu, gpa_t paddr, |
| 7449 | unsigned long clock_type) |
| 7450 | { |
| 7451 | struct kvm_clock_pairing clock_pairing; |
Arnd Bergmann | 899a31f | 2018-04-23 10:04:26 +0200 | [diff] [blame] | 7452 | struct timespec64 ts; |
Paolo Bonzini | 80fbd89 | 2017-02-08 10:57:24 +0100 | [diff] [blame] | 7453 | u64 cycle; |
Marcelo Tosatti | 55dd00a | 2017-01-24 15:09:39 -0200 | [diff] [blame] | 7454 | int ret; |
| 7455 | |
| 7456 | if (clock_type != KVM_CLOCK_PAIRING_WALLCLOCK) |
| 7457 | return -KVM_EOPNOTSUPP; |
| 7458 | |
| 7459 | if (kvm_get_walltime_and_clockread(&ts, &cycle) == false) |
| 7460 | return -KVM_EOPNOTSUPP; |
| 7461 | |
| 7462 | clock_pairing.sec = ts.tv_sec; |
| 7463 | clock_pairing.nsec = ts.tv_nsec; |
| 7464 | clock_pairing.tsc = kvm_read_l1_tsc(vcpu, cycle); |
| 7465 | clock_pairing.flags = 0; |
Liran Alon | bcbfbd8 | 2018-11-08 00:43:06 +0200 | [diff] [blame] | 7466 | memset(&clock_pairing.pad, 0, sizeof(clock_pairing.pad)); |
Marcelo Tosatti | 55dd00a | 2017-01-24 15:09:39 -0200 | [diff] [blame] | 7467 | |
| 7468 | ret = 0; |
| 7469 | if (kvm_write_guest(vcpu->kvm, paddr, &clock_pairing, |
| 7470 | sizeof(struct kvm_clock_pairing))) |
| 7471 | ret = -KVM_EFAULT; |
| 7472 | |
| 7473 | return ret; |
| 7474 | } |
Arnd Bergmann | 8ef81a9 | 2017-02-09 16:10:42 +0100 | [diff] [blame] | 7475 | #endif |
Marcelo Tosatti | 55dd00a | 2017-01-24 15:09:39 -0200 | [diff] [blame] | 7476 | |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 7477 | /* |
| 7478 | * kvm_pv_kick_cpu_op: Kick a vcpu. |
| 7479 | * |
| 7480 | * @apicid - apicid of vcpu to be kicked. |
| 7481 | */ |
| 7482 | static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid) |
| 7483 | { |
Raghavendra K T | 24d2166 | 2013-08-26 14:18:35 +0530 | [diff] [blame] | 7484 | struct kvm_lapic_irq lapic_irq; |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 7485 | |
Peter Xu | 150a84f | 2019-12-04 20:07:21 +0100 | [diff] [blame] | 7486 | lapic_irq.shorthand = APIC_DEST_NOSHORT; |
Peter Xu | c96001c | 2019-12-04 20:07:18 +0100 | [diff] [blame] | 7487 | lapic_irq.dest_mode = APIC_DEST_PHYSICAL; |
Longpeng(Mike) | ebd28fc | 2017-08-02 11:20:51 +0800 | [diff] [blame] | 7488 | lapic_irq.level = 0; |
Raghavendra K T | 24d2166 | 2013-08-26 14:18:35 +0530 | [diff] [blame] | 7489 | lapic_irq.dest_id = apicid; |
James Sullivan | 93bbf0b | 2015-03-18 19:26:03 -0600 | [diff] [blame] | 7490 | lapic_irq.msi_redir_hint = false; |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 7491 | |
Raghavendra K T | 24d2166 | 2013-08-26 14:18:35 +0530 | [diff] [blame] | 7492 | lapic_irq.delivery_mode = APIC_DM_REMRD; |
Xiubo Li | 795a149 | 2015-03-13 17:39:44 +0800 | [diff] [blame] | 7493 | kvm_irq_delivery_to_apic(kvm, NULL, &lapic_irq, NULL); |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 7494 | } |
| 7495 | |
Suravee Suthikulpanit | 4e19c36 | 2019-11-14 14:15:05 -0600 | [diff] [blame] | 7496 | bool kvm_apicv_activated(struct kvm *kvm) |
| 7497 | { |
| 7498 | return (READ_ONCE(kvm->arch.apicv_inhibit_reasons) == 0); |
| 7499 | } |
| 7500 | EXPORT_SYMBOL_GPL(kvm_apicv_activated); |
| 7501 | |
| 7502 | void kvm_apicv_init(struct kvm *kvm, bool enable) |
| 7503 | { |
| 7504 | if (enable) |
| 7505 | clear_bit(APICV_INHIBIT_REASON_DISABLE, |
| 7506 | &kvm->arch.apicv_inhibit_reasons); |
| 7507 | else |
| 7508 | set_bit(APICV_INHIBIT_REASON_DISABLE, |
| 7509 | &kvm->arch.apicv_inhibit_reasons); |
| 7510 | } |
| 7511 | EXPORT_SYMBOL_GPL(kvm_apicv_init); |
| 7512 | |
Wanpeng Li | 7150629 | 2019-06-11 20:23:49 +0800 | [diff] [blame] | 7513 | static void kvm_sched_yield(struct kvm *kvm, unsigned long dest_id) |
| 7514 | { |
| 7515 | struct kvm_vcpu *target = NULL; |
| 7516 | struct kvm_apic_map *map; |
| 7517 | |
| 7518 | rcu_read_lock(); |
| 7519 | map = rcu_dereference(kvm->arch.apic_map); |
| 7520 | |
| 7521 | if (likely(map) && dest_id <= map->max_apic_id && map->phys_map[dest_id]) |
| 7522 | target = map->phys_map[dest_id]->vcpu; |
| 7523 | |
| 7524 | rcu_read_unlock(); |
| 7525 | |
Wanpeng Li | 266e85a | 2019-07-24 17:43:13 +0800 | [diff] [blame] | 7526 | if (target && READ_ONCE(target->ready)) |
Wanpeng Li | 7150629 | 2019-06-11 20:23:49 +0800 | [diff] [blame] | 7527 | kvm_vcpu_yield_to(target); |
| 7528 | } |
| 7529 | |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 7530 | int kvm_emulate_hypercall(struct kvm_vcpu *vcpu) |
| 7531 | { |
| 7532 | unsigned long nr, a0, a1, a2, a3, ret; |
Marian Rotariu | 6356ee0 | 2018-04-30 12:23:01 +0300 | [diff] [blame] | 7533 | int op_64_bit; |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 7534 | |
Radim Krčmář | 696ca77 | 2018-05-24 17:50:56 +0200 | [diff] [blame] | 7535 | if (kvm_hv_hypercall_enabled(vcpu->kvm)) |
| 7536 | return kvm_hv_hypercall(vcpu); |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 7537 | |
Sean Christopherson | de3cd11 | 2019-04-30 10:36:17 -0700 | [diff] [blame] | 7538 | nr = kvm_rax_read(vcpu); |
| 7539 | a0 = kvm_rbx_read(vcpu); |
| 7540 | a1 = kvm_rcx_read(vcpu); |
| 7541 | a2 = kvm_rdx_read(vcpu); |
| 7542 | a3 = kvm_rsi_read(vcpu); |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 7543 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 7544 | trace_kvm_hypercall(nr, a0, a1, a2, a3); |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 7545 | |
Nadav Amit | a449c7a | 2014-06-18 17:19:24 +0300 | [diff] [blame] | 7546 | op_64_bit = is_64_bit_mode(vcpu); |
| 7547 | if (!op_64_bit) { |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 7548 | nr &= 0xFFFFFFFF; |
| 7549 | a0 &= 0xFFFFFFFF; |
| 7550 | a1 &= 0xFFFFFFFF; |
| 7551 | a2 &= 0xFFFFFFFF; |
| 7552 | a3 &= 0xFFFFFFFF; |
| 7553 | } |
| 7554 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7555 | if (kvm_x86_ops.get_cpl(vcpu) != 0) { |
Jan Kiszka | 07708c4 | 2009-08-03 18:43:28 +0200 | [diff] [blame] | 7556 | ret = -KVM_EPERM; |
Radim Krčmář | 696ca77 | 2018-05-24 17:50:56 +0200 | [diff] [blame] | 7557 | goto out; |
Jan Kiszka | 07708c4 | 2009-08-03 18:43:28 +0200 | [diff] [blame] | 7558 | } |
| 7559 | |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 7560 | switch (nr) { |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 7561 | case KVM_HC_VAPIC_POLL_IRQ: |
| 7562 | ret = 0; |
| 7563 | break; |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 7564 | case KVM_HC_KICK_CPU: |
| 7565 | kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1); |
Wanpeng Li | 266e85a | 2019-07-24 17:43:13 +0800 | [diff] [blame] | 7566 | kvm_sched_yield(vcpu->kvm, a1); |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 7567 | ret = 0; |
| 7568 | break; |
Arnd Bergmann | 8ef81a9 | 2017-02-09 16:10:42 +0100 | [diff] [blame] | 7569 | #ifdef CONFIG_X86_64 |
Marcelo Tosatti | 55dd00a | 2017-01-24 15:09:39 -0200 | [diff] [blame] | 7570 | case KVM_HC_CLOCK_PAIRING: |
| 7571 | ret = kvm_pv_clock_pairing(vcpu, a0, a1); |
| 7572 | break; |
Sean Christopherson | 1ed199a | 2019-01-23 09:22:39 -0800 | [diff] [blame] | 7573 | #endif |
Wanpeng Li | 4180bf1 | 2018-07-23 14:39:54 +0800 | [diff] [blame] | 7574 | case KVM_HC_SEND_IPI: |
| 7575 | ret = kvm_pv_send_ipi(vcpu->kvm, a0, a1, a2, a3, op_64_bit); |
| 7576 | break; |
Wanpeng Li | 7150629 | 2019-06-11 20:23:49 +0800 | [diff] [blame] | 7577 | case KVM_HC_SCHED_YIELD: |
| 7578 | kvm_sched_yield(vcpu->kvm, a0); |
| 7579 | ret = 0; |
| 7580 | break; |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 7581 | default: |
| 7582 | ret = -KVM_ENOSYS; |
| 7583 | break; |
| 7584 | } |
Radim Krčmář | 696ca77 | 2018-05-24 17:50:56 +0200 | [diff] [blame] | 7585 | out: |
Nadav Amit | a449c7a | 2014-06-18 17:19:24 +0300 | [diff] [blame] | 7586 | if (!op_64_bit) |
| 7587 | ret = (u32)ret; |
Sean Christopherson | de3cd11 | 2019-04-30 10:36:17 -0700 | [diff] [blame] | 7588 | kvm_rax_write(vcpu, ret); |
Marian Rotariu | 6356ee0 | 2018-04-30 12:23:01 +0300 | [diff] [blame] | 7589 | |
Amit Shah | f11c3a8 | 2008-02-21 01:00:30 +0530 | [diff] [blame] | 7590 | ++vcpu->stat.hypercalls; |
Marian Rotariu | 6356ee0 | 2018-04-30 12:23:01 +0300 | [diff] [blame] | 7591 | return kvm_skip_emulated_instruction(vcpu); |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 7592 | } |
| 7593 | EXPORT_SYMBOL_GPL(kvm_emulate_hypercall); |
| 7594 | |
Jan Kiszka | b6785de | 2012-09-20 07:43:17 +0200 | [diff] [blame] | 7595 | static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt) |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 7596 | { |
Avi Kivity | d6aa100 | 2011-04-20 15:47:13 +0300 | [diff] [blame] | 7597 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 7598 | char instruction[3]; |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 7599 | unsigned long rip = kvm_rip_read(vcpu); |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 7600 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7601 | kvm_x86_ops.patch_hypercall(vcpu, instruction); |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 7602 | |
Dmitry Vyukov | ce2e852 | 2017-01-17 14:51:04 +0100 | [diff] [blame] | 7603 | return emulator_write_emulated(ctxt, rip, instruction, 3, |
| 7604 | &ctxt->exception); |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 7605 | } |
| 7606 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 7607 | static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu) |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7608 | { |
Matt Gingell | 782d422 | 2015-11-16 15:26:00 -0800 | [diff] [blame] | 7609 | return vcpu->run->request_interrupt_window && |
| 7610 | likely(!pic_in_kernel(vcpu->kvm)); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7611 | } |
| 7612 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 7613 | static void post_kvm_run_save(struct kvm_vcpu *vcpu) |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7614 | { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 7615 | struct kvm_run *kvm_run = vcpu->run; |
| 7616 | |
Jan Kiszka | 91586a3 | 2009-10-05 13:07:21 +0200 | [diff] [blame] | 7617 | kvm_run->if_flag = (kvm_get_rflags(vcpu) & X86_EFLAGS_IF) != 0; |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 7618 | kvm_run->flags = is_smm(vcpu) ? KVM_RUN_X86_SMM : 0; |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 7619 | kvm_run->cr8 = kvm_get_cr8(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7620 | kvm_run->apic_base = kvm_get_apic_base(vcpu); |
Matt Gingell | 127a457 | 2015-11-17 17:32:05 +0100 | [diff] [blame] | 7621 | kvm_run->ready_for_interrupt_injection = |
| 7622 | pic_in_kernel(vcpu->kvm) || |
Matt Gingell | 782d422 | 2015-11-16 15:26:00 -0800 | [diff] [blame] | 7623 | kvm_vcpu_ready_for_interrupt_injection(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7624 | } |
| 7625 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 7626 | static void update_cr8_intercept(struct kvm_vcpu *vcpu) |
| 7627 | { |
| 7628 | int max_irr, tpr; |
| 7629 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7630 | if (!kvm_x86_ops.update_cr8_intercept) |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 7631 | return; |
| 7632 | |
Paolo Bonzini | bce87cc | 2016-01-08 13:48:51 +0100 | [diff] [blame] | 7633 | if (!lapic_in_kernel(vcpu)) |
Avi Kivity | 88c808f | 2009-08-17 22:49:40 +0300 | [diff] [blame] | 7634 | return; |
| 7635 | |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 7636 | if (vcpu->arch.apicv_active) |
| 7637 | return; |
| 7638 | |
Gleb Natapov | 8db3baa | 2009-05-11 13:35:54 +0300 | [diff] [blame] | 7639 | if (!vcpu->arch.apic->vapic_addr) |
| 7640 | max_irr = kvm_lapic_find_highest_irr(vcpu); |
| 7641 | else |
| 7642 | max_irr = -1; |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 7643 | |
| 7644 | if (max_irr != -1) |
| 7645 | max_irr >>= 4; |
| 7646 | |
| 7647 | tpr = kvm_lapic_get_cr8(vcpu); |
| 7648 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7649 | kvm_x86_ops.update_cr8_intercept(vcpu, tpr, max_irr); |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 7650 | } |
| 7651 | |
Sean Christopherson | a1c77ab | 2020-03-02 22:27:35 -0800 | [diff] [blame] | 7652 | static int inject_pending_event(struct kvm_vcpu *vcpu) |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 7653 | { |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 7654 | int r; |
| 7655 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 7656 | /* try to reinject previous events if any */ |
Wanpeng Li | 664f8e2 | 2017-08-24 03:35:09 -0700 | [diff] [blame] | 7657 | |
Liran Alon | 1a680e3 | 2018-03-23 03:01:33 +0300 | [diff] [blame] | 7658 | if (vcpu->arch.exception.injected) |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7659 | kvm_x86_ops.queue_exception(vcpu); |
Wanpeng Li | 664f8e2 | 2017-08-24 03:35:09 -0700 | [diff] [blame] | 7660 | /* |
Liran Alon | a042c26 | 2018-03-23 03:01:32 +0300 | [diff] [blame] | 7661 | * Do not inject an NMI or interrupt if there is a pending |
| 7662 | * exception. Exceptions and interrupts are recognized at |
| 7663 | * instruction boundaries, i.e. the start of an instruction. |
| 7664 | * Trap-like exceptions, e.g. #DB, have higher priority than |
| 7665 | * NMIs and interrupts, i.e. traps are recognized before an |
| 7666 | * NMI/interrupt that's pending on the same instruction. |
| 7667 | * Fault-like exceptions, e.g. #GP and #PF, are the lowest |
| 7668 | * priority, but are only generated (pended) during instruction |
| 7669 | * execution, i.e. a pending fault-like exception means the |
| 7670 | * fault occurred on the *previous* instruction and must be |
| 7671 | * serviced prior to recognizing any new events in order to |
| 7672 | * fully complete the previous instruction. |
Wanpeng Li | 664f8e2 | 2017-08-24 03:35:09 -0700 | [diff] [blame] | 7673 | */ |
Liran Alon | 1a680e3 | 2018-03-23 03:01:33 +0300 | [diff] [blame] | 7674 | else if (!vcpu->arch.exception.pending) { |
| 7675 | if (vcpu->arch.nmi_injected) |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7676 | kvm_x86_ops.set_nmi(vcpu); |
Liran Alon | 1a680e3 | 2018-03-23 03:01:33 +0300 | [diff] [blame] | 7677 | else if (vcpu->arch.interrupt.injected) |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7678 | kvm_x86_ops.set_irq(vcpu); |
Wanpeng Li | 664f8e2 | 2017-08-24 03:35:09 -0700 | [diff] [blame] | 7679 | } |
| 7680 | |
Liran Alon | 1a680e3 | 2018-03-23 03:01:33 +0300 | [diff] [blame] | 7681 | /* |
| 7682 | * Call check_nested_events() even if we reinjected a previous event |
| 7683 | * in order for caller to determine if it should require immediate-exit |
| 7684 | * from L2 to L1 due to pending L1 events which require exit |
| 7685 | * from L2 to L1. |
| 7686 | */ |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7687 | if (is_guest_mode(vcpu) && kvm_x86_ops.check_nested_events) { |
| 7688 | r = kvm_x86_ops.check_nested_events(vcpu); |
Wanpeng Li | 664f8e2 | 2017-08-24 03:35:09 -0700 | [diff] [blame] | 7689 | if (r != 0) |
| 7690 | return r; |
| 7691 | } |
| 7692 | |
| 7693 | /* try to inject new event if pending */ |
Gleb Natapov | b59bb7b | 2009-07-09 15:33:51 +0300 | [diff] [blame] | 7694 | if (vcpu->arch.exception.pending) { |
Avi Kivity | 5c1c85d0 | 2010-03-11 13:01:59 +0200 | [diff] [blame] | 7695 | trace_kvm_inj_exception(vcpu->arch.exception.nr, |
| 7696 | vcpu->arch.exception.has_error_code, |
| 7697 | vcpu->arch.exception.error_code); |
Nadav Amit | d6e8c85 | 2014-07-24 14:51:24 +0300 | [diff] [blame] | 7698 | |
Liran Alon | 1a680e3 | 2018-03-23 03:01:33 +0300 | [diff] [blame] | 7699 | WARN_ON_ONCE(vcpu->arch.exception.injected); |
Wanpeng Li | 664f8e2 | 2017-08-24 03:35:09 -0700 | [diff] [blame] | 7700 | vcpu->arch.exception.pending = false; |
| 7701 | vcpu->arch.exception.injected = true; |
| 7702 | |
Nadav Amit | d6e8c85 | 2014-07-24 14:51:24 +0300 | [diff] [blame] | 7703 | if (exception_type(vcpu->arch.exception.nr) == EXCPT_FAULT) |
| 7704 | __kvm_set_rflags(vcpu, kvm_get_rflags(vcpu) | |
| 7705 | X86_EFLAGS_RF); |
| 7706 | |
Jim Mattson | f10c729 | 2018-10-16 14:29:23 -0700 | [diff] [blame] | 7707 | if (vcpu->arch.exception.nr == DB_VECTOR) { |
| 7708 | /* |
| 7709 | * This code assumes that nSVM doesn't use |
| 7710 | * check_nested_events(). If it does, the |
| 7711 | * DR6/DR7 changes should happen before L1 |
| 7712 | * gets a #VMEXIT for an intercepted #DB in |
| 7713 | * L2. (Under VMX, on the other hand, the |
| 7714 | * DR6/DR7 changes should not happen in the |
| 7715 | * event of a VM-exit to L1 for an intercepted |
| 7716 | * #DB in L2.) |
| 7717 | */ |
| 7718 | kvm_deliver_exception_payload(vcpu); |
| 7719 | if (vcpu->arch.dr7 & DR7_GD) { |
| 7720 | vcpu->arch.dr7 &= ~DR7_GD; |
| 7721 | kvm_update_dr7(vcpu); |
| 7722 | } |
Nadav Amit | 6bdf066 | 2014-09-30 20:49:14 +0300 | [diff] [blame] | 7723 | } |
| 7724 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7725 | kvm_x86_ops.queue_exception(vcpu); |
Liran Alon | 1a680e3 | 2018-03-23 03:01:33 +0300 | [diff] [blame] | 7726 | } |
| 7727 | |
| 7728 | /* Don't consider new event if we re-injected an event */ |
| 7729 | if (kvm_event_needs_reinjection(vcpu)) |
| 7730 | return 0; |
| 7731 | |
| 7732 | if (vcpu->arch.smi_pending && !is_smm(vcpu) && |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7733 | kvm_x86_ops.smi_allowed(vcpu)) { |
Paolo Bonzini | c43203c | 2016-06-01 22:26:00 +0200 | [diff] [blame] | 7734 | vcpu->arch.smi_pending = false; |
Liran Alon | 52797bf | 2017-11-15 13:43:14 +0200 | [diff] [blame] | 7735 | ++vcpu->arch.smi_count; |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 7736 | enter_smm(vcpu); |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7737 | } else if (vcpu->arch.nmi_pending && kvm_x86_ops.nmi_allowed(vcpu)) { |
Yuki Shibuya | 321c565 | 2016-03-24 05:17:03 +0000 | [diff] [blame] | 7738 | --vcpu->arch.nmi_pending; |
| 7739 | vcpu->arch.nmi_injected = true; |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7740 | kvm_x86_ops.set_nmi(vcpu); |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 7741 | } else if (kvm_cpu_has_injectable_intr(vcpu)) { |
Bandan Das | 9242b5b | 2014-07-08 00:30:23 -0400 | [diff] [blame] | 7742 | /* |
| 7743 | * Because interrupts can be injected asynchronously, we are |
| 7744 | * calling check_nested_events again here to avoid a race condition. |
| 7745 | * See https://lkml.org/lkml/2014/7/2/60 for discussion about this |
| 7746 | * proposal and current concerns. Perhaps we should be setting |
| 7747 | * KVM_REQ_EVENT only on certain events and not unconditionally? |
| 7748 | */ |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7749 | if (is_guest_mode(vcpu) && kvm_x86_ops.check_nested_events) { |
| 7750 | r = kvm_x86_ops.check_nested_events(vcpu); |
Bandan Das | 9242b5b | 2014-07-08 00:30:23 -0400 | [diff] [blame] | 7751 | if (r != 0) |
| 7752 | return r; |
| 7753 | } |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7754 | if (kvm_x86_ops.interrupt_allowed(vcpu)) { |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 7755 | kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu), |
| 7756 | false); |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7757 | kvm_x86_ops.set_irq(vcpu); |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 7758 | } |
| 7759 | } |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 7760 | |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 7761 | return 0; |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 7762 | } |
| 7763 | |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 7764 | static void process_nmi(struct kvm_vcpu *vcpu) |
| 7765 | { |
| 7766 | unsigned limit = 2; |
| 7767 | |
| 7768 | /* |
| 7769 | * x86 is limited to one NMI running, and one NMI pending after it. |
| 7770 | * If an NMI is already in progress, limit further NMIs to just one. |
| 7771 | * Otherwise, allow two (and we'll inject the first one immediately). |
| 7772 | */ |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7773 | if (kvm_x86_ops.get_nmi_mask(vcpu) || vcpu->arch.nmi_injected) |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 7774 | limit = 1; |
| 7775 | |
| 7776 | vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0); |
| 7777 | vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit); |
| 7778 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 7779 | } |
| 7780 | |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 7781 | static u32 enter_smm_get_segment_flags(struct kvm_segment *seg) |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7782 | { |
| 7783 | u32 flags = 0; |
| 7784 | flags |= seg->g << 23; |
| 7785 | flags |= seg->db << 22; |
| 7786 | flags |= seg->l << 21; |
| 7787 | flags |= seg->avl << 20; |
| 7788 | flags |= seg->present << 15; |
| 7789 | flags |= seg->dpl << 13; |
| 7790 | flags |= seg->s << 12; |
| 7791 | flags |= seg->type << 8; |
| 7792 | return flags; |
| 7793 | } |
| 7794 | |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 7795 | 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] | 7796 | { |
| 7797 | struct kvm_segment seg; |
| 7798 | int offset; |
| 7799 | |
| 7800 | kvm_get_segment(vcpu, &seg, n); |
| 7801 | put_smstate(u32, buf, 0x7fa8 + n * 4, seg.selector); |
| 7802 | |
| 7803 | if (n < 3) |
| 7804 | offset = 0x7f84 + n * 12; |
| 7805 | else |
| 7806 | offset = 0x7f2c + (n - 3) * 12; |
| 7807 | |
| 7808 | put_smstate(u32, buf, offset + 8, seg.base); |
| 7809 | put_smstate(u32, buf, offset + 4, seg.limit); |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 7810 | put_smstate(u32, buf, offset, enter_smm_get_segment_flags(&seg)); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7811 | } |
| 7812 | |
Alexander Kuleshov | efbb288 | 2015-09-06 19:35:41 +0600 | [diff] [blame] | 7813 | #ifdef CONFIG_X86_64 |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 7814 | 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] | 7815 | { |
| 7816 | struct kvm_segment seg; |
| 7817 | int offset; |
| 7818 | u16 flags; |
| 7819 | |
| 7820 | kvm_get_segment(vcpu, &seg, n); |
| 7821 | offset = 0x7e00 + n * 16; |
| 7822 | |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 7823 | flags = enter_smm_get_segment_flags(&seg) >> 8; |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7824 | put_smstate(u16, buf, offset, seg.selector); |
| 7825 | put_smstate(u16, buf, offset + 2, flags); |
| 7826 | put_smstate(u32, buf, offset + 4, seg.limit); |
| 7827 | put_smstate(u64, buf, offset + 8, seg.base); |
| 7828 | } |
Alexander Kuleshov | efbb288 | 2015-09-06 19:35:41 +0600 | [diff] [blame] | 7829 | #endif |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7830 | |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 7831 | 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] | 7832 | { |
| 7833 | struct desc_ptr dt; |
| 7834 | struct kvm_segment seg; |
| 7835 | unsigned long val; |
| 7836 | int i; |
| 7837 | |
| 7838 | put_smstate(u32, buf, 0x7ffc, kvm_read_cr0(vcpu)); |
| 7839 | put_smstate(u32, buf, 0x7ff8, kvm_read_cr3(vcpu)); |
| 7840 | put_smstate(u32, buf, 0x7ff4, kvm_get_rflags(vcpu)); |
| 7841 | put_smstate(u32, buf, 0x7ff0, kvm_rip_read(vcpu)); |
| 7842 | |
| 7843 | for (i = 0; i < 8; i++) |
| 7844 | put_smstate(u32, buf, 0x7fd0 + i * 4, kvm_register_read(vcpu, i)); |
| 7845 | |
| 7846 | kvm_get_dr(vcpu, 6, &val); |
| 7847 | put_smstate(u32, buf, 0x7fcc, (u32)val); |
| 7848 | kvm_get_dr(vcpu, 7, &val); |
| 7849 | put_smstate(u32, buf, 0x7fc8, (u32)val); |
| 7850 | |
| 7851 | kvm_get_segment(vcpu, &seg, VCPU_SREG_TR); |
| 7852 | put_smstate(u32, buf, 0x7fc4, seg.selector); |
| 7853 | put_smstate(u32, buf, 0x7f64, seg.base); |
| 7854 | put_smstate(u32, buf, 0x7f60, seg.limit); |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 7855 | put_smstate(u32, buf, 0x7f5c, enter_smm_get_segment_flags(&seg)); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7856 | |
| 7857 | kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR); |
| 7858 | put_smstate(u32, buf, 0x7fc0, seg.selector); |
| 7859 | put_smstate(u32, buf, 0x7f80, seg.base); |
| 7860 | put_smstate(u32, buf, 0x7f7c, seg.limit); |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 7861 | put_smstate(u32, buf, 0x7f78, enter_smm_get_segment_flags(&seg)); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7862 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7863 | kvm_x86_ops.get_gdt(vcpu, &dt); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7864 | put_smstate(u32, buf, 0x7f74, dt.address); |
| 7865 | put_smstate(u32, buf, 0x7f70, dt.size); |
| 7866 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7867 | kvm_x86_ops.get_idt(vcpu, &dt); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7868 | put_smstate(u32, buf, 0x7f58, dt.address); |
| 7869 | put_smstate(u32, buf, 0x7f54, dt.size); |
| 7870 | |
| 7871 | for (i = 0; i < 6; i++) |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 7872 | enter_smm_save_seg_32(vcpu, buf, i); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7873 | |
| 7874 | put_smstate(u32, buf, 0x7f14, kvm_read_cr4(vcpu)); |
| 7875 | |
| 7876 | /* revision id */ |
| 7877 | put_smstate(u32, buf, 0x7efc, 0x00020000); |
| 7878 | put_smstate(u32, buf, 0x7ef8, vcpu->arch.smbase); |
| 7879 | } |
| 7880 | |
Sean Christopherson | b68f3cc | 2019-04-02 08:10:48 -0700 | [diff] [blame] | 7881 | #ifdef CONFIG_X86_64 |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 7882 | 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] | 7883 | { |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7884 | struct desc_ptr dt; |
| 7885 | struct kvm_segment seg; |
| 7886 | unsigned long val; |
| 7887 | int i; |
| 7888 | |
| 7889 | for (i = 0; i < 16; i++) |
| 7890 | put_smstate(u64, buf, 0x7ff8 - i * 8, kvm_register_read(vcpu, i)); |
| 7891 | |
| 7892 | put_smstate(u64, buf, 0x7f78, kvm_rip_read(vcpu)); |
| 7893 | put_smstate(u32, buf, 0x7f70, kvm_get_rflags(vcpu)); |
| 7894 | |
| 7895 | kvm_get_dr(vcpu, 6, &val); |
| 7896 | put_smstate(u64, buf, 0x7f68, val); |
| 7897 | kvm_get_dr(vcpu, 7, &val); |
| 7898 | put_smstate(u64, buf, 0x7f60, val); |
| 7899 | |
| 7900 | put_smstate(u64, buf, 0x7f58, kvm_read_cr0(vcpu)); |
| 7901 | put_smstate(u64, buf, 0x7f50, kvm_read_cr3(vcpu)); |
| 7902 | put_smstate(u64, buf, 0x7f48, kvm_read_cr4(vcpu)); |
| 7903 | |
| 7904 | put_smstate(u32, buf, 0x7f00, vcpu->arch.smbase); |
| 7905 | |
| 7906 | /* revision id */ |
| 7907 | put_smstate(u32, buf, 0x7efc, 0x00020064); |
| 7908 | |
| 7909 | put_smstate(u64, buf, 0x7ed0, vcpu->arch.efer); |
| 7910 | |
| 7911 | kvm_get_segment(vcpu, &seg, VCPU_SREG_TR); |
| 7912 | put_smstate(u16, buf, 0x7e90, seg.selector); |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 7913 | put_smstate(u16, buf, 0x7e92, enter_smm_get_segment_flags(&seg) >> 8); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7914 | put_smstate(u32, buf, 0x7e94, seg.limit); |
| 7915 | put_smstate(u64, buf, 0x7e98, seg.base); |
| 7916 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7917 | kvm_x86_ops.get_idt(vcpu, &dt); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7918 | put_smstate(u32, buf, 0x7e84, dt.size); |
| 7919 | put_smstate(u64, buf, 0x7e88, dt.address); |
| 7920 | |
| 7921 | kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR); |
| 7922 | put_smstate(u16, buf, 0x7e70, seg.selector); |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 7923 | put_smstate(u16, buf, 0x7e72, enter_smm_get_segment_flags(&seg) >> 8); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7924 | put_smstate(u32, buf, 0x7e74, seg.limit); |
| 7925 | put_smstate(u64, buf, 0x7e78, seg.base); |
| 7926 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7927 | kvm_x86_ops.get_gdt(vcpu, &dt); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7928 | put_smstate(u32, buf, 0x7e64, dt.size); |
| 7929 | put_smstate(u64, buf, 0x7e68, dt.address); |
| 7930 | |
| 7931 | for (i = 0; i < 6; i++) |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 7932 | enter_smm_save_seg_64(vcpu, buf, i); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7933 | } |
Sean Christopherson | b68f3cc | 2019-04-02 08:10:48 -0700 | [diff] [blame] | 7934 | #endif |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7935 | |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 7936 | static void enter_smm(struct kvm_vcpu *vcpu) |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 7937 | { |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7938 | struct kvm_segment cs, ds; |
Paolo Bonzini | 18c3626 | 2015-08-07 12:27:54 +0200 | [diff] [blame] | 7939 | struct desc_ptr dt; |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7940 | char buf[512]; |
| 7941 | u32 cr0; |
| 7942 | |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7943 | trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, true); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7944 | memset(buf, 0, 512); |
Sean Christopherson | b68f3cc | 2019-04-02 08:10:48 -0700 | [diff] [blame] | 7945 | #ifdef CONFIG_X86_64 |
Radim Krčmář | d6321d4 | 2017-08-05 00:12:49 +0200 | [diff] [blame] | 7946 | if (guest_cpuid_has(vcpu, X86_FEATURE_LM)) |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 7947 | enter_smm_save_state_64(vcpu, buf); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7948 | else |
Sean Christopherson | b68f3cc | 2019-04-02 08:10:48 -0700 | [diff] [blame] | 7949 | #endif |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 7950 | enter_smm_save_state_32(vcpu, buf); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7951 | |
Ladi Prosek | 0234bf8 | 2017-10-11 16:54:40 +0200 | [diff] [blame] | 7952 | /* |
| 7953 | * Give pre_enter_smm() a chance to make ISA-specific changes to the |
| 7954 | * vCPU state (e.g. leave guest mode) after we've saved the state into |
| 7955 | * the SMM state-save area. |
| 7956 | */ |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7957 | kvm_x86_ops.pre_enter_smm(vcpu, buf); |
Ladi Prosek | 0234bf8 | 2017-10-11 16:54:40 +0200 | [diff] [blame] | 7958 | |
| 7959 | vcpu->arch.hflags |= HF_SMM_MASK; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 7960 | kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, buf, sizeof(buf)); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7961 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7962 | if (kvm_x86_ops.get_nmi_mask(vcpu)) |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7963 | vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK; |
| 7964 | else |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7965 | kvm_x86_ops.set_nmi_mask(vcpu, true); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7966 | |
| 7967 | kvm_set_rflags(vcpu, X86_EFLAGS_FIXED); |
| 7968 | kvm_rip_write(vcpu, 0x8000); |
| 7969 | |
| 7970 | cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG); |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7971 | kvm_x86_ops.set_cr0(vcpu, cr0); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7972 | vcpu->arch.cr0 = cr0; |
| 7973 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7974 | kvm_x86_ops.set_cr4(vcpu, 0); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7975 | |
Paolo Bonzini | 18c3626 | 2015-08-07 12:27:54 +0200 | [diff] [blame] | 7976 | /* Undocumented: IDT limit is set to zero on entry to SMM. */ |
| 7977 | dt.address = dt.size = 0; |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 7978 | kvm_x86_ops.set_idt(vcpu, &dt); |
Paolo Bonzini | 18c3626 | 2015-08-07 12:27:54 +0200 | [diff] [blame] | 7979 | |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 7980 | __kvm_set_dr(vcpu, 7, DR7_FIXED_1); |
| 7981 | |
| 7982 | cs.selector = (vcpu->arch.smbase >> 4) & 0xffff; |
| 7983 | cs.base = vcpu->arch.smbase; |
| 7984 | |
| 7985 | ds.selector = 0; |
| 7986 | ds.base = 0; |
| 7987 | |
| 7988 | cs.limit = ds.limit = 0xffffffff; |
| 7989 | cs.type = ds.type = 0x3; |
| 7990 | cs.dpl = ds.dpl = 0; |
| 7991 | cs.db = ds.db = 0; |
| 7992 | cs.s = ds.s = 1; |
| 7993 | cs.l = ds.l = 0; |
| 7994 | cs.g = ds.g = 1; |
| 7995 | cs.avl = ds.avl = 0; |
| 7996 | cs.present = ds.present = 1; |
| 7997 | cs.unusable = ds.unusable = 0; |
| 7998 | cs.padding = ds.padding = 0; |
| 7999 | |
| 8000 | kvm_set_segment(vcpu, &cs, VCPU_SREG_CS); |
| 8001 | kvm_set_segment(vcpu, &ds, VCPU_SREG_DS); |
| 8002 | kvm_set_segment(vcpu, &ds, VCPU_SREG_ES); |
| 8003 | kvm_set_segment(vcpu, &ds, VCPU_SREG_FS); |
| 8004 | kvm_set_segment(vcpu, &ds, VCPU_SREG_GS); |
| 8005 | kvm_set_segment(vcpu, &ds, VCPU_SREG_SS); |
| 8006 | |
Sean Christopherson | b68f3cc | 2019-04-02 08:10:48 -0700 | [diff] [blame] | 8007 | #ifdef CONFIG_X86_64 |
Radim Krčmář | d6321d4 | 2017-08-05 00:12:49 +0200 | [diff] [blame] | 8008 | if (guest_cpuid_has(vcpu, X86_FEATURE_LM)) |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8009 | kvm_x86_ops.set_efer(vcpu, 0); |
Sean Christopherson | b68f3cc | 2019-04-02 08:10:48 -0700 | [diff] [blame] | 8010 | #endif |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 8011 | |
| 8012 | kvm_update_cpuid(vcpu); |
| 8013 | kvm_mmu_reset_context(vcpu); |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 8014 | } |
| 8015 | |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 8016 | static void process_smi(struct kvm_vcpu *vcpu) |
Paolo Bonzini | c43203c | 2016-06-01 22:26:00 +0200 | [diff] [blame] | 8017 | { |
| 8018 | vcpu->arch.smi_pending = true; |
| 8019 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 8020 | } |
| 8021 | |
Nitesh Narayan Lal | 7ee30bc | 2019-11-07 07:53:43 -0500 | [diff] [blame] | 8022 | void kvm_make_scan_ioapic_request_mask(struct kvm *kvm, |
| 8023 | unsigned long *vcpu_bitmap) |
| 8024 | { |
| 8025 | cpumask_var_t cpus; |
Nitesh Narayan Lal | 7ee30bc | 2019-11-07 07:53:43 -0500 | [diff] [blame] | 8026 | |
| 8027 | zalloc_cpumask_var(&cpus, GFP_ATOMIC); |
| 8028 | |
Mao Wenan | db5a95e | 2019-11-19 11:06:40 +0800 | [diff] [blame] | 8029 | kvm_make_vcpus_request_mask(kvm, KVM_REQ_SCAN_IOAPIC, |
| 8030 | vcpu_bitmap, cpus); |
Nitesh Narayan Lal | 7ee30bc | 2019-11-07 07:53:43 -0500 | [diff] [blame] | 8031 | |
| 8032 | free_cpumask_var(cpus); |
| 8033 | } |
| 8034 | |
Paolo Bonzini | 2860c4b | 2016-01-07 15:05:10 +0100 | [diff] [blame] | 8035 | void kvm_make_scan_ioapic_request(struct kvm *kvm) |
| 8036 | { |
| 8037 | kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC); |
| 8038 | } |
| 8039 | |
Suravee Suthikulpanit | 8df14af | 2019-11-14 14:15:06 -0600 | [diff] [blame] | 8040 | void kvm_vcpu_update_apicv(struct kvm_vcpu *vcpu) |
| 8041 | { |
| 8042 | if (!lapic_in_kernel(vcpu)) |
| 8043 | return; |
| 8044 | |
| 8045 | vcpu->arch.apicv_active = kvm_apicv_activated(vcpu->kvm); |
| 8046 | kvm_apic_update_apicv(vcpu); |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8047 | kvm_x86_ops.refresh_apicv_exec_ctrl(vcpu); |
Suravee Suthikulpanit | 8df14af | 2019-11-14 14:15:06 -0600 | [diff] [blame] | 8048 | } |
| 8049 | EXPORT_SYMBOL_GPL(kvm_vcpu_update_apicv); |
| 8050 | |
| 8051 | /* |
| 8052 | * NOTE: Do not hold any lock prior to calling this. |
| 8053 | * |
| 8054 | * In particular, kvm_request_apicv_update() expects kvm->srcu not to be |
| 8055 | * locked, because it calls __x86_set_memory_region() which does |
| 8056 | * synchronize_srcu(&kvm->srcu). |
| 8057 | */ |
| 8058 | void kvm_request_apicv_update(struct kvm *kvm, bool activate, ulong bit) |
| 8059 | { |
Paolo Bonzini | 8e205a6 | 2020-03-14 12:29:23 +0100 | [diff] [blame] | 8060 | unsigned long old, new, expected; |
| 8061 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8062 | if (!kvm_x86_ops.check_apicv_inhibit_reasons || |
| 8063 | !kvm_x86_ops.check_apicv_inhibit_reasons(bit)) |
Suravee Suthikulpanit | ef8efd7 | 2019-11-14 14:15:10 -0600 | [diff] [blame] | 8064 | return; |
| 8065 | |
Paolo Bonzini | 8e205a6 | 2020-03-14 12:29:23 +0100 | [diff] [blame] | 8066 | old = READ_ONCE(kvm->arch.apicv_inhibit_reasons); |
| 8067 | do { |
| 8068 | expected = new = old; |
| 8069 | if (activate) |
| 8070 | __clear_bit(bit, &new); |
| 8071 | else |
| 8072 | __set_bit(bit, &new); |
| 8073 | if (new == old) |
| 8074 | break; |
| 8075 | old = cmpxchg(&kvm->arch.apicv_inhibit_reasons, expected, new); |
| 8076 | } while (old != expected); |
| 8077 | |
| 8078 | if (!!old == !!new) |
| 8079 | return; |
Suravee Suthikulpanit | 8df14af | 2019-11-14 14:15:06 -0600 | [diff] [blame] | 8080 | |
Suravee Suthikulpanit | 24bbf74 | 2019-11-14 14:15:07 -0600 | [diff] [blame] | 8081 | trace_kvm_apicv_update_request(activate, bit); |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8082 | if (kvm_x86_ops.pre_update_apicv_exec_ctrl) |
| 8083 | kvm_x86_ops.pre_update_apicv_exec_ctrl(kvm, activate); |
Suravee Suthikulpanit | 8df14af | 2019-11-14 14:15:06 -0600 | [diff] [blame] | 8084 | kvm_make_all_cpus_request(kvm, KVM_REQ_APICV_UPDATE); |
| 8085 | } |
| 8086 | EXPORT_SYMBOL_GPL(kvm_request_apicv_update); |
| 8087 | |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame] | 8088 | static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu) |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8089 | { |
Wanpeng Li | dcbd3e4 | 2018-12-17 10:43:23 +0800 | [diff] [blame] | 8090 | if (!kvm_apic_present(vcpu)) |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame] | 8091 | return; |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8092 | |
Andrey Smetanin | 6308630 | 2015-11-10 15:36:32 +0300 | [diff] [blame] | 8093 | bitmap_zero(vcpu->arch.ioapic_handled_vectors, 256); |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8094 | |
Steve Rutherford | b053b2a | 2015-07-29 23:32:35 -0700 | [diff] [blame] | 8095 | if (irqchip_split(vcpu->kvm)) |
Andrey Smetanin | 6308630 | 2015-11-10 15:36:32 +0300 | [diff] [blame] | 8096 | kvm_scan_ioapic_routes(vcpu, vcpu->arch.ioapic_handled_vectors); |
Radim Krčmář | db2bdcb | 2015-10-08 20:23:34 +0200 | [diff] [blame] | 8097 | else { |
Liran Alon | fa59cc0 | 2017-12-24 18:12:53 +0200 | [diff] [blame] | 8098 | if (vcpu->arch.apicv_active) |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8099 | kvm_x86_ops.sync_pir_to_irr(vcpu); |
Wanpeng Li | e97f852 | 2018-11-20 16:34:18 +0800 | [diff] [blame] | 8100 | if (ioapic_in_kernel(vcpu->kvm)) |
| 8101 | kvm_ioapic_scan_entry(vcpu, vcpu->arch.ioapic_handled_vectors); |
Radim Krčmář | db2bdcb | 2015-10-08 20:23:34 +0200 | [diff] [blame] | 8102 | } |
Liran Alon | e40ff1d | 2018-03-21 02:50:31 +0200 | [diff] [blame] | 8103 | |
| 8104 | if (is_guest_mode(vcpu)) |
| 8105 | vcpu->arch.load_eoi_exitmap_pending = true; |
| 8106 | else |
| 8107 | kvm_make_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu); |
| 8108 | } |
| 8109 | |
| 8110 | static void vcpu_load_eoi_exitmap(struct kvm_vcpu *vcpu) |
| 8111 | { |
| 8112 | u64 eoi_exit_bitmap[4]; |
| 8113 | |
| 8114 | if (!kvm_apic_hw_enabled(vcpu->arch.apic)) |
| 8115 | return; |
| 8116 | |
Andrey Smetanin | 5c919412 | 2015-11-10 15:36:34 +0300 | [diff] [blame] | 8117 | bitmap_or((ulong *)eoi_exit_bitmap, vcpu->arch.ioapic_handled_vectors, |
| 8118 | vcpu_to_synic(vcpu)->vec_bitmap, 256); |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8119 | kvm_x86_ops.load_eoi_exitmap(vcpu, eoi_exit_bitmap); |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 8120 | } |
| 8121 | |
Michal Hocko | 93065ac | 2018-08-21 21:52:33 -0700 | [diff] [blame] | 8122 | int kvm_arch_mmu_notifier_invalidate_range(struct kvm *kvm, |
| 8123 | unsigned long start, unsigned long end, |
| 8124 | bool blockable) |
Radim Krčmář | b1394e7 | 2017-11-30 19:05:45 +0100 | [diff] [blame] | 8125 | { |
| 8126 | unsigned long apic_address; |
| 8127 | |
| 8128 | /* |
| 8129 | * The physical address of apic access page is stored in the VMCS. |
| 8130 | * Update it when it becomes invalid. |
| 8131 | */ |
| 8132 | apic_address = gfn_to_hva(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT); |
| 8133 | if (start <= apic_address && apic_address < end) |
| 8134 | kvm_make_all_cpus_request(kvm, KVM_REQ_APIC_PAGE_RELOAD); |
Michal Hocko | 93065ac | 2018-08-21 21:52:33 -0700 | [diff] [blame] | 8135 | |
| 8136 | return 0; |
Radim Krčmář | b1394e7 | 2017-11-30 19:05:45 +0100 | [diff] [blame] | 8137 | } |
| 8138 | |
Tang Chen | 4256f43 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 8139 | void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu) |
| 8140 | { |
Tang Chen | c24ae0d | 2014-09-24 15:57:58 +0800 | [diff] [blame] | 8141 | struct page *page = NULL; |
| 8142 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 8143 | if (!lapic_in_kernel(vcpu)) |
Paolo Bonzini | f439ed2 | 2014-10-02 13:53:24 +0200 | [diff] [blame] | 8144 | return; |
| 8145 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8146 | if (!kvm_x86_ops.set_apic_access_page_addr) |
Tang Chen | 4256f43 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 8147 | return; |
| 8148 | |
Tang Chen | c24ae0d | 2014-09-24 15:57:58 +0800 | [diff] [blame] | 8149 | page = gfn_to_page(vcpu->kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT); |
Andrea Arcangeli | e8fd5e9 | 2015-05-08 14:32:56 +0200 | [diff] [blame] | 8150 | if (is_error_page(page)) |
| 8151 | return; |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8152 | kvm_x86_ops.set_apic_access_page_addr(vcpu, page_to_phys(page)); |
Tang Chen | c24ae0d | 2014-09-24 15:57:58 +0800 | [diff] [blame] | 8153 | |
| 8154 | /* |
| 8155 | * Do not pin apic access page in memory, the MMU notifier |
| 8156 | * will call us again if it is migrated or swapped out. |
| 8157 | */ |
| 8158 | put_page(page); |
Tang Chen | 4256f43 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 8159 | } |
Tang Chen | 4256f43 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 8160 | |
Sean Christopherson | d264ee0 | 2018-08-27 15:21:12 -0700 | [diff] [blame] | 8161 | void __kvm_request_immediate_exit(struct kvm_vcpu *vcpu) |
| 8162 | { |
| 8163 | smp_send_reschedule(vcpu->cpu); |
| 8164 | } |
| 8165 | EXPORT_SYMBOL_GPL(__kvm_request_immediate_exit); |
| 8166 | |
Takuya Yoshikawa | 9357d93 | 2013-12-13 15:08:38 +0900 | [diff] [blame] | 8167 | /* |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 8168 | * Returns 1 to let vcpu_run() continue the guest execution loop without |
Takuya Yoshikawa | 9357d93 | 2013-12-13 15:08:38 +0900 | [diff] [blame] | 8169 | * exiting to the userspace. Otherwise, the value will be returned to the |
| 8170 | * userspace. |
| 8171 | */ |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 8172 | static int vcpu_enter_guest(struct kvm_vcpu *vcpu) |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8173 | { |
| 8174 | int r; |
Matt Gingell | 62a193e | 2015-11-16 15:26:07 -0800 | [diff] [blame] | 8175 | bool req_int_win = |
| 8176 | dm_request_for_irq_injection(vcpu) && |
| 8177 | kvm_cpu_accept_dm_intr(vcpu); |
Wanpeng Li | 1e9e262 | 2019-11-21 11:17:11 +0800 | [diff] [blame] | 8178 | enum exit_fastpath_completion exit_fastpath = EXIT_FASTPATH_NONE; |
Matt Gingell | 62a193e | 2015-11-16 15:26:07 -0800 | [diff] [blame] | 8179 | |
Jan Kiszka | 730dca4 | 2013-04-28 10:50:52 +0200 | [diff] [blame] | 8180 | bool req_immediate_exit = false; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8181 | |
Radim Krčmář | 2fa6e1e | 2017-06-04 14:43:52 +0200 | [diff] [blame] | 8182 | if (kvm_request_pending(vcpu)) { |
Jim Mattson | 671ddc7 | 2019-10-15 10:44:05 -0700 | [diff] [blame] | 8183 | if (kvm_check_request(KVM_REQ_GET_VMCS12_PAGES, vcpu)) { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8184 | if (unlikely(!kvm_x86_ops.get_vmcs12_pages(vcpu))) { |
Jim Mattson | 671ddc7 | 2019-10-15 10:44:05 -0700 | [diff] [blame] | 8185 | r = 0; |
| 8186 | goto out; |
| 8187 | } |
| 8188 | } |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 8189 | if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu)) |
Marcelo Tosatti | 2e53d63 | 2008-02-20 14:47:24 -0500 | [diff] [blame] | 8190 | kvm_mmu_unload(vcpu); |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 8191 | if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu)) |
Marcelo Tosatti | 2f59971 | 2008-05-27 12:10:20 -0300 | [diff] [blame] | 8192 | __kvm_migrate_timers(vcpu); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 8193 | if (kvm_check_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu)) |
| 8194 | kvm_gen_update_masterclock(vcpu->kvm); |
Marcelo Tosatti | 0061d53d | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 8195 | if (kvm_check_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu)) |
| 8196 | kvm_gen_kvmclock_update(vcpu); |
Zachary Amsden | 34c238a | 2010-09-18 14:38:14 -1000 | [diff] [blame] | 8197 | if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) { |
| 8198 | r = kvm_guest_time_update(vcpu); |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 8199 | if (unlikely(r)) |
| 8200 | goto out; |
| 8201 | } |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 8202 | if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu)) |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 8203 | kvm_mmu_sync_roots(vcpu); |
Paolo Bonzini | 727a7e2 | 2020-03-05 03:52:50 -0500 | [diff] [blame] | 8204 | if (kvm_check_request(KVM_REQ_LOAD_MMU_PGD, vcpu)) |
| 8205 | kvm_mmu_load_pgd(vcpu); |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 8206 | if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu)) |
Wanpeng Li | c2ba05c | 2017-12-12 17:33:03 -0800 | [diff] [blame] | 8207 | kvm_vcpu_flush_tlb(vcpu, true); |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 8208 | if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 8209 | vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS; |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 8210 | r = 0; |
| 8211 | goto out; |
| 8212 | } |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 8213 | if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 8214 | vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN; |
Wanpeng Li | bbeac28 | 2017-08-09 22:33:12 -0700 | [diff] [blame] | 8215 | vcpu->mmio_needed = 0; |
Joerg Roedel | 71c4dfa | 2008-02-26 16:49:16 +0100 | [diff] [blame] | 8216 | r = 0; |
| 8217 | goto out; |
| 8218 | } |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 8219 | if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) { |
| 8220 | /* Page is swapped out. Do synthetic halt */ |
| 8221 | vcpu->arch.apf.halted = true; |
| 8222 | r = 1; |
| 8223 | goto out; |
| 8224 | } |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 8225 | if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu)) |
| 8226 | record_steal_time(vcpu); |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 8227 | if (kvm_check_request(KVM_REQ_SMI, vcpu)) |
| 8228 | process_smi(vcpu); |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 8229 | if (kvm_check_request(KVM_REQ_NMI, vcpu)) |
| 8230 | process_nmi(vcpu); |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 8231 | if (kvm_check_request(KVM_REQ_PMU, vcpu)) |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 8232 | kvm_pmu_handle_event(vcpu); |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 8233 | if (kvm_check_request(KVM_REQ_PMI, vcpu)) |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 8234 | kvm_pmu_deliver_pmi(vcpu); |
Steve Rutherford | 7543a63 | 2015-07-29 23:21:41 -0700 | [diff] [blame] | 8235 | if (kvm_check_request(KVM_REQ_IOAPIC_EOI_EXIT, vcpu)) { |
| 8236 | BUG_ON(vcpu->arch.pending_ioapic_eoi > 255); |
| 8237 | if (test_bit(vcpu->arch.pending_ioapic_eoi, |
Andrey Smetanin | 6308630 | 2015-11-10 15:36:32 +0300 | [diff] [blame] | 8238 | vcpu->arch.ioapic_handled_vectors)) { |
Steve Rutherford | 7543a63 | 2015-07-29 23:21:41 -0700 | [diff] [blame] | 8239 | vcpu->run->exit_reason = KVM_EXIT_IOAPIC_EOI; |
| 8240 | vcpu->run->eoi.vector = |
| 8241 | vcpu->arch.pending_ioapic_eoi; |
| 8242 | r = 0; |
| 8243 | goto out; |
| 8244 | } |
| 8245 | } |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame] | 8246 | if (kvm_check_request(KVM_REQ_SCAN_IOAPIC, vcpu)) |
| 8247 | vcpu_scan_ioapic(vcpu); |
Liran Alon | e40ff1d | 2018-03-21 02:50:31 +0200 | [diff] [blame] | 8248 | if (kvm_check_request(KVM_REQ_LOAD_EOI_EXITMAP, vcpu)) |
| 8249 | vcpu_load_eoi_exitmap(vcpu); |
Tang Chen | 4256f43 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 8250 | if (kvm_check_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu)) |
| 8251 | kvm_vcpu_reload_apic_access_page(vcpu); |
Andrey Smetanin | 2ce7918 | 2015-07-03 15:01:41 +0300 | [diff] [blame] | 8252 | if (kvm_check_request(KVM_REQ_HV_CRASH, vcpu)) { |
| 8253 | vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT; |
| 8254 | vcpu->run->system_event.type = KVM_SYSTEM_EVENT_CRASH; |
| 8255 | r = 0; |
| 8256 | goto out; |
| 8257 | } |
Andrey Smetanin | e516ceb | 2015-09-16 12:29:48 +0300 | [diff] [blame] | 8258 | if (kvm_check_request(KVM_REQ_HV_RESET, vcpu)) { |
| 8259 | vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT; |
| 8260 | vcpu->run->system_event.type = KVM_SYSTEM_EVENT_RESET; |
| 8261 | r = 0; |
| 8262 | goto out; |
| 8263 | } |
Andrey Smetanin | db397571 | 2015-11-10 15:36:35 +0300 | [diff] [blame] | 8264 | if (kvm_check_request(KVM_REQ_HV_EXIT, vcpu)) { |
| 8265 | vcpu->run->exit_reason = KVM_EXIT_HYPERV; |
| 8266 | vcpu->run->hyperv = vcpu->arch.hyperv.exit; |
| 8267 | r = 0; |
| 8268 | goto out; |
| 8269 | } |
Andrey Smetanin | f3b138c | 2015-12-28 18:27:24 +0300 | [diff] [blame] | 8270 | |
| 8271 | /* |
| 8272 | * KVM_REQ_HV_STIMER has to be processed after |
| 8273 | * KVM_REQ_CLOCK_UPDATE, because Hyper-V SynIC timers |
| 8274 | * depend on the guest clock being up-to-date |
| 8275 | */ |
Andrey Smetanin | 1f4b34f | 2015-11-30 19:22:21 +0300 | [diff] [blame] | 8276 | if (kvm_check_request(KVM_REQ_HV_STIMER, vcpu)) |
| 8277 | kvm_hv_process_stimers(vcpu); |
Suravee Suthikulpanit | 8df14af | 2019-11-14 14:15:06 -0600 | [diff] [blame] | 8278 | if (kvm_check_request(KVM_REQ_APICV_UPDATE, vcpu)) |
| 8279 | kvm_vcpu_update_apicv(vcpu); |
Avi Kivity | 2f52d58 | 2008-01-16 12:49:30 +0200 | [diff] [blame] | 8280 | } |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 8281 | |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 8282 | if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win) { |
Paolo Bonzini | 0f1e261 | 2016-12-17 16:05:19 +0100 | [diff] [blame] | 8283 | ++vcpu->stat.req_event; |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 8284 | kvm_apic_accept_events(vcpu); |
| 8285 | if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) { |
| 8286 | r = 1; |
| 8287 | goto out; |
| 8288 | } |
| 8289 | |
Sean Christopherson | a1c77ab | 2020-03-02 22:27:35 -0800 | [diff] [blame] | 8290 | if (inject_pending_event(vcpu) != 0) |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 8291 | req_immediate_exit = true; |
Yuki Shibuya | 321c565 | 2016-03-24 05:17:03 +0000 | [diff] [blame] | 8292 | else { |
Ladi Prosek | cc3d967 | 2017-10-17 16:02:39 +0200 | [diff] [blame] | 8293 | /* Enable SMI/NMI/IRQ window open exits if needed. |
Paolo Bonzini | c43203c | 2016-06-01 22:26:00 +0200 | [diff] [blame] | 8294 | * |
Ladi Prosek | cc3d967 | 2017-10-17 16:02:39 +0200 | [diff] [blame] | 8295 | * SMIs have three cases: |
| 8296 | * 1) They can be nested, and then there is nothing to |
| 8297 | * do here because RSM will cause a vmexit anyway. |
| 8298 | * 2) There is an ISA-specific reason why SMI cannot be |
| 8299 | * injected, and the moment when this changes can be |
| 8300 | * intercepted. |
| 8301 | * 3) Or the SMI can be pending because |
| 8302 | * inject_pending_event has completed the injection |
| 8303 | * of an IRQ or NMI from the previous vmexit, and |
| 8304 | * then we request an immediate exit to inject the |
| 8305 | * SMI. |
Paolo Bonzini | c43203c | 2016-06-01 22:26:00 +0200 | [diff] [blame] | 8306 | */ |
| 8307 | if (vcpu->arch.smi_pending && !is_smm(vcpu)) |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8308 | if (!kvm_x86_ops.enable_smi_window(vcpu)) |
Ladi Prosek | cc3d967 | 2017-10-17 16:02:39 +0200 | [diff] [blame] | 8309 | req_immediate_exit = true; |
Yuki Shibuya | 321c565 | 2016-03-24 05:17:03 +0000 | [diff] [blame] | 8310 | if (vcpu->arch.nmi_pending) |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8311 | kvm_x86_ops.enable_nmi_window(vcpu); |
Yuki Shibuya | 321c565 | 2016-03-24 05:17:03 +0000 | [diff] [blame] | 8312 | if (kvm_cpu_has_injectable_intr(vcpu) || req_int_win) |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8313 | kvm_x86_ops.enable_irq_window(vcpu); |
Wanpeng Li | 664f8e2 | 2017-08-24 03:35:09 -0700 | [diff] [blame] | 8314 | WARN_ON(vcpu->arch.exception.pending); |
Yuki Shibuya | 321c565 | 2016-03-24 05:17:03 +0000 | [diff] [blame] | 8315 | } |
Gleb Natapov | 6a8b1d1 | 2009-05-11 13:35:51 +0300 | [diff] [blame] | 8316 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 8317 | if (kvm_lapic_enabled(vcpu)) { |
| 8318 | update_cr8_intercept(vcpu); |
| 8319 | kvm_lapic_sync_to_vapic(vcpu); |
| 8320 | } |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 8321 | } |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 8322 | |
Avi Kivity | d8368af | 2012-05-14 18:07:56 +0300 | [diff] [blame] | 8323 | r = kvm_mmu_reload(vcpu); |
| 8324 | if (unlikely(r)) { |
Michael S. Tsirkin | d905c06 | 2012-06-24 19:25:00 +0300 | [diff] [blame] | 8325 | goto cancel_injection; |
Avi Kivity | d8368af | 2012-05-14 18:07:56 +0300 | [diff] [blame] | 8326 | } |
| 8327 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 8328 | preempt_disable(); |
| 8329 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8330 | kvm_x86_ops.prepare_guest_switch(vcpu); |
Paolo Bonzini | b95234c | 2016-12-19 13:57:33 +0100 | [diff] [blame] | 8331 | |
| 8332 | /* |
| 8333 | * Disable IRQs before setting IN_GUEST_MODE. Posted interrupt |
| 8334 | * IPI are then delayed after guest entry, which ensures that they |
| 8335 | * result in virtual interrupt delivery. |
| 8336 | */ |
| 8337 | local_irq_disable(); |
Xiao Guangrong | 6b7e2d0 | 2011-01-12 15:40:31 +0800 | [diff] [blame] | 8338 | vcpu->mode = IN_GUEST_MODE; |
| 8339 | |
Michael S. Tsirkin | 01b7191 | 2013-11-04 22:36:25 +0200 | [diff] [blame] | 8340 | srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx); |
| 8341 | |
Lan Tianyu | 0f127d1 | 2016-03-13 11:10:29 +0800 | [diff] [blame] | 8342 | /* |
Paolo Bonzini | b95234c | 2016-12-19 13:57:33 +0100 | [diff] [blame] | 8343 | * 1) We should set ->mode before checking ->requests. Please see |
Andrew Jones | cde9af6 | 2017-04-26 22:32:24 +0200 | [diff] [blame] | 8344 | * the comment in kvm_vcpu_exiting_guest_mode(). |
Paolo Bonzini | b95234c | 2016-12-19 13:57:33 +0100 | [diff] [blame] | 8345 | * |
Luwei Kang | 81b0166 | 2019-01-31 16:52:02 +0800 | [diff] [blame] | 8346 | * 2) For APICv, we should set ->mode before checking PID.ON. This |
Paolo Bonzini | b95234c | 2016-12-19 13:57:33 +0100 | [diff] [blame] | 8347 | * pairs with the memory barrier implicit in pi_test_and_set_on |
| 8348 | * (see vmx_deliver_posted_interrupt). |
| 8349 | * |
| 8350 | * 3) This also orders the write to mode from any reads to the page |
| 8351 | * tables done while the VCPU is running. Please see the comment |
| 8352 | * in kvm_flush_remote_tlbs. |
Xiao Guangrong | 6b7e2d0 | 2011-01-12 15:40:31 +0800 | [diff] [blame] | 8353 | */ |
Michael S. Tsirkin | 01b7191 | 2013-11-04 22:36:25 +0200 | [diff] [blame] | 8354 | smp_mb__after_srcu_read_unlock(); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8355 | |
Paolo Bonzini | b95234c | 2016-12-19 13:57:33 +0100 | [diff] [blame] | 8356 | /* |
| 8357 | * This handles the case where a posted interrupt was |
| 8358 | * notified with kvm_vcpu_kick. |
| 8359 | */ |
Liran Alon | fa59cc0 | 2017-12-24 18:12:53 +0200 | [diff] [blame] | 8360 | if (kvm_lapic_enabled(vcpu) && vcpu->arch.apicv_active) |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8361 | kvm_x86_ops.sync_pir_to_irr(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8362 | |
Radim Krčmář | 2fa6e1e | 2017-06-04 14:43:52 +0200 | [diff] [blame] | 8363 | if (vcpu->mode == EXITING_GUEST_MODE || kvm_request_pending(vcpu) |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8364 | || need_resched() || signal_pending(current)) { |
Xiao Guangrong | 6b7e2d0 | 2011-01-12 15:40:31 +0800 | [diff] [blame] | 8365 | vcpu->mode = OUTSIDE_GUEST_MODE; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8366 | smp_wmb(); |
| 8367 | local_irq_enable(); |
| 8368 | preempt_enable(); |
Michael S. Tsirkin | 01b7191 | 2013-11-04 22:36:25 +0200 | [diff] [blame] | 8369 | vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8370 | r = 1; |
Michael S. Tsirkin | d905c06 | 2012-06-24 19:25:00 +0300 | [diff] [blame] | 8371 | goto cancel_injection; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8372 | } |
| 8373 | |
Paolo Bonzini | c43203c | 2016-06-01 22:26:00 +0200 | [diff] [blame] | 8374 | if (req_immediate_exit) { |
| 8375 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8376 | kvm_x86_ops.request_immediate_exit(vcpu); |
Paolo Bonzini | c43203c | 2016-06-01 22:26:00 +0200 | [diff] [blame] | 8377 | } |
Nadav Har'El | d6185f2 | 2011-09-22 13:52:56 +0300 | [diff] [blame] | 8378 | |
Paolo Bonzini | 8b89fe1 | 2015-12-10 18:37:32 +0100 | [diff] [blame] | 8379 | trace_kvm_entry(vcpu->vcpu_id); |
Paolo Bonzini | 6edaa53 | 2016-06-15 15:18:26 +0200 | [diff] [blame] | 8380 | guest_enter_irqoff(); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8381 | |
Sean Christopherson | 2620fe2 | 2020-01-17 11:30:51 -0800 | [diff] [blame] | 8382 | fpregs_assert_state_consistent(); |
| 8383 | if (test_thread_flag(TIF_NEED_FPU_LOAD)) |
| 8384 | switch_fpu_return(); |
Rik van Riel | 5f409e2 | 2019-04-03 18:41:52 +0200 | [diff] [blame] | 8385 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8386 | if (unlikely(vcpu->arch.switch_db_regs)) { |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8387 | set_debugreg(0, 7); |
| 8388 | set_debugreg(vcpu->arch.eff_db[0], 0); |
| 8389 | set_debugreg(vcpu->arch.eff_db[1], 1); |
| 8390 | set_debugreg(vcpu->arch.eff_db[2], 2); |
| 8391 | set_debugreg(vcpu->arch.eff_db[3], 3); |
Paolo Bonzini | c77fb5f | 2014-02-21 10:17:24 +0100 | [diff] [blame] | 8392 | set_debugreg(vcpu->arch.dr6, 6); |
Nadav Amit | ae561ed | 2015-04-02 03:10:37 +0300 | [diff] [blame] | 8393 | vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8394 | } |
| 8395 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8396 | kvm_x86_ops.run(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8397 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 8398 | /* |
Paolo Bonzini | c77fb5f | 2014-02-21 10:17:24 +0100 | [diff] [blame] | 8399 | * Do this here before restoring debug registers on the host. And |
| 8400 | * since we do this before handling the vmexit, a DR access vmexit |
| 8401 | * can (a) read the correct value of the debug registers, (b) set |
| 8402 | * KVM_DEBUGREG_WONT_EXIT again. |
| 8403 | */ |
| 8404 | if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) { |
Paolo Bonzini | c77fb5f | 2014-02-21 10:17:24 +0100 | [diff] [blame] | 8405 | WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP); |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8406 | kvm_x86_ops.sync_dirty_debug_regs(vcpu); |
Paolo Bonzini | 70e4da7 | 2016-02-26 12:28:40 +0100 | [diff] [blame] | 8407 | kvm_update_dr0123(vcpu); |
| 8408 | kvm_update_dr6(vcpu); |
| 8409 | kvm_update_dr7(vcpu); |
| 8410 | vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD; |
Paolo Bonzini | c77fb5f | 2014-02-21 10:17:24 +0100 | [diff] [blame] | 8411 | } |
| 8412 | |
| 8413 | /* |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 8414 | * If the guest has used debug registers, at least dr7 |
| 8415 | * will be disabled while returning to the host. |
| 8416 | * If we don't have active breakpoints in the host, we don't |
| 8417 | * care about the messed up debug address registers. But if |
| 8418 | * we have some of them active, restore the old state. |
| 8419 | */ |
Frederic Weisbecker | 59d8eb5 | 2009-11-10 11:03:12 +0100 | [diff] [blame] | 8420 | if (hw_breakpoint_active()) |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 8421 | hw_breakpoint_restore(); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8422 | |
Haozhong Zhang | 4ba7653 | 2015-10-20 15:39:07 +0800 | [diff] [blame] | 8423 | vcpu->arch.last_guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc()); |
Zachary Amsden | 1d5f066 | 2010-08-19 22:07:30 -1000 | [diff] [blame] | 8424 | |
Xiao Guangrong | 6b7e2d0 | 2011-01-12 15:40:31 +0800 | [diff] [blame] | 8425 | vcpu->mode = OUTSIDE_GUEST_MODE; |
Avi Kivity | d94e1dc | 2010-05-03 16:54:48 +0300 | [diff] [blame] | 8426 | smp_wmb(); |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 8427 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8428 | kvm_x86_ops.handle_exit_irqoff(vcpu, &exit_fastpath); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8429 | |
Sean Christopherson | d7a0888 | 2019-07-10 09:07:34 -0700 | [diff] [blame] | 8430 | /* |
| 8431 | * Consume any pending interrupts, including the possible source of |
| 8432 | * VM-Exit on SVM and any ticks that occur between VM-Exit and now. |
| 8433 | * An instruction is required after local_irq_enable() to fully unblock |
| 8434 | * interrupts on processors that implement an interrupt shadow, the |
| 8435 | * stat.exits increment will do nicely. |
| 8436 | */ |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8437 | kvm_before_interrupt(vcpu); |
Sean Christopherson | d7a0888 | 2019-07-10 09:07:34 -0700 | [diff] [blame] | 8438 | local_irq_enable(); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8439 | ++vcpu->stat.exits; |
Sean Christopherson | d7a0888 | 2019-07-10 09:07:34 -0700 | [diff] [blame] | 8440 | local_irq_disable(); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8441 | kvm_after_interrupt(vcpu); |
| 8442 | |
Paolo Bonzini | f2485b3 | 2016-06-15 15:23:11 +0200 | [diff] [blame] | 8443 | guest_exit_irqoff(); |
Wanpeng Li | ec0671d | 2019-05-20 16:18:08 +0800 | [diff] [blame] | 8444 | if (lapic_in_kernel(vcpu)) { |
| 8445 | s64 delta = vcpu->arch.apic->lapic_timer.advance_expire_delta; |
| 8446 | if (delta != S64_MIN) { |
| 8447 | trace_kvm_wait_lapic_expire(vcpu->vcpu_id, delta); |
| 8448 | vcpu->arch.apic->lapic_timer.advance_expire_delta = S64_MIN; |
| 8449 | } |
| 8450 | } |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8451 | |
Paolo Bonzini | f2485b3 | 2016-06-15 15:23:11 +0200 | [diff] [blame] | 8452 | local_irq_enable(); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8453 | preempt_enable(); |
| 8454 | |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 8455 | vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu); |
Marcelo Tosatti | 3200f40 | 2008-03-29 20:17:59 -0300 | [diff] [blame] | 8456 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8457 | /* |
| 8458 | * Profile KVM exit RIPs: |
| 8459 | */ |
| 8460 | if (unlikely(prof_on == KVM_PROFILING)) { |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 8461 | unsigned long rip = kvm_rip_read(vcpu); |
| 8462 | profile_hit(KVM_PROFILING, (void *)rip); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8463 | } |
| 8464 | |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 8465 | if (unlikely(vcpu->arch.tsc_always_catchup)) |
| 8466 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu); |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 8467 | |
Michael S. Tsirkin | 5cfb1d5 | 2012-06-24 19:24:54 +0300 | [diff] [blame] | 8468 | if (vcpu->arch.apic_attention) |
| 8469 | kvm_lapic_sync_from_vapic(vcpu); |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 8470 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8471 | r = kvm_x86_ops.handle_exit(vcpu, exit_fastpath); |
Michael S. Tsirkin | d905c06 | 2012-06-24 19:25:00 +0300 | [diff] [blame] | 8472 | return r; |
| 8473 | |
| 8474 | cancel_injection: |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8475 | kvm_x86_ops.cancel_injection(vcpu); |
Michael S. Tsirkin | ae7a2a3 | 2012-06-24 19:25:07 +0300 | [diff] [blame] | 8476 | if (unlikely(vcpu->arch.apic_attention)) |
| 8477 | kvm_lapic_sync_from_vapic(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8478 | out: |
Marcelo Tosatti | d769017 | 2008-09-08 15:23:48 -0300 | [diff] [blame] | 8479 | return r; |
| 8480 | } |
| 8481 | |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 8482 | static inline int vcpu_block(struct kvm *kvm, struct kvm_vcpu *vcpu) |
| 8483 | { |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 8484 | if (!kvm_arch_vcpu_runnable(vcpu) && |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8485 | (!kvm_x86_ops.pre_block || kvm_x86_ops.pre_block(vcpu) == 0)) { |
Paolo Bonzini | 9c8fd1b | 2015-02-06 12:58:42 +0100 | [diff] [blame] | 8486 | srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx); |
| 8487 | kvm_vcpu_block(vcpu); |
| 8488 | vcpu->srcu_idx = srcu_read_lock(&kvm->srcu); |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 8489 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8490 | if (kvm_x86_ops.post_block) |
| 8491 | kvm_x86_ops.post_block(vcpu); |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 8492 | |
Paolo Bonzini | 9c8fd1b | 2015-02-06 12:58:42 +0100 | [diff] [blame] | 8493 | if (!kvm_check_request(KVM_REQ_UNHALT, vcpu)) |
| 8494 | return 1; |
| 8495 | } |
Gleb Natapov | 09cec75 | 2009-03-23 15:11:44 +0200 | [diff] [blame] | 8496 | |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 8497 | kvm_apic_accept_events(vcpu); |
| 8498 | switch(vcpu->arch.mp_state) { |
| 8499 | case KVM_MP_STATE_HALTED: |
| 8500 | vcpu->arch.pv.pv_unhalted = false; |
| 8501 | vcpu->arch.mp_state = |
| 8502 | KVM_MP_STATE_RUNNABLE; |
Gustavo A. R. Silva | b2869f2 | 2019-01-25 12:23:17 -0600 | [diff] [blame] | 8503 | /* fall through */ |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 8504 | case KVM_MP_STATE_RUNNABLE: |
| 8505 | vcpu->arch.apf.halted = false; |
| 8506 | break; |
| 8507 | case KVM_MP_STATE_INIT_RECEIVED: |
| 8508 | break; |
| 8509 | default: |
| 8510 | return -EINTR; |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 8511 | } |
| 8512 | return 1; |
| 8513 | } |
| 8514 | |
Paolo Bonzini | 5d9bc64 | 2015-10-13 10:18:53 +0200 | [diff] [blame] | 8515 | static inline bool kvm_vcpu_running(struct kvm_vcpu *vcpu) |
| 8516 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8517 | if (is_guest_mode(vcpu) && kvm_x86_ops.check_nested_events) |
| 8518 | kvm_x86_ops.check_nested_events(vcpu); |
Paolo Bonzini | 0ad3bed | 2016-12-19 15:23:54 +0100 | [diff] [blame] | 8519 | |
Paolo Bonzini | 5d9bc64 | 2015-10-13 10:18:53 +0200 | [diff] [blame] | 8520 | return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE && |
| 8521 | !vcpu->arch.apf.halted); |
| 8522 | } |
| 8523 | |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 8524 | static int vcpu_run(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | d769017 | 2008-09-08 15:23:48 -0300 | [diff] [blame] | 8525 | { |
| 8526 | int r; |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 8527 | struct kvm *kvm = vcpu->kvm; |
Marcelo Tosatti | d769017 | 2008-09-08 15:23:48 -0300 | [diff] [blame] | 8528 | |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 8529 | vcpu->srcu_idx = srcu_read_lock(&kvm->srcu); |
Paolo Bonzini | c595cee | 2018-07-02 13:07:14 +0200 | [diff] [blame] | 8530 | vcpu->arch.l1tf_flush_l1d = true; |
Marcelo Tosatti | d769017 | 2008-09-08 15:23:48 -0300 | [diff] [blame] | 8531 | |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 8532 | for (;;) { |
Paolo Bonzini | 58f800d | 2015-10-13 21:32:50 +0200 | [diff] [blame] | 8533 | if (kvm_vcpu_running(vcpu)) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 8534 | r = vcpu_enter_guest(vcpu); |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 8535 | } else { |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 8536 | r = vcpu_block(kvm, vcpu); |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 8537 | } |
| 8538 | |
Gleb Natapov | 09cec75 | 2009-03-23 15:11:44 +0200 | [diff] [blame] | 8539 | if (r <= 0) |
| 8540 | break; |
| 8541 | |
Radim Krčmář | 72875d8 | 2017-04-26 22:32:19 +0200 | [diff] [blame] | 8542 | kvm_clear_request(KVM_REQ_PENDING_TIMER, vcpu); |
Gleb Natapov | 09cec75 | 2009-03-23 15:11:44 +0200 | [diff] [blame] | 8543 | if (kvm_cpu_has_pending_timer(vcpu)) |
| 8544 | kvm_inject_pending_timer_irqs(vcpu); |
| 8545 | |
Matt Gingell | 782d422 | 2015-11-16 15:26:00 -0800 | [diff] [blame] | 8546 | if (dm_request_for_irq_injection(vcpu) && |
| 8547 | kvm_vcpu_ready_for_interrupt_injection(vcpu)) { |
Paolo Bonzini | 4ca7dd8 | 2015-07-30 10:32:16 +0200 | [diff] [blame] | 8548 | r = 0; |
| 8549 | vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN; |
Gleb Natapov | 09cec75 | 2009-03-23 15:11:44 +0200 | [diff] [blame] | 8550 | ++vcpu->stat.request_irq_exits; |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 8551 | break; |
Gleb Natapov | 09cec75 | 2009-03-23 15:11:44 +0200 | [diff] [blame] | 8552 | } |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 8553 | |
| 8554 | kvm_check_async_pf_completion(vcpu); |
| 8555 | |
Gleb Natapov | 09cec75 | 2009-03-23 15:11:44 +0200 | [diff] [blame] | 8556 | if (signal_pending(current)) { |
| 8557 | r = -EINTR; |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 8558 | vcpu->run->exit_reason = KVM_EXIT_INTR; |
Gleb Natapov | 09cec75 | 2009-03-23 15:11:44 +0200 | [diff] [blame] | 8559 | ++vcpu->stat.signal_exits; |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 8560 | break; |
Gleb Natapov | 09cec75 | 2009-03-23 15:11:44 +0200 | [diff] [blame] | 8561 | } |
| 8562 | if (need_resched()) { |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 8563 | srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx); |
Takuya Yoshikawa | c08ac06 | 2013-12-13 15:07:21 +0900 | [diff] [blame] | 8564 | cond_resched(); |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 8565 | vcpu->srcu_idx = srcu_read_lock(&kvm->srcu); |
Marcelo Tosatti | d769017 | 2008-09-08 15:23:48 -0300 | [diff] [blame] | 8566 | } |
| 8567 | } |
| 8568 | |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 8569 | srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8570 | |
| 8571 | return r; |
| 8572 | } |
| 8573 | |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 8574 | static inline int complete_emulated_io(struct kvm_vcpu *vcpu) |
| 8575 | { |
| 8576 | int r; |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 8577 | |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 8578 | vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu); |
Sean Christopherson | 0ce97a2 | 2018-08-23 13:56:52 -0700 | [diff] [blame] | 8579 | r = kvm_emulate_instruction(vcpu, EMULTYPE_NO_DECODE); |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 8580 | srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx); |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 8581 | return r; |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 8582 | } |
| 8583 | |
| 8584 | static int complete_emulated_pio(struct kvm_vcpu *vcpu) |
| 8585 | { |
| 8586 | BUG_ON(!vcpu->arch.pio.count); |
| 8587 | |
| 8588 | return complete_emulated_io(vcpu); |
| 8589 | } |
| 8590 | |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 8591 | /* |
| 8592 | * Implements the following, as a state machine: |
| 8593 | * |
| 8594 | * read: |
| 8595 | * for each fragment |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 8596 | * for each mmio piece in the fragment |
| 8597 | * write gpa, len |
| 8598 | * exit |
| 8599 | * copy data |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 8600 | * execute insn |
| 8601 | * |
| 8602 | * write: |
| 8603 | * for each fragment |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 8604 | * for each mmio piece in the fragment |
| 8605 | * write gpa, len |
| 8606 | * copy data |
| 8607 | * exit |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 8608 | */ |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 8609 | static int complete_emulated_mmio(struct kvm_vcpu *vcpu) |
Avi Kivity | 5287f19 | 2010-01-19 14:20:10 +0200 | [diff] [blame] | 8610 | { |
| 8611 | struct kvm_run *run = vcpu->run; |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 8612 | struct kvm_mmio_fragment *frag; |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 8613 | unsigned len; |
Avi Kivity | 5287f19 | 2010-01-19 14:20:10 +0200 | [diff] [blame] | 8614 | |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 8615 | BUG_ON(!vcpu->mmio_needed); |
Avi Kivity | 5287f19 | 2010-01-19 14:20:10 +0200 | [diff] [blame] | 8616 | |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 8617 | /* Complete previous fragment */ |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 8618 | frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment]; |
| 8619 | len = min(8u, frag->len); |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 8620 | if (!vcpu->mmio_is_write) |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 8621 | memcpy(frag->data, run->mmio.data, len); |
| 8622 | |
| 8623 | if (frag->len <= 8) { |
| 8624 | /* Switch to the next fragment. */ |
| 8625 | frag++; |
| 8626 | vcpu->mmio_cur_fragment++; |
| 8627 | } else { |
| 8628 | /* Go forward to the next mmio piece. */ |
| 8629 | frag->data += len; |
| 8630 | frag->gpa += len; |
| 8631 | frag->len -= len; |
| 8632 | } |
| 8633 | |
Andrew Honig | a08d3b3 | 2014-02-27 19:35:14 +0100 | [diff] [blame] | 8634 | if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) { |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 8635 | vcpu->mmio_needed = 0; |
Paolo Bonzini | 0912c97 | 2013-08-27 15:41:43 +0200 | [diff] [blame] | 8636 | |
| 8637 | /* FIXME: return into emulator if single-stepping. */ |
Avi Kivity | cef4dea | 2010-01-20 12:01:20 +0200 | [diff] [blame] | 8638 | if (vcpu->mmio_is_write) |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 8639 | return 1; |
| 8640 | vcpu->mmio_read_completed = 1; |
| 8641 | return complete_emulated_io(vcpu); |
Avi Kivity | 5287f19 | 2010-01-19 14:20:10 +0200 | [diff] [blame] | 8642 | } |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 8643 | |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 8644 | run->exit_reason = KVM_EXIT_MMIO; |
| 8645 | run->mmio.phys_addr = frag->gpa; |
| 8646 | if (vcpu->mmio_is_write) |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 8647 | memcpy(run->mmio.data, frag->data, min(8u, frag->len)); |
| 8648 | run->mmio.len = min(8u, frag->len); |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 8649 | run->mmio.is_write = vcpu->mmio_is_write; |
| 8650 | vcpu->arch.complete_userspace_io = complete_emulated_mmio; |
| 8651 | return 0; |
Avi Kivity | 5287f19 | 2010-01-19 14:20:10 +0200 | [diff] [blame] | 8652 | } |
| 8653 | |
Sean Christopherson | c9aef3b | 2020-01-17 11:30:49 -0800 | [diff] [blame] | 8654 | static void kvm_save_current_fpu(struct fpu *fpu) |
| 8655 | { |
| 8656 | /* |
| 8657 | * If the target FPU state is not resident in the CPU registers, just |
| 8658 | * memcpy() from current, else save CPU state directly to the target. |
| 8659 | */ |
| 8660 | if (test_thread_flag(TIF_NEED_FPU_LOAD)) |
| 8661 | memcpy(&fpu->state, ¤t->thread.fpu.state, |
| 8662 | fpu_kernel_xstate_size); |
| 8663 | else |
| 8664 | copy_fpregs_to_fpstate(fpu); |
| 8665 | } |
| 8666 | |
Sebastian Andrzej Siewior | 822f312 | 2018-09-12 15:33:45 +0200 | [diff] [blame] | 8667 | /* Swap (qemu) user FPU context for the guest FPU context. */ |
| 8668 | static void kvm_load_guest_fpu(struct kvm_vcpu *vcpu) |
| 8669 | { |
Rik van Riel | 5f409e2 | 2019-04-03 18:41:52 +0200 | [diff] [blame] | 8670 | fpregs_lock(); |
| 8671 | |
Sean Christopherson | c9aef3b | 2020-01-17 11:30:49 -0800 | [diff] [blame] | 8672 | kvm_save_current_fpu(vcpu->arch.user_fpu); |
| 8673 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8674 | /* PKRU is separately restored in kvm_x86_ops.run. */ |
Marc Orr | b666a4b | 2018-11-06 14:53:56 -0800 | [diff] [blame] | 8675 | __copy_kernel_to_fpregs(&vcpu->arch.guest_fpu->state, |
Sebastian Andrzej Siewior | 822f312 | 2018-09-12 15:33:45 +0200 | [diff] [blame] | 8676 | ~XFEATURE_MASK_PKRU); |
Rik van Riel | 5f409e2 | 2019-04-03 18:41:52 +0200 | [diff] [blame] | 8677 | |
| 8678 | fpregs_mark_activate(); |
| 8679 | fpregs_unlock(); |
| 8680 | |
Sebastian Andrzej Siewior | 822f312 | 2018-09-12 15:33:45 +0200 | [diff] [blame] | 8681 | trace_kvm_fpu(1); |
| 8682 | } |
| 8683 | |
| 8684 | /* When vcpu_run ends, restore user space FPU context. */ |
| 8685 | static void kvm_put_guest_fpu(struct kvm_vcpu *vcpu) |
| 8686 | { |
Rik van Riel | 5f409e2 | 2019-04-03 18:41:52 +0200 | [diff] [blame] | 8687 | fpregs_lock(); |
| 8688 | |
Sean Christopherson | c9aef3b | 2020-01-17 11:30:49 -0800 | [diff] [blame] | 8689 | kvm_save_current_fpu(vcpu->arch.guest_fpu); |
| 8690 | |
Wanpeng Li | d9a710e | 2019-07-22 12:26:21 +0800 | [diff] [blame] | 8691 | copy_kernel_to_fpregs(&vcpu->arch.user_fpu->state); |
Rik van Riel | 5f409e2 | 2019-04-03 18:41:52 +0200 | [diff] [blame] | 8692 | |
| 8693 | fpregs_mark_activate(); |
| 8694 | fpregs_unlock(); |
| 8695 | |
Sebastian Andrzej Siewior | 822f312 | 2018-09-12 15:33:45 +0200 | [diff] [blame] | 8696 | ++vcpu->stat.fpu_reload; |
| 8697 | trace_kvm_fpu(0); |
| 8698 | } |
| 8699 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8700 | int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run) |
| 8701 | { |
| 8702 | int r; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8703 | |
Christoffer Dall | accb757 | 2017-12-04 21:35:25 +0100 | [diff] [blame] | 8704 | vcpu_load(vcpu); |
Jan H. Schönherr | 20b7035 | 2017-11-24 22:39:01 +0100 | [diff] [blame] | 8705 | kvm_sigset_activate(vcpu); |
Peter Xu | 5663d8f | 2017-12-12 17:15:02 +0100 | [diff] [blame] | 8706 | kvm_load_guest_fpu(vcpu); |
| 8707 | |
Avi Kivity | ac9f6dc | 2008-07-06 15:48:31 +0300 | [diff] [blame] | 8708 | if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) { |
Jan H. Schönherr | 2f173d2 | 2017-09-06 18:34:06 +0200 | [diff] [blame] | 8709 | if (kvm_run->immediate_exit) { |
| 8710 | r = -EINTR; |
| 8711 | goto out; |
| 8712 | } |
Avi Kivity | ac9f6dc | 2008-07-06 15:48:31 +0300 | [diff] [blame] | 8713 | kvm_vcpu_block(vcpu); |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 8714 | kvm_apic_accept_events(vcpu); |
Radim Krčmář | 72875d8 | 2017-04-26 22:32:19 +0200 | [diff] [blame] | 8715 | kvm_clear_request(KVM_REQ_UNHALT, vcpu); |
Avi Kivity | ac9f6dc | 2008-07-06 15:48:31 +0300 | [diff] [blame] | 8716 | r = -EAGAIN; |
Jan H. Schönherr | a059500 | 2017-09-06 00:27:19 +0200 | [diff] [blame] | 8717 | if (signal_pending(current)) { |
| 8718 | r = -EINTR; |
| 8719 | vcpu->run->exit_reason = KVM_EXIT_INTR; |
| 8720 | ++vcpu->stat.signal_exits; |
| 8721 | } |
Avi Kivity | ac9f6dc | 2008-07-06 15:48:31 +0300 | [diff] [blame] | 8722 | goto out; |
| 8723 | } |
| 8724 | |
Ken Hofsass | 01643c5 | 2018-01-31 16:03:36 -0800 | [diff] [blame] | 8725 | if (vcpu->run->kvm_valid_regs & ~KVM_SYNC_X86_VALID_FIELDS) { |
| 8726 | r = -EINVAL; |
| 8727 | goto out; |
| 8728 | } |
| 8729 | |
| 8730 | if (vcpu->run->kvm_dirty_regs) { |
| 8731 | r = sync_regs(vcpu); |
| 8732 | if (r != 0) |
| 8733 | goto out; |
| 8734 | } |
| 8735 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8736 | /* re-sync apic's tpr */ |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 8737 | if (!lapic_in_kernel(vcpu)) { |
Andre Przywara | eea1cff | 2010-12-21 11:12:00 +0100 | [diff] [blame] | 8738 | if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) { |
| 8739 | r = -EINVAL; |
| 8740 | goto out; |
| 8741 | } |
| 8742 | } |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8743 | |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 8744 | if (unlikely(vcpu->arch.complete_userspace_io)) { |
| 8745 | int (*cui)(struct kvm_vcpu *) = vcpu->arch.complete_userspace_io; |
| 8746 | vcpu->arch.complete_userspace_io = NULL; |
| 8747 | r = cui(vcpu); |
| 8748 | if (r <= 0) |
Peter Xu | 5663d8f | 2017-12-12 17:15:02 +0100 | [diff] [blame] | 8749 | goto out; |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 8750 | } else |
| 8751 | WARN_ON(vcpu->arch.pio.count || vcpu->mmio_needed); |
Avi Kivity | 5287f19 | 2010-01-19 14:20:10 +0200 | [diff] [blame] | 8752 | |
Paolo Bonzini | 460df4c | 2017-02-08 11:50:15 +0100 | [diff] [blame] | 8753 | if (kvm_run->immediate_exit) |
| 8754 | r = -EINTR; |
| 8755 | else |
| 8756 | r = vcpu_run(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8757 | |
| 8758 | out: |
Peter Xu | 5663d8f | 2017-12-12 17:15:02 +0100 | [diff] [blame] | 8759 | kvm_put_guest_fpu(vcpu); |
Ken Hofsass | 01643c5 | 2018-01-31 16:03:36 -0800 | [diff] [blame] | 8760 | if (vcpu->run->kvm_valid_regs) |
| 8761 | store_regs(vcpu); |
Marcelo Tosatti | f1d86e4 | 2010-05-03 23:04:27 -0300 | [diff] [blame] | 8762 | post_kvm_run_save(vcpu); |
Jan H. Schönherr | 20b7035 | 2017-11-24 22:39:01 +0100 | [diff] [blame] | 8763 | kvm_sigset_deactivate(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8764 | |
Christoffer Dall | accb757 | 2017-12-04 21:35:25 +0100 | [diff] [blame] | 8765 | vcpu_put(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8766 | return r; |
| 8767 | } |
| 8768 | |
Ken Hofsass | 01643c5 | 2018-01-31 16:03:36 -0800 | [diff] [blame] | 8769 | static void __get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs) |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8770 | { |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 8771 | if (vcpu->arch.emulate_regs_need_sync_to_vcpu) { |
| 8772 | /* |
| 8773 | * We are here if userspace calls get_regs() in the middle of |
| 8774 | * instruction emulation. Registers state needs to be copied |
Guo Chao | 4a96998 | 2012-06-28 15:17:27 +0800 | [diff] [blame] | 8775 | * back from emulation context to vcpu. Userspace shouldn't do |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 8776 | * that usually, but some bad designed PV devices (vmware |
| 8777 | * backdoor interface) need this to work |
| 8778 | */ |
Sean Christopherson | c9b8b07 | 2020-02-18 15:29:48 -0800 | [diff] [blame] | 8779 | emulator_writeback_register_cache(vcpu->arch.emulate_ctxt); |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 8780 | vcpu->arch.emulate_regs_need_sync_to_vcpu = false; |
| 8781 | } |
Sean Christopherson | de3cd11 | 2019-04-30 10:36:17 -0700 | [diff] [blame] | 8782 | regs->rax = kvm_rax_read(vcpu); |
| 8783 | regs->rbx = kvm_rbx_read(vcpu); |
| 8784 | regs->rcx = kvm_rcx_read(vcpu); |
| 8785 | regs->rdx = kvm_rdx_read(vcpu); |
| 8786 | regs->rsi = kvm_rsi_read(vcpu); |
| 8787 | regs->rdi = kvm_rdi_read(vcpu); |
Paolo Bonzini | e9c16c7 | 2019-04-30 22:07:26 +0200 | [diff] [blame] | 8788 | regs->rsp = kvm_rsp_read(vcpu); |
Sean Christopherson | de3cd11 | 2019-04-30 10:36:17 -0700 | [diff] [blame] | 8789 | regs->rbp = kvm_rbp_read(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8790 | #ifdef CONFIG_X86_64 |
Sean Christopherson | de3cd11 | 2019-04-30 10:36:17 -0700 | [diff] [blame] | 8791 | regs->r8 = kvm_r8_read(vcpu); |
| 8792 | regs->r9 = kvm_r9_read(vcpu); |
| 8793 | regs->r10 = kvm_r10_read(vcpu); |
| 8794 | regs->r11 = kvm_r11_read(vcpu); |
| 8795 | regs->r12 = kvm_r12_read(vcpu); |
| 8796 | regs->r13 = kvm_r13_read(vcpu); |
| 8797 | regs->r14 = kvm_r14_read(vcpu); |
| 8798 | regs->r15 = kvm_r15_read(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8799 | #endif |
| 8800 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 8801 | regs->rip = kvm_rip_read(vcpu); |
Jan Kiszka | 91586a3 | 2009-10-05 13:07:21 +0200 | [diff] [blame] | 8802 | regs->rflags = kvm_get_rflags(vcpu); |
Ken Hofsass | 01643c5 | 2018-01-31 16:03:36 -0800 | [diff] [blame] | 8803 | } |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8804 | |
Ken Hofsass | 01643c5 | 2018-01-31 16:03:36 -0800 | [diff] [blame] | 8805 | int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs) |
| 8806 | { |
| 8807 | vcpu_load(vcpu); |
| 8808 | __get_regs(vcpu, regs); |
Christoffer Dall | 1fc9b76 | 2017-12-04 21:35:26 +0100 | [diff] [blame] | 8809 | vcpu_put(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8810 | return 0; |
| 8811 | } |
| 8812 | |
Ken Hofsass | 01643c5 | 2018-01-31 16:03:36 -0800 | [diff] [blame] | 8813 | static void __set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs) |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8814 | { |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 8815 | vcpu->arch.emulate_regs_need_sync_from_vcpu = true; |
| 8816 | vcpu->arch.emulate_regs_need_sync_to_vcpu = false; |
| 8817 | |
Sean Christopherson | de3cd11 | 2019-04-30 10:36:17 -0700 | [diff] [blame] | 8818 | kvm_rax_write(vcpu, regs->rax); |
| 8819 | kvm_rbx_write(vcpu, regs->rbx); |
| 8820 | kvm_rcx_write(vcpu, regs->rcx); |
| 8821 | kvm_rdx_write(vcpu, regs->rdx); |
| 8822 | kvm_rsi_write(vcpu, regs->rsi); |
| 8823 | kvm_rdi_write(vcpu, regs->rdi); |
Paolo Bonzini | e9c16c7 | 2019-04-30 22:07:26 +0200 | [diff] [blame] | 8824 | kvm_rsp_write(vcpu, regs->rsp); |
Sean Christopherson | de3cd11 | 2019-04-30 10:36:17 -0700 | [diff] [blame] | 8825 | kvm_rbp_write(vcpu, regs->rbp); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8826 | #ifdef CONFIG_X86_64 |
Sean Christopherson | de3cd11 | 2019-04-30 10:36:17 -0700 | [diff] [blame] | 8827 | kvm_r8_write(vcpu, regs->r8); |
| 8828 | kvm_r9_write(vcpu, regs->r9); |
| 8829 | kvm_r10_write(vcpu, regs->r10); |
| 8830 | kvm_r11_write(vcpu, regs->r11); |
| 8831 | kvm_r12_write(vcpu, regs->r12); |
| 8832 | kvm_r13_write(vcpu, regs->r13); |
| 8833 | kvm_r14_write(vcpu, regs->r14); |
| 8834 | kvm_r15_write(vcpu, regs->r15); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8835 | #endif |
| 8836 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 8837 | kvm_rip_write(vcpu, regs->rip); |
Wanpeng Li | d73235d | 2017-12-07 00:30:08 -0800 | [diff] [blame] | 8838 | kvm_set_rflags(vcpu, regs->rflags | X86_EFLAGS_FIXED); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8839 | |
Jan Kiszka | b4f14ab | 2008-04-30 17:59:04 +0200 | [diff] [blame] | 8840 | vcpu->arch.exception.pending = false; |
| 8841 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 8842 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Ken Hofsass | 01643c5 | 2018-01-31 16:03:36 -0800 | [diff] [blame] | 8843 | } |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 8844 | |
Ken Hofsass | 01643c5 | 2018-01-31 16:03:36 -0800 | [diff] [blame] | 8845 | int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs) |
| 8846 | { |
| 8847 | vcpu_load(vcpu); |
| 8848 | __set_regs(vcpu, regs); |
Christoffer Dall | 875656f | 2017-12-04 21:35:27 +0100 | [diff] [blame] | 8849 | vcpu_put(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8850 | return 0; |
| 8851 | } |
| 8852 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8853 | void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l) |
| 8854 | { |
| 8855 | struct kvm_segment cs; |
| 8856 | |
Guillaume Thouvenin | 3e6e0aa | 2008-05-27 10:18:46 +0200 | [diff] [blame] | 8857 | kvm_get_segment(vcpu, &cs, VCPU_SREG_CS); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8858 | *db = cs.db; |
| 8859 | *l = cs.l; |
| 8860 | } |
| 8861 | EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits); |
| 8862 | |
Ken Hofsass | 01643c5 | 2018-01-31 16:03:36 -0800 | [diff] [blame] | 8863 | static void __get_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs) |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8864 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 8865 | struct desc_ptr dt; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8866 | |
Guillaume Thouvenin | 3e6e0aa | 2008-05-27 10:18:46 +0200 | [diff] [blame] | 8867 | kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS); |
| 8868 | kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS); |
| 8869 | kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES); |
| 8870 | kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS); |
| 8871 | kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS); |
| 8872 | kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8873 | |
Guillaume Thouvenin | 3e6e0aa | 2008-05-27 10:18:46 +0200 | [diff] [blame] | 8874 | kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR); |
| 8875 | kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8876 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8877 | kvm_x86_ops.get_idt(vcpu, &dt); |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 8878 | sregs->idt.limit = dt.size; |
| 8879 | sregs->idt.base = dt.address; |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 8880 | kvm_x86_ops.get_gdt(vcpu, &dt); |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 8881 | sregs->gdt.limit = dt.size; |
| 8882 | sregs->gdt.base = dt.address; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8883 | |
Avi Kivity | 4d4ec08 | 2009-12-29 18:07:30 +0200 | [diff] [blame] | 8884 | sregs->cr0 = kvm_read_cr0(vcpu); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 8885 | sregs->cr2 = vcpu->arch.cr2; |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 8886 | sregs->cr3 = kvm_read_cr3(vcpu); |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 8887 | sregs->cr4 = kvm_read_cr4(vcpu); |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 8888 | sregs->cr8 = kvm_get_cr8(vcpu); |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 8889 | sregs->efer = vcpu->arch.efer; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8890 | sregs->apic_base = kvm_get_apic_base(vcpu); |
| 8891 | |
Jordan Borgner | 0e96f31 | 2018-10-28 12:58:28 +0000 | [diff] [blame] | 8892 | memset(sregs->interrupt_bitmap, 0, sizeof(sregs->interrupt_bitmap)); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8893 | |
Liran Alon | 04140b4 | 2018-03-23 03:01:31 +0300 | [diff] [blame] | 8894 | if (vcpu->arch.interrupt.injected && !vcpu->arch.interrupt.soft) |
Gleb Natapov | 14d0bc1 | 2009-04-21 17:45:11 +0300 | [diff] [blame] | 8895 | set_bit(vcpu->arch.interrupt.nr, |
| 8896 | (unsigned long *)sregs->interrupt_bitmap); |
Ken Hofsass | 01643c5 | 2018-01-31 16:03:36 -0800 | [diff] [blame] | 8897 | } |
Gleb Natapov | 16d7a19 | 2009-04-21 17:45:10 +0300 | [diff] [blame] | 8898 | |
Ken Hofsass | 01643c5 | 2018-01-31 16:03:36 -0800 | [diff] [blame] | 8899 | int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu, |
| 8900 | struct kvm_sregs *sregs) |
| 8901 | { |
| 8902 | vcpu_load(vcpu); |
| 8903 | __get_sregs(vcpu, sregs); |
Christoffer Dall | bcdec41 | 2017-12-04 21:35:28 +0100 | [diff] [blame] | 8904 | vcpu_put(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8905 | return 0; |
| 8906 | } |
| 8907 | |
Marcelo Tosatti | 62d9f0d | 2008-04-11 13:24:45 -0300 | [diff] [blame] | 8908 | int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu, |
| 8909 | struct kvm_mp_state *mp_state) |
| 8910 | { |
Christoffer Dall | fd23256 | 2017-12-04 21:35:30 +0100 | [diff] [blame] | 8911 | vcpu_load(vcpu); |
Sean Christopherson | f958bd2 | 2019-12-09 12:19:31 -0800 | [diff] [blame] | 8912 | if (kvm_mpx_supported()) |
| 8913 | kvm_load_guest_fpu(vcpu); |
Christoffer Dall | fd23256 | 2017-12-04 21:35:30 +0100 | [diff] [blame] | 8914 | |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 8915 | kvm_apic_accept_events(vcpu); |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 8916 | if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED && |
| 8917 | vcpu->arch.pv.pv_unhalted) |
| 8918 | mp_state->mp_state = KVM_MP_STATE_RUNNABLE; |
| 8919 | else |
| 8920 | mp_state->mp_state = vcpu->arch.mp_state; |
| 8921 | |
Sean Christopherson | f958bd2 | 2019-12-09 12:19:31 -0800 | [diff] [blame] | 8922 | if (kvm_mpx_supported()) |
| 8923 | kvm_put_guest_fpu(vcpu); |
Christoffer Dall | fd23256 | 2017-12-04 21:35:30 +0100 | [diff] [blame] | 8924 | vcpu_put(vcpu); |
Marcelo Tosatti | 62d9f0d | 2008-04-11 13:24:45 -0300 | [diff] [blame] | 8925 | return 0; |
| 8926 | } |
| 8927 | |
| 8928 | int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu, |
| 8929 | struct kvm_mp_state *mp_state) |
| 8930 | { |
Christoffer Dall | e83dff5 | 2017-12-04 21:35:31 +0100 | [diff] [blame] | 8931 | int ret = -EINVAL; |
| 8932 | |
| 8933 | vcpu_load(vcpu); |
| 8934 | |
Paolo Bonzini | bce87cc | 2016-01-08 13:48:51 +0100 | [diff] [blame] | 8935 | if (!lapic_in_kernel(vcpu) && |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 8936 | mp_state->mp_state != KVM_MP_STATE_RUNNABLE) |
Christoffer Dall | e83dff5 | 2017-12-04 21:35:31 +0100 | [diff] [blame] | 8937 | goto out; |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 8938 | |
Liran Alon | 27cbe7d | 2019-11-11 11:16:40 +0200 | [diff] [blame] | 8939 | /* |
| 8940 | * KVM_MP_STATE_INIT_RECEIVED means the processor is in |
| 8941 | * INIT state; latched init should be reported using |
| 8942 | * KVM_SET_VCPU_EVENTS, so reject it here. |
| 8943 | */ |
| 8944 | if ((kvm_vcpu_latch_init(vcpu) || vcpu->arch.smi_pending) && |
David Hildenbrand | 28bf288 | 2017-03-23 11:46:03 +0100 | [diff] [blame] | 8945 | (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED || |
| 8946 | mp_state->mp_state == KVM_MP_STATE_INIT_RECEIVED)) |
Christoffer Dall | e83dff5 | 2017-12-04 21:35:31 +0100 | [diff] [blame] | 8947 | goto out; |
David Hildenbrand | 28bf288 | 2017-03-23 11:46:03 +0100 | [diff] [blame] | 8948 | |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 8949 | if (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED) { |
| 8950 | vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED; |
| 8951 | set_bit(KVM_APIC_SIPI, &vcpu->arch.apic->pending_events); |
| 8952 | } else |
| 8953 | vcpu->arch.mp_state = mp_state->mp_state; |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 8954 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Christoffer Dall | e83dff5 | 2017-12-04 21:35:31 +0100 | [diff] [blame] | 8955 | |
| 8956 | ret = 0; |
| 8957 | out: |
| 8958 | vcpu_put(vcpu); |
| 8959 | return ret; |
Marcelo Tosatti | 62d9f0d | 2008-04-11 13:24:45 -0300 | [diff] [blame] | 8960 | } |
| 8961 | |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 8962 | int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index, |
| 8963 | int reason, bool has_error_code, u32 error_code) |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8964 | { |
Sean Christopherson | c9b8b07 | 2020-02-18 15:29:48 -0800 | [diff] [blame] | 8965 | struct x86_emulate_ctxt *ctxt = vcpu->arch.emulate_ctxt; |
Mohammed Gamal | 8ec4722 | 2010-08-16 00:47:01 +0300 | [diff] [blame] | 8966 | int ret; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 8967 | |
Mohammed Gamal | 8ec4722 | 2010-08-16 00:47:01 +0300 | [diff] [blame] | 8968 | init_emulate_ctxt(vcpu); |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 8969 | |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 8970 | ret = emulator_task_switch(ctxt, tss_selector, idt_index, reason, |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 8971 | has_error_code, error_code); |
Sean Christopherson | 1051778 | 2019-08-27 14:40:35 -0700 | [diff] [blame] | 8972 | if (ret) { |
| 8973 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 8974 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION; |
| 8975 | vcpu->run->internal.ndata = 0; |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 8976 | return 0; |
Sean Christopherson | 1051778 | 2019-08-27 14:40:35 -0700 | [diff] [blame] | 8977 | } |
Gleb Natapov | c697518 | 2010-02-18 12:15:01 +0200 | [diff] [blame] | 8978 | |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 8979 | kvm_rip_write(vcpu, ctxt->eip); |
| 8980 | kvm_set_rflags(vcpu, ctxt->eflags); |
Sean Christopherson | 60fc3d0 | 2019-08-27 14:40:38 -0700 | [diff] [blame] | 8981 | return 1; |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 8982 | } |
| 8983 | EXPORT_SYMBOL_GPL(kvm_task_switch); |
| 8984 | |
Peng Hao | 3140c15 | 2018-04-02 09:15:32 +0800 | [diff] [blame] | 8985 | static int kvm_valid_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs) |
Lan Tianyu | f298103 | 2017-12-14 03:01:52 -0500 | [diff] [blame] | 8986 | { |
Tianyu Lan | 37b9595 | 2018-01-16 17:34:07 +0800 | [diff] [blame] | 8987 | if ((sregs->efer & EFER_LME) && (sregs->cr0 & X86_CR0_PG)) { |
Lan Tianyu | f298103 | 2017-12-14 03:01:52 -0500 | [diff] [blame] | 8988 | /* |
| 8989 | * When EFER.LME and CR0.PG are set, the processor is in |
| 8990 | * 64-bit mode (though maybe in a 32-bit code segment). |
| 8991 | * CR4.PAE and EFER.LMA must be set. |
| 8992 | */ |
Tianyu Lan | 37b9595 | 2018-01-16 17:34:07 +0800 | [diff] [blame] | 8993 | if (!(sregs->cr4 & X86_CR4_PAE) |
Lan Tianyu | f298103 | 2017-12-14 03:01:52 -0500 | [diff] [blame] | 8994 | || !(sregs->efer & EFER_LMA)) |
| 8995 | return -EINVAL; |
| 8996 | } else { |
| 8997 | /* |
| 8998 | * Not in 64-bit mode: EFER.LMA is clear and the code |
| 8999 | * segment cannot be 64-bit. |
| 9000 | */ |
| 9001 | if (sregs->efer & EFER_LMA || sregs->cs.l) |
| 9002 | return -EINVAL; |
| 9003 | } |
| 9004 | |
Wanpeng Li | 3ca9419 | 2019-09-18 17:50:10 +0800 | [diff] [blame] | 9005 | return kvm_valid_cr4(vcpu, sregs->cr4); |
Lan Tianyu | f298103 | 2017-12-14 03:01:52 -0500 | [diff] [blame] | 9006 | } |
| 9007 | |
Ken Hofsass | 01643c5 | 2018-01-31 16:03:36 -0800 | [diff] [blame] | 9008 | static int __set_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs) |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 9009 | { |
Jan Kiszka | 58cb628 | 2014-01-24 16:48:44 +0100 | [diff] [blame] | 9010 | struct msr_data apic_base_msr; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 9011 | int mmu_reset_needed = 0; |
Wei Huang | c4d2188 | 2018-05-01 09:49:54 -0500 | [diff] [blame] | 9012 | int cpuid_update_needed = 0; |
Xiao Guangrong | 63f42e0 | 2011-01-12 15:39:18 +0800 | [diff] [blame] | 9013 | int pending_vec, max_bits, idx; |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 9014 | struct desc_ptr dt; |
Christoffer Dall | b4ef9d4 | 2017-12-04 21:35:29 +0100 | [diff] [blame] | 9015 | int ret = -EINVAL; |
| 9016 | |
Lan Tianyu | f298103 | 2017-12-14 03:01:52 -0500 | [diff] [blame] | 9017 | if (kvm_valid_sregs(vcpu, sregs)) |
Eric Biggers | 8dbfb2b | 2017-12-20 16:24:27 -0800 | [diff] [blame] | 9018 | goto out; |
Lan Tianyu | f298103 | 2017-12-14 03:01:52 -0500 | [diff] [blame] | 9019 | |
Jim Mattson | d380228 | 2017-08-10 10:14:13 -0700 | [diff] [blame] | 9020 | apic_base_msr.data = sregs->apic_base; |
| 9021 | apic_base_msr.host_initiated = true; |
| 9022 | if (kvm_set_apic_base(vcpu, &apic_base_msr)) |
Christoffer Dall | b4ef9d4 | 2017-12-04 21:35:29 +0100 | [diff] [blame] | 9023 | goto out; |
Petr Matousek | 6d1068b | 2012-11-06 19:24:07 +0100 | [diff] [blame] | 9024 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 9025 | dt.size = sregs->idt.limit; |
| 9026 | dt.address = sregs->idt.base; |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 9027 | kvm_x86_ops.set_idt(vcpu, &dt); |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 9028 | dt.size = sregs->gdt.limit; |
| 9029 | dt.address = sregs->gdt.base; |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 9030 | kvm_x86_ops.set_gdt(vcpu, &dt); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 9031 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 9032 | vcpu->arch.cr2 = sregs->cr2; |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 9033 | mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3; |
Jan Kiszka | dc7e795 | 2009-07-01 20:52:03 +0200 | [diff] [blame] | 9034 | vcpu->arch.cr3 = sregs->cr3; |
Sean Christopherson | cb3c1e2 | 2019-09-27 14:45:22 -0700 | [diff] [blame] | 9035 | kvm_register_mark_available(vcpu, VCPU_EXREG_CR3); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 9036 | |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 9037 | kvm_set_cr8(vcpu, sregs->cr8); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 9038 | |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 9039 | mmu_reset_needed |= vcpu->arch.efer != sregs->efer; |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 9040 | kvm_x86_ops.set_efer(vcpu, sregs->efer); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 9041 | |
Avi Kivity | 4d4ec08 | 2009-12-29 18:07:30 +0200 | [diff] [blame] | 9042 | mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0; |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 9043 | kvm_x86_ops.set_cr0(vcpu, sregs->cr0); |
Paul Knowles | d730616 | 2008-02-06 11:02:35 +0000 | [diff] [blame] | 9044 | vcpu->arch.cr0 = sregs->cr0; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 9045 | |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 9046 | mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4; |
Wei Huang | c4d2188 | 2018-05-01 09:49:54 -0500 | [diff] [blame] | 9047 | cpuid_update_needed |= ((kvm_read_cr4(vcpu) ^ sregs->cr4) & |
| 9048 | (X86_CR4_OSXSAVE | X86_CR4_PKE)); |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 9049 | kvm_x86_ops.set_cr4(vcpu, sregs->cr4); |
Wei Huang | c4d2188 | 2018-05-01 09:49:54 -0500 | [diff] [blame] | 9050 | if (cpuid_update_needed) |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 9051 | kvm_update_cpuid(vcpu); |
Xiao Guangrong | 63f42e0 | 2011-01-12 15:39:18 +0800 | [diff] [blame] | 9052 | |
| 9053 | idx = srcu_read_lock(&vcpu->kvm->srcu); |
Paolo Bonzini | bf03d4f | 2019-06-06 18:52:44 +0200 | [diff] [blame] | 9054 | if (is_pae_paging(vcpu)) { |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 9055 | load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu)); |
Marcelo Tosatti | 7c93be44 | 2009-10-26 16:48:33 -0200 | [diff] [blame] | 9056 | mmu_reset_needed = 1; |
| 9057 | } |
Xiao Guangrong | 63f42e0 | 2011-01-12 15:39:18 +0800 | [diff] [blame] | 9058 | srcu_read_unlock(&vcpu->kvm->srcu, idx); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 9059 | |
| 9060 | if (mmu_reset_needed) |
| 9061 | kvm_mmu_reset_context(vcpu); |
| 9062 | |
Michael S. Tsirkin | a50abc3 | 2012-09-05 20:00:52 +0300 | [diff] [blame] | 9063 | max_bits = KVM_NR_INTERRUPTS; |
Gleb Natapov | 923c61b | 2009-05-11 13:35:48 +0300 | [diff] [blame] | 9064 | pending_vec = find_first_bit( |
| 9065 | (const unsigned long *)sregs->interrupt_bitmap, max_bits); |
| 9066 | if (pending_vec < max_bits) { |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 9067 | kvm_queue_interrupt(vcpu, pending_vec, false); |
Gleb Natapov | 923c61b | 2009-05-11 13:35:48 +0300 | [diff] [blame] | 9068 | pr_debug("Set back pending irq %d\n", pending_vec); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 9069 | } |
| 9070 | |
Guillaume Thouvenin | 3e6e0aa | 2008-05-27 10:18:46 +0200 | [diff] [blame] | 9071 | kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS); |
| 9072 | kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS); |
| 9073 | kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES); |
| 9074 | kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS); |
| 9075 | kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS); |
| 9076 | kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 9077 | |
Guillaume Thouvenin | 3e6e0aa | 2008-05-27 10:18:46 +0200 | [diff] [blame] | 9078 | kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR); |
| 9079 | kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 9080 | |
Mikhail Ershov | 5f0269f | 2009-08-03 14:58:25 +0300 | [diff] [blame] | 9081 | update_cr8_intercept(vcpu); |
| 9082 | |
Marcelo Tosatti | 9c3e4aa | 2008-09-10 16:40:55 -0300 | [diff] [blame] | 9083 | /* Older userspace won't unhalt the vcpu on reset. */ |
Gleb Natapov | c5af89b | 2009-06-09 15:56:26 +0300 | [diff] [blame] | 9084 | if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 && |
Marcelo Tosatti | 9c3e4aa | 2008-09-10 16:40:55 -0300 | [diff] [blame] | 9085 | sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 && |
Avi Kivity | 3eeb328 | 2010-01-21 15:31:48 +0200 | [diff] [blame] | 9086 | !is_protmode(vcpu)) |
Marcelo Tosatti | 9c3e4aa | 2008-09-10 16:40:55 -0300 | [diff] [blame] | 9087 | vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE; |
| 9088 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 9089 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 9090 | |
Christoffer Dall | b4ef9d4 | 2017-12-04 21:35:29 +0100 | [diff] [blame] | 9091 | ret = 0; |
| 9092 | out: |
Ken Hofsass | 01643c5 | 2018-01-31 16:03:36 -0800 | [diff] [blame] | 9093 | return ret; |
| 9094 | } |
| 9095 | |
| 9096 | int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu, |
| 9097 | struct kvm_sregs *sregs) |
| 9098 | { |
| 9099 | int ret; |
| 9100 | |
| 9101 | vcpu_load(vcpu); |
| 9102 | ret = __set_sregs(vcpu, sregs); |
Christoffer Dall | b4ef9d4 | 2017-12-04 21:35:29 +0100 | [diff] [blame] | 9103 | vcpu_put(vcpu); |
| 9104 | return ret; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 9105 | } |
| 9106 | |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 9107 | int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu, |
| 9108 | struct kvm_guest_debug *dbg) |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 9109 | { |
Jan Kiszka | 355be0b | 2009-10-03 00:31:21 +0200 | [diff] [blame] | 9110 | unsigned long rflags; |
Jan Kiszka | ae675ef | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 9111 | int i, r; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 9112 | |
Christoffer Dall | 66b5656 | 2017-12-04 21:35:33 +0100 | [diff] [blame] | 9113 | vcpu_load(vcpu); |
| 9114 | |
Jan Kiszka | 4f926bf2 | 2009-10-30 12:46:59 +0100 | [diff] [blame] | 9115 | if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) { |
| 9116 | r = -EBUSY; |
| 9117 | if (vcpu->arch.exception.pending) |
Avi Kivity | 2122ff5 | 2010-05-13 11:25:04 +0300 | [diff] [blame] | 9118 | goto out; |
Jan Kiszka | 4f926bf2 | 2009-10-30 12:46:59 +0100 | [diff] [blame] | 9119 | if (dbg->control & KVM_GUESTDBG_INJECT_DB) |
| 9120 | kvm_queue_exception(vcpu, DB_VECTOR); |
| 9121 | else |
| 9122 | kvm_queue_exception(vcpu, BP_VECTOR); |
| 9123 | } |
| 9124 | |
Jan Kiszka | 91586a3 | 2009-10-05 13:07:21 +0200 | [diff] [blame] | 9125 | /* |
| 9126 | * Read rflags as long as potentially injected trace flags are still |
| 9127 | * filtered out. |
| 9128 | */ |
| 9129 | rflags = kvm_get_rflags(vcpu); |
Jan Kiszka | 355be0b | 2009-10-03 00:31:21 +0200 | [diff] [blame] | 9130 | |
| 9131 | vcpu->guest_debug = dbg->control; |
| 9132 | if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE)) |
| 9133 | vcpu->guest_debug = 0; |
| 9134 | |
| 9135 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) { |
Jan Kiszka | ae675ef | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 9136 | for (i = 0; i < KVM_NR_DB_REGS; ++i) |
| 9137 | vcpu->arch.eff_db[i] = dbg->arch.debugreg[i]; |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 9138 | vcpu->arch.guest_debug_dr7 = dbg->arch.debugreg[7]; |
Jan Kiszka | ae675ef | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 9139 | } else { |
| 9140 | for (i = 0; i < KVM_NR_DB_REGS; i++) |
| 9141 | vcpu->arch.eff_db[i] = vcpu->arch.db[i]; |
Jan Kiszka | ae675ef | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 9142 | } |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 9143 | kvm_update_dr7(vcpu); |
Jan Kiszka | ae675ef | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 9144 | |
Jan Kiszka | f92653e | 2010-02-23 17:47:55 +0100 | [diff] [blame] | 9145 | if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) |
| 9146 | vcpu->arch.singlestep_rip = kvm_rip_read(vcpu) + |
| 9147 | get_segment_base(vcpu, VCPU_SREG_CS); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 9148 | |
Jan Kiszka | 91586a3 | 2009-10-05 13:07:21 +0200 | [diff] [blame] | 9149 | /* |
| 9150 | * Trigger an rflags update that will inject or remove the trace |
| 9151 | * flags. |
| 9152 | */ |
| 9153 | kvm_set_rflags(vcpu, rflags); |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 9154 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 9155 | kvm_x86_ops.update_bp_intercept(vcpu); |
Jan Kiszka | 355be0b | 2009-10-03 00:31:21 +0200 | [diff] [blame] | 9156 | |
Jan Kiszka | 4f926bf2 | 2009-10-30 12:46:59 +0100 | [diff] [blame] | 9157 | r = 0; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 9158 | |
Avi Kivity | 2122ff5 | 2010-05-13 11:25:04 +0300 | [diff] [blame] | 9159 | out: |
Christoffer Dall | 66b5656 | 2017-12-04 21:35:33 +0100 | [diff] [blame] | 9160 | vcpu_put(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 9161 | return r; |
| 9162 | } |
| 9163 | |
| 9164 | /* |
Zhang Xiantao | 8b00679 | 2007-11-16 13:05:55 +0800 | [diff] [blame] | 9165 | * Translate a guest virtual address to a guest physical address. |
| 9166 | */ |
| 9167 | int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu, |
| 9168 | struct kvm_translation *tr) |
| 9169 | { |
| 9170 | unsigned long vaddr = tr->linear_address; |
| 9171 | gpa_t gpa; |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 9172 | int idx; |
Zhang Xiantao | 8b00679 | 2007-11-16 13:05:55 +0800 | [diff] [blame] | 9173 | |
Christoffer Dall | 1da5b61 | 2017-12-04 21:35:32 +0100 | [diff] [blame] | 9174 | vcpu_load(vcpu); |
| 9175 | |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 9176 | idx = srcu_read_lock(&vcpu->kvm->srcu); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 9177 | gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL); |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 9178 | srcu_read_unlock(&vcpu->kvm->srcu, idx); |
Zhang Xiantao | 8b00679 | 2007-11-16 13:05:55 +0800 | [diff] [blame] | 9179 | tr->physical_address = gpa; |
| 9180 | tr->valid = gpa != UNMAPPED_GVA; |
| 9181 | tr->writeable = 1; |
| 9182 | tr->usermode = 0; |
Zhang Xiantao | 8b00679 | 2007-11-16 13:05:55 +0800 | [diff] [blame] | 9183 | |
Christoffer Dall | 1da5b61 | 2017-12-04 21:35:32 +0100 | [diff] [blame] | 9184 | vcpu_put(vcpu); |
Zhang Xiantao | 8b00679 | 2007-11-16 13:05:55 +0800 | [diff] [blame] | 9185 | return 0; |
| 9186 | } |
| 9187 | |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 9188 | int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu) |
| 9189 | { |
Christoffer Dall | 1393123 | 2017-12-04 21:35:34 +0100 | [diff] [blame] | 9190 | struct fxregs_state *fxsave; |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 9191 | |
Christoffer Dall | 1393123 | 2017-12-04 21:35:34 +0100 | [diff] [blame] | 9192 | vcpu_load(vcpu); |
| 9193 | |
Marc Orr | b666a4b | 2018-11-06 14:53:56 -0800 | [diff] [blame] | 9194 | fxsave = &vcpu->arch.guest_fpu->state.fxsave; |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 9195 | memcpy(fpu->fpr, fxsave->st_space, 128); |
| 9196 | fpu->fcw = fxsave->cwd; |
| 9197 | fpu->fsw = fxsave->swd; |
| 9198 | fpu->ftwx = fxsave->twd; |
| 9199 | fpu->last_opcode = fxsave->fop; |
| 9200 | fpu->last_ip = fxsave->rip; |
| 9201 | fpu->last_dp = fxsave->rdp; |
Jordan Borgner | 0e96f31 | 2018-10-28 12:58:28 +0000 | [diff] [blame] | 9202 | memcpy(fpu->xmm, fxsave->xmm_space, sizeof(fxsave->xmm_space)); |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 9203 | |
Christoffer Dall | 1393123 | 2017-12-04 21:35:34 +0100 | [diff] [blame] | 9204 | vcpu_put(vcpu); |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 9205 | return 0; |
| 9206 | } |
| 9207 | |
| 9208 | int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu) |
| 9209 | { |
Christoffer Dall | 6a96bc7 | 2017-12-04 21:35:35 +0100 | [diff] [blame] | 9210 | struct fxregs_state *fxsave; |
| 9211 | |
| 9212 | vcpu_load(vcpu); |
| 9213 | |
Marc Orr | b666a4b | 2018-11-06 14:53:56 -0800 | [diff] [blame] | 9214 | fxsave = &vcpu->arch.guest_fpu->state.fxsave; |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 9215 | |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 9216 | memcpy(fxsave->st_space, fpu->fpr, 128); |
| 9217 | fxsave->cwd = fpu->fcw; |
| 9218 | fxsave->swd = fpu->fsw; |
| 9219 | fxsave->twd = fpu->ftwx; |
| 9220 | fxsave->fop = fpu->last_opcode; |
| 9221 | fxsave->rip = fpu->last_ip; |
| 9222 | fxsave->rdp = fpu->last_dp; |
Jordan Borgner | 0e96f31 | 2018-10-28 12:58:28 +0000 | [diff] [blame] | 9223 | memcpy(fxsave->xmm_space, fpu->xmm, sizeof(fxsave->xmm_space)); |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 9224 | |
Christoffer Dall | 6a96bc7 | 2017-12-04 21:35:35 +0100 | [diff] [blame] | 9225 | vcpu_put(vcpu); |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 9226 | return 0; |
| 9227 | } |
| 9228 | |
Ken Hofsass | 01643c5 | 2018-01-31 16:03:36 -0800 | [diff] [blame] | 9229 | static void store_regs(struct kvm_vcpu *vcpu) |
| 9230 | { |
| 9231 | BUILD_BUG_ON(sizeof(struct kvm_sync_regs) > SYNC_REGS_SIZE_BYTES); |
| 9232 | |
| 9233 | if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_REGS) |
| 9234 | __get_regs(vcpu, &vcpu->run->s.regs.regs); |
| 9235 | |
| 9236 | if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_SREGS) |
| 9237 | __get_sregs(vcpu, &vcpu->run->s.regs.sregs); |
| 9238 | |
| 9239 | if (vcpu->run->kvm_valid_regs & KVM_SYNC_X86_EVENTS) |
| 9240 | kvm_vcpu_ioctl_x86_get_vcpu_events( |
| 9241 | vcpu, &vcpu->run->s.regs.events); |
| 9242 | } |
| 9243 | |
| 9244 | static int sync_regs(struct kvm_vcpu *vcpu) |
| 9245 | { |
| 9246 | if (vcpu->run->kvm_dirty_regs & ~KVM_SYNC_X86_VALID_FIELDS) |
| 9247 | return -EINVAL; |
| 9248 | |
| 9249 | if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_REGS) { |
| 9250 | __set_regs(vcpu, &vcpu->run->s.regs.regs); |
| 9251 | vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_REGS; |
| 9252 | } |
| 9253 | if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_SREGS) { |
| 9254 | if (__set_sregs(vcpu, &vcpu->run->s.regs.sregs)) |
| 9255 | return -EINVAL; |
| 9256 | vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_SREGS; |
| 9257 | } |
| 9258 | if (vcpu->run->kvm_dirty_regs & KVM_SYNC_X86_EVENTS) { |
| 9259 | if (kvm_vcpu_ioctl_x86_set_vcpu_events( |
| 9260 | vcpu, &vcpu->run->s.regs.events)) |
| 9261 | return -EINVAL; |
| 9262 | vcpu->run->kvm_dirty_regs &= ~KVM_SYNC_X86_EVENTS; |
| 9263 | } |
| 9264 | |
| 9265 | return 0; |
| 9266 | } |
| 9267 | |
Ingo Molnar | 0ee6a51 | 2015-04-27 06:58:22 +0200 | [diff] [blame] | 9268 | static void fx_init(struct kvm_vcpu *vcpu) |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 9269 | { |
Marc Orr | b666a4b | 2018-11-06 14:53:56 -0800 | [diff] [blame] | 9270 | fpstate_init(&vcpu->arch.guest_fpu->state); |
Borislav Petkov | 782511b | 2016-04-04 22:25:03 +0200 | [diff] [blame] | 9271 | if (boot_cpu_has(X86_FEATURE_XSAVES)) |
Marc Orr | b666a4b | 2018-11-06 14:53:56 -0800 | [diff] [blame] | 9272 | vcpu->arch.guest_fpu->state.xsave.header.xcomp_bv = |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 9273 | host_xcr0 | XSTATE_COMPACTION_ENABLED; |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 9274 | |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 9275 | /* |
| 9276 | * Ensure guest xcr0 is valid for loading |
| 9277 | */ |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 9278 | vcpu->arch.xcr0 = XFEATURE_MASK_FP; |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 9279 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 9280 | vcpu->arch.cr0 |= X86_CR0_ET; |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 9281 | } |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 9282 | |
Sean Christopherson | 897cc38 | 2019-12-18 13:55:09 -0800 | [diff] [blame] | 9283 | int kvm_arch_vcpu_precreate(struct kvm *kvm, unsigned int id) |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 9284 | { |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 9285 | if (kvm_check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0) |
Sean Christopherson | 897cc38 | 2019-12-18 13:55:09 -0800 | [diff] [blame] | 9286 | pr_warn_once("kvm: SMP vm created on host with unstable TSC; " |
| 9287 | "guest TSC will not be reliable\n"); |
Liang Li | c447e76 | 2015-05-21 04:41:25 +0800 | [diff] [blame] | 9288 | |
Sean Christopherson | 897cc38 | 2019-12-18 13:55:09 -0800 | [diff] [blame] | 9289 | return 0; |
Avi Kivity | 26e5215 | 2007-11-20 15:30:24 +0200 | [diff] [blame] | 9290 | } |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 9291 | |
Sean Christopherson | e529ef6 | 2019-12-18 13:55:15 -0800 | [diff] [blame] | 9292 | int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu) |
Avi Kivity | 26e5215 | 2007-11-20 15:30:24 +0200 | [diff] [blame] | 9293 | { |
Sean Christopherson | 95a0d01 | 2019-12-18 13:55:23 -0800 | [diff] [blame] | 9294 | struct page *page; |
| 9295 | int r; |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 9296 | |
Sean Christopherson | 95a0d01 | 2019-12-18 13:55:23 -0800 | [diff] [blame] | 9297 | if (!irqchip_in_kernel(vcpu->kvm) || kvm_vcpu_is_reset_bsp(vcpu)) |
| 9298 | vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE; |
| 9299 | else |
| 9300 | vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED; |
| 9301 | |
| 9302 | kvm_set_tsc_khz(vcpu, max_tsc_khz); |
| 9303 | |
| 9304 | r = kvm_mmu_create(vcpu); |
| 9305 | if (r < 0) |
| 9306 | return r; |
| 9307 | |
| 9308 | if (irqchip_in_kernel(vcpu->kvm)) { |
Sean Christopherson | 95a0d01 | 2019-12-18 13:55:23 -0800 | [diff] [blame] | 9309 | r = kvm_create_lapic(vcpu, lapic_timer_advance_ns); |
| 9310 | if (r < 0) |
| 9311 | goto fail_mmu_destroy; |
Suravee Suthikulpanit | 4e19c36 | 2019-11-14 14:15:05 -0600 | [diff] [blame] | 9312 | if (kvm_apicv_activated(vcpu->kvm)) |
| 9313 | vcpu->arch.apicv_active = true; |
Sean Christopherson | 95a0d01 | 2019-12-18 13:55:23 -0800 | [diff] [blame] | 9314 | } else |
| 9315 | static_key_slow_inc(&kvm_no_apic_vcpu); |
| 9316 | |
| 9317 | r = -ENOMEM; |
| 9318 | |
| 9319 | page = alloc_page(GFP_KERNEL | __GFP_ZERO); |
| 9320 | if (!page) |
| 9321 | goto fail_free_lapic; |
| 9322 | vcpu->arch.pio_data = page_address(page); |
| 9323 | |
| 9324 | vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4, |
| 9325 | GFP_KERNEL_ACCOUNT); |
| 9326 | if (!vcpu->arch.mce_banks) |
| 9327 | goto fail_free_pio_data; |
| 9328 | vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS; |
| 9329 | |
| 9330 | if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask, |
| 9331 | GFP_KERNEL_ACCOUNT)) |
| 9332 | goto fail_free_mce_banks; |
| 9333 | |
Sean Christopherson | c9b8b07 | 2020-02-18 15:29:48 -0800 | [diff] [blame] | 9334 | if (!alloc_emulate_ctxt(vcpu)) |
| 9335 | goto free_wbinvd_dirty_mask; |
| 9336 | |
Sean Christopherson | 95a0d01 | 2019-12-18 13:55:23 -0800 | [diff] [blame] | 9337 | vcpu->arch.user_fpu = kmem_cache_zalloc(x86_fpu_cache, |
| 9338 | GFP_KERNEL_ACCOUNT); |
| 9339 | if (!vcpu->arch.user_fpu) { |
| 9340 | pr_err("kvm: failed to allocate userspace's fpu\n"); |
Sean Christopherson | c9b8b07 | 2020-02-18 15:29:48 -0800 | [diff] [blame] | 9341 | goto free_emulate_ctxt; |
Sean Christopherson | 95a0d01 | 2019-12-18 13:55:23 -0800 | [diff] [blame] | 9342 | } |
| 9343 | |
| 9344 | vcpu->arch.guest_fpu = kmem_cache_zalloc(x86_fpu_cache, |
| 9345 | GFP_KERNEL_ACCOUNT); |
| 9346 | if (!vcpu->arch.guest_fpu) { |
| 9347 | pr_err("kvm: failed to allocate vcpu's fpu\n"); |
| 9348 | goto free_user_fpu; |
| 9349 | } |
| 9350 | fx_init(vcpu); |
| 9351 | |
| 9352 | vcpu->arch.guest_xstate_size = XSAVE_HDR_SIZE + XSAVE_HDR_OFFSET; |
| 9353 | |
| 9354 | vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu); |
| 9355 | |
| 9356 | vcpu->arch.pat = MSR_IA32_CR_PAT_DEFAULT; |
| 9357 | |
| 9358 | kvm_async_pf_hash_reset(vcpu); |
| 9359 | kvm_pmu_init(vcpu); |
| 9360 | |
| 9361 | vcpu->arch.pending_external_vector = -1; |
| 9362 | vcpu->arch.preempted_in_kernel = false; |
| 9363 | |
| 9364 | kvm_hv_vcpu_init(vcpu); |
| 9365 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 9366 | r = kvm_x86_ops.vcpu_create(vcpu); |
Sean Christopherson | 95a0d01 | 2019-12-18 13:55:23 -0800 | [diff] [blame] | 9367 | if (r) |
| 9368 | goto free_guest_fpu; |
Sean Christopherson | 5f73db1 | 2019-12-18 13:55:18 -0800 | [diff] [blame] | 9369 | |
Sean Christopherson | 0cf9135 | 2019-03-07 15:43:02 -0800 | [diff] [blame] | 9370 | vcpu->arch.arch_capabilities = kvm_get_arch_capabilities(); |
Jim Mattson | e53d88af | 2018-10-30 12:20:21 -0700 | [diff] [blame] | 9371 | vcpu->arch.msr_platform_info = MSR_PLATFORM_INFO_CPUID_FAULT; |
Xiao Guangrong | 19efffa | 2015-06-15 16:55:31 +0800 | [diff] [blame] | 9372 | kvm_vcpu_mtrr_init(vcpu); |
Christoffer Dall | ec7660c | 2017-12-04 21:35:23 +0100 | [diff] [blame] | 9373 | vcpu_load(vcpu); |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 9374 | kvm_vcpu_reset(vcpu, false); |
Paolo Bonzini | e173299 | 2018-10-08 21:28:09 +0200 | [diff] [blame] | 9375 | kvm_init_mmu(vcpu, false); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 9376 | vcpu_put(vcpu); |
Christoffer Dall | ec7660c | 2017-12-04 21:35:23 +0100 | [diff] [blame] | 9377 | return 0; |
Sean Christopherson | 95a0d01 | 2019-12-18 13:55:23 -0800 | [diff] [blame] | 9378 | |
| 9379 | free_guest_fpu: |
| 9380 | kmem_cache_free(x86_fpu_cache, vcpu->arch.guest_fpu); |
| 9381 | free_user_fpu: |
| 9382 | kmem_cache_free(x86_fpu_cache, vcpu->arch.user_fpu); |
Sean Christopherson | c9b8b07 | 2020-02-18 15:29:48 -0800 | [diff] [blame] | 9383 | free_emulate_ctxt: |
| 9384 | kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt); |
Sean Christopherson | 95a0d01 | 2019-12-18 13:55:23 -0800 | [diff] [blame] | 9385 | free_wbinvd_dirty_mask: |
| 9386 | free_cpumask_var(vcpu->arch.wbinvd_dirty_mask); |
| 9387 | fail_free_mce_banks: |
| 9388 | kfree(vcpu->arch.mce_banks); |
| 9389 | fail_free_pio_data: |
| 9390 | free_page((unsigned long)vcpu->arch.pio_data); |
| 9391 | fail_free_lapic: |
| 9392 | kvm_free_lapic(vcpu); |
| 9393 | fail_mmu_destroy: |
| 9394 | kvm_mmu_destroy(vcpu); |
| 9395 | return r; |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 9396 | } |
| 9397 | |
Dominik Dingel | 31928aa | 2014-12-04 15:47:07 +0100 | [diff] [blame] | 9398 | void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | 42897d8 | 2012-11-27 23:29:02 -0200 | [diff] [blame] | 9399 | { |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 9400 | struct msr_data msr; |
Andrew Jones | 332967a | 2014-02-28 12:52:55 +0100 | [diff] [blame] | 9401 | struct kvm *kvm = vcpu->kvm; |
Marcelo Tosatti | 42897d8 | 2012-11-27 23:29:02 -0200 | [diff] [blame] | 9402 | |
Roman Kagan | d3457c8 | 2017-07-14 17:13:20 +0300 | [diff] [blame] | 9403 | kvm_hv_vcpu_postcreate(vcpu); |
| 9404 | |
Christoffer Dall | ec7660c | 2017-12-04 21:35:23 +0100 | [diff] [blame] | 9405 | if (mutex_lock_killable(&vcpu->mutex)) |
Dominik Dingel | 31928aa | 2014-12-04 15:47:07 +0100 | [diff] [blame] | 9406 | return; |
Christoffer Dall | ec7660c | 2017-12-04 21:35:23 +0100 | [diff] [blame] | 9407 | vcpu_load(vcpu); |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 9408 | msr.data = 0x0; |
| 9409 | msr.index = MSR_IA32_TSC; |
| 9410 | msr.host_initiated = true; |
| 9411 | kvm_write_tsc(vcpu, &msr); |
Marcelo Tosatti | 42897d8 | 2012-11-27 23:29:02 -0200 | [diff] [blame] | 9412 | vcpu_put(vcpu); |
Marcelo Tosatti | 2d5ba19 | 2019-06-03 19:52:44 -0300 | [diff] [blame] | 9413 | |
| 9414 | /* poll control enabled by default */ |
| 9415 | vcpu->arch.msr_kvm_poll_control = 1; |
| 9416 | |
Christoffer Dall | ec7660c | 2017-12-04 21:35:23 +0100 | [diff] [blame] | 9417 | mutex_unlock(&vcpu->mutex); |
Marcelo Tosatti | 42897d8 | 2012-11-27 23:29:02 -0200 | [diff] [blame] | 9418 | |
Wanpeng Li | b34de57 | 2020-02-28 11:18:41 +0800 | [diff] [blame] | 9419 | if (kvmclock_periodic_sync && vcpu->vcpu_idx == 0) |
| 9420 | schedule_delayed_work(&kvm->arch.kvmclock_sync_work, |
| 9421 | KVMCLOCK_SYNC_PERIOD); |
Marcelo Tosatti | 42897d8 | 2012-11-27 23:29:02 -0200 | [diff] [blame] | 9422 | } |
| 9423 | |
Hollis Blanchard | d40ccc6 | 2007-11-19 14:04:43 -0600 | [diff] [blame] | 9424 | void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu) |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 9425 | { |
Paolo Bonzini | 4cbc418 | 2020-01-30 18:47:38 +0100 | [diff] [blame] | 9426 | struct gfn_to_pfn_cache *cache = &vcpu->arch.st.cache; |
Sean Christopherson | 95a0d01 | 2019-12-18 13:55:23 -0800 | [diff] [blame] | 9427 | int idx; |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 9428 | |
Paolo Bonzini | 4cbc418 | 2020-01-30 18:47:38 +0100 | [diff] [blame] | 9429 | kvm_release_pfn(cache->pfn, cache->dirty, cache); |
| 9430 | |
Sean Christopherson | 50b143e | 2019-12-18 13:55:07 -0800 | [diff] [blame] | 9431 | kvmclock_reset(vcpu); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 9432 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 9433 | kvm_x86_ops.vcpu_free(vcpu); |
Sean Christopherson | 50b143e | 2019-12-18 13:55:07 -0800 | [diff] [blame] | 9434 | |
Sean Christopherson | c9b8b07 | 2020-02-18 15:29:48 -0800 | [diff] [blame] | 9435 | kmem_cache_free(x86_emulator_cache, vcpu->arch.emulate_ctxt); |
Sean Christopherson | 50b143e | 2019-12-18 13:55:07 -0800 | [diff] [blame] | 9436 | free_cpumask_var(vcpu->arch.wbinvd_dirty_mask); |
| 9437 | kmem_cache_free(x86_fpu_cache, vcpu->arch.user_fpu); |
| 9438 | kmem_cache_free(x86_fpu_cache, vcpu->arch.guest_fpu); |
Sean Christopherson | 95a0d01 | 2019-12-18 13:55:23 -0800 | [diff] [blame] | 9439 | |
| 9440 | kvm_hv_vcpu_uninit(vcpu); |
| 9441 | kvm_pmu_destroy(vcpu); |
| 9442 | kfree(vcpu->arch.mce_banks); |
| 9443 | kvm_free_lapic(vcpu); |
| 9444 | idx = srcu_read_lock(&vcpu->kvm->srcu); |
| 9445 | kvm_mmu_destroy(vcpu); |
| 9446 | srcu_read_unlock(&vcpu->kvm->srcu, idx); |
| 9447 | free_page((unsigned long)vcpu->arch.pio_data); |
| 9448 | if (!lapic_in_kernel(vcpu)) |
| 9449 | static_key_slow_dec(&kvm_no_apic_vcpu); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 9450 | } |
| 9451 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 9452 | void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event) |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 9453 | { |
Radim Krčmář | b7e31be | 2018-03-01 15:24:25 +0100 | [diff] [blame] | 9454 | kvm_lapic_reset(vcpu, init_event); |
| 9455 | |
Paolo Bonzini | e69fab5 | 2015-06-04 10:44:44 +0200 | [diff] [blame] | 9456 | vcpu->arch.hflags = 0; |
| 9457 | |
Paolo Bonzini | c43203c | 2016-06-01 22:26:00 +0200 | [diff] [blame] | 9458 | vcpu->arch.smi_pending = 0; |
Liran Alon | 52797bf | 2017-11-15 13:43:14 +0200 | [diff] [blame] | 9459 | vcpu->arch.smi_count = 0; |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 9460 | atomic_set(&vcpu->arch.nmi_queued, 0); |
| 9461 | vcpu->arch.nmi_pending = 0; |
Jan Kiszka | 448fa4a | 2008-09-26 09:30:48 +0200 | [diff] [blame] | 9462 | vcpu->arch.nmi_injected = false; |
Nadav Amit | 5f7552d | 2014-06-30 12:03:02 +0300 | [diff] [blame] | 9463 | kvm_clear_interrupt_queue(vcpu); |
| 9464 | kvm_clear_exception_queue(vcpu); |
Jan Kiszka | 448fa4a | 2008-09-26 09:30:48 +0200 | [diff] [blame] | 9465 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 9466 | memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db)); |
Nadav Amit | ae561ed | 2015-04-02 03:10:37 +0300 | [diff] [blame] | 9467 | kvm_update_dr0123(vcpu); |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 9468 | vcpu->arch.dr6 = DR6_INIT; |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 9469 | kvm_update_dr6(vcpu); |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 9470 | vcpu->arch.dr7 = DR7_FIXED_1; |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 9471 | kvm_update_dr7(vcpu); |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 9472 | |
Nadav Amit | 1119022 | 2015-04-02 03:10:38 +0300 | [diff] [blame] | 9473 | vcpu->arch.cr2 = 0; |
| 9474 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 9475 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 9476 | vcpu->arch.apf.msr_val = 0; |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 9477 | vcpu->arch.st.msr_val = 0; |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 9478 | |
Glauber Costa | 12f9a48 | 2011-02-01 14:16:40 -0500 | [diff] [blame] | 9479 | kvmclock_reset(vcpu); |
| 9480 | |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 9481 | kvm_clear_async_pf_completion_queue(vcpu); |
| 9482 | kvm_async_pf_hash_reset(vcpu); |
| 9483 | vcpu->arch.apf.halted = false; |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 9484 | |
Wanpeng Li | a554d20 | 2017-10-11 05:10:19 -0700 | [diff] [blame] | 9485 | if (kvm_mpx_supported()) { |
| 9486 | void *mpx_state_buffer; |
| 9487 | |
| 9488 | /* |
| 9489 | * To avoid have the INIT path from kvm_apic_has_events() that be |
| 9490 | * called with loaded FPU and does not let userspace fix the state. |
| 9491 | */ |
Rik van Riel | f775b13 | 2017-11-14 16:54:23 -0500 | [diff] [blame] | 9492 | if (init_event) |
| 9493 | kvm_put_guest_fpu(vcpu); |
Marc Orr | b666a4b | 2018-11-06 14:53:56 -0800 | [diff] [blame] | 9494 | mpx_state_buffer = get_xsave_addr(&vcpu->arch.guest_fpu->state.xsave, |
Sebastian Andrzej Siewior | abd16d6 | 2019-04-03 18:41:40 +0200 | [diff] [blame] | 9495 | XFEATURE_BNDREGS); |
Wanpeng Li | a554d20 | 2017-10-11 05:10:19 -0700 | [diff] [blame] | 9496 | if (mpx_state_buffer) |
| 9497 | memset(mpx_state_buffer, 0, sizeof(struct mpx_bndreg_state)); |
Marc Orr | b666a4b | 2018-11-06 14:53:56 -0800 | [diff] [blame] | 9498 | mpx_state_buffer = get_xsave_addr(&vcpu->arch.guest_fpu->state.xsave, |
Sebastian Andrzej Siewior | abd16d6 | 2019-04-03 18:41:40 +0200 | [diff] [blame] | 9499 | XFEATURE_BNDCSR); |
Wanpeng Li | a554d20 | 2017-10-11 05:10:19 -0700 | [diff] [blame] | 9500 | if (mpx_state_buffer) |
| 9501 | memset(mpx_state_buffer, 0, sizeof(struct mpx_bndcsr)); |
Rik van Riel | f775b13 | 2017-11-14 16:54:23 -0500 | [diff] [blame] | 9502 | if (init_event) |
| 9503 | kvm_load_guest_fpu(vcpu); |
Wanpeng Li | a554d20 | 2017-10-11 05:10:19 -0700 | [diff] [blame] | 9504 | } |
| 9505 | |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 9506 | if (!init_event) { |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 9507 | kvm_pmu_reset(vcpu); |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 9508 | vcpu->arch.smbase = 0x30000; |
Kyle Huey | db2336a | 2017-03-20 01:16:28 -0700 | [diff] [blame] | 9509 | |
Kyle Huey | db2336a | 2017-03-20 01:16:28 -0700 | [diff] [blame] | 9510 | vcpu->arch.msr_misc_features_enables = 0; |
Wanpeng Li | a554d20 | 2017-10-11 05:10:19 -0700 | [diff] [blame] | 9511 | |
| 9512 | vcpu->arch.xcr0 = XFEATURE_MASK_FP; |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 9513 | } |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 9514 | |
Julian Stecklina | 66f7b72 | 2012-12-05 15:26:19 +0100 | [diff] [blame] | 9515 | memset(vcpu->arch.regs, 0, sizeof(vcpu->arch.regs)); |
| 9516 | vcpu->arch.regs_avail = ~0; |
| 9517 | vcpu->arch.regs_dirty = ~0; |
| 9518 | |
Wanpeng Li | a554d20 | 2017-10-11 05:10:19 -0700 | [diff] [blame] | 9519 | vcpu->arch.ia32_xss = 0; |
| 9520 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 9521 | kvm_x86_ops.vcpu_reset(vcpu, init_event); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 9522 | } |
| 9523 | |
Paolo Bonzini | 2b4a273 | 2014-11-24 14:35:24 +0100 | [diff] [blame] | 9524 | void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector) |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 9525 | { |
| 9526 | struct kvm_segment cs; |
| 9527 | |
| 9528 | kvm_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 9529 | cs.selector = vector << 8; |
| 9530 | cs.base = vector << 12; |
| 9531 | kvm_set_segment(vcpu, &cs, VCPU_SREG_CS); |
| 9532 | kvm_rip_write(vcpu, 0); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 9533 | } |
| 9534 | |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 9535 | int kvm_arch_hardware_enable(void) |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 9536 | { |
Zachary Amsden | ca84d1a | 2010-08-19 22:07:28 -1000 | [diff] [blame] | 9537 | struct kvm *kvm; |
| 9538 | struct kvm_vcpu *vcpu; |
| 9539 | int i; |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 9540 | int ret; |
| 9541 | u64 local_tsc; |
| 9542 | u64 max_tsc = 0; |
| 9543 | bool stable, backwards_tsc = false; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 9544 | |
| 9545 | kvm_shared_msr_cpu_online(); |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 9546 | ret = kvm_x86_ops.hardware_enable(); |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 9547 | if (ret != 0) |
| 9548 | return ret; |
| 9549 | |
Andy Lutomirski | 4ea1636 | 2015-06-25 18:44:07 +0200 | [diff] [blame] | 9550 | local_tsc = rdtsc(); |
Vitaly Kuznetsov | b0c39dc | 2018-01-24 14:23:36 +0100 | [diff] [blame] | 9551 | stable = !kvm_check_tsc_unstable(); |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 9552 | list_for_each_entry(kvm, &vm_list, vm_list) { |
| 9553 | kvm_for_each_vcpu(i, vcpu, kvm) { |
| 9554 | if (!stable && vcpu->cpu == smp_processor_id()) |
Guo Hui Liu | 105b21b | 2014-09-12 13:43:19 +0800 | [diff] [blame] | 9555 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu); |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 9556 | if (stable && vcpu->arch.last_host_tsc > local_tsc) { |
| 9557 | backwards_tsc = true; |
| 9558 | if (vcpu->arch.last_host_tsc > max_tsc) |
| 9559 | max_tsc = vcpu->arch.last_host_tsc; |
| 9560 | } |
| 9561 | } |
| 9562 | } |
| 9563 | |
| 9564 | /* |
| 9565 | * Sometimes, even reliable TSCs go backwards. This happens on |
| 9566 | * platforms that reset TSC during suspend or hibernate actions, but |
| 9567 | * maintain synchronization. We must compensate. Fortunately, we can |
| 9568 | * detect that condition here, which happens early in CPU bringup, |
| 9569 | * before any KVM threads can be running. Unfortunately, we can't |
| 9570 | * bring the TSCs fully up to date with real time, as we aren't yet far |
| 9571 | * enough into CPU bringup that we know how much real time has actually |
Jason A. Donenfeld | 9285ec4 | 2019-06-21 22:32:48 +0200 | [diff] [blame] | 9572 | * elapsed; our helper function, ktime_get_boottime_ns() will be using boot |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 9573 | * variables that haven't been updated yet. |
| 9574 | * |
| 9575 | * So we simply find the maximum observed TSC above, then record the |
| 9576 | * adjustment to TSC in each VCPU. When the VCPU later gets loaded, |
| 9577 | * the adjustment will be applied. Note that we accumulate |
| 9578 | * adjustments, in case multiple suspend cycles happen before some VCPU |
| 9579 | * gets a chance to run again. In the event that no KVM threads get a |
| 9580 | * chance to run, we will miss the entire elapsed period, as we'll have |
| 9581 | * reset last_host_tsc, so VCPUs will not have the TSC adjusted and may |
| 9582 | * loose cycle time. This isn't too big a deal, since the loss will be |
| 9583 | * uniform across all VCPUs (not to mention the scenario is extremely |
| 9584 | * unlikely). It is possible that a second hibernate recovery happens |
| 9585 | * much faster than a first, causing the observed TSC here to be |
| 9586 | * smaller; this would require additional padding adjustment, which is |
| 9587 | * why we set last_host_tsc to the local tsc observed here. |
| 9588 | * |
| 9589 | * N.B. - this code below runs only on platforms with reliable TSC, |
| 9590 | * as that is the only way backwards_tsc is set above. Also note |
| 9591 | * that this runs for ALL vcpus, which is not a bug; all VCPUs should |
| 9592 | * have the same delta_cyc adjustment applied if backwards_tsc |
| 9593 | * is detected. Note further, this adjustment is only done once, |
| 9594 | * as we reset last_host_tsc on all VCPUs to stop this from being |
| 9595 | * called multiple times (one for each physical CPU bringup). |
| 9596 | * |
Guo Chao | 4a96998 | 2012-06-28 15:17:27 +0800 | [diff] [blame] | 9597 | * Platforms with unreliable TSCs don't have to deal with this, they |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 9598 | * will be compensated by the logic in vcpu_load, which sets the TSC to |
| 9599 | * catchup mode. This will catchup all VCPUs to real time, but cannot |
| 9600 | * guarantee that they stay in perfect synchronization. |
| 9601 | */ |
| 9602 | if (backwards_tsc) { |
| 9603 | u64 delta_cyc = max_tsc - local_tsc; |
| 9604 | list_for_each_entry(kvm, &vm_list, vm_list) { |
Ladi Prosek | a826faf | 2017-06-26 09:56:43 +0200 | [diff] [blame] | 9605 | kvm->arch.backwards_tsc_observed = true; |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 9606 | kvm_for_each_vcpu(i, vcpu, kvm) { |
| 9607 | vcpu->arch.tsc_offset_adjustment += delta_cyc; |
| 9608 | vcpu->arch.last_host_tsc = local_tsc; |
Guo Hui Liu | 105b21b | 2014-09-12 13:43:19 +0800 | [diff] [blame] | 9609 | kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu); |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 9610 | } |
| 9611 | |
| 9612 | /* |
| 9613 | * We have to disable TSC offset matching.. if you were |
| 9614 | * booting a VM while issuing an S4 host suspend.... |
| 9615 | * you may have some problem. Solving this issue is |
| 9616 | * left as an exercise to the reader. |
| 9617 | */ |
| 9618 | kvm->arch.last_tsc_nsec = 0; |
| 9619 | kvm->arch.last_tsc_write = 0; |
| 9620 | } |
| 9621 | |
| 9622 | } |
| 9623 | return 0; |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 9624 | } |
| 9625 | |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 9626 | void kvm_arch_hardware_disable(void) |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 9627 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 9628 | kvm_x86_ops.hardware_disable(); |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 9629 | drop_user_return_notifiers(); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 9630 | } |
| 9631 | |
Sean Christopherson | b990408 | 2020-03-21 13:25:55 -0700 | [diff] [blame] | 9632 | int kvm_arch_hardware_setup(void *opaque) |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 9633 | { |
Sean Christopherson | d008dfd | 2020-03-21 13:25:56 -0700 | [diff] [blame] | 9634 | struct kvm_x86_init_ops *ops = opaque; |
Nadav Amit | 9e9c3fe | 2015-04-12 21:47:15 +0300 | [diff] [blame] | 9635 | int r; |
| 9636 | |
Sean Christopherson | 9166198 | 2020-03-02 15:57:06 -0800 | [diff] [blame] | 9637 | rdmsrl_safe(MSR_EFER, &host_efer); |
| 9638 | |
Paolo Bonzini | 408e9a3 | 2020-03-05 16:11:56 +0100 | [diff] [blame] | 9639 | if (boot_cpu_has(X86_FEATURE_XSAVES)) |
| 9640 | rdmsrl(MSR_IA32_XSS, host_xss); |
| 9641 | |
Sean Christopherson | d008dfd | 2020-03-21 13:25:56 -0700 | [diff] [blame] | 9642 | r = ops->hardware_setup(); |
Nadav Amit | 9e9c3fe | 2015-04-12 21:47:15 +0300 | [diff] [blame] | 9643 | if (r != 0) |
| 9644 | return r; |
| 9645 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 9646 | memcpy(&kvm_x86_ops, ops->runtime_ops, sizeof(kvm_x86_ops)); |
Sean Christopherson | 69c6f69 | 2020-03-21 13:25:59 -0700 | [diff] [blame] | 9647 | |
Paolo Bonzini | 408e9a3 | 2020-03-05 16:11:56 +0100 | [diff] [blame] | 9648 | if (!kvm_cpu_cap_has(X86_FEATURE_XSAVES)) |
| 9649 | supported_xss = 0; |
| 9650 | |
Sean Christopherson | b11306b | 2019-12-10 14:44:13 -0800 | [diff] [blame] | 9651 | cr4_reserved_bits = kvm_host_cr4_reserved_bits(&boot_cpu_data); |
| 9652 | |
Haozhong Zhang | 35181e8 | 2015-10-20 15:39:03 +0800 | [diff] [blame] | 9653 | if (kvm_has_tsc_control) { |
| 9654 | /* |
| 9655 | * Make sure the user can only configure tsc_khz values that |
| 9656 | * fit into a signed integer. |
Marcelo Tosatti | 273ba45 | 2018-06-11 14:12:10 -0300 | [diff] [blame] | 9657 | * A min value is not calculated because it will always |
Haozhong Zhang | 35181e8 | 2015-10-20 15:39:03 +0800 | [diff] [blame] | 9658 | * be 1 on all machines. |
| 9659 | */ |
| 9660 | u64 max = min(0x7fffffffULL, |
| 9661 | __scale_tsc(kvm_max_tsc_scaling_ratio, tsc_khz)); |
| 9662 | kvm_max_guest_tsc_khz = max; |
| 9663 | |
Haozhong Zhang | ad721883 | 2015-10-20 15:39:02 +0800 | [diff] [blame] | 9664 | kvm_default_tsc_scaling_ratio = 1ULL << kvm_tsc_scaling_ratio_frac_bits; |
Haozhong Zhang | 35181e8 | 2015-10-20 15:39:03 +0800 | [diff] [blame] | 9665 | } |
Haozhong Zhang | ad721883 | 2015-10-20 15:39:02 +0800 | [diff] [blame] | 9666 | |
Nadav Amit | 9e9c3fe | 2015-04-12 21:47:15 +0300 | [diff] [blame] | 9667 | kvm_init_msr_list(); |
| 9668 | return 0; |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 9669 | } |
| 9670 | |
| 9671 | void kvm_arch_hardware_unsetup(void) |
| 9672 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 9673 | kvm_x86_ops.hardware_unsetup(); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 9674 | } |
| 9675 | |
Sean Christopherson | b990408 | 2020-03-21 13:25:55 -0700 | [diff] [blame] | 9676 | int kvm_arch_check_processor_compat(void *opaque) |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 9677 | { |
Sean Christopherson | f1cdecf | 2019-12-10 14:44:14 -0800 | [diff] [blame] | 9678 | struct cpuinfo_x86 *c = &cpu_data(smp_processor_id()); |
Sean Christopherson | d008dfd | 2020-03-21 13:25:56 -0700 | [diff] [blame] | 9679 | struct kvm_x86_init_ops *ops = opaque; |
Sean Christopherson | f1cdecf | 2019-12-10 14:44:14 -0800 | [diff] [blame] | 9680 | |
| 9681 | WARN_ON(!irqs_disabled()); |
| 9682 | |
| 9683 | if (kvm_host_cr4_reserved_bits(c) != cr4_reserved_bits) |
| 9684 | return -EIO; |
| 9685 | |
Sean Christopherson | d008dfd | 2020-03-21 13:25:56 -0700 | [diff] [blame] | 9686 | return ops->check_processor_compatibility(); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 9687 | } |
| 9688 | |
Paolo Bonzini | d71ba78 | 2015-07-29 11:56:48 +0200 | [diff] [blame] | 9689 | bool kvm_vcpu_is_reset_bsp(struct kvm_vcpu *vcpu) |
| 9690 | { |
| 9691 | return vcpu->kvm->arch.bsp_vcpu_id == vcpu->vcpu_id; |
| 9692 | } |
| 9693 | EXPORT_SYMBOL_GPL(kvm_vcpu_is_reset_bsp); |
| 9694 | |
| 9695 | bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu) |
| 9696 | { |
| 9697 | return (vcpu->arch.apic_base & MSR_IA32_APICBASE_BSP) != 0; |
| 9698 | } |
| 9699 | |
Gleb Natapov | 54e9818 | 2012-08-05 15:58:32 +0300 | [diff] [blame] | 9700 | struct static_key kvm_no_apic_vcpu __read_mostly; |
Paolo Bonzini | bce87cc | 2016-01-08 13:48:51 +0100 | [diff] [blame] | 9701 | EXPORT_SYMBOL_GPL(kvm_no_apic_vcpu); |
Gleb Natapov | 54e9818 | 2012-08-05 15:58:32 +0300 | [diff] [blame] | 9702 | |
Radim Krčmář | e790d9e | 2014-08-21 18:08:05 +0200 | [diff] [blame] | 9703 | void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu) |
| 9704 | { |
Like Xu | b35e554 | 2019-10-27 18:52:43 +0800 | [diff] [blame] | 9705 | struct kvm_pmu *pmu = vcpu_to_pmu(vcpu); |
| 9706 | |
Paolo Bonzini | c595cee | 2018-07-02 13:07:14 +0200 | [diff] [blame] | 9707 | vcpu->arch.l1tf_flush_l1d = true; |
Like Xu | b35e554 | 2019-10-27 18:52:43 +0800 | [diff] [blame] | 9708 | if (pmu->version && unlikely(pmu->event_count)) { |
| 9709 | pmu->need_cleanup = true; |
| 9710 | kvm_make_request(KVM_REQ_PMU, vcpu); |
| 9711 | } |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 9712 | kvm_x86_ops.sched_in(vcpu, cpu); |
Radim Krčmář | e790d9e | 2014-08-21 18:08:05 +0200 | [diff] [blame] | 9713 | } |
| 9714 | |
Sean Christopherson | 562b6b0 | 2020-01-26 16:41:13 -0800 | [diff] [blame] | 9715 | void kvm_arch_free_vm(struct kvm *kvm) |
| 9716 | { |
| 9717 | kfree(kvm->arch.hyperv.hv_pa_pg); |
| 9718 | vfree(kvm); |
| 9719 | } |
| 9720 | |
| 9721 | |
Carsten Otte | e08b963 | 2012-01-04 10:25:20 +0100 | [diff] [blame] | 9722 | int kvm_arch_init_vm(struct kvm *kvm, unsigned long type) |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 9723 | { |
Carsten Otte | e08b963 | 2012-01-04 10:25:20 +0100 | [diff] [blame] | 9724 | if (type) |
| 9725 | return -EINVAL; |
| 9726 | |
Paolo Bonzini | 6ef768f | 2014-11-20 13:45:31 +0100 | [diff] [blame] | 9727 | INIT_HLIST_HEAD(&kvm->arch.mask_notifier_list); |
Zhang Xiantao | f05e70a | 2007-12-14 10:01:48 +0800 | [diff] [blame] | 9728 | INIT_LIST_HEAD(&kvm->arch.active_mmu_pages); |
Sean Christopherson | 1060520 | 2019-09-12 19:46:10 -0700 | [diff] [blame] | 9729 | INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages); |
Junaid Shahid | 1aa9b95 | 2019-11-04 20:26:00 +0100 | [diff] [blame] | 9730 | INIT_LIST_HEAD(&kvm->arch.lpage_disallowed_mmu_pages); |
Ben-Ami Yassour | 4d5c5d0 | 2008-07-28 19:26:26 +0300 | [diff] [blame] | 9731 | INIT_LIST_HEAD(&kvm->arch.assigned_dev_head); |
Alex Williamson | e0f0bbc | 2013-10-30 11:02:30 -0600 | [diff] [blame] | 9732 | atomic_set(&kvm->arch.noncoherent_dma_count, 0); |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 9733 | |
Sheng Yang | 5550af4 | 2008-10-15 20:15:06 +0800 | [diff] [blame] | 9734 | /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */ |
| 9735 | set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap); |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 9736 | /* Reserve bit 1 of irq_sources_bitmap for irqfd-resampler */ |
| 9737 | set_bit(KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID, |
| 9738 | &kvm->arch.irq_sources_bitmap); |
Sheng Yang | 5550af4 | 2008-10-15 20:15:06 +0800 | [diff] [blame] | 9739 | |
Jan Kiszka | 038f8c1 | 2011-02-04 10:49:11 +0100 | [diff] [blame] | 9740 | raw_spin_lock_init(&kvm->arch.tsc_write_lock); |
Gleb Natapov | 1e08ec4 | 2012-09-13 17:19:24 +0300 | [diff] [blame] | 9741 | mutex_init(&kvm->arch.apic_map_lock); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 9742 | spin_lock_init(&kvm->arch.pvclock_gtod_sync_lock); |
| 9743 | |
Paolo Bonzini | 8171cd6 | 2020-01-22 14:36:09 +0100 | [diff] [blame] | 9744 | kvm->arch.kvmclock_offset = -get_kvmclock_base_ns(); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 9745 | pvclock_update_vm_gtod_copy(kvm); |
Marcelo Tosatti | 53f658b3 | 2008-12-11 20:45:05 +0100 | [diff] [blame] | 9746 | |
Drew Schmitt | 6fbbde9 | 2018-08-20 10:32:15 -0700 | [diff] [blame] | 9747 | kvm->arch.guest_can_read_msr_platform_info = true; |
| 9748 | |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 9749 | INIT_DELAYED_WORK(&kvm->arch.kvmclock_update_work, kvmclock_update_fn); |
Andrew Jones | 332967a | 2014-02-28 12:52:55 +0100 | [diff] [blame] | 9750 | INIT_DELAYED_WORK(&kvm->arch.kvmclock_sync_work, kvmclock_sync_fn); |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 9751 | |
Roman Kagan | cbc0236 | 2018-02-01 16:48:31 +0300 | [diff] [blame] | 9752 | kvm_hv_init_vm(kvm); |
Xiao Guangrong | 0eb05bf | 2016-02-24 17:51:13 +0800 | [diff] [blame] | 9753 | kvm_page_track_init(kvm); |
Xiao Guangrong | 13d268c | 2016-02-24 17:51:16 +0800 | [diff] [blame] | 9754 | kvm_mmu_init_vm(kvm); |
Xiao Guangrong | 0eb05bf | 2016-02-24 17:51:13 +0800 | [diff] [blame] | 9755 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 9756 | return kvm_x86_ops.vm_init(kvm); |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 9757 | } |
| 9758 | |
Junaid Shahid | 1aa9b95 | 2019-11-04 20:26:00 +0100 | [diff] [blame] | 9759 | int kvm_arch_post_init_vm(struct kvm *kvm) |
| 9760 | { |
| 9761 | return kvm_mmu_post_init_vm(kvm); |
| 9762 | } |
| 9763 | |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 9764 | static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu) |
| 9765 | { |
Christoffer Dall | ec7660c | 2017-12-04 21:35:23 +0100 | [diff] [blame] | 9766 | vcpu_load(vcpu); |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 9767 | kvm_mmu_unload(vcpu); |
| 9768 | vcpu_put(vcpu); |
| 9769 | } |
| 9770 | |
| 9771 | static void kvm_free_vcpus(struct kvm *kvm) |
| 9772 | { |
| 9773 | unsigned int i; |
Gleb Natapov | 988a2ca | 2009-06-09 15:56:29 +0300 | [diff] [blame] | 9774 | struct kvm_vcpu *vcpu; |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 9775 | |
| 9776 | /* |
| 9777 | * Unpin any mmu pages first. |
| 9778 | */ |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 9779 | kvm_for_each_vcpu(i, vcpu, kvm) { |
| 9780 | kvm_clear_async_pf_completion_queue(vcpu); |
Gleb Natapov | 988a2ca | 2009-06-09 15:56:29 +0300 | [diff] [blame] | 9781 | kvm_unload_vcpu_mmu(vcpu); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 9782 | } |
Gleb Natapov | 988a2ca | 2009-06-09 15:56:29 +0300 | [diff] [blame] | 9783 | kvm_for_each_vcpu(i, vcpu, kvm) |
Sean Christopherson | 4543bdc | 2019-12-18 13:55:14 -0800 | [diff] [blame] | 9784 | kvm_vcpu_destroy(vcpu); |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 9785 | |
Gleb Natapov | 988a2ca | 2009-06-09 15:56:29 +0300 | [diff] [blame] | 9786 | mutex_lock(&kvm->lock); |
| 9787 | for (i = 0; i < atomic_read(&kvm->online_vcpus); i++) |
| 9788 | kvm->vcpus[i] = NULL; |
| 9789 | |
| 9790 | atomic_set(&kvm->online_vcpus, 0); |
| 9791 | mutex_unlock(&kvm->lock); |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 9792 | } |
| 9793 | |
Sheng Yang | ad8ba2c | 2009-01-06 10:03:02 +0800 | [diff] [blame] | 9794 | void kvm_arch_sync_events(struct kvm *kvm) |
| 9795 | { |
Andrew Jones | 332967a | 2014-02-28 12:52:55 +0100 | [diff] [blame] | 9796 | cancel_delayed_work_sync(&kvm->arch.kvmclock_sync_work); |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 9797 | cancel_delayed_work_sync(&kvm->arch.kvmclock_update_work); |
Xiao Guangrong | aea924f | 2010-07-10 17:37:56 +0800 | [diff] [blame] | 9798 | kvm_free_pit(kvm); |
Sheng Yang | ad8ba2c | 2009-01-06 10:03:02 +0800 | [diff] [blame] | 9799 | } |
| 9800 | |
Paolo Bonzini | 1d8007b | 2015-10-12 13:38:32 +0200 | [diff] [blame] | 9801 | 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] | 9802 | { |
| 9803 | int i, r; |
Sean Christopherson | 0577d1a | 2020-02-18 13:07:31 -0800 | [diff] [blame] | 9804 | unsigned long hva, uninitialized_var(old_npages); |
Paolo Bonzini | f0d648b | 2015-10-12 13:56:27 +0200 | [diff] [blame] | 9805 | struct kvm_memslots *slots = kvm_memslots(kvm); |
Sean Christopherson | 0577d1a | 2020-02-18 13:07:31 -0800 | [diff] [blame] | 9806 | struct kvm_memory_slot *slot; |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 9807 | |
| 9808 | /* Called with kvm->slots_lock held. */ |
Paolo Bonzini | 1d8007b | 2015-10-12 13:38:32 +0200 | [diff] [blame] | 9809 | if (WARN_ON(id >= KVM_MEM_SLOTS_NUM)) |
| 9810 | return -EINVAL; |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 9811 | |
Paolo Bonzini | f0d648b | 2015-10-12 13:56:27 +0200 | [diff] [blame] | 9812 | slot = id_to_memslot(slots, id); |
| 9813 | if (size) { |
Sean Christopherson | 0577d1a | 2020-02-18 13:07:31 -0800 | [diff] [blame] | 9814 | if (slot && slot->npages) |
Paolo Bonzini | f0d648b | 2015-10-12 13:56:27 +0200 | [diff] [blame] | 9815 | return -EEXIST; |
| 9816 | |
| 9817 | /* |
| 9818 | * MAP_SHARED to prevent internal slot pages from being moved |
| 9819 | * by fork()/COW. |
| 9820 | */ |
| 9821 | hva = vm_mmap(NULL, 0, size, PROT_READ | PROT_WRITE, |
| 9822 | MAP_SHARED | MAP_ANONYMOUS, 0); |
| 9823 | if (IS_ERR((void *)hva)) |
| 9824 | return PTR_ERR((void *)hva); |
| 9825 | } else { |
Sean Christopherson | 0577d1a | 2020-02-18 13:07:31 -0800 | [diff] [blame] | 9826 | if (!slot || !slot->npages) |
Paolo Bonzini | f0d648b | 2015-10-12 13:56:27 +0200 | [diff] [blame] | 9827 | return 0; |
| 9828 | |
Sean Christopherson | abbed4f | 2020-03-04 16:24:22 -0800 | [diff] [blame] | 9829 | /* |
| 9830 | * Stuff a non-canonical value to catch use-after-delete. This |
| 9831 | * ends up being 0 on 32-bit KVM, but there's no better |
| 9832 | * alternative. |
| 9833 | */ |
| 9834 | hva = (unsigned long)(0xdeadull << 48); |
Sean Christopherson | 0577d1a | 2020-02-18 13:07:31 -0800 | [diff] [blame] | 9835 | old_npages = slot->npages; |
Paolo Bonzini | f0d648b | 2015-10-12 13:56:27 +0200 | [diff] [blame] | 9836 | } |
| 9837 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 9838 | for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) { |
Paolo Bonzini | 1d8007b | 2015-10-12 13:38:32 +0200 | [diff] [blame] | 9839 | struct kvm_userspace_memory_region m; |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 9840 | |
Paolo Bonzini | 1d8007b | 2015-10-12 13:38:32 +0200 | [diff] [blame] | 9841 | m.slot = id | (i << 16); |
| 9842 | m.flags = 0; |
| 9843 | m.guest_phys_addr = gpa; |
Paolo Bonzini | f0d648b | 2015-10-12 13:56:27 +0200 | [diff] [blame] | 9844 | m.userspace_addr = hva; |
Paolo Bonzini | 1d8007b | 2015-10-12 13:38:32 +0200 | [diff] [blame] | 9845 | m.memory_size = size; |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 9846 | r = __kvm_set_memory_region(kvm, &m); |
| 9847 | if (r < 0) |
| 9848 | return r; |
| 9849 | } |
| 9850 | |
Eric Biggers | 103c763 | 2018-01-31 17:30:21 -0800 | [diff] [blame] | 9851 | if (!size) |
Sean Christopherson | 0577d1a | 2020-02-18 13:07:31 -0800 | [diff] [blame] | 9852 | vm_munmap(hva, old_npages * PAGE_SIZE); |
Paolo Bonzini | f0d648b | 2015-10-12 13:56:27 +0200 | [diff] [blame] | 9853 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 9854 | return 0; |
| 9855 | } |
| 9856 | EXPORT_SYMBOL_GPL(__x86_set_memory_region); |
| 9857 | |
Junaid Shahid | 1aa9b95 | 2019-11-04 20:26:00 +0100 | [diff] [blame] | 9858 | void kvm_arch_pre_destroy_vm(struct kvm *kvm) |
| 9859 | { |
| 9860 | kvm_mmu_pre_destroy_vm(kvm); |
| 9861 | } |
| 9862 | |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 9863 | void kvm_arch_destroy_vm(struct kvm *kvm) |
| 9864 | { |
Andrew Honig | 27469d2 | 2013-04-18 09:38:14 -0700 | [diff] [blame] | 9865 | if (current->mm == kvm->mm) { |
| 9866 | /* |
| 9867 | * Free memory regions allocated on behalf of userspace, |
| 9868 | * unless the the memory map has changed due to process exit |
| 9869 | * or fd copying. |
| 9870 | */ |
Peter Xu | 6a3c623 | 2020-01-09 09:57:16 -0500 | [diff] [blame] | 9871 | mutex_lock(&kvm->slots_lock); |
| 9872 | __x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT, |
| 9873 | 0, 0); |
| 9874 | __x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT, |
| 9875 | 0, 0); |
| 9876 | __x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, 0, 0); |
| 9877 | mutex_unlock(&kvm->slots_lock); |
Andrew Honig | 27469d2 | 2013-04-18 09:38:14 -0700 | [diff] [blame] | 9878 | } |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 9879 | if (kvm_x86_ops.vm_destroy) |
| 9880 | kvm_x86_ops.vm_destroy(kvm); |
Peter Xu | c761159 | 2017-03-15 16:01:19 +0800 | [diff] [blame] | 9881 | kvm_pic_destroy(kvm); |
| 9882 | kvm_ioapic_destroy(kvm); |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 9883 | kvm_free_vcpus(kvm); |
Radim Krčmář | af1bae5 | 2016-07-12 22:09:30 +0200 | [diff] [blame] | 9884 | kvfree(rcu_dereference_check(kvm->arch.apic_map, 1)); |
Eric Hankland | 66bb8a0 | 2019-07-10 18:25:15 -0700 | [diff] [blame] | 9885 | kfree(srcu_dereference_check(kvm->arch.pmu_event_filter, &kvm->srcu, 1)); |
Xiao Guangrong | 13d268c | 2016-02-24 17:51:16 +0800 | [diff] [blame] | 9886 | kvm_mmu_uninit_vm(kvm); |
Paolo Bonzini | 2beb6dad | 2017-03-27 17:53:50 +0200 | [diff] [blame] | 9887 | kvm_page_track_cleanup(kvm); |
Roman Kagan | cbc0236 | 2018-02-01 16:48:31 +0300 | [diff] [blame] | 9888 | kvm_hv_destroy_vm(kvm); |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 9889 | } |
Zhang Xiantao | 0de1034 | 2007-11-20 16:25:04 +0800 | [diff] [blame] | 9890 | |
Sean Christopherson | e96c81e | 2020-02-18 13:07:27 -0800 | [diff] [blame] | 9891 | void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *slot) |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 9892 | { |
| 9893 | int i; |
| 9894 | |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 9895 | for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) { |
Sean Christopherson | e96c81e | 2020-02-18 13:07:27 -0800 | [diff] [blame] | 9896 | kvfree(slot->arch.rmap[i]); |
| 9897 | slot->arch.rmap[i] = NULL; |
| 9898 | |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 9899 | if (i == 0) |
| 9900 | continue; |
| 9901 | |
Sean Christopherson | e96c81e | 2020-02-18 13:07:27 -0800 | [diff] [blame] | 9902 | kvfree(slot->arch.lpage_info[i - 1]); |
| 9903 | slot->arch.lpage_info[i - 1] = NULL; |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 9904 | } |
Xiao Guangrong | 21ebbed | 2016-02-24 17:51:09 +0800 | [diff] [blame] | 9905 | |
Sean Christopherson | e96c81e | 2020-02-18 13:07:27 -0800 | [diff] [blame] | 9906 | kvm_page_track_free_memslot(slot); |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 9907 | } |
| 9908 | |
Sean Christopherson | 0dab98b | 2020-02-18 13:07:19 -0800 | [diff] [blame] | 9909 | static int kvm_alloc_memslot_metadata(struct kvm_memory_slot *slot, |
| 9910 | unsigned long npages) |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 9911 | { |
| 9912 | int i; |
| 9913 | |
Sean Christopherson | edd4fa3 | 2020-02-18 13:07:15 -0800 | [diff] [blame] | 9914 | /* |
| 9915 | * Clear out the previous array pointers for the KVM_MR_MOVE case. The |
| 9916 | * old arrays will be freed by __kvm_set_memory_region() if installing |
| 9917 | * the new memslot is successful. |
| 9918 | */ |
| 9919 | memset(&slot->arch, 0, sizeof(slot->arch)); |
| 9920 | |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 9921 | for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) { |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 9922 | struct kvm_lpage_info *linfo; |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 9923 | unsigned long ugfn; |
| 9924 | int lpages; |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 9925 | int level = i + 1; |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 9926 | |
| 9927 | lpages = gfn_to_index(slot->base_gfn + npages - 1, |
| 9928 | slot->base_gfn, level) + 1; |
| 9929 | |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 9930 | slot->arch.rmap[i] = |
Kees Cook | 778e1cd | 2018-06-12 14:04:48 -0700 | [diff] [blame] | 9931 | kvcalloc(lpages, sizeof(*slot->arch.rmap[i]), |
Ben Gardon | 254272c | 2019-02-11 11:02:50 -0800 | [diff] [blame] | 9932 | GFP_KERNEL_ACCOUNT); |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 9933 | if (!slot->arch.rmap[i]) |
Takuya Yoshikawa | 77d1130 | 2012-07-02 17:57:17 +0900 | [diff] [blame] | 9934 | goto out_free; |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 9935 | if (i == 0) |
| 9936 | continue; |
Takuya Yoshikawa | 77d1130 | 2012-07-02 17:57:17 +0900 | [diff] [blame] | 9937 | |
Ben Gardon | 254272c | 2019-02-11 11:02:50 -0800 | [diff] [blame] | 9938 | linfo = kvcalloc(lpages, sizeof(*linfo), GFP_KERNEL_ACCOUNT); |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 9939 | if (!linfo) |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 9940 | goto out_free; |
| 9941 | |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 9942 | slot->arch.lpage_info[i - 1] = linfo; |
| 9943 | |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 9944 | if (slot->base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1)) |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 9945 | linfo[0].disallow_lpage = 1; |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 9946 | if ((slot->base_gfn + npages) & (KVM_PAGES_PER_HPAGE(level) - 1)) |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 9947 | linfo[lpages - 1].disallow_lpage = 1; |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 9948 | ugfn = slot->userspace_addr >> PAGE_SHIFT; |
| 9949 | /* |
| 9950 | * If the gfn and userspace address are not aligned wrt each |
Sean Christopherson | 600087b | 2020-03-02 15:57:05 -0800 | [diff] [blame] | 9951 | * other, disable large page support for this slot. |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 9952 | */ |
Sean Christopherson | 600087b | 2020-03-02 15:57:05 -0800 | [diff] [blame] | 9953 | if ((slot->base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1)) { |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 9954 | unsigned long j; |
| 9955 | |
| 9956 | for (j = 0; j < lpages; ++j) |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 9957 | linfo[j].disallow_lpage = 1; |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 9958 | } |
| 9959 | } |
| 9960 | |
Xiao Guangrong | 21ebbed | 2016-02-24 17:51:09 +0800 | [diff] [blame] | 9961 | if (kvm_page_track_create_memslot(slot, npages)) |
| 9962 | goto out_free; |
| 9963 | |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 9964 | return 0; |
| 9965 | |
| 9966 | out_free: |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 9967 | for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) { |
Thomas Huth | 548ef28 | 2015-02-24 21:29:25 +0100 | [diff] [blame] | 9968 | kvfree(slot->arch.rmap[i]); |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 9969 | slot->arch.rmap[i] = NULL; |
| 9970 | if (i == 0) |
| 9971 | continue; |
| 9972 | |
Thomas Huth | 548ef28 | 2015-02-24 21:29:25 +0100 | [diff] [blame] | 9973 | kvfree(slot->arch.lpage_info[i - 1]); |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 9974 | slot->arch.lpage_info[i - 1] = NULL; |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 9975 | } |
| 9976 | return -ENOMEM; |
| 9977 | } |
| 9978 | |
Sean Christopherson | 1524825 | 2019-02-05 12:54:17 -0800 | [diff] [blame] | 9979 | void kvm_arch_memslots_updated(struct kvm *kvm, u64 gen) |
Takuya Yoshikawa | e59dbe0 | 2013-07-04 13:40:29 +0900 | [diff] [blame] | 9980 | { |
Boris Ostrovsky | 9172481 | 2019-12-05 01:30:51 +0000 | [diff] [blame] | 9981 | struct kvm_vcpu *vcpu; |
| 9982 | int i; |
| 9983 | |
Takuya Yoshikawa | e6dff7d | 2013-07-04 13:41:26 +0900 | [diff] [blame] | 9984 | /* |
| 9985 | * memslots->generation has been incremented. |
| 9986 | * mmio generation may have reached its maximum value. |
| 9987 | */ |
Sean Christopherson | 1524825 | 2019-02-05 12:54:17 -0800 | [diff] [blame] | 9988 | kvm_mmu_invalidate_mmio_sptes(kvm, gen); |
Boris Ostrovsky | 9172481 | 2019-12-05 01:30:51 +0000 | [diff] [blame] | 9989 | |
| 9990 | /* Force re-initialization of steal_time cache */ |
| 9991 | kvm_for_each_vcpu(i, vcpu, kvm) |
| 9992 | kvm_vcpu_kick(vcpu); |
Takuya Yoshikawa | e59dbe0 | 2013-07-04 13:40:29 +0900 | [diff] [blame] | 9993 | } |
| 9994 | |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 9995 | int kvm_arch_prepare_memory_region(struct kvm *kvm, |
| 9996 | struct kvm_memory_slot *memslot, |
Paolo Bonzini | 09170a4 | 2015-05-18 13:59:39 +0200 | [diff] [blame] | 9997 | const struct kvm_userspace_memory_region *mem, |
Takuya Yoshikawa | 7b6195a | 2013-02-27 19:44:34 +0900 | [diff] [blame] | 9998 | enum kvm_mr_change change) |
Zhang Xiantao | 0de1034 | 2007-11-20 16:25:04 +0800 | [diff] [blame] | 9999 | { |
Sean Christopherson | 0dab98b | 2020-02-18 13:07:19 -0800 | [diff] [blame] | 10000 | if (change == KVM_MR_CREATE || change == KVM_MR_MOVE) |
| 10001 | return kvm_alloc_memslot_metadata(memslot, |
| 10002 | mem->memory_size >> PAGE_SHIFT); |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 10003 | return 0; |
| 10004 | } |
| 10005 | |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 10006 | static void kvm_mmu_slot_apply_flags(struct kvm *kvm, |
| 10007 | struct kvm_memory_slot *new) |
| 10008 | { |
| 10009 | /* Still write protect RO slot */ |
| 10010 | if (new->flags & KVM_MEM_READONLY) { |
Jay Zhou | 3c9bd40 | 2020-02-27 09:32:27 +0800 | [diff] [blame] | 10011 | kvm_mmu_slot_remove_write_access(kvm, new, PT_PAGE_TABLE_LEVEL); |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 10012 | return; |
| 10013 | } |
| 10014 | |
| 10015 | /* |
| 10016 | * Call kvm_x86_ops dirty logging hooks when they are valid. |
| 10017 | * |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 10018 | * kvm_x86_ops.slot_disable_log_dirty is called when: |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 10019 | * |
| 10020 | * - KVM_MR_CREATE with dirty logging is disabled |
| 10021 | * - KVM_MR_FLAGS_ONLY with dirty logging is disabled in new flag |
| 10022 | * |
| 10023 | * The reason is, in case of PML, we need to set D-bit for any slots |
| 10024 | * with dirty logging disabled in order to eliminate unnecessary GPA |
Miaohe Lin | 0a03cbd | 2019-12-06 16:20:18 +0800 | [diff] [blame] | 10025 | * logging in PML buffer (and potential PML buffer full VMEXIT). This |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 10026 | * guarantees leaving PML enabled during guest's lifetime won't have |
Wei Yang | bdd303c | 2018-11-05 14:45:03 +0800 | [diff] [blame] | 10027 | * any additional overhead from PML when guest is running with dirty |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 10028 | * logging disabled for memory slots. |
| 10029 | * |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 10030 | * kvm_x86_ops.slot_enable_log_dirty is called when switching new slot |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 10031 | * to dirty logging mode. |
| 10032 | * |
| 10033 | * If kvm_x86_ops dirty logging hooks are invalid, use write protect. |
| 10034 | * |
| 10035 | * In case of write protect: |
| 10036 | * |
| 10037 | * Write protect all pages for dirty logging. |
| 10038 | * |
| 10039 | * All the sptes including the large sptes which point to this |
| 10040 | * slot are set to readonly. We can not create any new large |
| 10041 | * spte on this slot until the end of the logging. |
| 10042 | * |
| 10043 | * See the comments in fast_page_fault(). |
| 10044 | */ |
| 10045 | if (new->flags & KVM_MEM_LOG_DIRTY_PAGES) { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 10046 | if (kvm_x86_ops.slot_enable_log_dirty) { |
| 10047 | kvm_x86_ops.slot_enable_log_dirty(kvm, new); |
Jay Zhou | 3c9bd40 | 2020-02-27 09:32:27 +0800 | [diff] [blame] | 10048 | } else { |
| 10049 | int level = |
| 10050 | kvm_dirty_log_manual_protect_and_init_set(kvm) ? |
| 10051 | PT_DIRECTORY_LEVEL : PT_PAGE_TABLE_LEVEL; |
| 10052 | |
| 10053 | /* |
| 10054 | * If we're with initial-all-set, we don't need |
| 10055 | * to write protect any small page because |
| 10056 | * they're reported as dirty already. However |
| 10057 | * we still need to write-protect huge pages |
| 10058 | * so that the page split can happen lazily on |
| 10059 | * the first write to the huge page. |
| 10060 | */ |
| 10061 | kvm_mmu_slot_remove_write_access(kvm, new, level); |
| 10062 | } |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 10063 | } else { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 10064 | if (kvm_x86_ops.slot_disable_log_dirty) |
| 10065 | kvm_x86_ops.slot_disable_log_dirty(kvm, new); |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 10066 | } |
| 10067 | } |
| 10068 | |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 10069 | void kvm_arch_commit_memory_region(struct kvm *kvm, |
Paolo Bonzini | 09170a4 | 2015-05-18 13:59:39 +0200 | [diff] [blame] | 10070 | const struct kvm_userspace_memory_region *mem, |
Sean Christopherson | 9d4c197 | 2020-02-18 13:07:24 -0800 | [diff] [blame] | 10071 | struct kvm_memory_slot *old, |
Paolo Bonzini | f36f3f2 | 2015-05-18 13:20:23 +0200 | [diff] [blame] | 10072 | const struct kvm_memory_slot *new, |
Takuya Yoshikawa | 8482644 | 2013-02-27 19:45:25 +0900 | [diff] [blame] | 10073 | enum kvm_mr_change change) |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 10074 | { |
Xiao Guangrong | 48c0e4e | 2011-03-04 18:59:21 +0800 | [diff] [blame] | 10075 | if (!kvm->arch.n_requested_mmu_pages) |
Wei Yang | 4d66623 | 2018-09-27 08:31:26 +0800 | [diff] [blame] | 10076 | kvm_mmu_change_mmu_pages(kvm, |
| 10077 | kvm_mmu_calculate_default_mmu_pages(kvm)); |
Kai Huang | 1c91cad4 | 2015-01-28 10:54:26 +0800 | [diff] [blame] | 10078 | |
Takuya Yoshikawa | c972f3b | 2013-01-08 19:43:28 +0900 | [diff] [blame] | 10079 | /* |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 10080 | * Dirty logging tracks sptes in 4k granularity, meaning that large |
| 10081 | * sptes have to be split. If live migration is successful, the guest |
| 10082 | * in the source machine will be destroyed and large sptes will be |
| 10083 | * created in the destination. However, if the guest continues to run |
| 10084 | * in the source machine (for example if live migration fails), small |
| 10085 | * sptes will remain around and cause bad performance. |
| 10086 | * |
| 10087 | * Scan sptes if dirty logging has been stopped, dropping those |
| 10088 | * which can be collapsed into a single large-page spte. Later |
| 10089 | * page faults will create the large-page sptes. |
Sean Christopherson | 319109a | 2019-09-11 12:19:52 -0700 | [diff] [blame] | 10090 | * |
| 10091 | * There is no need to do this in any of the following cases: |
| 10092 | * CREATE: No dirty mappings will already exist. |
| 10093 | * MOVE/DELETE: The old mappings will already have been cleaned up by |
| 10094 | * kvm_arch_flush_shadow_memslot() |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 10095 | */ |
Sean Christopherson | 319109a | 2019-09-11 12:19:52 -0700 | [diff] [blame] | 10096 | if (change == KVM_MR_FLAGS_ONLY && |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 10097 | (old->flags & KVM_MEM_LOG_DIRTY_PAGES) && |
| 10098 | !(new->flags & KVM_MEM_LOG_DIRTY_PAGES)) |
| 10099 | kvm_mmu_zap_collapsible_sptes(kvm, new); |
| 10100 | |
| 10101 | /* |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 10102 | * Set up write protection and/or dirty logging for the new slot. |
Xiao Guangrong | c126d94 | 2014-04-17 17:06:14 +0800 | [diff] [blame] | 10103 | * |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 10104 | * For KVM_MR_DELETE and KVM_MR_MOVE, the shadow pages of old slot have |
| 10105 | * been zapped so no dirty logging staff is needed for old slot. For |
| 10106 | * KVM_MR_FLAGS_ONLY, the old slot is essentially the same one as the |
| 10107 | * new and it's also covered when dealing with the new slot. |
Paolo Bonzini | f36f3f2 | 2015-05-18 13:20:23 +0200 | [diff] [blame] | 10108 | * |
| 10109 | * FIXME: const-ify all uses of struct kvm_memory_slot. |
Takuya Yoshikawa | c972f3b | 2013-01-08 19:43:28 +0900 | [diff] [blame] | 10110 | */ |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 10111 | if (change != KVM_MR_DELETE) |
Paolo Bonzini | f36f3f2 | 2015-05-18 13:20:23 +0200 | [diff] [blame] | 10112 | kvm_mmu_slot_apply_flags(kvm, (struct kvm_memory_slot *) new); |
Sean Christopherson | 2119884 | 2020-02-18 13:07:25 -0800 | [diff] [blame] | 10113 | |
| 10114 | /* Free the arrays associated with the old memslot. */ |
| 10115 | if (change == KVM_MR_MOVE) |
Sean Christopherson | e96c81e | 2020-02-18 13:07:27 -0800 | [diff] [blame] | 10116 | kvm_arch_free_memslot(kvm, old); |
Zhang Xiantao | 0de1034 | 2007-11-20 16:25:04 +0800 | [diff] [blame] | 10117 | } |
Zhang Xiantao | 1d737c8 | 2007-12-14 09:35:10 +0800 | [diff] [blame] | 10118 | |
Marcelo Tosatti | 2df72e9 | 2012-08-24 15:54:57 -0300 | [diff] [blame] | 10119 | void kvm_arch_flush_shadow_all(struct kvm *kvm) |
Marcelo Tosatti | 34d4cb8 | 2008-07-10 20:49:31 -0300 | [diff] [blame] | 10120 | { |
Sean Christopherson | 7390de1 | 2019-02-05 13:01:31 -0800 | [diff] [blame] | 10121 | kvm_mmu_zap_all(kvm); |
Marcelo Tosatti | 34d4cb8 | 2008-07-10 20:49:31 -0300 | [diff] [blame] | 10122 | } |
| 10123 | |
Marcelo Tosatti | 2df72e9 | 2012-08-24 15:54:57 -0300 | [diff] [blame] | 10124 | void kvm_arch_flush_shadow_memslot(struct kvm *kvm, |
| 10125 | struct kvm_memory_slot *slot) |
| 10126 | { |
Xiaoguang Chen | ae7cd87 | 2016-10-09 15:41:44 +0800 | [diff] [blame] | 10127 | kvm_page_track_flush_slot(kvm, slot); |
Marcelo Tosatti | 2df72e9 | 2012-08-24 15:54:57 -0300 | [diff] [blame] | 10128 | } |
| 10129 | |
Liran Alon | e6c67d8 | 2018-09-04 10:56:52 +0300 | [diff] [blame] | 10130 | static inline bool kvm_guest_apic_has_interrupt(struct kvm_vcpu *vcpu) |
| 10131 | { |
| 10132 | return (is_guest_mode(vcpu) && |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 10133 | kvm_x86_ops.guest_apic_has_interrupt && |
| 10134 | kvm_x86_ops.guest_apic_has_interrupt(vcpu)); |
Liran Alon | e6c67d8 | 2018-09-04 10:56:52 +0300 | [diff] [blame] | 10135 | } |
| 10136 | |
Paolo Bonzini | 5d9bc64 | 2015-10-13 10:18:53 +0200 | [diff] [blame] | 10137 | static inline bool kvm_vcpu_has_events(struct kvm_vcpu *vcpu) |
| 10138 | { |
| 10139 | if (!list_empty_careful(&vcpu->async_pf.done)) |
| 10140 | return true; |
| 10141 | |
| 10142 | if (kvm_apic_has_events(vcpu)) |
| 10143 | return true; |
| 10144 | |
| 10145 | if (vcpu->arch.pv.pv_unhalted) |
| 10146 | return true; |
| 10147 | |
Wanpeng Li | a5f01f8 | 2017-09-13 04:04:01 -0700 | [diff] [blame] | 10148 | if (vcpu->arch.exception.pending) |
| 10149 | return true; |
| 10150 | |
ZhuangYanying | 47a66ee | 2017-05-26 13:16:48 +0800 | [diff] [blame] | 10151 | if (kvm_test_request(KVM_REQ_NMI, vcpu) || |
| 10152 | (vcpu->arch.nmi_pending && |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 10153 | kvm_x86_ops.nmi_allowed(vcpu))) |
Paolo Bonzini | 5d9bc64 | 2015-10-13 10:18:53 +0200 | [diff] [blame] | 10154 | return true; |
| 10155 | |
ZhuangYanying | 47a66ee | 2017-05-26 13:16:48 +0800 | [diff] [blame] | 10156 | if (kvm_test_request(KVM_REQ_SMI, vcpu) || |
| 10157 | (vcpu->arch.smi_pending && !is_smm(vcpu))) |
Paolo Bonzini | 7391773 | 2015-10-13 10:19:35 +0200 | [diff] [blame] | 10158 | return true; |
| 10159 | |
Paolo Bonzini | 5d9bc64 | 2015-10-13 10:18:53 +0200 | [diff] [blame] | 10160 | if (kvm_arch_interrupt_allowed(vcpu) && |
Liran Alon | e6c67d8 | 2018-09-04 10:56:52 +0300 | [diff] [blame] | 10161 | (kvm_cpu_has_interrupt(vcpu) || |
| 10162 | kvm_guest_apic_has_interrupt(vcpu))) |
Paolo Bonzini | 5d9bc64 | 2015-10-13 10:18:53 +0200 | [diff] [blame] | 10163 | return true; |
| 10164 | |
Andrey Smetanin | 1f4b34f | 2015-11-30 19:22:21 +0300 | [diff] [blame] | 10165 | if (kvm_hv_has_stimer_pending(vcpu)) |
| 10166 | return true; |
| 10167 | |
Paolo Bonzini | 5d9bc64 | 2015-10-13 10:18:53 +0200 | [diff] [blame] | 10168 | return false; |
| 10169 | } |
| 10170 | |
Zhang Xiantao | 1d737c8 | 2007-12-14 09:35:10 +0800 | [diff] [blame] | 10171 | int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu) |
| 10172 | { |
Paolo Bonzini | 5d9bc64 | 2015-10-13 10:18:53 +0200 | [diff] [blame] | 10173 | return kvm_vcpu_running(vcpu) || kvm_vcpu_has_events(vcpu); |
Zhang Xiantao | 1d737c8 | 2007-12-14 09:35:10 +0800 | [diff] [blame] | 10174 | } |
Zhang Xiantao | 5736199 | 2007-12-17 14:21:40 +0800 | [diff] [blame] | 10175 | |
Wanpeng Li | 17e433b | 2019-08-05 10:03:19 +0800 | [diff] [blame] | 10176 | bool kvm_arch_dy_runnable(struct kvm_vcpu *vcpu) |
| 10177 | { |
| 10178 | if (READ_ONCE(vcpu->arch.pv.pv_unhalted)) |
| 10179 | return true; |
| 10180 | |
| 10181 | if (kvm_test_request(KVM_REQ_NMI, vcpu) || |
| 10182 | kvm_test_request(KVM_REQ_SMI, vcpu) || |
| 10183 | kvm_test_request(KVM_REQ_EVENT, vcpu)) |
| 10184 | return true; |
| 10185 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 10186 | if (vcpu->arch.apicv_active && kvm_x86_ops.dy_apicv_has_pending_interrupt(vcpu)) |
Wanpeng Li | 17e433b | 2019-08-05 10:03:19 +0800 | [diff] [blame] | 10187 | return true; |
| 10188 | |
| 10189 | return false; |
| 10190 | } |
| 10191 | |
Longpeng(Mike) | 199b576 | 2017-08-08 12:05:32 +0800 | [diff] [blame] | 10192 | bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu) |
| 10193 | { |
Longpeng(Mike) | de63ad4 | 2017-08-08 12:05:33 +0800 | [diff] [blame] | 10194 | return vcpu->arch.preempted_in_kernel; |
Longpeng(Mike) | 199b576 | 2017-08-08 12:05:32 +0800 | [diff] [blame] | 10195 | } |
| 10196 | |
Christoffer Dall | b6d3383 | 2012-03-08 16:44:24 -0500 | [diff] [blame] | 10197 | int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu) |
Zhang Xiantao | 5736199 | 2007-12-17 14:21:40 +0800 | [diff] [blame] | 10198 | { |
Christoffer Dall | b6d3383 | 2012-03-08 16:44:24 -0500 | [diff] [blame] | 10199 | return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE; |
Zhang Xiantao | 5736199 | 2007-12-17 14:21:40 +0800 | [diff] [blame] | 10200 | } |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 10201 | |
| 10202 | int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu) |
| 10203 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 10204 | return kvm_x86_ops.interrupt_allowed(vcpu); |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 10205 | } |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 10206 | |
Nadav Amit | 82b3277 | 2014-11-02 11:54:45 +0200 | [diff] [blame] | 10207 | unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu) |
| 10208 | { |
| 10209 | if (is_64_bit_mode(vcpu)) |
| 10210 | return kvm_rip_read(vcpu); |
| 10211 | return (u32)(get_segment_base(vcpu, VCPU_SREG_CS) + |
| 10212 | kvm_rip_read(vcpu)); |
| 10213 | } |
| 10214 | EXPORT_SYMBOL_GPL(kvm_get_linear_rip); |
| 10215 | |
Jan Kiszka | f92653e | 2010-02-23 17:47:55 +0100 | [diff] [blame] | 10216 | bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip) |
| 10217 | { |
Nadav Amit | 82b3277 | 2014-11-02 11:54:45 +0200 | [diff] [blame] | 10218 | return kvm_get_linear_rip(vcpu) == linear_rip; |
Jan Kiszka | f92653e | 2010-02-23 17:47:55 +0100 | [diff] [blame] | 10219 | } |
| 10220 | EXPORT_SYMBOL_GPL(kvm_is_linear_rip); |
| 10221 | |
Jan Kiszka | 94fe45d | 2009-10-18 13:24:44 +0200 | [diff] [blame] | 10222 | unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu) |
| 10223 | { |
| 10224 | unsigned long rflags; |
| 10225 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 10226 | rflags = kvm_x86_ops.get_rflags(vcpu); |
Jan Kiszka | 94fe45d | 2009-10-18 13:24:44 +0200 | [diff] [blame] | 10227 | if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) |
Jan Kiszka | c310bac | 2010-02-23 17:47:58 +0100 | [diff] [blame] | 10228 | rflags &= ~X86_EFLAGS_TF; |
Jan Kiszka | 94fe45d | 2009-10-18 13:24:44 +0200 | [diff] [blame] | 10229 | return rflags; |
| 10230 | } |
| 10231 | EXPORT_SYMBOL_GPL(kvm_get_rflags); |
| 10232 | |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 10233 | static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags) |
Jan Kiszka | 94fe45d | 2009-10-18 13:24:44 +0200 | [diff] [blame] | 10234 | { |
| 10235 | if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP && |
Jan Kiszka | f92653e | 2010-02-23 17:47:55 +0100 | [diff] [blame] | 10236 | kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip)) |
Jan Kiszka | c310bac | 2010-02-23 17:47:58 +0100 | [diff] [blame] | 10237 | rflags |= X86_EFLAGS_TF; |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 10238 | kvm_x86_ops.set_rflags(vcpu, rflags); |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 10239 | } |
| 10240 | |
| 10241 | void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags) |
| 10242 | { |
| 10243 | __kvm_set_rflags(vcpu, rflags); |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 10244 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Jan Kiszka | 94fe45d | 2009-10-18 13:24:44 +0200 | [diff] [blame] | 10245 | } |
| 10246 | EXPORT_SYMBOL_GPL(kvm_set_rflags); |
| 10247 | |
Gleb Natapov | 56028d0 | 2010-10-17 18:13:42 +0200 | [diff] [blame] | 10248 | void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work) |
| 10249 | { |
| 10250 | int r; |
| 10251 | |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 10252 | if ((vcpu->arch.mmu->direct_map != work->arch.direct_map) || |
chai wen | f2e1066 | 2013-10-14 22:22:33 +0800 | [diff] [blame] | 10253 | work->wakeup_all) |
Gleb Natapov | 56028d0 | 2010-10-17 18:13:42 +0200 | [diff] [blame] | 10254 | return; |
| 10255 | |
| 10256 | r = kvm_mmu_reload(vcpu); |
| 10257 | if (unlikely(r)) |
| 10258 | return; |
| 10259 | |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 10260 | if (!vcpu->arch.mmu->direct_map && |
Sean Christopherson | d8dd54e | 2020-03-02 18:02:39 -0800 | [diff] [blame] | 10261 | work->arch.cr3 != vcpu->arch.mmu->get_guest_pgd(vcpu)) |
Xiao Guangrong | fb67e14 | 2010-12-07 10:35:25 +0800 | [diff] [blame] | 10262 | return; |
| 10263 | |
Sean Christopherson | 7a02674 | 2020-02-06 14:14:34 -0800 | [diff] [blame] | 10264 | kvm_mmu_do_page_fault(vcpu, work->cr2_or_gpa, 0, true); |
Gleb Natapov | 56028d0 | 2010-10-17 18:13:42 +0200 | [diff] [blame] | 10265 | } |
| 10266 | |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 10267 | static inline u32 kvm_async_pf_hash_fn(gfn_t gfn) |
| 10268 | { |
| 10269 | return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU)); |
| 10270 | } |
| 10271 | |
| 10272 | static inline u32 kvm_async_pf_next_probe(u32 key) |
| 10273 | { |
| 10274 | return (key + 1) & (roundup_pow_of_two(ASYNC_PF_PER_VCPU) - 1); |
| 10275 | } |
| 10276 | |
| 10277 | static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn) |
| 10278 | { |
| 10279 | u32 key = kvm_async_pf_hash_fn(gfn); |
| 10280 | |
| 10281 | while (vcpu->arch.apf.gfns[key] != ~0) |
| 10282 | key = kvm_async_pf_next_probe(key); |
| 10283 | |
| 10284 | vcpu->arch.apf.gfns[key] = gfn; |
| 10285 | } |
| 10286 | |
| 10287 | static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn) |
| 10288 | { |
| 10289 | int i; |
| 10290 | u32 key = kvm_async_pf_hash_fn(gfn); |
| 10291 | |
| 10292 | for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU) && |
Xiao Guangrong | c7d28c2 | 2010-11-01 17:00:30 +0800 | [diff] [blame] | 10293 | (vcpu->arch.apf.gfns[key] != gfn && |
| 10294 | vcpu->arch.apf.gfns[key] != ~0); i++) |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 10295 | key = kvm_async_pf_next_probe(key); |
| 10296 | |
| 10297 | return key; |
| 10298 | } |
| 10299 | |
| 10300 | bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn) |
| 10301 | { |
| 10302 | return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn; |
| 10303 | } |
| 10304 | |
| 10305 | static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn) |
| 10306 | { |
| 10307 | u32 i, j, k; |
| 10308 | |
| 10309 | i = j = kvm_async_pf_gfn_slot(vcpu, gfn); |
| 10310 | while (true) { |
| 10311 | vcpu->arch.apf.gfns[i] = ~0; |
| 10312 | do { |
| 10313 | j = kvm_async_pf_next_probe(j); |
| 10314 | if (vcpu->arch.apf.gfns[j] == ~0) |
| 10315 | return; |
| 10316 | k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]); |
| 10317 | /* |
| 10318 | * k lies cyclically in ]i,j] |
| 10319 | * | i.k.j | |
| 10320 | * |....j i.k.| or |.k..j i...| |
| 10321 | */ |
| 10322 | } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j)); |
| 10323 | vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j]; |
| 10324 | i = j; |
| 10325 | } |
| 10326 | } |
| 10327 | |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 10328 | static int apf_put_user(struct kvm_vcpu *vcpu, u32 val) |
| 10329 | { |
Paolo Bonzini | 4e335d9 | 2017-05-02 16:20:18 +0200 | [diff] [blame] | 10330 | |
| 10331 | return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apf.data, &val, |
| 10332 | sizeof(val)); |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 10333 | } |
| 10334 | |
Wanpeng Li | 9a6e7c3 | 2017-09-14 03:54:16 -0700 | [diff] [blame] | 10335 | static int apf_get_user(struct kvm_vcpu *vcpu, u32 *val) |
| 10336 | { |
| 10337 | |
| 10338 | return kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.apf.data, val, |
| 10339 | sizeof(u32)); |
| 10340 | } |
| 10341 | |
Paolo Bonzini | 1dfdb45 | 2019-06-05 16:46:44 +0200 | [diff] [blame] | 10342 | static bool kvm_can_deliver_async_pf(struct kvm_vcpu *vcpu) |
| 10343 | { |
| 10344 | if (!vcpu->arch.apf.delivery_as_pf_vmexit && is_guest_mode(vcpu)) |
| 10345 | return false; |
| 10346 | |
| 10347 | if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) || |
| 10348 | (vcpu->arch.apf.send_user_only && |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 10349 | kvm_x86_ops.get_cpl(vcpu) == 0)) |
Paolo Bonzini | 1dfdb45 | 2019-06-05 16:46:44 +0200 | [diff] [blame] | 10350 | return false; |
| 10351 | |
| 10352 | return true; |
| 10353 | } |
| 10354 | |
| 10355 | bool kvm_can_do_async_pf(struct kvm_vcpu *vcpu) |
| 10356 | { |
| 10357 | if (unlikely(!lapic_in_kernel(vcpu) || |
| 10358 | kvm_event_needs_reinjection(vcpu) || |
| 10359 | vcpu->arch.exception.pending)) |
| 10360 | return false; |
| 10361 | |
| 10362 | if (kvm_hlt_in_guest(vcpu->kvm) && !kvm_can_deliver_async_pf(vcpu)) |
| 10363 | return false; |
| 10364 | |
| 10365 | /* |
| 10366 | * If interrupts are off we cannot even use an artificial |
| 10367 | * halt state. |
| 10368 | */ |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 10369 | return kvm_x86_ops.interrupt_allowed(vcpu); |
Paolo Bonzini | 1dfdb45 | 2019-06-05 16:46:44 +0200 | [diff] [blame] | 10370 | } |
| 10371 | |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 10372 | void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu, |
| 10373 | struct kvm_async_pf *work) |
| 10374 | { |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 10375 | struct x86_exception fault; |
| 10376 | |
Sean Christopherson | 736c291 | 2019-12-06 15:57:14 -0800 | [diff] [blame] | 10377 | trace_kvm_async_pf_not_present(work->arch.token, work->cr2_or_gpa); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 10378 | kvm_add_async_pf_gfn(vcpu, work->arch.gfn); |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 10379 | |
Paolo Bonzini | 1dfdb45 | 2019-06-05 16:46:44 +0200 | [diff] [blame] | 10380 | if (kvm_can_deliver_async_pf(vcpu) && |
| 10381 | !apf_put_user(vcpu, KVM_PV_REASON_PAGE_NOT_PRESENT)) { |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 10382 | fault.vector = PF_VECTOR; |
| 10383 | fault.error_code_valid = true; |
| 10384 | fault.error_code = 0; |
| 10385 | fault.nested_page_fault = false; |
| 10386 | fault.address = work->arch.token; |
Wanpeng Li | adfe20f | 2017-07-13 18:30:41 -0700 | [diff] [blame] | 10387 | fault.async_page_fault = true; |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 10388 | kvm_inject_page_fault(vcpu, &fault); |
Paolo Bonzini | 1dfdb45 | 2019-06-05 16:46:44 +0200 | [diff] [blame] | 10389 | } else { |
| 10390 | /* |
| 10391 | * It is not possible to deliver a paravirtualized asynchronous |
| 10392 | * page fault, but putting the guest in an artificial halt state |
| 10393 | * can be beneficial nevertheless: if an interrupt arrives, we |
| 10394 | * can deliver it timely and perhaps the guest will schedule |
| 10395 | * another process. When the instruction that triggered a page |
| 10396 | * fault is retried, hopefully the page will be ready in the host. |
| 10397 | */ |
| 10398 | kvm_make_request(KVM_REQ_APF_HALT, vcpu); |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 10399 | } |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 10400 | } |
| 10401 | |
| 10402 | void kvm_arch_async_page_present(struct kvm_vcpu *vcpu, |
| 10403 | struct kvm_async_pf *work) |
| 10404 | { |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 10405 | struct x86_exception fault; |
Wanpeng Li | 9a6e7c3 | 2017-09-14 03:54:16 -0700 | [diff] [blame] | 10406 | u32 val; |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 10407 | |
chai wen | f2e1066 | 2013-10-14 22:22:33 +0800 | [diff] [blame] | 10408 | if (work->wakeup_all) |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 10409 | work->arch.token = ~0; /* broadcast wakeup */ |
| 10410 | else |
| 10411 | kvm_del_async_pf_gfn(vcpu, work->arch.gfn); |
Sean Christopherson | 736c291 | 2019-12-06 15:57:14 -0800 | [diff] [blame] | 10412 | trace_kvm_async_pf_ready(work->arch.token, work->cr2_or_gpa); |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 10413 | |
Wanpeng Li | 9a6e7c3 | 2017-09-14 03:54:16 -0700 | [diff] [blame] | 10414 | if (vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED && |
| 10415 | !apf_get_user(vcpu, &val)) { |
| 10416 | if (val == KVM_PV_REASON_PAGE_NOT_PRESENT && |
| 10417 | vcpu->arch.exception.pending && |
| 10418 | vcpu->arch.exception.nr == PF_VECTOR && |
| 10419 | !apf_put_user(vcpu, 0)) { |
| 10420 | vcpu->arch.exception.injected = false; |
| 10421 | vcpu->arch.exception.pending = false; |
| 10422 | vcpu->arch.exception.nr = 0; |
| 10423 | vcpu->arch.exception.has_error_code = false; |
| 10424 | vcpu->arch.exception.error_code = 0; |
Jim Mattson | c851436 | 2018-10-16 14:29:19 -0700 | [diff] [blame] | 10425 | vcpu->arch.exception.has_payload = false; |
| 10426 | vcpu->arch.exception.payload = 0; |
Wanpeng Li | 9a6e7c3 | 2017-09-14 03:54:16 -0700 | [diff] [blame] | 10427 | } else if (!apf_put_user(vcpu, KVM_PV_REASON_PAGE_READY)) { |
| 10428 | fault.vector = PF_VECTOR; |
| 10429 | fault.error_code_valid = true; |
| 10430 | fault.error_code = 0; |
| 10431 | fault.nested_page_fault = false; |
| 10432 | fault.address = work->arch.token; |
| 10433 | fault.async_page_fault = true; |
| 10434 | kvm_inject_page_fault(vcpu, &fault); |
| 10435 | } |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 10436 | } |
Xiao Guangrong | e6d53e3 | 2010-11-01 17:01:28 +0800 | [diff] [blame] | 10437 | vcpu->arch.apf.halted = false; |
Gleb Natapov | a4fa163 | 2012-05-03 11:36:39 +0300 | [diff] [blame] | 10438 | vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE; |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 10439 | } |
| 10440 | |
| 10441 | bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu) |
| 10442 | { |
| 10443 | if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED)) |
| 10444 | return true; |
| 10445 | else |
Wanpeng Li | 9bc1f09 | 2017-06-08 20:13:40 -0700 | [diff] [blame] | 10446 | return kvm_can_do_async_pf(vcpu); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 10447 | } |
| 10448 | |
Paolo Bonzini | 5544eb9 | 2015-07-07 15:41:58 +0200 | [diff] [blame] | 10449 | void kvm_arch_start_assignment(struct kvm *kvm) |
| 10450 | { |
| 10451 | atomic_inc(&kvm->arch.assigned_device_count); |
| 10452 | } |
| 10453 | EXPORT_SYMBOL_GPL(kvm_arch_start_assignment); |
| 10454 | |
| 10455 | void kvm_arch_end_assignment(struct kvm *kvm) |
| 10456 | { |
| 10457 | atomic_dec(&kvm->arch.assigned_device_count); |
| 10458 | } |
| 10459 | EXPORT_SYMBOL_GPL(kvm_arch_end_assignment); |
| 10460 | |
| 10461 | bool kvm_arch_has_assigned_device(struct kvm *kvm) |
| 10462 | { |
| 10463 | return atomic_read(&kvm->arch.assigned_device_count); |
| 10464 | } |
| 10465 | EXPORT_SYMBOL_GPL(kvm_arch_has_assigned_device); |
| 10466 | |
Alex Williamson | e0f0bbc | 2013-10-30 11:02:30 -0600 | [diff] [blame] | 10467 | void kvm_arch_register_noncoherent_dma(struct kvm *kvm) |
| 10468 | { |
| 10469 | atomic_inc(&kvm->arch.noncoherent_dma_count); |
| 10470 | } |
| 10471 | EXPORT_SYMBOL_GPL(kvm_arch_register_noncoherent_dma); |
| 10472 | |
| 10473 | void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm) |
| 10474 | { |
| 10475 | atomic_dec(&kvm->arch.noncoherent_dma_count); |
| 10476 | } |
| 10477 | EXPORT_SYMBOL_GPL(kvm_arch_unregister_noncoherent_dma); |
| 10478 | |
| 10479 | bool kvm_arch_has_noncoherent_dma(struct kvm *kvm) |
| 10480 | { |
| 10481 | return atomic_read(&kvm->arch.noncoherent_dma_count); |
| 10482 | } |
| 10483 | EXPORT_SYMBOL_GPL(kvm_arch_has_noncoherent_dma); |
| 10484 | |
Alex Williamson | 14717e2 | 2016-05-05 11:58:35 -0600 | [diff] [blame] | 10485 | bool kvm_arch_has_irq_bypass(void) |
| 10486 | { |
Sean Christopherson | 92735b1 | 2019-08-02 15:06:17 -0700 | [diff] [blame] | 10487 | return true; |
Alex Williamson | 14717e2 | 2016-05-05 11:58:35 -0600 | [diff] [blame] | 10488 | } |
| 10489 | |
Feng Wu | 8727688 | 2015-09-18 22:29:40 +0800 | [diff] [blame] | 10490 | int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons, |
| 10491 | struct irq_bypass_producer *prod) |
| 10492 | { |
| 10493 | struct kvm_kernel_irqfd *irqfd = |
| 10494 | container_of(cons, struct kvm_kernel_irqfd, consumer); |
| 10495 | |
Alex Williamson | 14717e2 | 2016-05-05 11:58:35 -0600 | [diff] [blame] | 10496 | irqfd->producer = prod; |
Feng Wu | 8727688 | 2015-09-18 22:29:40 +0800 | [diff] [blame] | 10497 | |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 10498 | return kvm_x86_ops.update_pi_irte(irqfd->kvm, |
Alex Williamson | 14717e2 | 2016-05-05 11:58:35 -0600 | [diff] [blame] | 10499 | prod->irq, irqfd->gsi, 1); |
Feng Wu | 8727688 | 2015-09-18 22:29:40 +0800 | [diff] [blame] | 10500 | } |
| 10501 | |
| 10502 | void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons, |
| 10503 | struct irq_bypass_producer *prod) |
| 10504 | { |
| 10505 | int ret; |
| 10506 | struct kvm_kernel_irqfd *irqfd = |
| 10507 | container_of(cons, struct kvm_kernel_irqfd, consumer); |
| 10508 | |
Feng Wu | 8727688 | 2015-09-18 22:29:40 +0800 | [diff] [blame] | 10509 | WARN_ON(irqfd->producer != prod); |
| 10510 | irqfd->producer = NULL; |
| 10511 | |
| 10512 | /* |
| 10513 | * When producer of consumer is unregistered, we change back to |
| 10514 | * remapped mode, so we can re-use the current implementation |
Andrea Gelmini | bb3541f | 2016-05-21 14:14:44 +0200 | [diff] [blame] | 10515 | * when the irq is masked/disabled or the consumer side (KVM |
Feng Wu | 8727688 | 2015-09-18 22:29:40 +0800 | [diff] [blame] | 10516 | * int this case doesn't want to receive the interrupts. |
| 10517 | */ |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 10518 | ret = kvm_x86_ops.update_pi_irte(irqfd->kvm, prod->irq, irqfd->gsi, 0); |
Feng Wu | 8727688 | 2015-09-18 22:29:40 +0800 | [diff] [blame] | 10519 | if (ret) |
| 10520 | printk(KERN_INFO "irq bypass consumer (token %p) unregistration" |
| 10521 | " fails: %d\n", irqfd->consumer.token, ret); |
| 10522 | } |
| 10523 | |
| 10524 | int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq, |
| 10525 | uint32_t guest_irq, bool set) |
| 10526 | { |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 10527 | return kvm_x86_ops.update_pi_irte(kvm, host_irq, guest_irq, set); |
Feng Wu | 8727688 | 2015-09-18 22:29:40 +0800 | [diff] [blame] | 10528 | } |
| 10529 | |
Feng Wu | 52004014 | 2016-01-25 16:53:33 +0800 | [diff] [blame] | 10530 | bool kvm_vector_hashing_enabled(void) |
| 10531 | { |
| 10532 | return vector_hashing; |
| 10533 | } |
Feng Wu | 52004014 | 2016-01-25 16:53:33 +0800 | [diff] [blame] | 10534 | |
Marcelo Tosatti | 2d5ba19 | 2019-06-03 19:52:44 -0300 | [diff] [blame] | 10535 | bool kvm_arch_no_poll(struct kvm_vcpu *vcpu) |
| 10536 | { |
| 10537 | return (vcpu->arch.msr_kvm_poll_control & 1) == 0; |
| 10538 | } |
| 10539 | EXPORT_SYMBOL_GPL(kvm_arch_no_poll); |
| 10540 | |
Paolo Bonzini | 6441fa6 | 2020-01-20 16:33:06 +0100 | [diff] [blame] | 10541 | u64 kvm_spec_ctrl_valid_bits(struct kvm_vcpu *vcpu) |
| 10542 | { |
| 10543 | uint64_t bits = SPEC_CTRL_IBRS | SPEC_CTRL_STIBP | SPEC_CTRL_SSBD; |
| 10544 | |
| 10545 | /* The STIBP bit doesn't fault even if it's not advertised */ |
| 10546 | if (!guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL) && |
| 10547 | !guest_cpuid_has(vcpu, X86_FEATURE_AMD_IBRS)) |
| 10548 | bits &= ~(SPEC_CTRL_IBRS | SPEC_CTRL_STIBP); |
| 10549 | if (!boot_cpu_has(X86_FEATURE_SPEC_CTRL) && |
| 10550 | !boot_cpu_has(X86_FEATURE_AMD_IBRS)) |
| 10551 | bits &= ~(SPEC_CTRL_IBRS | SPEC_CTRL_STIBP); |
| 10552 | |
| 10553 | if (!guest_cpuid_has(vcpu, X86_FEATURE_SPEC_CTRL_SSBD) && |
| 10554 | !guest_cpuid_has(vcpu, X86_FEATURE_AMD_SSBD)) |
| 10555 | bits &= ~SPEC_CTRL_SSBD; |
| 10556 | if (!boot_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD) && |
| 10557 | !boot_cpu_has(X86_FEATURE_AMD_SSBD)) |
| 10558 | bits &= ~SPEC_CTRL_SSBD; |
| 10559 | |
| 10560 | return bits; |
| 10561 | } |
| 10562 | EXPORT_SYMBOL_GPL(kvm_spec_ctrl_valid_bits); |
Marcelo Tosatti | 2d5ba19 | 2019-06-03 19:52:44 -0300 | [diff] [blame] | 10563 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 10564 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit); |
Jason Wang | 931c33b | 2015-09-15 14:41:58 +0800 | [diff] [blame] | 10565 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_fast_mmio); |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 10566 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq); |
| 10567 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault); |
| 10568 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr); |
| 10569 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr); |
Joerg Roedel | 0ac406d | 2009-10-09 16:08:27 +0200 | [diff] [blame] | 10570 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun); |
Joerg Roedel | d8cabdd | 2009-10-09 16:08:28 +0200 | [diff] [blame] | 10571 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit); |
Joerg Roedel | 17897f3 | 2009-10-09 16:08:29 +0200 | [diff] [blame] | 10572 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject); |
Joerg Roedel | 236649d | 2009-10-09 16:08:30 +0200 | [diff] [blame] | 10573 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit); |
Sean Christopherson | 5497b95 | 2019-07-11 08:58:29 -0700 | [diff] [blame] | 10574 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmenter_failed); |
Joerg Roedel | ec1ff79 | 2009-10-09 16:08:31 +0200 | [diff] [blame] | 10575 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga); |
Joerg Roedel | 532a46b | 2009-10-09 16:08:32 +0200 | [diff] [blame] | 10576 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit); |
Joerg Roedel | 2e554e8 | 2010-02-24 18:59:14 +0100 | [diff] [blame] | 10577 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts); |
Yoshihiro YUNOMAE | 489223e | 2013-06-12 16:43:44 +0900 | [diff] [blame] | 10578 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_write_tsc_offset); |
Peter Xu | 4f75bcc | 2019-09-06 10:17:22 +0800 | [diff] [blame] | 10579 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ple_window_update); |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 10580 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pml_full); |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 10581 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pi_irte_update); |
Suravee Suthikulpanit | 18f40c5 | 2016-05-04 14:09:48 -0500 | [diff] [blame] | 10582 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_unaccelerated_access); |
| 10583 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_incomplete_ipi); |
Suravee Suthikulpanit | ab56f8e | 2020-03-12 05:39:28 -0500 | [diff] [blame] | 10584 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_ga_log); |
Suravee Suthikulpanit | 24bbf74 | 2019-11-14 14:15:07 -0600 | [diff] [blame] | 10585 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_apicv_update_request); |