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> |
Avi Kivity | e495606 | 2007-06-28 14:15:57 -0400 | [diff] [blame] | 49 | |
Joerg Roedel | 1855267 | 2008-02-07 13:47:41 +0100 | [diff] [blame] | 50 | /* |
| 51 | * When setting this variable to true it enables Two-Dimensional-Paging |
| 52 | * where the hardware walks 2 page tables: |
| 53 | * 1. the guest-virtual to guest-physical |
| 54 | * 2. while doing 1. it walks guest-physical to host-physical |
| 55 | * If the hardware supports that we don't need to do shadow paging. |
| 56 | */ |
Marcelo Tosatti | 2f333bc | 2008-02-22 12:21:37 -0500 | [diff] [blame] | 57 | bool tdp_enabled = false; |
Joerg Roedel | 1855267 | 2008-02-07 13:47:41 +0100 | [diff] [blame] | 58 | |
Xiao Guangrong | 8b1fe17 | 2010-08-30 18:22:53 +0800 | [diff] [blame] | 59 | enum { |
| 60 | AUDIT_PRE_PAGE_FAULT, |
| 61 | AUDIT_POST_PAGE_FAULT, |
| 62 | AUDIT_PRE_PTE_WRITE, |
Xiao Guangrong | 6903074 | 2010-09-27 18:09:29 +0800 | [diff] [blame] | 63 | AUDIT_POST_PTE_WRITE, |
| 64 | AUDIT_PRE_SYNC, |
| 65 | AUDIT_POST_SYNC |
Xiao Guangrong | 8b1fe17 | 2010-08-30 18:22:53 +0800 | [diff] [blame] | 66 | }; |
| 67 | |
Avi Kivity | 37a7d8b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 68 | #undef MMU_DEBUG |
| 69 | |
Avi Kivity | 37a7d8b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 70 | #ifdef MMU_DEBUG |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 71 | static bool dbg = 0; |
| 72 | module_param(dbg, bool, 0644); |
Avi Kivity | 37a7d8b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 73 | |
| 74 | #define pgprintk(x...) do { if (dbg) printk(x); } while (0) |
| 75 | #define rmap_printk(x...) do { if (dbg) printk(x); } while (0) |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 76 | #define MMU_WARN_ON(x) WARN_ON(x) |
Avi Kivity | 37a7d8b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 77 | #else |
Avi Kivity | 37a7d8b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 78 | #define pgprintk(x...) do { } while (0) |
| 79 | #define rmap_printk(x...) do { } while (0) |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 80 | #define MMU_WARN_ON(x) do { } while (0) |
Yaozu Dong | d6c69ee | 2007-04-25 14:17:25 +0800 | [diff] [blame] | 81 | #endif |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 82 | |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 83 | #define PTE_PREFETCH_NUM 8 |
| 84 | |
Xudong Hao | 00763e4 | 2012-06-07 18:26:07 +0800 | [diff] [blame] | 85 | #define PT_FIRST_AVAIL_BITS_SHIFT 10 |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 86 | #define PT64_SECOND_AVAIL_BITS_SHIFT 52 |
| 87 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 88 | #define PT64_LEVEL_BITS 9 |
| 89 | |
| 90 | #define PT64_LEVEL_SHIFT(level) \ |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 91 | (PAGE_SHIFT + (level - 1) * PT64_LEVEL_BITS) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 92 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 93 | #define PT64_INDEX(address, level)\ |
| 94 | (((address) >> PT64_LEVEL_SHIFT(level)) & ((1 << PT64_LEVEL_BITS) - 1)) |
| 95 | |
| 96 | |
| 97 | #define PT32_LEVEL_BITS 10 |
| 98 | |
| 99 | #define PT32_LEVEL_SHIFT(level) \ |
Mike Day | d77c26f | 2007-10-08 09:02:08 -0400 | [diff] [blame] | 100 | (PAGE_SHIFT + (level - 1) * PT32_LEVEL_BITS) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 101 | |
Joerg Roedel | e04da98 | 2009-07-27 16:30:45 +0200 | [diff] [blame] | 102 | #define PT32_LVL_OFFSET_MASK(level) \ |
| 103 | (PT32_BASE_ADDR_MASK & ((1ULL << (PAGE_SHIFT + (((level) - 1) \ |
| 104 | * PT32_LEVEL_BITS))) - 1)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 105 | |
| 106 | #define PT32_INDEX(address, level)\ |
| 107 | (((address) >> PT32_LEVEL_SHIFT(level)) & ((1 << PT32_LEVEL_BITS) - 1)) |
| 108 | |
| 109 | |
Avi Kivity | 27aba76 | 2007-03-09 13:04:31 +0200 | [diff] [blame] | 110 | #define PT64_BASE_ADDR_MASK (((1ULL << 52) - 1) & ~(u64)(PAGE_SIZE-1)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 111 | #define PT64_DIR_BASE_ADDR_MASK \ |
| 112 | (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + PT64_LEVEL_BITS)) - 1)) |
Joerg Roedel | e04da98 | 2009-07-27 16:30:45 +0200 | [diff] [blame] | 113 | #define PT64_LVL_ADDR_MASK(level) \ |
| 114 | (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + (((level) - 1) \ |
| 115 | * PT64_LEVEL_BITS))) - 1)) |
| 116 | #define PT64_LVL_OFFSET_MASK(level) \ |
| 117 | (PT64_BASE_ADDR_MASK & ((1ULL << (PAGE_SHIFT + (((level) - 1) \ |
| 118 | * PT64_LEVEL_BITS))) - 1)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 119 | |
| 120 | #define PT32_BASE_ADDR_MASK PAGE_MASK |
| 121 | #define PT32_DIR_BASE_ADDR_MASK \ |
| 122 | (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + PT32_LEVEL_BITS)) - 1)) |
Joerg Roedel | e04da98 | 2009-07-27 16:30:45 +0200 | [diff] [blame] | 123 | #define PT32_LVL_ADDR_MASK(level) \ |
| 124 | (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + (((level) - 1) \ |
| 125 | * PT32_LEVEL_BITS))) - 1)) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 126 | |
Gleb Natapov | 5316622 | 2013-08-05 11:07:14 +0300 | [diff] [blame] | 127 | #define PT64_PERM_MASK (PT_PRESENT_MASK | PT_WRITABLE_MASK | shadow_user_mask \ |
| 128 | | shadow_x_mask | shadow_nx_mask) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 129 | |
Avi Kivity | fe135d2 | 2007-12-09 16:15:46 +0200 | [diff] [blame] | 130 | #define ACC_EXEC_MASK 1 |
| 131 | #define ACC_WRITE_MASK PT_WRITABLE_MASK |
| 132 | #define ACC_USER_MASK PT_USER_MASK |
| 133 | #define ACC_ALL (ACC_EXEC_MASK | ACC_WRITE_MASK | ACC_USER_MASK) |
| 134 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 135 | /* The mask for the R/X bits in EPT PTEs */ |
| 136 | #define PT64_EPT_READABLE_MASK 0x1ull |
| 137 | #define PT64_EPT_EXECUTABLE_MASK 0x4ull |
| 138 | |
Avi Kivity | 90bb6fc | 2009-12-31 12:10:16 +0200 | [diff] [blame] | 139 | #include <trace/events/kvm.h> |
| 140 | |
Avi Kivity | 0742017 | 2009-07-06 12:21:32 +0300 | [diff] [blame] | 141 | #define CREATE_TRACE_POINTS |
| 142 | #include "mmutrace.h" |
| 143 | |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 144 | #define SPTE_HOST_WRITEABLE (1ULL << PT_FIRST_AVAIL_BITS_SHIFT) |
| 145 | #define SPTE_MMU_WRITEABLE (1ULL << (PT_FIRST_AVAIL_BITS_SHIFT + 1)) |
Izik Eidus | 1403283 | 2009-09-23 21:47:17 +0300 | [diff] [blame] | 146 | |
Avi Kivity | 135f8c2 | 2008-08-21 17:49:56 +0300 | [diff] [blame] | 147 | #define SHADOW_PT_INDEX(addr, level) PT64_INDEX(addr, level) |
| 148 | |
Takuya Yoshikawa | 220f773 | 2012-03-21 23:49:39 +0900 | [diff] [blame] | 149 | /* make pte_list_desc fit well in cache line */ |
| 150 | #define PTE_LIST_EXT 3 |
| 151 | |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 152 | struct pte_list_desc { |
| 153 | u64 *sptes[PTE_LIST_EXT]; |
| 154 | struct pte_list_desc *more; |
Avi Kivity | cd4a4e5 | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 155 | }; |
| 156 | |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 157 | struct kvm_shadow_walk_iterator { |
| 158 | u64 addr; |
| 159 | hpa_t shadow_addr; |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 160 | u64 *sptep; |
Xiao Guangrong | dd3bfd5 | 2011-07-12 03:32:54 +0800 | [diff] [blame] | 161 | int level; |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 162 | unsigned index; |
| 163 | }; |
| 164 | |
| 165 | #define for_each_shadow_entry(_vcpu, _addr, _walker) \ |
| 166 | for (shadow_walk_init(&(_walker), _vcpu, _addr); \ |
| 167 | shadow_walk_okay(&(_walker)); \ |
| 168 | shadow_walk_next(&(_walker))) |
| 169 | |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 170 | #define for_each_shadow_entry_lockless(_vcpu, _addr, _walker, spte) \ |
| 171 | for (shadow_walk_init(&(_walker), _vcpu, _addr); \ |
| 172 | shadow_walk_okay(&(_walker)) && \ |
| 173 | ({ spte = mmu_spte_get_lockless(_walker.sptep); 1; }); \ |
| 174 | __shadow_walk_next(&(_walker), spte)) |
| 175 | |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 176 | static struct kmem_cache *pte_list_desc_cache; |
Avi Kivity | d3d25b0 | 2007-05-30 12:34:53 +0300 | [diff] [blame] | 177 | static struct kmem_cache *mmu_page_header_cache; |
Dave Hansen | 45221ab | 2010-08-19 18:11:37 -0700 | [diff] [blame] | 178 | static struct percpu_counter kvm_total_used_mmu_pages; |
Avi Kivity | b5a33a7 | 2007-04-15 16:31:09 +0300 | [diff] [blame] | 179 | |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 180 | static u64 __read_mostly shadow_nx_mask; |
| 181 | static u64 __read_mostly shadow_x_mask; /* mutual exclusive with nx_mask */ |
| 182 | static u64 __read_mostly shadow_user_mask; |
| 183 | static u64 __read_mostly shadow_accessed_mask; |
| 184 | static u64 __read_mostly shadow_dirty_mask; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 185 | static u64 __read_mostly shadow_mmio_mask; |
Peter Feiner | dcdca5f | 2017-06-30 17:26:30 -0700 | [diff] [blame^] | 186 | static u64 __read_mostly shadow_mmio_value; |
Bandan Das | ffb128c | 2016-07-12 18:18:49 -0400 | [diff] [blame] | 187 | static u64 __read_mostly shadow_present_mask; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 188 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 189 | /* |
| 190 | * The mask/value to distinguish a PTE that has been marked not-present for |
| 191 | * access tracking purposes. |
| 192 | * The mask would be either 0 if access tracking is disabled, or |
| 193 | * SPTE_SPECIAL_MASK|VMX_EPT_RWX_MASK if access tracking is enabled. |
| 194 | */ |
| 195 | static u64 __read_mostly shadow_acc_track_mask; |
| 196 | static const u64 shadow_acc_track_value = SPTE_SPECIAL_MASK; |
| 197 | |
| 198 | /* |
| 199 | * The mask/shift to use for saving the original R/X bits when marking the PTE |
| 200 | * as not-present for access tracking purposes. We do not save the W bit as the |
| 201 | * PTEs being access tracked also need to be dirty tracked, so the W bit will be |
| 202 | * restored only when a write is attempted to the page. |
| 203 | */ |
| 204 | static const u64 shadow_acc_track_saved_bits_mask = PT64_EPT_READABLE_MASK | |
| 205 | PT64_EPT_EXECUTABLE_MASK; |
| 206 | static const u64 shadow_acc_track_saved_bits_shift = PT64_SECOND_AVAIL_BITS_SHIFT; |
| 207 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 208 | static void mmu_spte_set(u64 *sptep, u64 spte); |
Avi Kivity | e676505 | 2012-07-08 17:16:30 +0300 | [diff] [blame] | 209 | static void mmu_free_roots(struct kvm_vcpu *vcpu); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 210 | |
Peter Feiner | dcdca5f | 2017-06-30 17:26:30 -0700 | [diff] [blame^] | 211 | 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] | 212 | { |
Peter Feiner | dcdca5f | 2017-06-30 17:26:30 -0700 | [diff] [blame^] | 213 | BUG_ON((mmio_mask & mmio_value) != mmio_value); |
| 214 | shadow_mmio_value = mmio_value | SPTE_SPECIAL_MASK; |
Junaid Shahid | 312b616 | 2016-12-21 20:29:29 -0800 | [diff] [blame] | 215 | shadow_mmio_mask = mmio_mask | SPTE_SPECIAL_MASK; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 216 | } |
| 217 | EXPORT_SYMBOL_GPL(kvm_mmu_set_mmio_spte_mask); |
| 218 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 219 | static inline bool is_access_track_spte(u64 spte) |
| 220 | { |
| 221 | /* Always false if shadow_acc_track_mask is zero. */ |
| 222 | return (spte & shadow_acc_track_mask) == shadow_acc_track_value; |
| 223 | } |
| 224 | |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 225 | /* |
David Matlack | ee3d157 | 2014-08-18 15:46:06 -0700 | [diff] [blame] | 226 | * the low bit of the generation number is always presumed to be zero. |
| 227 | * This disables mmio caching during memslot updates. The concept is |
| 228 | * similar to a seqcount but instead of retrying the access we just punt |
| 229 | * and ignore the cache. |
| 230 | * |
| 231 | * spte bits 3-11 are used as bits 1-9 of the generation number, |
| 232 | * 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] | 233 | */ |
David Matlack | ee3d157 | 2014-08-18 15:46:06 -0700 | [diff] [blame] | 234 | #define MMIO_SPTE_GEN_LOW_SHIFT 2 |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 235 | #define MMIO_SPTE_GEN_HIGH_SHIFT 52 |
| 236 | |
David Matlack | ee3d157 | 2014-08-18 15:46:06 -0700 | [diff] [blame] | 237 | #define MMIO_GEN_SHIFT 20 |
| 238 | #define MMIO_GEN_LOW_SHIFT 10 |
| 239 | #define MMIO_GEN_LOW_MASK ((1 << MMIO_GEN_LOW_SHIFT) - 2) |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 240 | #define MMIO_GEN_MASK ((1 << MMIO_GEN_SHIFT) - 1) |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 241 | |
| 242 | static u64 generation_mmio_spte_mask(unsigned int gen) |
| 243 | { |
| 244 | u64 mask; |
| 245 | |
Tiejun Chen | 842bb26 | 2014-11-18 17:14:38 +0800 | [diff] [blame] | 246 | WARN_ON(gen & ~MMIO_GEN_MASK); |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 247 | |
| 248 | mask = (gen & MMIO_GEN_LOW_MASK) << MMIO_SPTE_GEN_LOW_SHIFT; |
| 249 | mask |= ((u64)gen >> MMIO_GEN_LOW_SHIFT) << MMIO_SPTE_GEN_HIGH_SHIFT; |
| 250 | return mask; |
| 251 | } |
| 252 | |
| 253 | static unsigned int get_mmio_spte_generation(u64 spte) |
| 254 | { |
| 255 | unsigned int gen; |
| 256 | |
| 257 | spte &= ~shadow_mmio_mask; |
| 258 | |
| 259 | gen = (spte >> MMIO_SPTE_GEN_LOW_SHIFT) & MMIO_GEN_LOW_MASK; |
| 260 | gen |= (spte >> MMIO_SPTE_GEN_HIGH_SHIFT) << MMIO_GEN_LOW_SHIFT; |
| 261 | return gen; |
| 262 | } |
| 263 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 264 | static unsigned int kvm_current_mmio_generation(struct kvm_vcpu *vcpu) |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 265 | { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 266 | return kvm_vcpu_memslots(vcpu)->generation & MMIO_GEN_MASK; |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 267 | } |
| 268 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 269 | 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] | 270 | unsigned access) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 271 | { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 272 | unsigned int gen = kvm_current_mmio_generation(vcpu); |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 273 | u64 mask = generation_mmio_spte_mask(gen); |
Takuya Yoshikawa | 95b0430 | 2013-03-12 17:44:40 +0900 | [diff] [blame] | 274 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 275 | access &= ACC_WRITE_MASK | ACC_USER_MASK; |
Peter Feiner | dcdca5f | 2017-06-30 17:26:30 -0700 | [diff] [blame^] | 276 | mask |= shadow_mmio_value | access | gfn << PAGE_SHIFT; |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 277 | |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 278 | trace_mark_mmio_spte(sptep, gfn, access, gen); |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 279 | mmu_spte_set(sptep, mask); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 280 | } |
| 281 | |
| 282 | static bool is_mmio_spte(u64 spte) |
| 283 | { |
Peter Feiner | dcdca5f | 2017-06-30 17:26:30 -0700 | [diff] [blame^] | 284 | return (spte & shadow_mmio_mask) == shadow_mmio_value; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 285 | } |
| 286 | |
| 287 | static gfn_t get_mmio_spte_gfn(u64 spte) |
| 288 | { |
Tiejun Chen | 842bb26 | 2014-11-18 17:14:38 +0800 | [diff] [blame] | 289 | u64 mask = generation_mmio_spte_mask(MMIO_GEN_MASK) | shadow_mmio_mask; |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 290 | return (spte & ~mask) >> PAGE_SHIFT; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 291 | } |
| 292 | |
| 293 | static unsigned get_mmio_spte_access(u64 spte) |
| 294 | { |
Tiejun Chen | 842bb26 | 2014-11-18 17:14:38 +0800 | [diff] [blame] | 295 | u64 mask = generation_mmio_spte_mask(MMIO_GEN_MASK) | shadow_mmio_mask; |
Xiao Guangrong | f2fd125 | 2013-06-07 16:51:24 +0800 | [diff] [blame] | 296 | return (spte & ~mask) & ~PAGE_MASK; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 297 | } |
| 298 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 299 | 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] | 300 | kvm_pfn_t pfn, unsigned access) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 301 | { |
| 302 | if (unlikely(is_noslot_pfn(pfn))) { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 303 | mark_mmio_spte(vcpu, sptep, gfn, access); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 304 | return true; |
| 305 | } |
| 306 | |
| 307 | return false; |
| 308 | } |
Avi Kivity | c7addb9 | 2007-09-16 18:58:32 +0200 | [diff] [blame] | 309 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 310 | static bool check_mmio_spte(struct kvm_vcpu *vcpu, u64 spte) |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 311 | { |
Xiao Guangrong | 089504c | 2013-06-07 16:51:27 +0800 | [diff] [blame] | 312 | unsigned int kvm_gen, spte_gen; |
| 313 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 314 | kvm_gen = kvm_current_mmio_generation(vcpu); |
Xiao Guangrong | 089504c | 2013-06-07 16:51:27 +0800 | [diff] [blame] | 315 | spte_gen = get_mmio_spte_generation(spte); |
| 316 | |
| 317 | trace_check_mmio_spte(spte, kvm_gen, spte_gen); |
| 318 | return likely(kvm_gen == spte_gen); |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 319 | } |
| 320 | |
Peter Feiner | ce00053 | 2017-06-30 17:26:29 -0700 | [diff] [blame] | 321 | /* |
| 322 | * Sets the shadow PTE masks used by the MMU. |
| 323 | * |
| 324 | * Assumptions: |
| 325 | * - Setting either @accessed_mask or @dirty_mask requires setting both |
| 326 | * - At least one of @accessed_mask or @acc_track_mask must be set |
| 327 | */ |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 328 | void kvm_mmu_set_mask_ptes(u64 user_mask, u64 accessed_mask, |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 329 | u64 dirty_mask, u64 nx_mask, u64 x_mask, u64 p_mask, |
| 330 | u64 acc_track_mask) |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 331 | { |
Junaid Shahid | 312b616 | 2016-12-21 20:29:29 -0800 | [diff] [blame] | 332 | if (acc_track_mask != 0) |
| 333 | acc_track_mask |= SPTE_SPECIAL_MASK; |
Peter Feiner | ce00053 | 2017-06-30 17:26:29 -0700 | [diff] [blame] | 334 | BUG_ON(!dirty_mask != !accessed_mask); |
| 335 | BUG_ON(!accessed_mask && !acc_track_mask); |
Junaid Shahid | 312b616 | 2016-12-21 20:29:29 -0800 | [diff] [blame] | 336 | |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 337 | shadow_user_mask = user_mask; |
| 338 | shadow_accessed_mask = accessed_mask; |
| 339 | shadow_dirty_mask = dirty_mask; |
| 340 | shadow_nx_mask = nx_mask; |
| 341 | shadow_x_mask = x_mask; |
Bandan Das | ffb128c | 2016-07-12 18:18:49 -0400 | [diff] [blame] | 342 | shadow_present_mask = p_mask; |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 343 | shadow_acc_track_mask = acc_track_mask; |
| 344 | WARN_ON(shadow_accessed_mask != 0 && shadow_acc_track_mask != 0); |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 345 | } |
| 346 | EXPORT_SYMBOL_GPL(kvm_mmu_set_mask_ptes); |
| 347 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 348 | void kvm_mmu_clear_all_pte_masks(void) |
| 349 | { |
| 350 | shadow_user_mask = 0; |
| 351 | shadow_accessed_mask = 0; |
| 352 | shadow_dirty_mask = 0; |
| 353 | shadow_nx_mask = 0; |
| 354 | shadow_x_mask = 0; |
| 355 | shadow_mmio_mask = 0; |
| 356 | shadow_present_mask = 0; |
| 357 | shadow_acc_track_mask = 0; |
| 358 | } |
| 359 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 360 | static int is_cpuid_PSE36(void) |
| 361 | { |
| 362 | return 1; |
| 363 | } |
| 364 | |
Avi Kivity | 73b1087 | 2007-01-26 00:56:41 -0800 | [diff] [blame] | 365 | static int is_nx(struct kvm_vcpu *vcpu) |
| 366 | { |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 367 | return vcpu->arch.efer & EFER_NX; |
Avi Kivity | 73b1087 | 2007-01-26 00:56:41 -0800 | [diff] [blame] | 368 | } |
| 369 | |
Avi Kivity | c7addb9 | 2007-09-16 18:58:32 +0200 | [diff] [blame] | 370 | static int is_shadow_present_pte(u64 pte) |
| 371 | { |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 372 | return (pte != 0) && !is_mmio_spte(pte); |
Avi Kivity | c7addb9 | 2007-09-16 18:58:32 +0200 | [diff] [blame] | 373 | } |
| 374 | |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 375 | static int is_large_pte(u64 pte) |
| 376 | { |
| 377 | return pte & PT_PAGE_SIZE_MASK; |
| 378 | } |
| 379 | |
Marcelo Tosatti | 776e663 | 2009-06-10 12:27:03 -0300 | [diff] [blame] | 380 | static int is_last_spte(u64 pte, int level) |
| 381 | { |
| 382 | if (level == PT_PAGE_TABLE_LEVEL) |
| 383 | return 1; |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 384 | if (is_large_pte(pte)) |
Marcelo Tosatti | 776e663 | 2009-06-10 12:27:03 -0300 | [diff] [blame] | 385 | return 1; |
| 386 | return 0; |
| 387 | } |
| 388 | |
Junaid Shahid | d3e328f | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 389 | static bool is_executable_pte(u64 spte) |
| 390 | { |
| 391 | return (spte & (shadow_x_mask | shadow_nx_mask)) == shadow_x_mask; |
| 392 | } |
| 393 | |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 394 | static kvm_pfn_t spte_to_pfn(u64 pte) |
Avi Kivity | 0b49ea8 | 2008-03-23 15:06:23 +0200 | [diff] [blame] | 395 | { |
Anthony Liguori | 35149e2 | 2008-04-02 14:46:56 -0500 | [diff] [blame] | 396 | return (pte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT; |
Avi Kivity | 0b49ea8 | 2008-03-23 15:06:23 +0200 | [diff] [blame] | 397 | } |
| 398 | |
Avi Kivity | da92852 | 2007-11-21 13:54:47 +0200 | [diff] [blame] | 399 | static gfn_t pse36_gfn_delta(u32 gpte) |
| 400 | { |
| 401 | int shift = 32 - PT32_DIR_PSE36_SHIFT - PAGE_SHIFT; |
| 402 | |
| 403 | return (gpte & PT32_DIR_PSE36_MASK) << shift; |
| 404 | } |
| 405 | |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 406 | #ifdef CONFIG_X86_64 |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 407 | static void __set_spte(u64 *sptep, u64 spte) |
Avi Kivity | e663ee6 | 2007-05-31 15:46:04 +0300 | [diff] [blame] | 408 | { |
Nadav Amit | b19ee2f | 2016-05-11 08:04:29 -0700 | [diff] [blame] | 409 | WRITE_ONCE(*sptep, spte); |
Avi Kivity | e663ee6 | 2007-05-31 15:46:04 +0300 | [diff] [blame] | 410 | } |
| 411 | |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 412 | static void __update_clear_spte_fast(u64 *sptep, u64 spte) |
Avi Kivity | a9221dd | 2010-06-06 14:48:06 +0300 | [diff] [blame] | 413 | { |
Nadav Amit | b19ee2f | 2016-05-11 08:04:29 -0700 | [diff] [blame] | 414 | WRITE_ONCE(*sptep, spte); |
Avi Kivity | a9221dd | 2010-06-06 14:48:06 +0300 | [diff] [blame] | 415 | } |
| 416 | |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 417 | static u64 __update_clear_spte_slow(u64 *sptep, u64 spte) |
| 418 | { |
| 419 | return xchg(sptep, spte); |
| 420 | } |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 421 | |
| 422 | static u64 __get_spte_lockless(u64 *sptep) |
| 423 | { |
| 424 | return ACCESS_ONCE(*sptep); |
| 425 | } |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 426 | #else |
| 427 | union split_spte { |
| 428 | struct { |
| 429 | u32 spte_low; |
| 430 | u32 spte_high; |
| 431 | }; |
| 432 | u64 spte; |
| 433 | }; |
| 434 | |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 435 | static void count_spte_clear(u64 *sptep, u64 spte) |
| 436 | { |
| 437 | struct kvm_mmu_page *sp = page_header(__pa(sptep)); |
| 438 | |
| 439 | if (is_shadow_present_pte(spte)) |
| 440 | return; |
| 441 | |
| 442 | /* Ensure the spte is completely set before we increase the count */ |
| 443 | smp_wmb(); |
| 444 | sp->clear_spte_count++; |
| 445 | } |
| 446 | |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 447 | static void __set_spte(u64 *sptep, u64 spte) |
| 448 | { |
| 449 | union split_spte *ssptep, sspte; |
| 450 | |
| 451 | ssptep = (union split_spte *)sptep; |
| 452 | sspte = (union split_spte)spte; |
| 453 | |
| 454 | ssptep->spte_high = sspte.spte_high; |
| 455 | |
| 456 | /* |
| 457 | * If we map the spte from nonpresent to present, We should store |
| 458 | * the high bits firstly, then set present bit, so cpu can not |
| 459 | * fetch this spte while we are setting the spte. |
| 460 | */ |
| 461 | smp_wmb(); |
| 462 | |
Nadav Amit | b19ee2f | 2016-05-11 08:04:29 -0700 | [diff] [blame] | 463 | WRITE_ONCE(ssptep->spte_low, sspte.spte_low); |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 464 | } |
| 465 | |
| 466 | static void __update_clear_spte_fast(u64 *sptep, u64 spte) |
| 467 | { |
| 468 | union split_spte *ssptep, sspte; |
| 469 | |
| 470 | ssptep = (union split_spte *)sptep; |
| 471 | sspte = (union split_spte)spte; |
| 472 | |
Nadav Amit | b19ee2f | 2016-05-11 08:04:29 -0700 | [diff] [blame] | 473 | WRITE_ONCE(ssptep->spte_low, sspte.spte_low); |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 474 | |
| 475 | /* |
| 476 | * If we map the spte from present to nonpresent, we should clear |
| 477 | * present bit firstly to avoid vcpu fetch the old high bits. |
| 478 | */ |
| 479 | smp_wmb(); |
| 480 | |
| 481 | ssptep->spte_high = sspte.spte_high; |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 482 | count_spte_clear(sptep, spte); |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 483 | } |
| 484 | |
| 485 | static u64 __update_clear_spte_slow(u64 *sptep, u64 spte) |
| 486 | { |
| 487 | union split_spte *ssptep, sspte, orig; |
| 488 | |
| 489 | ssptep = (union split_spte *)sptep; |
| 490 | sspte = (union split_spte)spte; |
| 491 | |
| 492 | /* xchg acts as a barrier before the setting of the high bits */ |
| 493 | orig.spte_low = xchg(&ssptep->spte_low, sspte.spte_low); |
Zhao Jin | 41bc318 | 2011-09-19 12:19:51 +0800 | [diff] [blame] | 494 | orig.spte_high = ssptep->spte_high; |
| 495 | ssptep->spte_high = sspte.spte_high; |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 496 | count_spte_clear(sptep, spte); |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 497 | |
| 498 | return orig.spte; |
| 499 | } |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 500 | |
| 501 | /* |
| 502 | * The idea using the light way get the spte on x86_32 guest is from |
| 503 | * gup_get_pte(arch/x86/mm/gup.c). |
Xiao Guangrong | accaefe | 2013-06-19 17:09:20 +0800 | [diff] [blame] | 504 | * |
| 505 | * An spte tlb flush may be pending, because kvm_set_pte_rmapp |
| 506 | * coalesces them and we are running out of the MMU lock. Therefore |
| 507 | * we need to protect against in-progress updates of the spte. |
| 508 | * |
| 509 | * Reading the spte while an update is in progress may get the old value |
| 510 | * for the high part of the spte. The race is fine for a present->non-present |
| 511 | * change (because the high part of the spte is ignored for non-present spte), |
| 512 | * but for a present->present change we must reread the spte. |
| 513 | * |
| 514 | * All such changes are done in two steps (present->non-present and |
| 515 | * non-present->present), hence it is enough to count the number of |
| 516 | * present->non-present updates: if it changed while reading the spte, |
| 517 | * 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] | 518 | */ |
| 519 | static u64 __get_spte_lockless(u64 *sptep) |
| 520 | { |
| 521 | struct kvm_mmu_page *sp = page_header(__pa(sptep)); |
| 522 | union split_spte spte, *orig = (union split_spte *)sptep; |
| 523 | int count; |
| 524 | |
| 525 | retry: |
| 526 | count = sp->clear_spte_count; |
| 527 | smp_rmb(); |
| 528 | |
| 529 | spte.spte_low = orig->spte_low; |
| 530 | smp_rmb(); |
| 531 | |
| 532 | spte.spte_high = orig->spte_high; |
| 533 | smp_rmb(); |
| 534 | |
| 535 | if (unlikely(spte.spte_low != orig->spte_low || |
| 536 | count != sp->clear_spte_count)) |
| 537 | goto retry; |
| 538 | |
| 539 | return spte.spte; |
| 540 | } |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 541 | #endif |
| 542 | |
Junaid Shahid | ea4114b | 2016-12-06 16:46:11 -0800 | [diff] [blame] | 543 | static bool spte_can_locklessly_be_made_writable(u64 spte) |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 544 | { |
Gleb Natapov | feb3eb7 | 2013-01-30 16:45:00 +0200 | [diff] [blame] | 545 | return (spte & (SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE)) == |
| 546 | (SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE); |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 547 | } |
| 548 | |
Xiao Guangrong | 8672b721 | 2010-08-02 16:14:04 +0800 | [diff] [blame] | 549 | static bool spte_has_volatile_bits(u64 spte) |
| 550 | { |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 551 | if (!is_shadow_present_pte(spte)) |
| 552 | return false; |
| 553 | |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 554 | /* |
Adam Buchbinder | 6a6256f | 2016-02-23 15:34:30 -0800 | [diff] [blame] | 555 | * Always atomically update spte if it can be updated |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 556 | * out of mmu-lock, it can ensure dirty bit is not lost, |
| 557 | * also, it can help us to get a stable is_writable_pte() |
| 558 | * to ensure tlb flush is not missed. |
| 559 | */ |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 560 | if (spte_can_locklessly_be_made_writable(spte) || |
| 561 | is_access_track_spte(spte)) |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 562 | return true; |
| 563 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 564 | if (shadow_accessed_mask) { |
| 565 | if ((spte & shadow_accessed_mask) == 0 || |
| 566 | (is_writable_pte(spte) && (spte & shadow_dirty_mask) == 0)) |
| 567 | return true; |
| 568 | } |
Xiao Guangrong | 8672b721 | 2010-08-02 16:14:04 +0800 | [diff] [blame] | 569 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 570 | return false; |
Xiao Guangrong | 8672b721 | 2010-08-02 16:14:04 +0800 | [diff] [blame] | 571 | } |
| 572 | |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 573 | static bool is_accessed_spte(u64 spte) |
Xiao Guangrong | 4132779 | 2010-08-02 16:15:08 +0800 | [diff] [blame] | 574 | { |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 575 | return shadow_accessed_mask ? spte & shadow_accessed_mask |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 576 | : !is_access_track_spte(spte); |
Xiao Guangrong | 4132779 | 2010-08-02 16:15:08 +0800 | [diff] [blame] | 577 | } |
| 578 | |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 579 | static bool is_dirty_spte(u64 spte) |
Kai Huang | 7e71a59 | 2015-01-09 16:44:30 +0800 | [diff] [blame] | 580 | { |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 581 | return shadow_dirty_mask ? spte & shadow_dirty_mask |
| 582 | : spte & PT_WRITABLE_MASK; |
Kai Huang | 7e71a59 | 2015-01-09 16:44:30 +0800 | [diff] [blame] | 583 | } |
| 584 | |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 585 | /* Rules for using mmu_spte_set: |
| 586 | * Set the sptep from nonpresent to present. |
| 587 | * Note: the sptep being assigned *must* be either not present |
| 588 | * or in a state where the hardware will not attempt to update |
| 589 | * the spte. |
| 590 | */ |
| 591 | static void mmu_spte_set(u64 *sptep, u64 new_spte) |
| 592 | { |
| 593 | WARN_ON(is_shadow_present_pte(*sptep)); |
| 594 | __set_spte(sptep, new_spte); |
| 595 | } |
| 596 | |
Junaid Shahid | f39a058 | 2016-12-06 16:46:14 -0800 | [diff] [blame] | 597 | /* |
| 598 | * Update the SPTE (excluding the PFN), but do not track changes in its |
| 599 | * accessed/dirty status. |
| 600 | */ |
| 601 | static u64 mmu_spte_update_no_track(u64 *sptep, u64 new_spte) |
| 602 | { |
| 603 | u64 old_spte = *sptep; |
| 604 | |
| 605 | WARN_ON(!is_shadow_present_pte(new_spte)); |
| 606 | |
| 607 | if (!is_shadow_present_pte(old_spte)) { |
| 608 | mmu_spte_set(sptep, new_spte); |
| 609 | return old_spte; |
| 610 | } |
| 611 | |
| 612 | if (!spte_has_volatile_bits(old_spte)) |
| 613 | __update_clear_spte_fast(sptep, new_spte); |
| 614 | else |
| 615 | old_spte = __update_clear_spte_slow(sptep, new_spte); |
| 616 | |
| 617 | WARN_ON(spte_to_pfn(old_spte) != spte_to_pfn(new_spte)); |
| 618 | |
| 619 | return old_spte; |
| 620 | } |
| 621 | |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 622 | /* Rules for using mmu_spte_update: |
Andrea Gelmini | bb3541f | 2016-05-21 14:14:44 +0200 | [diff] [blame] | 623 | * Update the state bits, it means the mapped pfn is not changed. |
Xiao Guangrong | 6e7d035 | 2012-06-20 15:58:33 +0800 | [diff] [blame] | 624 | * |
| 625 | * Whenever we overwrite a writable spte with a read-only one we |
| 626 | * should flush remote TLBs. Otherwise rmap_write_protect |
| 627 | * will find a read-only spte, even though the writable spte |
| 628 | * might be cached on a CPU's TLB, the return value indicates this |
| 629 | * case. |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 630 | * |
| 631 | * Returns true if the TLB needs to be flushed |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 632 | */ |
Xiao Guangrong | 6e7d035 | 2012-06-20 15:58:33 +0800 | [diff] [blame] | 633 | static bool mmu_spte_update(u64 *sptep, u64 new_spte) |
Avi Kivity | b79b93f | 2010-06-06 15:46:44 +0300 | [diff] [blame] | 634 | { |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 635 | bool flush = false; |
Junaid Shahid | f39a058 | 2016-12-06 16:46:14 -0800 | [diff] [blame] | 636 | u64 old_spte = mmu_spte_update_no_track(sptep, new_spte); |
Avi Kivity | b79b93f | 2010-06-06 15:46:44 +0300 | [diff] [blame] | 637 | |
Junaid Shahid | f39a058 | 2016-12-06 16:46:14 -0800 | [diff] [blame] | 638 | if (!is_shadow_present_pte(old_spte)) |
| 639 | return false; |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 640 | |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 641 | /* |
| 642 | * For the spte updated out of mmu-lock is safe, since |
Adam Buchbinder | 6a6256f | 2016-02-23 15:34:30 -0800 | [diff] [blame] | 643 | * we always atomically update it, see the comments in |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 644 | * spte_has_volatile_bits(). |
| 645 | */ |
Junaid Shahid | ea4114b | 2016-12-06 16:46:11 -0800 | [diff] [blame] | 646 | if (spte_can_locklessly_be_made_writable(old_spte) && |
Xiao Guangrong | 7f31c95 | 2014-04-17 17:06:15 +0800 | [diff] [blame] | 647 | !is_writable_pte(new_spte)) |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 648 | flush = true; |
Xiao Guangrong | 4132779 | 2010-08-02 16:15:08 +0800 | [diff] [blame] | 649 | |
Kai Huang | 7e71a59 | 2015-01-09 16:44:30 +0800 | [diff] [blame] | 650 | /* |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 651 | * Flush TLB when accessed/dirty states are changed in the page tables, |
Kai Huang | 7e71a59 | 2015-01-09 16:44:30 +0800 | [diff] [blame] | 652 | * to guarantee consistency between TLB and page tables. |
| 653 | */ |
Kai Huang | 7e71a59 | 2015-01-09 16:44:30 +0800 | [diff] [blame] | 654 | |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 655 | if (is_accessed_spte(old_spte) && !is_accessed_spte(new_spte)) { |
| 656 | flush = true; |
Xiao Guangrong | 4132779 | 2010-08-02 16:15:08 +0800 | [diff] [blame] | 657 | kvm_set_pfn_accessed(spte_to_pfn(old_spte)); |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 658 | } |
Xiao Guangrong | 6e7d035 | 2012-06-20 15:58:33 +0800 | [diff] [blame] | 659 | |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 660 | if (is_dirty_spte(old_spte) && !is_dirty_spte(new_spte)) { |
| 661 | flush = true; |
| 662 | kvm_set_pfn_dirty(spte_to_pfn(old_spte)); |
| 663 | } |
| 664 | |
| 665 | return flush; |
Avi Kivity | b79b93f | 2010-06-06 15:46:44 +0300 | [diff] [blame] | 666 | } |
| 667 | |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 668 | /* |
| 669 | * Rules for using mmu_spte_clear_track_bits: |
| 670 | * It sets the sptep from present to nonpresent, and track the |
| 671 | * state bits, it is used to clear the last level sptep. |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 672 | * Returns non-zero if the PTE was previously valid. |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 673 | */ |
| 674 | static int mmu_spte_clear_track_bits(u64 *sptep) |
| 675 | { |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 676 | kvm_pfn_t pfn; |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 677 | u64 old_spte = *sptep; |
| 678 | |
| 679 | if (!spte_has_volatile_bits(old_spte)) |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 680 | __update_clear_spte_fast(sptep, 0ull); |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 681 | else |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 682 | old_spte = __update_clear_spte_slow(sptep, 0ull); |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 683 | |
Takuya Yoshikawa | afd28fe | 2015-11-20 17:44:55 +0900 | [diff] [blame] | 684 | if (!is_shadow_present_pte(old_spte)) |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 685 | return 0; |
| 686 | |
| 687 | pfn = spte_to_pfn(old_spte); |
Xiao Guangrong | 86fde74 | 2012-07-17 21:52:52 +0800 | [diff] [blame] | 688 | |
| 689 | /* |
| 690 | * KVM does not hold the refcount of the page used by |
| 691 | * kvm mmu, before reclaiming the page, we should |
| 692 | * unmap it from mmu first. |
| 693 | */ |
Ard Biesheuvel | bf4bea8 | 2014-11-10 08:33:56 +0000 | [diff] [blame] | 694 | 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] | 695 | |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 696 | if (is_accessed_spte(old_spte)) |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 697 | kvm_set_pfn_accessed(pfn); |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 698 | |
| 699 | if (is_dirty_spte(old_spte)) |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 700 | kvm_set_pfn_dirty(pfn); |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 701 | |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 702 | return 1; |
| 703 | } |
| 704 | |
| 705 | /* |
| 706 | * Rules for using mmu_spte_clear_no_track: |
| 707 | * Directly clear spte without caring the state bits of sptep, |
| 708 | * it is used to set the upper level spte. |
| 709 | */ |
| 710 | static void mmu_spte_clear_no_track(u64 *sptep) |
| 711 | { |
Xiao Guangrong | 603e065 | 2011-07-12 03:31:28 +0800 | [diff] [blame] | 712 | __update_clear_spte_fast(sptep, 0ull); |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 713 | } |
| 714 | |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 715 | static u64 mmu_spte_get_lockless(u64 *sptep) |
| 716 | { |
| 717 | return __get_spte_lockless(sptep); |
| 718 | } |
| 719 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 720 | static u64 mark_spte_for_access_track(u64 spte) |
| 721 | { |
| 722 | if (shadow_accessed_mask != 0) |
| 723 | return spte & ~shadow_accessed_mask; |
| 724 | |
| 725 | if (shadow_acc_track_mask == 0 || is_access_track_spte(spte)) |
| 726 | return spte; |
| 727 | |
| 728 | /* |
Junaid Shahid | 20d6523 | 2016-12-21 20:29:31 -0800 | [diff] [blame] | 729 | * Making an Access Tracking PTE will result in removal of write access |
| 730 | * from the PTE. So, verify that we will be able to restore the write |
| 731 | * access in the fast page fault path later on. |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 732 | */ |
| 733 | WARN_ONCE((spte & PT_WRITABLE_MASK) && |
| 734 | !spte_can_locklessly_be_made_writable(spte), |
| 735 | "kvm: Writable SPTE is not locklessly dirty-trackable\n"); |
| 736 | |
| 737 | WARN_ONCE(spte & (shadow_acc_track_saved_bits_mask << |
| 738 | shadow_acc_track_saved_bits_shift), |
| 739 | "kvm: Access Tracking saved bit locations are not zero\n"); |
| 740 | |
| 741 | spte |= (spte & shadow_acc_track_saved_bits_mask) << |
| 742 | shadow_acc_track_saved_bits_shift; |
| 743 | spte &= ~shadow_acc_track_mask; |
| 744 | spte |= shadow_acc_track_value; |
| 745 | |
| 746 | return spte; |
| 747 | } |
| 748 | |
Junaid Shahid | d3e328f | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 749 | /* Restore an acc-track PTE back to a regular PTE */ |
| 750 | static u64 restore_acc_track_spte(u64 spte) |
| 751 | { |
| 752 | u64 new_spte = spte; |
| 753 | u64 saved_bits = (spte >> shadow_acc_track_saved_bits_shift) |
| 754 | & shadow_acc_track_saved_bits_mask; |
| 755 | |
| 756 | WARN_ON_ONCE(!is_access_track_spte(spte)); |
| 757 | |
| 758 | new_spte &= ~shadow_acc_track_mask; |
| 759 | new_spte &= ~(shadow_acc_track_saved_bits_mask << |
| 760 | shadow_acc_track_saved_bits_shift); |
| 761 | new_spte |= saved_bits; |
| 762 | |
| 763 | return new_spte; |
| 764 | } |
| 765 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 766 | /* Returns the Accessed status of the PTE and resets it at the same time. */ |
| 767 | static bool mmu_spte_age(u64 *sptep) |
| 768 | { |
| 769 | u64 spte = mmu_spte_get_lockless(sptep); |
| 770 | |
| 771 | if (!is_accessed_spte(spte)) |
| 772 | return false; |
| 773 | |
| 774 | if (shadow_accessed_mask) { |
| 775 | clear_bit((ffs(shadow_accessed_mask) - 1), |
| 776 | (unsigned long *)sptep); |
| 777 | } else { |
| 778 | /* |
| 779 | * Capture the dirty status of the page, so that it doesn't get |
| 780 | * lost when the SPTE is marked for access tracking. |
| 781 | */ |
| 782 | if (is_writable_pte(spte)) |
| 783 | kvm_set_pfn_dirty(spte_to_pfn(spte)); |
| 784 | |
| 785 | spte = mark_spte_for_access_track(spte); |
| 786 | mmu_spte_update_no_track(sptep, spte); |
| 787 | } |
| 788 | |
| 789 | return true; |
| 790 | } |
| 791 | |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 792 | static void walk_shadow_page_lockless_begin(struct kvm_vcpu *vcpu) |
| 793 | { |
Avi Kivity | c142786 | 2012-05-14 15:44:06 +0300 | [diff] [blame] | 794 | /* |
| 795 | * Prevent page table teardown by making any free-er wait during |
| 796 | * kvm_flush_remote_tlbs() IPI to all active vcpus. |
| 797 | */ |
| 798 | local_irq_disable(); |
Lan Tianyu | 36ca7e0 | 2016-03-13 11:10:25 +0800 | [diff] [blame] | 799 | |
Avi Kivity | c142786 | 2012-05-14 15:44:06 +0300 | [diff] [blame] | 800 | /* |
| 801 | * Make sure a following spte read is not reordered ahead of the write |
| 802 | * to vcpu->mode. |
| 803 | */ |
Lan Tianyu | 36ca7e0 | 2016-03-13 11:10:25 +0800 | [diff] [blame] | 804 | smp_store_mb(vcpu->mode, READING_SHADOW_PAGE_TABLES); |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 805 | } |
| 806 | |
| 807 | static void walk_shadow_page_lockless_end(struct kvm_vcpu *vcpu) |
| 808 | { |
Avi Kivity | c142786 | 2012-05-14 15:44:06 +0300 | [diff] [blame] | 809 | /* |
| 810 | * Make sure the write to vcpu->mode is not reordered in front of |
| 811 | * reads to sptes. If it does, kvm_commit_zap_page() can see us |
| 812 | * OUTSIDE_GUEST_MODE and proceed to free the shadow page table. |
| 813 | */ |
Lan Tianyu | 36ca7e0 | 2016-03-13 11:10:25 +0800 | [diff] [blame] | 814 | smp_store_release(&vcpu->mode, OUTSIDE_GUEST_MODE); |
Avi Kivity | c142786 | 2012-05-14 15:44:06 +0300 | [diff] [blame] | 815 | local_irq_enable(); |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 816 | } |
| 817 | |
Avi Kivity | e2dec93 | 2007-01-05 16:36:54 -0800 | [diff] [blame] | 818 | static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache, |
Avi Kivity | 2e3e588 | 2007-09-10 11:28:17 +0300 | [diff] [blame] | 819 | struct kmem_cache *base_cache, int min) |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 820 | { |
| 821 | void *obj; |
| 822 | |
| 823 | if (cache->nobjs >= min) |
Avi Kivity | e2dec93 | 2007-01-05 16:36:54 -0800 | [diff] [blame] | 824 | return 0; |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 825 | while (cache->nobjs < ARRAY_SIZE(cache->objects)) { |
Avi Kivity | 2e3e588 | 2007-09-10 11:28:17 +0300 | [diff] [blame] | 826 | obj = kmem_cache_zalloc(base_cache, GFP_KERNEL); |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 827 | if (!obj) |
Avi Kivity | e2dec93 | 2007-01-05 16:36:54 -0800 | [diff] [blame] | 828 | return -ENOMEM; |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 829 | cache->objects[cache->nobjs++] = obj; |
| 830 | } |
Avi Kivity | e2dec93 | 2007-01-05 16:36:54 -0800 | [diff] [blame] | 831 | return 0; |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 832 | } |
| 833 | |
Xiao Guangrong | f759e2b | 2011-09-22 16:53:17 +0800 | [diff] [blame] | 834 | static int mmu_memory_cache_free_objects(struct kvm_mmu_memory_cache *cache) |
| 835 | { |
| 836 | return cache->nobjs; |
| 837 | } |
| 838 | |
Xiao Guangrong | e8ad9a7 | 2010-05-13 10:06:02 +0800 | [diff] [blame] | 839 | static void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc, |
| 840 | struct kmem_cache *cache) |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 841 | { |
| 842 | while (mc->nobjs) |
Xiao Guangrong | e8ad9a7 | 2010-05-13 10:06:02 +0800 | [diff] [blame] | 843 | kmem_cache_free(cache, mc->objects[--mc->nobjs]); |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 844 | } |
| 845 | |
Avi Kivity | c1158e6 | 2007-07-20 08:18:27 +0300 | [diff] [blame] | 846 | 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] | 847 | int min) |
Avi Kivity | c1158e6 | 2007-07-20 08:18:27 +0300 | [diff] [blame] | 848 | { |
Xiao Guangrong | 842f22e | 2011-03-04 19:01:10 +0800 | [diff] [blame] | 849 | void *page; |
Avi Kivity | c1158e6 | 2007-07-20 08:18:27 +0300 | [diff] [blame] | 850 | |
| 851 | if (cache->nobjs >= min) |
| 852 | return 0; |
| 853 | while (cache->nobjs < ARRAY_SIZE(cache->objects)) { |
Xiao Guangrong | 842f22e | 2011-03-04 19:01:10 +0800 | [diff] [blame] | 854 | page = (void *)__get_free_page(GFP_KERNEL); |
Avi Kivity | c1158e6 | 2007-07-20 08:18:27 +0300 | [diff] [blame] | 855 | if (!page) |
| 856 | return -ENOMEM; |
Xiao Guangrong | 842f22e | 2011-03-04 19:01:10 +0800 | [diff] [blame] | 857 | cache->objects[cache->nobjs++] = page; |
Avi Kivity | c1158e6 | 2007-07-20 08:18:27 +0300 | [diff] [blame] | 858 | } |
| 859 | return 0; |
| 860 | } |
| 861 | |
| 862 | static void mmu_free_memory_cache_page(struct kvm_mmu_memory_cache *mc) |
| 863 | { |
| 864 | while (mc->nobjs) |
Avi Kivity | c4d198d | 2007-07-21 09:06:46 +0300 | [diff] [blame] | 865 | free_page((unsigned long)mc->objects[--mc->nobjs]); |
Avi Kivity | c1158e6 | 2007-07-20 08:18:27 +0300 | [diff] [blame] | 866 | } |
| 867 | |
Avi Kivity | 8c43850 | 2007-04-16 11:53:17 +0300 | [diff] [blame] | 868 | static int mmu_topup_memory_caches(struct kvm_vcpu *vcpu) |
| 869 | { |
| 870 | int r; |
| 871 | |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 872 | r = mmu_topup_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache, |
Xiao Guangrong | 67052b3 | 2011-05-15 23:27:08 +0800 | [diff] [blame] | 873 | pte_list_desc_cache, 8 + PTE_PREFETCH_NUM); |
Avi Kivity | 2e3e588 | 2007-09-10 11:28:17 +0300 | [diff] [blame] | 874 | if (r) |
| 875 | goto out; |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 876 | r = mmu_topup_memory_cache_page(&vcpu->arch.mmu_page_cache, 8); |
Avi Kivity | 2e3e588 | 2007-09-10 11:28:17 +0300 | [diff] [blame] | 877 | if (r) |
| 878 | goto out; |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 879 | r = mmu_topup_memory_cache(&vcpu->arch.mmu_page_header_cache, |
Avi Kivity | 2e3e588 | 2007-09-10 11:28:17 +0300 | [diff] [blame] | 880 | mmu_page_header_cache, 4); |
| 881 | out: |
Avi Kivity | 8c43850 | 2007-04-16 11:53:17 +0300 | [diff] [blame] | 882 | return r; |
| 883 | } |
| 884 | |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 885 | static void mmu_free_memory_caches(struct kvm_vcpu *vcpu) |
| 886 | { |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 887 | mmu_free_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache, |
| 888 | pte_list_desc_cache); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 889 | mmu_free_memory_cache_page(&vcpu->arch.mmu_page_cache); |
Xiao Guangrong | e8ad9a7 | 2010-05-13 10:06:02 +0800 | [diff] [blame] | 890 | mmu_free_memory_cache(&vcpu->arch.mmu_page_header_cache, |
| 891 | mmu_page_header_cache); |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 892 | } |
| 893 | |
Takuya Yoshikawa | 80feb89 | 2012-05-29 23:54:26 +0900 | [diff] [blame] | 894 | static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc) |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 895 | { |
| 896 | void *p; |
| 897 | |
| 898 | BUG_ON(!mc->nobjs); |
| 899 | p = mc->objects[--mc->nobjs]; |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 900 | return p; |
| 901 | } |
| 902 | |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 903 | 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] | 904 | { |
Takuya Yoshikawa | 80feb89 | 2012-05-29 23:54:26 +0900 | [diff] [blame] | 905 | return mmu_memory_cache_alloc(&vcpu->arch.mmu_pte_list_desc_cache); |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 906 | } |
| 907 | |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 908 | 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] | 909 | { |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 910 | kmem_cache_free(pte_list_desc_cache, pte_list_desc); |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 911 | } |
| 912 | |
Lai Jiangshan | 2032a93 | 2010-05-26 16:49:59 +0800 | [diff] [blame] | 913 | static gfn_t kvm_mmu_page_get_gfn(struct kvm_mmu_page *sp, int index) |
| 914 | { |
| 915 | if (!sp->role.direct) |
| 916 | return sp->gfns[index]; |
| 917 | |
| 918 | return sp->gfn + (index << ((sp->role.level - 1) * PT64_LEVEL_BITS)); |
| 919 | } |
| 920 | |
| 921 | static void kvm_mmu_page_set_gfn(struct kvm_mmu_page *sp, int index, gfn_t gfn) |
| 922 | { |
| 923 | if (sp->role.direct) |
| 924 | BUG_ON(gfn != kvm_mmu_page_get_gfn(sp, index)); |
| 925 | else |
| 926 | sp->gfns[index] = gfn; |
| 927 | } |
| 928 | |
Avi Kivity | cd4a4e5 | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 929 | /* |
Takuya Yoshikawa | d4dbf47 | 2010-12-07 12:59:07 +0900 | [diff] [blame] | 930 | * Return the pointer to the large page information for a given gfn, |
| 931 | * handling slots that are not large page aligned. |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 932 | */ |
Takuya Yoshikawa | d4dbf47 | 2010-12-07 12:59:07 +0900 | [diff] [blame] | 933 | static struct kvm_lpage_info *lpage_info_slot(gfn_t gfn, |
| 934 | struct kvm_memory_slot *slot, |
| 935 | int level) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 936 | { |
| 937 | unsigned long idx; |
| 938 | |
Takuya Yoshikawa | fb03cb6 | 2012-02-08 12:59:10 +0900 | [diff] [blame] | 939 | idx = gfn_to_index(gfn, slot->base_gfn, level); |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 940 | return &slot->arch.lpage_info[level - 2][idx]; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 941 | } |
| 942 | |
Xiao Guangrong | 547ffae | 2016-02-24 17:51:07 +0800 | [diff] [blame] | 943 | static void update_gfn_disallow_lpage_count(struct kvm_memory_slot *slot, |
| 944 | gfn_t gfn, int count) |
| 945 | { |
| 946 | struct kvm_lpage_info *linfo; |
| 947 | int i; |
| 948 | |
| 949 | for (i = PT_DIRECTORY_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) { |
| 950 | linfo = lpage_info_slot(gfn, slot, i); |
| 951 | linfo->disallow_lpage += count; |
| 952 | WARN_ON(linfo->disallow_lpage < 0); |
| 953 | } |
| 954 | } |
| 955 | |
| 956 | void kvm_mmu_gfn_disallow_lpage(struct kvm_memory_slot *slot, gfn_t gfn) |
| 957 | { |
| 958 | update_gfn_disallow_lpage_count(slot, gfn, 1); |
| 959 | } |
| 960 | |
| 961 | void kvm_mmu_gfn_allow_lpage(struct kvm_memory_slot *slot, gfn_t gfn) |
| 962 | { |
| 963 | update_gfn_disallow_lpage_count(slot, gfn, -1); |
| 964 | } |
| 965 | |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 966 | static void account_shadowed(struct kvm *kvm, struct kvm_mmu_page *sp) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 967 | { |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 968 | struct kvm_memslots *slots; |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 969 | struct kvm_memory_slot *slot; |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 970 | gfn_t gfn; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 971 | |
Xiao Guangrong | 56ca57f | 2016-02-24 17:51:14 +0800 | [diff] [blame] | 972 | kvm->arch.indirect_shadow_pages++; |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 973 | gfn = sp->gfn; |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 974 | slots = kvm_memslots_for_spte_role(kvm, sp->role); |
| 975 | slot = __gfn_to_memslot(slots, gfn); |
Xiao Guangrong | 56ca57f | 2016-02-24 17:51:14 +0800 | [diff] [blame] | 976 | |
| 977 | /* the non-leaf shadow pages are keeping readonly. */ |
| 978 | if (sp->role.level > PT_PAGE_TABLE_LEVEL) |
| 979 | return kvm_slot_page_track_add_page(kvm, slot, gfn, |
| 980 | KVM_PAGE_TRACK_WRITE); |
| 981 | |
Xiao Guangrong | 547ffae | 2016-02-24 17:51:07 +0800 | [diff] [blame] | 982 | kvm_mmu_gfn_disallow_lpage(slot, gfn); |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 983 | } |
| 984 | |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 985 | static void unaccount_shadowed(struct kvm *kvm, struct kvm_mmu_page *sp) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 986 | { |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 987 | struct kvm_memslots *slots; |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 988 | struct kvm_memory_slot *slot; |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 989 | gfn_t gfn; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 990 | |
Xiao Guangrong | 56ca57f | 2016-02-24 17:51:14 +0800 | [diff] [blame] | 991 | kvm->arch.indirect_shadow_pages--; |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 992 | gfn = sp->gfn; |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 993 | slots = kvm_memslots_for_spte_role(kvm, sp->role); |
| 994 | slot = __gfn_to_memslot(slots, gfn); |
Xiao Guangrong | 56ca57f | 2016-02-24 17:51:14 +0800 | [diff] [blame] | 995 | if (sp->role.level > PT_PAGE_TABLE_LEVEL) |
| 996 | return kvm_slot_page_track_remove_page(kvm, slot, gfn, |
| 997 | KVM_PAGE_TRACK_WRITE); |
| 998 | |
Xiao Guangrong | 547ffae | 2016-02-24 17:51:07 +0800 | [diff] [blame] | 999 | kvm_mmu_gfn_allow_lpage(slot, gfn); |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1000 | } |
| 1001 | |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 1002 | static bool __mmu_gfn_lpage_is_disallowed(gfn_t gfn, int level, |
| 1003 | struct kvm_memory_slot *slot) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1004 | { |
Takuya Yoshikawa | d4dbf47 | 2010-12-07 12:59:07 +0900 | [diff] [blame] | 1005 | struct kvm_lpage_info *linfo; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1006 | |
| 1007 | if (slot) { |
Takuya Yoshikawa | d4dbf47 | 2010-12-07 12:59:07 +0900 | [diff] [blame] | 1008 | linfo = lpage_info_slot(gfn, slot, level); |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 1009 | return !!linfo->disallow_lpage; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1010 | } |
| 1011 | |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 1012 | return true; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1013 | } |
| 1014 | |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 1015 | static bool mmu_gfn_lpage_is_disallowed(struct kvm_vcpu *vcpu, gfn_t gfn, |
| 1016 | int level) |
Takuya Yoshikawa | 5225fdf | 2015-10-16 17:08:03 +0900 | [diff] [blame] | 1017 | { |
| 1018 | struct kvm_memory_slot *slot; |
| 1019 | |
| 1020 | slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn); |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 1021 | return __mmu_gfn_lpage_is_disallowed(gfn, level, slot); |
Takuya Yoshikawa | 5225fdf | 2015-10-16 17:08:03 +0900 | [diff] [blame] | 1022 | } |
| 1023 | |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 1024 | static int host_mapping_level(struct kvm *kvm, gfn_t gfn) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1025 | { |
Joerg Roedel | 8f0b1ab | 2010-01-28 12:37:56 +0100 | [diff] [blame] | 1026 | unsigned long page_size; |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 1027 | int i, ret = 0; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1028 | |
Joerg Roedel | 8f0b1ab | 2010-01-28 12:37:56 +0100 | [diff] [blame] | 1029 | page_size = kvm_host_page_size(kvm, gfn); |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1030 | |
Xiao Guangrong | 8a3d08f | 2015-05-13 14:42:21 +0800 | [diff] [blame] | 1031 | for (i = PT_PAGE_TABLE_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) { |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 1032 | if (page_size >= KVM_HPAGE_SIZE(i)) |
| 1033 | ret = i; |
| 1034 | else |
| 1035 | break; |
| 1036 | } |
| 1037 | |
Marcelo Tosatti | 4c2155c | 2008-09-16 20:54:47 -0300 | [diff] [blame] | 1038 | return ret; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1039 | } |
| 1040 | |
Takuya Yoshikawa | d8aacf5 | 2015-10-16 17:07:01 +0900 | [diff] [blame] | 1041 | static inline bool memslot_valid_for_gpte(struct kvm_memory_slot *slot, |
| 1042 | bool no_dirty_log) |
| 1043 | { |
| 1044 | if (!slot || slot->flags & KVM_MEMSLOT_INVALID) |
| 1045 | return false; |
| 1046 | if (no_dirty_log && slot->dirty_bitmap) |
| 1047 | return false; |
| 1048 | |
| 1049 | return true; |
| 1050 | } |
| 1051 | |
Xiao Guangrong | 5d163b1 | 2011-03-09 15:43:00 +0800 | [diff] [blame] | 1052 | static struct kvm_memory_slot * |
| 1053 | gfn_to_memslot_dirty_bitmap(struct kvm_vcpu *vcpu, gfn_t gfn, |
| 1054 | bool no_dirty_log) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1055 | { |
| 1056 | struct kvm_memory_slot *slot; |
Xiao Guangrong | 5d163b1 | 2011-03-09 15:43:00 +0800 | [diff] [blame] | 1057 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 1058 | slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn); |
Takuya Yoshikawa | d8aacf5 | 2015-10-16 17:07:01 +0900 | [diff] [blame] | 1059 | if (!memslot_valid_for_gpte(slot, no_dirty_log)) |
Xiao Guangrong | 5d163b1 | 2011-03-09 15:43:00 +0800 | [diff] [blame] | 1060 | slot = NULL; |
| 1061 | |
| 1062 | return slot; |
| 1063 | } |
| 1064 | |
Takuya Yoshikawa | fd13690 | 2015-10-16 17:06:02 +0900 | [diff] [blame] | 1065 | static int mapping_level(struct kvm_vcpu *vcpu, gfn_t large_gfn, |
| 1066 | bool *force_pt_level) |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 1067 | { |
| 1068 | int host_level, level, max_level; |
Takuya Yoshikawa | d8aacf5 | 2015-10-16 17:07:01 +0900 | [diff] [blame] | 1069 | struct kvm_memory_slot *slot; |
| 1070 | |
Takuya Yoshikawa | 8c85ac1 | 2015-10-19 15:13:29 +0900 | [diff] [blame] | 1071 | if (unlikely(*force_pt_level)) |
| 1072 | return PT_PAGE_TABLE_LEVEL; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1073 | |
Takuya Yoshikawa | 8c85ac1 | 2015-10-19 15:13:29 +0900 | [diff] [blame] | 1074 | slot = kvm_vcpu_gfn_to_memslot(vcpu, large_gfn); |
| 1075 | *force_pt_level = !memslot_valid_for_gpte(slot, true); |
Takuya Yoshikawa | fd13690 | 2015-10-16 17:06:02 +0900 | [diff] [blame] | 1076 | if (unlikely(*force_pt_level)) |
| 1077 | return PT_PAGE_TABLE_LEVEL; |
| 1078 | |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 1079 | host_level = host_mapping_level(vcpu->kvm, large_gfn); |
| 1080 | |
| 1081 | if (host_level == PT_PAGE_TABLE_LEVEL) |
| 1082 | return host_level; |
| 1083 | |
Xiao Guangrong | 55dd98c | 2013-02-05 15:26:54 +0800 | [diff] [blame] | 1084 | max_level = min(kvm_x86_ops->get_lpage_level(), host_level); |
Sheng Yang | 878403b | 2010-01-05 19:02:29 +0800 | [diff] [blame] | 1085 | |
| 1086 | for (level = PT_DIRECTORY_LEVEL; level <= max_level; ++level) |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 1087 | if (__mmu_gfn_lpage_is_disallowed(large_gfn, level, slot)) |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 1088 | break; |
Joerg Roedel | d25797b | 2009-07-27 16:30:43 +0200 | [diff] [blame] | 1089 | |
| 1090 | return level - 1; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1091 | } |
| 1092 | |
| 1093 | /* |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1094 | * About rmap_head encoding: |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1095 | * |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1096 | * If the bit zero of rmap_head->val is clear, then it points to the only spte |
| 1097 | * 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] | 1098 | * pte_list_desc containing more mappings. |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1099 | */ |
| 1100 | |
| 1101 | /* |
| 1102 | * 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] | 1103 | */ |
| 1104 | static int pte_list_add(struct kvm_vcpu *vcpu, u64 *spte, |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1105 | struct kvm_rmap_head *rmap_head) |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1106 | { |
| 1107 | struct pte_list_desc *desc; |
| 1108 | int i, count = 0; |
| 1109 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1110 | if (!rmap_head->val) { |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1111 | rmap_printk("pte_list_add: %p %llx 0->1\n", spte, *spte); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1112 | rmap_head->val = (unsigned long)spte; |
| 1113 | } else if (!(rmap_head->val & 1)) { |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1114 | rmap_printk("pte_list_add: %p %llx 1->many\n", spte, *spte); |
| 1115 | desc = mmu_alloc_pte_list_desc(vcpu); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1116 | desc->sptes[0] = (u64 *)rmap_head->val; |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1117 | desc->sptes[1] = spte; |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1118 | rmap_head->val = (unsigned long)desc | 1; |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1119 | ++count; |
| 1120 | } else { |
| 1121 | rmap_printk("pte_list_add: %p %llx many->many\n", spte, *spte); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1122 | desc = (struct pte_list_desc *)(rmap_head->val & ~1ul); |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1123 | while (desc->sptes[PTE_LIST_EXT-1] && desc->more) { |
| 1124 | desc = desc->more; |
| 1125 | count += PTE_LIST_EXT; |
| 1126 | } |
| 1127 | if (desc->sptes[PTE_LIST_EXT-1]) { |
| 1128 | desc->more = mmu_alloc_pte_list_desc(vcpu); |
| 1129 | desc = desc->more; |
| 1130 | } |
| 1131 | for (i = 0; desc->sptes[i]; ++i) |
| 1132 | ++count; |
| 1133 | desc->sptes[i] = spte; |
| 1134 | } |
| 1135 | return count; |
| 1136 | } |
| 1137 | |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1138 | static void |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1139 | pte_list_desc_remove_entry(struct kvm_rmap_head *rmap_head, |
| 1140 | struct pte_list_desc *desc, int i, |
| 1141 | struct pte_list_desc *prev_desc) |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1142 | { |
| 1143 | int j; |
| 1144 | |
| 1145 | for (j = PTE_LIST_EXT - 1; !desc->sptes[j] && j > i; --j) |
| 1146 | ; |
| 1147 | desc->sptes[i] = desc->sptes[j]; |
| 1148 | desc->sptes[j] = NULL; |
| 1149 | if (j != 0) |
| 1150 | return; |
| 1151 | if (!prev_desc && !desc->more) |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1152 | rmap_head->val = (unsigned long)desc->sptes[0]; |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1153 | else |
| 1154 | if (prev_desc) |
| 1155 | prev_desc->more = desc->more; |
| 1156 | else |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1157 | rmap_head->val = (unsigned long)desc->more | 1; |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1158 | mmu_free_pte_list_desc(desc); |
| 1159 | } |
| 1160 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1161 | 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] | 1162 | { |
| 1163 | struct pte_list_desc *desc; |
| 1164 | struct pte_list_desc *prev_desc; |
| 1165 | int i; |
| 1166 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1167 | if (!rmap_head->val) { |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1168 | printk(KERN_ERR "pte_list_remove: %p 0->BUG\n", spte); |
| 1169 | BUG(); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1170 | } else if (!(rmap_head->val & 1)) { |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1171 | rmap_printk("pte_list_remove: %p 1->0\n", spte); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1172 | if ((u64 *)rmap_head->val != spte) { |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1173 | printk(KERN_ERR "pte_list_remove: %p 1->BUG\n", spte); |
| 1174 | BUG(); |
| 1175 | } |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1176 | rmap_head->val = 0; |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1177 | } else { |
| 1178 | rmap_printk("pte_list_remove: %p many->many\n", spte); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1179 | desc = (struct pte_list_desc *)(rmap_head->val & ~1ul); |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1180 | prev_desc = NULL; |
| 1181 | while (desc) { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1182 | for (i = 0; i < PTE_LIST_EXT && desc->sptes[i]; ++i) { |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1183 | if (desc->sptes[i] == spte) { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1184 | pte_list_desc_remove_entry(rmap_head, |
| 1185 | desc, i, prev_desc); |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1186 | return; |
| 1187 | } |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1188 | } |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 1189 | prev_desc = desc; |
| 1190 | desc = desc->more; |
| 1191 | } |
| 1192 | pr_err("pte_list_remove: %p many->many\n", spte); |
| 1193 | BUG(); |
| 1194 | } |
| 1195 | } |
| 1196 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1197 | static struct kvm_rmap_head *__gfn_to_rmap(gfn_t gfn, int level, |
| 1198 | struct kvm_memory_slot *slot) |
Takuya Yoshikawa | 9b9b149 | 2011-11-14 18:22:28 +0900 | [diff] [blame] | 1199 | { |
Takuya Yoshikawa | 77d1130 | 2012-07-02 17:57:17 +0900 | [diff] [blame] | 1200 | unsigned long idx; |
Takuya Yoshikawa | 9b9b149 | 2011-11-14 18:22:28 +0900 | [diff] [blame] | 1201 | |
Takuya Yoshikawa | 77d1130 | 2012-07-02 17:57:17 +0900 | [diff] [blame] | 1202 | idx = gfn_to_index(gfn, slot->base_gfn, level); |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 1203 | return &slot->arch.rmap[level - PT_PAGE_TABLE_LEVEL][idx]; |
Takuya Yoshikawa | 9b9b149 | 2011-11-14 18:22:28 +0900 | [diff] [blame] | 1204 | } |
| 1205 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1206 | static struct kvm_rmap_head *gfn_to_rmap(struct kvm *kvm, gfn_t gfn, |
| 1207 | struct kvm_mmu_page *sp) |
Izik Eidus | 290fc38 | 2007-09-27 14:11:22 +0200 | [diff] [blame] | 1208 | { |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 1209 | struct kvm_memslots *slots; |
Izik Eidus | 290fc38 | 2007-09-27 14:11:22 +0200 | [diff] [blame] | 1210 | struct kvm_memory_slot *slot; |
| 1211 | |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 1212 | slots = kvm_memslots_for_spte_role(kvm, sp->role); |
| 1213 | slot = __gfn_to_memslot(slots, gfn); |
Paolo Bonzini | e4cd1da | 2015-05-18 15:11:46 +0200 | [diff] [blame] | 1214 | return __gfn_to_rmap(gfn, sp->role.level, slot); |
Izik Eidus | 290fc38 | 2007-09-27 14:11:22 +0200 | [diff] [blame] | 1215 | } |
| 1216 | |
Xiao Guangrong | f759e2b | 2011-09-22 16:53:17 +0800 | [diff] [blame] | 1217 | static bool rmap_can_add(struct kvm_vcpu *vcpu) |
| 1218 | { |
| 1219 | struct kvm_mmu_memory_cache *cache; |
| 1220 | |
| 1221 | cache = &vcpu->arch.mmu_pte_list_desc_cache; |
| 1222 | return mmu_memory_cache_free_objects(cache); |
| 1223 | } |
| 1224 | |
Joerg Roedel | 44ad994 | 2009-07-27 16:30:42 +0200 | [diff] [blame] | 1225 | 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] | 1226 | { |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 1227 | struct kvm_mmu_page *sp; |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1228 | struct kvm_rmap_head *rmap_head; |
Avi Kivity | cd4a4e5 | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 1229 | |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 1230 | sp = page_header(__pa(spte)); |
Lai Jiangshan | 2032a93 | 2010-05-26 16:49:59 +0800 | [diff] [blame] | 1231 | kvm_mmu_page_set_gfn(sp, spte - sp->spt, gfn); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1232 | rmap_head = gfn_to_rmap(vcpu->kvm, gfn, sp); |
| 1233 | return pte_list_add(vcpu, spte, rmap_head); |
Avi Kivity | cd4a4e5 | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 1234 | } |
| 1235 | |
Izik Eidus | 290fc38 | 2007-09-27 14:11:22 +0200 | [diff] [blame] | 1236 | static void rmap_remove(struct kvm *kvm, u64 *spte) |
Avi Kivity | cd4a4e5 | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 1237 | { |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 1238 | struct kvm_mmu_page *sp; |
Lai Jiangshan | 2032a93 | 2010-05-26 16:49:59 +0800 | [diff] [blame] | 1239 | gfn_t gfn; |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1240 | struct kvm_rmap_head *rmap_head; |
Avi Kivity | cd4a4e5 | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 1241 | |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 1242 | sp = page_header(__pa(spte)); |
Lai Jiangshan | 2032a93 | 2010-05-26 16:49:59 +0800 | [diff] [blame] | 1243 | gfn = kvm_mmu_page_get_gfn(sp, spte - sp->spt); |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1244 | rmap_head = gfn_to_rmap(kvm, gfn, sp); |
| 1245 | pte_list_remove(spte, rmap_head); |
Avi Kivity | cd4a4e5 | 2007-01-05 16:36:38 -0800 | [diff] [blame] | 1246 | } |
| 1247 | |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1248 | /* |
| 1249 | * Used by the following functions to iterate through the sptes linked by a |
| 1250 | * rmap. All fields are private and not assumed to be used outside. |
| 1251 | */ |
| 1252 | struct rmap_iterator { |
| 1253 | /* private fields */ |
| 1254 | struct pte_list_desc *desc; /* holds the sptep if not NULL */ |
| 1255 | int pos; /* index of the sptep */ |
| 1256 | }; |
| 1257 | |
| 1258 | /* |
| 1259 | * Iteration must be started by this function. This should also be used after |
| 1260 | * removing/dropping sptes from the rmap link because in such cases the |
| 1261 | * information in the itererator may not be valid. |
| 1262 | * |
| 1263 | * Returns sptep if found, NULL otherwise. |
| 1264 | */ |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1265 | static u64 *rmap_get_first(struct kvm_rmap_head *rmap_head, |
| 1266 | struct rmap_iterator *iter) |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1267 | { |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1268 | u64 *sptep; |
| 1269 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1270 | if (!rmap_head->val) |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1271 | return NULL; |
| 1272 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1273 | if (!(rmap_head->val & 1)) { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1274 | iter->desc = NULL; |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1275 | sptep = (u64 *)rmap_head->val; |
| 1276 | goto out; |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1277 | } |
| 1278 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1279 | iter->desc = (struct pte_list_desc *)(rmap_head->val & ~1ul); |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1280 | iter->pos = 0; |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1281 | sptep = iter->desc->sptes[iter->pos]; |
| 1282 | out: |
| 1283 | BUG_ON(!is_shadow_present_pte(*sptep)); |
| 1284 | return sptep; |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1285 | } |
| 1286 | |
| 1287 | /* |
| 1288 | * Must be used with a valid iterator: e.g. after rmap_get_first(). |
| 1289 | * |
| 1290 | * Returns sptep if found, NULL otherwise. |
| 1291 | */ |
| 1292 | static u64 *rmap_get_next(struct rmap_iterator *iter) |
| 1293 | { |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1294 | u64 *sptep; |
| 1295 | |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1296 | if (iter->desc) { |
| 1297 | if (iter->pos < PTE_LIST_EXT - 1) { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1298 | ++iter->pos; |
| 1299 | sptep = iter->desc->sptes[iter->pos]; |
| 1300 | if (sptep) |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1301 | goto out; |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1302 | } |
| 1303 | |
| 1304 | iter->desc = iter->desc->more; |
| 1305 | |
| 1306 | if (iter->desc) { |
| 1307 | iter->pos = 0; |
| 1308 | /* desc->sptes[0] cannot be NULL */ |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1309 | sptep = iter->desc->sptes[iter->pos]; |
| 1310 | goto out; |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1311 | } |
| 1312 | } |
| 1313 | |
| 1314 | return NULL; |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1315 | out: |
| 1316 | BUG_ON(!is_shadow_present_pte(*sptep)); |
| 1317 | return sptep; |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1318 | } |
| 1319 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1320 | #define for_each_rmap_spte(_rmap_head_, _iter_, _spte_) \ |
| 1321 | for (_spte_ = rmap_get_first(_rmap_head_, _iter_); \ |
Takuya Yoshikawa | 77fbbbd | 2015-11-20 17:45:44 +0900 | [diff] [blame] | 1322 | _spte_; _spte_ = rmap_get_next(_iter_)) |
Xiao Guangrong | 0d53679 | 2015-05-13 14:42:20 +0800 | [diff] [blame] | 1323 | |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 1324 | static void drop_spte(struct kvm *kvm, u64 *sptep) |
Xiao Guangrong | e4b502e | 2010-07-16 11:28:09 +0800 | [diff] [blame] | 1325 | { |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 1326 | if (mmu_spte_clear_track_bits(sptep)) |
Marcelo Tosatti | eb45fda | 2010-10-25 11:58:22 -0200 | [diff] [blame] | 1327 | rmap_remove(kvm, sptep); |
Avi Kivity | be38d27 | 2010-06-06 14:31:27 +0300 | [diff] [blame] | 1328 | } |
| 1329 | |
Xiao Guangrong | 8e22f95 | 2012-06-20 15:57:39 +0800 | [diff] [blame] | 1330 | |
| 1331 | static bool __drop_large_spte(struct kvm *kvm, u64 *sptep) |
| 1332 | { |
| 1333 | if (is_large_pte(*sptep)) { |
| 1334 | WARN_ON(page_header(__pa(sptep))->role.level == |
| 1335 | PT_PAGE_TABLE_LEVEL); |
| 1336 | drop_spte(kvm, sptep); |
| 1337 | --kvm->stat.lpages; |
| 1338 | return true; |
| 1339 | } |
| 1340 | |
| 1341 | return false; |
| 1342 | } |
| 1343 | |
| 1344 | static void drop_large_spte(struct kvm_vcpu *vcpu, u64 *sptep) |
| 1345 | { |
| 1346 | if (__drop_large_spte(vcpu->kvm, sptep)) |
| 1347 | kvm_flush_remote_tlbs(vcpu->kvm); |
| 1348 | } |
| 1349 | |
| 1350 | /* |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 1351 | * Write-protect on the specified @sptep, @pt_protect indicates whether |
Xiao Guangrong | c126d94 | 2014-04-17 17:06:14 +0800 | [diff] [blame] | 1352 | * spte write-protection is caused by protecting shadow page table. |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 1353 | * |
Tiejun Chen | b461966 | 2014-09-22 10:31:38 +0800 | [diff] [blame] | 1354 | * Note: write protection is difference between dirty logging and spte |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 1355 | * protection: |
| 1356 | * - for dirty logging, the spte can be set to writable at anytime if |
| 1357 | * its dirty bitmap is properly set. |
| 1358 | * - for spte protection, the spte can be writable only after unsync-ing |
| 1359 | * shadow page. |
Xiao Guangrong | 8e22f95 | 2012-06-20 15:57:39 +0800 | [diff] [blame] | 1360 | * |
Xiao Guangrong | c126d94 | 2014-04-17 17:06:14 +0800 | [diff] [blame] | 1361 | * Return true if tlb need be flushed. |
Xiao Guangrong | 8e22f95 | 2012-06-20 15:57:39 +0800 | [diff] [blame] | 1362 | */ |
Bandan Das | c4f138b | 2016-08-02 16:32:37 -0400 | [diff] [blame] | 1363 | static bool spte_write_protect(u64 *sptep, bool pt_protect) |
Xiao Guangrong | d13bc5b | 2012-06-20 15:57:15 +0800 | [diff] [blame] | 1364 | { |
| 1365 | u64 spte = *sptep; |
| 1366 | |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 1367 | if (!is_writable_pte(spte) && |
Junaid Shahid | ea4114b | 2016-12-06 16:46:11 -0800 | [diff] [blame] | 1368 | !(pt_protect && spte_can_locklessly_be_made_writable(spte))) |
Xiao Guangrong | d13bc5b | 2012-06-20 15:57:15 +0800 | [diff] [blame] | 1369 | return false; |
| 1370 | |
| 1371 | rmap_printk("rmap_write_protect: spte %p %llx\n", sptep, *sptep); |
| 1372 | |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 1373 | if (pt_protect) |
| 1374 | spte &= ~SPTE_MMU_WRITEABLE; |
Xiao Guangrong | d13bc5b | 2012-06-20 15:57:15 +0800 | [diff] [blame] | 1375 | spte = spte & ~PT_WRITABLE_MASK; |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 1376 | |
Xiao Guangrong | c126d94 | 2014-04-17 17:06:14 +0800 | [diff] [blame] | 1377 | return mmu_spte_update(sptep, spte); |
Xiao Guangrong | d13bc5b | 2012-06-20 15:57:15 +0800 | [diff] [blame] | 1378 | } |
| 1379 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1380 | static bool __rmap_write_protect(struct kvm *kvm, |
| 1381 | struct kvm_rmap_head *rmap_head, |
Takuya Yoshikawa | 245c391 | 2013-01-08 19:44:09 +0900 | [diff] [blame] | 1382 | bool pt_protect) |
Takuya Yoshikawa | a0ed460 | 2012-03-01 19:31:22 +0900 | [diff] [blame] | 1383 | { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1384 | u64 *sptep; |
| 1385 | struct rmap_iterator iter; |
Xiao Guangrong | d13bc5b | 2012-06-20 15:57:15 +0800 | [diff] [blame] | 1386 | bool flush = false; |
Takuya Yoshikawa | a0ed460 | 2012-03-01 19:31:22 +0900 | [diff] [blame] | 1387 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1388 | for_each_rmap_spte(rmap_head, &iter, sptep) |
Bandan Das | c4f138b | 2016-08-02 16:32:37 -0400 | [diff] [blame] | 1389 | flush |= spte_write_protect(sptep, pt_protect); |
Takuya Yoshikawa | a0ed460 | 2012-03-01 19:31:22 +0900 | [diff] [blame] | 1390 | |
Xiao Guangrong | d13bc5b | 2012-06-20 15:57:15 +0800 | [diff] [blame] | 1391 | return flush; |
Takuya Yoshikawa | a0ed460 | 2012-03-01 19:31:22 +0900 | [diff] [blame] | 1392 | } |
| 1393 | |
Bandan Das | c4f138b | 2016-08-02 16:32:37 -0400 | [diff] [blame] | 1394 | static bool spte_clear_dirty(u64 *sptep) |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 1395 | { |
| 1396 | u64 spte = *sptep; |
| 1397 | |
| 1398 | rmap_printk("rmap_clear_dirty: spte %p %llx\n", sptep, *sptep); |
| 1399 | |
| 1400 | spte &= ~shadow_dirty_mask; |
| 1401 | |
| 1402 | return mmu_spte_update(sptep, spte); |
| 1403 | } |
| 1404 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1405 | 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] | 1406 | { |
| 1407 | u64 *sptep; |
| 1408 | struct rmap_iterator iter; |
| 1409 | bool flush = false; |
| 1410 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1411 | for_each_rmap_spte(rmap_head, &iter, sptep) |
Bandan Das | c4f138b | 2016-08-02 16:32:37 -0400 | [diff] [blame] | 1412 | flush |= spte_clear_dirty(sptep); |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 1413 | |
| 1414 | return flush; |
| 1415 | } |
| 1416 | |
Bandan Das | c4f138b | 2016-08-02 16:32:37 -0400 | [diff] [blame] | 1417 | static bool spte_set_dirty(u64 *sptep) |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 1418 | { |
| 1419 | u64 spte = *sptep; |
| 1420 | |
| 1421 | rmap_printk("rmap_set_dirty: spte %p %llx\n", sptep, *sptep); |
| 1422 | |
| 1423 | spte |= shadow_dirty_mask; |
| 1424 | |
| 1425 | return mmu_spte_update(sptep, spte); |
| 1426 | } |
| 1427 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1428 | 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] | 1429 | { |
| 1430 | u64 *sptep; |
| 1431 | struct rmap_iterator iter; |
| 1432 | bool flush = false; |
| 1433 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1434 | for_each_rmap_spte(rmap_head, &iter, sptep) |
Bandan Das | c4f138b | 2016-08-02 16:32:37 -0400 | [diff] [blame] | 1435 | flush |= spte_set_dirty(sptep); |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 1436 | |
| 1437 | return flush; |
| 1438 | } |
| 1439 | |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1440 | /** |
Kai Huang | 3b0f1d0 | 2015-01-28 10:54:23 +0800 | [diff] [blame] | 1441 | * kvm_mmu_write_protect_pt_masked - write protect selected PT level pages |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1442 | * @kvm: kvm instance |
| 1443 | * @slot: slot to protect |
| 1444 | * @gfn_offset: start of the BITS_PER_LONG pages we care about |
| 1445 | * @mask: indicates which pages we should protect |
| 1446 | * |
| 1447 | * Used when we do not need to care about huge page mappings: e.g. during dirty |
| 1448 | * logging we do not have any such mappings. |
| 1449 | */ |
Kai Huang | 3b0f1d0 | 2015-01-28 10:54:23 +0800 | [diff] [blame] | 1450 | static void kvm_mmu_write_protect_pt_masked(struct kvm *kvm, |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1451 | struct kvm_memory_slot *slot, |
| 1452 | gfn_t gfn_offset, unsigned long mask) |
Izik Eidus | 98348e9 | 2007-10-16 14:42:30 +0200 | [diff] [blame] | 1453 | { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1454 | struct kvm_rmap_head *rmap_head; |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1455 | |
| 1456 | while (mask) { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1457 | rmap_head = __gfn_to_rmap(slot->base_gfn + gfn_offset + __ffs(mask), |
| 1458 | PT_PAGE_TABLE_LEVEL, slot); |
| 1459 | __rmap_write_protect(kvm, rmap_head, false); |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1460 | |
| 1461 | /* clear the first set bit */ |
| 1462 | mask &= mask - 1; |
| 1463 | } |
| 1464 | } |
| 1465 | |
Kai Huang | 3b0f1d0 | 2015-01-28 10:54:23 +0800 | [diff] [blame] | 1466 | /** |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 1467 | * kvm_mmu_clear_dirty_pt_masked - clear MMU D-bit for PT level pages |
| 1468 | * @kvm: kvm instance |
| 1469 | * @slot: slot to clear D-bit |
| 1470 | * @gfn_offset: start of the BITS_PER_LONG pages we care about |
| 1471 | * @mask: indicates which pages we should clear D-bit |
| 1472 | * |
| 1473 | * Used for PML to re-log the dirty GPAs after userspace querying dirty_bitmap. |
| 1474 | */ |
| 1475 | void kvm_mmu_clear_dirty_pt_masked(struct kvm *kvm, |
| 1476 | struct kvm_memory_slot *slot, |
| 1477 | gfn_t gfn_offset, unsigned long mask) |
| 1478 | { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1479 | struct kvm_rmap_head *rmap_head; |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 1480 | |
| 1481 | while (mask) { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1482 | rmap_head = __gfn_to_rmap(slot->base_gfn + gfn_offset + __ffs(mask), |
| 1483 | PT_PAGE_TABLE_LEVEL, slot); |
| 1484 | __rmap_clear_dirty(kvm, rmap_head); |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 1485 | |
| 1486 | /* clear the first set bit */ |
| 1487 | mask &= mask - 1; |
| 1488 | } |
| 1489 | } |
| 1490 | EXPORT_SYMBOL_GPL(kvm_mmu_clear_dirty_pt_masked); |
| 1491 | |
| 1492 | /** |
Kai Huang | 3b0f1d0 | 2015-01-28 10:54:23 +0800 | [diff] [blame] | 1493 | * kvm_arch_mmu_enable_log_dirty_pt_masked - enable dirty logging for selected |
| 1494 | * PT level pages. |
| 1495 | * |
| 1496 | * It calls kvm_mmu_write_protect_pt_masked to write protect selected pages to |
| 1497 | * enable dirty logging for them. |
| 1498 | * |
| 1499 | * Used when we do not need to care about huge page mappings: e.g. during dirty |
| 1500 | * logging we do not have any such mappings. |
| 1501 | */ |
| 1502 | void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm, |
| 1503 | struct kvm_memory_slot *slot, |
| 1504 | gfn_t gfn_offset, unsigned long mask) |
| 1505 | { |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 1506 | if (kvm_x86_ops->enable_log_dirty_pt_masked) |
| 1507 | kvm_x86_ops->enable_log_dirty_pt_masked(kvm, slot, gfn_offset, |
| 1508 | mask); |
| 1509 | else |
| 1510 | kvm_mmu_write_protect_pt_masked(kvm, slot, gfn_offset, mask); |
Kai Huang | 3b0f1d0 | 2015-01-28 10:54:23 +0800 | [diff] [blame] | 1511 | } |
| 1512 | |
Bandan Das | bab4165 | 2017-05-05 15:25:13 -0400 | [diff] [blame] | 1513 | /** |
| 1514 | * kvm_arch_write_log_dirty - emulate dirty page logging |
| 1515 | * @vcpu: Guest mode vcpu |
| 1516 | * |
| 1517 | * Emulate arch specific page modification logging for the |
| 1518 | * nested hypervisor |
| 1519 | */ |
| 1520 | int kvm_arch_write_log_dirty(struct kvm_vcpu *vcpu) |
| 1521 | { |
| 1522 | if (kvm_x86_ops->write_log_dirty) |
| 1523 | return kvm_x86_ops->write_log_dirty(vcpu); |
| 1524 | |
| 1525 | return 0; |
| 1526 | } |
| 1527 | |
Xiao Guangrong | aeecee2 | 2016-02-24 17:51:08 +0800 | [diff] [blame] | 1528 | bool kvm_mmu_slot_gfn_write_protect(struct kvm *kvm, |
| 1529 | struct kvm_memory_slot *slot, u64 gfn) |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1530 | { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1531 | struct kvm_rmap_head *rmap_head; |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1532 | int i; |
Xiao Guangrong | 2f84569 | 2012-06-20 15:56:53 +0800 | [diff] [blame] | 1533 | bool write_protected = false; |
Takuya Yoshikawa | 5dc99b23 | 2012-03-01 19:32:16 +0900 | [diff] [blame] | 1534 | |
Xiao Guangrong | 8a3d08f | 2015-05-13 14:42:21 +0800 | [diff] [blame] | 1535 | for (i = PT_PAGE_TABLE_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1536 | rmap_head = __gfn_to_rmap(gfn, i, slot); |
Xiao Guangrong | aeecee2 | 2016-02-24 17:51:08 +0800 | [diff] [blame] | 1537 | write_protected |= __rmap_write_protect(kvm, rmap_head, true); |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 1538 | } |
| 1539 | |
Marcelo Tosatti | b1a3682 | 2008-12-01 22:32:03 -0200 | [diff] [blame] | 1540 | return write_protected; |
Avi Kivity | 374cbac | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 1541 | } |
| 1542 | |
Xiao Guangrong | aeecee2 | 2016-02-24 17:51:08 +0800 | [diff] [blame] | 1543 | static bool rmap_write_protect(struct kvm_vcpu *vcpu, u64 gfn) |
| 1544 | { |
| 1545 | struct kvm_memory_slot *slot; |
| 1546 | |
| 1547 | slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn); |
| 1548 | return kvm_mmu_slot_gfn_write_protect(vcpu->kvm, slot, gfn); |
| 1549 | } |
| 1550 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1551 | 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] | 1552 | { |
| 1553 | u64 *sptep; |
| 1554 | struct rmap_iterator iter; |
| 1555 | bool flush = false; |
| 1556 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1557 | while ((sptep = rmap_get_first(rmap_head, &iter))) { |
Xiao Guangrong | 6a49f85 | 2015-05-13 14:42:25 +0800 | [diff] [blame] | 1558 | rmap_printk("%s: spte %p %llx.\n", __func__, sptep, *sptep); |
| 1559 | |
| 1560 | drop_spte(kvm, sptep); |
| 1561 | flush = true; |
| 1562 | } |
| 1563 | |
| 1564 | return flush; |
| 1565 | } |
| 1566 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1567 | 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] | 1568 | struct kvm_memory_slot *slot, gfn_t gfn, int level, |
| 1569 | unsigned long data) |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1570 | { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1571 | return kvm_zap_rmapp(kvm, rmap_head); |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1572 | } |
| 1573 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1574 | 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] | 1575 | struct kvm_memory_slot *slot, gfn_t gfn, int level, |
| 1576 | unsigned long data) |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1577 | { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1578 | u64 *sptep; |
| 1579 | struct rmap_iterator iter; |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1580 | int need_flush = 0; |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1581 | u64 new_spte; |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1582 | pte_t *ptep = (pte_t *)data; |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 1583 | kvm_pfn_t new_pfn; |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1584 | |
| 1585 | WARN_ON(pte_huge(*ptep)); |
| 1586 | new_pfn = pte_pfn(*ptep); |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1587 | |
Xiao Guangrong | 0d53679 | 2015-05-13 14:42:20 +0800 | [diff] [blame] | 1588 | restart: |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1589 | for_each_rmap_spte(rmap_head, &iter, sptep) { |
Andres Lagar-Cavilla | 8a9522d | 2014-09-23 12:34:54 -0700 | [diff] [blame] | 1590 | 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] | 1591 | sptep, *sptep, gfn, level); |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1592 | |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1593 | need_flush = 1; |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1594 | |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1595 | if (pte_write(*ptep)) { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1596 | drop_spte(kvm, sptep); |
Xiao Guangrong | 0d53679 | 2015-05-13 14:42:20 +0800 | [diff] [blame] | 1597 | goto restart; |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1598 | } else { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1599 | new_spte = *sptep & ~PT64_BASE_ADDR_MASK; |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1600 | new_spte |= (u64)new_pfn << PAGE_SHIFT; |
| 1601 | |
| 1602 | new_spte &= ~PT_WRITABLE_MASK; |
| 1603 | new_spte &= ~SPTE_HOST_WRITEABLE; |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 1604 | |
| 1605 | new_spte = mark_spte_for_access_track(new_spte); |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1606 | |
| 1607 | mmu_spte_clear_track_bits(sptep); |
| 1608 | mmu_spte_set(sptep, new_spte); |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1609 | } |
| 1610 | } |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1611 | |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1612 | if (need_flush) |
| 1613 | kvm_flush_remote_tlbs(kvm); |
| 1614 | |
| 1615 | return 0; |
| 1616 | } |
| 1617 | |
Xiao Guangrong | 6ce1f4e | 2015-05-13 14:42:22 +0800 | [diff] [blame] | 1618 | struct slot_rmap_walk_iterator { |
| 1619 | /* input fields. */ |
| 1620 | struct kvm_memory_slot *slot; |
| 1621 | gfn_t start_gfn; |
| 1622 | gfn_t end_gfn; |
| 1623 | int start_level; |
| 1624 | int end_level; |
| 1625 | |
| 1626 | /* output fields. */ |
| 1627 | gfn_t gfn; |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1628 | struct kvm_rmap_head *rmap; |
Xiao Guangrong | 6ce1f4e | 2015-05-13 14:42:22 +0800 | [diff] [blame] | 1629 | int level; |
| 1630 | |
| 1631 | /* private field. */ |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1632 | struct kvm_rmap_head *end_rmap; |
Xiao Guangrong | 6ce1f4e | 2015-05-13 14:42:22 +0800 | [diff] [blame] | 1633 | }; |
| 1634 | |
| 1635 | static void |
| 1636 | rmap_walk_init_level(struct slot_rmap_walk_iterator *iterator, int level) |
| 1637 | { |
| 1638 | iterator->level = level; |
| 1639 | iterator->gfn = iterator->start_gfn; |
| 1640 | iterator->rmap = __gfn_to_rmap(iterator->gfn, level, iterator->slot); |
| 1641 | iterator->end_rmap = __gfn_to_rmap(iterator->end_gfn, level, |
| 1642 | iterator->slot); |
| 1643 | } |
| 1644 | |
| 1645 | static void |
| 1646 | slot_rmap_walk_init(struct slot_rmap_walk_iterator *iterator, |
| 1647 | struct kvm_memory_slot *slot, int start_level, |
| 1648 | int end_level, gfn_t start_gfn, gfn_t end_gfn) |
| 1649 | { |
| 1650 | iterator->slot = slot; |
| 1651 | iterator->start_level = start_level; |
| 1652 | iterator->end_level = end_level; |
| 1653 | iterator->start_gfn = start_gfn; |
| 1654 | iterator->end_gfn = end_gfn; |
| 1655 | |
| 1656 | rmap_walk_init_level(iterator, iterator->start_level); |
| 1657 | } |
| 1658 | |
| 1659 | static bool slot_rmap_walk_okay(struct slot_rmap_walk_iterator *iterator) |
| 1660 | { |
| 1661 | return !!iterator->rmap; |
| 1662 | } |
| 1663 | |
| 1664 | static void slot_rmap_walk_next(struct slot_rmap_walk_iterator *iterator) |
| 1665 | { |
| 1666 | if (++iterator->rmap <= iterator->end_rmap) { |
| 1667 | iterator->gfn += (1UL << KVM_HPAGE_GFN_SHIFT(iterator->level)); |
| 1668 | return; |
| 1669 | } |
| 1670 | |
| 1671 | if (++iterator->level > iterator->end_level) { |
| 1672 | iterator->rmap = NULL; |
| 1673 | return; |
| 1674 | } |
| 1675 | |
| 1676 | rmap_walk_init_level(iterator, iterator->level); |
| 1677 | } |
| 1678 | |
| 1679 | #define for_each_slot_rmap_range(_slot_, _start_level_, _end_level_, \ |
| 1680 | _start_gfn, _end_gfn, _iter_) \ |
| 1681 | for (slot_rmap_walk_init(_iter_, _slot_, _start_level_, \ |
| 1682 | _end_level_, _start_gfn, _end_gfn); \ |
| 1683 | slot_rmap_walk_okay(_iter_); \ |
| 1684 | slot_rmap_walk_next(_iter_)) |
| 1685 | |
Takuya Yoshikawa | 84504ef | 2012-07-02 17:55:48 +0900 | [diff] [blame] | 1686 | static int kvm_handle_hva_range(struct kvm *kvm, |
| 1687 | unsigned long start, |
| 1688 | unsigned long end, |
| 1689 | unsigned long data, |
| 1690 | int (*handler)(struct kvm *kvm, |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1691 | struct kvm_rmap_head *rmap_head, |
Takuya Yoshikawa | 048212d | 2012-07-02 17:57:59 +0900 | [diff] [blame] | 1692 | struct kvm_memory_slot *slot, |
Andres Lagar-Cavilla | 8a9522d | 2014-09-23 12:34:54 -0700 | [diff] [blame] | 1693 | gfn_t gfn, |
| 1694 | int level, |
Takuya Yoshikawa | 84504ef | 2012-07-02 17:55:48 +0900 | [diff] [blame] | 1695 | unsigned long data)) |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1696 | { |
Marcelo Tosatti | bc6678a | 2009-12-23 14:35:21 -0200 | [diff] [blame] | 1697 | struct kvm_memslots *slots; |
Xiao Guangrong | be6ba0f | 2011-11-24 17:39:18 +0800 | [diff] [blame] | 1698 | struct kvm_memory_slot *memslot; |
Xiao Guangrong | 6ce1f4e | 2015-05-13 14:42:22 +0800 | [diff] [blame] | 1699 | struct slot_rmap_walk_iterator iterator; |
| 1700 | int ret = 0; |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 1701 | int i; |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1702 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 1703 | for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) { |
| 1704 | slots = __kvm_memslots(kvm, i); |
| 1705 | kvm_for_each_memslot(memslot, slots) { |
| 1706 | unsigned long hva_start, hva_end; |
| 1707 | gfn_t gfn_start, gfn_end; |
Marcelo Tosatti | bc6678a | 2009-12-23 14:35:21 -0200 | [diff] [blame] | 1708 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 1709 | hva_start = max(start, memslot->userspace_addr); |
| 1710 | hva_end = min(end, memslot->userspace_addr + |
| 1711 | (memslot->npages << PAGE_SHIFT)); |
| 1712 | if (hva_start >= hva_end) |
| 1713 | continue; |
| 1714 | /* |
| 1715 | * {gfn(page) | page intersects with [hva_start, hva_end)} = |
| 1716 | * {gfn_start, gfn_start+1, ..., gfn_end-1}. |
| 1717 | */ |
| 1718 | gfn_start = hva_to_gfn_memslot(hva_start, memslot); |
| 1719 | gfn_end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, memslot); |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1720 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 1721 | for_each_slot_rmap_range(memslot, PT_PAGE_TABLE_LEVEL, |
| 1722 | PT_MAX_HUGEPAGE_LEVEL, |
| 1723 | gfn_start, gfn_end - 1, |
| 1724 | &iterator) |
| 1725 | ret |= handler(kvm, iterator.rmap, memslot, |
| 1726 | iterator.gfn, iterator.level, data); |
| 1727 | } |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1728 | } |
| 1729 | |
Takuya Yoshikawa | f395302 | 2012-07-02 17:58:48 +0900 | [diff] [blame] | 1730 | return ret; |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1731 | } |
| 1732 | |
Takuya Yoshikawa | 84504ef | 2012-07-02 17:55:48 +0900 | [diff] [blame] | 1733 | static int kvm_handle_hva(struct kvm *kvm, unsigned long hva, |
| 1734 | unsigned long data, |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1735 | int (*handler)(struct kvm *kvm, |
| 1736 | struct kvm_rmap_head *rmap_head, |
Takuya Yoshikawa | 048212d | 2012-07-02 17:57:59 +0900 | [diff] [blame] | 1737 | struct kvm_memory_slot *slot, |
Andres Lagar-Cavilla | 8a9522d | 2014-09-23 12:34:54 -0700 | [diff] [blame] | 1738 | gfn_t gfn, int level, |
Takuya Yoshikawa | 84504ef | 2012-07-02 17:55:48 +0900 | [diff] [blame] | 1739 | unsigned long data)) |
| 1740 | { |
| 1741 | return kvm_handle_hva_range(kvm, hva, hva + 1, data, handler); |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1742 | } |
| 1743 | |
| 1744 | int kvm_unmap_hva(struct kvm *kvm, unsigned long hva) |
| 1745 | { |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1746 | return kvm_handle_hva(kvm, hva, 0, kvm_unmap_rmapp); |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1747 | } |
| 1748 | |
Takuya Yoshikawa | b3ae209 | 2012-07-02 17:56:33 +0900 | [diff] [blame] | 1749 | int kvm_unmap_hva_range(struct kvm *kvm, unsigned long start, unsigned long end) |
| 1750 | { |
| 1751 | return kvm_handle_hva_range(kvm, start, end, 0, kvm_unmap_rmapp); |
| 1752 | } |
| 1753 | |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1754 | void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte) |
| 1755 | { |
Frederik Deweerdt | 8a8365c | 2009-10-09 11:42:56 +0000 | [diff] [blame] | 1756 | kvm_handle_hva(kvm, hva, (unsigned long)&pte, kvm_set_pte_rmapp); |
Izik Eidus | 3da0dd4 | 2009-09-23 21:47:18 +0300 | [diff] [blame] | 1757 | } |
| 1758 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1759 | 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] | 1760 | struct kvm_memory_slot *slot, gfn_t gfn, int level, |
| 1761 | unsigned long data) |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1762 | { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1763 | u64 *sptep; |
Michael S. Tsirkin | 79f702a | 2012-06-03 11:34:08 +0300 | [diff] [blame] | 1764 | struct rmap_iterator uninitialized_var(iter); |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1765 | int young = 0; |
| 1766 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 1767 | for_each_rmap_spte(rmap_head, &iter, sptep) |
| 1768 | young |= mmu_spte_age(sptep); |
Xiao Guangrong | 0d53679 | 2015-05-13 14:42:20 +0800 | [diff] [blame] | 1769 | |
Andres Lagar-Cavilla | 8a9522d | 2014-09-23 12:34:54 -0700 | [diff] [blame] | 1770 | trace_kvm_age_page(gfn, level, slot, young); |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1771 | return young; |
| 1772 | } |
| 1773 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1774 | 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] | 1775 | struct kvm_memory_slot *slot, gfn_t gfn, |
| 1776 | int level, unsigned long data) |
Andrea Arcangeli | 8ee5382 | 2011-01-13 15:47:10 -0800 | [diff] [blame] | 1777 | { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 1778 | u64 *sptep; |
| 1779 | struct rmap_iterator iter; |
Andrea Arcangeli | 8ee5382 | 2011-01-13 15:47:10 -0800 | [diff] [blame] | 1780 | |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 1781 | for_each_rmap_spte(rmap_head, &iter, sptep) |
| 1782 | if (is_accessed_spte(*sptep)) |
| 1783 | return 1; |
Junaid Shahid | 83ef6c8 | 2016-12-06 16:46:13 -0800 | [diff] [blame] | 1784 | return 0; |
Andrea Arcangeli | 8ee5382 | 2011-01-13 15:47:10 -0800 | [diff] [blame] | 1785 | } |
| 1786 | |
Marcelo Tosatti | 53a27b3 | 2009-08-05 15:43:58 -0300 | [diff] [blame] | 1787 | #define RMAP_RECYCLE_THRESHOLD 1000 |
| 1788 | |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 1789 | 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] | 1790 | { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1791 | struct kvm_rmap_head *rmap_head; |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 1792 | struct kvm_mmu_page *sp; |
| 1793 | |
| 1794 | sp = page_header(__pa(spte)); |
Marcelo Tosatti | 53a27b3 | 2009-08-05 15:43:58 -0300 | [diff] [blame] | 1795 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1796 | rmap_head = gfn_to_rmap(vcpu->kvm, gfn, sp); |
Marcelo Tosatti | 53a27b3 | 2009-08-05 15:43:58 -0300 | [diff] [blame] | 1797 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 1798 | 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] | 1799 | kvm_flush_remote_tlbs(vcpu->kvm); |
| 1800 | } |
| 1801 | |
Andres Lagar-Cavilla | 5712846 | 2014-09-22 14:54:42 -0700 | [diff] [blame] | 1802 | 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] | 1803 | { |
Andres Lagar-Cavilla | 5712846 | 2014-09-22 14:54:42 -0700 | [diff] [blame] | 1804 | return kvm_handle_hva_range(kvm, start, end, 0, kvm_age_rmapp); |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 1805 | } |
| 1806 | |
Andrea Arcangeli | 8ee5382 | 2011-01-13 15:47:10 -0800 | [diff] [blame] | 1807 | int kvm_test_age_hva(struct kvm *kvm, unsigned long hva) |
| 1808 | { |
| 1809 | return kvm_handle_hva(kvm, hva, 0, kvm_test_age_rmapp); |
| 1810 | } |
| 1811 | |
Yaozu Dong | d6c69ee | 2007-04-25 14:17:25 +0800 | [diff] [blame] | 1812 | #ifdef MMU_DEBUG |
Avi Kivity | 47ad8e6 | 2007-05-06 15:50:58 +0300 | [diff] [blame] | 1813 | static int is_empty_shadow_page(u64 *spt) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1814 | { |
Avi Kivity | 139bdb2 | 2007-01-05 16:36:50 -0800 | [diff] [blame] | 1815 | u64 *pos; |
| 1816 | u64 *end; |
| 1817 | |
Avi Kivity | 47ad8e6 | 2007-05-06 15:50:58 +0300 | [diff] [blame] | 1818 | for (pos = spt, end = pos + PAGE_SIZE / sizeof(u64); pos != end; pos++) |
Avi Kivity | 3c91551 | 2008-05-20 16:21:13 +0300 | [diff] [blame] | 1819 | if (is_shadow_present_pte(*pos)) { |
Harvey Harrison | b8688d5 | 2008-03-03 12:59:56 -0800 | [diff] [blame] | 1820 | printk(KERN_ERR "%s: %p %llx\n", __func__, |
Avi Kivity | 139bdb2 | 2007-01-05 16:36:50 -0800 | [diff] [blame] | 1821 | pos, *pos); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1822 | return 0; |
Avi Kivity | 139bdb2 | 2007-01-05 16:36:50 -0800 | [diff] [blame] | 1823 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1824 | return 1; |
| 1825 | } |
Yaozu Dong | d6c69ee | 2007-04-25 14:17:25 +0800 | [diff] [blame] | 1826 | #endif |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1827 | |
Dave Hansen | 45221ab | 2010-08-19 18:11:37 -0700 | [diff] [blame] | 1828 | /* |
| 1829 | * This value is the sum of all of the kvm instances's |
| 1830 | * kvm->arch.n_used_mmu_pages values. We need a global, |
| 1831 | * aggregate version in order to make the slab shrinker |
| 1832 | * faster |
| 1833 | */ |
| 1834 | static inline void kvm_mod_used_mmu_pages(struct kvm *kvm, int nr) |
| 1835 | { |
| 1836 | kvm->arch.n_used_mmu_pages += nr; |
| 1837 | percpu_counter_add(&kvm_total_used_mmu_pages, nr); |
| 1838 | } |
| 1839 | |
Gleb Natapov | 834be0d | 2013-01-30 16:45:05 +0200 | [diff] [blame] | 1840 | static void kvm_mmu_free_page(struct kvm_mmu_page *sp) |
Avi Kivity | 260746c | 2007-01-05 16:36:49 -0800 | [diff] [blame] | 1841 | { |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 1842 | MMU_WARN_ON(!is_empty_shadow_page(sp->spt)); |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 1843 | hlist_del(&sp->hash_link); |
Xiao Guangrong | bd4c86e | 2011-07-12 03:27:14 +0800 | [diff] [blame] | 1844 | list_del(&sp->link); |
| 1845 | free_page((unsigned long)sp->spt); |
Gleb Natapov | 834be0d | 2013-01-30 16:45:05 +0200 | [diff] [blame] | 1846 | if (!sp->role.direct) |
| 1847 | free_page((unsigned long)sp->gfns); |
Xiao Guangrong | e8ad9a7 | 2010-05-13 10:06:02 +0800 | [diff] [blame] | 1848 | kmem_cache_free(mmu_page_header_cache, sp); |
Avi Kivity | 260746c | 2007-01-05 16:36:49 -0800 | [diff] [blame] | 1849 | } |
| 1850 | |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 1851 | static unsigned kvm_page_table_hashfn(gfn_t gfn) |
| 1852 | { |
David Matlack | 114df30 | 2016-12-19 13:58:25 -0800 | [diff] [blame] | 1853 | return hash_64(gfn, KVM_MMU_HASH_SHIFT); |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 1854 | } |
| 1855 | |
Xiao Guangrong | 67052b3 | 2011-05-15 23:27:08 +0800 | [diff] [blame] | 1856 | static void mmu_page_add_parent_pte(struct kvm_vcpu *vcpu, |
| 1857 | struct kvm_mmu_page *sp, u64 *parent_pte) |
| 1858 | { |
| 1859 | if (!parent_pte) |
| 1860 | return; |
| 1861 | |
| 1862 | pte_list_add(vcpu, parent_pte, &sp->parent_ptes); |
| 1863 | } |
| 1864 | |
| 1865 | static void mmu_page_remove_parent_pte(struct kvm_mmu_page *sp, |
| 1866 | u64 *parent_pte) |
| 1867 | { |
| 1868 | pte_list_remove(parent_pte, &sp->parent_ptes); |
| 1869 | } |
| 1870 | |
Xiao Guangrong | bcdd9a9 | 2011-05-15 23:28:29 +0800 | [diff] [blame] | 1871 | static void drop_parent_pte(struct kvm_mmu_page *sp, |
| 1872 | u64 *parent_pte) |
| 1873 | { |
| 1874 | mmu_page_remove_parent_pte(sp, parent_pte); |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 1875 | mmu_spte_clear_no_track(parent_pte); |
Xiao Guangrong | bcdd9a9 | 2011-05-15 23:28:29 +0800 | [diff] [blame] | 1876 | } |
| 1877 | |
Takuya Yoshikawa | 4700579 | 2015-11-20 17:46:29 +0900 | [diff] [blame] | 1878 | 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] | 1879 | { |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 1880 | struct kvm_mmu_page *sp; |
Takuya Yoshikawa | 7ddca7e | 2013-03-21 19:33:43 +0900 | [diff] [blame] | 1881 | |
Takuya Yoshikawa | 80feb89 | 2012-05-29 23:54:26 +0900 | [diff] [blame] | 1882 | sp = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_header_cache); |
| 1883 | sp->spt = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache); |
Lai Jiangshan | 2032a93 | 2010-05-26 16:49:59 +0800 | [diff] [blame] | 1884 | if (!direct) |
Takuya Yoshikawa | 80feb89 | 2012-05-29 23:54:26 +0900 | [diff] [blame] | 1885 | sp->gfns = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache); |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 1886 | set_page_private(virt_to_page(sp->spt), (unsigned long)sp); |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 1887 | |
| 1888 | /* |
| 1889 | * The active_mmu_pages list is the FIFO list, do not move the |
| 1890 | * page until it is zapped. kvm_zap_obsolete_pages depends on |
| 1891 | * this feature. See the comments in kvm_zap_obsolete_pages(). |
| 1892 | */ |
Zhang Xiantao | f05e70a | 2007-12-14 10:01:48 +0800 | [diff] [blame] | 1893 | list_add(&sp->link, &vcpu->kvm->arch.active_mmu_pages); |
Dave Hansen | 45221ab | 2010-08-19 18:11:37 -0700 | [diff] [blame] | 1894 | kvm_mod_used_mmu_pages(vcpu->kvm, +1); |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 1895 | return sp; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 1896 | } |
| 1897 | |
Xiao Guangrong | 67052b3 | 2011-05-15 23:27:08 +0800 | [diff] [blame] | 1898 | static void mark_unsync(u64 *spte); |
Xiao Guangrong | 6b18493 | 2010-04-16 21:29:17 +0800 | [diff] [blame] | 1899 | static void kvm_mmu_mark_parents_unsync(struct kvm_mmu_page *sp) |
Marcelo Tosatti | 0074ff6 | 2008-09-23 13:18:40 -0300 | [diff] [blame] | 1900 | { |
Takuya Yoshikawa | 74c4e63 | 2015-11-26 21:15:38 +0900 | [diff] [blame] | 1901 | u64 *sptep; |
| 1902 | struct rmap_iterator iter; |
| 1903 | |
| 1904 | for_each_rmap_spte(&sp->parent_ptes, &iter, sptep) { |
| 1905 | mark_unsync(sptep); |
| 1906 | } |
Xiao Guangrong | 1047df1 | 2010-06-11 21:35:15 +0800 | [diff] [blame] | 1907 | } |
| 1908 | |
Xiao Guangrong | 67052b3 | 2011-05-15 23:27:08 +0800 | [diff] [blame] | 1909 | static void mark_unsync(u64 *spte) |
Xiao Guangrong | 1047df1 | 2010-06-11 21:35:15 +0800 | [diff] [blame] | 1910 | { |
Xiao Guangrong | 67052b3 | 2011-05-15 23:27:08 +0800 | [diff] [blame] | 1911 | struct kvm_mmu_page *sp; |
Xiao Guangrong | 1047df1 | 2010-06-11 21:35:15 +0800 | [diff] [blame] | 1912 | unsigned int index; |
| 1913 | |
Xiao Guangrong | 67052b3 | 2011-05-15 23:27:08 +0800 | [diff] [blame] | 1914 | sp = page_header(__pa(spte)); |
Xiao Guangrong | 1047df1 | 2010-06-11 21:35:15 +0800 | [diff] [blame] | 1915 | index = spte - sp->spt; |
| 1916 | if (__test_and_set_bit(index, sp->unsync_child_bitmap)) |
| 1917 | return; |
| 1918 | if (sp->unsync_children++) |
| 1919 | return; |
| 1920 | kvm_mmu_mark_parents_unsync(sp); |
Marcelo Tosatti | 0074ff6 | 2008-09-23 13:18:40 -0300 | [diff] [blame] | 1921 | } |
| 1922 | |
Marcelo Tosatti | e8bc217 | 2008-09-23 13:18:33 -0300 | [diff] [blame] | 1923 | static int nonpaging_sync_page(struct kvm_vcpu *vcpu, |
Xiao Guangrong | a4a8e6f | 2010-11-19 17:04:03 +0800 | [diff] [blame] | 1924 | struct kvm_mmu_page *sp) |
Marcelo Tosatti | e8bc217 | 2008-09-23 13:18:33 -0300 | [diff] [blame] | 1925 | { |
Paolo Bonzini | 1f50f1b | 2016-02-24 11:07:14 +0100 | [diff] [blame] | 1926 | return 0; |
Marcelo Tosatti | e8bc217 | 2008-09-23 13:18:33 -0300 | [diff] [blame] | 1927 | } |
| 1928 | |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 1929 | static void nonpaging_invlpg(struct kvm_vcpu *vcpu, gva_t gva) |
| 1930 | { |
| 1931 | } |
| 1932 | |
Xiao Guangrong | 0f53b5b | 2011-03-09 15:43:51 +0800 | [diff] [blame] | 1933 | static void nonpaging_update_pte(struct kvm_vcpu *vcpu, |
| 1934 | struct kvm_mmu_page *sp, u64 *spte, |
Xiao Guangrong | 7c56252 | 2011-03-28 10:29:27 +0800 | [diff] [blame] | 1935 | const void *pte) |
Xiao Guangrong | 0f53b5b | 2011-03-09 15:43:51 +0800 | [diff] [blame] | 1936 | { |
| 1937 | WARN_ON(1); |
| 1938 | } |
| 1939 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 1940 | #define KVM_PAGE_ARRAY_NR 16 |
| 1941 | |
| 1942 | struct kvm_mmu_pages { |
| 1943 | struct mmu_page_and_offset { |
| 1944 | struct kvm_mmu_page *sp; |
| 1945 | unsigned int idx; |
| 1946 | } page[KVM_PAGE_ARRAY_NR]; |
| 1947 | unsigned int nr; |
| 1948 | }; |
| 1949 | |
Hannes Eder | cded19f | 2009-02-21 02:19:13 +0100 | [diff] [blame] | 1950 | static int mmu_pages_add(struct kvm_mmu_pages *pvec, struct kvm_mmu_page *sp, |
| 1951 | int idx) |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 1952 | { |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 1953 | int i; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 1954 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 1955 | if (sp->unsync) |
| 1956 | for (i=0; i < pvec->nr; i++) |
| 1957 | if (pvec->page[i].sp == sp) |
| 1958 | return 0; |
| 1959 | |
| 1960 | pvec->page[pvec->nr].sp = sp; |
| 1961 | pvec->page[pvec->nr].idx = idx; |
| 1962 | pvec->nr++; |
| 1963 | return (pvec->nr == KVM_PAGE_ARRAY_NR); |
| 1964 | } |
| 1965 | |
Takuya Yoshikawa | fd95145 | 2015-11-20 17:43:13 +0900 | [diff] [blame] | 1966 | static inline void clear_unsync_child_bit(struct kvm_mmu_page *sp, int idx) |
| 1967 | { |
| 1968 | --sp->unsync_children; |
| 1969 | WARN_ON((int)sp->unsync_children < 0); |
| 1970 | __clear_bit(idx, sp->unsync_child_bitmap); |
| 1971 | } |
| 1972 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 1973 | static int __mmu_unsync_walk(struct kvm_mmu_page *sp, |
| 1974 | struct kvm_mmu_pages *pvec) |
| 1975 | { |
| 1976 | int i, ret, nr_unsync_leaf = 0; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 1977 | |
Takuya Yoshikawa | 37178b8 | 2011-11-29 14:02:45 +0900 | [diff] [blame] | 1978 | for_each_set_bit(i, sp->unsync_child_bitmap, 512) { |
Xiao Guangrong | 7a8f1a7 | 2010-06-11 21:34:04 +0800 | [diff] [blame] | 1979 | struct kvm_mmu_page *child; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 1980 | u64 ent = sp->spt[i]; |
| 1981 | |
Takuya Yoshikawa | fd95145 | 2015-11-20 17:43:13 +0900 | [diff] [blame] | 1982 | if (!is_shadow_present_pte(ent) || is_large_pte(ent)) { |
| 1983 | clear_unsync_child_bit(sp, i); |
| 1984 | continue; |
| 1985 | } |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 1986 | |
Xiao Guangrong | 7a8f1a7 | 2010-06-11 21:34:04 +0800 | [diff] [blame] | 1987 | child = page_header(ent & PT64_BASE_ADDR_MASK); |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 1988 | |
Xiao Guangrong | 7a8f1a7 | 2010-06-11 21:34:04 +0800 | [diff] [blame] | 1989 | if (child->unsync_children) { |
| 1990 | if (mmu_pages_add(pvec, child, i)) |
| 1991 | return -ENOSPC; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 1992 | |
Xiao Guangrong | 7a8f1a7 | 2010-06-11 21:34:04 +0800 | [diff] [blame] | 1993 | ret = __mmu_unsync_walk(child, pvec); |
Takuya Yoshikawa | fd95145 | 2015-11-20 17:43:13 +0900 | [diff] [blame] | 1994 | if (!ret) { |
| 1995 | clear_unsync_child_bit(sp, i); |
| 1996 | continue; |
| 1997 | } else if (ret > 0) { |
Xiao Guangrong | 7a8f1a7 | 2010-06-11 21:34:04 +0800 | [diff] [blame] | 1998 | nr_unsync_leaf += ret; |
Takuya Yoshikawa | fd95145 | 2015-11-20 17:43:13 +0900 | [diff] [blame] | 1999 | } else |
Xiao Guangrong | 7a8f1a7 | 2010-06-11 21:34:04 +0800 | [diff] [blame] | 2000 | return ret; |
| 2001 | } else if (child->unsync) { |
| 2002 | nr_unsync_leaf++; |
| 2003 | if (mmu_pages_add(pvec, child, i)) |
| 2004 | return -ENOSPC; |
| 2005 | } else |
Takuya Yoshikawa | fd95145 | 2015-11-20 17:43:13 +0900 | [diff] [blame] | 2006 | clear_unsync_child_bit(sp, i); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2007 | } |
| 2008 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2009 | return nr_unsync_leaf; |
| 2010 | } |
| 2011 | |
Xiao Guangrong | e23d3fe | 2016-02-24 09:46:06 +0100 | [diff] [blame] | 2012 | #define INVALID_INDEX (-1) |
| 2013 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2014 | static int mmu_unsync_walk(struct kvm_mmu_page *sp, |
| 2015 | struct kvm_mmu_pages *pvec) |
| 2016 | { |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2017 | pvec->nr = 0; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2018 | if (!sp->unsync_children) |
| 2019 | return 0; |
| 2020 | |
Xiao Guangrong | e23d3fe | 2016-02-24 09:46:06 +0100 | [diff] [blame] | 2021 | mmu_pages_add(pvec, sp, INVALID_INDEX); |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2022 | return __mmu_unsync_walk(sp, pvec); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2023 | } |
| 2024 | |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2025 | static void kvm_unlink_unsync_page(struct kvm *kvm, struct kvm_mmu_page *sp) |
| 2026 | { |
| 2027 | WARN_ON(!sp->unsync); |
Xiao Guangrong | 5e1b3dd | 2010-04-28 11:55:06 +0800 | [diff] [blame] | 2028 | trace_kvm_mmu_sync_page(sp); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2029 | sp->unsync = 0; |
| 2030 | --kvm->stat.mmu_unsync; |
| 2031 | } |
| 2032 | |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2033 | static int kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp, |
| 2034 | struct list_head *invalid_list); |
| 2035 | static void kvm_mmu_commit_zap_page(struct kvm *kvm, |
| 2036 | struct list_head *invalid_list); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2037 | |
Xiao Guangrong | f34d251 | 2013-05-31 08:36:28 +0800 | [diff] [blame] | 2038 | /* |
| 2039 | * NOTE: we should pay more attention on the zapped-obsolete page |
| 2040 | * (is_obsolete_sp(sp) && sp->role.invalid) when you do hash list walk |
| 2041 | * since it has been deleted from active_mmu_pages but still can be found |
| 2042 | * at hast list. |
| 2043 | * |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 2044 | * for_each_valid_sp() has skipped that kind of pages. |
Xiao Guangrong | f34d251 | 2013-05-31 08:36:28 +0800 | [diff] [blame] | 2045 | */ |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 2046 | #define for_each_valid_sp(_kvm, _sp, _gfn) \ |
Takuya Yoshikawa | 1044b03 | 2013-03-06 16:05:07 +0900 | [diff] [blame] | 2047 | hlist_for_each_entry(_sp, \ |
| 2048 | &(_kvm)->arch.mmu_page_hash[kvm_page_table_hashfn(_gfn)], hash_link) \ |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 2049 | if (is_obsolete_sp((_kvm), (_sp)) || (_sp)->role.invalid) { \ |
| 2050 | } else |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2051 | |
Takuya Yoshikawa | 1044b03 | 2013-03-06 16:05:07 +0900 | [diff] [blame] | 2052 | #define for_each_gfn_indirect_valid_sp(_kvm, _sp, _gfn) \ |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 2053 | for_each_valid_sp(_kvm, _sp, _gfn) \ |
| 2054 | if ((_sp)->gfn != (_gfn) || (_sp)->role.direct) {} else |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2055 | |
Xiao Guangrong | f918b44 | 2010-06-11 21:30:36 +0800 | [diff] [blame] | 2056 | /* @sp->gfn should be write-protected at the call site */ |
Paolo Bonzini | 1f50f1b | 2016-02-24 11:07:14 +0100 | [diff] [blame] | 2057 | static bool __kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp, |
| 2058 | struct list_head *invalid_list) |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2059 | { |
Avi Kivity | 5b7e010 | 2010-04-14 19:20:03 +0300 | [diff] [blame] | 2060 | if (sp->role.cr4_pae != !!is_pae(vcpu)) { |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 2061 | kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list); |
Paolo Bonzini | 1f50f1b | 2016-02-24 11:07:14 +0100 | [diff] [blame] | 2062 | return false; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2063 | } |
| 2064 | |
Paolo Bonzini | 1f50f1b | 2016-02-24 11:07:14 +0100 | [diff] [blame] | 2065 | if (vcpu->arch.mmu.sync_page(vcpu, sp) == 0) { |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 2066 | kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list); |
Paolo Bonzini | 1f50f1b | 2016-02-24 11:07:14 +0100 | [diff] [blame] | 2067 | return false; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2068 | } |
| 2069 | |
Paolo Bonzini | 1f50f1b | 2016-02-24 11:07:14 +0100 | [diff] [blame] | 2070 | return true; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2071 | } |
| 2072 | |
Paolo Bonzini | 35a7051 | 2016-02-24 10:03:27 +0100 | [diff] [blame] | 2073 | static void kvm_mmu_flush_or_zap(struct kvm_vcpu *vcpu, |
| 2074 | struct list_head *invalid_list, |
| 2075 | bool remote_flush, bool local_flush) |
Xiao Guangrong | 1d9dc7e | 2010-05-15 18:51:24 +0800 | [diff] [blame] | 2076 | { |
Paolo Bonzini | 35a7051 | 2016-02-24 10:03:27 +0100 | [diff] [blame] | 2077 | if (!list_empty(invalid_list)) { |
| 2078 | kvm_mmu_commit_zap_page(vcpu->kvm, invalid_list); |
| 2079 | return; |
| 2080 | } |
Xiao Guangrong | 1d9dc7e | 2010-05-15 18:51:24 +0800 | [diff] [blame] | 2081 | |
Paolo Bonzini | 35a7051 | 2016-02-24 10:03:27 +0100 | [diff] [blame] | 2082 | if (remote_flush) |
| 2083 | kvm_flush_remote_tlbs(vcpu->kvm); |
| 2084 | else if (local_flush) |
| 2085 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Xiao Guangrong | 1d9dc7e | 2010-05-15 18:51:24 +0800 | [diff] [blame] | 2086 | } |
| 2087 | |
Xiao Guangrong | e37fa78 | 2011-11-30 17:43:24 +0800 | [diff] [blame] | 2088 | #ifdef CONFIG_KVM_MMU_AUDIT |
| 2089 | #include "mmu_audit.c" |
| 2090 | #else |
| 2091 | static void kvm_mmu_audit(struct kvm_vcpu *vcpu, int point) { } |
| 2092 | static void mmu_audit_disable(void) { } |
| 2093 | #endif |
| 2094 | |
Xiao Guangrong | 46971a2 | 2016-03-25 21:19:38 +0800 | [diff] [blame] | 2095 | static bool is_obsolete_sp(struct kvm *kvm, struct kvm_mmu_page *sp) |
| 2096 | { |
| 2097 | return unlikely(sp->mmu_valid_gen != kvm->arch.mmu_valid_gen); |
| 2098 | } |
| 2099 | |
Paolo Bonzini | 1f50f1b | 2016-02-24 11:07:14 +0100 | [diff] [blame] | 2100 | 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] | 2101 | struct list_head *invalid_list) |
Xiao Guangrong | 1d9dc7e | 2010-05-15 18:51:24 +0800 | [diff] [blame] | 2102 | { |
Paolo Bonzini | 9a43c5d | 2016-02-24 10:28:01 +0100 | [diff] [blame] | 2103 | kvm_unlink_unsync_page(vcpu->kvm, sp); |
| 2104 | return __kvm_sync_page(vcpu, sp, invalid_list); |
Xiao Guangrong | 1d9dc7e | 2010-05-15 18:51:24 +0800 | [diff] [blame] | 2105 | } |
| 2106 | |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2107 | /* @gfn should be write-protected at the call site */ |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2108 | static bool kvm_sync_pages(struct kvm_vcpu *vcpu, gfn_t gfn, |
| 2109 | struct list_head *invalid_list) |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2110 | { |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2111 | struct kvm_mmu_page *s; |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2112 | bool ret = false; |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2113 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 2114 | for_each_gfn_indirect_valid_sp(vcpu->kvm, s, gfn) { |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2115 | if (!s->unsync) |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2116 | continue; |
| 2117 | |
| 2118 | WARN_ON(s->role.level != PT_PAGE_TABLE_LEVEL); |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2119 | ret |= kvm_sync_page(vcpu, s, invalid_list); |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2120 | } |
| 2121 | |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2122 | return ret; |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2123 | } |
| 2124 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2125 | struct mmu_page_path { |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2126 | struct kvm_mmu_page *parent[PT64_ROOT_LEVEL]; |
| 2127 | unsigned int idx[PT64_ROOT_LEVEL]; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2128 | }; |
| 2129 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2130 | #define for_each_sp(pvec, sp, parents, i) \ |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2131 | for (i = mmu_pages_first(&pvec, &parents); \ |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2132 | i < pvec.nr && ({ sp = pvec.page[i].sp; 1;}); \ |
| 2133 | i = mmu_pages_next(&pvec, &parents, i)) |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2134 | |
Hannes Eder | cded19f | 2009-02-21 02:19:13 +0100 | [diff] [blame] | 2135 | static int mmu_pages_next(struct kvm_mmu_pages *pvec, |
| 2136 | struct mmu_page_path *parents, |
| 2137 | int i) |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2138 | { |
| 2139 | int n; |
| 2140 | |
| 2141 | for (n = i+1; n < pvec->nr; n++) { |
| 2142 | struct kvm_mmu_page *sp = pvec->page[n].sp; |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2143 | unsigned idx = pvec->page[n].idx; |
| 2144 | int level = sp->role.level; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2145 | |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2146 | parents->idx[level-1] = idx; |
| 2147 | if (level == PT_PAGE_TABLE_LEVEL) |
| 2148 | break; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2149 | |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2150 | parents->parent[level-2] = sp; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2151 | } |
| 2152 | |
| 2153 | return n; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2154 | } |
| 2155 | |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2156 | static int mmu_pages_first(struct kvm_mmu_pages *pvec, |
| 2157 | struct mmu_page_path *parents) |
| 2158 | { |
| 2159 | struct kvm_mmu_page *sp; |
| 2160 | int level; |
| 2161 | |
| 2162 | if (pvec->nr == 0) |
| 2163 | return 0; |
| 2164 | |
Xiao Guangrong | e23d3fe | 2016-02-24 09:46:06 +0100 | [diff] [blame] | 2165 | WARN_ON(pvec->page[0].idx != INVALID_INDEX); |
| 2166 | |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2167 | sp = pvec->page[0].sp; |
| 2168 | level = sp->role.level; |
| 2169 | WARN_ON(level == PT_PAGE_TABLE_LEVEL); |
| 2170 | |
| 2171 | parents->parent[level-2] = sp; |
| 2172 | |
| 2173 | /* Also set up a sentinel. Further entries in pvec are all |
| 2174 | * children of sp, so this element is never overwritten. |
| 2175 | */ |
| 2176 | parents->parent[level-1] = NULL; |
| 2177 | return mmu_pages_next(pvec, parents, 0); |
| 2178 | } |
| 2179 | |
Hannes Eder | cded19f | 2009-02-21 02:19:13 +0100 | [diff] [blame] | 2180 | static void mmu_pages_clear_parents(struct mmu_page_path *parents) |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2181 | { |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2182 | struct kvm_mmu_page *sp; |
| 2183 | unsigned int level = 0; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2184 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2185 | do { |
| 2186 | unsigned int idx = parents->idx[level]; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2187 | sp = parents->parent[level]; |
| 2188 | if (!sp) |
| 2189 | return; |
| 2190 | |
Xiao Guangrong | e23d3fe | 2016-02-24 09:46:06 +0100 | [diff] [blame] | 2191 | WARN_ON(idx == INVALID_INDEX); |
Takuya Yoshikawa | fd95145 | 2015-11-20 17:43:13 +0900 | [diff] [blame] | 2192 | clear_unsync_child_bit(sp, idx); |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2193 | level++; |
Paolo Bonzini | 0a47cd8 | 2016-02-23 13:54:25 +0100 | [diff] [blame] | 2194 | } while (!sp->unsync_children); |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2195 | } |
| 2196 | |
| 2197 | static void mmu_sync_children(struct kvm_vcpu *vcpu, |
| 2198 | struct kvm_mmu_page *parent) |
| 2199 | { |
| 2200 | int i; |
| 2201 | struct kvm_mmu_page *sp; |
| 2202 | struct mmu_page_path parents; |
| 2203 | struct kvm_mmu_pages pages; |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 2204 | LIST_HEAD(invalid_list); |
Paolo Bonzini | 50c9e6f | 2016-02-25 10:47:38 +0100 | [diff] [blame] | 2205 | bool flush = false; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2206 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2207 | while (mmu_unsync_walk(parent, &pages)) { |
Xiao Guangrong | 2f84569 | 2012-06-20 15:56:53 +0800 | [diff] [blame] | 2208 | bool protected = false; |
Marcelo Tosatti | b1a3682 | 2008-12-01 22:32:03 -0200 | [diff] [blame] | 2209 | |
| 2210 | for_each_sp(pages, sp, parents, i) |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 2211 | protected |= rmap_write_protect(vcpu, sp->gfn); |
Marcelo Tosatti | b1a3682 | 2008-12-01 22:32:03 -0200 | [diff] [blame] | 2212 | |
Paolo Bonzini | 50c9e6f | 2016-02-25 10:47:38 +0100 | [diff] [blame] | 2213 | if (protected) { |
Marcelo Tosatti | b1a3682 | 2008-12-01 22:32:03 -0200 | [diff] [blame] | 2214 | kvm_flush_remote_tlbs(vcpu->kvm); |
Paolo Bonzini | 50c9e6f | 2016-02-25 10:47:38 +0100 | [diff] [blame] | 2215 | flush = false; |
| 2216 | } |
Marcelo Tosatti | b1a3682 | 2008-12-01 22:32:03 -0200 | [diff] [blame] | 2217 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2218 | for_each_sp(pages, sp, parents, i) { |
Paolo Bonzini | 1f50f1b | 2016-02-24 11:07:14 +0100 | [diff] [blame] | 2219 | flush |= kvm_sync_page(vcpu, sp, &invalid_list); |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2220 | mmu_pages_clear_parents(&parents); |
| 2221 | } |
Paolo Bonzini | 50c9e6f | 2016-02-25 10:47:38 +0100 | [diff] [blame] | 2222 | if (need_resched() || spin_needbreak(&vcpu->kvm->mmu_lock)) { |
| 2223 | kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush); |
| 2224 | cond_resched_lock(&vcpu->kvm->mmu_lock); |
| 2225 | flush = false; |
| 2226 | } |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2227 | } |
Paolo Bonzini | 50c9e6f | 2016-02-25 10:47:38 +0100 | [diff] [blame] | 2228 | |
| 2229 | kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2230 | } |
| 2231 | |
Xiao Guangrong | a30f47c | 2011-09-22 16:58:36 +0800 | [diff] [blame] | 2232 | static void __clear_sp_write_flooding_count(struct kvm_mmu_page *sp) |
| 2233 | { |
Xiao Guangrong | e5691a8 | 2016-02-24 17:51:12 +0800 | [diff] [blame] | 2234 | atomic_set(&sp->write_flooding_count, 0); |
Xiao Guangrong | a30f47c | 2011-09-22 16:58:36 +0800 | [diff] [blame] | 2235 | } |
| 2236 | |
| 2237 | static void clear_sp_write_flooding_count(u64 *spte) |
| 2238 | { |
| 2239 | struct kvm_mmu_page *sp = page_header(__pa(spte)); |
| 2240 | |
| 2241 | __clear_sp_write_flooding_count(sp); |
| 2242 | } |
| 2243 | |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2244 | static struct kvm_mmu_page *kvm_mmu_get_page(struct kvm_vcpu *vcpu, |
| 2245 | gfn_t gfn, |
| 2246 | gva_t gaddr, |
| 2247 | unsigned level, |
Avi Kivity | f6e2c02b | 2009-01-11 13:02:10 +0200 | [diff] [blame] | 2248 | int direct, |
Takuya Yoshikawa | bb11c6c | 2015-11-26 21:16:35 +0900 | [diff] [blame] | 2249 | unsigned access) |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2250 | { |
| 2251 | union kvm_mmu_page_role role; |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2252 | unsigned quadrant; |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2253 | struct kvm_mmu_page *sp; |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2254 | bool need_sync = false; |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2255 | bool flush = false; |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 2256 | int collisions = 0; |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2257 | LIST_HEAD(invalid_list); |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2258 | |
Avi Kivity | a770f6f | 2008-12-21 19:20:09 +0200 | [diff] [blame] | 2259 | role = vcpu->arch.mmu.base_role; |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2260 | role.level = level; |
Avi Kivity | f6e2c02b | 2009-01-11 13:02:10 +0200 | [diff] [blame] | 2261 | role.direct = direct; |
Avi Kivity | 84b0c8c | 2010-03-14 10:16:40 +0200 | [diff] [blame] | 2262 | if (role.direct) |
Avi Kivity | 5b7e010 | 2010-04-14 19:20:03 +0300 | [diff] [blame] | 2263 | role.cr4_pae = 0; |
Avi Kivity | 41074d0 | 2007-12-09 17:00:02 +0200 | [diff] [blame] | 2264 | role.access = access; |
Joerg Roedel | c5a78f2b | 2010-09-10 17:30:39 +0200 | [diff] [blame] | 2265 | if (!vcpu->arch.mmu.direct_map |
| 2266 | && vcpu->arch.mmu.root_level <= PT32_ROOT_LEVEL) { |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2267 | quadrant = gaddr >> (PAGE_SHIFT + (PT64_PT_BITS * level)); |
| 2268 | quadrant &= (1 << ((PT32_PT_BITS - PT64_PT_BITS) * level)) - 1; |
| 2269 | role.quadrant = quadrant; |
| 2270 | } |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 2271 | for_each_valid_sp(vcpu->kvm, sp, gfn) { |
| 2272 | if (sp->gfn != gfn) { |
| 2273 | collisions++; |
| 2274 | continue; |
| 2275 | } |
| 2276 | |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2277 | if (!need_sync && sp->unsync) |
| 2278 | need_sync = true; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2279 | |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2280 | if (sp->role.word != role.word) |
| 2281 | continue; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2282 | |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2283 | if (sp->unsync) { |
| 2284 | /* The page is good, but __kvm_sync_page might still end |
| 2285 | * up zapping it. If so, break in order to rebuild it. |
| 2286 | */ |
| 2287 | if (!__kvm_sync_page(vcpu, sp, &invalid_list)) |
| 2288 | break; |
| 2289 | |
| 2290 | WARN_ON(!list_empty(&invalid_list)); |
| 2291 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
| 2292 | } |
Xiao Guangrong | e02aa90 | 2010-05-15 18:52:34 +0800 | [diff] [blame] | 2293 | |
Takuya Yoshikawa | 98bba23 | 2015-11-26 21:14:34 +0900 | [diff] [blame] | 2294 | if (sp->unsync_children) |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 2295 | kvm_make_request(KVM_REQ_MMU_SYNC, vcpu); |
Xiao Guangrong | e02aa90 | 2010-05-15 18:52:34 +0800 | [diff] [blame] | 2296 | |
Xiao Guangrong | a30f47c | 2011-09-22 16:58:36 +0800 | [diff] [blame] | 2297 | __clear_sp_write_flooding_count(sp); |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2298 | trace_kvm_mmu_get_page(sp, false); |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 2299 | goto out; |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2300 | } |
Takuya Yoshikawa | 4700579 | 2015-11-20 17:46:29 +0900 | [diff] [blame] | 2301 | |
Avi Kivity | dfc5aa0 | 2007-12-18 19:47:18 +0200 | [diff] [blame] | 2302 | ++vcpu->kvm->stat.mmu_cache_miss; |
Takuya Yoshikawa | 4700579 | 2015-11-20 17:46:29 +0900 | [diff] [blame] | 2303 | |
| 2304 | sp = kvm_mmu_alloc_page(vcpu, direct); |
| 2305 | |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 2306 | sp->gfn = gfn; |
| 2307 | sp->role = role; |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2308 | hlist_add_head(&sp->hash_link, |
| 2309 | &vcpu->kvm->arch.mmu_page_hash[kvm_page_table_hashfn(gfn)]); |
Avi Kivity | f6e2c02b | 2009-01-11 13:02:10 +0200 | [diff] [blame] | 2310 | if (!direct) { |
Xiao Guangrong | 56ca57f | 2016-02-24 17:51:14 +0800 | [diff] [blame] | 2311 | /* |
| 2312 | * we should do write protection before syncing pages |
| 2313 | * otherwise the content of the synced shadow page may |
| 2314 | * be inconsistent with guest page table. |
| 2315 | */ |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 2316 | account_shadowed(vcpu->kvm, sp); |
Xiao Guangrong | 56ca57f | 2016-02-24 17:51:14 +0800 | [diff] [blame] | 2317 | if (level == PT_PAGE_TABLE_LEVEL && |
| 2318 | rmap_write_protect(vcpu, gfn)) |
Marcelo Tosatti | b1a3682 | 2008-12-01 22:32:03 -0200 | [diff] [blame] | 2319 | kvm_flush_remote_tlbs(vcpu->kvm); |
Xiao Guangrong | 56ca57f | 2016-02-24 17:51:14 +0800 | [diff] [blame] | 2320 | |
Xiao Guangrong | 9f1a122 | 2010-05-24 15:41:33 +0800 | [diff] [blame] | 2321 | if (level > PT_PAGE_TABLE_LEVEL && need_sync) |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2322 | flush |= kvm_sync_pages(vcpu, gfn, &invalid_list); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2323 | } |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 2324 | sp->mmu_valid_gen = vcpu->kvm->arch.mmu_valid_gen; |
Takuya Yoshikawa | 7749266 | 2015-12-18 18:54:49 +0900 | [diff] [blame] | 2325 | clear_page(sp->spt); |
Avi Kivity | f691fe1 | 2009-07-06 15:58:14 +0300 | [diff] [blame] | 2326 | trace_kvm_mmu_get_page(sp, true); |
Paolo Bonzini | 2a74003a | 2016-02-24 11:26:10 +0100 | [diff] [blame] | 2327 | |
| 2328 | kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush); |
David Matlack | f3414bc | 2016-12-20 15:25:57 -0800 | [diff] [blame] | 2329 | out: |
| 2330 | if (collisions > vcpu->kvm->stat.max_mmu_page_hash_collisions) |
| 2331 | vcpu->kvm->stat.max_mmu_page_hash_collisions = collisions; |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 2332 | return sp; |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2333 | } |
| 2334 | |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 2335 | static void shadow_walk_init(struct kvm_shadow_walk_iterator *iterator, |
| 2336 | struct kvm_vcpu *vcpu, u64 addr) |
| 2337 | { |
| 2338 | iterator->addr = addr; |
| 2339 | iterator->shadow_addr = vcpu->arch.mmu.root_hpa; |
| 2340 | iterator->level = vcpu->arch.mmu.shadow_root_level; |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 2341 | |
| 2342 | if (iterator->level == PT64_ROOT_LEVEL && |
| 2343 | vcpu->arch.mmu.root_level < PT64_ROOT_LEVEL && |
| 2344 | !vcpu->arch.mmu.direct_map) |
| 2345 | --iterator->level; |
| 2346 | |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 2347 | if (iterator->level == PT32E_ROOT_LEVEL) { |
| 2348 | iterator->shadow_addr |
| 2349 | = vcpu->arch.mmu.pae_root[(addr >> 30) & 3]; |
| 2350 | iterator->shadow_addr &= PT64_BASE_ADDR_MASK; |
| 2351 | --iterator->level; |
| 2352 | if (!iterator->shadow_addr) |
| 2353 | iterator->level = 0; |
| 2354 | } |
| 2355 | } |
| 2356 | |
| 2357 | static bool shadow_walk_okay(struct kvm_shadow_walk_iterator *iterator) |
| 2358 | { |
| 2359 | if (iterator->level < PT_PAGE_TABLE_LEVEL) |
| 2360 | return false; |
Marcelo Tosatti | 4d88954 | 2009-06-11 12:07:41 -0300 | [diff] [blame] | 2361 | |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 2362 | iterator->index = SHADOW_PT_INDEX(iterator->addr, iterator->level); |
| 2363 | iterator->sptep = ((u64 *)__va(iterator->shadow_addr)) + iterator->index; |
| 2364 | return true; |
| 2365 | } |
| 2366 | |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 2367 | static void __shadow_walk_next(struct kvm_shadow_walk_iterator *iterator, |
| 2368 | u64 spte) |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 2369 | { |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 2370 | if (is_last_spte(spte, iterator->level)) { |
Xiao Guangrong | 052331b | 2011-07-12 03:21:17 +0800 | [diff] [blame] | 2371 | iterator->level = 0; |
| 2372 | return; |
| 2373 | } |
| 2374 | |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 2375 | iterator->shadow_addr = spte & PT64_BASE_ADDR_MASK; |
Avi Kivity | 2d11123 | 2008-12-25 14:39:47 +0200 | [diff] [blame] | 2376 | --iterator->level; |
| 2377 | } |
| 2378 | |
Xiao Guangrong | c2a2ac2 | 2011-07-12 03:32:13 +0800 | [diff] [blame] | 2379 | static void shadow_walk_next(struct kvm_shadow_walk_iterator *iterator) |
| 2380 | { |
| 2381 | return __shadow_walk_next(iterator, *iterator->sptep); |
| 2382 | } |
| 2383 | |
Takuya Yoshikawa | 98bba23 | 2015-11-26 21:14:34 +0900 | [diff] [blame] | 2384 | static void link_shadow_page(struct kvm_vcpu *vcpu, u64 *sptep, |
| 2385 | struct kvm_mmu_page *sp) |
Avi Kivity | 32ef26a | 2010-07-13 14:27:04 +0300 | [diff] [blame] | 2386 | { |
| 2387 | u64 spte; |
| 2388 | |
Bandan Das | ffb128c | 2016-07-12 18:18:49 -0400 | [diff] [blame] | 2389 | BUILD_BUG_ON(VMX_EPT_WRITABLE_MASK != PT_WRITABLE_MASK); |
Yang Zhang | 7a1638c | 2013-08-05 11:07:13 +0300 | [diff] [blame] | 2390 | |
Bandan Das | ffb128c | 2016-07-12 18:18:49 -0400 | [diff] [blame] | 2391 | spte = __pa(sp->spt) | shadow_present_mask | PT_WRITABLE_MASK | |
Paolo Bonzini | 0e3d064 | 2015-11-13 11:52:45 +0100 | [diff] [blame] | 2392 | shadow_user_mask | shadow_x_mask | shadow_accessed_mask; |
Xiao Guangrong | 24db273 | 2013-02-05 15:28:02 +0800 | [diff] [blame] | 2393 | |
Xiao Guangrong | 1df9f2d | 2011-07-12 03:30:35 +0800 | [diff] [blame] | 2394 | mmu_spte_set(sptep, spte); |
Takuya Yoshikawa | 98bba23 | 2015-11-26 21:14:34 +0900 | [diff] [blame] | 2395 | |
| 2396 | mmu_page_add_parent_pte(vcpu, sp, sptep); |
| 2397 | |
| 2398 | if (sp->unsync_children || sp->unsync) |
| 2399 | mark_unsync(sptep); |
Avi Kivity | 32ef26a | 2010-07-13 14:27:04 +0300 | [diff] [blame] | 2400 | } |
| 2401 | |
Avi Kivity | a357bd2 | 2010-07-13 14:27:07 +0300 | [diff] [blame] | 2402 | static void validate_direct_spte(struct kvm_vcpu *vcpu, u64 *sptep, |
| 2403 | unsigned direct_access) |
| 2404 | { |
| 2405 | if (is_shadow_present_pte(*sptep) && !is_large_pte(*sptep)) { |
| 2406 | struct kvm_mmu_page *child; |
| 2407 | |
| 2408 | /* |
| 2409 | * For the direct sp, if the guest pte's dirty bit |
| 2410 | * changed form clean to dirty, it will corrupt the |
| 2411 | * sp's access: allow writable in the read-only sp, |
| 2412 | * so we should update the spte at this point to get |
| 2413 | * a new sp with the correct access. |
| 2414 | */ |
| 2415 | child = page_header(*sptep & PT64_BASE_ADDR_MASK); |
| 2416 | if (child->role.access == direct_access) |
| 2417 | return; |
| 2418 | |
Xiao Guangrong | bcdd9a9 | 2011-05-15 23:28:29 +0800 | [diff] [blame] | 2419 | drop_parent_pte(child, sptep); |
Avi Kivity | a357bd2 | 2010-07-13 14:27:07 +0300 | [diff] [blame] | 2420 | kvm_flush_remote_tlbs(vcpu->kvm); |
| 2421 | } |
| 2422 | } |
| 2423 | |
Xiao Guangrong | 505aef8 | 2011-09-22 16:56:06 +0800 | [diff] [blame] | 2424 | 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] | 2425 | u64 *spte) |
| 2426 | { |
| 2427 | u64 pte; |
| 2428 | struct kvm_mmu_page *child; |
| 2429 | |
| 2430 | pte = *spte; |
| 2431 | if (is_shadow_present_pte(pte)) { |
Xiao Guangrong | 505aef8 | 2011-09-22 16:56:06 +0800 | [diff] [blame] | 2432 | if (is_last_spte(pte, sp->role.level)) { |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 2433 | drop_spte(kvm, spte); |
Xiao Guangrong | 505aef8 | 2011-09-22 16:56:06 +0800 | [diff] [blame] | 2434 | if (is_large_pte(pte)) |
| 2435 | --kvm->stat.lpages; |
| 2436 | } else { |
Xiao Guangrong | 38e3b2b | 2011-05-15 23:27:52 +0800 | [diff] [blame] | 2437 | child = page_header(pte & PT64_BASE_ADDR_MASK); |
Xiao Guangrong | bcdd9a9 | 2011-05-15 23:28:29 +0800 | [diff] [blame] | 2438 | drop_parent_pte(child, spte); |
Xiao Guangrong | 38e3b2b | 2011-05-15 23:27:52 +0800 | [diff] [blame] | 2439 | } |
Xiao Guangrong | 505aef8 | 2011-09-22 16:56:06 +0800 | [diff] [blame] | 2440 | return true; |
| 2441 | } |
| 2442 | |
| 2443 | if (is_mmio_spte(pte)) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 2444 | mmu_spte_clear_no_track(spte); |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 2445 | |
Xiao Guangrong | 505aef8 | 2011-09-22 16:56:06 +0800 | [diff] [blame] | 2446 | return false; |
Xiao Guangrong | 38e3b2b | 2011-05-15 23:27:52 +0800 | [diff] [blame] | 2447 | } |
| 2448 | |
Avi Kivity | 90cb052 | 2007-07-17 13:04:56 +0300 | [diff] [blame] | 2449 | static void kvm_mmu_page_unlink_children(struct kvm *kvm, |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 2450 | struct kvm_mmu_page *sp) |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2451 | { |
Avi Kivity | 697fe2e | 2007-01-05 16:36:46 -0800 | [diff] [blame] | 2452 | unsigned i; |
Avi Kivity | 697fe2e | 2007-01-05 16:36:46 -0800 | [diff] [blame] | 2453 | |
Xiao Guangrong | 38e3b2b | 2011-05-15 23:27:52 +0800 | [diff] [blame] | 2454 | for (i = 0; i < PT64_ENT_PER_PAGE; ++i) |
| 2455 | mmu_page_zap_pte(kvm, sp, sp->spt + i); |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2456 | } |
| 2457 | |
Avi Kivity | 31aa2b4 | 2008-07-11 17:59:46 +0300 | [diff] [blame] | 2458 | 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] | 2459 | { |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 2460 | u64 *sptep; |
| 2461 | struct rmap_iterator iter; |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2462 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 2463 | while ((sptep = rmap_get_first(&sp->parent_ptes, &iter))) |
Takuya Yoshikawa | 1e3f42f | 2012-03-21 23:50:34 +0900 | [diff] [blame] | 2464 | drop_parent_pte(sp, sptep); |
Avi Kivity | 31aa2b4 | 2008-07-11 17:59:46 +0300 | [diff] [blame] | 2465 | } |
| 2466 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2467 | static int mmu_zap_unsync_children(struct kvm *kvm, |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2468 | struct kvm_mmu_page *parent, |
| 2469 | struct list_head *invalid_list) |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2470 | { |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2471 | int i, zapped = 0; |
| 2472 | struct mmu_page_path parents; |
| 2473 | struct kvm_mmu_pages pages; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2474 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2475 | if (parent->role.level == PT_PAGE_TABLE_LEVEL) |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2476 | return 0; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2477 | |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2478 | while (mmu_unsync_walk(parent, &pages)) { |
| 2479 | struct kvm_mmu_page *sp; |
| 2480 | |
| 2481 | for_each_sp(pages, sp, parents, i) { |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2482 | kvm_mmu_prepare_zap_page(kvm, sp, invalid_list); |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2483 | mmu_pages_clear_parents(&parents); |
Xiao Guangrong | 77662e0 | 2010-04-16 16:34:42 +0800 | [diff] [blame] | 2484 | zapped++; |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2485 | } |
Marcelo Tosatti | 60c8aec | 2008-12-01 22:32:02 -0200 | [diff] [blame] | 2486 | } |
| 2487 | |
| 2488 | return zapped; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2489 | } |
| 2490 | |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2491 | static int kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp, |
| 2492 | struct list_head *invalid_list) |
Avi Kivity | 31aa2b4 | 2008-07-11 17:59:46 +0300 | [diff] [blame] | 2493 | { |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2494 | int ret; |
Avi Kivity | f691fe1 | 2009-07-06 15:58:14 +0300 | [diff] [blame] | 2495 | |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2496 | trace_kvm_mmu_prepare_zap_page(sp); |
Avi Kivity | 31aa2b4 | 2008-07-11 17:59:46 +0300 | [diff] [blame] | 2497 | ++kvm->stat.mmu_shadow_zapped; |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2498 | ret = mmu_zap_unsync_children(kvm, sp, invalid_list); |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 2499 | kvm_mmu_page_unlink_children(kvm, sp); |
Avi Kivity | 31aa2b4 | 2008-07-11 17:59:46 +0300 | [diff] [blame] | 2500 | kvm_mmu_unlink_parents(kvm, sp); |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 2501 | |
Avi Kivity | f6e2c02b | 2009-01-11 13:02:10 +0200 | [diff] [blame] | 2502 | if (!sp->role.invalid && !sp->role.direct) |
Paolo Bonzini | 3ed1a47 | 2015-05-19 16:29:22 +0200 | [diff] [blame] | 2503 | unaccount_shadowed(kvm, sp); |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 2504 | |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2505 | if (sp->unsync) |
| 2506 | kvm_unlink_unsync_page(kvm, sp); |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 2507 | if (!sp->root_count) { |
Gui Jianfeng | 54a4f02 | 2010-05-05 09:03:49 +0800 | [diff] [blame] | 2508 | /* Count self */ |
| 2509 | ret++; |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2510 | list_move(&sp->link, invalid_list); |
Xiao Guangrong | aa6bd18 | 2011-07-12 03:26:40 +0800 | [diff] [blame] | 2511 | kvm_mod_used_mmu_pages(kvm, -1); |
Marcelo Tosatti | 2e53d63 | 2008-02-20 14:47:24 -0500 | [diff] [blame] | 2512 | } else { |
Avi Kivity | 5b5c6a5 | 2008-07-11 18:07:26 +0300 | [diff] [blame] | 2513 | list_move(&sp->link, &kvm->arch.active_mmu_pages); |
Gleb Natapov | 05988d7 | 2013-05-31 08:36:30 +0800 | [diff] [blame] | 2514 | |
| 2515 | /* |
| 2516 | * The obsolete pages can not be used on any vcpus. |
| 2517 | * See the comments in kvm_mmu_invalidate_zap_all_pages(). |
| 2518 | */ |
| 2519 | if (!sp->role.invalid && !is_obsolete_sp(kvm, sp)) |
| 2520 | kvm_reload_remote_mmus(kvm); |
Marcelo Tosatti | 2e53d63 | 2008-02-20 14:47:24 -0500 | [diff] [blame] | 2521 | } |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2522 | |
| 2523 | sp->role.invalid = 1; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2524 | return ret; |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2525 | } |
| 2526 | |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2527 | static void kvm_mmu_commit_zap_page(struct kvm *kvm, |
| 2528 | struct list_head *invalid_list) |
| 2529 | { |
Takuya Yoshikawa | 945315b | 2013-03-06 16:05:52 +0900 | [diff] [blame] | 2530 | struct kvm_mmu_page *sp, *nsp; |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2531 | |
| 2532 | if (list_empty(invalid_list)) |
| 2533 | return; |
| 2534 | |
Avi Kivity | c142786 | 2012-05-14 15:44:06 +0300 | [diff] [blame] | 2535 | /* |
Lan Tianyu | 9753f52 | 2016-03-13 11:10:24 +0800 | [diff] [blame] | 2536 | * We need to make sure everyone sees our modifications to |
| 2537 | * the page tables and see changes to vcpu->mode here. The barrier |
| 2538 | * in the kvm_flush_remote_tlbs() achieves this. This pairs |
| 2539 | * with vcpu_enter_guest and walk_shadow_page_lockless_begin/end. |
| 2540 | * |
| 2541 | * In addition, kvm_flush_remote_tlbs waits for all vcpus to exit |
| 2542 | * guest mode and/or lockless shadow page table walks. |
Avi Kivity | c142786 | 2012-05-14 15:44:06 +0300 | [diff] [blame] | 2543 | */ |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2544 | kvm_flush_remote_tlbs(kvm); |
| 2545 | |
Takuya Yoshikawa | 945315b | 2013-03-06 16:05:52 +0900 | [diff] [blame] | 2546 | list_for_each_entry_safe(sp, nsp, invalid_list, link) { |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2547 | WARN_ON(!sp->role.invalid || sp->root_count); |
Xiao Guangrong | aa6bd18 | 2011-07-12 03:26:40 +0800 | [diff] [blame] | 2548 | kvm_mmu_free_page(sp); |
Takuya Yoshikawa | 945315b | 2013-03-06 16:05:52 +0900 | [diff] [blame] | 2549 | } |
Xiao Guangrong | 7775834 | 2010-06-04 21:53:54 +0800 | [diff] [blame] | 2550 | } |
| 2551 | |
Takuya Yoshikawa | 5da5960 | 2013-03-06 16:06:58 +0900 | [diff] [blame] | 2552 | static bool prepare_zap_oldest_mmu_page(struct kvm *kvm, |
| 2553 | struct list_head *invalid_list) |
| 2554 | { |
| 2555 | struct kvm_mmu_page *sp; |
| 2556 | |
| 2557 | if (list_empty(&kvm->arch.active_mmu_pages)) |
| 2558 | return false; |
| 2559 | |
Geliang Tang | d74c0e6 | 2016-01-01 19:47:14 +0800 | [diff] [blame] | 2560 | sp = list_last_entry(&kvm->arch.active_mmu_pages, |
| 2561 | struct kvm_mmu_page, link); |
Takuya Yoshikawa | 5da5960 | 2013-03-06 16:06:58 +0900 | [diff] [blame] | 2562 | kvm_mmu_prepare_zap_page(kvm, sp, invalid_list); |
| 2563 | |
| 2564 | return true; |
| 2565 | } |
| 2566 | |
Izik Eidus | 82ce2c9 | 2007-10-02 18:52:55 +0200 | [diff] [blame] | 2567 | /* |
| 2568 | * Changing the number of mmu pages allocated to the vm |
Dave Hansen | 49d5ca2 | 2010-08-19 18:11:28 -0700 | [diff] [blame] | 2569 | * 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] | 2570 | */ |
Dave Hansen | 49d5ca2 | 2010-08-19 18:11:28 -0700 | [diff] [blame] | 2571 | 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] | 2572 | { |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 2573 | LIST_HEAD(invalid_list); |
Izik Eidus | 82ce2c9 | 2007-10-02 18:52:55 +0200 | [diff] [blame] | 2574 | |
Takuya Yoshikawa | b34cb59 | 2013-01-08 19:46:07 +0900 | [diff] [blame] | 2575 | spin_lock(&kvm->mmu_lock); |
| 2576 | |
Dave Hansen | 49d5ca2 | 2010-08-19 18:11:28 -0700 | [diff] [blame] | 2577 | if (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages) { |
Takuya Yoshikawa | 5da5960 | 2013-03-06 16:06:58 +0900 | [diff] [blame] | 2578 | /* Need to free some mmu pages to achieve the goal. */ |
| 2579 | while (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages) |
| 2580 | if (!prepare_zap_oldest_mmu_page(kvm, &invalid_list)) |
| 2581 | break; |
Izik Eidus | 82ce2c9 | 2007-10-02 18:52:55 +0200 | [diff] [blame] | 2582 | |
Xiao Guangrong | aa6bd18 | 2011-07-12 03:26:40 +0800 | [diff] [blame] | 2583 | kvm_mmu_commit_zap_page(kvm, &invalid_list); |
Dave Hansen | 49d5ca2 | 2010-08-19 18:11:28 -0700 | [diff] [blame] | 2584 | goal_nr_mmu_pages = kvm->arch.n_used_mmu_pages; |
Izik Eidus | 82ce2c9 | 2007-10-02 18:52:55 +0200 | [diff] [blame] | 2585 | } |
Izik Eidus | 82ce2c9 | 2007-10-02 18:52:55 +0200 | [diff] [blame] | 2586 | |
Dave Hansen | 49d5ca2 | 2010-08-19 18:11:28 -0700 | [diff] [blame] | 2587 | kvm->arch.n_max_mmu_pages = goal_nr_mmu_pages; |
Takuya Yoshikawa | b34cb59 | 2013-01-08 19:46:07 +0900 | [diff] [blame] | 2588 | |
| 2589 | spin_unlock(&kvm->mmu_lock); |
Izik Eidus | 82ce2c9 | 2007-10-02 18:52:55 +0200 | [diff] [blame] | 2590 | } |
| 2591 | |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 2592 | int kvm_mmu_unprotect_page(struct kvm *kvm, gfn_t gfn) |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2593 | { |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 2594 | struct kvm_mmu_page *sp; |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 2595 | LIST_HEAD(invalid_list); |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2596 | int r; |
| 2597 | |
Xiao Guangrong | 9ad17b10 | 2010-08-28 19:19:42 +0800 | [diff] [blame] | 2598 | pgprintk("%s: looking for gfn %llx\n", __func__, gfn); |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2599 | r = 0; |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 2600 | spin_lock(&kvm->mmu_lock); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 2601 | for_each_gfn_indirect_valid_sp(kvm, sp, gfn) { |
Xiao Guangrong | 9ad17b10 | 2010-08-28 19:19:42 +0800 | [diff] [blame] | 2602 | pgprintk("%s: gfn %llx role %x\n", __func__, gfn, |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2603 | sp->role.word); |
| 2604 | r = 1; |
Xiao Guangrong | f41d335 | 2010-06-04 21:56:11 +0800 | [diff] [blame] | 2605 | kvm_mmu_prepare_zap_page(kvm, sp, &invalid_list); |
Xiao Guangrong | 7ae680e | 2010-06-04 21:53:07 +0800 | [diff] [blame] | 2606 | } |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 2607 | kvm_mmu_commit_zap_page(kvm, &invalid_list); |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 2608 | spin_unlock(&kvm->mmu_lock); |
| 2609 | |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 2610 | return r; |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2611 | } |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 2612 | EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page); |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 2613 | |
Xiao Guangrong | 5c520e9 | 2016-02-24 17:51:15 +0800 | [diff] [blame] | 2614 | 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] | 2615 | { |
Xiao Guangrong | 5e1b3dd | 2010-04-28 11:55:06 +0800 | [diff] [blame] | 2616 | trace_kvm_mmu_unsync_page(sp); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2617 | ++vcpu->kvm->stat.mmu_unsync; |
| 2618 | sp->unsync = 1; |
Marcelo Tosatti | 6cffe8c | 2008-12-01 22:32:04 -0200 | [diff] [blame] | 2619 | |
Xiao Guangrong | 6b18493 | 2010-04-16 21:29:17 +0800 | [diff] [blame] | 2620 | kvm_mmu_mark_parents_unsync(sp); |
Xiao Guangrong | 9cf5cf5 | 2010-05-24 15:40:07 +0800 | [diff] [blame] | 2621 | } |
| 2622 | |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 2623 | static bool mmu_need_write_protect(struct kvm_vcpu *vcpu, gfn_t gfn, |
| 2624 | bool can_unsync) |
Xiao Guangrong | 9cf5cf5 | 2010-05-24 15:40:07 +0800 | [diff] [blame] | 2625 | { |
Xiao Guangrong | 5c520e9 | 2016-02-24 17:51:15 +0800 | [diff] [blame] | 2626 | struct kvm_mmu_page *sp; |
Xiao Guangrong | 9cf5cf5 | 2010-05-24 15:40:07 +0800 | [diff] [blame] | 2627 | |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 2628 | if (kvm_page_track_is_active(vcpu, gfn, KVM_PAGE_TRACK_WRITE)) |
| 2629 | return true; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2630 | |
Xiao Guangrong | 5c520e9 | 2016-02-24 17:51:15 +0800 | [diff] [blame] | 2631 | for_each_gfn_indirect_valid_sp(vcpu->kvm, sp, gfn) { |
Xiao Guangrong | 36a2e67 | 2010-06-30 16:02:02 +0800 | [diff] [blame] | 2632 | if (!can_unsync) |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 2633 | return true; |
Xiao Guangrong | 36a2e67 | 2010-06-30 16:02:02 +0800 | [diff] [blame] | 2634 | |
Xiao Guangrong | 5c520e9 | 2016-02-24 17:51:15 +0800 | [diff] [blame] | 2635 | if (sp->unsync) |
| 2636 | continue; |
Xiao Guangrong | 9cf5cf5 | 2010-05-24 15:40:07 +0800 | [diff] [blame] | 2637 | |
Xiao Guangrong | 5c520e9 | 2016-02-24 17:51:15 +0800 | [diff] [blame] | 2638 | WARN_ON(sp->role.level != PT_PAGE_TABLE_LEVEL); |
| 2639 | kvm_unsync_page(vcpu, sp); |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2640 | } |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 2641 | |
| 2642 | return false; |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2643 | } |
| 2644 | |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 2645 | static bool kvm_is_mmio_pfn(kvm_pfn_t pfn) |
Paolo Bonzini | d1fe921 | 2015-07-07 15:03:18 +0200 | [diff] [blame] | 2646 | { |
| 2647 | if (pfn_valid(pfn)) |
| 2648 | return !is_zero_pfn(pfn) && PageReserved(pfn_to_page(pfn)); |
| 2649 | |
| 2650 | return true; |
| 2651 | } |
| 2652 | |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 2653 | static int set_spte(struct kvm_vcpu *vcpu, u64 *sptep, |
Xiao Guangrong | c2288505 | 2013-01-08 14:36:04 +0800 | [diff] [blame] | 2654 | unsigned pte_access, int level, |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 2655 | gfn_t gfn, kvm_pfn_t pfn, bool speculative, |
Lai Jiangshan | 9bdbba1 | 2010-11-19 17:03:22 +0800 | [diff] [blame] | 2656 | bool can_unsync, bool host_writable) |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2657 | { |
Bandan Das | ffb128c | 2016-07-12 18:18:49 -0400 | [diff] [blame] | 2658 | u64 spte = 0; |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2659 | int ret = 0; |
Sheng Yang | 64d4d52 | 2008-10-09 16:01:57 +0800 | [diff] [blame] | 2660 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 2661 | if (set_mmio_spte(vcpu, sptep, gfn, pfn, pte_access)) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 2662 | return 0; |
| 2663 | |
Bandan Das | d95c556 | 2016-07-12 18:18:51 -0400 | [diff] [blame] | 2664 | /* |
| 2665 | * For the EPT case, shadow_present_mask is 0 if hardware |
| 2666 | * supports exec-only page table entries. In that case, |
| 2667 | * ACC_USER_MASK and shadow_user_mask are used to represent |
| 2668 | * read access. See FNAME(gpte_access) in paging_tmpl.h. |
| 2669 | */ |
Bandan Das | ffb128c | 2016-07-12 18:18:49 -0400 | [diff] [blame] | 2670 | spte |= shadow_present_mask; |
Avi Kivity | 947da53 | 2008-03-18 11:05:52 +0200 | [diff] [blame] | 2671 | if (!speculative) |
Avi Kivity | 3201b5d | 2008-08-27 20:01:04 +0300 | [diff] [blame] | 2672 | spte |= shadow_accessed_mask; |
Xiao Guangrong | 640d9b0 | 2011-07-12 03:24:39 +0800 | [diff] [blame] | 2673 | |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 2674 | if (pte_access & ACC_EXEC_MASK) |
| 2675 | spte |= shadow_x_mask; |
| 2676 | else |
| 2677 | spte |= shadow_nx_mask; |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 2678 | |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2679 | if (pte_access & ACC_USER_MASK) |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 2680 | spte |= shadow_user_mask; |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 2681 | |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 2682 | if (level > PT_PAGE_TABLE_LEVEL) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 2683 | spte |= PT_PAGE_SIZE_MASK; |
Avi Kivity | b0bc3ee | 2010-09-13 16:45:28 +0200 | [diff] [blame] | 2684 | if (tdp_enabled) |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 2685 | spte |= kvm_x86_ops->get_mt_mask(vcpu, gfn, |
Paolo Bonzini | d1fe921 | 2015-07-07 15:03:18 +0200 | [diff] [blame] | 2686 | kvm_is_mmio_pfn(pfn)); |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2687 | |
Lai Jiangshan | 9bdbba1 | 2010-11-19 17:03:22 +0800 | [diff] [blame] | 2688 | if (host_writable) |
Izik Eidus | 1403283 | 2009-09-23 21:47:17 +0300 | [diff] [blame] | 2689 | spte |= SPTE_HOST_WRITEABLE; |
Xiao Guangrong | f8e453b | 2010-12-23 16:09:29 +0800 | [diff] [blame] | 2690 | else |
| 2691 | pte_access &= ~ACC_WRITE_MASK; |
Izik Eidus | 1403283 | 2009-09-23 21:47:17 +0300 | [diff] [blame] | 2692 | |
Anthony Liguori | 35149e2 | 2008-04-02 14:46:56 -0500 | [diff] [blame] | 2693 | spte |= (u64)pfn << PAGE_SHIFT; |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2694 | |
Xiao Guangrong | c2288505 | 2013-01-08 14:36:04 +0800 | [diff] [blame] | 2695 | if (pte_access & ACC_WRITE_MASK) { |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2696 | |
Xiao Guangrong | c219346 | 2012-12-04 07:17:11 +0800 | [diff] [blame] | 2697 | /* |
Xiao Guangrong | 7751bab | 2013-01-08 14:36:51 +0800 | [diff] [blame] | 2698 | * Other vcpu creates new sp in the window between |
| 2699 | * mapping_level() and acquiring mmu-lock. We can |
| 2700 | * allow guest to retry the access, the mapping can |
| 2701 | * be fixed if guest refault. |
Xiao Guangrong | c219346 | 2012-12-04 07:17:11 +0800 | [diff] [blame] | 2702 | */ |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 2703 | if (level > PT_PAGE_TABLE_LEVEL && |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 2704 | mmu_gfn_lpage_is_disallowed(vcpu, gfn, level)) |
Avi Kivity | be38d27 | 2010-06-06 14:31:27 +0300 | [diff] [blame] | 2705 | goto done; |
Marcelo Tosatti | 38187c8 | 2008-09-23 13:18:32 -0300 | [diff] [blame] | 2706 | |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 2707 | spte |= PT_WRITABLE_MASK | SPTE_MMU_WRITEABLE; |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2708 | |
Marcelo Tosatti | ecc5589 | 2008-11-25 15:58:07 +0100 | [diff] [blame] | 2709 | /* |
| 2710 | * Optimization: for pte sync, if spte was writable the hash |
| 2711 | * lookup is unnecessary (and expensive). Write protection |
| 2712 | * is responsibility of mmu_get_page / kvm_sync_page. |
| 2713 | * Same reasoning can be applied to dirty page accounting. |
| 2714 | */ |
Takuya Yoshikawa | 8dae444 | 2010-01-18 18:45:10 +0900 | [diff] [blame] | 2715 | if (!can_unsync && is_writable_pte(*sptep)) |
Marcelo Tosatti | ecc5589 | 2008-11-25 15:58:07 +0100 | [diff] [blame] | 2716 | goto set_pte; |
| 2717 | |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 2718 | if (mmu_need_write_protect(vcpu, gfn, can_unsync)) { |
Xiao Guangrong | 9ad17b10 | 2010-08-28 19:19:42 +0800 | [diff] [blame] | 2719 | pgprintk("%s: found shadow page for %llx, marking ro\n", |
Harvey Harrison | b8688d5 | 2008-03-03 12:59:56 -0800 | [diff] [blame] | 2720 | __func__, gfn); |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2721 | ret = 1; |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2722 | pte_access &= ~ACC_WRITE_MASK; |
Xiao Guangrong | 49fde34 | 2012-06-20 15:58:58 +0800 | [diff] [blame] | 2723 | spte &= ~(PT_WRITABLE_MASK | SPTE_MMU_WRITEABLE); |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2724 | } |
| 2725 | } |
| 2726 | |
Kai Huang | 9b51a63 | 2015-01-28 10:54:25 +0800 | [diff] [blame] | 2727 | if (pte_access & ACC_WRITE_MASK) { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 2728 | kvm_vcpu_mark_page_dirty(vcpu, gfn); |
Kai Huang | 9b51a63 | 2015-01-28 10:54:25 +0800 | [diff] [blame] | 2729 | spte |= shadow_dirty_mask; |
| 2730 | } |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2731 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 2732 | if (speculative) |
| 2733 | spte = mark_spte_for_access_track(spte); |
| 2734 | |
Marcelo Tosatti | 38187c8 | 2008-09-23 13:18:32 -0300 | [diff] [blame] | 2735 | set_pte: |
Xiao Guangrong | 6e7d035 | 2012-06-20 15:58:33 +0800 | [diff] [blame] | 2736 | if (mmu_spte_update(sptep, spte)) |
Xiao Guangrong | b330aa0 | 2010-11-19 17:02:35 +0800 | [diff] [blame] | 2737 | kvm_flush_remote_tlbs(vcpu->kvm); |
Avi Kivity | be38d27 | 2010-06-06 14:31:27 +0300 | [diff] [blame] | 2738 | done: |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2739 | return ret; |
| 2740 | } |
| 2741 | |
Takuya Yoshikawa | 029499b | 2015-11-20 17:44:05 +0900 | [diff] [blame] | 2742 | 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] | 2743 | int write_fault, int level, gfn_t gfn, kvm_pfn_t pfn, |
Takuya Yoshikawa | 029499b | 2015-11-20 17:44:05 +0900 | [diff] [blame] | 2744 | bool speculative, bool host_writable) |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2745 | { |
| 2746 | int was_rmapped = 0; |
Marcelo Tosatti | 53a27b3 | 2009-08-05 15:43:58 -0300 | [diff] [blame] | 2747 | int rmap_count; |
Takuya Yoshikawa | 029499b | 2015-11-20 17:44:05 +0900 | [diff] [blame] | 2748 | bool emulate = false; |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2749 | |
Xiao Guangrong | f761620 | 2013-02-05 15:27:27 +0800 | [diff] [blame] | 2750 | pgprintk("%s: spte %llx write_fault %d gfn %llx\n", __func__, |
| 2751 | *sptep, write_fault, gfn); |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2752 | |
Takuya Yoshikawa | afd28fe | 2015-11-20 17:44:55 +0900 | [diff] [blame] | 2753 | if (is_shadow_present_pte(*sptep)) { |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2754 | /* |
| 2755 | * If we overwrite a PTE page pointer with a 2MB PMD, unlink |
| 2756 | * the parent of the now unreachable PTE. |
| 2757 | */ |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 2758 | if (level > PT_PAGE_TABLE_LEVEL && |
| 2759 | !is_large_pte(*sptep)) { |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2760 | struct kvm_mmu_page *child; |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 2761 | u64 pte = *sptep; |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2762 | |
| 2763 | child = page_header(pte & PT64_BASE_ADDR_MASK); |
Xiao Guangrong | bcdd9a9 | 2011-05-15 23:28:29 +0800 | [diff] [blame] | 2764 | drop_parent_pte(child, sptep); |
Marcelo Tosatti | 3be2264 | 2010-05-28 09:44:59 -0300 | [diff] [blame] | 2765 | kvm_flush_remote_tlbs(vcpu->kvm); |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 2766 | } else if (pfn != spte_to_pfn(*sptep)) { |
Xiao Guangrong | 9ad17b10 | 2010-08-28 19:19:42 +0800 | [diff] [blame] | 2767 | pgprintk("hfn old %llx new %llx\n", |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 2768 | spte_to_pfn(*sptep), pfn); |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 2769 | drop_spte(vcpu->kvm, sptep); |
Xiao Guangrong | 9154635 | 2010-06-30 16:04:06 +0800 | [diff] [blame] | 2770 | kvm_flush_remote_tlbs(vcpu->kvm); |
Joerg Roedel | 6bed6b9 | 2009-02-18 14:08:59 +0100 | [diff] [blame] | 2771 | } else |
| 2772 | was_rmapped = 1; |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2773 | } |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 2774 | |
Xiao Guangrong | c2288505 | 2013-01-08 14:36:04 +0800 | [diff] [blame] | 2775 | if (set_spte(vcpu, sptep, pte_access, level, gfn, pfn, speculative, |
| 2776 | true, host_writable)) { |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2777 | if (write_fault) |
Takuya Yoshikawa | 029499b | 2015-11-20 17:44:05 +0900 | [diff] [blame] | 2778 | emulate = true; |
Liang Chen | 77c3913 | 2014-09-18 12:38:37 -0400 | [diff] [blame] | 2779 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Marcelo Tosatti | a378b4e | 2008-09-23 13:18:31 -0300 | [diff] [blame] | 2780 | } |
Marcelo Tosatti | 1e73f9d | 2008-09-23 13:18:30 -0300 | [diff] [blame] | 2781 | |
Takuya Yoshikawa | 029499b | 2015-11-20 17:44:05 +0900 | [diff] [blame] | 2782 | if (unlikely(is_mmio_spte(*sptep))) |
| 2783 | emulate = true; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 2784 | |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 2785 | pgprintk("%s: setting spte %llx\n", __func__, *sptep); |
Xiao Guangrong | 9ad17b10 | 2010-08-28 19:19:42 +0800 | [diff] [blame] | 2786 | pgprintk("instantiating %s PTE (%s) at %llx (%llx) addr %p\n", |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 2787 | is_large_pte(*sptep)? "2MB" : "4kB", |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 2788 | *sptep & PT_WRITABLE_MASK ? "RW" : "R", gfn, |
Joerg Roedel | a205bc1 | 2009-07-09 16:36:01 +0200 | [diff] [blame] | 2789 | *sptep, sptep); |
Avi Kivity | d555c33 | 2009-06-10 14:24:23 +0300 | [diff] [blame] | 2790 | if (!was_rmapped && is_large_pte(*sptep)) |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 2791 | ++vcpu->kvm->stat.lpages; |
| 2792 | |
Xiao Guangrong | ffb61bb | 2011-07-12 03:22:01 +0800 | [diff] [blame] | 2793 | if (is_shadow_present_pte(*sptep)) { |
Xiao Guangrong | ffb61bb | 2011-07-12 03:22:01 +0800 | [diff] [blame] | 2794 | if (!was_rmapped) { |
| 2795 | rmap_count = rmap_add(vcpu, sptep, gfn); |
| 2796 | if (rmap_count > RMAP_RECYCLE_THRESHOLD) |
| 2797 | rmap_recycle(vcpu, sptep, gfn); |
| 2798 | } |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2799 | } |
Xiao Guangrong | cb9aaa3 | 2012-08-03 15:42:10 +0800 | [diff] [blame] | 2800 | |
Xiao Guangrong | f3ac1a4 | 2012-10-16 20:07:03 +0800 | [diff] [blame] | 2801 | kvm_release_pfn_clean(pfn); |
Takuya Yoshikawa | 029499b | 2015-11-20 17:44:05 +0900 | [diff] [blame] | 2802 | |
| 2803 | return emulate; |
Avi Kivity | 1c4f1fd | 2007-12-09 17:40:31 +0200 | [diff] [blame] | 2804 | } |
| 2805 | |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 2806 | 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] | 2807 | bool no_dirty_log) |
| 2808 | { |
| 2809 | struct kvm_memory_slot *slot; |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 2810 | |
Xiao Guangrong | 5d163b1 | 2011-03-09 15:43:00 +0800 | [diff] [blame] | 2811 | slot = gfn_to_memslot_dirty_bitmap(vcpu, gfn, no_dirty_log); |
Xiao Guangrong | 903816f | 2012-07-17 21:54:11 +0800 | [diff] [blame] | 2812 | if (!slot) |
Xiao Guangrong | 6c8ee57 | 2012-08-03 15:37:54 +0800 | [diff] [blame] | 2813 | return KVM_PFN_ERR_FAULT; |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 2814 | |
Xiao Guangrong | 037d92d | 2012-08-21 10:59:12 +0800 | [diff] [blame] | 2815 | return gfn_to_pfn_memslot_atomic(slot, gfn); |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 2816 | } |
| 2817 | |
| 2818 | static int direct_pte_prefetch_many(struct kvm_vcpu *vcpu, |
| 2819 | struct kvm_mmu_page *sp, |
| 2820 | u64 *start, u64 *end) |
| 2821 | { |
| 2822 | struct page *pages[PTE_PREFETCH_NUM]; |
Paolo Bonzini | d9ef13c | 2015-05-19 16:01:50 +0200 | [diff] [blame] | 2823 | struct kvm_memory_slot *slot; |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 2824 | unsigned access = sp->role.access; |
| 2825 | int i, ret; |
| 2826 | gfn_t gfn; |
| 2827 | |
| 2828 | gfn = kvm_mmu_page_get_gfn(sp, start - sp->spt); |
Paolo Bonzini | d9ef13c | 2015-05-19 16:01:50 +0200 | [diff] [blame] | 2829 | slot = gfn_to_memslot_dirty_bitmap(vcpu, gfn, access & ACC_WRITE_MASK); |
| 2830 | if (!slot) |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 2831 | return -1; |
| 2832 | |
Paolo Bonzini | d9ef13c | 2015-05-19 16:01:50 +0200 | [diff] [blame] | 2833 | ret = gfn_to_page_many_atomic(slot, gfn, pages, end - start); |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 2834 | if (ret <= 0) |
| 2835 | return -1; |
| 2836 | |
| 2837 | for (i = 0; i < ret; i++, gfn++, start++) |
Takuya Yoshikawa | 029499b | 2015-11-20 17:44:05 +0900 | [diff] [blame] | 2838 | mmu_set_spte(vcpu, start, access, 0, sp->role.level, gfn, |
| 2839 | page_to_pfn(pages[i]), true, true); |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 2840 | |
| 2841 | return 0; |
| 2842 | } |
| 2843 | |
| 2844 | static void __direct_pte_prefetch(struct kvm_vcpu *vcpu, |
| 2845 | struct kvm_mmu_page *sp, u64 *sptep) |
| 2846 | { |
| 2847 | u64 *spte, *start = NULL; |
| 2848 | int i; |
| 2849 | |
| 2850 | WARN_ON(!sp->role.direct); |
| 2851 | |
| 2852 | i = (sptep - sp->spt) & ~(PTE_PREFETCH_NUM - 1); |
| 2853 | spte = sp->spt + i; |
| 2854 | |
| 2855 | for (i = 0; i < PTE_PREFETCH_NUM; i++, spte++) { |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 2856 | if (is_shadow_present_pte(*spte) || spte == sptep) { |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 2857 | if (!start) |
| 2858 | continue; |
| 2859 | if (direct_pte_prefetch_many(vcpu, sp, start, spte) < 0) |
| 2860 | break; |
| 2861 | start = NULL; |
| 2862 | } else if (!start) |
| 2863 | start = spte; |
| 2864 | } |
| 2865 | } |
| 2866 | |
| 2867 | static void direct_pte_prefetch(struct kvm_vcpu *vcpu, u64 *sptep) |
| 2868 | { |
| 2869 | struct kvm_mmu_page *sp; |
| 2870 | |
| 2871 | /* |
| 2872 | * Since it's no accessed bit on EPT, it's no way to |
| 2873 | * distinguish between actually accessed translations |
| 2874 | * and prefetched, so disable pte prefetch if EPT is |
| 2875 | * enabled. |
| 2876 | */ |
| 2877 | if (!shadow_accessed_mask) |
| 2878 | return; |
| 2879 | |
| 2880 | sp = page_header(__pa(sptep)); |
| 2881 | if (sp->role.level > PT_PAGE_TABLE_LEVEL) |
| 2882 | return; |
| 2883 | |
| 2884 | __direct_pte_prefetch(vcpu, sp, sptep); |
| 2885 | } |
| 2886 | |
Takuya Yoshikawa | 7ee0e5b | 2015-11-20 17:42:23 +0900 | [diff] [blame] | 2887 | 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] | 2888 | int level, gfn_t gfn, kvm_pfn_t pfn, bool prefault) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2889 | { |
Avi Kivity | 9f652d2 | 2008-12-25 14:54:25 +0200 | [diff] [blame] | 2890 | struct kvm_shadow_walk_iterator iterator; |
| 2891 | struct kvm_mmu_page *sp; |
Xiao Guangrong | b90a0e6 | 2011-07-12 03:25:56 +0800 | [diff] [blame] | 2892 | int emulate = 0; |
Avi Kivity | 9f652d2 | 2008-12-25 14:54:25 +0200 | [diff] [blame] | 2893 | gfn_t pseudo_gfn; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2894 | |
Marcelo Tosatti | 989c6b3 | 2013-12-19 15:28:51 -0200 | [diff] [blame] | 2895 | if (!VALID_PAGE(vcpu->arch.mmu.root_hpa)) |
| 2896 | return 0; |
| 2897 | |
Avi Kivity | 9f652d2 | 2008-12-25 14:54:25 +0200 | [diff] [blame] | 2898 | for_each_shadow_entry(vcpu, (u64)gfn << PAGE_SHIFT, iterator) { |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 2899 | if (iterator.level == level) { |
Takuya Yoshikawa | 029499b | 2015-11-20 17:44:05 +0900 | [diff] [blame] | 2900 | emulate = mmu_set_spte(vcpu, iterator.sptep, ACC_ALL, |
| 2901 | write, level, gfn, pfn, prefault, |
| 2902 | map_writable); |
Xiao Guangrong | 957ed9e | 2010-08-22 19:12:48 +0800 | [diff] [blame] | 2903 | direct_pte_prefetch(vcpu, iterator.sptep); |
Avi Kivity | 9f652d2 | 2008-12-25 14:54:25 +0200 | [diff] [blame] | 2904 | ++vcpu->stat.pf_fixed; |
| 2905 | break; |
| 2906 | } |
| 2907 | |
Marcelo Tosatti | 404381c | 2014-02-24 13:59:32 -0300 | [diff] [blame] | 2908 | drop_large_spte(vcpu, iterator.sptep); |
Xiao Guangrong | c370795 | 2011-07-12 03:28:04 +0800 | [diff] [blame] | 2909 | if (!is_shadow_present_pte(*iterator.sptep)) { |
Lai Jiangshan | c9fa0b3 | 2010-05-26 16:48:25 +0800 | [diff] [blame] | 2910 | u64 base_addr = iterator.addr; |
| 2911 | |
| 2912 | base_addr &= PT64_LVL_ADDR_MASK(iterator.level); |
| 2913 | pseudo_gfn = base_addr >> PAGE_SHIFT; |
Avi Kivity | 9f652d2 | 2008-12-25 14:54:25 +0200 | [diff] [blame] | 2914 | sp = kvm_mmu_get_page(vcpu, pseudo_gfn, iterator.addr, |
Takuya Yoshikawa | bb11c6c | 2015-11-26 21:16:35 +0900 | [diff] [blame] | 2915 | iterator.level - 1, 1, ACC_ALL); |
Avi Kivity | 9f652d2 | 2008-12-25 14:54:25 +0200 | [diff] [blame] | 2916 | |
Takuya Yoshikawa | 98bba23 | 2015-11-26 21:14:34 +0900 | [diff] [blame] | 2917 | link_shadow_page(vcpu, iterator.sptep, sp); |
Avi Kivity | 9f652d2 | 2008-12-25 14:54:25 +0200 | [diff] [blame] | 2918 | } |
| 2919 | } |
Xiao Guangrong | b90a0e6 | 2011-07-12 03:25:56 +0800 | [diff] [blame] | 2920 | return emulate; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 2921 | } |
| 2922 | |
Huang Ying | 77db5cb | 2010-10-08 16:24:15 +0800 | [diff] [blame] | 2923 | 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] | 2924 | { |
Huang Ying | 77db5cb | 2010-10-08 16:24:15 +0800 | [diff] [blame] | 2925 | siginfo_t info; |
Huang Ying | bf99815 | 2010-05-31 14:28:19 +0800 | [diff] [blame] | 2926 | |
Huang Ying | 77db5cb | 2010-10-08 16:24:15 +0800 | [diff] [blame] | 2927 | info.si_signo = SIGBUS; |
| 2928 | info.si_errno = 0; |
| 2929 | info.si_code = BUS_MCEERR_AR; |
| 2930 | info.si_addr = (void __user *)address; |
| 2931 | info.si_addr_lsb = PAGE_SHIFT; |
| 2932 | |
| 2933 | send_sig_info(SIGBUS, &info, tsk); |
Huang Ying | bf99815 | 2010-05-31 14:28:19 +0800 | [diff] [blame] | 2934 | } |
| 2935 | |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 2936 | 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] | 2937 | { |
Xiao Guangrong | 4d8b81a | 2012-08-21 11:02:51 +0800 | [diff] [blame] | 2938 | /* |
| 2939 | * Do not cache the mmio info caused by writing the readonly gfn |
| 2940 | * into the spte otherwise read access on readonly gfn also can |
| 2941 | * caused mmio page fault and treat it as mmio access. |
| 2942 | * Return 1 to tell kvm to emulate it. |
| 2943 | */ |
| 2944 | if (pfn == KVM_PFN_ERR_RO_FAULT) |
| 2945 | return 1; |
| 2946 | |
Xiao Guangrong | e6c1502 | 2012-08-03 15:38:36 +0800 | [diff] [blame] | 2947 | if (pfn == KVM_PFN_ERR_HWPOISON) { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 2948 | kvm_send_hwpoison_signal(kvm_vcpu_gfn_to_hva(vcpu, gfn), current); |
Huang Ying | bf99815 | 2010-05-31 14:28:19 +0800 | [diff] [blame] | 2949 | return 0; |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 2950 | } |
Gleb Natapov | edba23e | 2010-07-07 20:16:45 +0300 | [diff] [blame] | 2951 | |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 2952 | return -EFAULT; |
Huang Ying | bf99815 | 2010-05-31 14:28:19 +0800 | [diff] [blame] | 2953 | } |
| 2954 | |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 2955 | static void transparent_hugepage_adjust(struct kvm_vcpu *vcpu, |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 2956 | gfn_t *gfnp, kvm_pfn_t *pfnp, |
| 2957 | int *levelp) |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 2958 | { |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 2959 | kvm_pfn_t pfn = *pfnp; |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 2960 | gfn_t gfn = *gfnp; |
| 2961 | int level = *levelp; |
| 2962 | |
| 2963 | /* |
| 2964 | * Check if it's a transparent hugepage. If this would be an |
| 2965 | * hugetlbfs page, level wouldn't be set to |
| 2966 | * PT_PAGE_TABLE_LEVEL and there would be no adjustment done |
| 2967 | * here. |
| 2968 | */ |
Ard Biesheuvel | bf4bea8 | 2014-11-10 08:33:56 +0000 | [diff] [blame] | 2969 | if (!is_error_noslot_pfn(pfn) && !kvm_is_reserved_pfn(pfn) && |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 2970 | level == PT_PAGE_TABLE_LEVEL && |
Andrea Arcangeli | 127393f | 2016-05-05 16:22:20 -0700 | [diff] [blame] | 2971 | PageTransCompoundMap(pfn_to_page(pfn)) && |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 2972 | !mmu_gfn_lpage_is_disallowed(vcpu, gfn, PT_DIRECTORY_LEVEL)) { |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 2973 | unsigned long mask; |
| 2974 | /* |
| 2975 | * mmu_notifier_retry was successful and we hold the |
| 2976 | * mmu_lock here, so the pmd can't become splitting |
| 2977 | * from under us, and in turn |
| 2978 | * __split_huge_page_refcount() can't run from under |
| 2979 | * us and we can safely transfer the refcount from |
| 2980 | * PG_tail to PG_head as we switch the pfn to tail to |
| 2981 | * head. |
| 2982 | */ |
| 2983 | *levelp = level = PT_DIRECTORY_LEVEL; |
| 2984 | mask = KVM_PAGES_PER_HPAGE(level) - 1; |
| 2985 | VM_BUG_ON((gfn & mask) != (pfn & mask)); |
| 2986 | if (pfn & mask) { |
| 2987 | gfn &= ~mask; |
| 2988 | *gfnp = gfn; |
| 2989 | kvm_release_pfn_clean(pfn); |
| 2990 | pfn &= ~mask; |
Xiao Guangrong | c358666 | 2012-05-28 14:10:43 +0800 | [diff] [blame] | 2991 | kvm_get_pfn(pfn); |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 2992 | *pfnp = pfn; |
| 2993 | } |
| 2994 | } |
| 2995 | } |
| 2996 | |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 2997 | 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] | 2998 | kvm_pfn_t pfn, unsigned access, int *ret_val) |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 2999 | { |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3000 | /* The pfn is invalid, report the error! */ |
Xiao Guangrong | 81c52c5 | 2012-10-16 20:10:59 +0800 | [diff] [blame] | 3001 | if (unlikely(is_error_pfn(pfn))) { |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3002 | *ret_val = kvm_handle_bad_page(vcpu, gfn, pfn); |
Paolo Bonzini | 798e88b | 2016-02-23 15:28:51 +0100 | [diff] [blame] | 3003 | return true; |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3004 | } |
| 3005 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3006 | if (unlikely(is_noslot_pfn(pfn))) |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3007 | vcpu_cache_mmio_info(vcpu, gva, gfn, access); |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3008 | |
Paolo Bonzini | 798e88b | 2016-02-23 15:28:51 +0100 | [diff] [blame] | 3009 | return false; |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3010 | } |
| 3011 | |
Xiao Guangrong | e5552fd | 2013-07-30 21:01:59 +0800 | [diff] [blame] | 3012 | static bool page_fault_can_be_fast(u32 error_code) |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3013 | { |
| 3014 | /* |
Xiao Guangrong | 1c118b8 | 2013-07-18 12:52:37 +0800 | [diff] [blame] | 3015 | * Do not fix the mmio spte with invalid generation number which |
| 3016 | * need to be updated by slow page fault path. |
| 3017 | */ |
| 3018 | if (unlikely(error_code & PFERR_RSVD_MASK)) |
| 3019 | return false; |
| 3020 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 3021 | /* See if the page fault is due to an NX violation */ |
| 3022 | if (unlikely(((error_code & (PFERR_FETCH_MASK | PFERR_PRESENT_MASK)) |
| 3023 | == (PFERR_FETCH_MASK | PFERR_PRESENT_MASK)))) |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3024 | return false; |
| 3025 | |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 3026 | /* |
| 3027 | * #PF can be fast if: |
| 3028 | * 1. The shadow page table entry is not present, which could mean that |
| 3029 | * the fault is potentially caused by access tracking (if enabled). |
| 3030 | * 2. The shadow page table entry is present and the fault |
| 3031 | * is caused by write-protect, that means we just need change the W |
| 3032 | * bit of the spte which can be done out of mmu-lock. |
| 3033 | * |
| 3034 | * However, if access tracking is disabled we know that a non-present |
| 3035 | * page must be a genuine page fault where we have to create a new SPTE. |
| 3036 | * So, if access tracking is disabled, we return true only for write |
| 3037 | * accesses to a present page. |
| 3038 | */ |
| 3039 | |
| 3040 | return shadow_acc_track_mask != 0 || |
| 3041 | ((error_code & (PFERR_WRITE_MASK | PFERR_PRESENT_MASK)) |
| 3042 | == (PFERR_WRITE_MASK | PFERR_PRESENT_MASK)); |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3043 | } |
| 3044 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3045 | /* |
| 3046 | * Returns true if the SPTE was fixed successfully. Otherwise, |
| 3047 | * someone else modified the SPTE from its original value. |
| 3048 | */ |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3049 | static bool |
Xiao Guangrong | 92a476c | 2014-04-17 17:06:13 +0800 | [diff] [blame] | 3050 | fast_pf_fix_direct_spte(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp, |
Junaid Shahid | d3e328f | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3051 | u64 *sptep, u64 old_spte, u64 new_spte) |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3052 | { |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3053 | gfn_t gfn; |
| 3054 | |
| 3055 | WARN_ON(!sp->role.direct); |
| 3056 | |
Kai Huang | 9b51a63 | 2015-01-28 10:54:25 +0800 | [diff] [blame] | 3057 | /* |
| 3058 | * Theoretically we could also set dirty bit (and flush TLB) here in |
| 3059 | * order to eliminate unnecessary PML logging. See comments in |
| 3060 | * set_spte. But fast_page_fault is very unlikely to happen with PML |
| 3061 | * enabled, so we do not do this. This might result in the same GPA |
| 3062 | * to be logged in PML buffer again when the write really happens, and |
| 3063 | * eventually to be called by mark_page_dirty twice. But it's also no |
| 3064 | * harm. This also avoids the TLB flush needed after setting dirty bit |
| 3065 | * so non-PML cases won't be impacted. |
| 3066 | * |
| 3067 | * Compare with set_spte where instead shadow_dirty_mask is set. |
| 3068 | */ |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 3069 | if (cmpxchg64(sptep, old_spte, new_spte) != old_spte) |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3070 | return false; |
| 3071 | |
Junaid Shahid | d3e328f | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3072 | if (is_writable_pte(new_spte) && !is_writable_pte(old_spte)) { |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 3073 | /* |
| 3074 | * The gfn of direct spte is stable since it is |
| 3075 | * calculated by sp->gfn. |
| 3076 | */ |
| 3077 | gfn = kvm_mmu_page_get_gfn(sp, sptep - sp->spt); |
| 3078 | kvm_vcpu_mark_page_dirty(vcpu, gfn); |
| 3079 | } |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3080 | |
| 3081 | return true; |
| 3082 | } |
| 3083 | |
Junaid Shahid | d3e328f | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3084 | static bool is_access_allowed(u32 fault_err_code, u64 spte) |
| 3085 | { |
| 3086 | if (fault_err_code & PFERR_FETCH_MASK) |
| 3087 | return is_executable_pte(spte); |
| 3088 | |
| 3089 | if (fault_err_code & PFERR_WRITE_MASK) |
| 3090 | return is_writable_pte(spte); |
| 3091 | |
| 3092 | /* Fault was on Read access */ |
| 3093 | return spte & PT_PRESENT_MASK; |
| 3094 | } |
| 3095 | |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3096 | /* |
| 3097 | * Return value: |
| 3098 | * - true: let the vcpu to access on the same address again. |
| 3099 | * - false: let the real page fault path to fix it. |
| 3100 | */ |
| 3101 | static bool fast_page_fault(struct kvm_vcpu *vcpu, gva_t gva, int level, |
| 3102 | u32 error_code) |
| 3103 | { |
| 3104 | struct kvm_shadow_walk_iterator iterator; |
Xiao Guangrong | 92a476c | 2014-04-17 17:06:13 +0800 | [diff] [blame] | 3105 | struct kvm_mmu_page *sp; |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3106 | bool fault_handled = false; |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3107 | u64 spte = 0ull; |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3108 | uint retry_count = 0; |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3109 | |
Marcelo Tosatti | 37f6a4e | 2014-01-03 17:09:32 -0200 | [diff] [blame] | 3110 | if (!VALID_PAGE(vcpu->arch.mmu.root_hpa)) |
| 3111 | return false; |
| 3112 | |
Xiao Guangrong | e5552fd | 2013-07-30 21:01:59 +0800 | [diff] [blame] | 3113 | if (!page_fault_can_be_fast(error_code)) |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3114 | return false; |
| 3115 | |
| 3116 | walk_shadow_page_lockless_begin(vcpu); |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3117 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3118 | do { |
Junaid Shahid | d3e328f | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3119 | u64 new_spte; |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3120 | |
Junaid Shahid | d162f30 | 2016-12-21 20:29:30 -0800 | [diff] [blame] | 3121 | for_each_shadow_entry_lockless(vcpu, gva, iterator, spte) |
| 3122 | if (!is_shadow_present_pte(spte) || |
| 3123 | iterator.level < level) |
| 3124 | break; |
| 3125 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3126 | sp = page_header(__pa(iterator.sptep)); |
| 3127 | if (!is_last_spte(spte, sp->role.level)) |
| 3128 | break; |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3129 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3130 | /* |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 3131 | * Check whether the memory access that caused the fault would |
| 3132 | * still cause it if it were to be performed right now. If not, |
| 3133 | * then this is a spurious fault caused by TLB lazily flushed, |
| 3134 | * or some other CPU has already fixed the PTE after the |
| 3135 | * current CPU took the fault. |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3136 | * |
| 3137 | * Need not check the access of upper level table entries since |
| 3138 | * they are always ACC_ALL. |
| 3139 | */ |
Junaid Shahid | d3e328f | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3140 | if (is_access_allowed(error_code, spte)) { |
| 3141 | fault_handled = true; |
| 3142 | break; |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3143 | } |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3144 | |
Junaid Shahid | d3e328f | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3145 | new_spte = spte; |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 3146 | |
Junaid Shahid | d3e328f | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3147 | if (is_access_track_spte(spte)) |
| 3148 | new_spte = restore_acc_track_spte(new_spte); |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3149 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3150 | /* |
Junaid Shahid | d3e328f | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3151 | * Currently, to simplify the code, write-protection can |
| 3152 | * be removed in the fast path only if the SPTE was |
| 3153 | * write-protected for dirty-logging or access tracking. |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3154 | */ |
Junaid Shahid | d3e328f | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3155 | if ((error_code & PFERR_WRITE_MASK) && |
| 3156 | spte_can_locklessly_be_made_writable(spte)) |
| 3157 | { |
| 3158 | new_spte |= PT_WRITABLE_MASK; |
| 3159 | |
| 3160 | /* |
| 3161 | * Do not fix write-permission on the large spte. Since |
| 3162 | * we only dirty the first page into the dirty-bitmap in |
| 3163 | * fast_pf_fix_direct_spte(), other pages are missed |
| 3164 | * if its slot has dirty logging enabled. |
| 3165 | * |
| 3166 | * Instead, we let the slow page fault path create a |
| 3167 | * normal spte to fix the access. |
| 3168 | * |
| 3169 | * See the comments in kvm_arch_commit_memory_region(). |
| 3170 | */ |
| 3171 | if (sp->role.level > PT_PAGE_TABLE_LEVEL) |
| 3172 | break; |
| 3173 | } |
| 3174 | |
| 3175 | /* Verify that the fault can be handled in the fast path */ |
| 3176 | if (new_spte == spte || |
| 3177 | !is_access_allowed(error_code, new_spte)) |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3178 | break; |
Xiao Guangrong | c126d94 | 2014-04-17 17:06:14 +0800 | [diff] [blame] | 3179 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3180 | /* |
| 3181 | * Currently, fast page fault only works for direct mapping |
| 3182 | * since the gfn is not stable for indirect shadow page. See |
| 3183 | * Documentation/virtual/kvm/locking.txt to get more detail. |
| 3184 | */ |
| 3185 | fault_handled = fast_pf_fix_direct_spte(vcpu, sp, |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 3186 | iterator.sptep, spte, |
Junaid Shahid | d3e328f | 2016-12-21 20:29:32 -0800 | [diff] [blame] | 3187 | new_spte); |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3188 | if (fault_handled) |
| 3189 | break; |
| 3190 | |
| 3191 | if (++retry_count > 4) { |
| 3192 | printk_once(KERN_WARNING |
| 3193 | "kvm: Fast #PF retrying more than 4 times.\n"); |
| 3194 | break; |
| 3195 | } |
| 3196 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3197 | } while (true); |
| 3198 | |
Xiao Guangrong | a72faf2 | 2012-06-20 15:59:41 +0800 | [diff] [blame] | 3199 | trace_fast_page_fault(vcpu, gva, error_code, iterator.sptep, |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3200 | spte, fault_handled); |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3201 | walk_shadow_page_lockless_end(vcpu); |
| 3202 | |
Junaid Shahid | 97dceba | 2016-12-06 16:46:12 -0800 | [diff] [blame] | 3203 | return fault_handled; |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3204 | } |
| 3205 | |
Xiao Guangrong | 78b2c54 | 2010-12-07 10:48:06 +0800 | [diff] [blame] | 3206 | 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] | 3207 | gva_t gva, kvm_pfn_t *pfn, bool write, bool *writable); |
Takuya Yoshikawa | 450e0b4 | 2013-03-29 14:05:26 +0900 | [diff] [blame] | 3208 | static void make_mmu_pages_available(struct kvm_vcpu *vcpu); |
Xiao Guangrong | 060c2ab | 2010-11-12 14:49:11 +0800 | [diff] [blame] | 3209 | |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3210 | static int nonpaging_map(struct kvm_vcpu *vcpu, gva_t v, u32 error_code, |
| 3211 | gfn_t gfn, bool prefault) |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3212 | { |
| 3213 | int r; |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 3214 | int level; |
Takuya Yoshikawa | fd13690 | 2015-10-16 17:06:02 +0900 | [diff] [blame] | 3215 | bool force_pt_level = false; |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 3216 | kvm_pfn_t pfn; |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 3217 | unsigned long mmu_seq; |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3218 | bool map_writable, write = error_code & PFERR_WRITE_MASK; |
Marcelo Tosatti | aaee2c9 | 2007-12-20 19:18:26 -0500 | [diff] [blame] | 3219 | |
Takuya Yoshikawa | fd13690 | 2015-10-16 17:06:02 +0900 | [diff] [blame] | 3220 | level = mapping_level(vcpu, gfn, &force_pt_level); |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3221 | if (likely(!force_pt_level)) { |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3222 | /* |
| 3223 | * This path builds a PAE pagetable - so we can map |
| 3224 | * 2mb pages at maximum. Therefore check if the level |
| 3225 | * is larger than that. |
| 3226 | */ |
| 3227 | if (level > PT_DIRECTORY_LEVEL) |
| 3228 | level = PT_DIRECTORY_LEVEL; |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 3229 | |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3230 | gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1); |
Takuya Yoshikawa | fd13690 | 2015-10-16 17:06:02 +0900 | [diff] [blame] | 3231 | } |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 3232 | |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3233 | if (fast_page_fault(vcpu, v, level, error_code)) |
| 3234 | return 0; |
| 3235 | |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 3236 | mmu_seq = vcpu->kvm->mmu_notifier_seq; |
Marcelo Tosatti | 4c2155c | 2008-09-16 20:54:47 -0300 | [diff] [blame] | 3237 | smp_rmb(); |
Xiao Guangrong | 060c2ab | 2010-11-12 14:49:11 +0800 | [diff] [blame] | 3238 | |
Xiao Guangrong | 78b2c54 | 2010-12-07 10:48:06 +0800 | [diff] [blame] | 3239 | if (try_async_pf(vcpu, prefault, gfn, v, &pfn, write, &map_writable)) |
Xiao Guangrong | 060c2ab | 2010-11-12 14:49:11 +0800 | [diff] [blame] | 3240 | return 0; |
Marcelo Tosatti | aaee2c9 | 2007-12-20 19:18:26 -0500 | [diff] [blame] | 3241 | |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3242 | if (handle_abnormal_pfn(vcpu, v, gfn, pfn, ACC_ALL, &r)) |
| 3243 | return r; |
Avi Kivity | d196e34 | 2008-01-24 11:44:11 +0200 | [diff] [blame] | 3244 | |
Marcelo Tosatti | aaee2c9 | 2007-12-20 19:18:26 -0500 | [diff] [blame] | 3245 | spin_lock(&vcpu->kvm->mmu_lock); |
Christoffer Dall | 8ca40a7 | 2012-10-14 23:10:18 -0400 | [diff] [blame] | 3246 | if (mmu_notifier_retry(vcpu->kvm, mmu_seq)) |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 3247 | goto out_unlock; |
Takuya Yoshikawa | 450e0b4 | 2013-03-29 14:05:26 +0900 | [diff] [blame] | 3248 | make_mmu_pages_available(vcpu); |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3249 | if (likely(!force_pt_level)) |
| 3250 | transparent_hugepage_adjust(vcpu, &gfn, &pfn, &level); |
Takuya Yoshikawa | 7ee0e5b | 2015-11-20 17:42:23 +0900 | [diff] [blame] | 3251 | r = __direct_map(vcpu, write, map_writable, level, gfn, pfn, prefault); |
Marcelo Tosatti | aaee2c9 | 2007-12-20 19:18:26 -0500 | [diff] [blame] | 3252 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 3253 | |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3254 | return r; |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 3255 | |
| 3256 | out_unlock: |
| 3257 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 3258 | kvm_release_pfn_clean(pfn); |
| 3259 | return 0; |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 3260 | } |
| 3261 | |
| 3262 | |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3263 | static void mmu_free_roots(struct kvm_vcpu *vcpu) |
| 3264 | { |
| 3265 | int i; |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 3266 | struct kvm_mmu_page *sp; |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 3267 | LIST_HEAD(invalid_list); |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3268 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3269 | if (!VALID_PAGE(vcpu->arch.mmu.root_hpa)) |
Avi Kivity | 7b53aa5 | 2007-06-05 12:17:03 +0300 | [diff] [blame] | 3270 | return; |
Gleb Natapov | 35af577 | 2013-05-16 11:55:51 +0300 | [diff] [blame] | 3271 | |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3272 | if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL && |
| 3273 | (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL || |
| 3274 | vcpu->arch.mmu.direct_map)) { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3275 | hpa_t root = vcpu->arch.mmu.root_hpa; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3276 | |
Gleb Natapov | 35af577 | 2013-05-16 11:55:51 +0300 | [diff] [blame] | 3277 | spin_lock(&vcpu->kvm->mmu_lock); |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 3278 | sp = page_header(root); |
| 3279 | --sp->root_count; |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 3280 | if (!sp->root_count && sp->role.invalid) { |
| 3281 | kvm_mmu_prepare_zap_page(vcpu->kvm, sp, &invalid_list); |
| 3282 | kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list); |
| 3283 | } |
Marcelo Tosatti | aaee2c9 | 2007-12-20 19:18:26 -0500 | [diff] [blame] | 3284 | spin_unlock(&vcpu->kvm->mmu_lock); |
Gleb Natapov | 35af577 | 2013-05-16 11:55:51 +0300 | [diff] [blame] | 3285 | vcpu->arch.mmu.root_hpa = INVALID_PAGE; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3286 | return; |
| 3287 | } |
Gleb Natapov | 35af577 | 2013-05-16 11:55:51 +0300 | [diff] [blame] | 3288 | |
| 3289 | spin_lock(&vcpu->kvm->mmu_lock); |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3290 | for (i = 0; i < 4; ++i) { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3291 | hpa_t root = vcpu->arch.mmu.pae_root[i]; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3292 | |
Avi Kivity | 417726a | 2007-04-12 17:35:58 +0300 | [diff] [blame] | 3293 | if (root) { |
Avi Kivity | 417726a | 2007-04-12 17:35:58 +0300 | [diff] [blame] | 3294 | root &= PT64_BASE_ADDR_MASK; |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 3295 | sp = page_header(root); |
| 3296 | --sp->root_count; |
Marcelo Tosatti | 2e53d63 | 2008-02-20 14:47:24 -0500 | [diff] [blame] | 3297 | if (!sp->root_count && sp->role.invalid) |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 3298 | kvm_mmu_prepare_zap_page(vcpu->kvm, sp, |
| 3299 | &invalid_list); |
Avi Kivity | 417726a | 2007-04-12 17:35:58 +0300 | [diff] [blame] | 3300 | } |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3301 | vcpu->arch.mmu.pae_root[i] = INVALID_PAGE; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3302 | } |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 3303 | kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list); |
Marcelo Tosatti | aaee2c9 | 2007-12-20 19:18:26 -0500 | [diff] [blame] | 3304 | spin_unlock(&vcpu->kvm->mmu_lock); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3305 | vcpu->arch.mmu.root_hpa = INVALID_PAGE; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3306 | } |
| 3307 | |
Marcelo Tosatti | 8986ecc | 2009-05-12 18:55:45 -0300 | [diff] [blame] | 3308 | static int mmu_check_root(struct kvm_vcpu *vcpu, gfn_t root_gfn) |
| 3309 | { |
| 3310 | int ret = 0; |
| 3311 | |
| 3312 | if (!kvm_is_visible_gfn(vcpu->kvm, root_gfn)) { |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 3313 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Marcelo Tosatti | 8986ecc | 2009-05-12 18:55:45 -0300 | [diff] [blame] | 3314 | ret = 1; |
| 3315 | } |
| 3316 | |
| 3317 | return ret; |
| 3318 | } |
| 3319 | |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3320 | static int mmu_alloc_direct_roots(struct kvm_vcpu *vcpu) |
| 3321 | { |
| 3322 | struct kvm_mmu_page *sp; |
Avi Kivity | 7ebaf15 | 2010-10-03 18:51:39 +0200 | [diff] [blame] | 3323 | unsigned i; |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3324 | |
| 3325 | if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) { |
| 3326 | spin_lock(&vcpu->kvm->mmu_lock); |
Takuya Yoshikawa | 450e0b4 | 2013-03-29 14:05:26 +0900 | [diff] [blame] | 3327 | make_mmu_pages_available(vcpu); |
Takuya Yoshikawa | bb11c6c | 2015-11-26 21:16:35 +0900 | [diff] [blame] | 3328 | sp = kvm_mmu_get_page(vcpu, 0, 0, PT64_ROOT_LEVEL, 1, ACC_ALL); |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3329 | ++sp->root_count; |
| 3330 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 3331 | vcpu->arch.mmu.root_hpa = __pa(sp->spt); |
| 3332 | } else if (vcpu->arch.mmu.shadow_root_level == PT32E_ROOT_LEVEL) { |
| 3333 | for (i = 0; i < 4; ++i) { |
| 3334 | hpa_t root = vcpu->arch.mmu.pae_root[i]; |
| 3335 | |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 3336 | MMU_WARN_ON(VALID_PAGE(root)); |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3337 | spin_lock(&vcpu->kvm->mmu_lock); |
Takuya Yoshikawa | 450e0b4 | 2013-03-29 14:05:26 +0900 | [diff] [blame] | 3338 | make_mmu_pages_available(vcpu); |
Avi Kivity | 649497d | 2010-12-28 12:09:07 +0200 | [diff] [blame] | 3339 | sp = kvm_mmu_get_page(vcpu, i << (30 - PAGE_SHIFT), |
Takuya Yoshikawa | bb11c6c | 2015-11-26 21:16:35 +0900 | [diff] [blame] | 3340 | i << 30, PT32_ROOT_LEVEL, 1, ACC_ALL); |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3341 | root = __pa(sp->spt); |
| 3342 | ++sp->root_count; |
| 3343 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 3344 | vcpu->arch.mmu.pae_root[i] = root | PT_PRESENT_MASK; |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3345 | } |
Xiao Guangrong | 6292757 | 2010-09-27 18:02:12 +0800 | [diff] [blame] | 3346 | vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root); |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3347 | } else |
| 3348 | BUG(); |
| 3349 | |
| 3350 | return 0; |
| 3351 | } |
| 3352 | |
| 3353 | static int mmu_alloc_shadow_roots(struct kvm_vcpu *vcpu) |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3354 | { |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 3355 | struct kvm_mmu_page *sp; |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3356 | u64 pdptr, pm_mask; |
| 3357 | gfn_t root_gfn; |
| 3358 | int i; |
Avi Kivity | 3bb65a2 | 2007-01-05 16:36:51 -0800 | [diff] [blame] | 3359 | |
Joerg Roedel | 5777ed3 | 2010-09-10 17:30:42 +0200 | [diff] [blame] | 3360 | root_gfn = vcpu->arch.mmu.get_cr3(vcpu) >> PAGE_SHIFT; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3361 | |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3362 | if (mmu_check_root(vcpu, root_gfn)) |
| 3363 | return 1; |
| 3364 | |
| 3365 | /* |
| 3366 | * Do we shadow a long mode page table? If so we need to |
| 3367 | * write-protect the guests page table root. |
| 3368 | */ |
| 3369 | if (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL) { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3370 | hpa_t root = vcpu->arch.mmu.root_hpa; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3371 | |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 3372 | MMU_WARN_ON(VALID_PAGE(root)); |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3373 | |
Avi Kivity | 8facbbf | 2010-05-04 12:58:32 +0300 | [diff] [blame] | 3374 | spin_lock(&vcpu->kvm->mmu_lock); |
Takuya Yoshikawa | 450e0b4 | 2013-03-29 14:05:26 +0900 | [diff] [blame] | 3375 | make_mmu_pages_available(vcpu); |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3376 | sp = kvm_mmu_get_page(vcpu, root_gfn, 0, PT64_ROOT_LEVEL, |
Takuya Yoshikawa | bb11c6c | 2015-11-26 21:16:35 +0900 | [diff] [blame] | 3377 | 0, ACC_ALL); |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 3378 | root = __pa(sp->spt); |
| 3379 | ++sp->root_count; |
Avi Kivity | 8facbbf | 2010-05-04 12:58:32 +0300 | [diff] [blame] | 3380 | spin_unlock(&vcpu->kvm->mmu_lock); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3381 | vcpu->arch.mmu.root_hpa = root; |
Marcelo Tosatti | 8986ecc | 2009-05-12 18:55:45 -0300 | [diff] [blame] | 3382 | return 0; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3383 | } |
Joerg Roedel | f87f928 | 2010-09-02 17:29:45 +0200 | [diff] [blame] | 3384 | |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3385 | /* |
| 3386 | * 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] | 3387 | * or a PAE 3-level page table. In either case we need to be aware that |
| 3388 | * 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] | 3389 | */ |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3390 | pm_mask = PT_PRESENT_MASK; |
| 3391 | if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) |
| 3392 | pm_mask |= PT_ACCESSED_MASK | PT_WRITABLE_MASK | PT_USER_MASK; |
| 3393 | |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3394 | for (i = 0; i < 4; ++i) { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3395 | hpa_t root = vcpu->arch.mmu.pae_root[i]; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3396 | |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 3397 | MMU_WARN_ON(VALID_PAGE(root)); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3398 | if (vcpu->arch.mmu.root_level == PT32E_ROOT_LEVEL) { |
Avi Kivity | e4e517b | 2011-07-28 11:36:17 +0300 | [diff] [blame] | 3399 | pdptr = vcpu->arch.mmu.get_pdptr(vcpu, i); |
Bandan Das | 812f30b | 2016-07-12 18:18:50 -0400 | [diff] [blame] | 3400 | if (!(pdptr & PT_PRESENT_MASK)) { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 3401 | vcpu->arch.mmu.pae_root[i] = 0; |
Avi Kivity | 417726a | 2007-04-12 17:35:58 +0300 | [diff] [blame] | 3402 | continue; |
| 3403 | } |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 3404 | root_gfn = pdptr >> PAGE_SHIFT; |
Joerg Roedel | f87f928 | 2010-09-02 17:29:45 +0200 | [diff] [blame] | 3405 | if (mmu_check_root(vcpu, root_gfn)) |
| 3406 | return 1; |
Eric Northup | 5a7388c | 2010-04-26 17:00:05 -0700 | [diff] [blame] | 3407 | } |
Avi Kivity | 8facbbf | 2010-05-04 12:58:32 +0300 | [diff] [blame] | 3408 | spin_lock(&vcpu->kvm->mmu_lock); |
Takuya Yoshikawa | 450e0b4 | 2013-03-29 14:05:26 +0900 | [diff] [blame] | 3409 | make_mmu_pages_available(vcpu); |
Takuya Yoshikawa | bb11c6c | 2015-11-26 21:16:35 +0900 | [diff] [blame] | 3410 | sp = kvm_mmu_get_page(vcpu, root_gfn, i << 30, PT32_ROOT_LEVEL, |
| 3411 | 0, ACC_ALL); |
Avi Kivity | 4db3531 | 2007-11-21 15:28:32 +0200 | [diff] [blame] | 3412 | root = __pa(sp->spt); |
| 3413 | ++sp->root_count; |
Avi Kivity | 8facbbf | 2010-05-04 12:58:32 +0300 | [diff] [blame] | 3414 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 3415 | |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3416 | vcpu->arch.mmu.pae_root[i] = root | pm_mask; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3417 | } |
Xiao Guangrong | 6292757 | 2010-09-27 18:02:12 +0800 | [diff] [blame] | 3418 | vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root); |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3419 | |
| 3420 | /* |
| 3421 | * If we shadow a 32 bit page table with a long mode page |
| 3422 | * table we enter this path. |
| 3423 | */ |
| 3424 | if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) { |
| 3425 | if (vcpu->arch.mmu.lm_root == NULL) { |
| 3426 | /* |
| 3427 | * The additional page necessary for this is only |
| 3428 | * allocated on demand. |
| 3429 | */ |
| 3430 | |
| 3431 | u64 *lm_root; |
| 3432 | |
| 3433 | lm_root = (void*)get_zeroed_page(GFP_KERNEL); |
| 3434 | if (lm_root == NULL) |
| 3435 | return 1; |
| 3436 | |
| 3437 | lm_root[0] = __pa(vcpu->arch.mmu.pae_root) | pm_mask; |
| 3438 | |
| 3439 | vcpu->arch.mmu.lm_root = lm_root; |
| 3440 | } |
| 3441 | |
| 3442 | vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.lm_root); |
| 3443 | } |
| 3444 | |
Marcelo Tosatti | 8986ecc | 2009-05-12 18:55:45 -0300 | [diff] [blame] | 3445 | return 0; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 3446 | } |
| 3447 | |
Joerg Roedel | 651dd37 | 2010-09-10 17:30:59 +0200 | [diff] [blame] | 3448 | static int mmu_alloc_roots(struct kvm_vcpu *vcpu) |
| 3449 | { |
| 3450 | if (vcpu->arch.mmu.direct_map) |
| 3451 | return mmu_alloc_direct_roots(vcpu); |
| 3452 | else |
| 3453 | return mmu_alloc_shadow_roots(vcpu); |
| 3454 | } |
| 3455 | |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3456 | static void mmu_sync_roots(struct kvm_vcpu *vcpu) |
| 3457 | { |
| 3458 | int i; |
| 3459 | struct kvm_mmu_page *sp; |
| 3460 | |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3461 | if (vcpu->arch.mmu.direct_map) |
| 3462 | return; |
| 3463 | |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3464 | if (!VALID_PAGE(vcpu->arch.mmu.root_hpa)) |
| 3465 | return; |
Xiao Guangrong | 6903074 | 2010-09-27 18:09:29 +0800 | [diff] [blame] | 3466 | |
David Matlack | 56f17dd | 2014-08-18 15:46:07 -0700 | [diff] [blame] | 3467 | vcpu_clear_mmio_info(vcpu, MMIO_GVA_ANY); |
Xiao Guangrong | 0375f7f | 2011-11-28 20:41:00 +0800 | [diff] [blame] | 3468 | kvm_mmu_audit(vcpu, AUDIT_PRE_SYNC); |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 3469 | if (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL) { |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3470 | hpa_t root = vcpu->arch.mmu.root_hpa; |
| 3471 | sp = page_header(root); |
| 3472 | mmu_sync_children(vcpu, sp); |
Xiao Guangrong | 0375f7f | 2011-11-28 20:41:00 +0800 | [diff] [blame] | 3473 | kvm_mmu_audit(vcpu, AUDIT_POST_SYNC); |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3474 | return; |
| 3475 | } |
| 3476 | for (i = 0; i < 4; ++i) { |
| 3477 | hpa_t root = vcpu->arch.mmu.pae_root[i]; |
| 3478 | |
Marcelo Tosatti | 8986ecc | 2009-05-12 18:55:45 -0300 | [diff] [blame] | 3479 | if (root && VALID_PAGE(root)) { |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3480 | root &= PT64_BASE_ADDR_MASK; |
| 3481 | sp = page_header(root); |
| 3482 | mmu_sync_children(vcpu, sp); |
| 3483 | } |
| 3484 | } |
Xiao Guangrong | 0375f7f | 2011-11-28 20:41:00 +0800 | [diff] [blame] | 3485 | kvm_mmu_audit(vcpu, AUDIT_POST_SYNC); |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3486 | } |
| 3487 | |
| 3488 | void kvm_mmu_sync_roots(struct kvm_vcpu *vcpu) |
| 3489 | { |
| 3490 | spin_lock(&vcpu->kvm->mmu_lock); |
| 3491 | mmu_sync_roots(vcpu); |
| 3492 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 3493 | } |
Nadav Har'El | bfd0a56 | 2013-08-05 11:07:17 +0300 | [diff] [blame] | 3494 | EXPORT_SYMBOL_GPL(kvm_mmu_sync_roots); |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 3495 | |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 3496 | 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] | 3497 | u32 access, struct x86_exception *exception) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3498 | { |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 3499 | if (exception) |
| 3500 | exception->error_code = 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3501 | return vaddr; |
| 3502 | } |
| 3503 | |
Joerg Roedel | 6539e73 | 2010-09-10 17:30:50 +0200 | [diff] [blame] | 3504 | 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] | 3505 | u32 access, |
| 3506 | struct x86_exception *exception) |
Joerg Roedel | 6539e73 | 2010-09-10 17:30:50 +0200 | [diff] [blame] | 3507 | { |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 3508 | if (exception) |
| 3509 | exception->error_code = 0; |
Paolo Bonzini | 54987b7 | 2014-09-02 13:23:06 +0200 | [diff] [blame] | 3510 | return vcpu->arch.nested_mmu.translate_gpa(vcpu, vaddr, access, exception); |
Joerg Roedel | 6539e73 | 2010-09-10 17:30:50 +0200 | [diff] [blame] | 3511 | } |
| 3512 | |
Xiao Guangrong | d625b15 | 2015-08-05 12:04:25 +0800 | [diff] [blame] | 3513 | static bool |
| 3514 | __is_rsvd_bits_set(struct rsvd_bits_validate *rsvd_check, u64 pte, int level) |
| 3515 | { |
| 3516 | int bit7 = (pte >> 7) & 1, low6 = pte & 0x3f; |
| 3517 | |
| 3518 | return (pte & rsvd_check->rsvd_bits_mask[bit7][level-1]) | |
| 3519 | ((rsvd_check->bad_mt_xwr & (1ull << low6)) != 0); |
| 3520 | } |
| 3521 | |
| 3522 | static bool is_rsvd_bits_set(struct kvm_mmu *mmu, u64 gpte, int level) |
| 3523 | { |
| 3524 | return __is_rsvd_bits_set(&mmu->guest_rsvd_check, gpte, level); |
| 3525 | } |
| 3526 | |
| 3527 | static bool is_shadow_zero_bits_set(struct kvm_mmu *mmu, u64 spte, int level) |
| 3528 | { |
| 3529 | return __is_rsvd_bits_set(&mmu->shadow_zero_check, spte, level); |
| 3530 | } |
| 3531 | |
Takuya Yoshikawa | ded5874 | 2016-02-22 17:23:40 +0900 | [diff] [blame] | 3532 | 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] | 3533 | { |
| 3534 | if (direct) |
| 3535 | return vcpu_match_mmio_gpa(vcpu, addr); |
| 3536 | |
| 3537 | return vcpu_match_mmio_gva(vcpu, addr); |
| 3538 | } |
| 3539 | |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3540 | /* return true if reserved bit is detected on spte. */ |
| 3541 | static bool |
| 3542 | 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] | 3543 | { |
| 3544 | struct kvm_shadow_walk_iterator iterator; |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3545 | u64 sptes[PT64_ROOT_LEVEL], spte = 0ull; |
| 3546 | int root, leaf; |
| 3547 | bool reserved = false; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3548 | |
Marcelo Tosatti | 37f6a4e | 2014-01-03 17:09:32 -0200 | [diff] [blame] | 3549 | if (!VALID_PAGE(vcpu->arch.mmu.root_hpa)) |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3550 | goto exit; |
Marcelo Tosatti | 37f6a4e | 2014-01-03 17:09:32 -0200 | [diff] [blame] | 3551 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3552 | walk_shadow_page_lockless_begin(vcpu); |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3553 | |
Paolo Bonzini | 29ecd66 | 2015-09-06 16:24:50 +0200 | [diff] [blame] | 3554 | for (shadow_walk_init(&iterator, vcpu, addr), |
| 3555 | leaf = root = iterator.level; |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3556 | shadow_walk_okay(&iterator); |
| 3557 | __shadow_walk_next(&iterator, spte)) { |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3558 | spte = mmu_spte_get_lockless(iterator.sptep); |
| 3559 | |
| 3560 | sptes[leaf - 1] = spte; |
Paolo Bonzini | 29ecd66 | 2015-09-06 16:24:50 +0200 | [diff] [blame] | 3561 | leaf--; |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3562 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3563 | if (!is_shadow_present_pte(spte)) |
| 3564 | break; |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3565 | |
| 3566 | reserved |= is_shadow_zero_bits_set(&vcpu->arch.mmu, spte, |
Paolo Bonzini | 58c9507 | 2015-09-22 10:15:59 +0200 | [diff] [blame] | 3567 | iterator.level); |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3568 | } |
| 3569 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3570 | walk_shadow_page_lockless_end(vcpu); |
| 3571 | |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3572 | if (reserved) { |
| 3573 | pr_err("%s: detect reserved bits on spte, addr 0x%llx, dump hierarchy:\n", |
| 3574 | __func__, addr); |
Paolo Bonzini | 29ecd66 | 2015-09-06 16:24:50 +0200 | [diff] [blame] | 3575 | while (root > leaf) { |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3576 | pr_err("------ spte 0x%llx level %d.\n", |
| 3577 | sptes[root - 1], root); |
| 3578 | root--; |
| 3579 | } |
| 3580 | } |
| 3581 | exit: |
| 3582 | *sptep = spte; |
| 3583 | return reserved; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3584 | } |
| 3585 | |
Paolo Bonzini | 450869d | 2015-11-04 13:41:21 +0100 | [diff] [blame] | 3586 | 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] | 3587 | { |
| 3588 | u64 spte; |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3589 | bool reserved; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3590 | |
Takuya Yoshikawa | ded5874 | 2016-02-22 17:23:40 +0900 | [diff] [blame] | 3591 | if (mmio_info_in_cache(vcpu, addr, direct)) |
Xiao Guangrong | b37fbea | 2013-06-07 16:51:25 +0800 | [diff] [blame] | 3592 | return RET_MMIO_PF_EMULATE; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3593 | |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3594 | reserved = walk_shadow_page_get_mmio_spte(vcpu, addr, &spte); |
Paolo Bonzini | 450869d | 2015-11-04 13:41:21 +0100 | [diff] [blame] | 3595 | if (WARN_ON(reserved)) |
Xiao Guangrong | 47ab875 | 2015-08-05 12:04:26 +0800 | [diff] [blame] | 3596 | return RET_MMIO_PF_BUG; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3597 | |
| 3598 | if (is_mmio_spte(spte)) { |
| 3599 | gfn_t gfn = get_mmio_spte_gfn(spte); |
| 3600 | unsigned access = get_mmio_spte_access(spte); |
| 3601 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 3602 | if (!check_mmio_spte(vcpu, spte)) |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 3603 | return RET_MMIO_PF_INVALID; |
| 3604 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3605 | if (direct) |
| 3606 | addr = 0; |
Xiao Guangrong | 4f02264 | 2011-07-12 03:34:24 +0800 | [diff] [blame] | 3607 | |
| 3608 | trace_handle_mmio_page_fault(addr, gfn, access); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3609 | vcpu_cache_mmio_info(vcpu, addr, gfn, access); |
Xiao Guangrong | b37fbea | 2013-06-07 16:51:25 +0800 | [diff] [blame] | 3610 | return RET_MMIO_PF_EMULATE; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3611 | } |
| 3612 | |
| 3613 | /* |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3614 | * If the page table is zapped by other cpus, let CPU fault again on |
| 3615 | * the address. |
| 3616 | */ |
Xiao Guangrong | b37fbea | 2013-06-07 16:51:25 +0800 | [diff] [blame] | 3617 | return RET_MMIO_PF_RETRY; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3618 | } |
Paolo Bonzini | 450869d | 2015-11-04 13:41:21 +0100 | [diff] [blame] | 3619 | EXPORT_SYMBOL_GPL(handle_mmio_page_fault); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3620 | |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 3621 | static bool page_fault_handle_page_track(struct kvm_vcpu *vcpu, |
| 3622 | u32 error_code, gfn_t gfn) |
| 3623 | { |
| 3624 | if (unlikely(error_code & PFERR_RSVD_MASK)) |
| 3625 | return false; |
| 3626 | |
| 3627 | if (!(error_code & PFERR_PRESENT_MASK) || |
| 3628 | !(error_code & PFERR_WRITE_MASK)) |
| 3629 | return false; |
| 3630 | |
| 3631 | /* |
| 3632 | * guest is writing the page which is write tracked which can |
| 3633 | * not be fixed by page fault handler. |
| 3634 | */ |
| 3635 | if (kvm_page_track_is_active(vcpu, gfn, KVM_PAGE_TRACK_WRITE)) |
| 3636 | return true; |
| 3637 | |
| 3638 | return false; |
| 3639 | } |
| 3640 | |
Xiao Guangrong | e5691a8 | 2016-02-24 17:51:12 +0800 | [diff] [blame] | 3641 | static void shadow_page_table_clear_flood(struct kvm_vcpu *vcpu, gva_t addr) |
| 3642 | { |
| 3643 | struct kvm_shadow_walk_iterator iterator; |
| 3644 | u64 spte; |
| 3645 | |
| 3646 | if (!VALID_PAGE(vcpu->arch.mmu.root_hpa)) |
| 3647 | return; |
| 3648 | |
| 3649 | walk_shadow_page_lockless_begin(vcpu); |
| 3650 | for_each_shadow_entry_lockless(vcpu, addr, iterator, spte) { |
| 3651 | clear_sp_write_flooding_count(iterator.sptep); |
| 3652 | if (!is_shadow_present_pte(spte)) |
| 3653 | break; |
| 3654 | } |
| 3655 | walk_shadow_page_lockless_end(vcpu); |
| 3656 | } |
| 3657 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3658 | static int nonpaging_page_fault(struct kvm_vcpu *vcpu, gva_t gva, |
Xiao Guangrong | 78b2c54 | 2010-12-07 10:48:06 +0800 | [diff] [blame] | 3659 | u32 error_code, bool prefault) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3660 | { |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 3661 | gfn_t gfn = gva >> PAGE_SHIFT; |
Avi Kivity | e2dec93 | 2007-01-05 16:36:54 -0800 | [diff] [blame] | 3662 | int r; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3663 | |
Harvey Harrison | b8688d5 | 2008-03-03 12:59:56 -0800 | [diff] [blame] | 3664 | pgprintk("%s: gva %lx error %x\n", __func__, gva, error_code); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3665 | |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 3666 | if (page_fault_handle_page_track(vcpu, error_code, gfn)) |
| 3667 | return 1; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3668 | |
Avi Kivity | e2dec93 | 2007-01-05 16:36:54 -0800 | [diff] [blame] | 3669 | r = mmu_topup_memory_caches(vcpu); |
| 3670 | if (r) |
| 3671 | return r; |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 3672 | |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 3673 | MMU_WARN_ON(!VALID_PAGE(vcpu->arch.mmu.root_hpa)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3674 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3675 | |
Avi Kivity | e833240 | 2007-12-09 18:43:00 +0200 | [diff] [blame] | 3676 | return nonpaging_map(vcpu, gva & PAGE_MASK, |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3677 | error_code, gfn, prefault); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3678 | } |
| 3679 | |
Jan Kiszka | 7e1fbea | 2010-10-20 15:18:02 +0200 | [diff] [blame] | 3680 | 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] | 3681 | { |
| 3682 | struct kvm_arch_async_pf arch; |
Xiao Guangrong | fb67e14 | 2010-12-07 10:35:25 +0800 | [diff] [blame] | 3683 | |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 3684 | arch.token = (vcpu->arch.apf.id++ << 12) | vcpu->vcpu_id; |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 3685 | arch.gfn = gfn; |
Xiao Guangrong | c4806ac | 2010-11-12 14:49:55 +0800 | [diff] [blame] | 3686 | arch.direct_map = vcpu->arch.mmu.direct_map; |
Xiao Guangrong | fb67e14 | 2010-12-07 10:35:25 +0800 | [diff] [blame] | 3687 | arch.cr3 = vcpu->arch.mmu.get_cr3(vcpu); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 3688 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 3689 | 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] | 3690 | } |
| 3691 | |
| 3692 | static bool can_do_async_pf(struct kvm_vcpu *vcpu) |
| 3693 | { |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 3694 | if (unlikely(!lapic_in_kernel(vcpu) || |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 3695 | kvm_event_needs_reinjection(vcpu))) |
| 3696 | return false; |
| 3697 | |
| 3698 | return kvm_x86_ops->interrupt_allowed(vcpu); |
| 3699 | } |
| 3700 | |
Xiao Guangrong | 78b2c54 | 2010-12-07 10:48:06 +0800 | [diff] [blame] | 3701 | 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] | 3702 | gva_t gva, kvm_pfn_t *pfn, bool write, bool *writable) |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 3703 | { |
Paolo Bonzini | 3520469 | 2015-04-02 11:20:48 +0200 | [diff] [blame] | 3704 | struct kvm_memory_slot *slot; |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 3705 | bool async; |
| 3706 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 3707 | slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn); |
Paolo Bonzini | 3520469 | 2015-04-02 11:20:48 +0200 | [diff] [blame] | 3708 | async = false; |
| 3709 | *pfn = __gfn_to_pfn_memslot(slot, gfn, false, &async, write, writable); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 3710 | if (!async) |
| 3711 | return false; /* *pfn has correct page already */ |
| 3712 | |
Xiao Guangrong | 78b2c54 | 2010-12-07 10:48:06 +0800 | [diff] [blame] | 3713 | if (!prefault && can_do_async_pf(vcpu)) { |
Xiao Guangrong | c9b263d | 2010-11-01 16:58:43 +0800 | [diff] [blame] | 3714 | trace_kvm_try_async_get_page(gva, gfn); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 3715 | if (kvm_find_async_pf_gfn(vcpu, gfn)) { |
| 3716 | trace_kvm_async_pf_doublefault(gva, gfn); |
| 3717 | kvm_make_request(KVM_REQ_APF_HALT, vcpu); |
| 3718 | return true; |
| 3719 | } else if (kvm_arch_setup_async_pf(vcpu, gva, gfn)) |
| 3720 | return true; |
| 3721 | } |
| 3722 | |
Paolo Bonzini | 3520469 | 2015-04-02 11:20:48 +0200 | [diff] [blame] | 3723 | *pfn = __gfn_to_pfn_memslot(slot, gfn, false, NULL, write, writable); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 3724 | return false; |
| 3725 | } |
| 3726 | |
Xiao Guangrong | 6a39bbc | 2015-06-15 16:55:35 +0800 | [diff] [blame] | 3727 | static bool |
| 3728 | check_hugepage_cache_consistency(struct kvm_vcpu *vcpu, gfn_t gfn, int level) |
| 3729 | { |
| 3730 | int page_num = KVM_PAGES_PER_HPAGE(level); |
| 3731 | |
| 3732 | gfn &= ~(page_num - 1); |
| 3733 | |
| 3734 | return kvm_mtrr_check_gfn_range_consistency(vcpu, gfn, page_num); |
| 3735 | } |
| 3736 | |
Gleb Natapov | 56028d0 | 2010-10-17 18:13:42 +0200 | [diff] [blame] | 3737 | 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] | 3738 | bool prefault) |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 3739 | { |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 3740 | kvm_pfn_t pfn; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 3741 | int r; |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 3742 | int level; |
Takuya Yoshikawa | cd1872f | 2015-10-16 17:04:13 +0900 | [diff] [blame] | 3743 | bool force_pt_level; |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 3744 | gfn_t gfn = gpa >> PAGE_SHIFT; |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 3745 | unsigned long mmu_seq; |
Marcelo Tosatti | 612819c | 2010-10-22 14:18:18 -0200 | [diff] [blame] | 3746 | int write = error_code & PFERR_WRITE_MASK; |
| 3747 | bool map_writable; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 3748 | |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 3749 | MMU_WARN_ON(!VALID_PAGE(vcpu->arch.mmu.root_hpa)); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 3750 | |
Xiao Guangrong | 3d0c27a | 2016-02-24 17:51:11 +0800 | [diff] [blame] | 3751 | if (page_fault_handle_page_track(vcpu, error_code, gfn)) |
| 3752 | return 1; |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3753 | |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 3754 | r = mmu_topup_memory_caches(vcpu); |
| 3755 | if (r) |
| 3756 | return r; |
| 3757 | |
Takuya Yoshikawa | fd13690 | 2015-10-16 17:06:02 +0900 | [diff] [blame] | 3758 | force_pt_level = !check_hugepage_cache_consistency(vcpu, gfn, |
| 3759 | PT_DIRECTORY_LEVEL); |
| 3760 | level = mapping_level(vcpu, gfn, &force_pt_level); |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3761 | if (likely(!force_pt_level)) { |
Xiao Guangrong | 6a39bbc | 2015-06-15 16:55:35 +0800 | [diff] [blame] | 3762 | if (level > PT_DIRECTORY_LEVEL && |
| 3763 | !check_hugepage_cache_consistency(vcpu, gfn, level)) |
| 3764 | level = PT_DIRECTORY_LEVEL; |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3765 | gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1); |
Takuya Yoshikawa | fd13690 | 2015-10-16 17:06:02 +0900 | [diff] [blame] | 3766 | } |
Joerg Roedel | 852e3c1 | 2009-07-27 16:30:44 +0200 | [diff] [blame] | 3767 | |
Xiao Guangrong | c7ba5b4 | 2012-06-20 15:59:18 +0800 | [diff] [blame] | 3768 | if (fast_page_fault(vcpu, gpa, level, error_code)) |
| 3769 | return 0; |
| 3770 | |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 3771 | mmu_seq = vcpu->kvm->mmu_notifier_seq; |
Marcelo Tosatti | 4c2155c | 2008-09-16 20:54:47 -0300 | [diff] [blame] | 3772 | smp_rmb(); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 3773 | |
Xiao Guangrong | 78b2c54 | 2010-12-07 10:48:06 +0800 | [diff] [blame] | 3774 | if (try_async_pf(vcpu, prefault, gfn, gpa, &pfn, write, &map_writable)) |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 3775 | return 0; |
| 3776 | |
Xiao Guangrong | d7c5520 | 2011-07-12 03:29:38 +0800 | [diff] [blame] | 3777 | if (handle_abnormal_pfn(vcpu, 0, gfn, pfn, ACC_ALL, &r)) |
| 3778 | return r; |
| 3779 | |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 3780 | spin_lock(&vcpu->kvm->mmu_lock); |
Christoffer Dall | 8ca40a7 | 2012-10-14 23:10:18 -0400 | [diff] [blame] | 3781 | if (mmu_notifier_retry(vcpu->kvm, mmu_seq)) |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 3782 | goto out_unlock; |
Takuya Yoshikawa | 450e0b4 | 2013-03-29 14:05:26 +0900 | [diff] [blame] | 3783 | make_mmu_pages_available(vcpu); |
Andrea Arcangeli | 936a5fe | 2011-01-13 15:46:48 -0800 | [diff] [blame] | 3784 | if (likely(!force_pt_level)) |
| 3785 | transparent_hugepage_adjust(vcpu, &gfn, &pfn, &level); |
Takuya Yoshikawa | 7ee0e5b | 2015-11-20 17:42:23 +0900 | [diff] [blame] | 3786 | r = __direct_map(vcpu, write, map_writable, level, gfn, pfn, prefault); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 3787 | spin_unlock(&vcpu->kvm->mmu_lock); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 3788 | |
| 3789 | return r; |
Andrea Arcangeli | e930bff | 2008-07-25 16:24:52 +0200 | [diff] [blame] | 3790 | |
| 3791 | out_unlock: |
| 3792 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 3793 | kvm_release_pfn_clean(pfn); |
| 3794 | return 0; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 3795 | } |
| 3796 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 3797 | static void nonpaging_init_context(struct kvm_vcpu *vcpu, |
| 3798 | struct kvm_mmu *context) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3799 | { |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3800 | context->page_fault = nonpaging_page_fault; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3801 | context->gva_to_gpa = nonpaging_gva_to_gpa; |
Marcelo Tosatti | e8bc217 | 2008-09-23 13:18:33 -0300 | [diff] [blame] | 3802 | context->sync_page = nonpaging_sync_page; |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 3803 | context->invlpg = nonpaging_invlpg; |
Xiao Guangrong | 0f53b5b | 2011-03-09 15:43:51 +0800 | [diff] [blame] | 3804 | context->update_pte = nonpaging_update_pte; |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 3805 | context->root_level = 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3806 | context->shadow_root_level = PT32E_ROOT_LEVEL; |
Avi Kivity | 17c3ba9 | 2007-06-04 15:58:30 +0300 | [diff] [blame] | 3807 | context->root_hpa = INVALID_PAGE; |
Joerg Roedel | c5a78f2b | 2010-09-10 17:30:39 +0200 | [diff] [blame] | 3808 | context->direct_map = true; |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 3809 | context->nx = false; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3810 | } |
| 3811 | |
Paolo Bonzini | d8d173d | 2013-10-02 16:56:11 +0200 | [diff] [blame] | 3812 | void kvm_mmu_new_cr3(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3813 | { |
Avi Kivity | cea0f0e | 2007-01-05 16:36:43 -0800 | [diff] [blame] | 3814 | mmu_free_roots(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3815 | } |
| 3816 | |
Joerg Roedel | 5777ed3 | 2010-09-10 17:30:42 +0200 | [diff] [blame] | 3817 | static unsigned long get_cr3(struct kvm_vcpu *vcpu) |
| 3818 | { |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 3819 | return kvm_read_cr3(vcpu); |
Joerg Roedel | 5777ed3 | 2010-09-10 17:30:42 +0200 | [diff] [blame] | 3820 | } |
| 3821 | |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 3822 | static void inject_page_fault(struct kvm_vcpu *vcpu, |
| 3823 | struct x86_exception *fault) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3824 | { |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 3825 | vcpu->arch.mmu.inject_page_fault(vcpu, fault); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3826 | } |
| 3827 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 3828 | 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] | 3829 | unsigned access, int *nr_present) |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3830 | { |
| 3831 | if (unlikely(is_mmio_spte(*sptep))) { |
| 3832 | if (gfn != get_mmio_spte_gfn(*sptep)) { |
| 3833 | mmu_spte_clear_no_track(sptep); |
| 3834 | return true; |
| 3835 | } |
| 3836 | |
| 3837 | (*nr_present)++; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 3838 | mark_mmio_spte(vcpu, sptep, gfn, access); |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 3839 | return true; |
| 3840 | } |
| 3841 | |
| 3842 | return false; |
| 3843 | } |
| 3844 | |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 3845 | static inline bool is_last_gpte(struct kvm_mmu *mmu, |
| 3846 | unsigned level, unsigned gpte) |
Avi Kivity | 6fd01b7 | 2012-09-12 20:46:56 +0300 | [diff] [blame] | 3847 | { |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 3848 | /* |
| 3849 | * PT_PAGE_TABLE_LEVEL always terminates. The RHS has bit 7 set |
| 3850 | * iff level <= PT_PAGE_TABLE_LEVEL, which for our purpose means |
| 3851 | * level == PT_PAGE_TABLE_LEVEL; set PT_PAGE_SIZE_MASK in gpte then. |
| 3852 | */ |
| 3853 | gpte |= level - PT_PAGE_TABLE_LEVEL - 1; |
Avi Kivity | 6fd01b7 | 2012-09-12 20:46:56 +0300 | [diff] [blame] | 3854 | |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 3855 | /* |
| 3856 | * The RHS has bit 7 set iff level < mmu->last_nonleaf_level. |
| 3857 | * If it is clear, there are no large pages at this level, so clear |
| 3858 | * PT_PAGE_SIZE_MASK in gpte if that is the case. |
| 3859 | */ |
| 3860 | gpte &= level - mmu->last_nonleaf_level; |
| 3861 | |
| 3862 | return gpte & PT_PAGE_SIZE_MASK; |
Avi Kivity | 6fd01b7 | 2012-09-12 20:46:56 +0300 | [diff] [blame] | 3863 | } |
| 3864 | |
Nadav Har'El | 37406aa | 2013-08-05 11:07:12 +0300 | [diff] [blame] | 3865 | #define PTTYPE_EPT 18 /* arbitrary */ |
| 3866 | #define PTTYPE PTTYPE_EPT |
| 3867 | #include "paging_tmpl.h" |
| 3868 | #undef PTTYPE |
| 3869 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 3870 | #define PTTYPE 64 |
| 3871 | #include "paging_tmpl.h" |
| 3872 | #undef PTTYPE |
| 3873 | |
| 3874 | #define PTTYPE 32 |
| 3875 | #include "paging_tmpl.h" |
| 3876 | #undef PTTYPE |
| 3877 | |
Xiao Guangrong | 6dc98b8 | 2015-08-05 12:04:22 +0800 | [diff] [blame] | 3878 | static void |
| 3879 | __reset_rsvds_bits_mask(struct kvm_vcpu *vcpu, |
| 3880 | struct rsvd_bits_validate *rsvd_check, |
| 3881 | int maxphyaddr, int level, bool nx, bool gbpages, |
Paolo Bonzini | 6fec214 | 2015-09-22 23:02:14 +0200 | [diff] [blame] | 3882 | bool pse, bool amd) |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 3883 | { |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 3884 | u64 exb_bit_rsvd = 0; |
Nadav Amit | 5f7dde7 | 2014-05-07 15:32:50 +0300 | [diff] [blame] | 3885 | u64 gbpages_bit_rsvd = 0; |
Paolo Bonzini | a0c0feb5 | 2014-09-02 13:24:12 +0200 | [diff] [blame] | 3886 | u64 nonleaf_bit8_rsvd = 0; |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 3887 | |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 3888 | rsvd_check->bad_mt_xwr = 0; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 3889 | |
Xiao Guangrong | 6dc98b8 | 2015-08-05 12:04:22 +0800 | [diff] [blame] | 3890 | if (!nx) |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 3891 | exb_bit_rsvd = rsvd_bits(63, 63); |
Xiao Guangrong | 6dc98b8 | 2015-08-05 12:04:22 +0800 | [diff] [blame] | 3892 | if (!gbpages) |
Nadav Amit | 5f7dde7 | 2014-05-07 15:32:50 +0300 | [diff] [blame] | 3893 | gbpages_bit_rsvd = rsvd_bits(7, 7); |
Paolo Bonzini | a0c0feb5 | 2014-09-02 13:24:12 +0200 | [diff] [blame] | 3894 | |
| 3895 | /* |
| 3896 | * Non-leaf PML4Es and PDPEs reserve bit 8 (which would be the G bit for |
| 3897 | * leaf entries) on AMD CPUs only. |
| 3898 | */ |
Paolo Bonzini | 6fec214 | 2015-09-22 23:02:14 +0200 | [diff] [blame] | 3899 | if (amd) |
Paolo Bonzini | a0c0feb5 | 2014-09-02 13:24:12 +0200 | [diff] [blame] | 3900 | nonleaf_bit8_rsvd = rsvd_bits(8, 8); |
| 3901 | |
Xiao Guangrong | 6dc98b8 | 2015-08-05 12:04:22 +0800 | [diff] [blame] | 3902 | switch (level) { |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 3903 | case PT32_ROOT_LEVEL: |
| 3904 | /* no rsvd bits for 2 level 4K page table entries */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 3905 | rsvd_check->rsvd_bits_mask[0][1] = 0; |
| 3906 | rsvd_check->rsvd_bits_mask[0][0] = 0; |
| 3907 | rsvd_check->rsvd_bits_mask[1][0] = |
| 3908 | rsvd_check->rsvd_bits_mask[0][0]; |
Xiao Guangrong | f815bce | 2010-03-19 17:58:53 +0800 | [diff] [blame] | 3909 | |
Xiao Guangrong | 6dc98b8 | 2015-08-05 12:04:22 +0800 | [diff] [blame] | 3910 | if (!pse) { |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 3911 | rsvd_check->rsvd_bits_mask[1][1] = 0; |
Xiao Guangrong | f815bce | 2010-03-19 17:58:53 +0800 | [diff] [blame] | 3912 | break; |
| 3913 | } |
| 3914 | |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 3915 | if (is_cpuid_PSE36()) |
| 3916 | /* 36bits PSE 4MB page */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 3917 | rsvd_check->rsvd_bits_mask[1][1] = rsvd_bits(17, 21); |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 3918 | else |
| 3919 | /* 32 bits PSE 4MB page */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 3920 | rsvd_check->rsvd_bits_mask[1][1] = rsvd_bits(13, 21); |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 3921 | break; |
| 3922 | case PT32E_ROOT_LEVEL: |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 3923 | rsvd_check->rsvd_bits_mask[0][2] = |
Dong, Eddie | 20c466b | 2009-03-31 23:03:45 +0800 | [diff] [blame] | 3924 | rsvd_bits(maxphyaddr, 63) | |
Nadav Amit | cd9ae5f | 2014-04-04 06:31:04 +0300 | [diff] [blame] | 3925 | rsvd_bits(5, 8) | rsvd_bits(1, 2); /* PDPTE */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 3926 | rsvd_check->rsvd_bits_mask[0][1] = exb_bit_rsvd | |
Sheng Yang | 4c26b4c | 2009-04-02 10:28:37 +0800 | [diff] [blame] | 3927 | rsvd_bits(maxphyaddr, 62); /* PDE */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 3928 | rsvd_check->rsvd_bits_mask[0][0] = exb_bit_rsvd | |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 3929 | rsvd_bits(maxphyaddr, 62); /* PTE */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 3930 | rsvd_check->rsvd_bits_mask[1][1] = exb_bit_rsvd | |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 3931 | rsvd_bits(maxphyaddr, 62) | |
| 3932 | rsvd_bits(13, 20); /* large page */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 3933 | rsvd_check->rsvd_bits_mask[1][0] = |
| 3934 | rsvd_check->rsvd_bits_mask[0][0]; |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 3935 | break; |
| 3936 | case PT64_ROOT_LEVEL: |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 3937 | rsvd_check->rsvd_bits_mask[0][3] = exb_bit_rsvd | |
| 3938 | nonleaf_bit8_rsvd | rsvd_bits(7, 7) | |
Sheng Yang | 4c26b4c | 2009-04-02 10:28:37 +0800 | [diff] [blame] | 3939 | rsvd_bits(maxphyaddr, 51); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 3940 | rsvd_check->rsvd_bits_mask[0][2] = exb_bit_rsvd | |
| 3941 | nonleaf_bit8_rsvd | gbpages_bit_rsvd | |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 3942 | rsvd_bits(maxphyaddr, 51); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 3943 | rsvd_check->rsvd_bits_mask[0][1] = exb_bit_rsvd | |
| 3944 | rsvd_bits(maxphyaddr, 51); |
| 3945 | rsvd_check->rsvd_bits_mask[0][0] = exb_bit_rsvd | |
| 3946 | rsvd_bits(maxphyaddr, 51); |
| 3947 | rsvd_check->rsvd_bits_mask[1][3] = |
| 3948 | rsvd_check->rsvd_bits_mask[0][3]; |
| 3949 | rsvd_check->rsvd_bits_mask[1][2] = exb_bit_rsvd | |
Nadav Amit | 5f7dde7 | 2014-05-07 15:32:50 +0300 | [diff] [blame] | 3950 | gbpages_bit_rsvd | rsvd_bits(maxphyaddr, 51) | |
Joerg Roedel | e04da98 | 2009-07-27 16:30:45 +0200 | [diff] [blame] | 3951 | rsvd_bits(13, 29); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 3952 | rsvd_check->rsvd_bits_mask[1][1] = exb_bit_rsvd | |
Sheng Yang | 4c26b4c | 2009-04-02 10:28:37 +0800 | [diff] [blame] | 3953 | rsvd_bits(maxphyaddr, 51) | |
| 3954 | rsvd_bits(13, 20); /* large page */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 3955 | rsvd_check->rsvd_bits_mask[1][0] = |
| 3956 | rsvd_check->rsvd_bits_mask[0][0]; |
Dong, Eddie | 82725b2 | 2009-03-30 16:21:08 +0800 | [diff] [blame] | 3957 | break; |
| 3958 | } |
| 3959 | } |
| 3960 | |
Xiao Guangrong | 6dc98b8 | 2015-08-05 12:04:22 +0800 | [diff] [blame] | 3961 | static void reset_rsvds_bits_mask(struct kvm_vcpu *vcpu, |
| 3962 | struct kvm_mmu *context) |
| 3963 | { |
| 3964 | __reset_rsvds_bits_mask(vcpu, &context->guest_rsvd_check, |
| 3965 | cpuid_maxphyaddr(vcpu), context->root_level, |
| 3966 | context->nx, guest_cpuid_has_gbpages(vcpu), |
Paolo Bonzini | 6fec214 | 2015-09-22 23:02:14 +0200 | [diff] [blame] | 3967 | is_pse(vcpu), guest_cpuid_is_amd(vcpu)); |
Xiao Guangrong | 6dc98b8 | 2015-08-05 12:04:22 +0800 | [diff] [blame] | 3968 | } |
| 3969 | |
Xiao Guangrong | 81b8eeb | 2015-08-05 12:04:23 +0800 | [diff] [blame] | 3970 | static void |
| 3971 | __reset_rsvds_bits_mask_ept(struct rsvd_bits_validate *rsvd_check, |
| 3972 | int maxphyaddr, bool execonly) |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 3973 | { |
Paolo Bonzini | 951f9fd | 2015-09-23 10:34:26 +0200 | [diff] [blame] | 3974 | u64 bad_mt_xwr; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 3975 | |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 3976 | rsvd_check->rsvd_bits_mask[0][3] = |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 3977 | rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 7); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 3978 | rsvd_check->rsvd_bits_mask[0][2] = |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 3979 | rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 6); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 3980 | rsvd_check->rsvd_bits_mask[0][1] = |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 3981 | rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 6); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 3982 | rsvd_check->rsvd_bits_mask[0][0] = rsvd_bits(maxphyaddr, 51); |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 3983 | |
| 3984 | /* large page */ |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 3985 | rsvd_check->rsvd_bits_mask[1][3] = rsvd_check->rsvd_bits_mask[0][3]; |
| 3986 | rsvd_check->rsvd_bits_mask[1][2] = |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 3987 | rsvd_bits(maxphyaddr, 51) | rsvd_bits(12, 29); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 3988 | rsvd_check->rsvd_bits_mask[1][1] = |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 3989 | rsvd_bits(maxphyaddr, 51) | rsvd_bits(12, 20); |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 3990 | 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] | 3991 | |
Paolo Bonzini | 951f9fd | 2015-09-23 10:34:26 +0200 | [diff] [blame] | 3992 | bad_mt_xwr = 0xFFull << (2 * 8); /* bits 3..5 must not be 2 */ |
| 3993 | bad_mt_xwr |= 0xFFull << (3 * 8); /* bits 3..5 must not be 3 */ |
| 3994 | bad_mt_xwr |= 0xFFull << (7 * 8); /* bits 3..5 must not be 7 */ |
| 3995 | bad_mt_xwr |= REPEAT_BYTE(1ull << 2); /* bits 0..2 must not be 010 */ |
| 3996 | bad_mt_xwr |= REPEAT_BYTE(1ull << 6); /* bits 0..2 must not be 110 */ |
| 3997 | if (!execonly) { |
| 3998 | /* bits 0..2 must not be 100 unless VMX capabilities allow it */ |
| 3999 | bad_mt_xwr |= REPEAT_BYTE(1ull << 4); |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4000 | } |
Paolo Bonzini | 951f9fd | 2015-09-23 10:34:26 +0200 | [diff] [blame] | 4001 | rsvd_check->bad_mt_xwr = bad_mt_xwr; |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4002 | } |
| 4003 | |
Xiao Guangrong | 81b8eeb | 2015-08-05 12:04:23 +0800 | [diff] [blame] | 4004 | static void reset_rsvds_bits_mask_ept(struct kvm_vcpu *vcpu, |
| 4005 | struct kvm_mmu *context, bool execonly) |
| 4006 | { |
| 4007 | __reset_rsvds_bits_mask_ept(&context->guest_rsvd_check, |
| 4008 | cpuid_maxphyaddr(vcpu), execonly); |
| 4009 | } |
| 4010 | |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4011 | /* |
| 4012 | * the page table on host is the shadow page table for the page |
| 4013 | * table in guest or amd nested guest, its mmu features completely |
| 4014 | * follow the features in guest. |
| 4015 | */ |
| 4016 | void |
| 4017 | reset_shadow_zero_bits_mask(struct kvm_vcpu *vcpu, struct kvm_mmu *context) |
| 4018 | { |
Paolo Bonzini | 5f0b819 | 2016-03-09 14:28:02 +0100 | [diff] [blame] | 4019 | bool uses_nx = context->nx || context->base_role.smep_andnot_wp; |
| 4020 | |
Paolo Bonzini | 6fec214 | 2015-09-22 23:02:14 +0200 | [diff] [blame] | 4021 | /* |
| 4022 | * Passing "true" to the last argument is okay; it adds a check |
| 4023 | * on bit 8 of the SPTEs which KVM doesn't use anyway. |
| 4024 | */ |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4025 | __reset_rsvds_bits_mask(vcpu, &context->shadow_zero_check, |
| 4026 | boot_cpu_data.x86_phys_bits, |
Paolo Bonzini | 5f0b819 | 2016-03-09 14:28:02 +0100 | [diff] [blame] | 4027 | context->shadow_root_level, uses_nx, |
Paolo Bonzini | 6fec214 | 2015-09-22 23:02:14 +0200 | [diff] [blame] | 4028 | guest_cpuid_has_gbpages(vcpu), is_pse(vcpu), |
| 4029 | true); |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4030 | } |
| 4031 | EXPORT_SYMBOL_GPL(reset_shadow_zero_bits_mask); |
| 4032 | |
Paolo Bonzini | 6fec214 | 2015-09-22 23:02:14 +0200 | [diff] [blame] | 4033 | static inline bool boot_cpu_is_amd(void) |
| 4034 | { |
| 4035 | WARN_ON_ONCE(!tdp_enabled); |
| 4036 | return shadow_x_mask == 0; |
| 4037 | } |
| 4038 | |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4039 | /* |
| 4040 | * the direct page table on host, use as much mmu features as |
| 4041 | * possible, however, kvm currently does not do execution-protection. |
| 4042 | */ |
| 4043 | static void |
| 4044 | reset_tdp_shadow_zero_bits_mask(struct kvm_vcpu *vcpu, |
| 4045 | struct kvm_mmu *context) |
| 4046 | { |
Paolo Bonzini | 6fec214 | 2015-09-22 23:02:14 +0200 | [diff] [blame] | 4047 | if (boot_cpu_is_amd()) |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4048 | __reset_rsvds_bits_mask(vcpu, &context->shadow_zero_check, |
| 4049 | boot_cpu_data.x86_phys_bits, |
| 4050 | context->shadow_root_level, false, |
Borislav Petkov | b8291adc | 2016-03-29 17:41:58 +0200 | [diff] [blame] | 4051 | boot_cpu_has(X86_FEATURE_GBPAGES), |
| 4052 | true, true); |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4053 | else |
| 4054 | __reset_rsvds_bits_mask_ept(&context->shadow_zero_check, |
| 4055 | boot_cpu_data.x86_phys_bits, |
| 4056 | false); |
| 4057 | |
| 4058 | } |
| 4059 | |
| 4060 | /* |
| 4061 | * as the comments in reset_shadow_zero_bits_mask() except it |
| 4062 | * is the shadow page table for intel nested guest. |
| 4063 | */ |
| 4064 | static void |
| 4065 | reset_ept_shadow_zero_bits_mask(struct kvm_vcpu *vcpu, |
| 4066 | struct kvm_mmu *context, bool execonly) |
| 4067 | { |
| 4068 | __reset_rsvds_bits_mask_ept(&context->shadow_zero_check, |
| 4069 | boot_cpu_data.x86_phys_bits, execonly); |
| 4070 | } |
| 4071 | |
Xiao Guangrong | edc90b7 | 2015-05-11 22:55:21 +0800 | [diff] [blame] | 4072 | static void update_permission_bitmask(struct kvm_vcpu *vcpu, |
| 4073 | struct kvm_mmu *mmu, bool ept) |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4074 | { |
| 4075 | unsigned bit, byte, pfec; |
| 4076 | u8 map; |
Feng Wu | 66386ad | 2014-04-01 17:56:48 +0800 | [diff] [blame] | 4077 | bool fault, x, w, u, wf, uf, ff, smapf, cr4_smap, cr4_smep, smap = 0; |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4078 | |
Feng Wu | 66386ad | 2014-04-01 17:56:48 +0800 | [diff] [blame] | 4079 | cr4_smep = kvm_read_cr4_bits(vcpu, X86_CR4_SMEP); |
Feng Wu | 97ec8c0 | 2014-04-01 17:46:34 +0800 | [diff] [blame] | 4080 | cr4_smap = kvm_read_cr4_bits(vcpu, X86_CR4_SMAP); |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4081 | for (byte = 0; byte < ARRAY_SIZE(mmu->permissions); ++byte) { |
| 4082 | pfec = byte << 1; |
| 4083 | map = 0; |
| 4084 | wf = pfec & PFERR_WRITE_MASK; |
| 4085 | uf = pfec & PFERR_USER_MASK; |
| 4086 | ff = pfec & PFERR_FETCH_MASK; |
Feng Wu | 97ec8c0 | 2014-04-01 17:46:34 +0800 | [diff] [blame] | 4087 | /* |
| 4088 | * PFERR_RSVD_MASK bit is set in PFEC if the access is not |
| 4089 | * subject to SMAP restrictions, and cleared otherwise. The |
| 4090 | * bit is only meaningful if the SMAP bit is set in CR4. |
| 4091 | */ |
| 4092 | smapf = !(pfec & PFERR_RSVD_MASK); |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4093 | for (bit = 0; bit < 8; ++bit) { |
| 4094 | x = bit & ACC_EXEC_MASK; |
| 4095 | w = bit & ACC_WRITE_MASK; |
| 4096 | u = bit & ACC_USER_MASK; |
| 4097 | |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4098 | if (!ept) { |
| 4099 | /* Not really needed: !nx will cause pte.nx to fault */ |
| 4100 | x |= !mmu->nx; |
| 4101 | /* Allow supervisor writes if !cr0.wp */ |
| 4102 | w |= !is_write_protection(vcpu) && !uf; |
| 4103 | /* Disallow supervisor fetches of user code if cr4.smep */ |
Feng Wu | 66386ad | 2014-04-01 17:56:48 +0800 | [diff] [blame] | 4104 | x &= !(cr4_smep && u && !uf); |
Feng Wu | 97ec8c0 | 2014-04-01 17:46:34 +0800 | [diff] [blame] | 4105 | |
| 4106 | /* |
| 4107 | * SMAP:kernel-mode data accesses from user-mode |
| 4108 | * mappings should fault. A fault is considered |
| 4109 | * as a SMAP violation if all of the following |
| 4110 | * conditions are ture: |
| 4111 | * - X86_CR4_SMAP is set in CR4 |
Masahiro Yamada | 9332ef9 | 2017-02-27 14:28:47 -0800 | [diff] [blame] | 4112 | * - A user page is accessed |
Feng Wu | 97ec8c0 | 2014-04-01 17:46:34 +0800 | [diff] [blame] | 4113 | * - Page fault in kernel mode |
| 4114 | * - if CPL = 3 or X86_EFLAGS_AC is clear |
| 4115 | * |
| 4116 | * Here, we cover the first three conditions. |
| 4117 | * The fourth is computed dynamically in |
| 4118 | * permission_fault() and is in smapf. |
| 4119 | * |
| 4120 | * Also, SMAP does not affect instruction |
| 4121 | * fetches, add the !ff check here to make it |
| 4122 | * clearer. |
| 4123 | */ |
| 4124 | smap = cr4_smap && u && !uf && !ff; |
Bandan Das | d95c556 | 2016-07-12 18:18:51 -0400 | [diff] [blame] | 4125 | } |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4126 | |
Feng Wu | 97ec8c0 | 2014-04-01 17:46:34 +0800 | [diff] [blame] | 4127 | fault = (ff && !x) || (uf && !u) || (wf && !w) || |
| 4128 | (smapf && smap); |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4129 | map |= fault << bit; |
| 4130 | } |
| 4131 | mmu->permissions[byte] = map; |
| 4132 | } |
| 4133 | } |
| 4134 | |
Huaitong Han | 2d34410 | 2016-03-22 16:51:19 +0800 | [diff] [blame] | 4135 | /* |
| 4136 | * PKU is an additional mechanism by which the paging controls access to |
| 4137 | * user-mode addresses based on the value in the PKRU register. Protection |
| 4138 | * key violations are reported through a bit in the page fault error code. |
| 4139 | * Unlike other bits of the error code, the PK bit is not known at the |
| 4140 | * call site of e.g. gva_to_gpa; it must be computed directly in |
| 4141 | * permission_fault based on two bits of PKRU, on some machine state (CR4, |
| 4142 | * CR0, EFER, CPL), and on other bits of the error code and the page tables. |
| 4143 | * |
| 4144 | * In particular the following conditions come from the error code, the |
| 4145 | * page tables and the machine state: |
| 4146 | * - PK is always zero unless CR4.PKE=1 and EFER.LMA=1 |
| 4147 | * - PK is always zero if RSVD=1 (reserved bit set) or F=1 (instruction fetch) |
| 4148 | * - PK is always zero if U=0 in the page tables |
| 4149 | * - PKRU.WD is ignored if CR0.WP=0 and the access is a supervisor access. |
| 4150 | * |
| 4151 | * The PKRU bitmask caches the result of these four conditions. The error |
| 4152 | * code (minus the P bit) and the page table's U bit form an index into the |
| 4153 | * PKRU bitmask. Two bits of the PKRU bitmask are then extracted and ANDed |
| 4154 | * with the two bits of the PKRU register corresponding to the protection key. |
| 4155 | * For the first three conditions above the bits will be 00, thus masking |
| 4156 | * away both AD and WD. For all reads or if the last condition holds, WD |
| 4157 | * only will be masked away. |
| 4158 | */ |
| 4159 | static void update_pkru_bitmask(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, |
| 4160 | bool ept) |
| 4161 | { |
| 4162 | unsigned bit; |
| 4163 | bool wp; |
| 4164 | |
| 4165 | if (ept) { |
| 4166 | mmu->pkru_mask = 0; |
| 4167 | return; |
| 4168 | } |
| 4169 | |
| 4170 | /* PKEY is enabled only if CR4.PKE and EFER.LMA are both set. */ |
| 4171 | if (!kvm_read_cr4_bits(vcpu, X86_CR4_PKE) || !is_long_mode(vcpu)) { |
| 4172 | mmu->pkru_mask = 0; |
| 4173 | return; |
| 4174 | } |
| 4175 | |
| 4176 | wp = is_write_protection(vcpu); |
| 4177 | |
| 4178 | for (bit = 0; bit < ARRAY_SIZE(mmu->permissions); ++bit) { |
| 4179 | unsigned pfec, pkey_bits; |
| 4180 | bool check_pkey, check_write, ff, uf, wf, pte_user; |
| 4181 | |
| 4182 | pfec = bit << 1; |
| 4183 | ff = pfec & PFERR_FETCH_MASK; |
| 4184 | uf = pfec & PFERR_USER_MASK; |
| 4185 | wf = pfec & PFERR_WRITE_MASK; |
| 4186 | |
| 4187 | /* PFEC.RSVD is replaced by ACC_USER_MASK. */ |
| 4188 | pte_user = pfec & PFERR_RSVD_MASK; |
| 4189 | |
| 4190 | /* |
| 4191 | * Only need to check the access which is not an |
| 4192 | * instruction fetch and is to a user page. |
| 4193 | */ |
| 4194 | check_pkey = (!ff && pte_user); |
| 4195 | /* |
| 4196 | * write access is controlled by PKRU if it is a |
| 4197 | * user access or CR0.WP = 1. |
| 4198 | */ |
| 4199 | check_write = check_pkey && wf && (uf || wp); |
| 4200 | |
| 4201 | /* PKRU.AD stops both read and write access. */ |
| 4202 | pkey_bits = !!check_pkey; |
| 4203 | /* PKRU.WD stops write access. */ |
| 4204 | pkey_bits |= (!!check_write) << 1; |
| 4205 | |
| 4206 | mmu->pkru_mask |= (pkey_bits & 3) << pfec; |
| 4207 | } |
| 4208 | } |
| 4209 | |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4210 | 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] | 4211 | { |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4212 | unsigned root_level = mmu->root_level; |
Avi Kivity | 6fd01b7 | 2012-09-12 20:46:56 +0300 | [diff] [blame] | 4213 | |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4214 | mmu->last_nonleaf_level = root_level; |
| 4215 | if (root_level == PT32_ROOT_LEVEL && is_pse(vcpu)) |
| 4216 | mmu->last_nonleaf_level++; |
Avi Kivity | 6fd01b7 | 2012-09-12 20:46:56 +0300 | [diff] [blame] | 4217 | } |
| 4218 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4219 | static void paging64_init_context_common(struct kvm_vcpu *vcpu, |
| 4220 | struct kvm_mmu *context, |
| 4221 | int level) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4222 | { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4223 | context->nx = is_nx(vcpu); |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4224 | context->root_level = level; |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4225 | |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4226 | reset_rsvds_bits_mask(vcpu, context); |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4227 | update_permission_bitmask(vcpu, context, false); |
Huaitong Han | 2d34410 | 2016-03-22 16:51:19 +0800 | [diff] [blame] | 4228 | update_pkru_bitmask(vcpu, context, false); |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4229 | update_last_nonleaf_level(vcpu, context); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4230 | |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 4231 | MMU_WARN_ON(!is_pae(vcpu)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4232 | context->page_fault = paging64_page_fault; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4233 | context->gva_to_gpa = paging64_gva_to_gpa; |
Marcelo Tosatti | e8bc217 | 2008-09-23 13:18:33 -0300 | [diff] [blame] | 4234 | context->sync_page = paging64_sync_page; |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 4235 | context->invlpg = paging64_invlpg; |
Xiao Guangrong | 0f53b5b | 2011-03-09 15:43:51 +0800 | [diff] [blame] | 4236 | context->update_pte = paging64_update_pte; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 4237 | context->shadow_root_level = level; |
Avi Kivity | 17c3ba9 | 2007-06-04 15:58:30 +0300 | [diff] [blame] | 4238 | context->root_hpa = INVALID_PAGE; |
Joerg Roedel | c5a78f2b | 2010-09-10 17:30:39 +0200 | [diff] [blame] | 4239 | context->direct_map = false; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4240 | } |
| 4241 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4242 | static void paging64_init_context(struct kvm_vcpu *vcpu, |
| 4243 | struct kvm_mmu *context) |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 4244 | { |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4245 | paging64_init_context_common(vcpu, context, PT64_ROOT_LEVEL); |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 4246 | } |
| 4247 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4248 | static void paging32_init_context(struct kvm_vcpu *vcpu, |
| 4249 | struct kvm_mmu *context) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4250 | { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4251 | context->nx = false; |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4252 | context->root_level = PT32_ROOT_LEVEL; |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4253 | |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4254 | reset_rsvds_bits_mask(vcpu, context); |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4255 | update_permission_bitmask(vcpu, context, false); |
Huaitong Han | 2d34410 | 2016-03-22 16:51:19 +0800 | [diff] [blame] | 4256 | update_pkru_bitmask(vcpu, context, false); |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4257 | update_last_nonleaf_level(vcpu, context); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4258 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4259 | context->page_fault = paging32_page_fault; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4260 | context->gva_to_gpa = paging32_gva_to_gpa; |
Marcelo Tosatti | e8bc217 | 2008-09-23 13:18:33 -0300 | [diff] [blame] | 4261 | context->sync_page = paging32_sync_page; |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 4262 | context->invlpg = paging32_invlpg; |
Xiao Guangrong | 0f53b5b | 2011-03-09 15:43:51 +0800 | [diff] [blame] | 4263 | context->update_pte = paging32_update_pte; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4264 | context->shadow_root_level = PT32E_ROOT_LEVEL; |
Avi Kivity | 17c3ba9 | 2007-06-04 15:58:30 +0300 | [diff] [blame] | 4265 | context->root_hpa = INVALID_PAGE; |
Joerg Roedel | c5a78f2b | 2010-09-10 17:30:39 +0200 | [diff] [blame] | 4266 | context->direct_map = false; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4267 | } |
| 4268 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4269 | static void paging32E_init_context(struct kvm_vcpu *vcpu, |
| 4270 | struct kvm_mmu *context) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4271 | { |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4272 | paging64_init_context_common(vcpu, context, PT32E_ROOT_LEVEL); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4273 | } |
| 4274 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4275 | static void init_kvm_tdp_mmu(struct kvm_vcpu *vcpu) |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4276 | { |
Paolo Bonzini | ad896af | 2013-10-02 16:56:14 +0200 | [diff] [blame] | 4277 | struct kvm_mmu *context = &vcpu->arch.mmu; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4278 | |
Avi Kivity | c445f8e | 2010-12-21 16:26:01 +0200 | [diff] [blame] | 4279 | context->base_role.word = 0; |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 4280 | context->base_role.smm = is_smm(vcpu); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4281 | context->page_fault = tdp_page_fault; |
Marcelo Tosatti | e8bc217 | 2008-09-23 13:18:33 -0300 | [diff] [blame] | 4282 | context->sync_page = nonpaging_sync_page; |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 4283 | context->invlpg = nonpaging_invlpg; |
Xiao Guangrong | 0f53b5b | 2011-03-09 15:43:51 +0800 | [diff] [blame] | 4284 | context->update_pte = nonpaging_update_pte; |
Sheng Yang | 67253af | 2008-04-25 10:20:22 +0800 | [diff] [blame] | 4285 | context->shadow_root_level = kvm_x86_ops->get_tdp_level(); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4286 | context->root_hpa = INVALID_PAGE; |
Joerg Roedel | c5a78f2b | 2010-09-10 17:30:39 +0200 | [diff] [blame] | 4287 | context->direct_map = true; |
Joerg Roedel | 1c97f0a | 2010-09-10 17:30:41 +0200 | [diff] [blame] | 4288 | context->set_cr3 = kvm_x86_ops->set_tdp_cr3; |
Joerg Roedel | 5777ed3 | 2010-09-10 17:30:42 +0200 | [diff] [blame] | 4289 | context->get_cr3 = get_cr3; |
Avi Kivity | e4e517b | 2011-07-28 11:36:17 +0300 | [diff] [blame] | 4290 | context->get_pdptr = kvm_pdptr_read; |
Joerg Roedel | cb659db | 2010-09-10 17:30:43 +0200 | [diff] [blame] | 4291 | context->inject_page_fault = kvm_inject_page_fault; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4292 | |
| 4293 | if (!is_paging(vcpu)) { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4294 | context->nx = false; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4295 | context->gva_to_gpa = nonpaging_gva_to_gpa; |
| 4296 | context->root_level = 0; |
| 4297 | } else if (is_long_mode(vcpu)) { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4298 | context->nx = is_nx(vcpu); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4299 | context->root_level = PT64_ROOT_LEVEL; |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4300 | reset_rsvds_bits_mask(vcpu, context); |
| 4301 | context->gva_to_gpa = paging64_gva_to_gpa; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4302 | } else if (is_pae(vcpu)) { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4303 | context->nx = is_nx(vcpu); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4304 | context->root_level = PT32E_ROOT_LEVEL; |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4305 | reset_rsvds_bits_mask(vcpu, context); |
| 4306 | context->gva_to_gpa = paging64_gva_to_gpa; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4307 | } else { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4308 | context->nx = false; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4309 | context->root_level = PT32_ROOT_LEVEL; |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4310 | reset_rsvds_bits_mask(vcpu, context); |
| 4311 | context->gva_to_gpa = paging32_gva_to_gpa; |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4312 | } |
| 4313 | |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4314 | update_permission_bitmask(vcpu, context, false); |
Huaitong Han | 2d34410 | 2016-03-22 16:51:19 +0800 | [diff] [blame] | 4315 | update_pkru_bitmask(vcpu, context, false); |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4316 | update_last_nonleaf_level(vcpu, context); |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4317 | reset_tdp_shadow_zero_bits_mask(vcpu, context); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4318 | } |
| 4319 | |
Paolo Bonzini | ad896af | 2013-10-02 16:56:14 +0200 | [diff] [blame] | 4320 | void kvm_init_shadow_mmu(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4321 | { |
Avi Kivity | 411c588 | 2011-06-06 16:11:54 +0300 | [diff] [blame] | 4322 | bool smep = kvm_read_cr4_bits(vcpu, X86_CR4_SMEP); |
Xiao Guangrong | edc90b7 | 2015-05-11 22:55:21 +0800 | [diff] [blame] | 4323 | bool smap = kvm_read_cr4_bits(vcpu, X86_CR4_SMAP); |
Paolo Bonzini | ad896af | 2013-10-02 16:56:14 +0200 | [diff] [blame] | 4324 | struct kvm_mmu *context = &vcpu->arch.mmu; |
| 4325 | |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 4326 | MMU_WARN_ON(VALID_PAGE(context->root_hpa)); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4327 | |
| 4328 | if (!is_paging(vcpu)) |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4329 | nonpaging_init_context(vcpu, context); |
Avi Kivity | a9058ec | 2006-12-29 16:49:37 -0800 | [diff] [blame] | 4330 | else if (is_long_mode(vcpu)) |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4331 | paging64_init_context(vcpu, context); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4332 | else if (is_pae(vcpu)) |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4333 | paging32E_init_context(vcpu, context); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4334 | else |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4335 | paging32_init_context(vcpu, context); |
Avi Kivity | a770f6f | 2008-12-21 19:20:09 +0200 | [diff] [blame] | 4336 | |
Paolo Bonzini | ad896af | 2013-10-02 16:56:14 +0200 | [diff] [blame] | 4337 | context->base_role.nxe = is_nx(vcpu); |
| 4338 | context->base_role.cr4_pae = !!is_pae(vcpu); |
| 4339 | context->base_role.cr0_wp = is_write_protection(vcpu); |
| 4340 | context->base_role.smep_andnot_wp |
Avi Kivity | 411c588 | 2011-06-06 16:11:54 +0300 | [diff] [blame] | 4341 | = smep && !is_write_protection(vcpu); |
Xiao Guangrong | edc90b7 | 2015-05-11 22:55:21 +0800 | [diff] [blame] | 4342 | context->base_role.smap_andnot_wp |
| 4343 | = smap && !is_write_protection(vcpu); |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 4344 | context->base_role.smm = is_smm(vcpu); |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4345 | reset_shadow_zero_bits_mask(vcpu, context); |
Joerg Roedel | 52fde8d | 2010-09-10 17:30:44 +0200 | [diff] [blame] | 4346 | } |
| 4347 | EXPORT_SYMBOL_GPL(kvm_init_shadow_mmu); |
| 4348 | |
Paolo Bonzini | ae1e2d1 | 2017-03-30 11:55:30 +0200 | [diff] [blame] | 4349 | void kvm_init_shadow_ept_mmu(struct kvm_vcpu *vcpu, bool execonly, |
| 4350 | bool accessed_dirty) |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 4351 | { |
Paolo Bonzini | ad896af | 2013-10-02 16:56:14 +0200 | [diff] [blame] | 4352 | struct kvm_mmu *context = &vcpu->arch.mmu; |
| 4353 | |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 4354 | MMU_WARN_ON(VALID_PAGE(context->root_hpa)); |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 4355 | |
| 4356 | context->shadow_root_level = kvm_x86_ops->get_tdp_level(); |
| 4357 | |
| 4358 | context->nx = true; |
Paolo Bonzini | ae1e2d1 | 2017-03-30 11:55:30 +0200 | [diff] [blame] | 4359 | context->ept_ad = accessed_dirty; |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 4360 | context->page_fault = ept_page_fault; |
| 4361 | context->gva_to_gpa = ept_gva_to_gpa; |
| 4362 | context->sync_page = ept_sync_page; |
| 4363 | context->invlpg = ept_invlpg; |
| 4364 | context->update_pte = ept_update_pte; |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 4365 | context->root_level = context->shadow_root_level; |
| 4366 | context->root_hpa = INVALID_PAGE; |
| 4367 | context->direct_map = false; |
| 4368 | |
| 4369 | update_permission_bitmask(vcpu, context, true); |
Huaitong Han | 2d34410 | 2016-03-22 16:51:19 +0800 | [diff] [blame] | 4370 | update_pkru_bitmask(vcpu, context, true); |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 4371 | reset_rsvds_bits_mask_ept(vcpu, context, execonly); |
Xiao Guangrong | c258b62 | 2015-08-05 12:04:24 +0800 | [diff] [blame] | 4372 | reset_ept_shadow_zero_bits_mask(vcpu, context, execonly); |
Nadav Har'El | 155a97a | 2013-08-05 11:07:16 +0300 | [diff] [blame] | 4373 | } |
| 4374 | EXPORT_SYMBOL_GPL(kvm_init_shadow_ept_mmu); |
| 4375 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4376 | static void init_kvm_softmmu(struct kvm_vcpu *vcpu) |
Joerg Roedel | 52fde8d | 2010-09-10 17:30:44 +0200 | [diff] [blame] | 4377 | { |
Paolo Bonzini | ad896af | 2013-10-02 16:56:14 +0200 | [diff] [blame] | 4378 | struct kvm_mmu *context = &vcpu->arch.mmu; |
| 4379 | |
| 4380 | kvm_init_shadow_mmu(vcpu); |
| 4381 | context->set_cr3 = kvm_x86_ops->set_cr3; |
| 4382 | context->get_cr3 = get_cr3; |
| 4383 | context->get_pdptr = kvm_pdptr_read; |
| 4384 | context->inject_page_fault = kvm_inject_page_fault; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4385 | } |
| 4386 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4387 | static void init_kvm_nested_mmu(struct kvm_vcpu *vcpu) |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4388 | { |
| 4389 | struct kvm_mmu *g_context = &vcpu->arch.nested_mmu; |
| 4390 | |
| 4391 | g_context->get_cr3 = get_cr3; |
Avi Kivity | e4e517b | 2011-07-28 11:36:17 +0300 | [diff] [blame] | 4392 | g_context->get_pdptr = kvm_pdptr_read; |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4393 | g_context->inject_page_fault = kvm_inject_page_fault; |
| 4394 | |
| 4395 | /* |
David Matlack | 0af2593 | 2015-12-30 08:26:17 -0800 | [diff] [blame] | 4396 | * Note that arch.mmu.gva_to_gpa translates l2_gpa to l1_gpa using |
| 4397 | * L1's nested page tables (e.g. EPT12). The nested translation |
| 4398 | * of l2_gva to l1_gpa is done by arch.nested_mmu.gva_to_gpa using |
| 4399 | * L2's page tables as the first level of translation and L1's |
| 4400 | * nested page tables as the second level of translation. Basically |
| 4401 | * the gva_to_gpa functions between mmu and nested_mmu are swapped. |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4402 | */ |
| 4403 | if (!is_paging(vcpu)) { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4404 | g_context->nx = false; |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4405 | g_context->root_level = 0; |
| 4406 | g_context->gva_to_gpa = nonpaging_gva_to_gpa_nested; |
| 4407 | } else if (is_long_mode(vcpu)) { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4408 | g_context->nx = is_nx(vcpu); |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4409 | g_context->root_level = PT64_ROOT_LEVEL; |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4410 | reset_rsvds_bits_mask(vcpu, g_context); |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4411 | g_context->gva_to_gpa = paging64_gva_to_gpa_nested; |
| 4412 | } else if (is_pae(vcpu)) { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4413 | g_context->nx = is_nx(vcpu); |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4414 | g_context->root_level = PT32E_ROOT_LEVEL; |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4415 | reset_rsvds_bits_mask(vcpu, g_context); |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4416 | g_context->gva_to_gpa = paging64_gva_to_gpa_nested; |
| 4417 | } else { |
Joerg Roedel | 2d48a98 | 2010-09-10 17:31:01 +0200 | [diff] [blame] | 4418 | g_context->nx = false; |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4419 | g_context->root_level = PT32_ROOT_LEVEL; |
Davidlohr Bueso | 4d6931c | 2012-03-05 16:53:06 +0100 | [diff] [blame] | 4420 | reset_rsvds_bits_mask(vcpu, g_context); |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4421 | g_context->gva_to_gpa = paging32_gva_to_gpa_nested; |
| 4422 | } |
| 4423 | |
Yang Zhang | 25d9208 | 2013-08-06 12:00:32 +0300 | [diff] [blame] | 4424 | update_permission_bitmask(vcpu, g_context, false); |
Huaitong Han | 2d34410 | 2016-03-22 16:51:19 +0800 | [diff] [blame] | 4425 | update_pkru_bitmask(vcpu, g_context, false); |
Paolo Bonzini | 6bb69c9 | 2016-02-23 12:51:19 +0100 | [diff] [blame] | 4426 | update_last_nonleaf_level(vcpu, g_context); |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4427 | } |
| 4428 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4429 | static void init_kvm_mmu(struct kvm_vcpu *vcpu) |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4430 | { |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4431 | if (mmu_is_nested(vcpu)) |
Paolo Bonzini | e0c6db3 | 2014-12-23 13:39:46 +0100 | [diff] [blame] | 4432 | init_kvm_nested_mmu(vcpu); |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4433 | else if (tdp_enabled) |
Paolo Bonzini | e0c6db3 | 2014-12-23 13:39:46 +0100 | [diff] [blame] | 4434 | init_kvm_tdp_mmu(vcpu); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4435 | else |
Paolo Bonzini | e0c6db3 | 2014-12-23 13:39:46 +0100 | [diff] [blame] | 4436 | init_kvm_softmmu(vcpu); |
Joerg Roedel | fb72d16 | 2008-02-07 13:47:44 +0100 | [diff] [blame] | 4437 | } |
| 4438 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4439 | void kvm_mmu_reset_context(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4440 | { |
Paolo Bonzini | 95f93af | 2013-10-02 16:56:12 +0200 | [diff] [blame] | 4441 | kvm_mmu_unload(vcpu); |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4442 | init_kvm_mmu(vcpu); |
Avi Kivity | 17c3ba9 | 2007-06-04 15:58:30 +0300 | [diff] [blame] | 4443 | } |
Eddie Dong | 8668a3c | 2007-10-10 14:26:45 +0800 | [diff] [blame] | 4444 | EXPORT_SYMBOL_GPL(kvm_mmu_reset_context); |
Avi Kivity | 17c3ba9 | 2007-06-04 15:58:30 +0300 | [diff] [blame] | 4445 | |
| 4446 | int kvm_mmu_load(struct kvm_vcpu *vcpu) |
| 4447 | { |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 4448 | int r; |
| 4449 | |
Avi Kivity | e2dec93 | 2007-01-05 16:36:54 -0800 | [diff] [blame] | 4450 | r = mmu_topup_memory_caches(vcpu); |
Avi Kivity | 17c3ba9 | 2007-06-04 15:58:30 +0300 | [diff] [blame] | 4451 | if (r) |
| 4452 | goto out; |
Marcelo Tosatti | 8986ecc | 2009-05-12 18:55:45 -0300 | [diff] [blame] | 4453 | r = mmu_alloc_roots(vcpu); |
Takuya Yoshikawa | e2858b4a | 2013-05-09 15:45:12 +0900 | [diff] [blame] | 4454 | kvm_mmu_sync_roots(vcpu); |
Marcelo Tosatti | 8986ecc | 2009-05-12 18:55:45 -0300 | [diff] [blame] | 4455 | if (r) |
| 4456 | goto out; |
Sheng Yang | 3662cb1 | 2009-07-09 17:00:42 +0800 | [diff] [blame] | 4457 | /* set_cr3() should ensure TLB has been flushed */ |
Joerg Roedel | f43addd | 2010-09-10 17:30:40 +0200 | [diff] [blame] | 4458 | vcpu->arch.mmu.set_cr3(vcpu, vcpu->arch.mmu.root_hpa); |
Avi Kivity | 714b93d | 2007-01-05 16:36:53 -0800 | [diff] [blame] | 4459 | out: |
| 4460 | return r; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4461 | } |
Avi Kivity | 17c3ba9 | 2007-06-04 15:58:30 +0300 | [diff] [blame] | 4462 | EXPORT_SYMBOL_GPL(kvm_mmu_load); |
| 4463 | |
| 4464 | void kvm_mmu_unload(struct kvm_vcpu *vcpu) |
| 4465 | { |
| 4466 | mmu_free_roots(vcpu); |
Paolo Bonzini | 95f93af | 2013-10-02 16:56:12 +0200 | [diff] [blame] | 4467 | WARN_ON(VALID_PAGE(vcpu->arch.mmu.root_hpa)); |
Avi Kivity | 17c3ba9 | 2007-06-04 15:58:30 +0300 | [diff] [blame] | 4468 | } |
Joerg Roedel | 4b16184 | 2010-09-10 17:31:03 +0200 | [diff] [blame] | 4469 | EXPORT_SYMBOL_GPL(kvm_mmu_unload); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4470 | |
Avi Kivity | 0028425 | 2007-05-01 16:53:31 +0300 | [diff] [blame] | 4471 | static void mmu_pte_write_new_pte(struct kvm_vcpu *vcpu, |
Xiao Guangrong | 7c56252 | 2011-03-28 10:29:27 +0800 | [diff] [blame] | 4472 | struct kvm_mmu_page *sp, u64 *spte, |
| 4473 | const void *new) |
Avi Kivity | 0028425 | 2007-05-01 16:53:31 +0300 | [diff] [blame] | 4474 | { |
Marcelo Tosatti | 3094538 | 2008-06-11 20:32:40 -0300 | [diff] [blame] | 4475 | if (sp->role.level != PT_PAGE_TABLE_LEVEL) { |
Joerg Roedel | 7e4e405 | 2009-07-27 16:30:46 +0200 | [diff] [blame] | 4476 | ++vcpu->kvm->stat.mmu_pde_zapped; |
| 4477 | return; |
Marcelo Tosatti | 3094538 | 2008-06-11 20:32:40 -0300 | [diff] [blame] | 4478 | } |
Avi Kivity | 0028425 | 2007-05-01 16:53:31 +0300 | [diff] [blame] | 4479 | |
Avi Kivity | 4cee576 | 2007-11-18 16:37:07 +0200 | [diff] [blame] | 4480 | ++vcpu->kvm->stat.mmu_pte_updated; |
Xiao Guangrong | 7c56252 | 2011-03-28 10:29:27 +0800 | [diff] [blame] | 4481 | vcpu->arch.mmu.update_pte(vcpu, sp, spte, new); |
Avi Kivity | 0028425 | 2007-05-01 16:53:31 +0300 | [diff] [blame] | 4482 | } |
| 4483 | |
Avi Kivity | 79539ce | 2007-11-21 02:06:21 +0200 | [diff] [blame] | 4484 | static bool need_remote_flush(u64 old, u64 new) |
| 4485 | { |
| 4486 | if (!is_shadow_present_pte(old)) |
| 4487 | return false; |
| 4488 | if (!is_shadow_present_pte(new)) |
| 4489 | return true; |
| 4490 | if ((old ^ new) & PT64_BASE_ADDR_MASK) |
| 4491 | return true; |
Gleb Natapov | 5316622 | 2013-08-05 11:07:14 +0300 | [diff] [blame] | 4492 | old ^= shadow_nx_mask; |
| 4493 | new ^= shadow_nx_mask; |
Avi Kivity | 79539ce | 2007-11-21 02:06:21 +0200 | [diff] [blame] | 4494 | return (old & ~new & PT64_PERM_MASK) != 0; |
| 4495 | } |
| 4496 | |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4497 | static u64 mmu_pte_write_fetch_gpte(struct kvm_vcpu *vcpu, gpa_t *gpa, |
| 4498 | const u8 *new, int *bytes) |
Avi Kivity | da4a00f | 2007-01-05 16:36:44 -0800 | [diff] [blame] | 4499 | { |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4500 | u64 gentry; |
| 4501 | int r; |
Avi Kivity | 72016f3 | 2010-03-15 13:59:53 +0200 | [diff] [blame] | 4502 | |
Avi Kivity | 08e850c | 2010-03-15 13:59:57 +0200 | [diff] [blame] | 4503 | /* |
| 4504 | * 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] | 4505 | * as the current vcpu paging mode since we update the sptes only |
| 4506 | * when they have the same mode. |
Avi Kivity | 08e850c | 2010-03-15 13:59:57 +0200 | [diff] [blame] | 4507 | */ |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4508 | if (is_pae(vcpu) && *bytes == 4) { |
Avi Kivity | 08e850c | 2010-03-15 13:59:57 +0200 | [diff] [blame] | 4509 | /* 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] | 4510 | *gpa &= ~(gpa_t)7; |
| 4511 | *bytes = 8; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 4512 | r = kvm_vcpu_read_guest(vcpu, *gpa, &gentry, 8); |
Avi Kivity | 08e850c | 2010-03-15 13:59:57 +0200 | [diff] [blame] | 4513 | if (r) |
| 4514 | gentry = 0; |
| 4515 | new = (const u8 *)&gentry; |
| 4516 | } |
| 4517 | |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4518 | switch (*bytes) { |
Avi Kivity | 72016f3 | 2010-03-15 13:59:53 +0200 | [diff] [blame] | 4519 | case 4: |
| 4520 | gentry = *(const u32 *)new; |
| 4521 | break; |
| 4522 | case 8: |
| 4523 | gentry = *(const u64 *)new; |
| 4524 | break; |
| 4525 | default: |
| 4526 | gentry = 0; |
| 4527 | break; |
| 4528 | } |
| 4529 | |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4530 | return gentry; |
| 4531 | } |
| 4532 | |
| 4533 | /* |
| 4534 | * If we're seeing too many writes to a page, it may no longer be a page table, |
| 4535 | * or we may be forking, in which case it is better to unmap the page. |
| 4536 | */ |
Xiao Guangrong | a138fe7 | 2011-12-16 18:18:10 +0800 | [diff] [blame] | 4537 | static bool detect_write_flooding(struct kvm_mmu_page *sp) |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4538 | { |
Xiao Guangrong | a30f47c | 2011-09-22 16:58:36 +0800 | [diff] [blame] | 4539 | /* |
| 4540 | * Skip write-flooding detected for the sp whose level is 1, because |
| 4541 | * it can become unsync, then the guest page is not write-protected. |
| 4542 | */ |
Davidlohr Bueso | f71fa31 | 2012-04-18 12:24:29 +0200 | [diff] [blame] | 4543 | if (sp->role.level == PT_PAGE_TABLE_LEVEL) |
Xiao Guangrong | a30f47c | 2011-09-22 16:58:36 +0800 | [diff] [blame] | 4544 | return false; |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4545 | |
Xiao Guangrong | e5691a8 | 2016-02-24 17:51:12 +0800 | [diff] [blame] | 4546 | atomic_inc(&sp->write_flooding_count); |
| 4547 | return atomic_read(&sp->write_flooding_count) >= 3; |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4548 | } |
| 4549 | |
| 4550 | /* |
| 4551 | * Misaligned accesses are too much trouble to fix up; also, they usually |
| 4552 | * indicate a page is not used as a page table. |
| 4553 | */ |
| 4554 | static bool detect_write_misaligned(struct kvm_mmu_page *sp, gpa_t gpa, |
| 4555 | int bytes) |
| 4556 | { |
| 4557 | unsigned offset, pte_size, misaligned; |
| 4558 | |
| 4559 | pgprintk("misaligned: gpa %llx bytes %d role %x\n", |
| 4560 | gpa, bytes, sp->role.word); |
| 4561 | |
| 4562 | offset = offset_in_page(gpa); |
| 4563 | pte_size = sp->role.cr4_pae ? 8 : 4; |
Xiao Guangrong | 5d9ca30 | 2011-09-22 16:57:55 +0800 | [diff] [blame] | 4564 | |
| 4565 | /* |
| 4566 | * Sometimes, the OS only writes the last one bytes to update status |
| 4567 | * bits, for example, in linux, andb instruction is used in clear_bit(). |
| 4568 | */ |
| 4569 | if (!(offset & (pte_size - 1)) && bytes == 1) |
| 4570 | return false; |
| 4571 | |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4572 | misaligned = (offset ^ (offset + bytes - 1)) & ~(pte_size - 1); |
| 4573 | misaligned |= bytes < 4; |
| 4574 | |
| 4575 | return misaligned; |
| 4576 | } |
| 4577 | |
| 4578 | static u64 *get_written_sptes(struct kvm_mmu_page *sp, gpa_t gpa, int *nspte) |
| 4579 | { |
| 4580 | unsigned page_offset, quadrant; |
| 4581 | u64 *spte; |
| 4582 | int level; |
| 4583 | |
| 4584 | page_offset = offset_in_page(gpa); |
| 4585 | level = sp->role.level; |
| 4586 | *nspte = 1; |
| 4587 | if (!sp->role.cr4_pae) { |
| 4588 | page_offset <<= 1; /* 32->64 */ |
| 4589 | /* |
| 4590 | * A 32-bit pde maps 4MB while the shadow pdes map |
| 4591 | * only 2MB. So we need to double the offset again |
| 4592 | * and zap two pdes instead of one. |
| 4593 | */ |
| 4594 | if (level == PT32_ROOT_LEVEL) { |
| 4595 | page_offset &= ~7; /* kill rounding error */ |
| 4596 | page_offset <<= 1; |
| 4597 | *nspte = 2; |
| 4598 | } |
| 4599 | quadrant = page_offset >> PAGE_SHIFT; |
| 4600 | page_offset &= ~PAGE_MASK; |
| 4601 | if (quadrant != sp->role.quadrant) |
| 4602 | return NULL; |
| 4603 | } |
| 4604 | |
| 4605 | spte = &sp->spt[page_offset / sizeof(*spte)]; |
| 4606 | return spte; |
| 4607 | } |
| 4608 | |
Xiao Guangrong | 13d268c | 2016-02-24 17:51:16 +0800 | [diff] [blame] | 4609 | 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] | 4610 | const u8 *new, int bytes, |
| 4611 | struct kvm_page_track_notifier_node *node) |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4612 | { |
| 4613 | gfn_t gfn = gpa >> PAGE_SHIFT; |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4614 | struct kvm_mmu_page *sp; |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4615 | LIST_HEAD(invalid_list); |
| 4616 | u64 entry, gentry, *spte; |
| 4617 | int npte; |
Paolo Bonzini | b8c67b7 | 2016-02-24 11:21:55 +0100 | [diff] [blame] | 4618 | bool remote_flush, local_flush; |
Andrew Morton | 4141259 | 2015-05-27 11:53:06 +0200 | [diff] [blame] | 4619 | union kvm_mmu_page_role mask = { }; |
| 4620 | |
| 4621 | mask.cr0_wp = 1; |
| 4622 | mask.cr4_pae = 1; |
| 4623 | mask.nxe = 1; |
| 4624 | mask.smep_andnot_wp = 1; |
| 4625 | mask.smap_andnot_wp = 1; |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 4626 | mask.smm = 1; |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4627 | |
| 4628 | /* |
| 4629 | * If we don't have indirect shadow pages, it means no page is |
| 4630 | * write-protected, so we can exit simply. |
| 4631 | */ |
| 4632 | if (!ACCESS_ONCE(vcpu->kvm->arch.indirect_shadow_pages)) |
| 4633 | return; |
| 4634 | |
Paolo Bonzini | b8c67b7 | 2016-02-24 11:21:55 +0100 | [diff] [blame] | 4635 | remote_flush = local_flush = false; |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4636 | |
| 4637 | pgprintk("%s: gpa %llx bytes %d\n", __func__, gpa, bytes); |
| 4638 | |
| 4639 | gentry = mmu_pte_write_fetch_gpte(vcpu, &gpa, new, &bytes); |
| 4640 | |
| 4641 | /* |
| 4642 | * No need to care whether allocation memory is successful |
| 4643 | * or not since pte prefetch is skiped if it does not have |
| 4644 | * enough objects in the cache. |
| 4645 | */ |
| 4646 | mmu_topup_memory_caches(vcpu); |
| 4647 | |
| 4648 | spin_lock(&vcpu->kvm->mmu_lock); |
| 4649 | ++vcpu->kvm->stat.mmu_pte_write; |
Xiao Guangrong | 0375f7f | 2011-11-28 20:41:00 +0800 | [diff] [blame] | 4650 | kvm_mmu_audit(vcpu, AUDIT_PRE_PTE_WRITE); |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4651 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 4652 | for_each_gfn_indirect_valid_sp(vcpu->kvm, sp, gfn) { |
Xiao Guangrong | a30f47c | 2011-09-22 16:58:36 +0800 | [diff] [blame] | 4653 | if (detect_write_misaligned(sp, gpa, bytes) || |
Xiao Guangrong | a138fe7 | 2011-12-16 18:18:10 +0800 | [diff] [blame] | 4654 | detect_write_flooding(sp)) { |
Paolo Bonzini | b8c67b7 | 2016-02-24 11:21:55 +0100 | [diff] [blame] | 4655 | kvm_mmu_prepare_zap_page(vcpu->kvm, sp, &invalid_list); |
Avi Kivity | 4cee576 | 2007-11-18 16:37:07 +0200 | [diff] [blame] | 4656 | ++vcpu->kvm->stat.mmu_flooded; |
Avi Kivity | 0e7bc4b | 2007-01-05 16:36:48 -0800 | [diff] [blame] | 4657 | continue; |
| 4658 | } |
Xiao Guangrong | 889e5cb | 2011-09-22 16:57:23 +0800 | [diff] [blame] | 4659 | |
| 4660 | spte = get_written_sptes(sp, gpa, &npte); |
| 4661 | if (!spte) |
| 4662 | continue; |
| 4663 | |
Xiao Guangrong | 0671a8e | 2010-06-04 21:56:59 +0800 | [diff] [blame] | 4664 | local_flush = true; |
Avi Kivity | ac1b714 | 2007-03-08 17:13:32 +0200 | [diff] [blame] | 4665 | while (npte--) { |
Avi Kivity | 79539ce | 2007-11-21 02:06:21 +0200 | [diff] [blame] | 4666 | entry = *spte; |
Xiao Guangrong | 38e3b2b | 2011-05-15 23:27:52 +0800 | [diff] [blame] | 4667 | mmu_page_zap_pte(vcpu->kvm, sp, spte); |
Xiao Guangrong | fa1de2b | 2010-07-16 11:19:51 +0800 | [diff] [blame] | 4668 | if (gentry && |
| 4669 | !((sp->role.word ^ vcpu->arch.mmu.base_role.word) |
Xiao Guangrong | f759e2b | 2011-09-22 16:53:17 +0800 | [diff] [blame] | 4670 | & mask.word) && rmap_can_add(vcpu)) |
Xiao Guangrong | 7c56252 | 2011-03-28 10:29:27 +0800 | [diff] [blame] | 4671 | mmu_pte_write_new_pte(vcpu, sp, spte, &gentry); |
Gleb Natapov | 9bb4f6b | 2013-01-30 16:45:01 +0200 | [diff] [blame] | 4672 | if (need_remote_flush(entry, *spte)) |
Xiao Guangrong | 0671a8e | 2010-06-04 21:56:59 +0800 | [diff] [blame] | 4673 | remote_flush = true; |
Avi Kivity | ac1b714 | 2007-03-08 17:13:32 +0200 | [diff] [blame] | 4674 | ++spte; |
Avi Kivity | 9b7a032 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 4675 | } |
Avi Kivity | 9b7a032 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 4676 | } |
Paolo Bonzini | b8c67b7 | 2016-02-24 11:21:55 +0100 | [diff] [blame] | 4677 | kvm_mmu_flush_or_zap(vcpu, &invalid_list, remote_flush, local_flush); |
Xiao Guangrong | 0375f7f | 2011-11-28 20:41:00 +0800 | [diff] [blame] | 4678 | kvm_mmu_audit(vcpu, AUDIT_POST_PTE_WRITE); |
Marcelo Tosatti | aaee2c9 | 2007-12-20 19:18:26 -0500 | [diff] [blame] | 4679 | spin_unlock(&vcpu->kvm->mmu_lock); |
Avi Kivity | da4a00f | 2007-01-05 16:36:44 -0800 | [diff] [blame] | 4680 | } |
| 4681 | |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 4682 | int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva) |
| 4683 | { |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4684 | gpa_t gpa; |
| 4685 | int r; |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 4686 | |
Joerg Roedel | c5a78f2b | 2010-09-10 17:30:39 +0200 | [diff] [blame] | 4687 | if (vcpu->arch.mmu.direct_map) |
Avi Kivity | 60f2478 | 2009-08-27 13:37:06 +0300 | [diff] [blame] | 4688 | return 0; |
| 4689 | |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4690 | gpa = kvm_mmu_gva_to_gpa_read(vcpu, gva, NULL); |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4691 | |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4692 | r = kvm_mmu_unprotect_page(vcpu->kvm, gpa >> PAGE_SHIFT); |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 4693 | |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4694 | return r; |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 4695 | } |
Avi Kivity | 577bdc4 | 2008-07-19 08:57:05 +0300 | [diff] [blame] | 4696 | EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page_virt); |
Avi Kivity | a436036 | 2007-01-05 16:36:45 -0800 | [diff] [blame] | 4697 | |
Takuya Yoshikawa | 81f4f76 | 2013-03-21 19:34:27 +0900 | [diff] [blame] | 4698 | static void make_mmu_pages_available(struct kvm_vcpu *vcpu) |
Avi Kivity | ebeace8 | 2007-01-05 16:36:47 -0800 | [diff] [blame] | 4699 | { |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 4700 | LIST_HEAD(invalid_list); |
Xiao Guangrong | 103ad25 | 2010-06-04 21:54:38 +0800 | [diff] [blame] | 4701 | |
Takuya Yoshikawa | 81f4f76 | 2013-03-21 19:34:27 +0900 | [diff] [blame] | 4702 | if (likely(kvm_mmu_available_pages(vcpu->kvm) >= KVM_MIN_FREE_MMU_PAGES)) |
| 4703 | return; |
| 4704 | |
Takuya Yoshikawa | 5da5960 | 2013-03-06 16:06:58 +0900 | [diff] [blame] | 4705 | while (kvm_mmu_available_pages(vcpu->kvm) < KVM_REFILL_PAGES) { |
| 4706 | if (!prepare_zap_oldest_mmu_page(vcpu->kvm, &invalid_list)) |
| 4707 | break; |
Avi Kivity | ebeace8 | 2007-01-05 16:36:47 -0800 | [diff] [blame] | 4708 | |
Avi Kivity | 4cee576 | 2007-11-18 16:37:07 +0200 | [diff] [blame] | 4709 | ++vcpu->kvm->stat.mmu_recycled; |
Avi Kivity | ebeace8 | 2007-01-05 16:36:47 -0800 | [diff] [blame] | 4710 | } |
Xiao Guangrong | aa6bd18 | 2011-07-12 03:26:40 +0800 | [diff] [blame] | 4711 | kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list); |
Avi Kivity | ebeace8 | 2007-01-05 16:36:47 -0800 | [diff] [blame] | 4712 | } |
Avi Kivity | ebeace8 | 2007-01-05 16:36:47 -0800 | [diff] [blame] | 4713 | |
Tom Lendacky | 1472775 | 2016-11-23 12:01:38 -0500 | [diff] [blame] | 4714 | 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] | 4715 | void *insn, int insn_len) |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 4716 | { |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 4717 | int r, emulation_type = EMULTYPE_RETRY; |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 4718 | enum emulation_result er; |
Takuya Yoshikawa | ded5874 | 2016-02-22 17:23:40 +0900 | [diff] [blame] | 4719 | bool direct = vcpu->arch.mmu.direct_map || mmu_is_nested(vcpu); |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 4720 | |
Takuya Yoshikawa | e9ee956 | 2016-02-22 17:23:41 +0900 | [diff] [blame] | 4721 | if (unlikely(error_code & PFERR_RSVD_MASK)) { |
| 4722 | r = handle_mmio_page_fault(vcpu, cr2, direct); |
| 4723 | if (r == RET_MMIO_PF_EMULATE) { |
| 4724 | emulation_type = 0; |
| 4725 | goto emulate; |
| 4726 | } |
| 4727 | if (r == RET_MMIO_PF_RETRY) |
| 4728 | return 1; |
| 4729 | if (r < 0) |
| 4730 | return r; |
| 4731 | } |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 4732 | |
Tom Lendacky | 1472775 | 2016-11-23 12:01:38 -0500 | [diff] [blame] | 4733 | r = vcpu->arch.mmu.page_fault(vcpu, cr2, lower_32_bits(error_code), |
| 4734 | false); |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 4735 | if (r < 0) |
Takuya Yoshikawa | e9ee956 | 2016-02-22 17:23:41 +0900 | [diff] [blame] | 4736 | return r; |
| 4737 | if (!r) |
| 4738 | return 1; |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 4739 | |
Tom Lendacky | 1472775 | 2016-11-23 12:01:38 -0500 | [diff] [blame] | 4740 | /* |
| 4741 | * Before emulating the instruction, check if the error code |
| 4742 | * was due to a RO violation while translating the guest page. |
| 4743 | * This can occur when using nested virtualization with nested |
| 4744 | * paging in both guests. If true, we simply unprotect the page |
| 4745 | * and resume the guest. |
| 4746 | * |
| 4747 | * Note: AMD only (since it supports the PFERR_GUEST_PAGE_MASK used |
| 4748 | * in PFERR_NEXT_GUEST_PAGE) |
| 4749 | */ |
| 4750 | if (error_code == PFERR_NESTED_GUEST_PAGE) { |
| 4751 | kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(cr2)); |
| 4752 | return 1; |
| 4753 | } |
| 4754 | |
Takuya Yoshikawa | ded5874 | 2016-02-22 17:23:40 +0900 | [diff] [blame] | 4755 | if (mmio_info_in_cache(vcpu, cr2, direct)) |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 4756 | emulation_type = 0; |
Takuya Yoshikawa | e9ee956 | 2016-02-22 17:23:41 +0900 | [diff] [blame] | 4757 | emulate: |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 4758 | er = x86_emulate_instruction(vcpu, cr2, emulation_type, insn, insn_len); |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 4759 | |
| 4760 | switch (er) { |
| 4761 | case EMULATE_DONE: |
| 4762 | return 1; |
Paolo Bonzini | ac0a48c | 2013-06-25 18:24:41 +0200 | [diff] [blame] | 4763 | case EMULATE_USER_EXIT: |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 4764 | ++vcpu->stat.mmio_exits; |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 4765 | /* fall through */ |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 4766 | case EMULATE_FAIL: |
Avi Kivity | 3f5d18a | 2009-06-11 15:43:28 +0300 | [diff] [blame] | 4767 | return 0; |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 4768 | default: |
| 4769 | BUG(); |
| 4770 | } |
Avi Kivity | 3067714 | 2007-10-28 18:48:59 +0200 | [diff] [blame] | 4771 | } |
| 4772 | EXPORT_SYMBOL_GPL(kvm_mmu_page_fault); |
| 4773 | |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 4774 | void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva) |
| 4775 | { |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 4776 | vcpu->arch.mmu.invlpg(vcpu, gva); |
Liang Chen | 77c3913 | 2014-09-18 12:38:37 -0400 | [diff] [blame] | 4777 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Marcelo Tosatti | a705289 | 2008-09-23 13:18:35 -0300 | [diff] [blame] | 4778 | ++vcpu->stat.invlpg; |
| 4779 | } |
| 4780 | EXPORT_SYMBOL_GPL(kvm_mmu_invlpg); |
| 4781 | |
Joerg Roedel | 1855267 | 2008-02-07 13:47:41 +0100 | [diff] [blame] | 4782 | void kvm_enable_tdp(void) |
| 4783 | { |
| 4784 | tdp_enabled = true; |
| 4785 | } |
| 4786 | EXPORT_SYMBOL_GPL(kvm_enable_tdp); |
| 4787 | |
Joerg Roedel | 5f4cb66 | 2008-07-14 20:36:36 +0200 | [diff] [blame] | 4788 | void kvm_disable_tdp(void) |
| 4789 | { |
| 4790 | tdp_enabled = false; |
| 4791 | } |
| 4792 | EXPORT_SYMBOL_GPL(kvm_disable_tdp); |
| 4793 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4794 | static void free_mmu_pages(struct kvm_vcpu *vcpu) |
| 4795 | { |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 4796 | free_page((unsigned long)vcpu->arch.mmu.pae_root); |
Joerg Roedel | 81407ca | 2010-09-10 17:31:00 +0200 | [diff] [blame] | 4797 | if (vcpu->arch.mmu.lm_root != NULL) |
| 4798 | free_page((unsigned long)vcpu->arch.mmu.lm_root); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4799 | } |
| 4800 | |
| 4801 | static int alloc_mmu_pages(struct kvm_vcpu *vcpu) |
| 4802 | { |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 4803 | struct page *page; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4804 | int i; |
| 4805 | |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 4806 | /* |
| 4807 | * When emulating 32-bit mode, cr3 is only 32 bits even on x86_64. |
| 4808 | * Therefore we need to allocate shadow page tables in the first |
| 4809 | * 4GB of memory, which happens to fit the DMA32 zone. |
| 4810 | */ |
| 4811 | page = alloc_page(GFP_KERNEL | __GFP_DMA32); |
| 4812 | if (!page) |
Wei Yongjun | d7fa6ab | 2010-01-22 16:55:05 +0800 | [diff] [blame] | 4813 | return -ENOMEM; |
| 4814 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 4815 | vcpu->arch.mmu.pae_root = page_address(page); |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 4816 | for (i = 0; i < 4; ++i) |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 4817 | vcpu->arch.mmu.pae_root[i] = INVALID_PAGE; |
Avi Kivity | 17ac10a | 2007-01-05 16:36:40 -0800 | [diff] [blame] | 4818 | |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4819 | return 0; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4820 | } |
| 4821 | |
Ingo Molnar | 8018c27 | 2006-12-29 16:50:01 -0800 | [diff] [blame] | 4822 | int kvm_mmu_create(struct kvm_vcpu *vcpu) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4823 | { |
Xiao Guangrong | e459e32 | 2011-11-28 20:42:16 +0800 | [diff] [blame] | 4824 | vcpu->arch.walk_mmu = &vcpu->arch.mmu; |
| 4825 | vcpu->arch.mmu.root_hpa = INVALID_PAGE; |
| 4826 | vcpu->arch.mmu.translate_gpa = translate_gpa; |
| 4827 | vcpu->arch.nested_mmu.translate_gpa = translate_nested_gpa; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4828 | |
Ingo Molnar | 8018c27 | 2006-12-29 16:50:01 -0800 | [diff] [blame] | 4829 | return alloc_mmu_pages(vcpu); |
| 4830 | } |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4831 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4832 | void kvm_mmu_setup(struct kvm_vcpu *vcpu) |
Ingo Molnar | 8018c27 | 2006-12-29 16:50:01 -0800 | [diff] [blame] | 4833 | { |
Paolo Bonzini | fa4a2c0 | 2013-10-02 16:56:16 +0200 | [diff] [blame] | 4834 | MMU_WARN_ON(VALID_PAGE(vcpu->arch.mmu.root_hpa)); |
Avi Kivity | 2c26495 | 2006-12-22 01:05:28 -0800 | [diff] [blame] | 4835 | |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 4836 | init_kvm_mmu(vcpu); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4837 | } |
| 4838 | |
Xiaoguang Chen | b5f5fdc | 2016-10-09 15:41:44 +0800 | [diff] [blame] | 4839 | static void kvm_mmu_invalidate_zap_pages_in_memslot(struct kvm *kvm, |
Jike Song | d126363 | 2016-10-25 15:50:42 +0800 | [diff] [blame] | 4840 | struct kvm_memory_slot *slot, |
| 4841 | struct kvm_page_track_notifier_node *node) |
Xiaoguang Chen | b5f5fdc | 2016-10-09 15:41:44 +0800 | [diff] [blame] | 4842 | { |
| 4843 | kvm_mmu_invalidate_zap_all_pages(kvm); |
| 4844 | } |
| 4845 | |
Xiao Guangrong | 13d268c | 2016-02-24 17:51:16 +0800 | [diff] [blame] | 4846 | void kvm_mmu_init_vm(struct kvm *kvm) |
| 4847 | { |
| 4848 | struct kvm_page_track_notifier_node *node = &kvm->arch.mmu_sp_tracker; |
| 4849 | |
| 4850 | node->track_write = kvm_mmu_pte_write; |
Xiaoguang Chen | b5f5fdc | 2016-10-09 15:41:44 +0800 | [diff] [blame] | 4851 | node->track_flush_slot = kvm_mmu_invalidate_zap_pages_in_memslot; |
Xiao Guangrong | 13d268c | 2016-02-24 17:51:16 +0800 | [diff] [blame] | 4852 | kvm_page_track_register_notifier(kvm, node); |
| 4853 | } |
| 4854 | |
| 4855 | void kvm_mmu_uninit_vm(struct kvm *kvm) |
| 4856 | { |
| 4857 | struct kvm_page_track_notifier_node *node = &kvm->arch.mmu_sp_tracker; |
| 4858 | |
| 4859 | kvm_page_track_unregister_notifier(kvm, node); |
| 4860 | } |
| 4861 | |
Xiao Guangrong | 1bad2b2 | 2015-05-13 14:42:23 +0800 | [diff] [blame] | 4862 | /* The return value indicates if tlb flush on all vcpus is needed. */ |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 4863 | 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] | 4864 | |
| 4865 | /* The caller should hold mmu-lock before calling this function. */ |
| 4866 | static bool |
| 4867 | slot_handle_level_range(struct kvm *kvm, struct kvm_memory_slot *memslot, |
| 4868 | slot_level_handler fn, int start_level, int end_level, |
| 4869 | gfn_t start_gfn, gfn_t end_gfn, bool lock_flush_tlb) |
| 4870 | { |
| 4871 | struct slot_rmap_walk_iterator iterator; |
| 4872 | bool flush = false; |
| 4873 | |
| 4874 | for_each_slot_rmap_range(memslot, start_level, end_level, start_gfn, |
| 4875 | end_gfn, &iterator) { |
| 4876 | if (iterator.rmap) |
| 4877 | flush |= fn(kvm, iterator.rmap); |
| 4878 | |
| 4879 | if (need_resched() || spin_needbreak(&kvm->mmu_lock)) { |
| 4880 | if (flush && lock_flush_tlb) { |
| 4881 | kvm_flush_remote_tlbs(kvm); |
| 4882 | flush = false; |
| 4883 | } |
| 4884 | cond_resched_lock(&kvm->mmu_lock); |
| 4885 | } |
| 4886 | } |
| 4887 | |
| 4888 | if (flush && lock_flush_tlb) { |
| 4889 | kvm_flush_remote_tlbs(kvm); |
| 4890 | flush = false; |
| 4891 | } |
| 4892 | |
| 4893 | return flush; |
| 4894 | } |
| 4895 | |
| 4896 | static bool |
| 4897 | slot_handle_level(struct kvm *kvm, struct kvm_memory_slot *memslot, |
| 4898 | slot_level_handler fn, int start_level, int end_level, |
| 4899 | bool lock_flush_tlb) |
| 4900 | { |
| 4901 | return slot_handle_level_range(kvm, memslot, fn, start_level, |
| 4902 | end_level, memslot->base_gfn, |
| 4903 | memslot->base_gfn + memslot->npages - 1, |
| 4904 | lock_flush_tlb); |
| 4905 | } |
| 4906 | |
| 4907 | static bool |
| 4908 | slot_handle_all_level(struct kvm *kvm, struct kvm_memory_slot *memslot, |
| 4909 | slot_level_handler fn, bool lock_flush_tlb) |
| 4910 | { |
| 4911 | return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL, |
| 4912 | PT_MAX_HUGEPAGE_LEVEL, lock_flush_tlb); |
| 4913 | } |
| 4914 | |
| 4915 | static bool |
| 4916 | slot_handle_large_level(struct kvm *kvm, struct kvm_memory_slot *memslot, |
| 4917 | slot_level_handler fn, bool lock_flush_tlb) |
| 4918 | { |
| 4919 | return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL + 1, |
| 4920 | PT_MAX_HUGEPAGE_LEVEL, lock_flush_tlb); |
| 4921 | } |
| 4922 | |
| 4923 | static bool |
| 4924 | slot_handle_leaf(struct kvm *kvm, struct kvm_memory_slot *memslot, |
| 4925 | slot_level_handler fn, bool lock_flush_tlb) |
| 4926 | { |
| 4927 | return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL, |
| 4928 | PT_PAGE_TABLE_LEVEL, lock_flush_tlb); |
| 4929 | } |
| 4930 | |
Xiao Guangrong | efdfe53 | 2015-05-13 14:42:27 +0800 | [diff] [blame] | 4931 | void kvm_zap_gfn_range(struct kvm *kvm, gfn_t gfn_start, gfn_t gfn_end) |
| 4932 | { |
| 4933 | struct kvm_memslots *slots; |
| 4934 | struct kvm_memory_slot *memslot; |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 4935 | int i; |
Xiao Guangrong | efdfe53 | 2015-05-13 14:42:27 +0800 | [diff] [blame] | 4936 | |
| 4937 | spin_lock(&kvm->mmu_lock); |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 4938 | for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) { |
| 4939 | slots = __kvm_memslots(kvm, i); |
| 4940 | kvm_for_each_memslot(memslot, slots) { |
| 4941 | gfn_t start, end; |
Xiao Guangrong | efdfe53 | 2015-05-13 14:42:27 +0800 | [diff] [blame] | 4942 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 4943 | start = max(gfn_start, memslot->base_gfn); |
| 4944 | end = min(gfn_end, memslot->base_gfn + memslot->npages); |
| 4945 | if (start >= end) |
| 4946 | continue; |
Xiao Guangrong | efdfe53 | 2015-05-13 14:42:27 +0800 | [diff] [blame] | 4947 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 4948 | slot_handle_level_range(kvm, memslot, kvm_zap_rmapp, |
| 4949 | PT_PAGE_TABLE_LEVEL, PT_MAX_HUGEPAGE_LEVEL, |
| 4950 | start, end - 1, true); |
| 4951 | } |
Xiao Guangrong | efdfe53 | 2015-05-13 14:42:27 +0800 | [diff] [blame] | 4952 | } |
| 4953 | |
| 4954 | spin_unlock(&kvm->mmu_lock); |
| 4955 | } |
| 4956 | |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 4957 | static bool slot_rmap_write_protect(struct kvm *kvm, |
| 4958 | struct kvm_rmap_head *rmap_head) |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 4959 | { |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 4960 | return __rmap_write_protect(kvm, rmap_head, false); |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 4961 | } |
| 4962 | |
Kai Huang | 1c91cad4 | 2015-01-28 10:54:26 +0800 | [diff] [blame] | 4963 | void kvm_mmu_slot_remove_write_access(struct kvm *kvm, |
| 4964 | struct kvm_memory_slot *memslot) |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4965 | { |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 4966 | bool flush; |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4967 | |
Takuya Yoshikawa | 9d1beef | 2013-01-08 19:46:48 +0900 | [diff] [blame] | 4968 | spin_lock(&kvm->mmu_lock); |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 4969 | flush = slot_handle_all_level(kvm, memslot, slot_rmap_write_protect, |
| 4970 | false); |
Takuya Yoshikawa | 9d1beef | 2013-01-08 19:46:48 +0900 | [diff] [blame] | 4971 | spin_unlock(&kvm->mmu_lock); |
Xiao Guangrong | 198c74f | 2014-04-17 17:06:16 +0800 | [diff] [blame] | 4972 | |
| 4973 | /* |
| 4974 | * kvm_mmu_slot_remove_write_access() and kvm_vm_ioctl_get_dirty_log() |
| 4975 | * which do tlb flush out of mmu-lock should be serialized by |
| 4976 | * kvm->slots_lock otherwise tlb flush would be missed. |
| 4977 | */ |
| 4978 | lockdep_assert_held(&kvm->slots_lock); |
| 4979 | |
| 4980 | /* |
| 4981 | * We can flush all the TLBs out of the mmu lock without TLB |
| 4982 | * corruption since we just change the spte from writable to |
| 4983 | * readonly so that we only need to care the case of changing |
| 4984 | * spte from present to present (changing the spte from present |
| 4985 | * to nonpresent will flush all the TLBs immediately), in other |
| 4986 | * words, the only case we care is mmu_spte_update() where we |
| 4987 | * haved checked SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE |
| 4988 | * instead of PT_WRITABLE_MASK, that means it does not depend |
| 4989 | * on PT_WRITABLE_MASK anymore. |
| 4990 | */ |
Kai Huang | d91ffee | 2015-01-12 15:28:54 +0800 | [diff] [blame] | 4991 | if (flush) |
| 4992 | kvm_flush_remote_tlbs(kvm); |
Avi Kivity | 6aa8b73 | 2006-12-10 02:21:36 -0800 | [diff] [blame] | 4993 | } |
Avi Kivity | 37a7d8b | 2007-01-05 16:36:56 -0800 | [diff] [blame] | 4994 | |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 4995 | static bool kvm_mmu_zap_collapsible_spte(struct kvm *kvm, |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 4996 | struct kvm_rmap_head *rmap_head) |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 4997 | { |
| 4998 | u64 *sptep; |
| 4999 | struct rmap_iterator iter; |
| 5000 | int need_tlb_flush = 0; |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 5001 | kvm_pfn_t pfn; |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5002 | struct kvm_mmu_page *sp; |
| 5003 | |
Xiao Guangrong | 0d53679 | 2015-05-13 14:42:20 +0800 | [diff] [blame] | 5004 | restart: |
Takuya Yoshikawa | 018aabb5 | 2015-11-20 17:41:28 +0900 | [diff] [blame] | 5005 | for_each_rmap_spte(rmap_head, &iter, sptep) { |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5006 | sp = page_header(__pa(sptep)); |
| 5007 | pfn = spte_to_pfn(*sptep); |
| 5008 | |
| 5009 | /* |
Xiao Guangrong | decf633 | 2015-04-14 12:04:10 +0800 | [diff] [blame] | 5010 | * We cannot do huge page mapping for indirect shadow pages, |
| 5011 | * which are found on the last rmap (level = 1) when not using |
| 5012 | * tdp; such shadow pages are synced with the page table in |
| 5013 | * the guest, and the guest page table is using 4K page size |
| 5014 | * mapping if the indirect sp has level = 1. |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5015 | */ |
| 5016 | if (sp->role.direct && |
| 5017 | !kvm_is_reserved_pfn(pfn) && |
Andrea Arcangeli | 127393f | 2016-05-05 16:22:20 -0700 | [diff] [blame] | 5018 | PageTransCompoundMap(pfn_to_page(pfn))) { |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5019 | drop_spte(kvm, sptep); |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5020 | need_tlb_flush = 1; |
Xiao Guangrong | 0d53679 | 2015-05-13 14:42:20 +0800 | [diff] [blame] | 5021 | goto restart; |
| 5022 | } |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5023 | } |
| 5024 | |
| 5025 | return need_tlb_flush; |
| 5026 | } |
| 5027 | |
| 5028 | void kvm_mmu_zap_collapsible_sptes(struct kvm *kvm, |
Paolo Bonzini | f36f3f2 | 2015-05-18 13:20:23 +0200 | [diff] [blame] | 5029 | const struct kvm_memory_slot *memslot) |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5030 | { |
Paolo Bonzini | f36f3f2 | 2015-05-18 13:20:23 +0200 | [diff] [blame] | 5031 | /* FIXME: const-ify all uses of struct kvm_memory_slot. */ |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5032 | spin_lock(&kvm->mmu_lock); |
Paolo Bonzini | f36f3f2 | 2015-05-18 13:20:23 +0200 | [diff] [blame] | 5033 | slot_handle_leaf(kvm, (struct kvm_memory_slot *)memslot, |
| 5034 | kvm_mmu_zap_collapsible_spte, true); |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 5035 | spin_unlock(&kvm->mmu_lock); |
| 5036 | } |
| 5037 | |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5038 | void kvm_mmu_slot_leaf_clear_dirty(struct kvm *kvm, |
| 5039 | struct kvm_memory_slot *memslot) |
| 5040 | { |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5041 | bool flush; |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5042 | |
| 5043 | spin_lock(&kvm->mmu_lock); |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5044 | flush = slot_handle_leaf(kvm, memslot, __rmap_clear_dirty, false); |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5045 | spin_unlock(&kvm->mmu_lock); |
| 5046 | |
| 5047 | lockdep_assert_held(&kvm->slots_lock); |
| 5048 | |
| 5049 | /* |
| 5050 | * It's also safe to flush TLBs out of mmu lock here as currently this |
| 5051 | * function is only used for dirty logging, in which case flushing TLB |
| 5052 | * out of mmu lock also guarantees no dirty pages will be lost in |
| 5053 | * dirty_bitmap. |
| 5054 | */ |
| 5055 | if (flush) |
| 5056 | kvm_flush_remote_tlbs(kvm); |
| 5057 | } |
| 5058 | EXPORT_SYMBOL_GPL(kvm_mmu_slot_leaf_clear_dirty); |
| 5059 | |
| 5060 | void kvm_mmu_slot_largepage_remove_write_access(struct kvm *kvm, |
| 5061 | struct kvm_memory_slot *memslot) |
| 5062 | { |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5063 | bool flush; |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5064 | |
| 5065 | spin_lock(&kvm->mmu_lock); |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5066 | flush = slot_handle_large_level(kvm, memslot, slot_rmap_write_protect, |
| 5067 | false); |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5068 | spin_unlock(&kvm->mmu_lock); |
| 5069 | |
| 5070 | /* see kvm_mmu_slot_remove_write_access */ |
| 5071 | lockdep_assert_held(&kvm->slots_lock); |
| 5072 | |
| 5073 | if (flush) |
| 5074 | kvm_flush_remote_tlbs(kvm); |
| 5075 | } |
| 5076 | EXPORT_SYMBOL_GPL(kvm_mmu_slot_largepage_remove_write_access); |
| 5077 | |
| 5078 | void kvm_mmu_slot_set_dirty(struct kvm *kvm, |
| 5079 | struct kvm_memory_slot *memslot) |
| 5080 | { |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5081 | bool flush; |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5082 | |
| 5083 | spin_lock(&kvm->mmu_lock); |
Xiao Guangrong | d77aa73 | 2015-05-13 14:42:24 +0800 | [diff] [blame] | 5084 | flush = slot_handle_all_level(kvm, memslot, __rmap_set_dirty, false); |
Kai Huang | f4b4b18 | 2015-01-28 10:54:24 +0800 | [diff] [blame] | 5085 | spin_unlock(&kvm->mmu_lock); |
| 5086 | |
| 5087 | lockdep_assert_held(&kvm->slots_lock); |
| 5088 | |
| 5089 | /* see kvm_mmu_slot_leaf_clear_dirty */ |
| 5090 | if (flush) |
| 5091 | kvm_flush_remote_tlbs(kvm); |
| 5092 | } |
| 5093 | EXPORT_SYMBOL_GPL(kvm_mmu_slot_set_dirty); |
| 5094 | |
Xiao Guangrong | e7d11c7 | 2013-05-31 08:36:27 +0800 | [diff] [blame] | 5095 | #define BATCH_ZAP_PAGES 10 |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5096 | static void kvm_zap_obsolete_pages(struct kvm *kvm) |
| 5097 | { |
| 5098 | struct kvm_mmu_page *sp, *node; |
Xiao Guangrong | e7d11c7 | 2013-05-31 08:36:27 +0800 | [diff] [blame] | 5099 | int batch = 0; |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5100 | |
| 5101 | restart: |
| 5102 | list_for_each_entry_safe_reverse(sp, node, |
| 5103 | &kvm->arch.active_mmu_pages, link) { |
Xiao Guangrong | e7d11c7 | 2013-05-31 08:36:27 +0800 | [diff] [blame] | 5104 | int ret; |
| 5105 | |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5106 | /* |
| 5107 | * No obsolete page exists before new created page since |
| 5108 | * active_mmu_pages is the FIFO list. |
| 5109 | */ |
| 5110 | if (!is_obsolete_sp(kvm, sp)) |
| 5111 | break; |
| 5112 | |
| 5113 | /* |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5114 | * Since we are reversely walking the list and the invalid |
| 5115 | * list will be moved to the head, skip the invalid page |
| 5116 | * can help us to avoid the infinity list walking. |
| 5117 | */ |
| 5118 | if (sp->role.invalid) |
| 5119 | continue; |
| 5120 | |
Xiao Guangrong | f34d251 | 2013-05-31 08:36:28 +0800 | [diff] [blame] | 5121 | /* |
| 5122 | * Need not flush tlb since we only zap the sp with invalid |
| 5123 | * generation number. |
| 5124 | */ |
Xiao Guangrong | e7d11c7 | 2013-05-31 08:36:27 +0800 | [diff] [blame] | 5125 | if (batch >= BATCH_ZAP_PAGES && |
Xiao Guangrong | f34d251 | 2013-05-31 08:36:28 +0800 | [diff] [blame] | 5126 | cond_resched_lock(&kvm->mmu_lock)) { |
Xiao Guangrong | e7d11c7 | 2013-05-31 08:36:27 +0800 | [diff] [blame] | 5127 | batch = 0; |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5128 | goto restart; |
| 5129 | } |
| 5130 | |
Xiao Guangrong | 365c886 | 2013-05-31 08:36:29 +0800 | [diff] [blame] | 5131 | ret = kvm_mmu_prepare_zap_page(kvm, sp, |
| 5132 | &kvm->arch.zapped_obsolete_pages); |
Xiao Guangrong | e7d11c7 | 2013-05-31 08:36:27 +0800 | [diff] [blame] | 5133 | batch += ret; |
| 5134 | |
| 5135 | if (ret) |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5136 | goto restart; |
| 5137 | } |
| 5138 | |
Xiao Guangrong | f34d251 | 2013-05-31 08:36:28 +0800 | [diff] [blame] | 5139 | /* |
| 5140 | * Should flush tlb before free page tables since lockless-walking |
| 5141 | * may use the pages. |
| 5142 | */ |
Xiao Guangrong | 365c886 | 2013-05-31 08:36:29 +0800 | [diff] [blame] | 5143 | kvm_mmu_commit_zap_page(kvm, &kvm->arch.zapped_obsolete_pages); |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5144 | } |
| 5145 | |
| 5146 | /* |
| 5147 | * Fast invalidate all shadow pages and use lock-break technique |
| 5148 | * to zap obsolete pages. |
| 5149 | * |
| 5150 | * It's required when memslot is being deleted or VM is being |
| 5151 | * destroyed, in these cases, we should ensure that KVM MMU does |
| 5152 | * not use any resource of the being-deleted slot or all slots |
| 5153 | * after calling the function. |
| 5154 | */ |
| 5155 | void kvm_mmu_invalidate_zap_all_pages(struct kvm *kvm) |
| 5156 | { |
| 5157 | spin_lock(&kvm->mmu_lock); |
Xiao Guangrong | 3500612 | 2013-05-31 08:36:25 +0800 | [diff] [blame] | 5158 | trace_kvm_mmu_invalidate_zap_all_pages(kvm); |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5159 | kvm->arch.mmu_valid_gen++; |
| 5160 | |
Xiao Guangrong | f34d251 | 2013-05-31 08:36:28 +0800 | [diff] [blame] | 5161 | /* |
| 5162 | * Notify all vcpus to reload its shadow page table |
| 5163 | * and flush TLB. Then all vcpus will switch to new |
| 5164 | * shadow page table with the new mmu_valid_gen. |
| 5165 | * |
| 5166 | * Note: we should do this under the protection of |
| 5167 | * mmu-lock, otherwise, vcpu would purge shadow page |
| 5168 | * but miss tlb flush. |
| 5169 | */ |
| 5170 | kvm_reload_remote_mmus(kvm); |
| 5171 | |
Xiao Guangrong | 5304b8d | 2013-05-31 08:36:22 +0800 | [diff] [blame] | 5172 | kvm_zap_obsolete_pages(kvm); |
| 5173 | spin_unlock(&kvm->mmu_lock); |
| 5174 | } |
| 5175 | |
Xiao Guangrong | 365c886 | 2013-05-31 08:36:29 +0800 | [diff] [blame] | 5176 | static bool kvm_has_zapped_obsolete_pages(struct kvm *kvm) |
| 5177 | { |
| 5178 | return unlikely(!list_empty_careful(&kvm->arch.zapped_obsolete_pages)); |
| 5179 | } |
| 5180 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 5181 | 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] | 5182 | { |
| 5183 | /* |
| 5184 | * The very rare case: if the generation-number is round, |
| 5185 | * zap all shadow pages. |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 5186 | */ |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 5187 | if (unlikely((slots->generation & MMIO_GEN_MASK) == 0)) { |
Bandan Das | ae0f549 | 2016-11-15 01:36:18 -0500 | [diff] [blame] | 5188 | kvm_debug_ratelimited("kvm: zapping shadow pages for mmio generation wraparound\n"); |
Xiao Guangrong | a8eca9d | 2013-06-10 16:28:55 +0800 | [diff] [blame] | 5189 | kvm_mmu_invalidate_zap_all_pages(kvm); |
Takuya Yoshikawa | 7a2e8aa | 2013-06-21 01:34:31 +0900 | [diff] [blame] | 5190 | } |
Xiao Guangrong | f8f5594 | 2013-06-07 16:51:26 +0800 | [diff] [blame] | 5191 | } |
| 5192 | |
Dave Chinner | 70534a7 | 2013-08-28 10:18:14 +1000 | [diff] [blame] | 5193 | static unsigned long |
| 5194 | mmu_shrink_scan(struct shrinker *shrink, struct shrink_control *sc) |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5195 | { |
| 5196 | struct kvm *kvm; |
Ying Han | 1495f23 | 2011-05-24 17:12:27 -0700 | [diff] [blame] | 5197 | int nr_to_scan = sc->nr_to_scan; |
Dave Chinner | 70534a7 | 2013-08-28 10:18:14 +1000 | [diff] [blame] | 5198 | unsigned long freed = 0; |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5199 | |
Paolo Bonzini | 2f303b7 | 2013-09-25 13:53:07 +0200 | [diff] [blame] | 5200 | spin_lock(&kvm_lock); |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5201 | |
| 5202 | list_for_each_entry(kvm, &vm_list, vm_list) { |
Jan Kiszka | 3d56cbd | 2011-12-02 18:35:24 +0100 | [diff] [blame] | 5203 | int idx; |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 5204 | LIST_HEAD(invalid_list); |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5205 | |
Gleb Natapov | 1952639 | 2012-06-04 14:53:23 +0300 | [diff] [blame] | 5206 | /* |
Takuya Yoshikawa | 35f2d16 | 2012-08-20 18:35:39 +0900 | [diff] [blame] | 5207 | * Never scan more than sc->nr_to_scan VM instances. |
| 5208 | * Will not hit this condition practically since we do not try |
| 5209 | * to shrink more than one VM and it is very unlikely to see |
| 5210 | * !n_used_mmu_pages so many times. |
| 5211 | */ |
| 5212 | if (!nr_to_scan--) |
| 5213 | break; |
| 5214 | /* |
Gleb Natapov | 1952639 | 2012-06-04 14:53:23 +0300 | [diff] [blame] | 5215 | * n_used_mmu_pages is accessed without holding kvm->mmu_lock |
| 5216 | * here. We may skip a VM instance errorneosly, but we do not |
| 5217 | * want to shrink a VM that only started to populate its MMU |
| 5218 | * anyway. |
| 5219 | */ |
Xiao Guangrong | 365c886 | 2013-05-31 08:36:29 +0800 | [diff] [blame] | 5220 | if (!kvm->arch.n_used_mmu_pages && |
| 5221 | !kvm_has_zapped_obsolete_pages(kvm)) |
Gleb Natapov | 1952639 | 2012-06-04 14:53:23 +0300 | [diff] [blame] | 5222 | continue; |
Gleb Natapov | 1952639 | 2012-06-04 14:53:23 +0300 | [diff] [blame] | 5223 | |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 5224 | idx = srcu_read_lock(&kvm->srcu); |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5225 | spin_lock(&kvm->mmu_lock); |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5226 | |
Xiao Guangrong | 365c886 | 2013-05-31 08:36:29 +0800 | [diff] [blame] | 5227 | if (kvm_has_zapped_obsolete_pages(kvm)) { |
| 5228 | kvm_mmu_commit_zap_page(kvm, |
| 5229 | &kvm->arch.zapped_obsolete_pages); |
| 5230 | goto unlock; |
| 5231 | } |
| 5232 | |
Dave Chinner | 70534a7 | 2013-08-28 10:18:14 +1000 | [diff] [blame] | 5233 | if (prepare_zap_oldest_mmu_page(kvm, &invalid_list)) |
| 5234 | freed++; |
Xiao Guangrong | d98ba05 | 2010-06-04 21:55:29 +0800 | [diff] [blame] | 5235 | kvm_mmu_commit_zap_page(kvm, &invalid_list); |
Gleb Natapov | 1952639 | 2012-06-04 14:53:23 +0300 | [diff] [blame] | 5236 | |
Xiao Guangrong | 365c886 | 2013-05-31 08:36:29 +0800 | [diff] [blame] | 5237 | unlock: |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5238 | spin_unlock(&kvm->mmu_lock); |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 5239 | srcu_read_unlock(&kvm->srcu, idx); |
Gleb Natapov | 1952639 | 2012-06-04 14:53:23 +0300 | [diff] [blame] | 5240 | |
Dave Chinner | 70534a7 | 2013-08-28 10:18:14 +1000 | [diff] [blame] | 5241 | /* |
| 5242 | * unfair on small ones |
| 5243 | * per-vm shrinkers cry out |
| 5244 | * sadness comes quickly |
| 5245 | */ |
Gleb Natapov | 1952639 | 2012-06-04 14:53:23 +0300 | [diff] [blame] | 5246 | list_move_tail(&kvm->vm_list, &vm_list); |
| 5247 | break; |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5248 | } |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5249 | |
Paolo Bonzini | 2f303b7 | 2013-09-25 13:53:07 +0200 | [diff] [blame] | 5250 | spin_unlock(&kvm_lock); |
Dave Chinner | 70534a7 | 2013-08-28 10:18:14 +1000 | [diff] [blame] | 5251 | return freed; |
Dave Chinner | 70534a7 | 2013-08-28 10:18:14 +1000 | [diff] [blame] | 5252 | } |
| 5253 | |
| 5254 | static unsigned long |
| 5255 | mmu_shrink_count(struct shrinker *shrink, struct shrink_control *sc) |
| 5256 | { |
Dave Hansen | 45221ab | 2010-08-19 18:11:37 -0700 | [diff] [blame] | 5257 | return percpu_counter_read_positive(&kvm_total_used_mmu_pages); |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5258 | } |
| 5259 | |
| 5260 | static struct shrinker mmu_shrinker = { |
Dave Chinner | 70534a7 | 2013-08-28 10:18:14 +1000 | [diff] [blame] | 5261 | .count_objects = mmu_shrink_count, |
| 5262 | .scan_objects = mmu_shrink_scan, |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5263 | .seeks = DEFAULT_SEEKS * 10, |
| 5264 | }; |
| 5265 | |
Ingo Molnar | 2ddfd20 | 2008-05-22 10:37:48 +0200 | [diff] [blame] | 5266 | static void mmu_destroy_caches(void) |
Avi Kivity | b5a33a7 | 2007-04-15 16:31:09 +0300 | [diff] [blame] | 5267 | { |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 5268 | if (pte_list_desc_cache) |
| 5269 | kmem_cache_destroy(pte_list_desc_cache); |
Avi Kivity | d3d25b0 | 2007-05-30 12:34:53 +0300 | [diff] [blame] | 5270 | if (mmu_page_header_cache) |
| 5271 | kmem_cache_destroy(mmu_page_header_cache); |
Avi Kivity | b5a33a7 | 2007-04-15 16:31:09 +0300 | [diff] [blame] | 5272 | } |
| 5273 | |
| 5274 | int kvm_mmu_module_init(void) |
| 5275 | { |
Junaid Shahid | f160c7b | 2016-12-06 16:46:16 -0800 | [diff] [blame] | 5276 | kvm_mmu_clear_all_pte_masks(); |
| 5277 | |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 5278 | pte_list_desc_cache = kmem_cache_create("pte_list_desc", |
| 5279 | sizeof(struct pte_list_desc), |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 5280 | 0, 0, NULL); |
Xiao Guangrong | 53c07b1 | 2011-05-15 23:26:20 +0800 | [diff] [blame] | 5281 | if (!pte_list_desc_cache) |
Avi Kivity | b5a33a7 | 2007-04-15 16:31:09 +0300 | [diff] [blame] | 5282 | goto nomem; |
| 5283 | |
Avi Kivity | d3d25b0 | 2007-05-30 12:34:53 +0300 | [diff] [blame] | 5284 | mmu_page_header_cache = kmem_cache_create("kvm_mmu_page_header", |
| 5285 | sizeof(struct kvm_mmu_page), |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 5286 | 0, 0, NULL); |
Avi Kivity | d3d25b0 | 2007-05-30 12:34:53 +0300 | [diff] [blame] | 5287 | if (!mmu_page_header_cache) |
| 5288 | goto nomem; |
| 5289 | |
Tejun Heo | 908c7f1 | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 5290 | if (percpu_counter_init(&kvm_total_used_mmu_pages, 0, GFP_KERNEL)) |
Wei Yongjun | 45bf21a | 2010-08-23 16:13:15 +0800 | [diff] [blame] | 5291 | goto nomem; |
| 5292 | |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5293 | register_shrinker(&mmu_shrinker); |
| 5294 | |
Avi Kivity | b5a33a7 | 2007-04-15 16:31:09 +0300 | [diff] [blame] | 5295 | return 0; |
| 5296 | |
| 5297 | nomem: |
Izik Eidus | 3ee16c8 | 2008-03-30 15:17:21 +0300 | [diff] [blame] | 5298 | mmu_destroy_caches(); |
Avi Kivity | b5a33a7 | 2007-04-15 16:31:09 +0300 | [diff] [blame] | 5299 | return -ENOMEM; |
| 5300 | } |
| 5301 | |
Zhang Xiantao | 3ad82a7 | 2007-11-20 13:11:38 +0800 | [diff] [blame] | 5302 | /* |
| 5303 | * Caculate mmu pages needed for kvm. |
| 5304 | */ |
| 5305 | unsigned int kvm_mmu_calculate_mmu_pages(struct kvm *kvm) |
| 5306 | { |
Zhang Xiantao | 3ad82a7 | 2007-11-20 13:11:38 +0800 | [diff] [blame] | 5307 | unsigned int nr_mmu_pages; |
| 5308 | unsigned int nr_pages = 0; |
Marcelo Tosatti | bc6678a | 2009-12-23 14:35:21 -0200 | [diff] [blame] | 5309 | struct kvm_memslots *slots; |
Xiao Guangrong | be6ba0f | 2011-11-24 17:39:18 +0800 | [diff] [blame] | 5310 | struct kvm_memory_slot *memslot; |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 5311 | int i; |
Zhang Xiantao | 3ad82a7 | 2007-11-20 13:11:38 +0800 | [diff] [blame] | 5312 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 5313 | for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) { |
| 5314 | slots = __kvm_memslots(kvm, i); |
Lai Jiangshan | 90d83dc | 2010-04-19 17:41:23 +0800 | [diff] [blame] | 5315 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 5316 | kvm_for_each_memslot(memslot, slots) |
| 5317 | nr_pages += memslot->npages; |
| 5318 | } |
Zhang Xiantao | 3ad82a7 | 2007-11-20 13:11:38 +0800 | [diff] [blame] | 5319 | |
| 5320 | nr_mmu_pages = nr_pages * KVM_PERMILLE_MMU_PAGES / 1000; |
| 5321 | nr_mmu_pages = max(nr_mmu_pages, |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 5322 | (unsigned int) KVM_MIN_ALLOC_MMU_PAGES); |
Zhang Xiantao | 3ad82a7 | 2007-11-20 13:11:38 +0800 | [diff] [blame] | 5323 | |
| 5324 | return nr_mmu_pages; |
| 5325 | } |
| 5326 | |
Xiao Guangrong | c42fffe | 2010-09-27 18:07:07 +0800 | [diff] [blame] | 5327 | void kvm_mmu_destroy(struct kvm_vcpu *vcpu) |
| 5328 | { |
Paolo Bonzini | 95f93af | 2013-10-02 16:56:12 +0200 | [diff] [blame] | 5329 | kvm_mmu_unload(vcpu); |
Xiao Guangrong | c42fffe | 2010-09-27 18:07:07 +0800 | [diff] [blame] | 5330 | free_mmu_pages(vcpu); |
| 5331 | mmu_free_memory_caches(vcpu); |
Xiao Guangrong | b034cf0 | 2010-12-23 16:08:35 +0800 | [diff] [blame] | 5332 | } |
| 5333 | |
Xiao Guangrong | b034cf0 | 2010-12-23 16:08:35 +0800 | [diff] [blame] | 5334 | void kvm_mmu_module_exit(void) |
| 5335 | { |
| 5336 | mmu_destroy_caches(); |
| 5337 | percpu_counter_destroy(&kvm_total_used_mmu_pages); |
| 5338 | unregister_shrinker(&mmu_shrinker); |
Xiao Guangrong | c42fffe | 2010-09-27 18:07:07 +0800 | [diff] [blame] | 5339 | mmu_audit_disable(); |
| 5340 | } |