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> |
| 45 | #include <asm/cmpxchg.h> |
Avi Kivity | 4e54237 | 2007-11-21 14:08:40 +0200 | [diff] [blame] | 46 | #include <asm/io.h> |
Eduardo Habkost | 13673a9 | 2008-11-17 19:03:13 -0200 | [diff] [blame] | 47 | #include <asm/vmx.h> |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 48 | #include <asm/kvm_page_track.h> |
Wanpeng Li | 1261bfa | 2017-07-13 18:30:40 -0700 | [diff] [blame] | 49 | #include "trace.h" |
Avi Kivity | e495606 | 2007-06-28 14:15:57 -0400 | [diff] [blame] | 50 | |
Joerg Roedel | 1855267 | 2008-02-07 13:47:41 +0100 | [diff] [blame] | 51 | /* |
| 52 | * When setting this variable to true it enables Two-Dimensional-Paging |
| 53 | * where the hardware walks 2 page tables: |
| 54 | * 1. the guest-virtual to guest-physical |
| 55 | * 2. while doing 1. it walks guest-physical to host-physical |
| 56 | * If the hardware supports that we don't need to do shadow paging. |
| 57 | */ |
Marcelo Tosatti | 2f333bc | 2008-02-22 12:21:37 -0500 | [diff] [blame] | 58 | bool tdp_enabled = false; |
Joerg Roedel | 1855267 | 2008-02-07 13:47:41 +0100 | [diff] [blame] | 59 | |
Xiao Guangrong | 8b1fe17 | 2010-08-30 18:22:53 +0800 | [diff] [blame] | 60 | enum { |
| 61 | AUDIT_PRE_PAGE_FAULT, |
| 62 | AUDIT_POST_PAGE_FAULT, |
| 63 | AUDIT_PRE_PTE_WRITE, |
Xiao Guangrong | 6903074 | 2010-09-27 18:09:29 +0800 | [diff] [blame] | 64 | AUDIT_POST_PTE_WRITE, |
| 65 | AUDIT_PRE_SYNC, |
| 66 | AUDIT_POST_SYNC |
Xiao Guangrong | 8b1fe17 | 2010-08-30 18:22:53 +0800 | [diff] [blame] | 67 | }; |
| 68 | |
Avi Kivity | 37a7d8b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 69 | #undef MMU_DEBUG |
| 70 | |
Avi Kivity | 37a7d8b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 71 | #ifdef MMU_DEBUG |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 72 | static bool dbg = 0; |
| 73 | module_param(dbg, bool, 0644); |
Avi Kivity | 37a7d8b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 74 | |
| 75 | #define pgprintk(x...) do { if (dbg) printk(x); } while (0) |
| 76 | #define rmap_printk(x...) do { if (dbg) printk(x); } while (0) |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 77 | #define MMU_WARN_ON(x) WARN_ON(x) |
Avi Kivity | 37a7d8b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 78 | #else |
Avi Kivity | 37a7d8b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 79 | #define pgprintk(x...) do { } while (0) |
| 80 | #define rmap_printk(x...) do { } while (0) |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 81 | #define MMU_WARN_ON(x) do { } while (0) |
Yaozu Dong | d6c69ee | 2007-04-25 14:17:25 +0800 | [diff] [blame] | 82 | #endif |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 83 | |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 84 | #define PTE_PREFETCH_NUM 8 |
| 85 | |
Xudong Hao | 00763e4 | 2012-06-07 18:26:07 +0800 | [diff] [blame] | 86 | #define PT_FIRST_AVAIL_BITS_SHIFT 10 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 87 | #define PT64_SECOND_AVAIL_BITS_SHIFT 52 |
| 88 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 89 | #define PT64_LEVEL_BITS 9 |
| 90 | |
| 91 | #define PT64_LEVEL_SHIFT(level) \ |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 92 | (PAGE_SHIFT + (level - 1) * PT64_LEVEL_BITS) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 93 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 94 | #define PT64_INDEX(address, level)\ |
| 95 | (((address) >> PT64_LEVEL_SHIFT(level)) & ((1 << PT64_LEVEL_BITS) - 1)) |
| 96 | |
| 97 | |
| 98 | #define PT32_LEVEL_BITS 10 |
| 99 | |
| 100 | #define PT32_LEVEL_SHIFT(level) \ |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 101 | (PAGE_SHIFT + (level - 1) * PT32_LEVEL_BITS) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 102 | |
Joerg Roedel | e04da98 | 2009-07-27 16:30:45 +0200 | [diff] [blame] | 103 | #define PT32_LVL_OFFSET_MASK(level) \ |
| 104 | (PT32_BASE_ADDR_MASK & ((1ULL << (PAGE_SHIFT + (((level) - 1) \ |
| 105 | * PT32_LEVEL_BITS))) - 1)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 106 | |
| 107 | #define PT32_INDEX(address, level)\ |
| 108 | (((address) >> PT32_LEVEL_SHIFT(level)) & ((1 << PT32_LEVEL_BITS) - 1)) |
| 109 | |
| 110 | |
Tom Lendacky | d0ec49d | 2017-07-17 16:10:27 -0500 | [diff] [blame] | 111 | #define PT64_BASE_ADDR_MASK __sme_clr((((1ULL << 52) - 1) & ~(u64)(PAGE_SIZE-1))) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 112 | #define PT64_DIR_BASE_ADDR_MASK \ |
| 113 | (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + PT64_LEVEL_BITS)) - 1)) |
Joerg Roedel | e04da98 | 2009-07-27 16:30:45 +0200 | [diff] [blame] | 114 | #define PT64_LVL_ADDR_MASK(level) \ |
| 115 | (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + (((level) - 1) \ |
| 116 | * PT64_LEVEL_BITS))) - 1)) |
| 117 | #define PT64_LVL_OFFSET_MASK(level) \ |
| 118 | (PT64_BASE_ADDR_MASK & ((1ULL << (PAGE_SHIFT + (((level) - 1) \ |
| 119 | * PT64_LEVEL_BITS))) - 1)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 120 | |
| 121 | #define PT32_BASE_ADDR_MASK PAGE_MASK |
| 122 | #define PT32_DIR_BASE_ADDR_MASK \ |
| 123 | (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + PT32_LEVEL_BITS)) - 1)) |
Joerg Roedel | e04da98 | 2009-07-27 16:30:45 +0200 | [diff] [blame] | 124 | #define PT32_LVL_ADDR_MASK(level) \ |
| 125 | (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + (((level) - 1) \ |
| 126 | * PT32_LEVEL_BITS))) - 1)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 127 | |
Gleb Natapov | 5316622 | 2013-08-05 11:07:14 +0300 | [diff] [blame] | 128 | #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] | 129 | | shadow_x_mask | shadow_nx_mask | shadow_me_mask) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 130 | |
Avi Kivity | fe135d2 | 2007-12-09 16:15:46 +0200 | [diff] [blame] | 131 | #define ACC_EXEC_MASK 1 |
| 132 | #define ACC_WRITE_MASK PT_WRITABLE_MASK |
| 133 | #define ACC_USER_MASK PT_USER_MASK |
| 134 | #define ACC_ALL (ACC_EXEC_MASK | ACC_WRITE_MASK | ACC_USER_MASK) |
| 135 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 136 | /* The mask for the R/X bits in EPT PTEs */ |
| 137 | #define PT64_EPT_READABLE_MASK 0x1ull |
| 138 | #define PT64_EPT_EXECUTABLE_MASK 0x4ull |
| 139 | |
Avi Kivity | 90bb6fc | 2009-12-31 12:10:16 +0200 | [diff] [blame] | 140 | #include <trace/events/kvm.h> |
| 141 | |
Avi Kivity | 0742017 | 2009-07-06 12:21:32 +0300 | [diff] [blame] | 142 | #define CREATE_TRACE_POINTS |
| 143 | #include "mmutrace.h" |
| 144 | |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 145 | #define SPTE_HOST_WRITEABLE (1ULL << PT_FIRST_AVAIL_BITS_SHIFT) |
| 146 | #define SPTE_MMU_WRITEABLE (1ULL << (PT_FIRST_AVAIL_BITS_SHIFT + 1)) |
Izik Eidus | 1403283 | 2009-09-23 21:47:17 +0300 | [diff] [blame] | 147 | |
Avi Kivity | 135f8c2 | 2008-08-21 17:49:56 +0300 | [diff] [blame] | 148 | #define SHADOW_PT_INDEX(addr, level) PT64_INDEX(addr, level) |
| 149 | |
Takuya Yoshikawa | 220f773 | 2012-03-21 23:49:39 +0900 | [diff] [blame] | 150 | /* make pte_list_desc fit well in cache line */ |
| 151 | #define PTE_LIST_EXT 3 |
| 152 | |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 153 | struct pte_list_desc { |
| 154 | u64 *sptes[PTE_LIST_EXT]; |
| 155 | struct pte_list_desc *more; |
Avi Kivity | cd4a4e5 | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 156 | }; |
| 157 | |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 158 | struct kvm_shadow_walk_iterator { |
| 159 | u64 addr; |
| 160 | hpa_t shadow_addr; |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 161 | u64 *sptep; |
Xiao Guangrong | dd3bfd5 | 2011-07-12 03:32:54 +0800 | [diff] [blame] | 162 | int level; |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 163 | unsigned index; |
| 164 | }; |
| 165 | |
| 166 | #define for_each_shadow_entry(_vcpu, _addr, _walker) \ |
| 167 | for (shadow_walk_init(&(_walker), _vcpu, _addr); \ |
| 168 | shadow_walk_okay(&(_walker)); \ |
| 169 | shadow_walk_next(&(_walker))) |
| 170 | |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 171 | #define for_each_shadow_entry_lockless(_vcpu, _addr, _walker, spte) \ |
| 172 | for (shadow_walk_init(&(_walker), _vcpu, _addr); \ |
| 173 | shadow_walk_okay(&(_walker)) && \ |
| 174 | ({ spte = mmu_spte_get_lockless(_walker.sptep); 1; }); \ |
| 175 | __shadow_walk_next(&(_walker), spte)) |
| 176 | |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 177 | static struct kmem_cache *pte_list_desc_cache; |
Avi Kivity | d3d25b0 | 2007-05-30 12:34:53 +0300 | [diff] [blame] | 178 | static struct kmem_cache *mmu_page_header_cache; |
Dave Hansen | 45221ab | 2010-08-19 18:11:37 -0700 | [diff] [blame] | 179 | static struct percpu_counter kvm_total_used_mmu_pages; |
Avi Kivity | b5a33a7 | 2007-04-15 16:31:09 +0300 | [diff] [blame] | 180 | |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 181 | static u64 __read_mostly shadow_nx_mask; |
| 182 | static u64 __read_mostly shadow_x_mask; /* mutual exclusive with nx_mask */ |
| 183 | static u64 __read_mostly shadow_user_mask; |
| 184 | static u64 __read_mostly shadow_accessed_mask; |
| 185 | static u64 __read_mostly shadow_dirty_mask; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 186 | static u64 __read_mostly shadow_mmio_mask; |
Peter Feiner | dcdca5f | 2017-06-30 17:26:30 -0700 | [diff] [blame] | 187 | static u64 __read_mostly shadow_mmio_value; |
Bandan Das | ffb128c | 2016-07-12 18:18:49 -0400 | [diff] [blame] | 188 | static u64 __read_mostly shadow_present_mask; |
Tom Lendacky | d0ec49d | 2017-07-17 16:10:27 -0500 | [diff] [blame] | 189 | static u64 __read_mostly shadow_me_mask; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 190 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 191 | /* |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 192 | * SPTEs used by MMUs without A/D bits are marked with shadow_acc_track_value. |
| 193 | * Non-present SPTEs with shadow_acc_track_value set are in place for access |
| 194 | * tracking. |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 195 | */ |
| 196 | static u64 __read_mostly shadow_acc_track_mask; |
| 197 | static const u64 shadow_acc_track_value = SPTE_SPECIAL_MASK; |
| 198 | |
| 199 | /* |
| 200 | * The mask/shift to use for saving the original R/X bits when marking the PTE |
| 201 | * as not-present for access tracking purposes. We do not save the W bit as the |
| 202 | * PTEs being access tracked also need to be dirty tracked, so the W bit will be |
| 203 | * restored only when a write is attempted to the page. |
| 204 | */ |
| 205 | static const u64 shadow_acc_track_saved_bits_mask = PT64_EPT_READABLE_MASK | |
| 206 | PT64_EPT_EXECUTABLE_MASK; |
| 207 | static const u64 shadow_acc_track_saved_bits_shift = PT64_SECOND_AVAIL_BITS_SHIFT; |
| 208 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 209 | static void mmu_spte_set(u64 *sptep, u64 spte); |
Avi Kivity | e676505 | 2012-07-08 17:16:30 +0300 | [diff] [blame] | 210 | static void mmu_free_roots(struct kvm_vcpu *vcpu); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 211 | |
Peter Feiner | dcdca5f | 2017-06-30 17:26:30 -0700 | [diff] [blame] | 212 | 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] | 213 | { |
Peter Feiner | dcdca5f | 2017-06-30 17:26:30 -0700 | [diff] [blame] | 214 | BUG_ON((mmio_mask & mmio_value) != mmio_value); |
| 215 | shadow_mmio_value = mmio_value | SPTE_SPECIAL_MASK; |
Junaid Shahid | 312b616 | 2016-12-21 20:29:29 -0800 | [diff] [blame] | 216 | shadow_mmio_mask = mmio_mask | SPTE_SPECIAL_MASK; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 217 | } |
| 218 | EXPORT_SYMBOL_GPL(kvm_mmu_set_mmio_spte_mask); |
| 219 | |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 220 | static inline bool sp_ad_disabled(struct kvm_mmu_page *sp) |
| 221 | { |
| 222 | return sp->role.ad_disabled; |
| 223 | } |
| 224 | |
| 225 | static inline bool spte_ad_enabled(u64 spte) |
| 226 | { |
| 227 | MMU_WARN_ON((spte & shadow_mmio_mask) == shadow_mmio_value); |
| 228 | return !(spte & shadow_acc_track_value); |
| 229 | } |
| 230 | |
| 231 | static inline u64 spte_shadow_accessed_mask(u64 spte) |
| 232 | { |
| 233 | MMU_WARN_ON((spte & shadow_mmio_mask) == shadow_mmio_value); |
| 234 | return spte_ad_enabled(spte) ? shadow_accessed_mask : 0; |
| 235 | } |
| 236 | |
| 237 | static inline u64 spte_shadow_dirty_mask(u64 spte) |
| 238 | { |
| 239 | MMU_WARN_ON((spte & shadow_mmio_mask) == shadow_mmio_value); |
| 240 | return spte_ad_enabled(spte) ? shadow_dirty_mask : 0; |
| 241 | } |
| 242 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 243 | static inline bool is_access_track_spte(u64 spte) |
| 244 | { |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 245 | return !spte_ad_enabled(spte) && (spte & shadow_acc_track_mask) == 0; |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 246 | } |
| 247 | |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 248 | /* |
David Matlack | ee3d157 | 2014-08-18 15:46:06 -0700 | [diff] [blame] | 249 | * the low bit of the generation number is always presumed to be zero. |
| 250 | * This disables mmio caching during memslot updates. The concept is |
| 251 | * similar to a seqcount but instead of retrying the access we just punt |
| 252 | * and ignore the cache. |
| 253 | * |
| 254 | * spte bits 3-11 are used as bits 1-9 of the generation number, |
| 255 | * the bits 52-61 are used as bits 10-19 of the generation number. |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 256 | */ |
David Matlack | ee3d157 | 2014-08-18 15:46:06 -0700 | [diff] [blame] | 257 | #define MMIO_SPTE_GEN_LOW_SHIFT 2 |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 258 | #define MMIO_SPTE_GEN_HIGH_SHIFT 52 |
| 259 | |
David Matlack | ee3d157 | 2014-08-18 15:46:06 -0700 | [diff] [blame] | 260 | #define MMIO_GEN_SHIFT 20 |
| 261 | #define MMIO_GEN_LOW_SHIFT 10 |
| 262 | #define MMIO_GEN_LOW_MASK ((1 << MMIO_GEN_LOW_SHIFT) - 2) |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 263 | #define MMIO_GEN_MASK ((1 << MMIO_GEN_SHIFT) - 1) |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 264 | |
| 265 | static u64 generation_mmio_spte_mask(unsigned int gen) |
| 266 | { |
| 267 | u64 mask; |
| 268 | |
Tiejun Chen | 842bb26 | 2014-11-18 17:14:38 +0800 | [diff] [blame] | 269 | WARN_ON(gen & ~MMIO_GEN_MASK); |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 270 | |
| 271 | mask = (gen & MMIO_GEN_LOW_MASK) << MMIO_SPTE_GEN_LOW_SHIFT; |
| 272 | mask |= ((u64)gen >> MMIO_GEN_LOW_SHIFT) << MMIO_SPTE_GEN_HIGH_SHIFT; |
| 273 | return mask; |
| 274 | } |
| 275 | |
| 276 | static unsigned int get_mmio_spte_generation(u64 spte) |
| 277 | { |
| 278 | unsigned int gen; |
| 279 | |
| 280 | spte &= ~shadow_mmio_mask; |
| 281 | |
| 282 | gen = (spte >> MMIO_SPTE_GEN_LOW_SHIFT) & MMIO_GEN_LOW_MASK; |
| 283 | gen |= (spte >> MMIO_SPTE_GEN_HIGH_SHIFT) << MMIO_GEN_LOW_SHIFT; |
| 284 | return gen; |
| 285 | } |
| 286 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 287 | static unsigned int kvm_current_mmio_generation(struct kvm_vcpu *vcpu) |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 288 | { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 289 | return kvm_vcpu_memslots(vcpu)->generation & MMIO_GEN_MASK; |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 290 | } |
| 291 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 292 | 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] | 293 | unsigned access) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 294 | { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 295 | unsigned int gen = kvm_current_mmio_generation(vcpu); |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 296 | u64 mask = generation_mmio_spte_mask(gen); |
Takuya Yoshikawa | 95b0430 | 2013-03-12 17:44:40 +0900 | [diff] [blame] | 297 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 298 | access &= ACC_WRITE_MASK | ACC_USER_MASK; |
Peter Feiner | dcdca5f | 2017-06-30 17:26:30 -0700 | [diff] [blame] | 299 | mask |= shadow_mmio_value | access | gfn << PAGE_SHIFT; |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 300 | |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 301 | trace_mark_mmio_spte(sptep, gfn, access, gen); |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 302 | mmu_spte_set(sptep, mask); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 303 | } |
| 304 | |
| 305 | static bool is_mmio_spte(u64 spte) |
| 306 | { |
Peter Feiner | dcdca5f | 2017-06-30 17:26:30 -0700 | [diff] [blame] | 307 | return (spte & shadow_mmio_mask) == shadow_mmio_value; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 308 | } |
| 309 | |
| 310 | static gfn_t get_mmio_spte_gfn(u64 spte) |
| 311 | { |
Tiejun Chen | 842bb26 | 2014-11-18 17:14:38 +0800 | [diff] [blame] | 312 | u64 mask = generation_mmio_spte_mask(MMIO_GEN_MASK) | shadow_mmio_mask; |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 313 | return (spte & ~mask) >> PAGE_SHIFT; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | static unsigned get_mmio_spte_access(u64 spte) |
| 317 | { |
Tiejun Chen | 842bb26 | 2014-11-18 17:14:38 +0800 | [diff] [blame] | 318 | u64 mask = generation_mmio_spte_mask(MMIO_GEN_MASK) | shadow_mmio_mask; |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 319 | return (spte & ~mask) & ~PAGE_MASK; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 320 | } |
| 321 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 322 | 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] | 323 | kvm_pfn_t pfn, unsigned access) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 324 | { |
| 325 | if (unlikely(is_noslot_pfn(pfn))) { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 326 | mark_mmio_spte(vcpu, sptep, gfn, access); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 327 | return true; |
| 328 | } |
| 329 | |
| 330 | return false; |
| 331 | } |
Avi Kivity | c7addb9 | 2007-09-16 18:58:32 +0200 | [diff] [blame] | 332 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 333 | static bool check_mmio_spte(struct kvm_vcpu *vcpu, u64 spte) |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 334 | { |
Xiao Guangrong | 089504c | 2013-06-07 16:51:27 +0800 | [diff] [blame] | 335 | unsigned int kvm_gen, spte_gen; |
| 336 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 337 | kvm_gen = kvm_current_mmio_generation(vcpu); |
Xiao Guangrong | 089504c | 2013-06-07 16:51:27 +0800 | [diff] [blame] | 338 | spte_gen = get_mmio_spte_generation(spte); |
| 339 | |
| 340 | trace_check_mmio_spte(spte, kvm_gen, spte_gen); |
| 341 | return likely(kvm_gen == spte_gen); |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 342 | } |
| 343 | |
Peter Feiner | ce00053 | 2017-06-30 17:26:29 -0700 | [diff] [blame] | 344 | /* |
| 345 | * Sets the shadow PTE masks used by the MMU. |
| 346 | * |
| 347 | * Assumptions: |
| 348 | * - Setting either @accessed_mask or @dirty_mask requires setting both |
| 349 | * - At least one of @accessed_mask or @acc_track_mask must be set |
| 350 | */ |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 351 | void kvm_mmu_set_mask_ptes(u64 user_mask, u64 accessed_mask, |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 352 | u64 dirty_mask, u64 nx_mask, u64 x_mask, u64 p_mask, |
Tom Lendacky | d0ec49d | 2017-07-17 16:10:27 -0500 | [diff] [blame] | 353 | u64 acc_track_mask, u64 me_mask) |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 354 | { |
Peter Feiner | ce00053 | 2017-06-30 17:26:29 -0700 | [diff] [blame] | 355 | BUG_ON(!dirty_mask != !accessed_mask); |
| 356 | BUG_ON(!accessed_mask && !acc_track_mask); |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 357 | BUG_ON(acc_track_mask & shadow_acc_track_value); |
Junaid Shahid | 312b616 | 2016-12-21 20:29:29 -0800 | [diff] [blame] | 358 | |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 359 | shadow_user_mask = user_mask; |
| 360 | shadow_accessed_mask = accessed_mask; |
| 361 | shadow_dirty_mask = dirty_mask; |
| 362 | shadow_nx_mask = nx_mask; |
| 363 | shadow_x_mask = x_mask; |
Bandan Das | ffb128c | 2016-07-12 18:18:49 -0400 | [diff] [blame] | 364 | shadow_present_mask = p_mask; |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 365 | shadow_acc_track_mask = acc_track_mask; |
Tom Lendacky | d0ec49d | 2017-07-17 16:10:27 -0500 | [diff] [blame] | 366 | shadow_me_mask = me_mask; |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 367 | } |
| 368 | EXPORT_SYMBOL_GPL(kvm_mmu_set_mask_ptes); |
| 369 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 370 | void kvm_mmu_clear_all_pte_masks(void) |
| 371 | { |
| 372 | shadow_user_mask = 0; |
| 373 | shadow_accessed_mask = 0; |
| 374 | shadow_dirty_mask = 0; |
| 375 | shadow_nx_mask = 0; |
| 376 | shadow_x_mask = 0; |
| 377 | shadow_mmio_mask = 0; |
| 378 | shadow_present_mask = 0; |
| 379 | shadow_acc_track_mask = 0; |
| 380 | } |
| 381 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 382 | static int is_cpuid_PSE36(void) |
| 383 | { |
| 384 | return 1; |
| 385 | } |
| 386 | |
Avi Kivity | 73b1087 | 2007-01-26 00:56:41 -0800 | [diff] [blame] | 387 | static int is_nx(struct kvm_vcpu *vcpu) |
| 388 | { |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 389 | return vcpu->arch.efer & EFER_NX; |
Avi Kivity | 73b1087 | 2007-01-26 00:56:41 -0800 | [diff] [blame] | 390 | } |
| 391 | |
Avi Kivity | c7addb9 | 2007-09-16 18:58:32 +0200 | [diff] [blame] | 392 | static int is_shadow_present_pte(u64 pte) |
| 393 | { |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 394 | return (pte != 0) && !is_mmio_spte(pte); |
Avi Kivity | c7addb9 | 2007-09-16 18:58:32 +0200 | [diff] [blame] | 395 | } |
| 396 | |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 397 | static int is_large_pte(u64 pte) |
| 398 | { |
| 399 | return pte & PT_PAGE_SIZE_MASK; |
| 400 | } |
| 401 | |
Marcelo Tosatti | 776e663 | 2009-06-10 12:27:03 -0300 | [diff] [blame] | 402 | static int is_last_spte(u64 pte, int level) |
| 403 | { |
| 404 | if (level == PT_PAGE_TABLE_LEVEL) |
| 405 | return 1; |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 406 | if (is_large_pte(pte)) |
Marcelo Tosatti | 776e663 | 2009-06-10 12:27:03 -0300 | [diff] [blame] | 407 | return 1; |
| 408 | return 0; |
| 409 | } |
| 410 | |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 411 | static bool is_executable_pte(u64 spte) |
| 412 | { |
| 413 | return (spte & (shadow_x_mask | shadow_nx_mask)) == shadow_x_mask; |
| 414 | } |
| 415 | |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 416 | static kvm_pfn_t spte_to_pfn(u64 pte) |
Avi Kivity | 0b49ea8 | 2008-03-23 15:06:23 +0200 | [diff] [blame] | 417 | { |
Anthony Liguori | 35149e2 | 2008-04-02 14:46:56 -0500 | [diff] [blame] | 418 | return (pte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT; |
Avi Kivity | 0b49ea8 | 2008-03-23 15:06:23 +0200 | [diff] [blame] | 419 | } |
| 420 | |
Avi Kivity | da928521 | 2007-11-21 13:54:47 +0200 | [diff] [blame] | 421 | static gfn_t pse36_gfn_delta(u32 gpte) |
| 422 | { |
| 423 | int shift = 32 - PT32_DIR_PSE36_SHIFT - PAGE_SHIFT; |
| 424 | |
| 425 | return (gpte & PT32_DIR_PSE36_MASK) << shift; |
| 426 | } |
| 427 | |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 428 | #ifdef CONFIG_X86_64 |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 429 | static void __set_spte(u64 *sptep, u64 spte) |
Avi Kivity | e663ee6 | 2007-05-31 15:46:04 +0300 | [diff] [blame] | 430 | { |
Nadav Amit | b19ee2f | 2016-05-11 08:04:29 -0700 | [diff] [blame] | 431 | WRITE_ONCE(*sptep, spte); |
Avi Kivity | e663ee6 | 2007-05-31 15:46:04 +0300 | [diff] [blame] | 432 | } |
| 433 | |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 434 | static void __update_clear_spte_fast(u64 *sptep, u64 spte) |
Avi Kivity | a9221dd | 2010-06-06 14:48:06 +0300 | [diff] [blame] | 435 | { |
Nadav Amit | b19ee2f | 2016-05-11 08:04:29 -0700 | [diff] [blame] | 436 | WRITE_ONCE(*sptep, spte); |
Avi Kivity | a9221dd | 2010-06-06 14:48:06 +0300 | [diff] [blame] | 437 | } |
| 438 | |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 439 | static u64 __update_clear_spte_slow(u64 *sptep, u64 spte) |
| 440 | { |
| 441 | return xchg(sptep, spte); |
| 442 | } |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 443 | |
| 444 | static u64 __get_spte_lockless(u64 *sptep) |
| 445 | { |
| 446 | return ACCESS_ONCE(*sptep); |
| 447 | } |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 448 | #else |
| 449 | union split_spte { |
| 450 | struct { |
| 451 | u32 spte_low; |
| 452 | u32 spte_high; |
| 453 | }; |
| 454 | u64 spte; |
| 455 | }; |
| 456 | |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 457 | static void count_spte_clear(u64 *sptep, u64 spte) |
| 458 | { |
| 459 | struct kvm_mmu_page *sp = page_header(__pa(sptep)); |
| 460 | |
| 461 | if (is_shadow_present_pte(spte)) |
| 462 | return; |
| 463 | |
| 464 | /* Ensure the spte is completely set before we increase the count */ |
| 465 | smp_wmb(); |
| 466 | sp->clear_spte_count++; |
| 467 | } |
| 468 | |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 469 | static void __set_spte(u64 *sptep, u64 spte) |
| 470 | { |
| 471 | union split_spte *ssptep, sspte; |
| 472 | |
| 473 | ssptep = (union split_spte *)sptep; |
| 474 | sspte = (union split_spte)spte; |
| 475 | |
| 476 | ssptep->spte_high = sspte.spte_high; |
| 477 | |
| 478 | /* |
| 479 | * If we map the spte from nonpresent to present, We should store |
| 480 | * the high bits firstly, then set present bit, so cpu can not |
| 481 | * fetch this spte while we are setting the spte. |
| 482 | */ |
| 483 | smp_wmb(); |
| 484 | |
Nadav Amit | b19ee2f | 2016-05-11 08:04:29 -0700 | [diff] [blame] | 485 | WRITE_ONCE(ssptep->spte_low, sspte.spte_low); |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 486 | } |
| 487 | |
| 488 | static void __update_clear_spte_fast(u64 *sptep, u64 spte) |
| 489 | { |
| 490 | union split_spte *ssptep, sspte; |
| 491 | |
| 492 | ssptep = (union split_spte *)sptep; |
| 493 | sspte = (union split_spte)spte; |
| 494 | |
Nadav Amit | b19ee2f | 2016-05-11 08:04:29 -0700 | [diff] [blame] | 495 | WRITE_ONCE(ssptep->spte_low, sspte.spte_low); |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 496 | |
| 497 | /* |
| 498 | * If we map the spte from present to nonpresent, we should clear |
| 499 | * present bit firstly to avoid vcpu fetch the old high bits. |
| 500 | */ |
| 501 | smp_wmb(); |
| 502 | |
| 503 | ssptep->spte_high = sspte.spte_high; |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 504 | count_spte_clear(sptep, spte); |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 505 | } |
| 506 | |
| 507 | static u64 __update_clear_spte_slow(u64 *sptep, u64 spte) |
| 508 | { |
| 509 | union split_spte *ssptep, sspte, orig; |
| 510 | |
| 511 | ssptep = (union split_spte *)sptep; |
| 512 | sspte = (union split_spte)spte; |
| 513 | |
| 514 | /* xchg acts as a barrier before the setting of the high bits */ |
| 515 | orig.spte_low = xchg(&ssptep->spte_low, sspte.spte_low); |
Zhao Jin | 41bc318 | 2011-09-19 12:19:51 +0800 | [diff] [blame] | 516 | orig.spte_high = ssptep->spte_high; |
| 517 | ssptep->spte_high = sspte.spte_high; |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 518 | count_spte_clear(sptep, spte); |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 519 | |
| 520 | return orig.spte; |
| 521 | } |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 522 | |
| 523 | /* |
| 524 | * The idea using the light way get the spte on x86_32 guest is from |
| 525 | * gup_get_pte(arch/x86/mm/gup.c). |
Xiao Guangrong | accaefe | 2013-06-19 17:09:20 +0800 | [diff] [blame] | 526 | * |
| 527 | * An spte tlb flush may be pending, because kvm_set_pte_rmapp |
| 528 | * coalesces them and we are running out of the MMU lock. Therefore |
| 529 | * we need to protect against in-progress updates of the spte. |
| 530 | * |
| 531 | * Reading the spte while an update is in progress may get the old value |
| 532 | * for the high part of the spte. The race is fine for a present->non-present |
| 533 | * change (because the high part of the spte is ignored for non-present spte), |
| 534 | * but for a present->present change we must reread the spte. |
| 535 | * |
| 536 | * All such changes are done in two steps (present->non-present and |
| 537 | * non-present->present), hence it is enough to count the number of |
| 538 | * present->non-present updates: if it changed while reading the spte, |
| 539 | * 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] | 540 | */ |
| 541 | static u64 __get_spte_lockless(u64 *sptep) |
| 542 | { |
| 543 | struct kvm_mmu_page *sp = page_header(__pa(sptep)); |
| 544 | union split_spte spte, *orig = (union split_spte *)sptep; |
| 545 | int count; |
| 546 | |
| 547 | retry: |
| 548 | count = sp->clear_spte_count; |
| 549 | smp_rmb(); |
| 550 | |
| 551 | spte.spte_low = orig->spte_low; |
| 552 | smp_rmb(); |
| 553 | |
| 554 | spte.spte_high = orig->spte_high; |
| 555 | smp_rmb(); |
| 556 | |
| 557 | if (unlikely(spte.spte_low != orig->spte_low || |
| 558 | count != sp->clear_spte_count)) |
| 559 | goto retry; |
| 560 | |
| 561 | return spte.spte; |
| 562 | } |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 563 | #endif |
| 564 | |
Junaid Shahid | ea4114b | 2016-12-06 16:46:11 -0800 | [diff] [blame] | 565 | static bool spte_can_locklessly_be_made_writable(u64 spte) |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 566 | { |
Gleb Natapov | feb3eb7 | 2013-01-30 16:45:00 +0200 | [diff] [blame] | 567 | return (spte & (SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE)) == |
| 568 | (SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE); |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 569 | } |
| 570 | |
Xiao Guangrong | 8672b72 | 2010-08-02 16:14:04 +0800 | [diff] [blame] | 571 | static bool spte_has_volatile_bits(u64 spte) |
| 572 | { |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 573 | if (!is_shadow_present_pte(spte)) |
| 574 | return false; |
| 575 | |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 576 | /* |
Adam Buchbinder | 6a6256f | 2016-02-23 15:34:30 -0800 | [diff] [blame] | 577 | * Always atomically update spte if it can be updated |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 578 | * out of mmu-lock, it can ensure dirty bit is not lost, |
| 579 | * also, it can help us to get a stable is_writable_pte() |
| 580 | * to ensure tlb flush is not missed. |
| 581 | */ |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 582 | if (spte_can_locklessly_be_made_writable(spte) || |
| 583 | is_access_track_spte(spte)) |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 584 | return true; |
| 585 | |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 586 | if (spte_ad_enabled(spte)) { |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 587 | if ((spte & shadow_accessed_mask) == 0 || |
| 588 | (is_writable_pte(spte) && (spte & shadow_dirty_mask) == 0)) |
| 589 | return true; |
| 590 | } |
Xiao Guangrong | 8672b72 | 2010-08-02 16:14:04 +0800 | [diff] [blame] | 591 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 592 | return false; |
Xiao Guangrong | 8672b72 | 2010-08-02 16:14:04 +0800 | [diff] [blame] | 593 | } |
| 594 | |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 595 | static bool is_accessed_spte(u64 spte) |
Xiao Guangrong | 4132779 | 2010-08-02 16:15:08 +0800 | [diff] [blame] | 596 | { |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 597 | u64 accessed_mask = spte_shadow_accessed_mask(spte); |
| 598 | |
| 599 | return accessed_mask ? spte & accessed_mask |
| 600 | : !is_access_track_spte(spte); |
Xiao Guangrong | 4132779 | 2010-08-02 16:15:08 +0800 | [diff] [blame] | 601 | } |
| 602 | |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 603 | static bool is_dirty_spte(u64 spte) |
Kai Huang | 7e71a59 | 2015-01-09 16:44:30 +0800 | [diff] [blame] | 604 | { |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 605 | u64 dirty_mask = spte_shadow_dirty_mask(spte); |
| 606 | |
| 607 | return dirty_mask ? spte & dirty_mask : spte & PT_WRITABLE_MASK; |
Kai Huang | 7e71a59 | 2015-01-09 16:44:30 +0800 | [diff] [blame] | 608 | } |
| 609 | |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 610 | /* Rules for using mmu_spte_set: |
| 611 | * Set the sptep from nonpresent to present. |
| 612 | * Note: the sptep being assigned *must* be either not present |
| 613 | * or in a state where the hardware will not attempt to update |
| 614 | * the spte. |
| 615 | */ |
| 616 | static void mmu_spte_set(u64 *sptep, u64 new_spte) |
| 617 | { |
| 618 | WARN_ON(is_shadow_present_pte(*sptep)); |
| 619 | __set_spte(sptep, new_spte); |
| 620 | } |
| 621 | |
Junaid Shahid | f39a058 | 2016-12-06 16:46:14 -0800 | [diff] [blame] | 622 | /* |
| 623 | * Update the SPTE (excluding the PFN), but do not track changes in its |
| 624 | * accessed/dirty status. |
| 625 | */ |
| 626 | static u64 mmu_spte_update_no_track(u64 *sptep, u64 new_spte) |
| 627 | { |
| 628 | u64 old_spte = *sptep; |
| 629 | |
| 630 | WARN_ON(!is_shadow_present_pte(new_spte)); |
| 631 | |
| 632 | if (!is_shadow_present_pte(old_spte)) { |
| 633 | mmu_spte_set(sptep, new_spte); |
| 634 | return old_spte; |
| 635 | } |
| 636 | |
| 637 | if (!spte_has_volatile_bits(old_spte)) |
| 638 | __update_clear_spte_fast(sptep, new_spte); |
| 639 | else |
| 640 | old_spte = __update_clear_spte_slow(sptep, new_spte); |
| 641 | |
| 642 | WARN_ON(spte_to_pfn(old_spte) != spte_to_pfn(new_spte)); |
| 643 | |
| 644 | return old_spte; |
| 645 | } |
| 646 | |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 647 | /* Rules for using mmu_spte_update: |
Andrea Gelmini | bb3541f | 2016-05-21 14:14:44 +0200 | [diff] [blame] | 648 | * Update the state bits, it means the mapped pfn is not changed. |
Xiao Guangrong | 6e7d035 | 2012-06-20 15:58:33 +0800 | [diff] [blame] | 649 | * |
| 650 | * Whenever we overwrite a writable spte with a read-only one we |
| 651 | * should flush remote TLBs. Otherwise rmap_write_protect |
| 652 | * will find a read-only spte, even though the writable spte |
| 653 | * might be cached on a CPU's TLB, the return value indicates this |
| 654 | * case. |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 655 | * |
| 656 | * Returns true if the TLB needs to be flushed |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 657 | */ |
Xiao Guangrong | 6e7d035 | 2012-06-20 15:58:33 +0800 | [diff] [blame] | 658 | static bool mmu_spte_update(u64 *sptep, u64 new_spte) |
Avi Kivity | b79b93f | 2010-06-06 15:46:44 +0300 | [diff] [blame] | 659 | { |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 660 | bool flush = false; |
Junaid Shahid | f39a058 | 2016-12-06 16:46:14 -0800 | [diff] [blame] | 661 | u64 old_spte = mmu_spte_update_no_track(sptep, new_spte); |
Avi Kivity | b79b93f | 2010-06-06 15:46:44 +0300 | [diff] [blame] | 662 | |
Junaid Shahid | f39a058 | 2016-12-06 16:46:14 -0800 | [diff] [blame] | 663 | if (!is_shadow_present_pte(old_spte)) |
| 664 | return false; |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 665 | |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 666 | /* |
| 667 | * For the spte updated out of mmu-lock is safe, since |
Adam Buchbinder | 6a6256f | 2016-02-23 15:34:30 -0800 | [diff] [blame] | 668 | * we always atomically update it, see the comments in |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 669 | * spte_has_volatile_bits(). |
| 670 | */ |
Junaid Shahid | ea4114b | 2016-12-06 16:46:11 -0800 | [diff] [blame] | 671 | if (spte_can_locklessly_be_made_writable(old_spte) && |
Xiao Guangrong | 7f31c95 | 2014-04-17 17:06:15 +0800 | [diff] [blame] | 672 | !is_writable_pte(new_spte)) |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 673 | flush = true; |
Xiao Guangrong | 4132779 | 2010-08-02 16:15:08 +0800 | [diff] [blame] | 674 | |
Kai Huang | 7e71a59 | 2015-01-09 16:44:30 +0800 | [diff] [blame] | 675 | /* |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 676 | * Flush TLB when accessed/dirty states are changed in the page tables, |
Kai Huang | 7e71a59 | 2015-01-09 16:44:30 +0800 | [diff] [blame] | 677 | * to guarantee consistency between TLB and page tables. |
| 678 | */ |
Kai Huang | 7e71a59 | 2015-01-09 16:44:30 +0800 | [diff] [blame] | 679 | |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 680 | if (is_accessed_spte(old_spte) && !is_accessed_spte(new_spte)) { |
| 681 | flush = true; |
Xiao Guangrong | 4132779 | 2010-08-02 16:15:08 +0800 | [diff] [blame] | 682 | kvm_set_pfn_accessed(spte_to_pfn(old_spte)); |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 683 | } |
Xiao Guangrong | 6e7d035 | 2012-06-20 15:58:33 +0800 | [diff] [blame] | 684 | |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 685 | if (is_dirty_spte(old_spte) && !is_dirty_spte(new_spte)) { |
| 686 | flush = true; |
| 687 | kvm_set_pfn_dirty(spte_to_pfn(old_spte)); |
| 688 | } |
| 689 | |
| 690 | return flush; |
Avi Kivity | b79b93f | 2010-06-06 15:46:44 +0300 | [diff] [blame] | 691 | } |
| 692 | |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 693 | /* |
| 694 | * Rules for using mmu_spte_clear_track_bits: |
| 695 | * It sets the sptep from present to nonpresent, and track the |
| 696 | * state bits, it is used to clear the last level sptep. |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 697 | * Returns non-zero if the PTE was previously valid. |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 698 | */ |
| 699 | static int mmu_spte_clear_track_bits(u64 *sptep) |
| 700 | { |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 701 | kvm_pfn_t pfn; |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 702 | u64 old_spte = *sptep; |
| 703 | |
| 704 | if (!spte_has_volatile_bits(old_spte)) |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 705 | __update_clear_spte_fast(sptep, 0ull); |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 706 | else |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 707 | old_spte = __update_clear_spte_slow(sptep, 0ull); |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 708 | |
Takuya Yoshikawa | afd28fe | 2015-11-20 17:44:55 +0900 | [diff] [blame] | 709 | if (!is_shadow_present_pte(old_spte)) |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 710 | return 0; |
| 711 | |
| 712 | pfn = spte_to_pfn(old_spte); |
Xiao Guangrong | 86fde74 | 2012-07-17 21:52:52 +0800 | [diff] [blame] | 713 | |
| 714 | /* |
| 715 | * KVM does not hold the refcount of the page used by |
| 716 | * kvm mmu, before reclaiming the page, we should |
| 717 | * unmap it from mmu first. |
| 718 | */ |
Ard Biesheuvel | bf4bea8 | 2014-11-10 08:33:56 +0000 | [diff] [blame] | 719 | 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] | 720 | |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 721 | if (is_accessed_spte(old_spte)) |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 722 | kvm_set_pfn_accessed(pfn); |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 723 | |
| 724 | if (is_dirty_spte(old_spte)) |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 725 | kvm_set_pfn_dirty(pfn); |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 726 | |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 727 | return 1; |
| 728 | } |
| 729 | |
| 730 | /* |
| 731 | * Rules for using mmu_spte_clear_no_track: |
| 732 | * Directly clear spte without caring the state bits of sptep, |
| 733 | * it is used to set the upper level spte. |
| 734 | */ |
| 735 | static void mmu_spte_clear_no_track(u64 *sptep) |
| 736 | { |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 737 | __update_clear_spte_fast(sptep, 0ull); |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 738 | } |
| 739 | |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 740 | static u64 mmu_spte_get_lockless(u64 *sptep) |
| 741 | { |
| 742 | return __get_spte_lockless(sptep); |
| 743 | } |
| 744 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 745 | static u64 mark_spte_for_access_track(u64 spte) |
| 746 | { |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 747 | if (spte_ad_enabled(spte)) |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 748 | return spte & ~shadow_accessed_mask; |
| 749 | |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 750 | if (is_access_track_spte(spte)) |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 751 | return spte; |
| 752 | |
| 753 | /* |
Junaid Shahid | 20d6523 | 2016-12-21 20:29:31 -0800 | [diff] [blame] | 754 | * Making an Access Tracking PTE will result in removal of write access |
| 755 | * from the PTE. So, verify that we will be able to restore the write |
| 756 | * access in the fast page fault path later on. |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 757 | */ |
| 758 | WARN_ONCE((spte & PT_WRITABLE_MASK) && |
| 759 | !spte_can_locklessly_be_made_writable(spte), |
| 760 | "kvm: Writable SPTE is not locklessly dirty-trackable\n"); |
| 761 | |
| 762 | WARN_ONCE(spte & (shadow_acc_track_saved_bits_mask << |
| 763 | shadow_acc_track_saved_bits_shift), |
| 764 | "kvm: Access Tracking saved bit locations are not zero\n"); |
| 765 | |
| 766 | spte |= (spte & shadow_acc_track_saved_bits_mask) << |
| 767 | shadow_acc_track_saved_bits_shift; |
| 768 | spte &= ~shadow_acc_track_mask; |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 769 | |
| 770 | return spte; |
| 771 | } |
| 772 | |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 773 | /* Restore an acc-track PTE back to a regular PTE */ |
| 774 | static u64 restore_acc_track_spte(u64 spte) |
| 775 | { |
| 776 | u64 new_spte = spte; |
| 777 | u64 saved_bits = (spte >> shadow_acc_track_saved_bits_shift) |
| 778 | & shadow_acc_track_saved_bits_mask; |
| 779 | |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 780 | WARN_ON_ONCE(spte_ad_enabled(spte)); |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 781 | WARN_ON_ONCE(!is_access_track_spte(spte)); |
| 782 | |
| 783 | new_spte &= ~shadow_acc_track_mask; |
| 784 | new_spte &= ~(shadow_acc_track_saved_bits_mask << |
| 785 | shadow_acc_track_saved_bits_shift); |
| 786 | new_spte |= saved_bits; |
| 787 | |
| 788 | return new_spte; |
| 789 | } |
| 790 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 791 | /* Returns the Accessed status of the PTE and resets it at the same time. */ |
| 792 | static bool mmu_spte_age(u64 *sptep) |
| 793 | { |
| 794 | u64 spte = mmu_spte_get_lockless(sptep); |
| 795 | |
| 796 | if (!is_accessed_spte(spte)) |
| 797 | return false; |
| 798 | |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 799 | if (spte_ad_enabled(spte)) { |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 800 | clear_bit((ffs(shadow_accessed_mask) - 1), |
| 801 | (unsigned long *)sptep); |
| 802 | } else { |
| 803 | /* |
| 804 | * Capture the dirty status of the page, so that it doesn't get |
| 805 | * lost when the SPTE is marked for access tracking. |
| 806 | */ |
| 807 | if (is_writable_pte(spte)) |
| 808 | kvm_set_pfn_dirty(spte_to_pfn(spte)); |
| 809 | |
| 810 | spte = mark_spte_for_access_track(spte); |
| 811 | mmu_spte_update_no_track(sptep, spte); |
| 812 | } |
| 813 | |
| 814 | return true; |
| 815 | } |
| 816 | |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 817 | static void walk_shadow_page_lockless_begin(struct kvm_vcpu *vcpu) |
| 818 | { |
Avi Kivity | c142786 | 2012-05-14 15:44:06 +0300 | [diff] [blame] | 819 | /* |
| 820 | * Prevent page table teardown by making any free-er wait during |
| 821 | * kvm_flush_remote_tlbs() IPI to all active vcpus. |
| 822 | */ |
| 823 | local_irq_disable(); |
Lan Tianyu | 36ca7e0 | 2016-03-13 11:10:25 +0800 | [diff] [blame] | 824 | |
Avi Kivity | c142786 | 2012-05-14 15:44:06 +0300 | [diff] [blame] | 825 | /* |
| 826 | * Make sure a following spte read is not reordered ahead of the write |
| 827 | * to vcpu->mode. |
| 828 | */ |
Lan Tianyu | 36ca7e0 | 2016-03-13 11:10:25 +0800 | [diff] [blame] | 829 | smp_store_mb(vcpu->mode, READING_SHADOW_PAGE_TABLES); |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 830 | } |
| 831 | |
| 832 | static void walk_shadow_page_lockless_end(struct kvm_vcpu *vcpu) |
| 833 | { |
Avi Kivity | c142786 | 2012-05-14 15:44:06 +0300 | [diff] [blame] | 834 | /* |
| 835 | * Make sure the write to vcpu->mode is not reordered in front of |
| 836 | * reads to sptes. If it does, kvm_commit_zap_page() can see us |
| 837 | * OUTSIDE_GUEST_MODE and proceed to free the shadow page table. |
| 838 | */ |
Lan Tianyu | 36ca7e0 | 2016-03-13 11:10:25 +0800 | [diff] [blame] | 839 | smp_store_release(&vcpu->mode, OUTSIDE_GUEST_MODE); |
Avi Kivity | c142786 | 2012-05-14 15:44:06 +0300 | [diff] [blame] | 840 | local_irq_enable(); |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 841 | } |
| 842 | |
Avi Kivity | e2dec93 | 2007-01-05 16:36:54 -0800 | [diff] [blame] | 843 | static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache, |
Avi Kivity | 2e3e588 | 2007-09-10 11:28:17 +0300 | [diff] [blame] | 844 | struct kmem_cache *base_cache, int min) |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 845 | { |
| 846 | void *obj; |
| 847 | |
| 848 | if (cache->nobjs >= min) |
Avi Kivity | e2dec93 | 2007-01-05 16:36:54 -0800 | [diff] [blame] | 849 | return 0; |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 850 | while (cache->nobjs < ARRAY_SIZE(cache->objects)) { |
Avi Kivity | 2e3e588 | 2007-09-10 11:28:17 +0300 | [diff] [blame] | 851 | obj = kmem_cache_zalloc(base_cache, GFP_KERNEL); |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 852 | if (!obj) |
Avi Kivity | e2dec93 | 2007-01-05 16:36:54 -0800 | [diff] [blame] | 853 | return -ENOMEM; |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 854 | cache->objects[cache->nobjs++] = obj; |
| 855 | } |
Avi Kivity | e2dec93 | 2007-01-05 16:36:54 -0800 | [diff] [blame] | 856 | return 0; |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 857 | } |
| 858 | |
Xiao Guangrong | f759e2b | 2011-09-22 16:53:17 +0800 | [diff] [blame] | 859 | static int mmu_memory_cache_free_objects(struct kvm_mmu_memory_cache *cache) |
| 860 | { |
| 861 | return cache->nobjs; |
| 862 | } |
| 863 | |
Xiao Guangrong | e8ad9a7 | 2010-05-13 10:06:02 +0800 | [diff] [blame] | 864 | static void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc, |
| 865 | struct kmem_cache *cache) |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 866 | { |
| 867 | while (mc->nobjs) |
Xiao Guangrong | e8ad9a7 | 2010-05-13 10:06:02 +0800 | [diff] [blame] | 868 | kmem_cache_free(cache, mc->objects[--mc->nobjs]); |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 869 | } |
| 870 | |
Avi Kivity | c1158e6 | 2007-07-20 08:18:27 +0300 | [diff] [blame] | 871 | 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] | 872 | int min) |
Avi Kivity | c1158e6 | 2007-07-20 08:18:27 +0300 | [diff] [blame] | 873 | { |
Xiao Guangrong | 842f22e | 2011-03-04 19:01:10 +0800 | [diff] [blame] | 874 | void *page; |
Avi Kivity | c1158e6 | 2007-07-20 08:18:27 +0300 | [diff] [blame] | 875 | |
| 876 | if (cache->nobjs >= min) |
| 877 | return 0; |
| 878 | while (cache->nobjs < ARRAY_SIZE(cache->objects)) { |
Xiao Guangrong | 842f22e | 2011-03-04 19:01:10 +0800 | [diff] [blame] | 879 | page = (void *)__get_free_page(GFP_KERNEL); |
Avi Kivity | c1158e6 | 2007-07-20 08:18:27 +0300 | [diff] [blame] | 880 | if (!page) |
| 881 | return -ENOMEM; |
Xiao Guangrong | 842f22e | 2011-03-04 19:01:10 +0800 | [diff] [blame] | 882 | cache->objects[cache->nobjs++] = page; |
Avi Kivity | c1158e6 | 2007-07-20 08:18:27 +0300 | [diff] [blame] | 883 | } |
| 884 | return 0; |
| 885 | } |
| 886 | |
| 887 | static void mmu_free_memory_cache_page(struct kvm_mmu_memory_cache *mc) |
| 888 | { |
| 889 | while (mc->nobjs) |
Avi Kivity | c4d198d | 2007-07-21 09:06:46 +0300 | [diff] [blame] | 890 | free_page((unsigned long)mc->objects[--mc->nobjs]); |
Avi Kivity | c1158e6 | 2007-07-20 08:18:27 +0300 | [diff] [blame] | 891 | } |
| 892 | |
Avi Kivity | 8c43850 | 2007-04-16 11:53:17 +0300 | [diff] [blame] | 893 | static int mmu_topup_memory_caches(struct kvm_vcpu *vcpu) |
| 894 | { |
| 895 | int r; |
| 896 | |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 897 | r = mmu_topup_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache, |
Xiao Guangrong | 67052b3 | 2011-05-15 23:27:08 +0800 | [diff] [blame] | 898 | pte_list_desc_cache, 8 + PTE_PREFETCH_NUM); |
Avi Kivity | 2e3e588 | 2007-09-10 11:28:17 +0300 | [diff] [blame] | 899 | if (r) |
| 900 | goto out; |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 901 | r = mmu_topup_memory_cache_page(&vcpu->arch.mmu_page_cache, 8); |
Avi Kivity | 2e3e588 | 2007-09-10 11:28:17 +0300 | [diff] [blame] | 902 | if (r) |
| 903 | goto out; |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 904 | r = mmu_topup_memory_cache(&vcpu->arch.mmu_page_header_cache, |
Avi Kivity | 2e3e588 | 2007-09-10 11:28:17 +0300 | [diff] [blame] | 905 | mmu_page_header_cache, 4); |
| 906 | out: |
Avi Kivity | 8c43850 | 2007-04-16 11:53:17 +0300 | [diff] [blame] | 907 | return r; |
| 908 | } |
| 909 | |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 910 | static void mmu_free_memory_caches(struct kvm_vcpu *vcpu) |
| 911 | { |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 912 | mmu_free_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache, |
| 913 | pte_list_desc_cache); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 914 | mmu_free_memory_cache_page(&vcpu->arch.mmu_page_cache); |
Xiao Guangrong | e8ad9a7 | 2010-05-13 10:06:02 +0800 | [diff] [blame] | 915 | mmu_free_memory_cache(&vcpu->arch.mmu_page_header_cache, |
| 916 | mmu_page_header_cache); |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 917 | } |
| 918 | |
Takuya Yoshikawa | 80feb89 | 2012-05-29 23:54:26 +0900 | [diff] [blame] | 919 | static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc) |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 920 | { |
| 921 | void *p; |
| 922 | |
| 923 | BUG_ON(!mc->nobjs); |
| 924 | p = mc->objects[--mc->nobjs]; |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 925 | return p; |
| 926 | } |
| 927 | |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 928 | 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] | 929 | { |
Takuya Yoshikawa | 80feb89 | 2012-05-29 23:54:26 +0900 | [diff] [blame] | 930 | return mmu_memory_cache_alloc(&vcpu->arch.mmu_pte_list_desc_cache); |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 931 | } |
| 932 | |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 933 | 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] | 934 | { |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 935 | kmem_cache_free(pte_list_desc_cache, pte_list_desc); |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 936 | } |
| 937 | |
Lai Jiangshan | 2032a93 | 2010-05-26 16:49:59 +0800 | [diff] [blame] | 938 | static gfn_t kvm_mmu_page_get_gfn(struct kvm_mmu_page *sp, int index) |
| 939 | { |
| 940 | if (!sp->role.direct) |
| 941 | return sp->gfns[index]; |
| 942 | |
| 943 | return sp->gfn + (index << ((sp->role.level - 1) * PT64_LEVEL_BITS)); |
| 944 | } |
| 945 | |
| 946 | static void kvm_mmu_page_set_gfn(struct kvm_mmu_page *sp, int index, gfn_t gfn) |
| 947 | { |
| 948 | if (sp->role.direct) |
| 949 | BUG_ON(gfn != kvm_mmu_page_get_gfn(sp, index)); |
| 950 | else |
| 951 | sp->gfns[index] = gfn; |
| 952 | } |
| 953 | |
Avi Kivity | cd4a4e5 | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 954 | /* |
Takuya Yoshikawa | d4dbf47 | 2010-12-07 12:59:07 +0900 | [diff] [blame] | 955 | * Return the pointer to the large page information for a given gfn, |
| 956 | * handling slots that are not large page aligned. |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 957 | */ |
Takuya Yoshikawa | d4dbf47 | 2010-12-07 12:59:07 +0900 | [diff] [blame] | 958 | static struct kvm_lpage_info *lpage_info_slot(gfn_t gfn, |
| 959 | struct kvm_memory_slot *slot, |
| 960 | int level) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 961 | { |
| 962 | unsigned long idx; |
| 963 | |
Takuya Yoshikawa | fb03cb6 | 2012-02-08 12:59:10 +0900 | [diff] [blame] | 964 | idx = gfn_to_index(gfn, slot->base_gfn, level); |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 965 | return &slot->arch.lpage_info[level - 2][idx]; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 966 | } |
| 967 | |
Xiao Guangrong | 547ffae | 2016-02-24 17:51:07 +0800 | [diff] [blame] | 968 | static void update_gfn_disallow_lpage_count(struct kvm_memory_slot *slot, |
| 969 | gfn_t gfn, int count) |
| 970 | { |
| 971 | struct kvm_lpage_info *linfo; |
| 972 | int i; |
| 973 | |
| 974 | for (i = PT_DIRECTORY_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) { |
| 975 | linfo = lpage_info_slot(gfn, slot, i); |
| 976 | linfo->disallow_lpage += count; |
| 977 | WARN_ON(linfo->disallow_lpage < 0); |
| 978 | } |
| 979 | } |
| 980 | |
| 981 | void kvm_mmu_gfn_disallow_lpage(struct kvm_memory_slot *slot, gfn_t gfn) |
| 982 | { |
| 983 | update_gfn_disallow_lpage_count(slot, gfn, 1); |
| 984 | } |
| 985 | |
| 986 | void kvm_mmu_gfn_allow_lpage(struct kvm_memory_slot *slot, gfn_t gfn) |
| 987 | { |
| 988 | update_gfn_disallow_lpage_count(slot, gfn, -1); |
| 989 | } |
| 990 | |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 991 | static void account_shadowed(struct kvm *kvm, struct kvm_mmu_page *sp) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 992 | { |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 993 | struct kvm_memslots *slots; |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 994 | struct kvm_memory_slot *slot; |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 995 | gfn_t gfn; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 996 | |
Xiao Guangrong | 56ca57f | 2016-02-24 17:51:14 +0800 | [diff] [blame] | 997 | kvm->arch.indirect_shadow_pages++; |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 998 | gfn = sp->gfn; |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 999 | slots = kvm_memslots_for_spte_role(kvm, sp->role); |
| 1000 | slot = __gfn_to_memslot(slots, gfn); |
Xiao Guangrong | 56ca57f | 2016-02-24 17:51:14 +0800 | [diff] [blame] | 1001 | |
| 1002 | /* the non-leaf shadow pages are keeping readonly. */ |
| 1003 | if (sp->role.level > PT_PAGE_TABLE_LEVEL) |
| 1004 | return kvm_slot_page_track_add_page(kvm, slot, gfn, |
| 1005 | KVM_PAGE_TRACK_WRITE); |
| 1006 | |
Xiao Guangrong | 547ffae | 2016-02-24 17:51:07 +0800 | [diff] [blame] | 1007 | kvm_mmu_gfn_disallow_lpage(slot, gfn); |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1008 | } |
| 1009 | |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 1010 | static void unaccount_shadowed(struct kvm *kvm, struct kvm_mmu_page *sp) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1011 | { |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 1012 | struct kvm_memslots *slots; |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 1013 | struct kvm_memory_slot *slot; |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 1014 | gfn_t gfn; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1015 | |
Xiao Guangrong | 56ca57f | 2016-02-24 17:51:14 +0800 | [diff] [blame] | 1016 | kvm->arch.indirect_shadow_pages--; |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 1017 | gfn = sp->gfn; |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 1018 | slots = kvm_memslots_for_spte_role(kvm, sp->role); |
| 1019 | slot = __gfn_to_memslot(slots, gfn); |
Xiao Guangrong | 56ca57f | 2016-02-24 17:51:14 +0800 | [diff] [blame] | 1020 | if (sp->role.level > PT_PAGE_TABLE_LEVEL) |
| 1021 | return kvm_slot_page_track_remove_page(kvm, slot, gfn, |
| 1022 | KVM_PAGE_TRACK_WRITE); |
| 1023 | |
Xiao Guangrong | 547ffae | 2016-02-24 17:51:07 +0800 | [diff] [blame] | 1024 | kvm_mmu_gfn_allow_lpage(slot, gfn); |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1025 | } |
| 1026 | |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 1027 | static bool __mmu_gfn_lpage_is_disallowed(gfn_t gfn, int level, |
| 1028 | struct kvm_memory_slot *slot) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1029 | { |
Takuya Yoshikawa | d4dbf47 | 2010-12-07 12:59:07 +0900 | [diff] [blame] | 1030 | struct kvm_lpage_info *linfo; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1031 | |
| 1032 | if (slot) { |
Takuya Yoshikawa | d4dbf47 | 2010-12-07 12:59:07 +0900 | [diff] [blame] | 1033 | linfo = lpage_info_slot(gfn, slot, level); |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 1034 | return !!linfo->disallow_lpage; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1035 | } |
| 1036 | |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 1037 | return true; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1038 | } |
| 1039 | |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 1040 | static bool mmu_gfn_lpage_is_disallowed(struct kvm_vcpu *vcpu, gfn_t gfn, |
| 1041 | int level) |
Takuya Yoshikawa | 5225fdf | 2015-10-16 17:08:03 +0900 | [diff] [blame] | 1042 | { |
| 1043 | struct kvm_memory_slot *slot; |
| 1044 | |
| 1045 | slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn); |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 1046 | return __mmu_gfn_lpage_is_disallowed(gfn, level, slot); |
Takuya Yoshikawa | 5225fdf | 2015-10-16 17:08:03 +0900 | [diff] [blame] | 1047 | } |
| 1048 | |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 1049 | static int host_mapping_level(struct kvm *kvm, gfn_t gfn) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1050 | { |
Joerg Roedel | 8f0b1ab | 2010-01-28 12:37:56 +0100 | [diff] [blame] | 1051 | unsigned long page_size; |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 1052 | int i, ret = 0; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1053 | |
Joerg Roedel | 8f0b1ab | 2010-01-28 12:37:56 +0100 | [diff] [blame] | 1054 | page_size = kvm_host_page_size(kvm, gfn); |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1055 | |
Xiao Guangrong | 8a3d08f | 2015-05-13 14:42:21 +0800 | [diff] [blame] | 1056 | for (i = PT_PAGE_TABLE_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) { |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 1057 | if (page_size >= KVM_HPAGE_SIZE(i)) |
| 1058 | ret = i; |
| 1059 | else |
| 1060 | break; |
| 1061 | } |
| 1062 | |
Marcelo Tosatti | 4c2155c | 2008-09-16 20:54:47 -0300 | [diff] [blame] | 1063 | return ret; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1064 | } |
| 1065 | |
Takuya Yoshikawa | d8aacf5 | 2015-10-16 17:07:01 +0900 | [diff] [blame] | 1066 | static inline bool memslot_valid_for_gpte(struct kvm_memory_slot *slot, |
| 1067 | bool no_dirty_log) |
| 1068 | { |
| 1069 | if (!slot || slot->flags & KVM_MEMSLOT_INVALID) |
| 1070 | return false; |
| 1071 | if (no_dirty_log && slot->dirty_bitmap) |
| 1072 | return false; |
| 1073 | |
| 1074 | return true; |
| 1075 | } |
| 1076 | |
Xiao Guangrong | 5d163b1 | 2011-03-09 15:43:00 +0800 | [diff] [blame] | 1077 | static struct kvm_memory_slot * |
| 1078 | gfn_to_memslot_dirty_bitmap(struct kvm_vcpu *vcpu, gfn_t gfn, |
| 1079 | bool no_dirty_log) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1080 | { |
| 1081 | struct kvm_memory_slot *slot; |
Xiao Guangrong | 5d163b1 | 2011-03-09 15:43:00 +0800 | [diff] [blame] | 1082 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 1083 | slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn); |
Takuya Yoshikawa | d8aacf5 | 2015-10-16 17:07:01 +0900 | [diff] [blame] | 1084 | if (!memslot_valid_for_gpte(slot, no_dirty_log)) |
Xiao Guangrong | 5d163b1 | 2011-03-09 15:43:00 +0800 | [diff] [blame] | 1085 | slot = NULL; |
| 1086 | |
| 1087 | return slot; |
| 1088 | } |
| 1089 | |
Takuya Yoshikawa | fd13690 | 2015-10-16 17:06:02 +0900 | [diff] [blame] | 1090 | static int mapping_level(struct kvm_vcpu *vcpu, gfn_t large_gfn, |
| 1091 | bool *force_pt_level) |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 1092 | { |
| 1093 | int host_level, level, max_level; |
Takuya Yoshikawa | d8aacf5 | 2015-10-16 17:07:01 +0900 | [diff] [blame] | 1094 | struct kvm_memory_slot *slot; |
| 1095 | |
Takuya Yoshikawa | 8c85ac1 | 2015-10-19 15:13:29 +0900 | [diff] [blame] | 1096 | if (unlikely(*force_pt_level)) |
| 1097 | return PT_PAGE_TABLE_LEVEL; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1098 | |
Takuya Yoshikawa | 8c85ac1 | 2015-10-19 15:13:29 +0900 | [diff] [blame] | 1099 | slot = kvm_vcpu_gfn_to_memslot(vcpu, large_gfn); |
| 1100 | *force_pt_level = !memslot_valid_for_gpte(slot, true); |
Takuya Yoshikawa | fd13690 | 2015-10-16 17:06:02 +0900 | [diff] [blame] | 1101 | if (unlikely(*force_pt_level)) |
| 1102 | return PT_PAGE_TABLE_LEVEL; |
| 1103 | |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 1104 | host_level = host_mapping_level(vcpu->kvm, large_gfn); |
| 1105 | |
| 1106 | if (host_level == PT_PAGE_TABLE_LEVEL) |
| 1107 | return host_level; |
| 1108 | |
Xiao Guangrong | 55dd98c | 2013-02-05 15:26:54 +0800 | [diff] [blame] | 1109 | max_level = min(kvm_x86_ops->get_lpage_level(), host_level); |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 1110 | |
| 1111 | for (level = PT_DIRECTORY_LEVEL; level <= max_level; ++level) |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 1112 | if (__mmu_gfn_lpage_is_disallowed(large_gfn, level, slot)) |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 1113 | break; |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 1114 | |
| 1115 | return level - 1; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1116 | } |
| 1117 | |
| 1118 | /* |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1119 | * About rmap_head encoding: |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1120 | * |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1121 | * If the bit zero of rmap_head->val is clear, then it points to the only spte |
| 1122 | * 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] | 1123 | * pte_list_desc containing more mappings. |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1124 | */ |
| 1125 | |
| 1126 | /* |
| 1127 | * 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] | 1128 | */ |
| 1129 | static int pte_list_add(struct kvm_vcpu *vcpu, u64 *spte, |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1130 | struct kvm_rmap_head *rmap_head) |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1131 | { |
| 1132 | struct pte_list_desc *desc; |
| 1133 | int i, count = 0; |
| 1134 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1135 | if (!rmap_head->val) { |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1136 | rmap_printk("pte_list_add: %p %llx 0->1\n", spte, *spte); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1137 | rmap_head->val = (unsigned long)spte; |
| 1138 | } else if (!(rmap_head->val & 1)) { |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1139 | rmap_printk("pte_list_add: %p %llx 1->many\n", spte, *spte); |
| 1140 | desc = mmu_alloc_pte_list_desc(vcpu); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1141 | desc->sptes[0] = (u64 *)rmap_head->val; |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1142 | desc->sptes[1] = spte; |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1143 | rmap_head->val = (unsigned long)desc | 1; |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1144 | ++count; |
| 1145 | } else { |
| 1146 | rmap_printk("pte_list_add: %p %llx many->many\n", spte, *spte); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1147 | desc = (struct pte_list_desc *)(rmap_head->val & ~1ul); |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1148 | while (desc->sptes[PTE_LIST_EXT-1] && desc->more) { |
| 1149 | desc = desc->more; |
| 1150 | count += PTE_LIST_EXT; |
| 1151 | } |
| 1152 | if (desc->sptes[PTE_LIST_EXT-1]) { |
| 1153 | desc->more = mmu_alloc_pte_list_desc(vcpu); |
| 1154 | desc = desc->more; |
| 1155 | } |
| 1156 | for (i = 0; desc->sptes[i]; ++i) |
| 1157 | ++count; |
| 1158 | desc->sptes[i] = spte; |
| 1159 | } |
| 1160 | return count; |
| 1161 | } |
| 1162 | |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1163 | static void |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1164 | pte_list_desc_remove_entry(struct kvm_rmap_head *rmap_head, |
| 1165 | struct pte_list_desc *desc, int i, |
| 1166 | struct pte_list_desc *prev_desc) |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1167 | { |
| 1168 | int j; |
| 1169 | |
| 1170 | for (j = PTE_LIST_EXT - 1; !desc->sptes[j] && j > i; --j) |
| 1171 | ; |
| 1172 | desc->sptes[i] = desc->sptes[j]; |
| 1173 | desc->sptes[j] = NULL; |
| 1174 | if (j != 0) |
| 1175 | return; |
| 1176 | if (!prev_desc && !desc->more) |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1177 | rmap_head->val = (unsigned long)desc->sptes[0]; |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1178 | else |
| 1179 | if (prev_desc) |
| 1180 | prev_desc->more = desc->more; |
| 1181 | else |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1182 | rmap_head->val = (unsigned long)desc->more | 1; |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1183 | mmu_free_pte_list_desc(desc); |
| 1184 | } |
| 1185 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1186 | 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] | 1187 | { |
| 1188 | struct pte_list_desc *desc; |
| 1189 | struct pte_list_desc *prev_desc; |
| 1190 | int i; |
| 1191 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1192 | if (!rmap_head->val) { |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1193 | printk(KERN_ERR "pte_list_remove: %p 0->BUG\n", spte); |
| 1194 | BUG(); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1195 | } else if (!(rmap_head->val & 1)) { |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1196 | rmap_printk("pte_list_remove: %p 1->0\n", spte); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1197 | if ((u64 *)rmap_head->val != spte) { |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1198 | printk(KERN_ERR "pte_list_remove: %p 1->BUG\n", spte); |
| 1199 | BUG(); |
| 1200 | } |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1201 | rmap_head->val = 0; |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1202 | } else { |
| 1203 | rmap_printk("pte_list_remove: %p many->many\n", spte); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1204 | desc = (struct pte_list_desc *)(rmap_head->val & ~1ul); |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1205 | prev_desc = NULL; |
| 1206 | while (desc) { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1207 | for (i = 0; i < PTE_LIST_EXT && desc->sptes[i]; ++i) { |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1208 | if (desc->sptes[i] == spte) { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1209 | pte_list_desc_remove_entry(rmap_head, |
| 1210 | desc, i, prev_desc); |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1211 | return; |
| 1212 | } |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1213 | } |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1214 | prev_desc = desc; |
| 1215 | desc = desc->more; |
| 1216 | } |
| 1217 | pr_err("pte_list_remove: %p many->many\n", spte); |
| 1218 | BUG(); |
| 1219 | } |
| 1220 | } |
| 1221 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1222 | static struct kvm_rmap_head *__gfn_to_rmap(gfn_t gfn, int level, |
| 1223 | struct kvm_memory_slot *slot) |
Takuya Yoshikawa | 9b9b149 | 2011-11-14 18:22:28 +0900 | [diff] [blame] | 1224 | { |
Takuya Yoshikawa | 77d1130 | 2012-07-02 17:57:17 +0900 | [diff] [blame] | 1225 | unsigned long idx; |
Takuya Yoshikawa | 9b9b149 | 2011-11-14 18:22:28 +0900 | [diff] [blame] | 1226 | |
Takuya Yoshikawa | 77d1130 | 2012-07-02 17:57:17 +0900 | [diff] [blame] | 1227 | idx = gfn_to_index(gfn, slot->base_gfn, level); |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 1228 | return &slot->arch.rmap[level - PT_PAGE_TABLE_LEVEL][idx]; |
Takuya Yoshikawa | 9b9b149 | 2011-11-14 18:22:28 +0900 | [diff] [blame] | 1229 | } |
| 1230 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1231 | static struct kvm_rmap_head *gfn_to_rmap(struct kvm *kvm, gfn_t gfn, |
| 1232 | struct kvm_mmu_page *sp) |
Izik Eidus | 290fc38 | 2007-09-27 14:11:22 +0200 | [diff] [blame] | 1233 | { |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 1234 | struct kvm_memslots *slots; |
Izik Eidus | 290fc38 | 2007-09-27 14:11:22 +0200 | [diff] [blame] | 1235 | struct kvm_memory_slot *slot; |
| 1236 | |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 1237 | slots = kvm_memslots_for_spte_role(kvm, sp->role); |
| 1238 | slot = __gfn_to_memslot(slots, gfn); |
Paolo Bonzini | e4cd1da | 2015-05-18 15:11:46 +0200 | [diff] [blame] | 1239 | return __gfn_to_rmap(gfn, sp->role.level, slot); |
Izik Eidus | 290fc38 | 2007-09-27 14:11:22 +0200 | [diff] [blame] | 1240 | } |
| 1241 | |
Xiao Guangrong | f759e2b | 2011-09-22 16:53:17 +0800 | [diff] [blame] | 1242 | static bool rmap_can_add(struct kvm_vcpu *vcpu) |
| 1243 | { |
| 1244 | struct kvm_mmu_memory_cache *cache; |
| 1245 | |
| 1246 | cache = &vcpu->arch.mmu_pte_list_desc_cache; |
| 1247 | return mmu_memory_cache_free_objects(cache); |
| 1248 | } |
| 1249 | |
Joerg Roedel | 44ad994 | 2009-07-27 16:30:42 +0200 | [diff] [blame] | 1250 | 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] | 1251 | { |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 1252 | struct kvm_mmu_page *sp; |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1253 | struct kvm_rmap_head *rmap_head; |
Avi Kivity | cd4a4e5 | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 1254 | |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 1255 | sp = page_header(__pa(spte)); |
Lai Jiangshan | 2032a93 | 2010-05-26 16:49:59 +0800 | [diff] [blame] | 1256 | kvm_mmu_page_set_gfn(sp, spte - sp->spt, gfn); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1257 | rmap_head = gfn_to_rmap(vcpu->kvm, gfn, sp); |
| 1258 | return pte_list_add(vcpu, spte, rmap_head); |
Avi Kivity | cd4a4e5 | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 1259 | } |
| 1260 | |
Izik Eidus | 290fc38 | 2007-09-27 14:11:22 +0200 | [diff] [blame] | 1261 | static void rmap_remove(struct kvm *kvm, u64 *spte) |
Avi Kivity | cd4a4e5 | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 1262 | { |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 1263 | struct kvm_mmu_page *sp; |
Lai Jiangshan | 2032a93 | 2010-05-26 16:49:59 +0800 | [diff] [blame] | 1264 | gfn_t gfn; |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1265 | struct kvm_rmap_head *rmap_head; |
Avi Kivity | cd4a4e5 | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 1266 | |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 1267 | sp = page_header(__pa(spte)); |
Lai Jiangshan | 2032a93 | 2010-05-26 16:49:59 +0800 | [diff] [blame] | 1268 | gfn = kvm_mmu_page_get_gfn(sp, spte - sp->spt); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1269 | rmap_head = gfn_to_rmap(kvm, gfn, sp); |
| 1270 | pte_list_remove(spte, rmap_head); |
Avi Kivity | cd4a4e5 | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 1271 | } |
| 1272 | |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1273 | /* |
| 1274 | * Used by the following functions to iterate through the sptes linked by a |
| 1275 | * rmap. All fields are private and not assumed to be used outside. |
| 1276 | */ |
| 1277 | struct rmap_iterator { |
| 1278 | /* private fields */ |
| 1279 | struct pte_list_desc *desc; /* holds the sptep if not NULL */ |
| 1280 | int pos; /* index of the sptep */ |
| 1281 | }; |
| 1282 | |
| 1283 | /* |
| 1284 | * Iteration must be started by this function. This should also be used after |
| 1285 | * removing/dropping sptes from the rmap link because in such cases the |
| 1286 | * information in the itererator may not be valid. |
| 1287 | * |
| 1288 | * Returns sptep if found, NULL otherwise. |
| 1289 | */ |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1290 | static u64 *rmap_get_first(struct kvm_rmap_head *rmap_head, |
| 1291 | struct rmap_iterator *iter) |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1292 | { |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1293 | u64 *sptep; |
| 1294 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1295 | if (!rmap_head->val) |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1296 | return NULL; |
| 1297 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1298 | if (!(rmap_head->val & 1)) { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1299 | iter->desc = NULL; |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1300 | sptep = (u64 *)rmap_head->val; |
| 1301 | goto out; |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1302 | } |
| 1303 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1304 | iter->desc = (struct pte_list_desc *)(rmap_head->val & ~1ul); |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1305 | iter->pos = 0; |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1306 | sptep = iter->desc->sptes[iter->pos]; |
| 1307 | out: |
| 1308 | BUG_ON(!is_shadow_present_pte(*sptep)); |
| 1309 | return sptep; |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1310 | } |
| 1311 | |
| 1312 | /* |
| 1313 | * Must be used with a valid iterator: e.g. after rmap_get_first(). |
| 1314 | * |
| 1315 | * Returns sptep if found, NULL otherwise. |
| 1316 | */ |
| 1317 | static u64 *rmap_get_next(struct rmap_iterator *iter) |
| 1318 | { |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1319 | u64 *sptep; |
| 1320 | |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1321 | if (iter->desc) { |
| 1322 | if (iter->pos < PTE_LIST_EXT - 1) { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1323 | ++iter->pos; |
| 1324 | sptep = iter->desc->sptes[iter->pos]; |
| 1325 | if (sptep) |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1326 | goto out; |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1327 | } |
| 1328 | |
| 1329 | iter->desc = iter->desc->more; |
| 1330 | |
| 1331 | if (iter->desc) { |
| 1332 | iter->pos = 0; |
| 1333 | /* desc->sptes[0] cannot be NULL */ |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1334 | sptep = iter->desc->sptes[iter->pos]; |
| 1335 | goto out; |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1336 | } |
| 1337 | } |
| 1338 | |
| 1339 | return NULL; |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1340 | out: |
| 1341 | BUG_ON(!is_shadow_present_pte(*sptep)); |
| 1342 | return sptep; |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1343 | } |
| 1344 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1345 | #define for_each_rmap_spte(_rmap_head_, _iter_, _spte_) \ |
| 1346 | for (_spte_ = rmap_get_first(_rmap_head_, _iter_); \ |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1347 | _spte_; _spte_ = rmap_get_next(_iter_)) |
Xiao Guangrong | 0d53679 | 2015-05-13 14:42:20 +0800 | [diff] [blame] | 1348 | |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 1349 | static void drop_spte(struct kvm *kvm, u64 *sptep) |
Xiao Guangrong | e4b502e | 2010-07-16 11:28:09 +0800 | [diff] [blame] | 1350 | { |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 1351 | if (mmu_spte_clear_track_bits(sptep)) |
Marcelo Tosatti | eb45fda | 2010-10-25 11:58:22 -0200 | [diff] [blame] | 1352 | rmap_remove(kvm, sptep); |
Avi Kivity | be38d27 | 2010-06-06 14:31:27 +0300 | [diff] [blame] | 1353 | } |
| 1354 | |
Xiao Guangrong | 8e22f95 | 2012-06-20 15:57:39 +0800 | [diff] [blame] | 1355 | |
| 1356 | static bool __drop_large_spte(struct kvm *kvm, u64 *sptep) |
| 1357 | { |
| 1358 | if (is_large_pte(*sptep)) { |
| 1359 | WARN_ON(page_header(__pa(sptep))->role.level == |
| 1360 | PT_PAGE_TABLE_LEVEL); |
| 1361 | drop_spte(kvm, sptep); |
| 1362 | --kvm->stat.lpages; |
| 1363 | return true; |
| 1364 | } |
| 1365 | |
| 1366 | return false; |
| 1367 | } |
| 1368 | |
| 1369 | static void drop_large_spte(struct kvm_vcpu *vcpu, u64 *sptep) |
| 1370 | { |
| 1371 | if (__drop_large_spte(vcpu->kvm, sptep)) |
| 1372 | kvm_flush_remote_tlbs(vcpu->kvm); |
| 1373 | } |
| 1374 | |
| 1375 | /* |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 1376 | * Write-protect on the specified @sptep, @pt_protect indicates whether |
Xiao Guangrong | c126d94 | 2014-04-17 17:06:14 +0800 | [diff] [blame] | 1377 | * spte write-protection is caused by protecting shadow page table. |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 1378 | * |
Tiejun Chen | b461966 | 2014-09-22 10:31:38 +0800 | [diff] [blame] | 1379 | * Note: write protection is difference between dirty logging and spte |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 1380 | * protection: |
| 1381 | * - for dirty logging, the spte can be set to writable at anytime if |
| 1382 | * its dirty bitmap is properly set. |
| 1383 | * - for spte protection, the spte can be writable only after unsync-ing |
| 1384 | * shadow page. |
Xiao Guangrong | 8e22f95 | 2012-06-20 15:57:39 +0800 | [diff] [blame] | 1385 | * |
Xiao Guangrong | c126d94 | 2014-04-17 17:06:14 +0800 | [diff] [blame] | 1386 | * Return true if tlb need be flushed. |
Xiao Guangrong | 8e22f95 | 2012-06-20 15:57:39 +0800 | [diff] [blame] | 1387 | */ |
Bandan Das | c4f138b | 2016-08-02 16:32:37 -0400 | [diff] [blame] | 1388 | static bool spte_write_protect(u64 *sptep, bool pt_protect) |
Xiao Guangrong | d13bc5b | 2012-06-20 15:57:15 +0800 | [diff] [blame] | 1389 | { |
| 1390 | u64 spte = *sptep; |
| 1391 | |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 1392 | if (!is_writable_pte(spte) && |
Junaid Shahid | ea4114b | 2016-12-06 16:46:11 -0800 | [diff] [blame] | 1393 | !(pt_protect && spte_can_locklessly_be_made_writable(spte))) |
Xiao Guangrong | d13bc5b | 2012-06-20 15:57:15 +0800 | [diff] [blame] | 1394 | return false; |
| 1395 | |
| 1396 | rmap_printk("rmap_write_protect: spte %p %llx\n", sptep, *sptep); |
| 1397 | |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 1398 | if (pt_protect) |
| 1399 | spte &= ~SPTE_MMU_WRITEABLE; |
Xiao Guangrong | d13bc5b | 2012-06-20 15:57:15 +0800 | [diff] [blame] | 1400 | spte = spte & ~PT_WRITABLE_MASK; |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 1401 | |
Xiao Guangrong | c126d94 | 2014-04-17 17:06:14 +0800 | [diff] [blame] | 1402 | return mmu_spte_update(sptep, spte); |
Xiao Guangrong | d13bc5b | 2012-06-20 15:57:15 +0800 | [diff] [blame] | 1403 | } |
| 1404 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1405 | static bool __rmap_write_protect(struct kvm *kvm, |
| 1406 | struct kvm_rmap_head *rmap_head, |
Takuya Yoshikawa | 245c391 | 2013-01-08 19:44:09 +0900 | [diff] [blame] | 1407 | bool pt_protect) |
Takuya Yoshikawa | a0ed460 | 2012-03-01 19:31:22 +0900 | [diff] [blame] | 1408 | { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1409 | u64 *sptep; |
| 1410 | struct rmap_iterator iter; |
Xiao Guangrong | d13bc5b | 2012-06-20 15:57:15 +0800 | [diff] [blame] | 1411 | bool flush = false; |
Takuya Yoshikawa | a0ed460 | 2012-03-01 19:31:22 +0900 | [diff] [blame] | 1412 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1413 | for_each_rmap_spte(rmap_head, &iter, sptep) |
Bandan Das | c4f138b | 2016-08-02 16:32:37 -0400 | [diff] [blame] | 1414 | flush |= spte_write_protect(sptep, pt_protect); |
Takuya Yoshikawa | a0ed460 | 2012-03-01 19:31:22 +0900 | [diff] [blame] | 1415 | |
Xiao Guangrong | d13bc5b | 2012-06-20 15:57:15 +0800 | [diff] [blame] | 1416 | return flush; |
Takuya Yoshikawa | a0ed460 | 2012-03-01 19:31:22 +0900 | [diff] [blame] | 1417 | } |
| 1418 | |
Bandan Das | c4f138b | 2016-08-02 16:32:37 -0400 | [diff] [blame] | 1419 | static bool spte_clear_dirty(u64 *sptep) |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 1420 | { |
| 1421 | u64 spte = *sptep; |
| 1422 | |
| 1423 | rmap_printk("rmap_clear_dirty: spte %p %llx\n", sptep, *sptep); |
| 1424 | |
| 1425 | spte &= ~shadow_dirty_mask; |
| 1426 | |
| 1427 | return mmu_spte_update(sptep, spte); |
| 1428 | } |
| 1429 | |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 1430 | static bool wrprot_ad_disabled_spte(u64 *sptep) |
| 1431 | { |
| 1432 | bool was_writable = test_and_clear_bit(PT_WRITABLE_SHIFT, |
| 1433 | (unsigned long *)sptep); |
| 1434 | if (was_writable) |
| 1435 | kvm_set_pfn_dirty(spte_to_pfn(*sptep)); |
| 1436 | |
| 1437 | return was_writable; |
| 1438 | } |
| 1439 | |
| 1440 | /* |
| 1441 | * Gets the GFN ready for another round of dirty logging by clearing the |
| 1442 | * - D bit on ad-enabled SPTEs, and |
| 1443 | * - W bit on ad-disabled SPTEs. |
| 1444 | * Returns true iff any D or W bits were cleared. |
| 1445 | */ |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1446 | 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] | 1447 | { |
| 1448 | u64 *sptep; |
| 1449 | struct rmap_iterator iter; |
| 1450 | bool flush = false; |
| 1451 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1452 | for_each_rmap_spte(rmap_head, &iter, sptep) |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 1453 | if (spte_ad_enabled(*sptep)) |
| 1454 | flush |= spte_clear_dirty(sptep); |
| 1455 | else |
| 1456 | flush |= wrprot_ad_disabled_spte(sptep); |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 1457 | |
| 1458 | return flush; |
| 1459 | } |
| 1460 | |
Bandan Das | c4f138b | 2016-08-02 16:32:37 -0400 | [diff] [blame] | 1461 | static bool spte_set_dirty(u64 *sptep) |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 1462 | { |
| 1463 | u64 spte = *sptep; |
| 1464 | |
| 1465 | rmap_printk("rmap_set_dirty: spte %p %llx\n", sptep, *sptep); |
| 1466 | |
| 1467 | spte |= shadow_dirty_mask; |
| 1468 | |
| 1469 | return mmu_spte_update(sptep, spte); |
| 1470 | } |
| 1471 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1472 | 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] | 1473 | { |
| 1474 | u64 *sptep; |
| 1475 | struct rmap_iterator iter; |
| 1476 | bool flush = false; |
| 1477 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1478 | for_each_rmap_spte(rmap_head, &iter, sptep) |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 1479 | if (spte_ad_enabled(*sptep)) |
| 1480 | flush |= spte_set_dirty(sptep); |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 1481 | |
| 1482 | return flush; |
| 1483 | } |
| 1484 | |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1485 | /** |
Kai Huang | 3b0f1d0 | 2015-01-28 10:54:23 +0800 | [diff] [blame] | 1486 | * kvm_mmu_write_protect_pt_masked - write protect selected PT level pages |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1487 | * @kvm: kvm instance |
| 1488 | * @slot: slot to protect |
| 1489 | * @gfn_offset: start of the BITS_PER_LONG pages we care about |
| 1490 | * @mask: indicates which pages we should protect |
| 1491 | * |
| 1492 | * Used when we do not need to care about huge page mappings: e.g. during dirty |
| 1493 | * logging we do not have any such mappings. |
| 1494 | */ |
Kai Huang | 3b0f1d0 | 2015-01-28 10:54:23 +0800 | [diff] [blame] | 1495 | static void kvm_mmu_write_protect_pt_masked(struct kvm *kvm, |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1496 | struct kvm_memory_slot *slot, |
| 1497 | gfn_t gfn_offset, unsigned long mask) |
Izik Eidus | 98348e9 | 2007-10-16 14:42:30 +0200 | [diff] [blame] | 1498 | { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1499 | struct kvm_rmap_head *rmap_head; |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1500 | |
| 1501 | while (mask) { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1502 | rmap_head = __gfn_to_rmap(slot->base_gfn + gfn_offset + __ffs(mask), |
| 1503 | PT_PAGE_TABLE_LEVEL, slot); |
| 1504 | __rmap_write_protect(kvm, rmap_head, false); |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1505 | |
| 1506 | /* clear the first set bit */ |
| 1507 | mask &= mask - 1; |
| 1508 | } |
| 1509 | } |
| 1510 | |
Kai Huang | 3b0f1d0 | 2015-01-28 10:54:23 +0800 | [diff] [blame] | 1511 | /** |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 1512 | * kvm_mmu_clear_dirty_pt_masked - clear MMU D-bit for PT level pages, or write |
| 1513 | * protect the page if the D-bit isn't supported. |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 1514 | * @kvm: kvm instance |
| 1515 | * @slot: slot to clear D-bit |
| 1516 | * @gfn_offset: start of the BITS_PER_LONG pages we care about |
| 1517 | * @mask: indicates which pages we should clear D-bit |
| 1518 | * |
| 1519 | * Used for PML to re-log the dirty GPAs after userspace querying dirty_bitmap. |
| 1520 | */ |
| 1521 | void kvm_mmu_clear_dirty_pt_masked(struct kvm *kvm, |
| 1522 | struct kvm_memory_slot *slot, |
| 1523 | gfn_t gfn_offset, unsigned long mask) |
| 1524 | { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1525 | struct kvm_rmap_head *rmap_head; |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 1526 | |
| 1527 | while (mask) { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1528 | rmap_head = __gfn_to_rmap(slot->base_gfn + gfn_offset + __ffs(mask), |
| 1529 | PT_PAGE_TABLE_LEVEL, slot); |
| 1530 | __rmap_clear_dirty(kvm, rmap_head); |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 1531 | |
| 1532 | /* clear the first set bit */ |
| 1533 | mask &= mask - 1; |
| 1534 | } |
| 1535 | } |
| 1536 | EXPORT_SYMBOL_GPL(kvm_mmu_clear_dirty_pt_masked); |
| 1537 | |
| 1538 | /** |
Kai Huang | 3b0f1d0 | 2015-01-28 10:54:23 +0800 | [diff] [blame] | 1539 | * kvm_arch_mmu_enable_log_dirty_pt_masked - enable dirty logging for selected |
| 1540 | * PT level pages. |
| 1541 | * |
| 1542 | * It calls kvm_mmu_write_protect_pt_masked to write protect selected pages to |
| 1543 | * enable dirty logging for them. |
| 1544 | * |
| 1545 | * Used when we do not need to care about huge page mappings: e.g. during dirty |
| 1546 | * logging we do not have any such mappings. |
| 1547 | */ |
| 1548 | void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm, |
| 1549 | struct kvm_memory_slot *slot, |
| 1550 | gfn_t gfn_offset, unsigned long mask) |
| 1551 | { |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 1552 | if (kvm_x86_ops->enable_log_dirty_pt_masked) |
| 1553 | kvm_x86_ops->enable_log_dirty_pt_masked(kvm, slot, gfn_offset, |
| 1554 | mask); |
| 1555 | else |
| 1556 | kvm_mmu_write_protect_pt_masked(kvm, slot, gfn_offset, mask); |
Kai Huang | 3b0f1d0 | 2015-01-28 10:54:23 +0800 | [diff] [blame] | 1557 | } |
| 1558 | |
Bandan Das | bab4165 | 2017-05-05 15:25:13 -0400 | [diff] [blame] | 1559 | /** |
| 1560 | * kvm_arch_write_log_dirty - emulate dirty page logging |
| 1561 | * @vcpu: Guest mode vcpu |
| 1562 | * |
| 1563 | * Emulate arch specific page modification logging for the |
| 1564 | * nested hypervisor |
| 1565 | */ |
| 1566 | int kvm_arch_write_log_dirty(struct kvm_vcpu *vcpu) |
| 1567 | { |
| 1568 | if (kvm_x86_ops->write_log_dirty) |
| 1569 | return kvm_x86_ops->write_log_dirty(vcpu); |
| 1570 | |
| 1571 | return 0; |
| 1572 | } |
| 1573 | |
Xiao Guangrong | aeecee2 | 2016-02-24 17:51:08 +0800 | [diff] [blame] | 1574 | bool kvm_mmu_slot_gfn_write_protect(struct kvm *kvm, |
| 1575 | struct kvm_memory_slot *slot, u64 gfn) |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1576 | { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1577 | struct kvm_rmap_head *rmap_head; |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1578 | int i; |
Xiao Guangrong | 2f84569 | 2012-06-20 15:56:53 +0800 | [diff] [blame] | 1579 | bool write_protected = false; |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1580 | |
Xiao Guangrong | 8a3d08f | 2015-05-13 14:42:21 +0800 | [diff] [blame] | 1581 | for (i = PT_PAGE_TABLE_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1582 | rmap_head = __gfn_to_rmap(gfn, i, slot); |
Xiao Guangrong | aeecee2 | 2016-02-24 17:51:08 +0800 | [diff] [blame] | 1583 | write_protected |= __rmap_write_protect(kvm, rmap_head, true); |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1584 | } |
| 1585 | |
Marcelo Tosatti | b1a3682 | 2008-12-01 22:32:03 -0200 | [diff] [blame] | 1586 | return write_protected; |
Avi Kivity | 374cbac | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 1587 | } |
| 1588 | |
Xiao Guangrong | aeecee2 | 2016-02-24 17:51:08 +0800 | [diff] [blame] | 1589 | static bool rmap_write_protect(struct kvm_vcpu *vcpu, u64 gfn) |
| 1590 | { |
| 1591 | struct kvm_memory_slot *slot; |
| 1592 | |
| 1593 | slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn); |
| 1594 | return kvm_mmu_slot_gfn_write_protect(vcpu->kvm, slot, gfn); |
| 1595 | } |
| 1596 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1597 | 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] | 1598 | { |
| 1599 | u64 *sptep; |
| 1600 | struct rmap_iterator iter; |
| 1601 | bool flush = false; |
| 1602 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1603 | while ((sptep = rmap_get_first(rmap_head, &iter))) { |
Xiao Guangrong | 6a49f85 | 2015-05-13 14:42:25 +0800 | [diff] [blame] | 1604 | rmap_printk("%s: spte %p %llx.\n", __func__, sptep, *sptep); |
| 1605 | |
| 1606 | drop_spte(kvm, sptep); |
| 1607 | flush = true; |
| 1608 | } |
| 1609 | |
| 1610 | return flush; |
| 1611 | } |
| 1612 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1613 | 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] | 1614 | struct kvm_memory_slot *slot, gfn_t gfn, int level, |
| 1615 | unsigned long data) |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1616 | { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1617 | return kvm_zap_rmapp(kvm, rmap_head); |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1618 | } |
| 1619 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1620 | 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] | 1621 | struct kvm_memory_slot *slot, gfn_t gfn, int level, |
| 1622 | unsigned long data) |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1623 | { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1624 | u64 *sptep; |
| 1625 | struct rmap_iterator iter; |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1626 | int need_flush = 0; |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1627 | u64 new_spte; |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1628 | pte_t *ptep = (pte_t *)data; |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 1629 | kvm_pfn_t new_pfn; |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1630 | |
| 1631 | WARN_ON(pte_huge(*ptep)); |
| 1632 | new_pfn = pte_pfn(*ptep); |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1633 | |
Xiao Guangrong | 0d53679 | 2015-05-13 14:42:20 +0800 | [diff] [blame] | 1634 | restart: |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1635 | for_each_rmap_spte(rmap_head, &iter, sptep) { |
Andres Lagar-Cavilla | 8a9522d | 2014-09-23 12:34:54 -0700 | [diff] [blame] | 1636 | 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] | 1637 | sptep, *sptep, gfn, level); |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1638 | |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1639 | need_flush = 1; |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1640 | |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1641 | if (pte_write(*ptep)) { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1642 | drop_spte(kvm, sptep); |
Xiao Guangrong | 0d53679 | 2015-05-13 14:42:20 +0800 | [diff] [blame] | 1643 | goto restart; |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1644 | } else { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1645 | new_spte = *sptep & ~PT64_BASE_ADDR_MASK; |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1646 | new_spte |= (u64)new_pfn << PAGE_SHIFT; |
| 1647 | |
| 1648 | new_spte &= ~PT_WRITABLE_MASK; |
| 1649 | new_spte &= ~SPTE_HOST_WRITEABLE; |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 1650 | |
| 1651 | new_spte = mark_spte_for_access_track(new_spte); |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1652 | |
| 1653 | mmu_spte_clear_track_bits(sptep); |
| 1654 | mmu_spte_set(sptep, new_spte); |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1655 | } |
| 1656 | } |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1657 | |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1658 | if (need_flush) |
| 1659 | kvm_flush_remote_tlbs(kvm); |
| 1660 | |
| 1661 | return 0; |
| 1662 | } |
| 1663 | |
Xiao Guangrong | 6ce1f4e | 2015-05-13 14:42:22 +0800 | [diff] [blame] | 1664 | struct slot_rmap_walk_iterator { |
| 1665 | /* input fields. */ |
| 1666 | struct kvm_memory_slot *slot; |
| 1667 | gfn_t start_gfn; |
| 1668 | gfn_t end_gfn; |
| 1669 | int start_level; |
| 1670 | int end_level; |
| 1671 | |
| 1672 | /* output fields. */ |
| 1673 | gfn_t gfn; |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1674 | struct kvm_rmap_head *rmap; |
Xiao Guangrong | 6ce1f4e | 2015-05-13 14:42:22 +0800 | [diff] [blame] | 1675 | int level; |
| 1676 | |
| 1677 | /* private field. */ |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1678 | struct kvm_rmap_head *end_rmap; |
Xiao Guangrong | 6ce1f4e | 2015-05-13 14:42:22 +0800 | [diff] [blame] | 1679 | }; |
| 1680 | |
| 1681 | static void |
| 1682 | rmap_walk_init_level(struct slot_rmap_walk_iterator *iterator, int level) |
| 1683 | { |
| 1684 | iterator->level = level; |
| 1685 | iterator->gfn = iterator->start_gfn; |
| 1686 | iterator->rmap = __gfn_to_rmap(iterator->gfn, level, iterator->slot); |
| 1687 | iterator->end_rmap = __gfn_to_rmap(iterator->end_gfn, level, |
| 1688 | iterator->slot); |
| 1689 | } |
| 1690 | |
| 1691 | static void |
| 1692 | slot_rmap_walk_init(struct slot_rmap_walk_iterator *iterator, |
| 1693 | struct kvm_memory_slot *slot, int start_level, |
| 1694 | int end_level, gfn_t start_gfn, gfn_t end_gfn) |
| 1695 | { |
| 1696 | iterator->slot = slot; |
| 1697 | iterator->start_level = start_level; |
| 1698 | iterator->end_level = end_level; |
| 1699 | iterator->start_gfn = start_gfn; |
| 1700 | iterator->end_gfn = end_gfn; |
| 1701 | |
| 1702 | rmap_walk_init_level(iterator, iterator->start_level); |
| 1703 | } |
| 1704 | |
| 1705 | static bool slot_rmap_walk_okay(struct slot_rmap_walk_iterator *iterator) |
| 1706 | { |
| 1707 | return !!iterator->rmap; |
| 1708 | } |
| 1709 | |
| 1710 | static void slot_rmap_walk_next(struct slot_rmap_walk_iterator *iterator) |
| 1711 | { |
| 1712 | if (++iterator->rmap <= iterator->end_rmap) { |
| 1713 | iterator->gfn += (1UL << KVM_HPAGE_GFN_SHIFT(iterator->level)); |
| 1714 | return; |
| 1715 | } |
| 1716 | |
| 1717 | if (++iterator->level > iterator->end_level) { |
| 1718 | iterator->rmap = NULL; |
| 1719 | return; |
| 1720 | } |
| 1721 | |
| 1722 | rmap_walk_init_level(iterator, iterator->level); |
| 1723 | } |
| 1724 | |
| 1725 | #define for_each_slot_rmap_range(_slot_, _start_level_, _end_level_, \ |
| 1726 | _start_gfn, _end_gfn, _iter_) \ |
| 1727 | for (slot_rmap_walk_init(_iter_, _slot_, _start_level_, \ |
| 1728 | _end_level_, _start_gfn, _end_gfn); \ |
| 1729 | slot_rmap_walk_okay(_iter_); \ |
| 1730 | slot_rmap_walk_next(_iter_)) |
| 1731 | |
Takuya Yoshikawa | 84504ef | 2012-07-02 17:55:48 +0900 | [diff] [blame] | 1732 | static int kvm_handle_hva_range(struct kvm *kvm, |
| 1733 | unsigned long start, |
| 1734 | unsigned long end, |
| 1735 | unsigned long data, |
| 1736 | int (*handler)(struct kvm *kvm, |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1737 | struct kvm_rmap_head *rmap_head, |
Takuya Yoshikawa | 048212d | 2012-07-02 17:57:59 +0900 | [diff] [blame] | 1738 | struct kvm_memory_slot *slot, |
Andres Lagar-Cavilla | 8a9522d | 2014-09-23 12:34:54 -0700 | [diff] [blame] | 1739 | gfn_t gfn, |
| 1740 | int level, |
Takuya Yoshikawa | 84504ef | 2012-07-02 17:55:48 +0900 | [diff] [blame] | 1741 | unsigned long data)) |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1742 | { |
Marcelo Tosatti | bc6678a | 2009-12-23 14:35:21 -0200 | [diff] [blame] | 1743 | struct kvm_memslots *slots; |
Xiao Guangrong | be6ba0f | 2011-11-24 17:39:18 +0800 | [diff] [blame] | 1744 | struct kvm_memory_slot *memslot; |
Xiao Guangrong | 6ce1f4e | 2015-05-13 14:42:22 +0800 | [diff] [blame] | 1745 | struct slot_rmap_walk_iterator iterator; |
| 1746 | int ret = 0; |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 1747 | int i; |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1748 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 1749 | for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) { |
| 1750 | slots = __kvm_memslots(kvm, i); |
| 1751 | kvm_for_each_memslot(memslot, slots) { |
| 1752 | unsigned long hva_start, hva_end; |
| 1753 | gfn_t gfn_start, gfn_end; |
Marcelo Tosatti | bc6678a | 2009-12-23 14:35:21 -0200 | [diff] [blame] | 1754 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 1755 | hva_start = max(start, memslot->userspace_addr); |
| 1756 | hva_end = min(end, memslot->userspace_addr + |
| 1757 | (memslot->npages << PAGE_SHIFT)); |
| 1758 | if (hva_start >= hva_end) |
| 1759 | continue; |
| 1760 | /* |
| 1761 | * {gfn(page) | page intersects with [hva_start, hva_end)} = |
| 1762 | * {gfn_start, gfn_start+1, ..., gfn_end-1}. |
| 1763 | */ |
| 1764 | gfn_start = hva_to_gfn_memslot(hva_start, memslot); |
| 1765 | gfn_end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, memslot); |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1766 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 1767 | for_each_slot_rmap_range(memslot, PT_PAGE_TABLE_LEVEL, |
| 1768 | PT_MAX_HUGEPAGE_LEVEL, |
| 1769 | gfn_start, gfn_end - 1, |
| 1770 | &iterator) |
| 1771 | ret |= handler(kvm, iterator.rmap, memslot, |
| 1772 | iterator.gfn, iterator.level, data); |
| 1773 | } |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1774 | } |
| 1775 | |
Takuya Yoshikawa | f395302 | 2012-07-02 17:58:48 +0900 | [diff] [blame] | 1776 | return ret; |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1777 | } |
| 1778 | |
Takuya Yoshikawa | 84504ef | 2012-07-02 17:55:48 +0900 | [diff] [blame] | 1779 | static int kvm_handle_hva(struct kvm *kvm, unsigned long hva, |
| 1780 | unsigned long data, |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1781 | int (*handler)(struct kvm *kvm, |
| 1782 | struct kvm_rmap_head *rmap_head, |
Takuya Yoshikawa | 048212d | 2012-07-02 17:57:59 +0900 | [diff] [blame] | 1783 | struct kvm_memory_slot *slot, |
Andres Lagar-Cavilla | 8a9522d | 2014-09-23 12:34:54 -0700 | [diff] [blame] | 1784 | gfn_t gfn, int level, |
Takuya Yoshikawa | 84504ef | 2012-07-02 17:55:48 +0900 | [diff] [blame] | 1785 | unsigned long data)) |
| 1786 | { |
| 1787 | return kvm_handle_hva_range(kvm, hva, hva + 1, data, handler); |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1788 | } |
| 1789 | |
| 1790 | int kvm_unmap_hva(struct kvm *kvm, unsigned long hva) |
| 1791 | { |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1792 | return kvm_handle_hva(kvm, hva, 0, kvm_unmap_rmapp); |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1793 | } |
| 1794 | |
Takuya Yoshikawa | b3ae209 | 2012-07-02 17:56:33 +0900 | [diff] [blame] | 1795 | int kvm_unmap_hva_range(struct kvm *kvm, unsigned long start, unsigned long end) |
| 1796 | { |
| 1797 | return kvm_handle_hva_range(kvm, start, end, 0, kvm_unmap_rmapp); |
| 1798 | } |
| 1799 | |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1800 | void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte) |
| 1801 | { |
Frederik Deweerdt | 8a8365c | 2009-10-09 11:42:56 +0000 | [diff] [blame] | 1802 | kvm_handle_hva(kvm, hva, (unsigned long)&pte, kvm_set_pte_rmapp); |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1803 | } |
| 1804 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1805 | 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] | 1806 | struct kvm_memory_slot *slot, gfn_t gfn, int level, |
| 1807 | unsigned long data) |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1808 | { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1809 | u64 *sptep; |
Michael S. Tsirkin | 79f702a | 2012-06-03 11:34:08 +0300 | [diff] [blame] | 1810 | struct rmap_iterator uninitialized_var(iter); |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1811 | int young = 0; |
| 1812 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 1813 | for_each_rmap_spte(rmap_head, &iter, sptep) |
| 1814 | young |= mmu_spte_age(sptep); |
Xiao Guangrong | 0d53679 | 2015-05-13 14:42:20 +0800 | [diff] [blame] | 1815 | |
Andres Lagar-Cavilla | 8a9522d | 2014-09-23 12:34:54 -0700 | [diff] [blame] | 1816 | trace_kvm_age_page(gfn, level, slot, young); |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1817 | return young; |
| 1818 | } |
| 1819 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1820 | 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] | 1821 | struct kvm_memory_slot *slot, gfn_t gfn, |
| 1822 | int level, unsigned long data) |
Andrea Arcangeli | 8ee5382 | 2011-01-13 15:47:10 -0800 | [diff] [blame] | 1823 | { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1824 | u64 *sptep; |
| 1825 | struct rmap_iterator iter; |
Andrea Arcangeli | 8ee5382 | 2011-01-13 15:47:10 -0800 | [diff] [blame] | 1826 | |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 1827 | for_each_rmap_spte(rmap_head, &iter, sptep) |
| 1828 | if (is_accessed_spte(*sptep)) |
| 1829 | return 1; |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 1830 | return 0; |
Andrea Arcangeli | 8ee5382 | 2011-01-13 15:47:10 -0800 | [diff] [blame] | 1831 | } |
| 1832 | |
Marcelo Tosatti | 53a27b3 | 2009-08-05 15:43:58 -0300 | [diff] [blame] | 1833 | #define RMAP_RECYCLE_THRESHOLD 1000 |
| 1834 | |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 1835 | 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] | 1836 | { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1837 | struct kvm_rmap_head *rmap_head; |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 1838 | struct kvm_mmu_page *sp; |
| 1839 | |
| 1840 | sp = page_header(__pa(spte)); |
Marcelo Tosatti | 53a27b3 | 2009-08-05 15:43:58 -0300 | [diff] [blame] | 1841 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1842 | rmap_head = gfn_to_rmap(vcpu->kvm, gfn, sp); |
Marcelo Tosatti | 53a27b3 | 2009-08-05 15:43:58 -0300 | [diff] [blame] | 1843 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1844 | kvm_unmap_rmapp(vcpu->kvm, rmap_head, NULL, gfn, sp->role.level, 0); |
Marcelo Tosatti | 53a27b3 | 2009-08-05 15:43:58 -0300 | [diff] [blame] | 1845 | kvm_flush_remote_tlbs(vcpu->kvm); |
| 1846 | } |
| 1847 | |
Andres Lagar-Cavilla | 5712846 | 2014-09-22 14:54:42 -0700 | [diff] [blame] | 1848 | 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] | 1849 | { |
Andres Lagar-Cavilla | 5712846 | 2014-09-22 14:54:42 -0700 | [diff] [blame] | 1850 | return kvm_handle_hva_range(kvm, start, end, 0, kvm_age_rmapp); |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1851 | } |
| 1852 | |
Andrea Arcangeli | 8ee5382 | 2011-01-13 15:47:10 -0800 | [diff] [blame] | 1853 | int kvm_test_age_hva(struct kvm *kvm, unsigned long hva) |
| 1854 | { |
| 1855 | return kvm_handle_hva(kvm, hva, 0, kvm_test_age_rmapp); |
| 1856 | } |
| 1857 | |
Yaozu Dong | d6c69ee | 2007-04-25 14:17:25 +0800 | [diff] [blame] | 1858 | #ifdef MMU_DEBUG |
Avi Kivity | 47ad8e6 | 2007-05-06 15:50:58 +0300 | [diff] [blame] | 1859 | static int is_empty_shadow_page(u64 *spt) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1860 | { |
Avi Kivity | 139bdb2 | 2007-01-05 16:36:50 -0800 | [diff] [blame] | 1861 | u64 *pos; |
| 1862 | u64 *end; |
| 1863 | |
Avi Kivity | 47ad8e6 | 2007-05-06 15:50:58 +0300 | [diff] [blame] | 1864 | for (pos = spt, end = pos + PAGE_SIZE / sizeof(u64); pos != end; pos++) |
Avi Kivity | 3c91551 | 2008-05-20 16:21:13 +0300 | [diff] [blame] | 1865 | if (is_shadow_present_pte(*pos)) { |
Harvey Harrison | b8688d5 | 2008-03-03 12:59:56 -0800 | [diff] [blame] | 1866 | printk(KERN_ERR "%s: %p %llx\n", __func__, |
Avi Kivity | 139bdb2 | 2007-01-05 16:36:50 -0800 | [diff] [blame] | 1867 | pos, *pos); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1868 | return 0; |
Avi Kivity | 139bdb2 | 2007-01-05 16:36:50 -0800 | [diff] [blame] | 1869 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1870 | return 1; |
| 1871 | } |
Yaozu Dong | d6c69ee | 2007-04-25 14:17:25 +0800 | [diff] [blame] | 1872 | #endif |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1873 | |
Dave Hansen | 45221ab | 2010-08-19 18:11:37 -0700 | [diff] [blame] | 1874 | /* |
| 1875 | * This value is the sum of all of the kvm instances's |
| 1876 | * kvm->arch.n_used_mmu_pages values. We need a global, |
| 1877 | * aggregate version in order to make the slab shrinker |
| 1878 | * faster |
| 1879 | */ |
| 1880 | static inline void kvm_mod_used_mmu_pages(struct kvm *kvm, int nr) |
| 1881 | { |
| 1882 | kvm->arch.n_used_mmu_pages += nr; |
| 1883 | percpu_counter_add(&kvm_total_used_mmu_pages, nr); |
| 1884 | } |
| 1885 | |
Gleb Natapov | 834be0d | 2013-01-30 16:45:05 +0200 | [diff] [blame] | 1886 | static void kvm_mmu_free_page(struct kvm_mmu_page *sp) |
Avi Kivity | 260746c | 2007-01-05 16:36:49 -0800 | [diff] [blame] | 1887 | { |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 1888 | MMU_WARN_ON(!is_empty_shadow_page(sp->spt)); |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 1889 | hlist_del(&sp->hash_link); |
Xiao Guangrong | bd4c86e | 2011-07-12 03:27:14 +0800 | [diff] [blame] | 1890 | list_del(&sp->link); |
| 1891 | free_page((unsigned long)sp->spt); |
Gleb Natapov | 834be0d | 2013-01-30 16:45:05 +0200 | [diff] [blame] | 1892 | if (!sp->role.direct) |
| 1893 | free_page((unsigned long)sp->gfns); |
Xiao Guangrong | e8ad9a7 | 2010-05-13 10:06:02 +0800 | [diff] [blame] | 1894 | kmem_cache_free(mmu_page_header_cache, sp); |
Avi Kivity | 260746c | 2007-01-05 16:36:49 -0800 | [diff] [blame] | 1895 | } |
| 1896 | |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 1897 | static unsigned kvm_page_table_hashfn(gfn_t gfn) |
| 1898 | { |
David Matlack | 114df30 | 2016-12-19 13:58:25 -0800 | [diff] [blame] | 1899 | return hash_64(gfn, KVM_MMU_HASH_SHIFT); |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 1900 | } |
| 1901 | |
Xiao Guangrong | 67052b3 | 2011-05-15 23:27:08 +0800 | [diff] [blame] | 1902 | static void mmu_page_add_parent_pte(struct kvm_vcpu *vcpu, |
| 1903 | struct kvm_mmu_page *sp, u64 *parent_pte) |
| 1904 | { |
| 1905 | if (!parent_pte) |
| 1906 | return; |
| 1907 | |
| 1908 | pte_list_add(vcpu, parent_pte, &sp->parent_ptes); |
| 1909 | } |
| 1910 | |
| 1911 | static void mmu_page_remove_parent_pte(struct kvm_mmu_page *sp, |
| 1912 | u64 *parent_pte) |
| 1913 | { |
| 1914 | pte_list_remove(parent_pte, &sp->parent_ptes); |
| 1915 | } |
| 1916 | |
Xiao Guangrong | bcdd9a9 | 2011-05-15 23:28:29 +0800 | [diff] [blame] | 1917 | static void drop_parent_pte(struct kvm_mmu_page *sp, |
| 1918 | u64 *parent_pte) |
| 1919 | { |
| 1920 | mmu_page_remove_parent_pte(sp, parent_pte); |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 1921 | mmu_spte_clear_no_track(parent_pte); |
Xiao Guangrong | bcdd9a9 | 2011-05-15 23:28:29 +0800 | [diff] [blame] | 1922 | } |
| 1923 | |
Takuya Yoshikawa | 4700579 | 2015-11-20 17:46:29 +0900 | [diff] [blame] | 1924 | 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] | 1925 | { |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 1926 | struct kvm_mmu_page *sp; |
Takuya Yoshikawa | 7ddca7e | 2013-03-21 19:33:43 +0900 | [diff] [blame] | 1927 | |
Takuya Yoshikawa | 80feb89 | 2012-05-29 23:54:26 +0900 | [diff] [blame] | 1928 | sp = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_header_cache); |
| 1929 | sp->spt = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache); |
Lai Jiangshan | 2032a93 | 2010-05-26 16:49:59 +0800 | [diff] [blame] | 1930 | if (!direct) |
Takuya Yoshikawa | 80feb89 | 2012-05-29 23:54:26 +0900 | [diff] [blame] | 1931 | sp->gfns = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache); |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 1932 | set_page_private(virt_to_page(sp->spt), (unsigned long)sp); |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 1933 | |
| 1934 | /* |
| 1935 | * The active_mmu_pages list is the FIFO list, do not move the |
| 1936 | * page until it is zapped. kvm_zap_obsolete_pages depends on |
| 1937 | * this feature. See the comments in kvm_zap_obsolete_pages(). |
| 1938 | */ |
Zhang Xiantao | f05e70a | 2007-12-14 10:01:48 +0800 | [diff] [blame] | 1939 | list_add(&sp->link, &vcpu->kvm->arch.active_mmu_pages); |
Dave Hansen | 45221ab | 2010-08-19 18:11:37 -0700 | [diff] [blame] | 1940 | kvm_mod_used_mmu_pages(vcpu->kvm, +1); |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 1941 | return sp; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1942 | } |
| 1943 | |
Xiao Guangrong | 67052b3 | 2011-05-15 23:27:08 +0800 | [diff] [blame] | 1944 | static void mark_unsync(u64 *spte); |
Xiao Guangrong | 6b18493 | 2010-04-16 21:29:17 +0800 | [diff] [blame] | 1945 | static void kvm_mmu_mark_parents_unsync(struct kvm_mmu_page *sp) |
Marcelo Tosatti | 0074ff6 | 2008-09-23 13:18:40 -0300 | [diff] [blame] | 1946 | { |
Takuya Yoshikawa | 74c4e63 | 2015-11-26 21:15:38 +0900 | [diff] [blame] | 1947 | u64 *sptep; |
| 1948 | struct rmap_iterator iter; |
| 1949 | |
| 1950 | for_each_rmap_spte(&sp->parent_ptes, &iter, sptep) { |
| 1951 | mark_unsync(sptep); |
| 1952 | } |
Xiao Guangrong | 1047df1 | 2010-06-11 21:35:15 +0800 | [diff] [blame] | 1953 | } |
| 1954 | |
Xiao Guangrong | 67052b3 | 2011-05-15 23:27:08 +0800 | [diff] [blame] | 1955 | static void mark_unsync(u64 *spte) |
Xiao Guangrong | 1047df1 | 2010-06-11 21:35:15 +0800 | [diff] [blame] | 1956 | { |
Xiao Guangrong | 67052b3 | 2011-05-15 23:27:08 +0800 | [diff] [blame] | 1957 | struct kvm_mmu_page *sp; |
Xiao Guangrong | 1047df1 | 2010-06-11 21:35:15 +0800 | [diff] [blame] | 1958 | unsigned int index; |
| 1959 | |
Xiao Guangrong | 67052b3 | 2011-05-15 23:27:08 +0800 | [diff] [blame] | 1960 | sp = page_header(__pa(spte)); |
Xiao Guangrong | 1047df1 | 2010-06-11 21:35:15 +0800 | [diff] [blame] | 1961 | index = spte - sp->spt; |
| 1962 | if (__test_and_set_bit(index, sp->unsync_child_bitmap)) |
| 1963 | return; |
| 1964 | if (sp->unsync_children++) |
| 1965 | return; |
| 1966 | kvm_mmu_mark_parents_unsync(sp); |
Marcelo Tosatti | 0074ff6 | 2008-09-23 13:18:40 -0300 | [diff] [blame] | 1967 | } |
| 1968 | |
Marcelo Tosatti | e8bc217 | 2008-09-23 13:18:33 -0300 | [diff] [blame] | 1969 | static int nonpaging_sync_page(struct kvm_vcpu *vcpu, |
Xiao Guangrong | a4a8e6f | 2010-11-19 17:04:03 +0800 | [diff] [blame] | 1970 | struct kvm_mmu_page *sp) |
Marcelo Tosatti | e8bc217 | 2008-09-23 13:18:33 -0300 | [diff] [blame] | 1971 | { |
Paolo Bonzini | 1f50f1b | 2016-02-24 11:07:14 +0100 | [diff] [blame] | 1972 | return 0; |
Marcelo Tosatti | e8bc217 | 2008-09-23 13:18:33 -0300 | [diff] [blame] | 1973 | } |
| 1974 | |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 1975 | static void nonpaging_invlpg(struct kvm_vcpu *vcpu, gva_t gva) |
| 1976 | { |
| 1977 | } |
| 1978 | |
Xiao Guangrong | 0f53b5b | 2011-03-09 15:43:51 +0800 | [diff] [blame] | 1979 | static void nonpaging_update_pte(struct kvm_vcpu *vcpu, |
| 1980 | struct kvm_mmu_page *sp, u64 *spte, |
Xiao Guangrong | 7c56252 | 2011-03-28 10:29:27 +0800 | [diff] [blame] | 1981 | const void *pte) |
Xiao Guangrong | 0f53b5b | 2011-03-09 15:43:51 +0800 | [diff] [blame] | 1982 | { |
| 1983 | WARN_ON(1); |
| 1984 | } |
| 1985 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 1986 | #define KVM_PAGE_ARRAY_NR 16 |
| 1987 | |
| 1988 | struct kvm_mmu_pages { |
| 1989 | struct mmu_page_and_offset { |
| 1990 | struct kvm_mmu_page *sp; |
| 1991 | unsigned int idx; |
| 1992 | } page[KVM_PAGE_ARRAY_NR]; |
| 1993 | unsigned int nr; |
| 1994 | }; |
| 1995 | |
Hannes Eder | cded19f | 2009-02-21 02:19:13 +0100 | [diff] [blame] | 1996 | static int mmu_pages_add(struct kvm_mmu_pages *pvec, struct kvm_mmu_page *sp, |
| 1997 | int idx) |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 1998 | { |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 1999 | int i; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2000 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2001 | if (sp->unsync) |
| 2002 | for (i=0; i < pvec->nr; i++) |
| 2003 | if (pvec->page[i].sp == sp) |
| 2004 | return 0; |
| 2005 | |
| 2006 | pvec->page[pvec->nr].sp = sp; |
| 2007 | pvec->page[pvec->nr].idx = idx; |
| 2008 | pvec->nr++; |
| 2009 | return (pvec->nr == KVM_PAGE_ARRAY_NR); |
| 2010 | } |
| 2011 | |
Takuya Yoshikawa | fd95145 | 2015-11-20 17:43:13 +0900 | [diff] [blame] | 2012 | static inline void clear_unsync_child_bit(struct kvm_mmu_page *sp, int idx) |
| 2013 | { |
| 2014 | --sp->unsync_children; |
| 2015 | WARN_ON((int)sp->unsync_children < 0); |
| 2016 | __clear_bit(idx, sp->unsync_child_bitmap); |
| 2017 | } |
| 2018 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2019 | static int __mmu_unsync_walk(struct kvm_mmu_page *sp, |
| 2020 | struct kvm_mmu_pages *pvec) |
| 2021 | { |
| 2022 | int i, ret, nr_unsync_leaf = 0; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2023 | |
Takuya Yoshikawa | 37178b8 | 2011-11-29 14:02:45 +0900 | [diff] [blame] | 2024 | for_each_set_bit(i, sp->unsync_child_bitmap, 512) { |
Xiao Guangrong | 7a8f1a7 | 2010-06-11 21:34:04 +0800 | [diff] [blame] | 2025 | struct kvm_mmu_page *child; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2026 | u64 ent = sp->spt[i]; |
| 2027 | |
Takuya Yoshikawa | fd95145 | 2015-11-20 17:43:13 +0900 | [diff] [blame] | 2028 | if (!is_shadow_present_pte(ent) || is_large_pte(ent)) { |
| 2029 | clear_unsync_child_bit(sp, i); |
| 2030 | continue; |
| 2031 | } |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2032 | |
Xiao Guangrong | 7a8f1a7 | 2010-06-11 21:34:04 +0800 | [diff] [blame] | 2033 | child = page_header(ent & PT64_BASE_ADDR_MASK); |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2034 | |
Xiao Guangrong | 7a8f1a7 | 2010-06-11 21:34:04 +0800 | [diff] [blame] | 2035 | if (child->unsync_children) { |
| 2036 | if (mmu_pages_add(pvec, child, i)) |
| 2037 | return -ENOSPC; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2038 | |
Xiao Guangrong | 7a8f1a7 | 2010-06-11 21:34:04 +0800 | [diff] [blame] | 2039 | ret = __mmu_unsync_walk(child, pvec); |
Takuya Yoshikawa | fd95145 | 2015-11-20 17:43:13 +0900 | [diff] [blame] | 2040 | if (!ret) { |
| 2041 | clear_unsync_child_bit(sp, i); |
| 2042 | continue; |
| 2043 | } else if (ret > 0) { |
Xiao Guangrong | 7a8f1a7 | 2010-06-11 21:34:04 +0800 | [diff] [blame] | 2044 | nr_unsync_leaf += ret; |
Takuya Yoshikawa | fd95145 | 2015-11-20 17:43:13 +0900 | [diff] [blame] | 2045 | } else |
Xiao Guangrong | 7a8f1a7 | 2010-06-11 21:34:04 +0800 | [diff] [blame] | 2046 | return ret; |
| 2047 | } else if (child->unsync) { |
| 2048 | nr_unsync_leaf++; |
| 2049 | if (mmu_pages_add(pvec, child, i)) |
| 2050 | return -ENOSPC; |
| 2051 | } else |
Takuya Yoshikawa | fd95145 | 2015-11-20 17:43:13 +0900 | [diff] [blame] | 2052 | clear_unsync_child_bit(sp, i); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2053 | } |
| 2054 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2055 | return nr_unsync_leaf; |
| 2056 | } |
| 2057 | |
Xiao Guangrong | e23d3fe | 2016-02-24 09:46:06 +0100 | [diff] [blame] | 2058 | #define INVALID_INDEX (-1) |
| 2059 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2060 | static int mmu_unsync_walk(struct kvm_mmu_page *sp, |
| 2061 | struct kvm_mmu_pages *pvec) |
| 2062 | { |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2063 | pvec->nr = 0; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2064 | if (!sp->unsync_children) |
| 2065 | return 0; |
| 2066 | |
Xiao Guangrong | e23d3fe | 2016-02-24 09:46:06 +0100 | [diff] [blame] | 2067 | mmu_pages_add(pvec, sp, INVALID_INDEX); |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2068 | return __mmu_unsync_walk(sp, pvec); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2069 | } |
| 2070 | |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2071 | static void kvm_unlink_unsync_page(struct kvm *kvm, struct kvm_mmu_page *sp) |
| 2072 | { |
| 2073 | WARN_ON(!sp->unsync); |
Xiao Guangrong | 5e1b3dd | 2010-04-28 11:55:06 +0800 | [diff] [blame] | 2074 | trace_kvm_mmu_sync_page(sp); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2075 | sp->unsync = 0; |
| 2076 | --kvm->stat.mmu_unsync; |
| 2077 | } |
| 2078 | |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2079 | static int kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp, |
| 2080 | struct list_head *invalid_list); |
| 2081 | static void kvm_mmu_commit_zap_page(struct kvm *kvm, |
| 2082 | struct list_head *invalid_list); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2083 | |
Xiao Guangrong | f34d251 | 2013-05-31 08:36:28 +0800 | [diff] [blame] | 2084 | /* |
| 2085 | * NOTE: we should pay more attention on the zapped-obsolete page |
| 2086 | * (is_obsolete_sp(sp) && sp->role.invalid) when you do hash list walk |
| 2087 | * since it has been deleted from active_mmu_pages but still can be found |
| 2088 | * at hast list. |
| 2089 | * |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 2090 | * for_each_valid_sp() has skipped that kind of pages. |
Xiao Guangrong | f34d251 | 2013-05-31 08:36:28 +0800 | [diff] [blame] | 2091 | */ |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 2092 | #define for_each_valid_sp(_kvm, _sp, _gfn) \ |
Takuya Yoshikawa | 1044b03 | 2013-03-06 16:05:07 +0900 | [diff] [blame] | 2093 | hlist_for_each_entry(_sp, \ |
| 2094 | &(_kvm)->arch.mmu_page_hash[kvm_page_table_hashfn(_gfn)], hash_link) \ |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 2095 | if (is_obsolete_sp((_kvm), (_sp)) || (_sp)->role.invalid) { \ |
| 2096 | } else |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2097 | |
Takuya Yoshikawa | 1044b03 | 2013-03-06 16:05:07 +0900 | [diff] [blame] | 2098 | #define for_each_gfn_indirect_valid_sp(_kvm, _sp, _gfn) \ |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 2099 | for_each_valid_sp(_kvm, _sp, _gfn) \ |
| 2100 | if ((_sp)->gfn != (_gfn) || (_sp)->role.direct) {} else |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2101 | |
Xiao Guangrong | f918b44 | 2010-06-11 21:30:36 +0800 | [diff] [blame] | 2102 | /* @sp->gfn should be write-protected at the call site */ |
Paolo Bonzini | 1f50f1b | 2016-02-24 11:07:14 +0100 | [diff] [blame] | 2103 | static bool __kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp, |
| 2104 | struct list_head *invalid_list) |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2105 | { |
Avi Kivity | 5b7e010 | 2010-04-14 19:20:03 +0300 | [diff] [blame] | 2106 | if (sp->role.cr4_pae != !!is_pae(vcpu)) { |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 2107 | kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list); |
Paolo Bonzini | 1f50f1b | 2016-02-24 11:07:14 +0100 | [diff] [blame] | 2108 | return false; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2109 | } |
| 2110 | |
Paolo Bonzini | 1f50f1b | 2016-02-24 11:07:14 +0100 | [diff] [blame] | 2111 | if (vcpu->arch.mmu.sync_page(vcpu, sp) == 0) { |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 2112 | kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list); |
Paolo Bonzini | 1f50f1b | 2016-02-24 11:07:14 +0100 | [diff] [blame] | 2113 | return false; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2114 | } |
| 2115 | |
Paolo Bonzini | 1f50f1b | 2016-02-24 11:07:14 +0100 | [diff] [blame] | 2116 | return true; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2117 | } |
| 2118 | |
Paolo Bonzini | 35a7051 | 2016-02-24 10:03:27 +0100 | [diff] [blame] | 2119 | static void kvm_mmu_flush_or_zap(struct kvm_vcpu *vcpu, |
| 2120 | struct list_head *invalid_list, |
| 2121 | bool remote_flush, bool local_flush) |
Xiao Guangrong | 1d9dc7e | 2010-05-15 18:51:24 +0800 | [diff] [blame] | 2122 | { |
Paolo Bonzini | 35a7051 | 2016-02-24 10:03:27 +0100 | [diff] [blame] | 2123 | if (!list_empty(invalid_list)) { |
| 2124 | kvm_mmu_commit_zap_page(vcpu->kvm, invalid_list); |
| 2125 | return; |
| 2126 | } |
Xiao Guangrong | 1d9dc7e | 2010-05-15 18:51:24 +0800 | [diff] [blame] | 2127 | |
Paolo Bonzini | 35a7051 | 2016-02-24 10:03:27 +0100 | [diff] [blame] | 2128 | if (remote_flush) |
| 2129 | kvm_flush_remote_tlbs(vcpu->kvm); |
| 2130 | else if (local_flush) |
| 2131 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Xiao Guangrong | 1d9dc7e | 2010-05-15 18:51:24 +0800 | [diff] [blame] | 2132 | } |
| 2133 | |
Xiao Guangrong | e37fa78 | 2011-11-30 17:43:24 +0800 | [diff] [blame] | 2134 | #ifdef CONFIG_KVM_MMU_AUDIT |
| 2135 | #include "mmu_audit.c" |
| 2136 | #else |
| 2137 | static void kvm_mmu_audit(struct kvm_vcpu *vcpu, int point) { } |
| 2138 | static void mmu_audit_disable(void) { } |
| 2139 | #endif |
| 2140 | |
Xiao Guangrong | 46971a2 | 2016-03-25 21:19:38 +0800 | [diff] [blame] | 2141 | static bool is_obsolete_sp(struct kvm *kvm, struct kvm_mmu_page *sp) |
| 2142 | { |
| 2143 | return unlikely(sp->mmu_valid_gen != kvm->arch.mmu_valid_gen); |
| 2144 | } |
| 2145 | |
Paolo Bonzini | 1f50f1b | 2016-02-24 11:07:14 +0100 | [diff] [blame] | 2146 | 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] | 2147 | struct list_head *invalid_list) |
Xiao Guangrong | 1d9dc7e | 2010-05-15 18:51:24 +0800 | [diff] [blame] | 2148 | { |
Paolo Bonzini | 9a43c5d | 2016-02-24 10:28:01 +0100 | [diff] [blame] | 2149 | kvm_unlink_unsync_page(vcpu->kvm, sp); |
| 2150 | return __kvm_sync_page(vcpu, sp, invalid_list); |
Xiao Guangrong | 1d9dc7e | 2010-05-15 18:51:24 +0800 | [diff] [blame] | 2151 | } |
| 2152 | |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2153 | /* @gfn should be write-protected at the call site */ |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2154 | static bool kvm_sync_pages(struct kvm_vcpu *vcpu, gfn_t gfn, |
| 2155 | struct list_head *invalid_list) |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2156 | { |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2157 | struct kvm_mmu_page *s; |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2158 | bool ret = false; |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2159 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 2160 | for_each_gfn_indirect_valid_sp(vcpu->kvm, s, gfn) { |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2161 | if (!s->unsync) |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2162 | continue; |
| 2163 | |
| 2164 | WARN_ON(s->role.level != PT_PAGE_TABLE_LEVEL); |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2165 | ret |= kvm_sync_page(vcpu, s, invalid_list); |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2166 | } |
| 2167 | |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2168 | return ret; |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2169 | } |
| 2170 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2171 | struct mmu_page_path { |
Yu Zhang | 2a7266a | 2017-08-24 20:27:54 +0800 | [diff] [blame] | 2172 | struct kvm_mmu_page *parent[PT64_ROOT_MAX_LEVEL]; |
| 2173 | unsigned int idx[PT64_ROOT_MAX_LEVEL]; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2174 | }; |
| 2175 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2176 | #define for_each_sp(pvec, sp, parents, i) \ |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2177 | for (i = mmu_pages_first(&pvec, &parents); \ |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2178 | i < pvec.nr && ({ sp = pvec.page[i].sp; 1;}); \ |
| 2179 | i = mmu_pages_next(&pvec, &parents, i)) |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2180 | |
Hannes Eder | cded19f | 2009-02-21 02:19:13 +0100 | [diff] [blame] | 2181 | static int mmu_pages_next(struct kvm_mmu_pages *pvec, |
| 2182 | struct mmu_page_path *parents, |
| 2183 | int i) |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2184 | { |
| 2185 | int n; |
| 2186 | |
| 2187 | for (n = i+1; n < pvec->nr; n++) { |
| 2188 | struct kvm_mmu_page *sp = pvec->page[n].sp; |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2189 | unsigned idx = pvec->page[n].idx; |
| 2190 | int level = sp->role.level; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2191 | |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2192 | parents->idx[level-1] = idx; |
| 2193 | if (level == PT_PAGE_TABLE_LEVEL) |
| 2194 | break; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2195 | |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2196 | parents->parent[level-2] = sp; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2197 | } |
| 2198 | |
| 2199 | return n; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2200 | } |
| 2201 | |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2202 | static int mmu_pages_first(struct kvm_mmu_pages *pvec, |
| 2203 | struct mmu_page_path *parents) |
| 2204 | { |
| 2205 | struct kvm_mmu_page *sp; |
| 2206 | int level; |
| 2207 | |
| 2208 | if (pvec->nr == 0) |
| 2209 | return 0; |
| 2210 | |
Xiao Guangrong | e23d3fe | 2016-02-24 09:46:06 +0100 | [diff] [blame] | 2211 | WARN_ON(pvec->page[0].idx != INVALID_INDEX); |
| 2212 | |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2213 | sp = pvec->page[0].sp; |
| 2214 | level = sp->role.level; |
| 2215 | WARN_ON(level == PT_PAGE_TABLE_LEVEL); |
| 2216 | |
| 2217 | parents->parent[level-2] = sp; |
| 2218 | |
| 2219 | /* Also set up a sentinel. Further entries in pvec are all |
| 2220 | * children of sp, so this element is never overwritten. |
| 2221 | */ |
| 2222 | parents->parent[level-1] = NULL; |
| 2223 | return mmu_pages_next(pvec, parents, 0); |
| 2224 | } |
| 2225 | |
Hannes Eder | cded19f | 2009-02-21 02:19:13 +0100 | [diff] [blame] | 2226 | static void mmu_pages_clear_parents(struct mmu_page_path *parents) |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2227 | { |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2228 | struct kvm_mmu_page *sp; |
| 2229 | unsigned int level = 0; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2230 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2231 | do { |
| 2232 | unsigned int idx = parents->idx[level]; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2233 | sp = parents->parent[level]; |
| 2234 | if (!sp) |
| 2235 | return; |
| 2236 | |
Xiao Guangrong | e23d3fe | 2016-02-24 09:46:06 +0100 | [diff] [blame] | 2237 | WARN_ON(idx == INVALID_INDEX); |
Takuya Yoshikawa | fd95145 | 2015-11-20 17:43:13 +0900 | [diff] [blame] | 2238 | clear_unsync_child_bit(sp, idx); |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2239 | level++; |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2240 | } while (!sp->unsync_children); |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2241 | } |
| 2242 | |
| 2243 | static void mmu_sync_children(struct kvm_vcpu *vcpu, |
| 2244 | struct kvm_mmu_page *parent) |
| 2245 | { |
| 2246 | int i; |
| 2247 | struct kvm_mmu_page *sp; |
| 2248 | struct mmu_page_path parents; |
| 2249 | struct kvm_mmu_pages pages; |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 2250 | LIST_HEAD(invalid_list); |
Paolo Bonzini | 50c9e6f | 2016-02-25 10:47:38 +0100 | [diff] [blame] | 2251 | bool flush = false; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2252 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2253 | while (mmu_unsync_walk(parent, &pages)) { |
Xiao Guangrong | 2f84569 | 2012-06-20 15:56:53 +0800 | [diff] [blame] | 2254 | bool protected = false; |
Marcelo Tosatti | b1a3682 | 2008-12-01 22:32:03 -0200 | [diff] [blame] | 2255 | |
| 2256 | for_each_sp(pages, sp, parents, i) |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 2257 | protected |= rmap_write_protect(vcpu, sp->gfn); |
Marcelo Tosatti | b1a3682 | 2008-12-01 22:32:03 -0200 | [diff] [blame] | 2258 | |
Paolo Bonzini | 50c9e6f | 2016-02-25 10:47:38 +0100 | [diff] [blame] | 2259 | if (protected) { |
Marcelo Tosatti | b1a3682 | 2008-12-01 22:32:03 -0200 | [diff] [blame] | 2260 | kvm_flush_remote_tlbs(vcpu->kvm); |
Paolo Bonzini | 50c9e6f | 2016-02-25 10:47:38 +0100 | [diff] [blame] | 2261 | flush = false; |
| 2262 | } |
Marcelo Tosatti | b1a3682 | 2008-12-01 22:32:03 -0200 | [diff] [blame] | 2263 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2264 | for_each_sp(pages, sp, parents, i) { |
Paolo Bonzini | 1f50f1b | 2016-02-24 11:07:14 +0100 | [diff] [blame] | 2265 | flush |= kvm_sync_page(vcpu, sp, &invalid_list); |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2266 | mmu_pages_clear_parents(&parents); |
| 2267 | } |
Paolo Bonzini | 50c9e6f | 2016-02-25 10:47:38 +0100 | [diff] [blame] | 2268 | if (need_resched() || spin_needbreak(&vcpu->kvm->mmu_lock)) { |
| 2269 | kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush); |
| 2270 | cond_resched_lock(&vcpu->kvm->mmu_lock); |
| 2271 | flush = false; |
| 2272 | } |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2273 | } |
Paolo Bonzini | 50c9e6f | 2016-02-25 10:47:38 +0100 | [diff] [blame] | 2274 | |
| 2275 | kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2276 | } |
| 2277 | |
Xiao Guangrong | a30f47c | 2011-09-22 16:58:36 +0800 | [diff] [blame] | 2278 | static void __clear_sp_write_flooding_count(struct kvm_mmu_page *sp) |
| 2279 | { |
Xiao Guangrong | e5691a8 | 2016-02-24 17:51:12 +0800 | [diff] [blame] | 2280 | atomic_set(&sp->write_flooding_count, 0); |
Xiao Guangrong | a30f47c | 2011-09-22 16:58:36 +0800 | [diff] [blame] | 2281 | } |
| 2282 | |
| 2283 | static void clear_sp_write_flooding_count(u64 *spte) |
| 2284 | { |
| 2285 | struct kvm_mmu_page *sp = page_header(__pa(spte)); |
| 2286 | |
| 2287 | __clear_sp_write_flooding_count(sp); |
| 2288 | } |
| 2289 | |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2290 | static struct kvm_mmu_page *kvm_mmu_get_page(struct kvm_vcpu *vcpu, |
| 2291 | gfn_t gfn, |
| 2292 | gva_t gaddr, |
| 2293 | unsigned level, |
Avi Kivity | f6e2c02b | 2009-01-11 13:02:10 +0200 | [diff] [blame] | 2294 | int direct, |
Takuya Yoshikawa | bb11c6c | 2015-11-26 21:16:35 +0900 | [diff] [blame] | 2295 | unsigned access) |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2296 | { |
| 2297 | union kvm_mmu_page_role role; |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2298 | unsigned quadrant; |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2299 | struct kvm_mmu_page *sp; |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2300 | bool need_sync = false; |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2301 | bool flush = false; |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 2302 | int collisions = 0; |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2303 | LIST_HEAD(invalid_list); |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2304 | |
Avi Kivity | a770f6f | 2008-12-21 19:20:09 +0200 | [diff] [blame] | 2305 | role = vcpu->arch.mmu.base_role; |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2306 | role.level = level; |
Avi Kivity | f6e2c02b | 2009-01-11 13:02:10 +0200 | [diff] [blame] | 2307 | role.direct = direct; |
Avi Kivity | 84b0c8c | 2010-03-14 10:16:40 +0200 | [diff] [blame] | 2308 | if (role.direct) |
Avi Kivity | 5b7e010 | 2010-04-14 19:20:03 +0300 | [diff] [blame] | 2309 | role.cr4_pae = 0; |
Avi Kivity | 41074d0 | 2007-12-09 17:00:02 +0200 | [diff] [blame] | 2310 | role.access = access; |
Joerg Roedel | c5a78f2b | 2010-09-10 17:30:39 +0200 | [diff] [blame] | 2311 | if (!vcpu->arch.mmu.direct_map |
| 2312 | && vcpu->arch.mmu.root_level <= PT32_ROOT_LEVEL) { |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2313 | quadrant = gaddr >> (PAGE_SHIFT + (PT64_PT_BITS * level)); |
| 2314 | quadrant &= (1 << ((PT32_PT_BITS - PT64_PT_BITS) * level)) - 1; |
| 2315 | role.quadrant = quadrant; |
| 2316 | } |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 2317 | for_each_valid_sp(vcpu->kvm, sp, gfn) { |
| 2318 | if (sp->gfn != gfn) { |
| 2319 | collisions++; |
| 2320 | continue; |
| 2321 | } |
| 2322 | |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2323 | if (!need_sync && sp->unsync) |
| 2324 | need_sync = true; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2325 | |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2326 | if (sp->role.word != role.word) |
| 2327 | continue; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2328 | |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2329 | if (sp->unsync) { |
| 2330 | /* The page is good, but __kvm_sync_page might still end |
| 2331 | * up zapping it. If so, break in order to rebuild it. |
| 2332 | */ |
| 2333 | if (!__kvm_sync_page(vcpu, sp, &invalid_list)) |
| 2334 | break; |
| 2335 | |
| 2336 | WARN_ON(!list_empty(&invalid_list)); |
| 2337 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
| 2338 | } |
Xiao Guangrong | e02aa90 | 2010-05-15 18:52:34 +0800 | [diff] [blame] | 2339 | |
Takuya Yoshikawa | 98bba23 | 2015-11-26 21:14:34 +0900 | [diff] [blame] | 2340 | if (sp->unsync_children) |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 2341 | kvm_make_request(KVM_REQ_MMU_SYNC, vcpu); |
Xiao Guangrong | e02aa90 | 2010-05-15 18:52:34 +0800 | [diff] [blame] | 2342 | |
Xiao Guangrong | a30f47c | 2011-09-22 16:58:36 +0800 | [diff] [blame] | 2343 | __clear_sp_write_flooding_count(sp); |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2344 | trace_kvm_mmu_get_page(sp, false); |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 2345 | goto out; |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2346 | } |
Takuya Yoshikawa | 4700579 | 2015-11-20 17:46:29 +0900 | [diff] [blame] | 2347 | |
Avi Kivity | dfc5aa0 | 2007-12-18 19:47:18 +0200 | [diff] [blame] | 2348 | ++vcpu->kvm->stat.mmu_cache_miss; |
Takuya Yoshikawa | 4700579 | 2015-11-20 17:46:29 +0900 | [diff] [blame] | 2349 | |
| 2350 | sp = kvm_mmu_alloc_page(vcpu, direct); |
| 2351 | |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 2352 | sp->gfn = gfn; |
| 2353 | sp->role = role; |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2354 | hlist_add_head(&sp->hash_link, |
| 2355 | &vcpu->kvm->arch.mmu_page_hash[kvm_page_table_hashfn(gfn)]); |
Avi Kivity | f6e2c02b | 2009-01-11 13:02:10 +0200 | [diff] [blame] | 2356 | if (!direct) { |
Xiao Guangrong | 56ca57f | 2016-02-24 17:51:14 +0800 | [diff] [blame] | 2357 | /* |
| 2358 | * we should do write protection before syncing pages |
| 2359 | * otherwise the content of the synced shadow page may |
| 2360 | * be inconsistent with guest page table. |
| 2361 | */ |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 2362 | account_shadowed(vcpu->kvm, sp); |
Xiao Guangrong | 56ca57f | 2016-02-24 17:51:14 +0800 | [diff] [blame] | 2363 | if (level == PT_PAGE_TABLE_LEVEL && |
| 2364 | rmap_write_protect(vcpu, gfn)) |
Marcelo Tosatti | b1a3682 | 2008-12-01 22:32:03 -0200 | [diff] [blame] | 2365 | kvm_flush_remote_tlbs(vcpu->kvm); |
Xiao Guangrong | 56ca57f | 2016-02-24 17:51:14 +0800 | [diff] [blame] | 2366 | |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2367 | if (level > PT_PAGE_TABLE_LEVEL && need_sync) |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2368 | flush |= kvm_sync_pages(vcpu, gfn, &invalid_list); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2369 | } |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 2370 | sp->mmu_valid_gen = vcpu->kvm->arch.mmu_valid_gen; |
Takuya Yoshikawa | 7749266 | 2015-12-18 18:54:49 +0900 | [diff] [blame] | 2371 | clear_page(sp->spt); |
Avi Kivity | f691fe1 | 2009-07-06 15:58:14 +0300 | [diff] [blame] | 2372 | trace_kvm_mmu_get_page(sp, true); |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2373 | |
| 2374 | kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush); |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 2375 | out: |
| 2376 | if (collisions > vcpu->kvm->stat.max_mmu_page_hash_collisions) |
| 2377 | vcpu->kvm->stat.max_mmu_page_hash_collisions = collisions; |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 2378 | return sp; |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2379 | } |
| 2380 | |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 2381 | static void shadow_walk_init(struct kvm_shadow_walk_iterator *iterator, |
| 2382 | struct kvm_vcpu *vcpu, u64 addr) |
| 2383 | { |
| 2384 | iterator->addr = addr; |
| 2385 | iterator->shadow_addr = vcpu->arch.mmu.root_hpa; |
| 2386 | iterator->level = vcpu->arch.mmu.shadow_root_level; |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 2387 | |
Yu Zhang | 2a7266a | 2017-08-24 20:27:54 +0800 | [diff] [blame] | 2388 | if (iterator->level == PT64_ROOT_4LEVEL && |
| 2389 | vcpu->arch.mmu.root_level < PT64_ROOT_4LEVEL && |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 2390 | !vcpu->arch.mmu.direct_map) |
| 2391 | --iterator->level; |
| 2392 | |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 2393 | if (iterator->level == PT32E_ROOT_LEVEL) { |
| 2394 | iterator->shadow_addr |
| 2395 | = vcpu->arch.mmu.pae_root[(addr >> 30) & 3]; |
| 2396 | iterator->shadow_addr &= PT64_BASE_ADDR_MASK; |
| 2397 | --iterator->level; |
| 2398 | if (!iterator->shadow_addr) |
| 2399 | iterator->level = 0; |
| 2400 | } |
| 2401 | } |
| 2402 | |
| 2403 | static bool shadow_walk_okay(struct kvm_shadow_walk_iterator *iterator) |
| 2404 | { |
| 2405 | if (iterator->level < PT_PAGE_TABLE_LEVEL) |
| 2406 | return false; |
Marcelo Tosatti | 4d88954 | 2009-06-11 12:07:41 -0300 | [diff] [blame] | 2407 | |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 2408 | iterator->index = SHADOW_PT_INDEX(iterator->addr, iterator->level); |
| 2409 | iterator->sptep = ((u64 *)__va(iterator->shadow_addr)) + iterator->index; |
| 2410 | return true; |
| 2411 | } |
| 2412 | |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 2413 | static void __shadow_walk_next(struct kvm_shadow_walk_iterator *iterator, |
| 2414 | u64 spte) |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 2415 | { |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 2416 | if (is_last_spte(spte, iterator->level)) { |
Xiao Guangrong | 052331b | 2011-07-12 03:21:17 +0800 | [diff] [blame] | 2417 | iterator->level = 0; |
| 2418 | return; |
| 2419 | } |
| 2420 | |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 2421 | iterator->shadow_addr = spte & PT64_BASE_ADDR_MASK; |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 2422 | --iterator->level; |
| 2423 | } |
| 2424 | |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 2425 | static void shadow_walk_next(struct kvm_shadow_walk_iterator *iterator) |
| 2426 | { |
David Hildenbrand | bb606a9 | 2017-08-24 20:51:23 +0200 | [diff] [blame] | 2427 | __shadow_walk_next(iterator, *iterator->sptep); |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 2428 | } |
| 2429 | |
Takuya Yoshikawa | 98bba23 | 2015-11-26 21:14:34 +0900 | [diff] [blame] | 2430 | static void link_shadow_page(struct kvm_vcpu *vcpu, u64 *sptep, |
| 2431 | struct kvm_mmu_page *sp) |
Avi Kivity | 32ef26a | 2010-07-13 14:27:04 +0300 | [diff] [blame] | 2432 | { |
| 2433 | u64 spte; |
| 2434 | |
Bandan Das | ffb128c | 2016-07-12 18:18:49 -0400 | [diff] [blame] | 2435 | BUILD_BUG_ON(VMX_EPT_WRITABLE_MASK != PT_WRITABLE_MASK); |
Yang Zhang | 7a1638c | 2013-08-05 11:07:13 +0300 | [diff] [blame] | 2436 | |
Bandan Das | ffb128c | 2016-07-12 18:18:49 -0400 | [diff] [blame] | 2437 | spte = __pa(sp->spt) | shadow_present_mask | PT_WRITABLE_MASK | |
Tom Lendacky | d0ec49d | 2017-07-17 16:10:27 -0500 | [diff] [blame] | 2438 | shadow_user_mask | shadow_x_mask | shadow_me_mask; |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 2439 | |
| 2440 | if (sp_ad_disabled(sp)) |
| 2441 | spte |= shadow_acc_track_value; |
| 2442 | else |
| 2443 | spte |= shadow_accessed_mask; |
Xiao Guangrong | 24db273 | 2013-02-05 15:28:02 +0800 | [diff] [blame] | 2444 | |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 2445 | mmu_spte_set(sptep, spte); |
Takuya Yoshikawa | 98bba23 | 2015-11-26 21:14:34 +0900 | [diff] [blame] | 2446 | |
| 2447 | mmu_page_add_parent_pte(vcpu, sp, sptep); |
| 2448 | |
| 2449 | if (sp->unsync_children || sp->unsync) |
| 2450 | mark_unsync(sptep); |
Avi Kivity | 32ef26a | 2010-07-13 14:27:04 +0300 | [diff] [blame] | 2451 | } |
| 2452 | |
Avi Kivity | a357bd2 | 2010-07-13 14:27:07 +0300 | [diff] [blame] | 2453 | static void validate_direct_spte(struct kvm_vcpu *vcpu, u64 *sptep, |
| 2454 | unsigned direct_access) |
| 2455 | { |
| 2456 | if (is_shadow_present_pte(*sptep) && !is_large_pte(*sptep)) { |
| 2457 | struct kvm_mmu_page *child; |
| 2458 | |
| 2459 | /* |
| 2460 | * For the direct sp, if the guest pte's dirty bit |
| 2461 | * changed form clean to dirty, it will corrupt the |
| 2462 | * sp's access: allow writable in the read-only sp, |
| 2463 | * so we should update the spte at this point to get |
| 2464 | * a new sp with the correct access. |
| 2465 | */ |
| 2466 | child = page_header(*sptep & PT64_BASE_ADDR_MASK); |
| 2467 | if (child->role.access == direct_access) |
| 2468 | return; |
| 2469 | |
Xiao Guangrong | bcdd9a9 | 2011-05-15 23:28:29 +0800 | [diff] [blame] | 2470 | drop_parent_pte(child, sptep); |
Avi Kivity | a357bd2 | 2010-07-13 14:27:07 +0300 | [diff] [blame] | 2471 | kvm_flush_remote_tlbs(vcpu->kvm); |
| 2472 | } |
| 2473 | } |
| 2474 | |
Xiao Guangrong | 505aef8 | 2011-09-22 16:56:06 +0800 | [diff] [blame] | 2475 | 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] | 2476 | u64 *spte) |
| 2477 | { |
| 2478 | u64 pte; |
| 2479 | struct kvm_mmu_page *child; |
| 2480 | |
| 2481 | pte = *spte; |
| 2482 | if (is_shadow_present_pte(pte)) { |
Xiao Guangrong | 505aef8 | 2011-09-22 16:56:06 +0800 | [diff] [blame] | 2483 | if (is_last_spte(pte, sp->role.level)) { |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 2484 | drop_spte(kvm, spte); |
Xiao Guangrong | 505aef8 | 2011-09-22 16:56:06 +0800 | [diff] [blame] | 2485 | if (is_large_pte(pte)) |
| 2486 | --kvm->stat.lpages; |
| 2487 | } else { |
Xiao Guangrong | 38e3b2b | 2011-05-15 23:27:52 +0800 | [diff] [blame] | 2488 | child = page_header(pte & PT64_BASE_ADDR_MASK); |
Xiao Guangrong | bcdd9a9 | 2011-05-15 23:28:29 +0800 | [diff] [blame] | 2489 | drop_parent_pte(child, spte); |
Xiao Guangrong | 38e3b2b | 2011-05-15 23:27:52 +0800 | [diff] [blame] | 2490 | } |
Xiao Guangrong | 505aef8 | 2011-09-22 16:56:06 +0800 | [diff] [blame] | 2491 | return true; |
| 2492 | } |
| 2493 | |
| 2494 | if (is_mmio_spte(pte)) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 2495 | mmu_spte_clear_no_track(spte); |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 2496 | |
Xiao Guangrong | 505aef8 | 2011-09-22 16:56:06 +0800 | [diff] [blame] | 2497 | return false; |
Xiao Guangrong | 38e3b2b | 2011-05-15 23:27:52 +0800 | [diff] [blame] | 2498 | } |
| 2499 | |
Avi Kivity | 90cb052 | 2007-07-17 13:04:56 +0300 | [diff] [blame] | 2500 | static void kvm_mmu_page_unlink_children(struct kvm *kvm, |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 2501 | struct kvm_mmu_page *sp) |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2502 | { |
Avi Kivity | 697fe2e | 2007-01-05 16:36:46 -0800 | [diff] [blame] | 2503 | unsigned i; |
Avi Kivity | 697fe2e | 2007-01-05 16:36:46 -0800 | [diff] [blame] | 2504 | |
Xiao Guangrong | 38e3b2b | 2011-05-15 23:27:52 +0800 | [diff] [blame] | 2505 | for (i = 0; i < PT64_ENT_PER_PAGE; ++i) |
| 2506 | mmu_page_zap_pte(kvm, sp, sp->spt + i); |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2507 | } |
| 2508 | |
Avi Kivity | 31aa2b4 | 2008-07-11 17:59:46 +0300 | [diff] [blame] | 2509 | 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] | 2510 | { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 2511 | u64 *sptep; |
| 2512 | struct rmap_iterator iter; |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2513 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 2514 | while ((sptep = rmap_get_first(&sp->parent_ptes, &iter))) |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 2515 | drop_parent_pte(sp, sptep); |
Avi Kivity | 31aa2b4 | 2008-07-11 17:59:46 +0300 | [diff] [blame] | 2516 | } |
| 2517 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2518 | static int mmu_zap_unsync_children(struct kvm *kvm, |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2519 | struct kvm_mmu_page *parent, |
| 2520 | struct list_head *invalid_list) |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2521 | { |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2522 | int i, zapped = 0; |
| 2523 | struct mmu_page_path parents; |
| 2524 | struct kvm_mmu_pages pages; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2525 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2526 | if (parent->role.level == PT_PAGE_TABLE_LEVEL) |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2527 | return 0; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2528 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2529 | while (mmu_unsync_walk(parent, &pages)) { |
| 2530 | struct kvm_mmu_page *sp; |
| 2531 | |
| 2532 | for_each_sp(pages, sp, parents, i) { |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2533 | kvm_mmu_prepare_zap_page(kvm, sp, invalid_list); |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2534 | mmu_pages_clear_parents(&parents); |
Xiao Guangrong | 77662e0 | 2010-04-16 16:34:42 +0800 | [diff] [blame] | 2535 | zapped++; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2536 | } |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2537 | } |
| 2538 | |
| 2539 | return zapped; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2540 | } |
| 2541 | |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2542 | static int kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp, |
| 2543 | struct list_head *invalid_list) |
Avi Kivity | 31aa2b4 | 2008-07-11 17:59:46 +0300 | [diff] [blame] | 2544 | { |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2545 | int ret; |
Avi Kivity | f691fe1 | 2009-07-06 15:58:14 +0300 | [diff] [blame] | 2546 | |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2547 | trace_kvm_mmu_prepare_zap_page(sp); |
Avi Kivity | 31aa2b4 | 2008-07-11 17:59:46 +0300 | [diff] [blame] | 2548 | ++kvm->stat.mmu_shadow_zapped; |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2549 | ret = mmu_zap_unsync_children(kvm, sp, invalid_list); |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 2550 | kvm_mmu_page_unlink_children(kvm, sp); |
Avi Kivity | 31aa2b4 | 2008-07-11 17:59:46 +0300 | [diff] [blame] | 2551 | kvm_mmu_unlink_parents(kvm, sp); |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 2552 | |
Avi Kivity | f6e2c02b | 2009-01-11 13:02:10 +0200 | [diff] [blame] | 2553 | if (!sp->role.invalid && !sp->role.direct) |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 2554 | unaccount_shadowed(kvm, sp); |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 2555 | |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2556 | if (sp->unsync) |
| 2557 | kvm_unlink_unsync_page(kvm, sp); |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 2558 | if (!sp->root_count) { |
Gui Jianfeng | 54a4f02 | 2010-05-05 09:03:49 +0800 | [diff] [blame] | 2559 | /* Count self */ |
| 2560 | ret++; |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2561 | list_move(&sp->link, invalid_list); |
Xiao Guangrong | aa6bd18 | 2011-07-12 03:26:40 +0800 | [diff] [blame] | 2562 | kvm_mod_used_mmu_pages(kvm, -1); |
Marcelo Tosatti | 2e53d63 | 2008-02-20 14:47:24 -0500 | [diff] [blame] | 2563 | } else { |
Avi Kivity | 5b5c6a5 | 2008-07-11 18:07:26 +0300 | [diff] [blame] | 2564 | list_move(&sp->link, &kvm->arch.active_mmu_pages); |
Gleb Natapov | 05988d7 | 2013-05-31 08:36:30 +0800 | [diff] [blame] | 2565 | |
| 2566 | /* |
| 2567 | * The obsolete pages can not be used on any vcpus. |
| 2568 | * See the comments in kvm_mmu_invalidate_zap_all_pages(). |
| 2569 | */ |
| 2570 | if (!sp->role.invalid && !is_obsolete_sp(kvm, sp)) |
| 2571 | kvm_reload_remote_mmus(kvm); |
Marcelo Tosatti | 2e53d63 | 2008-02-20 14:47:24 -0500 | [diff] [blame] | 2572 | } |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2573 | |
| 2574 | sp->role.invalid = 1; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2575 | return ret; |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2576 | } |
| 2577 | |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2578 | static void kvm_mmu_commit_zap_page(struct kvm *kvm, |
| 2579 | struct list_head *invalid_list) |
| 2580 | { |
Takuya Yoshikawa | 945315b | 2013-03-06 16:05:52 +0900 | [diff] [blame] | 2581 | struct kvm_mmu_page *sp, *nsp; |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2582 | |
| 2583 | if (list_empty(invalid_list)) |
| 2584 | return; |
| 2585 | |
Avi Kivity | c142786 | 2012-05-14 15:44:06 +0300 | [diff] [blame] | 2586 | /* |
Lan Tianyu | 9753f52 | 2016-03-13 11:10:24 +0800 | [diff] [blame] | 2587 | * We need to make sure everyone sees our modifications to |
| 2588 | * the page tables and see changes to vcpu->mode here. The barrier |
| 2589 | * in the kvm_flush_remote_tlbs() achieves this. This pairs |
| 2590 | * with vcpu_enter_guest and walk_shadow_page_lockless_begin/end. |
| 2591 | * |
| 2592 | * In addition, kvm_flush_remote_tlbs waits for all vcpus to exit |
| 2593 | * guest mode and/or lockless shadow page table walks. |
Avi Kivity | c142786 | 2012-05-14 15:44:06 +0300 | [diff] [blame] | 2594 | */ |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2595 | kvm_flush_remote_tlbs(kvm); |
| 2596 | |
Takuya Yoshikawa | 945315b | 2013-03-06 16:05:52 +0900 | [diff] [blame] | 2597 | list_for_each_entry_safe(sp, nsp, invalid_list, link) { |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2598 | WARN_ON(!sp->role.invalid || sp->root_count); |
Xiao Guangrong | aa6bd18 | 2011-07-12 03:26:40 +0800 | [diff] [blame] | 2599 | kvm_mmu_free_page(sp); |
Takuya Yoshikawa | 945315b | 2013-03-06 16:05:52 +0900 | [diff] [blame] | 2600 | } |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2601 | } |
| 2602 | |
Takuya Yoshikawa | 5da5960 | 2013-03-06 16:06:58 +0900 | [diff] [blame] | 2603 | static bool prepare_zap_oldest_mmu_page(struct kvm *kvm, |
| 2604 | struct list_head *invalid_list) |
| 2605 | { |
| 2606 | struct kvm_mmu_page *sp; |
| 2607 | |
| 2608 | if (list_empty(&kvm->arch.active_mmu_pages)) |
| 2609 | return false; |
| 2610 | |
Geliang Tang | d74c0e6 | 2016-01-01 19:47:14 +0800 | [diff] [blame] | 2611 | sp = list_last_entry(&kvm->arch.active_mmu_pages, |
| 2612 | struct kvm_mmu_page, link); |
Wanpeng Li | 42bcbeb | 2017-08-10 06:55:51 -0700 | [diff] [blame] | 2613 | return kvm_mmu_prepare_zap_page(kvm, sp, invalid_list); |
Takuya Yoshikawa | 5da5960 | 2013-03-06 16:06:58 +0900 | [diff] [blame] | 2614 | } |
| 2615 | |
Izik Eidus | 82ce2c9 | 2007-10-02 18:52:55 +0200 | [diff] [blame] | 2616 | /* |
| 2617 | * Changing the number of mmu pages allocated to the vm |
Dave Hansen | 49d5ca2 | 2010-08-19 18:11:28 -0700 | [diff] [blame] | 2618 | * 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] | 2619 | */ |
Dave Hansen | 49d5ca2 | 2010-08-19 18:11:28 -0700 | [diff] [blame] | 2620 | void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int goal_nr_mmu_pages) |
Izik Eidus | 82ce2c9 | 2007-10-02 18:52:55 +0200 | [diff] [blame] | 2621 | { |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 2622 | LIST_HEAD(invalid_list); |
Izik Eidus | 82ce2c9 | 2007-10-02 18:52:55 +0200 | [diff] [blame] | 2623 | |
Takuya Yoshikawa | b34cb59 | 2013-01-08 19:46:07 +0900 | [diff] [blame] | 2624 | spin_lock(&kvm->mmu_lock); |
| 2625 | |
Dave Hansen | 49d5ca2 | 2010-08-19 18:11:28 -0700 | [diff] [blame] | 2626 | if (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages) { |
Takuya Yoshikawa | 5da5960 | 2013-03-06 16:06:58 +0900 | [diff] [blame] | 2627 | /* Need to free some mmu pages to achieve the goal. */ |
| 2628 | while (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages) |
| 2629 | if (!prepare_zap_oldest_mmu_page(kvm, &invalid_list)) |
| 2630 | break; |
Izik Eidus | 82ce2c9 | 2007-10-02 18:52:55 +0200 | [diff] [blame] | 2631 | |
Xiao Guangrong | aa6bd18 | 2011-07-12 03:26:40 +0800 | [diff] [blame] | 2632 | kvm_mmu_commit_zap_page(kvm, &invalid_list); |
Dave Hansen | 49d5ca2 | 2010-08-19 18:11:28 -0700 | [diff] [blame] | 2633 | goal_nr_mmu_pages = kvm->arch.n_used_mmu_pages; |
Izik Eidus | 82ce2c9 | 2007-10-02 18:52:55 +0200 | [diff] [blame] | 2634 | } |
Izik Eidus | 82ce2c9 | 2007-10-02 18:52:55 +0200 | [diff] [blame] | 2635 | |
Dave Hansen | 49d5ca2 | 2010-08-19 18:11:28 -0700 | [diff] [blame] | 2636 | kvm->arch.n_max_mmu_pages = goal_nr_mmu_pages; |
Takuya Yoshikawa | b34cb59 | 2013-01-08 19:46:07 +0900 | [diff] [blame] | 2637 | |
| 2638 | spin_unlock(&kvm->mmu_lock); |
Izik Eidus | 82ce2c9 | 2007-10-02 18:52:55 +0200 | [diff] [blame] | 2639 | } |
| 2640 | |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 2641 | int kvm_mmu_unprotect_page(struct kvm *kvm, gfn_t gfn) |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2642 | { |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 2643 | struct kvm_mmu_page *sp; |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 2644 | LIST_HEAD(invalid_list); |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2645 | int r; |
| 2646 | |
Xiao Guangrong | 9ad17b10 | 2010-08-28 19:19:42 +0800 | [diff] [blame] | 2647 | pgprintk("%s: looking for gfn %llx\n", __func__, gfn); |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2648 | r = 0; |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 2649 | spin_lock(&kvm->mmu_lock); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 2650 | for_each_gfn_indirect_valid_sp(kvm, sp, gfn) { |
Xiao Guangrong | 9ad17b10 | 2010-08-28 19:19:42 +0800 | [diff] [blame] | 2651 | pgprintk("%s: gfn %llx role %x\n", __func__, gfn, |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2652 | sp->role.word); |
| 2653 | r = 1; |
Xiao Guangrong | f41d335 | 2010-06-04 21:56:11 +0800 | [diff] [blame] | 2654 | kvm_mmu_prepare_zap_page(kvm, sp, &invalid_list); |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2655 | } |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 2656 | kvm_mmu_commit_zap_page(kvm, &invalid_list); |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 2657 | spin_unlock(&kvm->mmu_lock); |
| 2658 | |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2659 | return r; |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2660 | } |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 2661 | EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page); |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2662 | |
Xiao Guangrong | 5c520e9 | 2016-02-24 17:51:15 +0800 | [diff] [blame] | 2663 | 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] | 2664 | { |
Xiao Guangrong | 5e1b3dd | 2010-04-28 11:55:06 +0800 | [diff] [blame] | 2665 | trace_kvm_mmu_unsync_page(sp); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2666 | ++vcpu->kvm->stat.mmu_unsync; |
| 2667 | sp->unsync = 1; |
Marcelo Tosatti | 6cffe8c | 2008-12-01 22:32:04 -0200 | [diff] [blame] | 2668 | |
Xiao Guangrong | 6b18493 | 2010-04-16 21:29:17 +0800 | [diff] [blame] | 2669 | kvm_mmu_mark_parents_unsync(sp); |
Xiao Guangrong | 9cf5cf5 | 2010-05-24 15:40:07 +0800 | [diff] [blame] | 2670 | } |
| 2671 | |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 2672 | static bool mmu_need_write_protect(struct kvm_vcpu *vcpu, gfn_t gfn, |
| 2673 | bool can_unsync) |
Xiao Guangrong | 9cf5cf5 | 2010-05-24 15:40:07 +0800 | [diff] [blame] | 2674 | { |
Xiao Guangrong | 5c520e9 | 2016-02-24 17:51:15 +0800 | [diff] [blame] | 2675 | struct kvm_mmu_page *sp; |
Xiao Guangrong | 9cf5cf5 | 2010-05-24 15:40:07 +0800 | [diff] [blame] | 2676 | |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 2677 | if (kvm_page_track_is_active(vcpu, gfn, KVM_PAGE_TRACK_WRITE)) |
| 2678 | return true; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2679 | |
Xiao Guangrong | 5c520e9 | 2016-02-24 17:51:15 +0800 | [diff] [blame] | 2680 | for_each_gfn_indirect_valid_sp(vcpu->kvm, sp, gfn) { |
Xiao Guangrong | 36a2e67 | 2010-06-30 16:02:02 +0800 | [diff] [blame] | 2681 | if (!can_unsync) |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 2682 | return true; |
Xiao Guangrong | 36a2e67 | 2010-06-30 16:02:02 +0800 | [diff] [blame] | 2683 | |
Xiao Guangrong | 5c520e9 | 2016-02-24 17:51:15 +0800 | [diff] [blame] | 2684 | if (sp->unsync) |
| 2685 | continue; |
Xiao Guangrong | 9cf5cf5 | 2010-05-24 15:40:07 +0800 | [diff] [blame] | 2686 | |
Xiao Guangrong | 5c520e9 | 2016-02-24 17:51:15 +0800 | [diff] [blame] | 2687 | WARN_ON(sp->role.level != PT_PAGE_TABLE_LEVEL); |
| 2688 | kvm_unsync_page(vcpu, sp); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2689 | } |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 2690 | |
| 2691 | return false; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2692 | } |
| 2693 | |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 2694 | static bool kvm_is_mmio_pfn(kvm_pfn_t pfn) |
Paolo Bonzini | d1fe921 | 2015-07-07 15:03:18 +0200 | [diff] [blame] | 2695 | { |
| 2696 | if (pfn_valid(pfn)) |
| 2697 | return !is_zero_pfn(pfn) && PageReserved(pfn_to_page(pfn)); |
| 2698 | |
| 2699 | return true; |
| 2700 | } |
| 2701 | |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 2702 | static int set_spte(struct kvm_vcpu *vcpu, u64 *sptep, |
Xiao Guangrong | c2288505 | 2013-01-08 14:36:04 +0800 | [diff] [blame] | 2703 | unsigned pte_access, int level, |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 2704 | gfn_t gfn, kvm_pfn_t pfn, bool speculative, |
Lai Jiangshan | 9bdbba1 | 2010-11-19 17:03:22 +0800 | [diff] [blame] | 2705 | bool can_unsync, bool host_writable) |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2706 | { |
Bandan Das | ffb128c | 2016-07-12 18:18:49 -0400 | [diff] [blame] | 2707 | u64 spte = 0; |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2708 | int ret = 0; |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 2709 | struct kvm_mmu_page *sp; |
Sheng Yang | 64d4d52 | 2008-10-09 16:01:57 +0800 | [diff] [blame] | 2710 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 2711 | if (set_mmio_spte(vcpu, sptep, gfn, pfn, pte_access)) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 2712 | return 0; |
| 2713 | |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 2714 | sp = page_header(__pa(sptep)); |
| 2715 | if (sp_ad_disabled(sp)) |
| 2716 | spte |= shadow_acc_track_value; |
| 2717 | |
Bandan Das | d95c556 | 2016-07-12 18:18:51 -0400 | [diff] [blame] | 2718 | /* |
| 2719 | * For the EPT case, shadow_present_mask is 0 if hardware |
| 2720 | * supports exec-only page table entries. In that case, |
| 2721 | * ACC_USER_MASK and shadow_user_mask are used to represent |
| 2722 | * read access. See FNAME(gpte_access) in paging_tmpl.h. |
| 2723 | */ |
Bandan Das | ffb128c | 2016-07-12 18:18:49 -0400 | [diff] [blame] | 2724 | spte |= shadow_present_mask; |
Avi Kivity | 947da53 | 2008-03-18 11:05:52 +0200 | [diff] [blame] | 2725 | if (!speculative) |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 2726 | spte |= spte_shadow_accessed_mask(spte); |
Xiao Guangrong | 640d9b0 | 2011-07-12 03:24:39 +0800 | [diff] [blame] | 2727 | |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 2728 | if (pte_access & ACC_EXEC_MASK) |
| 2729 | spte |= shadow_x_mask; |
| 2730 | else |
| 2731 | spte |= shadow_nx_mask; |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 2732 | |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2733 | if (pte_access & ACC_USER_MASK) |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 2734 | spte |= shadow_user_mask; |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 2735 | |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 2736 | if (level > PT_PAGE_TABLE_LEVEL) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 2737 | spte |= PT_PAGE_SIZE_MASK; |
Avi Kivity | b0bc3ee | 2010-09-13 16:45:28 +0200 | [diff] [blame] | 2738 | if (tdp_enabled) |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 2739 | spte |= kvm_x86_ops->get_mt_mask(vcpu, gfn, |
Paolo Bonzini | d1fe921 | 2015-07-07 15:03:18 +0200 | [diff] [blame] | 2740 | kvm_is_mmio_pfn(pfn)); |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2741 | |
Lai Jiangshan | 9bdbba1 | 2010-11-19 17:03:22 +0800 | [diff] [blame] | 2742 | if (host_writable) |
Izik Eidus | 1403283 | 2009-09-23 21:47:17 +0300 | [diff] [blame] | 2743 | spte |= SPTE_HOST_WRITEABLE; |
Xiao Guangrong | f8e453b | 2010-12-23 16:09:29 +0800 | [diff] [blame] | 2744 | else |
| 2745 | pte_access &= ~ACC_WRITE_MASK; |
Izik Eidus | 1403283 | 2009-09-23 21:47:17 +0300 | [diff] [blame] | 2746 | |
Anthony Liguori | 35149e2 | 2008-04-02 14:46:56 -0500 | [diff] [blame] | 2747 | spte |= (u64)pfn << PAGE_SHIFT; |
Tom Lendacky | d0ec49d | 2017-07-17 16:10:27 -0500 | [diff] [blame] | 2748 | spte |= shadow_me_mask; |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2749 | |
Xiao Guangrong | c2288505 | 2013-01-08 14:36:04 +0800 | [diff] [blame] | 2750 | if (pte_access & ACC_WRITE_MASK) { |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2751 | |
Xiao Guangrong | c219346 | 2012-12-04 07:17:11 +0800 | [diff] [blame] | 2752 | /* |
Xiao Guangrong | 7751bab | 2013-01-08 14:36:51 +0800 | [diff] [blame] | 2753 | * Other vcpu creates new sp in the window between |
| 2754 | * mapping_level() and acquiring mmu-lock. We can |
| 2755 | * allow guest to retry the access, the mapping can |
| 2756 | * be fixed if guest refault. |
Xiao Guangrong | c219346 | 2012-12-04 07:17:11 +0800 | [diff] [blame] | 2757 | */ |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 2758 | if (level > PT_PAGE_TABLE_LEVEL && |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 2759 | mmu_gfn_lpage_is_disallowed(vcpu, gfn, level)) |
Avi Kivity | be38d27 | 2010-06-06 14:31:27 +0300 | [diff] [blame] | 2760 | goto done; |
Marcelo Tosatti | 38187c8 | 2008-09-23 13:18:32 -0300 | [diff] [blame] | 2761 | |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 2762 | spte |= PT_WRITABLE_MASK | SPTE_MMU_WRITEABLE; |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2763 | |
Marcelo Tosatti | ecc5589 | 2008-11-25 15:58:07 +0100 | [diff] [blame] | 2764 | /* |
| 2765 | * Optimization: for pte sync, if spte was writable the hash |
| 2766 | * lookup is unnecessary (and expensive). Write protection |
| 2767 | * is responsibility of mmu_get_page / kvm_sync_page. |
| 2768 | * Same reasoning can be applied to dirty page accounting. |
| 2769 | */ |
Takuya Yoshikawa | 8dae444 | 2010-01-18 18:45:10 +0900 | [diff] [blame] | 2770 | if (!can_unsync && is_writable_pte(*sptep)) |
Marcelo Tosatti | ecc5589 | 2008-11-25 15:58:07 +0100 | [diff] [blame] | 2771 | goto set_pte; |
| 2772 | |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2773 | if (mmu_need_write_protect(vcpu, gfn, can_unsync)) { |
Xiao Guangrong | 9ad17b10 | 2010-08-28 19:19:42 +0800 | [diff] [blame] | 2774 | pgprintk("%s: found shadow page for %llx, marking ro\n", |
Harvey Harrison | b8688d5 | 2008-03-03 12:59:56 -0800 | [diff] [blame] | 2775 | __func__, gfn); |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2776 | ret = 1; |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2777 | pte_access &= ~ACC_WRITE_MASK; |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 2778 | spte &= ~(PT_WRITABLE_MASK | SPTE_MMU_WRITEABLE); |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2779 | } |
| 2780 | } |
| 2781 | |
Kai Huang | 9b51a63 | 2015-01-28 10:54:25 +0800 | [diff] [blame] | 2782 | if (pte_access & ACC_WRITE_MASK) { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 2783 | kvm_vcpu_mark_page_dirty(vcpu, gfn); |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 2784 | spte |= spte_shadow_dirty_mask(spte); |
Kai Huang | 9b51a63 | 2015-01-28 10:54:25 +0800 | [diff] [blame] | 2785 | } |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2786 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 2787 | if (speculative) |
| 2788 | spte = mark_spte_for_access_track(spte); |
| 2789 | |
Marcelo Tosatti | 38187c8 | 2008-09-23 13:18:32 -0300 | [diff] [blame] | 2790 | set_pte: |
Xiao Guangrong | 6e7d035 | 2012-06-20 15:58:33 +0800 | [diff] [blame] | 2791 | if (mmu_spte_update(sptep, spte)) |
Xiao Guangrong | b330aa0 | 2010-11-19 17:02:35 +0800 | [diff] [blame] | 2792 | kvm_flush_remote_tlbs(vcpu->kvm); |
Avi Kivity | be38d27 | 2010-06-06 14:31:27 +0300 | [diff] [blame] | 2793 | done: |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2794 | return ret; |
| 2795 | } |
| 2796 | |
Takuya Yoshikawa | 029499b | 2015-11-20 17:44:05 +0900 | [diff] [blame] | 2797 | static bool mmu_set_spte(struct kvm_vcpu *vcpu, u64 *sptep, unsigned pte_access, |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 2798 | int write_fault, int level, gfn_t gfn, kvm_pfn_t pfn, |
Takuya Yoshikawa | 029499b | 2015-11-20 17:44:05 +0900 | [diff] [blame] | 2799 | bool speculative, bool host_writable) |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2800 | { |
| 2801 | int was_rmapped = 0; |
Marcelo Tosatti | 53a27b3 | 2009-08-05 15:43:58 -0300 | [diff] [blame] | 2802 | int rmap_count; |
Takuya Yoshikawa | 029499b | 2015-11-20 17:44:05 +0900 | [diff] [blame] | 2803 | bool emulate = false; |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2804 | |
Xiao Guangrong | f761620 | 2013-02-05 15:27:27 +0800 | [diff] [blame] | 2805 | pgprintk("%s: spte %llx write_fault %d gfn %llx\n", __func__, |
| 2806 | *sptep, write_fault, gfn); |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2807 | |
Takuya Yoshikawa | afd28fe | 2015-11-20 17:44:55 +0900 | [diff] [blame] | 2808 | if (is_shadow_present_pte(*sptep)) { |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2809 | /* |
| 2810 | * If we overwrite a PTE page pointer with a 2MB PMD, unlink |
| 2811 | * the parent of the now unreachable PTE. |
| 2812 | */ |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 2813 | if (level > PT_PAGE_TABLE_LEVEL && |
| 2814 | !is_large_pte(*sptep)) { |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2815 | struct kvm_mmu_page *child; |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 2816 | u64 pte = *sptep; |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2817 | |
| 2818 | child = page_header(pte & PT64_BASE_ADDR_MASK); |
Xiao Guangrong | bcdd9a9 | 2011-05-15 23:28:29 +0800 | [diff] [blame] | 2819 | drop_parent_pte(child, sptep); |
Marcelo Tosatti | 3be2264 | 2010-05-28 09:44:59 -0300 | [diff] [blame] | 2820 | kvm_flush_remote_tlbs(vcpu->kvm); |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 2821 | } else if (pfn != spte_to_pfn(*sptep)) { |
Xiao Guangrong | 9ad17b10 | 2010-08-28 19:19:42 +0800 | [diff] [blame] | 2822 | pgprintk("hfn old %llx new %llx\n", |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 2823 | spte_to_pfn(*sptep), pfn); |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 2824 | drop_spte(vcpu->kvm, sptep); |
Xiao Guangrong | 9154635 | 2010-06-30 16:04:06 +0800 | [diff] [blame] | 2825 | kvm_flush_remote_tlbs(vcpu->kvm); |
Joerg Roedel | 6bed6b9 | 2009-02-18 14:08:59 +0100 | [diff] [blame] | 2826 | } else |
| 2827 | was_rmapped = 1; |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2828 | } |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 2829 | |
Xiao Guangrong | c2288505 | 2013-01-08 14:36:04 +0800 | [diff] [blame] | 2830 | if (set_spte(vcpu, sptep, pte_access, level, gfn, pfn, speculative, |
| 2831 | true, host_writable)) { |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2832 | if (write_fault) |
Takuya Yoshikawa | 029499b | 2015-11-20 17:44:05 +0900 | [diff] [blame] | 2833 | emulate = true; |
Liang Chen | 77c3913 | 2014-09-18 12:38:37 -0400 | [diff] [blame] | 2834 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Marcelo Tosatti | a378b4e | 2008-09-23 13:18:31 -0300 | [diff] [blame] | 2835 | } |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2836 | |
Takuya Yoshikawa | 029499b | 2015-11-20 17:44:05 +0900 | [diff] [blame] | 2837 | if (unlikely(is_mmio_spte(*sptep))) |
| 2838 | emulate = true; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 2839 | |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 2840 | pgprintk("%s: setting spte %llx\n", __func__, *sptep); |
Xiao Guangrong | 9ad17b10 | 2010-08-28 19:19:42 +0800 | [diff] [blame] | 2841 | pgprintk("instantiating %s PTE (%s) at %llx (%llx) addr %p\n", |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 2842 | is_large_pte(*sptep)? "2MB" : "4kB", |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 2843 | *sptep & PT_WRITABLE_MASK ? "RW" : "R", gfn, |
Joerg Roedel | a205bc1 | 2009-07-09 16:36:01 +0200 | [diff] [blame] | 2844 | *sptep, sptep); |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 2845 | if (!was_rmapped && is_large_pte(*sptep)) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 2846 | ++vcpu->kvm->stat.lpages; |
| 2847 | |
Xiao Guangrong | ffb61bb | 2011-07-12 03:22:01 +0800 | [diff] [blame] | 2848 | if (is_shadow_present_pte(*sptep)) { |
Xiao Guangrong | ffb61bb | 2011-07-12 03:22:01 +0800 | [diff] [blame] | 2849 | if (!was_rmapped) { |
| 2850 | rmap_count = rmap_add(vcpu, sptep, gfn); |
| 2851 | if (rmap_count > RMAP_RECYCLE_THRESHOLD) |
| 2852 | rmap_recycle(vcpu, sptep, gfn); |
| 2853 | } |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2854 | } |
Xiao Guangrong | cb9aaa3 | 2012-08-03 15:42:10 +0800 | [diff] [blame] | 2855 | |
Xiao Guangrong | f3ac1a4 | 2012-10-16 20:07:03 +0800 | [diff] [blame] | 2856 | kvm_release_pfn_clean(pfn); |
Takuya Yoshikawa | 029499b | 2015-11-20 17:44:05 +0900 | [diff] [blame] | 2857 | |
| 2858 | return emulate; |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2859 | } |
| 2860 | |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 2861 | 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] | 2862 | bool no_dirty_log) |
| 2863 | { |
| 2864 | struct kvm_memory_slot *slot; |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 2865 | |
Xiao Guangrong | 5d163b1 | 2011-03-09 15:43:00 +0800 | [diff] [blame] | 2866 | slot = gfn_to_memslot_dirty_bitmap(vcpu, gfn, no_dirty_log); |
Xiao Guangrong | 903816f | 2012-07-17 21:54:11 +0800 | [diff] [blame] | 2867 | if (!slot) |
Xiao Guangrong | 6c8ee57 | 2012-08-03 15:37:54 +0800 | [diff] [blame] | 2868 | return KVM_PFN_ERR_FAULT; |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 2869 | |
Xiao Guangrong | 037d92d | 2012-08-21 10:59:12 +0800 | [diff] [blame] | 2870 | return gfn_to_pfn_memslot_atomic(slot, gfn); |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 2871 | } |
| 2872 | |
| 2873 | static int direct_pte_prefetch_many(struct kvm_vcpu *vcpu, |
| 2874 | struct kvm_mmu_page *sp, |
| 2875 | u64 *start, u64 *end) |
| 2876 | { |
| 2877 | struct page *pages[PTE_PREFETCH_NUM]; |
Paolo Bonzini | d9ef13c | 2015-05-19 16:01:50 +0200 | [diff] [blame] | 2878 | struct kvm_memory_slot *slot; |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 2879 | unsigned access = sp->role.access; |
| 2880 | int i, ret; |
| 2881 | gfn_t gfn; |
| 2882 | |
| 2883 | gfn = kvm_mmu_page_get_gfn(sp, start - sp->spt); |
Paolo Bonzini | d9ef13c | 2015-05-19 16:01:50 +0200 | [diff] [blame] | 2884 | slot = gfn_to_memslot_dirty_bitmap(vcpu, gfn, access & ACC_WRITE_MASK); |
| 2885 | if (!slot) |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 2886 | return -1; |
| 2887 | |
Paolo Bonzini | d9ef13c | 2015-05-19 16:01:50 +0200 | [diff] [blame] | 2888 | ret = gfn_to_page_many_atomic(slot, gfn, pages, end - start); |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 2889 | if (ret <= 0) |
| 2890 | return -1; |
| 2891 | |
| 2892 | for (i = 0; i < ret; i++, gfn++, start++) |
Takuya Yoshikawa | 029499b | 2015-11-20 17:44:05 +0900 | [diff] [blame] | 2893 | mmu_set_spte(vcpu, start, access, 0, sp->role.level, gfn, |
| 2894 | page_to_pfn(pages[i]), true, true); |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 2895 | |
| 2896 | return 0; |
| 2897 | } |
| 2898 | |
| 2899 | static void __direct_pte_prefetch(struct kvm_vcpu *vcpu, |
| 2900 | struct kvm_mmu_page *sp, u64 *sptep) |
| 2901 | { |
| 2902 | u64 *spte, *start = NULL; |
| 2903 | int i; |
| 2904 | |
| 2905 | WARN_ON(!sp->role.direct); |
| 2906 | |
| 2907 | i = (sptep - sp->spt) & ~(PTE_PREFETCH_NUM - 1); |
| 2908 | spte = sp->spt + i; |
| 2909 | |
| 2910 | for (i = 0; i < PTE_PREFETCH_NUM; i++, spte++) { |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 2911 | if (is_shadow_present_pte(*spte) || spte == sptep) { |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 2912 | if (!start) |
| 2913 | continue; |
| 2914 | if (direct_pte_prefetch_many(vcpu, sp, start, spte) < 0) |
| 2915 | break; |
| 2916 | start = NULL; |
| 2917 | } else if (!start) |
| 2918 | start = spte; |
| 2919 | } |
| 2920 | } |
| 2921 | |
| 2922 | static void direct_pte_prefetch(struct kvm_vcpu *vcpu, u64 *sptep) |
| 2923 | { |
| 2924 | struct kvm_mmu_page *sp; |
| 2925 | |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 2926 | sp = page_header(__pa(sptep)); |
| 2927 | |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 2928 | /* |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 2929 | * Without accessed bits, there's no way to distinguish between |
| 2930 | * actually accessed translations and prefetched, so disable pte |
| 2931 | * prefetch if accessed bits aren't available. |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 2932 | */ |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 2933 | if (sp_ad_disabled(sp)) |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 2934 | return; |
| 2935 | |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 2936 | if (sp->role.level > PT_PAGE_TABLE_LEVEL) |
| 2937 | return; |
| 2938 | |
| 2939 | __direct_pte_prefetch(vcpu, sp, sptep); |
| 2940 | } |
| 2941 | |
Takuya Yoshikawa | 7ee0e5b | 2015-11-20 17:42:23 +0900 | [diff] [blame] | 2942 | 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] | 2943 | int level, gfn_t gfn, kvm_pfn_t pfn, bool prefault) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2944 | { |
Avi Kivity | 9f652d21 | 2008-12-25 14:54:25 +0200 | [diff] [blame] | 2945 | struct kvm_shadow_walk_iterator iterator; |
| 2946 | struct kvm_mmu_page *sp; |
Xiao Guangrong | b90a0e6 | 2011-07-12 03:25:56 +0800 | [diff] [blame] | 2947 | int emulate = 0; |
Avi Kivity | 9f652d21 | 2008-12-25 14:54:25 +0200 | [diff] [blame] | 2948 | gfn_t pseudo_gfn; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2949 | |
Marcelo Tosatti | 989c6b3 | 2013-12-19 15:28:51 -0200 | [diff] [blame] | 2950 | if (!VALID_PAGE(vcpu->arch.mmu.root_hpa)) |
| 2951 | return 0; |
| 2952 | |
Avi Kivity | 9f652d21 | 2008-12-25 14:54:25 +0200 | [diff] [blame] | 2953 | for_each_shadow_entry(vcpu, (u64)gfn << PAGE_SHIFT, iterator) { |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 2954 | if (iterator.level == level) { |
Takuya Yoshikawa | 029499b | 2015-11-20 17:44:05 +0900 | [diff] [blame] | 2955 | emulate = mmu_set_spte(vcpu, iterator.sptep, ACC_ALL, |
| 2956 | write, level, gfn, pfn, prefault, |
| 2957 | map_writable); |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 2958 | direct_pte_prefetch(vcpu, iterator.sptep); |
Avi Kivity | 9f652d21 | 2008-12-25 14:54:25 +0200 | [diff] [blame] | 2959 | ++vcpu->stat.pf_fixed; |
| 2960 | break; |
| 2961 | } |
| 2962 | |
Marcelo Tosatti | 404381c | 2014-02-24 13:59:32 -0300 | [diff] [blame] | 2963 | drop_large_spte(vcpu, iterator.sptep); |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 2964 | if (!is_shadow_present_pte(*iterator.sptep)) { |
Lai Jiangshan | c9fa0b3 | 2010-05-26 16:48:25 +0800 | [diff] [blame] | 2965 | u64 base_addr = iterator.addr; |
| 2966 | |
| 2967 | base_addr &= PT64_LVL_ADDR_MASK(iterator.level); |
| 2968 | pseudo_gfn = base_addr >> PAGE_SHIFT; |
Avi Kivity | 9f652d21 | 2008-12-25 14:54:25 +0200 | [diff] [blame] | 2969 | sp = kvm_mmu_get_page(vcpu, pseudo_gfn, iterator.addr, |
Takuya Yoshikawa | bb11c6c | 2015-11-26 21:16:35 +0900 | [diff] [blame] | 2970 | iterator.level - 1, 1, ACC_ALL); |
Avi Kivity | 9f652d21 | 2008-12-25 14:54:25 +0200 | [diff] [blame] | 2971 | |
Takuya Yoshikawa | 98bba23 | 2015-11-26 21:14:34 +0900 | [diff] [blame] | 2972 | link_shadow_page(vcpu, iterator.sptep, sp); |
Avi Kivity | 9f652d21 | 2008-12-25 14:54:25 +0200 | [diff] [blame] | 2973 | } |
| 2974 | } |
Xiao Guangrong | b90a0e6 | 2011-07-12 03:25:56 +0800 | [diff] [blame] | 2975 | return emulate; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2976 | } |
| 2977 | |
Huang Ying | 77db5cb | 2010-10-08 16:24:15 +0800 | [diff] [blame] | 2978 | 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] | 2979 | { |
Huang Ying | 77db5cb | 2010-10-08 16:24:15 +0800 | [diff] [blame] | 2980 | siginfo_t info; |
Huang Ying | bf99815 | 2010-05-31 14:28:19 +0800 | [diff] [blame] | 2981 | |
Huang Ying | 77db5cb | 2010-10-08 16:24:15 +0800 | [diff] [blame] | 2982 | info.si_signo = SIGBUS; |
| 2983 | info.si_errno = 0; |
| 2984 | info.si_code = BUS_MCEERR_AR; |
| 2985 | info.si_addr = (void __user *)address; |
| 2986 | info.si_addr_lsb = PAGE_SHIFT; |
| 2987 | |
| 2988 | send_sig_info(SIGBUS, &info, tsk); |
Huang Ying | bf99815 | 2010-05-31 14:28:19 +0800 | [diff] [blame] | 2989 | } |
| 2990 | |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 2991 | 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] | 2992 | { |
Xiao Guangrong | 4d8b81a | 2012-08-21 11:02:51 +0800 | [diff] [blame] | 2993 | /* |
| 2994 | * Do not cache the mmio info caused by writing the readonly gfn |
| 2995 | * into the spte otherwise read access on readonly gfn also can |
| 2996 | * caused mmio page fault and treat it as mmio access. |
| 2997 | * Return 1 to tell kvm to emulate it. |
| 2998 | */ |
| 2999 | if (pfn == KVM_PFN_ERR_RO_FAULT) |
| 3000 | return 1; |
| 3001 | |
Xiao Guangrong | e6c1502 | 2012-08-03 15:38:36 +0800 | [diff] [blame] | 3002 | if (pfn == KVM_PFN_ERR_HWPOISON) { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 3003 | kvm_send_hwpoison_signal(kvm_vcpu_gfn_to_hva(vcpu, gfn), current); |
Huang Ying | bf99815 | 2010-05-31 14:28:19 +0800 | [diff] [blame] | 3004 | return 0; |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3005 | } |
Gleb Natapov | edba23e | 2010-07-07 20:16:45 +0300 | [diff] [blame] | 3006 | |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3007 | return -EFAULT; |
Huang Ying | bf99815 | 2010-05-31 14:28:19 +0800 | [diff] [blame] | 3008 | } |
| 3009 | |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3010 | static void transparent_hugepage_adjust(struct kvm_vcpu *vcpu, |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 3011 | gfn_t *gfnp, kvm_pfn_t *pfnp, |
| 3012 | int *levelp) |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3013 | { |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 3014 | kvm_pfn_t pfn = *pfnp; |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3015 | gfn_t gfn = *gfnp; |
| 3016 | int level = *levelp; |
| 3017 | |
| 3018 | /* |
| 3019 | * Check if it's a transparent hugepage. If this would be an |
| 3020 | * hugetlbfs page, level wouldn't be set to |
| 3021 | * PT_PAGE_TABLE_LEVEL and there would be no adjustment done |
| 3022 | * here. |
| 3023 | */ |
Ard Biesheuvel | bf4bea8 | 2014-11-10 08:33:56 +0000 | [diff] [blame] | 3024 | if (!is_error_noslot_pfn(pfn) && !kvm_is_reserved_pfn(pfn) && |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3025 | level == PT_PAGE_TABLE_LEVEL && |
Andrea Arcangeli | 127393f | 2016-05-05 16:22:20 -0700 | [diff] [blame] | 3026 | PageTransCompoundMap(pfn_to_page(pfn)) && |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 3027 | !mmu_gfn_lpage_is_disallowed(vcpu, gfn, PT_DIRECTORY_LEVEL)) { |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3028 | unsigned long mask; |
| 3029 | /* |
| 3030 | * mmu_notifier_retry was successful and we hold the |
| 3031 | * mmu_lock here, so the pmd can't become splitting |
| 3032 | * from under us, and in turn |
| 3033 | * __split_huge_page_refcount() can't run from under |
| 3034 | * us and we can safely transfer the refcount from |
| 3035 | * PG_tail to PG_head as we switch the pfn to tail to |
| 3036 | * head. |
| 3037 | */ |
| 3038 | *levelp = level = PT_DIRECTORY_LEVEL; |
| 3039 | mask = KVM_PAGES_PER_HPAGE(level) - 1; |
| 3040 | VM_BUG_ON((gfn & mask) != (pfn & mask)); |
| 3041 | if (pfn & mask) { |
| 3042 | gfn &= ~mask; |
| 3043 | *gfnp = gfn; |
| 3044 | kvm_release_pfn_clean(pfn); |
| 3045 | pfn &= ~mask; |
Xiao Guangrong | c358666 | 2012-05-28 14:10:43 +0800 | [diff] [blame] | 3046 | kvm_get_pfn(pfn); |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3047 | *pfnp = pfn; |
| 3048 | } |
| 3049 | } |
| 3050 | } |
| 3051 | |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3052 | 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] | 3053 | kvm_pfn_t pfn, unsigned access, int *ret_val) |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3054 | { |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3055 | /* The pfn is invalid, report the error! */ |
Xiao Guangrong | 81c52c5 | 2012-10-16 20:10:59 +0800 | [diff] [blame] | 3056 | if (unlikely(is_error_pfn(pfn))) { |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3057 | *ret_val = kvm_handle_bad_page(vcpu, gfn, pfn); |
Paolo Bonzini | 798e88b | 2016-02-23 15:28:51 +0100 | [diff] [blame] | 3058 | return true; |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3059 | } |
| 3060 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3061 | if (unlikely(is_noslot_pfn(pfn))) |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3062 | vcpu_cache_mmio_info(vcpu, gva, gfn, access); |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3063 | |
Paolo Bonzini | 798e88b | 2016-02-23 15:28:51 +0100 | [diff] [blame] | 3064 | return false; |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3065 | } |
| 3066 | |
Xiao Guangrong | e5552fd | 2013-07-30 21:01:59 +0800 | [diff] [blame] | 3067 | static bool page_fault_can_be_fast(u32 error_code) |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3068 | { |
| 3069 | /* |
Xiao Guangrong | 1c118b8 | 2013-07-18 12:52:37 +0800 | [diff] [blame] | 3070 | * Do not fix the mmio spte with invalid generation number which |
| 3071 | * need to be updated by slow page fault path. |
| 3072 | */ |
| 3073 | if (unlikely(error_code & PFERR_RSVD_MASK)) |
| 3074 | return false; |
| 3075 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 3076 | /* See if the page fault is due to an NX violation */ |
| 3077 | if (unlikely(((error_code & (PFERR_FETCH_MASK | PFERR_PRESENT_MASK)) |
| 3078 | == (PFERR_FETCH_MASK | PFERR_PRESENT_MASK)))) |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3079 | return false; |
| 3080 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 3081 | /* |
| 3082 | * #PF can be fast if: |
| 3083 | * 1. The shadow page table entry is not present, which could mean that |
| 3084 | * the fault is potentially caused by access tracking (if enabled). |
| 3085 | * 2. The shadow page table entry is present and the fault |
| 3086 | * is caused by write-protect, that means we just need change the W |
| 3087 | * bit of the spte which can be done out of mmu-lock. |
| 3088 | * |
| 3089 | * However, if access tracking is disabled we know that a non-present |
| 3090 | * page must be a genuine page fault where we have to create a new SPTE. |
| 3091 | * So, if access tracking is disabled, we return true only for write |
| 3092 | * accesses to a present page. |
| 3093 | */ |
| 3094 | |
| 3095 | return shadow_acc_track_mask != 0 || |
| 3096 | ((error_code & (PFERR_WRITE_MASK | PFERR_PRESENT_MASK)) |
| 3097 | == (PFERR_WRITE_MASK | PFERR_PRESENT_MASK)); |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3098 | } |
| 3099 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3100 | /* |
| 3101 | * Returns true if the SPTE was fixed successfully. Otherwise, |
| 3102 | * someone else modified the SPTE from its original value. |
| 3103 | */ |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3104 | static bool |
Xiao Guangrong | 92a476c | 2014-04-17 17:06:13 +0800 | [diff] [blame] | 3105 | 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] | 3106 | u64 *sptep, u64 old_spte, u64 new_spte) |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3107 | { |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3108 | gfn_t gfn; |
| 3109 | |
| 3110 | WARN_ON(!sp->role.direct); |
| 3111 | |
Kai Huang | 9b51a63 | 2015-01-28 10:54:25 +0800 | [diff] [blame] | 3112 | /* |
| 3113 | * Theoretically we could also set dirty bit (and flush TLB) here in |
| 3114 | * order to eliminate unnecessary PML logging. See comments in |
| 3115 | * set_spte. But fast_page_fault is very unlikely to happen with PML |
| 3116 | * enabled, so we do not do this. This might result in the same GPA |
| 3117 | * to be logged in PML buffer again when the write really happens, and |
| 3118 | * eventually to be called by mark_page_dirty twice. But it's also no |
| 3119 | * harm. This also avoids the TLB flush needed after setting dirty bit |
| 3120 | * so non-PML cases won't be impacted. |
| 3121 | * |
| 3122 | * Compare with set_spte where instead shadow_dirty_mask is set. |
| 3123 | */ |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 3124 | if (cmpxchg64(sptep, old_spte, new_spte) != old_spte) |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3125 | return false; |
| 3126 | |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3127 | if (is_writable_pte(new_spte) && !is_writable_pte(old_spte)) { |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 3128 | /* |
| 3129 | * The gfn of direct spte is stable since it is |
| 3130 | * calculated by sp->gfn. |
| 3131 | */ |
| 3132 | gfn = kvm_mmu_page_get_gfn(sp, sptep - sp->spt); |
| 3133 | kvm_vcpu_mark_page_dirty(vcpu, gfn); |
| 3134 | } |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3135 | |
| 3136 | return true; |
| 3137 | } |
| 3138 | |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3139 | static bool is_access_allowed(u32 fault_err_code, u64 spte) |
| 3140 | { |
| 3141 | if (fault_err_code & PFERR_FETCH_MASK) |
| 3142 | return is_executable_pte(spte); |
| 3143 | |
| 3144 | if (fault_err_code & PFERR_WRITE_MASK) |
| 3145 | return is_writable_pte(spte); |
| 3146 | |
| 3147 | /* Fault was on Read access */ |
| 3148 | return spte & PT_PRESENT_MASK; |
| 3149 | } |
| 3150 | |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3151 | /* |
| 3152 | * Return value: |
| 3153 | * - true: let the vcpu to access on the same address again. |
| 3154 | * - false: let the real page fault path to fix it. |
| 3155 | */ |
| 3156 | static bool fast_page_fault(struct kvm_vcpu *vcpu, gva_t gva, int level, |
| 3157 | u32 error_code) |
| 3158 | { |
| 3159 | struct kvm_shadow_walk_iterator iterator; |
Xiao Guangrong | 92a476c | 2014-04-17 17:06:13 +0800 | [diff] [blame] | 3160 | struct kvm_mmu_page *sp; |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3161 | bool fault_handled = false; |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3162 | u64 spte = 0ull; |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3163 | uint retry_count = 0; |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3164 | |
Marcelo Tosatti | 37f6a4e | 2014-01-03 17:09:32 -0200 | [diff] [blame] | 3165 | if (!VALID_PAGE(vcpu->arch.mmu.root_hpa)) |
| 3166 | return false; |
| 3167 | |
Xiao Guangrong | e5552fd | 2013-07-30 21:01:59 +0800 | [diff] [blame] | 3168 | if (!page_fault_can_be_fast(error_code)) |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3169 | return false; |
| 3170 | |
| 3171 | walk_shadow_page_lockless_begin(vcpu); |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3172 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3173 | do { |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3174 | u64 new_spte; |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3175 | |
Junaid Shahid | d162f30 | 2016-12-21 20:29:30 -0800 | [diff] [blame] | 3176 | for_each_shadow_entry_lockless(vcpu, gva, iterator, spte) |
| 3177 | if (!is_shadow_present_pte(spte) || |
| 3178 | iterator.level < level) |
| 3179 | break; |
| 3180 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3181 | sp = page_header(__pa(iterator.sptep)); |
| 3182 | if (!is_last_spte(spte, sp->role.level)) |
| 3183 | break; |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3184 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3185 | /* |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 3186 | * Check whether the memory access that caused the fault would |
| 3187 | * still cause it if it were to be performed right now. If not, |
| 3188 | * then this is a spurious fault caused by TLB lazily flushed, |
| 3189 | * or some other CPU has already fixed the PTE after the |
| 3190 | * current CPU took the fault. |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3191 | * |
| 3192 | * Need not check the access of upper level table entries since |
| 3193 | * they are always ACC_ALL. |
| 3194 | */ |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3195 | if (is_access_allowed(error_code, spte)) { |
| 3196 | fault_handled = true; |
| 3197 | break; |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3198 | } |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3199 | |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3200 | new_spte = spte; |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 3201 | |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3202 | if (is_access_track_spte(spte)) |
| 3203 | new_spte = restore_acc_track_spte(new_spte); |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3204 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3205 | /* |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3206 | * Currently, to simplify the code, write-protection can |
| 3207 | * be removed in the fast path only if the SPTE was |
| 3208 | * write-protected for dirty-logging or access tracking. |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3209 | */ |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3210 | if ((error_code & PFERR_WRITE_MASK) && |
| 3211 | spte_can_locklessly_be_made_writable(spte)) |
| 3212 | { |
| 3213 | new_spte |= PT_WRITABLE_MASK; |
| 3214 | |
| 3215 | /* |
| 3216 | * Do not fix write-permission on the large spte. Since |
| 3217 | * we only dirty the first page into the dirty-bitmap in |
| 3218 | * fast_pf_fix_direct_spte(), other pages are missed |
| 3219 | * if its slot has dirty logging enabled. |
| 3220 | * |
| 3221 | * Instead, we let the slow page fault path create a |
| 3222 | * normal spte to fix the access. |
| 3223 | * |
| 3224 | * See the comments in kvm_arch_commit_memory_region(). |
| 3225 | */ |
| 3226 | if (sp->role.level > PT_PAGE_TABLE_LEVEL) |
| 3227 | break; |
| 3228 | } |
| 3229 | |
| 3230 | /* Verify that the fault can be handled in the fast path */ |
| 3231 | if (new_spte == spte || |
| 3232 | !is_access_allowed(error_code, new_spte)) |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3233 | break; |
Xiao Guangrong | c126d94 | 2014-04-17 17:06:14 +0800 | [diff] [blame] | 3234 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3235 | /* |
| 3236 | * Currently, fast page fault only works for direct mapping |
| 3237 | * since the gfn is not stable for indirect shadow page. See |
| 3238 | * Documentation/virtual/kvm/locking.txt to get more detail. |
| 3239 | */ |
| 3240 | fault_handled = fast_pf_fix_direct_spte(vcpu, sp, |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 3241 | iterator.sptep, spte, |
Junaid Shahid | d3e328f2 | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3242 | new_spte); |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3243 | if (fault_handled) |
| 3244 | break; |
| 3245 | |
| 3246 | if (++retry_count > 4) { |
| 3247 | printk_once(KERN_WARNING |
| 3248 | "kvm: Fast #PF retrying more than 4 times.\n"); |
| 3249 | break; |
| 3250 | } |
| 3251 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3252 | } while (true); |
| 3253 | |
Xiao Guangrong | a72faf2 | 2012-06-20 15:59:41 +0800 | [diff] [blame] | 3254 | trace_fast_page_fault(vcpu, gva, error_code, iterator.sptep, |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3255 | spte, fault_handled); |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3256 | walk_shadow_page_lockless_end(vcpu); |
| 3257 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3258 | return fault_handled; |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3259 | } |
| 3260 | |
Xiao Guangrong | 78b2c54 | 2010-12-07 10:48:06 +0800 | [diff] [blame] | 3261 | 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] | 3262 | gva_t gva, kvm_pfn_t *pfn, bool write, bool *writable); |
Wanpeng Li | 26eeb53 | 2017-08-10 16:28:02 -0700 | [diff] [blame] | 3263 | static int make_mmu_pages_available(struct kvm_vcpu *vcpu); |
Xiao Guangrong | 060c2ab | 2010-11-12 14:49:11 +0800 | [diff] [blame] | 3264 | |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3265 | static int nonpaging_map(struct kvm_vcpu *vcpu, gva_t v, u32 error_code, |
| 3266 | gfn_t gfn, bool prefault) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3267 | { |
| 3268 | int r; |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 3269 | int level; |
Takuya Yoshikawa | fd13690 | 2015-10-16 17:06:02 +0900 | [diff] [blame] | 3270 | bool force_pt_level = false; |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 3271 | kvm_pfn_t pfn; |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 3272 | unsigned long mmu_seq; |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3273 | bool map_writable, write = error_code & PFERR_WRITE_MASK; |
Marcelo Tosatti | aaee2c9 | 2007-12-20 19:18:26 -0500 | [diff] [blame] | 3274 | |
Takuya Yoshikawa | fd13690 | 2015-10-16 17:06:02 +0900 | [diff] [blame] | 3275 | level = mapping_level(vcpu, gfn, &force_pt_level); |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3276 | if (likely(!force_pt_level)) { |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3277 | /* |
| 3278 | * This path builds a PAE pagetable - so we can map |
| 3279 | * 2mb pages at maximum. Therefore check if the level |
| 3280 | * is larger than that. |
| 3281 | */ |
| 3282 | if (level > PT_DIRECTORY_LEVEL) |
| 3283 | level = PT_DIRECTORY_LEVEL; |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 3284 | |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3285 | gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1); |
Takuya Yoshikawa | fd13690 | 2015-10-16 17:06:02 +0900 | [diff] [blame] | 3286 | } |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 3287 | |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3288 | if (fast_page_fault(vcpu, v, level, error_code)) |
| 3289 | return 0; |
| 3290 | |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 3291 | mmu_seq = vcpu->kvm->mmu_notifier_seq; |
Marcelo Tosatti | 4c2155c | 2008-09-16 20:54:47 -0300 | [diff] [blame] | 3292 | smp_rmb(); |
Xiao Guangrong | 060c2ab | 2010-11-12 14:49:11 +0800 | [diff] [blame] | 3293 | |
Xiao Guangrong | 78b2c54 | 2010-12-07 10:48:06 +0800 | [diff] [blame] | 3294 | if (try_async_pf(vcpu, prefault, gfn, v, &pfn, write, &map_writable)) |
Xiao Guangrong | 060c2ab | 2010-11-12 14:49:11 +0800 | [diff] [blame] | 3295 | return 0; |
Marcelo Tosatti | aaee2c9 | 2007-12-20 19:18:26 -0500 | [diff] [blame] | 3296 | |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3297 | if (handle_abnormal_pfn(vcpu, v, gfn, pfn, ACC_ALL, &r)) |
| 3298 | return r; |
Avi Kivity | d196e34 | 2008-01-24 11:44:11 +0200 | [diff] [blame] | 3299 | |
Marcelo Tosatti | aaee2c9 | 2007-12-20 19:18:26 -0500 | [diff] [blame] | 3300 | spin_lock(&vcpu->kvm->mmu_lock); |
Christoffer Dall | 8ca40a7 | 2012-10-14 23:10:18 -0400 | [diff] [blame] | 3301 | if (mmu_notifier_retry(vcpu->kvm, mmu_seq)) |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 3302 | goto out_unlock; |
Wanpeng Li | 26eeb53 | 2017-08-10 16:28:02 -0700 | [diff] [blame] | 3303 | if (make_mmu_pages_available(vcpu) < 0) |
| 3304 | goto out_unlock; |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3305 | if (likely(!force_pt_level)) |
| 3306 | transparent_hugepage_adjust(vcpu, &gfn, &pfn, &level); |
Takuya Yoshikawa | 7ee0e5b | 2015-11-20 17:42:23 +0900 | [diff] [blame] | 3307 | r = __direct_map(vcpu, write, map_writable, level, gfn, pfn, prefault); |
Marcelo Tosatti | aaee2c9 | 2007-12-20 19:18:26 -0500 | [diff] [blame] | 3308 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 3309 | |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3310 | return r; |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 3311 | |
| 3312 | out_unlock: |
| 3313 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 3314 | kvm_release_pfn_clean(pfn); |
| 3315 | return 0; |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3316 | } |
| 3317 | |
| 3318 | |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3319 | static void mmu_free_roots(struct kvm_vcpu *vcpu) |
| 3320 | { |
| 3321 | int i; |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 3322 | struct kvm_mmu_page *sp; |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 3323 | LIST_HEAD(invalid_list); |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3324 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3325 | if (!VALID_PAGE(vcpu->arch.mmu.root_hpa)) |
Avi Kivity | 7b53aa5 | 2007-06-05 12:17:03 +0300 | [diff] [blame] | 3326 | return; |
Gleb Natapov | 35af577 | 2013-05-16 11:55:51 +0300 | [diff] [blame] | 3327 | |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 3328 | if (vcpu->arch.mmu.shadow_root_level >= PT64_ROOT_4LEVEL && |
| 3329 | (vcpu->arch.mmu.root_level >= PT64_ROOT_4LEVEL || |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3330 | vcpu->arch.mmu.direct_map)) { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3331 | hpa_t root = vcpu->arch.mmu.root_hpa; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3332 | |
Gleb Natapov | 35af577 | 2013-05-16 11:55:51 +0300 | [diff] [blame] | 3333 | spin_lock(&vcpu->kvm->mmu_lock); |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 3334 | sp = page_header(root); |
| 3335 | --sp->root_count; |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 3336 | if (!sp->root_count && sp->role.invalid) { |
| 3337 | kvm_mmu_prepare_zap_page(vcpu->kvm, sp, &invalid_list); |
| 3338 | kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list); |
| 3339 | } |
Marcelo Tosatti | aaee2c9 | 2007-12-20 19:18:26 -0500 | [diff] [blame] | 3340 | spin_unlock(&vcpu->kvm->mmu_lock); |
Gleb Natapov | 35af577 | 2013-05-16 11:55:51 +0300 | [diff] [blame] | 3341 | vcpu->arch.mmu.root_hpa = INVALID_PAGE; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3342 | return; |
| 3343 | } |
Gleb Natapov | 35af577 | 2013-05-16 11:55:51 +0300 | [diff] [blame] | 3344 | |
| 3345 | spin_lock(&vcpu->kvm->mmu_lock); |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3346 | for (i = 0; i < 4; ++i) { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3347 | hpa_t root = vcpu->arch.mmu.pae_root[i]; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3348 | |
Avi Kivity | 417726a | 2007-04-12 17:35:58 +0300 | [diff] [blame] | 3349 | if (root) { |
Avi Kivity | 417726a | 2007-04-12 17:35:58 +0300 | [diff] [blame] | 3350 | root &= PT64_BASE_ADDR_MASK; |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 3351 | sp = page_header(root); |
| 3352 | --sp->root_count; |
Marcelo Tosatti | 2e53d63 | 2008-02-20 14:47:24 -0500 | [diff] [blame] | 3353 | if (!sp->root_count && sp->role.invalid) |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 3354 | kvm_mmu_prepare_zap_page(vcpu->kvm, sp, |
| 3355 | &invalid_list); |
Avi Kivity | 417726a | 2007-04-12 17:35:58 +0300 | [diff] [blame] | 3356 | } |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3357 | vcpu->arch.mmu.pae_root[i] = INVALID_PAGE; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3358 | } |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 3359 | kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list); |
Marcelo Tosatti | aaee2c9 | 2007-12-20 19:18:26 -0500 | [diff] [blame] | 3360 | spin_unlock(&vcpu->kvm->mmu_lock); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3361 | vcpu->arch.mmu.root_hpa = INVALID_PAGE; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3362 | } |
| 3363 | |
Marcelo Tosatti | 8986ecc | 2009-05-12 18:55:45 -0300 | [diff] [blame] | 3364 | static int mmu_check_root(struct kvm_vcpu *vcpu, gfn_t root_gfn) |
| 3365 | { |
| 3366 | int ret = 0; |
| 3367 | |
| 3368 | if (!kvm_is_visible_gfn(vcpu->kvm, root_gfn)) { |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 3369 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Marcelo Tosatti | 8986ecc | 2009-05-12 18:55:45 -0300 | [diff] [blame] | 3370 | ret = 1; |
| 3371 | } |
| 3372 | |
| 3373 | return ret; |
| 3374 | } |
| 3375 | |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3376 | static int mmu_alloc_direct_roots(struct kvm_vcpu *vcpu) |
| 3377 | { |
| 3378 | struct kvm_mmu_page *sp; |
Avi Kivity | 7ebaf15 | 2010-10-03 18:51:39 +0200 | [diff] [blame] | 3379 | unsigned i; |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3380 | |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 3381 | if (vcpu->arch.mmu.shadow_root_level >= PT64_ROOT_4LEVEL) { |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3382 | spin_lock(&vcpu->kvm->mmu_lock); |
Wanpeng Li | 26eeb53 | 2017-08-10 16:28:02 -0700 | [diff] [blame] | 3383 | if(make_mmu_pages_available(vcpu) < 0) { |
| 3384 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 3385 | return 1; |
| 3386 | } |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 3387 | sp = kvm_mmu_get_page(vcpu, 0, 0, |
| 3388 | vcpu->arch.mmu.shadow_root_level, 1, ACC_ALL); |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3389 | ++sp->root_count; |
| 3390 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 3391 | vcpu->arch.mmu.root_hpa = __pa(sp->spt); |
| 3392 | } else if (vcpu->arch.mmu.shadow_root_level == PT32E_ROOT_LEVEL) { |
| 3393 | for (i = 0; i < 4; ++i) { |
| 3394 | hpa_t root = vcpu->arch.mmu.pae_root[i]; |
| 3395 | |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 3396 | MMU_WARN_ON(VALID_PAGE(root)); |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3397 | spin_lock(&vcpu->kvm->mmu_lock); |
Wanpeng Li | 26eeb53 | 2017-08-10 16:28:02 -0700 | [diff] [blame] | 3398 | if (make_mmu_pages_available(vcpu) < 0) { |
| 3399 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 3400 | return 1; |
| 3401 | } |
Avi Kivity | 649497d | 2010-12-28 12:09:07 +0200 | [diff] [blame] | 3402 | sp = kvm_mmu_get_page(vcpu, i << (30 - PAGE_SHIFT), |
Takuya Yoshikawa | bb11c6c | 2015-11-26 21:16:35 +0900 | [diff] [blame] | 3403 | i << 30, PT32_ROOT_LEVEL, 1, ACC_ALL); |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3404 | root = __pa(sp->spt); |
| 3405 | ++sp->root_count; |
| 3406 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 3407 | vcpu->arch.mmu.pae_root[i] = root | PT_PRESENT_MASK; |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3408 | } |
Xiao Guangrong | 6292757 | 2010-09-27 18:02:12 +0800 | [diff] [blame] | 3409 | vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root); |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3410 | } else |
| 3411 | BUG(); |
| 3412 | |
| 3413 | return 0; |
| 3414 | } |
| 3415 | |
| 3416 | static int mmu_alloc_shadow_roots(struct kvm_vcpu *vcpu) |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3417 | { |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 3418 | struct kvm_mmu_page *sp; |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3419 | u64 pdptr, pm_mask; |
| 3420 | gfn_t root_gfn; |
| 3421 | int i; |
Avi Kivity | 3bb65a2 | 2007-01-05 16:36:51 -0800 | [diff] [blame] | 3422 | |
Joerg Roedel | 5777ed3 | 2010-09-10 17:30:42 +0200 | [diff] [blame] | 3423 | root_gfn = vcpu->arch.mmu.get_cr3(vcpu) >> PAGE_SHIFT; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3424 | |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3425 | if (mmu_check_root(vcpu, root_gfn)) |
| 3426 | return 1; |
| 3427 | |
| 3428 | /* |
| 3429 | * Do we shadow a long mode page table? If so we need to |
| 3430 | * write-protect the guests page table root. |
| 3431 | */ |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 3432 | if (vcpu->arch.mmu.root_level >= PT64_ROOT_4LEVEL) { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3433 | hpa_t root = vcpu->arch.mmu.root_hpa; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3434 | |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 3435 | MMU_WARN_ON(VALID_PAGE(root)); |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3436 | |
Avi Kivity | 8facbbf | 2010-05-04 12:58:32 +0300 | [diff] [blame] | 3437 | spin_lock(&vcpu->kvm->mmu_lock); |
Wanpeng Li | 26eeb53 | 2017-08-10 16:28:02 -0700 | [diff] [blame] | 3438 | if (make_mmu_pages_available(vcpu) < 0) { |
| 3439 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 3440 | return 1; |
| 3441 | } |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 3442 | sp = kvm_mmu_get_page(vcpu, root_gfn, 0, |
| 3443 | vcpu->arch.mmu.shadow_root_level, 0, ACC_ALL); |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 3444 | root = __pa(sp->spt); |
| 3445 | ++sp->root_count; |
Avi Kivity | 8facbbf | 2010-05-04 12:58:32 +0300 | [diff] [blame] | 3446 | spin_unlock(&vcpu->kvm->mmu_lock); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3447 | vcpu->arch.mmu.root_hpa = root; |
Marcelo Tosatti | 8986ecc | 2009-05-12 18:55:45 -0300 | [diff] [blame] | 3448 | return 0; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3449 | } |
Joerg Roedel | f87f928 | 2010-09-02 17:29:45 +0200 | [diff] [blame] | 3450 | |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3451 | /* |
| 3452 | * 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] | 3453 | * or a PAE 3-level page table. In either case we need to be aware that |
| 3454 | * 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] | 3455 | */ |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3456 | pm_mask = PT_PRESENT_MASK; |
Yu Zhang | 2a7266a | 2017-08-24 20:27:54 +0800 | [diff] [blame] | 3457 | if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_4LEVEL) |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3458 | pm_mask |= PT_ACCESSED_MASK | PT_WRITABLE_MASK | PT_USER_MASK; |
| 3459 | |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3460 | for (i = 0; i < 4; ++i) { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3461 | hpa_t root = vcpu->arch.mmu.pae_root[i]; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3462 | |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 3463 | MMU_WARN_ON(VALID_PAGE(root)); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3464 | if (vcpu->arch.mmu.root_level == PT32E_ROOT_LEVEL) { |
Avi Kivity | e4e517b | 2011-07-28 11:36:17 +0300 | [diff] [blame] | 3465 | pdptr = vcpu->arch.mmu.get_pdptr(vcpu, i); |
Bandan Das | 812f30b | 2016-07-12 18:18:50 -0400 | [diff] [blame] | 3466 | if (!(pdptr & PT_PRESENT_MASK)) { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3467 | vcpu->arch.mmu.pae_root[i] = 0; |
Avi Kivity | 417726a | 2007-04-12 17:35:58 +0300 | [diff] [blame] | 3468 | continue; |
| 3469 | } |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 3470 | root_gfn = pdptr >> PAGE_SHIFT; |
Joerg Roedel | f87f928 | 2010-09-02 17:29:45 +0200 | [diff] [blame] | 3471 | if (mmu_check_root(vcpu, root_gfn)) |
| 3472 | return 1; |
Eric Northup | 5a7388c | 2010-04-26 17:00:05 -0700 | [diff] [blame] | 3473 | } |
Avi Kivity | 8facbbf | 2010-05-04 12:58:32 +0300 | [diff] [blame] | 3474 | spin_lock(&vcpu->kvm->mmu_lock); |
Wanpeng Li | 26eeb53 | 2017-08-10 16:28:02 -0700 | [diff] [blame] | 3475 | if (make_mmu_pages_available(vcpu) < 0) { |
| 3476 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 3477 | return 1; |
| 3478 | } |
Takuya Yoshikawa | bb11c6c | 2015-11-26 21:16:35 +0900 | [diff] [blame] | 3479 | sp = kvm_mmu_get_page(vcpu, root_gfn, i << 30, PT32_ROOT_LEVEL, |
| 3480 | 0, ACC_ALL); |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 3481 | root = __pa(sp->spt); |
| 3482 | ++sp->root_count; |
Avi Kivity | 8facbbf | 2010-05-04 12:58:32 +0300 | [diff] [blame] | 3483 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 3484 | |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3485 | vcpu->arch.mmu.pae_root[i] = root | pm_mask; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3486 | } |
Xiao Guangrong | 6292757 | 2010-09-27 18:02:12 +0800 | [diff] [blame] | 3487 | vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root); |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3488 | |
| 3489 | /* |
| 3490 | * If we shadow a 32 bit page table with a long mode page |
| 3491 | * table we enter this path. |
| 3492 | */ |
Yu Zhang | 2a7266a | 2017-08-24 20:27:54 +0800 | [diff] [blame] | 3493 | if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_4LEVEL) { |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3494 | if (vcpu->arch.mmu.lm_root == NULL) { |
| 3495 | /* |
| 3496 | * The additional page necessary for this is only |
| 3497 | * allocated on demand. |
| 3498 | */ |
| 3499 | |
| 3500 | u64 *lm_root; |
| 3501 | |
| 3502 | lm_root = (void*)get_zeroed_page(GFP_KERNEL); |
| 3503 | if (lm_root == NULL) |
| 3504 | return 1; |
| 3505 | |
| 3506 | lm_root[0] = __pa(vcpu->arch.mmu.pae_root) | pm_mask; |
| 3507 | |
| 3508 | vcpu->arch.mmu.lm_root = lm_root; |
| 3509 | } |
| 3510 | |
| 3511 | vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.lm_root); |
| 3512 | } |
| 3513 | |
Marcelo Tosatti | 8986ecc | 2009-05-12 18:55:45 -0300 | [diff] [blame] | 3514 | return 0; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3515 | } |
| 3516 | |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3517 | static int mmu_alloc_roots(struct kvm_vcpu *vcpu) |
| 3518 | { |
| 3519 | if (vcpu->arch.mmu.direct_map) |
| 3520 | return mmu_alloc_direct_roots(vcpu); |
| 3521 | else |
| 3522 | return mmu_alloc_shadow_roots(vcpu); |
| 3523 | } |
| 3524 | |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3525 | static void mmu_sync_roots(struct kvm_vcpu *vcpu) |
| 3526 | { |
| 3527 | int i; |
| 3528 | struct kvm_mmu_page *sp; |
| 3529 | |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3530 | if (vcpu->arch.mmu.direct_map) |
| 3531 | return; |
| 3532 | |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3533 | if (!VALID_PAGE(vcpu->arch.mmu.root_hpa)) |
| 3534 | return; |
Xiao Guangrong | 6903074 | 2010-09-27 18:09:29 +0800 | [diff] [blame] | 3535 | |
David Matlack | 56f17dd | 2014-08-18 15:46:07 -0700 | [diff] [blame] | 3536 | vcpu_clear_mmio_info(vcpu, MMIO_GVA_ANY); |
Xiao Guangrong | 0375f7f | 2011-11-28 20:41:00 +0800 | [diff] [blame] | 3537 | kvm_mmu_audit(vcpu, AUDIT_PRE_SYNC); |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 3538 | if (vcpu->arch.mmu.root_level >= PT64_ROOT_4LEVEL) { |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3539 | hpa_t root = vcpu->arch.mmu.root_hpa; |
| 3540 | sp = page_header(root); |
| 3541 | mmu_sync_children(vcpu, sp); |
Xiao Guangrong | 0375f7f | 2011-11-28 20:41:00 +0800 | [diff] [blame] | 3542 | kvm_mmu_audit(vcpu, AUDIT_POST_SYNC); |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3543 | return; |
| 3544 | } |
| 3545 | for (i = 0; i < 4; ++i) { |
| 3546 | hpa_t root = vcpu->arch.mmu.pae_root[i]; |
| 3547 | |
Marcelo Tosatti | 8986ecc | 2009-05-12 18:55:45 -0300 | [diff] [blame] | 3548 | if (root && VALID_PAGE(root)) { |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3549 | root &= PT64_BASE_ADDR_MASK; |
| 3550 | sp = page_header(root); |
| 3551 | mmu_sync_children(vcpu, sp); |
| 3552 | } |
| 3553 | } |
Xiao Guangrong | 0375f7f | 2011-11-28 20:41:00 +0800 | [diff] [blame] | 3554 | kvm_mmu_audit(vcpu, AUDIT_POST_SYNC); |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3555 | } |
| 3556 | |
| 3557 | void kvm_mmu_sync_roots(struct kvm_vcpu *vcpu) |
| 3558 | { |
| 3559 | spin_lock(&vcpu->kvm->mmu_lock); |
| 3560 | mmu_sync_roots(vcpu); |
| 3561 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 3562 | } |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 3563 | EXPORT_SYMBOL_GPL(kvm_mmu_sync_roots); |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3564 | |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 3565 | 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] | 3566 | u32 access, struct x86_exception *exception) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3567 | { |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 3568 | if (exception) |
| 3569 | exception->error_code = 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3570 | return vaddr; |
| 3571 | } |
| 3572 | |
Joerg Roedel | 6539e73 | 2010-09-10 17:30:50 +0200 | [diff] [blame] | 3573 | 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] | 3574 | u32 access, |
| 3575 | struct x86_exception *exception) |
Joerg Roedel | 6539e73 | 2010-09-10 17:30:50 +0200 | [diff] [blame] | 3576 | { |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 3577 | if (exception) |
| 3578 | exception->error_code = 0; |
Paolo Bonzini | 54987b7 | 2014-09-02 13:23:06 +0200 | [diff] [blame] | 3579 | return vcpu->arch.nested_mmu.translate_gpa(vcpu, vaddr, access, exception); |
Joerg Roedel | 6539e73 | 2010-09-10 17:30:50 +0200 | [diff] [blame] | 3580 | } |
| 3581 | |
Xiao Guangrong | d625b15 | 2015-08-05 12:04:25 +0800 | [diff] [blame] | 3582 | static bool |
| 3583 | __is_rsvd_bits_set(struct rsvd_bits_validate *rsvd_check, u64 pte, int level) |
| 3584 | { |
| 3585 | int bit7 = (pte >> 7) & 1, low6 = pte & 0x3f; |
| 3586 | |
| 3587 | return (pte & rsvd_check->rsvd_bits_mask[bit7][level-1]) | |
| 3588 | ((rsvd_check->bad_mt_xwr & (1ull << low6)) != 0); |
| 3589 | } |
| 3590 | |
| 3591 | static bool is_rsvd_bits_set(struct kvm_mmu *mmu, u64 gpte, int level) |
| 3592 | { |
| 3593 | return __is_rsvd_bits_set(&mmu->guest_rsvd_check, gpte, level); |
| 3594 | } |
| 3595 | |
| 3596 | static bool is_shadow_zero_bits_set(struct kvm_mmu *mmu, u64 spte, int level) |
| 3597 | { |
| 3598 | return __is_rsvd_bits_set(&mmu->shadow_zero_check, spte, level); |
| 3599 | } |
| 3600 | |
Takuya Yoshikawa | ded5874 | 2016-02-22 17:23:40 +0900 | [diff] [blame] | 3601 | 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] | 3602 | { |
Paolo Bonzini | 9034e6e | 2017-08-17 18:36:58 +0200 | [diff] [blame] | 3603 | /* |
| 3604 | * A nested guest cannot use the MMIO cache if it is using nested |
| 3605 | * page tables, because cr2 is a nGPA while the cache stores GPAs. |
| 3606 | */ |
| 3607 | if (mmu_is_nested(vcpu)) |
| 3608 | return false; |
| 3609 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3610 | if (direct) |
| 3611 | return vcpu_match_mmio_gpa(vcpu, addr); |
| 3612 | |
| 3613 | return vcpu_match_mmio_gva(vcpu, addr); |
| 3614 | } |
| 3615 | |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3616 | /* return true if reserved bit is detected on spte. */ |
| 3617 | static bool |
| 3618 | 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] | 3619 | { |
| 3620 | struct kvm_shadow_walk_iterator iterator; |
Yu Zhang | 2a7266a | 2017-08-24 20:27:54 +0800 | [diff] [blame] | 3621 | u64 sptes[PT64_ROOT_MAX_LEVEL], spte = 0ull; |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3622 | int root, leaf; |
| 3623 | bool reserved = false; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3624 | |
Marcelo Tosatti | 37f6a4e | 2014-01-03 17:09:32 -0200 | [diff] [blame] | 3625 | if (!VALID_PAGE(vcpu->arch.mmu.root_hpa)) |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3626 | goto exit; |
Marcelo Tosatti | 37f6a4e | 2014-01-03 17:09:32 -0200 | [diff] [blame] | 3627 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3628 | walk_shadow_page_lockless_begin(vcpu); |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3629 | |
Paolo Bonzini | 29ecd66 | 2015-09-06 16:24:50 +0200 | [diff] [blame] | 3630 | for (shadow_walk_init(&iterator, vcpu, addr), |
| 3631 | leaf = root = iterator.level; |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3632 | shadow_walk_okay(&iterator); |
| 3633 | __shadow_walk_next(&iterator, spte)) { |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3634 | spte = mmu_spte_get_lockless(iterator.sptep); |
| 3635 | |
| 3636 | sptes[leaf - 1] = spte; |
Paolo Bonzini | 29ecd66 | 2015-09-06 16:24:50 +0200 | [diff] [blame] | 3637 | leaf--; |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3638 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3639 | if (!is_shadow_present_pte(spte)) |
| 3640 | break; |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3641 | |
| 3642 | reserved |= is_shadow_zero_bits_set(&vcpu->arch.mmu, spte, |
Paolo Bonzini | 58c9507 | 2015-09-22 10:15:59 +0200 | [diff] [blame] | 3643 | iterator.level); |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3644 | } |
| 3645 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3646 | walk_shadow_page_lockless_end(vcpu); |
| 3647 | |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3648 | if (reserved) { |
| 3649 | pr_err("%s: detect reserved bits on spte, addr 0x%llx, dump hierarchy:\n", |
| 3650 | __func__, addr); |
Paolo Bonzini | 29ecd66 | 2015-09-06 16:24:50 +0200 | [diff] [blame] | 3651 | while (root > leaf) { |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3652 | pr_err("------ spte 0x%llx level %d.\n", |
| 3653 | sptes[root - 1], root); |
| 3654 | root--; |
| 3655 | } |
| 3656 | } |
| 3657 | exit: |
| 3658 | *sptep = spte; |
| 3659 | return reserved; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3660 | } |
| 3661 | |
Paolo Bonzini | e08d26f | 2017-08-17 18:36:56 +0200 | [diff] [blame] | 3662 | /* |
| 3663 | * Return values of handle_mmio_page_fault: |
| 3664 | * RET_MMIO_PF_EMULATE: it is a real mmio page fault, emulate the instruction |
| 3665 | * directly. |
| 3666 | * RET_MMIO_PF_INVALID: invalid spte is detected then let the real page |
| 3667 | * fault path update the mmio spte. |
| 3668 | * RET_MMIO_PF_RETRY: let CPU fault again on the address. |
| 3669 | * RET_MMIO_PF_BUG: a bug was detected (and a WARN was printed). |
| 3670 | */ |
| 3671 | enum { |
| 3672 | RET_MMIO_PF_EMULATE = 1, |
| 3673 | RET_MMIO_PF_INVALID = 2, |
| 3674 | RET_MMIO_PF_RETRY = 0, |
| 3675 | RET_MMIO_PF_BUG = -1 |
| 3676 | }; |
| 3677 | |
| 3678 | 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] | 3679 | { |
| 3680 | u64 spte; |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3681 | bool reserved; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3682 | |
Takuya Yoshikawa | ded5874 | 2016-02-22 17:23:40 +0900 | [diff] [blame] | 3683 | if (mmio_info_in_cache(vcpu, addr, direct)) |
Xiao Guangrong | b37fbea | 2013-06-07 16:51:25 +0800 | [diff] [blame] | 3684 | return RET_MMIO_PF_EMULATE; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3685 | |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3686 | reserved = walk_shadow_page_get_mmio_spte(vcpu, addr, &spte); |
Paolo Bonzini | 450869d | 2015-11-04 13:41:21 +0100 | [diff] [blame] | 3687 | if (WARN_ON(reserved)) |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3688 | return RET_MMIO_PF_BUG; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3689 | |
| 3690 | if (is_mmio_spte(spte)) { |
| 3691 | gfn_t gfn = get_mmio_spte_gfn(spte); |
| 3692 | unsigned access = get_mmio_spte_access(spte); |
| 3693 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 3694 | if (!check_mmio_spte(vcpu, spte)) |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 3695 | return RET_MMIO_PF_INVALID; |
| 3696 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3697 | if (direct) |
| 3698 | addr = 0; |
Xiao Guangrong | 4f02264 | 2011-07-12 03:34:24 +0800 | [diff] [blame] | 3699 | |
| 3700 | trace_handle_mmio_page_fault(addr, gfn, access); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3701 | vcpu_cache_mmio_info(vcpu, addr, gfn, access); |
Xiao Guangrong | b37fbea | 2013-06-07 16:51:25 +0800 | [diff] [blame] | 3702 | return RET_MMIO_PF_EMULATE; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3703 | } |
| 3704 | |
| 3705 | /* |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3706 | * If the page table is zapped by other cpus, let CPU fault again on |
| 3707 | * the address. |
| 3708 | */ |
Xiao Guangrong | b37fbea | 2013-06-07 16:51:25 +0800 | [diff] [blame] | 3709 | return RET_MMIO_PF_RETRY; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3710 | } |
Paolo Bonzini | 450869d | 2015-11-04 13:41:21 +0100 | [diff] [blame] | 3711 | EXPORT_SYMBOL_GPL(handle_mmio_page_fault); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3712 | |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 3713 | static bool page_fault_handle_page_track(struct kvm_vcpu *vcpu, |
| 3714 | u32 error_code, gfn_t gfn) |
| 3715 | { |
| 3716 | if (unlikely(error_code & PFERR_RSVD_MASK)) |
| 3717 | return false; |
| 3718 | |
| 3719 | if (!(error_code & PFERR_PRESENT_MASK) || |
| 3720 | !(error_code & PFERR_WRITE_MASK)) |
| 3721 | return false; |
| 3722 | |
| 3723 | /* |
| 3724 | * guest is writing the page which is write tracked which can |
| 3725 | * not be fixed by page fault handler. |
| 3726 | */ |
| 3727 | if (kvm_page_track_is_active(vcpu, gfn, KVM_PAGE_TRACK_WRITE)) |
| 3728 | return true; |
| 3729 | |
| 3730 | return false; |
| 3731 | } |
| 3732 | |
Xiao Guangrong | e5691a8 | 2016-02-24 17:51:12 +0800 | [diff] [blame] | 3733 | static void shadow_page_table_clear_flood(struct kvm_vcpu *vcpu, gva_t addr) |
| 3734 | { |
| 3735 | struct kvm_shadow_walk_iterator iterator; |
| 3736 | u64 spte; |
| 3737 | |
| 3738 | if (!VALID_PAGE(vcpu->arch.mmu.root_hpa)) |
| 3739 | return; |
| 3740 | |
| 3741 | walk_shadow_page_lockless_begin(vcpu); |
| 3742 | for_each_shadow_entry_lockless(vcpu, addr, iterator, spte) { |
| 3743 | clear_sp_write_flooding_count(iterator.sptep); |
| 3744 | if (!is_shadow_present_pte(spte)) |
| 3745 | break; |
| 3746 | } |
| 3747 | walk_shadow_page_lockless_end(vcpu); |
| 3748 | } |
| 3749 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3750 | static int nonpaging_page_fault(struct kvm_vcpu *vcpu, gva_t gva, |
Xiao Guangrong | 78b2c54 | 2010-12-07 10:48:06 +0800 | [diff] [blame] | 3751 | u32 error_code, bool prefault) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3752 | { |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 3753 | gfn_t gfn = gva >> PAGE_SHIFT; |
Avi Kivity | e2dec93 | 2007-01-05 16:36:54 -0800 | [diff] [blame] | 3754 | int r; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3755 | |
Harvey Harrison | b8688d5 | 2008-03-03 12:59:56 -0800 | [diff] [blame] | 3756 | pgprintk("%s: gva %lx error %x\n", __func__, gva, error_code); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3757 | |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 3758 | if (page_fault_handle_page_track(vcpu, error_code, gfn)) |
| 3759 | return 1; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3760 | |
Avi Kivity | e2dec93 | 2007-01-05 16:36:54 -0800 | [diff] [blame] | 3761 | r = mmu_topup_memory_caches(vcpu); |
| 3762 | if (r) |
| 3763 | return r; |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 3764 | |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 3765 | MMU_WARN_ON(!VALID_PAGE(vcpu->arch.mmu.root_hpa)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3766 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3767 | |
Avi Kivity | e833240 | 2007-12-09 18:43:00 +0200 | [diff] [blame] | 3768 | return nonpaging_map(vcpu, gva & PAGE_MASK, |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3769 | error_code, gfn, prefault); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3770 | } |
| 3771 | |
Jan Kiszka | 7e1fbea | 2010-10-20 15:18:02 +0200 | [diff] [blame] | 3772 | 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] | 3773 | { |
| 3774 | struct kvm_arch_async_pf arch; |
Xiao Guangrong | fb67e14 | 2010-12-07 10:35:25 +0800 | [diff] [blame] | 3775 | |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 3776 | arch.token = (vcpu->arch.apf.id++ << 12) | vcpu->vcpu_id; |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 3777 | arch.gfn = gfn; |
Xiao Guangrong | c4806ac | 2010-11-12 14:49:55 +0800 | [diff] [blame] | 3778 | arch.direct_map = vcpu->arch.mmu.direct_map; |
Xiao Guangrong | fb67e14 | 2010-12-07 10:35:25 +0800 | [diff] [blame] | 3779 | arch.cr3 = vcpu->arch.mmu.get_cr3(vcpu); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 3780 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 3781 | 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] | 3782 | } |
| 3783 | |
Wanpeng Li | 9bc1f09 | 2017-06-08 20:13:40 -0700 | [diff] [blame] | 3784 | bool kvm_can_do_async_pf(struct kvm_vcpu *vcpu) |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 3785 | { |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 3786 | if (unlikely(!lapic_in_kernel(vcpu) || |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 3787 | kvm_event_needs_reinjection(vcpu))) |
| 3788 | return false; |
| 3789 | |
Wanpeng Li | 52a5c15 | 2017-07-13 18:30:42 -0700 | [diff] [blame] | 3790 | if (!vcpu->arch.apf.delivery_as_pf_vmexit && is_guest_mode(vcpu)) |
Wanpeng Li | 9bc1f09 | 2017-06-08 20:13:40 -0700 | [diff] [blame] | 3791 | return false; |
| 3792 | |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 3793 | return kvm_x86_ops->interrupt_allowed(vcpu); |
| 3794 | } |
| 3795 | |
Xiao Guangrong | 78b2c54 | 2010-12-07 10:48:06 +0800 | [diff] [blame] | 3796 | 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] | 3797 | gva_t gva, kvm_pfn_t *pfn, bool write, bool *writable) |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 3798 | { |
Paolo Bonzini | 3520469 | 2015-04-02 11:20:48 +0200 | [diff] [blame] | 3799 | struct kvm_memory_slot *slot; |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 3800 | bool async; |
| 3801 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 3802 | slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn); |
Paolo Bonzini | 3520469 | 2015-04-02 11:20:48 +0200 | [diff] [blame] | 3803 | async = false; |
| 3804 | *pfn = __gfn_to_pfn_memslot(slot, gfn, false, &async, write, writable); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 3805 | if (!async) |
| 3806 | return false; /* *pfn has correct page already */ |
| 3807 | |
Wanpeng Li | 9bc1f09 | 2017-06-08 20:13:40 -0700 | [diff] [blame] | 3808 | if (!prefault && kvm_can_do_async_pf(vcpu)) { |
Xiao Guangrong | c9b263d | 2010-11-01 16:58:43 +0800 | [diff] [blame] | 3809 | trace_kvm_try_async_get_page(gva, gfn); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 3810 | if (kvm_find_async_pf_gfn(vcpu, gfn)) { |
| 3811 | trace_kvm_async_pf_doublefault(gva, gfn); |
| 3812 | kvm_make_request(KVM_REQ_APF_HALT, vcpu); |
| 3813 | return true; |
| 3814 | } else if (kvm_arch_setup_async_pf(vcpu, gva, gfn)) |
| 3815 | return true; |
| 3816 | } |
| 3817 | |
Paolo Bonzini | 3520469 | 2015-04-02 11:20:48 +0200 | [diff] [blame] | 3818 | *pfn = __gfn_to_pfn_memslot(slot, gfn, false, NULL, write, writable); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 3819 | return false; |
| 3820 | } |
| 3821 | |
Wanpeng Li | 1261bfa | 2017-07-13 18:30:40 -0700 | [diff] [blame] | 3822 | int kvm_handle_page_fault(struct kvm_vcpu *vcpu, u64 error_code, |
| 3823 | u64 fault_address, char *insn, int insn_len, |
| 3824 | bool need_unprotect) |
| 3825 | { |
| 3826 | int r = 1; |
| 3827 | |
| 3828 | switch (vcpu->arch.apf.host_apf_reason) { |
| 3829 | default: |
| 3830 | trace_kvm_page_fault(fault_address, error_code); |
| 3831 | |
| 3832 | if (need_unprotect && kvm_event_needs_reinjection(vcpu)) |
| 3833 | kvm_mmu_unprotect_page_virt(vcpu, fault_address); |
| 3834 | r = kvm_mmu_page_fault(vcpu, fault_address, error_code, insn, |
| 3835 | insn_len); |
| 3836 | break; |
| 3837 | case KVM_PV_REASON_PAGE_NOT_PRESENT: |
| 3838 | vcpu->arch.apf.host_apf_reason = 0; |
| 3839 | local_irq_disable(); |
Boqun Feng | a2b7861 | 2017-10-03 21:36:51 +0800 | [diff] [blame] | 3840 | kvm_async_pf_task_wait(fault_address, 0); |
Wanpeng Li | 1261bfa | 2017-07-13 18:30:40 -0700 | [diff] [blame] | 3841 | local_irq_enable(); |
| 3842 | break; |
| 3843 | case KVM_PV_REASON_PAGE_READY: |
| 3844 | vcpu->arch.apf.host_apf_reason = 0; |
| 3845 | local_irq_disable(); |
| 3846 | kvm_async_pf_task_wake(fault_address); |
| 3847 | local_irq_enable(); |
| 3848 | break; |
| 3849 | } |
| 3850 | return r; |
| 3851 | } |
| 3852 | EXPORT_SYMBOL_GPL(kvm_handle_page_fault); |
| 3853 | |
Xiao Guangrong | 6a39bbc | 2015-06-15 16:55:35 +0800 | [diff] [blame] | 3854 | static bool |
| 3855 | check_hugepage_cache_consistency(struct kvm_vcpu *vcpu, gfn_t gfn, int level) |
| 3856 | { |
| 3857 | int page_num = KVM_PAGES_PER_HPAGE(level); |
| 3858 | |
| 3859 | gfn &= ~(page_num - 1); |
| 3860 | |
| 3861 | return kvm_mtrr_check_gfn_range_consistency(vcpu, gfn, page_num); |
| 3862 | } |
| 3863 | |
Gleb Natapov | 56028d0 | 2010-10-17 18:13:42 +0200 | [diff] [blame] | 3864 | 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] | 3865 | bool prefault) |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 3866 | { |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 3867 | kvm_pfn_t pfn; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 3868 | int r; |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 3869 | int level; |
Takuya Yoshikawa | cd1872f | 2015-10-16 17:04:13 +0900 | [diff] [blame] | 3870 | bool force_pt_level; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 3871 | gfn_t gfn = gpa >> PAGE_SHIFT; |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 3872 | unsigned long mmu_seq; |
Marcelo Tosatti | 612819c | 2010-10-22 14:18:18 -0200 | [diff] [blame] | 3873 | int write = error_code & PFERR_WRITE_MASK; |
| 3874 | bool map_writable; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 3875 | |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 3876 | MMU_WARN_ON(!VALID_PAGE(vcpu->arch.mmu.root_hpa)); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 3877 | |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 3878 | if (page_fault_handle_page_track(vcpu, error_code, gfn)) |
| 3879 | return 1; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3880 | |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 3881 | r = mmu_topup_memory_caches(vcpu); |
| 3882 | if (r) |
| 3883 | return r; |
| 3884 | |
Takuya Yoshikawa | fd13690 | 2015-10-16 17:06:02 +0900 | [diff] [blame] | 3885 | force_pt_level = !check_hugepage_cache_consistency(vcpu, gfn, |
| 3886 | PT_DIRECTORY_LEVEL); |
| 3887 | level = mapping_level(vcpu, gfn, &force_pt_level); |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3888 | if (likely(!force_pt_level)) { |
Xiao Guangrong | 6a39bbc | 2015-06-15 16:55:35 +0800 | [diff] [blame] | 3889 | if (level > PT_DIRECTORY_LEVEL && |
| 3890 | !check_hugepage_cache_consistency(vcpu, gfn, level)) |
| 3891 | level = PT_DIRECTORY_LEVEL; |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3892 | gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1); |
Takuya Yoshikawa | fd13690 | 2015-10-16 17:06:02 +0900 | [diff] [blame] | 3893 | } |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 3894 | |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3895 | if (fast_page_fault(vcpu, gpa, level, error_code)) |
| 3896 | return 0; |
| 3897 | |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 3898 | mmu_seq = vcpu->kvm->mmu_notifier_seq; |
Marcelo Tosatti | 4c2155c | 2008-09-16 20:54:47 -0300 | [diff] [blame] | 3899 | smp_rmb(); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 3900 | |
Xiao Guangrong | 78b2c54 | 2010-12-07 10:48:06 +0800 | [diff] [blame] | 3901 | if (try_async_pf(vcpu, prefault, gfn, gpa, &pfn, write, &map_writable)) |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 3902 | return 0; |
| 3903 | |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3904 | if (handle_abnormal_pfn(vcpu, 0, gfn, pfn, ACC_ALL, &r)) |
| 3905 | return r; |
| 3906 | |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 3907 | spin_lock(&vcpu->kvm->mmu_lock); |
Christoffer Dall | 8ca40a7 | 2012-10-14 23:10:18 -0400 | [diff] [blame] | 3908 | if (mmu_notifier_retry(vcpu->kvm, mmu_seq)) |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 3909 | goto out_unlock; |
Wanpeng Li | 26eeb53 | 2017-08-10 16:28:02 -0700 | [diff] [blame] | 3910 | if (make_mmu_pages_available(vcpu) < 0) |
| 3911 | goto out_unlock; |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3912 | if (likely(!force_pt_level)) |
| 3913 | transparent_hugepage_adjust(vcpu, &gfn, &pfn, &level); |
Takuya Yoshikawa | 7ee0e5b | 2015-11-20 17:42:23 +0900 | [diff] [blame] | 3914 | r = __direct_map(vcpu, write, map_writable, level, gfn, pfn, prefault); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 3915 | spin_unlock(&vcpu->kvm->mmu_lock); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 3916 | |
| 3917 | return r; |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 3918 | |
| 3919 | out_unlock: |
| 3920 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 3921 | kvm_release_pfn_clean(pfn); |
| 3922 | return 0; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 3923 | } |
| 3924 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 3925 | static void nonpaging_init_context(struct kvm_vcpu *vcpu, |
| 3926 | struct kvm_mmu *context) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3927 | { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3928 | context->page_fault = nonpaging_page_fault; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3929 | context->gva_to_gpa = nonpaging_gva_to_gpa; |
Marcelo Tosatti | e8bc217 | 2008-09-23 13:18:33 -0300 | [diff] [blame] | 3930 | context->sync_page = nonpaging_sync_page; |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 3931 | context->invlpg = nonpaging_invlpg; |
Xiao Guangrong | 0f53b5b | 2011-03-09 15:43:51 +0800 | [diff] [blame] | 3932 | context->update_pte = nonpaging_update_pte; |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 3933 | context->root_level = 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3934 | context->shadow_root_level = PT32E_ROOT_LEVEL; |
Avi Kivity | 17c3ba9 | 2007-06-04 15:58:30 +0300 | [diff] [blame] | 3935 | context->root_hpa = INVALID_PAGE; |
Joerg Roedel | c5a78f2b | 2010-09-10 17:30:39 +0200 | [diff] [blame] | 3936 | context->direct_map = true; |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 3937 | context->nx = false; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3938 | } |
| 3939 | |
Paolo Bonzini | d8d173d | 2013-10-02 16:56:11 +0200 | [diff] [blame] | 3940 | void kvm_mmu_new_cr3(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3941 | { |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 3942 | mmu_free_roots(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3943 | } |
| 3944 | |
Joerg Roedel | 5777ed3 | 2010-09-10 17:30:42 +0200 | [diff] [blame] | 3945 | static unsigned long get_cr3(struct kvm_vcpu *vcpu) |
| 3946 | { |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 3947 | return kvm_read_cr3(vcpu); |
Joerg Roedel | 5777ed3 | 2010-09-10 17:30:42 +0200 | [diff] [blame] | 3948 | } |
| 3949 | |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 3950 | static void inject_page_fault(struct kvm_vcpu *vcpu, |
| 3951 | struct x86_exception *fault) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3952 | { |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 3953 | vcpu->arch.mmu.inject_page_fault(vcpu, fault); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3954 | } |
| 3955 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 3956 | 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] | 3957 | unsigned access, int *nr_present) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3958 | { |
| 3959 | if (unlikely(is_mmio_spte(*sptep))) { |
| 3960 | if (gfn != get_mmio_spte_gfn(*sptep)) { |
| 3961 | mmu_spte_clear_no_track(sptep); |
| 3962 | return true; |
| 3963 | } |
| 3964 | |
| 3965 | (*nr_present)++; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 3966 | mark_mmio_spte(vcpu, sptep, gfn, access); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3967 | return true; |
| 3968 | } |
| 3969 | |
| 3970 | return false; |
| 3971 | } |
| 3972 | |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 3973 | static inline bool is_last_gpte(struct kvm_mmu *mmu, |
| 3974 | unsigned level, unsigned gpte) |
Avi Kivity | 6fd01b7 | 2012-09-12 20:46:56 +0300 | [diff] [blame] | 3975 | { |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 3976 | /* |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 3977 | * The RHS has bit 7 set iff level < mmu->last_nonleaf_level. |
| 3978 | * If it is clear, there are no large pages at this level, so clear |
| 3979 | * PT_PAGE_SIZE_MASK in gpte if that is the case. |
| 3980 | */ |
| 3981 | gpte &= level - mmu->last_nonleaf_level; |
| 3982 | |
Ladi Prosek | 829ee27 | 2017-10-05 11:10:23 +0200 | [diff] [blame] | 3983 | /* |
| 3984 | * PT_PAGE_TABLE_LEVEL always terminates. The RHS has bit 7 set |
| 3985 | * iff level <= PT_PAGE_TABLE_LEVEL, which for our purpose means |
| 3986 | * level == PT_PAGE_TABLE_LEVEL; set PT_PAGE_SIZE_MASK in gpte then. |
| 3987 | */ |
| 3988 | gpte |= level - PT_PAGE_TABLE_LEVEL - 1; |
| 3989 | |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 3990 | return gpte & PT_PAGE_SIZE_MASK; |
Avi Kivity | 6fd01b7 | 2012-09-12 20:46:56 +0300 | [diff] [blame] | 3991 | } |
| 3992 | |
Nadav Har'El | 37406aa | 2013-08-05 11:07:12 +0300 | [diff] [blame] | 3993 | #define PTTYPE_EPT 18 /* arbitrary */ |
| 3994 | #define PTTYPE PTTYPE_EPT |
| 3995 | #include "paging_tmpl.h" |
| 3996 | #undef PTTYPE |
| 3997 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3998 | #define PTTYPE 64 |
| 3999 | #include "paging_tmpl.h" |
| 4000 | #undef PTTYPE |
| 4001 | |
| 4002 | #define PTTYPE 32 |
| 4003 | #include "paging_tmpl.h" |
| 4004 | #undef PTTYPE |
| 4005 | |
Xiao Guangrong | 6dc98b8 | 2015-08-05 12:04:22 +0800 | [diff] [blame] | 4006 | static void |
| 4007 | __reset_rsvds_bits_mask(struct kvm_vcpu *vcpu, |
| 4008 | struct rsvd_bits_validate *rsvd_check, |
| 4009 | int maxphyaddr, int level, bool nx, bool gbpages, |
Paolo Bonzini | 6fec214 | 2015-09-22 23:02:14 +0200 | [diff] [blame] | 4010 | bool pse, bool amd) |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4011 | { |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4012 | u64 exb_bit_rsvd = 0; |
Nadav Amit | 5f7dde7 | 2014-05-07 15:32:50 +0300 | [diff] [blame] | 4013 | u64 gbpages_bit_rsvd = 0; |
Paolo Bonzini | a0c0feb | 2014-09-02 13:24:12 +0200 | [diff] [blame] | 4014 | u64 nonleaf_bit8_rsvd = 0; |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4015 | |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4016 | rsvd_check->bad_mt_xwr = 0; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4017 | |
Xiao Guangrong | 6dc98b8 | 2015-08-05 12:04:22 +0800 | [diff] [blame] | 4018 | if (!nx) |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4019 | exb_bit_rsvd = rsvd_bits(63, 63); |
Xiao Guangrong | 6dc98b8 | 2015-08-05 12:04:22 +0800 | [diff] [blame] | 4020 | if (!gbpages) |
Nadav Amit | 5f7dde7 | 2014-05-07 15:32:50 +0300 | [diff] [blame] | 4021 | gbpages_bit_rsvd = rsvd_bits(7, 7); |
Paolo Bonzini | a0c0feb | 2014-09-02 13:24:12 +0200 | [diff] [blame] | 4022 | |
| 4023 | /* |
| 4024 | * Non-leaf PML4Es and PDPEs reserve bit 8 (which would be the G bit for |
| 4025 | * leaf entries) on AMD CPUs only. |
| 4026 | */ |
Paolo Bonzini | 6fec214 | 2015-09-22 23:02:14 +0200 | [diff] [blame] | 4027 | if (amd) |
Paolo Bonzini | a0c0feb | 2014-09-02 13:24:12 +0200 | [diff] [blame] | 4028 | nonleaf_bit8_rsvd = rsvd_bits(8, 8); |
| 4029 | |
Xiao Guangrong | 6dc98b8 | 2015-08-05 12:04:22 +0800 | [diff] [blame] | 4030 | switch (level) { |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4031 | case PT32_ROOT_LEVEL: |
| 4032 | /* no rsvd bits for 2 level 4K page table entries */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4033 | rsvd_check->rsvd_bits_mask[0][1] = 0; |
| 4034 | rsvd_check->rsvd_bits_mask[0][0] = 0; |
| 4035 | rsvd_check->rsvd_bits_mask[1][0] = |
| 4036 | rsvd_check->rsvd_bits_mask[0][0]; |
Xiao Guangrong | f815bce | 2010-03-19 17:58:53 +0800 | [diff] [blame] | 4037 | |
Xiao Guangrong | 6dc98b8 | 2015-08-05 12:04:22 +0800 | [diff] [blame] | 4038 | if (!pse) { |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4039 | rsvd_check->rsvd_bits_mask[1][1] = 0; |
Xiao Guangrong | f815bce | 2010-03-19 17:58:53 +0800 | [diff] [blame] | 4040 | break; |
| 4041 | } |
| 4042 | |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4043 | if (is_cpuid_PSE36()) |
| 4044 | /* 36bits PSE 4MB page */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4045 | rsvd_check->rsvd_bits_mask[1][1] = rsvd_bits(17, 21); |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4046 | else |
| 4047 | /* 32 bits PSE 4MB page */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4048 | rsvd_check->rsvd_bits_mask[1][1] = rsvd_bits(13, 21); |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4049 | break; |
| 4050 | case PT32E_ROOT_LEVEL: |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4051 | rsvd_check->rsvd_bits_mask[0][2] = |
Dong, Eddie | 20c466b | 2009-03-31 23:03:45 +0800 | [diff] [blame] | 4052 | rsvd_bits(maxphyaddr, 63) | |
Nadav Amit | cd9ae5f | 2014-04-04 06:31:04 +0300 | [diff] [blame] | 4053 | rsvd_bits(5, 8) | rsvd_bits(1, 2); /* PDPTE */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4054 | rsvd_check->rsvd_bits_mask[0][1] = exb_bit_rsvd | |
Sheng Yang | 4c26b4c | 2009-04-02 10:28:37 +0800 | [diff] [blame] | 4055 | rsvd_bits(maxphyaddr, 62); /* PDE */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4056 | rsvd_check->rsvd_bits_mask[0][0] = exb_bit_rsvd | |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4057 | rsvd_bits(maxphyaddr, 62); /* PTE */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4058 | rsvd_check->rsvd_bits_mask[1][1] = exb_bit_rsvd | |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4059 | rsvd_bits(maxphyaddr, 62) | |
| 4060 | rsvd_bits(13, 20); /* large page */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4061 | rsvd_check->rsvd_bits_mask[1][0] = |
| 4062 | rsvd_check->rsvd_bits_mask[0][0]; |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4063 | break; |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 4064 | case PT64_ROOT_5LEVEL: |
| 4065 | rsvd_check->rsvd_bits_mask[0][4] = exb_bit_rsvd | |
| 4066 | nonleaf_bit8_rsvd | rsvd_bits(7, 7) | |
| 4067 | rsvd_bits(maxphyaddr, 51); |
| 4068 | rsvd_check->rsvd_bits_mask[1][4] = |
| 4069 | rsvd_check->rsvd_bits_mask[0][4]; |
Yu Zhang | 2a7266a | 2017-08-24 20:27:54 +0800 | [diff] [blame] | 4070 | case PT64_ROOT_4LEVEL: |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4071 | rsvd_check->rsvd_bits_mask[0][3] = exb_bit_rsvd | |
| 4072 | nonleaf_bit8_rsvd | rsvd_bits(7, 7) | |
Sheng Yang | 4c26b4c | 2009-04-02 10:28:37 +0800 | [diff] [blame] | 4073 | rsvd_bits(maxphyaddr, 51); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4074 | rsvd_check->rsvd_bits_mask[0][2] = exb_bit_rsvd | |
| 4075 | nonleaf_bit8_rsvd | gbpages_bit_rsvd | |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4076 | rsvd_bits(maxphyaddr, 51); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4077 | rsvd_check->rsvd_bits_mask[0][1] = exb_bit_rsvd | |
| 4078 | rsvd_bits(maxphyaddr, 51); |
| 4079 | rsvd_check->rsvd_bits_mask[0][0] = exb_bit_rsvd | |
| 4080 | rsvd_bits(maxphyaddr, 51); |
| 4081 | rsvd_check->rsvd_bits_mask[1][3] = |
| 4082 | rsvd_check->rsvd_bits_mask[0][3]; |
| 4083 | rsvd_check->rsvd_bits_mask[1][2] = exb_bit_rsvd | |
Nadav Amit | 5f7dde7 | 2014-05-07 15:32:50 +0300 | [diff] [blame] | 4084 | gbpages_bit_rsvd | rsvd_bits(maxphyaddr, 51) | |
Joerg Roedel | e04da98 | 2009-07-27 16:30:45 +0200 | [diff] [blame] | 4085 | rsvd_bits(13, 29); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4086 | rsvd_check->rsvd_bits_mask[1][1] = exb_bit_rsvd | |
Sheng Yang | 4c26b4c | 2009-04-02 10:28:37 +0800 | [diff] [blame] | 4087 | rsvd_bits(maxphyaddr, 51) | |
| 4088 | rsvd_bits(13, 20); /* large page */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4089 | rsvd_check->rsvd_bits_mask[1][0] = |
| 4090 | rsvd_check->rsvd_bits_mask[0][0]; |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 4091 | break; |
| 4092 | } |
| 4093 | } |
| 4094 | |
Xiao Guangrong | 6dc98b8 | 2015-08-05 12:04:22 +0800 | [diff] [blame] | 4095 | static void reset_rsvds_bits_mask(struct kvm_vcpu *vcpu, |
| 4096 | struct kvm_mmu *context) |
| 4097 | { |
| 4098 | __reset_rsvds_bits_mask(vcpu, &context->guest_rsvd_check, |
| 4099 | cpuid_maxphyaddr(vcpu), context->root_level, |
Radim Krčmář | d6321d4 | 2017-08-05 00:12:49 +0200 | [diff] [blame] | 4100 | context->nx, |
| 4101 | guest_cpuid_has(vcpu, X86_FEATURE_GBPAGES), |
Paolo Bonzini | 6fec214 | 2015-09-22 23:02:14 +0200 | [diff] [blame] | 4102 | is_pse(vcpu), guest_cpuid_is_amd(vcpu)); |
Xiao Guangrong | 6dc98b8 | 2015-08-05 12:04:22 +0800 | [diff] [blame] | 4103 | } |
| 4104 | |
Xiao Guangrong | 81b8eeb | 2015-08-05 12:04:23 +0800 | [diff] [blame] | 4105 | static void |
| 4106 | __reset_rsvds_bits_mask_ept(struct rsvd_bits_validate *rsvd_check, |
| 4107 | int maxphyaddr, bool execonly) |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4108 | { |
Paolo Bonzini | 951f9fd | 2015-09-23 10:34:26 +0200 | [diff] [blame] | 4109 | u64 bad_mt_xwr; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4110 | |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 4111 | rsvd_check->rsvd_bits_mask[0][4] = |
| 4112 | rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 7); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4113 | rsvd_check->rsvd_bits_mask[0][3] = |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4114 | rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 7); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4115 | rsvd_check->rsvd_bits_mask[0][2] = |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4116 | rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 6); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4117 | rsvd_check->rsvd_bits_mask[0][1] = |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4118 | rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 6); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4119 | rsvd_check->rsvd_bits_mask[0][0] = rsvd_bits(maxphyaddr, 51); |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4120 | |
| 4121 | /* large page */ |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 4122 | 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] | 4123 | rsvd_check->rsvd_bits_mask[1][3] = rsvd_check->rsvd_bits_mask[0][3]; |
| 4124 | rsvd_check->rsvd_bits_mask[1][2] = |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4125 | rsvd_bits(maxphyaddr, 51) | rsvd_bits(12, 29); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4126 | rsvd_check->rsvd_bits_mask[1][1] = |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4127 | rsvd_bits(maxphyaddr, 51) | rsvd_bits(12, 20); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 4128 | 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] | 4129 | |
Paolo Bonzini | 951f9fd | 2015-09-23 10:34:26 +0200 | [diff] [blame] | 4130 | bad_mt_xwr = 0xFFull << (2 * 8); /* bits 3..5 must not be 2 */ |
| 4131 | bad_mt_xwr |= 0xFFull << (3 * 8); /* bits 3..5 must not be 3 */ |
| 4132 | bad_mt_xwr |= 0xFFull << (7 * 8); /* bits 3..5 must not be 7 */ |
| 4133 | bad_mt_xwr |= REPEAT_BYTE(1ull << 2); /* bits 0..2 must not be 010 */ |
| 4134 | bad_mt_xwr |= REPEAT_BYTE(1ull << 6); /* bits 0..2 must not be 110 */ |
| 4135 | if (!execonly) { |
| 4136 | /* bits 0..2 must not be 100 unless VMX capabilities allow it */ |
| 4137 | bad_mt_xwr |= REPEAT_BYTE(1ull << 4); |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4138 | } |
Paolo Bonzini | 951f9fd | 2015-09-23 10:34:26 +0200 | [diff] [blame] | 4139 | rsvd_check->bad_mt_xwr = bad_mt_xwr; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4140 | } |
| 4141 | |
Xiao Guangrong | 81b8eeb | 2015-08-05 12:04:23 +0800 | [diff] [blame] | 4142 | static void reset_rsvds_bits_mask_ept(struct kvm_vcpu *vcpu, |
| 4143 | struct kvm_mmu *context, bool execonly) |
| 4144 | { |
| 4145 | __reset_rsvds_bits_mask_ept(&context->guest_rsvd_check, |
| 4146 | cpuid_maxphyaddr(vcpu), execonly); |
| 4147 | } |
| 4148 | |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4149 | /* |
| 4150 | * the page table on host is the shadow page table for the page |
| 4151 | * table in guest or amd nested guest, its mmu features completely |
| 4152 | * follow the features in guest. |
| 4153 | */ |
| 4154 | void |
| 4155 | reset_shadow_zero_bits_mask(struct kvm_vcpu *vcpu, struct kvm_mmu *context) |
| 4156 | { |
Paolo Bonzini | 5f0b819 | 2016-03-09 14:28:02 +0100 | [diff] [blame] | 4157 | bool uses_nx = context->nx || context->base_role.smep_andnot_wp; |
Brijesh Singh | ea2800d | 2017-08-25 15:55:40 -0500 | [diff] [blame] | 4158 | struct rsvd_bits_validate *shadow_zero_check; |
| 4159 | int i; |
Paolo Bonzini | 5f0b819 | 2016-03-09 14:28:02 +0100 | [diff] [blame] | 4160 | |
Paolo Bonzini | 6fec214 | 2015-09-22 23:02:14 +0200 | [diff] [blame] | 4161 | /* |
| 4162 | * Passing "true" to the last argument is okay; it adds a check |
| 4163 | * on bit 8 of the SPTEs which KVM doesn't use anyway. |
| 4164 | */ |
Brijesh Singh | ea2800d | 2017-08-25 15:55:40 -0500 | [diff] [blame] | 4165 | shadow_zero_check = &context->shadow_zero_check; |
| 4166 | __reset_rsvds_bits_mask(vcpu, shadow_zero_check, |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4167 | boot_cpu_data.x86_phys_bits, |
Paolo Bonzini | 5f0b819 | 2016-03-09 14:28:02 +0100 | [diff] [blame] | 4168 | context->shadow_root_level, uses_nx, |
Radim Krčmář | d6321d4 | 2017-08-05 00:12:49 +0200 | [diff] [blame] | 4169 | guest_cpuid_has(vcpu, X86_FEATURE_GBPAGES), |
| 4170 | is_pse(vcpu), true); |
Brijesh Singh | ea2800d | 2017-08-25 15:55:40 -0500 | [diff] [blame] | 4171 | |
| 4172 | if (!shadow_me_mask) |
| 4173 | return; |
| 4174 | |
| 4175 | for (i = context->shadow_root_level; --i >= 0;) { |
| 4176 | shadow_zero_check->rsvd_bits_mask[0][i] &= ~shadow_me_mask; |
| 4177 | shadow_zero_check->rsvd_bits_mask[1][i] &= ~shadow_me_mask; |
| 4178 | } |
| 4179 | |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4180 | } |
| 4181 | EXPORT_SYMBOL_GPL(reset_shadow_zero_bits_mask); |
| 4182 | |
Paolo Bonzini | 6fec214 | 2015-09-22 23:02:14 +0200 | [diff] [blame] | 4183 | static inline bool boot_cpu_is_amd(void) |
| 4184 | { |
| 4185 | WARN_ON_ONCE(!tdp_enabled); |
| 4186 | return shadow_x_mask == 0; |
| 4187 | } |
| 4188 | |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4189 | /* |
| 4190 | * the direct page table on host, use as much mmu features as |
| 4191 | * possible, however, kvm currently does not do execution-protection. |
| 4192 | */ |
| 4193 | static void |
| 4194 | reset_tdp_shadow_zero_bits_mask(struct kvm_vcpu *vcpu, |
| 4195 | struct kvm_mmu *context) |
| 4196 | { |
Brijesh Singh | ea2800d | 2017-08-25 15:55:40 -0500 | [diff] [blame] | 4197 | struct rsvd_bits_validate *shadow_zero_check; |
| 4198 | int i; |
| 4199 | |
| 4200 | shadow_zero_check = &context->shadow_zero_check; |
| 4201 | |
Paolo Bonzini | 6fec214 | 2015-09-22 23:02:14 +0200 | [diff] [blame] | 4202 | if (boot_cpu_is_amd()) |
Brijesh Singh | ea2800d | 2017-08-25 15:55:40 -0500 | [diff] [blame] | 4203 | __reset_rsvds_bits_mask(vcpu, shadow_zero_check, |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4204 | boot_cpu_data.x86_phys_bits, |
| 4205 | context->shadow_root_level, false, |
Borislav Petkov | b8291adc | 2016-03-29 17:41:58 +0200 | [diff] [blame] | 4206 | boot_cpu_has(X86_FEATURE_GBPAGES), |
| 4207 | true, true); |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4208 | else |
Brijesh Singh | ea2800d | 2017-08-25 15:55:40 -0500 | [diff] [blame] | 4209 | __reset_rsvds_bits_mask_ept(shadow_zero_check, |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4210 | boot_cpu_data.x86_phys_bits, |
| 4211 | false); |
| 4212 | |
Brijesh Singh | ea2800d | 2017-08-25 15:55:40 -0500 | [diff] [blame] | 4213 | if (!shadow_me_mask) |
| 4214 | return; |
| 4215 | |
| 4216 | for (i = context->shadow_root_level; --i >= 0;) { |
| 4217 | shadow_zero_check->rsvd_bits_mask[0][i] &= ~shadow_me_mask; |
| 4218 | shadow_zero_check->rsvd_bits_mask[1][i] &= ~shadow_me_mask; |
| 4219 | } |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4220 | } |
| 4221 | |
| 4222 | /* |
| 4223 | * as the comments in reset_shadow_zero_bits_mask() except it |
| 4224 | * is the shadow page table for intel nested guest. |
| 4225 | */ |
| 4226 | static void |
| 4227 | reset_ept_shadow_zero_bits_mask(struct kvm_vcpu *vcpu, |
| 4228 | struct kvm_mmu *context, bool execonly) |
| 4229 | { |
| 4230 | __reset_rsvds_bits_mask_ept(&context->shadow_zero_check, |
| 4231 | boot_cpu_data.x86_phys_bits, execonly); |
| 4232 | } |
| 4233 | |
Paolo Bonzini | 09f037a | 2017-08-24 17:37:25 +0200 | [diff] [blame] | 4234 | #define BYTE_MASK(access) \ |
| 4235 | ((1 & (access) ? 2 : 0) | \ |
| 4236 | (2 & (access) ? 4 : 0) | \ |
| 4237 | (3 & (access) ? 8 : 0) | \ |
| 4238 | (4 & (access) ? 16 : 0) | \ |
| 4239 | (5 & (access) ? 32 : 0) | \ |
| 4240 | (6 & (access) ? 64 : 0) | \ |
| 4241 | (7 & (access) ? 128 : 0)) |
| 4242 | |
| 4243 | |
Xiao Guangrong | edc90b7 | 2015-05-11 22:55:21 +0800 | [diff] [blame] | 4244 | static void update_permission_bitmask(struct kvm_vcpu *vcpu, |
| 4245 | struct kvm_mmu *mmu, bool ept) |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4246 | { |
Paolo Bonzini | 09f037a | 2017-08-24 17:37:25 +0200 | [diff] [blame] | 4247 | unsigned byte; |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4248 | |
Paolo Bonzini | 09f037a | 2017-08-24 17:37:25 +0200 | [diff] [blame] | 4249 | const u8 x = BYTE_MASK(ACC_EXEC_MASK); |
| 4250 | const u8 w = BYTE_MASK(ACC_WRITE_MASK); |
| 4251 | const u8 u = BYTE_MASK(ACC_USER_MASK); |
| 4252 | |
| 4253 | bool cr4_smep = kvm_read_cr4_bits(vcpu, X86_CR4_SMEP) != 0; |
| 4254 | bool cr4_smap = kvm_read_cr4_bits(vcpu, X86_CR4_SMAP) != 0; |
| 4255 | bool cr0_wp = is_write_protection(vcpu); |
| 4256 | |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4257 | for (byte = 0; byte < ARRAY_SIZE(mmu->permissions); ++byte) { |
Paolo Bonzini | 09f037a | 2017-08-24 17:37:25 +0200 | [diff] [blame] | 4258 | unsigned pfec = byte << 1; |
| 4259 | |
Feng Wu | 97ec8c0 | 2014-04-01 17:46:34 +0800 | [diff] [blame] | 4260 | /* |
Paolo Bonzini | 09f037a | 2017-08-24 17:37:25 +0200 | [diff] [blame] | 4261 | * Each "*f" variable has a 1 bit for each UWX value |
| 4262 | * that causes a fault with the given PFEC. |
Feng Wu | 97ec8c0 | 2014-04-01 17:46:34 +0800 | [diff] [blame] | 4263 | */ |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4264 | |
Paolo Bonzini | 09f037a | 2017-08-24 17:37:25 +0200 | [diff] [blame] | 4265 | /* Faults from writes to non-writable pages */ |
| 4266 | u8 wf = (pfec & PFERR_WRITE_MASK) ? ~w : 0; |
| 4267 | /* Faults from user mode accesses to supervisor pages */ |
| 4268 | u8 uf = (pfec & PFERR_USER_MASK) ? ~u : 0; |
| 4269 | /* Faults from fetches of non-executable pages*/ |
| 4270 | u8 ff = (pfec & PFERR_FETCH_MASK) ? ~x : 0; |
| 4271 | /* Faults from kernel mode fetches of user pages */ |
| 4272 | u8 smepf = 0; |
| 4273 | /* Faults from kernel mode accesses of user pages */ |
| 4274 | u8 smapf = 0; |
Feng Wu | 97ec8c0 | 2014-04-01 17:46:34 +0800 | [diff] [blame] | 4275 | |
Paolo Bonzini | 09f037a | 2017-08-24 17:37:25 +0200 | [diff] [blame] | 4276 | if (!ept) { |
| 4277 | /* Faults from kernel mode accesses to user pages */ |
| 4278 | u8 kf = (pfec & PFERR_USER_MASK) ? 0 : u; |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4279 | |
Paolo Bonzini | 09f037a | 2017-08-24 17:37:25 +0200 | [diff] [blame] | 4280 | /* Not really needed: !nx will cause pte.nx to fault */ |
| 4281 | if (!mmu->nx) |
| 4282 | ff = 0; |
| 4283 | |
| 4284 | /* Allow supervisor writes if !cr0.wp */ |
| 4285 | if (!cr0_wp) |
| 4286 | wf = (pfec & PFERR_USER_MASK) ? wf : 0; |
| 4287 | |
| 4288 | /* Disallow supervisor fetches of user code if cr4.smep */ |
| 4289 | if (cr4_smep) |
| 4290 | smepf = (pfec & PFERR_FETCH_MASK) ? kf : 0; |
| 4291 | |
| 4292 | /* |
| 4293 | * SMAP:kernel-mode data accesses from user-mode |
| 4294 | * mappings should fault. A fault is considered |
| 4295 | * as a SMAP violation if all of the following |
| 4296 | * conditions are ture: |
| 4297 | * - X86_CR4_SMAP is set in CR4 |
| 4298 | * - A user page is accessed |
| 4299 | * - The access is not a fetch |
| 4300 | * - Page fault in kernel mode |
| 4301 | * - if CPL = 3 or X86_EFLAGS_AC is clear |
| 4302 | * |
| 4303 | * Here, we cover the first three conditions. |
| 4304 | * The fourth is computed dynamically in permission_fault(); |
| 4305 | * PFERR_RSVD_MASK bit will be set in PFEC if the access is |
| 4306 | * *not* subject to SMAP restrictions. |
| 4307 | */ |
| 4308 | if (cr4_smap) |
| 4309 | smapf = (pfec & (PFERR_RSVD_MASK|PFERR_FETCH_MASK)) ? 0 : kf; |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4310 | } |
Paolo Bonzini | 09f037a | 2017-08-24 17:37:25 +0200 | [diff] [blame] | 4311 | |
| 4312 | mmu->permissions[byte] = ff | uf | wf | smepf | smapf; |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4313 | } |
| 4314 | } |
| 4315 | |
Huaitong Han | 2d34410 | 2016-03-22 16:51:19 +0800 | [diff] [blame] | 4316 | /* |
| 4317 | * PKU is an additional mechanism by which the paging controls access to |
| 4318 | * user-mode addresses based on the value in the PKRU register. Protection |
| 4319 | * key violations are reported through a bit in the page fault error code. |
| 4320 | * Unlike other bits of the error code, the PK bit is not known at the |
| 4321 | * call site of e.g. gva_to_gpa; it must be computed directly in |
| 4322 | * permission_fault based on two bits of PKRU, on some machine state (CR4, |
| 4323 | * CR0, EFER, CPL), and on other bits of the error code and the page tables. |
| 4324 | * |
| 4325 | * In particular the following conditions come from the error code, the |
| 4326 | * page tables and the machine state: |
| 4327 | * - PK is always zero unless CR4.PKE=1 and EFER.LMA=1 |
| 4328 | * - PK is always zero if RSVD=1 (reserved bit set) or F=1 (instruction fetch) |
| 4329 | * - PK is always zero if U=0 in the page tables |
| 4330 | * - PKRU.WD is ignored if CR0.WP=0 and the access is a supervisor access. |
| 4331 | * |
| 4332 | * The PKRU bitmask caches the result of these four conditions. The error |
| 4333 | * code (minus the P bit) and the page table's U bit form an index into the |
| 4334 | * PKRU bitmask. Two bits of the PKRU bitmask are then extracted and ANDed |
| 4335 | * with the two bits of the PKRU register corresponding to the protection key. |
| 4336 | * For the first three conditions above the bits will be 00, thus masking |
| 4337 | * away both AD and WD. For all reads or if the last condition holds, WD |
| 4338 | * only will be masked away. |
| 4339 | */ |
| 4340 | static void update_pkru_bitmask(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, |
| 4341 | bool ept) |
| 4342 | { |
| 4343 | unsigned bit; |
| 4344 | bool wp; |
| 4345 | |
| 4346 | if (ept) { |
| 4347 | mmu->pkru_mask = 0; |
| 4348 | return; |
| 4349 | } |
| 4350 | |
| 4351 | /* PKEY is enabled only if CR4.PKE and EFER.LMA are both set. */ |
| 4352 | if (!kvm_read_cr4_bits(vcpu, X86_CR4_PKE) || !is_long_mode(vcpu)) { |
| 4353 | mmu->pkru_mask = 0; |
| 4354 | return; |
| 4355 | } |
| 4356 | |
| 4357 | wp = is_write_protection(vcpu); |
| 4358 | |
| 4359 | for (bit = 0; bit < ARRAY_SIZE(mmu->permissions); ++bit) { |
| 4360 | unsigned pfec, pkey_bits; |
| 4361 | bool check_pkey, check_write, ff, uf, wf, pte_user; |
| 4362 | |
| 4363 | pfec = bit << 1; |
| 4364 | ff = pfec & PFERR_FETCH_MASK; |
| 4365 | uf = pfec & PFERR_USER_MASK; |
| 4366 | wf = pfec & PFERR_WRITE_MASK; |
| 4367 | |
| 4368 | /* PFEC.RSVD is replaced by ACC_USER_MASK. */ |
| 4369 | pte_user = pfec & PFERR_RSVD_MASK; |
| 4370 | |
| 4371 | /* |
| 4372 | * Only need to check the access which is not an |
| 4373 | * instruction fetch and is to a user page. |
| 4374 | */ |
| 4375 | check_pkey = (!ff && pte_user); |
| 4376 | /* |
| 4377 | * write access is controlled by PKRU if it is a |
| 4378 | * user access or CR0.WP = 1. |
| 4379 | */ |
| 4380 | check_write = check_pkey && wf && (uf || wp); |
| 4381 | |
| 4382 | /* PKRU.AD stops both read and write access. */ |
| 4383 | pkey_bits = !!check_pkey; |
| 4384 | /* PKRU.WD stops write access. */ |
| 4385 | pkey_bits |= (!!check_write) << 1; |
| 4386 | |
| 4387 | mmu->pkru_mask |= (pkey_bits & 3) << pfec; |
| 4388 | } |
| 4389 | } |
| 4390 | |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4391 | 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] | 4392 | { |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4393 | unsigned root_level = mmu->root_level; |
Avi Kivity | 6fd01b7 | 2012-09-12 20:46:56 +0300 | [diff] [blame] | 4394 | |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4395 | mmu->last_nonleaf_level = root_level; |
| 4396 | if (root_level == PT32_ROOT_LEVEL && is_pse(vcpu)) |
| 4397 | mmu->last_nonleaf_level++; |
Avi Kivity | 6fd01b7 | 2012-09-12 20:46:56 +0300 | [diff] [blame] | 4398 | } |
| 4399 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4400 | static void paging64_init_context_common(struct kvm_vcpu *vcpu, |
| 4401 | struct kvm_mmu *context, |
| 4402 | int level) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4403 | { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4404 | context->nx = is_nx(vcpu); |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4405 | context->root_level = level; |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4406 | |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4407 | reset_rsvds_bits_mask(vcpu, context); |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4408 | update_permission_bitmask(vcpu, context, false); |
Huaitong Han | 2d34410 | 2016-03-22 16:51:19 +0800 | [diff] [blame] | 4409 | update_pkru_bitmask(vcpu, context, false); |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4410 | update_last_nonleaf_level(vcpu, context); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4411 | |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 4412 | MMU_WARN_ON(!is_pae(vcpu)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4413 | context->page_fault = paging64_page_fault; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4414 | context->gva_to_gpa = paging64_gva_to_gpa; |
Marcelo Tosatti | e8bc217 | 2008-09-23 13:18:33 -0300 | [diff] [blame] | 4415 | context->sync_page = paging64_sync_page; |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 4416 | context->invlpg = paging64_invlpg; |
Xiao Guangrong | 0f53b5b | 2011-03-09 15:43:51 +0800 | [diff] [blame] | 4417 | context->update_pte = paging64_update_pte; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 4418 | context->shadow_root_level = level; |
Avi Kivity | 17c3ba9 | 2007-06-04 15:58:30 +0300 | [diff] [blame] | 4419 | context->root_hpa = INVALID_PAGE; |
Joerg Roedel | c5a78f2b | 2010-09-10 17:30:39 +0200 | [diff] [blame] | 4420 | context->direct_map = false; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4421 | } |
| 4422 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4423 | static void paging64_init_context(struct kvm_vcpu *vcpu, |
| 4424 | struct kvm_mmu *context) |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 4425 | { |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 4426 | int root_level = is_la57_mode(vcpu) ? |
| 4427 | PT64_ROOT_5LEVEL : PT64_ROOT_4LEVEL; |
| 4428 | |
| 4429 | paging64_init_context_common(vcpu, context, root_level); |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 4430 | } |
| 4431 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4432 | static void paging32_init_context(struct kvm_vcpu *vcpu, |
| 4433 | struct kvm_mmu *context) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4434 | { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4435 | context->nx = false; |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4436 | context->root_level = PT32_ROOT_LEVEL; |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4437 | |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4438 | reset_rsvds_bits_mask(vcpu, context); |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4439 | update_permission_bitmask(vcpu, context, false); |
Huaitong Han | 2d34410 | 2016-03-22 16:51:19 +0800 | [diff] [blame] | 4440 | update_pkru_bitmask(vcpu, context, false); |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4441 | update_last_nonleaf_level(vcpu, context); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4442 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4443 | context->page_fault = paging32_page_fault; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4444 | context->gva_to_gpa = paging32_gva_to_gpa; |
Marcelo Tosatti | e8bc217 | 2008-09-23 13:18:33 -0300 | [diff] [blame] | 4445 | context->sync_page = paging32_sync_page; |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 4446 | context->invlpg = paging32_invlpg; |
Xiao Guangrong | 0f53b5b | 2011-03-09 15:43:51 +0800 | [diff] [blame] | 4447 | context->update_pte = paging32_update_pte; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4448 | context->shadow_root_level = PT32E_ROOT_LEVEL; |
Avi Kivity | 17c3ba9 | 2007-06-04 15:58:30 +0300 | [diff] [blame] | 4449 | context->root_hpa = INVALID_PAGE; |
Joerg Roedel | c5a78f2b | 2010-09-10 17:30:39 +0200 | [diff] [blame] | 4450 | context->direct_map = false; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4451 | } |
| 4452 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4453 | static void paging32E_init_context(struct kvm_vcpu *vcpu, |
| 4454 | struct kvm_mmu *context) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4455 | { |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4456 | paging64_init_context_common(vcpu, context, PT32E_ROOT_LEVEL); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4457 | } |
| 4458 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4459 | static void init_kvm_tdp_mmu(struct kvm_vcpu *vcpu) |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4460 | { |
Paolo Bonzini | ad896af | 2013-10-02 16:56:14 +0200 | [diff] [blame] | 4461 | struct kvm_mmu *context = &vcpu->arch.mmu; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4462 | |
Avi Kivity | c445f8e | 2010-12-21 16:26:01 +0200 | [diff] [blame] | 4463 | context->base_role.word = 0; |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 4464 | context->base_role.smm = is_smm(vcpu); |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 4465 | context->base_role.ad_disabled = (shadow_accessed_mask == 0); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4466 | context->page_fault = tdp_page_fault; |
Marcelo Tosatti | e8bc217 | 2008-09-23 13:18:33 -0300 | [diff] [blame] | 4467 | context->sync_page = nonpaging_sync_page; |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 4468 | context->invlpg = nonpaging_invlpg; |
Xiao Guangrong | 0f53b5b | 2011-03-09 15:43:51 +0800 | [diff] [blame] | 4469 | context->update_pte = nonpaging_update_pte; |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 4470 | context->shadow_root_level = kvm_x86_ops->get_tdp_level(vcpu); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4471 | context->root_hpa = INVALID_PAGE; |
Joerg Roedel | c5a78f2b | 2010-09-10 17:30:39 +0200 | [diff] [blame] | 4472 | context->direct_map = true; |
Joerg Roedel | 1c97f0a | 2010-09-10 17:30:41 +0200 | [diff] [blame] | 4473 | context->set_cr3 = kvm_x86_ops->set_tdp_cr3; |
Joerg Roedel | 5777ed3 | 2010-09-10 17:30:42 +0200 | [diff] [blame] | 4474 | context->get_cr3 = get_cr3; |
Avi Kivity | e4e517b | 2011-07-28 11:36:17 +0300 | [diff] [blame] | 4475 | context->get_pdptr = kvm_pdptr_read; |
Joerg Roedel | cb659db | 2010-09-10 17:30:43 +0200 | [diff] [blame] | 4476 | context->inject_page_fault = kvm_inject_page_fault; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4477 | |
| 4478 | if (!is_paging(vcpu)) { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4479 | context->nx = false; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4480 | context->gva_to_gpa = nonpaging_gva_to_gpa; |
| 4481 | context->root_level = 0; |
| 4482 | } else if (is_long_mode(vcpu)) { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4483 | context->nx = is_nx(vcpu); |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 4484 | context->root_level = is_la57_mode(vcpu) ? |
| 4485 | PT64_ROOT_5LEVEL : PT64_ROOT_4LEVEL; |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4486 | reset_rsvds_bits_mask(vcpu, context); |
| 4487 | context->gva_to_gpa = paging64_gva_to_gpa; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4488 | } else if (is_pae(vcpu)) { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4489 | context->nx = is_nx(vcpu); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4490 | context->root_level = PT32E_ROOT_LEVEL; |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4491 | reset_rsvds_bits_mask(vcpu, context); |
| 4492 | context->gva_to_gpa = paging64_gva_to_gpa; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4493 | } else { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4494 | context->nx = false; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4495 | context->root_level = PT32_ROOT_LEVEL; |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4496 | reset_rsvds_bits_mask(vcpu, context); |
| 4497 | context->gva_to_gpa = paging32_gva_to_gpa; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4498 | } |
| 4499 | |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4500 | update_permission_bitmask(vcpu, context, false); |
Huaitong Han | 2d34410 | 2016-03-22 16:51:19 +0800 | [diff] [blame] | 4501 | update_pkru_bitmask(vcpu, context, false); |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4502 | update_last_nonleaf_level(vcpu, context); |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4503 | reset_tdp_shadow_zero_bits_mask(vcpu, context); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4504 | } |
| 4505 | |
Paolo Bonzini | ad896af | 2013-10-02 16:56:14 +0200 | [diff] [blame] | 4506 | void kvm_init_shadow_mmu(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4507 | { |
Avi Kivity | 411c588 | 2011-06-06 16:11:54 +0300 | [diff] [blame] | 4508 | bool smep = kvm_read_cr4_bits(vcpu, X86_CR4_SMEP); |
Xiao Guangrong | edc90b7 | 2015-05-11 22:55:21 +0800 | [diff] [blame] | 4509 | bool smap = kvm_read_cr4_bits(vcpu, X86_CR4_SMAP); |
Paolo Bonzini | ad896af | 2013-10-02 16:56:14 +0200 | [diff] [blame] | 4510 | struct kvm_mmu *context = &vcpu->arch.mmu; |
| 4511 | |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 4512 | MMU_WARN_ON(VALID_PAGE(context->root_hpa)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4513 | |
| 4514 | if (!is_paging(vcpu)) |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4515 | nonpaging_init_context(vcpu, context); |
Avi Kivity | a9058ec | 2006-12-29 16:49:37 -0800 | [diff] [blame] | 4516 | else if (is_long_mode(vcpu)) |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4517 | paging64_init_context(vcpu, context); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4518 | else if (is_pae(vcpu)) |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4519 | paging32E_init_context(vcpu, context); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4520 | else |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4521 | paging32_init_context(vcpu, context); |
Avi Kivity | a770f6f | 2008-12-21 19:20:09 +0200 | [diff] [blame] | 4522 | |
Paolo Bonzini | ad896af | 2013-10-02 16:56:14 +0200 | [diff] [blame] | 4523 | context->base_role.nxe = is_nx(vcpu); |
| 4524 | context->base_role.cr4_pae = !!is_pae(vcpu); |
| 4525 | context->base_role.cr0_wp = is_write_protection(vcpu); |
| 4526 | context->base_role.smep_andnot_wp |
Avi Kivity | 411c588 | 2011-06-06 16:11:54 +0300 | [diff] [blame] | 4527 | = smep && !is_write_protection(vcpu); |
Xiao Guangrong | edc90b7 | 2015-05-11 22:55:21 +0800 | [diff] [blame] | 4528 | context->base_role.smap_andnot_wp |
| 4529 | = smap && !is_write_protection(vcpu); |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 4530 | context->base_role.smm = is_smm(vcpu); |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4531 | reset_shadow_zero_bits_mask(vcpu, context); |
Joerg Roedel | 52fde8d | 2010-09-10 17:30:44 +0200 | [diff] [blame] | 4532 | } |
| 4533 | EXPORT_SYMBOL_GPL(kvm_init_shadow_mmu); |
| 4534 | |
Paolo Bonzini | ae1e2d1 | 2017-03-30 11:55:30 +0200 | [diff] [blame] | 4535 | void kvm_init_shadow_ept_mmu(struct kvm_vcpu *vcpu, bool execonly, |
| 4536 | bool accessed_dirty) |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 4537 | { |
Paolo Bonzini | ad896af | 2013-10-02 16:56:14 +0200 | [diff] [blame] | 4538 | struct kvm_mmu *context = &vcpu->arch.mmu; |
| 4539 | |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 4540 | MMU_WARN_ON(VALID_PAGE(context->root_hpa)); |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 4541 | |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 4542 | context->shadow_root_level = PT64_ROOT_4LEVEL; |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 4543 | |
| 4544 | context->nx = true; |
Paolo Bonzini | ae1e2d1 | 2017-03-30 11:55:30 +0200 | [diff] [blame] | 4545 | context->ept_ad = accessed_dirty; |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 4546 | context->page_fault = ept_page_fault; |
| 4547 | context->gva_to_gpa = ept_gva_to_gpa; |
| 4548 | context->sync_page = ept_sync_page; |
| 4549 | context->invlpg = ept_invlpg; |
| 4550 | context->update_pte = ept_update_pte; |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 4551 | context->root_level = PT64_ROOT_4LEVEL; |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 4552 | context->root_hpa = INVALID_PAGE; |
| 4553 | context->direct_map = false; |
Peter Feiner | 995f00a | 2017-06-30 17:26:32 -0700 | [diff] [blame] | 4554 | context->base_role.ad_disabled = !accessed_dirty; |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 4555 | |
| 4556 | update_permission_bitmask(vcpu, context, true); |
Huaitong Han | 2d34410 | 2016-03-22 16:51:19 +0800 | [diff] [blame] | 4557 | update_pkru_bitmask(vcpu, context, true); |
Ladi Prosek | fd19d3b4 | 2017-10-05 11:10:22 +0200 | [diff] [blame] | 4558 | update_last_nonleaf_level(vcpu, context); |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 4559 | reset_rsvds_bits_mask_ept(vcpu, context, execonly); |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4560 | reset_ept_shadow_zero_bits_mask(vcpu, context, execonly); |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 4561 | } |
| 4562 | EXPORT_SYMBOL_GPL(kvm_init_shadow_ept_mmu); |
| 4563 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4564 | static void init_kvm_softmmu(struct kvm_vcpu *vcpu) |
Joerg Roedel | 52fde8d | 2010-09-10 17:30:44 +0200 | [diff] [blame] | 4565 | { |
Paolo Bonzini | ad896af | 2013-10-02 16:56:14 +0200 | [diff] [blame] | 4566 | struct kvm_mmu *context = &vcpu->arch.mmu; |
| 4567 | |
| 4568 | kvm_init_shadow_mmu(vcpu); |
| 4569 | context->set_cr3 = kvm_x86_ops->set_cr3; |
| 4570 | context->get_cr3 = get_cr3; |
| 4571 | context->get_pdptr = kvm_pdptr_read; |
| 4572 | context->inject_page_fault = kvm_inject_page_fault; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4573 | } |
| 4574 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4575 | static void init_kvm_nested_mmu(struct kvm_vcpu *vcpu) |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4576 | { |
| 4577 | struct kvm_mmu *g_context = &vcpu->arch.nested_mmu; |
| 4578 | |
| 4579 | g_context->get_cr3 = get_cr3; |
Avi Kivity | e4e517b | 2011-07-28 11:36:17 +0300 | [diff] [blame] | 4580 | g_context->get_pdptr = kvm_pdptr_read; |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4581 | g_context->inject_page_fault = kvm_inject_page_fault; |
| 4582 | |
| 4583 | /* |
David Matlack | 0af2593 | 2015-12-30 08:26:17 -0800 | [diff] [blame] | 4584 | * Note that arch.mmu.gva_to_gpa translates l2_gpa to l1_gpa using |
| 4585 | * L1's nested page tables (e.g. EPT12). The nested translation |
| 4586 | * of l2_gva to l1_gpa is done by arch.nested_mmu.gva_to_gpa using |
| 4587 | * L2's page tables as the first level of translation and L1's |
| 4588 | * nested page tables as the second level of translation. Basically |
| 4589 | * the gva_to_gpa functions between mmu and nested_mmu are swapped. |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4590 | */ |
| 4591 | if (!is_paging(vcpu)) { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4592 | g_context->nx = false; |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4593 | g_context->root_level = 0; |
| 4594 | g_context->gva_to_gpa = nonpaging_gva_to_gpa_nested; |
| 4595 | } else if (is_long_mode(vcpu)) { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4596 | g_context->nx = is_nx(vcpu); |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 4597 | g_context->root_level = is_la57_mode(vcpu) ? |
| 4598 | PT64_ROOT_5LEVEL : PT64_ROOT_4LEVEL; |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4599 | reset_rsvds_bits_mask(vcpu, g_context); |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4600 | g_context->gva_to_gpa = paging64_gva_to_gpa_nested; |
| 4601 | } else if (is_pae(vcpu)) { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4602 | g_context->nx = is_nx(vcpu); |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4603 | g_context->root_level = PT32E_ROOT_LEVEL; |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4604 | reset_rsvds_bits_mask(vcpu, g_context); |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4605 | g_context->gva_to_gpa = paging64_gva_to_gpa_nested; |
| 4606 | } else { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4607 | g_context->nx = false; |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4608 | g_context->root_level = PT32_ROOT_LEVEL; |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4609 | reset_rsvds_bits_mask(vcpu, g_context); |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4610 | g_context->gva_to_gpa = paging32_gva_to_gpa_nested; |
| 4611 | } |
| 4612 | |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4613 | update_permission_bitmask(vcpu, g_context, false); |
Huaitong Han | 2d34410 | 2016-03-22 16:51:19 +0800 | [diff] [blame] | 4614 | update_pkru_bitmask(vcpu, g_context, false); |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4615 | update_last_nonleaf_level(vcpu, g_context); |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4616 | } |
| 4617 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4618 | static void init_kvm_mmu(struct kvm_vcpu *vcpu) |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4619 | { |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4620 | if (mmu_is_nested(vcpu)) |
Paolo Bonzini | e0c6db3 | 2014-12-23 13:39:46 +0100 | [diff] [blame] | 4621 | init_kvm_nested_mmu(vcpu); |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4622 | else if (tdp_enabled) |
Paolo Bonzini | e0c6db3 | 2014-12-23 13:39:46 +0100 | [diff] [blame] | 4623 | init_kvm_tdp_mmu(vcpu); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4624 | else |
Paolo Bonzini | e0c6db3 | 2014-12-23 13:39:46 +0100 | [diff] [blame] | 4625 | init_kvm_softmmu(vcpu); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4626 | } |
| 4627 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4628 | void kvm_mmu_reset_context(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4629 | { |
Paolo Bonzini | 95f93af | 2013-10-02 16:56:12 +0200 | [diff] [blame] | 4630 | kvm_mmu_unload(vcpu); |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4631 | init_kvm_mmu(vcpu); |
Avi Kivity | 17c3ba9 | 2007-06-04 15:58:30 +0300 | [diff] [blame] | 4632 | } |
Eddie Dong | 8668a3c | 2007-10-10 14:26:45 +0800 | [diff] [blame] | 4633 | EXPORT_SYMBOL_GPL(kvm_mmu_reset_context); |
Avi Kivity | 17c3ba9 | 2007-06-04 15:58:30 +0300 | [diff] [blame] | 4634 | |
| 4635 | int kvm_mmu_load(struct kvm_vcpu *vcpu) |
| 4636 | { |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 4637 | int r; |
| 4638 | |
Avi Kivity | e2dec93 | 2007-01-05 16:36:54 -0800 | [diff] [blame] | 4639 | r = mmu_topup_memory_caches(vcpu); |
Avi Kivity | 17c3ba9 | 2007-06-04 15:58:30 +0300 | [diff] [blame] | 4640 | if (r) |
| 4641 | goto out; |
Marcelo Tosatti | 8986ecc | 2009-05-12 18:55:45 -0300 | [diff] [blame] | 4642 | r = mmu_alloc_roots(vcpu); |
Takuya Yoshikawa | e2858b4 | 2013-05-09 15:45:12 +0900 | [diff] [blame] | 4643 | kvm_mmu_sync_roots(vcpu); |
Marcelo Tosatti | 8986ecc | 2009-05-12 18:55:45 -0300 | [diff] [blame] | 4644 | if (r) |
| 4645 | goto out; |
Sheng Yang | 3662cb1 | 2009-07-09 17:00:42 +0800 | [diff] [blame] | 4646 | /* set_cr3() should ensure TLB has been flushed */ |
Joerg Roedel | f43addd | 2010-09-10 17:30:40 +0200 | [diff] [blame] | 4647 | vcpu->arch.mmu.set_cr3(vcpu, vcpu->arch.mmu.root_hpa); |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 4648 | out: |
| 4649 | return r; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4650 | } |
Avi Kivity | 17c3ba9 | 2007-06-04 15:58:30 +0300 | [diff] [blame] | 4651 | EXPORT_SYMBOL_GPL(kvm_mmu_load); |
| 4652 | |
| 4653 | void kvm_mmu_unload(struct kvm_vcpu *vcpu) |
| 4654 | { |
| 4655 | mmu_free_roots(vcpu); |
Paolo Bonzini | 95f93af | 2013-10-02 16:56:12 +0200 | [diff] [blame] | 4656 | WARN_ON(VALID_PAGE(vcpu->arch.mmu.root_hpa)); |
Avi Kivity | 17c3ba9 | 2007-06-04 15:58:30 +0300 | [diff] [blame] | 4657 | } |
Joerg Roedel | 4b16184 | 2010-09-10 17:31:03 +0200 | [diff] [blame] | 4658 | EXPORT_SYMBOL_GPL(kvm_mmu_unload); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4659 | |
Avi Kivity | 0028425 | 2007-05-01 16:53:31 +0300 | [diff] [blame] | 4660 | static void mmu_pte_write_new_pte(struct kvm_vcpu *vcpu, |
Xiao Guangrong | 7c56252 | 2011-03-28 10:29:27 +0800 | [diff] [blame] | 4661 | struct kvm_mmu_page *sp, u64 *spte, |
| 4662 | const void *new) |
Avi Kivity | 0028425 | 2007-05-01 16:53:31 +0300 | [diff] [blame] | 4663 | { |
Marcelo Tosatti | 3094538 | 2008-06-11 20:32:40 -0300 | [diff] [blame] | 4664 | if (sp->role.level != PT_PAGE_TABLE_LEVEL) { |
Joerg Roedel | 7e4e405 | 2009-07-27 16:30:46 +0200 | [diff] [blame] | 4665 | ++vcpu->kvm->stat.mmu_pde_zapped; |
| 4666 | return; |
Marcelo Tosatti | 3094538 | 2008-06-11 20:32:40 -0300 | [diff] [blame] | 4667 | } |
Avi Kivity | 0028425 | 2007-05-01 16:53:31 +0300 | [diff] [blame] | 4668 | |
Avi Kivity | 4cee576 | 2007-11-18 16:37:07 +0200 | [diff] [blame] | 4669 | ++vcpu->kvm->stat.mmu_pte_updated; |
Xiao Guangrong | 7c56252 | 2011-03-28 10:29:27 +0800 | [diff] [blame] | 4670 | vcpu->arch.mmu.update_pte(vcpu, sp, spte, new); |
Avi Kivity | 0028425 | 2007-05-01 16:53:31 +0300 | [diff] [blame] | 4671 | } |
| 4672 | |
Avi Kivity | 79539ce | 2007-11-21 02:06:21 +0200 | [diff] [blame] | 4673 | static bool need_remote_flush(u64 old, u64 new) |
| 4674 | { |
| 4675 | if (!is_shadow_present_pte(old)) |
| 4676 | return false; |
| 4677 | if (!is_shadow_present_pte(new)) |
| 4678 | return true; |
| 4679 | if ((old ^ new) & PT64_BASE_ADDR_MASK) |
| 4680 | return true; |
Gleb Natapov | 5316622 | 2013-08-05 11:07:14 +0300 | [diff] [blame] | 4681 | old ^= shadow_nx_mask; |
| 4682 | new ^= shadow_nx_mask; |
Avi Kivity | 79539ce | 2007-11-21 02:06:21 +0200 | [diff] [blame] | 4683 | return (old & ~new & PT64_PERM_MASK) != 0; |
| 4684 | } |
| 4685 | |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4686 | static u64 mmu_pte_write_fetch_gpte(struct kvm_vcpu *vcpu, gpa_t *gpa, |
| 4687 | const u8 *new, int *bytes) |
Avi Kivity | da4a00f | 2007-01-05 16:36:44 -0800 | [diff] [blame] | 4688 | { |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4689 | u64 gentry; |
| 4690 | int r; |
Avi Kivity | 72016f3 | 2010-03-15 13:59:53 +0200 | [diff] [blame] | 4691 | |
Avi Kivity | 08e850c | 2010-03-15 13:59:57 +0200 | [diff] [blame] | 4692 | /* |
| 4693 | * 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] | 4694 | * as the current vcpu paging mode since we update the sptes only |
| 4695 | * when they have the same mode. |
Avi Kivity | 08e850c | 2010-03-15 13:59:57 +0200 | [diff] [blame] | 4696 | */ |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4697 | if (is_pae(vcpu) && *bytes == 4) { |
Avi Kivity | 08e850c | 2010-03-15 13:59:57 +0200 | [diff] [blame] | 4698 | /* 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] | 4699 | *gpa &= ~(gpa_t)7; |
| 4700 | *bytes = 8; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 4701 | r = kvm_vcpu_read_guest(vcpu, *gpa, &gentry, 8); |
Avi Kivity | 08e850c | 2010-03-15 13:59:57 +0200 | [diff] [blame] | 4702 | if (r) |
| 4703 | gentry = 0; |
| 4704 | new = (const u8 *)&gentry; |
| 4705 | } |
| 4706 | |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4707 | switch (*bytes) { |
Avi Kivity | 72016f3 | 2010-03-15 13:59:53 +0200 | [diff] [blame] | 4708 | case 4: |
| 4709 | gentry = *(const u32 *)new; |
| 4710 | break; |
| 4711 | case 8: |
| 4712 | gentry = *(const u64 *)new; |
| 4713 | break; |
| 4714 | default: |
| 4715 | gentry = 0; |
| 4716 | break; |
| 4717 | } |
| 4718 | |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4719 | return gentry; |
| 4720 | } |
| 4721 | |
| 4722 | /* |
| 4723 | * If we're seeing too many writes to a page, it may no longer be a page table, |
| 4724 | * or we may be forking, in which case it is better to unmap the page. |
| 4725 | */ |
Xiao Guangrong | a138fe7 | 2011-12-16 18:18:10 +0800 | [diff] [blame] | 4726 | static bool detect_write_flooding(struct kvm_mmu_page *sp) |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4727 | { |
Xiao Guangrong | a30f47c | 2011-09-22 16:58:36 +0800 | [diff] [blame] | 4728 | /* |
| 4729 | * Skip write-flooding detected for the sp whose level is 1, because |
| 4730 | * it can become unsync, then the guest page is not write-protected. |
| 4731 | */ |
Davidlohr Bueso | f71fa31 | 2012-04-18 12:24:29 +0200 | [diff] [blame] | 4732 | if (sp->role.level == PT_PAGE_TABLE_LEVEL) |
Xiao Guangrong | a30f47c | 2011-09-22 16:58:36 +0800 | [diff] [blame] | 4733 | return false; |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4734 | |
Xiao Guangrong | e5691a8 | 2016-02-24 17:51:12 +0800 | [diff] [blame] | 4735 | atomic_inc(&sp->write_flooding_count); |
| 4736 | return atomic_read(&sp->write_flooding_count) >= 3; |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4737 | } |
| 4738 | |
| 4739 | /* |
| 4740 | * Misaligned accesses are too much trouble to fix up; also, they usually |
| 4741 | * indicate a page is not used as a page table. |
| 4742 | */ |
| 4743 | static bool detect_write_misaligned(struct kvm_mmu_page *sp, gpa_t gpa, |
| 4744 | int bytes) |
| 4745 | { |
| 4746 | unsigned offset, pte_size, misaligned; |
| 4747 | |
| 4748 | pgprintk("misaligned: gpa %llx bytes %d role %x\n", |
| 4749 | gpa, bytes, sp->role.word); |
| 4750 | |
| 4751 | offset = offset_in_page(gpa); |
| 4752 | pte_size = sp->role.cr4_pae ? 8 : 4; |
Xiao Guangrong | 5d9ca30 | 2011-09-22 16:57:55 +0800 | [diff] [blame] | 4753 | |
| 4754 | /* |
| 4755 | * Sometimes, the OS only writes the last one bytes to update status |
| 4756 | * bits, for example, in linux, andb instruction is used in clear_bit(). |
| 4757 | */ |
| 4758 | if (!(offset & (pte_size - 1)) && bytes == 1) |
| 4759 | return false; |
| 4760 | |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4761 | misaligned = (offset ^ (offset + bytes - 1)) & ~(pte_size - 1); |
| 4762 | misaligned |= bytes < 4; |
| 4763 | |
| 4764 | return misaligned; |
| 4765 | } |
| 4766 | |
| 4767 | static u64 *get_written_sptes(struct kvm_mmu_page *sp, gpa_t gpa, int *nspte) |
| 4768 | { |
| 4769 | unsigned page_offset, quadrant; |
| 4770 | u64 *spte; |
| 4771 | int level; |
| 4772 | |
| 4773 | page_offset = offset_in_page(gpa); |
| 4774 | level = sp->role.level; |
| 4775 | *nspte = 1; |
| 4776 | if (!sp->role.cr4_pae) { |
| 4777 | page_offset <<= 1; /* 32->64 */ |
| 4778 | /* |
| 4779 | * A 32-bit pde maps 4MB while the shadow pdes map |
| 4780 | * only 2MB. So we need to double the offset again |
| 4781 | * and zap two pdes instead of one. |
| 4782 | */ |
| 4783 | if (level == PT32_ROOT_LEVEL) { |
| 4784 | page_offset &= ~7; /* kill rounding error */ |
| 4785 | page_offset <<= 1; |
| 4786 | *nspte = 2; |
| 4787 | } |
| 4788 | quadrant = page_offset >> PAGE_SHIFT; |
| 4789 | page_offset &= ~PAGE_MASK; |
| 4790 | if (quadrant != sp->role.quadrant) |
| 4791 | return NULL; |
| 4792 | } |
| 4793 | |
| 4794 | spte = &sp->spt[page_offset / sizeof(*spte)]; |
| 4795 | return spte; |
| 4796 | } |
| 4797 | |
Xiao Guangrong | 13d268c | 2016-02-24 17:51:16 +0800 | [diff] [blame] | 4798 | 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] | 4799 | const u8 *new, int bytes, |
| 4800 | struct kvm_page_track_notifier_node *node) |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4801 | { |
| 4802 | gfn_t gfn = gpa >> PAGE_SHIFT; |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4803 | struct kvm_mmu_page *sp; |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4804 | LIST_HEAD(invalid_list); |
| 4805 | u64 entry, gentry, *spte; |
| 4806 | int npte; |
Paolo Bonzini | b8c67b7 | 2016-02-24 11:21:55 +0100 | [diff] [blame] | 4807 | bool remote_flush, local_flush; |
Andrew Morton | 4141259 | 2015-05-27 11:53:06 +0200 | [diff] [blame] | 4808 | union kvm_mmu_page_role mask = { }; |
| 4809 | |
| 4810 | mask.cr0_wp = 1; |
| 4811 | mask.cr4_pae = 1; |
| 4812 | mask.nxe = 1; |
| 4813 | mask.smep_andnot_wp = 1; |
| 4814 | mask.smap_andnot_wp = 1; |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 4815 | mask.smm = 1; |
Peter Feiner | ac8d57e | 2017-06-30 17:26:31 -0700 | [diff] [blame] | 4816 | mask.ad_disabled = 1; |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4817 | |
| 4818 | /* |
| 4819 | * If we don't have indirect shadow pages, it means no page is |
| 4820 | * write-protected, so we can exit simply. |
| 4821 | */ |
| 4822 | if (!ACCESS_ONCE(vcpu->kvm->arch.indirect_shadow_pages)) |
| 4823 | return; |
| 4824 | |
Paolo Bonzini | b8c67b7 | 2016-02-24 11:21:55 +0100 | [diff] [blame] | 4825 | remote_flush = local_flush = false; |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4826 | |
| 4827 | pgprintk("%s: gpa %llx bytes %d\n", __func__, gpa, bytes); |
| 4828 | |
| 4829 | gentry = mmu_pte_write_fetch_gpte(vcpu, &gpa, new, &bytes); |
| 4830 | |
| 4831 | /* |
| 4832 | * No need to care whether allocation memory is successful |
| 4833 | * or not since pte prefetch is skiped if it does not have |
| 4834 | * enough objects in the cache. |
| 4835 | */ |
| 4836 | mmu_topup_memory_caches(vcpu); |
| 4837 | |
| 4838 | spin_lock(&vcpu->kvm->mmu_lock); |
| 4839 | ++vcpu->kvm->stat.mmu_pte_write; |
Xiao Guangrong | 0375f7f | 2011-11-28 20:41:00 +0800 | [diff] [blame] | 4840 | kvm_mmu_audit(vcpu, AUDIT_PRE_PTE_WRITE); |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4841 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 4842 | for_each_gfn_indirect_valid_sp(vcpu->kvm, sp, gfn) { |
Xiao Guangrong | a30f47c | 2011-09-22 16:58:36 +0800 | [diff] [blame] | 4843 | if (detect_write_misaligned(sp, gpa, bytes) || |
Xiao Guangrong | a138fe7 | 2011-12-16 18:18:10 +0800 | [diff] [blame] | 4844 | detect_write_flooding(sp)) { |
Paolo Bonzini | b8c67b7 | 2016-02-24 11:21:55 +0100 | [diff] [blame] | 4845 | kvm_mmu_prepare_zap_page(vcpu->kvm, sp, &invalid_list); |
Avi Kivity | 4cee576 | 2007-11-18 16:37:07 +0200 | [diff] [blame] | 4846 | ++vcpu->kvm->stat.mmu_flooded; |
Avi Kivity | 0e7bc4b | 2007-01-05 16:36:48 -0800 | [diff] [blame] | 4847 | continue; |
| 4848 | } |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4849 | |
| 4850 | spte = get_written_sptes(sp, gpa, &npte); |
| 4851 | if (!spte) |
| 4852 | continue; |
| 4853 | |
Xiao Guangrong | 0671a8e | 2010-06-04 21:56:59 +0800 | [diff] [blame] | 4854 | local_flush = true; |
Avi Kivity | ac1b714 | 2007-03-08 17:13:32 +0200 | [diff] [blame] | 4855 | while (npte--) { |
Avi Kivity | 79539ce | 2007-11-21 02:06:21 +0200 | [diff] [blame] | 4856 | entry = *spte; |
Xiao Guangrong | 38e3b2b | 2011-05-15 23:27:52 +0800 | [diff] [blame] | 4857 | mmu_page_zap_pte(vcpu->kvm, sp, spte); |
Xiao Guangrong | fa1de2b | 2010-07-16 11:19:51 +0800 | [diff] [blame] | 4858 | if (gentry && |
| 4859 | !((sp->role.word ^ vcpu->arch.mmu.base_role.word) |
Xiao Guangrong | f759e2b | 2011-09-22 16:53:17 +0800 | [diff] [blame] | 4860 | & mask.word) && rmap_can_add(vcpu)) |
Xiao Guangrong | 7c56252 | 2011-03-28 10:29:27 +0800 | [diff] [blame] | 4861 | mmu_pte_write_new_pte(vcpu, sp, spte, &gentry); |
Gleb Natapov | 9bb4f6b | 2013-01-30 16:45:01 +0200 | [diff] [blame] | 4862 | if (need_remote_flush(entry, *spte)) |
Xiao Guangrong | 0671a8e | 2010-06-04 21:56:59 +0800 | [diff] [blame] | 4863 | remote_flush = true; |
Avi Kivity | ac1b714 | 2007-03-08 17:13:32 +0200 | [diff] [blame] | 4864 | ++spte; |
Avi Kivity | 9b7a032 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 4865 | } |
Avi Kivity | 9b7a032 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 4866 | } |
Paolo Bonzini | b8c67b7 | 2016-02-24 11:21:55 +0100 | [diff] [blame] | 4867 | kvm_mmu_flush_or_zap(vcpu, &invalid_list, remote_flush, local_flush); |
Xiao Guangrong | 0375f7f | 2011-11-28 20:41:00 +0800 | [diff] [blame] | 4868 | kvm_mmu_audit(vcpu, AUDIT_POST_PTE_WRITE); |
Marcelo Tosatti | aaee2c9 | 2007-12-20 19:18:26 -0500 | [diff] [blame] | 4869 | spin_unlock(&vcpu->kvm->mmu_lock); |
Avi Kivity | da4a00f | 2007-01-05 16:36:44 -0800 | [diff] [blame] | 4870 | } |
| 4871 | |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 4872 | int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva) |
| 4873 | { |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4874 | gpa_t gpa; |
| 4875 | int r; |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 4876 | |
Joerg Roedel | c5a78f2b | 2010-09-10 17:30:39 +0200 | [diff] [blame] | 4877 | if (vcpu->arch.mmu.direct_map) |
Avi Kivity | 60f2478 | 2009-08-27 13:37:06 +0300 | [diff] [blame] | 4878 | return 0; |
| 4879 | |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4880 | gpa = kvm_mmu_gva_to_gpa_read(vcpu, gva, NULL); |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4881 | |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4882 | r = kvm_mmu_unprotect_page(vcpu->kvm, gpa >> PAGE_SHIFT); |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 4883 | |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4884 | return r; |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 4885 | } |
Avi Kivity | 577bdc4 | 2008-07-19 08:57:05 +0300 | [diff] [blame] | 4886 | EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page_virt); |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 4887 | |
Wanpeng Li | 26eeb53 | 2017-08-10 16:28:02 -0700 | [diff] [blame] | 4888 | static int make_mmu_pages_available(struct kvm_vcpu *vcpu) |
Avi Kivity | ebeace8 | 2007-01-05 16:36:47 -0800 | [diff] [blame] | 4889 | { |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 4890 | LIST_HEAD(invalid_list); |
Xiao Guangrong | 103ad25 | 2010-06-04 21:54:38 +0800 | [diff] [blame] | 4891 | |
Takuya Yoshikawa | 81f4f76 | 2013-03-21 19:34:27 +0900 | [diff] [blame] | 4892 | 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] | 4893 | return 0; |
Takuya Yoshikawa | 81f4f76 | 2013-03-21 19:34:27 +0900 | [diff] [blame] | 4894 | |
Takuya Yoshikawa | 5da5960 | 2013-03-06 16:06:58 +0900 | [diff] [blame] | 4895 | while (kvm_mmu_available_pages(vcpu->kvm) < KVM_REFILL_PAGES) { |
| 4896 | if (!prepare_zap_oldest_mmu_page(vcpu->kvm, &invalid_list)) |
| 4897 | break; |
Avi Kivity | ebeace8 | 2007-01-05 16:36:47 -0800 | [diff] [blame] | 4898 | |
Avi Kivity | 4cee576 | 2007-11-18 16:37:07 +0200 | [diff] [blame] | 4899 | ++vcpu->kvm->stat.mmu_recycled; |
Avi Kivity | ebeace8 | 2007-01-05 16:36:47 -0800 | [diff] [blame] | 4900 | } |
Xiao Guangrong | aa6bd18 | 2011-07-12 03:26:40 +0800 | [diff] [blame] | 4901 | kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list); |
Wanpeng Li | 26eeb53 | 2017-08-10 16:28:02 -0700 | [diff] [blame] | 4902 | |
| 4903 | if (!kvm_mmu_available_pages(vcpu->kvm)) |
| 4904 | return -ENOSPC; |
| 4905 | return 0; |
Avi Kivity | ebeace8 | 2007-01-05 16:36:47 -0800 | [diff] [blame] | 4906 | } |
Avi Kivity | ebeace8 | 2007-01-05 16:36:47 -0800 | [diff] [blame] | 4907 | |
Tom Lendacky | 1472775 | 2016-11-23 12:01:38 -0500 | [diff] [blame] | 4908 | 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] | 4909 | void *insn, int insn_len) |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 4910 | { |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 4911 | int r, emulation_type = EMULTYPE_RETRY; |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 4912 | enum emulation_result er; |
Paolo Bonzini | 9034e6e | 2017-08-17 18:36:58 +0200 | [diff] [blame] | 4913 | bool direct = vcpu->arch.mmu.direct_map; |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 4914 | |
Brijesh Singh | 618232e | 2017-08-17 18:36:57 +0200 | [diff] [blame] | 4915 | /* With shadow page tables, fault_address contains a GVA or nGPA. */ |
| 4916 | if (vcpu->arch.mmu.direct_map) { |
| 4917 | vcpu->arch.gpa_available = true; |
| 4918 | vcpu->arch.gpa_val = cr2; |
| 4919 | } |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 4920 | |
Takuya Yoshikawa | e9ee956 | 2016-02-22 17:23:41 +0900 | [diff] [blame] | 4921 | if (unlikely(error_code & PFERR_RSVD_MASK)) { |
| 4922 | r = handle_mmio_page_fault(vcpu, cr2, direct); |
| 4923 | if (r == RET_MMIO_PF_EMULATE) { |
| 4924 | emulation_type = 0; |
| 4925 | goto emulate; |
| 4926 | } |
| 4927 | if (r == RET_MMIO_PF_RETRY) |
| 4928 | return 1; |
| 4929 | if (r < 0) |
| 4930 | return r; |
Paolo Bonzini | e08d26f | 2017-08-17 18:36:56 +0200 | [diff] [blame] | 4931 | /* Must be RET_MMIO_PF_INVALID. */ |
Takuya Yoshikawa | e9ee956 | 2016-02-22 17:23:41 +0900 | [diff] [blame] | 4932 | } |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 4933 | |
Tom Lendacky | 1472775 | 2016-11-23 12:01:38 -0500 | [diff] [blame] | 4934 | r = vcpu->arch.mmu.page_fault(vcpu, cr2, lower_32_bits(error_code), |
| 4935 | false); |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 4936 | if (r < 0) |
Takuya Yoshikawa | e9ee956 | 2016-02-22 17:23:41 +0900 | [diff] [blame] | 4937 | return r; |
| 4938 | if (!r) |
| 4939 | return 1; |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 4940 | |
Tom Lendacky | 1472775 | 2016-11-23 12:01:38 -0500 | [diff] [blame] | 4941 | /* |
| 4942 | * Before emulating the instruction, check if the error code |
| 4943 | * was due to a RO violation while translating the guest page. |
| 4944 | * This can occur when using nested virtualization with nested |
| 4945 | * paging in both guests. If true, we simply unprotect the page |
| 4946 | * and resume the guest. |
Tom Lendacky | 1472775 | 2016-11-23 12:01:38 -0500 | [diff] [blame] | 4947 | */ |
Brijesh Singh | 64531a3 | 2017-08-07 14:11:30 -0500 | [diff] [blame] | 4948 | if (vcpu->arch.mmu.direct_map && |
Paolo Bonzini | eebed24 | 2016-11-28 14:39:58 +0100 | [diff] [blame] | 4949 | (error_code & PFERR_NESTED_GUEST_PAGE) == PFERR_NESTED_GUEST_PAGE) { |
Tom Lendacky | 1472775 | 2016-11-23 12:01:38 -0500 | [diff] [blame] | 4950 | kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(cr2)); |
| 4951 | return 1; |
| 4952 | } |
| 4953 | |
Takuya Yoshikawa | ded5874 | 2016-02-22 17:23:40 +0900 | [diff] [blame] | 4954 | if (mmio_info_in_cache(vcpu, cr2, direct)) |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 4955 | emulation_type = 0; |
Takuya Yoshikawa | e9ee956 | 2016-02-22 17:23:41 +0900 | [diff] [blame] | 4956 | emulate: |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 4957 | er = x86_emulate_instruction(vcpu, cr2, emulation_type, insn, insn_len); |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 4958 | |
| 4959 | switch (er) { |
| 4960 | case EMULATE_DONE: |
| 4961 | return 1; |
Paolo Bonzini | ac0a48c | 2013-06-25 18:24:41 +0200 | [diff] [blame] | 4962 | case EMULATE_USER_EXIT: |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 4963 | ++vcpu->stat.mmio_exits; |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 4964 | /* fall through */ |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 4965 | case EMULATE_FAIL: |
Avi Kivity | 3f5d18a | 2009-06-11 15:43:28 +0300 | [diff] [blame] | 4966 | return 0; |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 4967 | default: |
| 4968 | BUG(); |
| 4969 | } |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 4970 | } |
| 4971 | EXPORT_SYMBOL_GPL(kvm_mmu_page_fault); |
| 4972 | |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 4973 | void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva) |
| 4974 | { |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 4975 | vcpu->arch.mmu.invlpg(vcpu, gva); |
Liang Chen | 77c3913 | 2014-09-18 12:38:37 -0400 | [diff] [blame] | 4976 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 4977 | ++vcpu->stat.invlpg; |
| 4978 | } |
| 4979 | EXPORT_SYMBOL_GPL(kvm_mmu_invlpg); |
| 4980 | |
Joerg Roedel | 1855267 | 2008-02-07 13:47:41 +0100 | [diff] [blame] | 4981 | void kvm_enable_tdp(void) |
| 4982 | { |
| 4983 | tdp_enabled = true; |
| 4984 | } |
| 4985 | EXPORT_SYMBOL_GPL(kvm_enable_tdp); |
| 4986 | |
Joerg Roedel | 5f4cb66 | 2008-07-14 20:36:36 +0200 | [diff] [blame] | 4987 | void kvm_disable_tdp(void) |
| 4988 | { |
| 4989 | tdp_enabled = false; |
| 4990 | } |
| 4991 | EXPORT_SYMBOL_GPL(kvm_disable_tdp); |
| 4992 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4993 | static void free_mmu_pages(struct kvm_vcpu *vcpu) |
| 4994 | { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 4995 | free_page((unsigned long)vcpu->arch.mmu.pae_root); |
David Hildenbrand | 87ca74a | 2017-08-24 20:51:24 +0200 | [diff] [blame] | 4996 | free_page((unsigned long)vcpu->arch.mmu.lm_root); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4997 | } |
| 4998 | |
| 4999 | static int alloc_mmu_pages(struct kvm_vcpu *vcpu) |
| 5000 | { |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 5001 | struct page *page; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5002 | int i; |
| 5003 | |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 5004 | /* |
| 5005 | * When emulating 32-bit mode, cr3 is only 32 bits even on x86_64. |
| 5006 | * Therefore we need to allocate shadow page tables in the first |
| 5007 | * 4GB of memory, which happens to fit the DMA32 zone. |
| 5008 | */ |
| 5009 | page = alloc_page(GFP_KERNEL | __GFP_DMA32); |
| 5010 | if (!page) |
Wei Yongjun | d7fa6ab | 2010-01-22 16:55:05 +0800 | [diff] [blame] | 5011 | return -ENOMEM; |
| 5012 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 5013 | vcpu->arch.mmu.pae_root = page_address(page); |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 5014 | for (i = 0; i < 4; ++i) |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 5015 | vcpu->arch.mmu.pae_root[i] = INVALID_PAGE; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 5016 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5017 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5018 | } |
| 5019 | |
Ingo Molnar | 8018c27 | 2006-12-29 16:50:01 -0800 | [diff] [blame] | 5020 | int kvm_mmu_create(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5021 | { |
Xiao Guangrong | e459e32 | 2011-11-28 20:42:16 +0800 | [diff] [blame] | 5022 | vcpu->arch.walk_mmu = &vcpu->arch.mmu; |
| 5023 | vcpu->arch.mmu.root_hpa = INVALID_PAGE; |
| 5024 | vcpu->arch.mmu.translate_gpa = translate_gpa; |
| 5025 | vcpu->arch.nested_mmu.translate_gpa = translate_nested_gpa; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5026 | |
Ingo Molnar | 8018c27 | 2006-12-29 16:50:01 -0800 | [diff] [blame] | 5027 | return alloc_mmu_pages(vcpu); |
| 5028 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5029 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 5030 | void kvm_mmu_setup(struct kvm_vcpu *vcpu) |
Ingo Molnar | 8018c27 | 2006-12-29 16:50:01 -0800 | [diff] [blame] | 5031 | { |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 5032 | MMU_WARN_ON(VALID_PAGE(vcpu->arch.mmu.root_hpa)); |
Avi Kivity | 2c26495 | 2006-12-22 01:05:28 -0800 | [diff] [blame] | 5033 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 5034 | init_kvm_mmu(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5035 | } |
| 5036 | |
Xiaoguang Chen | b5f5fdc | 2016-10-09 15:41:44 +0800 | [diff] [blame] | 5037 | static void kvm_mmu_invalidate_zap_pages_in_memslot(struct kvm *kvm, |
Jike Song | d126363 | 2016-10-25 15:50:42 +0800 | [diff] [blame] | 5038 | struct kvm_memory_slot *slot, |
| 5039 | struct kvm_page_track_notifier_node *node) |
Xiaoguang Chen | b5f5fdc | 2016-10-09 15:41:44 +0800 | [diff] [blame] | 5040 | { |
| 5041 | kvm_mmu_invalidate_zap_all_pages(kvm); |
| 5042 | } |
| 5043 | |
Xiao Guangrong | 13d268c | 2016-02-24 17:51:16 +0800 | [diff] [blame] | 5044 | void kvm_mmu_init_vm(struct kvm *kvm) |
| 5045 | { |
| 5046 | struct kvm_page_track_notifier_node *node = &kvm->arch.mmu_sp_tracker; |
| 5047 | |
| 5048 | node->track_write = kvm_mmu_pte_write; |
Xiaoguang Chen | b5f5fdc | 2016-10-09 15:41:44 +0800 | [diff] [blame] | 5049 | node->track_flush_slot = kvm_mmu_invalidate_zap_pages_in_memslot; |
Xiao Guangrong | 13d268c | 2016-02-24 17:51:16 +0800 | [diff] [blame] | 5050 | kvm_page_track_register_notifier(kvm, node); |
| 5051 | } |
| 5052 | |
| 5053 | void kvm_mmu_uninit_vm(struct kvm *kvm) |
| 5054 | { |
| 5055 | struct kvm_page_track_notifier_node *node = &kvm->arch.mmu_sp_tracker; |
| 5056 | |
| 5057 | kvm_page_track_unregister_notifier(kvm, node); |
| 5058 | } |
| 5059 | |
Xiao Guangrong | 1bad2b2 | 2015-05-13 14:42:23 +0800 | [diff] [blame] | 5060 | /* The return value indicates if tlb flush on all vcpus is needed. */ |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 5061 | 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] | 5062 | |
| 5063 | /* The caller should hold mmu-lock before calling this function. */ |
| 5064 | static bool |
| 5065 | slot_handle_level_range(struct kvm *kvm, struct kvm_memory_slot *memslot, |
| 5066 | slot_level_handler fn, int start_level, int end_level, |
| 5067 | gfn_t start_gfn, gfn_t end_gfn, bool lock_flush_tlb) |
| 5068 | { |
| 5069 | struct slot_rmap_walk_iterator iterator; |
| 5070 | bool flush = false; |
| 5071 | |
| 5072 | for_each_slot_rmap_range(memslot, start_level, end_level, start_gfn, |
| 5073 | end_gfn, &iterator) { |
| 5074 | if (iterator.rmap) |
| 5075 | flush |= fn(kvm, iterator.rmap); |
| 5076 | |
| 5077 | if (need_resched() || spin_needbreak(&kvm->mmu_lock)) { |
| 5078 | if (flush && lock_flush_tlb) { |
| 5079 | kvm_flush_remote_tlbs(kvm); |
| 5080 | flush = false; |
| 5081 | } |
| 5082 | cond_resched_lock(&kvm->mmu_lock); |
| 5083 | } |
| 5084 | } |
| 5085 | |
| 5086 | if (flush && lock_flush_tlb) { |
| 5087 | kvm_flush_remote_tlbs(kvm); |
| 5088 | flush = false; |
| 5089 | } |
| 5090 | |
| 5091 | return flush; |
| 5092 | } |
| 5093 | |
| 5094 | static bool |
| 5095 | slot_handle_level(struct kvm *kvm, struct kvm_memory_slot *memslot, |
| 5096 | slot_level_handler fn, int start_level, int end_level, |
| 5097 | bool lock_flush_tlb) |
| 5098 | { |
| 5099 | return slot_handle_level_range(kvm, memslot, fn, start_level, |
| 5100 | end_level, memslot->base_gfn, |
| 5101 | memslot->base_gfn + memslot->npages - 1, |
| 5102 | lock_flush_tlb); |
| 5103 | } |
| 5104 | |
| 5105 | static bool |
| 5106 | slot_handle_all_level(struct kvm *kvm, struct kvm_memory_slot *memslot, |
| 5107 | slot_level_handler fn, bool lock_flush_tlb) |
| 5108 | { |
| 5109 | return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL, |
| 5110 | PT_MAX_HUGEPAGE_LEVEL, lock_flush_tlb); |
| 5111 | } |
| 5112 | |
| 5113 | static bool |
| 5114 | slot_handle_large_level(struct kvm *kvm, struct kvm_memory_slot *memslot, |
| 5115 | slot_level_handler fn, bool lock_flush_tlb) |
| 5116 | { |
| 5117 | return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL + 1, |
| 5118 | PT_MAX_HUGEPAGE_LEVEL, lock_flush_tlb); |
| 5119 | } |
| 5120 | |
| 5121 | static bool |
| 5122 | slot_handle_leaf(struct kvm *kvm, struct kvm_memory_slot *memslot, |
| 5123 | slot_level_handler fn, bool lock_flush_tlb) |
| 5124 | { |
| 5125 | return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL, |
| 5126 | PT_PAGE_TABLE_LEVEL, lock_flush_tlb); |
| 5127 | } |
| 5128 | |
Xiao Guangrong | efdfe53 | 2015-05-13 14:42:27 +0800 | [diff] [blame] | 5129 | void kvm_zap_gfn_range(struct kvm *kvm, gfn_t gfn_start, gfn_t gfn_end) |
| 5130 | { |
| 5131 | struct kvm_memslots *slots; |
| 5132 | struct kvm_memory_slot *memslot; |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 5133 | int i; |
Xiao Guangrong | efdfe53 | 2015-05-13 14:42:27 +0800 | [diff] [blame] | 5134 | |
| 5135 | spin_lock(&kvm->mmu_lock); |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 5136 | for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) { |
| 5137 | slots = __kvm_memslots(kvm, i); |
| 5138 | kvm_for_each_memslot(memslot, slots) { |
| 5139 | gfn_t start, end; |
Xiao Guangrong | efdfe53 | 2015-05-13 14:42:27 +0800 | [diff] [blame] | 5140 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 5141 | start = max(gfn_start, memslot->base_gfn); |
| 5142 | end = min(gfn_end, memslot->base_gfn + memslot->npages); |
| 5143 | if (start >= end) |
| 5144 | continue; |
Xiao Guangrong | efdfe53 | 2015-05-13 14:42:27 +0800 | [diff] [blame] | 5145 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 5146 | slot_handle_level_range(kvm, memslot, kvm_zap_rmapp, |
| 5147 | PT_PAGE_TABLE_LEVEL, PT_MAX_HUGEPAGE_LEVEL, |
| 5148 | start, end - 1, true); |
| 5149 | } |
Xiao Guangrong | efdfe53 | 2015-05-13 14:42:27 +0800 | [diff] [blame] | 5150 | } |
| 5151 | |
| 5152 | spin_unlock(&kvm->mmu_lock); |
| 5153 | } |
| 5154 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 5155 | static bool slot_rmap_write_protect(struct kvm *kvm, |
| 5156 | struct kvm_rmap_head *rmap_head) |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5157 | { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 5158 | return __rmap_write_protect(kvm, rmap_head, false); |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5159 | } |
| 5160 | |
Kai Huang | 1c91cad4 | 2015-01-28 10:54:26 +0800 | [diff] [blame] | 5161 | void kvm_mmu_slot_remove_write_access(struct kvm *kvm, |
| 5162 | struct kvm_memory_slot *memslot) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5163 | { |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5164 | bool flush; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5165 | |
Takuya Yoshikawa | 9d1beef | 2013-01-08 19:46:48 +0900 | [diff] [blame] | 5166 | spin_lock(&kvm->mmu_lock); |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5167 | flush = slot_handle_all_level(kvm, memslot, slot_rmap_write_protect, |
| 5168 | false); |
Takuya Yoshikawa | 9d1beef | 2013-01-08 19:46:48 +0900 | [diff] [blame] | 5169 | spin_unlock(&kvm->mmu_lock); |
Xiao Guangrong | 198c74f | 2014-04-17 17:06:16 +0800 | [diff] [blame] | 5170 | |
| 5171 | /* |
| 5172 | * kvm_mmu_slot_remove_write_access() and kvm_vm_ioctl_get_dirty_log() |
| 5173 | * which do tlb flush out of mmu-lock should be serialized by |
| 5174 | * kvm->slots_lock otherwise tlb flush would be missed. |
| 5175 | */ |
| 5176 | lockdep_assert_held(&kvm->slots_lock); |
| 5177 | |
| 5178 | /* |
| 5179 | * We can flush all the TLBs out of the mmu lock without TLB |
| 5180 | * corruption since we just change the spte from writable to |
| 5181 | * readonly so that we only need to care the case of changing |
| 5182 | * spte from present to present (changing the spte from present |
| 5183 | * to nonpresent will flush all the TLBs immediately), in other |
| 5184 | * words, the only case we care is mmu_spte_update() where we |
| 5185 | * haved checked SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE |
| 5186 | * instead of PT_WRITABLE_MASK, that means it does not depend |
| 5187 | * on PT_WRITABLE_MASK anymore. |
| 5188 | */ |
Kai Huang | d91ffee | 2015-01-12 15:28:54 +0800 | [diff] [blame] | 5189 | if (flush) |
| 5190 | kvm_flush_remote_tlbs(kvm); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 5191 | } |
Avi Kivity | 37a7d8b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 5192 | |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5193 | static bool kvm_mmu_zap_collapsible_spte(struct kvm *kvm, |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 5194 | struct kvm_rmap_head *rmap_head) |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5195 | { |
| 5196 | u64 *sptep; |
| 5197 | struct rmap_iterator iter; |
| 5198 | int need_tlb_flush = 0; |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 5199 | kvm_pfn_t pfn; |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5200 | struct kvm_mmu_page *sp; |
| 5201 | |
Xiao Guangrong | 0d53679 | 2015-05-13 14:42:20 +0800 | [diff] [blame] | 5202 | restart: |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 5203 | for_each_rmap_spte(rmap_head, &iter, sptep) { |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5204 | sp = page_header(__pa(sptep)); |
| 5205 | pfn = spte_to_pfn(*sptep); |
| 5206 | |
| 5207 | /* |
Xiao Guangrong | decf633 | 2015-04-14 12:04:10 +0800 | [diff] [blame] | 5208 | * We cannot do huge page mapping for indirect shadow pages, |
| 5209 | * which are found on the last rmap (level = 1) when not using |
| 5210 | * tdp; such shadow pages are synced with the page table in |
| 5211 | * the guest, and the guest page table is using 4K page size |
| 5212 | * mapping if the indirect sp has level = 1. |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5213 | */ |
| 5214 | if (sp->role.direct && |
| 5215 | !kvm_is_reserved_pfn(pfn) && |
Andrea Arcangeli | 127393f | 2016-05-05 16:22:20 -0700 | [diff] [blame] | 5216 | PageTransCompoundMap(pfn_to_page(pfn))) { |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5217 | drop_spte(kvm, sptep); |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5218 | need_tlb_flush = 1; |
Xiao Guangrong | 0d53679 | 2015-05-13 14:42:20 +0800 | [diff] [blame] | 5219 | goto restart; |
| 5220 | } |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5221 | } |
| 5222 | |
| 5223 | return need_tlb_flush; |
| 5224 | } |
| 5225 | |
| 5226 | void kvm_mmu_zap_collapsible_sptes(struct kvm *kvm, |
Paolo Bonzini | f36f3f2 | 2015-05-18 13:20:23 +0200 | [diff] [blame] | 5227 | const struct kvm_memory_slot *memslot) |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5228 | { |
Paolo Bonzini | f36f3f2 | 2015-05-18 13:20:23 +0200 | [diff] [blame] | 5229 | /* FIXME: const-ify all uses of struct kvm_memory_slot. */ |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5230 | spin_lock(&kvm->mmu_lock); |
Paolo Bonzini | f36f3f2 | 2015-05-18 13:20:23 +0200 | [diff] [blame] | 5231 | slot_handle_leaf(kvm, (struct kvm_memory_slot *)memslot, |
| 5232 | kvm_mmu_zap_collapsible_spte, true); |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5233 | spin_unlock(&kvm->mmu_lock); |
| 5234 | } |
| 5235 | |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5236 | void kvm_mmu_slot_leaf_clear_dirty(struct kvm *kvm, |
| 5237 | struct kvm_memory_slot *memslot) |
| 5238 | { |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5239 | bool flush; |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5240 | |
| 5241 | spin_lock(&kvm->mmu_lock); |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5242 | flush = slot_handle_leaf(kvm, memslot, __rmap_clear_dirty, false); |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5243 | spin_unlock(&kvm->mmu_lock); |
| 5244 | |
| 5245 | lockdep_assert_held(&kvm->slots_lock); |
| 5246 | |
| 5247 | /* |
| 5248 | * It's also safe to flush TLBs out of mmu lock here as currently this |
| 5249 | * function is only used for dirty logging, in which case flushing TLB |
| 5250 | * out of mmu lock also guarantees no dirty pages will be lost in |
| 5251 | * dirty_bitmap. |
| 5252 | */ |
| 5253 | if (flush) |
| 5254 | kvm_flush_remote_tlbs(kvm); |
| 5255 | } |
| 5256 | EXPORT_SYMBOL_GPL(kvm_mmu_slot_leaf_clear_dirty); |
| 5257 | |
| 5258 | void kvm_mmu_slot_largepage_remove_write_access(struct kvm *kvm, |
| 5259 | struct kvm_memory_slot *memslot) |
| 5260 | { |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5261 | bool flush; |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5262 | |
| 5263 | spin_lock(&kvm->mmu_lock); |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5264 | flush = slot_handle_large_level(kvm, memslot, slot_rmap_write_protect, |
| 5265 | false); |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5266 | spin_unlock(&kvm->mmu_lock); |
| 5267 | |
| 5268 | /* see kvm_mmu_slot_remove_write_access */ |
| 5269 | lockdep_assert_held(&kvm->slots_lock); |
| 5270 | |
| 5271 | if (flush) |
| 5272 | kvm_flush_remote_tlbs(kvm); |
| 5273 | } |
| 5274 | EXPORT_SYMBOL_GPL(kvm_mmu_slot_largepage_remove_write_access); |
| 5275 | |
| 5276 | void kvm_mmu_slot_set_dirty(struct kvm *kvm, |
| 5277 | struct kvm_memory_slot *memslot) |
| 5278 | { |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5279 | bool flush; |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5280 | |
| 5281 | spin_lock(&kvm->mmu_lock); |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5282 | flush = slot_handle_all_level(kvm, memslot, __rmap_set_dirty, false); |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5283 | spin_unlock(&kvm->mmu_lock); |
| 5284 | |
| 5285 | lockdep_assert_held(&kvm->slots_lock); |
| 5286 | |
| 5287 | /* see kvm_mmu_slot_leaf_clear_dirty */ |
| 5288 | if (flush) |
| 5289 | kvm_flush_remote_tlbs(kvm); |
| 5290 | } |
| 5291 | EXPORT_SYMBOL_GPL(kvm_mmu_slot_set_dirty); |
| 5292 | |
Xiao Guangrong | e7d11c7 | 2013-05-31 08:36:27 +0800 | [diff] [blame] | 5293 | #define BATCH_ZAP_PAGES 10 |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5294 | static void kvm_zap_obsolete_pages(struct kvm *kvm) |
| 5295 | { |
| 5296 | struct kvm_mmu_page *sp, *node; |
Xiao Guangrong | e7d11c7 | 2013-05-31 08:36:27 +0800 | [diff] [blame] | 5297 | int batch = 0; |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5298 | |
| 5299 | restart: |
| 5300 | list_for_each_entry_safe_reverse(sp, node, |
| 5301 | &kvm->arch.active_mmu_pages, link) { |
Xiao Guangrong | e7d11c7 | 2013-05-31 08:36:27 +0800 | [diff] [blame] | 5302 | int ret; |
| 5303 | |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5304 | /* |
| 5305 | * No obsolete page exists before new created page since |
| 5306 | * active_mmu_pages is the FIFO list. |
| 5307 | */ |
| 5308 | if (!is_obsolete_sp(kvm, sp)) |
| 5309 | break; |
| 5310 | |
| 5311 | /* |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5312 | * Since we are reversely walking the list and the invalid |
| 5313 | * list will be moved to the head, skip the invalid page |
| 5314 | * can help us to avoid the infinity list walking. |
| 5315 | */ |
| 5316 | if (sp->role.invalid) |
| 5317 | continue; |
| 5318 | |
Xiao Guangrong | f34d251 | 2013-05-31 08:36:28 +0800 | [diff] [blame] | 5319 | /* |
| 5320 | * Need not flush tlb since we only zap the sp with invalid |
| 5321 | * generation number. |
| 5322 | */ |
Xiao Guangrong | e7d11c7 | 2013-05-31 08:36:27 +0800 | [diff] [blame] | 5323 | if (batch >= BATCH_ZAP_PAGES && |
Xiao Guangrong | f34d251 | 2013-05-31 08:36:28 +0800 | [diff] [blame] | 5324 | cond_resched_lock(&kvm->mmu_lock)) { |
Xiao Guangrong | e7d11c7 | 2013-05-31 08:36:27 +0800 | [diff] [blame] | 5325 | batch = 0; |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5326 | goto restart; |
| 5327 | } |
| 5328 | |
Xiao Guangrong | 365c886 | 2013-05-31 08:36:29 +0800 | [diff] [blame] | 5329 | ret = kvm_mmu_prepare_zap_page(kvm, sp, |
| 5330 | &kvm->arch.zapped_obsolete_pages); |
Xiao Guangrong | e7d11c7 | 2013-05-31 08:36:27 +0800 | [diff] [blame] | 5331 | batch += ret; |
| 5332 | |
| 5333 | if (ret) |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5334 | goto restart; |
| 5335 | } |
| 5336 | |
Xiao Guangrong | f34d251 | 2013-05-31 08:36:28 +0800 | [diff] [blame] | 5337 | /* |
| 5338 | * Should flush tlb before free page tables since lockless-walking |
| 5339 | * may use the pages. |
| 5340 | */ |
Xiao Guangrong | 365c886 | 2013-05-31 08:36:29 +0800 | [diff] [blame] | 5341 | kvm_mmu_commit_zap_page(kvm, &kvm->arch.zapped_obsolete_pages); |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5342 | } |
| 5343 | |
| 5344 | /* |
| 5345 | * Fast invalidate all shadow pages and use lock-break technique |
| 5346 | * to zap obsolete pages. |
| 5347 | * |
| 5348 | * It's required when memslot is being deleted or VM is being |
| 5349 | * destroyed, in these cases, we should ensure that KVM MMU does |
| 5350 | * not use any resource of the being-deleted slot or all slots |
| 5351 | * after calling the function. |
| 5352 | */ |
| 5353 | void kvm_mmu_invalidate_zap_all_pages(struct kvm *kvm) |
| 5354 | { |
| 5355 | spin_lock(&kvm->mmu_lock); |
Xiao Guangrong | 3500612 | 2013-05-31 08:36:25 +0800 | [diff] [blame] | 5356 | trace_kvm_mmu_invalidate_zap_all_pages(kvm); |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5357 | kvm->arch.mmu_valid_gen++; |
| 5358 | |
Xiao Guangrong | f34d251 | 2013-05-31 08:36:28 +0800 | [diff] [blame] | 5359 | /* |
| 5360 | * Notify all vcpus to reload its shadow page table |
| 5361 | * and flush TLB. Then all vcpus will switch to new |
| 5362 | * shadow page table with the new mmu_valid_gen. |
| 5363 | * |
| 5364 | * Note: we should do this under the protection of |
| 5365 | * mmu-lock, otherwise, vcpu would purge shadow page |
| 5366 | * but miss tlb flush. |
| 5367 | */ |
| 5368 | kvm_reload_remote_mmus(kvm); |
| 5369 | |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5370 | kvm_zap_obsolete_pages(kvm); |
| 5371 | spin_unlock(&kvm->mmu_lock); |
| 5372 | } |
| 5373 | |
Xiao Guangrong | 365c886 | 2013-05-31 08:36:29 +0800 | [diff] [blame] | 5374 | static bool kvm_has_zapped_obsolete_pages(struct kvm *kvm) |
| 5375 | { |
| 5376 | return unlikely(!list_empty_careful(&kvm->arch.zapped_obsolete_pages)); |
| 5377 | } |
| 5378 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 5379 | void kvm_mmu_invalidate_mmio_sptes(struct kvm *kvm, struct kvm_memslots *slots) |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 5380 | { |
| 5381 | /* |
| 5382 | * The very rare case: if the generation-number is round, |
| 5383 | * zap all shadow pages. |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 5384 | */ |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 5385 | if (unlikely((slots->generation & MMIO_GEN_MASK) == 0)) { |
Bandan Das | ae0f549 | 2016-11-15 01:36:18 -0500 | [diff] [blame] | 5386 | kvm_debug_ratelimited("kvm: zapping shadow pages for mmio generation wraparound\n"); |
Xiao Guangrong | a8eca9d | 2013-06-10 16:28:55 +0800 | [diff] [blame] | 5387 | kvm_mmu_invalidate_zap_all_pages(kvm); |
Takuya Yoshikawa | 7a2e8aa | 2013-06-21 01:34:31 +0900 | [diff] [blame] | 5388 | } |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 5389 | } |
| 5390 | |
Dave Chinner | 70534a7 | 2013-08-28 10:18:14 +1000 | [diff] [blame] | 5391 | static unsigned long |
| 5392 | mmu_shrink_scan(struct shrinker *shrink, struct shrink_control *sc) |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5393 | { |
| 5394 | struct kvm *kvm; |
Ying Han | 1495f23 | 2011-05-24 17:12:27 -0700 | [diff] [blame] | 5395 | int nr_to_scan = sc->nr_to_scan; |
Dave Chinner | 70534a7 | 2013-08-28 10:18:14 +1000 | [diff] [blame] | 5396 | unsigned long freed = 0; |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5397 | |
Paolo Bonzini | 2f303b7 | 2013-09-25 13:53:07 +0200 | [diff] [blame] | 5398 | spin_lock(&kvm_lock); |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5399 | |
| 5400 | list_for_each_entry(kvm, &vm_list, vm_list) { |
Jan Kiszka | 3d56cbd | 2011-12-02 18:35:24 +0100 | [diff] [blame] | 5401 | int idx; |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 5402 | LIST_HEAD(invalid_list); |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5403 | |
Gleb Natapov | 1952639 | 2012-06-04 14:53:23 +0300 | [diff] [blame] | 5404 | /* |
Takuya Yoshikawa | 35f2d16 | 2012-08-20 18:35:39 +0900 | [diff] [blame] | 5405 | * Never scan more than sc->nr_to_scan VM instances. |
| 5406 | * Will not hit this condition practically since we do not try |
| 5407 | * to shrink more than one VM and it is very unlikely to see |
| 5408 | * !n_used_mmu_pages so many times. |
| 5409 | */ |
| 5410 | if (!nr_to_scan--) |
| 5411 | break; |
| 5412 | /* |
Gleb Natapov | 1952639 | 2012-06-04 14:53:23 +0300 | [diff] [blame] | 5413 | * n_used_mmu_pages is accessed without holding kvm->mmu_lock |
| 5414 | * here. We may skip a VM instance errorneosly, but we do not |
| 5415 | * want to shrink a VM that only started to populate its MMU |
| 5416 | * anyway. |
| 5417 | */ |
Xiao Guangrong | 365c886 | 2013-05-31 08:36:29 +0800 | [diff] [blame] | 5418 | if (!kvm->arch.n_used_mmu_pages && |
| 5419 | !kvm_has_zapped_obsolete_pages(kvm)) |
Gleb Natapov | 1952639 | 2012-06-04 14:53:23 +0300 | [diff] [blame] | 5420 | continue; |
Gleb Natapov | 1952639 | 2012-06-04 14:53:23 +0300 | [diff] [blame] | 5421 | |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 5422 | idx = srcu_read_lock(&kvm->srcu); |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5423 | spin_lock(&kvm->mmu_lock); |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5424 | |
Xiao Guangrong | 365c886 | 2013-05-31 08:36:29 +0800 | [diff] [blame] | 5425 | if (kvm_has_zapped_obsolete_pages(kvm)) { |
| 5426 | kvm_mmu_commit_zap_page(kvm, |
| 5427 | &kvm->arch.zapped_obsolete_pages); |
| 5428 | goto unlock; |
| 5429 | } |
| 5430 | |
Dave Chinner | 70534a7 | 2013-08-28 10:18:14 +1000 | [diff] [blame] | 5431 | if (prepare_zap_oldest_mmu_page(kvm, &invalid_list)) |
| 5432 | freed++; |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 5433 | kvm_mmu_commit_zap_page(kvm, &invalid_list); |
Gleb Natapov | 1952639 | 2012-06-04 14:53:23 +0300 | [diff] [blame] | 5434 | |
Xiao Guangrong | 365c886 | 2013-05-31 08:36:29 +0800 | [diff] [blame] | 5435 | unlock: |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5436 | spin_unlock(&kvm->mmu_lock); |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 5437 | srcu_read_unlock(&kvm->srcu, idx); |
Gleb Natapov | 1952639 | 2012-06-04 14:53:23 +0300 | [diff] [blame] | 5438 | |
Dave Chinner | 70534a7 | 2013-08-28 10:18:14 +1000 | [diff] [blame] | 5439 | /* |
| 5440 | * unfair on small ones |
| 5441 | * per-vm shrinkers cry out |
| 5442 | * sadness comes quickly |
| 5443 | */ |
Gleb Natapov | 1952639 | 2012-06-04 14:53:23 +0300 | [diff] [blame] | 5444 | list_move_tail(&kvm->vm_list, &vm_list); |
| 5445 | break; |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5446 | } |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5447 | |
Paolo Bonzini | 2f303b7 | 2013-09-25 13:53:07 +0200 | [diff] [blame] | 5448 | spin_unlock(&kvm_lock); |
Dave Chinner | 70534a7 | 2013-08-28 10:18:14 +1000 | [diff] [blame] | 5449 | return freed; |
Dave Chinner | 70534a7 | 2013-08-28 10:18:14 +1000 | [diff] [blame] | 5450 | } |
| 5451 | |
| 5452 | static unsigned long |
| 5453 | mmu_shrink_count(struct shrinker *shrink, struct shrink_control *sc) |
| 5454 | { |
Dave Hansen | 45221ab | 2010-08-19 18:11:37 -0700 | [diff] [blame] | 5455 | return percpu_counter_read_positive(&kvm_total_used_mmu_pages); |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5456 | } |
| 5457 | |
| 5458 | static struct shrinker mmu_shrinker = { |
Dave Chinner | 70534a7 | 2013-08-28 10:18:14 +1000 | [diff] [blame] | 5459 | .count_objects = mmu_shrink_count, |
| 5460 | .scan_objects = mmu_shrink_scan, |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5461 | .seeks = DEFAULT_SEEKS * 10, |
| 5462 | }; |
| 5463 | |
Ingo Molnar | 2ddfd20 | 2008-05-22 10:37:48 +0200 | [diff] [blame] | 5464 | static void mmu_destroy_caches(void) |
Avi Kivity | b5a33a7 | 2007-04-15 16:31:09 +0300 | [diff] [blame] | 5465 | { |
Tim Hansen | c1bd743 | 2017-10-07 23:15:23 -0400 | [diff] [blame^] | 5466 | kmem_cache_destroy(pte_list_desc_cache); |
| 5467 | kmem_cache_destroy(mmu_page_header_cache); |
Avi Kivity | b5a33a7 | 2007-04-15 16:31:09 +0300 | [diff] [blame] | 5468 | } |
| 5469 | |
| 5470 | int kvm_mmu_module_init(void) |
| 5471 | { |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 5472 | kvm_mmu_clear_all_pte_masks(); |
| 5473 | |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 5474 | pte_list_desc_cache = kmem_cache_create("pte_list_desc", |
| 5475 | sizeof(struct pte_list_desc), |
Shakeel Butt | 46bea48 | 2017-10-05 18:07:24 -0700 | [diff] [blame] | 5476 | 0, SLAB_ACCOUNT, NULL); |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 5477 | if (!pte_list_desc_cache) |
Avi Kivity | b5a33a7 | 2007-04-15 16:31:09 +0300 | [diff] [blame] | 5478 | goto nomem; |
| 5479 | |
Avi Kivity | d3d25b0 | 2007-05-30 12:34:53 +0300 | [diff] [blame] | 5480 | mmu_page_header_cache = kmem_cache_create("kvm_mmu_page_header", |
| 5481 | sizeof(struct kvm_mmu_page), |
Shakeel Butt | 46bea48 | 2017-10-05 18:07:24 -0700 | [diff] [blame] | 5482 | 0, SLAB_ACCOUNT, NULL); |
Avi Kivity | d3d25b0 | 2007-05-30 12:34:53 +0300 | [diff] [blame] | 5483 | if (!mmu_page_header_cache) |
| 5484 | goto nomem; |
| 5485 | |
Tejun Heo | 908c7f1 | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 5486 | if (percpu_counter_init(&kvm_total_used_mmu_pages, 0, GFP_KERNEL)) |
Wei Yongjun | 45bf21a | 2010-08-23 16:13:15 +0800 | [diff] [blame] | 5487 | goto nomem; |
| 5488 | |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5489 | register_shrinker(&mmu_shrinker); |
| 5490 | |
Avi Kivity | b5a33a7 | 2007-04-15 16:31:09 +0300 | [diff] [blame] | 5491 | return 0; |
| 5492 | |
| 5493 | nomem: |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5494 | mmu_destroy_caches(); |
Avi Kivity | b5a33a7 | 2007-04-15 16:31:09 +0300 | [diff] [blame] | 5495 | return -ENOMEM; |
| 5496 | } |
| 5497 | |
Zhang Xiantao | 3ad82a7 | 2007-11-20 13:11:38 +0800 | [diff] [blame] | 5498 | /* |
| 5499 | * Caculate mmu pages needed for kvm. |
| 5500 | */ |
| 5501 | unsigned int kvm_mmu_calculate_mmu_pages(struct kvm *kvm) |
| 5502 | { |
Zhang Xiantao | 3ad82a7 | 2007-11-20 13:11:38 +0800 | [diff] [blame] | 5503 | unsigned int nr_mmu_pages; |
| 5504 | unsigned int nr_pages = 0; |
Marcelo Tosatti | bc6678a | 2009-12-23 14:35:21 -0200 | [diff] [blame] | 5505 | struct kvm_memslots *slots; |
Xiao Guangrong | be6ba0f | 2011-11-24 17:39:18 +0800 | [diff] [blame] | 5506 | struct kvm_memory_slot *memslot; |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 5507 | int i; |
Zhang Xiantao | 3ad82a7 | 2007-11-20 13:11:38 +0800 | [diff] [blame] | 5508 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 5509 | for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) { |
| 5510 | slots = __kvm_memslots(kvm, i); |
Lai Jiangshan | 90d83dc | 2010-04-19 17:41:23 +0800 | [diff] [blame] | 5511 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 5512 | kvm_for_each_memslot(memslot, slots) |
| 5513 | nr_pages += memslot->npages; |
| 5514 | } |
Zhang Xiantao | 3ad82a7 | 2007-11-20 13:11:38 +0800 | [diff] [blame] | 5515 | |
| 5516 | nr_mmu_pages = nr_pages * KVM_PERMILLE_MMU_PAGES / 1000; |
| 5517 | nr_mmu_pages = max(nr_mmu_pages, |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 5518 | (unsigned int) KVM_MIN_ALLOC_MMU_PAGES); |
Zhang Xiantao | 3ad82a7 | 2007-11-20 13:11:38 +0800 | [diff] [blame] | 5519 | |
| 5520 | return nr_mmu_pages; |
| 5521 | } |
| 5522 | |
Xiao Guangrong | c42fffe | 2010-09-27 18:07:07 +0800 | [diff] [blame] | 5523 | void kvm_mmu_destroy(struct kvm_vcpu *vcpu) |
| 5524 | { |
Paolo Bonzini | 95f93af | 2013-10-02 16:56:12 +0200 | [diff] [blame] | 5525 | kvm_mmu_unload(vcpu); |
Xiao Guangrong | c42fffe | 2010-09-27 18:07:07 +0800 | [diff] [blame] | 5526 | free_mmu_pages(vcpu); |
| 5527 | mmu_free_memory_caches(vcpu); |
Xiao Guangrong | b034cf0 | 2010-12-23 16:08:35 +0800 | [diff] [blame] | 5528 | } |
| 5529 | |
Xiao Guangrong | b034cf0 | 2010-12-23 16:08:35 +0800 | [diff] [blame] | 5530 | void kvm_mmu_module_exit(void) |
| 5531 | { |
| 5532 | mmu_destroy_caches(); |
| 5533 | percpu_counter_destroy(&kvm_total_used_mmu_pages); |
| 5534 | unregister_shrinker(&mmu_shrinker); |
Xiao Guangrong | c42fffe | 2010-09-27 18:07:07 +0800 | [diff] [blame] | 5535 | mmu_audit_disable(); |
| 5536 | } |