Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Kernel-based Virtual Machine driver for Linux |
| 3 | * |
| 4 | * This module enables machines with Intel VT-x extensions to run virtual |
| 5 | * machines without emulation or binary translation. |
| 6 | * |
| 7 | * MMU support |
| 8 | * |
| 9 | * Copyright (C) 2006 Qumranet, Inc. |
Nicolas Kaiser | 9611c18 | 2010-10-06 14:23:22 +0200 | [diff] [blame] | 10 | * Copyright 2010 Red Hat, Inc. and/or its affiliates. |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 11 | * |
| 12 | * Authors: |
| 13 | * Yaniv Kamay <yaniv@qumranet.com> |
| 14 | * Avi Kivity <avi@qumranet.com> |
| 15 | * |
| 16 | * This work is licensed under the terms of the GNU GPL, version 2. See |
| 17 | * the COPYING file in the top-level directory. |
| 18 | * |
| 19 | */ |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 20 | |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 21 | #include "irq.h" |
Zhang Xiantao | 1d737c8 | 2007-12-14 09:35:10 +0800 | [diff] [blame] | 22 | #include "mmu.h" |
Avi Kivity | 836a1b3 | 2010-01-21 15:31:49 +0200 | [diff] [blame] | 23 | #include "x86.h" |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 24 | #include "kvm_cache_regs.h" |
Nadav Amit | 5f7dde7 | 2014-05-07 15:32:50 +0300 | [diff] [blame] | 25 | #include "cpuid.h" |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 26 | |
Avi Kivity | edf8841 | 2007-12-16 11:02:48 +0200 | [diff] [blame] | 27 | #include <linux/kvm_host.h> |
Avi Kivity | e495606 | 2007-06-28 14:15:57 -0400 | [diff] [blame] | 28 | #include <linux/types.h> |
| 29 | #include <linux/string.h> |
| 30 | #include <linux/mm.h> |
| 31 | #include <linux/highmem.h> |
Paul Gortmaker | 1767e93 | 2016-07-13 20:19:00 -0400 | [diff] [blame] | 32 | #include <linux/moduleparam.h> |
| 33 | #include <linux/export.h> |
Izik Eidus | 448353c | 2007-11-26 14:08:14 +0200 | [diff] [blame] | 34 | #include <linux/swap.h> |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 35 | #include <linux/hugetlb.h> |
Marcelo Tosatti | 2f333bc | 2008-02-22 12:21:37 -0500 | [diff] [blame] | 36 | #include <linux/compiler.h> |
Marcelo Tosatti | bc6678a | 2009-12-23 14:35:21 -0200 | [diff] [blame] | 37 | #include <linux/srcu.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 38 | #include <linux/slab.h> |
Ingo Molnar | 3f07c01 | 2017-02-08 18:51:30 +0100 | [diff] [blame] | 39 | #include <linux/sched/signal.h> |
Huang Ying | bf99815 | 2010-05-31 14:28:19 +0800 | [diff] [blame] | 40 | #include <linux/uaccess.h> |
David Matlack | 114df30 | 2016-12-19 13:58:25 -0800 | [diff] [blame] | 41 | #include <linux/hash.h> |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 42 | #include <linux/kern_levels.h> |
Avi Kivity | e495606 | 2007-06-28 14:15:57 -0400 | [diff] [blame] | 43 | |
| 44 | #include <asm/page.h> |
Haozhong Zhang | aa2e063 | 2017-12-20 15:29:29 +0800 | [diff] [blame] | 45 | #include <asm/pat.h> |
Avi Kivity | e495606 | 2007-06-28 14:15:57 -0400 | [diff] [blame] | 46 | #include <asm/cmpxchg.h> |
KarimAllah Ahmed | 0c55671 | 2019-01-31 21:24:44 +0100 | [diff] [blame] | 47 | #include <asm/e820/api.h> |
Avi Kivity | 4e54237 | 2007-11-21 14:08:40 +0200 | [diff] [blame] | 48 | #include <asm/io.h> |
Eduardo Habkost | 13673a9 | 2008-11-17 19:03:13 -0200 | [diff] [blame] | 49 | #include <asm/vmx.h> |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 50 | #include <asm/kvm_page_track.h> |
Wanpeng Li | 1261bfa | 2017-07-13 18:30:40 -0700 | [diff] [blame] | 51 | #include "trace.h" |
Avi Kivity | e495606 | 2007-06-28 14:15:57 -0400 | [diff] [blame] | 52 | |
Joerg Roedel | 1855267 | 2008-02-07 13:47:41 +0100 | [diff] [blame] | 53 | /* |
| 54 | * When setting this variable to true it enables Two-Dimensional-Paging |
| 55 | * where the hardware walks 2 page tables: |
| 56 | * 1. the guest-virtual to guest-physical |
| 57 | * 2. while doing 1. it walks guest-physical to host-physical |
| 58 | * If the hardware supports that we don't need to do shadow paging. |
| 59 | */ |
Marcelo Tosatti | 2f333bc | 2008-02-22 12:21:37 -0500 | [diff] [blame] | 60 | bool tdp_enabled = false; |
Joerg Roedel | 1855267 | 2008-02-07 13:47:41 +0100 | [diff] [blame] | 61 | |
Xiao Guangrong | 8b1fe17 | 2010-08-30 18:22:53 +0800 | [diff] [blame] | 62 | enum { |
| 63 | AUDIT_PRE_PAGE_FAULT, |
| 64 | AUDIT_POST_PAGE_FAULT, |
| 65 | AUDIT_PRE_PTE_WRITE, |
Xiao Guangrong | 6903074 | 2010-09-27 18:09:29 +0800 | [diff] [blame] | 66 | AUDIT_POST_PTE_WRITE, |
| 67 | AUDIT_PRE_SYNC, |
| 68 | AUDIT_POST_SYNC |
Xiao Guangrong | 8b1fe17 | 2010-08-30 18:22:53 +0800 | [diff] [blame] | 69 | }; |
| 70 | |
Avi Kivity | 37a7d8b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 71 | #undef MMU_DEBUG |
| 72 | |
Avi Kivity | 37a7d8b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 73 | #ifdef MMU_DEBUG |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 74 | static bool dbg = 0; |
| 75 | module_param(dbg, bool, 0644); |
Avi Kivity | 37a7d8b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 76 | |
| 77 | #define pgprintk(x...) do { if (dbg) printk(x); } while (0) |
| 78 | #define rmap_printk(x...) do { if (dbg) printk(x); } while (0) |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 79 | #define MMU_WARN_ON(x) WARN_ON(x) |
Avi Kivity | 37a7d8b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 80 | #else |
Avi Kivity | 37a7d8b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 81 | #define pgprintk(x...) do { } while (0) |
| 82 | #define rmap_printk(x...) do { } while (0) |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 83 | #define MMU_WARN_ON(x) do { } while (0) |
Yaozu Dong | d6c69ee | 2007-04-25 14:17:25 +0800 | [diff] [blame] | 84 | #endif |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 85 | |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 86 | #define PTE_PREFETCH_NUM 8 |
| 87 | |
Xudong Hao | 00763e4 | 2012-06-07 18:26:07 +0800 | [diff] [blame] | 88 | #define PT_FIRST_AVAIL_BITS_SHIFT 10 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 89 | #define PT64_SECOND_AVAIL_BITS_SHIFT 52 |
| 90 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 91 | #define PT64_LEVEL_BITS 9 |
| 92 | |
| 93 | #define PT64_LEVEL_SHIFT(level) \ |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 94 | (PAGE_SHIFT + (level - 1) * PT64_LEVEL_BITS) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 95 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 96 | #define PT64_INDEX(address, level)\ |
| 97 | (((address) >> PT64_LEVEL_SHIFT(level)) & ((1 << PT64_LEVEL_BITS) - 1)) |
| 98 | |
| 99 | |
| 100 | #define PT32_LEVEL_BITS 10 |
| 101 | |
| 102 | #define PT32_LEVEL_SHIFT(level) \ |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 103 | (PAGE_SHIFT + (level - 1) * PT32_LEVEL_BITS) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 104 | |
Joerg Roedel | e04da98 | 2009-07-27 16:30:45 +0200 | [diff] [blame] | 105 | #define PT32_LVL_OFFSET_MASK(level) \ |
| 106 | (PT32_BASE_ADDR_MASK & ((1ULL << (PAGE_SHIFT + (((level) - 1) \ |
| 107 | * PT32_LEVEL_BITS))) - 1)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 108 | |
| 109 | #define PT32_INDEX(address, level)\ |
| 110 | (((address) >> PT32_LEVEL_SHIFT(level)) & ((1 << PT32_LEVEL_BITS) - 1)) |
| 111 | |
| 112 | |
Kai Huang | 8acc099 | 2019-01-15 17:28:40 +1300 | [diff] [blame] | 113 | #ifdef CONFIG_DYNAMIC_PHYSICAL_MASK |
| 114 | #define PT64_BASE_ADDR_MASK (physical_mask & ~(u64)(PAGE_SIZE-1)) |
| 115 | #else |
| 116 | #define PT64_BASE_ADDR_MASK (((1ULL << 52) - 1) & ~(u64)(PAGE_SIZE-1)) |
| 117 | #endif |
Joerg Roedel | e04da98 | 2009-07-27 16:30:45 +0200 | [diff] [blame] | 118 | #define PT64_LVL_ADDR_MASK(level) \ |
| 119 | (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + (((level) - 1) \ |
| 120 | * PT64_LEVEL_BITS))) - 1)) |
| 121 | #define PT64_LVL_OFFSET_MASK(level) \ |
| 122 | (PT64_BASE_ADDR_MASK & ((1ULL << (PAGE_SHIFT + (((level) - 1) \ |
| 123 | * PT64_LEVEL_BITS))) - 1)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 124 | |
| 125 | #define PT32_BASE_ADDR_MASK PAGE_MASK |
| 126 | #define PT32_DIR_BASE_ADDR_MASK \ |
| 127 | (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + PT32_LEVEL_BITS)) - 1)) |
Joerg Roedel | e04da98 | 2009-07-27 16:30:45 +0200 | [diff] [blame] | 128 | #define PT32_LVL_ADDR_MASK(level) \ |
| 129 | (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + (((level) - 1) \ |
| 130 | * PT32_LEVEL_BITS))) - 1)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 131 | |
Gleb Natapov | 5316622 | 2013-08-05 11:07:14 +0300 | [diff] [blame] | 132 | #define PT64_PERM_MASK (PT_PRESENT_MASK | PT_WRITABLE_MASK | shadow_user_mask \ |
Tom Lendacky | d0ec49d | 2017-07-17 16:10:27 -0500 | [diff] [blame] | 133 | | shadow_x_mask | shadow_nx_mask | shadow_me_mask) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 134 | |
Avi Kivity | fe135d2 | 2007-12-09 16:15:46 +0200 | [diff] [blame] | 135 | #define ACC_EXEC_MASK 1 |
| 136 | #define ACC_WRITE_MASK PT_WRITABLE_MASK |
| 137 | #define ACC_USER_MASK PT_USER_MASK |
| 138 | #define ACC_ALL (ACC_EXEC_MASK | ACC_WRITE_MASK | ACC_USER_MASK) |
| 139 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 140 | /* The mask for the R/X bits in EPT PTEs */ |
| 141 | #define PT64_EPT_READABLE_MASK 0x1ull |
| 142 | #define PT64_EPT_EXECUTABLE_MASK 0x4ull |
| 143 | |
Avi Kivity | 90bb6fc | 2009-12-31 12:10:16 +0200 | [diff] [blame] | 144 | #include <trace/events/kvm.h> |
| 145 | |
Avi Kivity | 0742017 | 2009-07-06 12:21:32 +0300 | [diff] [blame] | 146 | #define CREATE_TRACE_POINTS |
| 147 | #include "mmutrace.h" |
| 148 | |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 149 | #define SPTE_HOST_WRITEABLE (1ULL << PT_FIRST_AVAIL_BITS_SHIFT) |
| 150 | #define SPTE_MMU_WRITEABLE (1ULL << (PT_FIRST_AVAIL_BITS_SHIFT + 1)) |
Izik Eidus | 1403283 | 2009-09-23 21:47:17 +0300 | [diff] [blame] | 151 | |
Avi Kivity | 135f8c2 | 2008-08-21 17:49:56 +0300 | [diff] [blame] | 152 | #define SHADOW_PT_INDEX(addr, level) PT64_INDEX(addr, level) |
| 153 | |
Takuya Yoshikawa | 220f773 | 2012-03-21 23:49:39 +0900 | [diff] [blame] | 154 | /* make pte_list_desc fit well in cache line */ |
| 155 | #define PTE_LIST_EXT 3 |
| 156 | |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 157 | /* |
| 158 | * Return values of handle_mmio_page_fault and mmu.page_fault: |
| 159 | * RET_PF_RETRY: let CPU fault again on the address. |
| 160 | * RET_PF_EMULATE: mmio page fault, emulate the instruction directly. |
| 161 | * |
| 162 | * For handle_mmio_page_fault only: |
| 163 | * RET_PF_INVALID: the spte is invalid, let the real page fault path update it. |
| 164 | */ |
| 165 | enum { |
| 166 | RET_PF_RETRY = 0, |
| 167 | RET_PF_EMULATE = 1, |
| 168 | RET_PF_INVALID = 2, |
| 169 | }; |
| 170 | |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 171 | struct pte_list_desc { |
| 172 | u64 *sptes[PTE_LIST_EXT]; |
| 173 | struct pte_list_desc *more; |
Avi Kivity | cd4a4e5 | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 174 | }; |
| 175 | |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 176 | struct kvm_shadow_walk_iterator { |
| 177 | u64 addr; |
| 178 | hpa_t shadow_addr; |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 179 | u64 *sptep; |
Xiao Guangrong | dd3bfd5 | 2011-07-12 03:32:54 +0800 | [diff] [blame] | 180 | int level; |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 181 | unsigned index; |
| 182 | }; |
| 183 | |
Junaid Shahid | 9fa7211 | 2018-06-27 14:59:07 -0700 | [diff] [blame] | 184 | static const union kvm_mmu_page_role mmu_base_role_mask = { |
| 185 | .cr0_wp = 1, |
Sean Christopherson | 47c42e6 | 2019-03-07 15:27:44 -0800 | [diff] [blame] | 186 | .gpte_is_8_bytes = 1, |
Junaid Shahid | 9fa7211 | 2018-06-27 14:59:07 -0700 | [diff] [blame] | 187 | .nxe = 1, |
| 188 | .smep_andnot_wp = 1, |
| 189 | .smap_andnot_wp = 1, |
| 190 | .smm = 1, |
| 191 | .guest_mode = 1, |
| 192 | .ad_disabled = 1, |
| 193 | }; |
| 194 | |
Junaid Shahid | 7eb77e9 | 2018-06-27 14:59:16 -0700 | [diff] [blame] | 195 | #define for_each_shadow_entry_using_root(_vcpu, _root, _addr, _walker) \ |
| 196 | for (shadow_walk_init_using_root(&(_walker), (_vcpu), \ |
| 197 | (_root), (_addr)); \ |
| 198 | shadow_walk_okay(&(_walker)); \ |
| 199 | shadow_walk_next(&(_walker))) |
| 200 | |
| 201 | #define for_each_shadow_entry(_vcpu, _addr, _walker) \ |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 202 | for (shadow_walk_init(&(_walker), _vcpu, _addr); \ |
| 203 | shadow_walk_okay(&(_walker)); \ |
| 204 | shadow_walk_next(&(_walker))) |
| 205 | |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 206 | #define for_each_shadow_entry_lockless(_vcpu, _addr, _walker, spte) \ |
| 207 | for (shadow_walk_init(&(_walker), _vcpu, _addr); \ |
| 208 | shadow_walk_okay(&(_walker)) && \ |
| 209 | ({ spte = mmu_spte_get_lockless(_walker.sptep); 1; }); \ |
| 210 | __shadow_walk_next(&(_walker), spte)) |
| 211 | |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 212 | static struct kmem_cache *pte_list_desc_cache; |
Avi Kivity | d3d25b0 | 2007-05-30 12:34:53 +0300 | [diff] [blame] | 213 | static struct kmem_cache *mmu_page_header_cache; |
Dave Hansen | 45221ab | 2010-08-19 18:11:37 -0700 | [diff] [blame] | 214 | static struct percpu_counter kvm_total_used_mmu_pages; |
Avi Kivity | b5a33a7 | 2007-04-15 16:31:09 +0300 | [diff] [blame] | 215 | |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 216 | static u64 __read_mostly shadow_nx_mask; |
| 217 | static u64 __read_mostly shadow_x_mask; /* mutual exclusive with nx_mask */ |
| 218 | static u64 __read_mostly shadow_user_mask; |
| 219 | static u64 __read_mostly shadow_accessed_mask; |
| 220 | static u64 __read_mostly shadow_dirty_mask; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 221 | static u64 __read_mostly shadow_mmio_mask; |
Peter Feiner | dcdca5f | 2017-06-30 17:26:30 -0700 | [diff] [blame] | 222 | static u64 __read_mostly shadow_mmio_value; |
Bandan Das | ffb128c | 2016-07-12 18:18:49 -0400 | [diff] [blame] | 223 | static u64 __read_mostly shadow_present_mask; |
Tom Lendacky | d0ec49d | 2017-07-17 16:10:27 -0500 | [diff] [blame] | 224 | static u64 __read_mostly shadow_me_mask; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 225 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 226 | /* |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 227 | * SPTEs used by MMUs without A/D bits are marked with shadow_acc_track_value. |
| 228 | * Non-present SPTEs with shadow_acc_track_value set are in place for access |
| 229 | * tracking. |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 230 | */ |
| 231 | static u64 __read_mostly shadow_acc_track_mask; |
| 232 | static const u64 shadow_acc_track_value = SPTE_SPECIAL_MASK; |
| 233 | |
| 234 | /* |
| 235 | * The mask/shift to use for saving the original R/X bits when marking the PTE |
| 236 | * as not-present for access tracking purposes. We do not save the W bit as the |
| 237 | * PTEs being access tracked also need to be dirty tracked, so the W bit will be |
| 238 | * restored only when a write is attempted to the page. |
| 239 | */ |
| 240 | static const u64 shadow_acc_track_saved_bits_mask = PT64_EPT_READABLE_MASK | |
| 241 | PT64_EPT_EXECUTABLE_MASK; |
| 242 | static const u64 shadow_acc_track_saved_bits_shift = PT64_SECOND_AVAIL_BITS_SHIFT; |
| 243 | |
Junaid Shahid | 28a1f3a | 2018-08-14 10:15:34 -0700 | [diff] [blame] | 244 | /* |
| 245 | * This mask must be set on all non-zero Non-Present or Reserved SPTEs in order |
| 246 | * to guard against L1TF attacks. |
| 247 | */ |
| 248 | static u64 __read_mostly shadow_nonpresent_or_rsvd_mask; |
| 249 | |
| 250 | /* |
| 251 | * The number of high-order 1 bits to use in the mask above. |
| 252 | */ |
| 253 | static const u64 shadow_nonpresent_or_rsvd_mask_len = 5; |
| 254 | |
Sean Christopherson | daa07cb | 2018-09-25 13:20:00 -0700 | [diff] [blame] | 255 | /* |
| 256 | * In some cases, we need to preserve the GFN of a non-present or reserved |
| 257 | * SPTE when we usurp the upper five bits of the physical address space to |
| 258 | * defend against L1TF, e.g. for MMIO SPTEs. To preserve the GFN, we'll |
| 259 | * shift bits of the GFN that overlap with shadow_nonpresent_or_rsvd_mask |
| 260 | * left into the reserved bits, i.e. the GFN in the SPTE will be split into |
| 261 | * high and low parts. This mask covers the lower bits of the GFN. |
| 262 | */ |
| 263 | static u64 __read_mostly shadow_nonpresent_or_rsvd_lower_gfn_mask; |
| 264 | |
| 265 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 266 | static void mmu_spte_set(u64 *sptep, u64 spte); |
Junaid Shahid | 9fa7211 | 2018-06-27 14:59:07 -0700 | [diff] [blame] | 267 | static union kvm_mmu_page_role |
| 268 | kvm_mmu_calc_root_page_role(struct kvm_vcpu *vcpu); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 269 | |
Lan Tianyu | 40ef75a | 2018-12-06 21:21:08 +0800 | [diff] [blame] | 270 | |
| 271 | static inline bool kvm_available_flush_tlb_with_range(void) |
| 272 | { |
| 273 | return kvm_x86_ops->tlb_remote_flush_with_range; |
| 274 | } |
| 275 | |
| 276 | static void kvm_flush_remote_tlbs_with_range(struct kvm *kvm, |
| 277 | struct kvm_tlb_range *range) |
| 278 | { |
| 279 | int ret = -ENOTSUPP; |
| 280 | |
| 281 | if (range && kvm_x86_ops->tlb_remote_flush_with_range) |
| 282 | ret = kvm_x86_ops->tlb_remote_flush_with_range(kvm, range); |
| 283 | |
| 284 | if (ret) |
| 285 | kvm_flush_remote_tlbs(kvm); |
| 286 | } |
| 287 | |
| 288 | static void kvm_flush_remote_tlbs_with_address(struct kvm *kvm, |
| 289 | u64 start_gfn, u64 pages) |
| 290 | { |
| 291 | struct kvm_tlb_range range; |
| 292 | |
| 293 | range.start_gfn = start_gfn; |
| 294 | range.pages = pages; |
| 295 | |
| 296 | kvm_flush_remote_tlbs_with_range(kvm, &range); |
| 297 | } |
| 298 | |
Peter Feiner | dcdca5f | 2017-06-30 17:26:30 -0700 | [diff] [blame] | 299 | void kvm_mmu_set_mmio_spte_mask(u64 mmio_mask, u64 mmio_value) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 300 | { |
Peter Feiner | dcdca5f | 2017-06-30 17:26:30 -0700 | [diff] [blame] | 301 | BUG_ON((mmio_mask & mmio_value) != mmio_value); |
| 302 | shadow_mmio_value = mmio_value | SPTE_SPECIAL_MASK; |
Junaid Shahid | 312b616 | 2016-12-21 20:29:29 -0800 | [diff] [blame] | 303 | shadow_mmio_mask = mmio_mask | SPTE_SPECIAL_MASK; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 304 | } |
| 305 | EXPORT_SYMBOL_GPL(kvm_mmu_set_mmio_spte_mask); |
| 306 | |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 307 | static inline bool sp_ad_disabled(struct kvm_mmu_page *sp) |
| 308 | { |
| 309 | return sp->role.ad_disabled; |
| 310 | } |
| 311 | |
| 312 | static inline bool spte_ad_enabled(u64 spte) |
| 313 | { |
| 314 | MMU_WARN_ON((spte & shadow_mmio_mask) == shadow_mmio_value); |
| 315 | return !(spte & shadow_acc_track_value); |
| 316 | } |
| 317 | |
| 318 | static inline u64 spte_shadow_accessed_mask(u64 spte) |
| 319 | { |
| 320 | MMU_WARN_ON((spte & shadow_mmio_mask) == shadow_mmio_value); |
| 321 | return spte_ad_enabled(spte) ? shadow_accessed_mask : 0; |
| 322 | } |
| 323 | |
| 324 | static inline u64 spte_shadow_dirty_mask(u64 spte) |
| 325 | { |
| 326 | MMU_WARN_ON((spte & shadow_mmio_mask) == shadow_mmio_value); |
| 327 | return spte_ad_enabled(spte) ? shadow_dirty_mask : 0; |
| 328 | } |
| 329 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 330 | static inline bool is_access_track_spte(u64 spte) |
| 331 | { |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 332 | return !spte_ad_enabled(spte) && (spte & shadow_acc_track_mask) == 0; |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 333 | } |
| 334 | |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 335 | /* |
Sean Christopherson | cae7ed3 | 2019-02-05 13:01:16 -0800 | [diff] [blame] | 336 | * Due to limited space in PTEs, the MMIO generation is a 19 bit subset of |
| 337 | * the memslots generation and is derived as follows: |
David Matlack | ee3d157 | 2014-08-18 15:46:06 -0700 | [diff] [blame] | 338 | * |
Sean Christopherson | 164bf7e | 2019-02-05 13:01:18 -0800 | [diff] [blame] | 339 | * Bits 0-8 of the MMIO generation are propagated to spte bits 3-11 |
| 340 | * Bits 9-18 of the MMIO generation are propagated to spte bits 52-61 |
Sean Christopherson | cae7ed3 | 2019-02-05 13:01:16 -0800 | [diff] [blame] | 341 | * |
Sean Christopherson | 164bf7e | 2019-02-05 13:01:18 -0800 | [diff] [blame] | 342 | * The KVM_MEMSLOT_GEN_UPDATE_IN_PROGRESS flag is intentionally not included in |
| 343 | * the MMIO generation number, as doing so would require stealing a bit from |
| 344 | * the "real" generation number and thus effectively halve the maximum number |
| 345 | * of MMIO generations that can be handled before encountering a wrap (which |
| 346 | * requires a full MMU zap). The flag is instead explicitly queried when |
| 347 | * checking for MMIO spte cache hits. |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 348 | */ |
Sean Christopherson | 164bf7e | 2019-02-05 13:01:18 -0800 | [diff] [blame] | 349 | #define MMIO_SPTE_GEN_MASK GENMASK_ULL(18, 0) |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 350 | |
Sean Christopherson | cae7ed3 | 2019-02-05 13:01:16 -0800 | [diff] [blame] | 351 | #define MMIO_SPTE_GEN_LOW_START 3 |
| 352 | #define MMIO_SPTE_GEN_LOW_END 11 |
| 353 | #define MMIO_SPTE_GEN_LOW_MASK GENMASK_ULL(MMIO_SPTE_GEN_LOW_END, \ |
| 354 | MMIO_SPTE_GEN_LOW_START) |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 355 | |
Sean Christopherson | cae7ed3 | 2019-02-05 13:01:16 -0800 | [diff] [blame] | 356 | #define MMIO_SPTE_GEN_HIGH_START 52 |
| 357 | #define MMIO_SPTE_GEN_HIGH_END 61 |
| 358 | #define MMIO_SPTE_GEN_HIGH_MASK GENMASK_ULL(MMIO_SPTE_GEN_HIGH_END, \ |
| 359 | MMIO_SPTE_GEN_HIGH_START) |
Sean Christopherson | 5192f9b | 2019-02-05 13:01:15 -0800 | [diff] [blame] | 360 | static u64 generation_mmio_spte_mask(u64 gen) |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 361 | { |
| 362 | u64 mask; |
| 363 | |
Sean Christopherson | cae7ed3 | 2019-02-05 13:01:16 -0800 | [diff] [blame] | 364 | WARN_ON(gen & ~MMIO_SPTE_GEN_MASK); |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 365 | |
Sean Christopherson | cae7ed3 | 2019-02-05 13:01:16 -0800 | [diff] [blame] | 366 | mask = (gen << MMIO_SPTE_GEN_LOW_START) & MMIO_SPTE_GEN_LOW_MASK; |
| 367 | mask |= (gen << MMIO_SPTE_GEN_HIGH_START) & MMIO_SPTE_GEN_HIGH_MASK; |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 368 | return mask; |
| 369 | } |
| 370 | |
Sean Christopherson | 5192f9b | 2019-02-05 13:01:15 -0800 | [diff] [blame] | 371 | static u64 get_mmio_spte_generation(u64 spte) |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 372 | { |
Sean Christopherson | 5192f9b | 2019-02-05 13:01:15 -0800 | [diff] [blame] | 373 | u64 gen; |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 374 | |
| 375 | spte &= ~shadow_mmio_mask; |
| 376 | |
Sean Christopherson | cae7ed3 | 2019-02-05 13:01:16 -0800 | [diff] [blame] | 377 | gen = (spte & MMIO_SPTE_GEN_LOW_MASK) >> MMIO_SPTE_GEN_LOW_START; |
| 378 | gen |= (spte & MMIO_SPTE_GEN_HIGH_MASK) >> MMIO_SPTE_GEN_HIGH_START; |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 379 | return gen; |
| 380 | } |
| 381 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 382 | static void mark_mmio_spte(struct kvm_vcpu *vcpu, u64 *sptep, u64 gfn, |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 383 | unsigned access) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 384 | { |
Sean Christopherson | cae7ed3 | 2019-02-05 13:01:16 -0800 | [diff] [blame] | 385 | u64 gen = kvm_vcpu_memslots(vcpu)->generation & MMIO_SPTE_GEN_MASK; |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 386 | u64 mask = generation_mmio_spte_mask(gen); |
Junaid Shahid | 28a1f3a | 2018-08-14 10:15:34 -0700 | [diff] [blame] | 387 | u64 gpa = gfn << PAGE_SHIFT; |
Takuya Yoshikawa | 95b0430 | 2013-03-12 17:44:40 +0900 | [diff] [blame] | 388 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 389 | access &= ACC_WRITE_MASK | ACC_USER_MASK; |
Junaid Shahid | 28a1f3a | 2018-08-14 10:15:34 -0700 | [diff] [blame] | 390 | mask |= shadow_mmio_value | access; |
| 391 | mask |= gpa | shadow_nonpresent_or_rsvd_mask; |
| 392 | mask |= (gpa & shadow_nonpresent_or_rsvd_mask) |
| 393 | << shadow_nonpresent_or_rsvd_mask_len; |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 394 | |
Sean Christopherson | 4771450 | 2019-02-05 13:01:23 -0800 | [diff] [blame] | 395 | page_header(__pa(sptep))->mmio_cached = true; |
| 396 | |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 397 | trace_mark_mmio_spte(sptep, gfn, access, gen); |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 398 | mmu_spte_set(sptep, mask); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 399 | } |
| 400 | |
| 401 | static bool is_mmio_spte(u64 spte) |
| 402 | { |
Peter Feiner | dcdca5f | 2017-06-30 17:26:30 -0700 | [diff] [blame] | 403 | return (spte & shadow_mmio_mask) == shadow_mmio_value; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 404 | } |
| 405 | |
| 406 | static gfn_t get_mmio_spte_gfn(u64 spte) |
| 407 | { |
Sean Christopherson | daa07cb | 2018-09-25 13:20:00 -0700 | [diff] [blame] | 408 | u64 gpa = spte & shadow_nonpresent_or_rsvd_lower_gfn_mask; |
Junaid Shahid | 28a1f3a | 2018-08-14 10:15:34 -0700 | [diff] [blame] | 409 | |
| 410 | gpa |= (spte >> shadow_nonpresent_or_rsvd_mask_len) |
| 411 | & shadow_nonpresent_or_rsvd_mask; |
| 412 | |
| 413 | return gpa >> PAGE_SHIFT; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 414 | } |
| 415 | |
| 416 | static unsigned get_mmio_spte_access(u64 spte) |
| 417 | { |
Sean Christopherson | cae7ed3 | 2019-02-05 13:01:16 -0800 | [diff] [blame] | 418 | u64 mask = generation_mmio_spte_mask(MMIO_SPTE_GEN_MASK) | shadow_mmio_mask; |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 419 | return (spte & ~mask) & ~PAGE_MASK; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 420 | } |
| 421 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 422 | static bool set_mmio_spte(struct kvm_vcpu *vcpu, u64 *sptep, gfn_t gfn, |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 423 | kvm_pfn_t pfn, unsigned access) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 424 | { |
| 425 | if (unlikely(is_noslot_pfn(pfn))) { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 426 | mark_mmio_spte(vcpu, sptep, gfn, access); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 427 | return true; |
| 428 | } |
| 429 | |
| 430 | return false; |
| 431 | } |
Avi Kivity | c7addb9 | 2007-09-16 18:58:32 +0200 | [diff] [blame] | 432 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 433 | static bool check_mmio_spte(struct kvm_vcpu *vcpu, u64 spte) |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 434 | { |
Sean Christopherson | cae7ed3 | 2019-02-05 13:01:16 -0800 | [diff] [blame] | 435 | u64 kvm_gen, spte_gen, gen; |
Xiao Guangrong | 089504c | 2013-06-07 16:51:27 +0800 | [diff] [blame] | 436 | |
Sean Christopherson | cae7ed3 | 2019-02-05 13:01:16 -0800 | [diff] [blame] | 437 | gen = kvm_vcpu_memslots(vcpu)->generation; |
| 438 | if (unlikely(gen & KVM_MEMSLOT_GEN_UPDATE_IN_PROGRESS)) |
| 439 | return false; |
| 440 | |
| 441 | kvm_gen = gen & MMIO_SPTE_GEN_MASK; |
Xiao Guangrong | 089504c | 2013-06-07 16:51:27 +0800 | [diff] [blame] | 442 | spte_gen = get_mmio_spte_generation(spte); |
| 443 | |
| 444 | trace_check_mmio_spte(spte, kvm_gen, spte_gen); |
| 445 | return likely(kvm_gen == spte_gen); |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 446 | } |
| 447 | |
Peter Feiner | ce00053 | 2017-06-30 17:26:29 -0700 | [diff] [blame] | 448 | /* |
| 449 | * Sets the shadow PTE masks used by the MMU. |
| 450 | * |
| 451 | * Assumptions: |
| 452 | * - Setting either @accessed_mask or @dirty_mask requires setting both |
| 453 | * - At least one of @accessed_mask or @acc_track_mask must be set |
| 454 | */ |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 455 | void kvm_mmu_set_mask_ptes(u64 user_mask, u64 accessed_mask, |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 456 | u64 dirty_mask, u64 nx_mask, u64 x_mask, u64 p_mask, |
Tom Lendacky | d0ec49d | 2017-07-17 16:10:27 -0500 | [diff] [blame] | 457 | u64 acc_track_mask, u64 me_mask) |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 458 | { |
Peter Feiner | ce00053 | 2017-06-30 17:26:29 -0700 | [diff] [blame] | 459 | BUG_ON(!dirty_mask != !accessed_mask); |
| 460 | BUG_ON(!accessed_mask && !acc_track_mask); |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 461 | BUG_ON(acc_track_mask & shadow_acc_track_value); |
Junaid Shahid | 312b616 | 2016-12-21 20:29:29 -0800 | [diff] [blame] | 462 | |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 463 | shadow_user_mask = user_mask; |
| 464 | shadow_accessed_mask = accessed_mask; |
| 465 | shadow_dirty_mask = dirty_mask; |
| 466 | shadow_nx_mask = nx_mask; |
| 467 | shadow_x_mask = x_mask; |
Bandan Das | ffb128c | 2016-07-12 18:18:49 -0400 | [diff] [blame] | 468 | shadow_present_mask = p_mask; |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 469 | shadow_acc_track_mask = acc_track_mask; |
Tom Lendacky | d0ec49d | 2017-07-17 16:10:27 -0500 | [diff] [blame] | 470 | shadow_me_mask = me_mask; |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 471 | } |
| 472 | EXPORT_SYMBOL_GPL(kvm_mmu_set_mask_ptes); |
| 473 | |
Junaid Shahid | 28a1f3a | 2018-08-14 10:15:34 -0700 | [diff] [blame] | 474 | static void kvm_mmu_reset_all_pte_masks(void) |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 475 | { |
Sean Christopherson | daa07cb | 2018-09-25 13:20:00 -0700 | [diff] [blame] | 476 | u8 low_phys_bits; |
| 477 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 478 | shadow_user_mask = 0; |
| 479 | shadow_accessed_mask = 0; |
| 480 | shadow_dirty_mask = 0; |
| 481 | shadow_nx_mask = 0; |
| 482 | shadow_x_mask = 0; |
| 483 | shadow_mmio_mask = 0; |
| 484 | shadow_present_mask = 0; |
| 485 | shadow_acc_track_mask = 0; |
Junaid Shahid | 28a1f3a | 2018-08-14 10:15:34 -0700 | [diff] [blame] | 486 | |
| 487 | /* |
| 488 | * If the CPU has 46 or less physical address bits, then set an |
| 489 | * appropriate mask to guard against L1TF attacks. Otherwise, it is |
| 490 | * assumed that the CPU is not vulnerable to L1TF. |
Kai Huang | 61455bf | 2019-05-03 01:40:25 -0700 | [diff] [blame] | 491 | * |
| 492 | * Some Intel CPUs address the L1 cache using more PA bits than are |
| 493 | * reported by CPUID. Use the PA width of the L1 cache when possible |
| 494 | * to achieve more effective mitigation, e.g. if system RAM overlaps |
| 495 | * the most significant bits of legal physical address space. |
Junaid Shahid | 28a1f3a | 2018-08-14 10:15:34 -0700 | [diff] [blame] | 496 | */ |
Kai Huang | 61455bf | 2019-05-03 01:40:25 -0700 | [diff] [blame] | 497 | shadow_nonpresent_or_rsvd_mask = 0; |
| 498 | low_phys_bits = boot_cpu_data.x86_cache_bits; |
| 499 | if (boot_cpu_data.x86_cache_bits < |
Sean Christopherson | daa07cb | 2018-09-25 13:20:00 -0700 | [diff] [blame] | 500 | 52 - shadow_nonpresent_or_rsvd_mask_len) { |
Junaid Shahid | 28a1f3a | 2018-08-14 10:15:34 -0700 | [diff] [blame] | 501 | shadow_nonpresent_or_rsvd_mask = |
Kai Huang | 61455bf | 2019-05-03 01:40:25 -0700 | [diff] [blame] | 502 | rsvd_bits(boot_cpu_data.x86_cache_bits - |
Junaid Shahid | 28a1f3a | 2018-08-14 10:15:34 -0700 | [diff] [blame] | 503 | shadow_nonpresent_or_rsvd_mask_len, |
Kai Huang | 61455bf | 2019-05-03 01:40:25 -0700 | [diff] [blame] | 504 | boot_cpu_data.x86_cache_bits - 1); |
Sean Christopherson | daa07cb | 2018-09-25 13:20:00 -0700 | [diff] [blame] | 505 | low_phys_bits -= shadow_nonpresent_or_rsvd_mask_len; |
Kai Huang | 61455bf | 2019-05-03 01:40:25 -0700 | [diff] [blame] | 506 | } else |
| 507 | WARN_ON_ONCE(boot_cpu_has_bug(X86_BUG_L1TF)); |
| 508 | |
Sean Christopherson | daa07cb | 2018-09-25 13:20:00 -0700 | [diff] [blame] | 509 | shadow_nonpresent_or_rsvd_lower_gfn_mask = |
| 510 | GENMASK_ULL(low_phys_bits - 1, PAGE_SHIFT); |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 511 | } |
| 512 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 513 | static int is_cpuid_PSE36(void) |
| 514 | { |
| 515 | return 1; |
| 516 | } |
| 517 | |
Avi Kivity | 73b1087 | 2007-01-26 00:56:41 -0800 | [diff] [blame] | 518 | static int is_nx(struct kvm_vcpu *vcpu) |
| 519 | { |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 520 | return vcpu->arch.efer & EFER_NX; |
Avi Kivity | 73b1087 | 2007-01-26 00:56:41 -0800 | [diff] [blame] | 521 | } |
| 522 | |
Avi Kivity | c7addb9 | 2007-09-16 18:58:32 +0200 | [diff] [blame] | 523 | static int is_shadow_present_pte(u64 pte) |
| 524 | { |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 525 | return (pte != 0) && !is_mmio_spte(pte); |
Avi Kivity | c7addb9 | 2007-09-16 18:58:32 +0200 | [diff] [blame] | 526 | } |
| 527 | |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 528 | static int is_large_pte(u64 pte) |
| 529 | { |
| 530 | return pte & PT_PAGE_SIZE_MASK; |
| 531 | } |
| 532 | |
Marcelo Tosatti | 776e663 | 2009-06-10 12:27:03 -0300 | [diff] [blame] | 533 | static int is_last_spte(u64 pte, int level) |
| 534 | { |
| 535 | if (level == PT_PAGE_TABLE_LEVEL) |
| 536 | return 1; |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 537 | if (is_large_pte(pte)) |
Marcelo Tosatti | 776e663 | 2009-06-10 12:27:03 -0300 | [diff] [blame] | 538 | return 1; |
| 539 | return 0; |
| 540 | } |
| 541 | |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 542 | static bool is_executable_pte(u64 spte) |
| 543 | { |
| 544 | return (spte & (shadow_x_mask | shadow_nx_mask)) == shadow_x_mask; |
| 545 | } |
| 546 | |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 547 | static kvm_pfn_t spte_to_pfn(u64 pte) |
Avi Kivity | 0b49ea8 | 2008-03-23 15:06:23 +0200 | [diff] [blame] | 548 | { |
Anthony Liguori | 35149e2 | 2008-04-02 14:46:56 -0500 | [diff] [blame] | 549 | return (pte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT; |
Avi Kivity | 0b49ea8 | 2008-03-23 15:06:23 +0200 | [diff] [blame] | 550 | } |
| 551 | |
Avi Kivity | da928521 | 2007-11-21 13:54:47 +0200 | [diff] [blame] | 552 | static gfn_t pse36_gfn_delta(u32 gpte) |
| 553 | { |
| 554 | int shift = 32 - PT32_DIR_PSE36_SHIFT - PAGE_SHIFT; |
| 555 | |
| 556 | return (gpte & PT32_DIR_PSE36_MASK) << shift; |
| 557 | } |
| 558 | |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 559 | #ifdef CONFIG_X86_64 |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 560 | static void __set_spte(u64 *sptep, u64 spte) |
Avi Kivity | e663ee6 | 2007-05-31 15:46:04 +0300 | [diff] [blame] | 561 | { |
Nadav Amit | b19ee2f | 2016-05-11 08:04:29 -0700 | [diff] [blame] | 562 | WRITE_ONCE(*sptep, spte); |
Avi Kivity | e663ee6 | 2007-05-31 15:46:04 +0300 | [diff] [blame] | 563 | } |
| 564 | |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 565 | static void __update_clear_spte_fast(u64 *sptep, u64 spte) |
Avi Kivity | a9221dd | 2010-06-06 14:48:06 +0300 | [diff] [blame] | 566 | { |
Nadav Amit | b19ee2f | 2016-05-11 08:04:29 -0700 | [diff] [blame] | 567 | WRITE_ONCE(*sptep, spte); |
Avi Kivity | a9221dd | 2010-06-06 14:48:06 +0300 | [diff] [blame] | 568 | } |
| 569 | |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 570 | static u64 __update_clear_spte_slow(u64 *sptep, u64 spte) |
| 571 | { |
| 572 | return xchg(sptep, spte); |
| 573 | } |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 574 | |
| 575 | static u64 __get_spte_lockless(u64 *sptep) |
| 576 | { |
Mark Rutland | 6aa7de0 | 2017-10-23 14:07:29 -0700 | [diff] [blame] | 577 | return READ_ONCE(*sptep); |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 578 | } |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 579 | #else |
| 580 | union split_spte { |
| 581 | struct { |
| 582 | u32 spte_low; |
| 583 | u32 spte_high; |
| 584 | }; |
| 585 | u64 spte; |
| 586 | }; |
| 587 | |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 588 | static void count_spte_clear(u64 *sptep, u64 spte) |
| 589 | { |
| 590 | struct kvm_mmu_page *sp = page_header(__pa(sptep)); |
| 591 | |
| 592 | if (is_shadow_present_pte(spte)) |
| 593 | return; |
| 594 | |
| 595 | /* Ensure the spte is completely set before we increase the count */ |
| 596 | smp_wmb(); |
| 597 | sp->clear_spte_count++; |
| 598 | } |
| 599 | |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 600 | static void __set_spte(u64 *sptep, u64 spte) |
| 601 | { |
| 602 | union split_spte *ssptep, sspte; |
| 603 | |
| 604 | ssptep = (union split_spte *)sptep; |
| 605 | sspte = (union split_spte)spte; |
| 606 | |
| 607 | ssptep->spte_high = sspte.spte_high; |
| 608 | |
| 609 | /* |
| 610 | * If we map the spte from nonpresent to present, We should store |
| 611 | * the high bits firstly, then set present bit, so cpu can not |
| 612 | * fetch this spte while we are setting the spte. |
| 613 | */ |
| 614 | smp_wmb(); |
| 615 | |
Nadav Amit | b19ee2f | 2016-05-11 08:04:29 -0700 | [diff] [blame] | 616 | WRITE_ONCE(ssptep->spte_low, sspte.spte_low); |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 617 | } |
| 618 | |
| 619 | static void __update_clear_spte_fast(u64 *sptep, u64 spte) |
| 620 | { |
| 621 | union split_spte *ssptep, sspte; |
| 622 | |
| 623 | ssptep = (union split_spte *)sptep; |
| 624 | sspte = (union split_spte)spte; |
| 625 | |
Nadav Amit | b19ee2f | 2016-05-11 08:04:29 -0700 | [diff] [blame] | 626 | WRITE_ONCE(ssptep->spte_low, sspte.spte_low); |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 627 | |
| 628 | /* |
| 629 | * If we map the spte from present to nonpresent, we should clear |
| 630 | * present bit firstly to avoid vcpu fetch the old high bits. |
| 631 | */ |
| 632 | smp_wmb(); |
| 633 | |
| 634 | ssptep->spte_high = sspte.spte_high; |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 635 | count_spte_clear(sptep, spte); |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 636 | } |
| 637 | |
| 638 | static u64 __update_clear_spte_slow(u64 *sptep, u64 spte) |
| 639 | { |
| 640 | union split_spte *ssptep, sspte, orig; |
| 641 | |
| 642 | ssptep = (union split_spte *)sptep; |
| 643 | sspte = (union split_spte)spte; |
| 644 | |
| 645 | /* xchg acts as a barrier before the setting of the high bits */ |
| 646 | orig.spte_low = xchg(&ssptep->spte_low, sspte.spte_low); |
Zhao Jin | 41bc318 | 2011-09-19 12:19:51 +0800 | [diff] [blame] | 647 | orig.spte_high = ssptep->spte_high; |
| 648 | ssptep->spte_high = sspte.spte_high; |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 649 | count_spte_clear(sptep, spte); |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 650 | |
| 651 | return orig.spte; |
| 652 | } |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 653 | |
| 654 | /* |
| 655 | * The idea using the light way get the spte on x86_32 guest is from |
| 656 | * gup_get_pte(arch/x86/mm/gup.c). |
Xiao Guangrong | accaefe | 2013-06-19 17:09:20 +0800 | [diff] [blame] | 657 | * |
| 658 | * An spte tlb flush may be pending, because kvm_set_pte_rmapp |
| 659 | * coalesces them and we are running out of the MMU lock. Therefore |
| 660 | * we need to protect against in-progress updates of the spte. |
| 661 | * |
| 662 | * Reading the spte while an update is in progress may get the old value |
| 663 | * for the high part of the spte. The race is fine for a present->non-present |
| 664 | * change (because the high part of the spte is ignored for non-present spte), |
| 665 | * but for a present->present change we must reread the spte. |
| 666 | * |
| 667 | * All such changes are done in two steps (present->non-present and |
| 668 | * non-present->present), hence it is enough to count the number of |
| 669 | * present->non-present updates: if it changed while reading the spte, |
| 670 | * we might have hit the race. This is done using clear_spte_count. |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 671 | */ |
| 672 | static u64 __get_spte_lockless(u64 *sptep) |
| 673 | { |
| 674 | struct kvm_mmu_page *sp = page_header(__pa(sptep)); |
| 675 | union split_spte spte, *orig = (union split_spte *)sptep; |
| 676 | int count; |
| 677 | |
| 678 | retry: |
| 679 | count = sp->clear_spte_count; |
| 680 | smp_rmb(); |
| 681 | |
| 682 | spte.spte_low = orig->spte_low; |
| 683 | smp_rmb(); |
| 684 | |
| 685 | spte.spte_high = orig->spte_high; |
| 686 | smp_rmb(); |
| 687 | |
| 688 | if (unlikely(spte.spte_low != orig->spte_low || |
| 689 | count != sp->clear_spte_count)) |
| 690 | goto retry; |
| 691 | |
| 692 | return spte.spte; |
| 693 | } |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 694 | #endif |
| 695 | |
Junaid Shahid | ea4114b | 2016-12-06 16:46:11 -0800 | [diff] [blame] | 696 | static bool spte_can_locklessly_be_made_writable(u64 spte) |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 697 | { |
Gleb Natapov | feb3eb7 | 2013-01-30 16:45:00 +0200 | [diff] [blame] | 698 | return (spte & (SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE)) == |
| 699 | (SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE); |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 700 | } |
| 701 | |
Xiao Guangrong | 8672b72 | 2010-08-02 16:14:04 +0800 | [diff] [blame] | 702 | static bool spte_has_volatile_bits(u64 spte) |
| 703 | { |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 704 | if (!is_shadow_present_pte(spte)) |
| 705 | return false; |
| 706 | |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 707 | /* |
Adam Buchbinder | 6a6256f | 2016-02-23 15:34:30 -0800 | [diff] [blame] | 708 | * Always atomically update spte if it can be updated |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 709 | * out of mmu-lock, it can ensure dirty bit is not lost, |
| 710 | * also, it can help us to get a stable is_writable_pte() |
| 711 | * to ensure tlb flush is not missed. |
| 712 | */ |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 713 | if (spte_can_locklessly_be_made_writable(spte) || |
| 714 | is_access_track_spte(spte)) |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 715 | return true; |
| 716 | |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 717 | if (spte_ad_enabled(spte)) { |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 718 | if ((spte & shadow_accessed_mask) == 0 || |
| 719 | (is_writable_pte(spte) && (spte & shadow_dirty_mask) == 0)) |
| 720 | return true; |
| 721 | } |
Xiao Guangrong | 8672b72 | 2010-08-02 16:14:04 +0800 | [diff] [blame] | 722 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 723 | return false; |
Xiao Guangrong | 8672b72 | 2010-08-02 16:14:04 +0800 | [diff] [blame] | 724 | } |
| 725 | |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 726 | static bool is_accessed_spte(u64 spte) |
Xiao Guangrong | 4132779 | 2010-08-02 16:15:08 +0800 | [diff] [blame] | 727 | { |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 728 | u64 accessed_mask = spte_shadow_accessed_mask(spte); |
| 729 | |
| 730 | return accessed_mask ? spte & accessed_mask |
| 731 | : !is_access_track_spte(spte); |
Xiao Guangrong | 4132779 | 2010-08-02 16:15:08 +0800 | [diff] [blame] | 732 | } |
| 733 | |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 734 | static bool is_dirty_spte(u64 spte) |
Kai Huang | 7e71a59 | 2015-01-09 16:44:30 +0800 | [diff] [blame] | 735 | { |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 736 | u64 dirty_mask = spte_shadow_dirty_mask(spte); |
| 737 | |
| 738 | return dirty_mask ? spte & dirty_mask : spte & PT_WRITABLE_MASK; |
Kai Huang | 7e71a59 | 2015-01-09 16:44:30 +0800 | [diff] [blame] | 739 | } |
| 740 | |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 741 | /* Rules for using mmu_spte_set: |
| 742 | * Set the sptep from nonpresent to present. |
| 743 | * Note: the sptep being assigned *must* be either not present |
| 744 | * or in a state where the hardware will not attempt to update |
| 745 | * the spte. |
| 746 | */ |
| 747 | static void mmu_spte_set(u64 *sptep, u64 new_spte) |
| 748 | { |
| 749 | WARN_ON(is_shadow_present_pte(*sptep)); |
| 750 | __set_spte(sptep, new_spte); |
| 751 | } |
| 752 | |
Junaid Shahid | f39a058 | 2016-12-06 16:46:14 -0800 | [diff] [blame] | 753 | /* |
| 754 | * Update the SPTE (excluding the PFN), but do not track changes in its |
| 755 | * accessed/dirty status. |
| 756 | */ |
| 757 | static u64 mmu_spte_update_no_track(u64 *sptep, u64 new_spte) |
| 758 | { |
| 759 | u64 old_spte = *sptep; |
| 760 | |
| 761 | WARN_ON(!is_shadow_present_pte(new_spte)); |
| 762 | |
| 763 | if (!is_shadow_present_pte(old_spte)) { |
| 764 | mmu_spte_set(sptep, new_spte); |
| 765 | return old_spte; |
| 766 | } |
| 767 | |
| 768 | if (!spte_has_volatile_bits(old_spte)) |
| 769 | __update_clear_spte_fast(sptep, new_spte); |
| 770 | else |
| 771 | old_spte = __update_clear_spte_slow(sptep, new_spte); |
| 772 | |
| 773 | WARN_ON(spte_to_pfn(old_spte) != spte_to_pfn(new_spte)); |
| 774 | |
| 775 | return old_spte; |
| 776 | } |
| 777 | |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 778 | /* Rules for using mmu_spte_update: |
Andrea Gelmini | bb3541f | 2016-05-21 14:14:44 +0200 | [diff] [blame] | 779 | * Update the state bits, it means the mapped pfn is not changed. |
Xiao Guangrong | 6e7d035 | 2012-06-20 15:58:33 +0800 | [diff] [blame] | 780 | * |
| 781 | * Whenever we overwrite a writable spte with a read-only one we |
| 782 | * should flush remote TLBs. Otherwise rmap_write_protect |
| 783 | * will find a read-only spte, even though the writable spte |
| 784 | * might be cached on a CPU's TLB, the return value indicates this |
| 785 | * case. |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 786 | * |
| 787 | * Returns true if the TLB needs to be flushed |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 788 | */ |
Xiao Guangrong | 6e7d035 | 2012-06-20 15:58:33 +0800 | [diff] [blame] | 789 | static bool mmu_spte_update(u64 *sptep, u64 new_spte) |
Avi Kivity | b79b93f | 2010-06-06 15:46:44 +0300 | [diff] [blame] | 790 | { |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 791 | bool flush = false; |
Junaid Shahid | f39a058 | 2016-12-06 16:46:14 -0800 | [diff] [blame] | 792 | u64 old_spte = mmu_spte_update_no_track(sptep, new_spte); |
Avi Kivity | b79b93f | 2010-06-06 15:46:44 +0300 | [diff] [blame] | 793 | |
Junaid Shahid | f39a058 | 2016-12-06 16:46:14 -0800 | [diff] [blame] | 794 | if (!is_shadow_present_pte(old_spte)) |
| 795 | return false; |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 796 | |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 797 | /* |
| 798 | * For the spte updated out of mmu-lock is safe, since |
Adam Buchbinder | 6a6256f | 2016-02-23 15:34:30 -0800 | [diff] [blame] | 799 | * we always atomically update it, see the comments in |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 800 | * spte_has_volatile_bits(). |
| 801 | */ |
Junaid Shahid | ea4114b | 2016-12-06 16:46:11 -0800 | [diff] [blame] | 802 | if (spte_can_locklessly_be_made_writable(old_spte) && |
Xiao Guangrong | 7f31c95 | 2014-04-17 17:06:15 +0800 | [diff] [blame] | 803 | !is_writable_pte(new_spte)) |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 804 | flush = true; |
Xiao Guangrong | 4132779 | 2010-08-02 16:15:08 +0800 | [diff] [blame] | 805 | |
Kai Huang | 7e71a59 | 2015-01-09 16:44:30 +0800 | [diff] [blame] | 806 | /* |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 807 | * Flush TLB when accessed/dirty states are changed in the page tables, |
Kai Huang | 7e71a59 | 2015-01-09 16:44:30 +0800 | [diff] [blame] | 808 | * to guarantee consistency between TLB and page tables. |
| 809 | */ |
Kai Huang | 7e71a59 | 2015-01-09 16:44:30 +0800 | [diff] [blame] | 810 | |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 811 | if (is_accessed_spte(old_spte) && !is_accessed_spte(new_spte)) { |
| 812 | flush = true; |
Xiao Guangrong | 4132779 | 2010-08-02 16:15:08 +0800 | [diff] [blame] | 813 | kvm_set_pfn_accessed(spte_to_pfn(old_spte)); |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 814 | } |
Xiao Guangrong | 6e7d035 | 2012-06-20 15:58:33 +0800 | [diff] [blame] | 815 | |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 816 | if (is_dirty_spte(old_spte) && !is_dirty_spte(new_spte)) { |
| 817 | flush = true; |
| 818 | kvm_set_pfn_dirty(spte_to_pfn(old_spte)); |
| 819 | } |
| 820 | |
| 821 | return flush; |
Avi Kivity | b79b93f | 2010-06-06 15:46:44 +0300 | [diff] [blame] | 822 | } |
| 823 | |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 824 | /* |
| 825 | * Rules for using mmu_spte_clear_track_bits: |
| 826 | * It sets the sptep from present to nonpresent, and track the |
| 827 | * state bits, it is used to clear the last level sptep. |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 828 | * Returns non-zero if the PTE was previously valid. |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 829 | */ |
| 830 | static int mmu_spte_clear_track_bits(u64 *sptep) |
| 831 | { |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 832 | kvm_pfn_t pfn; |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 833 | u64 old_spte = *sptep; |
| 834 | |
| 835 | if (!spte_has_volatile_bits(old_spte)) |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 836 | __update_clear_spte_fast(sptep, 0ull); |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 837 | else |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 838 | old_spte = __update_clear_spte_slow(sptep, 0ull); |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 839 | |
Takuya Yoshikawa | afd28fe | 2015-11-20 17:44:55 +0900 | [diff] [blame] | 840 | if (!is_shadow_present_pte(old_spte)) |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 841 | return 0; |
| 842 | |
| 843 | pfn = spte_to_pfn(old_spte); |
Xiao Guangrong | 86fde74 | 2012-07-17 21:52:52 +0800 | [diff] [blame] | 844 | |
| 845 | /* |
| 846 | * KVM does not hold the refcount of the page used by |
| 847 | * kvm mmu, before reclaiming the page, we should |
| 848 | * unmap it from mmu first. |
| 849 | */ |
Ard Biesheuvel | bf4bea8 | 2014-11-10 08:33:56 +0000 | [diff] [blame] | 850 | WARN_ON(!kvm_is_reserved_pfn(pfn) && !page_count(pfn_to_page(pfn))); |
Xiao Guangrong | 86fde74 | 2012-07-17 21:52:52 +0800 | [diff] [blame] | 851 | |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 852 | if (is_accessed_spte(old_spte)) |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 853 | kvm_set_pfn_accessed(pfn); |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 854 | |
| 855 | if (is_dirty_spte(old_spte)) |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 856 | kvm_set_pfn_dirty(pfn); |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 857 | |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 858 | return 1; |
| 859 | } |
| 860 | |
| 861 | /* |
| 862 | * Rules for using mmu_spte_clear_no_track: |
| 863 | * Directly clear spte without caring the state bits of sptep, |
| 864 | * it is used to set the upper level spte. |
| 865 | */ |
| 866 | static void mmu_spte_clear_no_track(u64 *sptep) |
| 867 | { |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 868 | __update_clear_spte_fast(sptep, 0ull); |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 869 | } |
| 870 | |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 871 | static u64 mmu_spte_get_lockless(u64 *sptep) |
| 872 | { |
| 873 | return __get_spte_lockless(sptep); |
| 874 | } |
| 875 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 876 | static u64 mark_spte_for_access_track(u64 spte) |
| 877 | { |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 878 | if (spte_ad_enabled(spte)) |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 879 | return spte & ~shadow_accessed_mask; |
| 880 | |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 881 | if (is_access_track_spte(spte)) |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 882 | return spte; |
| 883 | |
| 884 | /* |
Junaid Shahid | 20d6523 | 2016-12-21 20:29:31 -0800 | [diff] [blame] | 885 | * Making an Access Tracking PTE will result in removal of write access |
| 886 | * from the PTE. So, verify that we will be able to restore the write |
| 887 | * access in the fast page fault path later on. |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 888 | */ |
| 889 | WARN_ONCE((spte & PT_WRITABLE_MASK) && |
| 890 | !spte_can_locklessly_be_made_writable(spte), |
| 891 | "kvm: Writable SPTE is not locklessly dirty-trackable\n"); |
| 892 | |
| 893 | WARN_ONCE(spte & (shadow_acc_track_saved_bits_mask << |
| 894 | shadow_acc_track_saved_bits_shift), |
| 895 | "kvm: Access Tracking saved bit locations are not zero\n"); |
| 896 | |
| 897 | spte |= (spte & shadow_acc_track_saved_bits_mask) << |
| 898 | shadow_acc_track_saved_bits_shift; |
| 899 | spte &= ~shadow_acc_track_mask; |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 900 | |
| 901 | return spte; |
| 902 | } |
| 903 | |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 904 | /* Restore an acc-track PTE back to a regular PTE */ |
| 905 | static u64 restore_acc_track_spte(u64 spte) |
| 906 | { |
| 907 | u64 new_spte = spte; |
| 908 | u64 saved_bits = (spte >> shadow_acc_track_saved_bits_shift) |
| 909 | & shadow_acc_track_saved_bits_mask; |
| 910 | |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 911 | WARN_ON_ONCE(spte_ad_enabled(spte)); |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 912 | WARN_ON_ONCE(!is_access_track_spte(spte)); |
| 913 | |
| 914 | new_spte &= ~shadow_acc_track_mask; |
| 915 | new_spte &= ~(shadow_acc_track_saved_bits_mask << |
| 916 | shadow_acc_track_saved_bits_shift); |
| 917 | new_spte |= saved_bits; |
| 918 | |
| 919 | return new_spte; |
| 920 | } |
| 921 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 922 | /* Returns the Accessed status of the PTE and resets it at the same time. */ |
| 923 | static bool mmu_spte_age(u64 *sptep) |
| 924 | { |
| 925 | u64 spte = mmu_spte_get_lockless(sptep); |
| 926 | |
| 927 | if (!is_accessed_spte(spte)) |
| 928 | return false; |
| 929 | |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 930 | if (spte_ad_enabled(spte)) { |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 931 | clear_bit((ffs(shadow_accessed_mask) - 1), |
| 932 | (unsigned long *)sptep); |
| 933 | } else { |
| 934 | /* |
| 935 | * Capture the dirty status of the page, so that it doesn't get |
| 936 | * lost when the SPTE is marked for access tracking. |
| 937 | */ |
| 938 | if (is_writable_pte(spte)) |
| 939 | kvm_set_pfn_dirty(spte_to_pfn(spte)); |
| 940 | |
| 941 | spte = mark_spte_for_access_track(spte); |
| 942 | mmu_spte_update_no_track(sptep, spte); |
| 943 | } |
| 944 | |
| 945 | return true; |
| 946 | } |
| 947 | |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 948 | static void walk_shadow_page_lockless_begin(struct kvm_vcpu *vcpu) |
| 949 | { |
Avi Kivity | c142786 | 2012-05-14 15:44:06 +0300 | [diff] [blame] | 950 | /* |
| 951 | * Prevent page table teardown by making any free-er wait during |
| 952 | * kvm_flush_remote_tlbs() IPI to all active vcpus. |
| 953 | */ |
| 954 | local_irq_disable(); |
Lan Tianyu | 36ca7e0 | 2016-03-13 11:10:25 +0800 | [diff] [blame] | 955 | |
Avi Kivity | c142786 | 2012-05-14 15:44:06 +0300 | [diff] [blame] | 956 | /* |
| 957 | * Make sure a following spte read is not reordered ahead of the write |
| 958 | * to vcpu->mode. |
| 959 | */ |
Lan Tianyu | 36ca7e0 | 2016-03-13 11:10:25 +0800 | [diff] [blame] | 960 | smp_store_mb(vcpu->mode, READING_SHADOW_PAGE_TABLES); |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 961 | } |
| 962 | |
| 963 | static void walk_shadow_page_lockless_end(struct kvm_vcpu *vcpu) |
| 964 | { |
Avi Kivity | c142786 | 2012-05-14 15:44:06 +0300 | [diff] [blame] | 965 | /* |
| 966 | * Make sure the write to vcpu->mode is not reordered in front of |
Tianyu Lan | 9a98458 | 2018-09-07 05:45:02 +0000 | [diff] [blame] | 967 | * reads to sptes. If it does, kvm_mmu_commit_zap_page() can see us |
Avi Kivity | c142786 | 2012-05-14 15:44:06 +0300 | [diff] [blame] | 968 | * OUTSIDE_GUEST_MODE and proceed to free the shadow page table. |
| 969 | */ |
Lan Tianyu | 36ca7e0 | 2016-03-13 11:10:25 +0800 | [diff] [blame] | 970 | smp_store_release(&vcpu->mode, OUTSIDE_GUEST_MODE); |
Avi Kivity | c142786 | 2012-05-14 15:44:06 +0300 | [diff] [blame] | 971 | local_irq_enable(); |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 972 | } |
| 973 | |
Avi Kivity | e2dec93 | 2007-01-05 16:36:54 -0800 | [diff] [blame] | 974 | static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache, |
Avi Kivity | 2e3e588 | 2007-09-10 11:28:17 +0300 | [diff] [blame] | 975 | struct kmem_cache *base_cache, int min) |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 976 | { |
| 977 | void *obj; |
| 978 | |
| 979 | if (cache->nobjs >= min) |
Avi Kivity | e2dec93 | 2007-01-05 16:36:54 -0800 | [diff] [blame] | 980 | return 0; |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 981 | while (cache->nobjs < ARRAY_SIZE(cache->objects)) { |
Ben Gardon | 254272c | 2019-02-11 11:02:50 -0800 | [diff] [blame] | 982 | obj = kmem_cache_zalloc(base_cache, GFP_KERNEL_ACCOUNT); |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 983 | if (!obj) |
Wei Yang | daefb79 | 2018-09-04 23:57:32 +0800 | [diff] [blame] | 984 | return cache->nobjs >= min ? 0 : -ENOMEM; |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 985 | cache->objects[cache->nobjs++] = obj; |
| 986 | } |
Avi Kivity | e2dec93 | 2007-01-05 16:36:54 -0800 | [diff] [blame] | 987 | return 0; |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 988 | } |
| 989 | |
Xiao Guangrong | f759e2b | 2011-09-22 16:53:17 +0800 | [diff] [blame] | 990 | static int mmu_memory_cache_free_objects(struct kvm_mmu_memory_cache *cache) |
| 991 | { |
| 992 | return cache->nobjs; |
| 993 | } |
| 994 | |
Xiao Guangrong | e8ad9a7 | 2010-05-13 10:06:02 +0800 | [diff] [blame] | 995 | static void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc, |
| 996 | struct kmem_cache *cache) |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 997 | { |
| 998 | while (mc->nobjs) |
Xiao Guangrong | e8ad9a7 | 2010-05-13 10:06:02 +0800 | [diff] [blame] | 999 | kmem_cache_free(cache, mc->objects[--mc->nobjs]); |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 1000 | } |
| 1001 | |
Avi Kivity | c1158e6 | 2007-07-20 08:18:27 +0300 | [diff] [blame] | 1002 | static int mmu_topup_memory_cache_page(struct kvm_mmu_memory_cache *cache, |
Avi Kivity | 2e3e588 | 2007-09-10 11:28:17 +0300 | [diff] [blame] | 1003 | int min) |
Avi Kivity | c1158e6 | 2007-07-20 08:18:27 +0300 | [diff] [blame] | 1004 | { |
Xiao Guangrong | 842f22e | 2011-03-04 19:01:10 +0800 | [diff] [blame] | 1005 | void *page; |
Avi Kivity | c1158e6 | 2007-07-20 08:18:27 +0300 | [diff] [blame] | 1006 | |
| 1007 | if (cache->nobjs >= min) |
| 1008 | return 0; |
| 1009 | while (cache->nobjs < ARRAY_SIZE(cache->objects)) { |
Shakeel Butt | d97e5e6 | 2018-07-26 16:37:45 -0700 | [diff] [blame] | 1010 | page = (void *)__get_free_page(GFP_KERNEL_ACCOUNT); |
Avi Kivity | c1158e6 | 2007-07-20 08:18:27 +0300 | [diff] [blame] | 1011 | if (!page) |
Wei Yang | daefb79 | 2018-09-04 23:57:32 +0800 | [diff] [blame] | 1012 | return cache->nobjs >= min ? 0 : -ENOMEM; |
Xiao Guangrong | 842f22e | 2011-03-04 19:01:10 +0800 | [diff] [blame] | 1013 | cache->objects[cache->nobjs++] = page; |
Avi Kivity | c1158e6 | 2007-07-20 08:18:27 +0300 | [diff] [blame] | 1014 | } |
| 1015 | return 0; |
| 1016 | } |
| 1017 | |
| 1018 | static void mmu_free_memory_cache_page(struct kvm_mmu_memory_cache *mc) |
| 1019 | { |
| 1020 | while (mc->nobjs) |
Avi Kivity | c4d198d | 2007-07-21 09:06:46 +0300 | [diff] [blame] | 1021 | free_page((unsigned long)mc->objects[--mc->nobjs]); |
Avi Kivity | c1158e6 | 2007-07-20 08:18:27 +0300 | [diff] [blame] | 1022 | } |
| 1023 | |
Avi Kivity | 8c43850 | 2007-04-16 11:53:17 +0300 | [diff] [blame] | 1024 | static int mmu_topup_memory_caches(struct kvm_vcpu *vcpu) |
| 1025 | { |
| 1026 | int r; |
| 1027 | |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1028 | r = mmu_topup_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache, |
Xiao Guangrong | 67052b3 | 2011-05-15 23:27:08 +0800 | [diff] [blame] | 1029 | pte_list_desc_cache, 8 + PTE_PREFETCH_NUM); |
Avi Kivity | 2e3e588 | 2007-09-10 11:28:17 +0300 | [diff] [blame] | 1030 | if (r) |
| 1031 | goto out; |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 1032 | r = mmu_topup_memory_cache_page(&vcpu->arch.mmu_page_cache, 8); |
Avi Kivity | 2e3e588 | 2007-09-10 11:28:17 +0300 | [diff] [blame] | 1033 | if (r) |
| 1034 | goto out; |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 1035 | r = mmu_topup_memory_cache(&vcpu->arch.mmu_page_header_cache, |
Avi Kivity | 2e3e588 | 2007-09-10 11:28:17 +0300 | [diff] [blame] | 1036 | mmu_page_header_cache, 4); |
| 1037 | out: |
Avi Kivity | 8c43850 | 2007-04-16 11:53:17 +0300 | [diff] [blame] | 1038 | return r; |
| 1039 | } |
| 1040 | |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 1041 | static void mmu_free_memory_caches(struct kvm_vcpu *vcpu) |
| 1042 | { |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1043 | mmu_free_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache, |
| 1044 | pte_list_desc_cache); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 1045 | mmu_free_memory_cache_page(&vcpu->arch.mmu_page_cache); |
Xiao Guangrong | e8ad9a7 | 2010-05-13 10:06:02 +0800 | [diff] [blame] | 1046 | mmu_free_memory_cache(&vcpu->arch.mmu_page_header_cache, |
| 1047 | mmu_page_header_cache); |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 1048 | } |
| 1049 | |
Takuya Yoshikawa | 80feb89 | 2012-05-29 23:54:26 +0900 | [diff] [blame] | 1050 | static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc) |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 1051 | { |
| 1052 | void *p; |
| 1053 | |
| 1054 | BUG_ON(!mc->nobjs); |
| 1055 | p = mc->objects[--mc->nobjs]; |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 1056 | return p; |
| 1057 | } |
| 1058 | |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1059 | static struct pte_list_desc *mmu_alloc_pte_list_desc(struct kvm_vcpu *vcpu) |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 1060 | { |
Takuya Yoshikawa | 80feb89 | 2012-05-29 23:54:26 +0900 | [diff] [blame] | 1061 | return mmu_memory_cache_alloc(&vcpu->arch.mmu_pte_list_desc_cache); |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 1062 | } |
| 1063 | |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1064 | static void mmu_free_pte_list_desc(struct pte_list_desc *pte_list_desc) |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 1065 | { |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1066 | kmem_cache_free(pte_list_desc_cache, pte_list_desc); |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 1067 | } |
| 1068 | |
Lai Jiangshan | 2032a93 | 2010-05-26 16:49:59 +0800 | [diff] [blame] | 1069 | static gfn_t kvm_mmu_page_get_gfn(struct kvm_mmu_page *sp, int index) |
| 1070 | { |
| 1071 | if (!sp->role.direct) |
| 1072 | return sp->gfns[index]; |
| 1073 | |
| 1074 | return sp->gfn + (index << ((sp->role.level - 1) * PT64_LEVEL_BITS)); |
| 1075 | } |
| 1076 | |
| 1077 | static void kvm_mmu_page_set_gfn(struct kvm_mmu_page *sp, int index, gfn_t gfn) |
| 1078 | { |
| 1079 | if (sp->role.direct) |
| 1080 | BUG_ON(gfn != kvm_mmu_page_get_gfn(sp, index)); |
| 1081 | else |
| 1082 | sp->gfns[index] = gfn; |
| 1083 | } |
| 1084 | |
Avi Kivity | cd4a4e5 | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 1085 | /* |
Takuya Yoshikawa | d4dbf47 | 2010-12-07 12:59:07 +0900 | [diff] [blame] | 1086 | * Return the pointer to the large page information for a given gfn, |
| 1087 | * handling slots that are not large page aligned. |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1088 | */ |
Takuya Yoshikawa | d4dbf47 | 2010-12-07 12:59:07 +0900 | [diff] [blame] | 1089 | static struct kvm_lpage_info *lpage_info_slot(gfn_t gfn, |
| 1090 | struct kvm_memory_slot *slot, |
| 1091 | int level) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1092 | { |
| 1093 | unsigned long idx; |
| 1094 | |
Takuya Yoshikawa | fb03cb6 | 2012-02-08 12:59:10 +0900 | [diff] [blame] | 1095 | idx = gfn_to_index(gfn, slot->base_gfn, level); |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 1096 | return &slot->arch.lpage_info[level - 2][idx]; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1097 | } |
| 1098 | |
Xiao Guangrong | 547ffae | 2016-02-24 17:51:07 +0800 | [diff] [blame] | 1099 | static void update_gfn_disallow_lpage_count(struct kvm_memory_slot *slot, |
| 1100 | gfn_t gfn, int count) |
| 1101 | { |
| 1102 | struct kvm_lpage_info *linfo; |
| 1103 | int i; |
| 1104 | |
| 1105 | for (i = PT_DIRECTORY_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) { |
| 1106 | linfo = lpage_info_slot(gfn, slot, i); |
| 1107 | linfo->disallow_lpage += count; |
| 1108 | WARN_ON(linfo->disallow_lpage < 0); |
| 1109 | } |
| 1110 | } |
| 1111 | |
| 1112 | void kvm_mmu_gfn_disallow_lpage(struct kvm_memory_slot *slot, gfn_t gfn) |
| 1113 | { |
| 1114 | update_gfn_disallow_lpage_count(slot, gfn, 1); |
| 1115 | } |
| 1116 | |
| 1117 | void kvm_mmu_gfn_allow_lpage(struct kvm_memory_slot *slot, gfn_t gfn) |
| 1118 | { |
| 1119 | update_gfn_disallow_lpage_count(slot, gfn, -1); |
| 1120 | } |
| 1121 | |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 1122 | static void account_shadowed(struct kvm *kvm, struct kvm_mmu_page *sp) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1123 | { |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 1124 | struct kvm_memslots *slots; |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 1125 | struct kvm_memory_slot *slot; |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 1126 | gfn_t gfn; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1127 | |
Xiao Guangrong | 56ca57f | 2016-02-24 17:51:14 +0800 | [diff] [blame] | 1128 | kvm->arch.indirect_shadow_pages++; |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 1129 | gfn = sp->gfn; |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 1130 | slots = kvm_memslots_for_spte_role(kvm, sp->role); |
| 1131 | slot = __gfn_to_memslot(slots, gfn); |
Xiao Guangrong | 56ca57f | 2016-02-24 17:51:14 +0800 | [diff] [blame] | 1132 | |
| 1133 | /* the non-leaf shadow pages are keeping readonly. */ |
| 1134 | if (sp->role.level > PT_PAGE_TABLE_LEVEL) |
| 1135 | return kvm_slot_page_track_add_page(kvm, slot, gfn, |
| 1136 | KVM_PAGE_TRACK_WRITE); |
| 1137 | |
Xiao Guangrong | 547ffae | 2016-02-24 17:51:07 +0800 | [diff] [blame] | 1138 | kvm_mmu_gfn_disallow_lpage(slot, gfn); |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1139 | } |
| 1140 | |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 1141 | static void unaccount_shadowed(struct kvm *kvm, struct kvm_mmu_page *sp) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1142 | { |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 1143 | struct kvm_memslots *slots; |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 1144 | struct kvm_memory_slot *slot; |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 1145 | gfn_t gfn; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1146 | |
Xiao Guangrong | 56ca57f | 2016-02-24 17:51:14 +0800 | [diff] [blame] | 1147 | kvm->arch.indirect_shadow_pages--; |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 1148 | gfn = sp->gfn; |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 1149 | slots = kvm_memslots_for_spte_role(kvm, sp->role); |
| 1150 | slot = __gfn_to_memslot(slots, gfn); |
Xiao Guangrong | 56ca57f | 2016-02-24 17:51:14 +0800 | [diff] [blame] | 1151 | if (sp->role.level > PT_PAGE_TABLE_LEVEL) |
| 1152 | return kvm_slot_page_track_remove_page(kvm, slot, gfn, |
| 1153 | KVM_PAGE_TRACK_WRITE); |
| 1154 | |
Xiao Guangrong | 547ffae | 2016-02-24 17:51:07 +0800 | [diff] [blame] | 1155 | kvm_mmu_gfn_allow_lpage(slot, gfn); |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1156 | } |
| 1157 | |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 1158 | static bool __mmu_gfn_lpage_is_disallowed(gfn_t gfn, int level, |
| 1159 | struct kvm_memory_slot *slot) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1160 | { |
Takuya Yoshikawa | d4dbf47 | 2010-12-07 12:59:07 +0900 | [diff] [blame] | 1161 | struct kvm_lpage_info *linfo; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1162 | |
| 1163 | if (slot) { |
Takuya Yoshikawa | d4dbf47 | 2010-12-07 12:59:07 +0900 | [diff] [blame] | 1164 | linfo = lpage_info_slot(gfn, slot, level); |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 1165 | return !!linfo->disallow_lpage; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1166 | } |
| 1167 | |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 1168 | return true; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1169 | } |
| 1170 | |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 1171 | static bool mmu_gfn_lpage_is_disallowed(struct kvm_vcpu *vcpu, gfn_t gfn, |
| 1172 | int level) |
Takuya Yoshikawa | 5225fdf | 2015-10-16 17:08:03 +0900 | [diff] [blame] | 1173 | { |
| 1174 | struct kvm_memory_slot *slot; |
| 1175 | |
| 1176 | slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn); |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 1177 | return __mmu_gfn_lpage_is_disallowed(gfn, level, slot); |
Takuya Yoshikawa | 5225fdf | 2015-10-16 17:08:03 +0900 | [diff] [blame] | 1178 | } |
| 1179 | |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 1180 | static int host_mapping_level(struct kvm *kvm, gfn_t gfn) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1181 | { |
Joerg Roedel | 8f0b1ab | 2010-01-28 12:37:56 +0100 | [diff] [blame] | 1182 | unsigned long page_size; |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 1183 | int i, ret = 0; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1184 | |
Joerg Roedel | 8f0b1ab | 2010-01-28 12:37:56 +0100 | [diff] [blame] | 1185 | page_size = kvm_host_page_size(kvm, gfn); |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1186 | |
Xiao Guangrong | 8a3d08f | 2015-05-13 14:42:21 +0800 | [diff] [blame] | 1187 | for (i = PT_PAGE_TABLE_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) { |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 1188 | if (page_size >= KVM_HPAGE_SIZE(i)) |
| 1189 | ret = i; |
| 1190 | else |
| 1191 | break; |
| 1192 | } |
| 1193 | |
Marcelo Tosatti | 4c2155c | 2008-09-16 20:54:47 -0300 | [diff] [blame] | 1194 | return ret; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1195 | } |
| 1196 | |
Takuya Yoshikawa | d8aacf5 | 2015-10-16 17:07:01 +0900 | [diff] [blame] | 1197 | static inline bool memslot_valid_for_gpte(struct kvm_memory_slot *slot, |
| 1198 | bool no_dirty_log) |
| 1199 | { |
| 1200 | if (!slot || slot->flags & KVM_MEMSLOT_INVALID) |
| 1201 | return false; |
| 1202 | if (no_dirty_log && slot->dirty_bitmap) |
| 1203 | return false; |
| 1204 | |
| 1205 | return true; |
| 1206 | } |
| 1207 | |
Xiao Guangrong | 5d163b1 | 2011-03-09 15:43:00 +0800 | [diff] [blame] | 1208 | static struct kvm_memory_slot * |
| 1209 | gfn_to_memslot_dirty_bitmap(struct kvm_vcpu *vcpu, gfn_t gfn, |
| 1210 | bool no_dirty_log) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1211 | { |
| 1212 | struct kvm_memory_slot *slot; |
Xiao Guangrong | 5d163b1 | 2011-03-09 15:43:00 +0800 | [diff] [blame] | 1213 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 1214 | slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn); |
Takuya Yoshikawa | d8aacf5 | 2015-10-16 17:07:01 +0900 | [diff] [blame] | 1215 | if (!memslot_valid_for_gpte(slot, no_dirty_log)) |
Xiao Guangrong | 5d163b1 | 2011-03-09 15:43:00 +0800 | [diff] [blame] | 1216 | slot = NULL; |
| 1217 | |
| 1218 | return slot; |
| 1219 | } |
| 1220 | |
Takuya Yoshikawa | fd13690 | 2015-10-16 17:06:02 +0900 | [diff] [blame] | 1221 | static int mapping_level(struct kvm_vcpu *vcpu, gfn_t large_gfn, |
| 1222 | bool *force_pt_level) |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 1223 | { |
| 1224 | int host_level, level, max_level; |
Takuya Yoshikawa | d8aacf5 | 2015-10-16 17:07:01 +0900 | [diff] [blame] | 1225 | struct kvm_memory_slot *slot; |
| 1226 | |
Takuya Yoshikawa | 8c85ac1 | 2015-10-19 15:13:29 +0900 | [diff] [blame] | 1227 | if (unlikely(*force_pt_level)) |
| 1228 | return PT_PAGE_TABLE_LEVEL; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1229 | |
Takuya Yoshikawa | 8c85ac1 | 2015-10-19 15:13:29 +0900 | [diff] [blame] | 1230 | slot = kvm_vcpu_gfn_to_memslot(vcpu, large_gfn); |
| 1231 | *force_pt_level = !memslot_valid_for_gpte(slot, true); |
Takuya Yoshikawa | fd13690 | 2015-10-16 17:06:02 +0900 | [diff] [blame] | 1232 | if (unlikely(*force_pt_level)) |
| 1233 | return PT_PAGE_TABLE_LEVEL; |
| 1234 | |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 1235 | host_level = host_mapping_level(vcpu->kvm, large_gfn); |
| 1236 | |
| 1237 | if (host_level == PT_PAGE_TABLE_LEVEL) |
| 1238 | return host_level; |
| 1239 | |
Xiao Guangrong | 55dd98c | 2013-02-05 15:26:54 +0800 | [diff] [blame] | 1240 | max_level = min(kvm_x86_ops->get_lpage_level(), host_level); |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 1241 | |
| 1242 | for (level = PT_DIRECTORY_LEVEL; level <= max_level; ++level) |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 1243 | if (__mmu_gfn_lpage_is_disallowed(large_gfn, level, slot)) |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 1244 | break; |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 1245 | |
| 1246 | return level - 1; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1247 | } |
| 1248 | |
| 1249 | /* |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1250 | * About rmap_head encoding: |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1251 | * |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1252 | * If the bit zero of rmap_head->val is clear, then it points to the only spte |
| 1253 | * in this rmap chain. Otherwise, (rmap_head->val & ~1) points to a struct |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1254 | * pte_list_desc containing more mappings. |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1255 | */ |
| 1256 | |
| 1257 | /* |
| 1258 | * Returns the number of pointers in the rmap chain, not counting the new one. |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1259 | */ |
| 1260 | static int pte_list_add(struct kvm_vcpu *vcpu, u64 *spte, |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1261 | struct kvm_rmap_head *rmap_head) |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1262 | { |
| 1263 | struct pte_list_desc *desc; |
| 1264 | int i, count = 0; |
| 1265 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1266 | if (!rmap_head->val) { |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1267 | rmap_printk("pte_list_add: %p %llx 0->1\n", spte, *spte); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1268 | rmap_head->val = (unsigned long)spte; |
| 1269 | } else if (!(rmap_head->val & 1)) { |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1270 | rmap_printk("pte_list_add: %p %llx 1->many\n", spte, *spte); |
| 1271 | desc = mmu_alloc_pte_list_desc(vcpu); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1272 | desc->sptes[0] = (u64 *)rmap_head->val; |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1273 | desc->sptes[1] = spte; |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1274 | rmap_head->val = (unsigned long)desc | 1; |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1275 | ++count; |
| 1276 | } else { |
| 1277 | rmap_printk("pte_list_add: %p %llx many->many\n", spte, *spte); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1278 | desc = (struct pte_list_desc *)(rmap_head->val & ~1ul); |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1279 | while (desc->sptes[PTE_LIST_EXT-1] && desc->more) { |
| 1280 | desc = desc->more; |
| 1281 | count += PTE_LIST_EXT; |
| 1282 | } |
| 1283 | if (desc->sptes[PTE_LIST_EXT-1]) { |
| 1284 | desc->more = mmu_alloc_pte_list_desc(vcpu); |
| 1285 | desc = desc->more; |
| 1286 | } |
| 1287 | for (i = 0; desc->sptes[i]; ++i) |
| 1288 | ++count; |
| 1289 | desc->sptes[i] = spte; |
| 1290 | } |
| 1291 | return count; |
| 1292 | } |
| 1293 | |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1294 | static void |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1295 | pte_list_desc_remove_entry(struct kvm_rmap_head *rmap_head, |
| 1296 | struct pte_list_desc *desc, int i, |
| 1297 | struct pte_list_desc *prev_desc) |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1298 | { |
| 1299 | int j; |
| 1300 | |
| 1301 | for (j = PTE_LIST_EXT - 1; !desc->sptes[j] && j > i; --j) |
| 1302 | ; |
| 1303 | desc->sptes[i] = desc->sptes[j]; |
| 1304 | desc->sptes[j] = NULL; |
| 1305 | if (j != 0) |
| 1306 | return; |
| 1307 | if (!prev_desc && !desc->more) |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1308 | rmap_head->val = (unsigned long)desc->sptes[0]; |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1309 | else |
| 1310 | if (prev_desc) |
| 1311 | prev_desc->more = desc->more; |
| 1312 | else |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1313 | rmap_head->val = (unsigned long)desc->more | 1; |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1314 | mmu_free_pte_list_desc(desc); |
| 1315 | } |
| 1316 | |
Wei Yang | 8daf346 | 2018-10-04 10:04:22 +0800 | [diff] [blame] | 1317 | static void __pte_list_remove(u64 *spte, struct kvm_rmap_head *rmap_head) |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1318 | { |
| 1319 | struct pte_list_desc *desc; |
| 1320 | struct pte_list_desc *prev_desc; |
| 1321 | int i; |
| 1322 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1323 | if (!rmap_head->val) { |
Wei Yang | 8daf346 | 2018-10-04 10:04:22 +0800 | [diff] [blame] | 1324 | pr_err("%s: %p 0->BUG\n", __func__, spte); |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1325 | BUG(); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1326 | } else if (!(rmap_head->val & 1)) { |
Wei Yang | 8daf346 | 2018-10-04 10:04:22 +0800 | [diff] [blame] | 1327 | rmap_printk("%s: %p 1->0\n", __func__, spte); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1328 | if ((u64 *)rmap_head->val != spte) { |
Wei Yang | 8daf346 | 2018-10-04 10:04:22 +0800 | [diff] [blame] | 1329 | pr_err("%s: %p 1->BUG\n", __func__, spte); |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1330 | BUG(); |
| 1331 | } |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1332 | rmap_head->val = 0; |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1333 | } else { |
Wei Yang | 8daf346 | 2018-10-04 10:04:22 +0800 | [diff] [blame] | 1334 | rmap_printk("%s: %p many->many\n", __func__, spte); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1335 | desc = (struct pte_list_desc *)(rmap_head->val & ~1ul); |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1336 | prev_desc = NULL; |
| 1337 | while (desc) { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1338 | for (i = 0; i < PTE_LIST_EXT && desc->sptes[i]; ++i) { |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1339 | if (desc->sptes[i] == spte) { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1340 | pte_list_desc_remove_entry(rmap_head, |
| 1341 | desc, i, prev_desc); |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1342 | return; |
| 1343 | } |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1344 | } |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1345 | prev_desc = desc; |
| 1346 | desc = desc->more; |
| 1347 | } |
Wei Yang | 8daf346 | 2018-10-04 10:04:22 +0800 | [diff] [blame] | 1348 | pr_err("%s: %p many->many\n", __func__, spte); |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1349 | BUG(); |
| 1350 | } |
| 1351 | } |
| 1352 | |
Wei Yang | e791238 | 2018-10-04 10:04:23 +0800 | [diff] [blame] | 1353 | static void pte_list_remove(struct kvm_rmap_head *rmap_head, u64 *sptep) |
| 1354 | { |
| 1355 | mmu_spte_clear_track_bits(sptep); |
| 1356 | __pte_list_remove(sptep, rmap_head); |
| 1357 | } |
| 1358 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1359 | static struct kvm_rmap_head *__gfn_to_rmap(gfn_t gfn, int level, |
| 1360 | struct kvm_memory_slot *slot) |
Takuya Yoshikawa | 9b9b149 | 2011-11-14 18:22:28 +0900 | [diff] [blame] | 1361 | { |
Takuya Yoshikawa | 77d1130 | 2012-07-02 17:57:17 +0900 | [diff] [blame] | 1362 | unsigned long idx; |
Takuya Yoshikawa | 9b9b149 | 2011-11-14 18:22:28 +0900 | [diff] [blame] | 1363 | |
Takuya Yoshikawa | 77d1130 | 2012-07-02 17:57:17 +0900 | [diff] [blame] | 1364 | idx = gfn_to_index(gfn, slot->base_gfn, level); |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 1365 | return &slot->arch.rmap[level - PT_PAGE_TABLE_LEVEL][idx]; |
Takuya Yoshikawa | 9b9b149 | 2011-11-14 18:22:28 +0900 | [diff] [blame] | 1366 | } |
| 1367 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1368 | static struct kvm_rmap_head *gfn_to_rmap(struct kvm *kvm, gfn_t gfn, |
| 1369 | struct kvm_mmu_page *sp) |
Izik Eidus | 290fc38 | 2007-09-27 14:11:22 +0200 | [diff] [blame] | 1370 | { |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 1371 | struct kvm_memslots *slots; |
Izik Eidus | 290fc38 | 2007-09-27 14:11:22 +0200 | [diff] [blame] | 1372 | struct kvm_memory_slot *slot; |
| 1373 | |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 1374 | slots = kvm_memslots_for_spte_role(kvm, sp->role); |
| 1375 | slot = __gfn_to_memslot(slots, gfn); |
Paolo Bonzini | e4cd1da | 2015-05-18 15:11:46 +0200 | [diff] [blame] | 1376 | return __gfn_to_rmap(gfn, sp->role.level, slot); |
Izik Eidus | 290fc38 | 2007-09-27 14:11:22 +0200 | [diff] [blame] | 1377 | } |
| 1378 | |
Xiao Guangrong | f759e2b | 2011-09-22 16:53:17 +0800 | [diff] [blame] | 1379 | static bool rmap_can_add(struct kvm_vcpu *vcpu) |
| 1380 | { |
| 1381 | struct kvm_mmu_memory_cache *cache; |
| 1382 | |
| 1383 | cache = &vcpu->arch.mmu_pte_list_desc_cache; |
| 1384 | return mmu_memory_cache_free_objects(cache); |
| 1385 | } |
| 1386 | |
Joerg Roedel | 44ad994 | 2009-07-27 16:30:42 +0200 | [diff] [blame] | 1387 | static int rmap_add(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn) |
Avi Kivity | cd4a4e5 | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 1388 | { |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 1389 | struct kvm_mmu_page *sp; |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1390 | struct kvm_rmap_head *rmap_head; |
Avi Kivity | cd4a4e5 | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 1391 | |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 1392 | sp = page_header(__pa(spte)); |
Lai Jiangshan | 2032a93 | 2010-05-26 16:49:59 +0800 | [diff] [blame] | 1393 | kvm_mmu_page_set_gfn(sp, spte - sp->spt, gfn); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1394 | rmap_head = gfn_to_rmap(vcpu->kvm, gfn, sp); |
| 1395 | return pte_list_add(vcpu, spte, rmap_head); |
Avi Kivity | cd4a4e5 | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 1396 | } |
| 1397 | |
Izik Eidus | 290fc38 | 2007-09-27 14:11:22 +0200 | [diff] [blame] | 1398 | static void rmap_remove(struct kvm *kvm, u64 *spte) |
Avi Kivity | cd4a4e5 | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 1399 | { |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 1400 | struct kvm_mmu_page *sp; |
Lai Jiangshan | 2032a93 | 2010-05-26 16:49:59 +0800 | [diff] [blame] | 1401 | gfn_t gfn; |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1402 | struct kvm_rmap_head *rmap_head; |
Avi Kivity | cd4a4e5 | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 1403 | |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 1404 | sp = page_header(__pa(spte)); |
Lai Jiangshan | 2032a93 | 2010-05-26 16:49:59 +0800 | [diff] [blame] | 1405 | gfn = kvm_mmu_page_get_gfn(sp, spte - sp->spt); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1406 | rmap_head = gfn_to_rmap(kvm, gfn, sp); |
Wei Yang | 8daf346 | 2018-10-04 10:04:22 +0800 | [diff] [blame] | 1407 | __pte_list_remove(spte, rmap_head); |
Avi Kivity | cd4a4e5 | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 1408 | } |
| 1409 | |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1410 | /* |
| 1411 | * Used by the following functions to iterate through the sptes linked by a |
| 1412 | * rmap. All fields are private and not assumed to be used outside. |
| 1413 | */ |
| 1414 | struct rmap_iterator { |
| 1415 | /* private fields */ |
| 1416 | struct pte_list_desc *desc; /* holds the sptep if not NULL */ |
| 1417 | int pos; /* index of the sptep */ |
| 1418 | }; |
| 1419 | |
| 1420 | /* |
| 1421 | * Iteration must be started by this function. This should also be used after |
| 1422 | * removing/dropping sptes from the rmap link because in such cases the |
| 1423 | * information in the itererator may not be valid. |
| 1424 | * |
| 1425 | * Returns sptep if found, NULL otherwise. |
| 1426 | */ |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1427 | static u64 *rmap_get_first(struct kvm_rmap_head *rmap_head, |
| 1428 | struct rmap_iterator *iter) |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1429 | { |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1430 | u64 *sptep; |
| 1431 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1432 | if (!rmap_head->val) |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1433 | return NULL; |
| 1434 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1435 | if (!(rmap_head->val & 1)) { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1436 | iter->desc = NULL; |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1437 | sptep = (u64 *)rmap_head->val; |
| 1438 | goto out; |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1439 | } |
| 1440 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1441 | iter->desc = (struct pte_list_desc *)(rmap_head->val & ~1ul); |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1442 | iter->pos = 0; |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1443 | sptep = iter->desc->sptes[iter->pos]; |
| 1444 | out: |
| 1445 | BUG_ON(!is_shadow_present_pte(*sptep)); |
| 1446 | return sptep; |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1447 | } |
| 1448 | |
| 1449 | /* |
| 1450 | * Must be used with a valid iterator: e.g. after rmap_get_first(). |
| 1451 | * |
| 1452 | * Returns sptep if found, NULL otherwise. |
| 1453 | */ |
| 1454 | static u64 *rmap_get_next(struct rmap_iterator *iter) |
| 1455 | { |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1456 | u64 *sptep; |
| 1457 | |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1458 | if (iter->desc) { |
| 1459 | if (iter->pos < PTE_LIST_EXT - 1) { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1460 | ++iter->pos; |
| 1461 | sptep = iter->desc->sptes[iter->pos]; |
| 1462 | if (sptep) |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1463 | goto out; |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1464 | } |
| 1465 | |
| 1466 | iter->desc = iter->desc->more; |
| 1467 | |
| 1468 | if (iter->desc) { |
| 1469 | iter->pos = 0; |
| 1470 | /* desc->sptes[0] cannot be NULL */ |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1471 | sptep = iter->desc->sptes[iter->pos]; |
| 1472 | goto out; |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1473 | } |
| 1474 | } |
| 1475 | |
| 1476 | return NULL; |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1477 | out: |
| 1478 | BUG_ON(!is_shadow_present_pte(*sptep)); |
| 1479 | return sptep; |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1480 | } |
| 1481 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1482 | #define for_each_rmap_spte(_rmap_head_, _iter_, _spte_) \ |
| 1483 | for (_spte_ = rmap_get_first(_rmap_head_, _iter_); \ |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1484 | _spte_; _spte_ = rmap_get_next(_iter_)) |
Xiao Guangrong | 0d53679 | 2015-05-13 14:42:20 +0800 | [diff] [blame] | 1485 | |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 1486 | static void drop_spte(struct kvm *kvm, u64 *sptep) |
Xiao Guangrong | e4b502e | 2010-07-16 11:28:09 +0800 | [diff] [blame] | 1487 | { |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 1488 | if (mmu_spte_clear_track_bits(sptep)) |
Marcelo Tosatti | eb45fda | 2010-10-25 11:58:22 -0200 | [diff] [blame] | 1489 | rmap_remove(kvm, sptep); |
Avi Kivity | be38d27 | 2010-06-06 14:31:27 +0300 | [diff] [blame] | 1490 | } |
| 1491 | |
Xiao Guangrong | 8e22f95 | 2012-06-20 15:57:39 +0800 | [diff] [blame] | 1492 | |
| 1493 | static bool __drop_large_spte(struct kvm *kvm, u64 *sptep) |
| 1494 | { |
| 1495 | if (is_large_pte(*sptep)) { |
| 1496 | WARN_ON(page_header(__pa(sptep))->role.level == |
| 1497 | PT_PAGE_TABLE_LEVEL); |
| 1498 | drop_spte(kvm, sptep); |
| 1499 | --kvm->stat.lpages; |
| 1500 | return true; |
| 1501 | } |
| 1502 | |
| 1503 | return false; |
| 1504 | } |
| 1505 | |
| 1506 | static void drop_large_spte(struct kvm_vcpu *vcpu, u64 *sptep) |
| 1507 | { |
Lan Tianyu | c3134ce | 2018-12-06 21:21:09 +0800 | [diff] [blame] | 1508 | if (__drop_large_spte(vcpu->kvm, sptep)) { |
| 1509 | struct kvm_mmu_page *sp = page_header(__pa(sptep)); |
| 1510 | |
| 1511 | kvm_flush_remote_tlbs_with_address(vcpu->kvm, sp->gfn, |
| 1512 | KVM_PAGES_PER_HPAGE(sp->role.level)); |
| 1513 | } |
Xiao Guangrong | 8e22f95 | 2012-06-20 15:57:39 +0800 | [diff] [blame] | 1514 | } |
| 1515 | |
| 1516 | /* |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 1517 | * Write-protect on the specified @sptep, @pt_protect indicates whether |
Xiao Guangrong | c126d94 | 2014-04-17 17:06:14 +0800 | [diff] [blame] | 1518 | * spte write-protection is caused by protecting shadow page table. |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 1519 | * |
Tiejun Chen | b461966 | 2014-09-22 10:31:38 +0800 | [diff] [blame] | 1520 | * Note: write protection is difference between dirty logging and spte |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 1521 | * protection: |
| 1522 | * - for dirty logging, the spte can be set to writable at anytime if |
| 1523 | * its dirty bitmap is properly set. |
| 1524 | * - for spte protection, the spte can be writable only after unsync-ing |
| 1525 | * shadow page. |
Xiao Guangrong | 8e22f95 | 2012-06-20 15:57:39 +0800 | [diff] [blame] | 1526 | * |
Xiao Guangrong | c126d94 | 2014-04-17 17:06:14 +0800 | [diff] [blame] | 1527 | * Return true if tlb need be flushed. |
Xiao Guangrong | 8e22f95 | 2012-06-20 15:57:39 +0800 | [diff] [blame] | 1528 | */ |
Bandan Das | c4f138b | 2016-08-02 16:32:37 -0400 | [diff] [blame] | 1529 | static bool spte_write_protect(u64 *sptep, bool pt_protect) |
Xiao Guangrong | d13bc5b | 2012-06-20 15:57:15 +0800 | [diff] [blame] | 1530 | { |
| 1531 | u64 spte = *sptep; |
| 1532 | |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 1533 | if (!is_writable_pte(spte) && |
Junaid Shahid | ea4114b | 2016-12-06 16:46:11 -0800 | [diff] [blame] | 1534 | !(pt_protect && spte_can_locklessly_be_made_writable(spte))) |
Xiao Guangrong | d13bc5b | 2012-06-20 15:57:15 +0800 | [diff] [blame] | 1535 | return false; |
| 1536 | |
| 1537 | rmap_printk("rmap_write_protect: spte %p %llx\n", sptep, *sptep); |
| 1538 | |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 1539 | if (pt_protect) |
| 1540 | spte &= ~SPTE_MMU_WRITEABLE; |
Xiao Guangrong | d13bc5b | 2012-06-20 15:57:15 +0800 | [diff] [blame] | 1541 | spte = spte & ~PT_WRITABLE_MASK; |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 1542 | |
Xiao Guangrong | c126d94 | 2014-04-17 17:06:14 +0800 | [diff] [blame] | 1543 | return mmu_spte_update(sptep, spte); |
Xiao Guangrong | d13bc5b | 2012-06-20 15:57:15 +0800 | [diff] [blame] | 1544 | } |
| 1545 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1546 | static bool __rmap_write_protect(struct kvm *kvm, |
| 1547 | struct kvm_rmap_head *rmap_head, |
Takuya Yoshikawa | 245c391 | 2013-01-08 19:44:09 +0900 | [diff] [blame] | 1548 | bool pt_protect) |
Takuya Yoshikawa | a0ed460 | 2012-03-01 19:31:22 +0900 | [diff] [blame] | 1549 | { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1550 | u64 *sptep; |
| 1551 | struct rmap_iterator iter; |
Xiao Guangrong | d13bc5b | 2012-06-20 15:57:15 +0800 | [diff] [blame] | 1552 | bool flush = false; |
Takuya Yoshikawa | a0ed460 | 2012-03-01 19:31:22 +0900 | [diff] [blame] | 1553 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1554 | for_each_rmap_spte(rmap_head, &iter, sptep) |
Bandan Das | c4f138b | 2016-08-02 16:32:37 -0400 | [diff] [blame] | 1555 | flush |= spte_write_protect(sptep, pt_protect); |
Takuya Yoshikawa | a0ed460 | 2012-03-01 19:31:22 +0900 | [diff] [blame] | 1556 | |
Xiao Guangrong | d13bc5b | 2012-06-20 15:57:15 +0800 | [diff] [blame] | 1557 | return flush; |
Takuya Yoshikawa | a0ed460 | 2012-03-01 19:31:22 +0900 | [diff] [blame] | 1558 | } |
| 1559 | |
Bandan Das | c4f138b | 2016-08-02 16:32:37 -0400 | [diff] [blame] | 1560 | static bool spte_clear_dirty(u64 *sptep) |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 1561 | { |
| 1562 | u64 spte = *sptep; |
| 1563 | |
| 1564 | rmap_printk("rmap_clear_dirty: spte %p %llx\n", sptep, *sptep); |
| 1565 | |
| 1566 | spte &= ~shadow_dirty_mask; |
| 1567 | |
| 1568 | return mmu_spte_update(sptep, spte); |
| 1569 | } |
| 1570 | |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 1571 | static bool wrprot_ad_disabled_spte(u64 *sptep) |
| 1572 | { |
| 1573 | bool was_writable = test_and_clear_bit(PT_WRITABLE_SHIFT, |
| 1574 | (unsigned long *)sptep); |
| 1575 | if (was_writable) |
| 1576 | kvm_set_pfn_dirty(spte_to_pfn(*sptep)); |
| 1577 | |
| 1578 | return was_writable; |
| 1579 | } |
| 1580 | |
| 1581 | /* |
| 1582 | * Gets the GFN ready for another round of dirty logging by clearing the |
| 1583 | * - D bit on ad-enabled SPTEs, and |
| 1584 | * - W bit on ad-disabled SPTEs. |
| 1585 | * Returns true iff any D or W bits were cleared. |
| 1586 | */ |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1587 | static bool __rmap_clear_dirty(struct kvm *kvm, struct kvm_rmap_head *rmap_head) |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 1588 | { |
| 1589 | u64 *sptep; |
| 1590 | struct rmap_iterator iter; |
| 1591 | bool flush = false; |
| 1592 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1593 | for_each_rmap_spte(rmap_head, &iter, sptep) |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 1594 | if (spte_ad_enabled(*sptep)) |
| 1595 | flush |= spte_clear_dirty(sptep); |
| 1596 | else |
| 1597 | flush |= wrprot_ad_disabled_spte(sptep); |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 1598 | |
| 1599 | return flush; |
| 1600 | } |
| 1601 | |
Bandan Das | c4f138b | 2016-08-02 16:32:37 -0400 | [diff] [blame] | 1602 | static bool spte_set_dirty(u64 *sptep) |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 1603 | { |
| 1604 | u64 spte = *sptep; |
| 1605 | |
| 1606 | rmap_printk("rmap_set_dirty: spte %p %llx\n", sptep, *sptep); |
| 1607 | |
| 1608 | spte |= shadow_dirty_mask; |
| 1609 | |
| 1610 | return mmu_spte_update(sptep, spte); |
| 1611 | } |
| 1612 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1613 | static bool __rmap_set_dirty(struct kvm *kvm, struct kvm_rmap_head *rmap_head) |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 1614 | { |
| 1615 | u64 *sptep; |
| 1616 | struct rmap_iterator iter; |
| 1617 | bool flush = false; |
| 1618 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1619 | for_each_rmap_spte(rmap_head, &iter, sptep) |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 1620 | if (spte_ad_enabled(*sptep)) |
| 1621 | flush |= spte_set_dirty(sptep); |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 1622 | |
| 1623 | return flush; |
| 1624 | } |
| 1625 | |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1626 | /** |
Kai Huang | 3b0f1d0 | 2015-01-28 10:54:23 +0800 | [diff] [blame] | 1627 | * kvm_mmu_write_protect_pt_masked - write protect selected PT level pages |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1628 | * @kvm: kvm instance |
| 1629 | * @slot: slot to protect |
| 1630 | * @gfn_offset: start of the BITS_PER_LONG pages we care about |
| 1631 | * @mask: indicates which pages we should protect |
| 1632 | * |
| 1633 | * Used when we do not need to care about huge page mappings: e.g. during dirty |
| 1634 | * logging we do not have any such mappings. |
| 1635 | */ |
Kai Huang | 3b0f1d0 | 2015-01-28 10:54:23 +0800 | [diff] [blame] | 1636 | static void kvm_mmu_write_protect_pt_masked(struct kvm *kvm, |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1637 | struct kvm_memory_slot *slot, |
| 1638 | gfn_t gfn_offset, unsigned long mask) |
Izik Eidus | 98348e9 | 2007-10-16 14:42:30 +0200 | [diff] [blame] | 1639 | { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1640 | struct kvm_rmap_head *rmap_head; |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1641 | |
| 1642 | while (mask) { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1643 | rmap_head = __gfn_to_rmap(slot->base_gfn + gfn_offset + __ffs(mask), |
| 1644 | PT_PAGE_TABLE_LEVEL, slot); |
| 1645 | __rmap_write_protect(kvm, rmap_head, false); |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1646 | |
| 1647 | /* clear the first set bit */ |
| 1648 | mask &= mask - 1; |
| 1649 | } |
| 1650 | } |
| 1651 | |
Kai Huang | 3b0f1d0 | 2015-01-28 10:54:23 +0800 | [diff] [blame] | 1652 | /** |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 1653 | * kvm_mmu_clear_dirty_pt_masked - clear MMU D-bit for PT level pages, or write |
| 1654 | * protect the page if the D-bit isn't supported. |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 1655 | * @kvm: kvm instance |
| 1656 | * @slot: slot to clear D-bit |
| 1657 | * @gfn_offset: start of the BITS_PER_LONG pages we care about |
| 1658 | * @mask: indicates which pages we should clear D-bit |
| 1659 | * |
| 1660 | * Used for PML to re-log the dirty GPAs after userspace querying dirty_bitmap. |
| 1661 | */ |
| 1662 | void kvm_mmu_clear_dirty_pt_masked(struct kvm *kvm, |
| 1663 | struct kvm_memory_slot *slot, |
| 1664 | gfn_t gfn_offset, unsigned long mask) |
| 1665 | { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1666 | struct kvm_rmap_head *rmap_head; |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 1667 | |
| 1668 | while (mask) { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1669 | rmap_head = __gfn_to_rmap(slot->base_gfn + gfn_offset + __ffs(mask), |
| 1670 | PT_PAGE_TABLE_LEVEL, slot); |
| 1671 | __rmap_clear_dirty(kvm, rmap_head); |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 1672 | |
| 1673 | /* clear the first set bit */ |
| 1674 | mask &= mask - 1; |
| 1675 | } |
| 1676 | } |
| 1677 | EXPORT_SYMBOL_GPL(kvm_mmu_clear_dirty_pt_masked); |
| 1678 | |
| 1679 | /** |
Kai Huang | 3b0f1d0 | 2015-01-28 10:54:23 +0800 | [diff] [blame] | 1680 | * kvm_arch_mmu_enable_log_dirty_pt_masked - enable dirty logging for selected |
| 1681 | * PT level pages. |
| 1682 | * |
| 1683 | * It calls kvm_mmu_write_protect_pt_masked to write protect selected pages to |
| 1684 | * enable dirty logging for them. |
| 1685 | * |
| 1686 | * Used when we do not need to care about huge page mappings: e.g. during dirty |
| 1687 | * logging we do not have any such mappings. |
| 1688 | */ |
| 1689 | void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm, |
| 1690 | struct kvm_memory_slot *slot, |
| 1691 | gfn_t gfn_offset, unsigned long mask) |
| 1692 | { |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 1693 | if (kvm_x86_ops->enable_log_dirty_pt_masked) |
| 1694 | kvm_x86_ops->enable_log_dirty_pt_masked(kvm, slot, gfn_offset, |
| 1695 | mask); |
| 1696 | else |
| 1697 | kvm_mmu_write_protect_pt_masked(kvm, slot, gfn_offset, mask); |
Kai Huang | 3b0f1d0 | 2015-01-28 10:54:23 +0800 | [diff] [blame] | 1698 | } |
| 1699 | |
Bandan Das | bab4165 | 2017-05-05 15:25:13 -0400 | [diff] [blame] | 1700 | /** |
| 1701 | * kvm_arch_write_log_dirty - emulate dirty page logging |
| 1702 | * @vcpu: Guest mode vcpu |
| 1703 | * |
| 1704 | * Emulate arch specific page modification logging for the |
| 1705 | * nested hypervisor |
| 1706 | */ |
| 1707 | int kvm_arch_write_log_dirty(struct kvm_vcpu *vcpu) |
| 1708 | { |
| 1709 | if (kvm_x86_ops->write_log_dirty) |
| 1710 | return kvm_x86_ops->write_log_dirty(vcpu); |
| 1711 | |
| 1712 | return 0; |
| 1713 | } |
| 1714 | |
Xiao Guangrong | aeecee2 | 2016-02-24 17:51:08 +0800 | [diff] [blame] | 1715 | bool kvm_mmu_slot_gfn_write_protect(struct kvm *kvm, |
| 1716 | struct kvm_memory_slot *slot, u64 gfn) |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1717 | { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1718 | struct kvm_rmap_head *rmap_head; |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1719 | int i; |
Xiao Guangrong | 2f84569 | 2012-06-20 15:56:53 +0800 | [diff] [blame] | 1720 | bool write_protected = false; |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1721 | |
Xiao Guangrong | 8a3d08f | 2015-05-13 14:42:21 +0800 | [diff] [blame] | 1722 | for (i = PT_PAGE_TABLE_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1723 | rmap_head = __gfn_to_rmap(gfn, i, slot); |
Xiao Guangrong | aeecee2 | 2016-02-24 17:51:08 +0800 | [diff] [blame] | 1724 | write_protected |= __rmap_write_protect(kvm, rmap_head, true); |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1725 | } |
| 1726 | |
Marcelo Tosatti | b1a3682 | 2008-12-01 22:32:03 -0200 | [diff] [blame] | 1727 | return write_protected; |
Avi Kivity | 374cbac | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 1728 | } |
| 1729 | |
Xiao Guangrong | aeecee2 | 2016-02-24 17:51:08 +0800 | [diff] [blame] | 1730 | static bool rmap_write_protect(struct kvm_vcpu *vcpu, u64 gfn) |
| 1731 | { |
| 1732 | struct kvm_memory_slot *slot; |
| 1733 | |
| 1734 | slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn); |
| 1735 | return kvm_mmu_slot_gfn_write_protect(vcpu->kvm, slot, gfn); |
| 1736 | } |
| 1737 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1738 | static bool kvm_zap_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head) |
Xiao Guangrong | 6a49f85 | 2015-05-13 14:42:25 +0800 | [diff] [blame] | 1739 | { |
| 1740 | u64 *sptep; |
| 1741 | struct rmap_iterator iter; |
| 1742 | bool flush = false; |
| 1743 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1744 | while ((sptep = rmap_get_first(rmap_head, &iter))) { |
Xiao Guangrong | 6a49f85 | 2015-05-13 14:42:25 +0800 | [diff] [blame] | 1745 | rmap_printk("%s: spte %p %llx.\n", __func__, sptep, *sptep); |
| 1746 | |
Wei Yang | e791238 | 2018-10-04 10:04:23 +0800 | [diff] [blame] | 1747 | pte_list_remove(rmap_head, sptep); |
Xiao Guangrong | 6a49f85 | 2015-05-13 14:42:25 +0800 | [diff] [blame] | 1748 | flush = true; |
| 1749 | } |
| 1750 | |
| 1751 | return flush; |
| 1752 | } |
| 1753 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1754 | static int kvm_unmap_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head, |
Andres Lagar-Cavilla | 8a9522d | 2014-09-23 12:34:54 -0700 | [diff] [blame] | 1755 | struct kvm_memory_slot *slot, gfn_t gfn, int level, |
| 1756 | unsigned long data) |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1757 | { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1758 | return kvm_zap_rmapp(kvm, rmap_head); |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1759 | } |
| 1760 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1761 | static int kvm_set_pte_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head, |
Andres Lagar-Cavilla | 8a9522d | 2014-09-23 12:34:54 -0700 | [diff] [blame] | 1762 | struct kvm_memory_slot *slot, gfn_t gfn, int level, |
| 1763 | unsigned long data) |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1764 | { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1765 | u64 *sptep; |
| 1766 | struct rmap_iterator iter; |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1767 | int need_flush = 0; |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1768 | u64 new_spte; |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1769 | pte_t *ptep = (pte_t *)data; |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 1770 | kvm_pfn_t new_pfn; |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1771 | |
| 1772 | WARN_ON(pte_huge(*ptep)); |
| 1773 | new_pfn = pte_pfn(*ptep); |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1774 | |
Xiao Guangrong | 0d53679 | 2015-05-13 14:42:20 +0800 | [diff] [blame] | 1775 | restart: |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1776 | for_each_rmap_spte(rmap_head, &iter, sptep) { |
Andres Lagar-Cavilla | 8a9522d | 2014-09-23 12:34:54 -0700 | [diff] [blame] | 1777 | rmap_printk("kvm_set_pte_rmapp: spte %p %llx gfn %llx (%d)\n", |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 1778 | sptep, *sptep, gfn, level); |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1779 | |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1780 | need_flush = 1; |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1781 | |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1782 | if (pte_write(*ptep)) { |
Wei Yang | e791238 | 2018-10-04 10:04:23 +0800 | [diff] [blame] | 1783 | pte_list_remove(rmap_head, sptep); |
Xiao Guangrong | 0d53679 | 2015-05-13 14:42:20 +0800 | [diff] [blame] | 1784 | goto restart; |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1785 | } else { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1786 | new_spte = *sptep & ~PT64_BASE_ADDR_MASK; |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1787 | new_spte |= (u64)new_pfn << PAGE_SHIFT; |
| 1788 | |
| 1789 | new_spte &= ~PT_WRITABLE_MASK; |
| 1790 | new_spte &= ~SPTE_HOST_WRITEABLE; |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 1791 | |
| 1792 | new_spte = mark_spte_for_access_track(new_spte); |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1793 | |
| 1794 | mmu_spte_clear_track_bits(sptep); |
| 1795 | mmu_spte_set(sptep, new_spte); |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1796 | } |
| 1797 | } |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1798 | |
Lan Tianyu | 3cc5ea9 | 2018-12-06 21:21:12 +0800 | [diff] [blame] | 1799 | if (need_flush && kvm_available_flush_tlb_with_range()) { |
| 1800 | kvm_flush_remote_tlbs_with_address(kvm, gfn, 1); |
| 1801 | return 0; |
| 1802 | } |
| 1803 | |
Lan Tianyu | 0cf853c | 2018-12-06 21:21:11 +0800 | [diff] [blame] | 1804 | return need_flush; |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1805 | } |
| 1806 | |
Xiao Guangrong | 6ce1f4e | 2015-05-13 14:42:22 +0800 | [diff] [blame] | 1807 | struct slot_rmap_walk_iterator { |
| 1808 | /* input fields. */ |
| 1809 | struct kvm_memory_slot *slot; |
| 1810 | gfn_t start_gfn; |
| 1811 | gfn_t end_gfn; |
| 1812 | int start_level; |
| 1813 | int end_level; |
| 1814 | |
| 1815 | /* output fields. */ |
| 1816 | gfn_t gfn; |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1817 | struct kvm_rmap_head *rmap; |
Xiao Guangrong | 6ce1f4e | 2015-05-13 14:42:22 +0800 | [diff] [blame] | 1818 | int level; |
| 1819 | |
| 1820 | /* private field. */ |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1821 | struct kvm_rmap_head *end_rmap; |
Xiao Guangrong | 6ce1f4e | 2015-05-13 14:42:22 +0800 | [diff] [blame] | 1822 | }; |
| 1823 | |
| 1824 | static void |
| 1825 | rmap_walk_init_level(struct slot_rmap_walk_iterator *iterator, int level) |
| 1826 | { |
| 1827 | iterator->level = level; |
| 1828 | iterator->gfn = iterator->start_gfn; |
| 1829 | iterator->rmap = __gfn_to_rmap(iterator->gfn, level, iterator->slot); |
| 1830 | iterator->end_rmap = __gfn_to_rmap(iterator->end_gfn, level, |
| 1831 | iterator->slot); |
| 1832 | } |
| 1833 | |
| 1834 | static void |
| 1835 | slot_rmap_walk_init(struct slot_rmap_walk_iterator *iterator, |
| 1836 | struct kvm_memory_slot *slot, int start_level, |
| 1837 | int end_level, gfn_t start_gfn, gfn_t end_gfn) |
| 1838 | { |
| 1839 | iterator->slot = slot; |
| 1840 | iterator->start_level = start_level; |
| 1841 | iterator->end_level = end_level; |
| 1842 | iterator->start_gfn = start_gfn; |
| 1843 | iterator->end_gfn = end_gfn; |
| 1844 | |
| 1845 | rmap_walk_init_level(iterator, iterator->start_level); |
| 1846 | } |
| 1847 | |
| 1848 | static bool slot_rmap_walk_okay(struct slot_rmap_walk_iterator *iterator) |
| 1849 | { |
| 1850 | return !!iterator->rmap; |
| 1851 | } |
| 1852 | |
| 1853 | static void slot_rmap_walk_next(struct slot_rmap_walk_iterator *iterator) |
| 1854 | { |
| 1855 | if (++iterator->rmap <= iterator->end_rmap) { |
| 1856 | iterator->gfn += (1UL << KVM_HPAGE_GFN_SHIFT(iterator->level)); |
| 1857 | return; |
| 1858 | } |
| 1859 | |
| 1860 | if (++iterator->level > iterator->end_level) { |
| 1861 | iterator->rmap = NULL; |
| 1862 | return; |
| 1863 | } |
| 1864 | |
| 1865 | rmap_walk_init_level(iterator, iterator->level); |
| 1866 | } |
| 1867 | |
| 1868 | #define for_each_slot_rmap_range(_slot_, _start_level_, _end_level_, \ |
| 1869 | _start_gfn, _end_gfn, _iter_) \ |
| 1870 | for (slot_rmap_walk_init(_iter_, _slot_, _start_level_, \ |
| 1871 | _end_level_, _start_gfn, _end_gfn); \ |
| 1872 | slot_rmap_walk_okay(_iter_); \ |
| 1873 | slot_rmap_walk_next(_iter_)) |
| 1874 | |
Takuya Yoshikawa | 84504ef | 2012-07-02 17:55:48 +0900 | [diff] [blame] | 1875 | static int kvm_handle_hva_range(struct kvm *kvm, |
| 1876 | unsigned long start, |
| 1877 | unsigned long end, |
| 1878 | unsigned long data, |
| 1879 | int (*handler)(struct kvm *kvm, |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1880 | struct kvm_rmap_head *rmap_head, |
Takuya Yoshikawa | 048212d | 2012-07-02 17:57:59 +0900 | [diff] [blame] | 1881 | struct kvm_memory_slot *slot, |
Andres Lagar-Cavilla | 8a9522d | 2014-09-23 12:34:54 -0700 | [diff] [blame] | 1882 | gfn_t gfn, |
| 1883 | int level, |
Takuya Yoshikawa | 84504ef | 2012-07-02 17:55:48 +0900 | [diff] [blame] | 1884 | unsigned long data)) |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1885 | { |
Marcelo Tosatti | bc6678a | 2009-12-23 14:35:21 -0200 | [diff] [blame] | 1886 | struct kvm_memslots *slots; |
Xiao Guangrong | be6ba0f | 2011-11-24 17:39:18 +0800 | [diff] [blame] | 1887 | struct kvm_memory_slot *memslot; |
Xiao Guangrong | 6ce1f4e | 2015-05-13 14:42:22 +0800 | [diff] [blame] | 1888 | struct slot_rmap_walk_iterator iterator; |
| 1889 | int ret = 0; |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 1890 | int i; |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1891 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 1892 | for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) { |
| 1893 | slots = __kvm_memslots(kvm, i); |
| 1894 | kvm_for_each_memslot(memslot, slots) { |
| 1895 | unsigned long hva_start, hva_end; |
| 1896 | gfn_t gfn_start, gfn_end; |
Marcelo Tosatti | bc6678a | 2009-12-23 14:35:21 -0200 | [diff] [blame] | 1897 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 1898 | hva_start = max(start, memslot->userspace_addr); |
| 1899 | hva_end = min(end, memslot->userspace_addr + |
| 1900 | (memslot->npages << PAGE_SHIFT)); |
| 1901 | if (hva_start >= hva_end) |
| 1902 | continue; |
| 1903 | /* |
| 1904 | * {gfn(page) | page intersects with [hva_start, hva_end)} = |
| 1905 | * {gfn_start, gfn_start+1, ..., gfn_end-1}. |
| 1906 | */ |
| 1907 | gfn_start = hva_to_gfn_memslot(hva_start, memslot); |
| 1908 | gfn_end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, memslot); |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1909 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 1910 | for_each_slot_rmap_range(memslot, PT_PAGE_TABLE_LEVEL, |
| 1911 | PT_MAX_HUGEPAGE_LEVEL, |
| 1912 | gfn_start, gfn_end - 1, |
| 1913 | &iterator) |
| 1914 | ret |= handler(kvm, iterator.rmap, memslot, |
| 1915 | iterator.gfn, iterator.level, data); |
| 1916 | } |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1917 | } |
| 1918 | |
Takuya Yoshikawa | f395302 | 2012-07-02 17:58:48 +0900 | [diff] [blame] | 1919 | return ret; |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1920 | } |
| 1921 | |
Takuya Yoshikawa | 84504ef | 2012-07-02 17:55:48 +0900 | [diff] [blame] | 1922 | static int kvm_handle_hva(struct kvm *kvm, unsigned long hva, |
| 1923 | unsigned long data, |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1924 | int (*handler)(struct kvm *kvm, |
| 1925 | struct kvm_rmap_head *rmap_head, |
Takuya Yoshikawa | 048212d | 2012-07-02 17:57:59 +0900 | [diff] [blame] | 1926 | struct kvm_memory_slot *slot, |
Andres Lagar-Cavilla | 8a9522d | 2014-09-23 12:34:54 -0700 | [diff] [blame] | 1927 | gfn_t gfn, int level, |
Takuya Yoshikawa | 84504ef | 2012-07-02 17:55:48 +0900 | [diff] [blame] | 1928 | unsigned long data)) |
| 1929 | { |
| 1930 | return kvm_handle_hva_range(kvm, hva, hva + 1, data, handler); |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1931 | } |
| 1932 | |
Takuya Yoshikawa | b3ae209 | 2012-07-02 17:56:33 +0900 | [diff] [blame] | 1933 | int kvm_unmap_hva_range(struct kvm *kvm, unsigned long start, unsigned long end) |
| 1934 | { |
| 1935 | return kvm_handle_hva_range(kvm, start, end, 0, kvm_unmap_rmapp); |
| 1936 | } |
| 1937 | |
Lan Tianyu | 748c0e3 | 2018-12-06 21:21:10 +0800 | [diff] [blame] | 1938 | int kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte) |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1939 | { |
Lan Tianyu | 0cf853c | 2018-12-06 21:21:11 +0800 | [diff] [blame] | 1940 | return kvm_handle_hva(kvm, hva, (unsigned long)&pte, kvm_set_pte_rmapp); |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1941 | } |
| 1942 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1943 | static int kvm_age_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head, |
Andres Lagar-Cavilla | 8a9522d | 2014-09-23 12:34:54 -0700 | [diff] [blame] | 1944 | struct kvm_memory_slot *slot, gfn_t gfn, int level, |
| 1945 | unsigned long data) |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1946 | { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1947 | u64 *sptep; |
Michael S. Tsirkin | 79f702a | 2012-06-03 11:34:08 +0300 | [diff] [blame] | 1948 | struct rmap_iterator uninitialized_var(iter); |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1949 | int young = 0; |
| 1950 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 1951 | for_each_rmap_spte(rmap_head, &iter, sptep) |
| 1952 | young |= mmu_spte_age(sptep); |
Xiao Guangrong | 0d53679 | 2015-05-13 14:42:20 +0800 | [diff] [blame] | 1953 | |
Andres Lagar-Cavilla | 8a9522d | 2014-09-23 12:34:54 -0700 | [diff] [blame] | 1954 | trace_kvm_age_page(gfn, level, slot, young); |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1955 | return young; |
| 1956 | } |
| 1957 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1958 | static int kvm_test_age_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head, |
Andres Lagar-Cavilla | 8a9522d | 2014-09-23 12:34:54 -0700 | [diff] [blame] | 1959 | struct kvm_memory_slot *slot, gfn_t gfn, |
| 1960 | int level, unsigned long data) |
Andrea Arcangeli | 8ee5382 | 2011-01-13 15:47:10 -0800 | [diff] [blame] | 1961 | { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1962 | u64 *sptep; |
| 1963 | struct rmap_iterator iter; |
Andrea Arcangeli | 8ee5382 | 2011-01-13 15:47:10 -0800 | [diff] [blame] | 1964 | |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 1965 | for_each_rmap_spte(rmap_head, &iter, sptep) |
| 1966 | if (is_accessed_spte(*sptep)) |
| 1967 | return 1; |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 1968 | return 0; |
Andrea Arcangeli | 8ee5382 | 2011-01-13 15:47:10 -0800 | [diff] [blame] | 1969 | } |
| 1970 | |
Marcelo Tosatti | 53a27b3 | 2009-08-05 15:43:58 -0300 | [diff] [blame] | 1971 | #define RMAP_RECYCLE_THRESHOLD 1000 |
| 1972 | |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 1973 | static void rmap_recycle(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn) |
Marcelo Tosatti | 53a27b3 | 2009-08-05 15:43:58 -0300 | [diff] [blame] | 1974 | { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1975 | struct kvm_rmap_head *rmap_head; |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 1976 | struct kvm_mmu_page *sp; |
| 1977 | |
| 1978 | sp = page_header(__pa(spte)); |
Marcelo Tosatti | 53a27b3 | 2009-08-05 15:43:58 -0300 | [diff] [blame] | 1979 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1980 | rmap_head = gfn_to_rmap(vcpu->kvm, gfn, sp); |
Marcelo Tosatti | 53a27b3 | 2009-08-05 15:43:58 -0300 | [diff] [blame] | 1981 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1982 | kvm_unmap_rmapp(vcpu->kvm, rmap_head, NULL, gfn, sp->role.level, 0); |
Lan Tianyu | c3134ce | 2018-12-06 21:21:09 +0800 | [diff] [blame] | 1983 | kvm_flush_remote_tlbs_with_address(vcpu->kvm, sp->gfn, |
| 1984 | KVM_PAGES_PER_HPAGE(sp->role.level)); |
Marcelo Tosatti | 53a27b3 | 2009-08-05 15:43:58 -0300 | [diff] [blame] | 1985 | } |
| 1986 | |
Andres Lagar-Cavilla | 5712846 | 2014-09-22 14:54:42 -0700 | [diff] [blame] | 1987 | int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end) |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1988 | { |
Andres Lagar-Cavilla | 5712846 | 2014-09-22 14:54:42 -0700 | [diff] [blame] | 1989 | return kvm_handle_hva_range(kvm, start, end, 0, kvm_age_rmapp); |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1990 | } |
| 1991 | |
Andrea Arcangeli | 8ee5382 | 2011-01-13 15:47:10 -0800 | [diff] [blame] | 1992 | int kvm_test_age_hva(struct kvm *kvm, unsigned long hva) |
| 1993 | { |
| 1994 | return kvm_handle_hva(kvm, hva, 0, kvm_test_age_rmapp); |
| 1995 | } |
| 1996 | |
Yaozu Dong | d6c69ee | 2007-04-25 14:17:25 +0800 | [diff] [blame] | 1997 | #ifdef MMU_DEBUG |
Avi Kivity | 47ad8e6 | 2007-05-06 15:50:58 +0300 | [diff] [blame] | 1998 | static int is_empty_shadow_page(u64 *spt) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1999 | { |
Avi Kivity | 139bdb2 | 2007-01-05 16:36:50 -0800 | [diff] [blame] | 2000 | u64 *pos; |
| 2001 | u64 *end; |
| 2002 | |
Avi Kivity | 47ad8e6 | 2007-05-06 15:50:58 +0300 | [diff] [blame] | 2003 | for (pos = spt, end = pos + PAGE_SIZE / sizeof(u64); pos != end; pos++) |
Avi Kivity | 3c91551 | 2008-05-20 16:21:13 +0300 | [diff] [blame] | 2004 | if (is_shadow_present_pte(*pos)) { |
Harvey Harrison | b8688d5 | 2008-03-03 12:59:56 -0800 | [diff] [blame] | 2005 | printk(KERN_ERR "%s: %p %llx\n", __func__, |
Avi Kivity | 139bdb2 | 2007-01-05 16:36:50 -0800 | [diff] [blame] | 2006 | pos, *pos); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2007 | return 0; |
Avi Kivity | 139bdb2 | 2007-01-05 16:36:50 -0800 | [diff] [blame] | 2008 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2009 | return 1; |
| 2010 | } |
Yaozu Dong | d6c69ee | 2007-04-25 14:17:25 +0800 | [diff] [blame] | 2011 | #endif |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2012 | |
Dave Hansen | 45221ab | 2010-08-19 18:11:37 -0700 | [diff] [blame] | 2013 | /* |
| 2014 | * This value is the sum of all of the kvm instances's |
| 2015 | * kvm->arch.n_used_mmu_pages values. We need a global, |
| 2016 | * aggregate version in order to make the slab shrinker |
| 2017 | * faster |
| 2018 | */ |
Ben Gardon | bc8a3d8 | 2019-04-08 11:07:30 -0700 | [diff] [blame] | 2019 | static inline void kvm_mod_used_mmu_pages(struct kvm *kvm, unsigned long nr) |
Dave Hansen | 45221ab | 2010-08-19 18:11:37 -0700 | [diff] [blame] | 2020 | { |
| 2021 | kvm->arch.n_used_mmu_pages += nr; |
| 2022 | percpu_counter_add(&kvm_total_used_mmu_pages, nr); |
| 2023 | } |
| 2024 | |
Gleb Natapov | 834be0d | 2013-01-30 16:45:05 +0200 | [diff] [blame] | 2025 | static void kvm_mmu_free_page(struct kvm_mmu_page *sp) |
Avi Kivity | 260746c | 2007-01-05 16:36:49 -0800 | [diff] [blame] | 2026 | { |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 2027 | MMU_WARN_ON(!is_empty_shadow_page(sp->spt)); |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2028 | hlist_del(&sp->hash_link); |
Xiao Guangrong | bd4c86e | 2011-07-12 03:27:14 +0800 | [diff] [blame] | 2029 | list_del(&sp->link); |
| 2030 | free_page((unsigned long)sp->spt); |
Gleb Natapov | 834be0d | 2013-01-30 16:45:05 +0200 | [diff] [blame] | 2031 | if (!sp->role.direct) |
| 2032 | free_page((unsigned long)sp->gfns); |
Xiao Guangrong | e8ad9a7 | 2010-05-13 10:06:02 +0800 | [diff] [blame] | 2033 | kmem_cache_free(mmu_page_header_cache, sp); |
Avi Kivity | 260746c | 2007-01-05 16:36:49 -0800 | [diff] [blame] | 2034 | } |
| 2035 | |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2036 | static unsigned kvm_page_table_hashfn(gfn_t gfn) |
| 2037 | { |
David Matlack | 114df30 | 2016-12-19 13:58:25 -0800 | [diff] [blame] | 2038 | return hash_64(gfn, KVM_MMU_HASH_SHIFT); |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2039 | } |
| 2040 | |
Xiao Guangrong | 67052b3 | 2011-05-15 23:27:08 +0800 | [diff] [blame] | 2041 | static void mmu_page_add_parent_pte(struct kvm_vcpu *vcpu, |
| 2042 | struct kvm_mmu_page *sp, u64 *parent_pte) |
| 2043 | { |
| 2044 | if (!parent_pte) |
| 2045 | return; |
| 2046 | |
| 2047 | pte_list_add(vcpu, parent_pte, &sp->parent_ptes); |
| 2048 | } |
| 2049 | |
| 2050 | static void mmu_page_remove_parent_pte(struct kvm_mmu_page *sp, |
| 2051 | u64 *parent_pte) |
| 2052 | { |
Wei Yang | 8daf346 | 2018-10-04 10:04:22 +0800 | [diff] [blame] | 2053 | __pte_list_remove(parent_pte, &sp->parent_ptes); |
Xiao Guangrong | 67052b3 | 2011-05-15 23:27:08 +0800 | [diff] [blame] | 2054 | } |
| 2055 | |
Xiao Guangrong | bcdd9a9 | 2011-05-15 23:28:29 +0800 | [diff] [blame] | 2056 | static void drop_parent_pte(struct kvm_mmu_page *sp, |
| 2057 | u64 *parent_pte) |
| 2058 | { |
| 2059 | mmu_page_remove_parent_pte(sp, parent_pte); |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 2060 | mmu_spte_clear_no_track(parent_pte); |
Xiao Guangrong | bcdd9a9 | 2011-05-15 23:28:29 +0800 | [diff] [blame] | 2061 | } |
| 2062 | |
Takuya Yoshikawa | 4700579 | 2015-11-20 17:46:29 +0900 | [diff] [blame] | 2063 | static struct kvm_mmu_page *kvm_mmu_alloc_page(struct kvm_vcpu *vcpu, int direct) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2064 | { |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 2065 | struct kvm_mmu_page *sp; |
Takuya Yoshikawa | 7ddca7e | 2013-03-21 19:33:43 +0900 | [diff] [blame] | 2066 | |
Takuya Yoshikawa | 80feb89 | 2012-05-29 23:54:26 +0900 | [diff] [blame] | 2067 | sp = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_header_cache); |
| 2068 | sp->spt = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache); |
Lai Jiangshan | 2032a93 | 2010-05-26 16:49:59 +0800 | [diff] [blame] | 2069 | if (!direct) |
Takuya Yoshikawa | 80feb89 | 2012-05-29 23:54:26 +0900 | [diff] [blame] | 2070 | sp->gfns = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache); |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 2071 | set_page_private(virt_to_page(sp->spt), (unsigned long)sp); |
Zhang Xiantao | f05e70a | 2007-12-14 10:01:48 +0800 | [diff] [blame] | 2072 | list_add(&sp->link, &vcpu->kvm->arch.active_mmu_pages); |
Dave Hansen | 45221ab | 2010-08-19 18:11:37 -0700 | [diff] [blame] | 2073 | kvm_mod_used_mmu_pages(vcpu->kvm, +1); |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 2074 | return sp; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2075 | } |
| 2076 | |
Xiao Guangrong | 67052b3 | 2011-05-15 23:27:08 +0800 | [diff] [blame] | 2077 | static void mark_unsync(u64 *spte); |
Xiao Guangrong | 6b18493 | 2010-04-16 21:29:17 +0800 | [diff] [blame] | 2078 | static void kvm_mmu_mark_parents_unsync(struct kvm_mmu_page *sp) |
Marcelo Tosatti | 0074ff6 | 2008-09-23 13:18:40 -0300 | [diff] [blame] | 2079 | { |
Takuya Yoshikawa | 74c4e63 | 2015-11-26 21:15:38 +0900 | [diff] [blame] | 2080 | u64 *sptep; |
| 2081 | struct rmap_iterator iter; |
| 2082 | |
| 2083 | for_each_rmap_spte(&sp->parent_ptes, &iter, sptep) { |
| 2084 | mark_unsync(sptep); |
| 2085 | } |
Xiao Guangrong | 1047df1 | 2010-06-11 21:35:15 +0800 | [diff] [blame] | 2086 | } |
| 2087 | |
Xiao Guangrong | 67052b3 | 2011-05-15 23:27:08 +0800 | [diff] [blame] | 2088 | static void mark_unsync(u64 *spte) |
Xiao Guangrong | 1047df1 | 2010-06-11 21:35:15 +0800 | [diff] [blame] | 2089 | { |
Xiao Guangrong | 67052b3 | 2011-05-15 23:27:08 +0800 | [diff] [blame] | 2090 | struct kvm_mmu_page *sp; |
Xiao Guangrong | 1047df1 | 2010-06-11 21:35:15 +0800 | [diff] [blame] | 2091 | unsigned int index; |
| 2092 | |
Xiao Guangrong | 67052b3 | 2011-05-15 23:27:08 +0800 | [diff] [blame] | 2093 | sp = page_header(__pa(spte)); |
Xiao Guangrong | 1047df1 | 2010-06-11 21:35:15 +0800 | [diff] [blame] | 2094 | index = spte - sp->spt; |
| 2095 | if (__test_and_set_bit(index, sp->unsync_child_bitmap)) |
| 2096 | return; |
| 2097 | if (sp->unsync_children++) |
| 2098 | return; |
| 2099 | kvm_mmu_mark_parents_unsync(sp); |
Marcelo Tosatti | 0074ff6 | 2008-09-23 13:18:40 -0300 | [diff] [blame] | 2100 | } |
| 2101 | |
Marcelo Tosatti | e8bc217 | 2008-09-23 13:18:33 -0300 | [diff] [blame] | 2102 | static int nonpaging_sync_page(struct kvm_vcpu *vcpu, |
Xiao Guangrong | a4a8e6f | 2010-11-19 17:04:03 +0800 | [diff] [blame] | 2103 | struct kvm_mmu_page *sp) |
Marcelo Tosatti | e8bc217 | 2008-09-23 13:18:33 -0300 | [diff] [blame] | 2104 | { |
Paolo Bonzini | 1f50f1b | 2016-02-24 11:07:14 +0100 | [diff] [blame] | 2105 | return 0; |
Marcelo Tosatti | e8bc217 | 2008-09-23 13:18:33 -0300 | [diff] [blame] | 2106 | } |
| 2107 | |
Junaid Shahid | 7eb77e9 | 2018-06-27 14:59:16 -0700 | [diff] [blame] | 2108 | static void nonpaging_invlpg(struct kvm_vcpu *vcpu, gva_t gva, hpa_t root) |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 2109 | { |
| 2110 | } |
| 2111 | |
Xiao Guangrong | 0f53b5b | 2011-03-09 15:43:51 +0800 | [diff] [blame] | 2112 | static void nonpaging_update_pte(struct kvm_vcpu *vcpu, |
| 2113 | struct kvm_mmu_page *sp, u64 *spte, |
Xiao Guangrong | 7c56252 | 2011-03-28 10:29:27 +0800 | [diff] [blame] | 2114 | const void *pte) |
Xiao Guangrong | 0f53b5b | 2011-03-09 15:43:51 +0800 | [diff] [blame] | 2115 | { |
| 2116 | WARN_ON(1); |
| 2117 | } |
| 2118 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2119 | #define KVM_PAGE_ARRAY_NR 16 |
| 2120 | |
| 2121 | struct kvm_mmu_pages { |
| 2122 | struct mmu_page_and_offset { |
| 2123 | struct kvm_mmu_page *sp; |
| 2124 | unsigned int idx; |
| 2125 | } page[KVM_PAGE_ARRAY_NR]; |
| 2126 | unsigned int nr; |
| 2127 | }; |
| 2128 | |
Hannes Eder | cded19f | 2009-02-21 02:19:13 +0100 | [diff] [blame] | 2129 | static int mmu_pages_add(struct kvm_mmu_pages *pvec, struct kvm_mmu_page *sp, |
| 2130 | int idx) |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2131 | { |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2132 | int i; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2133 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2134 | if (sp->unsync) |
| 2135 | for (i=0; i < pvec->nr; i++) |
| 2136 | if (pvec->page[i].sp == sp) |
| 2137 | return 0; |
| 2138 | |
| 2139 | pvec->page[pvec->nr].sp = sp; |
| 2140 | pvec->page[pvec->nr].idx = idx; |
| 2141 | pvec->nr++; |
| 2142 | return (pvec->nr == KVM_PAGE_ARRAY_NR); |
| 2143 | } |
| 2144 | |
Takuya Yoshikawa | fd95145 | 2015-11-20 17:43:13 +0900 | [diff] [blame] | 2145 | static inline void clear_unsync_child_bit(struct kvm_mmu_page *sp, int idx) |
| 2146 | { |
| 2147 | --sp->unsync_children; |
| 2148 | WARN_ON((int)sp->unsync_children < 0); |
| 2149 | __clear_bit(idx, sp->unsync_child_bitmap); |
| 2150 | } |
| 2151 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2152 | static int __mmu_unsync_walk(struct kvm_mmu_page *sp, |
| 2153 | struct kvm_mmu_pages *pvec) |
| 2154 | { |
| 2155 | int i, ret, nr_unsync_leaf = 0; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2156 | |
Takuya Yoshikawa | 37178b8 | 2011-11-29 14:02:45 +0900 | [diff] [blame] | 2157 | for_each_set_bit(i, sp->unsync_child_bitmap, 512) { |
Xiao Guangrong | 7a8f1a7 | 2010-06-11 21:34:04 +0800 | [diff] [blame] | 2158 | struct kvm_mmu_page *child; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2159 | u64 ent = sp->spt[i]; |
| 2160 | |
Takuya Yoshikawa | fd95145 | 2015-11-20 17:43:13 +0900 | [diff] [blame] | 2161 | if (!is_shadow_present_pte(ent) || is_large_pte(ent)) { |
| 2162 | clear_unsync_child_bit(sp, i); |
| 2163 | continue; |
| 2164 | } |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2165 | |
Xiao Guangrong | 7a8f1a7 | 2010-06-11 21:34:04 +0800 | [diff] [blame] | 2166 | child = page_header(ent & PT64_BASE_ADDR_MASK); |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2167 | |
Xiao Guangrong | 7a8f1a7 | 2010-06-11 21:34:04 +0800 | [diff] [blame] | 2168 | if (child->unsync_children) { |
| 2169 | if (mmu_pages_add(pvec, child, i)) |
| 2170 | return -ENOSPC; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2171 | |
Xiao Guangrong | 7a8f1a7 | 2010-06-11 21:34:04 +0800 | [diff] [blame] | 2172 | ret = __mmu_unsync_walk(child, pvec); |
Takuya Yoshikawa | fd95145 | 2015-11-20 17:43:13 +0900 | [diff] [blame] | 2173 | if (!ret) { |
| 2174 | clear_unsync_child_bit(sp, i); |
| 2175 | continue; |
| 2176 | } else if (ret > 0) { |
Xiao Guangrong | 7a8f1a7 | 2010-06-11 21:34:04 +0800 | [diff] [blame] | 2177 | nr_unsync_leaf += ret; |
Takuya Yoshikawa | fd95145 | 2015-11-20 17:43:13 +0900 | [diff] [blame] | 2178 | } else |
Xiao Guangrong | 7a8f1a7 | 2010-06-11 21:34:04 +0800 | [diff] [blame] | 2179 | return ret; |
| 2180 | } else if (child->unsync) { |
| 2181 | nr_unsync_leaf++; |
| 2182 | if (mmu_pages_add(pvec, child, i)) |
| 2183 | return -ENOSPC; |
| 2184 | } else |
Takuya Yoshikawa | fd95145 | 2015-11-20 17:43:13 +0900 | [diff] [blame] | 2185 | clear_unsync_child_bit(sp, i); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2186 | } |
| 2187 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2188 | return nr_unsync_leaf; |
| 2189 | } |
| 2190 | |
Xiao Guangrong | e23d3fe | 2016-02-24 09:46:06 +0100 | [diff] [blame] | 2191 | #define INVALID_INDEX (-1) |
| 2192 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2193 | static int mmu_unsync_walk(struct kvm_mmu_page *sp, |
| 2194 | struct kvm_mmu_pages *pvec) |
| 2195 | { |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2196 | pvec->nr = 0; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2197 | if (!sp->unsync_children) |
| 2198 | return 0; |
| 2199 | |
Xiao Guangrong | e23d3fe | 2016-02-24 09:46:06 +0100 | [diff] [blame] | 2200 | mmu_pages_add(pvec, sp, INVALID_INDEX); |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2201 | return __mmu_unsync_walk(sp, pvec); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2202 | } |
| 2203 | |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2204 | static void kvm_unlink_unsync_page(struct kvm *kvm, struct kvm_mmu_page *sp) |
| 2205 | { |
| 2206 | WARN_ON(!sp->unsync); |
Xiao Guangrong | 5e1b3dd | 2010-04-28 11:55:06 +0800 | [diff] [blame] | 2207 | trace_kvm_mmu_sync_page(sp); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2208 | sp->unsync = 0; |
| 2209 | --kvm->stat.mmu_unsync; |
| 2210 | } |
| 2211 | |
Sean Christopherson | 83cdb56 | 2019-02-05 13:01:35 -0800 | [diff] [blame] | 2212 | static bool kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp, |
| 2213 | struct list_head *invalid_list); |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2214 | static void kvm_mmu_commit_zap_page(struct kvm *kvm, |
| 2215 | struct list_head *invalid_list); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2216 | |
Sean Christopherson | 47c42e6 | 2019-03-07 15:27:44 -0800 | [diff] [blame] | 2217 | |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 2218 | #define for_each_valid_sp(_kvm, _sp, _gfn) \ |
Takuya Yoshikawa | 1044b03 | 2013-03-06 16:05:07 +0900 | [diff] [blame] | 2219 | hlist_for_each_entry(_sp, \ |
| 2220 | &(_kvm)->arch.mmu_page_hash[kvm_page_table_hashfn(_gfn)], hash_link) \ |
Sean Christopherson | ea145aa | 2019-02-05 13:01:34 -0800 | [diff] [blame] | 2221 | if ((_sp)->role.invalid) { \ |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 2222 | } else |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2223 | |
Takuya Yoshikawa | 1044b03 | 2013-03-06 16:05:07 +0900 | [diff] [blame] | 2224 | #define for_each_gfn_indirect_valid_sp(_kvm, _sp, _gfn) \ |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 2225 | for_each_valid_sp(_kvm, _sp, _gfn) \ |
| 2226 | if ((_sp)->gfn != (_gfn) || (_sp)->role.direct) {} else |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2227 | |
Sean Christopherson | 47c42e6 | 2019-03-07 15:27:44 -0800 | [diff] [blame] | 2228 | static inline bool is_ept_sp(struct kvm_mmu_page *sp) |
| 2229 | { |
| 2230 | return sp->role.cr0_wp && sp->role.smap_andnot_wp; |
| 2231 | } |
| 2232 | |
Xiao Guangrong | f918b44 | 2010-06-11 21:30:36 +0800 | [diff] [blame] | 2233 | /* @sp->gfn should be write-protected at the call site */ |
Paolo Bonzini | 1f50f1b | 2016-02-24 11:07:14 +0100 | [diff] [blame] | 2234 | static bool __kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp, |
| 2235 | struct list_head *invalid_list) |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2236 | { |
Sean Christopherson | 47c42e6 | 2019-03-07 15:27:44 -0800 | [diff] [blame] | 2237 | if ((!is_ept_sp(sp) && sp->role.gpte_is_8_bytes != !!is_pae(vcpu)) || |
| 2238 | vcpu->arch.mmu->sync_page(vcpu, sp) == 0) { |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 2239 | kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list); |
Paolo Bonzini | 1f50f1b | 2016-02-24 11:07:14 +0100 | [diff] [blame] | 2240 | return false; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2241 | } |
| 2242 | |
Paolo Bonzini | 1f50f1b | 2016-02-24 11:07:14 +0100 | [diff] [blame] | 2243 | return true; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2244 | } |
| 2245 | |
Sean Christopherson | a211363 | 2019-02-05 13:01:20 -0800 | [diff] [blame] | 2246 | static bool kvm_mmu_remote_flush_or_zap(struct kvm *kvm, |
| 2247 | struct list_head *invalid_list, |
| 2248 | bool remote_flush) |
| 2249 | { |
Sean Christopherson | cfd32ac | 2019-04-12 19:55:41 -0700 | [diff] [blame] | 2250 | if (!remote_flush && list_empty(invalid_list)) |
Sean Christopherson | a211363 | 2019-02-05 13:01:20 -0800 | [diff] [blame] | 2251 | return false; |
| 2252 | |
| 2253 | if (!list_empty(invalid_list)) |
| 2254 | kvm_mmu_commit_zap_page(kvm, invalid_list); |
| 2255 | else |
| 2256 | kvm_flush_remote_tlbs(kvm); |
| 2257 | return true; |
| 2258 | } |
| 2259 | |
Paolo Bonzini | 35a7051 | 2016-02-24 10:03:27 +0100 | [diff] [blame] | 2260 | static void kvm_mmu_flush_or_zap(struct kvm_vcpu *vcpu, |
| 2261 | struct list_head *invalid_list, |
| 2262 | bool remote_flush, bool local_flush) |
Xiao Guangrong | 1d9dc7e | 2010-05-15 18:51:24 +0800 | [diff] [blame] | 2263 | { |
Sean Christopherson | a211363 | 2019-02-05 13:01:20 -0800 | [diff] [blame] | 2264 | if (kvm_mmu_remote_flush_or_zap(vcpu->kvm, invalid_list, remote_flush)) |
Paolo Bonzini | 35a7051 | 2016-02-24 10:03:27 +0100 | [diff] [blame] | 2265 | return; |
Xiao Guangrong | 1d9dc7e | 2010-05-15 18:51:24 +0800 | [diff] [blame] | 2266 | |
Sean Christopherson | a211363 | 2019-02-05 13:01:20 -0800 | [diff] [blame] | 2267 | if (local_flush) |
Paolo Bonzini | 35a7051 | 2016-02-24 10:03:27 +0100 | [diff] [blame] | 2268 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Xiao Guangrong | 1d9dc7e | 2010-05-15 18:51:24 +0800 | [diff] [blame] | 2269 | } |
| 2270 | |
Xiao Guangrong | e37fa78 | 2011-11-30 17:43:24 +0800 | [diff] [blame] | 2271 | #ifdef CONFIG_KVM_MMU_AUDIT |
| 2272 | #include "mmu_audit.c" |
| 2273 | #else |
| 2274 | static void kvm_mmu_audit(struct kvm_vcpu *vcpu, int point) { } |
| 2275 | static void mmu_audit_disable(void) { } |
| 2276 | #endif |
| 2277 | |
Paolo Bonzini | 1f50f1b | 2016-02-24 11:07:14 +0100 | [diff] [blame] | 2278 | static bool kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp, |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 2279 | struct list_head *invalid_list) |
Xiao Guangrong | 1d9dc7e | 2010-05-15 18:51:24 +0800 | [diff] [blame] | 2280 | { |
Paolo Bonzini | 9a43c5d | 2016-02-24 10:28:01 +0100 | [diff] [blame] | 2281 | kvm_unlink_unsync_page(vcpu->kvm, sp); |
| 2282 | return __kvm_sync_page(vcpu, sp, invalid_list); |
Xiao Guangrong | 1d9dc7e | 2010-05-15 18:51:24 +0800 | [diff] [blame] | 2283 | } |
| 2284 | |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2285 | /* @gfn should be write-protected at the call site */ |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2286 | static bool kvm_sync_pages(struct kvm_vcpu *vcpu, gfn_t gfn, |
| 2287 | struct list_head *invalid_list) |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2288 | { |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2289 | struct kvm_mmu_page *s; |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2290 | bool ret = false; |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2291 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 2292 | for_each_gfn_indirect_valid_sp(vcpu->kvm, s, gfn) { |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2293 | if (!s->unsync) |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2294 | continue; |
| 2295 | |
| 2296 | WARN_ON(s->role.level != PT_PAGE_TABLE_LEVEL); |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2297 | ret |= kvm_sync_page(vcpu, s, invalid_list); |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2298 | } |
| 2299 | |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2300 | return ret; |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2301 | } |
| 2302 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2303 | struct mmu_page_path { |
Yu Zhang | 2a7266a | 2017-08-24 20:27:54 +0800 | [diff] [blame] | 2304 | struct kvm_mmu_page *parent[PT64_ROOT_MAX_LEVEL]; |
| 2305 | unsigned int idx[PT64_ROOT_MAX_LEVEL]; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2306 | }; |
| 2307 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2308 | #define for_each_sp(pvec, sp, parents, i) \ |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2309 | for (i = mmu_pages_first(&pvec, &parents); \ |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2310 | i < pvec.nr && ({ sp = pvec.page[i].sp; 1;}); \ |
| 2311 | i = mmu_pages_next(&pvec, &parents, i)) |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2312 | |
Hannes Eder | cded19f | 2009-02-21 02:19:13 +0100 | [diff] [blame] | 2313 | static int mmu_pages_next(struct kvm_mmu_pages *pvec, |
| 2314 | struct mmu_page_path *parents, |
| 2315 | int i) |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2316 | { |
| 2317 | int n; |
| 2318 | |
| 2319 | for (n = i+1; n < pvec->nr; n++) { |
| 2320 | struct kvm_mmu_page *sp = pvec->page[n].sp; |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2321 | unsigned idx = pvec->page[n].idx; |
| 2322 | int level = sp->role.level; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2323 | |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2324 | parents->idx[level-1] = idx; |
| 2325 | if (level == PT_PAGE_TABLE_LEVEL) |
| 2326 | break; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2327 | |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2328 | parents->parent[level-2] = sp; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2329 | } |
| 2330 | |
| 2331 | return n; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2332 | } |
| 2333 | |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2334 | static int mmu_pages_first(struct kvm_mmu_pages *pvec, |
| 2335 | struct mmu_page_path *parents) |
| 2336 | { |
| 2337 | struct kvm_mmu_page *sp; |
| 2338 | int level; |
| 2339 | |
| 2340 | if (pvec->nr == 0) |
| 2341 | return 0; |
| 2342 | |
Xiao Guangrong | e23d3fe | 2016-02-24 09:46:06 +0100 | [diff] [blame] | 2343 | WARN_ON(pvec->page[0].idx != INVALID_INDEX); |
| 2344 | |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2345 | sp = pvec->page[0].sp; |
| 2346 | level = sp->role.level; |
| 2347 | WARN_ON(level == PT_PAGE_TABLE_LEVEL); |
| 2348 | |
| 2349 | parents->parent[level-2] = sp; |
| 2350 | |
| 2351 | /* Also set up a sentinel. Further entries in pvec are all |
| 2352 | * children of sp, so this element is never overwritten. |
| 2353 | */ |
| 2354 | parents->parent[level-1] = NULL; |
| 2355 | return mmu_pages_next(pvec, parents, 0); |
| 2356 | } |
| 2357 | |
Hannes Eder | cded19f | 2009-02-21 02:19:13 +0100 | [diff] [blame] | 2358 | static void mmu_pages_clear_parents(struct mmu_page_path *parents) |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2359 | { |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2360 | struct kvm_mmu_page *sp; |
| 2361 | unsigned int level = 0; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2362 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2363 | do { |
| 2364 | unsigned int idx = parents->idx[level]; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2365 | sp = parents->parent[level]; |
| 2366 | if (!sp) |
| 2367 | return; |
| 2368 | |
Xiao Guangrong | e23d3fe | 2016-02-24 09:46:06 +0100 | [diff] [blame] | 2369 | WARN_ON(idx == INVALID_INDEX); |
Takuya Yoshikawa | fd95145 | 2015-11-20 17:43:13 +0900 | [diff] [blame] | 2370 | clear_unsync_child_bit(sp, idx); |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2371 | level++; |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2372 | } while (!sp->unsync_children); |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2373 | } |
| 2374 | |
| 2375 | static void mmu_sync_children(struct kvm_vcpu *vcpu, |
| 2376 | struct kvm_mmu_page *parent) |
| 2377 | { |
| 2378 | int i; |
| 2379 | struct kvm_mmu_page *sp; |
| 2380 | struct mmu_page_path parents; |
| 2381 | struct kvm_mmu_pages pages; |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 2382 | LIST_HEAD(invalid_list); |
Paolo Bonzini | 50c9e6f | 2016-02-25 10:47:38 +0100 | [diff] [blame] | 2383 | bool flush = false; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2384 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2385 | while (mmu_unsync_walk(parent, &pages)) { |
Xiao Guangrong | 2f84569 | 2012-06-20 15:56:53 +0800 | [diff] [blame] | 2386 | bool protected = false; |
Marcelo Tosatti | b1a3682 | 2008-12-01 22:32:03 -0200 | [diff] [blame] | 2387 | |
| 2388 | for_each_sp(pages, sp, parents, i) |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 2389 | protected |= rmap_write_protect(vcpu, sp->gfn); |
Marcelo Tosatti | b1a3682 | 2008-12-01 22:32:03 -0200 | [diff] [blame] | 2390 | |
Paolo Bonzini | 50c9e6f | 2016-02-25 10:47:38 +0100 | [diff] [blame] | 2391 | if (protected) { |
Marcelo Tosatti | b1a3682 | 2008-12-01 22:32:03 -0200 | [diff] [blame] | 2392 | kvm_flush_remote_tlbs(vcpu->kvm); |
Paolo Bonzini | 50c9e6f | 2016-02-25 10:47:38 +0100 | [diff] [blame] | 2393 | flush = false; |
| 2394 | } |
Marcelo Tosatti | b1a3682 | 2008-12-01 22:32:03 -0200 | [diff] [blame] | 2395 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2396 | for_each_sp(pages, sp, parents, i) { |
Paolo Bonzini | 1f50f1b | 2016-02-24 11:07:14 +0100 | [diff] [blame] | 2397 | flush |= kvm_sync_page(vcpu, sp, &invalid_list); |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2398 | mmu_pages_clear_parents(&parents); |
| 2399 | } |
Paolo Bonzini | 50c9e6f | 2016-02-25 10:47:38 +0100 | [diff] [blame] | 2400 | if (need_resched() || spin_needbreak(&vcpu->kvm->mmu_lock)) { |
| 2401 | kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush); |
| 2402 | cond_resched_lock(&vcpu->kvm->mmu_lock); |
| 2403 | flush = false; |
| 2404 | } |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2405 | } |
Paolo Bonzini | 50c9e6f | 2016-02-25 10:47:38 +0100 | [diff] [blame] | 2406 | |
| 2407 | kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2408 | } |
| 2409 | |
Xiao Guangrong | a30f47c | 2011-09-22 16:58:36 +0800 | [diff] [blame] | 2410 | static void __clear_sp_write_flooding_count(struct kvm_mmu_page *sp) |
| 2411 | { |
Xiao Guangrong | e5691a8 | 2016-02-24 17:51:12 +0800 | [diff] [blame] | 2412 | atomic_set(&sp->write_flooding_count, 0); |
Xiao Guangrong | a30f47c | 2011-09-22 16:58:36 +0800 | [diff] [blame] | 2413 | } |
| 2414 | |
| 2415 | static void clear_sp_write_flooding_count(u64 *spte) |
| 2416 | { |
| 2417 | struct kvm_mmu_page *sp = page_header(__pa(spte)); |
| 2418 | |
| 2419 | __clear_sp_write_flooding_count(sp); |
| 2420 | } |
| 2421 | |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2422 | static struct kvm_mmu_page *kvm_mmu_get_page(struct kvm_vcpu *vcpu, |
| 2423 | gfn_t gfn, |
| 2424 | gva_t gaddr, |
| 2425 | unsigned level, |
Avi Kivity | f6e2c02b | 2009-01-11 13:02:10 +0200 | [diff] [blame] | 2426 | int direct, |
Takuya Yoshikawa | bb11c6c | 2015-11-26 21:16:35 +0900 | [diff] [blame] | 2427 | unsigned access) |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2428 | { |
| 2429 | union kvm_mmu_page_role role; |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2430 | unsigned quadrant; |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2431 | struct kvm_mmu_page *sp; |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2432 | bool need_sync = false; |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2433 | bool flush = false; |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 2434 | int collisions = 0; |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2435 | LIST_HEAD(invalid_list); |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2436 | |
Vitaly Kuznetsov | 36d9594d | 2018-10-08 21:28:10 +0200 | [diff] [blame] | 2437 | role = vcpu->arch.mmu->mmu_role.base; |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2438 | role.level = level; |
Avi Kivity | f6e2c02b | 2009-01-11 13:02:10 +0200 | [diff] [blame] | 2439 | role.direct = direct; |
Avi Kivity | 84b0c8c | 2010-03-14 10:16:40 +0200 | [diff] [blame] | 2440 | if (role.direct) |
Sean Christopherson | 47c42e6 | 2019-03-07 15:27:44 -0800 | [diff] [blame] | 2441 | role.gpte_is_8_bytes = true; |
Avi Kivity | 41074d0 | 2007-12-09 17:00:02 +0200 | [diff] [blame] | 2442 | role.access = access; |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 2443 | if (!vcpu->arch.mmu->direct_map |
| 2444 | && vcpu->arch.mmu->root_level <= PT32_ROOT_LEVEL) { |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2445 | quadrant = gaddr >> (PAGE_SHIFT + (PT64_PT_BITS * level)); |
| 2446 | quadrant &= (1 << ((PT32_PT_BITS - PT64_PT_BITS) * level)) - 1; |
| 2447 | role.quadrant = quadrant; |
| 2448 | } |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 2449 | for_each_valid_sp(vcpu->kvm, sp, gfn) { |
| 2450 | if (sp->gfn != gfn) { |
| 2451 | collisions++; |
| 2452 | continue; |
| 2453 | } |
| 2454 | |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2455 | if (!need_sync && sp->unsync) |
| 2456 | need_sync = true; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2457 | |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2458 | if (sp->role.word != role.word) |
| 2459 | continue; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2460 | |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2461 | if (sp->unsync) { |
| 2462 | /* The page is good, but __kvm_sync_page might still end |
| 2463 | * up zapping it. If so, break in order to rebuild it. |
| 2464 | */ |
| 2465 | if (!__kvm_sync_page(vcpu, sp, &invalid_list)) |
| 2466 | break; |
| 2467 | |
| 2468 | WARN_ON(!list_empty(&invalid_list)); |
| 2469 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
| 2470 | } |
Xiao Guangrong | e02aa90 | 2010-05-15 18:52:34 +0800 | [diff] [blame] | 2471 | |
Takuya Yoshikawa | 98bba23 | 2015-11-26 21:14:34 +0900 | [diff] [blame] | 2472 | if (sp->unsync_children) |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 2473 | kvm_make_request(KVM_REQ_MMU_SYNC, vcpu); |
Xiao Guangrong | e02aa90 | 2010-05-15 18:52:34 +0800 | [diff] [blame] | 2474 | |
Xiao Guangrong | a30f47c | 2011-09-22 16:58:36 +0800 | [diff] [blame] | 2475 | __clear_sp_write_flooding_count(sp); |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2476 | trace_kvm_mmu_get_page(sp, false); |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 2477 | goto out; |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2478 | } |
Takuya Yoshikawa | 4700579 | 2015-11-20 17:46:29 +0900 | [diff] [blame] | 2479 | |
Avi Kivity | dfc5aa0 | 2007-12-18 19:47:18 +0200 | [diff] [blame] | 2480 | ++vcpu->kvm->stat.mmu_cache_miss; |
Takuya Yoshikawa | 4700579 | 2015-11-20 17:46:29 +0900 | [diff] [blame] | 2481 | |
| 2482 | sp = kvm_mmu_alloc_page(vcpu, direct); |
| 2483 | |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 2484 | sp->gfn = gfn; |
| 2485 | sp->role = role; |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2486 | hlist_add_head(&sp->hash_link, |
| 2487 | &vcpu->kvm->arch.mmu_page_hash[kvm_page_table_hashfn(gfn)]); |
Avi Kivity | f6e2c02b | 2009-01-11 13:02:10 +0200 | [diff] [blame] | 2488 | if (!direct) { |
Xiao Guangrong | 56ca57f | 2016-02-24 17:51:14 +0800 | [diff] [blame] | 2489 | /* |
| 2490 | * we should do write protection before syncing pages |
| 2491 | * otherwise the content of the synced shadow page may |
| 2492 | * be inconsistent with guest page table. |
| 2493 | */ |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 2494 | account_shadowed(vcpu->kvm, sp); |
Xiao Guangrong | 56ca57f | 2016-02-24 17:51:14 +0800 | [diff] [blame] | 2495 | if (level == PT_PAGE_TABLE_LEVEL && |
| 2496 | rmap_write_protect(vcpu, gfn)) |
Lan Tianyu | c3134ce | 2018-12-06 21:21:09 +0800 | [diff] [blame] | 2497 | kvm_flush_remote_tlbs_with_address(vcpu->kvm, gfn, 1); |
Xiao Guangrong | 56ca57f | 2016-02-24 17:51:14 +0800 | [diff] [blame] | 2498 | |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2499 | if (level > PT_PAGE_TABLE_LEVEL && need_sync) |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2500 | flush |= kvm_sync_pages(vcpu, gfn, &invalid_list); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2501 | } |
Takuya Yoshikawa | 7749266 | 2015-12-18 18:54:49 +0900 | [diff] [blame] | 2502 | clear_page(sp->spt); |
Avi Kivity | f691fe1 | 2009-07-06 15:58:14 +0300 | [diff] [blame] | 2503 | trace_kvm_mmu_get_page(sp, true); |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2504 | |
| 2505 | kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush); |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 2506 | out: |
| 2507 | if (collisions > vcpu->kvm->stat.max_mmu_page_hash_collisions) |
| 2508 | vcpu->kvm->stat.max_mmu_page_hash_collisions = collisions; |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 2509 | return sp; |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2510 | } |
| 2511 | |
Junaid Shahid | 7eb77e9 | 2018-06-27 14:59:16 -0700 | [diff] [blame] | 2512 | static void shadow_walk_init_using_root(struct kvm_shadow_walk_iterator *iterator, |
| 2513 | struct kvm_vcpu *vcpu, hpa_t root, |
| 2514 | u64 addr) |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 2515 | { |
| 2516 | iterator->addr = addr; |
Junaid Shahid | 7eb77e9 | 2018-06-27 14:59:16 -0700 | [diff] [blame] | 2517 | iterator->shadow_addr = root; |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 2518 | iterator->level = vcpu->arch.mmu->shadow_root_level; |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 2519 | |
Yu Zhang | 2a7266a | 2017-08-24 20:27:54 +0800 | [diff] [blame] | 2520 | if (iterator->level == PT64_ROOT_4LEVEL && |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 2521 | vcpu->arch.mmu->root_level < PT64_ROOT_4LEVEL && |
| 2522 | !vcpu->arch.mmu->direct_map) |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 2523 | --iterator->level; |
| 2524 | |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 2525 | if (iterator->level == PT32E_ROOT_LEVEL) { |
Junaid Shahid | 7eb77e9 | 2018-06-27 14:59:16 -0700 | [diff] [blame] | 2526 | /* |
| 2527 | * prev_root is currently only used for 64-bit hosts. So only |
| 2528 | * the active root_hpa is valid here. |
| 2529 | */ |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 2530 | BUG_ON(root != vcpu->arch.mmu->root_hpa); |
Junaid Shahid | 7eb77e9 | 2018-06-27 14:59:16 -0700 | [diff] [blame] | 2531 | |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 2532 | iterator->shadow_addr |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 2533 | = vcpu->arch.mmu->pae_root[(addr >> 30) & 3]; |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 2534 | iterator->shadow_addr &= PT64_BASE_ADDR_MASK; |
| 2535 | --iterator->level; |
| 2536 | if (!iterator->shadow_addr) |
| 2537 | iterator->level = 0; |
| 2538 | } |
| 2539 | } |
| 2540 | |
Junaid Shahid | 7eb77e9 | 2018-06-27 14:59:16 -0700 | [diff] [blame] | 2541 | static void shadow_walk_init(struct kvm_shadow_walk_iterator *iterator, |
| 2542 | struct kvm_vcpu *vcpu, u64 addr) |
| 2543 | { |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 2544 | shadow_walk_init_using_root(iterator, vcpu, vcpu->arch.mmu->root_hpa, |
Junaid Shahid | 7eb77e9 | 2018-06-27 14:59:16 -0700 | [diff] [blame] | 2545 | addr); |
| 2546 | } |
| 2547 | |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 2548 | static bool shadow_walk_okay(struct kvm_shadow_walk_iterator *iterator) |
| 2549 | { |
| 2550 | if (iterator->level < PT_PAGE_TABLE_LEVEL) |
| 2551 | return false; |
Marcelo Tosatti | 4d88954 | 2009-06-11 12:07:41 -0300 | [diff] [blame] | 2552 | |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 2553 | iterator->index = SHADOW_PT_INDEX(iterator->addr, iterator->level); |
| 2554 | iterator->sptep = ((u64 *)__va(iterator->shadow_addr)) + iterator->index; |
| 2555 | return true; |
| 2556 | } |
| 2557 | |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 2558 | static void __shadow_walk_next(struct kvm_shadow_walk_iterator *iterator, |
| 2559 | u64 spte) |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 2560 | { |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 2561 | if (is_last_spte(spte, iterator->level)) { |
Xiao Guangrong | 052331b | 2011-07-12 03:21:17 +0800 | [diff] [blame] | 2562 | iterator->level = 0; |
| 2563 | return; |
| 2564 | } |
| 2565 | |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 2566 | iterator->shadow_addr = spte & PT64_BASE_ADDR_MASK; |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 2567 | --iterator->level; |
| 2568 | } |
| 2569 | |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 2570 | static void shadow_walk_next(struct kvm_shadow_walk_iterator *iterator) |
| 2571 | { |
David Hildenbrand | bb606a9 | 2017-08-24 20:51:23 +0200 | [diff] [blame] | 2572 | __shadow_walk_next(iterator, *iterator->sptep); |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 2573 | } |
| 2574 | |
Takuya Yoshikawa | 98bba23 | 2015-11-26 21:14:34 +0900 | [diff] [blame] | 2575 | static void link_shadow_page(struct kvm_vcpu *vcpu, u64 *sptep, |
| 2576 | struct kvm_mmu_page *sp) |
Avi Kivity | 32ef26a | 2010-07-13 14:27:04 +0300 | [diff] [blame] | 2577 | { |
| 2578 | u64 spte; |
| 2579 | |
Bandan Das | ffb128c | 2016-07-12 18:18:49 -0400 | [diff] [blame] | 2580 | BUILD_BUG_ON(VMX_EPT_WRITABLE_MASK != PT_WRITABLE_MASK); |
Yang Zhang | 7a1638c | 2013-08-05 11:07:13 +0300 | [diff] [blame] | 2581 | |
Bandan Das | ffb128c | 2016-07-12 18:18:49 -0400 | [diff] [blame] | 2582 | spte = __pa(sp->spt) | shadow_present_mask | PT_WRITABLE_MASK | |
Tom Lendacky | d0ec49d | 2017-07-17 16:10:27 -0500 | [diff] [blame] | 2583 | shadow_user_mask | shadow_x_mask | shadow_me_mask; |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 2584 | |
| 2585 | if (sp_ad_disabled(sp)) |
| 2586 | spte |= shadow_acc_track_value; |
| 2587 | else |
| 2588 | spte |= shadow_accessed_mask; |
Xiao Guangrong | 24db273 | 2013-02-05 15:28:02 +0800 | [diff] [blame] | 2589 | |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 2590 | mmu_spte_set(sptep, spte); |
Takuya Yoshikawa | 98bba23 | 2015-11-26 21:14:34 +0900 | [diff] [blame] | 2591 | |
| 2592 | mmu_page_add_parent_pte(vcpu, sp, sptep); |
| 2593 | |
| 2594 | if (sp->unsync_children || sp->unsync) |
| 2595 | mark_unsync(sptep); |
Avi Kivity | 32ef26a | 2010-07-13 14:27:04 +0300 | [diff] [blame] | 2596 | } |
| 2597 | |
Avi Kivity | a357bd2 | 2010-07-13 14:27:07 +0300 | [diff] [blame] | 2598 | static void validate_direct_spte(struct kvm_vcpu *vcpu, u64 *sptep, |
| 2599 | unsigned direct_access) |
| 2600 | { |
| 2601 | if (is_shadow_present_pte(*sptep) && !is_large_pte(*sptep)) { |
| 2602 | struct kvm_mmu_page *child; |
| 2603 | |
| 2604 | /* |
| 2605 | * For the direct sp, if the guest pte's dirty bit |
| 2606 | * changed form clean to dirty, it will corrupt the |
| 2607 | * sp's access: allow writable in the read-only sp, |
| 2608 | * so we should update the spte at this point to get |
| 2609 | * a new sp with the correct access. |
| 2610 | */ |
| 2611 | child = page_header(*sptep & PT64_BASE_ADDR_MASK); |
| 2612 | if (child->role.access == direct_access) |
| 2613 | return; |
| 2614 | |
Xiao Guangrong | bcdd9a9 | 2011-05-15 23:28:29 +0800 | [diff] [blame] | 2615 | drop_parent_pte(child, sptep); |
Lan Tianyu | c3134ce | 2018-12-06 21:21:09 +0800 | [diff] [blame] | 2616 | kvm_flush_remote_tlbs_with_address(vcpu->kvm, child->gfn, 1); |
Avi Kivity | a357bd2 | 2010-07-13 14:27:07 +0300 | [diff] [blame] | 2617 | } |
| 2618 | } |
| 2619 | |
Xiao Guangrong | 505aef8 | 2011-09-22 16:56:06 +0800 | [diff] [blame] | 2620 | static bool mmu_page_zap_pte(struct kvm *kvm, struct kvm_mmu_page *sp, |
Xiao Guangrong | 38e3b2b | 2011-05-15 23:27:52 +0800 | [diff] [blame] | 2621 | u64 *spte) |
| 2622 | { |
| 2623 | u64 pte; |
| 2624 | struct kvm_mmu_page *child; |
| 2625 | |
| 2626 | pte = *spte; |
| 2627 | if (is_shadow_present_pte(pte)) { |
Xiao Guangrong | 505aef8 | 2011-09-22 16:56:06 +0800 | [diff] [blame] | 2628 | if (is_last_spte(pte, sp->role.level)) { |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 2629 | drop_spte(kvm, spte); |
Xiao Guangrong | 505aef8 | 2011-09-22 16:56:06 +0800 | [diff] [blame] | 2630 | if (is_large_pte(pte)) |
| 2631 | --kvm->stat.lpages; |
| 2632 | } else { |
Xiao Guangrong | 38e3b2b | 2011-05-15 23:27:52 +0800 | [diff] [blame] | 2633 | child = page_header(pte & PT64_BASE_ADDR_MASK); |
Xiao Guangrong | bcdd9a9 | 2011-05-15 23:28:29 +0800 | [diff] [blame] | 2634 | drop_parent_pte(child, spte); |
Xiao Guangrong | 38e3b2b | 2011-05-15 23:27:52 +0800 | [diff] [blame] | 2635 | } |
Xiao Guangrong | 505aef8 | 2011-09-22 16:56:06 +0800 | [diff] [blame] | 2636 | return true; |
| 2637 | } |
| 2638 | |
| 2639 | if (is_mmio_spte(pte)) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 2640 | mmu_spte_clear_no_track(spte); |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 2641 | |
Xiao Guangrong | 505aef8 | 2011-09-22 16:56:06 +0800 | [diff] [blame] | 2642 | return false; |
Xiao Guangrong | 38e3b2b | 2011-05-15 23:27:52 +0800 | [diff] [blame] | 2643 | } |
| 2644 | |
Avi Kivity | 90cb052 | 2007-07-17 13:04:56 +0300 | [diff] [blame] | 2645 | static void kvm_mmu_page_unlink_children(struct kvm *kvm, |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 2646 | struct kvm_mmu_page *sp) |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2647 | { |
Avi Kivity | 697fe2e | 2007-01-05 16:36:46 -0800 | [diff] [blame] | 2648 | unsigned i; |
Avi Kivity | 697fe2e | 2007-01-05 16:36:46 -0800 | [diff] [blame] | 2649 | |
Xiao Guangrong | 38e3b2b | 2011-05-15 23:27:52 +0800 | [diff] [blame] | 2650 | for (i = 0; i < PT64_ENT_PER_PAGE; ++i) |
| 2651 | mmu_page_zap_pte(kvm, sp, sp->spt + i); |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2652 | } |
| 2653 | |
Avi Kivity | 31aa2b4 | 2008-07-11 17:59:46 +0300 | [diff] [blame] | 2654 | static void kvm_mmu_unlink_parents(struct kvm *kvm, struct kvm_mmu_page *sp) |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2655 | { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 2656 | u64 *sptep; |
| 2657 | struct rmap_iterator iter; |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2658 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 2659 | while ((sptep = rmap_get_first(&sp->parent_ptes, &iter))) |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 2660 | drop_parent_pte(sp, sptep); |
Avi Kivity | 31aa2b4 | 2008-07-11 17:59:46 +0300 | [diff] [blame] | 2661 | } |
| 2662 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2663 | static int mmu_zap_unsync_children(struct kvm *kvm, |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2664 | struct kvm_mmu_page *parent, |
| 2665 | struct list_head *invalid_list) |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2666 | { |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2667 | int i, zapped = 0; |
| 2668 | struct mmu_page_path parents; |
| 2669 | struct kvm_mmu_pages pages; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2670 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2671 | if (parent->role.level == PT_PAGE_TABLE_LEVEL) |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2672 | return 0; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2673 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2674 | while (mmu_unsync_walk(parent, &pages)) { |
| 2675 | struct kvm_mmu_page *sp; |
| 2676 | |
| 2677 | for_each_sp(pages, sp, parents, i) { |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2678 | kvm_mmu_prepare_zap_page(kvm, sp, invalid_list); |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2679 | mmu_pages_clear_parents(&parents); |
Xiao Guangrong | 77662e0 | 2010-04-16 16:34:42 +0800 | [diff] [blame] | 2680 | zapped++; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2681 | } |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2682 | } |
| 2683 | |
| 2684 | return zapped; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2685 | } |
| 2686 | |
Sean Christopherson | 83cdb56 | 2019-02-05 13:01:35 -0800 | [diff] [blame] | 2687 | static bool __kvm_mmu_prepare_zap_page(struct kvm *kvm, |
| 2688 | struct kvm_mmu_page *sp, |
| 2689 | struct list_head *invalid_list, |
| 2690 | int *nr_zapped) |
Avi Kivity | 31aa2b4 | 2008-07-11 17:59:46 +0300 | [diff] [blame] | 2691 | { |
Sean Christopherson | 83cdb56 | 2019-02-05 13:01:35 -0800 | [diff] [blame] | 2692 | bool list_unstable; |
Avi Kivity | f691fe1 | 2009-07-06 15:58:14 +0300 | [diff] [blame] | 2693 | |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2694 | trace_kvm_mmu_prepare_zap_page(sp); |
Avi Kivity | 31aa2b4 | 2008-07-11 17:59:46 +0300 | [diff] [blame] | 2695 | ++kvm->stat.mmu_shadow_zapped; |
Sean Christopherson | 83cdb56 | 2019-02-05 13:01:35 -0800 | [diff] [blame] | 2696 | *nr_zapped = mmu_zap_unsync_children(kvm, sp, invalid_list); |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 2697 | kvm_mmu_page_unlink_children(kvm, sp); |
Avi Kivity | 31aa2b4 | 2008-07-11 17:59:46 +0300 | [diff] [blame] | 2698 | kvm_mmu_unlink_parents(kvm, sp); |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 2699 | |
Sean Christopherson | 83cdb56 | 2019-02-05 13:01:35 -0800 | [diff] [blame] | 2700 | /* Zapping children means active_mmu_pages has become unstable. */ |
| 2701 | list_unstable = *nr_zapped; |
| 2702 | |
Avi Kivity | f6e2c02b | 2009-01-11 13:02:10 +0200 | [diff] [blame] | 2703 | if (!sp->role.invalid && !sp->role.direct) |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 2704 | unaccount_shadowed(kvm, sp); |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 2705 | |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2706 | if (sp->unsync) |
| 2707 | kvm_unlink_unsync_page(kvm, sp); |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 2708 | if (!sp->root_count) { |
Gui Jianfeng | 54a4f02 | 2010-05-05 09:03:49 +0800 | [diff] [blame] | 2709 | /* Count self */ |
Sean Christopherson | 83cdb56 | 2019-02-05 13:01:35 -0800 | [diff] [blame] | 2710 | (*nr_zapped)++; |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2711 | list_move(&sp->link, invalid_list); |
Xiao Guangrong | aa6bd18 | 2011-07-12 03:26:40 +0800 | [diff] [blame] | 2712 | kvm_mod_used_mmu_pages(kvm, -1); |
Marcelo Tosatti | 2e53d63 | 2008-02-20 14:47:24 -0500 | [diff] [blame] | 2713 | } else { |
Avi Kivity | 5b5c6a5 | 2008-07-11 18:07:26 +0300 | [diff] [blame] | 2714 | list_move(&sp->link, &kvm->arch.active_mmu_pages); |
Gleb Natapov | 05988d7 | 2013-05-31 08:36:30 +0800 | [diff] [blame] | 2715 | |
Sean Christopherson | 5ff0568 | 2019-02-05 13:01:25 -0800 | [diff] [blame] | 2716 | if (!sp->role.invalid) |
Gleb Natapov | 05988d7 | 2013-05-31 08:36:30 +0800 | [diff] [blame] | 2717 | kvm_reload_remote_mmus(kvm); |
Marcelo Tosatti | 2e53d63 | 2008-02-20 14:47:24 -0500 | [diff] [blame] | 2718 | } |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2719 | |
| 2720 | sp->role.invalid = 1; |
Sean Christopherson | 83cdb56 | 2019-02-05 13:01:35 -0800 | [diff] [blame] | 2721 | return list_unstable; |
| 2722 | } |
| 2723 | |
| 2724 | static bool kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp, |
| 2725 | struct list_head *invalid_list) |
| 2726 | { |
| 2727 | int nr_zapped; |
| 2728 | |
| 2729 | __kvm_mmu_prepare_zap_page(kvm, sp, invalid_list, &nr_zapped); |
| 2730 | return nr_zapped; |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2731 | } |
| 2732 | |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2733 | static void kvm_mmu_commit_zap_page(struct kvm *kvm, |
| 2734 | struct list_head *invalid_list) |
| 2735 | { |
Takuya Yoshikawa | 945315b | 2013-03-06 16:05:52 +0900 | [diff] [blame] | 2736 | struct kvm_mmu_page *sp, *nsp; |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2737 | |
| 2738 | if (list_empty(invalid_list)) |
| 2739 | return; |
| 2740 | |
Avi Kivity | c142786 | 2012-05-14 15:44:06 +0300 | [diff] [blame] | 2741 | /* |
Lan Tianyu | 9753f52 | 2016-03-13 11:10:24 +0800 | [diff] [blame] | 2742 | * We need to make sure everyone sees our modifications to |
| 2743 | * the page tables and see changes to vcpu->mode here. The barrier |
| 2744 | * in the kvm_flush_remote_tlbs() achieves this. This pairs |
| 2745 | * with vcpu_enter_guest and walk_shadow_page_lockless_begin/end. |
| 2746 | * |
| 2747 | * In addition, kvm_flush_remote_tlbs waits for all vcpus to exit |
| 2748 | * guest mode and/or lockless shadow page table walks. |
Avi Kivity | c142786 | 2012-05-14 15:44:06 +0300 | [diff] [blame] | 2749 | */ |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2750 | kvm_flush_remote_tlbs(kvm); |
| 2751 | |
Takuya Yoshikawa | 945315b | 2013-03-06 16:05:52 +0900 | [diff] [blame] | 2752 | list_for_each_entry_safe(sp, nsp, invalid_list, link) { |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2753 | WARN_ON(!sp->role.invalid || sp->root_count); |
Xiao Guangrong | aa6bd18 | 2011-07-12 03:26:40 +0800 | [diff] [blame] | 2754 | kvm_mmu_free_page(sp); |
Takuya Yoshikawa | 945315b | 2013-03-06 16:05:52 +0900 | [diff] [blame] | 2755 | } |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2756 | } |
| 2757 | |
Takuya Yoshikawa | 5da5960 | 2013-03-06 16:06:58 +0900 | [diff] [blame] | 2758 | static bool prepare_zap_oldest_mmu_page(struct kvm *kvm, |
| 2759 | struct list_head *invalid_list) |
| 2760 | { |
| 2761 | struct kvm_mmu_page *sp; |
| 2762 | |
| 2763 | if (list_empty(&kvm->arch.active_mmu_pages)) |
| 2764 | return false; |
| 2765 | |
Geliang Tang | d74c0e6 | 2016-01-01 19:47:14 +0800 | [diff] [blame] | 2766 | sp = list_last_entry(&kvm->arch.active_mmu_pages, |
| 2767 | struct kvm_mmu_page, link); |
Wanpeng Li | 42bcbeb | 2017-08-10 06:55:51 -0700 | [diff] [blame] | 2768 | return kvm_mmu_prepare_zap_page(kvm, sp, invalid_list); |
Takuya Yoshikawa | 5da5960 | 2013-03-06 16:06:58 +0900 | [diff] [blame] | 2769 | } |
| 2770 | |
Izik Eidus | 82ce2c9 | 2007-10-02 18:52:55 +0200 | [diff] [blame] | 2771 | /* |
| 2772 | * Changing the number of mmu pages allocated to the vm |
Dave Hansen | 49d5ca2 | 2010-08-19 18:11:28 -0700 | [diff] [blame] | 2773 | * Note: if goal_nr_mmu_pages is too small, you will get dead lock |
Izik Eidus | 82ce2c9 | 2007-10-02 18:52:55 +0200 | [diff] [blame] | 2774 | */ |
Ben Gardon | bc8a3d8 | 2019-04-08 11:07:30 -0700 | [diff] [blame] | 2775 | void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned long goal_nr_mmu_pages) |
Izik Eidus | 82ce2c9 | 2007-10-02 18:52:55 +0200 | [diff] [blame] | 2776 | { |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 2777 | LIST_HEAD(invalid_list); |
Izik Eidus | 82ce2c9 | 2007-10-02 18:52:55 +0200 | [diff] [blame] | 2778 | |
Takuya Yoshikawa | b34cb59 | 2013-01-08 19:46:07 +0900 | [diff] [blame] | 2779 | spin_lock(&kvm->mmu_lock); |
| 2780 | |
Dave Hansen | 49d5ca2 | 2010-08-19 18:11:28 -0700 | [diff] [blame] | 2781 | if (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages) { |
Takuya Yoshikawa | 5da5960 | 2013-03-06 16:06:58 +0900 | [diff] [blame] | 2782 | /* Need to free some mmu pages to achieve the goal. */ |
| 2783 | while (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages) |
| 2784 | if (!prepare_zap_oldest_mmu_page(kvm, &invalid_list)) |
| 2785 | break; |
Izik Eidus | 82ce2c9 | 2007-10-02 18:52:55 +0200 | [diff] [blame] | 2786 | |
Xiao Guangrong | aa6bd18 | 2011-07-12 03:26:40 +0800 | [diff] [blame] | 2787 | kvm_mmu_commit_zap_page(kvm, &invalid_list); |
Dave Hansen | 49d5ca2 | 2010-08-19 18:11:28 -0700 | [diff] [blame] | 2788 | goal_nr_mmu_pages = kvm->arch.n_used_mmu_pages; |
Izik Eidus | 82ce2c9 | 2007-10-02 18:52:55 +0200 | [diff] [blame] | 2789 | } |
Izik Eidus | 82ce2c9 | 2007-10-02 18:52:55 +0200 | [diff] [blame] | 2790 | |
Dave Hansen | 49d5ca2 | 2010-08-19 18:11:28 -0700 | [diff] [blame] | 2791 | kvm->arch.n_max_mmu_pages = goal_nr_mmu_pages; |
Takuya Yoshikawa | b34cb59 | 2013-01-08 19:46:07 +0900 | [diff] [blame] | 2792 | |
| 2793 | spin_unlock(&kvm->mmu_lock); |
Izik Eidus | 82ce2c9 | 2007-10-02 18:52:55 +0200 | [diff] [blame] | 2794 | } |
| 2795 | |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 2796 | int kvm_mmu_unprotect_page(struct kvm *kvm, gfn_t gfn) |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2797 | { |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 2798 | struct kvm_mmu_page *sp; |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 2799 | LIST_HEAD(invalid_list); |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2800 | int r; |
| 2801 | |
Xiao Guangrong | 9ad17b10 | 2010-08-28 19:19:42 +0800 | [diff] [blame] | 2802 | pgprintk("%s: looking for gfn %llx\n", __func__, gfn); |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2803 | r = 0; |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 2804 | spin_lock(&kvm->mmu_lock); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 2805 | for_each_gfn_indirect_valid_sp(kvm, sp, gfn) { |
Xiao Guangrong | 9ad17b10 | 2010-08-28 19:19:42 +0800 | [diff] [blame] | 2806 | pgprintk("%s: gfn %llx role %x\n", __func__, gfn, |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2807 | sp->role.word); |
| 2808 | r = 1; |
Xiao Guangrong | f41d335 | 2010-06-04 21:56:11 +0800 | [diff] [blame] | 2809 | kvm_mmu_prepare_zap_page(kvm, sp, &invalid_list); |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2810 | } |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 2811 | kvm_mmu_commit_zap_page(kvm, &invalid_list); |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 2812 | spin_unlock(&kvm->mmu_lock); |
| 2813 | |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2814 | return r; |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2815 | } |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 2816 | EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page); |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2817 | |
Xiao Guangrong | 5c520e9 | 2016-02-24 17:51:15 +0800 | [diff] [blame] | 2818 | static void kvm_unsync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp) |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2819 | { |
Xiao Guangrong | 5e1b3dd | 2010-04-28 11:55:06 +0800 | [diff] [blame] | 2820 | trace_kvm_mmu_unsync_page(sp); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2821 | ++vcpu->kvm->stat.mmu_unsync; |
| 2822 | sp->unsync = 1; |
Marcelo Tosatti | 6cffe8c | 2008-12-01 22:32:04 -0200 | [diff] [blame] | 2823 | |
Xiao Guangrong | 6b18493 | 2010-04-16 21:29:17 +0800 | [diff] [blame] | 2824 | kvm_mmu_mark_parents_unsync(sp); |
Xiao Guangrong | 9cf5cf5 | 2010-05-24 15:40:07 +0800 | [diff] [blame] | 2825 | } |
| 2826 | |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 2827 | static bool mmu_need_write_protect(struct kvm_vcpu *vcpu, gfn_t gfn, |
| 2828 | bool can_unsync) |
Xiao Guangrong | 9cf5cf5 | 2010-05-24 15:40:07 +0800 | [diff] [blame] | 2829 | { |
Xiao Guangrong | 5c520e9 | 2016-02-24 17:51:15 +0800 | [diff] [blame] | 2830 | struct kvm_mmu_page *sp; |
Xiao Guangrong | 9cf5cf5 | 2010-05-24 15:40:07 +0800 | [diff] [blame] | 2831 | |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 2832 | if (kvm_page_track_is_active(vcpu, gfn, KVM_PAGE_TRACK_WRITE)) |
| 2833 | return true; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2834 | |
Xiao Guangrong | 5c520e9 | 2016-02-24 17:51:15 +0800 | [diff] [blame] | 2835 | for_each_gfn_indirect_valid_sp(vcpu->kvm, sp, gfn) { |
Xiao Guangrong | 36a2e67 | 2010-06-30 16:02:02 +0800 | [diff] [blame] | 2836 | if (!can_unsync) |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 2837 | return true; |
Xiao Guangrong | 36a2e67 | 2010-06-30 16:02:02 +0800 | [diff] [blame] | 2838 | |
Xiao Guangrong | 5c520e9 | 2016-02-24 17:51:15 +0800 | [diff] [blame] | 2839 | if (sp->unsync) |
| 2840 | continue; |
Xiao Guangrong | 9cf5cf5 | 2010-05-24 15:40:07 +0800 | [diff] [blame] | 2841 | |
Xiao Guangrong | 5c520e9 | 2016-02-24 17:51:15 +0800 | [diff] [blame] | 2842 | WARN_ON(sp->role.level != PT_PAGE_TABLE_LEVEL); |
| 2843 | kvm_unsync_page(vcpu, sp); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2844 | } |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 2845 | |
Junaid Shahid | 578e1c4 | 2018-06-27 14:59:05 -0700 | [diff] [blame] | 2846 | /* |
| 2847 | * We need to ensure that the marking of unsync pages is visible |
| 2848 | * before the SPTE is updated to allow writes because |
| 2849 | * kvm_mmu_sync_roots() checks the unsync flags without holding |
| 2850 | * the MMU lock and so can race with this. If the SPTE was updated |
| 2851 | * before the page had been marked as unsync-ed, something like the |
| 2852 | * following could happen: |
| 2853 | * |
| 2854 | * CPU 1 CPU 2 |
| 2855 | * --------------------------------------------------------------------- |
| 2856 | * 1.2 Host updates SPTE |
| 2857 | * to be writable |
| 2858 | * 2.1 Guest writes a GPTE for GVA X. |
| 2859 | * (GPTE being in the guest page table shadowed |
| 2860 | * by the SP from CPU 1.) |
| 2861 | * This reads SPTE during the page table walk. |
| 2862 | * Since SPTE.W is read as 1, there is no |
| 2863 | * fault. |
| 2864 | * |
| 2865 | * 2.2 Guest issues TLB flush. |
| 2866 | * That causes a VM Exit. |
| 2867 | * |
| 2868 | * 2.3 kvm_mmu_sync_pages() reads sp->unsync. |
| 2869 | * Since it is false, so it just returns. |
| 2870 | * |
| 2871 | * 2.4 Guest accesses GVA X. |
| 2872 | * Since the mapping in the SP was not updated, |
| 2873 | * so the old mapping for GVA X incorrectly |
| 2874 | * gets used. |
| 2875 | * 1.1 Host marks SP |
| 2876 | * as unsync |
| 2877 | * (sp->unsync = true) |
| 2878 | * |
| 2879 | * The write barrier below ensures that 1.1 happens before 1.2 and thus |
| 2880 | * the situation in 2.4 does not arise. The implicit barrier in 2.2 |
| 2881 | * pairs with this write barrier. |
| 2882 | */ |
| 2883 | smp_wmb(); |
| 2884 | |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 2885 | return false; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2886 | } |
| 2887 | |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 2888 | static bool kvm_is_mmio_pfn(kvm_pfn_t pfn) |
Paolo Bonzini | d1fe921 | 2015-07-07 15:03:18 +0200 | [diff] [blame] | 2889 | { |
| 2890 | if (pfn_valid(pfn)) |
Haozhong Zhang | aa2e063 | 2017-12-20 15:29:29 +0800 | [diff] [blame] | 2891 | return !is_zero_pfn(pfn) && PageReserved(pfn_to_page(pfn)) && |
| 2892 | /* |
| 2893 | * Some reserved pages, such as those from NVDIMM |
| 2894 | * DAX devices, are not for MMIO, and can be mapped |
| 2895 | * with cached memory type for better performance. |
| 2896 | * However, the above check misconceives those pages |
| 2897 | * as MMIO, and results in KVM mapping them with UC |
| 2898 | * memory type, which would hurt the performance. |
| 2899 | * Therefore, we check the host memory type in addition |
| 2900 | * and only treat UC/UC-/WC pages as MMIO. |
| 2901 | */ |
| 2902 | (!pat_enabled() || pat_pfn_immune_to_uc_mtrr(pfn)); |
Paolo Bonzini | d1fe921 | 2015-07-07 15:03:18 +0200 | [diff] [blame] | 2903 | |
KarimAllah Ahmed | 0c55671 | 2019-01-31 21:24:44 +0100 | [diff] [blame] | 2904 | return !e820__mapped_raw_any(pfn_to_hpa(pfn), |
| 2905 | pfn_to_hpa(pfn + 1) - 1, |
| 2906 | E820_TYPE_RAM); |
Paolo Bonzini | d1fe921 | 2015-07-07 15:03:18 +0200 | [diff] [blame] | 2907 | } |
| 2908 | |
Junaid Shahid | 5ce4786 | 2018-06-27 14:59:04 -0700 | [diff] [blame] | 2909 | /* Bits which may be returned by set_spte() */ |
| 2910 | #define SET_SPTE_WRITE_PROTECTED_PT BIT(0) |
| 2911 | #define SET_SPTE_NEED_REMOTE_TLB_FLUSH BIT(1) |
| 2912 | |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 2913 | static int set_spte(struct kvm_vcpu *vcpu, u64 *sptep, |
Xiao Guangrong | c2288505 | 2013-01-08 14:36:04 +0800 | [diff] [blame] | 2914 | unsigned pte_access, int level, |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 2915 | gfn_t gfn, kvm_pfn_t pfn, bool speculative, |
Lai Jiangshan | 9bdbba1 | 2010-11-19 17:03:22 +0800 | [diff] [blame] | 2916 | bool can_unsync, bool host_writable) |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2917 | { |
Bandan Das | ffb128c | 2016-07-12 18:18:49 -0400 | [diff] [blame] | 2918 | u64 spte = 0; |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2919 | int ret = 0; |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 2920 | struct kvm_mmu_page *sp; |
Sheng Yang | 64d4d52 | 2008-10-09 16:01:57 +0800 | [diff] [blame] | 2921 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 2922 | if (set_mmio_spte(vcpu, sptep, gfn, pfn, pte_access)) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 2923 | return 0; |
| 2924 | |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 2925 | sp = page_header(__pa(sptep)); |
| 2926 | if (sp_ad_disabled(sp)) |
| 2927 | spte |= shadow_acc_track_value; |
| 2928 | |
Bandan Das | d95c556 | 2016-07-12 18:18:51 -0400 | [diff] [blame] | 2929 | /* |
| 2930 | * For the EPT case, shadow_present_mask is 0 if hardware |
| 2931 | * supports exec-only page table entries. In that case, |
| 2932 | * ACC_USER_MASK and shadow_user_mask are used to represent |
| 2933 | * read access. See FNAME(gpte_access) in paging_tmpl.h. |
| 2934 | */ |
Bandan Das | ffb128c | 2016-07-12 18:18:49 -0400 | [diff] [blame] | 2935 | spte |= shadow_present_mask; |
Avi Kivity | 947da53 | 2008-03-18 11:05:52 +0200 | [diff] [blame] | 2936 | if (!speculative) |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 2937 | spte |= spte_shadow_accessed_mask(spte); |
Xiao Guangrong | 640d9b0 | 2011-07-12 03:24:39 +0800 | [diff] [blame] | 2938 | |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 2939 | if (pte_access & ACC_EXEC_MASK) |
| 2940 | spte |= shadow_x_mask; |
| 2941 | else |
| 2942 | spte |= shadow_nx_mask; |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 2943 | |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2944 | if (pte_access & ACC_USER_MASK) |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 2945 | spte |= shadow_user_mask; |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 2946 | |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 2947 | if (level > PT_PAGE_TABLE_LEVEL) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 2948 | spte |= PT_PAGE_SIZE_MASK; |
Avi Kivity | b0bc3ee | 2010-09-13 16:45:28 +0200 | [diff] [blame] | 2949 | if (tdp_enabled) |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 2950 | spte |= kvm_x86_ops->get_mt_mask(vcpu, gfn, |
Paolo Bonzini | d1fe921 | 2015-07-07 15:03:18 +0200 | [diff] [blame] | 2951 | kvm_is_mmio_pfn(pfn)); |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2952 | |
Lai Jiangshan | 9bdbba1 | 2010-11-19 17:03:22 +0800 | [diff] [blame] | 2953 | if (host_writable) |
Izik Eidus | 1403283 | 2009-09-23 21:47:17 +0300 | [diff] [blame] | 2954 | spte |= SPTE_HOST_WRITEABLE; |
Xiao Guangrong | f8e453b | 2010-12-23 16:09:29 +0800 | [diff] [blame] | 2955 | else |
| 2956 | pte_access &= ~ACC_WRITE_MASK; |
Izik Eidus | 1403283 | 2009-09-23 21:47:17 +0300 | [diff] [blame] | 2957 | |
Tom Lendacky | daaf216 | 2018-03-08 17:17:31 -0600 | [diff] [blame] | 2958 | if (!kvm_is_mmio_pfn(pfn)) |
| 2959 | spte |= shadow_me_mask; |
| 2960 | |
Anthony Liguori | 35149e2 | 2008-04-02 14:46:56 -0500 | [diff] [blame] | 2961 | spte |= (u64)pfn << PAGE_SHIFT; |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2962 | |
Xiao Guangrong | c2288505 | 2013-01-08 14:36:04 +0800 | [diff] [blame] | 2963 | if (pte_access & ACC_WRITE_MASK) { |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2964 | |
Xiao Guangrong | c219346 | 2012-12-04 07:17:11 +0800 | [diff] [blame] | 2965 | /* |
Xiao Guangrong | 7751bab | 2013-01-08 14:36:51 +0800 | [diff] [blame] | 2966 | * Other vcpu creates new sp in the window between |
| 2967 | * mapping_level() and acquiring mmu-lock. We can |
| 2968 | * allow guest to retry the access, the mapping can |
| 2969 | * be fixed if guest refault. |
Xiao Guangrong | c219346 | 2012-12-04 07:17:11 +0800 | [diff] [blame] | 2970 | */ |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 2971 | if (level > PT_PAGE_TABLE_LEVEL && |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 2972 | mmu_gfn_lpage_is_disallowed(vcpu, gfn, level)) |
Avi Kivity | be38d27 | 2010-06-06 14:31:27 +0300 | [diff] [blame] | 2973 | goto done; |
Marcelo Tosatti | 38187c8 | 2008-09-23 13:18:32 -0300 | [diff] [blame] | 2974 | |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 2975 | spte |= PT_WRITABLE_MASK | SPTE_MMU_WRITEABLE; |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2976 | |
Marcelo Tosatti | ecc5589 | 2008-11-25 15:58:07 +0100 | [diff] [blame] | 2977 | /* |
| 2978 | * Optimization: for pte sync, if spte was writable the hash |
| 2979 | * lookup is unnecessary (and expensive). Write protection |
| 2980 | * is responsibility of mmu_get_page / kvm_sync_page. |
| 2981 | * Same reasoning can be applied to dirty page accounting. |
| 2982 | */ |
Takuya Yoshikawa | 8dae444 | 2010-01-18 18:45:10 +0900 | [diff] [blame] | 2983 | if (!can_unsync && is_writable_pte(*sptep)) |
Marcelo Tosatti | ecc5589 | 2008-11-25 15:58:07 +0100 | [diff] [blame] | 2984 | goto set_pte; |
| 2985 | |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2986 | if (mmu_need_write_protect(vcpu, gfn, can_unsync)) { |
Xiao Guangrong | 9ad17b10 | 2010-08-28 19:19:42 +0800 | [diff] [blame] | 2987 | pgprintk("%s: found shadow page for %llx, marking ro\n", |
Harvey Harrison | b8688d5 | 2008-03-03 12:59:56 -0800 | [diff] [blame] | 2988 | __func__, gfn); |
Junaid Shahid | 5ce4786 | 2018-06-27 14:59:04 -0700 | [diff] [blame] | 2989 | ret |= SET_SPTE_WRITE_PROTECTED_PT; |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2990 | pte_access &= ~ACC_WRITE_MASK; |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 2991 | spte &= ~(PT_WRITABLE_MASK | SPTE_MMU_WRITEABLE); |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2992 | } |
| 2993 | } |
| 2994 | |
Kai Huang | 9b51a63 | 2015-01-28 10:54:25 +0800 | [diff] [blame] | 2995 | if (pte_access & ACC_WRITE_MASK) { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 2996 | kvm_vcpu_mark_page_dirty(vcpu, gfn); |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 2997 | spte |= spte_shadow_dirty_mask(spte); |
Kai Huang | 9b51a63 | 2015-01-28 10:54:25 +0800 | [diff] [blame] | 2998 | } |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2999 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 3000 | if (speculative) |
| 3001 | spte = mark_spte_for_access_track(spte); |
| 3002 | |
Marcelo Tosatti | 38187c8 | 2008-09-23 13:18:32 -0300 | [diff] [blame] | 3003 | set_pte: |
Xiao Guangrong | 6e7d035 | 2012-06-20 15:58:33 +0800 | [diff] [blame] | 3004 | if (mmu_spte_update(sptep, spte)) |
Junaid Shahid | 5ce4786 | 2018-06-27 14:59:04 -0700 | [diff] [blame] | 3005 | ret |= SET_SPTE_NEED_REMOTE_TLB_FLUSH; |
Avi Kivity | be38d27 | 2010-06-06 14:31:27 +0300 | [diff] [blame] | 3006 | done: |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 3007 | return ret; |
| 3008 | } |
| 3009 | |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 3010 | static int mmu_set_spte(struct kvm_vcpu *vcpu, u64 *sptep, unsigned pte_access, |
| 3011 | int write_fault, int level, gfn_t gfn, kvm_pfn_t pfn, |
| 3012 | bool speculative, bool host_writable) |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 3013 | { |
| 3014 | int was_rmapped = 0; |
Marcelo Tosatti | 53a27b3 | 2009-08-05 15:43:58 -0300 | [diff] [blame] | 3015 | int rmap_count; |
Junaid Shahid | 5ce4786 | 2018-06-27 14:59:04 -0700 | [diff] [blame] | 3016 | int set_spte_ret; |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 3017 | int ret = RET_PF_RETRY; |
Tianyu Lan | c2a4ead | 2018-07-24 08:17:07 +0000 | [diff] [blame] | 3018 | bool flush = false; |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 3019 | |
Xiao Guangrong | f761620 | 2013-02-05 15:27:27 +0800 | [diff] [blame] | 3020 | pgprintk("%s: spte %llx write_fault %d gfn %llx\n", __func__, |
| 3021 | *sptep, write_fault, gfn); |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 3022 | |
Takuya Yoshikawa | afd28fe | 2015-11-20 17:44:55 +0900 | [diff] [blame] | 3023 | if (is_shadow_present_pte(*sptep)) { |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 3024 | /* |
| 3025 | * If we overwrite a PTE page pointer with a 2MB PMD, unlink |
| 3026 | * the parent of the now unreachable PTE. |
| 3027 | */ |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 3028 | if (level > PT_PAGE_TABLE_LEVEL && |
| 3029 | !is_large_pte(*sptep)) { |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 3030 | struct kvm_mmu_page *child; |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 3031 | u64 pte = *sptep; |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 3032 | |
| 3033 | child = page_header(pte & PT64_BASE_ADDR_MASK); |
Xiao Guangrong | bcdd9a9 | 2011-05-15 23:28:29 +0800 | [diff] [blame] | 3034 | drop_parent_pte(child, sptep); |
Tianyu Lan | c2a4ead | 2018-07-24 08:17:07 +0000 | [diff] [blame] | 3035 | flush = true; |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 3036 | } else if (pfn != spte_to_pfn(*sptep)) { |
Xiao Guangrong | 9ad17b10 | 2010-08-28 19:19:42 +0800 | [diff] [blame] | 3037 | pgprintk("hfn old %llx new %llx\n", |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 3038 | spte_to_pfn(*sptep), pfn); |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 3039 | drop_spte(vcpu->kvm, sptep); |
Tianyu Lan | c2a4ead | 2018-07-24 08:17:07 +0000 | [diff] [blame] | 3040 | flush = true; |
Joerg Roedel | 6bed6b9 | 2009-02-18 14:08:59 +0100 | [diff] [blame] | 3041 | } else |
| 3042 | was_rmapped = 1; |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 3043 | } |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 3044 | |
Junaid Shahid | 5ce4786 | 2018-06-27 14:59:04 -0700 | [diff] [blame] | 3045 | set_spte_ret = set_spte(vcpu, sptep, pte_access, level, gfn, pfn, |
| 3046 | speculative, true, host_writable); |
| 3047 | if (set_spte_ret & SET_SPTE_WRITE_PROTECTED_PT) { |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 3048 | if (write_fault) |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 3049 | ret = RET_PF_EMULATE; |
Liang Chen | 77c3913 | 2014-09-18 12:38:37 -0400 | [diff] [blame] | 3050 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Marcelo Tosatti | a378b4e | 2008-09-23 13:18:31 -0300 | [diff] [blame] | 3051 | } |
Lan Tianyu | c3134ce | 2018-12-06 21:21:09 +0800 | [diff] [blame] | 3052 | |
Tianyu Lan | c2a4ead | 2018-07-24 08:17:07 +0000 | [diff] [blame] | 3053 | if (set_spte_ret & SET_SPTE_NEED_REMOTE_TLB_FLUSH || flush) |
Lan Tianyu | c3134ce | 2018-12-06 21:21:09 +0800 | [diff] [blame] | 3054 | kvm_flush_remote_tlbs_with_address(vcpu->kvm, gfn, |
| 3055 | KVM_PAGES_PER_HPAGE(level)); |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 3056 | |
Takuya Yoshikawa | 029499b | 2015-11-20 17:44:05 +0900 | [diff] [blame] | 3057 | if (unlikely(is_mmio_spte(*sptep))) |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 3058 | ret = RET_PF_EMULATE; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3059 | |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 3060 | pgprintk("%s: setting spte %llx\n", __func__, *sptep); |
Xiao Guangrong | 9ad17b10 | 2010-08-28 19:19:42 +0800 | [diff] [blame] | 3061 | pgprintk("instantiating %s PTE (%s) at %llx (%llx) addr %p\n", |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 3062 | is_large_pte(*sptep)? "2MB" : "4kB", |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 3063 | *sptep & PT_WRITABLE_MASK ? "RW" : "R", gfn, |
Joerg Roedel | a205bc1 | 2009-07-09 16:36:01 +0200 | [diff] [blame] | 3064 | *sptep, sptep); |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 3065 | if (!was_rmapped && is_large_pte(*sptep)) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 3066 | ++vcpu->kvm->stat.lpages; |
| 3067 | |
Xiao Guangrong | ffb61bb | 2011-07-12 03:22:01 +0800 | [diff] [blame] | 3068 | if (is_shadow_present_pte(*sptep)) { |
Xiao Guangrong | ffb61bb | 2011-07-12 03:22:01 +0800 | [diff] [blame] | 3069 | if (!was_rmapped) { |
| 3070 | rmap_count = rmap_add(vcpu, sptep, gfn); |
| 3071 | if (rmap_count > RMAP_RECYCLE_THRESHOLD) |
| 3072 | rmap_recycle(vcpu, sptep, gfn); |
| 3073 | } |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 3074 | } |
Xiao Guangrong | cb9aaa3 | 2012-08-03 15:42:10 +0800 | [diff] [blame] | 3075 | |
Xiao Guangrong | f3ac1a4 | 2012-10-16 20:07:03 +0800 | [diff] [blame] | 3076 | kvm_release_pfn_clean(pfn); |
Takuya Yoshikawa | 029499b | 2015-11-20 17:44:05 +0900 | [diff] [blame] | 3077 | |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 3078 | return ret; |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 3079 | } |
| 3080 | |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 3081 | static kvm_pfn_t pte_prefetch_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn, |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 3082 | bool no_dirty_log) |
| 3083 | { |
| 3084 | struct kvm_memory_slot *slot; |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 3085 | |
Xiao Guangrong | 5d163b1 | 2011-03-09 15:43:00 +0800 | [diff] [blame] | 3086 | slot = gfn_to_memslot_dirty_bitmap(vcpu, gfn, no_dirty_log); |
Xiao Guangrong | 903816f | 2012-07-17 21:54:11 +0800 | [diff] [blame] | 3087 | if (!slot) |
Xiao Guangrong | 6c8ee57 | 2012-08-03 15:37:54 +0800 | [diff] [blame] | 3088 | return KVM_PFN_ERR_FAULT; |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 3089 | |
Xiao Guangrong | 037d92d | 2012-08-21 10:59:12 +0800 | [diff] [blame] | 3090 | return gfn_to_pfn_memslot_atomic(slot, gfn); |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 3091 | } |
| 3092 | |
| 3093 | static int direct_pte_prefetch_many(struct kvm_vcpu *vcpu, |
| 3094 | struct kvm_mmu_page *sp, |
| 3095 | u64 *start, u64 *end) |
| 3096 | { |
| 3097 | struct page *pages[PTE_PREFETCH_NUM]; |
Paolo Bonzini | d9ef13c | 2015-05-19 16:01:50 +0200 | [diff] [blame] | 3098 | struct kvm_memory_slot *slot; |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 3099 | unsigned access = sp->role.access; |
| 3100 | int i, ret; |
| 3101 | gfn_t gfn; |
| 3102 | |
| 3103 | gfn = kvm_mmu_page_get_gfn(sp, start - sp->spt); |
Paolo Bonzini | d9ef13c | 2015-05-19 16:01:50 +0200 | [diff] [blame] | 3104 | slot = gfn_to_memslot_dirty_bitmap(vcpu, gfn, access & ACC_WRITE_MASK); |
| 3105 | if (!slot) |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 3106 | return -1; |
| 3107 | |
Paolo Bonzini | d9ef13c | 2015-05-19 16:01:50 +0200 | [diff] [blame] | 3108 | ret = gfn_to_page_many_atomic(slot, gfn, pages, end - start); |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 3109 | if (ret <= 0) |
| 3110 | return -1; |
| 3111 | |
| 3112 | for (i = 0; i < ret; i++, gfn++, start++) |
Takuya Yoshikawa | 029499b | 2015-11-20 17:44:05 +0900 | [diff] [blame] | 3113 | mmu_set_spte(vcpu, start, access, 0, sp->role.level, gfn, |
| 3114 | page_to_pfn(pages[i]), true, true); |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 3115 | |
| 3116 | return 0; |
| 3117 | } |
| 3118 | |
| 3119 | static void __direct_pte_prefetch(struct kvm_vcpu *vcpu, |
| 3120 | struct kvm_mmu_page *sp, u64 *sptep) |
| 3121 | { |
| 3122 | u64 *spte, *start = NULL; |
| 3123 | int i; |
| 3124 | |
| 3125 | WARN_ON(!sp->role.direct); |
| 3126 | |
| 3127 | i = (sptep - sp->spt) & ~(PTE_PREFETCH_NUM - 1); |
| 3128 | spte = sp->spt + i; |
| 3129 | |
| 3130 | for (i = 0; i < PTE_PREFETCH_NUM; i++, spte++) { |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 3131 | if (is_shadow_present_pte(*spte) || spte == sptep) { |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 3132 | if (!start) |
| 3133 | continue; |
| 3134 | if (direct_pte_prefetch_many(vcpu, sp, start, spte) < 0) |
| 3135 | break; |
| 3136 | start = NULL; |
| 3137 | } else if (!start) |
| 3138 | start = spte; |
| 3139 | } |
| 3140 | } |
| 3141 | |
| 3142 | static void direct_pte_prefetch(struct kvm_vcpu *vcpu, u64 *sptep) |
| 3143 | { |
| 3144 | struct kvm_mmu_page *sp; |
| 3145 | |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 3146 | sp = page_header(__pa(sptep)); |
| 3147 | |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 3148 | /* |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 3149 | * Without accessed bits, there's no way to distinguish between |
| 3150 | * actually accessed translations and prefetched, so disable pte |
| 3151 | * prefetch if accessed bits aren't available. |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 3152 | */ |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 3153 | if (sp_ad_disabled(sp)) |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 3154 | return; |
| 3155 | |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 3156 | if (sp->role.level > PT_PAGE_TABLE_LEVEL) |
| 3157 | return; |
| 3158 | |
| 3159 | __direct_pte_prefetch(vcpu, sp, sptep); |
| 3160 | } |
| 3161 | |
Takuya Yoshikawa | 7ee0e5b | 2015-11-20 17:42:23 +0900 | [diff] [blame] | 3162 | static int __direct_map(struct kvm_vcpu *vcpu, int write, int map_writable, |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 3163 | int level, gfn_t gfn, kvm_pfn_t pfn, bool prefault) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3164 | { |
Avi Kivity | 9f652d21 | 2008-12-25 14:54:25 +0200 | [diff] [blame] | 3165 | struct kvm_shadow_walk_iterator iterator; |
| 3166 | struct kvm_mmu_page *sp; |
Xiao Guangrong | b90a0e6 | 2011-07-12 03:25:56 +0800 | [diff] [blame] | 3167 | int emulate = 0; |
Avi Kivity | 9f652d21 | 2008-12-25 14:54:25 +0200 | [diff] [blame] | 3168 | gfn_t pseudo_gfn; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3169 | |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3170 | if (!VALID_PAGE(vcpu->arch.mmu->root_hpa)) |
Marcelo Tosatti | 989c6b3 | 2013-12-19 15:28:51 -0200 | [diff] [blame] | 3171 | return 0; |
| 3172 | |
Avi Kivity | 9f652d21 | 2008-12-25 14:54:25 +0200 | [diff] [blame] | 3173 | for_each_shadow_entry(vcpu, (u64)gfn << PAGE_SHIFT, iterator) { |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 3174 | if (iterator.level == level) { |
Takuya Yoshikawa | 029499b | 2015-11-20 17:44:05 +0900 | [diff] [blame] | 3175 | emulate = mmu_set_spte(vcpu, iterator.sptep, ACC_ALL, |
| 3176 | write, level, gfn, pfn, prefault, |
| 3177 | map_writable); |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 3178 | direct_pte_prefetch(vcpu, iterator.sptep); |
Avi Kivity | 9f652d21 | 2008-12-25 14:54:25 +0200 | [diff] [blame] | 3179 | ++vcpu->stat.pf_fixed; |
| 3180 | break; |
| 3181 | } |
| 3182 | |
Marcelo Tosatti | 404381c | 2014-02-24 13:59:32 -0300 | [diff] [blame] | 3183 | drop_large_spte(vcpu, iterator.sptep); |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 3184 | if (!is_shadow_present_pte(*iterator.sptep)) { |
Lai Jiangshan | c9fa0b3 | 2010-05-26 16:48:25 +0800 | [diff] [blame] | 3185 | u64 base_addr = iterator.addr; |
| 3186 | |
| 3187 | base_addr &= PT64_LVL_ADDR_MASK(iterator.level); |
| 3188 | pseudo_gfn = base_addr >> PAGE_SHIFT; |
Avi Kivity | 9f652d21 | 2008-12-25 14:54:25 +0200 | [diff] [blame] | 3189 | sp = kvm_mmu_get_page(vcpu, pseudo_gfn, iterator.addr, |
Takuya Yoshikawa | bb11c6c | 2015-11-26 21:16:35 +0900 | [diff] [blame] | 3190 | iterator.level - 1, 1, ACC_ALL); |
Avi Kivity | 9f652d21 | 2008-12-25 14:54:25 +0200 | [diff] [blame] | 3191 | |
Takuya Yoshikawa | 98bba23 | 2015-11-26 21:14:34 +0900 | [diff] [blame] | 3192 | link_shadow_page(vcpu, iterator.sptep, sp); |
Avi Kivity | 9f652d21 | 2008-12-25 14:54:25 +0200 | [diff] [blame] | 3193 | } |
| 3194 | } |
Xiao Guangrong | b90a0e6 | 2011-07-12 03:25:56 +0800 | [diff] [blame] | 3195 | return emulate; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3196 | } |
| 3197 | |
Huang Ying | 77db5cb | 2010-10-08 16:24:15 +0800 | [diff] [blame] | 3198 | static void kvm_send_hwpoison_signal(unsigned long address, struct task_struct *tsk) |
Huang Ying | bf99815 | 2010-05-31 14:28:19 +0800 | [diff] [blame] | 3199 | { |
Eric W. Biederman | 585a8b9 | 2018-04-16 14:23:27 -0500 | [diff] [blame] | 3200 | send_sig_mceerr(BUS_MCEERR_AR, (void __user *)address, PAGE_SHIFT, tsk); |
Huang Ying | bf99815 | 2010-05-31 14:28:19 +0800 | [diff] [blame] | 3201 | } |
| 3202 | |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 3203 | static int kvm_handle_bad_page(struct kvm_vcpu *vcpu, gfn_t gfn, kvm_pfn_t pfn) |
Huang Ying | bf99815 | 2010-05-31 14:28:19 +0800 | [diff] [blame] | 3204 | { |
Xiao Guangrong | 4d8b81a | 2012-08-21 11:02:51 +0800 | [diff] [blame] | 3205 | /* |
| 3206 | * Do not cache the mmio info caused by writing the readonly gfn |
| 3207 | * into the spte otherwise read access on readonly gfn also can |
| 3208 | * caused mmio page fault and treat it as mmio access. |
Xiao Guangrong | 4d8b81a | 2012-08-21 11:02:51 +0800 | [diff] [blame] | 3209 | */ |
| 3210 | if (pfn == KVM_PFN_ERR_RO_FAULT) |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 3211 | return RET_PF_EMULATE; |
Xiao Guangrong | 4d8b81a | 2012-08-21 11:02:51 +0800 | [diff] [blame] | 3212 | |
Xiao Guangrong | e6c1502 | 2012-08-03 15:38:36 +0800 | [diff] [blame] | 3213 | if (pfn == KVM_PFN_ERR_HWPOISON) { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 3214 | kvm_send_hwpoison_signal(kvm_vcpu_gfn_to_hva(vcpu, gfn), current); |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 3215 | return RET_PF_RETRY; |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3216 | } |
Gleb Natapov | edba23e | 2010-07-07 20:16:45 +0300 | [diff] [blame] | 3217 | |
Sean Christopherson | 2c151b2 | 2018-03-29 14:48:30 -0700 | [diff] [blame] | 3218 | return -EFAULT; |
Huang Ying | bf99815 | 2010-05-31 14:28:19 +0800 | [diff] [blame] | 3219 | } |
| 3220 | |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3221 | static void transparent_hugepage_adjust(struct kvm_vcpu *vcpu, |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 3222 | gfn_t *gfnp, kvm_pfn_t *pfnp, |
| 3223 | int *levelp) |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3224 | { |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 3225 | kvm_pfn_t pfn = *pfnp; |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3226 | gfn_t gfn = *gfnp; |
| 3227 | int level = *levelp; |
| 3228 | |
| 3229 | /* |
| 3230 | * Check if it's a transparent hugepage. If this would be an |
| 3231 | * hugetlbfs page, level wouldn't be set to |
| 3232 | * PT_PAGE_TABLE_LEVEL and there would be no adjustment done |
| 3233 | * here. |
| 3234 | */ |
Ard Biesheuvel | bf4bea8 | 2014-11-10 08:33:56 +0000 | [diff] [blame] | 3235 | if (!is_error_noslot_pfn(pfn) && !kvm_is_reserved_pfn(pfn) && |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3236 | level == PT_PAGE_TABLE_LEVEL && |
Andrea Arcangeli | 127393f | 2016-05-05 16:22:20 -0700 | [diff] [blame] | 3237 | PageTransCompoundMap(pfn_to_page(pfn)) && |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 3238 | !mmu_gfn_lpage_is_disallowed(vcpu, gfn, PT_DIRECTORY_LEVEL)) { |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3239 | unsigned long mask; |
| 3240 | /* |
| 3241 | * mmu_notifier_retry was successful and we hold the |
| 3242 | * mmu_lock here, so the pmd can't become splitting |
| 3243 | * from under us, and in turn |
| 3244 | * __split_huge_page_refcount() can't run from under |
| 3245 | * us and we can safely transfer the refcount from |
| 3246 | * PG_tail to PG_head as we switch the pfn to tail to |
| 3247 | * head. |
| 3248 | */ |
| 3249 | *levelp = level = PT_DIRECTORY_LEVEL; |
| 3250 | mask = KVM_PAGES_PER_HPAGE(level) - 1; |
| 3251 | VM_BUG_ON((gfn & mask) != (pfn & mask)); |
| 3252 | if (pfn & mask) { |
| 3253 | gfn &= ~mask; |
| 3254 | *gfnp = gfn; |
| 3255 | kvm_release_pfn_clean(pfn); |
| 3256 | pfn &= ~mask; |
Xiao Guangrong | c358666 | 2012-05-28 14:10:43 +0800 | [diff] [blame] | 3257 | kvm_get_pfn(pfn); |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3258 | *pfnp = pfn; |
| 3259 | } |
| 3260 | } |
| 3261 | } |
| 3262 | |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3263 | static bool handle_abnormal_pfn(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn, |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 3264 | kvm_pfn_t pfn, unsigned access, int *ret_val) |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3265 | { |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3266 | /* The pfn is invalid, report the error! */ |
Xiao Guangrong | 81c52c5 | 2012-10-16 20:10:59 +0800 | [diff] [blame] | 3267 | if (unlikely(is_error_pfn(pfn))) { |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3268 | *ret_val = kvm_handle_bad_page(vcpu, gfn, pfn); |
Paolo Bonzini | 798e88b | 2016-02-23 15:28:51 +0100 | [diff] [blame] | 3269 | return true; |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3270 | } |
| 3271 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3272 | if (unlikely(is_noslot_pfn(pfn))) |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3273 | vcpu_cache_mmio_info(vcpu, gva, gfn, access); |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3274 | |
Paolo Bonzini | 798e88b | 2016-02-23 15:28:51 +0100 | [diff] [blame] | 3275 | return false; |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3276 | } |
| 3277 | |
Xiao Guangrong | e5552fd | 2013-07-30 21:01:59 +0800 | [diff] [blame] | 3278 | static bool page_fault_can_be_fast(u32 error_code) |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3279 | { |
| 3280 | /* |
Xiao Guangrong | 1c118b8 | 2013-07-18 12:52:37 +0800 | [diff] [blame] | 3281 | * Do not fix the mmio spte with invalid generation number which |
| 3282 | * need to be updated by slow page fault path. |
| 3283 | */ |
| 3284 | if (unlikely(error_code & PFERR_RSVD_MASK)) |
| 3285 | return false; |
| 3286 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 3287 | /* See if the page fault is due to an NX violation */ |
| 3288 | if (unlikely(((error_code & (PFERR_FETCH_MASK | PFERR_PRESENT_MASK)) |
| 3289 | == (PFERR_FETCH_MASK | PFERR_PRESENT_MASK)))) |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3290 | return false; |
| 3291 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 3292 | /* |
| 3293 | * #PF can be fast if: |
| 3294 | * 1. The shadow page table entry is not present, which could mean that |
| 3295 | * the fault is potentially caused by access tracking (if enabled). |
| 3296 | * 2. The shadow page table entry is present and the fault |
| 3297 | * is caused by write-protect, that means we just need change the W |
| 3298 | * bit of the spte which can be done out of mmu-lock. |
| 3299 | * |
| 3300 | * However, if access tracking is disabled we know that a non-present |
| 3301 | * page must be a genuine page fault where we have to create a new SPTE. |
| 3302 | * So, if access tracking is disabled, we return true only for write |
| 3303 | * accesses to a present page. |
| 3304 | */ |
| 3305 | |
| 3306 | return shadow_acc_track_mask != 0 || |
| 3307 | ((error_code & (PFERR_WRITE_MASK | PFERR_PRESENT_MASK)) |
| 3308 | == (PFERR_WRITE_MASK | PFERR_PRESENT_MASK)); |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3309 | } |
| 3310 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3311 | /* |
| 3312 | * Returns true if the SPTE was fixed successfully. Otherwise, |
| 3313 | * someone else modified the SPTE from its original value. |
| 3314 | */ |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3315 | static bool |
Xiao Guangrong | 92a476c | 2014-04-17 17:06:13 +0800 | [diff] [blame] | 3316 | fast_pf_fix_direct_spte(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp, |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3317 | u64 *sptep, u64 old_spte, u64 new_spte) |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3318 | { |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3319 | gfn_t gfn; |
| 3320 | |
| 3321 | WARN_ON(!sp->role.direct); |
| 3322 | |
Kai Huang | 9b51a63 | 2015-01-28 10:54:25 +0800 | [diff] [blame] | 3323 | /* |
| 3324 | * Theoretically we could also set dirty bit (and flush TLB) here in |
| 3325 | * order to eliminate unnecessary PML logging. See comments in |
| 3326 | * set_spte. But fast_page_fault is very unlikely to happen with PML |
| 3327 | * enabled, so we do not do this. This might result in the same GPA |
| 3328 | * to be logged in PML buffer again when the write really happens, and |
| 3329 | * eventually to be called by mark_page_dirty twice. But it's also no |
| 3330 | * harm. This also avoids the TLB flush needed after setting dirty bit |
| 3331 | * so non-PML cases won't be impacted. |
| 3332 | * |
| 3333 | * Compare with set_spte where instead shadow_dirty_mask is set. |
| 3334 | */ |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 3335 | if (cmpxchg64(sptep, old_spte, new_spte) != old_spte) |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3336 | return false; |
| 3337 | |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3338 | if (is_writable_pte(new_spte) && !is_writable_pte(old_spte)) { |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 3339 | /* |
| 3340 | * The gfn of direct spte is stable since it is |
| 3341 | * calculated by sp->gfn. |
| 3342 | */ |
| 3343 | gfn = kvm_mmu_page_get_gfn(sp, sptep - sp->spt); |
| 3344 | kvm_vcpu_mark_page_dirty(vcpu, gfn); |
| 3345 | } |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3346 | |
| 3347 | return true; |
| 3348 | } |
| 3349 | |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3350 | static bool is_access_allowed(u32 fault_err_code, u64 spte) |
| 3351 | { |
| 3352 | if (fault_err_code & PFERR_FETCH_MASK) |
| 3353 | return is_executable_pte(spte); |
| 3354 | |
| 3355 | if (fault_err_code & PFERR_WRITE_MASK) |
| 3356 | return is_writable_pte(spte); |
| 3357 | |
| 3358 | /* Fault was on Read access */ |
| 3359 | return spte & PT_PRESENT_MASK; |
| 3360 | } |
| 3361 | |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3362 | /* |
| 3363 | * Return value: |
| 3364 | * - true: let the vcpu to access on the same address again. |
| 3365 | * - false: let the real page fault path to fix it. |
| 3366 | */ |
| 3367 | static bool fast_page_fault(struct kvm_vcpu *vcpu, gva_t gva, int level, |
| 3368 | u32 error_code) |
| 3369 | { |
| 3370 | struct kvm_shadow_walk_iterator iterator; |
Xiao Guangrong | 92a476c | 2014-04-17 17:06:13 +0800 | [diff] [blame] | 3371 | struct kvm_mmu_page *sp; |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3372 | bool fault_handled = false; |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3373 | u64 spte = 0ull; |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3374 | uint retry_count = 0; |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3375 | |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3376 | if (!VALID_PAGE(vcpu->arch.mmu->root_hpa)) |
Marcelo Tosatti | 37f6a4e | 2014-01-03 17:09:32 -0200 | [diff] [blame] | 3377 | return false; |
| 3378 | |
Xiao Guangrong | e5552fd | 2013-07-30 21:01:59 +0800 | [diff] [blame] | 3379 | if (!page_fault_can_be_fast(error_code)) |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3380 | return false; |
| 3381 | |
| 3382 | walk_shadow_page_lockless_begin(vcpu); |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3383 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3384 | do { |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3385 | u64 new_spte; |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3386 | |
Junaid Shahid | d162f30 | 2016-12-21 20:29:30 -0800 | [diff] [blame] | 3387 | for_each_shadow_entry_lockless(vcpu, gva, iterator, spte) |
| 3388 | if (!is_shadow_present_pte(spte) || |
| 3389 | iterator.level < level) |
| 3390 | break; |
| 3391 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3392 | sp = page_header(__pa(iterator.sptep)); |
| 3393 | if (!is_last_spte(spte, sp->role.level)) |
| 3394 | break; |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3395 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3396 | /* |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 3397 | * Check whether the memory access that caused the fault would |
| 3398 | * still cause it if it were to be performed right now. If not, |
| 3399 | * then this is a spurious fault caused by TLB lazily flushed, |
| 3400 | * or some other CPU has already fixed the PTE after the |
| 3401 | * current CPU took the fault. |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3402 | * |
| 3403 | * Need not check the access of upper level table entries since |
| 3404 | * they are always ACC_ALL. |
| 3405 | */ |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3406 | if (is_access_allowed(error_code, spte)) { |
| 3407 | fault_handled = true; |
| 3408 | break; |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3409 | } |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3410 | |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3411 | new_spte = spte; |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 3412 | |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3413 | if (is_access_track_spte(spte)) |
| 3414 | new_spte = restore_acc_track_spte(new_spte); |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3415 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3416 | /* |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3417 | * Currently, to simplify the code, write-protection can |
| 3418 | * be removed in the fast path only if the SPTE was |
| 3419 | * write-protected for dirty-logging or access tracking. |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3420 | */ |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3421 | if ((error_code & PFERR_WRITE_MASK) && |
| 3422 | spte_can_locklessly_be_made_writable(spte)) |
| 3423 | { |
| 3424 | new_spte |= PT_WRITABLE_MASK; |
| 3425 | |
| 3426 | /* |
| 3427 | * Do not fix write-permission on the large spte. Since |
| 3428 | * we only dirty the first page into the dirty-bitmap in |
| 3429 | * fast_pf_fix_direct_spte(), other pages are missed |
| 3430 | * if its slot has dirty logging enabled. |
| 3431 | * |
| 3432 | * Instead, we let the slow page fault path create a |
| 3433 | * normal spte to fix the access. |
| 3434 | * |
| 3435 | * See the comments in kvm_arch_commit_memory_region(). |
| 3436 | */ |
| 3437 | if (sp->role.level > PT_PAGE_TABLE_LEVEL) |
| 3438 | break; |
| 3439 | } |
| 3440 | |
| 3441 | /* Verify that the fault can be handled in the fast path */ |
| 3442 | if (new_spte == spte || |
| 3443 | !is_access_allowed(error_code, new_spte)) |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3444 | break; |
Xiao Guangrong | c126d94 | 2014-04-17 17:06:14 +0800 | [diff] [blame] | 3445 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3446 | /* |
| 3447 | * Currently, fast page fault only works for direct mapping |
| 3448 | * since the gfn is not stable for indirect shadow page. See |
| 3449 | * Documentation/virtual/kvm/locking.txt to get more detail. |
| 3450 | */ |
| 3451 | fault_handled = fast_pf_fix_direct_spte(vcpu, sp, |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 3452 | iterator.sptep, spte, |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3453 | new_spte); |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3454 | if (fault_handled) |
| 3455 | break; |
| 3456 | |
| 3457 | if (++retry_count > 4) { |
| 3458 | printk_once(KERN_WARNING |
| 3459 | "kvm: Fast #PF retrying more than 4 times.\n"); |
| 3460 | break; |
| 3461 | } |
| 3462 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3463 | } while (true); |
| 3464 | |
Xiao Guangrong | a72faf2 | 2012-06-20 15:59:41 +0800 | [diff] [blame] | 3465 | trace_fast_page_fault(vcpu, gva, error_code, iterator.sptep, |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3466 | spte, fault_handled); |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3467 | walk_shadow_page_lockless_end(vcpu); |
| 3468 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3469 | return fault_handled; |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3470 | } |
| 3471 | |
Xiao Guangrong | 78b2c54 | 2010-12-07 10:48:06 +0800 | [diff] [blame] | 3472 | static bool try_async_pf(struct kvm_vcpu *vcpu, bool prefault, gfn_t gfn, |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 3473 | gva_t gva, kvm_pfn_t *pfn, bool write, bool *writable); |
Wanpeng Li | 26eeb53 | 2017-08-10 16:28:02 -0700 | [diff] [blame] | 3474 | static int make_mmu_pages_available(struct kvm_vcpu *vcpu); |
Xiao Guangrong | 060c2ab | 2010-11-12 14:49:11 +0800 | [diff] [blame] | 3475 | |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3476 | static int nonpaging_map(struct kvm_vcpu *vcpu, gva_t v, u32 error_code, |
| 3477 | gfn_t gfn, bool prefault) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3478 | { |
| 3479 | int r; |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 3480 | int level; |
Takuya Yoshikawa | fd13690 | 2015-10-16 17:06:02 +0900 | [diff] [blame] | 3481 | bool force_pt_level = false; |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 3482 | kvm_pfn_t pfn; |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 3483 | unsigned long mmu_seq; |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3484 | bool map_writable, write = error_code & PFERR_WRITE_MASK; |
Marcelo Tosatti | aaee2c9 | 2007-12-20 19:18:26 -0500 | [diff] [blame] | 3485 | |
Takuya Yoshikawa | fd13690 | 2015-10-16 17:06:02 +0900 | [diff] [blame] | 3486 | level = mapping_level(vcpu, gfn, &force_pt_level); |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3487 | if (likely(!force_pt_level)) { |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3488 | /* |
| 3489 | * This path builds a PAE pagetable - so we can map |
| 3490 | * 2mb pages at maximum. Therefore check if the level |
| 3491 | * is larger than that. |
| 3492 | */ |
| 3493 | if (level > PT_DIRECTORY_LEVEL) |
| 3494 | level = PT_DIRECTORY_LEVEL; |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 3495 | |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3496 | gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1); |
Takuya Yoshikawa | fd13690 | 2015-10-16 17:06:02 +0900 | [diff] [blame] | 3497 | } |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 3498 | |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3499 | if (fast_page_fault(vcpu, v, level, error_code)) |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 3500 | return RET_PF_RETRY; |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3501 | |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 3502 | mmu_seq = vcpu->kvm->mmu_notifier_seq; |
Marcelo Tosatti | 4c2155c | 2008-09-16 20:54:47 -0300 | [diff] [blame] | 3503 | smp_rmb(); |
Xiao Guangrong | 060c2ab | 2010-11-12 14:49:11 +0800 | [diff] [blame] | 3504 | |
Xiao Guangrong | 78b2c54 | 2010-12-07 10:48:06 +0800 | [diff] [blame] | 3505 | if (try_async_pf(vcpu, prefault, gfn, v, &pfn, write, &map_writable)) |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 3506 | return RET_PF_RETRY; |
Marcelo Tosatti | aaee2c9 | 2007-12-20 19:18:26 -0500 | [diff] [blame] | 3507 | |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3508 | if (handle_abnormal_pfn(vcpu, v, gfn, pfn, ACC_ALL, &r)) |
| 3509 | return r; |
Avi Kivity | d196e34 | 2008-01-24 11:44:11 +0200 | [diff] [blame] | 3510 | |
Marcelo Tosatti | aaee2c9 | 2007-12-20 19:18:26 -0500 | [diff] [blame] | 3511 | spin_lock(&vcpu->kvm->mmu_lock); |
Christoffer Dall | 8ca40a7 | 2012-10-14 23:10:18 -0400 | [diff] [blame] | 3512 | if (mmu_notifier_retry(vcpu->kvm, mmu_seq)) |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 3513 | goto out_unlock; |
Wanpeng Li | 26eeb53 | 2017-08-10 16:28:02 -0700 | [diff] [blame] | 3514 | if (make_mmu_pages_available(vcpu) < 0) |
| 3515 | goto out_unlock; |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3516 | if (likely(!force_pt_level)) |
| 3517 | transparent_hugepage_adjust(vcpu, &gfn, &pfn, &level); |
Takuya Yoshikawa | 7ee0e5b | 2015-11-20 17:42:23 +0900 | [diff] [blame] | 3518 | r = __direct_map(vcpu, write, map_writable, level, gfn, pfn, prefault); |
Marcelo Tosatti | aaee2c9 | 2007-12-20 19:18:26 -0500 | [diff] [blame] | 3519 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 3520 | |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3521 | return r; |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 3522 | |
| 3523 | out_unlock: |
| 3524 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 3525 | kvm_release_pfn_clean(pfn); |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 3526 | return RET_PF_RETRY; |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3527 | } |
| 3528 | |
Junaid Shahid | 74b566e | 2018-05-04 11:37:11 -0700 | [diff] [blame] | 3529 | static void mmu_free_root_page(struct kvm *kvm, hpa_t *root_hpa, |
| 3530 | struct list_head *invalid_list) |
| 3531 | { |
| 3532 | struct kvm_mmu_page *sp; |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3533 | |
Junaid Shahid | 74b566e | 2018-05-04 11:37:11 -0700 | [diff] [blame] | 3534 | if (!VALID_PAGE(*root_hpa)) |
| 3535 | return; |
| 3536 | |
| 3537 | sp = page_header(*root_hpa & PT64_BASE_ADDR_MASK); |
| 3538 | --sp->root_count; |
| 3539 | if (!sp->root_count && sp->role.invalid) |
| 3540 | kvm_mmu_prepare_zap_page(kvm, sp, invalid_list); |
| 3541 | |
| 3542 | *root_hpa = INVALID_PAGE; |
| 3543 | } |
| 3544 | |
Junaid Shahid | 08fb59d | 2018-06-27 14:59:17 -0700 | [diff] [blame] | 3545 | /* roots_to_free must be some combination of the KVM_MMU_ROOT_* flags */ |
Vitaly Kuznetsov | 6a82cd1 | 2018-10-08 21:28:07 +0200 | [diff] [blame] | 3546 | void kvm_mmu_free_roots(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, |
| 3547 | ulong roots_to_free) |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3548 | { |
| 3549 | int i; |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 3550 | LIST_HEAD(invalid_list); |
Junaid Shahid | 08fb59d | 2018-06-27 14:59:17 -0700 | [diff] [blame] | 3551 | bool free_active_root = roots_to_free & KVM_MMU_ROOT_CURRENT; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3552 | |
Junaid Shahid | b94742c | 2018-06-27 14:59:20 -0700 | [diff] [blame] | 3553 | BUILD_BUG_ON(KVM_MMU_NUM_PREV_ROOTS >= BITS_PER_LONG); |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3554 | |
Junaid Shahid | 08fb59d | 2018-06-27 14:59:17 -0700 | [diff] [blame] | 3555 | /* Before acquiring the MMU lock, see if we need to do any real work. */ |
Junaid Shahid | b94742c | 2018-06-27 14:59:20 -0700 | [diff] [blame] | 3556 | if (!(free_active_root && VALID_PAGE(mmu->root_hpa))) { |
| 3557 | for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++) |
| 3558 | if ((roots_to_free & KVM_MMU_ROOT_PREVIOUS(i)) && |
| 3559 | VALID_PAGE(mmu->prev_roots[i].hpa)) |
| 3560 | break; |
| 3561 | |
| 3562 | if (i == KVM_MMU_NUM_PREV_ROOTS) |
| 3563 | return; |
| 3564 | } |
Gleb Natapov | 35af577 | 2013-05-16 11:55:51 +0300 | [diff] [blame] | 3565 | |
Gleb Natapov | 35af577 | 2013-05-16 11:55:51 +0300 | [diff] [blame] | 3566 | spin_lock(&vcpu->kvm->mmu_lock); |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3567 | |
Junaid Shahid | b94742c | 2018-06-27 14:59:20 -0700 | [diff] [blame] | 3568 | for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++) |
| 3569 | if (roots_to_free & KVM_MMU_ROOT_PREVIOUS(i)) |
| 3570 | mmu_free_root_page(vcpu->kvm, &mmu->prev_roots[i].hpa, |
| 3571 | &invalid_list); |
Junaid Shahid | 7c390d3 | 2018-06-27 14:59:06 -0700 | [diff] [blame] | 3572 | |
Junaid Shahid | 08fb59d | 2018-06-27 14:59:17 -0700 | [diff] [blame] | 3573 | if (free_active_root) { |
| 3574 | if (mmu->shadow_root_level >= PT64_ROOT_4LEVEL && |
| 3575 | (mmu->root_level >= PT64_ROOT_4LEVEL || mmu->direct_map)) { |
| 3576 | mmu_free_root_page(vcpu->kvm, &mmu->root_hpa, |
| 3577 | &invalid_list); |
| 3578 | } else { |
| 3579 | for (i = 0; i < 4; ++i) |
| 3580 | if (mmu->pae_root[i] != 0) |
| 3581 | mmu_free_root_page(vcpu->kvm, |
| 3582 | &mmu->pae_root[i], |
| 3583 | &invalid_list); |
| 3584 | mmu->root_hpa = INVALID_PAGE; |
| 3585 | } |
Vitaly Kuznetsov | ad7dc69 | 2019-02-22 17:45:01 +0100 | [diff] [blame] | 3586 | mmu->root_cr3 = 0; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3587 | } |
Junaid Shahid | 74b566e | 2018-05-04 11:37:11 -0700 | [diff] [blame] | 3588 | |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 3589 | kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list); |
Marcelo Tosatti | aaee2c9 | 2007-12-20 19:18:26 -0500 | [diff] [blame] | 3590 | spin_unlock(&vcpu->kvm->mmu_lock); |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3591 | } |
Junaid Shahid | 74b566e | 2018-05-04 11:37:11 -0700 | [diff] [blame] | 3592 | EXPORT_SYMBOL_GPL(kvm_mmu_free_roots); |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3593 | |
Marcelo Tosatti | 8986ecc | 2009-05-12 18:55:45 -0300 | [diff] [blame] | 3594 | static int mmu_check_root(struct kvm_vcpu *vcpu, gfn_t root_gfn) |
| 3595 | { |
| 3596 | int ret = 0; |
| 3597 | |
| 3598 | if (!kvm_is_visible_gfn(vcpu->kvm, root_gfn)) { |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 3599 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Marcelo Tosatti | 8986ecc | 2009-05-12 18:55:45 -0300 | [diff] [blame] | 3600 | ret = 1; |
| 3601 | } |
| 3602 | |
| 3603 | return ret; |
| 3604 | } |
| 3605 | |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3606 | static int mmu_alloc_direct_roots(struct kvm_vcpu *vcpu) |
| 3607 | { |
| 3608 | struct kvm_mmu_page *sp; |
Avi Kivity | 7ebaf15 | 2010-10-03 18:51:39 +0200 | [diff] [blame] | 3609 | unsigned i; |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3610 | |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3611 | if (vcpu->arch.mmu->shadow_root_level >= PT64_ROOT_4LEVEL) { |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3612 | spin_lock(&vcpu->kvm->mmu_lock); |
Wanpeng Li | 26eeb53 | 2017-08-10 16:28:02 -0700 | [diff] [blame] | 3613 | if(make_mmu_pages_available(vcpu) < 0) { |
| 3614 | spin_unlock(&vcpu->kvm->mmu_lock); |
Wanpeng Li | ed52870 | 2017-12-04 22:21:30 -0800 | [diff] [blame] | 3615 | return -ENOSPC; |
Wanpeng Li | 26eeb53 | 2017-08-10 16:28:02 -0700 | [diff] [blame] | 3616 | } |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 3617 | sp = kvm_mmu_get_page(vcpu, 0, 0, |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3618 | vcpu->arch.mmu->shadow_root_level, 1, ACC_ALL); |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3619 | ++sp->root_count; |
| 3620 | spin_unlock(&vcpu->kvm->mmu_lock); |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3621 | vcpu->arch.mmu->root_hpa = __pa(sp->spt); |
| 3622 | } else if (vcpu->arch.mmu->shadow_root_level == PT32E_ROOT_LEVEL) { |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3623 | for (i = 0; i < 4; ++i) { |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3624 | hpa_t root = vcpu->arch.mmu->pae_root[i]; |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3625 | |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 3626 | MMU_WARN_ON(VALID_PAGE(root)); |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3627 | spin_lock(&vcpu->kvm->mmu_lock); |
Wanpeng Li | 26eeb53 | 2017-08-10 16:28:02 -0700 | [diff] [blame] | 3628 | if (make_mmu_pages_available(vcpu) < 0) { |
| 3629 | spin_unlock(&vcpu->kvm->mmu_lock); |
Wanpeng Li | ed52870 | 2017-12-04 22:21:30 -0800 | [diff] [blame] | 3630 | return -ENOSPC; |
Wanpeng Li | 26eeb53 | 2017-08-10 16:28:02 -0700 | [diff] [blame] | 3631 | } |
Avi Kivity | 649497d | 2010-12-28 12:09:07 +0200 | [diff] [blame] | 3632 | sp = kvm_mmu_get_page(vcpu, i << (30 - PAGE_SHIFT), |
Takuya Yoshikawa | bb11c6c | 2015-11-26 21:16:35 +0900 | [diff] [blame] | 3633 | i << 30, PT32_ROOT_LEVEL, 1, ACC_ALL); |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3634 | root = __pa(sp->spt); |
| 3635 | ++sp->root_count; |
| 3636 | spin_unlock(&vcpu->kvm->mmu_lock); |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3637 | vcpu->arch.mmu->pae_root[i] = root | PT_PRESENT_MASK; |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3638 | } |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3639 | vcpu->arch.mmu->root_hpa = __pa(vcpu->arch.mmu->pae_root); |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3640 | } else |
| 3641 | BUG(); |
Vitaly Kuznetsov | ad7dc69 | 2019-02-22 17:45:01 +0100 | [diff] [blame] | 3642 | vcpu->arch.mmu->root_cr3 = vcpu->arch.mmu->get_cr3(vcpu); |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3643 | |
| 3644 | return 0; |
| 3645 | } |
| 3646 | |
| 3647 | static int mmu_alloc_shadow_roots(struct kvm_vcpu *vcpu) |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3648 | { |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 3649 | struct kvm_mmu_page *sp; |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3650 | u64 pdptr, pm_mask; |
Vitaly Kuznetsov | ad7dc69 | 2019-02-22 17:45:01 +0100 | [diff] [blame] | 3651 | gfn_t root_gfn, root_cr3; |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3652 | int i; |
Avi Kivity | 3bb65a2 | 2007-01-05 16:36:51 -0800 | [diff] [blame] | 3653 | |
Vitaly Kuznetsov | ad7dc69 | 2019-02-22 17:45:01 +0100 | [diff] [blame] | 3654 | root_cr3 = vcpu->arch.mmu->get_cr3(vcpu); |
| 3655 | root_gfn = root_cr3 >> PAGE_SHIFT; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3656 | |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3657 | if (mmu_check_root(vcpu, root_gfn)) |
| 3658 | return 1; |
| 3659 | |
| 3660 | /* |
| 3661 | * Do we shadow a long mode page table? If so we need to |
| 3662 | * write-protect the guests page table root. |
| 3663 | */ |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3664 | if (vcpu->arch.mmu->root_level >= PT64_ROOT_4LEVEL) { |
| 3665 | hpa_t root = vcpu->arch.mmu->root_hpa; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3666 | |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 3667 | MMU_WARN_ON(VALID_PAGE(root)); |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3668 | |
Avi Kivity | 8facbbf | 2010-05-04 12:58:32 +0300 | [diff] [blame] | 3669 | spin_lock(&vcpu->kvm->mmu_lock); |
Wanpeng Li | 26eeb53 | 2017-08-10 16:28:02 -0700 | [diff] [blame] | 3670 | if (make_mmu_pages_available(vcpu) < 0) { |
| 3671 | spin_unlock(&vcpu->kvm->mmu_lock); |
Wanpeng Li | ed52870 | 2017-12-04 22:21:30 -0800 | [diff] [blame] | 3672 | return -ENOSPC; |
Wanpeng Li | 26eeb53 | 2017-08-10 16:28:02 -0700 | [diff] [blame] | 3673 | } |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 3674 | sp = kvm_mmu_get_page(vcpu, root_gfn, 0, |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3675 | vcpu->arch.mmu->shadow_root_level, 0, ACC_ALL); |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 3676 | root = __pa(sp->spt); |
| 3677 | ++sp->root_count; |
Avi Kivity | 8facbbf | 2010-05-04 12:58:32 +0300 | [diff] [blame] | 3678 | spin_unlock(&vcpu->kvm->mmu_lock); |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3679 | vcpu->arch.mmu->root_hpa = root; |
Vitaly Kuznetsov | ad7dc69 | 2019-02-22 17:45:01 +0100 | [diff] [blame] | 3680 | goto set_root_cr3; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3681 | } |
Joerg Roedel | f87f928 | 2010-09-02 17:29:45 +0200 | [diff] [blame] | 3682 | |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3683 | /* |
| 3684 | * We shadow a 32 bit page table. This may be a legacy 2-level |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3685 | * or a PAE 3-level page table. In either case we need to be aware that |
| 3686 | * the shadow page table may be a PAE or a long mode page table. |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3687 | */ |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3688 | pm_mask = PT_PRESENT_MASK; |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3689 | if (vcpu->arch.mmu->shadow_root_level == PT64_ROOT_4LEVEL) |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3690 | pm_mask |= PT_ACCESSED_MASK | PT_WRITABLE_MASK | PT_USER_MASK; |
| 3691 | |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3692 | for (i = 0; i < 4; ++i) { |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3693 | hpa_t root = vcpu->arch.mmu->pae_root[i]; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3694 | |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 3695 | MMU_WARN_ON(VALID_PAGE(root)); |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3696 | if (vcpu->arch.mmu->root_level == PT32E_ROOT_LEVEL) { |
| 3697 | pdptr = vcpu->arch.mmu->get_pdptr(vcpu, i); |
Bandan Das | 812f30b | 2016-07-12 18:18:50 -0400 | [diff] [blame] | 3698 | if (!(pdptr & PT_PRESENT_MASK)) { |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3699 | vcpu->arch.mmu->pae_root[i] = 0; |
Avi Kivity | 417726a | 2007-04-12 17:35:58 +0300 | [diff] [blame] | 3700 | continue; |
| 3701 | } |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 3702 | root_gfn = pdptr >> PAGE_SHIFT; |
Joerg Roedel | f87f928 | 2010-09-02 17:29:45 +0200 | [diff] [blame] | 3703 | if (mmu_check_root(vcpu, root_gfn)) |
| 3704 | return 1; |
Eric Northup | 5a7388c | 2010-04-26 17:00:05 -0700 | [diff] [blame] | 3705 | } |
Avi Kivity | 8facbbf | 2010-05-04 12:58:32 +0300 | [diff] [blame] | 3706 | spin_lock(&vcpu->kvm->mmu_lock); |
Wanpeng Li | 26eeb53 | 2017-08-10 16:28:02 -0700 | [diff] [blame] | 3707 | if (make_mmu_pages_available(vcpu) < 0) { |
| 3708 | spin_unlock(&vcpu->kvm->mmu_lock); |
Wanpeng Li | ed52870 | 2017-12-04 22:21:30 -0800 | [diff] [blame] | 3709 | return -ENOSPC; |
Wanpeng Li | 26eeb53 | 2017-08-10 16:28:02 -0700 | [diff] [blame] | 3710 | } |
Takuya Yoshikawa | bb11c6c | 2015-11-26 21:16:35 +0900 | [diff] [blame] | 3711 | sp = kvm_mmu_get_page(vcpu, root_gfn, i << 30, PT32_ROOT_LEVEL, |
| 3712 | 0, ACC_ALL); |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 3713 | root = __pa(sp->spt); |
| 3714 | ++sp->root_count; |
Avi Kivity | 8facbbf | 2010-05-04 12:58:32 +0300 | [diff] [blame] | 3715 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 3716 | |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3717 | vcpu->arch.mmu->pae_root[i] = root | pm_mask; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3718 | } |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3719 | vcpu->arch.mmu->root_hpa = __pa(vcpu->arch.mmu->pae_root); |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3720 | |
| 3721 | /* |
| 3722 | * If we shadow a 32 bit page table with a long mode page |
| 3723 | * table we enter this path. |
| 3724 | */ |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3725 | if (vcpu->arch.mmu->shadow_root_level == PT64_ROOT_4LEVEL) { |
| 3726 | if (vcpu->arch.mmu->lm_root == NULL) { |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3727 | /* |
| 3728 | * The additional page necessary for this is only |
| 3729 | * allocated on demand. |
| 3730 | */ |
| 3731 | |
| 3732 | u64 *lm_root; |
| 3733 | |
Ben Gardon | 254272c | 2019-02-11 11:02:50 -0800 | [diff] [blame] | 3734 | lm_root = (void*)get_zeroed_page(GFP_KERNEL_ACCOUNT); |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3735 | if (lm_root == NULL) |
| 3736 | return 1; |
| 3737 | |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3738 | lm_root[0] = __pa(vcpu->arch.mmu->pae_root) | pm_mask; |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3739 | |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3740 | vcpu->arch.mmu->lm_root = lm_root; |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3741 | } |
| 3742 | |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3743 | vcpu->arch.mmu->root_hpa = __pa(vcpu->arch.mmu->lm_root); |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3744 | } |
| 3745 | |
Vitaly Kuznetsov | ad7dc69 | 2019-02-22 17:45:01 +0100 | [diff] [blame] | 3746 | set_root_cr3: |
| 3747 | vcpu->arch.mmu->root_cr3 = root_cr3; |
| 3748 | |
Marcelo Tosatti | 8986ecc | 2009-05-12 18:55:45 -0300 | [diff] [blame] | 3749 | return 0; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3750 | } |
| 3751 | |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3752 | static int mmu_alloc_roots(struct kvm_vcpu *vcpu) |
| 3753 | { |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3754 | if (vcpu->arch.mmu->direct_map) |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3755 | return mmu_alloc_direct_roots(vcpu); |
| 3756 | else |
| 3757 | return mmu_alloc_shadow_roots(vcpu); |
| 3758 | } |
| 3759 | |
Junaid Shahid | 578e1c4 | 2018-06-27 14:59:05 -0700 | [diff] [blame] | 3760 | void kvm_mmu_sync_roots(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3761 | { |
| 3762 | int i; |
| 3763 | struct kvm_mmu_page *sp; |
| 3764 | |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3765 | if (vcpu->arch.mmu->direct_map) |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3766 | return; |
| 3767 | |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3768 | if (!VALID_PAGE(vcpu->arch.mmu->root_hpa)) |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3769 | return; |
Xiao Guangrong | 6903074 | 2010-09-27 18:09:29 +0800 | [diff] [blame] | 3770 | |
David Matlack | 56f17dd | 2014-08-18 15:46:07 -0700 | [diff] [blame] | 3771 | vcpu_clear_mmio_info(vcpu, MMIO_GVA_ANY); |
Junaid Shahid | 578e1c4 | 2018-06-27 14:59:05 -0700 | [diff] [blame] | 3772 | |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3773 | if (vcpu->arch.mmu->root_level >= PT64_ROOT_4LEVEL) { |
| 3774 | hpa_t root = vcpu->arch.mmu->root_hpa; |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3775 | sp = page_header(root); |
Junaid Shahid | 578e1c4 | 2018-06-27 14:59:05 -0700 | [diff] [blame] | 3776 | |
| 3777 | /* |
| 3778 | * Even if another CPU was marking the SP as unsync-ed |
| 3779 | * simultaneously, any guest page table changes are not |
| 3780 | * guaranteed to be visible anyway until this VCPU issues a TLB |
| 3781 | * flush strictly after those changes are made. We only need to |
| 3782 | * ensure that the other CPU sets these flags before any actual |
| 3783 | * changes to the page tables are made. The comments in |
| 3784 | * mmu_need_write_protect() describe what could go wrong if this |
| 3785 | * requirement isn't satisfied. |
| 3786 | */ |
| 3787 | if (!smp_load_acquire(&sp->unsync) && |
| 3788 | !smp_load_acquire(&sp->unsync_children)) |
| 3789 | return; |
| 3790 | |
| 3791 | spin_lock(&vcpu->kvm->mmu_lock); |
| 3792 | kvm_mmu_audit(vcpu, AUDIT_PRE_SYNC); |
| 3793 | |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3794 | mmu_sync_children(vcpu, sp); |
Junaid Shahid | 578e1c4 | 2018-06-27 14:59:05 -0700 | [diff] [blame] | 3795 | |
Xiao Guangrong | 0375f7f | 2011-11-28 20:41:00 +0800 | [diff] [blame] | 3796 | kvm_mmu_audit(vcpu, AUDIT_POST_SYNC); |
Junaid Shahid | 578e1c4 | 2018-06-27 14:59:05 -0700 | [diff] [blame] | 3797 | spin_unlock(&vcpu->kvm->mmu_lock); |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3798 | return; |
| 3799 | } |
Junaid Shahid | 578e1c4 | 2018-06-27 14:59:05 -0700 | [diff] [blame] | 3800 | |
| 3801 | spin_lock(&vcpu->kvm->mmu_lock); |
| 3802 | kvm_mmu_audit(vcpu, AUDIT_PRE_SYNC); |
| 3803 | |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3804 | for (i = 0; i < 4; ++i) { |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3805 | hpa_t root = vcpu->arch.mmu->pae_root[i]; |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3806 | |
Marcelo Tosatti | 8986ecc | 2009-05-12 18:55:45 -0300 | [diff] [blame] | 3807 | if (root && VALID_PAGE(root)) { |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3808 | root &= PT64_BASE_ADDR_MASK; |
| 3809 | sp = page_header(root); |
| 3810 | mmu_sync_children(vcpu, sp); |
| 3811 | } |
| 3812 | } |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3813 | |
Junaid Shahid | 578e1c4 | 2018-06-27 14:59:05 -0700 | [diff] [blame] | 3814 | kvm_mmu_audit(vcpu, AUDIT_POST_SYNC); |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3815 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 3816 | } |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 3817 | EXPORT_SYMBOL_GPL(kvm_mmu_sync_roots); |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3818 | |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 3819 | static gpa_t nonpaging_gva_to_gpa(struct kvm_vcpu *vcpu, gva_t vaddr, |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 3820 | u32 access, struct x86_exception *exception) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3821 | { |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 3822 | if (exception) |
| 3823 | exception->error_code = 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3824 | return vaddr; |
| 3825 | } |
| 3826 | |
Joerg Roedel | 6539e73 | 2010-09-10 17:30:50 +0200 | [diff] [blame] | 3827 | static gpa_t nonpaging_gva_to_gpa_nested(struct kvm_vcpu *vcpu, gva_t vaddr, |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 3828 | u32 access, |
| 3829 | struct x86_exception *exception) |
Joerg Roedel | 6539e73 | 2010-09-10 17:30:50 +0200 | [diff] [blame] | 3830 | { |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 3831 | if (exception) |
| 3832 | exception->error_code = 0; |
Paolo Bonzini | 54987b7 | 2014-09-02 13:23:06 +0200 | [diff] [blame] | 3833 | return vcpu->arch.nested_mmu.translate_gpa(vcpu, vaddr, access, exception); |
Joerg Roedel | 6539e73 | 2010-09-10 17:30:50 +0200 | [diff] [blame] | 3834 | } |
| 3835 | |
Xiao Guangrong | d625b15 | 2015-08-05 12:04:25 +0800 | [diff] [blame] | 3836 | static bool |
| 3837 | __is_rsvd_bits_set(struct rsvd_bits_validate *rsvd_check, u64 pte, int level) |
| 3838 | { |
| 3839 | int bit7 = (pte >> 7) & 1, low6 = pte & 0x3f; |
| 3840 | |
| 3841 | return (pte & rsvd_check->rsvd_bits_mask[bit7][level-1]) | |
| 3842 | ((rsvd_check->bad_mt_xwr & (1ull << low6)) != 0); |
| 3843 | } |
| 3844 | |
| 3845 | static bool is_rsvd_bits_set(struct kvm_mmu *mmu, u64 gpte, int level) |
| 3846 | { |
| 3847 | return __is_rsvd_bits_set(&mmu->guest_rsvd_check, gpte, level); |
| 3848 | } |
| 3849 | |
| 3850 | static bool is_shadow_zero_bits_set(struct kvm_mmu *mmu, u64 spte, int level) |
| 3851 | { |
| 3852 | return __is_rsvd_bits_set(&mmu->shadow_zero_check, spte, level); |
| 3853 | } |
| 3854 | |
Takuya Yoshikawa | ded5874 | 2016-02-22 17:23:40 +0900 | [diff] [blame] | 3855 | static bool mmio_info_in_cache(struct kvm_vcpu *vcpu, u64 addr, bool direct) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3856 | { |
Paolo Bonzini | 9034e6e | 2017-08-17 18:36:58 +0200 | [diff] [blame] | 3857 | /* |
| 3858 | * A nested guest cannot use the MMIO cache if it is using nested |
| 3859 | * page tables, because cr2 is a nGPA while the cache stores GPAs. |
| 3860 | */ |
| 3861 | if (mmu_is_nested(vcpu)) |
| 3862 | return false; |
| 3863 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3864 | if (direct) |
| 3865 | return vcpu_match_mmio_gpa(vcpu, addr); |
| 3866 | |
| 3867 | return vcpu_match_mmio_gva(vcpu, addr); |
| 3868 | } |
| 3869 | |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3870 | /* return true if reserved bit is detected on spte. */ |
| 3871 | static bool |
| 3872 | walk_shadow_page_get_mmio_spte(struct kvm_vcpu *vcpu, u64 addr, u64 *sptep) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3873 | { |
| 3874 | struct kvm_shadow_walk_iterator iterator; |
Yu Zhang | 2a7266a | 2017-08-24 20:27:54 +0800 | [diff] [blame] | 3875 | u64 sptes[PT64_ROOT_MAX_LEVEL], spte = 0ull; |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3876 | int root, leaf; |
| 3877 | bool reserved = false; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3878 | |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3879 | if (!VALID_PAGE(vcpu->arch.mmu->root_hpa)) |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3880 | goto exit; |
Marcelo Tosatti | 37f6a4e | 2014-01-03 17:09:32 -0200 | [diff] [blame] | 3881 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3882 | walk_shadow_page_lockless_begin(vcpu); |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3883 | |
Paolo Bonzini | 29ecd66 | 2015-09-06 16:24:50 +0200 | [diff] [blame] | 3884 | for (shadow_walk_init(&iterator, vcpu, addr), |
| 3885 | leaf = root = iterator.level; |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3886 | shadow_walk_okay(&iterator); |
| 3887 | __shadow_walk_next(&iterator, spte)) { |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3888 | spte = mmu_spte_get_lockless(iterator.sptep); |
| 3889 | |
| 3890 | sptes[leaf - 1] = spte; |
Paolo Bonzini | 29ecd66 | 2015-09-06 16:24:50 +0200 | [diff] [blame] | 3891 | leaf--; |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3892 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3893 | if (!is_shadow_present_pte(spte)) |
| 3894 | break; |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3895 | |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3896 | reserved |= is_shadow_zero_bits_set(vcpu->arch.mmu, spte, |
Paolo Bonzini | 58c9507 | 2015-09-22 10:15:59 +0200 | [diff] [blame] | 3897 | iterator.level); |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3898 | } |
| 3899 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3900 | walk_shadow_page_lockless_end(vcpu); |
| 3901 | |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3902 | if (reserved) { |
| 3903 | pr_err("%s: detect reserved bits on spte, addr 0x%llx, dump hierarchy:\n", |
| 3904 | __func__, addr); |
Paolo Bonzini | 29ecd66 | 2015-09-06 16:24:50 +0200 | [diff] [blame] | 3905 | while (root > leaf) { |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3906 | pr_err("------ spte 0x%llx level %d.\n", |
| 3907 | sptes[root - 1], root); |
| 3908 | root--; |
| 3909 | } |
| 3910 | } |
| 3911 | exit: |
| 3912 | *sptep = spte; |
| 3913 | return reserved; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3914 | } |
| 3915 | |
Paolo Bonzini | e08d26f | 2017-08-17 18:36:56 +0200 | [diff] [blame] | 3916 | static int handle_mmio_page_fault(struct kvm_vcpu *vcpu, u64 addr, bool direct) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3917 | { |
| 3918 | u64 spte; |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3919 | bool reserved; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3920 | |
Takuya Yoshikawa | ded5874 | 2016-02-22 17:23:40 +0900 | [diff] [blame] | 3921 | if (mmio_info_in_cache(vcpu, addr, direct)) |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 3922 | return RET_PF_EMULATE; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3923 | |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3924 | reserved = walk_shadow_page_get_mmio_spte(vcpu, addr, &spte); |
Paolo Bonzini | 450869d | 2015-11-04 13:41:21 +0100 | [diff] [blame] | 3925 | if (WARN_ON(reserved)) |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 3926 | return -EINVAL; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3927 | |
| 3928 | if (is_mmio_spte(spte)) { |
| 3929 | gfn_t gfn = get_mmio_spte_gfn(spte); |
| 3930 | unsigned access = get_mmio_spte_access(spte); |
| 3931 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 3932 | if (!check_mmio_spte(vcpu, spte)) |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 3933 | return RET_PF_INVALID; |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 3934 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3935 | if (direct) |
| 3936 | addr = 0; |
Xiao Guangrong | 4f02264 | 2011-07-12 03:34:24 +0800 | [diff] [blame] | 3937 | |
| 3938 | trace_handle_mmio_page_fault(addr, gfn, access); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3939 | vcpu_cache_mmio_info(vcpu, addr, gfn, access); |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 3940 | return RET_PF_EMULATE; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3941 | } |
| 3942 | |
| 3943 | /* |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3944 | * If the page table is zapped by other cpus, let CPU fault again on |
| 3945 | * the address. |
| 3946 | */ |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 3947 | return RET_PF_RETRY; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3948 | } |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3949 | |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 3950 | static bool page_fault_handle_page_track(struct kvm_vcpu *vcpu, |
| 3951 | u32 error_code, gfn_t gfn) |
| 3952 | { |
| 3953 | if (unlikely(error_code & PFERR_RSVD_MASK)) |
| 3954 | return false; |
| 3955 | |
| 3956 | if (!(error_code & PFERR_PRESENT_MASK) || |
| 3957 | !(error_code & PFERR_WRITE_MASK)) |
| 3958 | return false; |
| 3959 | |
| 3960 | /* |
| 3961 | * guest is writing the page which is write tracked which can |
| 3962 | * not be fixed by page fault handler. |
| 3963 | */ |
| 3964 | if (kvm_page_track_is_active(vcpu, gfn, KVM_PAGE_TRACK_WRITE)) |
| 3965 | return true; |
| 3966 | |
| 3967 | return false; |
| 3968 | } |
| 3969 | |
Xiao Guangrong | e5691a8 | 2016-02-24 17:51:12 +0800 | [diff] [blame] | 3970 | static void shadow_page_table_clear_flood(struct kvm_vcpu *vcpu, gva_t addr) |
| 3971 | { |
| 3972 | struct kvm_shadow_walk_iterator iterator; |
| 3973 | u64 spte; |
| 3974 | |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 3975 | if (!VALID_PAGE(vcpu->arch.mmu->root_hpa)) |
Xiao Guangrong | e5691a8 | 2016-02-24 17:51:12 +0800 | [diff] [blame] | 3976 | return; |
| 3977 | |
| 3978 | walk_shadow_page_lockless_begin(vcpu); |
| 3979 | for_each_shadow_entry_lockless(vcpu, addr, iterator, spte) { |
| 3980 | clear_sp_write_flooding_count(iterator.sptep); |
| 3981 | if (!is_shadow_present_pte(spte)) |
| 3982 | break; |
| 3983 | } |
| 3984 | walk_shadow_page_lockless_end(vcpu); |
| 3985 | } |
| 3986 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3987 | static int nonpaging_page_fault(struct kvm_vcpu *vcpu, gva_t gva, |
Xiao Guangrong | 78b2c54 | 2010-12-07 10:48:06 +0800 | [diff] [blame] | 3988 | u32 error_code, bool prefault) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3989 | { |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 3990 | gfn_t gfn = gva >> PAGE_SHIFT; |
Avi Kivity | e2dec93 | 2007-01-05 16:36:54 -0800 | [diff] [blame] | 3991 | int r; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3992 | |
Harvey Harrison | b8688d5 | 2008-03-03 12:59:56 -0800 | [diff] [blame] | 3993 | pgprintk("%s: gva %lx error %x\n", __func__, gva, error_code); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3994 | |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 3995 | if (page_fault_handle_page_track(vcpu, error_code, gfn)) |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 3996 | return RET_PF_EMULATE; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3997 | |
Avi Kivity | e2dec93 | 2007-01-05 16:36:54 -0800 | [diff] [blame] | 3998 | r = mmu_topup_memory_caches(vcpu); |
| 3999 | if (r) |
| 4000 | return r; |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 4001 | |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 4002 | MMU_WARN_ON(!VALID_PAGE(vcpu->arch.mmu->root_hpa)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4003 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4004 | |
Avi Kivity | e833240 | 2007-12-09 18:43:00 +0200 | [diff] [blame] | 4005 | return nonpaging_map(vcpu, gva & PAGE_MASK, |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 4006 | error_code, gfn, prefault); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4007 | } |
| 4008 | |
Jan Kiszka | 7e1fbea | 2010-10-20 15:18:02 +0200 | [diff] [blame] | 4009 | static int kvm_arch_setup_async_pf(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn) |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 4010 | { |
| 4011 | struct kvm_arch_async_pf arch; |
Xiao Guangrong | fb67e14 | 2010-12-07 10:35:25 +0800 | [diff] [blame] | 4012 | |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 4013 | arch.token = (vcpu->arch.apf.id++ << 12) | vcpu->vcpu_id; |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 4014 | arch.gfn = gfn; |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 4015 | arch.direct_map = vcpu->arch.mmu->direct_map; |
| 4016 | arch.cr3 = vcpu->arch.mmu->get_cr3(vcpu); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 4017 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 4018 | return kvm_setup_async_pf(vcpu, gva, kvm_vcpu_gfn_to_hva(vcpu, gfn), &arch); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 4019 | } |
| 4020 | |
Wanpeng Li | 9bc1f09 | 2017-06-08 20:13:40 -0700 | [diff] [blame] | 4021 | bool kvm_can_do_async_pf(struct kvm_vcpu *vcpu) |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 4022 | { |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 4023 | if (unlikely(!lapic_in_kernel(vcpu) || |
Haozhong Zhang | 2a266f2 | 2018-01-10 21:44:42 +0800 | [diff] [blame] | 4024 | kvm_event_needs_reinjection(vcpu) || |
| 4025 | vcpu->arch.exception.pending)) |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 4026 | return false; |
| 4027 | |
Wanpeng Li | 52a5c15 | 2017-07-13 18:30:42 -0700 | [diff] [blame] | 4028 | if (!vcpu->arch.apf.delivery_as_pf_vmexit && is_guest_mode(vcpu)) |
Wanpeng Li | 9bc1f09 | 2017-06-08 20:13:40 -0700 | [diff] [blame] | 4029 | return false; |
| 4030 | |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 4031 | return kvm_x86_ops->interrupt_allowed(vcpu); |
| 4032 | } |
| 4033 | |
Xiao Guangrong | 78b2c54 | 2010-12-07 10:48:06 +0800 | [diff] [blame] | 4034 | static bool try_async_pf(struct kvm_vcpu *vcpu, bool prefault, gfn_t gfn, |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 4035 | gva_t gva, kvm_pfn_t *pfn, bool write, bool *writable) |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 4036 | { |
Paolo Bonzini | 3520469 | 2015-04-02 11:20:48 +0200 | [diff] [blame] | 4037 | struct kvm_memory_slot *slot; |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 4038 | bool async; |
| 4039 | |
Jim Mattson | 3a2936d | 2018-05-09 17:02:05 -0400 | [diff] [blame] | 4040 | /* |
| 4041 | * Don't expose private memslots to L2. |
| 4042 | */ |
| 4043 | if (is_guest_mode(vcpu) && !kvm_is_visible_gfn(vcpu->kvm, gfn)) { |
| 4044 | *pfn = KVM_PFN_NOSLOT; |
| 4045 | return false; |
| 4046 | } |
| 4047 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 4048 | slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn); |
Paolo Bonzini | 3520469 | 2015-04-02 11:20:48 +0200 | [diff] [blame] | 4049 | async = false; |
| 4050 | *pfn = __gfn_to_pfn_memslot(slot, gfn, false, &async, write, writable); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 4051 | if (!async) |
| 4052 | return false; /* *pfn has correct page already */ |
| 4053 | |
Wanpeng Li | 9bc1f09 | 2017-06-08 20:13:40 -0700 | [diff] [blame] | 4054 | if (!prefault && kvm_can_do_async_pf(vcpu)) { |
Xiao Guangrong | c9b263d | 2010-11-01 16:58:43 +0800 | [diff] [blame] | 4055 | trace_kvm_try_async_get_page(gva, gfn); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 4056 | if (kvm_find_async_pf_gfn(vcpu, gfn)) { |
| 4057 | trace_kvm_async_pf_doublefault(gva, gfn); |
| 4058 | kvm_make_request(KVM_REQ_APF_HALT, vcpu); |
| 4059 | return true; |
| 4060 | } else if (kvm_arch_setup_async_pf(vcpu, gva, gfn)) |
| 4061 | return true; |
| 4062 | } |
| 4063 | |
Paolo Bonzini | 3520469 | 2015-04-02 11:20:48 +0200 | [diff] [blame] | 4064 | *pfn = __gfn_to_pfn_memslot(slot, gfn, false, NULL, write, writable); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 4065 | return false; |
| 4066 | } |
| 4067 | |
Wanpeng Li | 1261bfa | 2017-07-13 18:30:40 -0700 | [diff] [blame] | 4068 | int kvm_handle_page_fault(struct kvm_vcpu *vcpu, u64 error_code, |
Paolo Bonzini | d000653 | 2017-08-11 18:36:43 +0200 | [diff] [blame] | 4069 | u64 fault_address, char *insn, int insn_len) |
Wanpeng Li | 1261bfa | 2017-07-13 18:30:40 -0700 | [diff] [blame] | 4070 | { |
| 4071 | int r = 1; |
| 4072 | |
Paolo Bonzini | c595cee | 2018-07-02 13:07:14 +0200 | [diff] [blame] | 4073 | vcpu->arch.l1tf_flush_l1d = true; |
Wanpeng Li | 1261bfa | 2017-07-13 18:30:40 -0700 | [diff] [blame] | 4074 | switch (vcpu->arch.apf.host_apf_reason) { |
| 4075 | default: |
| 4076 | trace_kvm_page_fault(fault_address, error_code); |
| 4077 | |
Paolo Bonzini | d000653 | 2017-08-11 18:36:43 +0200 | [diff] [blame] | 4078 | if (kvm_event_needs_reinjection(vcpu)) |
Wanpeng Li | 1261bfa | 2017-07-13 18:30:40 -0700 | [diff] [blame] | 4079 | kvm_mmu_unprotect_page_virt(vcpu, fault_address); |
| 4080 | r = kvm_mmu_page_fault(vcpu, fault_address, error_code, insn, |
| 4081 | insn_len); |
| 4082 | break; |
| 4083 | case KVM_PV_REASON_PAGE_NOT_PRESENT: |
| 4084 | vcpu->arch.apf.host_apf_reason = 0; |
| 4085 | local_irq_disable(); |
Boqun Feng | a2b7861 | 2017-10-03 21:36:51 +0800 | [diff] [blame] | 4086 | kvm_async_pf_task_wait(fault_address, 0); |
Wanpeng Li | 1261bfa | 2017-07-13 18:30:40 -0700 | [diff] [blame] | 4087 | local_irq_enable(); |
| 4088 | break; |
| 4089 | case KVM_PV_REASON_PAGE_READY: |
| 4090 | vcpu->arch.apf.host_apf_reason = 0; |
| 4091 | local_irq_disable(); |
| 4092 | kvm_async_pf_task_wake(fault_address); |
| 4093 | local_irq_enable(); |
| 4094 | break; |
| 4095 | } |
| 4096 | return r; |
| 4097 | } |
| 4098 | EXPORT_SYMBOL_GPL(kvm_handle_page_fault); |
| 4099 | |
Xiao Guangrong | 6a39bbc | 2015-06-15 16:55:35 +0800 | [diff] [blame] | 4100 | static bool |
| 4101 | check_hugepage_cache_consistency(struct kvm_vcpu *vcpu, gfn_t gfn, int level) |
| 4102 | { |
| 4103 | int page_num = KVM_PAGES_PER_HPAGE(level); |
| 4104 | |
| 4105 | gfn &= ~(page_num - 1); |
| 4106 | |
| 4107 | return kvm_mtrr_check_gfn_range_consistency(vcpu, gfn, page_num); |
| 4108 | } |
| 4109 | |
Gleb Natapov | 56028d0 | 2010-10-17 18:13:42 +0200 | [diff] [blame] | 4110 | static int tdp_page_fault(struct kvm_vcpu *vcpu, gva_t gpa, u32 error_code, |
Xiao Guangrong | 78b2c54 | 2010-12-07 10:48:06 +0800 | [diff] [blame] | 4111 | bool prefault) |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4112 | { |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 4113 | kvm_pfn_t pfn; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4114 | int r; |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 4115 | int level; |
Takuya Yoshikawa | cd1872f | 2015-10-16 17:04:13 +0900 | [diff] [blame] | 4116 | bool force_pt_level; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 4117 | gfn_t gfn = gpa >> PAGE_SHIFT; |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 4118 | unsigned long mmu_seq; |
Marcelo Tosatti | 612819c | 2010-10-22 14:18:18 -0200 | [diff] [blame] | 4119 | int write = error_code & PFERR_WRITE_MASK; |
| 4120 | bool map_writable; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4121 | |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 4122 | MMU_WARN_ON(!VALID_PAGE(vcpu->arch.mmu->root_hpa)); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4123 | |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 4124 | if (page_fault_handle_page_track(vcpu, error_code, gfn)) |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 4125 | return RET_PF_EMULATE; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 4126 | |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4127 | r = mmu_topup_memory_caches(vcpu); |
| 4128 | if (r) |
| 4129 | return r; |
| 4130 | |
Takuya Yoshikawa | fd13690 | 2015-10-16 17:06:02 +0900 | [diff] [blame] | 4131 | force_pt_level = !check_hugepage_cache_consistency(vcpu, gfn, |
| 4132 | PT_DIRECTORY_LEVEL); |
| 4133 | level = mapping_level(vcpu, gfn, &force_pt_level); |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 4134 | if (likely(!force_pt_level)) { |
Xiao Guangrong | 6a39bbc | 2015-06-15 16:55:35 +0800 | [diff] [blame] | 4135 | if (level > PT_DIRECTORY_LEVEL && |
| 4136 | !check_hugepage_cache_consistency(vcpu, gfn, level)) |
| 4137 | level = PT_DIRECTORY_LEVEL; |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 4138 | gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1); |
Takuya Yoshikawa | fd13690 | 2015-10-16 17:06:02 +0900 | [diff] [blame] | 4139 | } |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 4140 | |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 4141 | if (fast_page_fault(vcpu, gpa, level, error_code)) |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 4142 | return RET_PF_RETRY; |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 4143 | |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 4144 | mmu_seq = vcpu->kvm->mmu_notifier_seq; |
Marcelo Tosatti | 4c2155c | 2008-09-16 20:54:47 -0300 | [diff] [blame] | 4145 | smp_rmb(); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 4146 | |
Xiao Guangrong | 78b2c54 | 2010-12-07 10:48:06 +0800 | [diff] [blame] | 4147 | if (try_async_pf(vcpu, prefault, gfn, gpa, &pfn, write, &map_writable)) |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 4148 | return RET_PF_RETRY; |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 4149 | |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 4150 | if (handle_abnormal_pfn(vcpu, 0, gfn, pfn, ACC_ALL, &r)) |
| 4151 | return r; |
| 4152 | |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4153 | spin_lock(&vcpu->kvm->mmu_lock); |
Christoffer Dall | 8ca40a7 | 2012-10-14 23:10:18 -0400 | [diff] [blame] | 4154 | if (mmu_notifier_retry(vcpu->kvm, mmu_seq)) |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 4155 | goto out_unlock; |
Wanpeng Li | 26eeb53 | 2017-08-10 16:28:02 -0700 | [diff] [blame] | 4156 | if (make_mmu_pages_available(vcpu) < 0) |
| 4157 | goto out_unlock; |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 4158 | if (likely(!force_pt_level)) |
| 4159 | transparent_hugepage_adjust(vcpu, &gfn, &pfn, &level); |
Takuya Yoshikawa | 7ee0e5b | 2015-11-20 17:42:23 +0900 | [diff] [blame] | 4160 | r = __direct_map(vcpu, write, map_writable, level, gfn, pfn, prefault); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4161 | spin_unlock(&vcpu->kvm->mmu_lock); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4162 | |
| 4163 | return r; |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 4164 | |
| 4165 | out_unlock: |
| 4166 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 4167 | kvm_release_pfn_clean(pfn); |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 4168 | return RET_PF_RETRY; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4169 | } |
| 4170 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4171 | static void nonpaging_init_context(struct kvm_vcpu *vcpu, |
| 4172 | struct kvm_mmu *context) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4173 | { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4174 | context->page_fault = nonpaging_page_fault; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4175 | context->gva_to_gpa = nonpaging_gva_to_gpa; |
Marcelo Tosatti | e8bc217 | 2008-09-23 13:18:33 -0300 | [diff] [blame] | 4176 | context->sync_page = nonpaging_sync_page; |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 4177 | context->invlpg = nonpaging_invlpg; |
Xiao Guangrong | 0f53b5b | 2011-03-09 15:43:51 +0800 | [diff] [blame] | 4178 | context->update_pte = nonpaging_update_pte; |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 4179 | context->root_level = 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4180 | context->shadow_root_level = PT32E_ROOT_LEVEL; |
Joerg Roedel | c5a78f2b | 2010-09-10 17:30:39 +0200 | [diff] [blame] | 4181 | context->direct_map = true; |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4182 | context->nx = false; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4183 | } |
| 4184 | |
Junaid Shahid | b94742c | 2018-06-27 14:59:20 -0700 | [diff] [blame] | 4185 | /* |
| 4186 | * Find out if a previously cached root matching the new CR3/role is available. |
| 4187 | * The current root is also inserted into the cache. |
| 4188 | * If a matching root was found, it is assigned to kvm_mmu->root_hpa and true is |
| 4189 | * returned. |
| 4190 | * Otherwise, the LRU root from the cache is assigned to kvm_mmu->root_hpa and |
| 4191 | * false is returned. This root should now be freed by the caller. |
| 4192 | */ |
| 4193 | static bool cached_root_available(struct kvm_vcpu *vcpu, gpa_t new_cr3, |
| 4194 | union kvm_mmu_page_role new_role) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4195 | { |
Junaid Shahid | b94742c | 2018-06-27 14:59:20 -0700 | [diff] [blame] | 4196 | uint i; |
| 4197 | struct kvm_mmu_root_info root; |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 4198 | struct kvm_mmu *mmu = vcpu->arch.mmu; |
Junaid Shahid | b94742c | 2018-06-27 14:59:20 -0700 | [diff] [blame] | 4199 | |
Vitaly Kuznetsov | ad7dc69 | 2019-02-22 17:45:01 +0100 | [diff] [blame] | 4200 | root.cr3 = mmu->root_cr3; |
Junaid Shahid | b94742c | 2018-06-27 14:59:20 -0700 | [diff] [blame] | 4201 | root.hpa = mmu->root_hpa; |
| 4202 | |
| 4203 | for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++) { |
| 4204 | swap(root, mmu->prev_roots[i]); |
| 4205 | |
| 4206 | if (new_cr3 == root.cr3 && VALID_PAGE(root.hpa) && |
| 4207 | page_header(root.hpa) != NULL && |
| 4208 | new_role.word == page_header(root.hpa)->role.word) |
| 4209 | break; |
| 4210 | } |
| 4211 | |
| 4212 | mmu->root_hpa = root.hpa; |
Vitaly Kuznetsov | ad7dc69 | 2019-02-22 17:45:01 +0100 | [diff] [blame] | 4213 | mmu->root_cr3 = root.cr3; |
Junaid Shahid | b94742c | 2018-06-27 14:59:20 -0700 | [diff] [blame] | 4214 | |
| 4215 | return i < KVM_MMU_NUM_PREV_ROOTS; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4216 | } |
| 4217 | |
Junaid Shahid | 0aab33e | 2018-06-27 14:59:09 -0700 | [diff] [blame] | 4218 | static bool fast_cr3_switch(struct kvm_vcpu *vcpu, gpa_t new_cr3, |
Junaid Shahid | ade61e2 | 2018-06-27 14:59:15 -0700 | [diff] [blame] | 4219 | union kvm_mmu_page_role new_role, |
| 4220 | bool skip_tlb_flush) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4221 | { |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 4222 | struct kvm_mmu *mmu = vcpu->arch.mmu; |
Junaid Shahid | 7c390d3 | 2018-06-27 14:59:06 -0700 | [diff] [blame] | 4223 | |
| 4224 | /* |
| 4225 | * For now, limit the fast switch to 64-bit hosts+VMs in order to avoid |
| 4226 | * having to deal with PDPTEs. We may add support for 32-bit hosts/VMs |
| 4227 | * later if necessary. |
| 4228 | */ |
| 4229 | if (mmu->shadow_root_level >= PT64_ROOT_4LEVEL && |
| 4230 | mmu->root_level >= PT64_ROOT_4LEVEL) { |
Junaid Shahid | 7c390d3 | 2018-06-27 14:59:06 -0700 | [diff] [blame] | 4231 | if (mmu_check_root(vcpu, new_cr3 >> PAGE_SHIFT)) |
| 4232 | return false; |
| 4233 | |
Junaid Shahid | b94742c | 2018-06-27 14:59:20 -0700 | [diff] [blame] | 4234 | if (cached_root_available(vcpu, new_cr3, new_role)) { |
Junaid Shahid | 0aab33e | 2018-06-27 14:59:09 -0700 | [diff] [blame] | 4235 | kvm_make_request(KVM_REQ_LOAD_CR3, vcpu); |
Junaid Shahid | 956bf35 | 2018-06-27 14:59:18 -0700 | [diff] [blame] | 4236 | if (!skip_tlb_flush) { |
| 4237 | kvm_make_request(KVM_REQ_MMU_SYNC, vcpu); |
Junaid Shahid | ade61e2 | 2018-06-27 14:59:15 -0700 | [diff] [blame] | 4238 | kvm_x86_ops->tlb_flush(vcpu, true); |
Junaid Shahid | 956bf35 | 2018-06-27 14:59:18 -0700 | [diff] [blame] | 4239 | } |
| 4240 | |
| 4241 | /* |
| 4242 | * The last MMIO access's GVA and GPA are cached in the |
| 4243 | * VCPU. When switching to a new CR3, that GVA->GPA |
| 4244 | * mapping may no longer be valid. So clear any cached |
| 4245 | * MMIO info even when we don't need to sync the shadow |
| 4246 | * page tables. |
| 4247 | */ |
| 4248 | vcpu_clear_mmio_info(vcpu, MMIO_GVA_ANY); |
Junaid Shahid | ade61e2 | 2018-06-27 14:59:15 -0700 | [diff] [blame] | 4249 | |
Junaid Shahid | 7c390d3 | 2018-06-27 14:59:06 -0700 | [diff] [blame] | 4250 | __clear_sp_write_flooding_count( |
| 4251 | page_header(mmu->root_hpa)); |
| 4252 | |
Junaid Shahid | 7c390d3 | 2018-06-27 14:59:06 -0700 | [diff] [blame] | 4253 | return true; |
| 4254 | } |
| 4255 | } |
| 4256 | |
| 4257 | return false; |
| 4258 | } |
| 4259 | |
Junaid Shahid | 0aab33e | 2018-06-27 14:59:09 -0700 | [diff] [blame] | 4260 | static void __kvm_mmu_new_cr3(struct kvm_vcpu *vcpu, gpa_t new_cr3, |
Junaid Shahid | ade61e2 | 2018-06-27 14:59:15 -0700 | [diff] [blame] | 4261 | union kvm_mmu_page_role new_role, |
| 4262 | bool skip_tlb_flush) |
Junaid Shahid | 0aab33e | 2018-06-27 14:59:09 -0700 | [diff] [blame] | 4263 | { |
Junaid Shahid | ade61e2 | 2018-06-27 14:59:15 -0700 | [diff] [blame] | 4264 | if (!fast_cr3_switch(vcpu, new_cr3, new_role, skip_tlb_flush)) |
Vitaly Kuznetsov | 6a82cd1 | 2018-10-08 21:28:07 +0200 | [diff] [blame] | 4265 | kvm_mmu_free_roots(vcpu, vcpu->arch.mmu, |
| 4266 | KVM_MMU_ROOT_CURRENT); |
Junaid Shahid | 0aab33e | 2018-06-27 14:59:09 -0700 | [diff] [blame] | 4267 | } |
| 4268 | |
Junaid Shahid | ade61e2 | 2018-06-27 14:59:15 -0700 | [diff] [blame] | 4269 | void kvm_mmu_new_cr3(struct kvm_vcpu *vcpu, gpa_t new_cr3, bool skip_tlb_flush) |
Junaid Shahid | 7c390d3 | 2018-06-27 14:59:06 -0700 | [diff] [blame] | 4270 | { |
Junaid Shahid | ade61e2 | 2018-06-27 14:59:15 -0700 | [diff] [blame] | 4271 | __kvm_mmu_new_cr3(vcpu, new_cr3, kvm_mmu_calc_root_page_role(vcpu), |
| 4272 | skip_tlb_flush); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4273 | } |
Junaid Shahid | 50c28f2 | 2018-06-27 14:59:11 -0700 | [diff] [blame] | 4274 | EXPORT_SYMBOL_GPL(kvm_mmu_new_cr3); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4275 | |
Joerg Roedel | 5777ed3 | 2010-09-10 17:30:42 +0200 | [diff] [blame] | 4276 | static unsigned long get_cr3(struct kvm_vcpu *vcpu) |
| 4277 | { |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 4278 | return kvm_read_cr3(vcpu); |
Joerg Roedel | 5777ed3 | 2010-09-10 17:30:42 +0200 | [diff] [blame] | 4279 | } |
| 4280 | |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 4281 | static void inject_page_fault(struct kvm_vcpu *vcpu, |
| 4282 | struct x86_exception *fault) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4283 | { |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 4284 | vcpu->arch.mmu->inject_page_fault(vcpu, fault); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4285 | } |
| 4286 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 4287 | static bool sync_mmio_spte(struct kvm_vcpu *vcpu, u64 *sptep, gfn_t gfn, |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 4288 | unsigned access, int *nr_present) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 4289 | { |
| 4290 | if (unlikely(is_mmio_spte(*sptep))) { |
| 4291 | if (gfn != get_mmio_spte_gfn(*sptep)) { |
| 4292 | mmu_spte_clear_no_track(sptep); |
| 4293 | return true; |
| 4294 | } |
| 4295 | |
| 4296 | (*nr_present)++; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 4297 | mark_mmio_spte(vcpu, sptep, gfn, access); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 4298 | return true; |
| 4299 | } |
| 4300 | |
| 4301 | return false; |
| 4302 | } |
| 4303 | |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4304 | static inline bool is_last_gpte(struct kvm_mmu *mmu, |
| 4305 | unsigned level, unsigned gpte) |
Avi Kivity | 6fd01b7 | 2012-09-12 20:46:56 +0300 | [diff] [blame] | 4306 | { |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4307 | /* |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4308 | * The RHS has bit 7 set iff level < mmu->last_nonleaf_level. |
| 4309 | * If it is clear, there are no large pages at this level, so clear |
| 4310 | * PT_PAGE_SIZE_MASK in gpte if that is the case. |
| 4311 | */ |
| 4312 | gpte &= level - mmu->last_nonleaf_level; |
| 4313 | |
Ladi Prosek | 829ee27 | 2017-10-05 11:10:23 +0200 | [diff] [blame] | 4314 | /* |
| 4315 | * PT_PAGE_TABLE_LEVEL always terminates. The RHS has bit 7 set |
| 4316 | * iff level <= PT_PAGE_TABLE_LEVEL, which for our purpose means |
| 4317 | * level == PT_PAGE_TABLE_LEVEL; set PT_PAGE_SIZE_MASK in gpte then. |
| 4318 | */ |
| 4319 | gpte |= level - PT_PAGE_TABLE_LEVEL - 1; |
| 4320 | |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4321 | return gpte & PT_PAGE_SIZE_MASK; |
Avi Kivity | 6fd01b7 | 2012-09-12 20:46:56 +0300 | [diff] [blame] | 4322 | } |
| 4323 | |
Nadav Har'El | 37406aa | 2013-08-05 11:07:12 +0300 | [diff] [blame] | 4324 | #define PTTYPE_EPT 18 /* arbitrary */ |
| 4325 | #define PTTYPE PTTYPE_EPT |
| 4326 | #include "paging_tmpl.h" |
| 4327 | #undef PTTYPE |
| 4328 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4329 | #define PTTYPE 64 |
| 4330 | #include "paging_tmpl.h" |
| 4331 | #undef PTTYPE |
| 4332 | |
| 4333 | #define PTTYPE 32 |
| 4334 | #include "paging_tmpl.h" |
| 4335 | #undef PTTYPE |
| 4336 | |
Xiao Guangrong | 6dc98b8 | 2015-08-05 12:04:22 +0800 | [diff] [blame] | 4337 | static void |
| 4338 | __reset_rsvds_bits_mask(struct kvm_vcpu *vcpu, |
| 4339 | struct rsvd_bits_validate *rsvd_check, |
| 4340 | int maxphyaddr, int level, bool nx, bool gbpages, |
Paolo Bonzini | 6fec214 | 2015-09-22 23:02:14 +0200 | [diff] [blame] | 4341 | bool pse, bool amd) |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4342 | { |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4343 | u64 exb_bit_rsvd = 0; |
Nadav Amit | 5f7dde7 | 2014-05-07 15:32:50 +0300 | [diff] [blame] | 4344 | u64 gbpages_bit_rsvd = 0; |
Paolo Bonzini | a0c0feb | 2014-09-02 13:24:12 +0200 | [diff] [blame] | 4345 | u64 nonleaf_bit8_rsvd = 0; |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4346 | |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4347 | rsvd_check->bad_mt_xwr = 0; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4348 | |
Xiao Guangrong | 6dc98b8 | 2015-08-05 12:04:22 +0800 | [diff] [blame] | 4349 | if (!nx) |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4350 | exb_bit_rsvd = rsvd_bits(63, 63); |
Xiao Guangrong | 6dc98b8 | 2015-08-05 12:04:22 +0800 | [diff] [blame] | 4351 | if (!gbpages) |
Nadav Amit | 5f7dde7 | 2014-05-07 15:32:50 +0300 | [diff] [blame] | 4352 | gbpages_bit_rsvd = rsvd_bits(7, 7); |
Paolo Bonzini | a0c0feb | 2014-09-02 13:24:12 +0200 | [diff] [blame] | 4353 | |
| 4354 | /* |
| 4355 | * Non-leaf PML4Es and PDPEs reserve bit 8 (which would be the G bit for |
| 4356 | * leaf entries) on AMD CPUs only. |
| 4357 | */ |
Paolo Bonzini | 6fec214 | 2015-09-22 23:02:14 +0200 | [diff] [blame] | 4358 | if (amd) |
Paolo Bonzini | a0c0feb | 2014-09-02 13:24:12 +0200 | [diff] [blame] | 4359 | nonleaf_bit8_rsvd = rsvd_bits(8, 8); |
| 4360 | |
Xiao Guangrong | 6dc98b8 | 2015-08-05 12:04:22 +0800 | [diff] [blame] | 4361 | switch (level) { |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4362 | case PT32_ROOT_LEVEL: |
| 4363 | /* no rsvd bits for 2 level 4K page table entries */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4364 | rsvd_check->rsvd_bits_mask[0][1] = 0; |
| 4365 | rsvd_check->rsvd_bits_mask[0][0] = 0; |
| 4366 | rsvd_check->rsvd_bits_mask[1][0] = |
| 4367 | rsvd_check->rsvd_bits_mask[0][0]; |
Xiao Guangrong | f815bce | 2010-03-19 17:58:53 +0800 | [diff] [blame] | 4368 | |
Xiao Guangrong | 6dc98b8 | 2015-08-05 12:04:22 +0800 | [diff] [blame] | 4369 | if (!pse) { |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4370 | rsvd_check->rsvd_bits_mask[1][1] = 0; |
Xiao Guangrong | f815bce | 2010-03-19 17:58:53 +0800 | [diff] [blame] | 4371 | break; |
| 4372 | } |
| 4373 | |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4374 | if (is_cpuid_PSE36()) |
| 4375 | /* 36bits PSE 4MB page */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4376 | rsvd_check->rsvd_bits_mask[1][1] = rsvd_bits(17, 21); |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4377 | else |
| 4378 | /* 32 bits PSE 4MB page */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4379 | rsvd_check->rsvd_bits_mask[1][1] = rsvd_bits(13, 21); |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4380 | break; |
| 4381 | case PT32E_ROOT_LEVEL: |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4382 | rsvd_check->rsvd_bits_mask[0][2] = |
Dong, Eddie | 20c466b | 2009-03-31 23:03:45 +0800 | [diff] [blame] | 4383 | rsvd_bits(maxphyaddr, 63) | |
Nadav Amit | cd9ae5f | 2014-04-04 06:31:04 +0300 | [diff] [blame] | 4384 | rsvd_bits(5, 8) | rsvd_bits(1, 2); /* PDPTE */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4385 | rsvd_check->rsvd_bits_mask[0][1] = exb_bit_rsvd | |
Sheng Yang | 4c26b4c | 2009-04-02 10:28:37 +0800 | [diff] [blame] | 4386 | rsvd_bits(maxphyaddr, 62); /* PDE */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4387 | rsvd_check->rsvd_bits_mask[0][0] = exb_bit_rsvd | |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4388 | rsvd_bits(maxphyaddr, 62); /* PTE */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4389 | rsvd_check->rsvd_bits_mask[1][1] = exb_bit_rsvd | |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4390 | rsvd_bits(maxphyaddr, 62) | |
| 4391 | rsvd_bits(13, 20); /* large page */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4392 | rsvd_check->rsvd_bits_mask[1][0] = |
| 4393 | rsvd_check->rsvd_bits_mask[0][0]; |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4394 | break; |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 4395 | case PT64_ROOT_5LEVEL: |
| 4396 | rsvd_check->rsvd_bits_mask[0][4] = exb_bit_rsvd | |
| 4397 | nonleaf_bit8_rsvd | rsvd_bits(7, 7) | |
| 4398 | rsvd_bits(maxphyaddr, 51); |
| 4399 | rsvd_check->rsvd_bits_mask[1][4] = |
| 4400 | rsvd_check->rsvd_bits_mask[0][4]; |
Gustavo A. R. Silva | b2869f2 | 2019-01-25 12:23:17 -0600 | [diff] [blame] | 4401 | /* fall through */ |
Yu Zhang | 2a7266a | 2017-08-24 20:27:54 +0800 | [diff] [blame] | 4402 | case PT64_ROOT_4LEVEL: |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4403 | rsvd_check->rsvd_bits_mask[0][3] = exb_bit_rsvd | |
| 4404 | nonleaf_bit8_rsvd | rsvd_bits(7, 7) | |
Sheng Yang | 4c26b4c | 2009-04-02 10:28:37 +0800 | [diff] [blame] | 4405 | rsvd_bits(maxphyaddr, 51); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4406 | rsvd_check->rsvd_bits_mask[0][2] = exb_bit_rsvd | |
| 4407 | nonleaf_bit8_rsvd | gbpages_bit_rsvd | |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4408 | rsvd_bits(maxphyaddr, 51); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4409 | rsvd_check->rsvd_bits_mask[0][1] = exb_bit_rsvd | |
| 4410 | rsvd_bits(maxphyaddr, 51); |
| 4411 | rsvd_check->rsvd_bits_mask[0][0] = exb_bit_rsvd | |
| 4412 | rsvd_bits(maxphyaddr, 51); |
| 4413 | rsvd_check->rsvd_bits_mask[1][3] = |
| 4414 | rsvd_check->rsvd_bits_mask[0][3]; |
| 4415 | rsvd_check->rsvd_bits_mask[1][2] = exb_bit_rsvd | |
Nadav Amit | 5f7dde7 | 2014-05-07 15:32:50 +0300 | [diff] [blame] | 4416 | gbpages_bit_rsvd | rsvd_bits(maxphyaddr, 51) | |
Joerg Roedel | e04da98 | 2009-07-27 16:30:45 +0200 | [diff] [blame] | 4417 | rsvd_bits(13, 29); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4418 | rsvd_check->rsvd_bits_mask[1][1] = exb_bit_rsvd | |
Sheng Yang | 4c26b4c | 2009-04-02 10:28:37 +0800 | [diff] [blame] | 4419 | rsvd_bits(maxphyaddr, 51) | |
| 4420 | rsvd_bits(13, 20); /* large page */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4421 | rsvd_check->rsvd_bits_mask[1][0] = |
| 4422 | rsvd_check->rsvd_bits_mask[0][0]; |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4423 | break; |
| 4424 | } |
| 4425 | } |
| 4426 | |
Xiao Guangrong | 6dc98b8 | 2015-08-05 12:04:22 +0800 | [diff] [blame] | 4427 | static void reset_rsvds_bits_mask(struct kvm_vcpu *vcpu, |
| 4428 | struct kvm_mmu *context) |
| 4429 | { |
| 4430 | __reset_rsvds_bits_mask(vcpu, &context->guest_rsvd_check, |
| 4431 | cpuid_maxphyaddr(vcpu), context->root_level, |
Radim Krčmář | d6321d4 | 2017-08-05 00:12:49 +0200 | [diff] [blame] | 4432 | context->nx, |
| 4433 | guest_cpuid_has(vcpu, X86_FEATURE_GBPAGES), |
Paolo Bonzini | 6fec214 | 2015-09-22 23:02:14 +0200 | [diff] [blame] | 4434 | is_pse(vcpu), guest_cpuid_is_amd(vcpu)); |
Xiao Guangrong | 6dc98b8 | 2015-08-05 12:04:22 +0800 | [diff] [blame] | 4435 | } |
| 4436 | |
Xiao Guangrong | 81b8eeb | 2015-08-05 12:04:23 +0800 | [diff] [blame] | 4437 | static void |
| 4438 | __reset_rsvds_bits_mask_ept(struct rsvd_bits_validate *rsvd_check, |
| 4439 | int maxphyaddr, bool execonly) |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4440 | { |
Paolo Bonzini | 951f9fd | 2015-09-23 10:34:26 +0200 | [diff] [blame] | 4441 | u64 bad_mt_xwr; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4442 | |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 4443 | rsvd_check->rsvd_bits_mask[0][4] = |
| 4444 | rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 7); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4445 | rsvd_check->rsvd_bits_mask[0][3] = |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4446 | rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 7); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4447 | rsvd_check->rsvd_bits_mask[0][2] = |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4448 | rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 6); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4449 | rsvd_check->rsvd_bits_mask[0][1] = |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4450 | rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 6); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4451 | rsvd_check->rsvd_bits_mask[0][0] = rsvd_bits(maxphyaddr, 51); |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4452 | |
| 4453 | /* large page */ |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 4454 | rsvd_check->rsvd_bits_mask[1][4] = rsvd_check->rsvd_bits_mask[0][4]; |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4455 | rsvd_check->rsvd_bits_mask[1][3] = rsvd_check->rsvd_bits_mask[0][3]; |
| 4456 | rsvd_check->rsvd_bits_mask[1][2] = |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4457 | rsvd_bits(maxphyaddr, 51) | rsvd_bits(12, 29); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4458 | rsvd_check->rsvd_bits_mask[1][1] = |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4459 | rsvd_bits(maxphyaddr, 51) | rsvd_bits(12, 20); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4460 | rsvd_check->rsvd_bits_mask[1][0] = rsvd_check->rsvd_bits_mask[0][0]; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4461 | |
Paolo Bonzini | 951f9fd | 2015-09-23 10:34:26 +0200 | [diff] [blame] | 4462 | bad_mt_xwr = 0xFFull << (2 * 8); /* bits 3..5 must not be 2 */ |
| 4463 | bad_mt_xwr |= 0xFFull << (3 * 8); /* bits 3..5 must not be 3 */ |
| 4464 | bad_mt_xwr |= 0xFFull << (7 * 8); /* bits 3..5 must not be 7 */ |
| 4465 | bad_mt_xwr |= REPEAT_BYTE(1ull << 2); /* bits 0..2 must not be 010 */ |
| 4466 | bad_mt_xwr |= REPEAT_BYTE(1ull << 6); /* bits 0..2 must not be 110 */ |
| 4467 | if (!execonly) { |
| 4468 | /* bits 0..2 must not be 100 unless VMX capabilities allow it */ |
| 4469 | bad_mt_xwr |= REPEAT_BYTE(1ull << 4); |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4470 | } |
Paolo Bonzini | 951f9fd | 2015-09-23 10:34:26 +0200 | [diff] [blame] | 4471 | rsvd_check->bad_mt_xwr = bad_mt_xwr; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4472 | } |
| 4473 | |
Xiao Guangrong | 81b8eeb | 2015-08-05 12:04:23 +0800 | [diff] [blame] | 4474 | static void reset_rsvds_bits_mask_ept(struct kvm_vcpu *vcpu, |
| 4475 | struct kvm_mmu *context, bool execonly) |
| 4476 | { |
| 4477 | __reset_rsvds_bits_mask_ept(&context->guest_rsvd_check, |
| 4478 | cpuid_maxphyaddr(vcpu), execonly); |
| 4479 | } |
| 4480 | |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4481 | /* |
| 4482 | * the page table on host is the shadow page table for the page |
| 4483 | * table in guest or amd nested guest, its mmu features completely |
| 4484 | * follow the features in guest. |
| 4485 | */ |
| 4486 | void |
| 4487 | reset_shadow_zero_bits_mask(struct kvm_vcpu *vcpu, struct kvm_mmu *context) |
| 4488 | { |
Vitaly Kuznetsov | 36d9594d | 2018-10-08 21:28:10 +0200 | [diff] [blame] | 4489 | bool uses_nx = context->nx || |
| 4490 | context->mmu_role.base.smep_andnot_wp; |
Brijesh Singh | ea2800d | 2017-08-25 15:55:40 -0500 | [diff] [blame] | 4491 | struct rsvd_bits_validate *shadow_zero_check; |
| 4492 | int i; |
Paolo Bonzini | 5f0b819 | 2016-03-09 14:28:02 +0100 | [diff] [blame] | 4493 | |
Paolo Bonzini | 6fec214 | 2015-09-22 23:02:14 +0200 | [diff] [blame] | 4494 | /* |
| 4495 | * Passing "true" to the last argument is okay; it adds a check |
| 4496 | * on bit 8 of the SPTEs which KVM doesn't use anyway. |
| 4497 | */ |
Brijesh Singh | ea2800d | 2017-08-25 15:55:40 -0500 | [diff] [blame] | 4498 | shadow_zero_check = &context->shadow_zero_check; |
| 4499 | __reset_rsvds_bits_mask(vcpu, shadow_zero_check, |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4500 | boot_cpu_data.x86_phys_bits, |
Paolo Bonzini | 5f0b819 | 2016-03-09 14:28:02 +0100 | [diff] [blame] | 4501 | context->shadow_root_level, uses_nx, |
Radim Krčmář | d6321d4 | 2017-08-05 00:12:49 +0200 | [diff] [blame] | 4502 | guest_cpuid_has(vcpu, X86_FEATURE_GBPAGES), |
| 4503 | is_pse(vcpu), true); |
Brijesh Singh | ea2800d | 2017-08-25 15:55:40 -0500 | [diff] [blame] | 4504 | |
| 4505 | if (!shadow_me_mask) |
| 4506 | return; |
| 4507 | |
| 4508 | for (i = context->shadow_root_level; --i >= 0;) { |
| 4509 | shadow_zero_check->rsvd_bits_mask[0][i] &= ~shadow_me_mask; |
| 4510 | shadow_zero_check->rsvd_bits_mask[1][i] &= ~shadow_me_mask; |
| 4511 | } |
| 4512 | |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4513 | } |
| 4514 | EXPORT_SYMBOL_GPL(reset_shadow_zero_bits_mask); |
| 4515 | |
Paolo Bonzini | 6fec214 | 2015-09-22 23:02:14 +0200 | [diff] [blame] | 4516 | static inline bool boot_cpu_is_amd(void) |
| 4517 | { |
| 4518 | WARN_ON_ONCE(!tdp_enabled); |
| 4519 | return shadow_x_mask == 0; |
| 4520 | } |
| 4521 | |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4522 | /* |
| 4523 | * the direct page table on host, use as much mmu features as |
| 4524 | * possible, however, kvm currently does not do execution-protection. |
| 4525 | */ |
| 4526 | static void |
| 4527 | reset_tdp_shadow_zero_bits_mask(struct kvm_vcpu *vcpu, |
| 4528 | struct kvm_mmu *context) |
| 4529 | { |
Brijesh Singh | ea2800d | 2017-08-25 15:55:40 -0500 | [diff] [blame] | 4530 | struct rsvd_bits_validate *shadow_zero_check; |
| 4531 | int i; |
| 4532 | |
| 4533 | shadow_zero_check = &context->shadow_zero_check; |
| 4534 | |
Paolo Bonzini | 6fec214 | 2015-09-22 23:02:14 +0200 | [diff] [blame] | 4535 | if (boot_cpu_is_amd()) |
Brijesh Singh | ea2800d | 2017-08-25 15:55:40 -0500 | [diff] [blame] | 4536 | __reset_rsvds_bits_mask(vcpu, shadow_zero_check, |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4537 | boot_cpu_data.x86_phys_bits, |
| 4538 | context->shadow_root_level, false, |
Borislav Petkov | b8291adc | 2016-03-29 17:41:58 +0200 | [diff] [blame] | 4539 | boot_cpu_has(X86_FEATURE_GBPAGES), |
| 4540 | true, true); |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4541 | else |
Brijesh Singh | ea2800d | 2017-08-25 15:55:40 -0500 | [diff] [blame] | 4542 | __reset_rsvds_bits_mask_ept(shadow_zero_check, |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4543 | boot_cpu_data.x86_phys_bits, |
| 4544 | false); |
| 4545 | |
Brijesh Singh | ea2800d | 2017-08-25 15:55:40 -0500 | [diff] [blame] | 4546 | if (!shadow_me_mask) |
| 4547 | return; |
| 4548 | |
| 4549 | for (i = context->shadow_root_level; --i >= 0;) { |
| 4550 | shadow_zero_check->rsvd_bits_mask[0][i] &= ~shadow_me_mask; |
| 4551 | shadow_zero_check->rsvd_bits_mask[1][i] &= ~shadow_me_mask; |
| 4552 | } |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4553 | } |
| 4554 | |
| 4555 | /* |
| 4556 | * as the comments in reset_shadow_zero_bits_mask() except it |
| 4557 | * is the shadow page table for intel nested guest. |
| 4558 | */ |
| 4559 | static void |
| 4560 | reset_ept_shadow_zero_bits_mask(struct kvm_vcpu *vcpu, |
| 4561 | struct kvm_mmu *context, bool execonly) |
| 4562 | { |
| 4563 | __reset_rsvds_bits_mask_ept(&context->shadow_zero_check, |
| 4564 | boot_cpu_data.x86_phys_bits, execonly); |
| 4565 | } |
| 4566 | |
Paolo Bonzini | 09f037a | 2017-08-24 17:37:25 +0200 | [diff] [blame] | 4567 | #define BYTE_MASK(access) \ |
| 4568 | ((1 & (access) ? 2 : 0) | \ |
| 4569 | (2 & (access) ? 4 : 0) | \ |
| 4570 | (3 & (access) ? 8 : 0) | \ |
| 4571 | (4 & (access) ? 16 : 0) | \ |
| 4572 | (5 & (access) ? 32 : 0) | \ |
| 4573 | (6 & (access) ? 64 : 0) | \ |
| 4574 | (7 & (access) ? 128 : 0)) |
| 4575 | |
| 4576 | |
Xiao Guangrong | edc90b7 | 2015-05-11 22:55:21 +0800 | [diff] [blame] | 4577 | static void update_permission_bitmask(struct kvm_vcpu *vcpu, |
| 4578 | struct kvm_mmu *mmu, bool ept) |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4579 | { |
Paolo Bonzini | 09f037a | 2017-08-24 17:37:25 +0200 | [diff] [blame] | 4580 | unsigned byte; |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4581 | |
Paolo Bonzini | 09f037a | 2017-08-24 17:37:25 +0200 | [diff] [blame] | 4582 | const u8 x = BYTE_MASK(ACC_EXEC_MASK); |
| 4583 | const u8 w = BYTE_MASK(ACC_WRITE_MASK); |
| 4584 | const u8 u = BYTE_MASK(ACC_USER_MASK); |
| 4585 | |
| 4586 | bool cr4_smep = kvm_read_cr4_bits(vcpu, X86_CR4_SMEP) != 0; |
| 4587 | bool cr4_smap = kvm_read_cr4_bits(vcpu, X86_CR4_SMAP) != 0; |
| 4588 | bool cr0_wp = is_write_protection(vcpu); |
| 4589 | |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4590 | for (byte = 0; byte < ARRAY_SIZE(mmu->permissions); ++byte) { |
Paolo Bonzini | 09f037a | 2017-08-24 17:37:25 +0200 | [diff] [blame] | 4591 | unsigned pfec = byte << 1; |
| 4592 | |
Feng Wu | 97ec8c0 | 2014-04-01 17:46:34 +0800 | [diff] [blame] | 4593 | /* |
Paolo Bonzini | 09f037a | 2017-08-24 17:37:25 +0200 | [diff] [blame] | 4594 | * Each "*f" variable has a 1 bit for each UWX value |
| 4595 | * that causes a fault with the given PFEC. |
Feng Wu | 97ec8c0 | 2014-04-01 17:46:34 +0800 | [diff] [blame] | 4596 | */ |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4597 | |
Paolo Bonzini | 09f037a | 2017-08-24 17:37:25 +0200 | [diff] [blame] | 4598 | /* Faults from writes to non-writable pages */ |
| 4599 | u8 wf = (pfec & PFERR_WRITE_MASK) ? ~w : 0; |
| 4600 | /* Faults from user mode accesses to supervisor pages */ |
| 4601 | u8 uf = (pfec & PFERR_USER_MASK) ? ~u : 0; |
| 4602 | /* Faults from fetches of non-executable pages*/ |
| 4603 | u8 ff = (pfec & PFERR_FETCH_MASK) ? ~x : 0; |
| 4604 | /* Faults from kernel mode fetches of user pages */ |
| 4605 | u8 smepf = 0; |
| 4606 | /* Faults from kernel mode accesses of user pages */ |
| 4607 | u8 smapf = 0; |
Feng Wu | 97ec8c0 | 2014-04-01 17:46:34 +0800 | [diff] [blame] | 4608 | |
Paolo Bonzini | 09f037a | 2017-08-24 17:37:25 +0200 | [diff] [blame] | 4609 | if (!ept) { |
| 4610 | /* Faults from kernel mode accesses to user pages */ |
| 4611 | u8 kf = (pfec & PFERR_USER_MASK) ? 0 : u; |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4612 | |
Paolo Bonzini | 09f037a | 2017-08-24 17:37:25 +0200 | [diff] [blame] | 4613 | /* Not really needed: !nx will cause pte.nx to fault */ |
| 4614 | if (!mmu->nx) |
| 4615 | ff = 0; |
| 4616 | |
| 4617 | /* Allow supervisor writes if !cr0.wp */ |
| 4618 | if (!cr0_wp) |
| 4619 | wf = (pfec & PFERR_USER_MASK) ? wf : 0; |
| 4620 | |
| 4621 | /* Disallow supervisor fetches of user code if cr4.smep */ |
| 4622 | if (cr4_smep) |
| 4623 | smepf = (pfec & PFERR_FETCH_MASK) ? kf : 0; |
| 4624 | |
| 4625 | /* |
| 4626 | * SMAP:kernel-mode data accesses from user-mode |
| 4627 | * mappings should fault. A fault is considered |
| 4628 | * as a SMAP violation if all of the following |
Peng Hao | 39337ad | 2018-10-04 11:45:00 -0400 | [diff] [blame] | 4629 | * conditions are true: |
Paolo Bonzini | 09f037a | 2017-08-24 17:37:25 +0200 | [diff] [blame] | 4630 | * - X86_CR4_SMAP is set in CR4 |
| 4631 | * - A user page is accessed |
| 4632 | * - The access is not a fetch |
| 4633 | * - Page fault in kernel mode |
| 4634 | * - if CPL = 3 or X86_EFLAGS_AC is clear |
| 4635 | * |
| 4636 | * Here, we cover the first three conditions. |
| 4637 | * The fourth is computed dynamically in permission_fault(); |
| 4638 | * PFERR_RSVD_MASK bit will be set in PFEC if the access is |
| 4639 | * *not* subject to SMAP restrictions. |
| 4640 | */ |
| 4641 | if (cr4_smap) |
| 4642 | smapf = (pfec & (PFERR_RSVD_MASK|PFERR_FETCH_MASK)) ? 0 : kf; |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4643 | } |
Paolo Bonzini | 09f037a | 2017-08-24 17:37:25 +0200 | [diff] [blame] | 4644 | |
| 4645 | mmu->permissions[byte] = ff | uf | wf | smepf | smapf; |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4646 | } |
| 4647 | } |
| 4648 | |
Huaitong Han | 2d34410 | 2016-03-22 16:51:19 +0800 | [diff] [blame] | 4649 | /* |
| 4650 | * PKU is an additional mechanism by which the paging controls access to |
| 4651 | * user-mode addresses based on the value in the PKRU register. Protection |
| 4652 | * key violations are reported through a bit in the page fault error code. |
| 4653 | * Unlike other bits of the error code, the PK bit is not known at the |
| 4654 | * call site of e.g. gva_to_gpa; it must be computed directly in |
| 4655 | * permission_fault based on two bits of PKRU, on some machine state (CR4, |
| 4656 | * CR0, EFER, CPL), and on other bits of the error code and the page tables. |
| 4657 | * |
| 4658 | * In particular the following conditions come from the error code, the |
| 4659 | * page tables and the machine state: |
| 4660 | * - PK is always zero unless CR4.PKE=1 and EFER.LMA=1 |
| 4661 | * - PK is always zero if RSVD=1 (reserved bit set) or F=1 (instruction fetch) |
| 4662 | * - PK is always zero if U=0 in the page tables |
| 4663 | * - PKRU.WD is ignored if CR0.WP=0 and the access is a supervisor access. |
| 4664 | * |
| 4665 | * The PKRU bitmask caches the result of these four conditions. The error |
| 4666 | * code (minus the P bit) and the page table's U bit form an index into the |
| 4667 | * PKRU bitmask. Two bits of the PKRU bitmask are then extracted and ANDed |
| 4668 | * with the two bits of the PKRU register corresponding to the protection key. |
| 4669 | * For the first three conditions above the bits will be 00, thus masking |
| 4670 | * away both AD and WD. For all reads or if the last condition holds, WD |
| 4671 | * only will be masked away. |
| 4672 | */ |
| 4673 | static void update_pkru_bitmask(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, |
| 4674 | bool ept) |
| 4675 | { |
| 4676 | unsigned bit; |
| 4677 | bool wp; |
| 4678 | |
| 4679 | if (ept) { |
| 4680 | mmu->pkru_mask = 0; |
| 4681 | return; |
| 4682 | } |
| 4683 | |
| 4684 | /* PKEY is enabled only if CR4.PKE and EFER.LMA are both set. */ |
| 4685 | if (!kvm_read_cr4_bits(vcpu, X86_CR4_PKE) || !is_long_mode(vcpu)) { |
| 4686 | mmu->pkru_mask = 0; |
| 4687 | return; |
| 4688 | } |
| 4689 | |
| 4690 | wp = is_write_protection(vcpu); |
| 4691 | |
| 4692 | for (bit = 0; bit < ARRAY_SIZE(mmu->permissions); ++bit) { |
| 4693 | unsigned pfec, pkey_bits; |
| 4694 | bool check_pkey, check_write, ff, uf, wf, pte_user; |
| 4695 | |
| 4696 | pfec = bit << 1; |
| 4697 | ff = pfec & PFERR_FETCH_MASK; |
| 4698 | uf = pfec & PFERR_USER_MASK; |
| 4699 | wf = pfec & PFERR_WRITE_MASK; |
| 4700 | |
| 4701 | /* PFEC.RSVD is replaced by ACC_USER_MASK. */ |
| 4702 | pte_user = pfec & PFERR_RSVD_MASK; |
| 4703 | |
| 4704 | /* |
| 4705 | * Only need to check the access which is not an |
| 4706 | * instruction fetch and is to a user page. |
| 4707 | */ |
| 4708 | check_pkey = (!ff && pte_user); |
| 4709 | /* |
| 4710 | * write access is controlled by PKRU if it is a |
| 4711 | * user access or CR0.WP = 1. |
| 4712 | */ |
| 4713 | check_write = check_pkey && wf && (uf || wp); |
| 4714 | |
| 4715 | /* PKRU.AD stops both read and write access. */ |
| 4716 | pkey_bits = !!check_pkey; |
| 4717 | /* PKRU.WD stops write access. */ |
| 4718 | pkey_bits |= (!!check_write) << 1; |
| 4719 | |
| 4720 | mmu->pkru_mask |= (pkey_bits & 3) << pfec; |
| 4721 | } |
| 4722 | } |
| 4723 | |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4724 | static void update_last_nonleaf_level(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu) |
Avi Kivity | 6fd01b7 | 2012-09-12 20:46:56 +0300 | [diff] [blame] | 4725 | { |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4726 | unsigned root_level = mmu->root_level; |
Avi Kivity | 6fd01b7 | 2012-09-12 20:46:56 +0300 | [diff] [blame] | 4727 | |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4728 | mmu->last_nonleaf_level = root_level; |
| 4729 | if (root_level == PT32_ROOT_LEVEL && is_pse(vcpu)) |
| 4730 | mmu->last_nonleaf_level++; |
Avi Kivity | 6fd01b7 | 2012-09-12 20:46:56 +0300 | [diff] [blame] | 4731 | } |
| 4732 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4733 | static void paging64_init_context_common(struct kvm_vcpu *vcpu, |
| 4734 | struct kvm_mmu *context, |
| 4735 | int level) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4736 | { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4737 | context->nx = is_nx(vcpu); |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4738 | context->root_level = level; |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4739 | |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4740 | reset_rsvds_bits_mask(vcpu, context); |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4741 | update_permission_bitmask(vcpu, context, false); |
Huaitong Han | 2d34410 | 2016-03-22 16:51:19 +0800 | [diff] [blame] | 4742 | update_pkru_bitmask(vcpu, context, false); |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4743 | update_last_nonleaf_level(vcpu, context); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4744 | |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 4745 | MMU_WARN_ON(!is_pae(vcpu)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4746 | context->page_fault = paging64_page_fault; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4747 | context->gva_to_gpa = paging64_gva_to_gpa; |
Marcelo Tosatti | e8bc217 | 2008-09-23 13:18:33 -0300 | [diff] [blame] | 4748 | context->sync_page = paging64_sync_page; |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 4749 | context->invlpg = paging64_invlpg; |
Xiao Guangrong | 0f53b5b | 2011-03-09 15:43:51 +0800 | [diff] [blame] | 4750 | context->update_pte = paging64_update_pte; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 4751 | context->shadow_root_level = level; |
Joerg Roedel | c5a78f2b | 2010-09-10 17:30:39 +0200 | [diff] [blame] | 4752 | context->direct_map = false; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4753 | } |
| 4754 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4755 | static void paging64_init_context(struct kvm_vcpu *vcpu, |
| 4756 | struct kvm_mmu *context) |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 4757 | { |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 4758 | int root_level = is_la57_mode(vcpu) ? |
| 4759 | PT64_ROOT_5LEVEL : PT64_ROOT_4LEVEL; |
| 4760 | |
| 4761 | paging64_init_context_common(vcpu, context, root_level); |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 4762 | } |
| 4763 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4764 | static void paging32_init_context(struct kvm_vcpu *vcpu, |
| 4765 | struct kvm_mmu *context) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4766 | { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4767 | context->nx = false; |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4768 | context->root_level = PT32_ROOT_LEVEL; |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4769 | |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4770 | reset_rsvds_bits_mask(vcpu, context); |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4771 | update_permission_bitmask(vcpu, context, false); |
Huaitong Han | 2d34410 | 2016-03-22 16:51:19 +0800 | [diff] [blame] | 4772 | update_pkru_bitmask(vcpu, context, false); |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4773 | update_last_nonleaf_level(vcpu, context); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4774 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4775 | context->page_fault = paging32_page_fault; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4776 | context->gva_to_gpa = paging32_gva_to_gpa; |
Marcelo Tosatti | e8bc217 | 2008-09-23 13:18:33 -0300 | [diff] [blame] | 4777 | context->sync_page = paging32_sync_page; |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 4778 | context->invlpg = paging32_invlpg; |
Xiao Guangrong | 0f53b5b | 2011-03-09 15:43:51 +0800 | [diff] [blame] | 4779 | context->update_pte = paging32_update_pte; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4780 | context->shadow_root_level = PT32E_ROOT_LEVEL; |
Joerg Roedel | c5a78f2b | 2010-09-10 17:30:39 +0200 | [diff] [blame] | 4781 | context->direct_map = false; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4782 | } |
| 4783 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4784 | static void paging32E_init_context(struct kvm_vcpu *vcpu, |
| 4785 | struct kvm_mmu *context) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4786 | { |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4787 | paging64_init_context_common(vcpu, context, PT32E_ROOT_LEVEL); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4788 | } |
| 4789 | |
Vitaly Kuznetsov | a336282 | 2018-10-08 21:28:11 +0200 | [diff] [blame] | 4790 | static union kvm_mmu_extended_role kvm_calc_mmu_role_ext(struct kvm_vcpu *vcpu) |
Junaid Shahid | 9fa7211 | 2018-06-27 14:59:07 -0700 | [diff] [blame] | 4791 | { |
Vitaly Kuznetsov | a336282 | 2018-10-08 21:28:11 +0200 | [diff] [blame] | 4792 | union kvm_mmu_extended_role ext = {0}; |
Junaid Shahid | 9fa7211 | 2018-06-27 14:59:07 -0700 | [diff] [blame] | 4793 | |
Vitaly Kuznetsov | 7dcd575 | 2018-10-08 21:28:12 +0200 | [diff] [blame] | 4794 | ext.cr0_pg = !!is_paging(vcpu); |
Vitaly Kuznetsov | 0699c64 | 2019-04-30 19:33:26 +0200 | [diff] [blame] | 4795 | ext.cr4_pae = !!is_pae(vcpu); |
Vitaly Kuznetsov | a336282 | 2018-10-08 21:28:11 +0200 | [diff] [blame] | 4796 | ext.cr4_smep = !!kvm_read_cr4_bits(vcpu, X86_CR4_SMEP); |
| 4797 | ext.cr4_smap = !!kvm_read_cr4_bits(vcpu, X86_CR4_SMAP); |
| 4798 | ext.cr4_pse = !!is_pse(vcpu); |
| 4799 | ext.cr4_pke = !!kvm_read_cr4_bits(vcpu, X86_CR4_PKE); |
Vitaly Kuznetsov | 7dcd575 | 2018-10-08 21:28:12 +0200 | [diff] [blame] | 4800 | ext.cr4_la57 = !!kvm_read_cr4_bits(vcpu, X86_CR4_LA57); |
Yu Zhang | de3ccd2 | 2019-02-01 00:09:23 +0800 | [diff] [blame] | 4801 | ext.maxphyaddr = cpuid_maxphyaddr(vcpu); |
Vitaly Kuznetsov | a336282 | 2018-10-08 21:28:11 +0200 | [diff] [blame] | 4802 | |
| 4803 | ext.valid = 1; |
| 4804 | |
| 4805 | return ext; |
| 4806 | } |
| 4807 | |
Vitaly Kuznetsov | 7dcd575 | 2018-10-08 21:28:12 +0200 | [diff] [blame] | 4808 | static union kvm_mmu_role kvm_calc_mmu_role_common(struct kvm_vcpu *vcpu, |
| 4809 | bool base_only) |
Junaid Shahid | 9fa7211 | 2018-06-27 14:59:07 -0700 | [diff] [blame] | 4810 | { |
Vitaly Kuznetsov | 7dcd575 | 2018-10-08 21:28:12 +0200 | [diff] [blame] | 4811 | union kvm_mmu_role role = {0}; |
Junaid Shahid | 9fa7211 | 2018-06-27 14:59:07 -0700 | [diff] [blame] | 4812 | |
Vitaly Kuznetsov | 7dcd575 | 2018-10-08 21:28:12 +0200 | [diff] [blame] | 4813 | role.base.access = ACC_ALL; |
| 4814 | role.base.nxe = !!is_nx(vcpu); |
Vitaly Kuznetsov | 7dcd575 | 2018-10-08 21:28:12 +0200 | [diff] [blame] | 4815 | role.base.cr0_wp = is_write_protection(vcpu); |
| 4816 | role.base.smm = is_smm(vcpu); |
| 4817 | role.base.guest_mode = is_guest_mode(vcpu); |
| 4818 | |
| 4819 | if (base_only) |
| 4820 | return role; |
| 4821 | |
| 4822 | role.ext = kvm_calc_mmu_role_ext(vcpu); |
| 4823 | |
| 4824 | return role; |
| 4825 | } |
| 4826 | |
| 4827 | static union kvm_mmu_role |
| 4828 | kvm_calc_tdp_mmu_root_page_role(struct kvm_vcpu *vcpu, bool base_only) |
| 4829 | { |
| 4830 | union kvm_mmu_role role = kvm_calc_mmu_role_common(vcpu, base_only); |
| 4831 | |
| 4832 | role.base.ad_disabled = (shadow_accessed_mask == 0); |
| 4833 | role.base.level = kvm_x86_ops->get_tdp_level(vcpu); |
| 4834 | role.base.direct = true; |
Sean Christopherson | 47c42e6 | 2019-03-07 15:27:44 -0800 | [diff] [blame] | 4835 | role.base.gpte_is_8_bytes = true; |
Junaid Shahid | 9fa7211 | 2018-06-27 14:59:07 -0700 | [diff] [blame] | 4836 | |
| 4837 | return role; |
| 4838 | } |
| 4839 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4840 | static void init_kvm_tdp_mmu(struct kvm_vcpu *vcpu) |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4841 | { |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 4842 | struct kvm_mmu *context = vcpu->arch.mmu; |
Vitaly Kuznetsov | 7dcd575 | 2018-10-08 21:28:12 +0200 | [diff] [blame] | 4843 | union kvm_mmu_role new_role = |
| 4844 | kvm_calc_tdp_mmu_root_page_role(vcpu, false); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4845 | |
Vitaly Kuznetsov | 7dcd575 | 2018-10-08 21:28:12 +0200 | [diff] [blame] | 4846 | new_role.base.word &= mmu_base_role_mask.word; |
| 4847 | if (new_role.as_u64 == context->mmu_role.as_u64) |
| 4848 | return; |
| 4849 | |
| 4850 | context->mmu_role.as_u64 = new_role.as_u64; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4851 | context->page_fault = tdp_page_fault; |
Marcelo Tosatti | e8bc217 | 2008-09-23 13:18:33 -0300 | [diff] [blame] | 4852 | context->sync_page = nonpaging_sync_page; |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 4853 | context->invlpg = nonpaging_invlpg; |
Xiao Guangrong | 0f53b5b | 2011-03-09 15:43:51 +0800 | [diff] [blame] | 4854 | context->update_pte = nonpaging_update_pte; |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 4855 | context->shadow_root_level = kvm_x86_ops->get_tdp_level(vcpu); |
Joerg Roedel | c5a78f2b | 2010-09-10 17:30:39 +0200 | [diff] [blame] | 4856 | context->direct_map = true; |
Joerg Roedel | 1c97f0a | 2010-09-10 17:30:41 +0200 | [diff] [blame] | 4857 | context->set_cr3 = kvm_x86_ops->set_tdp_cr3; |
Joerg Roedel | 5777ed3 | 2010-09-10 17:30:42 +0200 | [diff] [blame] | 4858 | context->get_cr3 = get_cr3; |
Avi Kivity | e4e517b | 2011-07-28 11:36:17 +0300 | [diff] [blame] | 4859 | context->get_pdptr = kvm_pdptr_read; |
Joerg Roedel | cb659db | 2010-09-10 17:30:43 +0200 | [diff] [blame] | 4860 | context->inject_page_fault = kvm_inject_page_fault; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4861 | |
| 4862 | if (!is_paging(vcpu)) { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4863 | context->nx = false; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4864 | context->gva_to_gpa = nonpaging_gva_to_gpa; |
| 4865 | context->root_level = 0; |
| 4866 | } else if (is_long_mode(vcpu)) { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4867 | context->nx = is_nx(vcpu); |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 4868 | context->root_level = is_la57_mode(vcpu) ? |
| 4869 | PT64_ROOT_5LEVEL : PT64_ROOT_4LEVEL; |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4870 | reset_rsvds_bits_mask(vcpu, context); |
| 4871 | context->gva_to_gpa = paging64_gva_to_gpa; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4872 | } else if (is_pae(vcpu)) { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4873 | context->nx = is_nx(vcpu); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4874 | context->root_level = PT32E_ROOT_LEVEL; |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4875 | reset_rsvds_bits_mask(vcpu, context); |
| 4876 | context->gva_to_gpa = paging64_gva_to_gpa; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4877 | } else { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4878 | context->nx = false; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4879 | context->root_level = PT32_ROOT_LEVEL; |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4880 | reset_rsvds_bits_mask(vcpu, context); |
| 4881 | context->gva_to_gpa = paging32_gva_to_gpa; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4882 | } |
| 4883 | |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4884 | update_permission_bitmask(vcpu, context, false); |
Huaitong Han | 2d34410 | 2016-03-22 16:51:19 +0800 | [diff] [blame] | 4885 | update_pkru_bitmask(vcpu, context, false); |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4886 | update_last_nonleaf_level(vcpu, context); |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4887 | reset_tdp_shadow_zero_bits_mask(vcpu, context); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4888 | } |
| 4889 | |
Vitaly Kuznetsov | 7dcd575 | 2018-10-08 21:28:12 +0200 | [diff] [blame] | 4890 | static union kvm_mmu_role |
| 4891 | kvm_calc_shadow_mmu_root_page_role(struct kvm_vcpu *vcpu, bool base_only) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4892 | { |
Vitaly Kuznetsov | 7dcd575 | 2018-10-08 21:28:12 +0200 | [diff] [blame] | 4893 | union kvm_mmu_role role = kvm_calc_mmu_role_common(vcpu, base_only); |
Paolo Bonzini | ad896af | 2013-10-02 16:56:14 +0200 | [diff] [blame] | 4894 | |
Vitaly Kuznetsov | 7dcd575 | 2018-10-08 21:28:12 +0200 | [diff] [blame] | 4895 | role.base.smep_andnot_wp = role.ext.cr4_smep && |
| 4896 | !is_write_protection(vcpu); |
| 4897 | role.base.smap_andnot_wp = role.ext.cr4_smap && |
| 4898 | !is_write_protection(vcpu); |
| 4899 | role.base.direct = !is_paging(vcpu); |
Sean Christopherson | 47c42e6 | 2019-03-07 15:27:44 -0800 | [diff] [blame] | 4900 | role.base.gpte_is_8_bytes = !!is_pae(vcpu); |
Junaid Shahid | 9fa7211 | 2018-06-27 14:59:07 -0700 | [diff] [blame] | 4901 | |
| 4902 | if (!is_long_mode(vcpu)) |
Vitaly Kuznetsov | 7dcd575 | 2018-10-08 21:28:12 +0200 | [diff] [blame] | 4903 | role.base.level = PT32E_ROOT_LEVEL; |
Junaid Shahid | 9fa7211 | 2018-06-27 14:59:07 -0700 | [diff] [blame] | 4904 | else if (is_la57_mode(vcpu)) |
Vitaly Kuznetsov | 7dcd575 | 2018-10-08 21:28:12 +0200 | [diff] [blame] | 4905 | role.base.level = PT64_ROOT_5LEVEL; |
Junaid Shahid | 9fa7211 | 2018-06-27 14:59:07 -0700 | [diff] [blame] | 4906 | else |
Vitaly Kuznetsov | 7dcd575 | 2018-10-08 21:28:12 +0200 | [diff] [blame] | 4907 | role.base.level = PT64_ROOT_4LEVEL; |
Junaid Shahid | 9fa7211 | 2018-06-27 14:59:07 -0700 | [diff] [blame] | 4908 | |
| 4909 | return role; |
| 4910 | } |
| 4911 | |
| 4912 | void kvm_init_shadow_mmu(struct kvm_vcpu *vcpu) |
| 4913 | { |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 4914 | struct kvm_mmu *context = vcpu->arch.mmu; |
Vitaly Kuznetsov | 7dcd575 | 2018-10-08 21:28:12 +0200 | [diff] [blame] | 4915 | union kvm_mmu_role new_role = |
| 4916 | kvm_calc_shadow_mmu_root_page_role(vcpu, false); |
| 4917 | |
| 4918 | new_role.base.word &= mmu_base_role_mask.word; |
| 4919 | if (new_role.as_u64 == context->mmu_role.as_u64) |
| 4920 | return; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4921 | |
| 4922 | if (!is_paging(vcpu)) |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4923 | nonpaging_init_context(vcpu, context); |
Avi Kivity | a9058ec | 2006-12-29 16:49:37 -0800 | [diff] [blame] | 4924 | else if (is_long_mode(vcpu)) |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4925 | paging64_init_context(vcpu, context); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4926 | else if (is_pae(vcpu)) |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4927 | paging32E_init_context(vcpu, context); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4928 | else |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4929 | paging32_init_context(vcpu, context); |
Avi Kivity | a770f6f | 2008-12-21 19:20:09 +0200 | [diff] [blame] | 4930 | |
Vitaly Kuznetsov | 7dcd575 | 2018-10-08 21:28:12 +0200 | [diff] [blame] | 4931 | context->mmu_role.as_u64 = new_role.as_u64; |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4932 | reset_shadow_zero_bits_mask(vcpu, context); |
Joerg Roedel | 52fde8d | 2010-09-10 17:30:44 +0200 | [diff] [blame] | 4933 | } |
| 4934 | EXPORT_SYMBOL_GPL(kvm_init_shadow_mmu); |
| 4935 | |
Vitaly Kuznetsov | a336282 | 2018-10-08 21:28:11 +0200 | [diff] [blame] | 4936 | static union kvm_mmu_role |
| 4937 | kvm_calc_shadow_ept_root_page_role(struct kvm_vcpu *vcpu, bool accessed_dirty, |
| 4938 | bool execonly) |
Junaid Shahid | 9fa7211 | 2018-06-27 14:59:07 -0700 | [diff] [blame] | 4939 | { |
Sean Christopherson | 552c69b1 | 2019-03-07 15:27:43 -0800 | [diff] [blame] | 4940 | union kvm_mmu_role role = {0}; |
Junaid Shahid | 9fa7211 | 2018-06-27 14:59:07 -0700 | [diff] [blame] | 4941 | |
Sean Christopherson | 47c42e6 | 2019-03-07 15:27:44 -0800 | [diff] [blame] | 4942 | /* SMM flag is inherited from root_mmu */ |
| 4943 | role.base.smm = vcpu->arch.root_mmu.mmu_role.base.smm; |
Junaid Shahid | 9fa7211 | 2018-06-27 14:59:07 -0700 | [diff] [blame] | 4944 | |
Vitaly Kuznetsov | a336282 | 2018-10-08 21:28:11 +0200 | [diff] [blame] | 4945 | role.base.level = PT64_ROOT_4LEVEL; |
Sean Christopherson | 47c42e6 | 2019-03-07 15:27:44 -0800 | [diff] [blame] | 4946 | role.base.gpte_is_8_bytes = true; |
Vitaly Kuznetsov | a336282 | 2018-10-08 21:28:11 +0200 | [diff] [blame] | 4947 | role.base.direct = false; |
| 4948 | role.base.ad_disabled = !accessed_dirty; |
| 4949 | role.base.guest_mode = true; |
| 4950 | role.base.access = ACC_ALL; |
| 4951 | |
Sean Christopherson | 47c42e6 | 2019-03-07 15:27:44 -0800 | [diff] [blame] | 4952 | /* |
| 4953 | * WP=1 and NOT_WP=1 is an impossible combination, use WP and the |
| 4954 | * SMAP variation to denote shadow EPT entries. |
| 4955 | */ |
| 4956 | role.base.cr0_wp = true; |
| 4957 | role.base.smap_andnot_wp = true; |
| 4958 | |
Sean Christopherson | 552c69b1 | 2019-03-07 15:27:43 -0800 | [diff] [blame] | 4959 | role.ext = kvm_calc_mmu_role_ext(vcpu); |
Vitaly Kuznetsov | a336282 | 2018-10-08 21:28:11 +0200 | [diff] [blame] | 4960 | role.ext.execonly = execonly; |
Junaid Shahid | 9fa7211 | 2018-06-27 14:59:07 -0700 | [diff] [blame] | 4961 | |
| 4962 | return role; |
| 4963 | } |
| 4964 | |
Paolo Bonzini | ae1e2d1 | 2017-03-30 11:55:30 +0200 | [diff] [blame] | 4965 | void kvm_init_shadow_ept_mmu(struct kvm_vcpu *vcpu, bool execonly, |
Junaid Shahid | 50c28f2 | 2018-06-27 14:59:11 -0700 | [diff] [blame] | 4966 | bool accessed_dirty, gpa_t new_eptp) |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 4967 | { |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 4968 | struct kvm_mmu *context = vcpu->arch.mmu; |
Vitaly Kuznetsov | a336282 | 2018-10-08 21:28:11 +0200 | [diff] [blame] | 4969 | union kvm_mmu_role new_role = |
| 4970 | kvm_calc_shadow_ept_root_page_role(vcpu, accessed_dirty, |
| 4971 | execonly); |
Paolo Bonzini | ad896af | 2013-10-02 16:56:14 +0200 | [diff] [blame] | 4972 | |
Vitaly Kuznetsov | a336282 | 2018-10-08 21:28:11 +0200 | [diff] [blame] | 4973 | __kvm_mmu_new_cr3(vcpu, new_eptp, new_role.base, false); |
| 4974 | |
| 4975 | new_role.base.word &= mmu_base_role_mask.word; |
| 4976 | if (new_role.as_u64 == context->mmu_role.as_u64) |
| 4977 | return; |
| 4978 | |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 4979 | context->shadow_root_level = PT64_ROOT_4LEVEL; |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 4980 | |
| 4981 | context->nx = true; |
Paolo Bonzini | ae1e2d1 | 2017-03-30 11:55:30 +0200 | [diff] [blame] | 4982 | context->ept_ad = accessed_dirty; |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 4983 | context->page_fault = ept_page_fault; |
| 4984 | context->gva_to_gpa = ept_gva_to_gpa; |
| 4985 | context->sync_page = ept_sync_page; |
| 4986 | context->invlpg = ept_invlpg; |
| 4987 | context->update_pte = ept_update_pte; |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 4988 | context->root_level = PT64_ROOT_4LEVEL; |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 4989 | context->direct_map = false; |
Vitaly Kuznetsov | a336282 | 2018-10-08 21:28:11 +0200 | [diff] [blame] | 4990 | context->mmu_role.as_u64 = new_role.as_u64; |
Vitaly Kuznetsov | 3dc773e | 2018-10-08 21:28:06 +0200 | [diff] [blame] | 4991 | |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 4992 | update_permission_bitmask(vcpu, context, true); |
Huaitong Han | 2d34410 | 2016-03-22 16:51:19 +0800 | [diff] [blame] | 4993 | update_pkru_bitmask(vcpu, context, true); |
Ladi Prosek | fd19d3b4 | 2017-10-05 11:10:22 +0200 | [diff] [blame] | 4994 | update_last_nonleaf_level(vcpu, context); |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 4995 | reset_rsvds_bits_mask_ept(vcpu, context, execonly); |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4996 | reset_ept_shadow_zero_bits_mask(vcpu, context, execonly); |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 4997 | } |
| 4998 | EXPORT_SYMBOL_GPL(kvm_init_shadow_ept_mmu); |
| 4999 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 5000 | static void init_kvm_softmmu(struct kvm_vcpu *vcpu) |
Joerg Roedel | 52fde8d | 2010-09-10 17:30:44 +0200 | [diff] [blame] | 5001 | { |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 5002 | struct kvm_mmu *context = vcpu->arch.mmu; |
Paolo Bonzini | ad896af | 2013-10-02 16:56:14 +0200 | [diff] [blame] | 5003 | |
| 5004 | kvm_init_shadow_mmu(vcpu); |
| 5005 | context->set_cr3 = kvm_x86_ops->set_cr3; |
| 5006 | context->get_cr3 = get_cr3; |
| 5007 | context->get_pdptr = kvm_pdptr_read; |
| 5008 | context->inject_page_fault = kvm_inject_page_fault; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5009 | } |
| 5010 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 5011 | static void init_kvm_nested_mmu(struct kvm_vcpu *vcpu) |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 5012 | { |
Vitaly Kuznetsov | bf627a9 | 2018-10-08 21:28:13 +0200 | [diff] [blame] | 5013 | union kvm_mmu_role new_role = kvm_calc_mmu_role_common(vcpu, false); |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 5014 | struct kvm_mmu *g_context = &vcpu->arch.nested_mmu; |
| 5015 | |
Vitaly Kuznetsov | bf627a9 | 2018-10-08 21:28:13 +0200 | [diff] [blame] | 5016 | new_role.base.word &= mmu_base_role_mask.word; |
| 5017 | if (new_role.as_u64 == g_context->mmu_role.as_u64) |
| 5018 | return; |
| 5019 | |
| 5020 | g_context->mmu_role.as_u64 = new_role.as_u64; |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 5021 | g_context->get_cr3 = get_cr3; |
Avi Kivity | e4e517b | 2011-07-28 11:36:17 +0300 | [diff] [blame] | 5022 | g_context->get_pdptr = kvm_pdptr_read; |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 5023 | g_context->inject_page_fault = kvm_inject_page_fault; |
| 5024 | |
| 5025 | /* |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 5026 | * Note that arch.mmu->gva_to_gpa translates l2_gpa to l1_gpa using |
David Matlack | 0af2593 | 2015-12-30 08:26:17 -0800 | [diff] [blame] | 5027 | * L1's nested page tables (e.g. EPT12). The nested translation |
| 5028 | * of l2_gva to l1_gpa is done by arch.nested_mmu.gva_to_gpa using |
| 5029 | * L2's page tables as the first level of translation and L1's |
| 5030 | * nested page tables as the second level of translation. Basically |
| 5031 | * the gva_to_gpa functions between mmu and nested_mmu are swapped. |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 5032 | */ |
| 5033 | if (!is_paging(vcpu)) { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 5034 | g_context->nx = false; |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 5035 | g_context->root_level = 0; |
| 5036 | g_context->gva_to_gpa = nonpaging_gva_to_gpa_nested; |
| 5037 | } else if (is_long_mode(vcpu)) { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 5038 | g_context->nx = is_nx(vcpu); |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 5039 | g_context->root_level = is_la57_mode(vcpu) ? |
| 5040 | PT64_ROOT_5LEVEL : PT64_ROOT_4LEVEL; |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 5041 | reset_rsvds_bits_mask(vcpu, g_context); |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 5042 | g_context->gva_to_gpa = paging64_gva_to_gpa_nested; |
| 5043 | } else if (is_pae(vcpu)) { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 5044 | g_context->nx = is_nx(vcpu); |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 5045 | g_context->root_level = PT32E_ROOT_LEVEL; |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 5046 | reset_rsvds_bits_mask(vcpu, g_context); |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 5047 | g_context->gva_to_gpa = paging64_gva_to_gpa_nested; |
| 5048 | } else { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 5049 | g_context->nx = false; |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 5050 | g_context->root_level = PT32_ROOT_LEVEL; |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 5051 | reset_rsvds_bits_mask(vcpu, g_context); |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 5052 | g_context->gva_to_gpa = paging32_gva_to_gpa_nested; |
| 5053 | } |
| 5054 | |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 5055 | update_permission_bitmask(vcpu, g_context, false); |
Huaitong Han | 2d34410 | 2016-03-22 16:51:19 +0800 | [diff] [blame] | 5056 | update_pkru_bitmask(vcpu, g_context, false); |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 5057 | update_last_nonleaf_level(vcpu, g_context); |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 5058 | } |
| 5059 | |
Junaid Shahid | 1c53da3 | 2018-06-27 14:59:10 -0700 | [diff] [blame] | 5060 | void kvm_init_mmu(struct kvm_vcpu *vcpu, bool reset_roots) |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 5061 | { |
Junaid Shahid | 1c53da3 | 2018-06-27 14:59:10 -0700 | [diff] [blame] | 5062 | if (reset_roots) { |
Junaid Shahid | b94742c | 2018-06-27 14:59:20 -0700 | [diff] [blame] | 5063 | uint i; |
| 5064 | |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 5065 | vcpu->arch.mmu->root_hpa = INVALID_PAGE; |
Junaid Shahid | b94742c | 2018-06-27 14:59:20 -0700 | [diff] [blame] | 5066 | |
| 5067 | for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++) |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 5068 | vcpu->arch.mmu->prev_roots[i] = KVM_MMU_ROOT_INFO_INVALID; |
Junaid Shahid | 1c53da3 | 2018-06-27 14:59:10 -0700 | [diff] [blame] | 5069 | } |
| 5070 | |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 5071 | if (mmu_is_nested(vcpu)) |
Paolo Bonzini | e0c6db3 | 2014-12-23 13:39:46 +0100 | [diff] [blame] | 5072 | init_kvm_nested_mmu(vcpu); |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 5073 | else if (tdp_enabled) |
Paolo Bonzini | e0c6db3 | 2014-12-23 13:39:46 +0100 | [diff] [blame] | 5074 | init_kvm_tdp_mmu(vcpu); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 5075 | else |
Paolo Bonzini | e0c6db3 | 2014-12-23 13:39:46 +0100 | [diff] [blame] | 5076 | init_kvm_softmmu(vcpu); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 5077 | } |
Junaid Shahid | 1c53da3 | 2018-06-27 14:59:10 -0700 | [diff] [blame] | 5078 | EXPORT_SYMBOL_GPL(kvm_init_mmu); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 5079 | |
Junaid Shahid | 9fa7211 | 2018-06-27 14:59:07 -0700 | [diff] [blame] | 5080 | static union kvm_mmu_page_role |
| 5081 | kvm_mmu_calc_root_page_role(struct kvm_vcpu *vcpu) |
| 5082 | { |
Vitaly Kuznetsov | 7dcd575 | 2018-10-08 21:28:12 +0200 | [diff] [blame] | 5083 | union kvm_mmu_role role; |
| 5084 | |
Junaid Shahid | 9fa7211 | 2018-06-27 14:59:07 -0700 | [diff] [blame] | 5085 | if (tdp_enabled) |
Vitaly Kuznetsov | 7dcd575 | 2018-10-08 21:28:12 +0200 | [diff] [blame] | 5086 | role = kvm_calc_tdp_mmu_root_page_role(vcpu, true); |
Junaid Shahid | 9fa7211 | 2018-06-27 14:59:07 -0700 | [diff] [blame] | 5087 | else |
Vitaly Kuznetsov | 7dcd575 | 2018-10-08 21:28:12 +0200 | [diff] [blame] | 5088 | role = kvm_calc_shadow_mmu_root_page_role(vcpu, true); |
| 5089 | |
| 5090 | return role.base; |
Junaid Shahid | 9fa7211 | 2018-06-27 14:59:07 -0700 | [diff] [blame] | 5091 | } |
Dong, Eddie | 489f1d6 | 2008-01-07 11:14:20 +0200 | [diff] [blame] | 5092 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 5093 | void kvm_mmu_reset_context(struct kvm_vcpu *vcpu) |
Avi Kivity | 17c3ba9 | 2007-06-04 15:58:30 +0300 | [diff] [blame] | 5094 | { |
Paolo Bonzini | 95f93af | 2013-10-02 16:56:12 +0200 | [diff] [blame] | 5095 | kvm_mmu_unload(vcpu); |
Junaid Shahid | 1c53da3 | 2018-06-27 14:59:10 -0700 | [diff] [blame] | 5096 | kvm_init_mmu(vcpu, true); |
Eddie Dong | 8668a3c | 2007-10-10 14:26:45 +0800 | [diff] [blame] | 5097 | } |
Avi Kivity | 17c3ba9 | 2007-06-04 15:58:30 +0300 | [diff] [blame] | 5098 | EXPORT_SYMBOL_GPL(kvm_mmu_reset_context); |
| 5099 | |
| 5100 | int kvm_mmu_load(struct kvm_vcpu *vcpu) |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 5101 | { |
| 5102 | int r; |
Avi Kivity | e2dec93 | 2007-01-05 16:36:54 -0800 | [diff] [blame] | 5103 | |
Avi Kivity | 17c3ba9 | 2007-06-04 15:58:30 +0300 | [diff] [blame] | 5104 | r = mmu_topup_memory_caches(vcpu); |
| 5105 | if (r) |
Marcelo Tosatti | aaee2c9 | 2007-12-20 19:18:26 -0500 | [diff] [blame] | 5106 | goto out; |
Marcelo Tosatti | 8986ecc | 2009-05-12 18:55:45 -0300 | [diff] [blame] | 5107 | r = mmu_alloc_roots(vcpu); |
Takuya Yoshikawa | e2858b4 | 2013-05-09 15:45:12 +0900 | [diff] [blame] | 5108 | kvm_mmu_sync_roots(vcpu); |
Marcelo Tosatti | 8986ecc | 2009-05-12 18:55:45 -0300 | [diff] [blame] | 5109 | if (r) |
| 5110 | goto out; |
Junaid Shahid | 6e42782 | 2018-06-27 14:59:08 -0700 | [diff] [blame] | 5111 | kvm_mmu_load_cr3(vcpu); |
Junaid Shahid | afe828d | 2018-06-27 14:59:12 -0700 | [diff] [blame] | 5112 | kvm_x86_ops->tlb_flush(vcpu, true); |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 5113 | out: |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5114 | return r; |
Avi Kivity | 17c3ba9 | 2007-06-04 15:58:30 +0300 | [diff] [blame] | 5115 | } |
| 5116 | EXPORT_SYMBOL_GPL(kvm_mmu_load); |
| 5117 | |
| 5118 | void kvm_mmu_unload(struct kvm_vcpu *vcpu) |
| 5119 | { |
Vitaly Kuznetsov | 14c07ad | 2018-10-08 21:28:08 +0200 | [diff] [blame] | 5120 | kvm_mmu_free_roots(vcpu, &vcpu->arch.root_mmu, KVM_MMU_ROOTS_ALL); |
| 5121 | WARN_ON(VALID_PAGE(vcpu->arch.root_mmu.root_hpa)); |
| 5122 | kvm_mmu_free_roots(vcpu, &vcpu->arch.guest_mmu, KVM_MMU_ROOTS_ALL); |
| 5123 | WARN_ON(VALID_PAGE(vcpu->arch.guest_mmu.root_hpa)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5124 | } |
Joerg Roedel | 4b16184 | 2010-09-10 17:31:03 +0200 | [diff] [blame] | 5125 | EXPORT_SYMBOL_GPL(kvm_mmu_unload); |
Avi Kivity | 09072da | 2007-05-01 14:16:52 +0300 | [diff] [blame] | 5126 | |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 5127 | static void mmu_pte_write_new_pte(struct kvm_vcpu *vcpu, |
Xiao Guangrong | 7c56252 | 2011-03-28 10:29:27 +0800 | [diff] [blame] | 5128 | struct kvm_mmu_page *sp, u64 *spte, |
| 5129 | const void *new) |
Avi Kivity | 0028425 | 2007-05-01 16:53:31 +0300 | [diff] [blame] | 5130 | { |
Marcelo Tosatti | 3094538 | 2008-06-11 20:32:40 -0300 | [diff] [blame] | 5131 | if (sp->role.level != PT_PAGE_TABLE_LEVEL) { |
Joerg Roedel | 7e4e405 | 2009-07-27 16:30:46 +0200 | [diff] [blame] | 5132 | ++vcpu->kvm->stat.mmu_pde_zapped; |
| 5133 | return; |
Marcelo Tosatti | 3094538 | 2008-06-11 20:32:40 -0300 | [diff] [blame] | 5134 | } |
Avi Kivity | 0028425 | 2007-05-01 16:53:31 +0300 | [diff] [blame] | 5135 | |
Avi Kivity | 4cee576 | 2007-11-18 16:37:07 +0200 | [diff] [blame] | 5136 | ++vcpu->kvm->stat.mmu_pte_updated; |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 5137 | vcpu->arch.mmu->update_pte(vcpu, sp, spte, new); |
Avi Kivity | 0028425 | 2007-05-01 16:53:31 +0300 | [diff] [blame] | 5138 | } |
| 5139 | |
Avi Kivity | 79539ce | 2007-11-21 02:06:21 +0200 | [diff] [blame] | 5140 | static bool need_remote_flush(u64 old, u64 new) |
| 5141 | { |
| 5142 | if (!is_shadow_present_pte(old)) |
| 5143 | return false; |
| 5144 | if (!is_shadow_present_pte(new)) |
| 5145 | return true; |
| 5146 | if ((old ^ new) & PT64_BASE_ADDR_MASK) |
| 5147 | return true; |
Gleb Natapov | 5316622 | 2013-08-05 11:07:14 +0300 | [diff] [blame] | 5148 | old ^= shadow_nx_mask; |
| 5149 | new ^= shadow_nx_mask; |
Avi Kivity | 79539ce | 2007-11-21 02:06:21 +0200 | [diff] [blame] | 5150 | return (old & ~new & PT64_PERM_MASK) != 0; |
| 5151 | } |
| 5152 | |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 5153 | static u64 mmu_pte_write_fetch_gpte(struct kvm_vcpu *vcpu, gpa_t *gpa, |
Junaid Shahid | 0e0fee5 | 2018-10-31 14:53:57 -0700 | [diff] [blame] | 5154 | int *bytes) |
Avi Kivity | da4a00f | 2007-01-05 16:36:44 -0800 | [diff] [blame] | 5155 | { |
Junaid Shahid | 0e0fee5 | 2018-10-31 14:53:57 -0700 | [diff] [blame] | 5156 | u64 gentry = 0; |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 5157 | int r; |
Avi Kivity | 72016f3 | 2010-03-15 13:59:53 +0200 | [diff] [blame] | 5158 | |
Avi Kivity | 08e850c | 2010-03-15 13:59:57 +0200 | [diff] [blame] | 5159 | /* |
| 5160 | * Assume that the pte write on a page table of the same type |
Xiao Guangrong | 49b26e2 | 2011-03-04 19:00:00 +0800 | [diff] [blame] | 5161 | * as the current vcpu paging mode since we update the sptes only |
| 5162 | * when they have the same mode. |
Avi Kivity | 08e850c | 2010-03-15 13:59:57 +0200 | [diff] [blame] | 5163 | */ |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 5164 | if (is_pae(vcpu) && *bytes == 4) { |
Avi Kivity | 08e850c | 2010-03-15 13:59:57 +0200 | [diff] [blame] | 5165 | /* Handle a 32-bit guest writing two halves of a 64-bit gpte */ |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 5166 | *gpa &= ~(gpa_t)7; |
| 5167 | *bytes = 8; |
Avi Kivity | 08e850c | 2010-03-15 13:59:57 +0200 | [diff] [blame] | 5168 | } |
| 5169 | |
Junaid Shahid | 0e0fee5 | 2018-10-31 14:53:57 -0700 | [diff] [blame] | 5170 | if (*bytes == 4 || *bytes == 8) { |
| 5171 | r = kvm_vcpu_read_guest_atomic(vcpu, *gpa, &gentry, *bytes); |
| 5172 | if (r) |
| 5173 | gentry = 0; |
Avi Kivity | 72016f3 | 2010-03-15 13:59:53 +0200 | [diff] [blame] | 5174 | } |
| 5175 | |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 5176 | return gentry; |
| 5177 | } |
| 5178 | |
| 5179 | /* |
| 5180 | * If we're seeing too many writes to a page, it may no longer be a page table, |
| 5181 | * or we may be forking, in which case it is better to unmap the page. |
| 5182 | */ |
Xiao Guangrong | a138fe7 | 2011-12-16 18:18:10 +0800 | [diff] [blame] | 5183 | static bool detect_write_flooding(struct kvm_mmu_page *sp) |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 5184 | { |
Xiao Guangrong | a30f47c | 2011-09-22 16:58:36 +0800 | [diff] [blame] | 5185 | /* |
| 5186 | * Skip write-flooding detected for the sp whose level is 1, because |
| 5187 | * it can become unsync, then the guest page is not write-protected. |
| 5188 | */ |
Davidlohr Bueso | f71fa31 | 2012-04-18 12:24:29 +0200 | [diff] [blame] | 5189 | if (sp->role.level == PT_PAGE_TABLE_LEVEL) |
Xiao Guangrong | a30f47c | 2011-09-22 16:58:36 +0800 | [diff] [blame] | 5190 | return false; |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 5191 | |
Xiao Guangrong | e5691a8 | 2016-02-24 17:51:12 +0800 | [diff] [blame] | 5192 | atomic_inc(&sp->write_flooding_count); |
| 5193 | return atomic_read(&sp->write_flooding_count) >= 3; |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 5194 | } |
| 5195 | |
| 5196 | /* |
| 5197 | * Misaligned accesses are too much trouble to fix up; also, they usually |
| 5198 | * indicate a page is not used as a page table. |
| 5199 | */ |
| 5200 | static bool detect_write_misaligned(struct kvm_mmu_page *sp, gpa_t gpa, |
| 5201 | int bytes) |
| 5202 | { |
| 5203 | unsigned offset, pte_size, misaligned; |
| 5204 | |
| 5205 | pgprintk("misaligned: gpa %llx bytes %d role %x\n", |
| 5206 | gpa, bytes, sp->role.word); |
| 5207 | |
| 5208 | offset = offset_in_page(gpa); |
Sean Christopherson | 47c42e6 | 2019-03-07 15:27:44 -0800 | [diff] [blame] | 5209 | pte_size = sp->role.gpte_is_8_bytes ? 8 : 4; |
Xiao Guangrong | 5d9ca30 | 2011-09-22 16:57:55 +0800 | [diff] [blame] | 5210 | |
| 5211 | /* |
| 5212 | * Sometimes, the OS only writes the last one bytes to update status |
| 5213 | * bits, for example, in linux, andb instruction is used in clear_bit(). |
| 5214 | */ |
| 5215 | if (!(offset & (pte_size - 1)) && bytes == 1) |
| 5216 | return false; |
| 5217 | |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 5218 | misaligned = (offset ^ (offset + bytes - 1)) & ~(pte_size - 1); |
| 5219 | misaligned |= bytes < 4; |
| 5220 | |
| 5221 | return misaligned; |
| 5222 | } |
| 5223 | |
| 5224 | static u64 *get_written_sptes(struct kvm_mmu_page *sp, gpa_t gpa, int *nspte) |
| 5225 | { |
| 5226 | unsigned page_offset, quadrant; |
| 5227 | u64 *spte; |
| 5228 | int level; |
| 5229 | |
| 5230 | page_offset = offset_in_page(gpa); |
| 5231 | level = sp->role.level; |
| 5232 | *nspte = 1; |
Sean Christopherson | 47c42e6 | 2019-03-07 15:27:44 -0800 | [diff] [blame] | 5233 | if (!sp->role.gpte_is_8_bytes) { |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 5234 | page_offset <<= 1; /* 32->64 */ |
| 5235 | /* |
| 5236 | * A 32-bit pde maps 4MB while the shadow pdes map |
| 5237 | * only 2MB. So we need to double the offset again |
| 5238 | * and zap two pdes instead of one. |
| 5239 | */ |
| 5240 | if (level == PT32_ROOT_LEVEL) { |
| 5241 | page_offset &= ~7; /* kill rounding error */ |
| 5242 | page_offset <<= 1; |
| 5243 | *nspte = 2; |
| 5244 | } |
| 5245 | quadrant = page_offset >> PAGE_SHIFT; |
| 5246 | page_offset &= ~PAGE_MASK; |
| 5247 | if (quadrant != sp->role.quadrant) |
| 5248 | return NULL; |
| 5249 | } |
| 5250 | |
| 5251 | spte = &sp->spt[page_offset / sizeof(*spte)]; |
| 5252 | return spte; |
| 5253 | } |
| 5254 | |
Xiao Guangrong | 13d268c | 2016-02-24 17:51:16 +0800 | [diff] [blame] | 5255 | static void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa, |
Jike Song | d126363 | 2016-10-25 15:50:42 +0800 | [diff] [blame] | 5256 | const u8 *new, int bytes, |
| 5257 | struct kvm_page_track_notifier_node *node) |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 5258 | { |
| 5259 | gfn_t gfn = gpa >> PAGE_SHIFT; |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 5260 | struct kvm_mmu_page *sp; |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 5261 | LIST_HEAD(invalid_list); |
| 5262 | u64 entry, gentry, *spte; |
| 5263 | int npte; |
Paolo Bonzini | b8c67b7 | 2016-02-24 11:21:55 +0100 | [diff] [blame] | 5264 | bool remote_flush, local_flush; |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 5265 | |
| 5266 | /* |
| 5267 | * If we don't have indirect shadow pages, it means no page is |
| 5268 | * write-protected, so we can exit simply. |
| 5269 | */ |
Mark Rutland | 6aa7de0 | 2017-10-23 14:07:29 -0700 | [diff] [blame] | 5270 | if (!READ_ONCE(vcpu->kvm->arch.indirect_shadow_pages)) |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 5271 | return; |
| 5272 | |
Paolo Bonzini | b8c67b7 | 2016-02-24 11:21:55 +0100 | [diff] [blame] | 5273 | remote_flush = local_flush = false; |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 5274 | |
| 5275 | pgprintk("%s: gpa %llx bytes %d\n", __func__, gpa, bytes); |
| 5276 | |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 5277 | /* |
| 5278 | * No need to care whether allocation memory is successful |
| 5279 | * or not since pte prefetch is skiped if it does not have |
| 5280 | * enough objects in the cache. |
| 5281 | */ |
| 5282 | mmu_topup_memory_caches(vcpu); |
| 5283 | |
| 5284 | spin_lock(&vcpu->kvm->mmu_lock); |
Junaid Shahid | 0e0fee5 | 2018-10-31 14:53:57 -0700 | [diff] [blame] | 5285 | |
| 5286 | gentry = mmu_pte_write_fetch_gpte(vcpu, &gpa, &bytes); |
| 5287 | |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 5288 | ++vcpu->kvm->stat.mmu_pte_write; |
Xiao Guangrong | 0375f7f | 2011-11-28 20:41:00 +0800 | [diff] [blame] | 5289 | kvm_mmu_audit(vcpu, AUDIT_PRE_PTE_WRITE); |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 5290 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 5291 | for_each_gfn_indirect_valid_sp(vcpu->kvm, sp, gfn) { |
Xiao Guangrong | a30f47c | 2011-09-22 16:58:36 +0800 | [diff] [blame] | 5292 | if (detect_write_misaligned(sp, gpa, bytes) || |
Xiao Guangrong | a138fe7 | 2011-12-16 18:18:10 +0800 | [diff] [blame] | 5293 | detect_write_flooding(sp)) { |
Paolo Bonzini | b8c67b7 | 2016-02-24 11:21:55 +0100 | [diff] [blame] | 5294 | kvm_mmu_prepare_zap_page(vcpu->kvm, sp, &invalid_list); |
Avi Kivity | 4cee576 | 2007-11-18 16:37:07 +0200 | [diff] [blame] | 5295 | ++vcpu->kvm->stat.mmu_flooded; |
Avi Kivity | 0e7bc4b | 2007-01-05 16:36:48 -0800 | [diff] [blame] | 5296 | continue; |
| 5297 | } |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 5298 | |
| 5299 | spte = get_written_sptes(sp, gpa, &npte); |
| 5300 | if (!spte) |
| 5301 | continue; |
| 5302 | |
Xiao Guangrong | 0671a8e | 2010-06-04 21:56:59 +0800 | [diff] [blame] | 5303 | local_flush = true; |
Avi Kivity | ac1b714 | 2007-03-08 17:13:32 +0200 | [diff] [blame] | 5304 | while (npte--) { |
Vitaly Kuznetsov | 36d9594d | 2018-10-08 21:28:10 +0200 | [diff] [blame] | 5305 | u32 base_role = vcpu->arch.mmu->mmu_role.base.word; |
| 5306 | |
Avi Kivity | 79539ce | 2007-11-21 02:06:21 +0200 | [diff] [blame] | 5307 | entry = *spte; |
Xiao Guangrong | 38e3b2b | 2011-05-15 23:27:52 +0800 | [diff] [blame] | 5308 | mmu_page_zap_pte(vcpu->kvm, sp, spte); |
Xiao Guangrong | fa1de2b | 2010-07-16 11:19:51 +0800 | [diff] [blame] | 5309 | if (gentry && |
Vitaly Kuznetsov | 36d9594d | 2018-10-08 21:28:10 +0200 | [diff] [blame] | 5310 | !((sp->role.word ^ base_role) |
Junaid Shahid | 9fa7211 | 2018-06-27 14:59:07 -0700 | [diff] [blame] | 5311 | & mmu_base_role_mask.word) && rmap_can_add(vcpu)) |
Xiao Guangrong | 7c56252 | 2011-03-28 10:29:27 +0800 | [diff] [blame] | 5312 | mmu_pte_write_new_pte(vcpu, sp, spte, &gentry); |
Gleb Natapov | 9bb4f6b | 2013-01-30 16:45:01 +0200 | [diff] [blame] | 5313 | if (need_remote_flush(entry, *spte)) |
Xiao Guangrong | 0671a8e | 2010-06-04 21:56:59 +0800 | [diff] [blame] | 5314 | remote_flush = true; |
Avi Kivity | ac1b714 | 2007-03-08 17:13:32 +0200 | [diff] [blame] | 5315 | ++spte; |
Avi Kivity | 9b7a032 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 5316 | } |
Avi Kivity | 9b7a032 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 5317 | } |
Paolo Bonzini | b8c67b7 | 2016-02-24 11:21:55 +0100 | [diff] [blame] | 5318 | kvm_mmu_flush_or_zap(vcpu, &invalid_list, remote_flush, local_flush); |
Xiao Guangrong | 0375f7f | 2011-11-28 20:41:00 +0800 | [diff] [blame] | 5319 | kvm_mmu_audit(vcpu, AUDIT_POST_PTE_WRITE); |
Marcelo Tosatti | aaee2c9 | 2007-12-20 19:18:26 -0500 | [diff] [blame] | 5320 | spin_unlock(&vcpu->kvm->mmu_lock); |
Avi Kivity | da4a00f | 2007-01-05 16:36:44 -0800 | [diff] [blame] | 5321 | } |
| 5322 | |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 5323 | int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva) |
| 5324 | { |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 5325 | gpa_t gpa; |
| 5326 | int r; |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 5327 | |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 5328 | if (vcpu->arch.mmu->direct_map) |
Avi Kivity | 60f2478 | 2009-08-27 13:37:06 +0300 | [diff] [blame] | 5329 | return 0; |
| 5330 | |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 5331 | gpa = kvm_mmu_gva_to_gpa_read(vcpu, gva, NULL); |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 5332 | |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 5333 | r = kvm_mmu_unprotect_page(vcpu->kvm, gpa >> PAGE_SHIFT); |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 5334 | |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 5335 | return r; |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 5336 | } |
Avi Kivity | 577bdc4 | 2008-07-19 08:57:05 +0300 | [diff] [blame] | 5337 | EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page_virt); |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 5338 | |
Wanpeng Li | 26eeb53 | 2017-08-10 16:28:02 -0700 | [diff] [blame] | 5339 | static int make_mmu_pages_available(struct kvm_vcpu *vcpu) |
Avi Kivity | ebeace8 | 2007-01-05 16:36:47 -0800 | [diff] [blame] | 5340 | { |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 5341 | LIST_HEAD(invalid_list); |
Xiao Guangrong | 103ad25 | 2010-06-04 21:54:38 +0800 | [diff] [blame] | 5342 | |
Takuya Yoshikawa | 81f4f76 | 2013-03-21 19:34:27 +0900 | [diff] [blame] | 5343 | if (likely(kvm_mmu_available_pages(vcpu->kvm) >= KVM_MIN_FREE_MMU_PAGES)) |
Wanpeng Li | 26eeb53 | 2017-08-10 16:28:02 -0700 | [diff] [blame] | 5344 | return 0; |
Takuya Yoshikawa | 81f4f76 | 2013-03-21 19:34:27 +0900 | [diff] [blame] | 5345 | |
Takuya Yoshikawa | 5da5960 | 2013-03-06 16:06:58 +0900 | [diff] [blame] | 5346 | while (kvm_mmu_available_pages(vcpu->kvm) < KVM_REFILL_PAGES) { |
| 5347 | if (!prepare_zap_oldest_mmu_page(vcpu->kvm, &invalid_list)) |
| 5348 | break; |
Avi Kivity | ebeace8 | 2007-01-05 16:36:47 -0800 | [diff] [blame] | 5349 | |
Avi Kivity | 4cee576 | 2007-11-18 16:37:07 +0200 | [diff] [blame] | 5350 | ++vcpu->kvm->stat.mmu_recycled; |
Avi Kivity | ebeace8 | 2007-01-05 16:36:47 -0800 | [diff] [blame] | 5351 | } |
Xiao Guangrong | aa6bd18 | 2011-07-12 03:26:40 +0800 | [diff] [blame] | 5352 | kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list); |
Wanpeng Li | 26eeb53 | 2017-08-10 16:28:02 -0700 | [diff] [blame] | 5353 | |
| 5354 | if (!kvm_mmu_available_pages(vcpu->kvm)) |
| 5355 | return -ENOSPC; |
| 5356 | return 0; |
Avi Kivity | ebeace8 | 2007-01-05 16:36:47 -0800 | [diff] [blame] | 5357 | } |
Avi Kivity | ebeace8 | 2007-01-05 16:36:47 -0800 | [diff] [blame] | 5358 | |
Tom Lendacky | 1472775 | 2016-11-23 12:01:38 -0500 | [diff] [blame] | 5359 | int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t cr2, u64 error_code, |
Andre Przywara | dc25e89 | 2010-12-21 11:12:07 +0100 | [diff] [blame] | 5360 | void *insn, int insn_len) |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 5361 | { |
Sean Christopherson | 472faff | 2018-08-23 13:56:50 -0700 | [diff] [blame] | 5362 | int r, emulation_type = 0; |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 5363 | enum emulation_result er; |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 5364 | bool direct = vcpu->arch.mmu->direct_map; |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 5365 | |
Brijesh Singh | 618232e | 2017-08-17 18:36:57 +0200 | [diff] [blame] | 5366 | /* With shadow page tables, fault_address contains a GVA or nGPA. */ |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 5367 | if (vcpu->arch.mmu->direct_map) { |
Brijesh Singh | 618232e | 2017-08-17 18:36:57 +0200 | [diff] [blame] | 5368 | vcpu->arch.gpa_available = true; |
| 5369 | vcpu->arch.gpa_val = cr2; |
| 5370 | } |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 5371 | |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 5372 | r = RET_PF_INVALID; |
Takuya Yoshikawa | e9ee956 | 2016-02-22 17:23:41 +0900 | [diff] [blame] | 5373 | if (unlikely(error_code & PFERR_RSVD_MASK)) { |
| 5374 | r = handle_mmio_page_fault(vcpu, cr2, direct); |
Sean Christopherson | 472faff | 2018-08-23 13:56:50 -0700 | [diff] [blame] | 5375 | if (r == RET_PF_EMULATE) |
Takuya Yoshikawa | e9ee956 | 2016-02-22 17:23:41 +0900 | [diff] [blame] | 5376 | goto emulate; |
Takuya Yoshikawa | e9ee956 | 2016-02-22 17:23:41 +0900 | [diff] [blame] | 5377 | } |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 5378 | |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 5379 | if (r == RET_PF_INVALID) { |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 5380 | r = vcpu->arch.mmu->page_fault(vcpu, cr2, |
| 5381 | lower_32_bits(error_code), |
| 5382 | false); |
Paolo Bonzini | 9b8ebbd | 2017-08-17 15:03:32 +0200 | [diff] [blame] | 5383 | WARN_ON(r == RET_PF_INVALID); |
| 5384 | } |
| 5385 | |
| 5386 | if (r == RET_PF_RETRY) |
| 5387 | return 1; |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 5388 | if (r < 0) |
Takuya Yoshikawa | e9ee956 | 2016-02-22 17:23:41 +0900 | [diff] [blame] | 5389 | return r; |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 5390 | |
Tom Lendacky | 1472775 | 2016-11-23 12:01:38 -0500 | [diff] [blame] | 5391 | /* |
| 5392 | * Before emulating the instruction, check if the error code |
| 5393 | * was due to a RO violation while translating the guest page. |
| 5394 | * This can occur when using nested virtualization with nested |
| 5395 | * paging in both guests. If true, we simply unprotect the page |
| 5396 | * and resume the guest. |
Tom Lendacky | 1472775 | 2016-11-23 12:01:38 -0500 | [diff] [blame] | 5397 | */ |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 5398 | if (vcpu->arch.mmu->direct_map && |
Paolo Bonzini | eebed24 | 2016-11-28 14:39:58 +0100 | [diff] [blame] | 5399 | (error_code & PFERR_NESTED_GUEST_PAGE) == PFERR_NESTED_GUEST_PAGE) { |
Tom Lendacky | 1472775 | 2016-11-23 12:01:38 -0500 | [diff] [blame] | 5400 | kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(cr2)); |
| 5401 | return 1; |
| 5402 | } |
| 5403 | |
Sean Christopherson | 472faff | 2018-08-23 13:56:50 -0700 | [diff] [blame] | 5404 | /* |
| 5405 | * vcpu->arch.mmu.page_fault returned RET_PF_EMULATE, but we can still |
| 5406 | * optimistically try to just unprotect the page and let the processor |
| 5407 | * re-execute the instruction that caused the page fault. Do not allow |
| 5408 | * retrying MMIO emulation, as it's not only pointless but could also |
| 5409 | * cause us to enter an infinite loop because the processor will keep |
Sean Christopherson | 6c3dfeb | 2018-08-23 13:56:51 -0700 | [diff] [blame] | 5410 | * faulting on the non-existent MMIO address. Retrying an instruction |
| 5411 | * from a nested guest is also pointless and dangerous as we are only |
| 5412 | * explicitly shadowing L1's page tables, i.e. unprotecting something |
| 5413 | * for L1 isn't going to magically fix whatever issue cause L2 to fail. |
Sean Christopherson | 472faff | 2018-08-23 13:56:50 -0700 | [diff] [blame] | 5414 | */ |
Sean Christopherson | 6c3dfeb | 2018-08-23 13:56:51 -0700 | [diff] [blame] | 5415 | if (!mmio_info_in_cache(vcpu, cr2, direct) && !is_guest_mode(vcpu)) |
Sean Christopherson | 472faff | 2018-08-23 13:56:50 -0700 | [diff] [blame] | 5416 | emulation_type = EMULTYPE_ALLOW_RETRY; |
Takuya Yoshikawa | e9ee956 | 2016-02-22 17:23:41 +0900 | [diff] [blame] | 5417 | emulate: |
Brijesh Singh | 00b10fe | 2017-12-04 10:57:40 -0600 | [diff] [blame] | 5418 | /* |
| 5419 | * On AMD platforms, under certain conditions insn_len may be zero on #NPF. |
| 5420 | * This can happen if a guest gets a page-fault on data access but the HW |
| 5421 | * table walker is not able to read the instruction page (e.g instruction |
| 5422 | * page is not present in memory). In those cases we simply restart the |
Singh, Brijesh | 05d5a48 | 2019-02-15 17:24:12 +0000 | [diff] [blame] | 5423 | * guest, with the exception of AMD Erratum 1096 which is unrecoverable. |
Brijesh Singh | 00b10fe | 2017-12-04 10:57:40 -0600 | [diff] [blame] | 5424 | */ |
Singh, Brijesh | 05d5a48 | 2019-02-15 17:24:12 +0000 | [diff] [blame] | 5425 | if (unlikely(insn && !insn_len)) { |
| 5426 | if (!kvm_x86_ops->need_emulation_on_page_fault(vcpu)) |
| 5427 | return 1; |
| 5428 | } |
Brijesh Singh | 00b10fe | 2017-12-04 10:57:40 -0600 | [diff] [blame] | 5429 | |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 5430 | er = x86_emulate_instruction(vcpu, cr2, emulation_type, insn, insn_len); |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 5431 | |
| 5432 | switch (er) { |
| 5433 | case EMULATE_DONE: |
| 5434 | return 1; |
Paolo Bonzini | ac0a48c | 2013-06-25 18:24:41 +0200 | [diff] [blame] | 5435 | case EMULATE_USER_EXIT: |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 5436 | ++vcpu->stat.mmio_exits; |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 5437 | /* fall through */ |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 5438 | case EMULATE_FAIL: |
Avi Kivity | 3f5d18a | 2009-06-11 15:43:28 +0300 | [diff] [blame] | 5439 | return 0; |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 5440 | default: |
| 5441 | BUG(); |
| 5442 | } |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 5443 | } |
| 5444 | EXPORT_SYMBOL_GPL(kvm_mmu_page_fault); |
| 5445 | |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 5446 | void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva) |
| 5447 | { |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 5448 | struct kvm_mmu *mmu = vcpu->arch.mmu; |
Junaid Shahid | b94742c | 2018-06-27 14:59:20 -0700 | [diff] [blame] | 5449 | int i; |
Junaid Shahid | 7eb77e9 | 2018-06-27 14:59:16 -0700 | [diff] [blame] | 5450 | |
Junaid Shahid | faff875 | 2018-06-29 13:10:05 -0700 | [diff] [blame] | 5451 | /* INVLPG on a * non-canonical address is a NOP according to the SDM. */ |
| 5452 | if (is_noncanonical_address(gva, vcpu)) |
| 5453 | return; |
| 5454 | |
Junaid Shahid | 7eb77e9 | 2018-06-27 14:59:16 -0700 | [diff] [blame] | 5455 | mmu->invlpg(vcpu, gva, mmu->root_hpa); |
Junaid Shahid | 956bf35 | 2018-06-27 14:59:18 -0700 | [diff] [blame] | 5456 | |
| 5457 | /* |
| 5458 | * INVLPG is required to invalidate any global mappings for the VA, |
| 5459 | * irrespective of PCID. Since it would take us roughly similar amount |
Junaid Shahid | b94742c | 2018-06-27 14:59:20 -0700 | [diff] [blame] | 5460 | * of work to determine whether any of the prev_root mappings of the VA |
| 5461 | * is marked global, or to just sync it blindly, so we might as well |
| 5462 | * just always sync it. |
Junaid Shahid | 956bf35 | 2018-06-27 14:59:18 -0700 | [diff] [blame] | 5463 | * |
Junaid Shahid | b94742c | 2018-06-27 14:59:20 -0700 | [diff] [blame] | 5464 | * Mappings not reachable via the current cr3 or the prev_roots will be |
| 5465 | * synced when switching to that cr3, so nothing needs to be done here |
| 5466 | * for them. |
Junaid Shahid | 956bf35 | 2018-06-27 14:59:18 -0700 | [diff] [blame] | 5467 | */ |
Junaid Shahid | b94742c | 2018-06-27 14:59:20 -0700 | [diff] [blame] | 5468 | for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++) |
| 5469 | if (VALID_PAGE(mmu->prev_roots[i].hpa)) |
| 5470 | mmu->invlpg(vcpu, gva, mmu->prev_roots[i].hpa); |
Junaid Shahid | 956bf35 | 2018-06-27 14:59:18 -0700 | [diff] [blame] | 5471 | |
Junaid Shahid | faff875 | 2018-06-29 13:10:05 -0700 | [diff] [blame] | 5472 | kvm_x86_ops->tlb_flush_gva(vcpu, gva); |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 5473 | ++vcpu->stat.invlpg; |
| 5474 | } |
| 5475 | EXPORT_SYMBOL_GPL(kvm_mmu_invlpg); |
| 5476 | |
Junaid Shahid | eb4b248 | 2018-06-27 14:59:14 -0700 | [diff] [blame] | 5477 | void kvm_mmu_invpcid_gva(struct kvm_vcpu *vcpu, gva_t gva, unsigned long pcid) |
| 5478 | { |
Vitaly Kuznetsov | 44dd3ff | 2018-10-08 21:28:05 +0200 | [diff] [blame] | 5479 | struct kvm_mmu *mmu = vcpu->arch.mmu; |
Junaid Shahid | faff875 | 2018-06-29 13:10:05 -0700 | [diff] [blame] | 5480 | bool tlb_flush = false; |
Junaid Shahid | b94742c | 2018-06-27 14:59:20 -0700 | [diff] [blame] | 5481 | uint i; |
Junaid Shahid | eb4b248 | 2018-06-27 14:59:14 -0700 | [diff] [blame] | 5482 | |
| 5483 | if (pcid == kvm_get_active_pcid(vcpu)) { |
Junaid Shahid | 7eb77e9 | 2018-06-27 14:59:16 -0700 | [diff] [blame] | 5484 | mmu->invlpg(vcpu, gva, mmu->root_hpa); |
Junaid Shahid | faff875 | 2018-06-29 13:10:05 -0700 | [diff] [blame] | 5485 | tlb_flush = true; |
Junaid Shahid | eb4b248 | 2018-06-27 14:59:14 -0700 | [diff] [blame] | 5486 | } |
| 5487 | |
Junaid Shahid | b94742c | 2018-06-27 14:59:20 -0700 | [diff] [blame] | 5488 | for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++) { |
| 5489 | if (VALID_PAGE(mmu->prev_roots[i].hpa) && |
| 5490 | pcid == kvm_get_pcid(vcpu, mmu->prev_roots[i].cr3)) { |
| 5491 | mmu->invlpg(vcpu, gva, mmu->prev_roots[i].hpa); |
| 5492 | tlb_flush = true; |
| 5493 | } |
Junaid Shahid | 956bf35 | 2018-06-27 14:59:18 -0700 | [diff] [blame] | 5494 | } |
Junaid Shahid | ade61e2 | 2018-06-27 14:59:15 -0700 | [diff] [blame] | 5495 | |
Junaid Shahid | faff875 | 2018-06-29 13:10:05 -0700 | [diff] [blame] | 5496 | if (tlb_flush) |
| 5497 | kvm_x86_ops->tlb_flush_gva(vcpu, gva); |
| 5498 | |
Junaid Shahid | eb4b248 | 2018-06-27 14:59:14 -0700 | [diff] [blame] | 5499 | ++vcpu->stat.invlpg; |
| 5500 | |
| 5501 | /* |
Junaid Shahid | b94742c | 2018-06-27 14:59:20 -0700 | [diff] [blame] | 5502 | * Mappings not reachable via the current cr3 or the prev_roots will be |
| 5503 | * synced when switching to that cr3, so nothing needs to be done here |
| 5504 | * for them. |
Junaid Shahid | eb4b248 | 2018-06-27 14:59:14 -0700 | [diff] [blame] | 5505 | */ |
| 5506 | } |
| 5507 | EXPORT_SYMBOL_GPL(kvm_mmu_invpcid_gva); |
| 5508 | |
Joerg Roedel | 1855267 | 2008-02-07 13:47:41 +0100 | [diff] [blame] | 5509 | void kvm_enable_tdp(void) |
| 5510 | { |
| 5511 | tdp_enabled = true; |
| 5512 | } |
| 5513 | EXPORT_SYMBOL_GPL(kvm_enable_tdp); |
| 5514 | |
Joerg Roedel | 5f4cb66 | 2008-07-14 20:36:36 +0200 | [diff] [blame] | 5515 | void kvm_disable_tdp(void) |
| 5516 | { |
| 5517 | tdp_enabled = false; |
| 5518 | } |
| 5519 | EXPORT_SYMBOL_GPL(kvm_disable_tdp); |
| 5520 | |
Xiao Guangrong | 13d268c | 2016-02-24 17:51:16 +0800 | [diff] [blame] | 5521 | |
Xiao Guangrong | 1bad2b2 | 2015-05-13 14:42:23 +0800 | [diff] [blame] | 5522 | /* The return value indicates if tlb flush on all vcpus is needed. */ |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 5523 | typedef bool (*slot_level_handler) (struct kvm *kvm, struct kvm_rmap_head *rmap_head); |
Xiao Guangrong | 1bad2b2 | 2015-05-13 14:42:23 +0800 | [diff] [blame] | 5524 | |
| 5525 | /* The caller should hold mmu-lock before calling this function. */ |
David Woodhouse | 928a4c3 | 2018-02-10 23:39:24 +0000 | [diff] [blame] | 5526 | static __always_inline bool |
Xiao Guangrong | 1bad2b2 | 2015-05-13 14:42:23 +0800 | [diff] [blame] | 5527 | slot_handle_level_range(struct kvm *kvm, struct kvm_memory_slot *memslot, |
| 5528 | slot_level_handler fn, int start_level, int end_level, |
| 5529 | gfn_t start_gfn, gfn_t end_gfn, bool lock_flush_tlb) |
| 5530 | { |
| 5531 | struct slot_rmap_walk_iterator iterator; |
| 5532 | bool flush = false; |
| 5533 | |
| 5534 | for_each_slot_rmap_range(memslot, start_level, end_level, start_gfn, |
| 5535 | end_gfn, &iterator) { |
| 5536 | if (iterator.rmap) |
| 5537 | flush |= fn(kvm, iterator.rmap); |
| 5538 | |
| 5539 | if (need_resched() || spin_needbreak(&kvm->mmu_lock)) { |
| 5540 | if (flush && lock_flush_tlb) { |
Ben Gardon | f285c63 | 2019-03-12 11:45:59 -0700 | [diff] [blame] | 5541 | kvm_flush_remote_tlbs_with_address(kvm, |
| 5542 | start_gfn, |
| 5543 | iterator.gfn - start_gfn + 1); |
Xiao Guangrong | 1bad2b2 | 2015-05-13 14:42:23 +0800 | [diff] [blame] | 5544 | flush = false; |
| 5545 | } |
| 5546 | cond_resched_lock(&kvm->mmu_lock); |
| 5547 | } |
| 5548 | } |
| 5549 | |
| 5550 | if (flush && lock_flush_tlb) { |
Ben Gardon | f285c63 | 2019-03-12 11:45:59 -0700 | [diff] [blame] | 5551 | kvm_flush_remote_tlbs_with_address(kvm, start_gfn, |
| 5552 | end_gfn - start_gfn + 1); |
Xiao Guangrong | 1bad2b2 | 2015-05-13 14:42:23 +0800 | [diff] [blame] | 5553 | flush = false; |
| 5554 | } |
| 5555 | |
| 5556 | return flush; |
| 5557 | } |
| 5558 | |
David Woodhouse | 928a4c3 | 2018-02-10 23:39:24 +0000 | [diff] [blame] | 5559 | static __always_inline bool |
Xiao Guangrong | 1bad2b2 | 2015-05-13 14:42:23 +0800 | [diff] [blame] | 5560 | slot_handle_level(struct kvm *kvm, struct kvm_memory_slot *memslot, |
| 5561 | slot_level_handler fn, int start_level, int end_level, |
| 5562 | bool lock_flush_tlb) |
| 5563 | { |
| 5564 | return slot_handle_level_range(kvm, memslot, fn, start_level, |
| 5565 | end_level, memslot->base_gfn, |
| 5566 | memslot->base_gfn + memslot->npages - 1, |
| 5567 | lock_flush_tlb); |
| 5568 | } |
| 5569 | |
David Woodhouse | 928a4c3 | 2018-02-10 23:39:24 +0000 | [diff] [blame] | 5570 | static __always_inline bool |
Xiao Guangrong | 1bad2b2 | 2015-05-13 14:42:23 +0800 | [diff] [blame] | 5571 | slot_handle_all_level(struct kvm *kvm, struct kvm_memory_slot *memslot, |
| 5572 | slot_level_handler fn, bool lock_flush_tlb) |
| 5573 | { |
| 5574 | return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL, |
| 5575 | PT_MAX_HUGEPAGE_LEVEL, lock_flush_tlb); |
| 5576 | } |
| 5577 | |
David Woodhouse | 928a4c3 | 2018-02-10 23:39:24 +0000 | [diff] [blame] | 5578 | static __always_inline bool |
Xiao Guangrong | 1bad2b2 | 2015-05-13 14:42:23 +0800 | [diff] [blame] | 5579 | slot_handle_large_level(struct kvm *kvm, struct kvm_memory_slot *memslot, |
| 5580 | slot_level_handler fn, bool lock_flush_tlb) |
| 5581 | { |
| 5582 | return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL + 1, |
| 5583 | PT_MAX_HUGEPAGE_LEVEL, lock_flush_tlb); |
| 5584 | } |
| 5585 | |
David Woodhouse | 928a4c3 | 2018-02-10 23:39:24 +0000 | [diff] [blame] | 5586 | static __always_inline bool |
Xiao Guangrong | 1bad2b2 | 2015-05-13 14:42:23 +0800 | [diff] [blame] | 5587 | slot_handle_leaf(struct kvm *kvm, struct kvm_memory_slot *memslot, |
| 5588 | slot_level_handler fn, bool lock_flush_tlb) |
| 5589 | { |
| 5590 | return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL, |
| 5591 | PT_PAGE_TABLE_LEVEL, lock_flush_tlb); |
| 5592 | } |
| 5593 | |
Takuya Yoshikawa | b99db1d | 2013-01-08 19:44:48 +0900 | [diff] [blame] | 5594 | static void free_mmu_pages(struct kvm_vcpu *vcpu) |
| 5595 | { |
Kai Huang | d91ffee | 2015-01-12 15:28:54 +0800 | [diff] [blame] | 5596 | free_page((unsigned long)vcpu->arch.mmu->pae_root); |
| 5597 | free_page((unsigned long)vcpu->arch.mmu->lm_root); |
Takuya Yoshikawa | 6b81b05 | 2013-01-08 19:47:33 +0900 | [diff] [blame] | 5598 | } |
Xiao Guangrong | 198c74f | 2014-04-17 17:06:16 +0800 | [diff] [blame] | 5599 | |
Takuya Yoshikawa | 6b81b05 | 2013-01-08 19:47:33 +0900 | [diff] [blame] | 5600 | static int alloc_mmu_pages(struct kvm_vcpu *vcpu) |
Avi Kivity | 8234b22 | 2010-12-27 12:08:45 +0200 | [diff] [blame] | 5601 | { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5602 | struct page *page; |
Takuya Yoshikawa | b99db1d | 2013-01-08 19:44:48 +0900 | [diff] [blame] | 5603 | int i; |
Takuya Yoshikawa | 9d1beef | 2013-01-08 19:46:48 +0900 | [diff] [blame] | 5604 | |
Sean Christopherson | b6b80c7 | 2019-06-13 10:22:23 -0700 | [diff] [blame^] | 5605 | /* |
| 5606 | * When using PAE paging, the four PDPTEs are treated as 'root' pages, |
| 5607 | * while the PDP table is a per-vCPU construct that's allocated at MMU |
| 5608 | * creation. When emulating 32-bit mode, cr3 is only 32 bits even on |
| 5609 | * x86_64. Therefore we need to allocate the PDP table in the first |
| 5610 | * 4GB of memory, which happens to fit the DMA32 zone. Except for |
| 5611 | * SVM's 32-bit NPT support, TDP paging doesn't use PAE paging and can |
| 5612 | * skip allocating the PDP table. |
| 5613 | */ |
| 5614 | if (tdp_enabled && kvm_x86_ops->get_tdp_level(vcpu) > PT32E_ROOT_LEVEL) |
Xiao Guangrong | 198c74f | 2014-04-17 17:06:16 +0800 | [diff] [blame] | 5615 | return 0; |
| 5616 | |
Ben Gardon | 254272c | 2019-02-11 11:02:50 -0800 | [diff] [blame] | 5617 | page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_DMA32); |
Xiao Guangrong | 198c74f | 2014-04-17 17:06:16 +0800 | [diff] [blame] | 5618 | if (!page) |
| 5619 | return -ENOMEM; |
| 5620 | |
| 5621 | vcpu->arch.mmu->pae_root = page_address(page); |
| 5622 | for (i = 0; i < 4; ++i) |
| 5623 | vcpu->arch.mmu->pae_root[i] = INVALID_PAGE; |
| 5624 | |
| 5625 | return 0; |
| 5626 | } |
| 5627 | |
Kai Huang | d91ffee | 2015-01-12 15:28:54 +0800 | [diff] [blame] | 5628 | int kvm_mmu_create(struct kvm_vcpu *vcpu) |
| 5629 | { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5630 | uint i; |
Avi Kivity | 37a7d8b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 5631 | |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5632 | vcpu->arch.mmu = &vcpu->arch.root_mmu; |
| 5633 | vcpu->arch.walk_mmu = &vcpu->arch.root_mmu; |
| 5634 | |
| 5635 | vcpu->arch.root_mmu.root_hpa = INVALID_PAGE; |
Linus Torvalds | 636deed | 2019-03-15 15:00:28 -0700 | [diff] [blame] | 5636 | vcpu->arch.root_mmu.root_cr3 = 0; |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5637 | vcpu->arch.root_mmu.translate_gpa = translate_gpa; |
| 5638 | for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++) |
| 5639 | vcpu->arch.root_mmu.prev_roots[i] = KVM_MMU_ROOT_INFO_INVALID; |
| 5640 | |
| 5641 | vcpu->arch.guest_mmu.root_hpa = INVALID_PAGE; |
Linus Torvalds | 636deed | 2019-03-15 15:00:28 -0700 | [diff] [blame] | 5642 | vcpu->arch.guest_mmu.root_cr3 = 0; |
Xiao Guangrong | 0d53679 | 2015-05-13 14:42:20 +0800 | [diff] [blame] | 5643 | vcpu->arch.guest_mmu.translate_gpa = translate_gpa; |
| 5644 | for (i = 0; i < KVM_MMU_NUM_PREV_ROOTS; i++) |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5645 | vcpu->arch.guest_mmu.prev_roots[i] = KVM_MMU_ROOT_INFO_INVALID; |
| 5646 | |
| 5647 | vcpu->arch.nested_mmu.translate_gpa = translate_nested_gpa; |
| 5648 | return alloc_mmu_pages(vcpu); |
Xiao Guangrong | decf633 | 2015-04-14 12:04:10 +0800 | [diff] [blame] | 5649 | } |
| 5650 | |
Xiao Guangrong | efdfe53 | 2015-05-13 14:42:27 +0800 | [diff] [blame] | 5651 | static void kvm_mmu_invalidate_zap_pages_in_memslot(struct kvm *kvm, |
| 5652 | struct kvm_memory_slot *slot, |
| 5653 | struct kvm_page_track_notifier_node *node) |
| 5654 | { |
Sean Christopherson | 4e10313 | 2019-02-05 13:01:21 -0800 | [diff] [blame] | 5655 | struct kvm_mmu_page *sp; |
| 5656 | LIST_HEAD(invalid_list); |
| 5657 | unsigned long i; |
| 5658 | bool flush; |
| 5659 | gfn_t gfn; |
| 5660 | |
| 5661 | spin_lock(&kvm->mmu_lock); |
| 5662 | |
| 5663 | if (list_empty(&kvm->arch.active_mmu_pages)) |
| 5664 | goto out_unlock; |
| 5665 | |
| 5666 | flush = slot_handle_all_level(kvm, slot, kvm_zap_rmapp, false); |
| 5667 | |
| 5668 | for (i = 0; i < slot->npages; i++) { |
| 5669 | gfn = slot->base_gfn + i; |
| 5670 | |
| 5671 | for_each_valid_sp(kvm, sp, gfn) { |
| 5672 | if (sp->gfn != gfn) |
| 5673 | continue; |
| 5674 | |
| 5675 | kvm_mmu_prepare_zap_page(kvm, sp, &invalid_list); |
| 5676 | } |
| 5677 | if (need_resched() || spin_needbreak(&kvm->mmu_lock)) { |
| 5678 | kvm_mmu_remote_flush_or_zap(kvm, &invalid_list, flush); |
| 5679 | flush = false; |
| 5680 | cond_resched_lock(&kvm->mmu_lock); |
| 5681 | } |
| 5682 | } |
| 5683 | kvm_mmu_remote_flush_or_zap(kvm, &invalid_list, flush); |
| 5684 | |
| 5685 | out_unlock: |
| 5686 | spin_unlock(&kvm->mmu_lock); |
Xiao Guangrong | decf633 | 2015-04-14 12:04:10 +0800 | [diff] [blame] | 5687 | } |
| 5688 | |
Xiao Guangrong | efdfe53 | 2015-05-13 14:42:27 +0800 | [diff] [blame] | 5689 | void kvm_mmu_init_vm(struct kvm *kvm) |
| 5690 | { |
| 5691 | struct kvm_page_track_notifier_node *node = &kvm->arch.mmu_sp_tracker; |
| 5692 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 5693 | node->track_write = kvm_mmu_pte_write; |
Xiao Guangrong | efdfe53 | 2015-05-13 14:42:27 +0800 | [diff] [blame] | 5694 | node->track_flush_slot = kvm_mmu_invalidate_zap_pages_in_memslot; |
| 5695 | kvm_page_track_register_notifier(kvm, node); |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 5696 | } |
| 5697 | |
| 5698 | void kvm_mmu_uninit_vm(struct kvm *kvm) |
| 5699 | { |
Xiao Guangrong | efdfe53 | 2015-05-13 14:42:27 +0800 | [diff] [blame] | 5700 | struct kvm_page_track_notifier_node *node = &kvm->arch.mmu_sp_tracker; |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 5701 | |
| 5702 | kvm_page_track_unregister_notifier(kvm, node); |
| 5703 | } |
| 5704 | |
Xiao Guangrong | decf633 | 2015-04-14 12:04:10 +0800 | [diff] [blame] | 5705 | void kvm_zap_gfn_range(struct kvm *kvm, gfn_t gfn_start, gfn_t gfn_end) |
Xiao Guangrong | efdfe53 | 2015-05-13 14:42:27 +0800 | [diff] [blame] | 5706 | { |
| 5707 | struct kvm_memslots *slots; |
| 5708 | struct kvm_memory_slot *memslot; |
| 5709 | int i; |
| 5710 | |
| 5711 | spin_lock(&kvm->mmu_lock); |
| 5712 | for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) { |
| 5713 | slots = __kvm_memslots(kvm, i); |
| 5714 | kvm_for_each_memslot(memslot, slots) { |
| 5715 | gfn_t start, end; |
| 5716 | |
| 5717 | start = max(gfn_start, memslot->base_gfn); |
| 5718 | end = min(gfn_end, memslot->base_gfn + memslot->npages); |
| 5719 | if (start >= end) |
| 5720 | continue; |
| 5721 | |
Ben Gardon | 92da008 | 2019-03-12 11:45:58 -0700 | [diff] [blame] | 5722 | slot_handle_level_range(kvm, memslot, kvm_zap_rmapp, |
| 5723 | PT_PAGE_TABLE_LEVEL, PT_MAX_HUGEPAGE_LEVEL, |
| 5724 | start, end - 1, true); |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 5725 | } |
Xiao Guangrong | efdfe53 | 2015-05-13 14:42:27 +0800 | [diff] [blame] | 5726 | } |
| 5727 | |
| 5728 | spin_unlock(&kvm->mmu_lock); |
| 5729 | } |
| 5730 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 5731 | static bool slot_rmap_write_protect(struct kvm *kvm, |
| 5732 | struct kvm_rmap_head *rmap_head) |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5733 | { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 5734 | return __rmap_write_protect(kvm, rmap_head, false); |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5735 | } |
| 5736 | |
Dor Laor | e0fa826 | 2007-03-30 13:06:33 +0300 | [diff] [blame] | 5737 | void kvm_mmu_slot_remove_write_access(struct kvm *kvm, |
| 5738 | struct kvm_memory_slot *memslot) |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 5739 | { |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5740 | bool flush; |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 5741 | |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5742 | spin_lock(&kvm->mmu_lock); |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5743 | flush = slot_handle_all_level(kvm, memslot, slot_rmap_write_protect, |
| 5744 | false); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5745 | spin_unlock(&kvm->mmu_lock); |
| 5746 | |
| 5747 | /* |
Xiao Guangrong | e7d11c7 | 2013-05-31 08:36:27 +0800 | [diff] [blame] | 5748 | * kvm_mmu_slot_remove_write_access() and kvm_vm_ioctl_get_dirty_log() |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5749 | * which do tlb flush out of mmu-lock should be serialized by |
| 5750 | * kvm->slots_lock otherwise tlb flush would be missed. |
| 5751 | */ |
Xiao Guangrong | e7d11c7 | 2013-05-31 08:36:27 +0800 | [diff] [blame] | 5752 | lockdep_assert_held(&kvm->slots_lock); |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5753 | |
| 5754 | /* |
| 5755 | * We can flush all the TLBs out of the mmu lock without TLB |
| 5756 | * corruption since we just change the spte from writable to |
Xiao Guangrong | e7d11c7 | 2013-05-31 08:36:27 +0800 | [diff] [blame] | 5757 | * readonly so that we only need to care the case of changing |
| 5758 | * spte from present to present (changing the spte from present |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5759 | * to nonpresent will flush all the TLBs immediately), in other |
| 5760 | * words, the only case we care is mmu_spte_update() where we |
Wei Yang | bdd303c | 2018-11-05 14:45:03 +0800 | [diff] [blame] | 5761 | * have checked SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5762 | * instead of PT_WRITABLE_MASK, that means it does not depend |
| 5763 | * on PT_WRITABLE_MASK anymore. |
| 5764 | */ |
| 5765 | if (flush) |
Lan Tianyu | c3134ce | 2018-12-06 21:21:09 +0800 | [diff] [blame] | 5766 | kvm_flush_remote_tlbs_with_address(kvm, memslot->base_gfn, |
| 5767 | memslot->npages); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5768 | } |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5769 | |
| 5770 | static bool kvm_mmu_zap_collapsible_spte(struct kvm *kvm, |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 5771 | struct kvm_rmap_head *rmap_head) |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5772 | { |
| 5773 | u64 *sptep; |
| 5774 | struct rmap_iterator iter; |
| 5775 | int need_tlb_flush = 0; |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 5776 | kvm_pfn_t pfn; |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5777 | struct kvm_mmu_page *sp; |
| 5778 | |
| 5779 | restart: |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 5780 | for_each_rmap_spte(rmap_head, &iter, sptep) { |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5781 | sp = page_header(__pa(sptep)); |
| 5782 | pfn = spte_to_pfn(*sptep); |
| 5783 | |
| 5784 | /* |
Xiao Guangrong | decf633 | 2015-04-14 12:04:10 +0800 | [diff] [blame] | 5785 | * We cannot do huge page mapping for indirect shadow pages, |
| 5786 | * which are found on the last rmap (level = 1) when not using |
| 5787 | * tdp; such shadow pages are synced with the page table in |
| 5788 | * the guest, and the guest page table is using 4K page size |
| 5789 | * mapping if the indirect sp has level = 1. |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5790 | */ |
| 5791 | if (sp->role.direct && |
| 5792 | !kvm_is_reserved_pfn(pfn) && |
Andrea Arcangeli | 127393f | 2016-05-05 16:22:20 -0700 | [diff] [blame] | 5793 | PageTransCompoundMap(pfn_to_page(pfn))) { |
Wei Yang | e791238 | 2018-10-04 10:04:23 +0800 | [diff] [blame] | 5794 | pte_list_remove(rmap_head, sptep); |
Lan Tianyu | 40ef75a | 2018-12-06 21:21:08 +0800 | [diff] [blame] | 5795 | |
| 5796 | if (kvm_available_flush_tlb_with_range()) |
| 5797 | kvm_flush_remote_tlbs_with_address(kvm, sp->gfn, |
| 5798 | KVM_PAGES_PER_HPAGE(sp->role.level)); |
| 5799 | else |
| 5800 | need_tlb_flush = 1; |
| 5801 | |
Xiao Guangrong | 0d53679 | 2015-05-13 14:42:20 +0800 | [diff] [blame] | 5802 | goto restart; |
| 5803 | } |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5804 | } |
| 5805 | |
| 5806 | return need_tlb_flush; |
| 5807 | } |
| 5808 | |
| 5809 | void kvm_mmu_zap_collapsible_sptes(struct kvm *kvm, |
Paolo Bonzini | f36f3f2 | 2015-05-18 13:20:23 +0200 | [diff] [blame] | 5810 | const struct kvm_memory_slot *memslot) |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5811 | { |
Paolo Bonzini | f36f3f2 | 2015-05-18 13:20:23 +0200 | [diff] [blame] | 5812 | /* FIXME: const-ify all uses of struct kvm_memory_slot. */ |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5813 | spin_lock(&kvm->mmu_lock); |
Paolo Bonzini | f36f3f2 | 2015-05-18 13:20:23 +0200 | [diff] [blame] | 5814 | slot_handle_leaf(kvm, (struct kvm_memory_slot *)memslot, |
| 5815 | kvm_mmu_zap_collapsible_spte, true); |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5816 | spin_unlock(&kvm->mmu_lock); |
| 5817 | } |
| 5818 | |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5819 | void kvm_mmu_slot_leaf_clear_dirty(struct kvm *kvm, |
| 5820 | struct kvm_memory_slot *memslot) |
| 5821 | { |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5822 | bool flush; |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5823 | |
| 5824 | spin_lock(&kvm->mmu_lock); |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5825 | flush = slot_handle_leaf(kvm, memslot, __rmap_clear_dirty, false); |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5826 | spin_unlock(&kvm->mmu_lock); |
| 5827 | |
| 5828 | lockdep_assert_held(&kvm->slots_lock); |
| 5829 | |
| 5830 | /* |
| 5831 | * It's also safe to flush TLBs out of mmu lock here as currently this |
| 5832 | * function is only used for dirty logging, in which case flushing TLB |
| 5833 | * out of mmu lock also guarantees no dirty pages will be lost in |
| 5834 | * dirty_bitmap. |
| 5835 | */ |
| 5836 | if (flush) |
Lan Tianyu | c3134ce | 2018-12-06 21:21:09 +0800 | [diff] [blame] | 5837 | kvm_flush_remote_tlbs_with_address(kvm, memslot->base_gfn, |
| 5838 | memslot->npages); |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5839 | } |
| 5840 | EXPORT_SYMBOL_GPL(kvm_mmu_slot_leaf_clear_dirty); |
| 5841 | |
| 5842 | void kvm_mmu_slot_largepage_remove_write_access(struct kvm *kvm, |
| 5843 | struct kvm_memory_slot *memslot) |
| 5844 | { |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5845 | bool flush; |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5846 | |
| 5847 | spin_lock(&kvm->mmu_lock); |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5848 | flush = slot_handle_large_level(kvm, memslot, slot_rmap_write_protect, |
| 5849 | false); |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5850 | spin_unlock(&kvm->mmu_lock); |
| 5851 | |
| 5852 | /* see kvm_mmu_slot_remove_write_access */ |
| 5853 | lockdep_assert_held(&kvm->slots_lock); |
| 5854 | |
| 5855 | if (flush) |
Lan Tianyu | c3134ce | 2018-12-06 21:21:09 +0800 | [diff] [blame] | 5856 | kvm_flush_remote_tlbs_with_address(kvm, memslot->base_gfn, |
| 5857 | memslot->npages); |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5858 | } |
| 5859 | EXPORT_SYMBOL_GPL(kvm_mmu_slot_largepage_remove_write_access); |
| 5860 | |
| 5861 | void kvm_mmu_slot_set_dirty(struct kvm *kvm, |
| 5862 | struct kvm_memory_slot *memslot) |
| 5863 | { |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5864 | bool flush; |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5865 | |
| 5866 | spin_lock(&kvm->mmu_lock); |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5867 | flush = slot_handle_all_level(kvm, memslot, __rmap_set_dirty, false); |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5868 | spin_unlock(&kvm->mmu_lock); |
| 5869 | |
| 5870 | lockdep_assert_held(&kvm->slots_lock); |
| 5871 | |
| 5872 | /* see kvm_mmu_slot_leaf_clear_dirty */ |
| 5873 | if (flush) |
Lan Tianyu | c3134ce | 2018-12-06 21:21:09 +0800 | [diff] [blame] | 5874 | kvm_flush_remote_tlbs_with_address(kvm, memslot->base_gfn, |
| 5875 | memslot->npages); |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5876 | } |
| 5877 | EXPORT_SYMBOL_GPL(kvm_mmu_slot_set_dirty); |
| 5878 | |
Sean Christopherson | 8ab3c47 | 2019-02-05 13:01:37 -0800 | [diff] [blame] | 5879 | static void __kvm_mmu_zap_all(struct kvm *kvm, bool mmio_only) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5880 | { |
| 5881 | struct kvm_mmu_page *sp, *node; |
Sean Christopherson | 7390de1 | 2019-02-05 13:01:31 -0800 | [diff] [blame] | 5882 | LIST_HEAD(invalid_list); |
Sean Christopherson | 83cdb56 | 2019-02-05 13:01:35 -0800 | [diff] [blame] | 5883 | int ign; |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5884 | |
Sean Christopherson | 7390de1 | 2019-02-05 13:01:31 -0800 | [diff] [blame] | 5885 | spin_lock(&kvm->mmu_lock); |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5886 | restart: |
Sean Christopherson | 8a674ad | 2019-02-05 13:01:32 -0800 | [diff] [blame] | 5887 | list_for_each_entry_safe(sp, node, &kvm->arch.active_mmu_pages, link) { |
Sean Christopherson | 8ab3c47 | 2019-02-05 13:01:37 -0800 | [diff] [blame] | 5888 | if (mmio_only && !sp->mmio_cached) |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5889 | continue; |
Sean Christopherson | 8a674ad | 2019-02-05 13:01:32 -0800 | [diff] [blame] | 5890 | if (sp->role.invalid && sp->root_count) |
| 5891 | continue; |
Sean Christopherson | 24efe61 | 2019-02-05 13:01:36 -0800 | [diff] [blame] | 5892 | if (__kvm_mmu_prepare_zap_page(kvm, sp, &invalid_list, &ign)) { |
Sean Christopherson | 8ab3c47 | 2019-02-05 13:01:37 -0800 | [diff] [blame] | 5893 | WARN_ON_ONCE(mmio_only); |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5894 | goto restart; |
| 5895 | } |
Sean Christopherson | 24efe61 | 2019-02-05 13:01:36 -0800 | [diff] [blame] | 5896 | if (cond_resched_lock(&kvm->mmu_lock)) |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5897 | goto restart; |
| 5898 | } |
| 5899 | |
Sean Christopherson | 4771450 | 2019-02-05 13:01:23 -0800 | [diff] [blame] | 5900 | kvm_mmu_commit_zap_page(kvm, &invalid_list); |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5901 | spin_unlock(&kvm->mmu_lock); |
| 5902 | } |
| 5903 | |
Sean Christopherson | 8ab3c47 | 2019-02-05 13:01:37 -0800 | [diff] [blame] | 5904 | void kvm_mmu_zap_all(struct kvm *kvm) |
Xiao Guangrong | 365c886 | 2013-05-31 08:36:29 +0800 | [diff] [blame] | 5905 | { |
Sean Christopherson | 8ab3c47 | 2019-02-05 13:01:37 -0800 | [diff] [blame] | 5906 | return __kvm_mmu_zap_all(kvm, false); |
Xiao Guangrong | 365c886 | 2013-05-31 08:36:29 +0800 | [diff] [blame] | 5907 | } |
| 5908 | |
Sean Christopherson | 1524825 | 2019-02-05 12:54:17 -0800 | [diff] [blame] | 5909 | void kvm_mmu_invalidate_mmio_sptes(struct kvm *kvm, u64 gen) |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 5910 | { |
Sean Christopherson | 164bf7e | 2019-02-05 13:01:18 -0800 | [diff] [blame] | 5911 | WARN_ON(gen & KVM_MEMSLOT_GEN_UPDATE_IN_PROGRESS); |
Sean Christopherson | e1359e2 | 2019-02-05 13:01:12 -0800 | [diff] [blame] | 5912 | |
Sean Christopherson | 164bf7e | 2019-02-05 13:01:18 -0800 | [diff] [blame] | 5913 | gen &= MMIO_SPTE_GEN_MASK; |
Sean Christopherson | e1359e2 | 2019-02-05 13:01:12 -0800 | [diff] [blame] | 5914 | |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 5915 | /* |
Sean Christopherson | e1359e2 | 2019-02-05 13:01:12 -0800 | [diff] [blame] | 5916 | * Generation numbers are incremented in multiples of the number of |
| 5917 | * address spaces in order to provide unique generations across all |
| 5918 | * address spaces. Strip what is effectively the address space |
| 5919 | * modifier prior to checking for a wrap of the MMIO generation so |
| 5920 | * that a wrap in any address space is detected. |
| 5921 | */ |
| 5922 | gen &= ~((u64)KVM_ADDRESS_SPACE_NUM - 1); |
| 5923 | |
| 5924 | /* |
| 5925 | * The very rare case: if the MMIO generation number has wrapped, |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 5926 | * zap all shadow pages. |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 5927 | */ |
Sean Christopherson | e1359e2 | 2019-02-05 13:01:12 -0800 | [diff] [blame] | 5928 | if (unlikely(gen == 0)) { |
Bandan Das | ae0f549 | 2016-11-15 01:36:18 -0500 | [diff] [blame] | 5929 | kvm_debug_ratelimited("kvm: zapping shadow pages for mmio generation wraparound\n"); |
Sean Christopherson | 8ab3c47 | 2019-02-05 13:01:37 -0800 | [diff] [blame] | 5930 | __kvm_mmu_zap_all(kvm, true); |
Takuya Yoshikawa | 7a2e8aa | 2013-06-21 01:34:31 +0900 | [diff] [blame] | 5931 | } |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 5932 | } |
| 5933 | |
Dave Chinner | 70534a7 | 2013-08-28 10:18:14 +1000 | [diff] [blame] | 5934 | static unsigned long |
| 5935 | mmu_shrink_scan(struct shrinker *shrink, struct shrink_control *sc) |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5936 | { |
| 5937 | struct kvm *kvm; |
Ying Han | 1495f23 | 2011-05-24 17:12:27 -0700 | [diff] [blame] | 5938 | int nr_to_scan = sc->nr_to_scan; |
Dave Chinner | 70534a7 | 2013-08-28 10:18:14 +1000 | [diff] [blame] | 5939 | unsigned long freed = 0; |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5940 | |
Paolo Bonzini | 2f303b7 | 2013-09-25 13:53:07 +0200 | [diff] [blame] | 5941 | spin_lock(&kvm_lock); |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5942 | |
| 5943 | list_for_each_entry(kvm, &vm_list, vm_list) { |
Jan Kiszka | 3d56cbd | 2011-12-02 18:35:24 +0100 | [diff] [blame] | 5944 | int idx; |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 5945 | LIST_HEAD(invalid_list); |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5946 | |
Gleb Natapov | 1952639 | 2012-06-04 14:53:23 +0300 | [diff] [blame] | 5947 | /* |
Takuya Yoshikawa | 35f2d16 | 2012-08-20 18:35:39 +0900 | [diff] [blame] | 5948 | * Never scan more than sc->nr_to_scan VM instances. |
| 5949 | * Will not hit this condition practically since we do not try |
| 5950 | * to shrink more than one VM and it is very unlikely to see |
| 5951 | * !n_used_mmu_pages so many times. |
| 5952 | */ |
| 5953 | if (!nr_to_scan--) |
| 5954 | break; |
| 5955 | /* |
Gleb Natapov | 1952639 | 2012-06-04 14:53:23 +0300 | [diff] [blame] | 5956 | * n_used_mmu_pages is accessed without holding kvm->mmu_lock |
| 5957 | * here. We may skip a VM instance errorneosly, but we do not |
| 5958 | * want to shrink a VM that only started to populate its MMU |
| 5959 | * anyway. |
| 5960 | */ |
Sean Christopherson | 52d5dedc | 2019-02-05 13:01:26 -0800 | [diff] [blame] | 5961 | if (!kvm->arch.n_used_mmu_pages) |
Gleb Natapov | 1952639 | 2012-06-04 14:53:23 +0300 | [diff] [blame] | 5962 | continue; |
Gleb Natapov | 1952639 | 2012-06-04 14:53:23 +0300 | [diff] [blame] | 5963 | |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 5964 | idx = srcu_read_lock(&kvm->srcu); |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5965 | spin_lock(&kvm->mmu_lock); |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5966 | |
Dave Chinner | 70534a7 | 2013-08-28 10:18:14 +1000 | [diff] [blame] | 5967 | if (prepare_zap_oldest_mmu_page(kvm, &invalid_list)) |
| 5968 | freed++; |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 5969 | kvm_mmu_commit_zap_page(kvm, &invalid_list); |
Gleb Natapov | 1952639 | 2012-06-04 14:53:23 +0300 | [diff] [blame] | 5970 | |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5971 | spin_unlock(&kvm->mmu_lock); |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 5972 | srcu_read_unlock(&kvm->srcu, idx); |
Gleb Natapov | 1952639 | 2012-06-04 14:53:23 +0300 | [diff] [blame] | 5973 | |
Dave Chinner | 70534a7 | 2013-08-28 10:18:14 +1000 | [diff] [blame] | 5974 | /* |
| 5975 | * unfair on small ones |
| 5976 | * per-vm shrinkers cry out |
| 5977 | * sadness comes quickly |
| 5978 | */ |
Gleb Natapov | 1952639 | 2012-06-04 14:53:23 +0300 | [diff] [blame] | 5979 | list_move_tail(&kvm->vm_list, &vm_list); |
| 5980 | break; |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5981 | } |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5982 | |
Paolo Bonzini | 2f303b7 | 2013-09-25 13:53:07 +0200 | [diff] [blame] | 5983 | spin_unlock(&kvm_lock); |
Dave Chinner | 70534a7 | 2013-08-28 10:18:14 +1000 | [diff] [blame] | 5984 | return freed; |
Dave Chinner | 70534a7 | 2013-08-28 10:18:14 +1000 | [diff] [blame] | 5985 | } |
| 5986 | |
| 5987 | static unsigned long |
| 5988 | mmu_shrink_count(struct shrinker *shrink, struct shrink_control *sc) |
| 5989 | { |
Dave Hansen | 45221ab | 2010-08-19 18:11:37 -0700 | [diff] [blame] | 5990 | return percpu_counter_read_positive(&kvm_total_used_mmu_pages); |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5991 | } |
| 5992 | |
| 5993 | static struct shrinker mmu_shrinker = { |
Dave Chinner | 70534a7 | 2013-08-28 10:18:14 +1000 | [diff] [blame] | 5994 | .count_objects = mmu_shrink_count, |
| 5995 | .scan_objects = mmu_shrink_scan, |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5996 | .seeks = DEFAULT_SEEKS * 10, |
| 5997 | }; |
| 5998 | |
Ingo Molnar | 2ddfd20 | 2008-05-22 10:37:48 +0200 | [diff] [blame] | 5999 | static void mmu_destroy_caches(void) |
Avi Kivity | b5a33a7 | 2007-04-15 16:31:09 +0300 | [diff] [blame] | 6000 | { |
Tim Hansen | c1bd743 | 2017-10-07 23:15:23 -0400 | [diff] [blame] | 6001 | kmem_cache_destroy(pte_list_desc_cache); |
| 6002 | kmem_cache_destroy(mmu_page_header_cache); |
Avi Kivity | b5a33a7 | 2007-04-15 16:31:09 +0300 | [diff] [blame] | 6003 | } |
| 6004 | |
| 6005 | int kvm_mmu_module_init(void) |
| 6006 | { |
Arnd Bergmann | ab271bd | 2018-01-10 17:26:59 +0100 | [diff] [blame] | 6007 | int ret = -ENOMEM; |
| 6008 | |
Vitaly Kuznetsov | 36d9594d | 2018-10-08 21:28:10 +0200 | [diff] [blame] | 6009 | /* |
| 6010 | * MMU roles use union aliasing which is, generally speaking, an |
| 6011 | * undefined behavior. However, we supposedly know how compilers behave |
| 6012 | * and the current status quo is unlikely to change. Guardians below are |
| 6013 | * supposed to let us know if the assumption becomes false. |
| 6014 | */ |
| 6015 | BUILD_BUG_ON(sizeof(union kvm_mmu_page_role) != sizeof(u32)); |
| 6016 | BUILD_BUG_ON(sizeof(union kvm_mmu_extended_role) != sizeof(u32)); |
| 6017 | BUILD_BUG_ON(sizeof(union kvm_mmu_role) != sizeof(u64)); |
| 6018 | |
Junaid Shahid | 28a1f3a | 2018-08-14 10:15:34 -0700 | [diff] [blame] | 6019 | kvm_mmu_reset_all_pte_masks(); |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 6020 | |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 6021 | pte_list_desc_cache = kmem_cache_create("pte_list_desc", |
| 6022 | sizeof(struct pte_list_desc), |
Shakeel Butt | 46bea48 | 2017-10-05 18:07:24 -0700 | [diff] [blame] | 6023 | 0, SLAB_ACCOUNT, NULL); |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 6024 | if (!pte_list_desc_cache) |
Arnd Bergmann | ab271bd | 2018-01-10 17:26:59 +0100 | [diff] [blame] | 6025 | goto out; |
Avi Kivity | b5a33a7 | 2007-04-15 16:31:09 +0300 | [diff] [blame] | 6026 | |
Avi Kivity | d3d25b0 | 2007-05-30 12:34:53 +0300 | [diff] [blame] | 6027 | mmu_page_header_cache = kmem_cache_create("kvm_mmu_page_header", |
| 6028 | sizeof(struct kvm_mmu_page), |
Shakeel Butt | 46bea48 | 2017-10-05 18:07:24 -0700 | [diff] [blame] | 6029 | 0, SLAB_ACCOUNT, NULL); |
Avi Kivity | d3d25b0 | 2007-05-30 12:34:53 +0300 | [diff] [blame] | 6030 | if (!mmu_page_header_cache) |
Arnd Bergmann | ab271bd | 2018-01-10 17:26:59 +0100 | [diff] [blame] | 6031 | goto out; |
Avi Kivity | d3d25b0 | 2007-05-30 12:34:53 +0300 | [diff] [blame] | 6032 | |
Tejun Heo | 908c7f1 | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 6033 | if (percpu_counter_init(&kvm_total_used_mmu_pages, 0, GFP_KERNEL)) |
Arnd Bergmann | ab271bd | 2018-01-10 17:26:59 +0100 | [diff] [blame] | 6034 | goto out; |
Wei Yongjun | 45bf21a | 2010-08-23 16:13:15 +0800 | [diff] [blame] | 6035 | |
Arnd Bergmann | ab271bd | 2018-01-10 17:26:59 +0100 | [diff] [blame] | 6036 | ret = register_shrinker(&mmu_shrinker); |
| 6037 | if (ret) |
| 6038 | goto out; |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 6039 | |
Avi Kivity | b5a33a7 | 2007-04-15 16:31:09 +0300 | [diff] [blame] | 6040 | return 0; |
| 6041 | |
Arnd Bergmann | ab271bd | 2018-01-10 17:26:59 +0100 | [diff] [blame] | 6042 | out: |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 6043 | mmu_destroy_caches(); |
Arnd Bergmann | ab271bd | 2018-01-10 17:26:59 +0100 | [diff] [blame] | 6044 | return ret; |
Avi Kivity | b5a33a7 | 2007-04-15 16:31:09 +0300 | [diff] [blame] | 6045 | } |
| 6046 | |
Zhang Xiantao | 3ad82a7 | 2007-11-20 13:11:38 +0800 | [diff] [blame] | 6047 | /* |
Peng Hao | 39337ad | 2018-10-04 11:45:00 -0400 | [diff] [blame] | 6048 | * Calculate mmu pages needed for kvm. |
Zhang Xiantao | 3ad82a7 | 2007-11-20 13:11:38 +0800 | [diff] [blame] | 6049 | */ |
Ben Gardon | bc8a3d8 | 2019-04-08 11:07:30 -0700 | [diff] [blame] | 6050 | unsigned long kvm_mmu_calculate_default_mmu_pages(struct kvm *kvm) |
Zhang Xiantao | 3ad82a7 | 2007-11-20 13:11:38 +0800 | [diff] [blame] | 6051 | { |
Ben Gardon | bc8a3d8 | 2019-04-08 11:07:30 -0700 | [diff] [blame] | 6052 | unsigned long nr_mmu_pages; |
| 6053 | unsigned long nr_pages = 0; |
Marcelo Tosatti | bc6678a | 2009-12-23 14:35:21 -0200 | [diff] [blame] | 6054 | struct kvm_memslots *slots; |
Xiao Guangrong | be6ba0f | 2011-11-24 17:39:18 +0800 | [diff] [blame] | 6055 | struct kvm_memory_slot *memslot; |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 6056 | int i; |
Zhang Xiantao | 3ad82a7 | 2007-11-20 13:11:38 +0800 | [diff] [blame] | 6057 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 6058 | for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) { |
| 6059 | slots = __kvm_memslots(kvm, i); |
Lai Jiangshan | 90d83dc | 2010-04-19 17:41:23 +0800 | [diff] [blame] | 6060 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 6061 | kvm_for_each_memslot(memslot, slots) |
| 6062 | nr_pages += memslot->npages; |
| 6063 | } |
Zhang Xiantao | 3ad82a7 | 2007-11-20 13:11:38 +0800 | [diff] [blame] | 6064 | |
| 6065 | nr_mmu_pages = nr_pages * KVM_PERMILLE_MMU_PAGES / 1000; |
Ben Gardon | bc8a3d8 | 2019-04-08 11:07:30 -0700 | [diff] [blame] | 6066 | nr_mmu_pages = max(nr_mmu_pages, KVM_MIN_ALLOC_MMU_PAGES); |
Zhang Xiantao | 3ad82a7 | 2007-11-20 13:11:38 +0800 | [diff] [blame] | 6067 | |
| 6068 | return nr_mmu_pages; |
| 6069 | } |
| 6070 | |
Xiao Guangrong | c42fffe | 2010-09-27 18:07:07 +0800 | [diff] [blame] | 6071 | void kvm_mmu_destroy(struct kvm_vcpu *vcpu) |
| 6072 | { |
Paolo Bonzini | 95f93af | 2013-10-02 16:56:12 +0200 | [diff] [blame] | 6073 | kvm_mmu_unload(vcpu); |
Xiao Guangrong | c42fffe | 2010-09-27 18:07:07 +0800 | [diff] [blame] | 6074 | free_mmu_pages(vcpu); |
| 6075 | mmu_free_memory_caches(vcpu); |
Xiao Guangrong | b034cf0 | 2010-12-23 16:08:35 +0800 | [diff] [blame] | 6076 | } |
| 6077 | |
Xiao Guangrong | b034cf0 | 2010-12-23 16:08:35 +0800 | [diff] [blame] | 6078 | void kvm_mmu_module_exit(void) |
| 6079 | { |
| 6080 | mmu_destroy_caches(); |
| 6081 | percpu_counter_destroy(&kvm_total_used_mmu_pages); |
| 6082 | unregister_shrinker(&mmu_shrinker); |
Xiao Guangrong | c42fffe | 2010-09-27 18:07:07 +0800 | [diff] [blame] | 6083 | mmu_audit_disable(); |
| 6084 | } |