blob: e13041ac7cdf67bb021b004748beb45c287b549e [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
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 Kaiser9611c182010-10-06 14:23:22 +020010 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -080011 *
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 Kivity6aa8b732006-12-10 02:21:36 -080020
Gleb Natapovaf585b92010-10-14 11:22:46 +020021#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080022#include "mmu.h"
Avi Kivity836a1b32010-01-21 15:31:49 +020023#include "x86.h"
Avi Kivity6de4f3a2009-05-31 22:58:47 +030024#include "kvm_cache_regs.h"
Nadav Amit5f7dde72014-05-07 15:32:50 +030025#include "cpuid.h"
Avi Kivity6aa8b732006-12-10 02:21:36 -080026
Avi Kivityedf88412007-12-16 11:02:48 +020027#include <linux/kvm_host.h>
Avi Kivitye4956062007-06-28 14:15:57 -040028#include <linux/types.h>
29#include <linux/string.h>
30#include <linux/mm.h>
31#include <linux/highmem.h>
Paul Gortmaker1767e932016-07-13 20:19:00 -040032#include <linux/moduleparam.h>
33#include <linux/export.h>
Izik Eidus448353c2007-11-26 14:08:14 +020034#include <linux/swap.h>
Marcelo Tosatti05da4552008-02-23 11:44:30 -030035#include <linux/hugetlb.h>
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -050036#include <linux/compiler.h>
Marcelo Tosattibc6678a2009-12-23 14:35:21 -020037#include <linux/srcu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
Huang Yingbf998152010-05-31 14:28:19 +080039#include <linux/uaccess.h>
David Matlack114df302016-12-19 13:58:25 -080040#include <linux/hash.h>
Junaid Shahidf160c7b2016-12-06 16:46:16 -080041#include <linux/kern_levels.h>
Avi Kivitye4956062007-06-28 14:15:57 -040042
43#include <asm/page.h>
44#include <asm/cmpxchg.h>
Avi Kivity4e542372007-11-21 14:08:40 +020045#include <asm/io.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020046#include <asm/vmx.h>
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +080047#include <asm/kvm_page_track.h>
Avi Kivitye4956062007-06-28 14:15:57 -040048
Joerg Roedel18552672008-02-07 13:47:41 +010049/*
50 * When setting this variable to true it enables Two-Dimensional-Paging
51 * where the hardware walks 2 page tables:
52 * 1. the guest-virtual to guest-physical
53 * 2. while doing 1. it walks guest-physical to host-physical
54 * If the hardware supports that we don't need to do shadow paging.
55 */
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -050056bool tdp_enabled = false;
Joerg Roedel18552672008-02-07 13:47:41 +010057
Xiao Guangrong8b1fe172010-08-30 18:22:53 +080058enum {
59 AUDIT_PRE_PAGE_FAULT,
60 AUDIT_POST_PAGE_FAULT,
61 AUDIT_PRE_PTE_WRITE,
Xiao Guangrong69030742010-09-27 18:09:29 +080062 AUDIT_POST_PTE_WRITE,
63 AUDIT_PRE_SYNC,
64 AUDIT_POST_SYNC
Xiao Guangrong8b1fe172010-08-30 18:22:53 +080065};
66
Avi Kivity37a7d8b2007-01-05 16:36:56 -080067#undef MMU_DEBUG
68
Avi Kivity37a7d8b2007-01-05 16:36:56 -080069#ifdef MMU_DEBUG
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +020070static bool dbg = 0;
71module_param(dbg, bool, 0644);
Avi Kivity37a7d8b2007-01-05 16:36:56 -080072
73#define pgprintk(x...) do { if (dbg) printk(x); } while (0)
74#define rmap_printk(x...) do { if (dbg) printk(x); } while (0)
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +020075#define MMU_WARN_ON(x) WARN_ON(x)
Avi Kivity37a7d8b2007-01-05 16:36:56 -080076#else
Avi Kivity37a7d8b2007-01-05 16:36:56 -080077#define pgprintk(x...) do { } while (0)
78#define rmap_printk(x...) do { } while (0)
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +020079#define MMU_WARN_ON(x) do { } while (0)
Yaozu Dongd6c69ee2007-04-25 14:17:25 +080080#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -080081
Xiao Guangrong957ed9e2010-08-22 19:12:48 +080082#define PTE_PREFETCH_NUM 8
83
Xudong Hao00763e42012-06-07 18:26:07 +080084#define PT_FIRST_AVAIL_BITS_SHIFT 10
Avi Kivity6aa8b732006-12-10 02:21:36 -080085#define PT64_SECOND_AVAIL_BITS_SHIFT 52
86
Avi Kivity6aa8b732006-12-10 02:21:36 -080087#define PT64_LEVEL_BITS 9
88
89#define PT64_LEVEL_SHIFT(level) \
Mike Dayd77c26f2007-10-08 09:02:08 -040090 (PAGE_SHIFT + (level - 1) * PT64_LEVEL_BITS)
Avi Kivity6aa8b732006-12-10 02:21:36 -080091
Avi Kivity6aa8b732006-12-10 02:21:36 -080092#define PT64_INDEX(address, level)\
93 (((address) >> PT64_LEVEL_SHIFT(level)) & ((1 << PT64_LEVEL_BITS) - 1))
94
95
96#define PT32_LEVEL_BITS 10
97
98#define PT32_LEVEL_SHIFT(level) \
Mike Dayd77c26f2007-10-08 09:02:08 -040099 (PAGE_SHIFT + (level - 1) * PT32_LEVEL_BITS)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800100
Joerg Roedele04da982009-07-27 16:30:45 +0200101#define PT32_LVL_OFFSET_MASK(level) \
102 (PT32_BASE_ADDR_MASK & ((1ULL << (PAGE_SHIFT + (((level) - 1) \
103 * PT32_LEVEL_BITS))) - 1))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800104
105#define PT32_INDEX(address, level)\
106 (((address) >> PT32_LEVEL_SHIFT(level)) & ((1 << PT32_LEVEL_BITS) - 1))
107
108
Avi Kivity27aba762007-03-09 13:04:31 +0200109#define PT64_BASE_ADDR_MASK (((1ULL << 52) - 1) & ~(u64)(PAGE_SIZE-1))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800110#define PT64_DIR_BASE_ADDR_MASK \
111 (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + PT64_LEVEL_BITS)) - 1))
Joerg Roedele04da982009-07-27 16:30:45 +0200112#define PT64_LVL_ADDR_MASK(level) \
113 (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + (((level) - 1) \
114 * PT64_LEVEL_BITS))) - 1))
115#define PT64_LVL_OFFSET_MASK(level) \
116 (PT64_BASE_ADDR_MASK & ((1ULL << (PAGE_SHIFT + (((level) - 1) \
117 * PT64_LEVEL_BITS))) - 1))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800118
119#define PT32_BASE_ADDR_MASK PAGE_MASK
120#define PT32_DIR_BASE_ADDR_MASK \
121 (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + PT32_LEVEL_BITS)) - 1))
Joerg Roedele04da982009-07-27 16:30:45 +0200122#define PT32_LVL_ADDR_MASK(level) \
123 (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + (((level) - 1) \
124 * PT32_LEVEL_BITS))) - 1))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800125
Gleb Natapov53166222013-08-05 11:07:14 +0300126#define PT64_PERM_MASK (PT_PRESENT_MASK | PT_WRITABLE_MASK | shadow_user_mask \
127 | shadow_x_mask | shadow_nx_mask)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800128
Avi Kivityfe135d22007-12-09 16:15:46 +0200129#define ACC_EXEC_MASK 1
130#define ACC_WRITE_MASK PT_WRITABLE_MASK
131#define ACC_USER_MASK PT_USER_MASK
132#define ACC_ALL (ACC_EXEC_MASK | ACC_WRITE_MASK | ACC_USER_MASK)
133
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800134/* The mask for the R/X bits in EPT PTEs */
135#define PT64_EPT_READABLE_MASK 0x1ull
136#define PT64_EPT_EXECUTABLE_MASK 0x4ull
137
Avi Kivity90bb6fc2009-12-31 12:10:16 +0200138#include <trace/events/kvm.h>
139
Avi Kivity07420172009-07-06 12:21:32 +0300140#define CREATE_TRACE_POINTS
141#include "mmutrace.h"
142
Xiao Guangrong49fde342012-06-20 15:58:58 +0800143#define SPTE_HOST_WRITEABLE (1ULL << PT_FIRST_AVAIL_BITS_SHIFT)
144#define SPTE_MMU_WRITEABLE (1ULL << (PT_FIRST_AVAIL_BITS_SHIFT + 1))
Izik Eidus14032832009-09-23 21:47:17 +0300145
Avi Kivity135f8c22008-08-21 17:49:56 +0300146#define SHADOW_PT_INDEX(addr, level) PT64_INDEX(addr, level)
147
Takuya Yoshikawa220f7732012-03-21 23:49:39 +0900148/* make pte_list_desc fit well in cache line */
149#define PTE_LIST_EXT 3
150
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800151struct pte_list_desc {
152 u64 *sptes[PTE_LIST_EXT];
153 struct pte_list_desc *more;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800154};
155
Avi Kivity2d111232008-12-25 14:39:47 +0200156struct kvm_shadow_walk_iterator {
157 u64 addr;
158 hpa_t shadow_addr;
Avi Kivity2d111232008-12-25 14:39:47 +0200159 u64 *sptep;
Xiao Guangrongdd3bfd52011-07-12 03:32:54 +0800160 int level;
Avi Kivity2d111232008-12-25 14:39:47 +0200161 unsigned index;
162};
163
164#define for_each_shadow_entry(_vcpu, _addr, _walker) \
165 for (shadow_walk_init(&(_walker), _vcpu, _addr); \
166 shadow_walk_okay(&(_walker)); \
167 shadow_walk_next(&(_walker)))
168
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800169#define for_each_shadow_entry_lockless(_vcpu, _addr, _walker, spte) \
170 for (shadow_walk_init(&(_walker), _vcpu, _addr); \
171 shadow_walk_okay(&(_walker)) && \
172 ({ spte = mmu_spte_get_lockless(_walker.sptep); 1; }); \
173 __shadow_walk_next(&(_walker), spte))
174
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800175static struct kmem_cache *pte_list_desc_cache;
Avi Kivityd3d25b02007-05-30 12:34:53 +0300176static struct kmem_cache *mmu_page_header_cache;
Dave Hansen45221ab2010-08-19 18:11:37 -0700177static struct percpu_counter kvm_total_used_mmu_pages;
Avi Kivityb5a33a72007-04-15 16:31:09 +0300178
Sheng Yang7b523452008-04-25 21:13:50 +0800179static u64 __read_mostly shadow_nx_mask;
180static u64 __read_mostly shadow_x_mask; /* mutual exclusive with nx_mask */
181static u64 __read_mostly shadow_user_mask;
182static u64 __read_mostly shadow_accessed_mask;
183static u64 __read_mostly shadow_dirty_mask;
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800184static u64 __read_mostly shadow_mmio_mask;
Bandan Dasffb128c2016-07-12 18:18:49 -0400185static u64 __read_mostly shadow_present_mask;
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800186
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800187/*
188 * The mask/value to distinguish a PTE that has been marked not-present for
189 * access tracking purposes.
190 * The mask would be either 0 if access tracking is disabled, or
191 * SPTE_SPECIAL_MASK|VMX_EPT_RWX_MASK if access tracking is enabled.
192 */
193static u64 __read_mostly shadow_acc_track_mask;
194static const u64 shadow_acc_track_value = SPTE_SPECIAL_MASK;
195
196/*
197 * The mask/shift to use for saving the original R/X bits when marking the PTE
198 * as not-present for access tracking purposes. We do not save the W bit as the
199 * PTEs being access tracked also need to be dirty tracked, so the W bit will be
200 * restored only when a write is attempted to the page.
201 */
202static const u64 shadow_acc_track_saved_bits_mask = PT64_EPT_READABLE_MASK |
203 PT64_EPT_EXECUTABLE_MASK;
204static const u64 shadow_acc_track_saved_bits_shift = PT64_SECOND_AVAIL_BITS_SHIFT;
205
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800206static void mmu_spte_set(u64 *sptep, u64 spte);
Avi Kivitye6765052012-07-08 17:16:30 +0300207static void mmu_free_roots(struct kvm_vcpu *vcpu);
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800208
209void kvm_mmu_set_mmio_spte_mask(u64 mmio_mask)
210{
Junaid Shahid312b6162016-12-21 20:29:29 -0800211 shadow_mmio_mask = mmio_mask | SPTE_SPECIAL_MASK;
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800212}
213EXPORT_SYMBOL_GPL(kvm_mmu_set_mmio_spte_mask);
214
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800215static inline bool is_access_track_spte(u64 spte)
216{
217 /* Always false if shadow_acc_track_mask is zero. */
218 return (spte & shadow_acc_track_mask) == shadow_acc_track_value;
219}
220
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800221/*
David Matlackee3d1572014-08-18 15:46:06 -0700222 * the low bit of the generation number is always presumed to be zero.
223 * This disables mmio caching during memslot updates. The concept is
224 * similar to a seqcount but instead of retrying the access we just punt
225 * and ignore the cache.
226 *
227 * spte bits 3-11 are used as bits 1-9 of the generation number,
228 * the bits 52-61 are used as bits 10-19 of the generation number.
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800229 */
David Matlackee3d1572014-08-18 15:46:06 -0700230#define MMIO_SPTE_GEN_LOW_SHIFT 2
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800231#define MMIO_SPTE_GEN_HIGH_SHIFT 52
232
David Matlackee3d1572014-08-18 15:46:06 -0700233#define MMIO_GEN_SHIFT 20
234#define MMIO_GEN_LOW_SHIFT 10
235#define MMIO_GEN_LOW_MASK ((1 << MMIO_GEN_LOW_SHIFT) - 2)
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800236#define MMIO_GEN_MASK ((1 << MMIO_GEN_SHIFT) - 1)
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800237
238static u64 generation_mmio_spte_mask(unsigned int gen)
239{
240 u64 mask;
241
Tiejun Chen842bb262014-11-18 17:14:38 +0800242 WARN_ON(gen & ~MMIO_GEN_MASK);
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800243
244 mask = (gen & MMIO_GEN_LOW_MASK) << MMIO_SPTE_GEN_LOW_SHIFT;
245 mask |= ((u64)gen >> MMIO_GEN_LOW_SHIFT) << MMIO_SPTE_GEN_HIGH_SHIFT;
246 return mask;
247}
248
249static unsigned int get_mmio_spte_generation(u64 spte)
250{
251 unsigned int gen;
252
253 spte &= ~shadow_mmio_mask;
254
255 gen = (spte >> MMIO_SPTE_GEN_LOW_SHIFT) & MMIO_GEN_LOW_MASK;
256 gen |= (spte >> MMIO_SPTE_GEN_HIGH_SHIFT) << MMIO_GEN_LOW_SHIFT;
257 return gen;
258}
259
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200260static unsigned int kvm_current_mmio_generation(struct kvm_vcpu *vcpu)
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800261{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200262 return kvm_vcpu_memslots(vcpu)->generation & MMIO_GEN_MASK;
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800263}
264
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200265static void mark_mmio_spte(struct kvm_vcpu *vcpu, u64 *sptep, u64 gfn,
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800266 unsigned access)
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800267{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200268 unsigned int gen = kvm_current_mmio_generation(vcpu);
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800269 u64 mask = generation_mmio_spte_mask(gen);
Takuya Yoshikawa95b04302013-03-12 17:44:40 +0900270
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800271 access &= ACC_WRITE_MASK | ACC_USER_MASK;
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800272 mask |= shadow_mmio_mask | access | gfn << PAGE_SHIFT;
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800273
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800274 trace_mark_mmio_spte(sptep, gfn, access, gen);
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800275 mmu_spte_set(sptep, mask);
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800276}
277
278static bool is_mmio_spte(u64 spte)
279{
280 return (spte & shadow_mmio_mask) == shadow_mmio_mask;
281}
282
283static gfn_t get_mmio_spte_gfn(u64 spte)
284{
Tiejun Chen842bb262014-11-18 17:14:38 +0800285 u64 mask = generation_mmio_spte_mask(MMIO_GEN_MASK) | shadow_mmio_mask;
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800286 return (spte & ~mask) >> PAGE_SHIFT;
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800287}
288
289static unsigned get_mmio_spte_access(u64 spte)
290{
Tiejun Chen842bb262014-11-18 17:14:38 +0800291 u64 mask = generation_mmio_spte_mask(MMIO_GEN_MASK) | shadow_mmio_mask;
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800292 return (spte & ~mask) & ~PAGE_MASK;
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800293}
294
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200295static bool set_mmio_spte(struct kvm_vcpu *vcpu, u64 *sptep, gfn_t gfn,
Dan Williamsba049e92016-01-15 16:56:11 -0800296 kvm_pfn_t pfn, unsigned access)
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800297{
298 if (unlikely(is_noslot_pfn(pfn))) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200299 mark_mmio_spte(vcpu, sptep, gfn, access);
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800300 return true;
301 }
302
303 return false;
304}
Avi Kivityc7addb92007-09-16 18:58:32 +0200305
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200306static bool check_mmio_spte(struct kvm_vcpu *vcpu, u64 spte)
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800307{
Xiao Guangrong089504c2013-06-07 16:51:27 +0800308 unsigned int kvm_gen, spte_gen;
309
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200310 kvm_gen = kvm_current_mmio_generation(vcpu);
Xiao Guangrong089504c2013-06-07 16:51:27 +0800311 spte_gen = get_mmio_spte_generation(spte);
312
313 trace_check_mmio_spte(spte, kvm_gen, spte_gen);
314 return likely(kvm_gen == spte_gen);
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800315}
316
Sheng Yang7b523452008-04-25 21:13:50 +0800317void kvm_mmu_set_mask_ptes(u64 user_mask, u64 accessed_mask,
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800318 u64 dirty_mask, u64 nx_mask, u64 x_mask, u64 p_mask,
319 u64 acc_track_mask)
Sheng Yang7b523452008-04-25 21:13:50 +0800320{
Junaid Shahid312b6162016-12-21 20:29:29 -0800321 if (acc_track_mask != 0)
322 acc_track_mask |= SPTE_SPECIAL_MASK;
323
Sheng Yang7b523452008-04-25 21:13:50 +0800324 shadow_user_mask = user_mask;
325 shadow_accessed_mask = accessed_mask;
326 shadow_dirty_mask = dirty_mask;
327 shadow_nx_mask = nx_mask;
328 shadow_x_mask = x_mask;
Bandan Dasffb128c2016-07-12 18:18:49 -0400329 shadow_present_mask = p_mask;
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800330 shadow_acc_track_mask = acc_track_mask;
331 WARN_ON(shadow_accessed_mask != 0 && shadow_acc_track_mask != 0);
Sheng Yang7b523452008-04-25 21:13:50 +0800332}
333EXPORT_SYMBOL_GPL(kvm_mmu_set_mask_ptes);
334
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800335void kvm_mmu_clear_all_pte_masks(void)
336{
337 shadow_user_mask = 0;
338 shadow_accessed_mask = 0;
339 shadow_dirty_mask = 0;
340 shadow_nx_mask = 0;
341 shadow_x_mask = 0;
342 shadow_mmio_mask = 0;
343 shadow_present_mask = 0;
344 shadow_acc_track_mask = 0;
345}
346
Avi Kivity6aa8b732006-12-10 02:21:36 -0800347static int is_cpuid_PSE36(void)
348{
349 return 1;
350}
351
Avi Kivity73b10872007-01-26 00:56:41 -0800352static int is_nx(struct kvm_vcpu *vcpu)
353{
Avi Kivityf6801df2010-01-21 15:31:50 +0200354 return vcpu->arch.efer & EFER_NX;
Avi Kivity73b10872007-01-26 00:56:41 -0800355}
356
Avi Kivityc7addb92007-09-16 18:58:32 +0200357static int is_shadow_present_pte(u64 pte)
358{
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800359 return (pte != 0) && !is_mmio_spte(pte);
Avi Kivityc7addb92007-09-16 18:58:32 +0200360}
361
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300362static int is_large_pte(u64 pte)
363{
364 return pte & PT_PAGE_SIZE_MASK;
365}
366
Marcelo Tosatti776e6632009-06-10 12:27:03 -0300367static int is_last_spte(u64 pte, int level)
368{
369 if (level == PT_PAGE_TABLE_LEVEL)
370 return 1;
Joerg Roedel852e3c12009-07-27 16:30:44 +0200371 if (is_large_pte(pte))
Marcelo Tosatti776e6632009-06-10 12:27:03 -0300372 return 1;
373 return 0;
374}
375
Dan Williamsba049e92016-01-15 16:56:11 -0800376static kvm_pfn_t spte_to_pfn(u64 pte)
Avi Kivity0b49ea82008-03-23 15:06:23 +0200377{
Anthony Liguori35149e22008-04-02 14:46:56 -0500378 return (pte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT;
Avi Kivity0b49ea82008-03-23 15:06:23 +0200379}
380
Avi Kivityda9285212007-11-21 13:54:47 +0200381static gfn_t pse36_gfn_delta(u32 gpte)
382{
383 int shift = 32 - PT32_DIR_PSE36_SHIFT - PAGE_SHIFT;
384
385 return (gpte & PT32_DIR_PSE36_MASK) << shift;
386}
387
Xiao Guangrong603e0652011-07-12 03:31:28 +0800388#ifdef CONFIG_X86_64
Avi Kivityd555c332009-06-10 14:24:23 +0300389static void __set_spte(u64 *sptep, u64 spte)
Avi Kivitye663ee62007-05-31 15:46:04 +0300390{
Nadav Amitb19ee2f2016-05-11 08:04:29 -0700391 WRITE_ONCE(*sptep, spte);
Avi Kivitye663ee62007-05-31 15:46:04 +0300392}
393
Xiao Guangrong603e0652011-07-12 03:31:28 +0800394static void __update_clear_spte_fast(u64 *sptep, u64 spte)
Avi Kivitya9221dd2010-06-06 14:48:06 +0300395{
Nadav Amitb19ee2f2016-05-11 08:04:29 -0700396 WRITE_ONCE(*sptep, spte);
Avi Kivitya9221dd2010-06-06 14:48:06 +0300397}
398
Xiao Guangrong603e0652011-07-12 03:31:28 +0800399static u64 __update_clear_spte_slow(u64 *sptep, u64 spte)
400{
401 return xchg(sptep, spte);
402}
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800403
404static u64 __get_spte_lockless(u64 *sptep)
405{
406 return ACCESS_ONCE(*sptep);
407}
Xiao Guangrong603e0652011-07-12 03:31:28 +0800408#else
409union split_spte {
410 struct {
411 u32 spte_low;
412 u32 spte_high;
413 };
414 u64 spte;
415};
416
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800417static void count_spte_clear(u64 *sptep, u64 spte)
418{
419 struct kvm_mmu_page *sp = page_header(__pa(sptep));
420
421 if (is_shadow_present_pte(spte))
422 return;
423
424 /* Ensure the spte is completely set before we increase the count */
425 smp_wmb();
426 sp->clear_spte_count++;
427}
428
Xiao Guangrong603e0652011-07-12 03:31:28 +0800429static void __set_spte(u64 *sptep, u64 spte)
430{
431 union split_spte *ssptep, sspte;
432
433 ssptep = (union split_spte *)sptep;
434 sspte = (union split_spte)spte;
435
436 ssptep->spte_high = sspte.spte_high;
437
438 /*
439 * If we map the spte from nonpresent to present, We should store
440 * the high bits firstly, then set present bit, so cpu can not
441 * fetch this spte while we are setting the spte.
442 */
443 smp_wmb();
444
Nadav Amitb19ee2f2016-05-11 08:04:29 -0700445 WRITE_ONCE(ssptep->spte_low, sspte.spte_low);
Xiao Guangrong603e0652011-07-12 03:31:28 +0800446}
447
448static void __update_clear_spte_fast(u64 *sptep, u64 spte)
449{
450 union split_spte *ssptep, sspte;
451
452 ssptep = (union split_spte *)sptep;
453 sspte = (union split_spte)spte;
454
Nadav Amitb19ee2f2016-05-11 08:04:29 -0700455 WRITE_ONCE(ssptep->spte_low, sspte.spte_low);
Xiao Guangrong603e0652011-07-12 03:31:28 +0800456
457 /*
458 * If we map the spte from present to nonpresent, we should clear
459 * present bit firstly to avoid vcpu fetch the old high bits.
460 */
461 smp_wmb();
462
463 ssptep->spte_high = sspte.spte_high;
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800464 count_spte_clear(sptep, spte);
Xiao Guangrong603e0652011-07-12 03:31:28 +0800465}
466
467static u64 __update_clear_spte_slow(u64 *sptep, u64 spte)
468{
469 union split_spte *ssptep, sspte, orig;
470
471 ssptep = (union split_spte *)sptep;
472 sspte = (union split_spte)spte;
473
474 /* xchg acts as a barrier before the setting of the high bits */
475 orig.spte_low = xchg(&ssptep->spte_low, sspte.spte_low);
Zhao Jin41bc3182011-09-19 12:19:51 +0800476 orig.spte_high = ssptep->spte_high;
477 ssptep->spte_high = sspte.spte_high;
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800478 count_spte_clear(sptep, spte);
Xiao Guangrong603e0652011-07-12 03:31:28 +0800479
480 return orig.spte;
481}
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800482
483/*
484 * The idea using the light way get the spte on x86_32 guest is from
485 * gup_get_pte(arch/x86/mm/gup.c).
Xiao Guangrongaccaefe2013-06-19 17:09:20 +0800486 *
487 * An spte tlb flush may be pending, because kvm_set_pte_rmapp
488 * coalesces them and we are running out of the MMU lock. Therefore
489 * we need to protect against in-progress updates of the spte.
490 *
491 * Reading the spte while an update is in progress may get the old value
492 * for the high part of the spte. The race is fine for a present->non-present
493 * change (because the high part of the spte is ignored for non-present spte),
494 * but for a present->present change we must reread the spte.
495 *
496 * All such changes are done in two steps (present->non-present and
497 * non-present->present), hence it is enough to count the number of
498 * present->non-present updates: if it changed while reading the spte,
499 * we might have hit the race. This is done using clear_spte_count.
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800500 */
501static u64 __get_spte_lockless(u64 *sptep)
502{
503 struct kvm_mmu_page *sp = page_header(__pa(sptep));
504 union split_spte spte, *orig = (union split_spte *)sptep;
505 int count;
506
507retry:
508 count = sp->clear_spte_count;
509 smp_rmb();
510
511 spte.spte_low = orig->spte_low;
512 smp_rmb();
513
514 spte.spte_high = orig->spte_high;
515 smp_rmb();
516
517 if (unlikely(spte.spte_low != orig->spte_low ||
518 count != sp->clear_spte_count))
519 goto retry;
520
521 return spte.spte;
522}
Xiao Guangrong603e0652011-07-12 03:31:28 +0800523#endif
524
Junaid Shahidea4114b2016-12-06 16:46:11 -0800525static bool spte_can_locklessly_be_made_writable(u64 spte)
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800526{
Gleb Natapovfeb3eb72013-01-30 16:45:00 +0200527 return (spte & (SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE)) ==
528 (SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE);
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800529}
530
Xiao Guangrong8672b722010-08-02 16:14:04 +0800531static bool spte_has_volatile_bits(u64 spte)
532{
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800533 if (!is_shadow_present_pte(spte))
534 return false;
535
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800536 /*
Adam Buchbinder6a6256f2016-02-23 15:34:30 -0800537 * Always atomically update spte if it can be updated
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800538 * out of mmu-lock, it can ensure dirty bit is not lost,
539 * also, it can help us to get a stable is_writable_pte()
540 * to ensure tlb flush is not missed.
541 */
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800542 if (spte_can_locklessly_be_made_writable(spte) ||
543 is_access_track_spte(spte))
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800544 return true;
545
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800546 if (shadow_accessed_mask) {
547 if ((spte & shadow_accessed_mask) == 0 ||
548 (is_writable_pte(spte) && (spte & shadow_dirty_mask) == 0))
549 return true;
550 }
Xiao Guangrong8672b722010-08-02 16:14:04 +0800551
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800552 return false;
Xiao Guangrong8672b722010-08-02 16:14:04 +0800553}
554
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800555static bool is_accessed_spte(u64 spte)
Xiao Guangrong41327792010-08-02 16:15:08 +0800556{
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800557 return shadow_accessed_mask ? spte & shadow_accessed_mask
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800558 : !is_access_track_spte(spte);
Xiao Guangrong41327792010-08-02 16:15:08 +0800559}
560
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800561static bool is_dirty_spte(u64 spte)
Kai Huang7e71a592015-01-09 16:44:30 +0800562{
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800563 return shadow_dirty_mask ? spte & shadow_dirty_mask
564 : spte & PT_WRITABLE_MASK;
Kai Huang7e71a592015-01-09 16:44:30 +0800565}
566
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800567/* Rules for using mmu_spte_set:
568 * Set the sptep from nonpresent to present.
569 * Note: the sptep being assigned *must* be either not present
570 * or in a state where the hardware will not attempt to update
571 * the spte.
572 */
573static void mmu_spte_set(u64 *sptep, u64 new_spte)
574{
575 WARN_ON(is_shadow_present_pte(*sptep));
576 __set_spte(sptep, new_spte);
577}
578
Junaid Shahidf39a0582016-12-06 16:46:14 -0800579/*
580 * Update the SPTE (excluding the PFN), but do not track changes in its
581 * accessed/dirty status.
582 */
583static u64 mmu_spte_update_no_track(u64 *sptep, u64 new_spte)
584{
585 u64 old_spte = *sptep;
586
587 WARN_ON(!is_shadow_present_pte(new_spte));
588
589 if (!is_shadow_present_pte(old_spte)) {
590 mmu_spte_set(sptep, new_spte);
591 return old_spte;
592 }
593
594 if (!spte_has_volatile_bits(old_spte))
595 __update_clear_spte_fast(sptep, new_spte);
596 else
597 old_spte = __update_clear_spte_slow(sptep, new_spte);
598
599 WARN_ON(spte_to_pfn(old_spte) != spte_to_pfn(new_spte));
600
601 return old_spte;
602}
603
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800604/* Rules for using mmu_spte_update:
Andrea Gelminibb3541f2016-05-21 14:14:44 +0200605 * Update the state bits, it means the mapped pfn is not changed.
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800606 *
607 * Whenever we overwrite a writable spte with a read-only one we
608 * should flush remote TLBs. Otherwise rmap_write_protect
609 * will find a read-only spte, even though the writable spte
610 * might be cached on a CPU's TLB, the return value indicates this
611 * case.
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800612 *
613 * Returns true if the TLB needs to be flushed
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800614 */
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800615static bool mmu_spte_update(u64 *sptep, u64 new_spte)
Avi Kivityb79b93f2010-06-06 15:46:44 +0300616{
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800617 bool flush = false;
Junaid Shahidf39a0582016-12-06 16:46:14 -0800618 u64 old_spte = mmu_spte_update_no_track(sptep, new_spte);
Avi Kivityb79b93f2010-06-06 15:46:44 +0300619
Junaid Shahidf39a0582016-12-06 16:46:14 -0800620 if (!is_shadow_present_pte(old_spte))
621 return false;
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800622
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800623 /*
624 * For the spte updated out of mmu-lock is safe, since
Adam Buchbinder6a6256f2016-02-23 15:34:30 -0800625 * we always atomically update it, see the comments in
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800626 * spte_has_volatile_bits().
627 */
Junaid Shahidea4114b2016-12-06 16:46:11 -0800628 if (spte_can_locklessly_be_made_writable(old_spte) &&
Xiao Guangrong7f31c952014-04-17 17:06:15 +0800629 !is_writable_pte(new_spte))
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800630 flush = true;
Xiao Guangrong41327792010-08-02 16:15:08 +0800631
Kai Huang7e71a592015-01-09 16:44:30 +0800632 /*
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800633 * Flush TLB when accessed/dirty states are changed in the page tables,
Kai Huang7e71a592015-01-09 16:44:30 +0800634 * to guarantee consistency between TLB and page tables.
635 */
Kai Huang7e71a592015-01-09 16:44:30 +0800636
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800637 if (is_accessed_spte(old_spte) && !is_accessed_spte(new_spte)) {
638 flush = true;
Xiao Guangrong41327792010-08-02 16:15:08 +0800639 kvm_set_pfn_accessed(spte_to_pfn(old_spte));
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800640 }
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800641
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800642 if (is_dirty_spte(old_spte) && !is_dirty_spte(new_spte)) {
643 flush = true;
644 kvm_set_pfn_dirty(spte_to_pfn(old_spte));
645 }
646
647 return flush;
Avi Kivityb79b93f2010-06-06 15:46:44 +0300648}
649
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800650/*
651 * Rules for using mmu_spte_clear_track_bits:
652 * It sets the sptep from present to nonpresent, and track the
653 * state bits, it is used to clear the last level sptep.
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800654 * Returns non-zero if the PTE was previously valid.
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800655 */
656static int mmu_spte_clear_track_bits(u64 *sptep)
657{
Dan Williamsba049e92016-01-15 16:56:11 -0800658 kvm_pfn_t pfn;
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800659 u64 old_spte = *sptep;
660
661 if (!spte_has_volatile_bits(old_spte))
Xiao Guangrong603e0652011-07-12 03:31:28 +0800662 __update_clear_spte_fast(sptep, 0ull);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800663 else
Xiao Guangrong603e0652011-07-12 03:31:28 +0800664 old_spte = __update_clear_spte_slow(sptep, 0ull);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800665
Takuya Yoshikawaafd28fe2015-11-20 17:44:55 +0900666 if (!is_shadow_present_pte(old_spte))
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800667 return 0;
668
669 pfn = spte_to_pfn(old_spte);
Xiao Guangrong86fde742012-07-17 21:52:52 +0800670
671 /*
672 * KVM does not hold the refcount of the page used by
673 * kvm mmu, before reclaiming the page, we should
674 * unmap it from mmu first.
675 */
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +0000676 WARN_ON(!kvm_is_reserved_pfn(pfn) && !page_count(pfn_to_page(pfn)));
Xiao Guangrong86fde742012-07-17 21:52:52 +0800677
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800678 if (is_accessed_spte(old_spte))
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800679 kvm_set_pfn_accessed(pfn);
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800680
681 if (is_dirty_spte(old_spte))
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800682 kvm_set_pfn_dirty(pfn);
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800683
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800684 return 1;
685}
686
687/*
688 * Rules for using mmu_spte_clear_no_track:
689 * Directly clear spte without caring the state bits of sptep,
690 * it is used to set the upper level spte.
691 */
692static void mmu_spte_clear_no_track(u64 *sptep)
693{
Xiao Guangrong603e0652011-07-12 03:31:28 +0800694 __update_clear_spte_fast(sptep, 0ull);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800695}
696
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800697static u64 mmu_spte_get_lockless(u64 *sptep)
698{
699 return __get_spte_lockless(sptep);
700}
701
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800702static u64 mark_spte_for_access_track(u64 spte)
703{
704 if (shadow_accessed_mask != 0)
705 return spte & ~shadow_accessed_mask;
706
707 if (shadow_acc_track_mask == 0 || is_access_track_spte(spte))
708 return spte;
709
710 /*
Junaid Shahid20d65232016-12-21 20:29:31 -0800711 * Making an Access Tracking PTE will result in removal of write access
712 * from the PTE. So, verify that we will be able to restore the write
713 * access in the fast page fault path later on.
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800714 */
715 WARN_ONCE((spte & PT_WRITABLE_MASK) &&
716 !spte_can_locklessly_be_made_writable(spte),
717 "kvm: Writable SPTE is not locklessly dirty-trackable\n");
718
719 WARN_ONCE(spte & (shadow_acc_track_saved_bits_mask <<
720 shadow_acc_track_saved_bits_shift),
721 "kvm: Access Tracking saved bit locations are not zero\n");
722
723 spte |= (spte & shadow_acc_track_saved_bits_mask) <<
724 shadow_acc_track_saved_bits_shift;
725 spte &= ~shadow_acc_track_mask;
726 spte |= shadow_acc_track_value;
727
728 return spte;
729}
730
731/* Returns the Accessed status of the PTE and resets it at the same time. */
732static bool mmu_spte_age(u64 *sptep)
733{
734 u64 spte = mmu_spte_get_lockless(sptep);
735
736 if (!is_accessed_spte(spte))
737 return false;
738
739 if (shadow_accessed_mask) {
740 clear_bit((ffs(shadow_accessed_mask) - 1),
741 (unsigned long *)sptep);
742 } else {
743 /*
744 * Capture the dirty status of the page, so that it doesn't get
745 * lost when the SPTE is marked for access tracking.
746 */
747 if (is_writable_pte(spte))
748 kvm_set_pfn_dirty(spte_to_pfn(spte));
749
750 spte = mark_spte_for_access_track(spte);
751 mmu_spte_update_no_track(sptep, spte);
752 }
753
754 return true;
755}
756
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800757static void walk_shadow_page_lockless_begin(struct kvm_vcpu *vcpu)
758{
Avi Kivityc1427862012-05-14 15:44:06 +0300759 /*
760 * Prevent page table teardown by making any free-er wait during
761 * kvm_flush_remote_tlbs() IPI to all active vcpus.
762 */
763 local_irq_disable();
Lan Tianyu36ca7e02016-03-13 11:10:25 +0800764
Avi Kivityc1427862012-05-14 15:44:06 +0300765 /*
766 * Make sure a following spte read is not reordered ahead of the write
767 * to vcpu->mode.
768 */
Lan Tianyu36ca7e02016-03-13 11:10:25 +0800769 smp_store_mb(vcpu->mode, READING_SHADOW_PAGE_TABLES);
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800770}
771
772static void walk_shadow_page_lockless_end(struct kvm_vcpu *vcpu)
773{
Avi Kivityc1427862012-05-14 15:44:06 +0300774 /*
775 * Make sure the write to vcpu->mode is not reordered in front of
776 * reads to sptes. If it does, kvm_commit_zap_page() can see us
777 * OUTSIDE_GUEST_MODE and proceed to free the shadow page table.
778 */
Lan Tianyu36ca7e02016-03-13 11:10:25 +0800779 smp_store_release(&vcpu->mode, OUTSIDE_GUEST_MODE);
Avi Kivityc1427862012-05-14 15:44:06 +0300780 local_irq_enable();
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800781}
782
Avi Kivitye2dec932007-01-05 16:36:54 -0800783static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300784 struct kmem_cache *base_cache, int min)
Avi Kivity714b93d2007-01-05 16:36:53 -0800785{
786 void *obj;
787
788 if (cache->nobjs >= min)
Avi Kivitye2dec932007-01-05 16:36:54 -0800789 return 0;
Avi Kivity714b93d2007-01-05 16:36:53 -0800790 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
Avi Kivity2e3e5882007-09-10 11:28:17 +0300791 obj = kmem_cache_zalloc(base_cache, GFP_KERNEL);
Avi Kivity714b93d2007-01-05 16:36:53 -0800792 if (!obj)
Avi Kivitye2dec932007-01-05 16:36:54 -0800793 return -ENOMEM;
Avi Kivity714b93d2007-01-05 16:36:53 -0800794 cache->objects[cache->nobjs++] = obj;
795 }
Avi Kivitye2dec932007-01-05 16:36:54 -0800796 return 0;
Avi Kivity714b93d2007-01-05 16:36:53 -0800797}
798
Xiao Guangrongf759e2b2011-09-22 16:53:17 +0800799static int mmu_memory_cache_free_objects(struct kvm_mmu_memory_cache *cache)
800{
801 return cache->nobjs;
802}
803
Xiao Guangronge8ad9a72010-05-13 10:06:02 +0800804static void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc,
805 struct kmem_cache *cache)
Avi Kivity714b93d2007-01-05 16:36:53 -0800806{
807 while (mc->nobjs)
Xiao Guangronge8ad9a72010-05-13 10:06:02 +0800808 kmem_cache_free(cache, mc->objects[--mc->nobjs]);
Avi Kivity714b93d2007-01-05 16:36:53 -0800809}
810
Avi Kivityc1158e62007-07-20 08:18:27 +0300811static int mmu_topup_memory_cache_page(struct kvm_mmu_memory_cache *cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300812 int min)
Avi Kivityc1158e62007-07-20 08:18:27 +0300813{
Xiao Guangrong842f22e2011-03-04 19:01:10 +0800814 void *page;
Avi Kivityc1158e62007-07-20 08:18:27 +0300815
816 if (cache->nobjs >= min)
817 return 0;
818 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
Xiao Guangrong842f22e2011-03-04 19:01:10 +0800819 page = (void *)__get_free_page(GFP_KERNEL);
Avi Kivityc1158e62007-07-20 08:18:27 +0300820 if (!page)
821 return -ENOMEM;
Xiao Guangrong842f22e2011-03-04 19:01:10 +0800822 cache->objects[cache->nobjs++] = page;
Avi Kivityc1158e62007-07-20 08:18:27 +0300823 }
824 return 0;
825}
826
827static void mmu_free_memory_cache_page(struct kvm_mmu_memory_cache *mc)
828{
829 while (mc->nobjs)
Avi Kivityc4d198d2007-07-21 09:06:46 +0300830 free_page((unsigned long)mc->objects[--mc->nobjs]);
Avi Kivityc1158e62007-07-20 08:18:27 +0300831}
832
Avi Kivity8c438502007-04-16 11:53:17 +0300833static int mmu_topup_memory_caches(struct kvm_vcpu *vcpu)
834{
835 int r;
836
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800837 r = mmu_topup_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache,
Xiao Guangrong67052b32011-05-15 23:27:08 +0800838 pte_list_desc_cache, 8 + PTE_PREFETCH_NUM);
Avi Kivity2e3e5882007-09-10 11:28:17 +0300839 if (r)
840 goto out;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800841 r = mmu_topup_memory_cache_page(&vcpu->arch.mmu_page_cache, 8);
Avi Kivity2e3e5882007-09-10 11:28:17 +0300842 if (r)
843 goto out;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800844 r = mmu_topup_memory_cache(&vcpu->arch.mmu_page_header_cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300845 mmu_page_header_cache, 4);
846out:
Avi Kivity8c438502007-04-16 11:53:17 +0300847 return r;
848}
849
Avi Kivity714b93d2007-01-05 16:36:53 -0800850static void mmu_free_memory_caches(struct kvm_vcpu *vcpu)
851{
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800852 mmu_free_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache,
853 pte_list_desc_cache);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800854 mmu_free_memory_cache_page(&vcpu->arch.mmu_page_cache);
Xiao Guangronge8ad9a72010-05-13 10:06:02 +0800855 mmu_free_memory_cache(&vcpu->arch.mmu_page_header_cache,
856 mmu_page_header_cache);
Avi Kivity714b93d2007-01-05 16:36:53 -0800857}
858
Takuya Yoshikawa80feb892012-05-29 23:54:26 +0900859static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc)
Avi Kivity714b93d2007-01-05 16:36:53 -0800860{
861 void *p;
862
863 BUG_ON(!mc->nobjs);
864 p = mc->objects[--mc->nobjs];
Avi Kivity714b93d2007-01-05 16:36:53 -0800865 return p;
866}
867
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800868static struct pte_list_desc *mmu_alloc_pte_list_desc(struct kvm_vcpu *vcpu)
Avi Kivity714b93d2007-01-05 16:36:53 -0800869{
Takuya Yoshikawa80feb892012-05-29 23:54:26 +0900870 return mmu_memory_cache_alloc(&vcpu->arch.mmu_pte_list_desc_cache);
Avi Kivity714b93d2007-01-05 16:36:53 -0800871}
872
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800873static void mmu_free_pte_list_desc(struct pte_list_desc *pte_list_desc)
Avi Kivity714b93d2007-01-05 16:36:53 -0800874{
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800875 kmem_cache_free(pte_list_desc_cache, pte_list_desc);
Avi Kivity714b93d2007-01-05 16:36:53 -0800876}
877
Lai Jiangshan2032a932010-05-26 16:49:59 +0800878static gfn_t kvm_mmu_page_get_gfn(struct kvm_mmu_page *sp, int index)
879{
880 if (!sp->role.direct)
881 return sp->gfns[index];
882
883 return sp->gfn + (index << ((sp->role.level - 1) * PT64_LEVEL_BITS));
884}
885
886static void kvm_mmu_page_set_gfn(struct kvm_mmu_page *sp, int index, gfn_t gfn)
887{
888 if (sp->role.direct)
889 BUG_ON(gfn != kvm_mmu_page_get_gfn(sp, index));
890 else
891 sp->gfns[index] = gfn;
892}
893
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800894/*
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900895 * Return the pointer to the large page information for a given gfn,
896 * handling slots that are not large page aligned.
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300897 */
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900898static struct kvm_lpage_info *lpage_info_slot(gfn_t gfn,
899 struct kvm_memory_slot *slot,
900 int level)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300901{
902 unsigned long idx;
903
Takuya Yoshikawafb03cb62012-02-08 12:59:10 +0900904 idx = gfn_to_index(gfn, slot->base_gfn, level);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900905 return &slot->arch.lpage_info[level - 2][idx];
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300906}
907
Xiao Guangrong547ffae2016-02-24 17:51:07 +0800908static void update_gfn_disallow_lpage_count(struct kvm_memory_slot *slot,
909 gfn_t gfn, int count)
910{
911 struct kvm_lpage_info *linfo;
912 int i;
913
914 for (i = PT_DIRECTORY_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) {
915 linfo = lpage_info_slot(gfn, slot, i);
916 linfo->disallow_lpage += count;
917 WARN_ON(linfo->disallow_lpage < 0);
918 }
919}
920
921void kvm_mmu_gfn_disallow_lpage(struct kvm_memory_slot *slot, gfn_t gfn)
922{
923 update_gfn_disallow_lpage_count(slot, gfn, 1);
924}
925
926void kvm_mmu_gfn_allow_lpage(struct kvm_memory_slot *slot, gfn_t gfn)
927{
928 update_gfn_disallow_lpage_count(slot, gfn, -1);
929}
930
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200931static void account_shadowed(struct kvm *kvm, struct kvm_mmu_page *sp)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300932{
Paolo Bonzini699023e2015-05-18 15:03:39 +0200933 struct kvm_memslots *slots;
Joerg Roedeld25797b2009-07-27 16:30:43 +0200934 struct kvm_memory_slot *slot;
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200935 gfn_t gfn;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300936
Xiao Guangrong56ca57f2016-02-24 17:51:14 +0800937 kvm->arch.indirect_shadow_pages++;
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200938 gfn = sp->gfn;
Paolo Bonzini699023e2015-05-18 15:03:39 +0200939 slots = kvm_memslots_for_spte_role(kvm, sp->role);
940 slot = __gfn_to_memslot(slots, gfn);
Xiao Guangrong56ca57f2016-02-24 17:51:14 +0800941
942 /* the non-leaf shadow pages are keeping readonly. */
943 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
944 return kvm_slot_page_track_add_page(kvm, slot, gfn,
945 KVM_PAGE_TRACK_WRITE);
946
Xiao Guangrong547ffae2016-02-24 17:51:07 +0800947 kvm_mmu_gfn_disallow_lpage(slot, gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300948}
949
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200950static void unaccount_shadowed(struct kvm *kvm, struct kvm_mmu_page *sp)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300951{
Paolo Bonzini699023e2015-05-18 15:03:39 +0200952 struct kvm_memslots *slots;
Joerg Roedeld25797b2009-07-27 16:30:43 +0200953 struct kvm_memory_slot *slot;
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200954 gfn_t gfn;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300955
Xiao Guangrong56ca57f2016-02-24 17:51:14 +0800956 kvm->arch.indirect_shadow_pages--;
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200957 gfn = sp->gfn;
Paolo Bonzini699023e2015-05-18 15:03:39 +0200958 slots = kvm_memslots_for_spte_role(kvm, sp->role);
959 slot = __gfn_to_memslot(slots, gfn);
Xiao Guangrong56ca57f2016-02-24 17:51:14 +0800960 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
961 return kvm_slot_page_track_remove_page(kvm, slot, gfn,
962 KVM_PAGE_TRACK_WRITE);
963
Xiao Guangrong547ffae2016-02-24 17:51:07 +0800964 kvm_mmu_gfn_allow_lpage(slot, gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300965}
966
Xiao Guangrong92f94f12016-02-24 17:51:06 +0800967static bool __mmu_gfn_lpage_is_disallowed(gfn_t gfn, int level,
968 struct kvm_memory_slot *slot)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300969{
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900970 struct kvm_lpage_info *linfo;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300971
972 if (slot) {
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900973 linfo = lpage_info_slot(gfn, slot, level);
Xiao Guangrong92f94f12016-02-24 17:51:06 +0800974 return !!linfo->disallow_lpage;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300975 }
976
Xiao Guangrong92f94f12016-02-24 17:51:06 +0800977 return true;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300978}
979
Xiao Guangrong92f94f12016-02-24 17:51:06 +0800980static bool mmu_gfn_lpage_is_disallowed(struct kvm_vcpu *vcpu, gfn_t gfn,
981 int level)
Takuya Yoshikawa5225fdf2015-10-16 17:08:03 +0900982{
983 struct kvm_memory_slot *slot;
984
985 slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
Xiao Guangrong92f94f12016-02-24 17:51:06 +0800986 return __mmu_gfn_lpage_is_disallowed(gfn, level, slot);
Takuya Yoshikawa5225fdf2015-10-16 17:08:03 +0900987}
988
Joerg Roedeld25797b2009-07-27 16:30:43 +0200989static int host_mapping_level(struct kvm *kvm, gfn_t gfn)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300990{
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +0100991 unsigned long page_size;
Joerg Roedeld25797b2009-07-27 16:30:43 +0200992 int i, ret = 0;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300993
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +0100994 page_size = kvm_host_page_size(kvm, gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300995
Xiao Guangrong8a3d08f2015-05-13 14:42:21 +0800996 for (i = PT_PAGE_TABLE_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) {
Joerg Roedeld25797b2009-07-27 16:30:43 +0200997 if (page_size >= KVM_HPAGE_SIZE(i))
998 ret = i;
999 else
1000 break;
1001 }
1002
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03001003 return ret;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001004}
1005
Takuya Yoshikawad8aacf52015-10-16 17:07:01 +09001006static inline bool memslot_valid_for_gpte(struct kvm_memory_slot *slot,
1007 bool no_dirty_log)
1008{
1009 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
1010 return false;
1011 if (no_dirty_log && slot->dirty_bitmap)
1012 return false;
1013
1014 return true;
1015}
1016
Xiao Guangrong5d163b12011-03-09 15:43:00 +08001017static struct kvm_memory_slot *
1018gfn_to_memslot_dirty_bitmap(struct kvm_vcpu *vcpu, gfn_t gfn,
1019 bool no_dirty_log)
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001020{
1021 struct kvm_memory_slot *slot;
Xiao Guangrong5d163b12011-03-09 15:43:00 +08001022
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02001023 slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
Takuya Yoshikawad8aacf52015-10-16 17:07:01 +09001024 if (!memslot_valid_for_gpte(slot, no_dirty_log))
Xiao Guangrong5d163b12011-03-09 15:43:00 +08001025 slot = NULL;
1026
1027 return slot;
1028}
1029
Takuya Yoshikawafd136902015-10-16 17:06:02 +09001030static int mapping_level(struct kvm_vcpu *vcpu, gfn_t large_gfn,
1031 bool *force_pt_level)
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08001032{
1033 int host_level, level, max_level;
Takuya Yoshikawad8aacf52015-10-16 17:07:01 +09001034 struct kvm_memory_slot *slot;
1035
Takuya Yoshikawa8c85ac12015-10-19 15:13:29 +09001036 if (unlikely(*force_pt_level))
1037 return PT_PAGE_TABLE_LEVEL;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001038
Takuya Yoshikawa8c85ac12015-10-19 15:13:29 +09001039 slot = kvm_vcpu_gfn_to_memslot(vcpu, large_gfn);
1040 *force_pt_level = !memslot_valid_for_gpte(slot, true);
Takuya Yoshikawafd136902015-10-16 17:06:02 +09001041 if (unlikely(*force_pt_level))
1042 return PT_PAGE_TABLE_LEVEL;
1043
Joerg Roedeld25797b2009-07-27 16:30:43 +02001044 host_level = host_mapping_level(vcpu->kvm, large_gfn);
1045
1046 if (host_level == PT_PAGE_TABLE_LEVEL)
1047 return host_level;
1048
Xiao Guangrong55dd98c2013-02-05 15:26:54 +08001049 max_level = min(kvm_x86_ops->get_lpage_level(), host_level);
Sheng Yang878403b2010-01-05 19:02:29 +08001050
1051 for (level = PT_DIRECTORY_LEVEL; level <= max_level; ++level)
Xiao Guangrong92f94f12016-02-24 17:51:06 +08001052 if (__mmu_gfn_lpage_is_disallowed(large_gfn, level, slot))
Joerg Roedeld25797b2009-07-27 16:30:43 +02001053 break;
Joerg Roedeld25797b2009-07-27 16:30:43 +02001054
1055 return level - 1;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001056}
1057
1058/*
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001059 * About rmap_head encoding:
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001060 *
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001061 * If the bit zero of rmap_head->val is clear, then it points to the only spte
1062 * in this rmap chain. Otherwise, (rmap_head->val & ~1) points to a struct
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001063 * pte_list_desc containing more mappings.
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001064 */
1065
1066/*
1067 * Returns the number of pointers in the rmap chain, not counting the new one.
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001068 */
1069static int pte_list_add(struct kvm_vcpu *vcpu, u64 *spte,
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001070 struct kvm_rmap_head *rmap_head)
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001071{
1072 struct pte_list_desc *desc;
1073 int i, count = 0;
1074
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001075 if (!rmap_head->val) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001076 rmap_printk("pte_list_add: %p %llx 0->1\n", spte, *spte);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001077 rmap_head->val = (unsigned long)spte;
1078 } else if (!(rmap_head->val & 1)) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001079 rmap_printk("pte_list_add: %p %llx 1->many\n", spte, *spte);
1080 desc = mmu_alloc_pte_list_desc(vcpu);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001081 desc->sptes[0] = (u64 *)rmap_head->val;
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001082 desc->sptes[1] = spte;
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001083 rmap_head->val = (unsigned long)desc | 1;
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001084 ++count;
1085 } else {
1086 rmap_printk("pte_list_add: %p %llx many->many\n", spte, *spte);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001087 desc = (struct pte_list_desc *)(rmap_head->val & ~1ul);
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001088 while (desc->sptes[PTE_LIST_EXT-1] && desc->more) {
1089 desc = desc->more;
1090 count += PTE_LIST_EXT;
1091 }
1092 if (desc->sptes[PTE_LIST_EXT-1]) {
1093 desc->more = mmu_alloc_pte_list_desc(vcpu);
1094 desc = desc->more;
1095 }
1096 for (i = 0; desc->sptes[i]; ++i)
1097 ++count;
1098 desc->sptes[i] = spte;
1099 }
1100 return count;
1101}
1102
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001103static void
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001104pte_list_desc_remove_entry(struct kvm_rmap_head *rmap_head,
1105 struct pte_list_desc *desc, int i,
1106 struct pte_list_desc *prev_desc)
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001107{
1108 int j;
1109
1110 for (j = PTE_LIST_EXT - 1; !desc->sptes[j] && j > i; --j)
1111 ;
1112 desc->sptes[i] = desc->sptes[j];
1113 desc->sptes[j] = NULL;
1114 if (j != 0)
1115 return;
1116 if (!prev_desc && !desc->more)
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001117 rmap_head->val = (unsigned long)desc->sptes[0];
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001118 else
1119 if (prev_desc)
1120 prev_desc->more = desc->more;
1121 else
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001122 rmap_head->val = (unsigned long)desc->more | 1;
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001123 mmu_free_pte_list_desc(desc);
1124}
1125
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001126static void pte_list_remove(u64 *spte, struct kvm_rmap_head *rmap_head)
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001127{
1128 struct pte_list_desc *desc;
1129 struct pte_list_desc *prev_desc;
1130 int i;
1131
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001132 if (!rmap_head->val) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001133 printk(KERN_ERR "pte_list_remove: %p 0->BUG\n", spte);
1134 BUG();
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001135 } else if (!(rmap_head->val & 1)) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001136 rmap_printk("pte_list_remove: %p 1->0\n", spte);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001137 if ((u64 *)rmap_head->val != spte) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001138 printk(KERN_ERR "pte_list_remove: %p 1->BUG\n", spte);
1139 BUG();
1140 }
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001141 rmap_head->val = 0;
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001142 } else {
1143 rmap_printk("pte_list_remove: %p many->many\n", spte);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001144 desc = (struct pte_list_desc *)(rmap_head->val & ~1ul);
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001145 prev_desc = NULL;
1146 while (desc) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001147 for (i = 0; i < PTE_LIST_EXT && desc->sptes[i]; ++i) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001148 if (desc->sptes[i] == spte) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001149 pte_list_desc_remove_entry(rmap_head,
1150 desc, i, prev_desc);
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001151 return;
1152 }
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001153 }
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001154 prev_desc = desc;
1155 desc = desc->more;
1156 }
1157 pr_err("pte_list_remove: %p many->many\n", spte);
1158 BUG();
1159 }
1160}
1161
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001162static struct kvm_rmap_head *__gfn_to_rmap(gfn_t gfn, int level,
1163 struct kvm_memory_slot *slot)
Takuya Yoshikawa9b9b1492011-11-14 18:22:28 +09001164{
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09001165 unsigned long idx;
Takuya Yoshikawa9b9b1492011-11-14 18:22:28 +09001166
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09001167 idx = gfn_to_index(gfn, slot->base_gfn, level);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09001168 return &slot->arch.rmap[level - PT_PAGE_TABLE_LEVEL][idx];
Takuya Yoshikawa9b9b1492011-11-14 18:22:28 +09001169}
1170
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001171static struct kvm_rmap_head *gfn_to_rmap(struct kvm *kvm, gfn_t gfn,
1172 struct kvm_mmu_page *sp)
Izik Eidus290fc382007-09-27 14:11:22 +02001173{
Paolo Bonzini699023e2015-05-18 15:03:39 +02001174 struct kvm_memslots *slots;
Izik Eidus290fc382007-09-27 14:11:22 +02001175 struct kvm_memory_slot *slot;
1176
Paolo Bonzini699023e2015-05-18 15:03:39 +02001177 slots = kvm_memslots_for_spte_role(kvm, sp->role);
1178 slot = __gfn_to_memslot(slots, gfn);
Paolo Bonzinie4cd1da2015-05-18 15:11:46 +02001179 return __gfn_to_rmap(gfn, sp->role.level, slot);
Izik Eidus290fc382007-09-27 14:11:22 +02001180}
1181
Xiao Guangrongf759e2b2011-09-22 16:53:17 +08001182static bool rmap_can_add(struct kvm_vcpu *vcpu)
1183{
1184 struct kvm_mmu_memory_cache *cache;
1185
1186 cache = &vcpu->arch.mmu_pte_list_desc_cache;
1187 return mmu_memory_cache_free_objects(cache);
1188}
1189
Joerg Roedel44ad9942009-07-27 16:30:42 +02001190static int rmap_add(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn)
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001191{
Avi Kivity4db35312007-11-21 15:28:32 +02001192 struct kvm_mmu_page *sp;
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001193 struct kvm_rmap_head *rmap_head;
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001194
Avi Kivity4db35312007-11-21 15:28:32 +02001195 sp = page_header(__pa(spte));
Lai Jiangshan2032a932010-05-26 16:49:59 +08001196 kvm_mmu_page_set_gfn(sp, spte - sp->spt, gfn);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001197 rmap_head = gfn_to_rmap(vcpu->kvm, gfn, sp);
1198 return pte_list_add(vcpu, spte, rmap_head);
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001199}
1200
Izik Eidus290fc382007-09-27 14:11:22 +02001201static void rmap_remove(struct kvm *kvm, u64 *spte)
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001202{
Avi Kivity4db35312007-11-21 15:28:32 +02001203 struct kvm_mmu_page *sp;
Lai Jiangshan2032a932010-05-26 16:49:59 +08001204 gfn_t gfn;
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001205 struct kvm_rmap_head *rmap_head;
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001206
Avi Kivity4db35312007-11-21 15:28:32 +02001207 sp = page_header(__pa(spte));
Lai Jiangshan2032a932010-05-26 16:49:59 +08001208 gfn = kvm_mmu_page_get_gfn(sp, spte - sp->spt);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001209 rmap_head = gfn_to_rmap(kvm, gfn, sp);
1210 pte_list_remove(spte, rmap_head);
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001211}
1212
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001213/*
1214 * Used by the following functions to iterate through the sptes linked by a
1215 * rmap. All fields are private and not assumed to be used outside.
1216 */
1217struct rmap_iterator {
1218 /* private fields */
1219 struct pte_list_desc *desc; /* holds the sptep if not NULL */
1220 int pos; /* index of the sptep */
1221};
1222
1223/*
1224 * Iteration must be started by this function. This should also be used after
1225 * removing/dropping sptes from the rmap link because in such cases the
1226 * information in the itererator may not be valid.
1227 *
1228 * Returns sptep if found, NULL otherwise.
1229 */
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001230static u64 *rmap_get_first(struct kvm_rmap_head *rmap_head,
1231 struct rmap_iterator *iter)
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001232{
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001233 u64 *sptep;
1234
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001235 if (!rmap_head->val)
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001236 return NULL;
1237
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001238 if (!(rmap_head->val & 1)) {
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001239 iter->desc = NULL;
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001240 sptep = (u64 *)rmap_head->val;
1241 goto out;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001242 }
1243
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001244 iter->desc = (struct pte_list_desc *)(rmap_head->val & ~1ul);
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001245 iter->pos = 0;
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001246 sptep = iter->desc->sptes[iter->pos];
1247out:
1248 BUG_ON(!is_shadow_present_pte(*sptep));
1249 return sptep;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001250}
1251
1252/*
1253 * Must be used with a valid iterator: e.g. after rmap_get_first().
1254 *
1255 * Returns sptep if found, NULL otherwise.
1256 */
1257static u64 *rmap_get_next(struct rmap_iterator *iter)
1258{
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001259 u64 *sptep;
1260
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001261 if (iter->desc) {
1262 if (iter->pos < PTE_LIST_EXT - 1) {
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001263 ++iter->pos;
1264 sptep = iter->desc->sptes[iter->pos];
1265 if (sptep)
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001266 goto out;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001267 }
1268
1269 iter->desc = iter->desc->more;
1270
1271 if (iter->desc) {
1272 iter->pos = 0;
1273 /* desc->sptes[0] cannot be NULL */
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001274 sptep = iter->desc->sptes[iter->pos];
1275 goto out;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001276 }
1277 }
1278
1279 return NULL;
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001280out:
1281 BUG_ON(!is_shadow_present_pte(*sptep));
1282 return sptep;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001283}
1284
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001285#define for_each_rmap_spte(_rmap_head_, _iter_, _spte_) \
1286 for (_spte_ = rmap_get_first(_rmap_head_, _iter_); \
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001287 _spte_; _spte_ = rmap_get_next(_iter_))
Xiao Guangrong0d536792015-05-13 14:42:20 +08001288
Xiao Guangrongc3707952011-07-12 03:28:04 +08001289static void drop_spte(struct kvm *kvm, u64 *sptep)
Xiao Guangronge4b502e2010-07-16 11:28:09 +08001290{
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +08001291 if (mmu_spte_clear_track_bits(sptep))
Marcelo Tosattieb45fda2010-10-25 11:58:22 -02001292 rmap_remove(kvm, sptep);
Avi Kivitybe38d272010-06-06 14:31:27 +03001293}
1294
Xiao Guangrong8e22f952012-06-20 15:57:39 +08001295
1296static bool __drop_large_spte(struct kvm *kvm, u64 *sptep)
1297{
1298 if (is_large_pte(*sptep)) {
1299 WARN_ON(page_header(__pa(sptep))->role.level ==
1300 PT_PAGE_TABLE_LEVEL);
1301 drop_spte(kvm, sptep);
1302 --kvm->stat.lpages;
1303 return true;
1304 }
1305
1306 return false;
1307}
1308
1309static void drop_large_spte(struct kvm_vcpu *vcpu, u64 *sptep)
1310{
1311 if (__drop_large_spte(vcpu->kvm, sptep))
1312 kvm_flush_remote_tlbs(vcpu->kvm);
1313}
1314
1315/*
Xiao Guangrong49fde342012-06-20 15:58:58 +08001316 * Write-protect on the specified @sptep, @pt_protect indicates whether
Xiao Guangrongc126d942014-04-17 17:06:14 +08001317 * spte write-protection is caused by protecting shadow page table.
Xiao Guangrong49fde342012-06-20 15:58:58 +08001318 *
Tiejun Chenb4619662014-09-22 10:31:38 +08001319 * Note: write protection is difference between dirty logging and spte
Xiao Guangrong49fde342012-06-20 15:58:58 +08001320 * protection:
1321 * - for dirty logging, the spte can be set to writable at anytime if
1322 * its dirty bitmap is properly set.
1323 * - for spte protection, the spte can be writable only after unsync-ing
1324 * shadow page.
Xiao Guangrong8e22f952012-06-20 15:57:39 +08001325 *
Xiao Guangrongc126d942014-04-17 17:06:14 +08001326 * Return true if tlb need be flushed.
Xiao Guangrong8e22f952012-06-20 15:57:39 +08001327 */
Bandan Dasc4f138b2016-08-02 16:32:37 -04001328static bool spte_write_protect(u64 *sptep, bool pt_protect)
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001329{
1330 u64 spte = *sptep;
1331
Xiao Guangrong49fde342012-06-20 15:58:58 +08001332 if (!is_writable_pte(spte) &&
Junaid Shahidea4114b2016-12-06 16:46:11 -08001333 !(pt_protect && spte_can_locklessly_be_made_writable(spte)))
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001334 return false;
1335
1336 rmap_printk("rmap_write_protect: spte %p %llx\n", sptep, *sptep);
1337
Xiao Guangrong49fde342012-06-20 15:58:58 +08001338 if (pt_protect)
1339 spte &= ~SPTE_MMU_WRITEABLE;
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001340 spte = spte & ~PT_WRITABLE_MASK;
Xiao Guangrong49fde342012-06-20 15:58:58 +08001341
Xiao Guangrongc126d942014-04-17 17:06:14 +08001342 return mmu_spte_update(sptep, spte);
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001343}
1344
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001345static bool __rmap_write_protect(struct kvm *kvm,
1346 struct kvm_rmap_head *rmap_head,
Takuya Yoshikawa245c3912013-01-08 19:44:09 +09001347 bool pt_protect)
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001348{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001349 u64 *sptep;
1350 struct rmap_iterator iter;
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001351 bool flush = false;
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001352
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001353 for_each_rmap_spte(rmap_head, &iter, sptep)
Bandan Dasc4f138b2016-08-02 16:32:37 -04001354 flush |= spte_write_protect(sptep, pt_protect);
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001355
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001356 return flush;
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001357}
1358
Bandan Dasc4f138b2016-08-02 16:32:37 -04001359static bool spte_clear_dirty(u64 *sptep)
Kai Huangf4b4b182015-01-28 10:54:24 +08001360{
1361 u64 spte = *sptep;
1362
1363 rmap_printk("rmap_clear_dirty: spte %p %llx\n", sptep, *sptep);
1364
1365 spte &= ~shadow_dirty_mask;
1366
1367 return mmu_spte_update(sptep, spte);
1368}
1369
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001370static bool __rmap_clear_dirty(struct kvm *kvm, struct kvm_rmap_head *rmap_head)
Kai Huangf4b4b182015-01-28 10:54:24 +08001371{
1372 u64 *sptep;
1373 struct rmap_iterator iter;
1374 bool flush = false;
1375
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001376 for_each_rmap_spte(rmap_head, &iter, sptep)
Bandan Dasc4f138b2016-08-02 16:32:37 -04001377 flush |= spte_clear_dirty(sptep);
Kai Huangf4b4b182015-01-28 10:54:24 +08001378
1379 return flush;
1380}
1381
Bandan Dasc4f138b2016-08-02 16:32:37 -04001382static bool spte_set_dirty(u64 *sptep)
Kai Huangf4b4b182015-01-28 10:54:24 +08001383{
1384 u64 spte = *sptep;
1385
1386 rmap_printk("rmap_set_dirty: spte %p %llx\n", sptep, *sptep);
1387
1388 spte |= shadow_dirty_mask;
1389
1390 return mmu_spte_update(sptep, spte);
1391}
1392
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001393static bool __rmap_set_dirty(struct kvm *kvm, struct kvm_rmap_head *rmap_head)
Kai Huangf4b4b182015-01-28 10:54:24 +08001394{
1395 u64 *sptep;
1396 struct rmap_iterator iter;
1397 bool flush = false;
1398
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001399 for_each_rmap_spte(rmap_head, &iter, sptep)
Bandan Dasc4f138b2016-08-02 16:32:37 -04001400 flush |= spte_set_dirty(sptep);
Kai Huangf4b4b182015-01-28 10:54:24 +08001401
1402 return flush;
1403}
1404
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001405/**
Kai Huang3b0f1d02015-01-28 10:54:23 +08001406 * kvm_mmu_write_protect_pt_masked - write protect selected PT level pages
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001407 * @kvm: kvm instance
1408 * @slot: slot to protect
1409 * @gfn_offset: start of the BITS_PER_LONG pages we care about
1410 * @mask: indicates which pages we should protect
1411 *
1412 * Used when we do not need to care about huge page mappings: e.g. during dirty
1413 * logging we do not have any such mappings.
1414 */
Kai Huang3b0f1d02015-01-28 10:54:23 +08001415static void kvm_mmu_write_protect_pt_masked(struct kvm *kvm,
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001416 struct kvm_memory_slot *slot,
1417 gfn_t gfn_offset, unsigned long mask)
Izik Eidus98348e92007-10-16 14:42:30 +02001418{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001419 struct kvm_rmap_head *rmap_head;
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001420
1421 while (mask) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001422 rmap_head = __gfn_to_rmap(slot->base_gfn + gfn_offset + __ffs(mask),
1423 PT_PAGE_TABLE_LEVEL, slot);
1424 __rmap_write_protect(kvm, rmap_head, false);
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001425
1426 /* clear the first set bit */
1427 mask &= mask - 1;
1428 }
1429}
1430
Kai Huang3b0f1d02015-01-28 10:54:23 +08001431/**
Kai Huangf4b4b182015-01-28 10:54:24 +08001432 * kvm_mmu_clear_dirty_pt_masked - clear MMU D-bit for PT level pages
1433 * @kvm: kvm instance
1434 * @slot: slot to clear D-bit
1435 * @gfn_offset: start of the BITS_PER_LONG pages we care about
1436 * @mask: indicates which pages we should clear D-bit
1437 *
1438 * Used for PML to re-log the dirty GPAs after userspace querying dirty_bitmap.
1439 */
1440void kvm_mmu_clear_dirty_pt_masked(struct kvm *kvm,
1441 struct kvm_memory_slot *slot,
1442 gfn_t gfn_offset, unsigned long mask)
1443{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001444 struct kvm_rmap_head *rmap_head;
Kai Huangf4b4b182015-01-28 10:54:24 +08001445
1446 while (mask) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001447 rmap_head = __gfn_to_rmap(slot->base_gfn + gfn_offset + __ffs(mask),
1448 PT_PAGE_TABLE_LEVEL, slot);
1449 __rmap_clear_dirty(kvm, rmap_head);
Kai Huangf4b4b182015-01-28 10:54:24 +08001450
1451 /* clear the first set bit */
1452 mask &= mask - 1;
1453 }
1454}
1455EXPORT_SYMBOL_GPL(kvm_mmu_clear_dirty_pt_masked);
1456
1457/**
Kai Huang3b0f1d02015-01-28 10:54:23 +08001458 * kvm_arch_mmu_enable_log_dirty_pt_masked - enable dirty logging for selected
1459 * PT level pages.
1460 *
1461 * It calls kvm_mmu_write_protect_pt_masked to write protect selected pages to
1462 * enable dirty logging for them.
1463 *
1464 * Used when we do not need to care about huge page mappings: e.g. during dirty
1465 * logging we do not have any such mappings.
1466 */
1467void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm,
1468 struct kvm_memory_slot *slot,
1469 gfn_t gfn_offset, unsigned long mask)
1470{
Kai Huang88178fd2015-01-28 10:54:27 +08001471 if (kvm_x86_ops->enable_log_dirty_pt_masked)
1472 kvm_x86_ops->enable_log_dirty_pt_masked(kvm, slot, gfn_offset,
1473 mask);
1474 else
1475 kvm_mmu_write_protect_pt_masked(kvm, slot, gfn_offset, mask);
Kai Huang3b0f1d02015-01-28 10:54:23 +08001476}
1477
Xiao Guangrongaeecee22016-02-24 17:51:08 +08001478bool kvm_mmu_slot_gfn_write_protect(struct kvm *kvm,
1479 struct kvm_memory_slot *slot, u64 gfn)
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001480{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001481 struct kvm_rmap_head *rmap_head;
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001482 int i;
Xiao Guangrong2f845692012-06-20 15:56:53 +08001483 bool write_protected = false;
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001484
Xiao Guangrong8a3d08f2015-05-13 14:42:21 +08001485 for (i = PT_PAGE_TABLE_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001486 rmap_head = __gfn_to_rmap(gfn, i, slot);
Xiao Guangrongaeecee22016-02-24 17:51:08 +08001487 write_protected |= __rmap_write_protect(kvm, rmap_head, true);
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001488 }
1489
Marcelo Tosattib1a36822008-12-01 22:32:03 -02001490 return write_protected;
Avi Kivity374cbac2007-01-05 16:36:43 -08001491}
1492
Xiao Guangrongaeecee22016-02-24 17:51:08 +08001493static bool rmap_write_protect(struct kvm_vcpu *vcpu, u64 gfn)
1494{
1495 struct kvm_memory_slot *slot;
1496
1497 slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1498 return kvm_mmu_slot_gfn_write_protect(vcpu->kvm, slot, gfn);
1499}
1500
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001501static bool kvm_zap_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head)
Xiao Guangrong6a49f852015-05-13 14:42:25 +08001502{
1503 u64 *sptep;
1504 struct rmap_iterator iter;
1505 bool flush = false;
1506
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001507 while ((sptep = rmap_get_first(rmap_head, &iter))) {
Xiao Guangrong6a49f852015-05-13 14:42:25 +08001508 rmap_printk("%s: spte %p %llx.\n", __func__, sptep, *sptep);
1509
1510 drop_spte(kvm, sptep);
1511 flush = true;
1512 }
1513
1514 return flush;
1515}
1516
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001517static int kvm_unmap_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001518 struct kvm_memory_slot *slot, gfn_t gfn, int level,
1519 unsigned long data)
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001520{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001521 return kvm_zap_rmapp(kvm, rmap_head);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001522}
1523
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001524static int kvm_set_pte_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001525 struct kvm_memory_slot *slot, gfn_t gfn, int level,
1526 unsigned long data)
Izik Eidus3da0dd42009-09-23 21:47:18 +03001527{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001528 u64 *sptep;
1529 struct rmap_iterator iter;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001530 int need_flush = 0;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001531 u64 new_spte;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001532 pte_t *ptep = (pte_t *)data;
Dan Williamsba049e92016-01-15 16:56:11 -08001533 kvm_pfn_t new_pfn;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001534
1535 WARN_ON(pte_huge(*ptep));
1536 new_pfn = pte_pfn(*ptep);
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001537
Xiao Guangrong0d536792015-05-13 14:42:20 +08001538restart:
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001539 for_each_rmap_spte(rmap_head, &iter, sptep) {
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001540 rmap_printk("kvm_set_pte_rmapp: spte %p %llx gfn %llx (%d)\n",
Junaid Shahidf160c7b2016-12-06 16:46:16 -08001541 sptep, *sptep, gfn, level);
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001542
Izik Eidus3da0dd42009-09-23 21:47:18 +03001543 need_flush = 1;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001544
Izik Eidus3da0dd42009-09-23 21:47:18 +03001545 if (pte_write(*ptep)) {
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001546 drop_spte(kvm, sptep);
Xiao Guangrong0d536792015-05-13 14:42:20 +08001547 goto restart;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001548 } else {
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001549 new_spte = *sptep & ~PT64_BASE_ADDR_MASK;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001550 new_spte |= (u64)new_pfn << PAGE_SHIFT;
1551
1552 new_spte &= ~PT_WRITABLE_MASK;
1553 new_spte &= ~SPTE_HOST_WRITEABLE;
Junaid Shahidf160c7b2016-12-06 16:46:16 -08001554
1555 new_spte = mark_spte_for_access_track(new_spte);
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001556
1557 mmu_spte_clear_track_bits(sptep);
1558 mmu_spte_set(sptep, new_spte);
Izik Eidus3da0dd42009-09-23 21:47:18 +03001559 }
1560 }
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001561
Izik Eidus3da0dd42009-09-23 21:47:18 +03001562 if (need_flush)
1563 kvm_flush_remote_tlbs(kvm);
1564
1565 return 0;
1566}
1567
Xiao Guangrong6ce1f4e2015-05-13 14:42:22 +08001568struct slot_rmap_walk_iterator {
1569 /* input fields. */
1570 struct kvm_memory_slot *slot;
1571 gfn_t start_gfn;
1572 gfn_t end_gfn;
1573 int start_level;
1574 int end_level;
1575
1576 /* output fields. */
1577 gfn_t gfn;
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001578 struct kvm_rmap_head *rmap;
Xiao Guangrong6ce1f4e2015-05-13 14:42:22 +08001579 int level;
1580
1581 /* private field. */
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001582 struct kvm_rmap_head *end_rmap;
Xiao Guangrong6ce1f4e2015-05-13 14:42:22 +08001583};
1584
1585static void
1586rmap_walk_init_level(struct slot_rmap_walk_iterator *iterator, int level)
1587{
1588 iterator->level = level;
1589 iterator->gfn = iterator->start_gfn;
1590 iterator->rmap = __gfn_to_rmap(iterator->gfn, level, iterator->slot);
1591 iterator->end_rmap = __gfn_to_rmap(iterator->end_gfn, level,
1592 iterator->slot);
1593}
1594
1595static void
1596slot_rmap_walk_init(struct slot_rmap_walk_iterator *iterator,
1597 struct kvm_memory_slot *slot, int start_level,
1598 int end_level, gfn_t start_gfn, gfn_t end_gfn)
1599{
1600 iterator->slot = slot;
1601 iterator->start_level = start_level;
1602 iterator->end_level = end_level;
1603 iterator->start_gfn = start_gfn;
1604 iterator->end_gfn = end_gfn;
1605
1606 rmap_walk_init_level(iterator, iterator->start_level);
1607}
1608
1609static bool slot_rmap_walk_okay(struct slot_rmap_walk_iterator *iterator)
1610{
1611 return !!iterator->rmap;
1612}
1613
1614static void slot_rmap_walk_next(struct slot_rmap_walk_iterator *iterator)
1615{
1616 if (++iterator->rmap <= iterator->end_rmap) {
1617 iterator->gfn += (1UL << KVM_HPAGE_GFN_SHIFT(iterator->level));
1618 return;
1619 }
1620
1621 if (++iterator->level > iterator->end_level) {
1622 iterator->rmap = NULL;
1623 return;
1624 }
1625
1626 rmap_walk_init_level(iterator, iterator->level);
1627}
1628
1629#define for_each_slot_rmap_range(_slot_, _start_level_, _end_level_, \
1630 _start_gfn, _end_gfn, _iter_) \
1631 for (slot_rmap_walk_init(_iter_, _slot_, _start_level_, \
1632 _end_level_, _start_gfn, _end_gfn); \
1633 slot_rmap_walk_okay(_iter_); \
1634 slot_rmap_walk_next(_iter_))
1635
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001636static int kvm_handle_hva_range(struct kvm *kvm,
1637 unsigned long start,
1638 unsigned long end,
1639 unsigned long data,
1640 int (*handler)(struct kvm *kvm,
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001641 struct kvm_rmap_head *rmap_head,
Takuya Yoshikawa048212d2012-07-02 17:57:59 +09001642 struct kvm_memory_slot *slot,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001643 gfn_t gfn,
1644 int level,
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001645 unsigned long data))
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001646{
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001647 struct kvm_memslots *slots;
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +08001648 struct kvm_memory_slot *memslot;
Xiao Guangrong6ce1f4e2015-05-13 14:42:22 +08001649 struct slot_rmap_walk_iterator iterator;
1650 int ret = 0;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02001651 int i;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001652
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02001653 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
1654 slots = __kvm_memslots(kvm, i);
1655 kvm_for_each_memslot(memslot, slots) {
1656 unsigned long hva_start, hva_end;
1657 gfn_t gfn_start, gfn_end;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001658
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02001659 hva_start = max(start, memslot->userspace_addr);
1660 hva_end = min(end, memslot->userspace_addr +
1661 (memslot->npages << PAGE_SHIFT));
1662 if (hva_start >= hva_end)
1663 continue;
1664 /*
1665 * {gfn(page) | page intersects with [hva_start, hva_end)} =
1666 * {gfn_start, gfn_start+1, ..., gfn_end-1}.
1667 */
1668 gfn_start = hva_to_gfn_memslot(hva_start, memslot);
1669 gfn_end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, memslot);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001670
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02001671 for_each_slot_rmap_range(memslot, PT_PAGE_TABLE_LEVEL,
1672 PT_MAX_HUGEPAGE_LEVEL,
1673 gfn_start, gfn_end - 1,
1674 &iterator)
1675 ret |= handler(kvm, iterator.rmap, memslot,
1676 iterator.gfn, iterator.level, data);
1677 }
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001678 }
1679
Takuya Yoshikawaf3953022012-07-02 17:58:48 +09001680 return ret;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001681}
1682
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001683static int kvm_handle_hva(struct kvm *kvm, unsigned long hva,
1684 unsigned long data,
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001685 int (*handler)(struct kvm *kvm,
1686 struct kvm_rmap_head *rmap_head,
Takuya Yoshikawa048212d2012-07-02 17:57:59 +09001687 struct kvm_memory_slot *slot,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001688 gfn_t gfn, int level,
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001689 unsigned long data))
1690{
1691 return kvm_handle_hva_range(kvm, hva, hva + 1, data, handler);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001692}
1693
1694int kvm_unmap_hva(struct kvm *kvm, unsigned long hva)
1695{
Izik Eidus3da0dd42009-09-23 21:47:18 +03001696 return kvm_handle_hva(kvm, hva, 0, kvm_unmap_rmapp);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001697}
1698
Takuya Yoshikawab3ae2092012-07-02 17:56:33 +09001699int kvm_unmap_hva_range(struct kvm *kvm, unsigned long start, unsigned long end)
1700{
1701 return kvm_handle_hva_range(kvm, start, end, 0, kvm_unmap_rmapp);
1702}
1703
Izik Eidus3da0dd42009-09-23 21:47:18 +03001704void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte)
1705{
Frederik Deweerdt8a8365c2009-10-09 11:42:56 +00001706 kvm_handle_hva(kvm, hva, (unsigned long)&pte, kvm_set_pte_rmapp);
Izik Eidus3da0dd42009-09-23 21:47:18 +03001707}
1708
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001709static int kvm_age_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001710 struct kvm_memory_slot *slot, gfn_t gfn, int level,
1711 unsigned long data)
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001712{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001713 u64 *sptep;
Michael S. Tsirkin79f702a2012-06-03 11:34:08 +03001714 struct rmap_iterator uninitialized_var(iter);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001715 int young = 0;
1716
Junaid Shahidf160c7b2016-12-06 16:46:16 -08001717 for_each_rmap_spte(rmap_head, &iter, sptep)
1718 young |= mmu_spte_age(sptep);
Xiao Guangrong0d536792015-05-13 14:42:20 +08001719
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001720 trace_kvm_age_page(gfn, level, slot, young);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001721 return young;
1722}
1723
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001724static int kvm_test_age_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001725 struct kvm_memory_slot *slot, gfn_t gfn,
1726 int level, unsigned long data)
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001727{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001728 u64 *sptep;
1729 struct rmap_iterator iter;
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001730
1731 /*
Junaid Shahidf160c7b2016-12-06 16:46:16 -08001732 * If there's no access bit in the secondary pte set by the hardware and
1733 * fast access tracking is also not enabled, it's up to gup-fast/gup to
1734 * set the access bit in the primary pte or in the page structure.
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001735 */
Junaid Shahidf160c7b2016-12-06 16:46:16 -08001736 if (!shadow_accessed_mask && !shadow_acc_track_mask)
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001737 goto out;
1738
Junaid Shahid83ef6c82016-12-06 16:46:13 -08001739 for_each_rmap_spte(rmap_head, &iter, sptep)
1740 if (is_accessed_spte(*sptep))
1741 return 1;
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001742out:
Junaid Shahid83ef6c82016-12-06 16:46:13 -08001743 return 0;
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001744}
1745
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001746#define RMAP_RECYCLE_THRESHOLD 1000
1747
Joerg Roedel852e3c12009-07-27 16:30:44 +02001748static void rmap_recycle(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn)
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001749{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001750 struct kvm_rmap_head *rmap_head;
Joerg Roedel852e3c12009-07-27 16:30:44 +02001751 struct kvm_mmu_page *sp;
1752
1753 sp = page_header(__pa(spte));
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001754
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001755 rmap_head = gfn_to_rmap(vcpu->kvm, gfn, sp);
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001756
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001757 kvm_unmap_rmapp(vcpu->kvm, rmap_head, NULL, gfn, sp->role.level, 0);
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001758 kvm_flush_remote_tlbs(vcpu->kvm);
1759}
1760
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -07001761int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end)
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001762{
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -07001763 /*
1764 * In case of absence of EPT Access and Dirty Bits supports,
1765 * emulate the accessed bit for EPT, by checking if this page has
1766 * an EPT mapping, and clearing it if it does. On the next access,
1767 * a new EPT mapping will be established.
1768 * This has some overhead, but not as much as the cost of swapping
1769 * out actively used pages or breaking up actively used hugepages.
1770 */
Junaid Shahidf160c7b2016-12-06 16:46:16 -08001771 if (!shadow_accessed_mask && !shadow_acc_track_mask)
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -07001772 return kvm_handle_hva_range(kvm, start, end, 0,
1773 kvm_unmap_rmapp);
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -07001774
1775 return kvm_handle_hva_range(kvm, start, end, 0, kvm_age_rmapp);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001776}
1777
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001778int kvm_test_age_hva(struct kvm *kvm, unsigned long hva)
1779{
1780 return kvm_handle_hva(kvm, hva, 0, kvm_test_age_rmapp);
1781}
1782
Yaozu Dongd6c69ee2007-04-25 14:17:25 +08001783#ifdef MMU_DEBUG
Avi Kivity47ad8e62007-05-06 15:50:58 +03001784static int is_empty_shadow_page(u64 *spt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001785{
Avi Kivity139bdb22007-01-05 16:36:50 -08001786 u64 *pos;
1787 u64 *end;
1788
Avi Kivity47ad8e62007-05-06 15:50:58 +03001789 for (pos = spt, end = pos + PAGE_SIZE / sizeof(u64); pos != end; pos++)
Avi Kivity3c915512008-05-20 16:21:13 +03001790 if (is_shadow_present_pte(*pos)) {
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001791 printk(KERN_ERR "%s: %p %llx\n", __func__,
Avi Kivity139bdb22007-01-05 16:36:50 -08001792 pos, *pos);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001793 return 0;
Avi Kivity139bdb22007-01-05 16:36:50 -08001794 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001795 return 1;
1796}
Yaozu Dongd6c69ee2007-04-25 14:17:25 +08001797#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001798
Dave Hansen45221ab2010-08-19 18:11:37 -07001799/*
1800 * This value is the sum of all of the kvm instances's
1801 * kvm->arch.n_used_mmu_pages values. We need a global,
1802 * aggregate version in order to make the slab shrinker
1803 * faster
1804 */
1805static inline void kvm_mod_used_mmu_pages(struct kvm *kvm, int nr)
1806{
1807 kvm->arch.n_used_mmu_pages += nr;
1808 percpu_counter_add(&kvm_total_used_mmu_pages, nr);
1809}
1810
Gleb Natapov834be0d2013-01-30 16:45:05 +02001811static void kvm_mmu_free_page(struct kvm_mmu_page *sp)
Avi Kivity260746c2007-01-05 16:36:49 -08001812{
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02001813 MMU_WARN_ON(!is_empty_shadow_page(sp->spt));
Xiao Guangrong77758342010-06-04 21:53:54 +08001814 hlist_del(&sp->hash_link);
Xiao Guangrongbd4c86e2011-07-12 03:27:14 +08001815 list_del(&sp->link);
1816 free_page((unsigned long)sp->spt);
Gleb Natapov834be0d2013-01-30 16:45:05 +02001817 if (!sp->role.direct)
1818 free_page((unsigned long)sp->gfns);
Xiao Guangronge8ad9a72010-05-13 10:06:02 +08001819 kmem_cache_free(mmu_page_header_cache, sp);
Avi Kivity260746c2007-01-05 16:36:49 -08001820}
1821
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001822static unsigned kvm_page_table_hashfn(gfn_t gfn)
1823{
David Matlack114df302016-12-19 13:58:25 -08001824 return hash_64(gfn, KVM_MMU_HASH_SHIFT);
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001825}
1826
Xiao Guangrong67052b32011-05-15 23:27:08 +08001827static void mmu_page_add_parent_pte(struct kvm_vcpu *vcpu,
1828 struct kvm_mmu_page *sp, u64 *parent_pte)
1829{
1830 if (!parent_pte)
1831 return;
1832
1833 pte_list_add(vcpu, parent_pte, &sp->parent_ptes);
1834}
1835
1836static void mmu_page_remove_parent_pte(struct kvm_mmu_page *sp,
1837 u64 *parent_pte)
1838{
1839 pte_list_remove(parent_pte, &sp->parent_ptes);
1840}
1841
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08001842static void drop_parent_pte(struct kvm_mmu_page *sp,
1843 u64 *parent_pte)
1844{
1845 mmu_page_remove_parent_pte(sp, parent_pte);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +08001846 mmu_spte_clear_no_track(parent_pte);
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08001847}
1848
Takuya Yoshikawa47005792015-11-20 17:46:29 +09001849static struct kvm_mmu_page *kvm_mmu_alloc_page(struct kvm_vcpu *vcpu, int direct)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001850{
Avi Kivity4db35312007-11-21 15:28:32 +02001851 struct kvm_mmu_page *sp;
Takuya Yoshikawa7ddca7e2013-03-21 19:33:43 +09001852
Takuya Yoshikawa80feb892012-05-29 23:54:26 +09001853 sp = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_header_cache);
1854 sp->spt = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache);
Lai Jiangshan2032a932010-05-26 16:49:59 +08001855 if (!direct)
Takuya Yoshikawa80feb892012-05-29 23:54:26 +09001856 sp->gfns = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache);
Avi Kivity4db35312007-11-21 15:28:32 +02001857 set_page_private(virt_to_page(sp->spt), (unsigned long)sp);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08001858
1859 /*
1860 * The active_mmu_pages list is the FIFO list, do not move the
1861 * page until it is zapped. kvm_zap_obsolete_pages depends on
1862 * this feature. See the comments in kvm_zap_obsolete_pages().
1863 */
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001864 list_add(&sp->link, &vcpu->kvm->arch.active_mmu_pages);
Dave Hansen45221ab2010-08-19 18:11:37 -07001865 kvm_mod_used_mmu_pages(vcpu->kvm, +1);
Avi Kivity4db35312007-11-21 15:28:32 +02001866 return sp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001867}
1868
Xiao Guangrong67052b32011-05-15 23:27:08 +08001869static void mark_unsync(u64 *spte);
Xiao Guangrong6b184932010-04-16 21:29:17 +08001870static void kvm_mmu_mark_parents_unsync(struct kvm_mmu_page *sp)
Marcelo Tosatti0074ff62008-09-23 13:18:40 -03001871{
Takuya Yoshikawa74c4e632015-11-26 21:15:38 +09001872 u64 *sptep;
1873 struct rmap_iterator iter;
1874
1875 for_each_rmap_spte(&sp->parent_ptes, &iter, sptep) {
1876 mark_unsync(sptep);
1877 }
Xiao Guangrong1047df12010-06-11 21:35:15 +08001878}
1879
Xiao Guangrong67052b32011-05-15 23:27:08 +08001880static void mark_unsync(u64 *spte)
Xiao Guangrong1047df12010-06-11 21:35:15 +08001881{
Xiao Guangrong67052b32011-05-15 23:27:08 +08001882 struct kvm_mmu_page *sp;
Xiao Guangrong1047df12010-06-11 21:35:15 +08001883 unsigned int index;
1884
Xiao Guangrong67052b32011-05-15 23:27:08 +08001885 sp = page_header(__pa(spte));
Xiao Guangrong1047df12010-06-11 21:35:15 +08001886 index = spte - sp->spt;
1887 if (__test_and_set_bit(index, sp->unsync_child_bitmap))
1888 return;
1889 if (sp->unsync_children++)
1890 return;
1891 kvm_mmu_mark_parents_unsync(sp);
Marcelo Tosatti0074ff62008-09-23 13:18:40 -03001892}
1893
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03001894static int nonpaging_sync_page(struct kvm_vcpu *vcpu,
Xiao Guangronga4a8e6f2010-11-19 17:04:03 +08001895 struct kvm_mmu_page *sp)
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03001896{
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01001897 return 0;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03001898}
1899
Marcelo Tosattia7052892008-09-23 13:18:35 -03001900static void nonpaging_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
1901{
1902}
1903
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08001904static void nonpaging_update_pte(struct kvm_vcpu *vcpu,
1905 struct kvm_mmu_page *sp, u64 *spte,
Xiao Guangrong7c562522011-03-28 10:29:27 +08001906 const void *pte)
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08001907{
1908 WARN_ON(1);
1909}
1910
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001911#define KVM_PAGE_ARRAY_NR 16
1912
1913struct kvm_mmu_pages {
1914 struct mmu_page_and_offset {
1915 struct kvm_mmu_page *sp;
1916 unsigned int idx;
1917 } page[KVM_PAGE_ARRAY_NR];
1918 unsigned int nr;
1919};
1920
Hannes Edercded19f2009-02-21 02:19:13 +01001921static int mmu_pages_add(struct kvm_mmu_pages *pvec, struct kvm_mmu_page *sp,
1922 int idx)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001923{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001924 int i;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001925
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001926 if (sp->unsync)
1927 for (i=0; i < pvec->nr; i++)
1928 if (pvec->page[i].sp == sp)
1929 return 0;
1930
1931 pvec->page[pvec->nr].sp = sp;
1932 pvec->page[pvec->nr].idx = idx;
1933 pvec->nr++;
1934 return (pvec->nr == KVM_PAGE_ARRAY_NR);
1935}
1936
Takuya Yoshikawafd951452015-11-20 17:43:13 +09001937static inline void clear_unsync_child_bit(struct kvm_mmu_page *sp, int idx)
1938{
1939 --sp->unsync_children;
1940 WARN_ON((int)sp->unsync_children < 0);
1941 __clear_bit(idx, sp->unsync_child_bitmap);
1942}
1943
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001944static int __mmu_unsync_walk(struct kvm_mmu_page *sp,
1945 struct kvm_mmu_pages *pvec)
1946{
1947 int i, ret, nr_unsync_leaf = 0;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001948
Takuya Yoshikawa37178b82011-11-29 14:02:45 +09001949 for_each_set_bit(i, sp->unsync_child_bitmap, 512) {
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001950 struct kvm_mmu_page *child;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001951 u64 ent = sp->spt[i];
1952
Takuya Yoshikawafd951452015-11-20 17:43:13 +09001953 if (!is_shadow_present_pte(ent) || is_large_pte(ent)) {
1954 clear_unsync_child_bit(sp, i);
1955 continue;
1956 }
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001957
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001958 child = page_header(ent & PT64_BASE_ADDR_MASK);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001959
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001960 if (child->unsync_children) {
1961 if (mmu_pages_add(pvec, child, i))
1962 return -ENOSPC;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001963
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001964 ret = __mmu_unsync_walk(child, pvec);
Takuya Yoshikawafd951452015-11-20 17:43:13 +09001965 if (!ret) {
1966 clear_unsync_child_bit(sp, i);
1967 continue;
1968 } else if (ret > 0) {
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001969 nr_unsync_leaf += ret;
Takuya Yoshikawafd951452015-11-20 17:43:13 +09001970 } else
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001971 return ret;
1972 } else if (child->unsync) {
1973 nr_unsync_leaf++;
1974 if (mmu_pages_add(pvec, child, i))
1975 return -ENOSPC;
1976 } else
Takuya Yoshikawafd951452015-11-20 17:43:13 +09001977 clear_unsync_child_bit(sp, i);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001978 }
1979
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001980 return nr_unsync_leaf;
1981}
1982
Xiao Guangronge23d3fe2016-02-24 09:46:06 +01001983#define INVALID_INDEX (-1)
1984
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001985static int mmu_unsync_walk(struct kvm_mmu_page *sp,
1986 struct kvm_mmu_pages *pvec)
1987{
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01001988 pvec->nr = 0;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001989 if (!sp->unsync_children)
1990 return 0;
1991
Xiao Guangronge23d3fe2016-02-24 09:46:06 +01001992 mmu_pages_add(pvec, sp, INVALID_INDEX);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001993 return __mmu_unsync_walk(sp, pvec);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001994}
1995
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001996static void kvm_unlink_unsync_page(struct kvm *kvm, struct kvm_mmu_page *sp)
1997{
1998 WARN_ON(!sp->unsync);
Xiao Guangrong5e1b3dd2010-04-28 11:55:06 +08001999 trace_kvm_mmu_sync_page(sp);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002000 sp->unsync = 0;
2001 --kvm->stat.mmu_unsync;
2002}
2003
Xiao Guangrong77758342010-06-04 21:53:54 +08002004static int kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp,
2005 struct list_head *invalid_list);
2006static void kvm_mmu_commit_zap_page(struct kvm *kvm,
2007 struct list_head *invalid_list);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002008
Xiao Guangrongf34d2512013-05-31 08:36:28 +08002009/*
2010 * NOTE: we should pay more attention on the zapped-obsolete page
2011 * (is_obsolete_sp(sp) && sp->role.invalid) when you do hash list walk
2012 * since it has been deleted from active_mmu_pages but still can be found
2013 * at hast list.
2014 *
David Matlackf3414bc2016-12-20 15:25:57 -08002015 * for_each_valid_sp() has skipped that kind of pages.
Xiao Guangrongf34d2512013-05-31 08:36:28 +08002016 */
David Matlackf3414bc2016-12-20 15:25:57 -08002017#define for_each_valid_sp(_kvm, _sp, _gfn) \
Takuya Yoshikawa1044b032013-03-06 16:05:07 +09002018 hlist_for_each_entry(_sp, \
2019 &(_kvm)->arch.mmu_page_hash[kvm_page_table_hashfn(_gfn)], hash_link) \
David Matlackf3414bc2016-12-20 15:25:57 -08002020 if (is_obsolete_sp((_kvm), (_sp)) || (_sp)->role.invalid) { \
2021 } else
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002022
Takuya Yoshikawa1044b032013-03-06 16:05:07 +09002023#define for_each_gfn_indirect_valid_sp(_kvm, _sp, _gfn) \
David Matlackf3414bc2016-12-20 15:25:57 -08002024 for_each_valid_sp(_kvm, _sp, _gfn) \
2025 if ((_sp)->gfn != (_gfn) || (_sp)->role.direct) {} else
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002026
Xiao Guangrongf918b442010-06-11 21:30:36 +08002027/* @sp->gfn should be write-protected at the call site */
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01002028static bool __kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
2029 struct list_head *invalid_list)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002030{
Avi Kivity5b7e0102010-04-14 19:20:03 +03002031 if (sp->role.cr4_pae != !!is_pae(vcpu)) {
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002032 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list);
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01002033 return false;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002034 }
2035
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01002036 if (vcpu->arch.mmu.sync_page(vcpu, sp) == 0) {
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002037 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list);
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01002038 return false;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002039 }
2040
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01002041 return true;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002042}
2043
Paolo Bonzini35a70512016-02-24 10:03:27 +01002044static void kvm_mmu_flush_or_zap(struct kvm_vcpu *vcpu,
2045 struct list_head *invalid_list,
2046 bool remote_flush, bool local_flush)
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08002047{
Paolo Bonzini35a70512016-02-24 10:03:27 +01002048 if (!list_empty(invalid_list)) {
2049 kvm_mmu_commit_zap_page(vcpu->kvm, invalid_list);
2050 return;
2051 }
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08002052
Paolo Bonzini35a70512016-02-24 10:03:27 +01002053 if (remote_flush)
2054 kvm_flush_remote_tlbs(vcpu->kvm);
2055 else if (local_flush)
2056 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08002057}
2058
Xiao Guangronge37fa782011-11-30 17:43:24 +08002059#ifdef CONFIG_KVM_MMU_AUDIT
2060#include "mmu_audit.c"
2061#else
2062static void kvm_mmu_audit(struct kvm_vcpu *vcpu, int point) { }
2063static void mmu_audit_disable(void) { }
2064#endif
2065
Xiao Guangrong46971a22016-03-25 21:19:38 +08002066static bool is_obsolete_sp(struct kvm *kvm, struct kvm_mmu_page *sp)
2067{
2068 return unlikely(sp->mmu_valid_gen != kvm->arch.mmu_valid_gen);
2069}
2070
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01002071static bool kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002072 struct list_head *invalid_list)
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08002073{
Paolo Bonzini9a43c5d2016-02-24 10:28:01 +01002074 kvm_unlink_unsync_page(vcpu->kvm, sp);
2075 return __kvm_sync_page(vcpu, sp, invalid_list);
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08002076}
2077
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002078/* @gfn should be write-protected at the call site */
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002079static bool kvm_sync_pages(struct kvm_vcpu *vcpu, gfn_t gfn,
2080 struct list_head *invalid_list)
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002081{
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002082 struct kvm_mmu_page *s;
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002083 bool ret = false;
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002084
Sasha Levinb67bfe02013-02-27 17:06:00 -08002085 for_each_gfn_indirect_valid_sp(vcpu->kvm, s, gfn) {
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002086 if (!s->unsync)
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002087 continue;
2088
2089 WARN_ON(s->role.level != PT_PAGE_TABLE_LEVEL);
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002090 ret |= kvm_sync_page(vcpu, s, invalid_list);
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002091 }
2092
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002093 return ret;
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002094}
2095
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002096struct mmu_page_path {
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002097 struct kvm_mmu_page *parent[PT64_ROOT_LEVEL];
2098 unsigned int idx[PT64_ROOT_LEVEL];
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002099};
2100
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002101#define for_each_sp(pvec, sp, parents, i) \
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002102 for (i = mmu_pages_first(&pvec, &parents); \
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002103 i < pvec.nr && ({ sp = pvec.page[i].sp; 1;}); \
2104 i = mmu_pages_next(&pvec, &parents, i))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002105
Hannes Edercded19f2009-02-21 02:19:13 +01002106static int mmu_pages_next(struct kvm_mmu_pages *pvec,
2107 struct mmu_page_path *parents,
2108 int i)
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002109{
2110 int n;
2111
2112 for (n = i+1; n < pvec->nr; n++) {
2113 struct kvm_mmu_page *sp = pvec->page[n].sp;
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002114 unsigned idx = pvec->page[n].idx;
2115 int level = sp->role.level;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002116
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002117 parents->idx[level-1] = idx;
2118 if (level == PT_PAGE_TABLE_LEVEL)
2119 break;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002120
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002121 parents->parent[level-2] = sp;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002122 }
2123
2124 return n;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002125}
2126
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002127static int mmu_pages_first(struct kvm_mmu_pages *pvec,
2128 struct mmu_page_path *parents)
2129{
2130 struct kvm_mmu_page *sp;
2131 int level;
2132
2133 if (pvec->nr == 0)
2134 return 0;
2135
Xiao Guangronge23d3fe2016-02-24 09:46:06 +01002136 WARN_ON(pvec->page[0].idx != INVALID_INDEX);
2137
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002138 sp = pvec->page[0].sp;
2139 level = sp->role.level;
2140 WARN_ON(level == PT_PAGE_TABLE_LEVEL);
2141
2142 parents->parent[level-2] = sp;
2143
2144 /* Also set up a sentinel. Further entries in pvec are all
2145 * children of sp, so this element is never overwritten.
2146 */
2147 parents->parent[level-1] = NULL;
2148 return mmu_pages_next(pvec, parents, 0);
2149}
2150
Hannes Edercded19f2009-02-21 02:19:13 +01002151static void mmu_pages_clear_parents(struct mmu_page_path *parents)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002152{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002153 struct kvm_mmu_page *sp;
2154 unsigned int level = 0;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002155
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002156 do {
2157 unsigned int idx = parents->idx[level];
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002158 sp = parents->parent[level];
2159 if (!sp)
2160 return;
2161
Xiao Guangronge23d3fe2016-02-24 09:46:06 +01002162 WARN_ON(idx == INVALID_INDEX);
Takuya Yoshikawafd951452015-11-20 17:43:13 +09002163 clear_unsync_child_bit(sp, idx);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002164 level++;
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002165 } while (!sp->unsync_children);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002166}
2167
2168static void mmu_sync_children(struct kvm_vcpu *vcpu,
2169 struct kvm_mmu_page *parent)
2170{
2171 int i;
2172 struct kvm_mmu_page *sp;
2173 struct mmu_page_path parents;
2174 struct kvm_mmu_pages pages;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002175 LIST_HEAD(invalid_list);
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002176 bool flush = false;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002177
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002178 while (mmu_unsync_walk(parent, &pages)) {
Xiao Guangrong2f845692012-06-20 15:56:53 +08002179 bool protected = false;
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002180
2181 for_each_sp(pages, sp, parents, i)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002182 protected |= rmap_write_protect(vcpu, sp->gfn);
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002183
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002184 if (protected) {
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002185 kvm_flush_remote_tlbs(vcpu->kvm);
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002186 flush = false;
2187 }
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002188
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002189 for_each_sp(pages, sp, parents, i) {
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01002190 flush |= kvm_sync_page(vcpu, sp, &invalid_list);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002191 mmu_pages_clear_parents(&parents);
2192 }
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002193 if (need_resched() || spin_needbreak(&vcpu->kvm->mmu_lock)) {
2194 kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush);
2195 cond_resched_lock(&vcpu->kvm->mmu_lock);
2196 flush = false;
2197 }
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002198 }
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002199
2200 kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002201}
2202
Xiao Guangronga30f47c2011-09-22 16:58:36 +08002203static void __clear_sp_write_flooding_count(struct kvm_mmu_page *sp)
2204{
Xiao Guangronge5691a82016-02-24 17:51:12 +08002205 atomic_set(&sp->write_flooding_count, 0);
Xiao Guangronga30f47c2011-09-22 16:58:36 +08002206}
2207
2208static void clear_sp_write_flooding_count(u64 *spte)
2209{
2210 struct kvm_mmu_page *sp = page_header(__pa(spte));
2211
2212 __clear_sp_write_flooding_count(sp);
2213}
2214
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002215static struct kvm_mmu_page *kvm_mmu_get_page(struct kvm_vcpu *vcpu,
2216 gfn_t gfn,
2217 gva_t gaddr,
2218 unsigned level,
Avi Kivityf6e2c02b2009-01-11 13:02:10 +02002219 int direct,
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09002220 unsigned access)
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002221{
2222 union kvm_mmu_page_role role;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002223 unsigned quadrant;
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002224 struct kvm_mmu_page *sp;
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002225 bool need_sync = false;
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002226 bool flush = false;
David Matlackf3414bc2016-12-20 15:25:57 -08002227 int collisions = 0;
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002228 LIST_HEAD(invalid_list);
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002229
Avi Kivitya770f6f2008-12-21 19:20:09 +02002230 role = vcpu->arch.mmu.base_role;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002231 role.level = level;
Avi Kivityf6e2c02b2009-01-11 13:02:10 +02002232 role.direct = direct;
Avi Kivity84b0c8c2010-03-14 10:16:40 +02002233 if (role.direct)
Avi Kivity5b7e0102010-04-14 19:20:03 +03002234 role.cr4_pae = 0;
Avi Kivity41074d02007-12-09 17:00:02 +02002235 role.access = access;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02002236 if (!vcpu->arch.mmu.direct_map
2237 && vcpu->arch.mmu.root_level <= PT32_ROOT_LEVEL) {
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002238 quadrant = gaddr >> (PAGE_SHIFT + (PT64_PT_BITS * level));
2239 quadrant &= (1 << ((PT32_PT_BITS - PT64_PT_BITS) * level)) - 1;
2240 role.quadrant = quadrant;
2241 }
David Matlackf3414bc2016-12-20 15:25:57 -08002242 for_each_valid_sp(vcpu->kvm, sp, gfn) {
2243 if (sp->gfn != gfn) {
2244 collisions++;
2245 continue;
2246 }
2247
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002248 if (!need_sync && sp->unsync)
2249 need_sync = true;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002250
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002251 if (sp->role.word != role.word)
2252 continue;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002253
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002254 if (sp->unsync) {
2255 /* The page is good, but __kvm_sync_page might still end
2256 * up zapping it. If so, break in order to rebuild it.
2257 */
2258 if (!__kvm_sync_page(vcpu, sp, &invalid_list))
2259 break;
2260
2261 WARN_ON(!list_empty(&invalid_list));
2262 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
2263 }
Xiao Guangronge02aa902010-05-15 18:52:34 +08002264
Takuya Yoshikawa98bba232015-11-26 21:14:34 +09002265 if (sp->unsync_children)
Avi Kivitya8eeb042010-05-10 12:34:53 +03002266 kvm_make_request(KVM_REQ_MMU_SYNC, vcpu);
Xiao Guangronge02aa902010-05-15 18:52:34 +08002267
Xiao Guangronga30f47c2011-09-22 16:58:36 +08002268 __clear_sp_write_flooding_count(sp);
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002269 trace_kvm_mmu_get_page(sp, false);
David Matlackf3414bc2016-12-20 15:25:57 -08002270 goto out;
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002271 }
Takuya Yoshikawa47005792015-11-20 17:46:29 +09002272
Avi Kivitydfc5aa02007-12-18 19:47:18 +02002273 ++vcpu->kvm->stat.mmu_cache_miss;
Takuya Yoshikawa47005792015-11-20 17:46:29 +09002274
2275 sp = kvm_mmu_alloc_page(vcpu, direct);
2276
Avi Kivity4db35312007-11-21 15:28:32 +02002277 sp->gfn = gfn;
2278 sp->role = role;
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002279 hlist_add_head(&sp->hash_link,
2280 &vcpu->kvm->arch.mmu_page_hash[kvm_page_table_hashfn(gfn)]);
Avi Kivityf6e2c02b2009-01-11 13:02:10 +02002281 if (!direct) {
Xiao Guangrong56ca57f2016-02-24 17:51:14 +08002282 /*
2283 * we should do write protection before syncing pages
2284 * otherwise the content of the synced shadow page may
2285 * be inconsistent with guest page table.
2286 */
Paolo Bonzini3ed1a472015-05-19 16:29:22 +02002287 account_shadowed(vcpu->kvm, sp);
Xiao Guangrong56ca57f2016-02-24 17:51:14 +08002288 if (level == PT_PAGE_TABLE_LEVEL &&
2289 rmap_write_protect(vcpu, gfn))
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002290 kvm_flush_remote_tlbs(vcpu->kvm);
Xiao Guangrong56ca57f2016-02-24 17:51:14 +08002291
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002292 if (level > PT_PAGE_TABLE_LEVEL && need_sync)
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002293 flush |= kvm_sync_pages(vcpu, gfn, &invalid_list);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002294 }
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08002295 sp->mmu_valid_gen = vcpu->kvm->arch.mmu_valid_gen;
Takuya Yoshikawa77492662015-12-18 18:54:49 +09002296 clear_page(sp->spt);
Avi Kivityf691fe12009-07-06 15:58:14 +03002297 trace_kvm_mmu_get_page(sp, true);
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002298
2299 kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush);
David Matlackf3414bc2016-12-20 15:25:57 -08002300out:
2301 if (collisions > vcpu->kvm->stat.max_mmu_page_hash_collisions)
2302 vcpu->kvm->stat.max_mmu_page_hash_collisions = collisions;
Avi Kivity4db35312007-11-21 15:28:32 +02002303 return sp;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002304}
2305
Avi Kivity2d111232008-12-25 14:39:47 +02002306static void shadow_walk_init(struct kvm_shadow_walk_iterator *iterator,
2307 struct kvm_vcpu *vcpu, u64 addr)
2308{
2309 iterator->addr = addr;
2310 iterator->shadow_addr = vcpu->arch.mmu.root_hpa;
2311 iterator->level = vcpu->arch.mmu.shadow_root_level;
Joerg Roedel81407ca2010-09-10 17:31:00 +02002312
2313 if (iterator->level == PT64_ROOT_LEVEL &&
2314 vcpu->arch.mmu.root_level < PT64_ROOT_LEVEL &&
2315 !vcpu->arch.mmu.direct_map)
2316 --iterator->level;
2317
Avi Kivity2d111232008-12-25 14:39:47 +02002318 if (iterator->level == PT32E_ROOT_LEVEL) {
2319 iterator->shadow_addr
2320 = vcpu->arch.mmu.pae_root[(addr >> 30) & 3];
2321 iterator->shadow_addr &= PT64_BASE_ADDR_MASK;
2322 --iterator->level;
2323 if (!iterator->shadow_addr)
2324 iterator->level = 0;
2325 }
2326}
2327
2328static bool shadow_walk_okay(struct kvm_shadow_walk_iterator *iterator)
2329{
2330 if (iterator->level < PT_PAGE_TABLE_LEVEL)
2331 return false;
Marcelo Tosatti4d889542009-06-11 12:07:41 -03002332
Avi Kivity2d111232008-12-25 14:39:47 +02002333 iterator->index = SHADOW_PT_INDEX(iterator->addr, iterator->level);
2334 iterator->sptep = ((u64 *)__va(iterator->shadow_addr)) + iterator->index;
2335 return true;
2336}
2337
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002338static void __shadow_walk_next(struct kvm_shadow_walk_iterator *iterator,
2339 u64 spte)
Avi Kivity2d111232008-12-25 14:39:47 +02002340{
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002341 if (is_last_spte(spte, iterator->level)) {
Xiao Guangrong052331b2011-07-12 03:21:17 +08002342 iterator->level = 0;
2343 return;
2344 }
2345
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002346 iterator->shadow_addr = spte & PT64_BASE_ADDR_MASK;
Avi Kivity2d111232008-12-25 14:39:47 +02002347 --iterator->level;
2348}
2349
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002350static void shadow_walk_next(struct kvm_shadow_walk_iterator *iterator)
2351{
2352 return __shadow_walk_next(iterator, *iterator->sptep);
2353}
2354
Takuya Yoshikawa98bba232015-11-26 21:14:34 +09002355static void link_shadow_page(struct kvm_vcpu *vcpu, u64 *sptep,
2356 struct kvm_mmu_page *sp)
Avi Kivity32ef26a2010-07-13 14:27:04 +03002357{
2358 u64 spte;
2359
Bandan Dasffb128c2016-07-12 18:18:49 -04002360 BUILD_BUG_ON(VMX_EPT_WRITABLE_MASK != PT_WRITABLE_MASK);
Yang Zhang7a1638c2013-08-05 11:07:13 +03002361
Bandan Dasffb128c2016-07-12 18:18:49 -04002362 spte = __pa(sp->spt) | shadow_present_mask | PT_WRITABLE_MASK |
Paolo Bonzini0e3d0642015-11-13 11:52:45 +01002363 shadow_user_mask | shadow_x_mask | shadow_accessed_mask;
Xiao Guangrong24db2732013-02-05 15:28:02 +08002364
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +08002365 mmu_spte_set(sptep, spte);
Takuya Yoshikawa98bba232015-11-26 21:14:34 +09002366
2367 mmu_page_add_parent_pte(vcpu, sp, sptep);
2368
2369 if (sp->unsync_children || sp->unsync)
2370 mark_unsync(sptep);
Avi Kivity32ef26a2010-07-13 14:27:04 +03002371}
2372
Avi Kivitya357bd22010-07-13 14:27:07 +03002373static void validate_direct_spte(struct kvm_vcpu *vcpu, u64 *sptep,
2374 unsigned direct_access)
2375{
2376 if (is_shadow_present_pte(*sptep) && !is_large_pte(*sptep)) {
2377 struct kvm_mmu_page *child;
2378
2379 /*
2380 * For the direct sp, if the guest pte's dirty bit
2381 * changed form clean to dirty, it will corrupt the
2382 * sp's access: allow writable in the read-only sp,
2383 * so we should update the spte at this point to get
2384 * a new sp with the correct access.
2385 */
2386 child = page_header(*sptep & PT64_BASE_ADDR_MASK);
2387 if (child->role.access == direct_access)
2388 return;
2389
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08002390 drop_parent_pte(child, sptep);
Avi Kivitya357bd22010-07-13 14:27:07 +03002391 kvm_flush_remote_tlbs(vcpu->kvm);
2392 }
2393}
2394
Xiao Guangrong505aef82011-09-22 16:56:06 +08002395static bool mmu_page_zap_pte(struct kvm *kvm, struct kvm_mmu_page *sp,
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002396 u64 *spte)
2397{
2398 u64 pte;
2399 struct kvm_mmu_page *child;
2400
2401 pte = *spte;
2402 if (is_shadow_present_pte(pte)) {
Xiao Guangrong505aef82011-09-22 16:56:06 +08002403 if (is_last_spte(pte, sp->role.level)) {
Xiao Guangrongc3707952011-07-12 03:28:04 +08002404 drop_spte(kvm, spte);
Xiao Guangrong505aef82011-09-22 16:56:06 +08002405 if (is_large_pte(pte))
2406 --kvm->stat.lpages;
2407 } else {
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002408 child = page_header(pte & PT64_BASE_ADDR_MASK);
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08002409 drop_parent_pte(child, spte);
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002410 }
Xiao Guangrong505aef82011-09-22 16:56:06 +08002411 return true;
2412 }
2413
2414 if (is_mmio_spte(pte))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08002415 mmu_spte_clear_no_track(spte);
Xiao Guangrongc3707952011-07-12 03:28:04 +08002416
Xiao Guangrong505aef82011-09-22 16:56:06 +08002417 return false;
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002418}
2419
Avi Kivity90cb0522007-07-17 13:04:56 +03002420static void kvm_mmu_page_unlink_children(struct kvm *kvm,
Avi Kivity4db35312007-11-21 15:28:32 +02002421 struct kvm_mmu_page *sp)
Avi Kivitya4360362007-01-05 16:36:45 -08002422{
Avi Kivity697fe2e2007-01-05 16:36:46 -08002423 unsigned i;
Avi Kivity697fe2e2007-01-05 16:36:46 -08002424
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002425 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
2426 mmu_page_zap_pte(kvm, sp, sp->spt + i);
Avi Kivitya4360362007-01-05 16:36:45 -08002427}
2428
Avi Kivity31aa2b42008-07-11 17:59:46 +03002429static void kvm_mmu_unlink_parents(struct kvm *kvm, struct kvm_mmu_page *sp)
Avi Kivitya4360362007-01-05 16:36:45 -08002430{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09002431 u64 *sptep;
2432 struct rmap_iterator iter;
Avi Kivitya4360362007-01-05 16:36:45 -08002433
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09002434 while ((sptep = rmap_get_first(&sp->parent_ptes, &iter)))
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09002435 drop_parent_pte(sp, sptep);
Avi Kivity31aa2b42008-07-11 17:59:46 +03002436}
2437
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002438static int mmu_zap_unsync_children(struct kvm *kvm,
Xiao Guangrong77758342010-06-04 21:53:54 +08002439 struct kvm_mmu_page *parent,
2440 struct list_head *invalid_list)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002441{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002442 int i, zapped = 0;
2443 struct mmu_page_path parents;
2444 struct kvm_mmu_pages pages;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002445
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002446 if (parent->role.level == PT_PAGE_TABLE_LEVEL)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002447 return 0;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002448
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002449 while (mmu_unsync_walk(parent, &pages)) {
2450 struct kvm_mmu_page *sp;
2451
2452 for_each_sp(pages, sp, parents, i) {
Xiao Guangrong77758342010-06-04 21:53:54 +08002453 kvm_mmu_prepare_zap_page(kvm, sp, invalid_list);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002454 mmu_pages_clear_parents(&parents);
Xiao Guangrong77662e02010-04-16 16:34:42 +08002455 zapped++;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002456 }
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002457 }
2458
2459 return zapped;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002460}
2461
Xiao Guangrong77758342010-06-04 21:53:54 +08002462static int kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp,
2463 struct list_head *invalid_list)
Avi Kivity31aa2b42008-07-11 17:59:46 +03002464{
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002465 int ret;
Avi Kivityf691fe12009-07-06 15:58:14 +03002466
Xiao Guangrong77758342010-06-04 21:53:54 +08002467 trace_kvm_mmu_prepare_zap_page(sp);
Avi Kivity31aa2b42008-07-11 17:59:46 +03002468 ++kvm->stat.mmu_shadow_zapped;
Xiao Guangrong77758342010-06-04 21:53:54 +08002469 ret = mmu_zap_unsync_children(kvm, sp, invalid_list);
Avi Kivity4db35312007-11-21 15:28:32 +02002470 kvm_mmu_page_unlink_children(kvm, sp);
Avi Kivity31aa2b42008-07-11 17:59:46 +03002471 kvm_mmu_unlink_parents(kvm, sp);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08002472
Avi Kivityf6e2c02b2009-01-11 13:02:10 +02002473 if (!sp->role.invalid && !sp->role.direct)
Paolo Bonzini3ed1a472015-05-19 16:29:22 +02002474 unaccount_shadowed(kvm, sp);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08002475
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002476 if (sp->unsync)
2477 kvm_unlink_unsync_page(kvm, sp);
Avi Kivity4db35312007-11-21 15:28:32 +02002478 if (!sp->root_count) {
Gui Jianfeng54a4f022010-05-05 09:03:49 +08002479 /* Count self */
2480 ret++;
Xiao Guangrong77758342010-06-04 21:53:54 +08002481 list_move(&sp->link, invalid_list);
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08002482 kvm_mod_used_mmu_pages(kvm, -1);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05002483 } else {
Avi Kivity5b5c6a52008-07-11 18:07:26 +03002484 list_move(&sp->link, &kvm->arch.active_mmu_pages);
Gleb Natapov05988d72013-05-31 08:36:30 +08002485
2486 /*
2487 * The obsolete pages can not be used on any vcpus.
2488 * See the comments in kvm_mmu_invalidate_zap_all_pages().
2489 */
2490 if (!sp->role.invalid && !is_obsolete_sp(kvm, sp))
2491 kvm_reload_remote_mmus(kvm);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05002492 }
Xiao Guangrong77758342010-06-04 21:53:54 +08002493
2494 sp->role.invalid = 1;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002495 return ret;
Avi Kivitya4360362007-01-05 16:36:45 -08002496}
2497
Xiao Guangrong77758342010-06-04 21:53:54 +08002498static void kvm_mmu_commit_zap_page(struct kvm *kvm,
2499 struct list_head *invalid_list)
2500{
Takuya Yoshikawa945315b2013-03-06 16:05:52 +09002501 struct kvm_mmu_page *sp, *nsp;
Xiao Guangrong77758342010-06-04 21:53:54 +08002502
2503 if (list_empty(invalid_list))
2504 return;
2505
Avi Kivityc1427862012-05-14 15:44:06 +03002506 /*
Lan Tianyu9753f522016-03-13 11:10:24 +08002507 * We need to make sure everyone sees our modifications to
2508 * the page tables and see changes to vcpu->mode here. The barrier
2509 * in the kvm_flush_remote_tlbs() achieves this. This pairs
2510 * with vcpu_enter_guest and walk_shadow_page_lockless_begin/end.
2511 *
2512 * In addition, kvm_flush_remote_tlbs waits for all vcpus to exit
2513 * guest mode and/or lockless shadow page table walks.
Avi Kivityc1427862012-05-14 15:44:06 +03002514 */
Xiao Guangrong77758342010-06-04 21:53:54 +08002515 kvm_flush_remote_tlbs(kvm);
2516
Takuya Yoshikawa945315b2013-03-06 16:05:52 +09002517 list_for_each_entry_safe(sp, nsp, invalid_list, link) {
Xiao Guangrong77758342010-06-04 21:53:54 +08002518 WARN_ON(!sp->role.invalid || sp->root_count);
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08002519 kvm_mmu_free_page(sp);
Takuya Yoshikawa945315b2013-03-06 16:05:52 +09002520 }
Xiao Guangrong77758342010-06-04 21:53:54 +08002521}
2522
Takuya Yoshikawa5da59602013-03-06 16:06:58 +09002523static bool prepare_zap_oldest_mmu_page(struct kvm *kvm,
2524 struct list_head *invalid_list)
2525{
2526 struct kvm_mmu_page *sp;
2527
2528 if (list_empty(&kvm->arch.active_mmu_pages))
2529 return false;
2530
Geliang Tangd74c0e62016-01-01 19:47:14 +08002531 sp = list_last_entry(&kvm->arch.active_mmu_pages,
2532 struct kvm_mmu_page, link);
Takuya Yoshikawa5da59602013-03-06 16:06:58 +09002533 kvm_mmu_prepare_zap_page(kvm, sp, invalid_list);
2534
2535 return true;
2536}
2537
Izik Eidus82ce2c92007-10-02 18:52:55 +02002538/*
2539 * Changing the number of mmu pages allocated to the vm
Dave Hansen49d5ca22010-08-19 18:11:28 -07002540 * Note: if goal_nr_mmu_pages is too small, you will get dead lock
Izik Eidus82ce2c92007-10-02 18:52:55 +02002541 */
Dave Hansen49d5ca22010-08-19 18:11:28 -07002542void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int goal_nr_mmu_pages)
Izik Eidus82ce2c92007-10-02 18:52:55 +02002543{
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002544 LIST_HEAD(invalid_list);
Izik Eidus82ce2c92007-10-02 18:52:55 +02002545
Takuya Yoshikawab34cb592013-01-08 19:46:07 +09002546 spin_lock(&kvm->mmu_lock);
2547
Dave Hansen49d5ca22010-08-19 18:11:28 -07002548 if (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages) {
Takuya Yoshikawa5da59602013-03-06 16:06:58 +09002549 /* Need to free some mmu pages to achieve the goal. */
2550 while (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages)
2551 if (!prepare_zap_oldest_mmu_page(kvm, &invalid_list))
2552 break;
Izik Eidus82ce2c92007-10-02 18:52:55 +02002553
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08002554 kvm_mmu_commit_zap_page(kvm, &invalid_list);
Dave Hansen49d5ca22010-08-19 18:11:28 -07002555 goal_nr_mmu_pages = kvm->arch.n_used_mmu_pages;
Izik Eidus82ce2c92007-10-02 18:52:55 +02002556 }
Izik Eidus82ce2c92007-10-02 18:52:55 +02002557
Dave Hansen49d5ca22010-08-19 18:11:28 -07002558 kvm->arch.n_max_mmu_pages = goal_nr_mmu_pages;
Takuya Yoshikawab34cb592013-01-08 19:46:07 +09002559
2560 spin_unlock(&kvm->mmu_lock);
Izik Eidus82ce2c92007-10-02 18:52:55 +02002561}
2562
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002563int kvm_mmu_unprotect_page(struct kvm *kvm, gfn_t gfn)
Avi Kivitya4360362007-01-05 16:36:45 -08002564{
Avi Kivity4db35312007-11-21 15:28:32 +02002565 struct kvm_mmu_page *sp;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002566 LIST_HEAD(invalid_list);
Avi Kivitya4360362007-01-05 16:36:45 -08002567 int r;
2568
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002569 pgprintk("%s: looking for gfn %llx\n", __func__, gfn);
Avi Kivitya4360362007-01-05 16:36:45 -08002570 r = 0;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002571 spin_lock(&kvm->mmu_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08002572 for_each_gfn_indirect_valid_sp(kvm, sp, gfn) {
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002573 pgprintk("%s: gfn %llx role %x\n", __func__, gfn,
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002574 sp->role.word);
2575 r = 1;
Xiao Guangrongf41d3352010-06-04 21:56:11 +08002576 kvm_mmu_prepare_zap_page(kvm, sp, &invalid_list);
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002577 }
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002578 kvm_mmu_commit_zap_page(kvm, &invalid_list);
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002579 spin_unlock(&kvm->mmu_lock);
2580
Avi Kivitya4360362007-01-05 16:36:45 -08002581 return r;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002582}
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002583EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page);
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002584
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002585static void kvm_unsync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002586{
Xiao Guangrong5e1b3dd2010-04-28 11:55:06 +08002587 trace_kvm_mmu_unsync_page(sp);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002588 ++vcpu->kvm->stat.mmu_unsync;
2589 sp->unsync = 1;
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -02002590
Xiao Guangrong6b184932010-04-16 21:29:17 +08002591 kvm_mmu_mark_parents_unsync(sp);
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002592}
2593
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08002594static bool mmu_need_write_protect(struct kvm_vcpu *vcpu, gfn_t gfn,
2595 bool can_unsync)
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002596{
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002597 struct kvm_mmu_page *sp;
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002598
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08002599 if (kvm_page_track_is_active(vcpu, gfn, KVM_PAGE_TRACK_WRITE))
2600 return true;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002601
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002602 for_each_gfn_indirect_valid_sp(vcpu->kvm, sp, gfn) {
Xiao Guangrong36a2e672010-06-30 16:02:02 +08002603 if (!can_unsync)
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08002604 return true;
Xiao Guangrong36a2e672010-06-30 16:02:02 +08002605
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002606 if (sp->unsync)
2607 continue;
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002608
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002609 WARN_ON(sp->role.level != PT_PAGE_TABLE_LEVEL);
2610 kvm_unsync_page(vcpu, sp);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002611 }
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08002612
2613 return false;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002614}
2615
Dan Williamsba049e92016-01-15 16:56:11 -08002616static bool kvm_is_mmio_pfn(kvm_pfn_t pfn)
Paolo Bonzinid1fe9212015-07-07 15:03:18 +02002617{
2618 if (pfn_valid(pfn))
2619 return !is_zero_pfn(pfn) && PageReserved(pfn_to_page(pfn));
2620
2621 return true;
2622}
2623
Avi Kivityd555c332009-06-10 14:24:23 +03002624static int set_spte(struct kvm_vcpu *vcpu, u64 *sptep,
Xiao Guangrongc22885052013-01-08 14:36:04 +08002625 unsigned pte_access, int level,
Dan Williamsba049e92016-01-15 16:56:11 -08002626 gfn_t gfn, kvm_pfn_t pfn, bool speculative,
Lai Jiangshan9bdbba12010-11-19 17:03:22 +08002627 bool can_unsync, bool host_writable)
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002628{
Bandan Dasffb128c2016-07-12 18:18:49 -04002629 u64 spte = 0;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002630 int ret = 0;
Sheng Yang64d4d522008-10-09 16:01:57 +08002631
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002632 if (set_mmio_spte(vcpu, sptep, gfn, pfn, pte_access))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08002633 return 0;
2634
Bandan Dasd95c5562016-07-12 18:18:51 -04002635 /*
2636 * For the EPT case, shadow_present_mask is 0 if hardware
2637 * supports exec-only page table entries. In that case,
2638 * ACC_USER_MASK and shadow_user_mask are used to represent
2639 * read access. See FNAME(gpte_access) in paging_tmpl.h.
2640 */
Bandan Dasffb128c2016-07-12 18:18:49 -04002641 spte |= shadow_present_mask;
Avi Kivity947da532008-03-18 11:05:52 +02002642 if (!speculative)
Avi Kivity3201b5d2008-08-27 20:01:04 +03002643 spte |= shadow_accessed_mask;
Xiao Guangrong640d9b02011-07-12 03:24:39 +08002644
Sheng Yang7b523452008-04-25 21:13:50 +08002645 if (pte_access & ACC_EXEC_MASK)
2646 spte |= shadow_x_mask;
2647 else
2648 spte |= shadow_nx_mask;
Xiao Guangrong49fde342012-06-20 15:58:58 +08002649
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002650 if (pte_access & ACC_USER_MASK)
Sheng Yang7b523452008-04-25 21:13:50 +08002651 spte |= shadow_user_mask;
Xiao Guangrong49fde342012-06-20 15:58:58 +08002652
Joerg Roedel852e3c12009-07-27 16:30:44 +02002653 if (level > PT_PAGE_TABLE_LEVEL)
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002654 spte |= PT_PAGE_SIZE_MASK;
Avi Kivityb0bc3ee2010-09-13 16:45:28 +02002655 if (tdp_enabled)
Sheng Yang4b12f0d2009-04-27 20:35:42 +08002656 spte |= kvm_x86_ops->get_mt_mask(vcpu, gfn,
Paolo Bonzinid1fe9212015-07-07 15:03:18 +02002657 kvm_is_mmio_pfn(pfn));
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002658
Lai Jiangshan9bdbba12010-11-19 17:03:22 +08002659 if (host_writable)
Izik Eidus14032832009-09-23 21:47:17 +03002660 spte |= SPTE_HOST_WRITEABLE;
Xiao Guangrongf8e453b2010-12-23 16:09:29 +08002661 else
2662 pte_access &= ~ACC_WRITE_MASK;
Izik Eidus14032832009-09-23 21:47:17 +03002663
Anthony Liguori35149e22008-04-02 14:46:56 -05002664 spte |= (u64)pfn << PAGE_SHIFT;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002665
Xiao Guangrongc22885052013-01-08 14:36:04 +08002666 if (pte_access & ACC_WRITE_MASK) {
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002667
Xiao Guangrongc2193462012-12-04 07:17:11 +08002668 /*
Xiao Guangrong7751bab2013-01-08 14:36:51 +08002669 * Other vcpu creates new sp in the window between
2670 * mapping_level() and acquiring mmu-lock. We can
2671 * allow guest to retry the access, the mapping can
2672 * be fixed if guest refault.
Xiao Guangrongc2193462012-12-04 07:17:11 +08002673 */
Joerg Roedel852e3c12009-07-27 16:30:44 +02002674 if (level > PT_PAGE_TABLE_LEVEL &&
Xiao Guangrong92f94f12016-02-24 17:51:06 +08002675 mmu_gfn_lpage_is_disallowed(vcpu, gfn, level))
Avi Kivitybe38d272010-06-06 14:31:27 +03002676 goto done;
Marcelo Tosatti38187c82008-09-23 13:18:32 -03002677
Xiao Guangrong49fde342012-06-20 15:58:58 +08002678 spte |= PT_WRITABLE_MASK | SPTE_MMU_WRITEABLE;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002679
Marcelo Tosattiecc55892008-11-25 15:58:07 +01002680 /*
2681 * Optimization: for pte sync, if spte was writable the hash
2682 * lookup is unnecessary (and expensive). Write protection
2683 * is responsibility of mmu_get_page / kvm_sync_page.
2684 * Same reasoning can be applied to dirty page accounting.
2685 */
Takuya Yoshikawa8dae4442010-01-18 18:45:10 +09002686 if (!can_unsync && is_writable_pte(*sptep))
Marcelo Tosattiecc55892008-11-25 15:58:07 +01002687 goto set_pte;
2688
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002689 if (mmu_need_write_protect(vcpu, gfn, can_unsync)) {
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002690 pgprintk("%s: found shadow page for %llx, marking ro\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002691 __func__, gfn);
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002692 ret = 1;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002693 pte_access &= ~ACC_WRITE_MASK;
Xiao Guangrong49fde342012-06-20 15:58:58 +08002694 spte &= ~(PT_WRITABLE_MASK | SPTE_MMU_WRITEABLE);
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002695 }
2696 }
2697
Kai Huang9b51a632015-01-28 10:54:25 +08002698 if (pte_access & ACC_WRITE_MASK) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002699 kvm_vcpu_mark_page_dirty(vcpu, gfn);
Kai Huang9b51a632015-01-28 10:54:25 +08002700 spte |= shadow_dirty_mask;
2701 }
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002702
Junaid Shahidf160c7b2016-12-06 16:46:16 -08002703 if (speculative)
2704 spte = mark_spte_for_access_track(spte);
2705
Marcelo Tosatti38187c82008-09-23 13:18:32 -03002706set_pte:
Xiao Guangrong6e7d0352012-06-20 15:58:33 +08002707 if (mmu_spte_update(sptep, spte))
Xiao Guangrongb330aa02010-11-19 17:02:35 +08002708 kvm_flush_remote_tlbs(vcpu->kvm);
Avi Kivitybe38d272010-06-06 14:31:27 +03002709done:
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002710 return ret;
2711}
2712
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002713static bool mmu_set_spte(struct kvm_vcpu *vcpu, u64 *sptep, unsigned pte_access,
Dan Williamsba049e92016-01-15 16:56:11 -08002714 int write_fault, int level, gfn_t gfn, kvm_pfn_t pfn,
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002715 bool speculative, bool host_writable)
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002716{
2717 int was_rmapped = 0;
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03002718 int rmap_count;
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002719 bool emulate = false;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002720
Xiao Guangrongf7616202013-02-05 15:27:27 +08002721 pgprintk("%s: spte %llx write_fault %d gfn %llx\n", __func__,
2722 *sptep, write_fault, gfn);
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002723
Takuya Yoshikawaafd28fe2015-11-20 17:44:55 +09002724 if (is_shadow_present_pte(*sptep)) {
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002725 /*
2726 * If we overwrite a PTE page pointer with a 2MB PMD, unlink
2727 * the parent of the now unreachable PTE.
2728 */
Joerg Roedel852e3c12009-07-27 16:30:44 +02002729 if (level > PT_PAGE_TABLE_LEVEL &&
2730 !is_large_pte(*sptep)) {
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002731 struct kvm_mmu_page *child;
Avi Kivityd555c332009-06-10 14:24:23 +03002732 u64 pte = *sptep;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002733
2734 child = page_header(pte & PT64_BASE_ADDR_MASK);
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08002735 drop_parent_pte(child, sptep);
Marcelo Tosatti3be22642010-05-28 09:44:59 -03002736 kvm_flush_remote_tlbs(vcpu->kvm);
Avi Kivityd555c332009-06-10 14:24:23 +03002737 } else if (pfn != spte_to_pfn(*sptep)) {
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002738 pgprintk("hfn old %llx new %llx\n",
Avi Kivityd555c332009-06-10 14:24:23 +03002739 spte_to_pfn(*sptep), pfn);
Xiao Guangrongc3707952011-07-12 03:28:04 +08002740 drop_spte(vcpu->kvm, sptep);
Xiao Guangrong91546352010-06-30 16:04:06 +08002741 kvm_flush_remote_tlbs(vcpu->kvm);
Joerg Roedel6bed6b92009-02-18 14:08:59 +01002742 } else
2743 was_rmapped = 1;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002744 }
Joerg Roedel852e3c12009-07-27 16:30:44 +02002745
Xiao Guangrongc22885052013-01-08 14:36:04 +08002746 if (set_spte(vcpu, sptep, pte_access, level, gfn, pfn, speculative,
2747 true, host_writable)) {
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002748 if (write_fault)
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002749 emulate = true;
Liang Chen77c39132014-09-18 12:38:37 -04002750 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Marcelo Tosattia378b4e2008-09-23 13:18:31 -03002751 }
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002752
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002753 if (unlikely(is_mmio_spte(*sptep)))
2754 emulate = true;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08002755
Avi Kivityd555c332009-06-10 14:24:23 +03002756 pgprintk("%s: setting spte %llx\n", __func__, *sptep);
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002757 pgprintk("instantiating %s PTE (%s) at %llx (%llx) addr %p\n",
Avi Kivityd555c332009-06-10 14:24:23 +03002758 is_large_pte(*sptep)? "2MB" : "4kB",
Junaid Shahidf160c7b2016-12-06 16:46:16 -08002759 *sptep & PT_WRITABLE_MASK ? "RW" : "R", gfn,
Joerg Roedela205bc12009-07-09 16:36:01 +02002760 *sptep, sptep);
Avi Kivityd555c332009-06-10 14:24:23 +03002761 if (!was_rmapped && is_large_pte(*sptep))
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002762 ++vcpu->kvm->stat.lpages;
2763
Xiao Guangrongffb61bb2011-07-12 03:22:01 +08002764 if (is_shadow_present_pte(*sptep)) {
Xiao Guangrongffb61bb2011-07-12 03:22:01 +08002765 if (!was_rmapped) {
2766 rmap_count = rmap_add(vcpu, sptep, gfn);
2767 if (rmap_count > RMAP_RECYCLE_THRESHOLD)
2768 rmap_recycle(vcpu, sptep, gfn);
2769 }
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002770 }
Xiao Guangrongcb9aaa32012-08-03 15:42:10 +08002771
Xiao Guangrongf3ac1a42012-10-16 20:07:03 +08002772 kvm_release_pfn_clean(pfn);
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002773
2774 return emulate;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002775}
2776
Dan Williamsba049e92016-01-15 16:56:11 -08002777static kvm_pfn_t pte_prefetch_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn,
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002778 bool no_dirty_log)
2779{
2780 struct kvm_memory_slot *slot;
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002781
Xiao Guangrong5d163b12011-03-09 15:43:00 +08002782 slot = gfn_to_memslot_dirty_bitmap(vcpu, gfn, no_dirty_log);
Xiao Guangrong903816f2012-07-17 21:54:11 +08002783 if (!slot)
Xiao Guangrong6c8ee572012-08-03 15:37:54 +08002784 return KVM_PFN_ERR_FAULT;
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002785
Xiao Guangrong037d92d2012-08-21 10:59:12 +08002786 return gfn_to_pfn_memslot_atomic(slot, gfn);
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002787}
2788
2789static int direct_pte_prefetch_many(struct kvm_vcpu *vcpu,
2790 struct kvm_mmu_page *sp,
2791 u64 *start, u64 *end)
2792{
2793 struct page *pages[PTE_PREFETCH_NUM];
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02002794 struct kvm_memory_slot *slot;
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002795 unsigned access = sp->role.access;
2796 int i, ret;
2797 gfn_t gfn;
2798
2799 gfn = kvm_mmu_page_get_gfn(sp, start - sp->spt);
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02002800 slot = gfn_to_memslot_dirty_bitmap(vcpu, gfn, access & ACC_WRITE_MASK);
2801 if (!slot)
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002802 return -1;
2803
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02002804 ret = gfn_to_page_many_atomic(slot, gfn, pages, end - start);
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002805 if (ret <= 0)
2806 return -1;
2807
2808 for (i = 0; i < ret; i++, gfn++, start++)
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002809 mmu_set_spte(vcpu, start, access, 0, sp->role.level, gfn,
2810 page_to_pfn(pages[i]), true, true);
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002811
2812 return 0;
2813}
2814
2815static void __direct_pte_prefetch(struct kvm_vcpu *vcpu,
2816 struct kvm_mmu_page *sp, u64 *sptep)
2817{
2818 u64 *spte, *start = NULL;
2819 int i;
2820
2821 WARN_ON(!sp->role.direct);
2822
2823 i = (sptep - sp->spt) & ~(PTE_PREFETCH_NUM - 1);
2824 spte = sp->spt + i;
2825
2826 for (i = 0; i < PTE_PREFETCH_NUM; i++, spte++) {
Xiao Guangrongc3707952011-07-12 03:28:04 +08002827 if (is_shadow_present_pte(*spte) || spte == sptep) {
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002828 if (!start)
2829 continue;
2830 if (direct_pte_prefetch_many(vcpu, sp, start, spte) < 0)
2831 break;
2832 start = NULL;
2833 } else if (!start)
2834 start = spte;
2835 }
2836}
2837
2838static void direct_pte_prefetch(struct kvm_vcpu *vcpu, u64 *sptep)
2839{
2840 struct kvm_mmu_page *sp;
2841
2842 /*
2843 * Since it's no accessed bit on EPT, it's no way to
2844 * distinguish between actually accessed translations
2845 * and prefetched, so disable pte prefetch if EPT is
2846 * enabled.
2847 */
2848 if (!shadow_accessed_mask)
2849 return;
2850
2851 sp = page_header(__pa(sptep));
2852 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
2853 return;
2854
2855 __direct_pte_prefetch(vcpu, sp, sptep);
2856}
2857
Takuya Yoshikawa7ee0e5b2015-11-20 17:42:23 +09002858static int __direct_map(struct kvm_vcpu *vcpu, int write, int map_writable,
Dan Williamsba049e92016-01-15 16:56:11 -08002859 int level, gfn_t gfn, kvm_pfn_t pfn, bool prefault)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002860{
Avi Kivity9f652d212008-12-25 14:54:25 +02002861 struct kvm_shadow_walk_iterator iterator;
2862 struct kvm_mmu_page *sp;
Xiao Guangrongb90a0e62011-07-12 03:25:56 +08002863 int emulate = 0;
Avi Kivity9f652d212008-12-25 14:54:25 +02002864 gfn_t pseudo_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002865
Marcelo Tosatti989c6b32013-12-19 15:28:51 -02002866 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
2867 return 0;
2868
Avi Kivity9f652d212008-12-25 14:54:25 +02002869 for_each_shadow_entry(vcpu, (u64)gfn << PAGE_SHIFT, iterator) {
Joerg Roedel852e3c12009-07-27 16:30:44 +02002870 if (iterator.level == level) {
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002871 emulate = mmu_set_spte(vcpu, iterator.sptep, ACC_ALL,
2872 write, level, gfn, pfn, prefault,
2873 map_writable);
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002874 direct_pte_prefetch(vcpu, iterator.sptep);
Avi Kivity9f652d212008-12-25 14:54:25 +02002875 ++vcpu->stat.pf_fixed;
2876 break;
2877 }
2878
Marcelo Tosatti404381c2014-02-24 13:59:32 -03002879 drop_large_spte(vcpu, iterator.sptep);
Xiao Guangrongc3707952011-07-12 03:28:04 +08002880 if (!is_shadow_present_pte(*iterator.sptep)) {
Lai Jiangshanc9fa0b32010-05-26 16:48:25 +08002881 u64 base_addr = iterator.addr;
2882
2883 base_addr &= PT64_LVL_ADDR_MASK(iterator.level);
2884 pseudo_gfn = base_addr >> PAGE_SHIFT;
Avi Kivity9f652d212008-12-25 14:54:25 +02002885 sp = kvm_mmu_get_page(vcpu, pseudo_gfn, iterator.addr,
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09002886 iterator.level - 1, 1, ACC_ALL);
Avi Kivity9f652d212008-12-25 14:54:25 +02002887
Takuya Yoshikawa98bba232015-11-26 21:14:34 +09002888 link_shadow_page(vcpu, iterator.sptep, sp);
Avi Kivity9f652d212008-12-25 14:54:25 +02002889 }
2890 }
Xiao Guangrongb90a0e62011-07-12 03:25:56 +08002891 return emulate;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002892}
2893
Huang Ying77db5cb2010-10-08 16:24:15 +08002894static void kvm_send_hwpoison_signal(unsigned long address, struct task_struct *tsk)
Huang Yingbf998152010-05-31 14:28:19 +08002895{
Huang Ying77db5cb2010-10-08 16:24:15 +08002896 siginfo_t info;
Huang Yingbf998152010-05-31 14:28:19 +08002897
Huang Ying77db5cb2010-10-08 16:24:15 +08002898 info.si_signo = SIGBUS;
2899 info.si_errno = 0;
2900 info.si_code = BUS_MCEERR_AR;
2901 info.si_addr = (void __user *)address;
2902 info.si_addr_lsb = PAGE_SHIFT;
2903
2904 send_sig_info(SIGBUS, &info, tsk);
Huang Yingbf998152010-05-31 14:28:19 +08002905}
2906
Dan Williamsba049e92016-01-15 16:56:11 -08002907static int kvm_handle_bad_page(struct kvm_vcpu *vcpu, gfn_t gfn, kvm_pfn_t pfn)
Huang Yingbf998152010-05-31 14:28:19 +08002908{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08002909 /*
2910 * Do not cache the mmio info caused by writing the readonly gfn
2911 * into the spte otherwise read access on readonly gfn also can
2912 * caused mmio page fault and treat it as mmio access.
2913 * Return 1 to tell kvm to emulate it.
2914 */
2915 if (pfn == KVM_PFN_ERR_RO_FAULT)
2916 return 1;
2917
Xiao Guangronge6c15022012-08-03 15:38:36 +08002918 if (pfn == KVM_PFN_ERR_HWPOISON) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002919 kvm_send_hwpoison_signal(kvm_vcpu_gfn_to_hva(vcpu, gfn), current);
Huang Yingbf998152010-05-31 14:28:19 +08002920 return 0;
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002921 }
Gleb Natapovedba23e2010-07-07 20:16:45 +03002922
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002923 return -EFAULT;
Huang Yingbf998152010-05-31 14:28:19 +08002924}
2925
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002926static void transparent_hugepage_adjust(struct kvm_vcpu *vcpu,
Dan Williamsba049e92016-01-15 16:56:11 -08002927 gfn_t *gfnp, kvm_pfn_t *pfnp,
2928 int *levelp)
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002929{
Dan Williamsba049e92016-01-15 16:56:11 -08002930 kvm_pfn_t pfn = *pfnp;
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002931 gfn_t gfn = *gfnp;
2932 int level = *levelp;
2933
2934 /*
2935 * Check if it's a transparent hugepage. If this would be an
2936 * hugetlbfs page, level wouldn't be set to
2937 * PT_PAGE_TABLE_LEVEL and there would be no adjustment done
2938 * here.
2939 */
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00002940 if (!is_error_noslot_pfn(pfn) && !kvm_is_reserved_pfn(pfn) &&
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002941 level == PT_PAGE_TABLE_LEVEL &&
Andrea Arcangeli127393f2016-05-05 16:22:20 -07002942 PageTransCompoundMap(pfn_to_page(pfn)) &&
Xiao Guangrong92f94f12016-02-24 17:51:06 +08002943 !mmu_gfn_lpage_is_disallowed(vcpu, gfn, PT_DIRECTORY_LEVEL)) {
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002944 unsigned long mask;
2945 /*
2946 * mmu_notifier_retry was successful and we hold the
2947 * mmu_lock here, so the pmd can't become splitting
2948 * from under us, and in turn
2949 * __split_huge_page_refcount() can't run from under
2950 * us and we can safely transfer the refcount from
2951 * PG_tail to PG_head as we switch the pfn to tail to
2952 * head.
2953 */
2954 *levelp = level = PT_DIRECTORY_LEVEL;
2955 mask = KVM_PAGES_PER_HPAGE(level) - 1;
2956 VM_BUG_ON((gfn & mask) != (pfn & mask));
2957 if (pfn & mask) {
2958 gfn &= ~mask;
2959 *gfnp = gfn;
2960 kvm_release_pfn_clean(pfn);
2961 pfn &= ~mask;
Xiao Guangrongc3586662012-05-28 14:10:43 +08002962 kvm_get_pfn(pfn);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002963 *pfnp = pfn;
2964 }
2965 }
2966}
2967
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002968static bool handle_abnormal_pfn(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn,
Dan Williamsba049e92016-01-15 16:56:11 -08002969 kvm_pfn_t pfn, unsigned access, int *ret_val)
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002970{
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002971 /* The pfn is invalid, report the error! */
Xiao Guangrong81c52c52012-10-16 20:10:59 +08002972 if (unlikely(is_error_pfn(pfn))) {
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002973 *ret_val = kvm_handle_bad_page(vcpu, gfn, pfn);
Paolo Bonzini798e88b2016-02-23 15:28:51 +01002974 return true;
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002975 }
2976
Xiao Guangrongce88dec2011-07-12 03:33:44 +08002977 if (unlikely(is_noslot_pfn(pfn)))
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002978 vcpu_cache_mmio_info(vcpu, gva, gfn, access);
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002979
Paolo Bonzini798e88b2016-02-23 15:28:51 +01002980 return false;
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002981}
2982
Xiao Guangronge5552fd2013-07-30 21:01:59 +08002983static bool page_fault_can_be_fast(u32 error_code)
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002984{
2985 /*
Xiao Guangrong1c118b82013-07-18 12:52:37 +08002986 * Do not fix the mmio spte with invalid generation number which
2987 * need to be updated by slow page fault path.
2988 */
2989 if (unlikely(error_code & PFERR_RSVD_MASK))
2990 return false;
2991
Junaid Shahidf160c7b2016-12-06 16:46:16 -08002992 /* See if the page fault is due to an NX violation */
2993 if (unlikely(((error_code & (PFERR_FETCH_MASK | PFERR_PRESENT_MASK))
2994 == (PFERR_FETCH_MASK | PFERR_PRESENT_MASK))))
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002995 return false;
2996
Junaid Shahidf160c7b2016-12-06 16:46:16 -08002997 /*
2998 * #PF can be fast if:
2999 * 1. The shadow page table entry is not present, which could mean that
3000 * the fault is potentially caused by access tracking (if enabled).
3001 * 2. The shadow page table entry is present and the fault
3002 * is caused by write-protect, that means we just need change the W
3003 * bit of the spte which can be done out of mmu-lock.
3004 *
3005 * However, if access tracking is disabled we know that a non-present
3006 * page must be a genuine page fault where we have to create a new SPTE.
3007 * So, if access tracking is disabled, we return true only for write
3008 * accesses to a present page.
3009 */
3010
3011 return shadow_acc_track_mask != 0 ||
3012 ((error_code & (PFERR_WRITE_MASK | PFERR_PRESENT_MASK))
3013 == (PFERR_WRITE_MASK | PFERR_PRESENT_MASK));
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003014}
3015
Junaid Shahid97dceba2016-12-06 16:46:12 -08003016/*
3017 * Returns true if the SPTE was fixed successfully. Otherwise,
3018 * someone else modified the SPTE from its original value.
3019 */
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003020static bool
Xiao Guangrong92a476c2014-04-17 17:06:13 +08003021fast_pf_fix_direct_spte(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003022 u64 *sptep, u64 old_spte,
3023 bool remove_write_prot, bool remove_acc_track)
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003024{
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003025 gfn_t gfn;
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003026 u64 new_spte = old_spte;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003027
3028 WARN_ON(!sp->role.direct);
3029
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003030 if (remove_acc_track) {
3031 u64 saved_bits = (old_spte >> shadow_acc_track_saved_bits_shift)
3032 & shadow_acc_track_saved_bits_mask;
3033
3034 new_spte &= ~shadow_acc_track_mask;
3035 new_spte &= ~(shadow_acc_track_saved_bits_mask <<
3036 shadow_acc_track_saved_bits_shift);
3037 new_spte |= saved_bits;
3038 }
3039
3040 if (remove_write_prot)
3041 new_spte |= PT_WRITABLE_MASK;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003042
Kai Huang9b51a632015-01-28 10:54:25 +08003043 /*
3044 * Theoretically we could also set dirty bit (and flush TLB) here in
3045 * order to eliminate unnecessary PML logging. See comments in
3046 * set_spte. But fast_page_fault is very unlikely to happen with PML
3047 * enabled, so we do not do this. This might result in the same GPA
3048 * to be logged in PML buffer again when the write really happens, and
3049 * eventually to be called by mark_page_dirty twice. But it's also no
3050 * harm. This also avoids the TLB flush needed after setting dirty bit
3051 * so non-PML cases won't be impacted.
3052 *
3053 * Compare with set_spte where instead shadow_dirty_mask is set.
3054 */
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003055 if (cmpxchg64(sptep, old_spte, new_spte) != old_spte)
Junaid Shahid97dceba2016-12-06 16:46:12 -08003056 return false;
3057
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003058 if (remove_write_prot) {
3059 /*
3060 * The gfn of direct spte is stable since it is
3061 * calculated by sp->gfn.
3062 */
3063 gfn = kvm_mmu_page_get_gfn(sp, sptep - sp->spt);
3064 kvm_vcpu_mark_page_dirty(vcpu, gfn);
3065 }
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003066
3067 return true;
3068}
3069
3070/*
3071 * Return value:
3072 * - true: let the vcpu to access on the same address again.
3073 * - false: let the real page fault path to fix it.
3074 */
3075static bool fast_page_fault(struct kvm_vcpu *vcpu, gva_t gva, int level,
3076 u32 error_code)
3077{
3078 struct kvm_shadow_walk_iterator iterator;
Xiao Guangrong92a476c2014-04-17 17:06:13 +08003079 struct kvm_mmu_page *sp;
Junaid Shahid97dceba2016-12-06 16:46:12 -08003080 bool fault_handled = false;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003081 u64 spte = 0ull;
Junaid Shahid97dceba2016-12-06 16:46:12 -08003082 uint retry_count = 0;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003083
Marcelo Tosatti37f6a4e2014-01-03 17:09:32 -02003084 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3085 return false;
3086
Xiao Guangronge5552fd2013-07-30 21:01:59 +08003087 if (!page_fault_can_be_fast(error_code))
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003088 return false;
3089
3090 walk_shadow_page_lockless_begin(vcpu);
3091 for_each_shadow_entry_lockless(vcpu, gva, iterator, spte)
3092 if (!is_shadow_present_pte(spte) || iterator.level < level)
3093 break;
3094
Junaid Shahid97dceba2016-12-06 16:46:12 -08003095 do {
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003096 bool remove_write_prot = false;
3097 bool remove_acc_track;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003098
Junaid Shahid97dceba2016-12-06 16:46:12 -08003099 sp = page_header(__pa(iterator.sptep));
3100 if (!is_last_spte(spte, sp->role.level))
3101 break;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003102
Junaid Shahid97dceba2016-12-06 16:46:12 -08003103 /*
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003104 * Check whether the memory access that caused the fault would
3105 * still cause it if it were to be performed right now. If not,
3106 * then this is a spurious fault caused by TLB lazily flushed,
3107 * or some other CPU has already fixed the PTE after the
3108 * current CPU took the fault.
Junaid Shahid97dceba2016-12-06 16:46:12 -08003109 *
3110 * Need not check the access of upper level table entries since
3111 * they are always ACC_ALL.
3112 */
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003113
3114 if (error_code & PFERR_FETCH_MASK) {
3115 if ((spte & (shadow_x_mask | shadow_nx_mask))
3116 == shadow_x_mask) {
3117 fault_handled = true;
3118 break;
3119 }
3120 } else if (error_code & PFERR_WRITE_MASK) {
3121 if (is_writable_pte(spte)) {
3122 fault_handled = true;
3123 break;
3124 }
3125
3126 /*
3127 * Currently, to simplify the code, write-protection can
3128 * be removed in the fast path only if the SPTE was
3129 * write-protected for dirty-logging.
3130 */
3131 remove_write_prot =
3132 spte_can_locklessly_be_made_writable(spte);
3133 } else {
3134 /* Fault was on Read access */
3135 if (spte & PT_PRESENT_MASK) {
3136 fault_handled = true;
3137 break;
3138 }
Junaid Shahid97dceba2016-12-06 16:46:12 -08003139 }
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003140
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003141 remove_acc_track = is_access_track_spte(spte);
3142
3143 /* Verify that the fault can be handled in the fast path */
3144 if (!remove_acc_track && !remove_write_prot)
Junaid Shahid97dceba2016-12-06 16:46:12 -08003145 break;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003146
Junaid Shahid97dceba2016-12-06 16:46:12 -08003147 /*
3148 * Do not fix write-permission on the large spte since we only
3149 * dirty the first page into the dirty-bitmap in
3150 * fast_pf_fix_direct_spte() that means other pages are missed
3151 * if its slot is dirty-logged.
3152 *
3153 * Instead, we let the slow page fault path create a normal spte
3154 * to fix the access.
3155 *
3156 * See the comments in kvm_arch_commit_memory_region().
3157 */
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003158 if (sp->role.level > PT_PAGE_TABLE_LEVEL && remove_write_prot)
Junaid Shahid97dceba2016-12-06 16:46:12 -08003159 break;
Xiao Guangrongc126d942014-04-17 17:06:14 +08003160
Junaid Shahid97dceba2016-12-06 16:46:12 -08003161 /*
3162 * Currently, fast page fault only works for direct mapping
3163 * since the gfn is not stable for indirect shadow page. See
3164 * Documentation/virtual/kvm/locking.txt to get more detail.
3165 */
3166 fault_handled = fast_pf_fix_direct_spte(vcpu, sp,
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003167 iterator.sptep, spte,
3168 remove_write_prot,
3169 remove_acc_track);
Junaid Shahid97dceba2016-12-06 16:46:12 -08003170 if (fault_handled)
3171 break;
3172
3173 if (++retry_count > 4) {
3174 printk_once(KERN_WARNING
3175 "kvm: Fast #PF retrying more than 4 times.\n");
3176 break;
3177 }
3178
3179 spte = mmu_spte_get_lockless(iterator.sptep);
3180
3181 } while (true);
3182
Xiao Guangronga72faf22012-06-20 15:59:41 +08003183 trace_fast_page_fault(vcpu, gva, error_code, iterator.sptep,
Junaid Shahid97dceba2016-12-06 16:46:12 -08003184 spte, fault_handled);
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003185 walk_shadow_page_lockless_end(vcpu);
3186
Junaid Shahid97dceba2016-12-06 16:46:12 -08003187 return fault_handled;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003188}
3189
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003190static bool try_async_pf(struct kvm_vcpu *vcpu, bool prefault, gfn_t gfn,
Dan Williamsba049e92016-01-15 16:56:11 -08003191 gva_t gva, kvm_pfn_t *pfn, bool write, bool *writable);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003192static void make_mmu_pages_available(struct kvm_vcpu *vcpu);
Xiao Guangrong060c2ab2010-11-12 14:49:11 +08003193
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003194static int nonpaging_map(struct kvm_vcpu *vcpu, gva_t v, u32 error_code,
3195 gfn_t gfn, bool prefault)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003196{
3197 int r;
Joerg Roedel852e3c12009-07-27 16:30:44 +02003198 int level;
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003199 bool force_pt_level = false;
Dan Williamsba049e92016-01-15 16:56:11 -08003200 kvm_pfn_t pfn;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003201 unsigned long mmu_seq;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003202 bool map_writable, write = error_code & PFERR_WRITE_MASK;
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003203
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003204 level = mapping_level(vcpu, gfn, &force_pt_level);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003205 if (likely(!force_pt_level)) {
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003206 /*
3207 * This path builds a PAE pagetable - so we can map
3208 * 2mb pages at maximum. Therefore check if the level
3209 * is larger than that.
3210 */
3211 if (level > PT_DIRECTORY_LEVEL)
3212 level = PT_DIRECTORY_LEVEL;
Joerg Roedel852e3c12009-07-27 16:30:44 +02003213
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003214 gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1);
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003215 }
Marcelo Tosatti05da4552008-02-23 11:44:30 -03003216
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003217 if (fast_page_fault(vcpu, v, level, error_code))
3218 return 0;
3219
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003220 mmu_seq = vcpu->kvm->mmu_notifier_seq;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03003221 smp_rmb();
Xiao Guangrong060c2ab2010-11-12 14:49:11 +08003222
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003223 if (try_async_pf(vcpu, prefault, gfn, v, &pfn, write, &map_writable))
Xiao Guangrong060c2ab2010-11-12 14:49:11 +08003224 return 0;
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003225
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003226 if (handle_abnormal_pfn(vcpu, v, gfn, pfn, ACC_ALL, &r))
3227 return r;
Avi Kivityd196e342008-01-24 11:44:11 +02003228
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003229 spin_lock(&vcpu->kvm->mmu_lock);
Christoffer Dall8ca40a72012-10-14 23:10:18 -04003230 if (mmu_notifier_retry(vcpu->kvm, mmu_seq))
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003231 goto out_unlock;
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003232 make_mmu_pages_available(vcpu);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003233 if (likely(!force_pt_level))
3234 transparent_hugepage_adjust(vcpu, &gfn, &pfn, &level);
Takuya Yoshikawa7ee0e5b2015-11-20 17:42:23 +09003235 r = __direct_map(vcpu, write, map_writable, level, gfn, pfn, prefault);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003236 spin_unlock(&vcpu->kvm->mmu_lock);
3237
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003238 return r;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003239
3240out_unlock:
3241 spin_unlock(&vcpu->kvm->mmu_lock);
3242 kvm_release_pfn_clean(pfn);
3243 return 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003244}
3245
3246
Avi Kivity17ac10a2007-01-05 16:36:40 -08003247static void mmu_free_roots(struct kvm_vcpu *vcpu)
3248{
3249 int i;
Avi Kivity4db35312007-11-21 15:28:32 +02003250 struct kvm_mmu_page *sp;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08003251 LIST_HEAD(invalid_list);
Avi Kivity17ac10a2007-01-05 16:36:40 -08003252
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003253 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
Avi Kivity7b53aa52007-06-05 12:17:03 +03003254 return;
Gleb Natapov35af5772013-05-16 11:55:51 +03003255
Joerg Roedel81407ca2010-09-10 17:31:00 +02003256 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL &&
3257 (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL ||
3258 vcpu->arch.mmu.direct_map)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003259 hpa_t root = vcpu->arch.mmu.root_hpa;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003260
Gleb Natapov35af5772013-05-16 11:55:51 +03003261 spin_lock(&vcpu->kvm->mmu_lock);
Avi Kivity4db35312007-11-21 15:28:32 +02003262 sp = page_header(root);
3263 --sp->root_count;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08003264 if (!sp->root_count && sp->role.invalid) {
3265 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, &invalid_list);
3266 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
3267 }
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003268 spin_unlock(&vcpu->kvm->mmu_lock);
Gleb Natapov35af5772013-05-16 11:55:51 +03003269 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003270 return;
3271 }
Gleb Natapov35af5772013-05-16 11:55:51 +03003272
3273 spin_lock(&vcpu->kvm->mmu_lock);
Avi Kivity17ac10a2007-01-05 16:36:40 -08003274 for (i = 0; i < 4; ++i) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003275 hpa_t root = vcpu->arch.mmu.pae_root[i];
Avi Kivity17ac10a2007-01-05 16:36:40 -08003276
Avi Kivity417726a2007-04-12 17:35:58 +03003277 if (root) {
Avi Kivity417726a2007-04-12 17:35:58 +03003278 root &= PT64_BASE_ADDR_MASK;
Avi Kivity4db35312007-11-21 15:28:32 +02003279 sp = page_header(root);
3280 --sp->root_count;
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05003281 if (!sp->root_count && sp->role.invalid)
Xiao Guangrongd98ba052010-06-04 21:55:29 +08003282 kvm_mmu_prepare_zap_page(vcpu->kvm, sp,
3283 &invalid_list);
Avi Kivity417726a2007-04-12 17:35:58 +03003284 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003285 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003286 }
Xiao Guangrongd98ba052010-06-04 21:55:29 +08003287 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003288 spin_unlock(&vcpu->kvm->mmu_lock);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003289 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003290}
3291
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003292static int mmu_check_root(struct kvm_vcpu *vcpu, gfn_t root_gfn)
3293{
3294 int ret = 0;
3295
3296 if (!kvm_is_visible_gfn(vcpu->kvm, root_gfn)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03003297 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003298 ret = 1;
3299 }
3300
3301 return ret;
3302}
3303
Joerg Roedel651dd372010-09-10 17:30:59 +02003304static int mmu_alloc_direct_roots(struct kvm_vcpu *vcpu)
3305{
3306 struct kvm_mmu_page *sp;
Avi Kivity7ebaf152010-10-03 18:51:39 +02003307 unsigned i;
Joerg Roedel651dd372010-09-10 17:30:59 +02003308
3309 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
3310 spin_lock(&vcpu->kvm->mmu_lock);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003311 make_mmu_pages_available(vcpu);
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09003312 sp = kvm_mmu_get_page(vcpu, 0, 0, PT64_ROOT_LEVEL, 1, ACC_ALL);
Joerg Roedel651dd372010-09-10 17:30:59 +02003313 ++sp->root_count;
3314 spin_unlock(&vcpu->kvm->mmu_lock);
3315 vcpu->arch.mmu.root_hpa = __pa(sp->spt);
3316 } else if (vcpu->arch.mmu.shadow_root_level == PT32E_ROOT_LEVEL) {
3317 for (i = 0; i < 4; ++i) {
3318 hpa_t root = vcpu->arch.mmu.pae_root[i];
3319
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003320 MMU_WARN_ON(VALID_PAGE(root));
Joerg Roedel651dd372010-09-10 17:30:59 +02003321 spin_lock(&vcpu->kvm->mmu_lock);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003322 make_mmu_pages_available(vcpu);
Avi Kivity649497d2010-12-28 12:09:07 +02003323 sp = kvm_mmu_get_page(vcpu, i << (30 - PAGE_SHIFT),
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09003324 i << 30, PT32_ROOT_LEVEL, 1, ACC_ALL);
Joerg Roedel651dd372010-09-10 17:30:59 +02003325 root = __pa(sp->spt);
3326 ++sp->root_count;
3327 spin_unlock(&vcpu->kvm->mmu_lock);
3328 vcpu->arch.mmu.pae_root[i] = root | PT_PRESENT_MASK;
Joerg Roedel651dd372010-09-10 17:30:59 +02003329 }
Xiao Guangrong62927572010-09-27 18:02:12 +08003330 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
Joerg Roedel651dd372010-09-10 17:30:59 +02003331 } else
3332 BUG();
3333
3334 return 0;
3335}
3336
3337static int mmu_alloc_shadow_roots(struct kvm_vcpu *vcpu)
Avi Kivity17ac10a2007-01-05 16:36:40 -08003338{
Avi Kivity4db35312007-11-21 15:28:32 +02003339 struct kvm_mmu_page *sp;
Joerg Roedel81407ca2010-09-10 17:31:00 +02003340 u64 pdptr, pm_mask;
3341 gfn_t root_gfn;
3342 int i;
Avi Kivity3bb65a22007-01-05 16:36:51 -08003343
Joerg Roedel5777ed32010-09-10 17:30:42 +02003344 root_gfn = vcpu->arch.mmu.get_cr3(vcpu) >> PAGE_SHIFT;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003345
Joerg Roedel651dd372010-09-10 17:30:59 +02003346 if (mmu_check_root(vcpu, root_gfn))
3347 return 1;
3348
3349 /*
3350 * Do we shadow a long mode page table? If so we need to
3351 * write-protect the guests page table root.
3352 */
3353 if (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003354 hpa_t root = vcpu->arch.mmu.root_hpa;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003355
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003356 MMU_WARN_ON(VALID_PAGE(root));
Joerg Roedel651dd372010-09-10 17:30:59 +02003357
Avi Kivity8facbbf2010-05-04 12:58:32 +03003358 spin_lock(&vcpu->kvm->mmu_lock);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003359 make_mmu_pages_available(vcpu);
Joerg Roedel651dd372010-09-10 17:30:59 +02003360 sp = kvm_mmu_get_page(vcpu, root_gfn, 0, PT64_ROOT_LEVEL,
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09003361 0, ACC_ALL);
Avi Kivity4db35312007-11-21 15:28:32 +02003362 root = __pa(sp->spt);
3363 ++sp->root_count;
Avi Kivity8facbbf2010-05-04 12:58:32 +03003364 spin_unlock(&vcpu->kvm->mmu_lock);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003365 vcpu->arch.mmu.root_hpa = root;
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003366 return 0;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003367 }
Joerg Roedelf87f9282010-09-02 17:29:45 +02003368
Joerg Roedel651dd372010-09-10 17:30:59 +02003369 /*
3370 * We shadow a 32 bit page table. This may be a legacy 2-level
Joerg Roedel81407ca2010-09-10 17:31:00 +02003371 * or a PAE 3-level page table. In either case we need to be aware that
3372 * the shadow page table may be a PAE or a long mode page table.
Joerg Roedel651dd372010-09-10 17:30:59 +02003373 */
Joerg Roedel81407ca2010-09-10 17:31:00 +02003374 pm_mask = PT_PRESENT_MASK;
3375 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL)
3376 pm_mask |= PT_ACCESSED_MASK | PT_WRITABLE_MASK | PT_USER_MASK;
3377
Avi Kivity17ac10a2007-01-05 16:36:40 -08003378 for (i = 0; i < 4; ++i) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003379 hpa_t root = vcpu->arch.mmu.pae_root[i];
Avi Kivity17ac10a2007-01-05 16:36:40 -08003380
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003381 MMU_WARN_ON(VALID_PAGE(root));
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003382 if (vcpu->arch.mmu.root_level == PT32E_ROOT_LEVEL) {
Avi Kivitye4e517b2011-07-28 11:36:17 +03003383 pdptr = vcpu->arch.mmu.get_pdptr(vcpu, i);
Bandan Das812f30b2016-07-12 18:18:50 -04003384 if (!(pdptr & PT_PRESENT_MASK)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003385 vcpu->arch.mmu.pae_root[i] = 0;
Avi Kivity417726a2007-04-12 17:35:58 +03003386 continue;
3387 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003388 root_gfn = pdptr >> PAGE_SHIFT;
Joerg Roedelf87f9282010-09-02 17:29:45 +02003389 if (mmu_check_root(vcpu, root_gfn))
3390 return 1;
Eric Northup5a7388c2010-04-26 17:00:05 -07003391 }
Avi Kivity8facbbf2010-05-04 12:58:32 +03003392 spin_lock(&vcpu->kvm->mmu_lock);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003393 make_mmu_pages_available(vcpu);
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09003394 sp = kvm_mmu_get_page(vcpu, root_gfn, i << 30, PT32_ROOT_LEVEL,
3395 0, ACC_ALL);
Avi Kivity4db35312007-11-21 15:28:32 +02003396 root = __pa(sp->spt);
3397 ++sp->root_count;
Avi Kivity8facbbf2010-05-04 12:58:32 +03003398 spin_unlock(&vcpu->kvm->mmu_lock);
3399
Joerg Roedel81407ca2010-09-10 17:31:00 +02003400 vcpu->arch.mmu.pae_root[i] = root | pm_mask;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003401 }
Xiao Guangrong62927572010-09-27 18:02:12 +08003402 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
Joerg Roedel81407ca2010-09-10 17:31:00 +02003403
3404 /*
3405 * If we shadow a 32 bit page table with a long mode page
3406 * table we enter this path.
3407 */
3408 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
3409 if (vcpu->arch.mmu.lm_root == NULL) {
3410 /*
3411 * The additional page necessary for this is only
3412 * allocated on demand.
3413 */
3414
3415 u64 *lm_root;
3416
3417 lm_root = (void*)get_zeroed_page(GFP_KERNEL);
3418 if (lm_root == NULL)
3419 return 1;
3420
3421 lm_root[0] = __pa(vcpu->arch.mmu.pae_root) | pm_mask;
3422
3423 vcpu->arch.mmu.lm_root = lm_root;
3424 }
3425
3426 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.lm_root);
3427 }
3428
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003429 return 0;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003430}
3431
Joerg Roedel651dd372010-09-10 17:30:59 +02003432static int mmu_alloc_roots(struct kvm_vcpu *vcpu)
3433{
3434 if (vcpu->arch.mmu.direct_map)
3435 return mmu_alloc_direct_roots(vcpu);
3436 else
3437 return mmu_alloc_shadow_roots(vcpu);
3438}
3439
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003440static void mmu_sync_roots(struct kvm_vcpu *vcpu)
3441{
3442 int i;
3443 struct kvm_mmu_page *sp;
3444
Joerg Roedel81407ca2010-09-10 17:31:00 +02003445 if (vcpu->arch.mmu.direct_map)
3446 return;
3447
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003448 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3449 return;
Xiao Guangrong69030742010-09-27 18:09:29 +08003450
David Matlack56f17dd2014-08-18 15:46:07 -07003451 vcpu_clear_mmio_info(vcpu, MMIO_GVA_ANY);
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08003452 kvm_mmu_audit(vcpu, AUDIT_PRE_SYNC);
Joerg Roedel81407ca2010-09-10 17:31:00 +02003453 if (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL) {
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003454 hpa_t root = vcpu->arch.mmu.root_hpa;
3455 sp = page_header(root);
3456 mmu_sync_children(vcpu, sp);
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08003457 kvm_mmu_audit(vcpu, AUDIT_POST_SYNC);
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003458 return;
3459 }
3460 for (i = 0; i < 4; ++i) {
3461 hpa_t root = vcpu->arch.mmu.pae_root[i];
3462
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003463 if (root && VALID_PAGE(root)) {
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003464 root &= PT64_BASE_ADDR_MASK;
3465 sp = page_header(root);
3466 mmu_sync_children(vcpu, sp);
3467 }
3468 }
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08003469 kvm_mmu_audit(vcpu, AUDIT_POST_SYNC);
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003470}
3471
3472void kvm_mmu_sync_roots(struct kvm_vcpu *vcpu)
3473{
3474 spin_lock(&vcpu->kvm->mmu_lock);
3475 mmu_sync_roots(vcpu);
3476 spin_unlock(&vcpu->kvm->mmu_lock);
3477}
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03003478EXPORT_SYMBOL_GPL(kvm_mmu_sync_roots);
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003479
Gleb Natapov1871c602010-02-10 14:21:32 +02003480static gpa_t nonpaging_gva_to_gpa(struct kvm_vcpu *vcpu, gva_t vaddr,
Avi Kivityab9ae312010-11-22 17:53:26 +02003481 u32 access, struct x86_exception *exception)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003482{
Avi Kivityab9ae312010-11-22 17:53:26 +02003483 if (exception)
3484 exception->error_code = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003485 return vaddr;
3486}
3487
Joerg Roedel6539e732010-09-10 17:30:50 +02003488static gpa_t nonpaging_gva_to_gpa_nested(struct kvm_vcpu *vcpu, gva_t vaddr,
Avi Kivityab9ae312010-11-22 17:53:26 +02003489 u32 access,
3490 struct x86_exception *exception)
Joerg Roedel6539e732010-09-10 17:30:50 +02003491{
Avi Kivityab9ae312010-11-22 17:53:26 +02003492 if (exception)
3493 exception->error_code = 0;
Paolo Bonzini54987b72014-09-02 13:23:06 +02003494 return vcpu->arch.nested_mmu.translate_gpa(vcpu, vaddr, access, exception);
Joerg Roedel6539e732010-09-10 17:30:50 +02003495}
3496
Xiao Guangrongd625b152015-08-05 12:04:25 +08003497static bool
3498__is_rsvd_bits_set(struct rsvd_bits_validate *rsvd_check, u64 pte, int level)
3499{
3500 int bit7 = (pte >> 7) & 1, low6 = pte & 0x3f;
3501
3502 return (pte & rsvd_check->rsvd_bits_mask[bit7][level-1]) |
3503 ((rsvd_check->bad_mt_xwr & (1ull << low6)) != 0);
3504}
3505
3506static bool is_rsvd_bits_set(struct kvm_mmu *mmu, u64 gpte, int level)
3507{
3508 return __is_rsvd_bits_set(&mmu->guest_rsvd_check, gpte, level);
3509}
3510
3511static bool is_shadow_zero_bits_set(struct kvm_mmu *mmu, u64 spte, int level)
3512{
3513 return __is_rsvd_bits_set(&mmu->shadow_zero_check, spte, level);
3514}
3515
Takuya Yoshikawaded58742016-02-22 17:23:40 +09003516static bool mmio_info_in_cache(struct kvm_vcpu *vcpu, u64 addr, bool direct)
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003517{
3518 if (direct)
3519 return vcpu_match_mmio_gpa(vcpu, addr);
3520
3521 return vcpu_match_mmio_gva(vcpu, addr);
3522}
3523
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003524/* return true if reserved bit is detected on spte. */
3525static bool
3526walk_shadow_page_get_mmio_spte(struct kvm_vcpu *vcpu, u64 addr, u64 *sptep)
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003527{
3528 struct kvm_shadow_walk_iterator iterator;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003529 u64 sptes[PT64_ROOT_LEVEL], spte = 0ull;
3530 int root, leaf;
3531 bool reserved = false;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003532
Marcelo Tosatti37f6a4e2014-01-03 17:09:32 -02003533 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003534 goto exit;
Marcelo Tosatti37f6a4e2014-01-03 17:09:32 -02003535
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003536 walk_shadow_page_lockless_begin(vcpu);
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003537
Paolo Bonzini29ecd662015-09-06 16:24:50 +02003538 for (shadow_walk_init(&iterator, vcpu, addr),
3539 leaf = root = iterator.level;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003540 shadow_walk_okay(&iterator);
3541 __shadow_walk_next(&iterator, spte)) {
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003542 spte = mmu_spte_get_lockless(iterator.sptep);
3543
3544 sptes[leaf - 1] = spte;
Paolo Bonzini29ecd662015-09-06 16:24:50 +02003545 leaf--;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003546
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003547 if (!is_shadow_present_pte(spte))
3548 break;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003549
3550 reserved |= is_shadow_zero_bits_set(&vcpu->arch.mmu, spte,
Paolo Bonzini58c95072015-09-22 10:15:59 +02003551 iterator.level);
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003552 }
3553
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003554 walk_shadow_page_lockless_end(vcpu);
3555
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003556 if (reserved) {
3557 pr_err("%s: detect reserved bits on spte, addr 0x%llx, dump hierarchy:\n",
3558 __func__, addr);
Paolo Bonzini29ecd662015-09-06 16:24:50 +02003559 while (root > leaf) {
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003560 pr_err("------ spte 0x%llx level %d.\n",
3561 sptes[root - 1], root);
3562 root--;
3563 }
3564 }
3565exit:
3566 *sptep = spte;
3567 return reserved;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003568}
3569
Paolo Bonzini450869d2015-11-04 13:41:21 +01003570int handle_mmio_page_fault(struct kvm_vcpu *vcpu, u64 addr, bool direct)
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003571{
3572 u64 spte;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003573 bool reserved;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003574
Takuya Yoshikawaded58742016-02-22 17:23:40 +09003575 if (mmio_info_in_cache(vcpu, addr, direct))
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08003576 return RET_MMIO_PF_EMULATE;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003577
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003578 reserved = walk_shadow_page_get_mmio_spte(vcpu, addr, &spte);
Paolo Bonzini450869d2015-11-04 13:41:21 +01003579 if (WARN_ON(reserved))
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003580 return RET_MMIO_PF_BUG;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003581
3582 if (is_mmio_spte(spte)) {
3583 gfn_t gfn = get_mmio_spte_gfn(spte);
3584 unsigned access = get_mmio_spte_access(spte);
3585
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003586 if (!check_mmio_spte(vcpu, spte))
Xiao Guangrongf8f55942013-06-07 16:51:26 +08003587 return RET_MMIO_PF_INVALID;
3588
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003589 if (direct)
3590 addr = 0;
Xiao Guangrong4f022642011-07-12 03:34:24 +08003591
3592 trace_handle_mmio_page_fault(addr, gfn, access);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003593 vcpu_cache_mmio_info(vcpu, addr, gfn, access);
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08003594 return RET_MMIO_PF_EMULATE;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003595 }
3596
3597 /*
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003598 * If the page table is zapped by other cpus, let CPU fault again on
3599 * the address.
3600 */
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08003601 return RET_MMIO_PF_RETRY;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003602}
Paolo Bonzini450869d2015-11-04 13:41:21 +01003603EXPORT_SYMBOL_GPL(handle_mmio_page_fault);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003604
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08003605static bool page_fault_handle_page_track(struct kvm_vcpu *vcpu,
3606 u32 error_code, gfn_t gfn)
3607{
3608 if (unlikely(error_code & PFERR_RSVD_MASK))
3609 return false;
3610
3611 if (!(error_code & PFERR_PRESENT_MASK) ||
3612 !(error_code & PFERR_WRITE_MASK))
3613 return false;
3614
3615 /*
3616 * guest is writing the page which is write tracked which can
3617 * not be fixed by page fault handler.
3618 */
3619 if (kvm_page_track_is_active(vcpu, gfn, KVM_PAGE_TRACK_WRITE))
3620 return true;
3621
3622 return false;
3623}
3624
Xiao Guangronge5691a82016-02-24 17:51:12 +08003625static void shadow_page_table_clear_flood(struct kvm_vcpu *vcpu, gva_t addr)
3626{
3627 struct kvm_shadow_walk_iterator iterator;
3628 u64 spte;
3629
3630 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3631 return;
3632
3633 walk_shadow_page_lockless_begin(vcpu);
3634 for_each_shadow_entry_lockless(vcpu, addr, iterator, spte) {
3635 clear_sp_write_flooding_count(iterator.sptep);
3636 if (!is_shadow_present_pte(spte))
3637 break;
3638 }
3639 walk_shadow_page_lockless_end(vcpu);
3640}
3641
Avi Kivity6aa8b732006-12-10 02:21:36 -08003642static int nonpaging_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003643 u32 error_code, bool prefault)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003644{
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08003645 gfn_t gfn = gva >> PAGE_SHIFT;
Avi Kivitye2dec932007-01-05 16:36:54 -08003646 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003647
Harvey Harrisonb8688d52008-03-03 12:59:56 -08003648 pgprintk("%s: gva %lx error %x\n", __func__, gva, error_code);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003649
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08003650 if (page_fault_handle_page_track(vcpu, error_code, gfn))
3651 return 1;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003652
Avi Kivitye2dec932007-01-05 16:36:54 -08003653 r = mmu_topup_memory_caches(vcpu);
3654 if (r)
3655 return r;
Avi Kivity714b93d2007-01-05 16:36:53 -08003656
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003657 MMU_WARN_ON(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003658
Avi Kivity6aa8b732006-12-10 02:21:36 -08003659
Avi Kivitye8332402007-12-09 18:43:00 +02003660 return nonpaging_map(vcpu, gva & PAGE_MASK,
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003661 error_code, gfn, prefault);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003662}
3663
Jan Kiszka7e1fbea2010-10-20 15:18:02 +02003664static int kvm_arch_setup_async_pf(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn)
Gleb Natapovaf585b92010-10-14 11:22:46 +02003665{
3666 struct kvm_arch_async_pf arch;
Xiao Guangrongfb67e142010-12-07 10:35:25 +08003667
Gleb Natapov7c907052010-10-14 11:22:53 +02003668 arch.token = (vcpu->arch.apf.id++ << 12) | vcpu->vcpu_id;
Gleb Natapovaf585b92010-10-14 11:22:46 +02003669 arch.gfn = gfn;
Xiao Guangrongc4806ac2010-11-12 14:49:55 +08003670 arch.direct_map = vcpu->arch.mmu.direct_map;
Xiao Guangrongfb67e142010-12-07 10:35:25 +08003671 arch.cr3 = vcpu->arch.mmu.get_cr3(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003672
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003673 return kvm_setup_async_pf(vcpu, gva, kvm_vcpu_gfn_to_hva(vcpu, gfn), &arch);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003674}
3675
3676static bool can_do_async_pf(struct kvm_vcpu *vcpu)
3677{
Paolo Bonzini35754c92015-07-29 12:05:37 +02003678 if (unlikely(!lapic_in_kernel(vcpu) ||
Gleb Natapovaf585b92010-10-14 11:22:46 +02003679 kvm_event_needs_reinjection(vcpu)))
3680 return false;
3681
3682 return kvm_x86_ops->interrupt_allowed(vcpu);
3683}
3684
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003685static bool try_async_pf(struct kvm_vcpu *vcpu, bool prefault, gfn_t gfn,
Dan Williamsba049e92016-01-15 16:56:11 -08003686 gva_t gva, kvm_pfn_t *pfn, bool write, bool *writable)
Gleb Natapovaf585b92010-10-14 11:22:46 +02003687{
Paolo Bonzini35204692015-04-02 11:20:48 +02003688 struct kvm_memory_slot *slot;
Gleb Natapovaf585b92010-10-14 11:22:46 +02003689 bool async;
3690
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003691 slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
Paolo Bonzini35204692015-04-02 11:20:48 +02003692 async = false;
3693 *pfn = __gfn_to_pfn_memslot(slot, gfn, false, &async, write, writable);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003694 if (!async)
3695 return false; /* *pfn has correct page already */
3696
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003697 if (!prefault && can_do_async_pf(vcpu)) {
Xiao Guangrongc9b263d2010-11-01 16:58:43 +08003698 trace_kvm_try_async_get_page(gva, gfn);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003699 if (kvm_find_async_pf_gfn(vcpu, gfn)) {
3700 trace_kvm_async_pf_doublefault(gva, gfn);
3701 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
3702 return true;
3703 } else if (kvm_arch_setup_async_pf(vcpu, gva, gfn))
3704 return true;
3705 }
3706
Paolo Bonzini35204692015-04-02 11:20:48 +02003707 *pfn = __gfn_to_pfn_memslot(slot, gfn, false, NULL, write, writable);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003708 return false;
3709}
3710
Xiao Guangrong6a39bbc2015-06-15 16:55:35 +08003711static bool
3712check_hugepage_cache_consistency(struct kvm_vcpu *vcpu, gfn_t gfn, int level)
3713{
3714 int page_num = KVM_PAGES_PER_HPAGE(level);
3715
3716 gfn &= ~(page_num - 1);
3717
3718 return kvm_mtrr_check_gfn_range_consistency(vcpu, gfn, page_num);
3719}
3720
Gleb Natapov56028d02010-10-17 18:13:42 +02003721static int tdp_page_fault(struct kvm_vcpu *vcpu, gva_t gpa, u32 error_code,
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003722 bool prefault)
Joerg Roedelfb72d162008-02-07 13:47:44 +01003723{
Dan Williamsba049e92016-01-15 16:56:11 -08003724 kvm_pfn_t pfn;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003725 int r;
Joerg Roedel852e3c12009-07-27 16:30:44 +02003726 int level;
Takuya Yoshikawacd1872f2015-10-16 17:04:13 +09003727 bool force_pt_level;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03003728 gfn_t gfn = gpa >> PAGE_SHIFT;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003729 unsigned long mmu_seq;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02003730 int write = error_code & PFERR_WRITE_MASK;
3731 bool map_writable;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003732
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003733 MMU_WARN_ON(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
Joerg Roedelfb72d162008-02-07 13:47:44 +01003734
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08003735 if (page_fault_handle_page_track(vcpu, error_code, gfn))
3736 return 1;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003737
Joerg Roedelfb72d162008-02-07 13:47:44 +01003738 r = mmu_topup_memory_caches(vcpu);
3739 if (r)
3740 return r;
3741
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003742 force_pt_level = !check_hugepage_cache_consistency(vcpu, gfn,
3743 PT_DIRECTORY_LEVEL);
3744 level = mapping_level(vcpu, gfn, &force_pt_level);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003745 if (likely(!force_pt_level)) {
Xiao Guangrong6a39bbc2015-06-15 16:55:35 +08003746 if (level > PT_DIRECTORY_LEVEL &&
3747 !check_hugepage_cache_consistency(vcpu, gfn, level))
3748 level = PT_DIRECTORY_LEVEL;
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003749 gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1);
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003750 }
Joerg Roedel852e3c12009-07-27 16:30:44 +02003751
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003752 if (fast_page_fault(vcpu, gpa, level, error_code))
3753 return 0;
3754
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003755 mmu_seq = vcpu->kvm->mmu_notifier_seq;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03003756 smp_rmb();
Gleb Natapovaf585b92010-10-14 11:22:46 +02003757
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003758 if (try_async_pf(vcpu, prefault, gfn, gpa, &pfn, write, &map_writable))
Gleb Natapovaf585b92010-10-14 11:22:46 +02003759 return 0;
3760
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003761 if (handle_abnormal_pfn(vcpu, 0, gfn, pfn, ACC_ALL, &r))
3762 return r;
3763
Joerg Roedelfb72d162008-02-07 13:47:44 +01003764 spin_lock(&vcpu->kvm->mmu_lock);
Christoffer Dall8ca40a72012-10-14 23:10:18 -04003765 if (mmu_notifier_retry(vcpu->kvm, mmu_seq))
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003766 goto out_unlock;
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003767 make_mmu_pages_available(vcpu);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003768 if (likely(!force_pt_level))
3769 transparent_hugepage_adjust(vcpu, &gfn, &pfn, &level);
Takuya Yoshikawa7ee0e5b2015-11-20 17:42:23 +09003770 r = __direct_map(vcpu, write, map_writable, level, gfn, pfn, prefault);
Joerg Roedelfb72d162008-02-07 13:47:44 +01003771 spin_unlock(&vcpu->kvm->mmu_lock);
Joerg Roedelfb72d162008-02-07 13:47:44 +01003772
3773 return r;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003774
3775out_unlock:
3776 spin_unlock(&vcpu->kvm->mmu_lock);
3777 kvm_release_pfn_clean(pfn);
3778 return 0;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003779}
3780
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003781static void nonpaging_init_context(struct kvm_vcpu *vcpu,
3782 struct kvm_mmu *context)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003783{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003784 context->page_fault = nonpaging_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003785 context->gva_to_gpa = nonpaging_gva_to_gpa;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03003786 context->sync_page = nonpaging_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03003787 context->invlpg = nonpaging_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08003788 context->update_pte = nonpaging_update_pte;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08003789 context->root_level = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003790 context->shadow_root_level = PT32E_ROOT_LEVEL;
Avi Kivity17c3ba92007-06-04 15:58:30 +03003791 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02003792 context->direct_map = true;
Joerg Roedel2d48a982010-09-10 17:31:01 +02003793 context->nx = false;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003794}
3795
Paolo Bonzinid8d173d2013-10-02 16:56:11 +02003796void kvm_mmu_new_cr3(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003797{
Avi Kivitycea0f0e2007-01-05 16:36:43 -08003798 mmu_free_roots(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003799}
3800
Joerg Roedel5777ed32010-09-10 17:30:42 +02003801static unsigned long get_cr3(struct kvm_vcpu *vcpu)
3802{
Avi Kivity9f8fe502010-12-05 17:30:00 +02003803 return kvm_read_cr3(vcpu);
Joerg Roedel5777ed32010-09-10 17:30:42 +02003804}
3805
Avi Kivity6389ee92010-11-29 16:12:30 +02003806static void inject_page_fault(struct kvm_vcpu *vcpu,
3807 struct x86_exception *fault)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003808{
Avi Kivity6389ee92010-11-29 16:12:30 +02003809 vcpu->arch.mmu.inject_page_fault(vcpu, fault);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003810}
3811
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003812static bool sync_mmio_spte(struct kvm_vcpu *vcpu, u64 *sptep, gfn_t gfn,
Xiao Guangrongf2fd1252013-06-07 16:51:24 +08003813 unsigned access, int *nr_present)
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003814{
3815 if (unlikely(is_mmio_spte(*sptep))) {
3816 if (gfn != get_mmio_spte_gfn(*sptep)) {
3817 mmu_spte_clear_no_track(sptep);
3818 return true;
3819 }
3820
3821 (*nr_present)++;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003822 mark_mmio_spte(vcpu, sptep, gfn, access);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003823 return true;
3824 }
3825
3826 return false;
3827}
3828
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01003829static inline bool is_last_gpte(struct kvm_mmu *mmu,
3830 unsigned level, unsigned gpte)
Avi Kivity6fd01b72012-09-12 20:46:56 +03003831{
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01003832 /*
3833 * PT_PAGE_TABLE_LEVEL always terminates. The RHS has bit 7 set
3834 * iff level <= PT_PAGE_TABLE_LEVEL, which for our purpose means
3835 * level == PT_PAGE_TABLE_LEVEL; set PT_PAGE_SIZE_MASK in gpte then.
3836 */
3837 gpte |= level - PT_PAGE_TABLE_LEVEL - 1;
Avi Kivity6fd01b72012-09-12 20:46:56 +03003838
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01003839 /*
3840 * The RHS has bit 7 set iff level < mmu->last_nonleaf_level.
3841 * If it is clear, there are no large pages at this level, so clear
3842 * PT_PAGE_SIZE_MASK in gpte if that is the case.
3843 */
3844 gpte &= level - mmu->last_nonleaf_level;
3845
3846 return gpte & PT_PAGE_SIZE_MASK;
Avi Kivity6fd01b72012-09-12 20:46:56 +03003847}
3848
Nadav Har'El37406aa2013-08-05 11:07:12 +03003849#define PTTYPE_EPT 18 /* arbitrary */
3850#define PTTYPE PTTYPE_EPT
3851#include "paging_tmpl.h"
3852#undef PTTYPE
3853
Avi Kivity6aa8b732006-12-10 02:21:36 -08003854#define PTTYPE 64
3855#include "paging_tmpl.h"
3856#undef PTTYPE
3857
3858#define PTTYPE 32
3859#include "paging_tmpl.h"
3860#undef PTTYPE
3861
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003862static void
3863__reset_rsvds_bits_mask(struct kvm_vcpu *vcpu,
3864 struct rsvd_bits_validate *rsvd_check,
3865 int maxphyaddr, int level, bool nx, bool gbpages,
Paolo Bonzini6fec2142015-09-22 23:02:14 +02003866 bool pse, bool amd)
Dong, Eddie82725b22009-03-30 16:21:08 +08003867{
Dong, Eddie82725b22009-03-30 16:21:08 +08003868 u64 exb_bit_rsvd = 0;
Nadav Amit5f7dde72014-05-07 15:32:50 +03003869 u64 gbpages_bit_rsvd = 0;
Paolo Bonzinia0c0feb2014-09-02 13:24:12 +02003870 u64 nonleaf_bit8_rsvd = 0;
Dong, Eddie82725b22009-03-30 16:21:08 +08003871
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003872 rsvd_check->bad_mt_xwr = 0;
Yang Zhang25d92082013-08-06 12:00:32 +03003873
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003874 if (!nx)
Dong, Eddie82725b22009-03-30 16:21:08 +08003875 exb_bit_rsvd = rsvd_bits(63, 63);
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003876 if (!gbpages)
Nadav Amit5f7dde72014-05-07 15:32:50 +03003877 gbpages_bit_rsvd = rsvd_bits(7, 7);
Paolo Bonzinia0c0feb2014-09-02 13:24:12 +02003878
3879 /*
3880 * Non-leaf PML4Es and PDPEs reserve bit 8 (which would be the G bit for
3881 * leaf entries) on AMD CPUs only.
3882 */
Paolo Bonzini6fec2142015-09-22 23:02:14 +02003883 if (amd)
Paolo Bonzinia0c0feb2014-09-02 13:24:12 +02003884 nonleaf_bit8_rsvd = rsvd_bits(8, 8);
3885
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003886 switch (level) {
Dong, Eddie82725b22009-03-30 16:21:08 +08003887 case PT32_ROOT_LEVEL:
3888 /* no rsvd bits for 2 level 4K page table entries */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003889 rsvd_check->rsvd_bits_mask[0][1] = 0;
3890 rsvd_check->rsvd_bits_mask[0][0] = 0;
3891 rsvd_check->rsvd_bits_mask[1][0] =
3892 rsvd_check->rsvd_bits_mask[0][0];
Xiao Guangrongf815bce2010-03-19 17:58:53 +08003893
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003894 if (!pse) {
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003895 rsvd_check->rsvd_bits_mask[1][1] = 0;
Xiao Guangrongf815bce2010-03-19 17:58:53 +08003896 break;
3897 }
3898
Dong, Eddie82725b22009-03-30 16:21:08 +08003899 if (is_cpuid_PSE36())
3900 /* 36bits PSE 4MB page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003901 rsvd_check->rsvd_bits_mask[1][1] = rsvd_bits(17, 21);
Dong, Eddie82725b22009-03-30 16:21:08 +08003902 else
3903 /* 32 bits PSE 4MB page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003904 rsvd_check->rsvd_bits_mask[1][1] = rsvd_bits(13, 21);
Dong, Eddie82725b22009-03-30 16:21:08 +08003905 break;
3906 case PT32E_ROOT_LEVEL:
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003907 rsvd_check->rsvd_bits_mask[0][2] =
Dong, Eddie20c466b2009-03-31 23:03:45 +08003908 rsvd_bits(maxphyaddr, 63) |
Nadav Amitcd9ae5f2014-04-04 06:31:04 +03003909 rsvd_bits(5, 8) | rsvd_bits(1, 2); /* PDPTE */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003910 rsvd_check->rsvd_bits_mask[0][1] = exb_bit_rsvd |
Sheng Yang4c26b4c2009-04-02 10:28:37 +08003911 rsvd_bits(maxphyaddr, 62); /* PDE */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003912 rsvd_check->rsvd_bits_mask[0][0] = exb_bit_rsvd |
Dong, Eddie82725b22009-03-30 16:21:08 +08003913 rsvd_bits(maxphyaddr, 62); /* PTE */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003914 rsvd_check->rsvd_bits_mask[1][1] = exb_bit_rsvd |
Dong, Eddie82725b22009-03-30 16:21:08 +08003915 rsvd_bits(maxphyaddr, 62) |
3916 rsvd_bits(13, 20); /* large page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003917 rsvd_check->rsvd_bits_mask[1][0] =
3918 rsvd_check->rsvd_bits_mask[0][0];
Dong, Eddie82725b22009-03-30 16:21:08 +08003919 break;
3920 case PT64_ROOT_LEVEL:
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003921 rsvd_check->rsvd_bits_mask[0][3] = exb_bit_rsvd |
3922 nonleaf_bit8_rsvd | rsvd_bits(7, 7) |
Sheng Yang4c26b4c2009-04-02 10:28:37 +08003923 rsvd_bits(maxphyaddr, 51);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003924 rsvd_check->rsvd_bits_mask[0][2] = exb_bit_rsvd |
3925 nonleaf_bit8_rsvd | gbpages_bit_rsvd |
Dong, Eddie82725b22009-03-30 16:21:08 +08003926 rsvd_bits(maxphyaddr, 51);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003927 rsvd_check->rsvd_bits_mask[0][1] = exb_bit_rsvd |
3928 rsvd_bits(maxphyaddr, 51);
3929 rsvd_check->rsvd_bits_mask[0][0] = exb_bit_rsvd |
3930 rsvd_bits(maxphyaddr, 51);
3931 rsvd_check->rsvd_bits_mask[1][3] =
3932 rsvd_check->rsvd_bits_mask[0][3];
3933 rsvd_check->rsvd_bits_mask[1][2] = exb_bit_rsvd |
Nadav Amit5f7dde72014-05-07 15:32:50 +03003934 gbpages_bit_rsvd | rsvd_bits(maxphyaddr, 51) |
Joerg Roedele04da982009-07-27 16:30:45 +02003935 rsvd_bits(13, 29);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003936 rsvd_check->rsvd_bits_mask[1][1] = exb_bit_rsvd |
Sheng Yang4c26b4c2009-04-02 10:28:37 +08003937 rsvd_bits(maxphyaddr, 51) |
3938 rsvd_bits(13, 20); /* large page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003939 rsvd_check->rsvd_bits_mask[1][0] =
3940 rsvd_check->rsvd_bits_mask[0][0];
Dong, Eddie82725b22009-03-30 16:21:08 +08003941 break;
3942 }
3943}
3944
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003945static void reset_rsvds_bits_mask(struct kvm_vcpu *vcpu,
3946 struct kvm_mmu *context)
3947{
3948 __reset_rsvds_bits_mask(vcpu, &context->guest_rsvd_check,
3949 cpuid_maxphyaddr(vcpu), context->root_level,
3950 context->nx, guest_cpuid_has_gbpages(vcpu),
Paolo Bonzini6fec2142015-09-22 23:02:14 +02003951 is_pse(vcpu), guest_cpuid_is_amd(vcpu));
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003952}
3953
Xiao Guangrong81b8eeb2015-08-05 12:04:23 +08003954static void
3955__reset_rsvds_bits_mask_ept(struct rsvd_bits_validate *rsvd_check,
3956 int maxphyaddr, bool execonly)
Yang Zhang25d92082013-08-06 12:00:32 +03003957{
Paolo Bonzini951f9fd2015-09-23 10:34:26 +02003958 u64 bad_mt_xwr;
Yang Zhang25d92082013-08-06 12:00:32 +03003959
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003960 rsvd_check->rsvd_bits_mask[0][3] =
Yang Zhang25d92082013-08-06 12:00:32 +03003961 rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 7);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003962 rsvd_check->rsvd_bits_mask[0][2] =
Yang Zhang25d92082013-08-06 12:00:32 +03003963 rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 6);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003964 rsvd_check->rsvd_bits_mask[0][1] =
Yang Zhang25d92082013-08-06 12:00:32 +03003965 rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 6);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003966 rsvd_check->rsvd_bits_mask[0][0] = rsvd_bits(maxphyaddr, 51);
Yang Zhang25d92082013-08-06 12:00:32 +03003967
3968 /* large page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003969 rsvd_check->rsvd_bits_mask[1][3] = rsvd_check->rsvd_bits_mask[0][3];
3970 rsvd_check->rsvd_bits_mask[1][2] =
Yang Zhang25d92082013-08-06 12:00:32 +03003971 rsvd_bits(maxphyaddr, 51) | rsvd_bits(12, 29);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003972 rsvd_check->rsvd_bits_mask[1][1] =
Yang Zhang25d92082013-08-06 12:00:32 +03003973 rsvd_bits(maxphyaddr, 51) | rsvd_bits(12, 20);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003974 rsvd_check->rsvd_bits_mask[1][0] = rsvd_check->rsvd_bits_mask[0][0];
Yang Zhang25d92082013-08-06 12:00:32 +03003975
Paolo Bonzini951f9fd2015-09-23 10:34:26 +02003976 bad_mt_xwr = 0xFFull << (2 * 8); /* bits 3..5 must not be 2 */
3977 bad_mt_xwr |= 0xFFull << (3 * 8); /* bits 3..5 must not be 3 */
3978 bad_mt_xwr |= 0xFFull << (7 * 8); /* bits 3..5 must not be 7 */
3979 bad_mt_xwr |= REPEAT_BYTE(1ull << 2); /* bits 0..2 must not be 010 */
3980 bad_mt_xwr |= REPEAT_BYTE(1ull << 6); /* bits 0..2 must not be 110 */
3981 if (!execonly) {
3982 /* bits 0..2 must not be 100 unless VMX capabilities allow it */
3983 bad_mt_xwr |= REPEAT_BYTE(1ull << 4);
Yang Zhang25d92082013-08-06 12:00:32 +03003984 }
Paolo Bonzini951f9fd2015-09-23 10:34:26 +02003985 rsvd_check->bad_mt_xwr = bad_mt_xwr;
Yang Zhang25d92082013-08-06 12:00:32 +03003986}
3987
Xiao Guangrong81b8eeb2015-08-05 12:04:23 +08003988static void reset_rsvds_bits_mask_ept(struct kvm_vcpu *vcpu,
3989 struct kvm_mmu *context, bool execonly)
3990{
3991 __reset_rsvds_bits_mask_ept(&context->guest_rsvd_check,
3992 cpuid_maxphyaddr(vcpu), execonly);
3993}
3994
Xiao Guangrongc258b622015-08-05 12:04:24 +08003995/*
3996 * the page table on host is the shadow page table for the page
3997 * table in guest or amd nested guest, its mmu features completely
3998 * follow the features in guest.
3999 */
4000void
4001reset_shadow_zero_bits_mask(struct kvm_vcpu *vcpu, struct kvm_mmu *context)
4002{
Paolo Bonzini5f0b8192016-03-09 14:28:02 +01004003 bool uses_nx = context->nx || context->base_role.smep_andnot_wp;
4004
Paolo Bonzini6fec2142015-09-22 23:02:14 +02004005 /*
4006 * Passing "true" to the last argument is okay; it adds a check
4007 * on bit 8 of the SPTEs which KVM doesn't use anyway.
4008 */
Xiao Guangrongc258b622015-08-05 12:04:24 +08004009 __reset_rsvds_bits_mask(vcpu, &context->shadow_zero_check,
4010 boot_cpu_data.x86_phys_bits,
Paolo Bonzini5f0b8192016-03-09 14:28:02 +01004011 context->shadow_root_level, uses_nx,
Paolo Bonzini6fec2142015-09-22 23:02:14 +02004012 guest_cpuid_has_gbpages(vcpu), is_pse(vcpu),
4013 true);
Xiao Guangrongc258b622015-08-05 12:04:24 +08004014}
4015EXPORT_SYMBOL_GPL(reset_shadow_zero_bits_mask);
4016
Paolo Bonzini6fec2142015-09-22 23:02:14 +02004017static inline bool boot_cpu_is_amd(void)
4018{
4019 WARN_ON_ONCE(!tdp_enabled);
4020 return shadow_x_mask == 0;
4021}
4022
Xiao Guangrongc258b622015-08-05 12:04:24 +08004023/*
4024 * the direct page table on host, use as much mmu features as
4025 * possible, however, kvm currently does not do execution-protection.
4026 */
4027static void
4028reset_tdp_shadow_zero_bits_mask(struct kvm_vcpu *vcpu,
4029 struct kvm_mmu *context)
4030{
Paolo Bonzini6fec2142015-09-22 23:02:14 +02004031 if (boot_cpu_is_amd())
Xiao Guangrongc258b622015-08-05 12:04:24 +08004032 __reset_rsvds_bits_mask(vcpu, &context->shadow_zero_check,
4033 boot_cpu_data.x86_phys_bits,
4034 context->shadow_root_level, false,
Borislav Petkovb8291adc2016-03-29 17:41:58 +02004035 boot_cpu_has(X86_FEATURE_GBPAGES),
4036 true, true);
Xiao Guangrongc258b622015-08-05 12:04:24 +08004037 else
4038 __reset_rsvds_bits_mask_ept(&context->shadow_zero_check,
4039 boot_cpu_data.x86_phys_bits,
4040 false);
4041
4042}
4043
4044/*
4045 * as the comments in reset_shadow_zero_bits_mask() except it
4046 * is the shadow page table for intel nested guest.
4047 */
4048static void
4049reset_ept_shadow_zero_bits_mask(struct kvm_vcpu *vcpu,
4050 struct kvm_mmu *context, bool execonly)
4051{
4052 __reset_rsvds_bits_mask_ept(&context->shadow_zero_check,
4053 boot_cpu_data.x86_phys_bits, execonly);
4054}
4055
Xiao Guangrongedc90b72015-05-11 22:55:21 +08004056static void update_permission_bitmask(struct kvm_vcpu *vcpu,
4057 struct kvm_mmu *mmu, bool ept)
Avi Kivity97d64b72012-09-12 14:52:00 +03004058{
4059 unsigned bit, byte, pfec;
4060 u8 map;
Feng Wu66386ad2014-04-01 17:56:48 +08004061 bool fault, x, w, u, wf, uf, ff, smapf, cr4_smap, cr4_smep, smap = 0;
Avi Kivity97d64b72012-09-12 14:52:00 +03004062
Feng Wu66386ad2014-04-01 17:56:48 +08004063 cr4_smep = kvm_read_cr4_bits(vcpu, X86_CR4_SMEP);
Feng Wu97ec8c02014-04-01 17:46:34 +08004064 cr4_smap = kvm_read_cr4_bits(vcpu, X86_CR4_SMAP);
Avi Kivity97d64b72012-09-12 14:52:00 +03004065 for (byte = 0; byte < ARRAY_SIZE(mmu->permissions); ++byte) {
4066 pfec = byte << 1;
4067 map = 0;
4068 wf = pfec & PFERR_WRITE_MASK;
4069 uf = pfec & PFERR_USER_MASK;
4070 ff = pfec & PFERR_FETCH_MASK;
Feng Wu97ec8c02014-04-01 17:46:34 +08004071 /*
4072 * PFERR_RSVD_MASK bit is set in PFEC if the access is not
4073 * subject to SMAP restrictions, and cleared otherwise. The
4074 * bit is only meaningful if the SMAP bit is set in CR4.
4075 */
4076 smapf = !(pfec & PFERR_RSVD_MASK);
Avi Kivity97d64b72012-09-12 14:52:00 +03004077 for (bit = 0; bit < 8; ++bit) {
4078 x = bit & ACC_EXEC_MASK;
4079 w = bit & ACC_WRITE_MASK;
4080 u = bit & ACC_USER_MASK;
4081
Yang Zhang25d92082013-08-06 12:00:32 +03004082 if (!ept) {
4083 /* Not really needed: !nx will cause pte.nx to fault */
4084 x |= !mmu->nx;
4085 /* Allow supervisor writes if !cr0.wp */
4086 w |= !is_write_protection(vcpu) && !uf;
4087 /* Disallow supervisor fetches of user code if cr4.smep */
Feng Wu66386ad2014-04-01 17:56:48 +08004088 x &= !(cr4_smep && u && !uf);
Feng Wu97ec8c02014-04-01 17:46:34 +08004089
4090 /*
4091 * SMAP:kernel-mode data accesses from user-mode
4092 * mappings should fault. A fault is considered
4093 * as a SMAP violation if all of the following
4094 * conditions are ture:
4095 * - X86_CR4_SMAP is set in CR4
4096 * - An user page is accessed
4097 * - Page fault in kernel mode
4098 * - if CPL = 3 or X86_EFLAGS_AC is clear
4099 *
4100 * Here, we cover the first three conditions.
4101 * The fourth is computed dynamically in
4102 * permission_fault() and is in smapf.
4103 *
4104 * Also, SMAP does not affect instruction
4105 * fetches, add the !ff check here to make it
4106 * clearer.
4107 */
4108 smap = cr4_smap && u && !uf && !ff;
Bandan Dasd95c5562016-07-12 18:18:51 -04004109 }
Avi Kivity97d64b72012-09-12 14:52:00 +03004110
Feng Wu97ec8c02014-04-01 17:46:34 +08004111 fault = (ff && !x) || (uf && !u) || (wf && !w) ||
4112 (smapf && smap);
Avi Kivity97d64b72012-09-12 14:52:00 +03004113 map |= fault << bit;
4114 }
4115 mmu->permissions[byte] = map;
4116 }
4117}
4118
Huaitong Han2d344102016-03-22 16:51:19 +08004119/*
4120* PKU is an additional mechanism by which the paging controls access to
4121* user-mode addresses based on the value in the PKRU register. Protection
4122* key violations are reported through a bit in the page fault error code.
4123* Unlike other bits of the error code, the PK bit is not known at the
4124* call site of e.g. gva_to_gpa; it must be computed directly in
4125* permission_fault based on two bits of PKRU, on some machine state (CR4,
4126* CR0, EFER, CPL), and on other bits of the error code and the page tables.
4127*
4128* In particular the following conditions come from the error code, the
4129* page tables and the machine state:
4130* - PK is always zero unless CR4.PKE=1 and EFER.LMA=1
4131* - PK is always zero if RSVD=1 (reserved bit set) or F=1 (instruction fetch)
4132* - PK is always zero if U=0 in the page tables
4133* - PKRU.WD is ignored if CR0.WP=0 and the access is a supervisor access.
4134*
4135* The PKRU bitmask caches the result of these four conditions. The error
4136* code (minus the P bit) and the page table's U bit form an index into the
4137* PKRU bitmask. Two bits of the PKRU bitmask are then extracted and ANDed
4138* with the two bits of the PKRU register corresponding to the protection key.
4139* For the first three conditions above the bits will be 00, thus masking
4140* away both AD and WD. For all reads or if the last condition holds, WD
4141* only will be masked away.
4142*/
4143static void update_pkru_bitmask(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
4144 bool ept)
4145{
4146 unsigned bit;
4147 bool wp;
4148
4149 if (ept) {
4150 mmu->pkru_mask = 0;
4151 return;
4152 }
4153
4154 /* PKEY is enabled only if CR4.PKE and EFER.LMA are both set. */
4155 if (!kvm_read_cr4_bits(vcpu, X86_CR4_PKE) || !is_long_mode(vcpu)) {
4156 mmu->pkru_mask = 0;
4157 return;
4158 }
4159
4160 wp = is_write_protection(vcpu);
4161
4162 for (bit = 0; bit < ARRAY_SIZE(mmu->permissions); ++bit) {
4163 unsigned pfec, pkey_bits;
4164 bool check_pkey, check_write, ff, uf, wf, pte_user;
4165
4166 pfec = bit << 1;
4167 ff = pfec & PFERR_FETCH_MASK;
4168 uf = pfec & PFERR_USER_MASK;
4169 wf = pfec & PFERR_WRITE_MASK;
4170
4171 /* PFEC.RSVD is replaced by ACC_USER_MASK. */
4172 pte_user = pfec & PFERR_RSVD_MASK;
4173
4174 /*
4175 * Only need to check the access which is not an
4176 * instruction fetch and is to a user page.
4177 */
4178 check_pkey = (!ff && pte_user);
4179 /*
4180 * write access is controlled by PKRU if it is a
4181 * user access or CR0.WP = 1.
4182 */
4183 check_write = check_pkey && wf && (uf || wp);
4184
4185 /* PKRU.AD stops both read and write access. */
4186 pkey_bits = !!check_pkey;
4187 /* PKRU.WD stops write access. */
4188 pkey_bits |= (!!check_write) << 1;
4189
4190 mmu->pkru_mask |= (pkey_bits & 3) << pfec;
4191 }
4192}
4193
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004194static void update_last_nonleaf_level(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu)
Avi Kivity6fd01b72012-09-12 20:46:56 +03004195{
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004196 unsigned root_level = mmu->root_level;
Avi Kivity6fd01b72012-09-12 20:46:56 +03004197
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004198 mmu->last_nonleaf_level = root_level;
4199 if (root_level == PT32_ROOT_LEVEL && is_pse(vcpu))
4200 mmu->last_nonleaf_level++;
Avi Kivity6fd01b72012-09-12 20:46:56 +03004201}
4202
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004203static void paging64_init_context_common(struct kvm_vcpu *vcpu,
4204 struct kvm_mmu *context,
4205 int level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004206{
Joerg Roedel2d48a982010-09-10 17:31:01 +02004207 context->nx = is_nx(vcpu);
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004208 context->root_level = level;
Joerg Roedel2d48a982010-09-10 17:31:01 +02004209
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004210 reset_rsvds_bits_mask(vcpu, context);
Yang Zhang25d92082013-08-06 12:00:32 +03004211 update_permission_bitmask(vcpu, context, false);
Huaitong Han2d344102016-03-22 16:51:19 +08004212 update_pkru_bitmask(vcpu, context, false);
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004213 update_last_nonleaf_level(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004214
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02004215 MMU_WARN_ON(!is_pae(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004216 context->page_fault = paging64_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004217 context->gva_to_gpa = paging64_gva_to_gpa;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03004218 context->sync_page = paging64_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03004219 context->invlpg = paging64_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08004220 context->update_pte = paging64_update_pte;
Avi Kivity17ac10a2007-01-05 16:36:40 -08004221 context->shadow_root_level = level;
Avi Kivity17c3ba92007-06-04 15:58:30 +03004222 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02004223 context->direct_map = false;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004224}
4225
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004226static void paging64_init_context(struct kvm_vcpu *vcpu,
4227 struct kvm_mmu *context)
Avi Kivity17ac10a2007-01-05 16:36:40 -08004228{
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004229 paging64_init_context_common(vcpu, context, PT64_ROOT_LEVEL);
Avi Kivity17ac10a2007-01-05 16:36:40 -08004230}
4231
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004232static void paging32_init_context(struct kvm_vcpu *vcpu,
4233 struct kvm_mmu *context)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004234{
Joerg Roedel2d48a982010-09-10 17:31:01 +02004235 context->nx = false;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004236 context->root_level = PT32_ROOT_LEVEL;
Joerg Roedel2d48a982010-09-10 17:31:01 +02004237
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004238 reset_rsvds_bits_mask(vcpu, context);
Yang Zhang25d92082013-08-06 12:00:32 +03004239 update_permission_bitmask(vcpu, context, false);
Huaitong Han2d344102016-03-22 16:51:19 +08004240 update_pkru_bitmask(vcpu, context, false);
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004241 update_last_nonleaf_level(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004242
Avi Kivity6aa8b732006-12-10 02:21:36 -08004243 context->page_fault = paging32_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004244 context->gva_to_gpa = paging32_gva_to_gpa;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03004245 context->sync_page = paging32_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03004246 context->invlpg = paging32_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08004247 context->update_pte = paging32_update_pte;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004248 context->shadow_root_level = PT32E_ROOT_LEVEL;
Avi Kivity17c3ba92007-06-04 15:58:30 +03004249 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02004250 context->direct_map = false;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004251}
4252
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004253static void paging32E_init_context(struct kvm_vcpu *vcpu,
4254 struct kvm_mmu *context)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004255{
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004256 paging64_init_context_common(vcpu, context, PT32E_ROOT_LEVEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004257}
4258
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004259static void init_kvm_tdp_mmu(struct kvm_vcpu *vcpu)
Joerg Roedelfb72d162008-02-07 13:47:44 +01004260{
Paolo Bonziniad896af2013-10-02 16:56:14 +02004261 struct kvm_mmu *context = &vcpu->arch.mmu;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004262
Avi Kivityc445f8e2010-12-21 16:26:01 +02004263 context->base_role.word = 0;
Paolo Bonzini699023e2015-05-18 15:03:39 +02004264 context->base_role.smm = is_smm(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004265 context->page_fault = tdp_page_fault;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03004266 context->sync_page = nonpaging_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03004267 context->invlpg = nonpaging_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08004268 context->update_pte = nonpaging_update_pte;
Sheng Yang67253af2008-04-25 10:20:22 +08004269 context->shadow_root_level = kvm_x86_ops->get_tdp_level();
Joerg Roedelfb72d162008-02-07 13:47:44 +01004270 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02004271 context->direct_map = true;
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02004272 context->set_cr3 = kvm_x86_ops->set_tdp_cr3;
Joerg Roedel5777ed32010-09-10 17:30:42 +02004273 context->get_cr3 = get_cr3;
Avi Kivitye4e517b2011-07-28 11:36:17 +03004274 context->get_pdptr = kvm_pdptr_read;
Joerg Roedelcb659db2010-09-10 17:30:43 +02004275 context->inject_page_fault = kvm_inject_page_fault;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004276
4277 if (!is_paging(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004278 context->nx = false;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004279 context->gva_to_gpa = nonpaging_gva_to_gpa;
4280 context->root_level = 0;
4281 } else if (is_long_mode(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004282 context->nx = is_nx(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004283 context->root_level = PT64_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004284 reset_rsvds_bits_mask(vcpu, context);
4285 context->gva_to_gpa = paging64_gva_to_gpa;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004286 } else if (is_pae(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004287 context->nx = is_nx(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004288 context->root_level = PT32E_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004289 reset_rsvds_bits_mask(vcpu, context);
4290 context->gva_to_gpa = paging64_gva_to_gpa;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004291 } else {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004292 context->nx = false;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004293 context->root_level = PT32_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004294 reset_rsvds_bits_mask(vcpu, context);
4295 context->gva_to_gpa = paging32_gva_to_gpa;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004296 }
4297
Yang Zhang25d92082013-08-06 12:00:32 +03004298 update_permission_bitmask(vcpu, context, false);
Huaitong Han2d344102016-03-22 16:51:19 +08004299 update_pkru_bitmask(vcpu, context, false);
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004300 update_last_nonleaf_level(vcpu, context);
Xiao Guangrongc258b622015-08-05 12:04:24 +08004301 reset_tdp_shadow_zero_bits_mask(vcpu, context);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004302}
4303
Paolo Bonziniad896af2013-10-02 16:56:14 +02004304void kvm_init_shadow_mmu(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004305{
Avi Kivity411c5882011-06-06 16:11:54 +03004306 bool smep = kvm_read_cr4_bits(vcpu, X86_CR4_SMEP);
Xiao Guangrongedc90b72015-05-11 22:55:21 +08004307 bool smap = kvm_read_cr4_bits(vcpu, X86_CR4_SMAP);
Paolo Bonziniad896af2013-10-02 16:56:14 +02004308 struct kvm_mmu *context = &vcpu->arch.mmu;
4309
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02004310 MMU_WARN_ON(VALID_PAGE(context->root_hpa));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004311
4312 if (!is_paging(vcpu))
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004313 nonpaging_init_context(vcpu, context);
Avi Kivitya9058ec2006-12-29 16:49:37 -08004314 else if (is_long_mode(vcpu))
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004315 paging64_init_context(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004316 else if (is_pae(vcpu))
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004317 paging32E_init_context(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004318 else
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004319 paging32_init_context(vcpu, context);
Avi Kivitya770f6f2008-12-21 19:20:09 +02004320
Paolo Bonziniad896af2013-10-02 16:56:14 +02004321 context->base_role.nxe = is_nx(vcpu);
4322 context->base_role.cr4_pae = !!is_pae(vcpu);
4323 context->base_role.cr0_wp = is_write_protection(vcpu);
4324 context->base_role.smep_andnot_wp
Avi Kivity411c5882011-06-06 16:11:54 +03004325 = smep && !is_write_protection(vcpu);
Xiao Guangrongedc90b72015-05-11 22:55:21 +08004326 context->base_role.smap_andnot_wp
4327 = smap && !is_write_protection(vcpu);
Paolo Bonzini699023e2015-05-18 15:03:39 +02004328 context->base_role.smm = is_smm(vcpu);
Xiao Guangrongc258b622015-08-05 12:04:24 +08004329 reset_shadow_zero_bits_mask(vcpu, context);
Joerg Roedel52fde8d2010-09-10 17:30:44 +02004330}
4331EXPORT_SYMBOL_GPL(kvm_init_shadow_mmu);
4332
Paolo Bonziniad896af2013-10-02 16:56:14 +02004333void kvm_init_shadow_ept_mmu(struct kvm_vcpu *vcpu, bool execonly)
Nadav Har'El155a97a2013-08-05 11:07:16 +03004334{
Paolo Bonziniad896af2013-10-02 16:56:14 +02004335 struct kvm_mmu *context = &vcpu->arch.mmu;
4336
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02004337 MMU_WARN_ON(VALID_PAGE(context->root_hpa));
Nadav Har'El155a97a2013-08-05 11:07:16 +03004338
4339 context->shadow_root_level = kvm_x86_ops->get_tdp_level();
4340
4341 context->nx = true;
Nadav Har'El155a97a2013-08-05 11:07:16 +03004342 context->page_fault = ept_page_fault;
4343 context->gva_to_gpa = ept_gva_to_gpa;
4344 context->sync_page = ept_sync_page;
4345 context->invlpg = ept_invlpg;
4346 context->update_pte = ept_update_pte;
Nadav Har'El155a97a2013-08-05 11:07:16 +03004347 context->root_level = context->shadow_root_level;
4348 context->root_hpa = INVALID_PAGE;
4349 context->direct_map = false;
4350
4351 update_permission_bitmask(vcpu, context, true);
Huaitong Han2d344102016-03-22 16:51:19 +08004352 update_pkru_bitmask(vcpu, context, true);
Nadav Har'El155a97a2013-08-05 11:07:16 +03004353 reset_rsvds_bits_mask_ept(vcpu, context, execonly);
Xiao Guangrongc258b622015-08-05 12:04:24 +08004354 reset_ept_shadow_zero_bits_mask(vcpu, context, execonly);
Nadav Har'El155a97a2013-08-05 11:07:16 +03004355}
4356EXPORT_SYMBOL_GPL(kvm_init_shadow_ept_mmu);
4357
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004358static void init_kvm_softmmu(struct kvm_vcpu *vcpu)
Joerg Roedel52fde8d2010-09-10 17:30:44 +02004359{
Paolo Bonziniad896af2013-10-02 16:56:14 +02004360 struct kvm_mmu *context = &vcpu->arch.mmu;
4361
4362 kvm_init_shadow_mmu(vcpu);
4363 context->set_cr3 = kvm_x86_ops->set_cr3;
4364 context->get_cr3 = get_cr3;
4365 context->get_pdptr = kvm_pdptr_read;
4366 context->inject_page_fault = kvm_inject_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004367}
4368
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004369static void init_kvm_nested_mmu(struct kvm_vcpu *vcpu)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004370{
4371 struct kvm_mmu *g_context = &vcpu->arch.nested_mmu;
4372
4373 g_context->get_cr3 = get_cr3;
Avi Kivitye4e517b2011-07-28 11:36:17 +03004374 g_context->get_pdptr = kvm_pdptr_read;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004375 g_context->inject_page_fault = kvm_inject_page_fault;
4376
4377 /*
David Matlack0af25932015-12-30 08:26:17 -08004378 * Note that arch.mmu.gva_to_gpa translates l2_gpa to l1_gpa using
4379 * L1's nested page tables (e.g. EPT12). The nested translation
4380 * of l2_gva to l1_gpa is done by arch.nested_mmu.gva_to_gpa using
4381 * L2's page tables as the first level of translation and L1's
4382 * nested page tables as the second level of translation. Basically
4383 * the gva_to_gpa functions between mmu and nested_mmu are swapped.
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004384 */
4385 if (!is_paging(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004386 g_context->nx = false;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004387 g_context->root_level = 0;
4388 g_context->gva_to_gpa = nonpaging_gva_to_gpa_nested;
4389 } else if (is_long_mode(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004390 g_context->nx = is_nx(vcpu);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004391 g_context->root_level = PT64_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004392 reset_rsvds_bits_mask(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004393 g_context->gva_to_gpa = paging64_gva_to_gpa_nested;
4394 } else if (is_pae(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004395 g_context->nx = is_nx(vcpu);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004396 g_context->root_level = PT32E_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004397 reset_rsvds_bits_mask(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004398 g_context->gva_to_gpa = paging64_gva_to_gpa_nested;
4399 } else {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004400 g_context->nx = false;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004401 g_context->root_level = PT32_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004402 reset_rsvds_bits_mask(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004403 g_context->gva_to_gpa = paging32_gva_to_gpa_nested;
4404 }
4405
Yang Zhang25d92082013-08-06 12:00:32 +03004406 update_permission_bitmask(vcpu, g_context, false);
Huaitong Han2d344102016-03-22 16:51:19 +08004407 update_pkru_bitmask(vcpu, g_context, false);
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004408 update_last_nonleaf_level(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004409}
4410
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004411static void init_kvm_mmu(struct kvm_vcpu *vcpu)
Joerg Roedelfb72d162008-02-07 13:47:44 +01004412{
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004413 if (mmu_is_nested(vcpu))
Paolo Bonzinie0c6db32014-12-23 13:39:46 +01004414 init_kvm_nested_mmu(vcpu);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004415 else if (tdp_enabled)
Paolo Bonzinie0c6db32014-12-23 13:39:46 +01004416 init_kvm_tdp_mmu(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004417 else
Paolo Bonzinie0c6db32014-12-23 13:39:46 +01004418 init_kvm_softmmu(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004419}
4420
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004421void kvm_mmu_reset_context(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004422{
Paolo Bonzini95f93af2013-10-02 16:56:12 +02004423 kvm_mmu_unload(vcpu);
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004424 init_kvm_mmu(vcpu);
Avi Kivity17c3ba92007-06-04 15:58:30 +03004425}
Eddie Dong8668a3c2007-10-10 14:26:45 +08004426EXPORT_SYMBOL_GPL(kvm_mmu_reset_context);
Avi Kivity17c3ba92007-06-04 15:58:30 +03004427
4428int kvm_mmu_load(struct kvm_vcpu *vcpu)
4429{
Avi Kivity714b93d2007-01-05 16:36:53 -08004430 int r;
4431
Avi Kivitye2dec932007-01-05 16:36:54 -08004432 r = mmu_topup_memory_caches(vcpu);
Avi Kivity17c3ba92007-06-04 15:58:30 +03004433 if (r)
4434 goto out;
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03004435 r = mmu_alloc_roots(vcpu);
Takuya Yoshikawae2858b42013-05-09 15:45:12 +09004436 kvm_mmu_sync_roots(vcpu);
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03004437 if (r)
4438 goto out;
Sheng Yang3662cb12009-07-09 17:00:42 +08004439 /* set_cr3() should ensure TLB has been flushed */
Joerg Roedelf43addd2010-09-10 17:30:40 +02004440 vcpu->arch.mmu.set_cr3(vcpu, vcpu->arch.mmu.root_hpa);
Avi Kivity714b93d2007-01-05 16:36:53 -08004441out:
4442 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004443}
Avi Kivity17c3ba92007-06-04 15:58:30 +03004444EXPORT_SYMBOL_GPL(kvm_mmu_load);
4445
4446void kvm_mmu_unload(struct kvm_vcpu *vcpu)
4447{
4448 mmu_free_roots(vcpu);
Paolo Bonzini95f93af2013-10-02 16:56:12 +02004449 WARN_ON(VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity17c3ba92007-06-04 15:58:30 +03004450}
Joerg Roedel4b161842010-09-10 17:31:03 +02004451EXPORT_SYMBOL_GPL(kvm_mmu_unload);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004452
Avi Kivity00284252007-05-01 16:53:31 +03004453static void mmu_pte_write_new_pte(struct kvm_vcpu *vcpu,
Xiao Guangrong7c562522011-03-28 10:29:27 +08004454 struct kvm_mmu_page *sp, u64 *spte,
4455 const void *new)
Avi Kivity00284252007-05-01 16:53:31 +03004456{
Marcelo Tosatti30945382008-06-11 20:32:40 -03004457 if (sp->role.level != PT_PAGE_TABLE_LEVEL) {
Joerg Roedel7e4e4052009-07-27 16:30:46 +02004458 ++vcpu->kvm->stat.mmu_pde_zapped;
4459 return;
Marcelo Tosatti30945382008-06-11 20:32:40 -03004460 }
Avi Kivity00284252007-05-01 16:53:31 +03004461
Avi Kivity4cee5762007-11-18 16:37:07 +02004462 ++vcpu->kvm->stat.mmu_pte_updated;
Xiao Guangrong7c562522011-03-28 10:29:27 +08004463 vcpu->arch.mmu.update_pte(vcpu, sp, spte, new);
Avi Kivity00284252007-05-01 16:53:31 +03004464}
4465
Avi Kivity79539ce2007-11-21 02:06:21 +02004466static bool need_remote_flush(u64 old, u64 new)
4467{
4468 if (!is_shadow_present_pte(old))
4469 return false;
4470 if (!is_shadow_present_pte(new))
4471 return true;
4472 if ((old ^ new) & PT64_BASE_ADDR_MASK)
4473 return true;
Gleb Natapov53166222013-08-05 11:07:14 +03004474 old ^= shadow_nx_mask;
4475 new ^= shadow_nx_mask;
Avi Kivity79539ce2007-11-21 02:06:21 +02004476 return (old & ~new & PT64_PERM_MASK) != 0;
4477}
4478
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004479static u64 mmu_pte_write_fetch_gpte(struct kvm_vcpu *vcpu, gpa_t *gpa,
4480 const u8 *new, int *bytes)
Avi Kivityda4a00f2007-01-05 16:36:44 -08004481{
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004482 u64 gentry;
4483 int r;
Avi Kivity72016f32010-03-15 13:59:53 +02004484
Avi Kivity08e850c2010-03-15 13:59:57 +02004485 /*
4486 * Assume that the pte write on a page table of the same type
Xiao Guangrong49b26e22011-03-04 19:00:00 +08004487 * as the current vcpu paging mode since we update the sptes only
4488 * when they have the same mode.
Avi Kivity08e850c2010-03-15 13:59:57 +02004489 */
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004490 if (is_pae(vcpu) && *bytes == 4) {
Avi Kivity08e850c2010-03-15 13:59:57 +02004491 /* Handle a 32-bit guest writing two halves of a 64-bit gpte */
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004492 *gpa &= ~(gpa_t)7;
4493 *bytes = 8;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004494 r = kvm_vcpu_read_guest(vcpu, *gpa, &gentry, 8);
Avi Kivity08e850c2010-03-15 13:59:57 +02004495 if (r)
4496 gentry = 0;
4497 new = (const u8 *)&gentry;
4498 }
4499
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004500 switch (*bytes) {
Avi Kivity72016f32010-03-15 13:59:53 +02004501 case 4:
4502 gentry = *(const u32 *)new;
4503 break;
4504 case 8:
4505 gentry = *(const u64 *)new;
4506 break;
4507 default:
4508 gentry = 0;
4509 break;
4510 }
4511
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004512 return gentry;
4513}
4514
4515/*
4516 * If we're seeing too many writes to a page, it may no longer be a page table,
4517 * or we may be forking, in which case it is better to unmap the page.
4518 */
Xiao Guangronga138fe72011-12-16 18:18:10 +08004519static bool detect_write_flooding(struct kvm_mmu_page *sp)
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004520{
Xiao Guangronga30f47c2011-09-22 16:58:36 +08004521 /*
4522 * Skip write-flooding detected for the sp whose level is 1, because
4523 * it can become unsync, then the guest page is not write-protected.
4524 */
Davidlohr Buesof71fa312012-04-18 12:24:29 +02004525 if (sp->role.level == PT_PAGE_TABLE_LEVEL)
Xiao Guangronga30f47c2011-09-22 16:58:36 +08004526 return false;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004527
Xiao Guangronge5691a82016-02-24 17:51:12 +08004528 atomic_inc(&sp->write_flooding_count);
4529 return atomic_read(&sp->write_flooding_count) >= 3;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004530}
4531
4532/*
4533 * Misaligned accesses are too much trouble to fix up; also, they usually
4534 * indicate a page is not used as a page table.
4535 */
4536static bool detect_write_misaligned(struct kvm_mmu_page *sp, gpa_t gpa,
4537 int bytes)
4538{
4539 unsigned offset, pte_size, misaligned;
4540
4541 pgprintk("misaligned: gpa %llx bytes %d role %x\n",
4542 gpa, bytes, sp->role.word);
4543
4544 offset = offset_in_page(gpa);
4545 pte_size = sp->role.cr4_pae ? 8 : 4;
Xiao Guangrong5d9ca302011-09-22 16:57:55 +08004546
4547 /*
4548 * Sometimes, the OS only writes the last one bytes to update status
4549 * bits, for example, in linux, andb instruction is used in clear_bit().
4550 */
4551 if (!(offset & (pte_size - 1)) && bytes == 1)
4552 return false;
4553
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004554 misaligned = (offset ^ (offset + bytes - 1)) & ~(pte_size - 1);
4555 misaligned |= bytes < 4;
4556
4557 return misaligned;
4558}
4559
4560static u64 *get_written_sptes(struct kvm_mmu_page *sp, gpa_t gpa, int *nspte)
4561{
4562 unsigned page_offset, quadrant;
4563 u64 *spte;
4564 int level;
4565
4566 page_offset = offset_in_page(gpa);
4567 level = sp->role.level;
4568 *nspte = 1;
4569 if (!sp->role.cr4_pae) {
4570 page_offset <<= 1; /* 32->64 */
4571 /*
4572 * A 32-bit pde maps 4MB while the shadow pdes map
4573 * only 2MB. So we need to double the offset again
4574 * and zap two pdes instead of one.
4575 */
4576 if (level == PT32_ROOT_LEVEL) {
4577 page_offset &= ~7; /* kill rounding error */
4578 page_offset <<= 1;
4579 *nspte = 2;
4580 }
4581 quadrant = page_offset >> PAGE_SHIFT;
4582 page_offset &= ~PAGE_MASK;
4583 if (quadrant != sp->role.quadrant)
4584 return NULL;
4585 }
4586
4587 spte = &sp->spt[page_offset / sizeof(*spte)];
4588 return spte;
4589}
4590
Xiao Guangrong13d268c2016-02-24 17:51:16 +08004591static void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
Jike Songd1263632016-10-25 15:50:42 +08004592 const u8 *new, int bytes,
4593 struct kvm_page_track_notifier_node *node)
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004594{
4595 gfn_t gfn = gpa >> PAGE_SHIFT;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004596 struct kvm_mmu_page *sp;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004597 LIST_HEAD(invalid_list);
4598 u64 entry, gentry, *spte;
4599 int npte;
Paolo Bonzinib8c67b72016-02-24 11:21:55 +01004600 bool remote_flush, local_flush;
Andrew Morton41412592015-05-27 11:53:06 +02004601 union kvm_mmu_page_role mask = { };
4602
4603 mask.cr0_wp = 1;
4604 mask.cr4_pae = 1;
4605 mask.nxe = 1;
4606 mask.smep_andnot_wp = 1;
4607 mask.smap_andnot_wp = 1;
Paolo Bonzini699023e2015-05-18 15:03:39 +02004608 mask.smm = 1;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004609
4610 /*
4611 * If we don't have indirect shadow pages, it means no page is
4612 * write-protected, so we can exit simply.
4613 */
4614 if (!ACCESS_ONCE(vcpu->kvm->arch.indirect_shadow_pages))
4615 return;
4616
Paolo Bonzinib8c67b72016-02-24 11:21:55 +01004617 remote_flush = local_flush = false;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004618
4619 pgprintk("%s: gpa %llx bytes %d\n", __func__, gpa, bytes);
4620
4621 gentry = mmu_pte_write_fetch_gpte(vcpu, &gpa, new, &bytes);
4622
4623 /*
4624 * No need to care whether allocation memory is successful
4625 * or not since pte prefetch is skiped if it does not have
4626 * enough objects in the cache.
4627 */
4628 mmu_topup_memory_caches(vcpu);
4629
4630 spin_lock(&vcpu->kvm->mmu_lock);
4631 ++vcpu->kvm->stat.mmu_pte_write;
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08004632 kvm_mmu_audit(vcpu, AUDIT_PRE_PTE_WRITE);
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004633
Sasha Levinb67bfe02013-02-27 17:06:00 -08004634 for_each_gfn_indirect_valid_sp(vcpu->kvm, sp, gfn) {
Xiao Guangronga30f47c2011-09-22 16:58:36 +08004635 if (detect_write_misaligned(sp, gpa, bytes) ||
Xiao Guangronga138fe72011-12-16 18:18:10 +08004636 detect_write_flooding(sp)) {
Paolo Bonzinib8c67b72016-02-24 11:21:55 +01004637 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, &invalid_list);
Avi Kivity4cee5762007-11-18 16:37:07 +02004638 ++vcpu->kvm->stat.mmu_flooded;
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08004639 continue;
4640 }
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004641
4642 spte = get_written_sptes(sp, gpa, &npte);
4643 if (!spte)
4644 continue;
4645
Xiao Guangrong0671a8e2010-06-04 21:56:59 +08004646 local_flush = true;
Avi Kivityac1b7142007-03-08 17:13:32 +02004647 while (npte--) {
Avi Kivity79539ce2007-11-21 02:06:21 +02004648 entry = *spte;
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08004649 mmu_page_zap_pte(vcpu->kvm, sp, spte);
Xiao Guangrongfa1de2b2010-07-16 11:19:51 +08004650 if (gentry &&
4651 !((sp->role.word ^ vcpu->arch.mmu.base_role.word)
Xiao Guangrongf759e2b2011-09-22 16:53:17 +08004652 & mask.word) && rmap_can_add(vcpu))
Xiao Guangrong7c562522011-03-28 10:29:27 +08004653 mmu_pte_write_new_pte(vcpu, sp, spte, &gentry);
Gleb Natapov9bb4f6b2013-01-30 16:45:01 +02004654 if (need_remote_flush(entry, *spte))
Xiao Guangrong0671a8e2010-06-04 21:56:59 +08004655 remote_flush = true;
Avi Kivityac1b7142007-03-08 17:13:32 +02004656 ++spte;
Avi Kivity9b7a0322007-01-05 16:36:45 -08004657 }
Avi Kivity9b7a0322007-01-05 16:36:45 -08004658 }
Paolo Bonzinib8c67b72016-02-24 11:21:55 +01004659 kvm_mmu_flush_or_zap(vcpu, &invalid_list, remote_flush, local_flush);
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08004660 kvm_mmu_audit(vcpu, AUDIT_POST_PTE_WRITE);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05004661 spin_unlock(&vcpu->kvm->mmu_lock);
Avi Kivityda4a00f2007-01-05 16:36:44 -08004662}
4663
Avi Kivitya4360362007-01-05 16:36:45 -08004664int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva)
4665{
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004666 gpa_t gpa;
4667 int r;
Avi Kivitya4360362007-01-05 16:36:45 -08004668
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02004669 if (vcpu->arch.mmu.direct_map)
Avi Kivity60f24782009-08-27 13:37:06 +03004670 return 0;
4671
Gleb Natapov1871c602010-02-10 14:21:32 +02004672 gpa = kvm_mmu_gva_to_gpa_read(vcpu, gva, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004673
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004674 r = kvm_mmu_unprotect_page(vcpu->kvm, gpa >> PAGE_SHIFT);
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004675
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004676 return r;
Avi Kivitya4360362007-01-05 16:36:45 -08004677}
Avi Kivity577bdc42008-07-19 08:57:05 +03004678EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page_virt);
Avi Kivitya4360362007-01-05 16:36:45 -08004679
Takuya Yoshikawa81f4f762013-03-21 19:34:27 +09004680static void make_mmu_pages_available(struct kvm_vcpu *vcpu)
Avi Kivityebeace82007-01-05 16:36:47 -08004681{
Xiao Guangrongd98ba052010-06-04 21:55:29 +08004682 LIST_HEAD(invalid_list);
Xiao Guangrong103ad252010-06-04 21:54:38 +08004683
Takuya Yoshikawa81f4f762013-03-21 19:34:27 +09004684 if (likely(kvm_mmu_available_pages(vcpu->kvm) >= KVM_MIN_FREE_MMU_PAGES))
4685 return;
4686
Takuya Yoshikawa5da59602013-03-06 16:06:58 +09004687 while (kvm_mmu_available_pages(vcpu->kvm) < KVM_REFILL_PAGES) {
4688 if (!prepare_zap_oldest_mmu_page(vcpu->kvm, &invalid_list))
4689 break;
Avi Kivityebeace82007-01-05 16:36:47 -08004690
Avi Kivity4cee5762007-11-18 16:37:07 +02004691 ++vcpu->kvm->stat.mmu_recycled;
Avi Kivityebeace82007-01-05 16:36:47 -08004692 }
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08004693 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
Avi Kivityebeace82007-01-05 16:36:47 -08004694}
Avi Kivityebeace82007-01-05 16:36:47 -08004695
Tom Lendacky14727752016-11-23 12:01:38 -05004696int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t cr2, u64 error_code,
Andre Przywaradc25e892010-12-21 11:12:07 +01004697 void *insn, int insn_len)
Avi Kivity30677142007-10-28 18:48:59 +02004698{
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004699 int r, emulation_type = EMULTYPE_RETRY;
Avi Kivity30677142007-10-28 18:48:59 +02004700 enum emulation_result er;
Takuya Yoshikawaded58742016-02-22 17:23:40 +09004701 bool direct = vcpu->arch.mmu.direct_map || mmu_is_nested(vcpu);
Avi Kivity30677142007-10-28 18:48:59 +02004702
Takuya Yoshikawae9ee9562016-02-22 17:23:41 +09004703 if (unlikely(error_code & PFERR_RSVD_MASK)) {
4704 r = handle_mmio_page_fault(vcpu, cr2, direct);
4705 if (r == RET_MMIO_PF_EMULATE) {
4706 emulation_type = 0;
4707 goto emulate;
4708 }
4709 if (r == RET_MMIO_PF_RETRY)
4710 return 1;
4711 if (r < 0)
4712 return r;
4713 }
Avi Kivity30677142007-10-28 18:48:59 +02004714
Tom Lendacky14727752016-11-23 12:01:38 -05004715 r = vcpu->arch.mmu.page_fault(vcpu, cr2, lower_32_bits(error_code),
4716 false);
Avi Kivity30677142007-10-28 18:48:59 +02004717 if (r < 0)
Takuya Yoshikawae9ee9562016-02-22 17:23:41 +09004718 return r;
4719 if (!r)
4720 return 1;
Avi Kivity30677142007-10-28 18:48:59 +02004721
Tom Lendacky14727752016-11-23 12:01:38 -05004722 /*
4723 * Before emulating the instruction, check if the error code
4724 * was due to a RO violation while translating the guest page.
4725 * This can occur when using nested virtualization with nested
4726 * paging in both guests. If true, we simply unprotect the page
4727 * and resume the guest.
4728 *
4729 * Note: AMD only (since it supports the PFERR_GUEST_PAGE_MASK used
4730 * in PFERR_NEXT_GUEST_PAGE)
4731 */
4732 if (error_code == PFERR_NESTED_GUEST_PAGE) {
4733 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(cr2));
4734 return 1;
4735 }
4736
Takuya Yoshikawaded58742016-02-22 17:23:40 +09004737 if (mmio_info_in_cache(vcpu, cr2, direct))
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004738 emulation_type = 0;
Takuya Yoshikawae9ee9562016-02-22 17:23:41 +09004739emulate:
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004740 er = x86_emulate_instruction(vcpu, cr2, emulation_type, insn, insn_len);
Avi Kivity30677142007-10-28 18:48:59 +02004741
4742 switch (er) {
4743 case EMULATE_DONE:
4744 return 1;
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02004745 case EMULATE_USER_EXIT:
Avi Kivity30677142007-10-28 18:48:59 +02004746 ++vcpu->stat.mmio_exits;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03004747 /* fall through */
Avi Kivity30677142007-10-28 18:48:59 +02004748 case EMULATE_FAIL:
Avi Kivity3f5d18a2009-06-11 15:43:28 +03004749 return 0;
Avi Kivity30677142007-10-28 18:48:59 +02004750 default:
4751 BUG();
4752 }
Avi Kivity30677142007-10-28 18:48:59 +02004753}
4754EXPORT_SYMBOL_GPL(kvm_mmu_page_fault);
4755
Marcelo Tosattia7052892008-09-23 13:18:35 -03004756void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
4757{
Marcelo Tosattia7052892008-09-23 13:18:35 -03004758 vcpu->arch.mmu.invlpg(vcpu, gva);
Liang Chen77c39132014-09-18 12:38:37 -04004759 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03004760 ++vcpu->stat.invlpg;
4761}
4762EXPORT_SYMBOL_GPL(kvm_mmu_invlpg);
4763
Joerg Roedel18552672008-02-07 13:47:41 +01004764void kvm_enable_tdp(void)
4765{
4766 tdp_enabled = true;
4767}
4768EXPORT_SYMBOL_GPL(kvm_enable_tdp);
4769
Joerg Roedel5f4cb662008-07-14 20:36:36 +02004770void kvm_disable_tdp(void)
4771{
4772 tdp_enabled = false;
4773}
4774EXPORT_SYMBOL_GPL(kvm_disable_tdp);
4775
Avi Kivity6aa8b732006-12-10 02:21:36 -08004776static void free_mmu_pages(struct kvm_vcpu *vcpu)
4777{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004778 free_page((unsigned long)vcpu->arch.mmu.pae_root);
Joerg Roedel81407ca2010-09-10 17:31:00 +02004779 if (vcpu->arch.mmu.lm_root != NULL)
4780 free_page((unsigned long)vcpu->arch.mmu.lm_root);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004781}
4782
4783static int alloc_mmu_pages(struct kvm_vcpu *vcpu)
4784{
Avi Kivity17ac10a2007-01-05 16:36:40 -08004785 struct page *page;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004786 int i;
4787
Avi Kivity17ac10a2007-01-05 16:36:40 -08004788 /*
4789 * When emulating 32-bit mode, cr3 is only 32 bits even on x86_64.
4790 * Therefore we need to allocate shadow page tables in the first
4791 * 4GB of memory, which happens to fit the DMA32 zone.
4792 */
4793 page = alloc_page(GFP_KERNEL | __GFP_DMA32);
4794 if (!page)
Wei Yongjund7fa6ab2010-01-22 16:55:05 +08004795 return -ENOMEM;
4796
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004797 vcpu->arch.mmu.pae_root = page_address(page);
Avi Kivity17ac10a2007-01-05 16:36:40 -08004798 for (i = 0; i < 4; ++i)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004799 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08004800
Avi Kivity6aa8b732006-12-10 02:21:36 -08004801 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004802}
4803
Ingo Molnar8018c272006-12-29 16:50:01 -08004804int kvm_mmu_create(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004805{
Xiao Guangronge459e322011-11-28 20:42:16 +08004806 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
4807 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
4808 vcpu->arch.mmu.translate_gpa = translate_gpa;
4809 vcpu->arch.nested_mmu.translate_gpa = translate_nested_gpa;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004810
Ingo Molnar8018c272006-12-29 16:50:01 -08004811 return alloc_mmu_pages(vcpu);
4812}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004813
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004814void kvm_mmu_setup(struct kvm_vcpu *vcpu)
Ingo Molnar8018c272006-12-29 16:50:01 -08004815{
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02004816 MMU_WARN_ON(VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity2c264952006-12-22 01:05:28 -08004817
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004818 init_kvm_mmu(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004819}
4820
Xiaoguang Chenb5f5fdc2016-10-09 15:41:44 +08004821static void kvm_mmu_invalidate_zap_pages_in_memslot(struct kvm *kvm,
Jike Songd1263632016-10-25 15:50:42 +08004822 struct kvm_memory_slot *slot,
4823 struct kvm_page_track_notifier_node *node)
Xiaoguang Chenb5f5fdc2016-10-09 15:41:44 +08004824{
4825 kvm_mmu_invalidate_zap_all_pages(kvm);
4826}
4827
Xiao Guangrong13d268c2016-02-24 17:51:16 +08004828void kvm_mmu_init_vm(struct kvm *kvm)
4829{
4830 struct kvm_page_track_notifier_node *node = &kvm->arch.mmu_sp_tracker;
4831
4832 node->track_write = kvm_mmu_pte_write;
Xiaoguang Chenb5f5fdc2016-10-09 15:41:44 +08004833 node->track_flush_slot = kvm_mmu_invalidate_zap_pages_in_memslot;
Xiao Guangrong13d268c2016-02-24 17:51:16 +08004834 kvm_page_track_register_notifier(kvm, node);
4835}
4836
4837void kvm_mmu_uninit_vm(struct kvm *kvm)
4838{
4839 struct kvm_page_track_notifier_node *node = &kvm->arch.mmu_sp_tracker;
4840
4841 kvm_page_track_unregister_notifier(kvm, node);
4842}
4843
Xiao Guangrong1bad2b22015-05-13 14:42:23 +08004844/* The return value indicates if tlb flush on all vcpus is needed. */
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09004845typedef bool (*slot_level_handler) (struct kvm *kvm, struct kvm_rmap_head *rmap_head);
Xiao Guangrong1bad2b22015-05-13 14:42:23 +08004846
4847/* The caller should hold mmu-lock before calling this function. */
4848static bool
4849slot_handle_level_range(struct kvm *kvm, struct kvm_memory_slot *memslot,
4850 slot_level_handler fn, int start_level, int end_level,
4851 gfn_t start_gfn, gfn_t end_gfn, bool lock_flush_tlb)
4852{
4853 struct slot_rmap_walk_iterator iterator;
4854 bool flush = false;
4855
4856 for_each_slot_rmap_range(memslot, start_level, end_level, start_gfn,
4857 end_gfn, &iterator) {
4858 if (iterator.rmap)
4859 flush |= fn(kvm, iterator.rmap);
4860
4861 if (need_resched() || spin_needbreak(&kvm->mmu_lock)) {
4862 if (flush && lock_flush_tlb) {
4863 kvm_flush_remote_tlbs(kvm);
4864 flush = false;
4865 }
4866 cond_resched_lock(&kvm->mmu_lock);
4867 }
4868 }
4869
4870 if (flush && lock_flush_tlb) {
4871 kvm_flush_remote_tlbs(kvm);
4872 flush = false;
4873 }
4874
4875 return flush;
4876}
4877
4878static bool
4879slot_handle_level(struct kvm *kvm, struct kvm_memory_slot *memslot,
4880 slot_level_handler fn, int start_level, int end_level,
4881 bool lock_flush_tlb)
4882{
4883 return slot_handle_level_range(kvm, memslot, fn, start_level,
4884 end_level, memslot->base_gfn,
4885 memslot->base_gfn + memslot->npages - 1,
4886 lock_flush_tlb);
4887}
4888
4889static bool
4890slot_handle_all_level(struct kvm *kvm, struct kvm_memory_slot *memslot,
4891 slot_level_handler fn, bool lock_flush_tlb)
4892{
4893 return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL,
4894 PT_MAX_HUGEPAGE_LEVEL, lock_flush_tlb);
4895}
4896
4897static bool
4898slot_handle_large_level(struct kvm *kvm, struct kvm_memory_slot *memslot,
4899 slot_level_handler fn, bool lock_flush_tlb)
4900{
4901 return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL + 1,
4902 PT_MAX_HUGEPAGE_LEVEL, lock_flush_tlb);
4903}
4904
4905static bool
4906slot_handle_leaf(struct kvm *kvm, struct kvm_memory_slot *memslot,
4907 slot_level_handler fn, bool lock_flush_tlb)
4908{
4909 return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL,
4910 PT_PAGE_TABLE_LEVEL, lock_flush_tlb);
4911}
4912
Xiao Guangrongefdfe532015-05-13 14:42:27 +08004913void kvm_zap_gfn_range(struct kvm *kvm, gfn_t gfn_start, gfn_t gfn_end)
4914{
4915 struct kvm_memslots *slots;
4916 struct kvm_memory_slot *memslot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02004917 int i;
Xiao Guangrongefdfe532015-05-13 14:42:27 +08004918
4919 spin_lock(&kvm->mmu_lock);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02004920 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
4921 slots = __kvm_memslots(kvm, i);
4922 kvm_for_each_memslot(memslot, slots) {
4923 gfn_t start, end;
Xiao Guangrongefdfe532015-05-13 14:42:27 +08004924
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02004925 start = max(gfn_start, memslot->base_gfn);
4926 end = min(gfn_end, memslot->base_gfn + memslot->npages);
4927 if (start >= end)
4928 continue;
Xiao Guangrongefdfe532015-05-13 14:42:27 +08004929
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02004930 slot_handle_level_range(kvm, memslot, kvm_zap_rmapp,
4931 PT_PAGE_TABLE_LEVEL, PT_MAX_HUGEPAGE_LEVEL,
4932 start, end - 1, true);
4933 }
Xiao Guangrongefdfe532015-05-13 14:42:27 +08004934 }
4935
4936 spin_unlock(&kvm->mmu_lock);
4937}
4938
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09004939static bool slot_rmap_write_protect(struct kvm *kvm,
4940 struct kvm_rmap_head *rmap_head)
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004941{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09004942 return __rmap_write_protect(kvm, rmap_head, false);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004943}
4944
Kai Huang1c91cad42015-01-28 10:54:26 +08004945void kvm_mmu_slot_remove_write_access(struct kvm *kvm,
4946 struct kvm_memory_slot *memslot)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004947{
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004948 bool flush;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004949
Takuya Yoshikawa9d1beef2013-01-08 19:46:48 +09004950 spin_lock(&kvm->mmu_lock);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004951 flush = slot_handle_all_level(kvm, memslot, slot_rmap_write_protect,
4952 false);
Takuya Yoshikawa9d1beef2013-01-08 19:46:48 +09004953 spin_unlock(&kvm->mmu_lock);
Xiao Guangrong198c74f2014-04-17 17:06:16 +08004954
4955 /*
4956 * kvm_mmu_slot_remove_write_access() and kvm_vm_ioctl_get_dirty_log()
4957 * which do tlb flush out of mmu-lock should be serialized by
4958 * kvm->slots_lock otherwise tlb flush would be missed.
4959 */
4960 lockdep_assert_held(&kvm->slots_lock);
4961
4962 /*
4963 * We can flush all the TLBs out of the mmu lock without TLB
4964 * corruption since we just change the spte from writable to
4965 * readonly so that we only need to care the case of changing
4966 * spte from present to present (changing the spte from present
4967 * to nonpresent will flush all the TLBs immediately), in other
4968 * words, the only case we care is mmu_spte_update() where we
4969 * haved checked SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE
4970 * instead of PT_WRITABLE_MASK, that means it does not depend
4971 * on PT_WRITABLE_MASK anymore.
4972 */
Kai Huangd91ffee2015-01-12 15:28:54 +08004973 if (flush)
4974 kvm_flush_remote_tlbs(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004975}
Avi Kivity37a7d8b2007-01-05 16:36:56 -08004976
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004977static bool kvm_mmu_zap_collapsible_spte(struct kvm *kvm,
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09004978 struct kvm_rmap_head *rmap_head)
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004979{
4980 u64 *sptep;
4981 struct rmap_iterator iter;
4982 int need_tlb_flush = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08004983 kvm_pfn_t pfn;
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004984 struct kvm_mmu_page *sp;
4985
Xiao Guangrong0d536792015-05-13 14:42:20 +08004986restart:
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09004987 for_each_rmap_spte(rmap_head, &iter, sptep) {
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004988 sp = page_header(__pa(sptep));
4989 pfn = spte_to_pfn(*sptep);
4990
4991 /*
Xiao Guangrongdecf6332015-04-14 12:04:10 +08004992 * We cannot do huge page mapping for indirect shadow pages,
4993 * which are found on the last rmap (level = 1) when not using
4994 * tdp; such shadow pages are synced with the page table in
4995 * the guest, and the guest page table is using 4K page size
4996 * mapping if the indirect sp has level = 1.
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004997 */
4998 if (sp->role.direct &&
4999 !kvm_is_reserved_pfn(pfn) &&
Andrea Arcangeli127393f2016-05-05 16:22:20 -07005000 PageTransCompoundMap(pfn_to_page(pfn))) {
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005001 drop_spte(kvm, sptep);
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005002 need_tlb_flush = 1;
Xiao Guangrong0d536792015-05-13 14:42:20 +08005003 goto restart;
5004 }
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005005 }
5006
5007 return need_tlb_flush;
5008}
5009
5010void kvm_mmu_zap_collapsible_sptes(struct kvm *kvm,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02005011 const struct kvm_memory_slot *memslot)
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005012{
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02005013 /* FIXME: const-ify all uses of struct kvm_memory_slot. */
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005014 spin_lock(&kvm->mmu_lock);
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02005015 slot_handle_leaf(kvm, (struct kvm_memory_slot *)memslot,
5016 kvm_mmu_zap_collapsible_spte, true);
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005017 spin_unlock(&kvm->mmu_lock);
5018}
5019
Kai Huangf4b4b182015-01-28 10:54:24 +08005020void kvm_mmu_slot_leaf_clear_dirty(struct kvm *kvm,
5021 struct kvm_memory_slot *memslot)
5022{
Xiao Guangrongd77aa732015-05-13 14:42:24 +08005023 bool flush;
Kai Huangf4b4b182015-01-28 10:54:24 +08005024
5025 spin_lock(&kvm->mmu_lock);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08005026 flush = slot_handle_leaf(kvm, memslot, __rmap_clear_dirty, false);
Kai Huangf4b4b182015-01-28 10:54:24 +08005027 spin_unlock(&kvm->mmu_lock);
5028
5029 lockdep_assert_held(&kvm->slots_lock);
5030
5031 /*
5032 * It's also safe to flush TLBs out of mmu lock here as currently this
5033 * function is only used for dirty logging, in which case flushing TLB
5034 * out of mmu lock also guarantees no dirty pages will be lost in
5035 * dirty_bitmap.
5036 */
5037 if (flush)
5038 kvm_flush_remote_tlbs(kvm);
5039}
5040EXPORT_SYMBOL_GPL(kvm_mmu_slot_leaf_clear_dirty);
5041
5042void kvm_mmu_slot_largepage_remove_write_access(struct kvm *kvm,
5043 struct kvm_memory_slot *memslot)
5044{
Xiao Guangrongd77aa732015-05-13 14:42:24 +08005045 bool flush;
Kai Huangf4b4b182015-01-28 10:54:24 +08005046
5047 spin_lock(&kvm->mmu_lock);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08005048 flush = slot_handle_large_level(kvm, memslot, slot_rmap_write_protect,
5049 false);
Kai Huangf4b4b182015-01-28 10:54:24 +08005050 spin_unlock(&kvm->mmu_lock);
5051
5052 /* see kvm_mmu_slot_remove_write_access */
5053 lockdep_assert_held(&kvm->slots_lock);
5054
5055 if (flush)
5056 kvm_flush_remote_tlbs(kvm);
5057}
5058EXPORT_SYMBOL_GPL(kvm_mmu_slot_largepage_remove_write_access);
5059
5060void kvm_mmu_slot_set_dirty(struct kvm *kvm,
5061 struct kvm_memory_slot *memslot)
5062{
Xiao Guangrongd77aa732015-05-13 14:42:24 +08005063 bool flush;
Kai Huangf4b4b182015-01-28 10:54:24 +08005064
5065 spin_lock(&kvm->mmu_lock);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08005066 flush = slot_handle_all_level(kvm, memslot, __rmap_set_dirty, false);
Kai Huangf4b4b182015-01-28 10:54:24 +08005067 spin_unlock(&kvm->mmu_lock);
5068
5069 lockdep_assert_held(&kvm->slots_lock);
5070
5071 /* see kvm_mmu_slot_leaf_clear_dirty */
5072 if (flush)
5073 kvm_flush_remote_tlbs(kvm);
5074}
5075EXPORT_SYMBOL_GPL(kvm_mmu_slot_set_dirty);
5076
Xiao Guangronge7d11c72013-05-31 08:36:27 +08005077#define BATCH_ZAP_PAGES 10
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005078static void kvm_zap_obsolete_pages(struct kvm *kvm)
5079{
5080 struct kvm_mmu_page *sp, *node;
Xiao Guangronge7d11c72013-05-31 08:36:27 +08005081 int batch = 0;
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005082
5083restart:
5084 list_for_each_entry_safe_reverse(sp, node,
5085 &kvm->arch.active_mmu_pages, link) {
Xiao Guangronge7d11c72013-05-31 08:36:27 +08005086 int ret;
5087
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005088 /*
5089 * No obsolete page exists before new created page since
5090 * active_mmu_pages is the FIFO list.
5091 */
5092 if (!is_obsolete_sp(kvm, sp))
5093 break;
5094
5095 /*
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005096 * Since we are reversely walking the list and the invalid
5097 * list will be moved to the head, skip the invalid page
5098 * can help us to avoid the infinity list walking.
5099 */
5100 if (sp->role.invalid)
5101 continue;
5102
Xiao Guangrongf34d2512013-05-31 08:36:28 +08005103 /*
5104 * Need not flush tlb since we only zap the sp with invalid
5105 * generation number.
5106 */
Xiao Guangronge7d11c72013-05-31 08:36:27 +08005107 if (batch >= BATCH_ZAP_PAGES &&
Xiao Guangrongf34d2512013-05-31 08:36:28 +08005108 cond_resched_lock(&kvm->mmu_lock)) {
Xiao Guangronge7d11c72013-05-31 08:36:27 +08005109 batch = 0;
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005110 goto restart;
5111 }
5112
Xiao Guangrong365c8862013-05-31 08:36:29 +08005113 ret = kvm_mmu_prepare_zap_page(kvm, sp,
5114 &kvm->arch.zapped_obsolete_pages);
Xiao Guangronge7d11c72013-05-31 08:36:27 +08005115 batch += ret;
5116
5117 if (ret)
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005118 goto restart;
5119 }
5120
Xiao Guangrongf34d2512013-05-31 08:36:28 +08005121 /*
5122 * Should flush tlb before free page tables since lockless-walking
5123 * may use the pages.
5124 */
Xiao Guangrong365c8862013-05-31 08:36:29 +08005125 kvm_mmu_commit_zap_page(kvm, &kvm->arch.zapped_obsolete_pages);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005126}
5127
5128/*
5129 * Fast invalidate all shadow pages and use lock-break technique
5130 * to zap obsolete pages.
5131 *
5132 * It's required when memslot is being deleted or VM is being
5133 * destroyed, in these cases, we should ensure that KVM MMU does
5134 * not use any resource of the being-deleted slot or all slots
5135 * after calling the function.
5136 */
5137void kvm_mmu_invalidate_zap_all_pages(struct kvm *kvm)
5138{
5139 spin_lock(&kvm->mmu_lock);
Xiao Guangrong35006122013-05-31 08:36:25 +08005140 trace_kvm_mmu_invalidate_zap_all_pages(kvm);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005141 kvm->arch.mmu_valid_gen++;
5142
Xiao Guangrongf34d2512013-05-31 08:36:28 +08005143 /*
5144 * Notify all vcpus to reload its shadow page table
5145 * and flush TLB. Then all vcpus will switch to new
5146 * shadow page table with the new mmu_valid_gen.
5147 *
5148 * Note: we should do this under the protection of
5149 * mmu-lock, otherwise, vcpu would purge shadow page
5150 * but miss tlb flush.
5151 */
5152 kvm_reload_remote_mmus(kvm);
5153
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005154 kvm_zap_obsolete_pages(kvm);
5155 spin_unlock(&kvm->mmu_lock);
5156}
5157
Xiao Guangrong365c8862013-05-31 08:36:29 +08005158static bool kvm_has_zapped_obsolete_pages(struct kvm *kvm)
5159{
5160 return unlikely(!list_empty_careful(&kvm->arch.zapped_obsolete_pages));
5161}
5162
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005163void kvm_mmu_invalidate_mmio_sptes(struct kvm *kvm, struct kvm_memslots *slots)
Xiao Guangrongf8f55942013-06-07 16:51:26 +08005164{
5165 /*
5166 * The very rare case: if the generation-number is round,
5167 * zap all shadow pages.
Xiao Guangrongf8f55942013-06-07 16:51:26 +08005168 */
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005169 if (unlikely((slots->generation & MMIO_GEN_MASK) == 0)) {
Bandan Dasae0f5492016-11-15 01:36:18 -05005170 kvm_debug_ratelimited("kvm: zapping shadow pages for mmio generation wraparound\n");
Xiao Guangronga8eca9d2013-06-10 16:28:55 +08005171 kvm_mmu_invalidate_zap_all_pages(kvm);
Takuya Yoshikawa7a2e8aa2013-06-21 01:34:31 +09005172 }
Xiao Guangrongf8f55942013-06-07 16:51:26 +08005173}
5174
Dave Chinner70534a72013-08-28 10:18:14 +10005175static unsigned long
5176mmu_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
Izik Eidus3ee16c82008-03-30 15:17:21 +03005177{
5178 struct kvm *kvm;
Ying Han1495f232011-05-24 17:12:27 -07005179 int nr_to_scan = sc->nr_to_scan;
Dave Chinner70534a72013-08-28 10:18:14 +10005180 unsigned long freed = 0;
Izik Eidus3ee16c82008-03-30 15:17:21 +03005181
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005182 spin_lock(&kvm_lock);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005183
5184 list_for_each_entry(kvm, &vm_list, vm_list) {
Jan Kiszka3d56cbd2011-12-02 18:35:24 +01005185 int idx;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08005186 LIST_HEAD(invalid_list);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005187
Gleb Natapov19526392012-06-04 14:53:23 +03005188 /*
Takuya Yoshikawa35f2d162012-08-20 18:35:39 +09005189 * Never scan more than sc->nr_to_scan VM instances.
5190 * Will not hit this condition practically since we do not try
5191 * to shrink more than one VM and it is very unlikely to see
5192 * !n_used_mmu_pages so many times.
5193 */
5194 if (!nr_to_scan--)
5195 break;
5196 /*
Gleb Natapov19526392012-06-04 14:53:23 +03005197 * n_used_mmu_pages is accessed without holding kvm->mmu_lock
5198 * here. We may skip a VM instance errorneosly, but we do not
5199 * want to shrink a VM that only started to populate its MMU
5200 * anyway.
5201 */
Xiao Guangrong365c8862013-05-31 08:36:29 +08005202 if (!kvm->arch.n_used_mmu_pages &&
5203 !kvm_has_zapped_obsolete_pages(kvm))
Gleb Natapov19526392012-06-04 14:53:23 +03005204 continue;
Gleb Natapov19526392012-06-04 14:53:23 +03005205
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005206 idx = srcu_read_lock(&kvm->srcu);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005207 spin_lock(&kvm->mmu_lock);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005208
Xiao Guangrong365c8862013-05-31 08:36:29 +08005209 if (kvm_has_zapped_obsolete_pages(kvm)) {
5210 kvm_mmu_commit_zap_page(kvm,
5211 &kvm->arch.zapped_obsolete_pages);
5212 goto unlock;
5213 }
5214
Dave Chinner70534a72013-08-28 10:18:14 +10005215 if (prepare_zap_oldest_mmu_page(kvm, &invalid_list))
5216 freed++;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08005217 kvm_mmu_commit_zap_page(kvm, &invalid_list);
Gleb Natapov19526392012-06-04 14:53:23 +03005218
Xiao Guangrong365c8862013-05-31 08:36:29 +08005219unlock:
Izik Eidus3ee16c82008-03-30 15:17:21 +03005220 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005221 srcu_read_unlock(&kvm->srcu, idx);
Gleb Natapov19526392012-06-04 14:53:23 +03005222
Dave Chinner70534a72013-08-28 10:18:14 +10005223 /*
5224 * unfair on small ones
5225 * per-vm shrinkers cry out
5226 * sadness comes quickly
5227 */
Gleb Natapov19526392012-06-04 14:53:23 +03005228 list_move_tail(&kvm->vm_list, &vm_list);
5229 break;
Izik Eidus3ee16c82008-03-30 15:17:21 +03005230 }
Izik Eidus3ee16c82008-03-30 15:17:21 +03005231
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005232 spin_unlock(&kvm_lock);
Dave Chinner70534a72013-08-28 10:18:14 +10005233 return freed;
Dave Chinner70534a72013-08-28 10:18:14 +10005234}
5235
5236static unsigned long
5237mmu_shrink_count(struct shrinker *shrink, struct shrink_control *sc)
5238{
Dave Hansen45221ab2010-08-19 18:11:37 -07005239 return percpu_counter_read_positive(&kvm_total_used_mmu_pages);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005240}
5241
5242static struct shrinker mmu_shrinker = {
Dave Chinner70534a72013-08-28 10:18:14 +10005243 .count_objects = mmu_shrink_count,
5244 .scan_objects = mmu_shrink_scan,
Izik Eidus3ee16c82008-03-30 15:17:21 +03005245 .seeks = DEFAULT_SEEKS * 10,
5246};
5247
Ingo Molnar2ddfd202008-05-22 10:37:48 +02005248static void mmu_destroy_caches(void)
Avi Kivityb5a33a72007-04-15 16:31:09 +03005249{
Xiao Guangrong53c07b12011-05-15 23:26:20 +08005250 if (pte_list_desc_cache)
5251 kmem_cache_destroy(pte_list_desc_cache);
Avi Kivityd3d25b02007-05-30 12:34:53 +03005252 if (mmu_page_header_cache)
5253 kmem_cache_destroy(mmu_page_header_cache);
Avi Kivityb5a33a72007-04-15 16:31:09 +03005254}
5255
5256int kvm_mmu_module_init(void)
5257{
Junaid Shahidf160c7b2016-12-06 16:46:16 -08005258 kvm_mmu_clear_all_pte_masks();
5259
Xiao Guangrong53c07b12011-05-15 23:26:20 +08005260 pte_list_desc_cache = kmem_cache_create("pte_list_desc",
5261 sizeof(struct pte_list_desc),
Paul Mundt20c2df82007-07-20 10:11:58 +09005262 0, 0, NULL);
Xiao Guangrong53c07b12011-05-15 23:26:20 +08005263 if (!pte_list_desc_cache)
Avi Kivityb5a33a72007-04-15 16:31:09 +03005264 goto nomem;
5265
Avi Kivityd3d25b02007-05-30 12:34:53 +03005266 mmu_page_header_cache = kmem_cache_create("kvm_mmu_page_header",
5267 sizeof(struct kvm_mmu_page),
Paul Mundt20c2df82007-07-20 10:11:58 +09005268 0, 0, NULL);
Avi Kivityd3d25b02007-05-30 12:34:53 +03005269 if (!mmu_page_header_cache)
5270 goto nomem;
5271
Tejun Heo908c7f12014-09-08 09:51:29 +09005272 if (percpu_counter_init(&kvm_total_used_mmu_pages, 0, GFP_KERNEL))
Wei Yongjun45bf21a2010-08-23 16:13:15 +08005273 goto nomem;
5274
Izik Eidus3ee16c82008-03-30 15:17:21 +03005275 register_shrinker(&mmu_shrinker);
5276
Avi Kivityb5a33a72007-04-15 16:31:09 +03005277 return 0;
5278
5279nomem:
Izik Eidus3ee16c82008-03-30 15:17:21 +03005280 mmu_destroy_caches();
Avi Kivityb5a33a72007-04-15 16:31:09 +03005281 return -ENOMEM;
5282}
5283
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005284/*
5285 * Caculate mmu pages needed for kvm.
5286 */
5287unsigned int kvm_mmu_calculate_mmu_pages(struct kvm *kvm)
5288{
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005289 unsigned int nr_mmu_pages;
5290 unsigned int nr_pages = 0;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02005291 struct kvm_memslots *slots;
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +08005292 struct kvm_memory_slot *memslot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005293 int i;
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005294
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005295 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
5296 slots = __kvm_memslots(kvm, i);
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08005297
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005298 kvm_for_each_memslot(memslot, slots)
5299 nr_pages += memslot->npages;
5300 }
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005301
5302 nr_mmu_pages = nr_pages * KVM_PERMILLE_MMU_PAGES / 1000;
5303 nr_mmu_pages = max(nr_mmu_pages,
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005304 (unsigned int) KVM_MIN_ALLOC_MMU_PAGES);
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005305
5306 return nr_mmu_pages;
5307}
5308
Xiao Guangrongc42fffe2010-09-27 18:07:07 +08005309void kvm_mmu_destroy(struct kvm_vcpu *vcpu)
5310{
Paolo Bonzini95f93af2013-10-02 16:56:12 +02005311 kvm_mmu_unload(vcpu);
Xiao Guangrongc42fffe2010-09-27 18:07:07 +08005312 free_mmu_pages(vcpu);
5313 mmu_free_memory_caches(vcpu);
Xiao Guangrongb034cf02010-12-23 16:08:35 +08005314}
5315
Xiao Guangrongb034cf02010-12-23 16:08:35 +08005316void kvm_mmu_module_exit(void)
5317{
5318 mmu_destroy_caches();
5319 percpu_counter_destroy(&kvm_total_used_mmu_pages);
5320 unregister_shrinker(&mmu_shrinker);
Xiao Guangrongc42fffe2010-09-27 18:07:07 +08005321 mmu_audit_disable();
5322}