blob: 3faa20cfdd5f6863d8049c4150635a880fdde45d [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>
Ingo Molnar3f07c012017-02-08 18:51:30 +010039#include <linux/sched/signal.h>
Huang Yingbf998152010-05-31 14:28:19 +080040#include <linux/uaccess.h>
David Matlack114df302016-12-19 13:58:25 -080041#include <linux/hash.h>
Junaid Shahidf160c7b2016-12-06 16:46:16 -080042#include <linux/kern_levels.h>
Avi Kivitye4956062007-06-28 14:15:57 -040043
44#include <asm/page.h>
45#include <asm/cmpxchg.h>
Avi Kivity4e542372007-11-21 14:08:40 +020046#include <asm/io.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020047#include <asm/vmx.h>
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +080048#include <asm/kvm_page_track.h>
Wanpeng Li1261bfa2017-07-13 18:30:40 -070049#include "trace.h"
Avi Kivitye4956062007-06-28 14:15:57 -040050
Joerg Roedel18552672008-02-07 13:47:41 +010051/*
52 * When setting this variable to true it enables Two-Dimensional-Paging
53 * where the hardware walks 2 page tables:
54 * 1. the guest-virtual to guest-physical
55 * 2. while doing 1. it walks guest-physical to host-physical
56 * If the hardware supports that we don't need to do shadow paging.
57 */
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -050058bool tdp_enabled = false;
Joerg Roedel18552672008-02-07 13:47:41 +010059
Xiao Guangrong8b1fe172010-08-30 18:22:53 +080060enum {
61 AUDIT_PRE_PAGE_FAULT,
62 AUDIT_POST_PAGE_FAULT,
63 AUDIT_PRE_PTE_WRITE,
Xiao Guangrong69030742010-09-27 18:09:29 +080064 AUDIT_POST_PTE_WRITE,
65 AUDIT_PRE_SYNC,
66 AUDIT_POST_SYNC
Xiao Guangrong8b1fe172010-08-30 18:22:53 +080067};
68
Avi Kivity37a7d8b2007-01-05 16:36:56 -080069#undef MMU_DEBUG
70
Avi Kivity37a7d8b2007-01-05 16:36:56 -080071#ifdef MMU_DEBUG
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +020072static bool dbg = 0;
73module_param(dbg, bool, 0644);
Avi Kivity37a7d8b2007-01-05 16:36:56 -080074
75#define pgprintk(x...) do { if (dbg) printk(x); } while (0)
76#define rmap_printk(x...) do { if (dbg) printk(x); } while (0)
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +020077#define MMU_WARN_ON(x) WARN_ON(x)
Avi Kivity37a7d8b2007-01-05 16:36:56 -080078#else
Avi Kivity37a7d8b2007-01-05 16:36:56 -080079#define pgprintk(x...) do { } while (0)
80#define rmap_printk(x...) do { } while (0)
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +020081#define MMU_WARN_ON(x) do { } while (0)
Yaozu Dongd6c69ee2007-04-25 14:17:25 +080082#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -080083
Xiao Guangrong957ed9e2010-08-22 19:12:48 +080084#define PTE_PREFETCH_NUM 8
85
Xudong Hao00763e42012-06-07 18:26:07 +080086#define PT_FIRST_AVAIL_BITS_SHIFT 10
Avi Kivity6aa8b732006-12-10 02:21:36 -080087#define PT64_SECOND_AVAIL_BITS_SHIFT 52
88
Avi Kivity6aa8b732006-12-10 02:21:36 -080089#define PT64_LEVEL_BITS 9
90
91#define PT64_LEVEL_SHIFT(level) \
Mike Dayd77c26f2007-10-08 09:02:08 -040092 (PAGE_SHIFT + (level - 1) * PT64_LEVEL_BITS)
Avi Kivity6aa8b732006-12-10 02:21:36 -080093
Avi Kivity6aa8b732006-12-10 02:21:36 -080094#define PT64_INDEX(address, level)\
95 (((address) >> PT64_LEVEL_SHIFT(level)) & ((1 << PT64_LEVEL_BITS) - 1))
96
97
98#define PT32_LEVEL_BITS 10
99
100#define PT32_LEVEL_SHIFT(level) \
Mike Dayd77c26f2007-10-08 09:02:08 -0400101 (PAGE_SHIFT + (level - 1) * PT32_LEVEL_BITS)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800102
Joerg Roedele04da982009-07-27 16:30:45 +0200103#define PT32_LVL_OFFSET_MASK(level) \
104 (PT32_BASE_ADDR_MASK & ((1ULL << (PAGE_SHIFT + (((level) - 1) \
105 * PT32_LEVEL_BITS))) - 1))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800106
107#define PT32_INDEX(address, level)\
108 (((address) >> PT32_LEVEL_SHIFT(level)) & ((1 << PT32_LEVEL_BITS) - 1))
109
110
Avi Kivity27aba762007-03-09 13:04:31 +0200111#define PT64_BASE_ADDR_MASK (((1ULL << 52) - 1) & ~(u64)(PAGE_SIZE-1))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800112#define PT64_DIR_BASE_ADDR_MASK \
113 (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + PT64_LEVEL_BITS)) - 1))
Joerg Roedele04da982009-07-27 16:30:45 +0200114#define PT64_LVL_ADDR_MASK(level) \
115 (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + (((level) - 1) \
116 * PT64_LEVEL_BITS))) - 1))
117#define PT64_LVL_OFFSET_MASK(level) \
118 (PT64_BASE_ADDR_MASK & ((1ULL << (PAGE_SHIFT + (((level) - 1) \
119 * PT64_LEVEL_BITS))) - 1))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800120
121#define PT32_BASE_ADDR_MASK PAGE_MASK
122#define PT32_DIR_BASE_ADDR_MASK \
123 (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + PT32_LEVEL_BITS)) - 1))
Joerg Roedele04da982009-07-27 16:30:45 +0200124#define PT32_LVL_ADDR_MASK(level) \
125 (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + (((level) - 1) \
126 * PT32_LEVEL_BITS))) - 1))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800127
Gleb Natapov53166222013-08-05 11:07:14 +0300128#define PT64_PERM_MASK (PT_PRESENT_MASK | PT_WRITABLE_MASK | shadow_user_mask \
129 | shadow_x_mask | shadow_nx_mask)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800130
Avi Kivityfe135d22007-12-09 16:15:46 +0200131#define ACC_EXEC_MASK 1
132#define ACC_WRITE_MASK PT_WRITABLE_MASK
133#define ACC_USER_MASK PT_USER_MASK
134#define ACC_ALL (ACC_EXEC_MASK | ACC_WRITE_MASK | ACC_USER_MASK)
135
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800136/* The mask for the R/X bits in EPT PTEs */
137#define PT64_EPT_READABLE_MASK 0x1ull
138#define PT64_EPT_EXECUTABLE_MASK 0x4ull
139
Avi Kivity90bb6fc2009-12-31 12:10:16 +0200140#include <trace/events/kvm.h>
141
Avi Kivity07420172009-07-06 12:21:32 +0300142#define CREATE_TRACE_POINTS
143#include "mmutrace.h"
144
Xiao Guangrong49fde342012-06-20 15:58:58 +0800145#define SPTE_HOST_WRITEABLE (1ULL << PT_FIRST_AVAIL_BITS_SHIFT)
146#define SPTE_MMU_WRITEABLE (1ULL << (PT_FIRST_AVAIL_BITS_SHIFT + 1))
Izik Eidus14032832009-09-23 21:47:17 +0300147
Avi Kivity135f8c22008-08-21 17:49:56 +0300148#define SHADOW_PT_INDEX(addr, level) PT64_INDEX(addr, level)
149
Takuya Yoshikawa220f7732012-03-21 23:49:39 +0900150/* make pte_list_desc fit well in cache line */
151#define PTE_LIST_EXT 3
152
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800153struct pte_list_desc {
154 u64 *sptes[PTE_LIST_EXT];
155 struct pte_list_desc *more;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800156};
157
Avi Kivity2d111232008-12-25 14:39:47 +0200158struct kvm_shadow_walk_iterator {
159 u64 addr;
160 hpa_t shadow_addr;
Avi Kivity2d111232008-12-25 14:39:47 +0200161 u64 *sptep;
Xiao Guangrongdd3bfd52011-07-12 03:32:54 +0800162 int level;
Avi Kivity2d111232008-12-25 14:39:47 +0200163 unsigned index;
164};
165
166#define for_each_shadow_entry(_vcpu, _addr, _walker) \
167 for (shadow_walk_init(&(_walker), _vcpu, _addr); \
168 shadow_walk_okay(&(_walker)); \
169 shadow_walk_next(&(_walker)))
170
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800171#define for_each_shadow_entry_lockless(_vcpu, _addr, _walker, spte) \
172 for (shadow_walk_init(&(_walker), _vcpu, _addr); \
173 shadow_walk_okay(&(_walker)) && \
174 ({ spte = mmu_spte_get_lockless(_walker.sptep); 1; }); \
175 __shadow_walk_next(&(_walker), spte))
176
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800177static struct kmem_cache *pte_list_desc_cache;
Avi Kivityd3d25b02007-05-30 12:34:53 +0300178static struct kmem_cache *mmu_page_header_cache;
Dave Hansen45221ab2010-08-19 18:11:37 -0700179static struct percpu_counter kvm_total_used_mmu_pages;
Avi Kivityb5a33a72007-04-15 16:31:09 +0300180
Sheng Yang7b523452008-04-25 21:13:50 +0800181static u64 __read_mostly shadow_nx_mask;
182static u64 __read_mostly shadow_x_mask; /* mutual exclusive with nx_mask */
183static u64 __read_mostly shadow_user_mask;
184static u64 __read_mostly shadow_accessed_mask;
185static u64 __read_mostly shadow_dirty_mask;
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800186static u64 __read_mostly shadow_mmio_mask;
Peter Feinerdcdca5f2017-06-30 17:26:30 -0700187static u64 __read_mostly shadow_mmio_value;
Bandan Dasffb128c2016-07-12 18:18:49 -0400188static u64 __read_mostly shadow_present_mask;
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800189
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800190/*
Peter Feinerac8d57e2017-06-30 17:26:31 -0700191 * SPTEs used by MMUs without A/D bits are marked with shadow_acc_track_value.
192 * Non-present SPTEs with shadow_acc_track_value set are in place for access
193 * tracking.
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800194 */
195static u64 __read_mostly shadow_acc_track_mask;
196static const u64 shadow_acc_track_value = SPTE_SPECIAL_MASK;
197
198/*
199 * The mask/shift to use for saving the original R/X bits when marking the PTE
200 * as not-present for access tracking purposes. We do not save the W bit as the
201 * PTEs being access tracked also need to be dirty tracked, so the W bit will be
202 * restored only when a write is attempted to the page.
203 */
204static const u64 shadow_acc_track_saved_bits_mask = PT64_EPT_READABLE_MASK |
205 PT64_EPT_EXECUTABLE_MASK;
206static const u64 shadow_acc_track_saved_bits_shift = PT64_SECOND_AVAIL_BITS_SHIFT;
207
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800208static void mmu_spte_set(u64 *sptep, u64 spte);
Avi Kivitye6765052012-07-08 17:16:30 +0300209static void mmu_free_roots(struct kvm_vcpu *vcpu);
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800210
Peter Feinerdcdca5f2017-06-30 17:26:30 -0700211void kvm_mmu_set_mmio_spte_mask(u64 mmio_mask, u64 mmio_value)
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800212{
Peter Feinerdcdca5f2017-06-30 17:26:30 -0700213 BUG_ON((mmio_mask & mmio_value) != mmio_value);
214 shadow_mmio_value = mmio_value | SPTE_SPECIAL_MASK;
Junaid Shahid312b6162016-12-21 20:29:29 -0800215 shadow_mmio_mask = mmio_mask | SPTE_SPECIAL_MASK;
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800216}
217EXPORT_SYMBOL_GPL(kvm_mmu_set_mmio_spte_mask);
218
Peter Feinerac8d57e2017-06-30 17:26:31 -0700219static inline bool sp_ad_disabled(struct kvm_mmu_page *sp)
220{
221 return sp->role.ad_disabled;
222}
223
224static inline bool spte_ad_enabled(u64 spte)
225{
226 MMU_WARN_ON((spte & shadow_mmio_mask) == shadow_mmio_value);
227 return !(spte & shadow_acc_track_value);
228}
229
230static inline u64 spte_shadow_accessed_mask(u64 spte)
231{
232 MMU_WARN_ON((spte & shadow_mmio_mask) == shadow_mmio_value);
233 return spte_ad_enabled(spte) ? shadow_accessed_mask : 0;
234}
235
236static inline u64 spte_shadow_dirty_mask(u64 spte)
237{
238 MMU_WARN_ON((spte & shadow_mmio_mask) == shadow_mmio_value);
239 return spte_ad_enabled(spte) ? shadow_dirty_mask : 0;
240}
241
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800242static inline bool is_access_track_spte(u64 spte)
243{
Peter Feinerac8d57e2017-06-30 17:26:31 -0700244 return !spte_ad_enabled(spte) && (spte & shadow_acc_track_mask) == 0;
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800245}
246
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800247/*
David Matlackee3d1572014-08-18 15:46:06 -0700248 * the low bit of the generation number is always presumed to be zero.
249 * This disables mmio caching during memslot updates. The concept is
250 * similar to a seqcount but instead of retrying the access we just punt
251 * and ignore the cache.
252 *
253 * spte bits 3-11 are used as bits 1-9 of the generation number,
254 * the bits 52-61 are used as bits 10-19 of the generation number.
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800255 */
David Matlackee3d1572014-08-18 15:46:06 -0700256#define MMIO_SPTE_GEN_LOW_SHIFT 2
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800257#define MMIO_SPTE_GEN_HIGH_SHIFT 52
258
David Matlackee3d1572014-08-18 15:46:06 -0700259#define MMIO_GEN_SHIFT 20
260#define MMIO_GEN_LOW_SHIFT 10
261#define MMIO_GEN_LOW_MASK ((1 << MMIO_GEN_LOW_SHIFT) - 2)
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800262#define MMIO_GEN_MASK ((1 << MMIO_GEN_SHIFT) - 1)
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800263
264static u64 generation_mmio_spte_mask(unsigned int gen)
265{
266 u64 mask;
267
Tiejun Chen842bb262014-11-18 17:14:38 +0800268 WARN_ON(gen & ~MMIO_GEN_MASK);
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800269
270 mask = (gen & MMIO_GEN_LOW_MASK) << MMIO_SPTE_GEN_LOW_SHIFT;
271 mask |= ((u64)gen >> MMIO_GEN_LOW_SHIFT) << MMIO_SPTE_GEN_HIGH_SHIFT;
272 return mask;
273}
274
275static unsigned int get_mmio_spte_generation(u64 spte)
276{
277 unsigned int gen;
278
279 spte &= ~shadow_mmio_mask;
280
281 gen = (spte >> MMIO_SPTE_GEN_LOW_SHIFT) & MMIO_GEN_LOW_MASK;
282 gen |= (spte >> MMIO_SPTE_GEN_HIGH_SHIFT) << MMIO_GEN_LOW_SHIFT;
283 return gen;
284}
285
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200286static unsigned int kvm_current_mmio_generation(struct kvm_vcpu *vcpu)
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800287{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200288 return kvm_vcpu_memslots(vcpu)->generation & MMIO_GEN_MASK;
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800289}
290
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200291static void mark_mmio_spte(struct kvm_vcpu *vcpu, u64 *sptep, u64 gfn,
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800292 unsigned access)
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800293{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200294 unsigned int gen = kvm_current_mmio_generation(vcpu);
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800295 u64 mask = generation_mmio_spte_mask(gen);
Takuya Yoshikawa95b04302013-03-12 17:44:40 +0900296
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800297 access &= ACC_WRITE_MASK | ACC_USER_MASK;
Peter Feinerdcdca5f2017-06-30 17:26:30 -0700298 mask |= shadow_mmio_value | access | gfn << PAGE_SHIFT;
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800299
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800300 trace_mark_mmio_spte(sptep, gfn, access, gen);
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800301 mmu_spte_set(sptep, mask);
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800302}
303
304static bool is_mmio_spte(u64 spte)
305{
Peter Feinerdcdca5f2017-06-30 17:26:30 -0700306 return (spte & shadow_mmio_mask) == shadow_mmio_value;
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800307}
308
309static gfn_t get_mmio_spte_gfn(u64 spte)
310{
Tiejun Chen842bb262014-11-18 17:14:38 +0800311 u64 mask = generation_mmio_spte_mask(MMIO_GEN_MASK) | shadow_mmio_mask;
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800312 return (spte & ~mask) >> PAGE_SHIFT;
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800313}
314
315static unsigned get_mmio_spte_access(u64 spte)
316{
Tiejun Chen842bb262014-11-18 17:14:38 +0800317 u64 mask = generation_mmio_spte_mask(MMIO_GEN_MASK) | shadow_mmio_mask;
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800318 return (spte & ~mask) & ~PAGE_MASK;
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800319}
320
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200321static bool set_mmio_spte(struct kvm_vcpu *vcpu, u64 *sptep, gfn_t gfn,
Dan Williamsba049e92016-01-15 16:56:11 -0800322 kvm_pfn_t pfn, unsigned access)
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800323{
324 if (unlikely(is_noslot_pfn(pfn))) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200325 mark_mmio_spte(vcpu, sptep, gfn, access);
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800326 return true;
327 }
328
329 return false;
330}
Avi Kivityc7addb92007-09-16 18:58:32 +0200331
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200332static bool check_mmio_spte(struct kvm_vcpu *vcpu, u64 spte)
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800333{
Xiao Guangrong089504c2013-06-07 16:51:27 +0800334 unsigned int kvm_gen, spte_gen;
335
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200336 kvm_gen = kvm_current_mmio_generation(vcpu);
Xiao Guangrong089504c2013-06-07 16:51:27 +0800337 spte_gen = get_mmio_spte_generation(spte);
338
339 trace_check_mmio_spte(spte, kvm_gen, spte_gen);
340 return likely(kvm_gen == spte_gen);
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800341}
342
Peter Feinerce000532017-06-30 17:26:29 -0700343/*
344 * Sets the shadow PTE masks used by the MMU.
345 *
346 * Assumptions:
347 * - Setting either @accessed_mask or @dirty_mask requires setting both
348 * - At least one of @accessed_mask or @acc_track_mask must be set
349 */
Sheng Yang7b523452008-04-25 21:13:50 +0800350void kvm_mmu_set_mask_ptes(u64 user_mask, u64 accessed_mask,
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800351 u64 dirty_mask, u64 nx_mask, u64 x_mask, u64 p_mask,
352 u64 acc_track_mask)
Sheng Yang7b523452008-04-25 21:13:50 +0800353{
Peter Feinerce000532017-06-30 17:26:29 -0700354 BUG_ON(!dirty_mask != !accessed_mask);
355 BUG_ON(!accessed_mask && !acc_track_mask);
Peter Feinerac8d57e2017-06-30 17:26:31 -0700356 BUG_ON(acc_track_mask & shadow_acc_track_value);
Junaid Shahid312b6162016-12-21 20:29:29 -0800357
Sheng Yang7b523452008-04-25 21:13:50 +0800358 shadow_user_mask = user_mask;
359 shadow_accessed_mask = accessed_mask;
360 shadow_dirty_mask = dirty_mask;
361 shadow_nx_mask = nx_mask;
362 shadow_x_mask = x_mask;
Bandan Dasffb128c2016-07-12 18:18:49 -0400363 shadow_present_mask = p_mask;
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800364 shadow_acc_track_mask = acc_track_mask;
Sheng Yang7b523452008-04-25 21:13:50 +0800365}
366EXPORT_SYMBOL_GPL(kvm_mmu_set_mask_ptes);
367
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800368void kvm_mmu_clear_all_pte_masks(void)
369{
370 shadow_user_mask = 0;
371 shadow_accessed_mask = 0;
372 shadow_dirty_mask = 0;
373 shadow_nx_mask = 0;
374 shadow_x_mask = 0;
375 shadow_mmio_mask = 0;
376 shadow_present_mask = 0;
377 shadow_acc_track_mask = 0;
378}
379
Avi Kivity6aa8b732006-12-10 02:21:36 -0800380static int is_cpuid_PSE36(void)
381{
382 return 1;
383}
384
Avi Kivity73b10872007-01-26 00:56:41 -0800385static int is_nx(struct kvm_vcpu *vcpu)
386{
Avi Kivityf6801df2010-01-21 15:31:50 +0200387 return vcpu->arch.efer & EFER_NX;
Avi Kivity73b10872007-01-26 00:56:41 -0800388}
389
Avi Kivityc7addb92007-09-16 18:58:32 +0200390static int is_shadow_present_pte(u64 pte)
391{
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800392 return (pte != 0) && !is_mmio_spte(pte);
Avi Kivityc7addb92007-09-16 18:58:32 +0200393}
394
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300395static int is_large_pte(u64 pte)
396{
397 return pte & PT_PAGE_SIZE_MASK;
398}
399
Marcelo Tosatti776e6632009-06-10 12:27:03 -0300400static int is_last_spte(u64 pte, int level)
401{
402 if (level == PT_PAGE_TABLE_LEVEL)
403 return 1;
Joerg Roedel852e3c12009-07-27 16:30:44 +0200404 if (is_large_pte(pte))
Marcelo Tosatti776e6632009-06-10 12:27:03 -0300405 return 1;
406 return 0;
407}
408
Junaid Shahidd3e328f2016-12-21 20:29:32 -0800409static bool is_executable_pte(u64 spte)
410{
411 return (spte & (shadow_x_mask | shadow_nx_mask)) == shadow_x_mask;
412}
413
Dan Williamsba049e92016-01-15 16:56:11 -0800414static kvm_pfn_t spte_to_pfn(u64 pte)
Avi Kivity0b49ea82008-03-23 15:06:23 +0200415{
Anthony Liguori35149e22008-04-02 14:46:56 -0500416 return (pte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT;
Avi Kivity0b49ea82008-03-23 15:06:23 +0200417}
418
Avi Kivityda9285212007-11-21 13:54:47 +0200419static gfn_t pse36_gfn_delta(u32 gpte)
420{
421 int shift = 32 - PT32_DIR_PSE36_SHIFT - PAGE_SHIFT;
422
423 return (gpte & PT32_DIR_PSE36_MASK) << shift;
424}
425
Xiao Guangrong603e0652011-07-12 03:31:28 +0800426#ifdef CONFIG_X86_64
Avi Kivityd555c332009-06-10 14:24:23 +0300427static void __set_spte(u64 *sptep, u64 spte)
Avi Kivitye663ee62007-05-31 15:46:04 +0300428{
Nadav Amitb19ee2f2016-05-11 08:04:29 -0700429 WRITE_ONCE(*sptep, spte);
Avi Kivitye663ee62007-05-31 15:46:04 +0300430}
431
Xiao Guangrong603e0652011-07-12 03:31:28 +0800432static void __update_clear_spte_fast(u64 *sptep, u64 spte)
Avi Kivitya9221dd2010-06-06 14:48:06 +0300433{
Nadav Amitb19ee2f2016-05-11 08:04:29 -0700434 WRITE_ONCE(*sptep, spte);
Avi Kivitya9221dd2010-06-06 14:48:06 +0300435}
436
Xiao Guangrong603e0652011-07-12 03:31:28 +0800437static u64 __update_clear_spte_slow(u64 *sptep, u64 spte)
438{
439 return xchg(sptep, spte);
440}
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800441
442static u64 __get_spte_lockless(u64 *sptep)
443{
444 return ACCESS_ONCE(*sptep);
445}
Xiao Guangrong603e0652011-07-12 03:31:28 +0800446#else
447union split_spte {
448 struct {
449 u32 spte_low;
450 u32 spte_high;
451 };
452 u64 spte;
453};
454
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800455static void count_spte_clear(u64 *sptep, u64 spte)
456{
457 struct kvm_mmu_page *sp = page_header(__pa(sptep));
458
459 if (is_shadow_present_pte(spte))
460 return;
461
462 /* Ensure the spte is completely set before we increase the count */
463 smp_wmb();
464 sp->clear_spte_count++;
465}
466
Xiao Guangrong603e0652011-07-12 03:31:28 +0800467static void __set_spte(u64 *sptep, u64 spte)
468{
469 union split_spte *ssptep, sspte;
470
471 ssptep = (union split_spte *)sptep;
472 sspte = (union split_spte)spte;
473
474 ssptep->spte_high = sspte.spte_high;
475
476 /*
477 * If we map the spte from nonpresent to present, We should store
478 * the high bits firstly, then set present bit, so cpu can not
479 * fetch this spte while we are setting the spte.
480 */
481 smp_wmb();
482
Nadav Amitb19ee2f2016-05-11 08:04:29 -0700483 WRITE_ONCE(ssptep->spte_low, sspte.spte_low);
Xiao Guangrong603e0652011-07-12 03:31:28 +0800484}
485
486static void __update_clear_spte_fast(u64 *sptep, u64 spte)
487{
488 union split_spte *ssptep, sspte;
489
490 ssptep = (union split_spte *)sptep;
491 sspte = (union split_spte)spte;
492
Nadav Amitb19ee2f2016-05-11 08:04:29 -0700493 WRITE_ONCE(ssptep->spte_low, sspte.spte_low);
Xiao Guangrong603e0652011-07-12 03:31:28 +0800494
495 /*
496 * If we map the spte from present to nonpresent, we should clear
497 * present bit firstly to avoid vcpu fetch the old high bits.
498 */
499 smp_wmb();
500
501 ssptep->spte_high = sspte.spte_high;
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800502 count_spte_clear(sptep, spte);
Xiao Guangrong603e0652011-07-12 03:31:28 +0800503}
504
505static u64 __update_clear_spte_slow(u64 *sptep, u64 spte)
506{
507 union split_spte *ssptep, sspte, orig;
508
509 ssptep = (union split_spte *)sptep;
510 sspte = (union split_spte)spte;
511
512 /* xchg acts as a barrier before the setting of the high bits */
513 orig.spte_low = xchg(&ssptep->spte_low, sspte.spte_low);
Zhao Jin41bc3182011-09-19 12:19:51 +0800514 orig.spte_high = ssptep->spte_high;
515 ssptep->spte_high = sspte.spte_high;
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800516 count_spte_clear(sptep, spte);
Xiao Guangrong603e0652011-07-12 03:31:28 +0800517
518 return orig.spte;
519}
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800520
521/*
522 * The idea using the light way get the spte on x86_32 guest is from
523 * gup_get_pte(arch/x86/mm/gup.c).
Xiao Guangrongaccaefe2013-06-19 17:09:20 +0800524 *
525 * An spte tlb flush may be pending, because kvm_set_pte_rmapp
526 * coalesces them and we are running out of the MMU lock. Therefore
527 * we need to protect against in-progress updates of the spte.
528 *
529 * Reading the spte while an update is in progress may get the old value
530 * for the high part of the spte. The race is fine for a present->non-present
531 * change (because the high part of the spte is ignored for non-present spte),
532 * but for a present->present change we must reread the spte.
533 *
534 * All such changes are done in two steps (present->non-present and
535 * non-present->present), hence it is enough to count the number of
536 * present->non-present updates: if it changed while reading the spte,
537 * we might have hit the race. This is done using clear_spte_count.
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800538 */
539static u64 __get_spte_lockless(u64 *sptep)
540{
541 struct kvm_mmu_page *sp = page_header(__pa(sptep));
542 union split_spte spte, *orig = (union split_spte *)sptep;
543 int count;
544
545retry:
546 count = sp->clear_spte_count;
547 smp_rmb();
548
549 spte.spte_low = orig->spte_low;
550 smp_rmb();
551
552 spte.spte_high = orig->spte_high;
553 smp_rmb();
554
555 if (unlikely(spte.spte_low != orig->spte_low ||
556 count != sp->clear_spte_count))
557 goto retry;
558
559 return spte.spte;
560}
Xiao Guangrong603e0652011-07-12 03:31:28 +0800561#endif
562
Junaid Shahidea4114b2016-12-06 16:46:11 -0800563static bool spte_can_locklessly_be_made_writable(u64 spte)
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800564{
Gleb Natapovfeb3eb72013-01-30 16:45:00 +0200565 return (spte & (SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE)) ==
566 (SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE);
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800567}
568
Xiao Guangrong8672b722010-08-02 16:14:04 +0800569static bool spte_has_volatile_bits(u64 spte)
570{
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800571 if (!is_shadow_present_pte(spte))
572 return false;
573
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800574 /*
Adam Buchbinder6a6256f2016-02-23 15:34:30 -0800575 * Always atomically update spte if it can be updated
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800576 * out of mmu-lock, it can ensure dirty bit is not lost,
577 * also, it can help us to get a stable is_writable_pte()
578 * to ensure tlb flush is not missed.
579 */
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800580 if (spte_can_locklessly_be_made_writable(spte) ||
581 is_access_track_spte(spte))
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800582 return true;
583
Peter Feinerac8d57e2017-06-30 17:26:31 -0700584 if (spte_ad_enabled(spte)) {
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800585 if ((spte & shadow_accessed_mask) == 0 ||
586 (is_writable_pte(spte) && (spte & shadow_dirty_mask) == 0))
587 return true;
588 }
Xiao Guangrong8672b722010-08-02 16:14:04 +0800589
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800590 return false;
Xiao Guangrong8672b722010-08-02 16:14:04 +0800591}
592
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800593static bool is_accessed_spte(u64 spte)
Xiao Guangrong41327792010-08-02 16:15:08 +0800594{
Peter Feinerac8d57e2017-06-30 17:26:31 -0700595 u64 accessed_mask = spte_shadow_accessed_mask(spte);
596
597 return accessed_mask ? spte & accessed_mask
598 : !is_access_track_spte(spte);
Xiao Guangrong41327792010-08-02 16:15:08 +0800599}
600
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800601static bool is_dirty_spte(u64 spte)
Kai Huang7e71a592015-01-09 16:44:30 +0800602{
Peter Feinerac8d57e2017-06-30 17:26:31 -0700603 u64 dirty_mask = spte_shadow_dirty_mask(spte);
604
605 return dirty_mask ? spte & dirty_mask : spte & PT_WRITABLE_MASK;
Kai Huang7e71a592015-01-09 16:44:30 +0800606}
607
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800608/* Rules for using mmu_spte_set:
609 * Set the sptep from nonpresent to present.
610 * Note: the sptep being assigned *must* be either not present
611 * or in a state where the hardware will not attempt to update
612 * the spte.
613 */
614static void mmu_spte_set(u64 *sptep, u64 new_spte)
615{
616 WARN_ON(is_shadow_present_pte(*sptep));
617 __set_spte(sptep, new_spte);
618}
619
Junaid Shahidf39a0582016-12-06 16:46:14 -0800620/*
621 * Update the SPTE (excluding the PFN), but do not track changes in its
622 * accessed/dirty status.
623 */
624static u64 mmu_spte_update_no_track(u64 *sptep, u64 new_spte)
625{
626 u64 old_spte = *sptep;
627
628 WARN_ON(!is_shadow_present_pte(new_spte));
629
630 if (!is_shadow_present_pte(old_spte)) {
631 mmu_spte_set(sptep, new_spte);
632 return old_spte;
633 }
634
635 if (!spte_has_volatile_bits(old_spte))
636 __update_clear_spte_fast(sptep, new_spte);
637 else
638 old_spte = __update_clear_spte_slow(sptep, new_spte);
639
640 WARN_ON(spte_to_pfn(old_spte) != spte_to_pfn(new_spte));
641
642 return old_spte;
643}
644
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800645/* Rules for using mmu_spte_update:
Andrea Gelminibb3541f2016-05-21 14:14:44 +0200646 * Update the state bits, it means the mapped pfn is not changed.
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800647 *
648 * Whenever we overwrite a writable spte with a read-only one we
649 * should flush remote TLBs. Otherwise rmap_write_protect
650 * will find a read-only spte, even though the writable spte
651 * might be cached on a CPU's TLB, the return value indicates this
652 * case.
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800653 *
654 * Returns true if the TLB needs to be flushed
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800655 */
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800656static bool mmu_spte_update(u64 *sptep, u64 new_spte)
Avi Kivityb79b93f2010-06-06 15:46:44 +0300657{
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800658 bool flush = false;
Junaid Shahidf39a0582016-12-06 16:46:14 -0800659 u64 old_spte = mmu_spte_update_no_track(sptep, new_spte);
Avi Kivityb79b93f2010-06-06 15:46:44 +0300660
Junaid Shahidf39a0582016-12-06 16:46:14 -0800661 if (!is_shadow_present_pte(old_spte))
662 return false;
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800663
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800664 /*
665 * For the spte updated out of mmu-lock is safe, since
Adam Buchbinder6a6256f2016-02-23 15:34:30 -0800666 * we always atomically update it, see the comments in
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800667 * spte_has_volatile_bits().
668 */
Junaid Shahidea4114b2016-12-06 16:46:11 -0800669 if (spte_can_locklessly_be_made_writable(old_spte) &&
Xiao Guangrong7f31c952014-04-17 17:06:15 +0800670 !is_writable_pte(new_spte))
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800671 flush = true;
Xiao Guangrong41327792010-08-02 16:15:08 +0800672
Kai Huang7e71a592015-01-09 16:44:30 +0800673 /*
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800674 * Flush TLB when accessed/dirty states are changed in the page tables,
Kai Huang7e71a592015-01-09 16:44:30 +0800675 * to guarantee consistency between TLB and page tables.
676 */
Kai Huang7e71a592015-01-09 16:44:30 +0800677
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800678 if (is_accessed_spte(old_spte) && !is_accessed_spte(new_spte)) {
679 flush = true;
Xiao Guangrong41327792010-08-02 16:15:08 +0800680 kvm_set_pfn_accessed(spte_to_pfn(old_spte));
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800681 }
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800682
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800683 if (is_dirty_spte(old_spte) && !is_dirty_spte(new_spte)) {
684 flush = true;
685 kvm_set_pfn_dirty(spte_to_pfn(old_spte));
686 }
687
688 return flush;
Avi Kivityb79b93f2010-06-06 15:46:44 +0300689}
690
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800691/*
692 * Rules for using mmu_spte_clear_track_bits:
693 * It sets the sptep from present to nonpresent, and track the
694 * state bits, it is used to clear the last level sptep.
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800695 * Returns non-zero if the PTE was previously valid.
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800696 */
697static int mmu_spte_clear_track_bits(u64 *sptep)
698{
Dan Williamsba049e92016-01-15 16:56:11 -0800699 kvm_pfn_t pfn;
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800700 u64 old_spte = *sptep;
701
702 if (!spte_has_volatile_bits(old_spte))
Xiao Guangrong603e0652011-07-12 03:31:28 +0800703 __update_clear_spte_fast(sptep, 0ull);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800704 else
Xiao Guangrong603e0652011-07-12 03:31:28 +0800705 old_spte = __update_clear_spte_slow(sptep, 0ull);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800706
Takuya Yoshikawaafd28fe2015-11-20 17:44:55 +0900707 if (!is_shadow_present_pte(old_spte))
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800708 return 0;
709
710 pfn = spte_to_pfn(old_spte);
Xiao Guangrong86fde742012-07-17 21:52:52 +0800711
712 /*
713 * KVM does not hold the refcount of the page used by
714 * kvm mmu, before reclaiming the page, we should
715 * unmap it from mmu first.
716 */
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +0000717 WARN_ON(!kvm_is_reserved_pfn(pfn) && !page_count(pfn_to_page(pfn)));
Xiao Guangrong86fde742012-07-17 21:52:52 +0800718
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800719 if (is_accessed_spte(old_spte))
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800720 kvm_set_pfn_accessed(pfn);
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800721
722 if (is_dirty_spte(old_spte))
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800723 kvm_set_pfn_dirty(pfn);
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800724
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800725 return 1;
726}
727
728/*
729 * Rules for using mmu_spte_clear_no_track:
730 * Directly clear spte without caring the state bits of sptep,
731 * it is used to set the upper level spte.
732 */
733static void mmu_spte_clear_no_track(u64 *sptep)
734{
Xiao Guangrong603e0652011-07-12 03:31:28 +0800735 __update_clear_spte_fast(sptep, 0ull);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800736}
737
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800738static u64 mmu_spte_get_lockless(u64 *sptep)
739{
740 return __get_spte_lockless(sptep);
741}
742
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800743static u64 mark_spte_for_access_track(u64 spte)
744{
Peter Feinerac8d57e2017-06-30 17:26:31 -0700745 if (spte_ad_enabled(spte))
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800746 return spte & ~shadow_accessed_mask;
747
Peter Feinerac8d57e2017-06-30 17:26:31 -0700748 if (is_access_track_spte(spte))
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800749 return spte;
750
751 /*
Junaid Shahid20d65232016-12-21 20:29:31 -0800752 * Making an Access Tracking PTE will result in removal of write access
753 * from the PTE. So, verify that we will be able to restore the write
754 * access in the fast page fault path later on.
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800755 */
756 WARN_ONCE((spte & PT_WRITABLE_MASK) &&
757 !spte_can_locklessly_be_made_writable(spte),
758 "kvm: Writable SPTE is not locklessly dirty-trackable\n");
759
760 WARN_ONCE(spte & (shadow_acc_track_saved_bits_mask <<
761 shadow_acc_track_saved_bits_shift),
762 "kvm: Access Tracking saved bit locations are not zero\n");
763
764 spte |= (spte & shadow_acc_track_saved_bits_mask) <<
765 shadow_acc_track_saved_bits_shift;
766 spte &= ~shadow_acc_track_mask;
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800767
768 return spte;
769}
770
Junaid Shahidd3e328f2016-12-21 20:29:32 -0800771/* Restore an acc-track PTE back to a regular PTE */
772static u64 restore_acc_track_spte(u64 spte)
773{
774 u64 new_spte = spte;
775 u64 saved_bits = (spte >> shadow_acc_track_saved_bits_shift)
776 & shadow_acc_track_saved_bits_mask;
777
Peter Feinerac8d57e2017-06-30 17:26:31 -0700778 WARN_ON_ONCE(spte_ad_enabled(spte));
Junaid Shahidd3e328f2016-12-21 20:29:32 -0800779 WARN_ON_ONCE(!is_access_track_spte(spte));
780
781 new_spte &= ~shadow_acc_track_mask;
782 new_spte &= ~(shadow_acc_track_saved_bits_mask <<
783 shadow_acc_track_saved_bits_shift);
784 new_spte |= saved_bits;
785
786 return new_spte;
787}
788
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800789/* Returns the Accessed status of the PTE and resets it at the same time. */
790static bool mmu_spte_age(u64 *sptep)
791{
792 u64 spte = mmu_spte_get_lockless(sptep);
793
794 if (!is_accessed_spte(spte))
795 return false;
796
Peter Feinerac8d57e2017-06-30 17:26:31 -0700797 if (spte_ad_enabled(spte)) {
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800798 clear_bit((ffs(shadow_accessed_mask) - 1),
799 (unsigned long *)sptep);
800 } else {
801 /*
802 * Capture the dirty status of the page, so that it doesn't get
803 * lost when the SPTE is marked for access tracking.
804 */
805 if (is_writable_pte(spte))
806 kvm_set_pfn_dirty(spte_to_pfn(spte));
807
808 spte = mark_spte_for_access_track(spte);
809 mmu_spte_update_no_track(sptep, spte);
810 }
811
812 return true;
813}
814
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800815static void walk_shadow_page_lockless_begin(struct kvm_vcpu *vcpu)
816{
Avi Kivityc1427862012-05-14 15:44:06 +0300817 /*
818 * Prevent page table teardown by making any free-er wait during
819 * kvm_flush_remote_tlbs() IPI to all active vcpus.
820 */
821 local_irq_disable();
Lan Tianyu36ca7e02016-03-13 11:10:25 +0800822
Avi Kivityc1427862012-05-14 15:44:06 +0300823 /*
824 * Make sure a following spte read is not reordered ahead of the write
825 * to vcpu->mode.
826 */
Lan Tianyu36ca7e02016-03-13 11:10:25 +0800827 smp_store_mb(vcpu->mode, READING_SHADOW_PAGE_TABLES);
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800828}
829
830static void walk_shadow_page_lockless_end(struct kvm_vcpu *vcpu)
831{
Avi Kivityc1427862012-05-14 15:44:06 +0300832 /*
833 * Make sure the write to vcpu->mode is not reordered in front of
834 * reads to sptes. If it does, kvm_commit_zap_page() can see us
835 * OUTSIDE_GUEST_MODE and proceed to free the shadow page table.
836 */
Lan Tianyu36ca7e02016-03-13 11:10:25 +0800837 smp_store_release(&vcpu->mode, OUTSIDE_GUEST_MODE);
Avi Kivityc1427862012-05-14 15:44:06 +0300838 local_irq_enable();
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800839}
840
Avi Kivitye2dec932007-01-05 16:36:54 -0800841static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300842 struct kmem_cache *base_cache, int min)
Avi Kivity714b93d2007-01-05 16:36:53 -0800843{
844 void *obj;
845
846 if (cache->nobjs >= min)
Avi Kivitye2dec932007-01-05 16:36:54 -0800847 return 0;
Avi Kivity714b93d2007-01-05 16:36:53 -0800848 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
Avi Kivity2e3e5882007-09-10 11:28:17 +0300849 obj = kmem_cache_zalloc(base_cache, GFP_KERNEL);
Avi Kivity714b93d2007-01-05 16:36:53 -0800850 if (!obj)
Avi Kivitye2dec932007-01-05 16:36:54 -0800851 return -ENOMEM;
Avi Kivity714b93d2007-01-05 16:36:53 -0800852 cache->objects[cache->nobjs++] = obj;
853 }
Avi Kivitye2dec932007-01-05 16:36:54 -0800854 return 0;
Avi Kivity714b93d2007-01-05 16:36:53 -0800855}
856
Xiao Guangrongf759e2b2011-09-22 16:53:17 +0800857static int mmu_memory_cache_free_objects(struct kvm_mmu_memory_cache *cache)
858{
859 return cache->nobjs;
860}
861
Xiao Guangronge8ad9a72010-05-13 10:06:02 +0800862static void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc,
863 struct kmem_cache *cache)
Avi Kivity714b93d2007-01-05 16:36:53 -0800864{
865 while (mc->nobjs)
Xiao Guangronge8ad9a72010-05-13 10:06:02 +0800866 kmem_cache_free(cache, mc->objects[--mc->nobjs]);
Avi Kivity714b93d2007-01-05 16:36:53 -0800867}
868
Avi Kivityc1158e62007-07-20 08:18:27 +0300869static int mmu_topup_memory_cache_page(struct kvm_mmu_memory_cache *cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300870 int min)
Avi Kivityc1158e62007-07-20 08:18:27 +0300871{
Xiao Guangrong842f22e2011-03-04 19:01:10 +0800872 void *page;
Avi Kivityc1158e62007-07-20 08:18:27 +0300873
874 if (cache->nobjs >= min)
875 return 0;
876 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
Xiao Guangrong842f22e2011-03-04 19:01:10 +0800877 page = (void *)__get_free_page(GFP_KERNEL);
Avi Kivityc1158e62007-07-20 08:18:27 +0300878 if (!page)
879 return -ENOMEM;
Xiao Guangrong842f22e2011-03-04 19:01:10 +0800880 cache->objects[cache->nobjs++] = page;
Avi Kivityc1158e62007-07-20 08:18:27 +0300881 }
882 return 0;
883}
884
885static void mmu_free_memory_cache_page(struct kvm_mmu_memory_cache *mc)
886{
887 while (mc->nobjs)
Avi Kivityc4d198d2007-07-21 09:06:46 +0300888 free_page((unsigned long)mc->objects[--mc->nobjs]);
Avi Kivityc1158e62007-07-20 08:18:27 +0300889}
890
Avi Kivity8c438502007-04-16 11:53:17 +0300891static int mmu_topup_memory_caches(struct kvm_vcpu *vcpu)
892{
893 int r;
894
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800895 r = mmu_topup_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache,
Xiao Guangrong67052b32011-05-15 23:27:08 +0800896 pte_list_desc_cache, 8 + PTE_PREFETCH_NUM);
Avi Kivity2e3e5882007-09-10 11:28:17 +0300897 if (r)
898 goto out;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800899 r = mmu_topup_memory_cache_page(&vcpu->arch.mmu_page_cache, 8);
Avi Kivity2e3e5882007-09-10 11:28:17 +0300900 if (r)
901 goto out;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800902 r = mmu_topup_memory_cache(&vcpu->arch.mmu_page_header_cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300903 mmu_page_header_cache, 4);
904out:
Avi Kivity8c438502007-04-16 11:53:17 +0300905 return r;
906}
907
Avi Kivity714b93d2007-01-05 16:36:53 -0800908static void mmu_free_memory_caches(struct kvm_vcpu *vcpu)
909{
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800910 mmu_free_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache,
911 pte_list_desc_cache);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800912 mmu_free_memory_cache_page(&vcpu->arch.mmu_page_cache);
Xiao Guangronge8ad9a72010-05-13 10:06:02 +0800913 mmu_free_memory_cache(&vcpu->arch.mmu_page_header_cache,
914 mmu_page_header_cache);
Avi Kivity714b93d2007-01-05 16:36:53 -0800915}
916
Takuya Yoshikawa80feb892012-05-29 23:54:26 +0900917static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc)
Avi Kivity714b93d2007-01-05 16:36:53 -0800918{
919 void *p;
920
921 BUG_ON(!mc->nobjs);
922 p = mc->objects[--mc->nobjs];
Avi Kivity714b93d2007-01-05 16:36:53 -0800923 return p;
924}
925
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800926static struct pte_list_desc *mmu_alloc_pte_list_desc(struct kvm_vcpu *vcpu)
Avi Kivity714b93d2007-01-05 16:36:53 -0800927{
Takuya Yoshikawa80feb892012-05-29 23:54:26 +0900928 return mmu_memory_cache_alloc(&vcpu->arch.mmu_pte_list_desc_cache);
Avi Kivity714b93d2007-01-05 16:36:53 -0800929}
930
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800931static void mmu_free_pte_list_desc(struct pte_list_desc *pte_list_desc)
Avi Kivity714b93d2007-01-05 16:36:53 -0800932{
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800933 kmem_cache_free(pte_list_desc_cache, pte_list_desc);
Avi Kivity714b93d2007-01-05 16:36:53 -0800934}
935
Lai Jiangshan2032a932010-05-26 16:49:59 +0800936static gfn_t kvm_mmu_page_get_gfn(struct kvm_mmu_page *sp, int index)
937{
938 if (!sp->role.direct)
939 return sp->gfns[index];
940
941 return sp->gfn + (index << ((sp->role.level - 1) * PT64_LEVEL_BITS));
942}
943
944static void kvm_mmu_page_set_gfn(struct kvm_mmu_page *sp, int index, gfn_t gfn)
945{
946 if (sp->role.direct)
947 BUG_ON(gfn != kvm_mmu_page_get_gfn(sp, index));
948 else
949 sp->gfns[index] = gfn;
950}
951
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800952/*
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900953 * Return the pointer to the large page information for a given gfn,
954 * handling slots that are not large page aligned.
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300955 */
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900956static struct kvm_lpage_info *lpage_info_slot(gfn_t gfn,
957 struct kvm_memory_slot *slot,
958 int level)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300959{
960 unsigned long idx;
961
Takuya Yoshikawafb03cb62012-02-08 12:59:10 +0900962 idx = gfn_to_index(gfn, slot->base_gfn, level);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900963 return &slot->arch.lpage_info[level - 2][idx];
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300964}
965
Xiao Guangrong547ffae2016-02-24 17:51:07 +0800966static void update_gfn_disallow_lpage_count(struct kvm_memory_slot *slot,
967 gfn_t gfn, int count)
968{
969 struct kvm_lpage_info *linfo;
970 int i;
971
972 for (i = PT_DIRECTORY_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) {
973 linfo = lpage_info_slot(gfn, slot, i);
974 linfo->disallow_lpage += count;
975 WARN_ON(linfo->disallow_lpage < 0);
976 }
977}
978
979void kvm_mmu_gfn_disallow_lpage(struct kvm_memory_slot *slot, gfn_t gfn)
980{
981 update_gfn_disallow_lpage_count(slot, gfn, 1);
982}
983
984void kvm_mmu_gfn_allow_lpage(struct kvm_memory_slot *slot, gfn_t gfn)
985{
986 update_gfn_disallow_lpage_count(slot, gfn, -1);
987}
988
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200989static void account_shadowed(struct kvm *kvm, struct kvm_mmu_page *sp)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300990{
Paolo Bonzini699023e2015-05-18 15:03:39 +0200991 struct kvm_memslots *slots;
Joerg Roedeld25797b2009-07-27 16:30:43 +0200992 struct kvm_memory_slot *slot;
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200993 gfn_t gfn;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300994
Xiao Guangrong56ca57f2016-02-24 17:51:14 +0800995 kvm->arch.indirect_shadow_pages++;
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200996 gfn = sp->gfn;
Paolo Bonzini699023e2015-05-18 15:03:39 +0200997 slots = kvm_memslots_for_spte_role(kvm, sp->role);
998 slot = __gfn_to_memslot(slots, gfn);
Xiao Guangrong56ca57f2016-02-24 17:51:14 +0800999
1000 /* the non-leaf shadow pages are keeping readonly. */
1001 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
1002 return kvm_slot_page_track_add_page(kvm, slot, gfn,
1003 KVM_PAGE_TRACK_WRITE);
1004
Xiao Guangrong547ffae2016-02-24 17:51:07 +08001005 kvm_mmu_gfn_disallow_lpage(slot, gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001006}
1007
Paolo Bonzini3ed1a472015-05-19 16:29:22 +02001008static void unaccount_shadowed(struct kvm *kvm, struct kvm_mmu_page *sp)
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001009{
Paolo Bonzini699023e2015-05-18 15:03:39 +02001010 struct kvm_memslots *slots;
Joerg Roedeld25797b2009-07-27 16:30:43 +02001011 struct kvm_memory_slot *slot;
Paolo Bonzini3ed1a472015-05-19 16:29:22 +02001012 gfn_t gfn;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001013
Xiao Guangrong56ca57f2016-02-24 17:51:14 +08001014 kvm->arch.indirect_shadow_pages--;
Paolo Bonzini3ed1a472015-05-19 16:29:22 +02001015 gfn = sp->gfn;
Paolo Bonzini699023e2015-05-18 15:03:39 +02001016 slots = kvm_memslots_for_spte_role(kvm, sp->role);
1017 slot = __gfn_to_memslot(slots, gfn);
Xiao Guangrong56ca57f2016-02-24 17:51:14 +08001018 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
1019 return kvm_slot_page_track_remove_page(kvm, slot, gfn,
1020 KVM_PAGE_TRACK_WRITE);
1021
Xiao Guangrong547ffae2016-02-24 17:51:07 +08001022 kvm_mmu_gfn_allow_lpage(slot, gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001023}
1024
Xiao Guangrong92f94f12016-02-24 17:51:06 +08001025static bool __mmu_gfn_lpage_is_disallowed(gfn_t gfn, int level,
1026 struct kvm_memory_slot *slot)
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001027{
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +09001028 struct kvm_lpage_info *linfo;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001029
1030 if (slot) {
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +09001031 linfo = lpage_info_slot(gfn, slot, level);
Xiao Guangrong92f94f12016-02-24 17:51:06 +08001032 return !!linfo->disallow_lpage;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001033 }
1034
Xiao Guangrong92f94f12016-02-24 17:51:06 +08001035 return true;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001036}
1037
Xiao Guangrong92f94f12016-02-24 17:51:06 +08001038static bool mmu_gfn_lpage_is_disallowed(struct kvm_vcpu *vcpu, gfn_t gfn,
1039 int level)
Takuya Yoshikawa5225fdf2015-10-16 17:08:03 +09001040{
1041 struct kvm_memory_slot *slot;
1042
1043 slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
Xiao Guangrong92f94f12016-02-24 17:51:06 +08001044 return __mmu_gfn_lpage_is_disallowed(gfn, level, slot);
Takuya Yoshikawa5225fdf2015-10-16 17:08:03 +09001045}
1046
Joerg Roedeld25797b2009-07-27 16:30:43 +02001047static int host_mapping_level(struct kvm *kvm, gfn_t gfn)
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001048{
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +01001049 unsigned long page_size;
Joerg Roedeld25797b2009-07-27 16:30:43 +02001050 int i, ret = 0;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001051
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +01001052 page_size = kvm_host_page_size(kvm, gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001053
Xiao Guangrong8a3d08f2015-05-13 14:42:21 +08001054 for (i = PT_PAGE_TABLE_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) {
Joerg Roedeld25797b2009-07-27 16:30:43 +02001055 if (page_size >= KVM_HPAGE_SIZE(i))
1056 ret = i;
1057 else
1058 break;
1059 }
1060
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03001061 return ret;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001062}
1063
Takuya Yoshikawad8aacf52015-10-16 17:07:01 +09001064static inline bool memslot_valid_for_gpte(struct kvm_memory_slot *slot,
1065 bool no_dirty_log)
1066{
1067 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
1068 return false;
1069 if (no_dirty_log && slot->dirty_bitmap)
1070 return false;
1071
1072 return true;
1073}
1074
Xiao Guangrong5d163b12011-03-09 15:43:00 +08001075static struct kvm_memory_slot *
1076gfn_to_memslot_dirty_bitmap(struct kvm_vcpu *vcpu, gfn_t gfn,
1077 bool no_dirty_log)
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001078{
1079 struct kvm_memory_slot *slot;
Xiao Guangrong5d163b12011-03-09 15:43:00 +08001080
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02001081 slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
Takuya Yoshikawad8aacf52015-10-16 17:07:01 +09001082 if (!memslot_valid_for_gpte(slot, no_dirty_log))
Xiao Guangrong5d163b12011-03-09 15:43:00 +08001083 slot = NULL;
1084
1085 return slot;
1086}
1087
Takuya Yoshikawafd136902015-10-16 17:06:02 +09001088static int mapping_level(struct kvm_vcpu *vcpu, gfn_t large_gfn,
1089 bool *force_pt_level)
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08001090{
1091 int host_level, level, max_level;
Takuya Yoshikawad8aacf52015-10-16 17:07:01 +09001092 struct kvm_memory_slot *slot;
1093
Takuya Yoshikawa8c85ac12015-10-19 15:13:29 +09001094 if (unlikely(*force_pt_level))
1095 return PT_PAGE_TABLE_LEVEL;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001096
Takuya Yoshikawa8c85ac12015-10-19 15:13:29 +09001097 slot = kvm_vcpu_gfn_to_memslot(vcpu, large_gfn);
1098 *force_pt_level = !memslot_valid_for_gpte(slot, true);
Takuya Yoshikawafd136902015-10-16 17:06:02 +09001099 if (unlikely(*force_pt_level))
1100 return PT_PAGE_TABLE_LEVEL;
1101
Joerg Roedeld25797b2009-07-27 16:30:43 +02001102 host_level = host_mapping_level(vcpu->kvm, large_gfn);
1103
1104 if (host_level == PT_PAGE_TABLE_LEVEL)
1105 return host_level;
1106
Xiao Guangrong55dd98c2013-02-05 15:26:54 +08001107 max_level = min(kvm_x86_ops->get_lpage_level(), host_level);
Sheng Yang878403b2010-01-05 19:02:29 +08001108
1109 for (level = PT_DIRECTORY_LEVEL; level <= max_level; ++level)
Xiao Guangrong92f94f12016-02-24 17:51:06 +08001110 if (__mmu_gfn_lpage_is_disallowed(large_gfn, level, slot))
Joerg Roedeld25797b2009-07-27 16:30:43 +02001111 break;
Joerg Roedeld25797b2009-07-27 16:30:43 +02001112
1113 return level - 1;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001114}
1115
1116/*
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001117 * About rmap_head encoding:
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001118 *
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001119 * If the bit zero of rmap_head->val is clear, then it points to the only spte
1120 * in this rmap chain. Otherwise, (rmap_head->val & ~1) points to a struct
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001121 * pte_list_desc containing more mappings.
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001122 */
1123
1124/*
1125 * Returns the number of pointers in the rmap chain, not counting the new one.
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001126 */
1127static int pte_list_add(struct kvm_vcpu *vcpu, u64 *spte,
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001128 struct kvm_rmap_head *rmap_head)
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001129{
1130 struct pte_list_desc *desc;
1131 int i, count = 0;
1132
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001133 if (!rmap_head->val) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001134 rmap_printk("pte_list_add: %p %llx 0->1\n", spte, *spte);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001135 rmap_head->val = (unsigned long)spte;
1136 } else if (!(rmap_head->val & 1)) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001137 rmap_printk("pte_list_add: %p %llx 1->many\n", spte, *spte);
1138 desc = mmu_alloc_pte_list_desc(vcpu);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001139 desc->sptes[0] = (u64 *)rmap_head->val;
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001140 desc->sptes[1] = spte;
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001141 rmap_head->val = (unsigned long)desc | 1;
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001142 ++count;
1143 } else {
1144 rmap_printk("pte_list_add: %p %llx many->many\n", spte, *spte);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001145 desc = (struct pte_list_desc *)(rmap_head->val & ~1ul);
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001146 while (desc->sptes[PTE_LIST_EXT-1] && desc->more) {
1147 desc = desc->more;
1148 count += PTE_LIST_EXT;
1149 }
1150 if (desc->sptes[PTE_LIST_EXT-1]) {
1151 desc->more = mmu_alloc_pte_list_desc(vcpu);
1152 desc = desc->more;
1153 }
1154 for (i = 0; desc->sptes[i]; ++i)
1155 ++count;
1156 desc->sptes[i] = spte;
1157 }
1158 return count;
1159}
1160
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001161static void
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001162pte_list_desc_remove_entry(struct kvm_rmap_head *rmap_head,
1163 struct pte_list_desc *desc, int i,
1164 struct pte_list_desc *prev_desc)
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001165{
1166 int j;
1167
1168 for (j = PTE_LIST_EXT - 1; !desc->sptes[j] && j > i; --j)
1169 ;
1170 desc->sptes[i] = desc->sptes[j];
1171 desc->sptes[j] = NULL;
1172 if (j != 0)
1173 return;
1174 if (!prev_desc && !desc->more)
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001175 rmap_head->val = (unsigned long)desc->sptes[0];
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001176 else
1177 if (prev_desc)
1178 prev_desc->more = desc->more;
1179 else
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001180 rmap_head->val = (unsigned long)desc->more | 1;
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001181 mmu_free_pte_list_desc(desc);
1182}
1183
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001184static void pte_list_remove(u64 *spte, struct kvm_rmap_head *rmap_head)
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001185{
1186 struct pte_list_desc *desc;
1187 struct pte_list_desc *prev_desc;
1188 int i;
1189
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001190 if (!rmap_head->val) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001191 printk(KERN_ERR "pte_list_remove: %p 0->BUG\n", spte);
1192 BUG();
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001193 } else if (!(rmap_head->val & 1)) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001194 rmap_printk("pte_list_remove: %p 1->0\n", spte);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001195 if ((u64 *)rmap_head->val != spte) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001196 printk(KERN_ERR "pte_list_remove: %p 1->BUG\n", spte);
1197 BUG();
1198 }
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001199 rmap_head->val = 0;
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001200 } else {
1201 rmap_printk("pte_list_remove: %p many->many\n", spte);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001202 desc = (struct pte_list_desc *)(rmap_head->val & ~1ul);
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001203 prev_desc = NULL;
1204 while (desc) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001205 for (i = 0; i < PTE_LIST_EXT && desc->sptes[i]; ++i) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001206 if (desc->sptes[i] == spte) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001207 pte_list_desc_remove_entry(rmap_head,
1208 desc, i, prev_desc);
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001209 return;
1210 }
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001211 }
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001212 prev_desc = desc;
1213 desc = desc->more;
1214 }
1215 pr_err("pte_list_remove: %p many->many\n", spte);
1216 BUG();
1217 }
1218}
1219
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001220static struct kvm_rmap_head *__gfn_to_rmap(gfn_t gfn, int level,
1221 struct kvm_memory_slot *slot)
Takuya Yoshikawa9b9b1492011-11-14 18:22:28 +09001222{
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09001223 unsigned long idx;
Takuya Yoshikawa9b9b1492011-11-14 18:22:28 +09001224
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09001225 idx = gfn_to_index(gfn, slot->base_gfn, level);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09001226 return &slot->arch.rmap[level - PT_PAGE_TABLE_LEVEL][idx];
Takuya Yoshikawa9b9b1492011-11-14 18:22:28 +09001227}
1228
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001229static struct kvm_rmap_head *gfn_to_rmap(struct kvm *kvm, gfn_t gfn,
1230 struct kvm_mmu_page *sp)
Izik Eidus290fc382007-09-27 14:11:22 +02001231{
Paolo Bonzini699023e2015-05-18 15:03:39 +02001232 struct kvm_memslots *slots;
Izik Eidus290fc382007-09-27 14:11:22 +02001233 struct kvm_memory_slot *slot;
1234
Paolo Bonzini699023e2015-05-18 15:03:39 +02001235 slots = kvm_memslots_for_spte_role(kvm, sp->role);
1236 slot = __gfn_to_memslot(slots, gfn);
Paolo Bonzinie4cd1da2015-05-18 15:11:46 +02001237 return __gfn_to_rmap(gfn, sp->role.level, slot);
Izik Eidus290fc382007-09-27 14:11:22 +02001238}
1239
Xiao Guangrongf759e2b2011-09-22 16:53:17 +08001240static bool rmap_can_add(struct kvm_vcpu *vcpu)
1241{
1242 struct kvm_mmu_memory_cache *cache;
1243
1244 cache = &vcpu->arch.mmu_pte_list_desc_cache;
1245 return mmu_memory_cache_free_objects(cache);
1246}
1247
Joerg Roedel44ad9942009-07-27 16:30:42 +02001248static int rmap_add(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn)
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001249{
Avi Kivity4db35312007-11-21 15:28:32 +02001250 struct kvm_mmu_page *sp;
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001251 struct kvm_rmap_head *rmap_head;
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001252
Avi Kivity4db35312007-11-21 15:28:32 +02001253 sp = page_header(__pa(spte));
Lai Jiangshan2032a932010-05-26 16:49:59 +08001254 kvm_mmu_page_set_gfn(sp, spte - sp->spt, gfn);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001255 rmap_head = gfn_to_rmap(vcpu->kvm, gfn, sp);
1256 return pte_list_add(vcpu, spte, rmap_head);
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001257}
1258
Izik Eidus290fc382007-09-27 14:11:22 +02001259static void rmap_remove(struct kvm *kvm, u64 *spte)
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001260{
Avi Kivity4db35312007-11-21 15:28:32 +02001261 struct kvm_mmu_page *sp;
Lai Jiangshan2032a932010-05-26 16:49:59 +08001262 gfn_t gfn;
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001263 struct kvm_rmap_head *rmap_head;
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001264
Avi Kivity4db35312007-11-21 15:28:32 +02001265 sp = page_header(__pa(spte));
Lai Jiangshan2032a932010-05-26 16:49:59 +08001266 gfn = kvm_mmu_page_get_gfn(sp, spte - sp->spt);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001267 rmap_head = gfn_to_rmap(kvm, gfn, sp);
1268 pte_list_remove(spte, rmap_head);
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001269}
1270
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001271/*
1272 * Used by the following functions to iterate through the sptes linked by a
1273 * rmap. All fields are private and not assumed to be used outside.
1274 */
1275struct rmap_iterator {
1276 /* private fields */
1277 struct pte_list_desc *desc; /* holds the sptep if not NULL */
1278 int pos; /* index of the sptep */
1279};
1280
1281/*
1282 * Iteration must be started by this function. This should also be used after
1283 * removing/dropping sptes from the rmap link because in such cases the
1284 * information in the itererator may not be valid.
1285 *
1286 * Returns sptep if found, NULL otherwise.
1287 */
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001288static u64 *rmap_get_first(struct kvm_rmap_head *rmap_head,
1289 struct rmap_iterator *iter)
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001290{
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001291 u64 *sptep;
1292
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001293 if (!rmap_head->val)
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001294 return NULL;
1295
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001296 if (!(rmap_head->val & 1)) {
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001297 iter->desc = NULL;
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001298 sptep = (u64 *)rmap_head->val;
1299 goto out;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001300 }
1301
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001302 iter->desc = (struct pte_list_desc *)(rmap_head->val & ~1ul);
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001303 iter->pos = 0;
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001304 sptep = iter->desc->sptes[iter->pos];
1305out:
1306 BUG_ON(!is_shadow_present_pte(*sptep));
1307 return sptep;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001308}
1309
1310/*
1311 * Must be used with a valid iterator: e.g. after rmap_get_first().
1312 *
1313 * Returns sptep if found, NULL otherwise.
1314 */
1315static u64 *rmap_get_next(struct rmap_iterator *iter)
1316{
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001317 u64 *sptep;
1318
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001319 if (iter->desc) {
1320 if (iter->pos < PTE_LIST_EXT - 1) {
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001321 ++iter->pos;
1322 sptep = iter->desc->sptes[iter->pos];
1323 if (sptep)
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001324 goto out;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001325 }
1326
1327 iter->desc = iter->desc->more;
1328
1329 if (iter->desc) {
1330 iter->pos = 0;
1331 /* desc->sptes[0] cannot be NULL */
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001332 sptep = iter->desc->sptes[iter->pos];
1333 goto out;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001334 }
1335 }
1336
1337 return NULL;
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001338out:
1339 BUG_ON(!is_shadow_present_pte(*sptep));
1340 return sptep;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001341}
1342
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001343#define for_each_rmap_spte(_rmap_head_, _iter_, _spte_) \
1344 for (_spte_ = rmap_get_first(_rmap_head_, _iter_); \
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001345 _spte_; _spte_ = rmap_get_next(_iter_))
Xiao Guangrong0d536792015-05-13 14:42:20 +08001346
Xiao Guangrongc3707952011-07-12 03:28:04 +08001347static void drop_spte(struct kvm *kvm, u64 *sptep)
Xiao Guangronge4b502e2010-07-16 11:28:09 +08001348{
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +08001349 if (mmu_spte_clear_track_bits(sptep))
Marcelo Tosattieb45fda2010-10-25 11:58:22 -02001350 rmap_remove(kvm, sptep);
Avi Kivitybe38d272010-06-06 14:31:27 +03001351}
1352
Xiao Guangrong8e22f952012-06-20 15:57:39 +08001353
1354static bool __drop_large_spte(struct kvm *kvm, u64 *sptep)
1355{
1356 if (is_large_pte(*sptep)) {
1357 WARN_ON(page_header(__pa(sptep))->role.level ==
1358 PT_PAGE_TABLE_LEVEL);
1359 drop_spte(kvm, sptep);
1360 --kvm->stat.lpages;
1361 return true;
1362 }
1363
1364 return false;
1365}
1366
1367static void drop_large_spte(struct kvm_vcpu *vcpu, u64 *sptep)
1368{
1369 if (__drop_large_spte(vcpu->kvm, sptep))
1370 kvm_flush_remote_tlbs(vcpu->kvm);
1371}
1372
1373/*
Xiao Guangrong49fde342012-06-20 15:58:58 +08001374 * Write-protect on the specified @sptep, @pt_protect indicates whether
Xiao Guangrongc126d942014-04-17 17:06:14 +08001375 * spte write-protection is caused by protecting shadow page table.
Xiao Guangrong49fde342012-06-20 15:58:58 +08001376 *
Tiejun Chenb4619662014-09-22 10:31:38 +08001377 * Note: write protection is difference between dirty logging and spte
Xiao Guangrong49fde342012-06-20 15:58:58 +08001378 * protection:
1379 * - for dirty logging, the spte can be set to writable at anytime if
1380 * its dirty bitmap is properly set.
1381 * - for spte protection, the spte can be writable only after unsync-ing
1382 * shadow page.
Xiao Guangrong8e22f952012-06-20 15:57:39 +08001383 *
Xiao Guangrongc126d942014-04-17 17:06:14 +08001384 * Return true if tlb need be flushed.
Xiao Guangrong8e22f952012-06-20 15:57:39 +08001385 */
Bandan Dasc4f138b2016-08-02 16:32:37 -04001386static bool spte_write_protect(u64 *sptep, bool pt_protect)
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001387{
1388 u64 spte = *sptep;
1389
Xiao Guangrong49fde342012-06-20 15:58:58 +08001390 if (!is_writable_pte(spte) &&
Junaid Shahidea4114b2016-12-06 16:46:11 -08001391 !(pt_protect && spte_can_locklessly_be_made_writable(spte)))
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001392 return false;
1393
1394 rmap_printk("rmap_write_protect: spte %p %llx\n", sptep, *sptep);
1395
Xiao Guangrong49fde342012-06-20 15:58:58 +08001396 if (pt_protect)
1397 spte &= ~SPTE_MMU_WRITEABLE;
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001398 spte = spte & ~PT_WRITABLE_MASK;
Xiao Guangrong49fde342012-06-20 15:58:58 +08001399
Xiao Guangrongc126d942014-04-17 17:06:14 +08001400 return mmu_spte_update(sptep, spte);
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001401}
1402
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001403static bool __rmap_write_protect(struct kvm *kvm,
1404 struct kvm_rmap_head *rmap_head,
Takuya Yoshikawa245c3912013-01-08 19:44:09 +09001405 bool pt_protect)
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001406{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001407 u64 *sptep;
1408 struct rmap_iterator iter;
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001409 bool flush = false;
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001410
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001411 for_each_rmap_spte(rmap_head, &iter, sptep)
Bandan Dasc4f138b2016-08-02 16:32:37 -04001412 flush |= spte_write_protect(sptep, pt_protect);
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001413
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001414 return flush;
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001415}
1416
Bandan Dasc4f138b2016-08-02 16:32:37 -04001417static bool spte_clear_dirty(u64 *sptep)
Kai Huangf4b4b182015-01-28 10:54:24 +08001418{
1419 u64 spte = *sptep;
1420
1421 rmap_printk("rmap_clear_dirty: spte %p %llx\n", sptep, *sptep);
1422
1423 spte &= ~shadow_dirty_mask;
1424
1425 return mmu_spte_update(sptep, spte);
1426}
1427
Peter Feinerac8d57e2017-06-30 17:26:31 -07001428static bool wrprot_ad_disabled_spte(u64 *sptep)
1429{
1430 bool was_writable = test_and_clear_bit(PT_WRITABLE_SHIFT,
1431 (unsigned long *)sptep);
1432 if (was_writable)
1433 kvm_set_pfn_dirty(spte_to_pfn(*sptep));
1434
1435 return was_writable;
1436}
1437
1438/*
1439 * Gets the GFN ready for another round of dirty logging by clearing the
1440 * - D bit on ad-enabled SPTEs, and
1441 * - W bit on ad-disabled SPTEs.
1442 * Returns true iff any D or W bits were cleared.
1443 */
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001444static bool __rmap_clear_dirty(struct kvm *kvm, struct kvm_rmap_head *rmap_head)
Kai Huangf4b4b182015-01-28 10:54:24 +08001445{
1446 u64 *sptep;
1447 struct rmap_iterator iter;
1448 bool flush = false;
1449
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001450 for_each_rmap_spte(rmap_head, &iter, sptep)
Peter Feinerac8d57e2017-06-30 17:26:31 -07001451 if (spte_ad_enabled(*sptep))
1452 flush |= spte_clear_dirty(sptep);
1453 else
1454 flush |= wrprot_ad_disabled_spte(sptep);
Kai Huangf4b4b182015-01-28 10:54:24 +08001455
1456 return flush;
1457}
1458
Bandan Dasc4f138b2016-08-02 16:32:37 -04001459static bool spte_set_dirty(u64 *sptep)
Kai Huangf4b4b182015-01-28 10:54:24 +08001460{
1461 u64 spte = *sptep;
1462
1463 rmap_printk("rmap_set_dirty: spte %p %llx\n", sptep, *sptep);
1464
1465 spte |= shadow_dirty_mask;
1466
1467 return mmu_spte_update(sptep, spte);
1468}
1469
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001470static bool __rmap_set_dirty(struct kvm *kvm, struct kvm_rmap_head *rmap_head)
Kai Huangf4b4b182015-01-28 10:54:24 +08001471{
1472 u64 *sptep;
1473 struct rmap_iterator iter;
1474 bool flush = false;
1475
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001476 for_each_rmap_spte(rmap_head, &iter, sptep)
Peter Feinerac8d57e2017-06-30 17:26:31 -07001477 if (spte_ad_enabled(*sptep))
1478 flush |= spte_set_dirty(sptep);
Kai Huangf4b4b182015-01-28 10:54:24 +08001479
1480 return flush;
1481}
1482
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001483/**
Kai Huang3b0f1d02015-01-28 10:54:23 +08001484 * kvm_mmu_write_protect_pt_masked - write protect selected PT level pages
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001485 * @kvm: kvm instance
1486 * @slot: slot to protect
1487 * @gfn_offset: start of the BITS_PER_LONG pages we care about
1488 * @mask: indicates which pages we should protect
1489 *
1490 * Used when we do not need to care about huge page mappings: e.g. during dirty
1491 * logging we do not have any such mappings.
1492 */
Kai Huang3b0f1d02015-01-28 10:54:23 +08001493static void kvm_mmu_write_protect_pt_masked(struct kvm *kvm,
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001494 struct kvm_memory_slot *slot,
1495 gfn_t gfn_offset, unsigned long mask)
Izik Eidus98348e92007-10-16 14:42:30 +02001496{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001497 struct kvm_rmap_head *rmap_head;
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001498
1499 while (mask) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001500 rmap_head = __gfn_to_rmap(slot->base_gfn + gfn_offset + __ffs(mask),
1501 PT_PAGE_TABLE_LEVEL, slot);
1502 __rmap_write_protect(kvm, rmap_head, false);
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001503
1504 /* clear the first set bit */
1505 mask &= mask - 1;
1506 }
1507}
1508
Kai Huang3b0f1d02015-01-28 10:54:23 +08001509/**
Peter Feinerac8d57e2017-06-30 17:26:31 -07001510 * kvm_mmu_clear_dirty_pt_masked - clear MMU D-bit for PT level pages, or write
1511 * protect the page if the D-bit isn't supported.
Kai Huangf4b4b182015-01-28 10:54:24 +08001512 * @kvm: kvm instance
1513 * @slot: slot to clear D-bit
1514 * @gfn_offset: start of the BITS_PER_LONG pages we care about
1515 * @mask: indicates which pages we should clear D-bit
1516 *
1517 * Used for PML to re-log the dirty GPAs after userspace querying dirty_bitmap.
1518 */
1519void kvm_mmu_clear_dirty_pt_masked(struct kvm *kvm,
1520 struct kvm_memory_slot *slot,
1521 gfn_t gfn_offset, unsigned long mask)
1522{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001523 struct kvm_rmap_head *rmap_head;
Kai Huangf4b4b182015-01-28 10:54:24 +08001524
1525 while (mask) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001526 rmap_head = __gfn_to_rmap(slot->base_gfn + gfn_offset + __ffs(mask),
1527 PT_PAGE_TABLE_LEVEL, slot);
1528 __rmap_clear_dirty(kvm, rmap_head);
Kai Huangf4b4b182015-01-28 10:54:24 +08001529
1530 /* clear the first set bit */
1531 mask &= mask - 1;
1532 }
1533}
1534EXPORT_SYMBOL_GPL(kvm_mmu_clear_dirty_pt_masked);
1535
1536/**
Kai Huang3b0f1d02015-01-28 10:54:23 +08001537 * kvm_arch_mmu_enable_log_dirty_pt_masked - enable dirty logging for selected
1538 * PT level pages.
1539 *
1540 * It calls kvm_mmu_write_protect_pt_masked to write protect selected pages to
1541 * enable dirty logging for them.
1542 *
1543 * Used when we do not need to care about huge page mappings: e.g. during dirty
1544 * logging we do not have any such mappings.
1545 */
1546void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm,
1547 struct kvm_memory_slot *slot,
1548 gfn_t gfn_offset, unsigned long mask)
1549{
Kai Huang88178fd2015-01-28 10:54:27 +08001550 if (kvm_x86_ops->enable_log_dirty_pt_masked)
1551 kvm_x86_ops->enable_log_dirty_pt_masked(kvm, slot, gfn_offset,
1552 mask);
1553 else
1554 kvm_mmu_write_protect_pt_masked(kvm, slot, gfn_offset, mask);
Kai Huang3b0f1d02015-01-28 10:54:23 +08001555}
1556
Bandan Dasbab41652017-05-05 15:25:13 -04001557/**
1558 * kvm_arch_write_log_dirty - emulate dirty page logging
1559 * @vcpu: Guest mode vcpu
1560 *
1561 * Emulate arch specific page modification logging for the
1562 * nested hypervisor
1563 */
1564int kvm_arch_write_log_dirty(struct kvm_vcpu *vcpu)
1565{
1566 if (kvm_x86_ops->write_log_dirty)
1567 return kvm_x86_ops->write_log_dirty(vcpu);
1568
1569 return 0;
1570}
1571
Xiao Guangrongaeecee22016-02-24 17:51:08 +08001572bool kvm_mmu_slot_gfn_write_protect(struct kvm *kvm,
1573 struct kvm_memory_slot *slot, u64 gfn)
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001574{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001575 struct kvm_rmap_head *rmap_head;
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001576 int i;
Xiao Guangrong2f845692012-06-20 15:56:53 +08001577 bool write_protected = false;
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001578
Xiao Guangrong8a3d08f2015-05-13 14:42:21 +08001579 for (i = PT_PAGE_TABLE_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001580 rmap_head = __gfn_to_rmap(gfn, i, slot);
Xiao Guangrongaeecee22016-02-24 17:51:08 +08001581 write_protected |= __rmap_write_protect(kvm, rmap_head, true);
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001582 }
1583
Marcelo Tosattib1a36822008-12-01 22:32:03 -02001584 return write_protected;
Avi Kivity374cbac2007-01-05 16:36:43 -08001585}
1586
Xiao Guangrongaeecee22016-02-24 17:51:08 +08001587static bool rmap_write_protect(struct kvm_vcpu *vcpu, u64 gfn)
1588{
1589 struct kvm_memory_slot *slot;
1590
1591 slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1592 return kvm_mmu_slot_gfn_write_protect(vcpu->kvm, slot, gfn);
1593}
1594
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001595static bool kvm_zap_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head)
Xiao Guangrong6a49f852015-05-13 14:42:25 +08001596{
1597 u64 *sptep;
1598 struct rmap_iterator iter;
1599 bool flush = false;
1600
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001601 while ((sptep = rmap_get_first(rmap_head, &iter))) {
Xiao Guangrong6a49f852015-05-13 14:42:25 +08001602 rmap_printk("%s: spte %p %llx.\n", __func__, sptep, *sptep);
1603
1604 drop_spte(kvm, sptep);
1605 flush = true;
1606 }
1607
1608 return flush;
1609}
1610
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001611static int kvm_unmap_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001612 struct kvm_memory_slot *slot, gfn_t gfn, int level,
1613 unsigned long data)
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001614{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001615 return kvm_zap_rmapp(kvm, rmap_head);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001616}
1617
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001618static int kvm_set_pte_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001619 struct kvm_memory_slot *slot, gfn_t gfn, int level,
1620 unsigned long data)
Izik Eidus3da0dd42009-09-23 21:47:18 +03001621{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001622 u64 *sptep;
1623 struct rmap_iterator iter;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001624 int need_flush = 0;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001625 u64 new_spte;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001626 pte_t *ptep = (pte_t *)data;
Dan Williamsba049e92016-01-15 16:56:11 -08001627 kvm_pfn_t new_pfn;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001628
1629 WARN_ON(pte_huge(*ptep));
1630 new_pfn = pte_pfn(*ptep);
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001631
Xiao Guangrong0d536792015-05-13 14:42:20 +08001632restart:
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001633 for_each_rmap_spte(rmap_head, &iter, sptep) {
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001634 rmap_printk("kvm_set_pte_rmapp: spte %p %llx gfn %llx (%d)\n",
Junaid Shahidf160c7b2016-12-06 16:46:16 -08001635 sptep, *sptep, gfn, level);
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001636
Izik Eidus3da0dd42009-09-23 21:47:18 +03001637 need_flush = 1;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001638
Izik Eidus3da0dd42009-09-23 21:47:18 +03001639 if (pte_write(*ptep)) {
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001640 drop_spte(kvm, sptep);
Xiao Guangrong0d536792015-05-13 14:42:20 +08001641 goto restart;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001642 } else {
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001643 new_spte = *sptep & ~PT64_BASE_ADDR_MASK;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001644 new_spte |= (u64)new_pfn << PAGE_SHIFT;
1645
1646 new_spte &= ~PT_WRITABLE_MASK;
1647 new_spte &= ~SPTE_HOST_WRITEABLE;
Junaid Shahidf160c7b2016-12-06 16:46:16 -08001648
1649 new_spte = mark_spte_for_access_track(new_spte);
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001650
1651 mmu_spte_clear_track_bits(sptep);
1652 mmu_spte_set(sptep, new_spte);
Izik Eidus3da0dd42009-09-23 21:47:18 +03001653 }
1654 }
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001655
Izik Eidus3da0dd42009-09-23 21:47:18 +03001656 if (need_flush)
1657 kvm_flush_remote_tlbs(kvm);
1658
1659 return 0;
1660}
1661
Xiao Guangrong6ce1f4e2015-05-13 14:42:22 +08001662struct slot_rmap_walk_iterator {
1663 /* input fields. */
1664 struct kvm_memory_slot *slot;
1665 gfn_t start_gfn;
1666 gfn_t end_gfn;
1667 int start_level;
1668 int end_level;
1669
1670 /* output fields. */
1671 gfn_t gfn;
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001672 struct kvm_rmap_head *rmap;
Xiao Guangrong6ce1f4e2015-05-13 14:42:22 +08001673 int level;
1674
1675 /* private field. */
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001676 struct kvm_rmap_head *end_rmap;
Xiao Guangrong6ce1f4e2015-05-13 14:42:22 +08001677};
1678
1679static void
1680rmap_walk_init_level(struct slot_rmap_walk_iterator *iterator, int level)
1681{
1682 iterator->level = level;
1683 iterator->gfn = iterator->start_gfn;
1684 iterator->rmap = __gfn_to_rmap(iterator->gfn, level, iterator->slot);
1685 iterator->end_rmap = __gfn_to_rmap(iterator->end_gfn, level,
1686 iterator->slot);
1687}
1688
1689static void
1690slot_rmap_walk_init(struct slot_rmap_walk_iterator *iterator,
1691 struct kvm_memory_slot *slot, int start_level,
1692 int end_level, gfn_t start_gfn, gfn_t end_gfn)
1693{
1694 iterator->slot = slot;
1695 iterator->start_level = start_level;
1696 iterator->end_level = end_level;
1697 iterator->start_gfn = start_gfn;
1698 iterator->end_gfn = end_gfn;
1699
1700 rmap_walk_init_level(iterator, iterator->start_level);
1701}
1702
1703static bool slot_rmap_walk_okay(struct slot_rmap_walk_iterator *iterator)
1704{
1705 return !!iterator->rmap;
1706}
1707
1708static void slot_rmap_walk_next(struct slot_rmap_walk_iterator *iterator)
1709{
1710 if (++iterator->rmap <= iterator->end_rmap) {
1711 iterator->gfn += (1UL << KVM_HPAGE_GFN_SHIFT(iterator->level));
1712 return;
1713 }
1714
1715 if (++iterator->level > iterator->end_level) {
1716 iterator->rmap = NULL;
1717 return;
1718 }
1719
1720 rmap_walk_init_level(iterator, iterator->level);
1721}
1722
1723#define for_each_slot_rmap_range(_slot_, _start_level_, _end_level_, \
1724 _start_gfn, _end_gfn, _iter_) \
1725 for (slot_rmap_walk_init(_iter_, _slot_, _start_level_, \
1726 _end_level_, _start_gfn, _end_gfn); \
1727 slot_rmap_walk_okay(_iter_); \
1728 slot_rmap_walk_next(_iter_))
1729
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001730static int kvm_handle_hva_range(struct kvm *kvm,
1731 unsigned long start,
1732 unsigned long end,
1733 unsigned long data,
1734 int (*handler)(struct kvm *kvm,
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001735 struct kvm_rmap_head *rmap_head,
Takuya Yoshikawa048212d2012-07-02 17:57:59 +09001736 struct kvm_memory_slot *slot,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001737 gfn_t gfn,
1738 int level,
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001739 unsigned long data))
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001740{
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001741 struct kvm_memslots *slots;
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +08001742 struct kvm_memory_slot *memslot;
Xiao Guangrong6ce1f4e2015-05-13 14:42:22 +08001743 struct slot_rmap_walk_iterator iterator;
1744 int ret = 0;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02001745 int i;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001746
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02001747 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
1748 slots = __kvm_memslots(kvm, i);
1749 kvm_for_each_memslot(memslot, slots) {
1750 unsigned long hva_start, hva_end;
1751 gfn_t gfn_start, gfn_end;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001752
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02001753 hva_start = max(start, memslot->userspace_addr);
1754 hva_end = min(end, memslot->userspace_addr +
1755 (memslot->npages << PAGE_SHIFT));
1756 if (hva_start >= hva_end)
1757 continue;
1758 /*
1759 * {gfn(page) | page intersects with [hva_start, hva_end)} =
1760 * {gfn_start, gfn_start+1, ..., gfn_end-1}.
1761 */
1762 gfn_start = hva_to_gfn_memslot(hva_start, memslot);
1763 gfn_end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, memslot);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001764
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02001765 for_each_slot_rmap_range(memslot, PT_PAGE_TABLE_LEVEL,
1766 PT_MAX_HUGEPAGE_LEVEL,
1767 gfn_start, gfn_end - 1,
1768 &iterator)
1769 ret |= handler(kvm, iterator.rmap, memslot,
1770 iterator.gfn, iterator.level, data);
1771 }
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001772 }
1773
Takuya Yoshikawaf3953022012-07-02 17:58:48 +09001774 return ret;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001775}
1776
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001777static int kvm_handle_hva(struct kvm *kvm, unsigned long hva,
1778 unsigned long data,
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001779 int (*handler)(struct kvm *kvm,
1780 struct kvm_rmap_head *rmap_head,
Takuya Yoshikawa048212d2012-07-02 17:57:59 +09001781 struct kvm_memory_slot *slot,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001782 gfn_t gfn, int level,
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001783 unsigned long data))
1784{
1785 return kvm_handle_hva_range(kvm, hva, hva + 1, data, handler);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001786}
1787
1788int kvm_unmap_hva(struct kvm *kvm, unsigned long hva)
1789{
Izik Eidus3da0dd42009-09-23 21:47:18 +03001790 return kvm_handle_hva(kvm, hva, 0, kvm_unmap_rmapp);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001791}
1792
Takuya Yoshikawab3ae2092012-07-02 17:56:33 +09001793int kvm_unmap_hva_range(struct kvm *kvm, unsigned long start, unsigned long end)
1794{
1795 return kvm_handle_hva_range(kvm, start, end, 0, kvm_unmap_rmapp);
1796}
1797
Izik Eidus3da0dd42009-09-23 21:47:18 +03001798void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte)
1799{
Frederik Deweerdt8a8365c2009-10-09 11:42:56 +00001800 kvm_handle_hva(kvm, hva, (unsigned long)&pte, kvm_set_pte_rmapp);
Izik Eidus3da0dd42009-09-23 21:47:18 +03001801}
1802
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001803static int kvm_age_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001804 struct kvm_memory_slot *slot, gfn_t gfn, int level,
1805 unsigned long data)
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001806{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001807 u64 *sptep;
Michael S. Tsirkin79f702a2012-06-03 11:34:08 +03001808 struct rmap_iterator uninitialized_var(iter);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001809 int young = 0;
1810
Junaid Shahidf160c7b2016-12-06 16:46:16 -08001811 for_each_rmap_spte(rmap_head, &iter, sptep)
1812 young |= mmu_spte_age(sptep);
Xiao Guangrong0d536792015-05-13 14:42:20 +08001813
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001814 trace_kvm_age_page(gfn, level, slot, young);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001815 return young;
1816}
1817
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001818static int kvm_test_age_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001819 struct kvm_memory_slot *slot, gfn_t gfn,
1820 int level, unsigned long data)
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001821{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001822 u64 *sptep;
1823 struct rmap_iterator iter;
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001824
Junaid Shahid83ef6c82016-12-06 16:46:13 -08001825 for_each_rmap_spte(rmap_head, &iter, sptep)
1826 if (is_accessed_spte(*sptep))
1827 return 1;
Junaid Shahid83ef6c82016-12-06 16:46:13 -08001828 return 0;
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001829}
1830
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001831#define RMAP_RECYCLE_THRESHOLD 1000
1832
Joerg Roedel852e3c12009-07-27 16:30:44 +02001833static void rmap_recycle(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn)
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001834{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001835 struct kvm_rmap_head *rmap_head;
Joerg Roedel852e3c12009-07-27 16:30:44 +02001836 struct kvm_mmu_page *sp;
1837
1838 sp = page_header(__pa(spte));
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001839
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001840 rmap_head = gfn_to_rmap(vcpu->kvm, gfn, sp);
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001841
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001842 kvm_unmap_rmapp(vcpu->kvm, rmap_head, NULL, gfn, sp->role.level, 0);
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001843 kvm_flush_remote_tlbs(vcpu->kvm);
1844}
1845
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -07001846int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end)
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001847{
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -07001848 return kvm_handle_hva_range(kvm, start, end, 0, kvm_age_rmapp);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001849}
1850
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001851int kvm_test_age_hva(struct kvm *kvm, unsigned long hva)
1852{
1853 return kvm_handle_hva(kvm, hva, 0, kvm_test_age_rmapp);
1854}
1855
Yaozu Dongd6c69ee2007-04-25 14:17:25 +08001856#ifdef MMU_DEBUG
Avi Kivity47ad8e62007-05-06 15:50:58 +03001857static int is_empty_shadow_page(u64 *spt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001858{
Avi Kivity139bdb22007-01-05 16:36:50 -08001859 u64 *pos;
1860 u64 *end;
1861
Avi Kivity47ad8e62007-05-06 15:50:58 +03001862 for (pos = spt, end = pos + PAGE_SIZE / sizeof(u64); pos != end; pos++)
Avi Kivity3c915512008-05-20 16:21:13 +03001863 if (is_shadow_present_pte(*pos)) {
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001864 printk(KERN_ERR "%s: %p %llx\n", __func__,
Avi Kivity139bdb22007-01-05 16:36:50 -08001865 pos, *pos);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001866 return 0;
Avi Kivity139bdb22007-01-05 16:36:50 -08001867 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001868 return 1;
1869}
Yaozu Dongd6c69ee2007-04-25 14:17:25 +08001870#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001871
Dave Hansen45221ab2010-08-19 18:11:37 -07001872/*
1873 * This value is the sum of all of the kvm instances's
1874 * kvm->arch.n_used_mmu_pages values. We need a global,
1875 * aggregate version in order to make the slab shrinker
1876 * faster
1877 */
1878static inline void kvm_mod_used_mmu_pages(struct kvm *kvm, int nr)
1879{
1880 kvm->arch.n_used_mmu_pages += nr;
1881 percpu_counter_add(&kvm_total_used_mmu_pages, nr);
1882}
1883
Gleb Natapov834be0d2013-01-30 16:45:05 +02001884static void kvm_mmu_free_page(struct kvm_mmu_page *sp)
Avi Kivity260746c2007-01-05 16:36:49 -08001885{
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02001886 MMU_WARN_ON(!is_empty_shadow_page(sp->spt));
Xiao Guangrong77758342010-06-04 21:53:54 +08001887 hlist_del(&sp->hash_link);
Xiao Guangrongbd4c86e2011-07-12 03:27:14 +08001888 list_del(&sp->link);
1889 free_page((unsigned long)sp->spt);
Gleb Natapov834be0d2013-01-30 16:45:05 +02001890 if (!sp->role.direct)
1891 free_page((unsigned long)sp->gfns);
Xiao Guangronge8ad9a72010-05-13 10:06:02 +08001892 kmem_cache_free(mmu_page_header_cache, sp);
Avi Kivity260746c2007-01-05 16:36:49 -08001893}
1894
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001895static unsigned kvm_page_table_hashfn(gfn_t gfn)
1896{
David Matlack114df302016-12-19 13:58:25 -08001897 return hash_64(gfn, KVM_MMU_HASH_SHIFT);
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001898}
1899
Xiao Guangrong67052b32011-05-15 23:27:08 +08001900static void mmu_page_add_parent_pte(struct kvm_vcpu *vcpu,
1901 struct kvm_mmu_page *sp, u64 *parent_pte)
1902{
1903 if (!parent_pte)
1904 return;
1905
1906 pte_list_add(vcpu, parent_pte, &sp->parent_ptes);
1907}
1908
1909static void mmu_page_remove_parent_pte(struct kvm_mmu_page *sp,
1910 u64 *parent_pte)
1911{
1912 pte_list_remove(parent_pte, &sp->parent_ptes);
1913}
1914
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08001915static void drop_parent_pte(struct kvm_mmu_page *sp,
1916 u64 *parent_pte)
1917{
1918 mmu_page_remove_parent_pte(sp, parent_pte);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +08001919 mmu_spte_clear_no_track(parent_pte);
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08001920}
1921
Takuya Yoshikawa47005792015-11-20 17:46:29 +09001922static struct kvm_mmu_page *kvm_mmu_alloc_page(struct kvm_vcpu *vcpu, int direct)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001923{
Avi Kivity4db35312007-11-21 15:28:32 +02001924 struct kvm_mmu_page *sp;
Takuya Yoshikawa7ddca7e2013-03-21 19:33:43 +09001925
Takuya Yoshikawa80feb892012-05-29 23:54:26 +09001926 sp = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_header_cache);
1927 sp->spt = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache);
Lai Jiangshan2032a932010-05-26 16:49:59 +08001928 if (!direct)
Takuya Yoshikawa80feb892012-05-29 23:54:26 +09001929 sp->gfns = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache);
Avi Kivity4db35312007-11-21 15:28:32 +02001930 set_page_private(virt_to_page(sp->spt), (unsigned long)sp);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08001931
1932 /*
1933 * The active_mmu_pages list is the FIFO list, do not move the
1934 * page until it is zapped. kvm_zap_obsolete_pages depends on
1935 * this feature. See the comments in kvm_zap_obsolete_pages().
1936 */
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001937 list_add(&sp->link, &vcpu->kvm->arch.active_mmu_pages);
Dave Hansen45221ab2010-08-19 18:11:37 -07001938 kvm_mod_used_mmu_pages(vcpu->kvm, +1);
Avi Kivity4db35312007-11-21 15:28:32 +02001939 return sp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001940}
1941
Xiao Guangrong67052b32011-05-15 23:27:08 +08001942static void mark_unsync(u64 *spte);
Xiao Guangrong6b184932010-04-16 21:29:17 +08001943static void kvm_mmu_mark_parents_unsync(struct kvm_mmu_page *sp)
Marcelo Tosatti0074ff62008-09-23 13:18:40 -03001944{
Takuya Yoshikawa74c4e632015-11-26 21:15:38 +09001945 u64 *sptep;
1946 struct rmap_iterator iter;
1947
1948 for_each_rmap_spte(&sp->parent_ptes, &iter, sptep) {
1949 mark_unsync(sptep);
1950 }
Xiao Guangrong1047df12010-06-11 21:35:15 +08001951}
1952
Xiao Guangrong67052b32011-05-15 23:27:08 +08001953static void mark_unsync(u64 *spte)
Xiao Guangrong1047df12010-06-11 21:35:15 +08001954{
Xiao Guangrong67052b32011-05-15 23:27:08 +08001955 struct kvm_mmu_page *sp;
Xiao Guangrong1047df12010-06-11 21:35:15 +08001956 unsigned int index;
1957
Xiao Guangrong67052b32011-05-15 23:27:08 +08001958 sp = page_header(__pa(spte));
Xiao Guangrong1047df12010-06-11 21:35:15 +08001959 index = spte - sp->spt;
1960 if (__test_and_set_bit(index, sp->unsync_child_bitmap))
1961 return;
1962 if (sp->unsync_children++)
1963 return;
1964 kvm_mmu_mark_parents_unsync(sp);
Marcelo Tosatti0074ff62008-09-23 13:18:40 -03001965}
1966
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03001967static int nonpaging_sync_page(struct kvm_vcpu *vcpu,
Xiao Guangronga4a8e6f2010-11-19 17:04:03 +08001968 struct kvm_mmu_page *sp)
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03001969{
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01001970 return 0;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03001971}
1972
Marcelo Tosattia7052892008-09-23 13:18:35 -03001973static void nonpaging_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
1974{
1975}
1976
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08001977static void nonpaging_update_pte(struct kvm_vcpu *vcpu,
1978 struct kvm_mmu_page *sp, u64 *spte,
Xiao Guangrong7c562522011-03-28 10:29:27 +08001979 const void *pte)
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08001980{
1981 WARN_ON(1);
1982}
1983
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001984#define KVM_PAGE_ARRAY_NR 16
1985
1986struct kvm_mmu_pages {
1987 struct mmu_page_and_offset {
1988 struct kvm_mmu_page *sp;
1989 unsigned int idx;
1990 } page[KVM_PAGE_ARRAY_NR];
1991 unsigned int nr;
1992};
1993
Hannes Edercded19f2009-02-21 02:19:13 +01001994static int mmu_pages_add(struct kvm_mmu_pages *pvec, struct kvm_mmu_page *sp,
1995 int idx)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001996{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001997 int i;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001998
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001999 if (sp->unsync)
2000 for (i=0; i < pvec->nr; i++)
2001 if (pvec->page[i].sp == sp)
2002 return 0;
2003
2004 pvec->page[pvec->nr].sp = sp;
2005 pvec->page[pvec->nr].idx = idx;
2006 pvec->nr++;
2007 return (pvec->nr == KVM_PAGE_ARRAY_NR);
2008}
2009
Takuya Yoshikawafd951452015-11-20 17:43:13 +09002010static inline void clear_unsync_child_bit(struct kvm_mmu_page *sp, int idx)
2011{
2012 --sp->unsync_children;
2013 WARN_ON((int)sp->unsync_children < 0);
2014 __clear_bit(idx, sp->unsync_child_bitmap);
2015}
2016
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002017static int __mmu_unsync_walk(struct kvm_mmu_page *sp,
2018 struct kvm_mmu_pages *pvec)
2019{
2020 int i, ret, nr_unsync_leaf = 0;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002021
Takuya Yoshikawa37178b82011-11-29 14:02:45 +09002022 for_each_set_bit(i, sp->unsync_child_bitmap, 512) {
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08002023 struct kvm_mmu_page *child;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002024 u64 ent = sp->spt[i];
2025
Takuya Yoshikawafd951452015-11-20 17:43:13 +09002026 if (!is_shadow_present_pte(ent) || is_large_pte(ent)) {
2027 clear_unsync_child_bit(sp, i);
2028 continue;
2029 }
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002030
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08002031 child = page_header(ent & PT64_BASE_ADDR_MASK);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002032
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08002033 if (child->unsync_children) {
2034 if (mmu_pages_add(pvec, child, i))
2035 return -ENOSPC;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002036
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08002037 ret = __mmu_unsync_walk(child, pvec);
Takuya Yoshikawafd951452015-11-20 17:43:13 +09002038 if (!ret) {
2039 clear_unsync_child_bit(sp, i);
2040 continue;
2041 } else if (ret > 0) {
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08002042 nr_unsync_leaf += ret;
Takuya Yoshikawafd951452015-11-20 17:43:13 +09002043 } else
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08002044 return ret;
2045 } else if (child->unsync) {
2046 nr_unsync_leaf++;
2047 if (mmu_pages_add(pvec, child, i))
2048 return -ENOSPC;
2049 } else
Takuya Yoshikawafd951452015-11-20 17:43:13 +09002050 clear_unsync_child_bit(sp, i);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002051 }
2052
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002053 return nr_unsync_leaf;
2054}
2055
Xiao Guangronge23d3fe2016-02-24 09:46:06 +01002056#define INVALID_INDEX (-1)
2057
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002058static int mmu_unsync_walk(struct kvm_mmu_page *sp,
2059 struct kvm_mmu_pages *pvec)
2060{
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002061 pvec->nr = 0;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002062 if (!sp->unsync_children)
2063 return 0;
2064
Xiao Guangronge23d3fe2016-02-24 09:46:06 +01002065 mmu_pages_add(pvec, sp, INVALID_INDEX);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002066 return __mmu_unsync_walk(sp, pvec);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002067}
2068
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002069static void kvm_unlink_unsync_page(struct kvm *kvm, struct kvm_mmu_page *sp)
2070{
2071 WARN_ON(!sp->unsync);
Xiao Guangrong5e1b3dd2010-04-28 11:55:06 +08002072 trace_kvm_mmu_sync_page(sp);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002073 sp->unsync = 0;
2074 --kvm->stat.mmu_unsync;
2075}
2076
Xiao Guangrong77758342010-06-04 21:53:54 +08002077static int kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp,
2078 struct list_head *invalid_list);
2079static void kvm_mmu_commit_zap_page(struct kvm *kvm,
2080 struct list_head *invalid_list);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002081
Xiao Guangrongf34d2512013-05-31 08:36:28 +08002082/*
2083 * NOTE: we should pay more attention on the zapped-obsolete page
2084 * (is_obsolete_sp(sp) && sp->role.invalid) when you do hash list walk
2085 * since it has been deleted from active_mmu_pages but still can be found
2086 * at hast list.
2087 *
David Matlackf3414bc2016-12-20 15:25:57 -08002088 * for_each_valid_sp() has skipped that kind of pages.
Xiao Guangrongf34d2512013-05-31 08:36:28 +08002089 */
David Matlackf3414bc2016-12-20 15:25:57 -08002090#define for_each_valid_sp(_kvm, _sp, _gfn) \
Takuya Yoshikawa1044b032013-03-06 16:05:07 +09002091 hlist_for_each_entry(_sp, \
2092 &(_kvm)->arch.mmu_page_hash[kvm_page_table_hashfn(_gfn)], hash_link) \
David Matlackf3414bc2016-12-20 15:25:57 -08002093 if (is_obsolete_sp((_kvm), (_sp)) || (_sp)->role.invalid) { \
2094 } else
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002095
Takuya Yoshikawa1044b032013-03-06 16:05:07 +09002096#define for_each_gfn_indirect_valid_sp(_kvm, _sp, _gfn) \
David Matlackf3414bc2016-12-20 15:25:57 -08002097 for_each_valid_sp(_kvm, _sp, _gfn) \
2098 if ((_sp)->gfn != (_gfn) || (_sp)->role.direct) {} else
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002099
Xiao Guangrongf918b442010-06-11 21:30:36 +08002100/* @sp->gfn should be write-protected at the call site */
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01002101static bool __kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
2102 struct list_head *invalid_list)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002103{
Avi Kivity5b7e0102010-04-14 19:20:03 +03002104 if (sp->role.cr4_pae != !!is_pae(vcpu)) {
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002105 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list);
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01002106 return false;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002107 }
2108
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01002109 if (vcpu->arch.mmu.sync_page(vcpu, sp) == 0) {
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002110 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list);
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01002111 return false;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002112 }
2113
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01002114 return true;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002115}
2116
Paolo Bonzini35a70512016-02-24 10:03:27 +01002117static void kvm_mmu_flush_or_zap(struct kvm_vcpu *vcpu,
2118 struct list_head *invalid_list,
2119 bool remote_flush, bool local_flush)
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08002120{
Paolo Bonzini35a70512016-02-24 10:03:27 +01002121 if (!list_empty(invalid_list)) {
2122 kvm_mmu_commit_zap_page(vcpu->kvm, invalid_list);
2123 return;
2124 }
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08002125
Paolo Bonzini35a70512016-02-24 10:03:27 +01002126 if (remote_flush)
2127 kvm_flush_remote_tlbs(vcpu->kvm);
2128 else if (local_flush)
2129 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08002130}
2131
Xiao Guangronge37fa782011-11-30 17:43:24 +08002132#ifdef CONFIG_KVM_MMU_AUDIT
2133#include "mmu_audit.c"
2134#else
2135static void kvm_mmu_audit(struct kvm_vcpu *vcpu, int point) { }
2136static void mmu_audit_disable(void) { }
2137#endif
2138
Xiao Guangrong46971a22016-03-25 21:19:38 +08002139static bool is_obsolete_sp(struct kvm *kvm, struct kvm_mmu_page *sp)
2140{
2141 return unlikely(sp->mmu_valid_gen != kvm->arch.mmu_valid_gen);
2142}
2143
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01002144static bool kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002145 struct list_head *invalid_list)
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08002146{
Paolo Bonzini9a43c5d2016-02-24 10:28:01 +01002147 kvm_unlink_unsync_page(vcpu->kvm, sp);
2148 return __kvm_sync_page(vcpu, sp, invalid_list);
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08002149}
2150
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002151/* @gfn should be write-protected at the call site */
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002152static bool kvm_sync_pages(struct kvm_vcpu *vcpu, gfn_t gfn,
2153 struct list_head *invalid_list)
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002154{
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002155 struct kvm_mmu_page *s;
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002156 bool ret = false;
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002157
Sasha Levinb67bfe02013-02-27 17:06:00 -08002158 for_each_gfn_indirect_valid_sp(vcpu->kvm, s, gfn) {
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002159 if (!s->unsync)
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002160 continue;
2161
2162 WARN_ON(s->role.level != PT_PAGE_TABLE_LEVEL);
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002163 ret |= kvm_sync_page(vcpu, s, invalid_list);
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002164 }
2165
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002166 return ret;
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002167}
2168
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002169struct mmu_page_path {
Yu Zhang2a7266a2017-08-24 20:27:54 +08002170 struct kvm_mmu_page *parent[PT64_ROOT_MAX_LEVEL];
2171 unsigned int idx[PT64_ROOT_MAX_LEVEL];
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002172};
2173
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002174#define for_each_sp(pvec, sp, parents, i) \
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002175 for (i = mmu_pages_first(&pvec, &parents); \
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002176 i < pvec.nr && ({ sp = pvec.page[i].sp; 1;}); \
2177 i = mmu_pages_next(&pvec, &parents, i))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002178
Hannes Edercded19f2009-02-21 02:19:13 +01002179static int mmu_pages_next(struct kvm_mmu_pages *pvec,
2180 struct mmu_page_path *parents,
2181 int i)
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002182{
2183 int n;
2184
2185 for (n = i+1; n < pvec->nr; n++) {
2186 struct kvm_mmu_page *sp = pvec->page[n].sp;
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002187 unsigned idx = pvec->page[n].idx;
2188 int level = sp->role.level;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002189
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002190 parents->idx[level-1] = idx;
2191 if (level == PT_PAGE_TABLE_LEVEL)
2192 break;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002193
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002194 parents->parent[level-2] = sp;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002195 }
2196
2197 return n;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002198}
2199
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002200static int mmu_pages_first(struct kvm_mmu_pages *pvec,
2201 struct mmu_page_path *parents)
2202{
2203 struct kvm_mmu_page *sp;
2204 int level;
2205
2206 if (pvec->nr == 0)
2207 return 0;
2208
Xiao Guangronge23d3fe2016-02-24 09:46:06 +01002209 WARN_ON(pvec->page[0].idx != INVALID_INDEX);
2210
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002211 sp = pvec->page[0].sp;
2212 level = sp->role.level;
2213 WARN_ON(level == PT_PAGE_TABLE_LEVEL);
2214
2215 parents->parent[level-2] = sp;
2216
2217 /* Also set up a sentinel. Further entries in pvec are all
2218 * children of sp, so this element is never overwritten.
2219 */
2220 parents->parent[level-1] = NULL;
2221 return mmu_pages_next(pvec, parents, 0);
2222}
2223
Hannes Edercded19f2009-02-21 02:19:13 +01002224static void mmu_pages_clear_parents(struct mmu_page_path *parents)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002225{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002226 struct kvm_mmu_page *sp;
2227 unsigned int level = 0;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002228
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002229 do {
2230 unsigned int idx = parents->idx[level];
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002231 sp = parents->parent[level];
2232 if (!sp)
2233 return;
2234
Xiao Guangronge23d3fe2016-02-24 09:46:06 +01002235 WARN_ON(idx == INVALID_INDEX);
Takuya Yoshikawafd951452015-11-20 17:43:13 +09002236 clear_unsync_child_bit(sp, idx);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002237 level++;
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002238 } while (!sp->unsync_children);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002239}
2240
2241static void mmu_sync_children(struct kvm_vcpu *vcpu,
2242 struct kvm_mmu_page *parent)
2243{
2244 int i;
2245 struct kvm_mmu_page *sp;
2246 struct mmu_page_path parents;
2247 struct kvm_mmu_pages pages;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002248 LIST_HEAD(invalid_list);
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002249 bool flush = false;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002250
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002251 while (mmu_unsync_walk(parent, &pages)) {
Xiao Guangrong2f845692012-06-20 15:56:53 +08002252 bool protected = false;
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002253
2254 for_each_sp(pages, sp, parents, i)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002255 protected |= rmap_write_protect(vcpu, sp->gfn);
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002256
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002257 if (protected) {
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002258 kvm_flush_remote_tlbs(vcpu->kvm);
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002259 flush = false;
2260 }
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002261
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002262 for_each_sp(pages, sp, parents, i) {
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01002263 flush |= kvm_sync_page(vcpu, sp, &invalid_list);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002264 mmu_pages_clear_parents(&parents);
2265 }
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002266 if (need_resched() || spin_needbreak(&vcpu->kvm->mmu_lock)) {
2267 kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush);
2268 cond_resched_lock(&vcpu->kvm->mmu_lock);
2269 flush = false;
2270 }
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002271 }
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002272
2273 kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002274}
2275
Xiao Guangronga30f47c2011-09-22 16:58:36 +08002276static void __clear_sp_write_flooding_count(struct kvm_mmu_page *sp)
2277{
Xiao Guangronge5691a82016-02-24 17:51:12 +08002278 atomic_set(&sp->write_flooding_count, 0);
Xiao Guangronga30f47c2011-09-22 16:58:36 +08002279}
2280
2281static void clear_sp_write_flooding_count(u64 *spte)
2282{
2283 struct kvm_mmu_page *sp = page_header(__pa(spte));
2284
2285 __clear_sp_write_flooding_count(sp);
2286}
2287
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002288static struct kvm_mmu_page *kvm_mmu_get_page(struct kvm_vcpu *vcpu,
2289 gfn_t gfn,
2290 gva_t gaddr,
2291 unsigned level,
Avi Kivityf6e2c02b2009-01-11 13:02:10 +02002292 int direct,
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09002293 unsigned access)
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002294{
2295 union kvm_mmu_page_role role;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002296 unsigned quadrant;
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002297 struct kvm_mmu_page *sp;
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002298 bool need_sync = false;
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002299 bool flush = false;
David Matlackf3414bc2016-12-20 15:25:57 -08002300 int collisions = 0;
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002301 LIST_HEAD(invalid_list);
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002302
Avi Kivitya770f6f2008-12-21 19:20:09 +02002303 role = vcpu->arch.mmu.base_role;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002304 role.level = level;
Avi Kivityf6e2c02b2009-01-11 13:02:10 +02002305 role.direct = direct;
Avi Kivity84b0c8c2010-03-14 10:16:40 +02002306 if (role.direct)
Avi Kivity5b7e0102010-04-14 19:20:03 +03002307 role.cr4_pae = 0;
Avi Kivity41074d02007-12-09 17:00:02 +02002308 role.access = access;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02002309 if (!vcpu->arch.mmu.direct_map
2310 && vcpu->arch.mmu.root_level <= PT32_ROOT_LEVEL) {
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002311 quadrant = gaddr >> (PAGE_SHIFT + (PT64_PT_BITS * level));
2312 quadrant &= (1 << ((PT32_PT_BITS - PT64_PT_BITS) * level)) - 1;
2313 role.quadrant = quadrant;
2314 }
David Matlackf3414bc2016-12-20 15:25:57 -08002315 for_each_valid_sp(vcpu->kvm, sp, gfn) {
2316 if (sp->gfn != gfn) {
2317 collisions++;
2318 continue;
2319 }
2320
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002321 if (!need_sync && sp->unsync)
2322 need_sync = true;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002323
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002324 if (sp->role.word != role.word)
2325 continue;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002326
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002327 if (sp->unsync) {
2328 /* The page is good, but __kvm_sync_page might still end
2329 * up zapping it. If so, break in order to rebuild it.
2330 */
2331 if (!__kvm_sync_page(vcpu, sp, &invalid_list))
2332 break;
2333
2334 WARN_ON(!list_empty(&invalid_list));
2335 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
2336 }
Xiao Guangronge02aa902010-05-15 18:52:34 +08002337
Takuya Yoshikawa98bba232015-11-26 21:14:34 +09002338 if (sp->unsync_children)
Avi Kivitya8eeb042010-05-10 12:34:53 +03002339 kvm_make_request(KVM_REQ_MMU_SYNC, vcpu);
Xiao Guangronge02aa902010-05-15 18:52:34 +08002340
Xiao Guangronga30f47c2011-09-22 16:58:36 +08002341 __clear_sp_write_flooding_count(sp);
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002342 trace_kvm_mmu_get_page(sp, false);
David Matlackf3414bc2016-12-20 15:25:57 -08002343 goto out;
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002344 }
Takuya Yoshikawa47005792015-11-20 17:46:29 +09002345
Avi Kivitydfc5aa02007-12-18 19:47:18 +02002346 ++vcpu->kvm->stat.mmu_cache_miss;
Takuya Yoshikawa47005792015-11-20 17:46:29 +09002347
2348 sp = kvm_mmu_alloc_page(vcpu, direct);
2349
Avi Kivity4db35312007-11-21 15:28:32 +02002350 sp->gfn = gfn;
2351 sp->role = role;
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002352 hlist_add_head(&sp->hash_link,
2353 &vcpu->kvm->arch.mmu_page_hash[kvm_page_table_hashfn(gfn)]);
Avi Kivityf6e2c02b2009-01-11 13:02:10 +02002354 if (!direct) {
Xiao Guangrong56ca57f2016-02-24 17:51:14 +08002355 /*
2356 * we should do write protection before syncing pages
2357 * otherwise the content of the synced shadow page may
2358 * be inconsistent with guest page table.
2359 */
Paolo Bonzini3ed1a472015-05-19 16:29:22 +02002360 account_shadowed(vcpu->kvm, sp);
Xiao Guangrong56ca57f2016-02-24 17:51:14 +08002361 if (level == PT_PAGE_TABLE_LEVEL &&
2362 rmap_write_protect(vcpu, gfn))
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002363 kvm_flush_remote_tlbs(vcpu->kvm);
Xiao Guangrong56ca57f2016-02-24 17:51:14 +08002364
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002365 if (level > PT_PAGE_TABLE_LEVEL && need_sync)
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002366 flush |= kvm_sync_pages(vcpu, gfn, &invalid_list);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002367 }
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08002368 sp->mmu_valid_gen = vcpu->kvm->arch.mmu_valid_gen;
Takuya Yoshikawa77492662015-12-18 18:54:49 +09002369 clear_page(sp->spt);
Avi Kivityf691fe12009-07-06 15:58:14 +03002370 trace_kvm_mmu_get_page(sp, true);
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002371
2372 kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush);
David Matlackf3414bc2016-12-20 15:25:57 -08002373out:
2374 if (collisions > vcpu->kvm->stat.max_mmu_page_hash_collisions)
2375 vcpu->kvm->stat.max_mmu_page_hash_collisions = collisions;
Avi Kivity4db35312007-11-21 15:28:32 +02002376 return sp;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002377}
2378
Avi Kivity2d111232008-12-25 14:39:47 +02002379static void shadow_walk_init(struct kvm_shadow_walk_iterator *iterator,
2380 struct kvm_vcpu *vcpu, u64 addr)
2381{
2382 iterator->addr = addr;
2383 iterator->shadow_addr = vcpu->arch.mmu.root_hpa;
2384 iterator->level = vcpu->arch.mmu.shadow_root_level;
Joerg Roedel81407ca2010-09-10 17:31:00 +02002385
Yu Zhang2a7266a2017-08-24 20:27:54 +08002386 if (iterator->level == PT64_ROOT_4LEVEL &&
2387 vcpu->arch.mmu.root_level < PT64_ROOT_4LEVEL &&
Joerg Roedel81407ca2010-09-10 17:31:00 +02002388 !vcpu->arch.mmu.direct_map)
2389 --iterator->level;
2390
Avi Kivity2d111232008-12-25 14:39:47 +02002391 if (iterator->level == PT32E_ROOT_LEVEL) {
2392 iterator->shadow_addr
2393 = vcpu->arch.mmu.pae_root[(addr >> 30) & 3];
2394 iterator->shadow_addr &= PT64_BASE_ADDR_MASK;
2395 --iterator->level;
2396 if (!iterator->shadow_addr)
2397 iterator->level = 0;
2398 }
2399}
2400
2401static bool shadow_walk_okay(struct kvm_shadow_walk_iterator *iterator)
2402{
2403 if (iterator->level < PT_PAGE_TABLE_LEVEL)
2404 return false;
Marcelo Tosatti4d889542009-06-11 12:07:41 -03002405
Avi Kivity2d111232008-12-25 14:39:47 +02002406 iterator->index = SHADOW_PT_INDEX(iterator->addr, iterator->level);
2407 iterator->sptep = ((u64 *)__va(iterator->shadow_addr)) + iterator->index;
2408 return true;
2409}
2410
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002411static void __shadow_walk_next(struct kvm_shadow_walk_iterator *iterator,
2412 u64 spte)
Avi Kivity2d111232008-12-25 14:39:47 +02002413{
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002414 if (is_last_spte(spte, iterator->level)) {
Xiao Guangrong052331b2011-07-12 03:21:17 +08002415 iterator->level = 0;
2416 return;
2417 }
2418
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002419 iterator->shadow_addr = spte & PT64_BASE_ADDR_MASK;
Avi Kivity2d111232008-12-25 14:39:47 +02002420 --iterator->level;
2421}
2422
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002423static void shadow_walk_next(struct kvm_shadow_walk_iterator *iterator)
2424{
2425 return __shadow_walk_next(iterator, *iterator->sptep);
2426}
2427
Takuya Yoshikawa98bba232015-11-26 21:14:34 +09002428static void link_shadow_page(struct kvm_vcpu *vcpu, u64 *sptep,
2429 struct kvm_mmu_page *sp)
Avi Kivity32ef26a2010-07-13 14:27:04 +03002430{
2431 u64 spte;
2432
Bandan Dasffb128c2016-07-12 18:18:49 -04002433 BUILD_BUG_ON(VMX_EPT_WRITABLE_MASK != PT_WRITABLE_MASK);
Yang Zhang7a1638c2013-08-05 11:07:13 +03002434
Bandan Dasffb128c2016-07-12 18:18:49 -04002435 spte = __pa(sp->spt) | shadow_present_mask | PT_WRITABLE_MASK |
Peter Feinerac8d57e2017-06-30 17:26:31 -07002436 shadow_user_mask | shadow_x_mask;
2437
2438 if (sp_ad_disabled(sp))
2439 spte |= shadow_acc_track_value;
2440 else
2441 spte |= shadow_accessed_mask;
Xiao Guangrong24db2732013-02-05 15:28:02 +08002442
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +08002443 mmu_spte_set(sptep, spte);
Takuya Yoshikawa98bba232015-11-26 21:14:34 +09002444
2445 mmu_page_add_parent_pte(vcpu, sp, sptep);
2446
2447 if (sp->unsync_children || sp->unsync)
2448 mark_unsync(sptep);
Avi Kivity32ef26a2010-07-13 14:27:04 +03002449}
2450
Avi Kivitya357bd22010-07-13 14:27:07 +03002451static void validate_direct_spte(struct kvm_vcpu *vcpu, u64 *sptep,
2452 unsigned direct_access)
2453{
2454 if (is_shadow_present_pte(*sptep) && !is_large_pte(*sptep)) {
2455 struct kvm_mmu_page *child;
2456
2457 /*
2458 * For the direct sp, if the guest pte's dirty bit
2459 * changed form clean to dirty, it will corrupt the
2460 * sp's access: allow writable in the read-only sp,
2461 * so we should update the spte at this point to get
2462 * a new sp with the correct access.
2463 */
2464 child = page_header(*sptep & PT64_BASE_ADDR_MASK);
2465 if (child->role.access == direct_access)
2466 return;
2467
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08002468 drop_parent_pte(child, sptep);
Avi Kivitya357bd22010-07-13 14:27:07 +03002469 kvm_flush_remote_tlbs(vcpu->kvm);
2470 }
2471}
2472
Xiao Guangrong505aef82011-09-22 16:56:06 +08002473static bool mmu_page_zap_pte(struct kvm *kvm, struct kvm_mmu_page *sp,
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002474 u64 *spte)
2475{
2476 u64 pte;
2477 struct kvm_mmu_page *child;
2478
2479 pte = *spte;
2480 if (is_shadow_present_pte(pte)) {
Xiao Guangrong505aef82011-09-22 16:56:06 +08002481 if (is_last_spte(pte, sp->role.level)) {
Xiao Guangrongc3707952011-07-12 03:28:04 +08002482 drop_spte(kvm, spte);
Xiao Guangrong505aef82011-09-22 16:56:06 +08002483 if (is_large_pte(pte))
2484 --kvm->stat.lpages;
2485 } else {
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002486 child = page_header(pte & PT64_BASE_ADDR_MASK);
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08002487 drop_parent_pte(child, spte);
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002488 }
Xiao Guangrong505aef82011-09-22 16:56:06 +08002489 return true;
2490 }
2491
2492 if (is_mmio_spte(pte))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08002493 mmu_spte_clear_no_track(spte);
Xiao Guangrongc3707952011-07-12 03:28:04 +08002494
Xiao Guangrong505aef82011-09-22 16:56:06 +08002495 return false;
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002496}
2497
Avi Kivity90cb0522007-07-17 13:04:56 +03002498static void kvm_mmu_page_unlink_children(struct kvm *kvm,
Avi Kivity4db35312007-11-21 15:28:32 +02002499 struct kvm_mmu_page *sp)
Avi Kivitya4360362007-01-05 16:36:45 -08002500{
Avi Kivity697fe2e2007-01-05 16:36:46 -08002501 unsigned i;
Avi Kivity697fe2e2007-01-05 16:36:46 -08002502
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002503 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
2504 mmu_page_zap_pte(kvm, sp, sp->spt + i);
Avi Kivitya4360362007-01-05 16:36:45 -08002505}
2506
Avi Kivity31aa2b42008-07-11 17:59:46 +03002507static void kvm_mmu_unlink_parents(struct kvm *kvm, struct kvm_mmu_page *sp)
Avi Kivitya4360362007-01-05 16:36:45 -08002508{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09002509 u64 *sptep;
2510 struct rmap_iterator iter;
Avi Kivitya4360362007-01-05 16:36:45 -08002511
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09002512 while ((sptep = rmap_get_first(&sp->parent_ptes, &iter)))
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09002513 drop_parent_pte(sp, sptep);
Avi Kivity31aa2b42008-07-11 17:59:46 +03002514}
2515
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002516static int mmu_zap_unsync_children(struct kvm *kvm,
Xiao Guangrong77758342010-06-04 21:53:54 +08002517 struct kvm_mmu_page *parent,
2518 struct list_head *invalid_list)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002519{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002520 int i, zapped = 0;
2521 struct mmu_page_path parents;
2522 struct kvm_mmu_pages pages;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002523
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002524 if (parent->role.level == PT_PAGE_TABLE_LEVEL)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002525 return 0;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002526
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002527 while (mmu_unsync_walk(parent, &pages)) {
2528 struct kvm_mmu_page *sp;
2529
2530 for_each_sp(pages, sp, parents, i) {
Xiao Guangrong77758342010-06-04 21:53:54 +08002531 kvm_mmu_prepare_zap_page(kvm, sp, invalid_list);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002532 mmu_pages_clear_parents(&parents);
Xiao Guangrong77662e02010-04-16 16:34:42 +08002533 zapped++;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002534 }
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002535 }
2536
2537 return zapped;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002538}
2539
Xiao Guangrong77758342010-06-04 21:53:54 +08002540static int kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp,
2541 struct list_head *invalid_list)
Avi Kivity31aa2b42008-07-11 17:59:46 +03002542{
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002543 int ret;
Avi Kivityf691fe12009-07-06 15:58:14 +03002544
Xiao Guangrong77758342010-06-04 21:53:54 +08002545 trace_kvm_mmu_prepare_zap_page(sp);
Avi Kivity31aa2b42008-07-11 17:59:46 +03002546 ++kvm->stat.mmu_shadow_zapped;
Xiao Guangrong77758342010-06-04 21:53:54 +08002547 ret = mmu_zap_unsync_children(kvm, sp, invalid_list);
Avi Kivity4db35312007-11-21 15:28:32 +02002548 kvm_mmu_page_unlink_children(kvm, sp);
Avi Kivity31aa2b42008-07-11 17:59:46 +03002549 kvm_mmu_unlink_parents(kvm, sp);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08002550
Avi Kivityf6e2c02b2009-01-11 13:02:10 +02002551 if (!sp->role.invalid && !sp->role.direct)
Paolo Bonzini3ed1a472015-05-19 16:29:22 +02002552 unaccount_shadowed(kvm, sp);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08002553
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002554 if (sp->unsync)
2555 kvm_unlink_unsync_page(kvm, sp);
Avi Kivity4db35312007-11-21 15:28:32 +02002556 if (!sp->root_count) {
Gui Jianfeng54a4f022010-05-05 09:03:49 +08002557 /* Count self */
2558 ret++;
Xiao Guangrong77758342010-06-04 21:53:54 +08002559 list_move(&sp->link, invalid_list);
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08002560 kvm_mod_used_mmu_pages(kvm, -1);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05002561 } else {
Avi Kivity5b5c6a52008-07-11 18:07:26 +03002562 list_move(&sp->link, &kvm->arch.active_mmu_pages);
Gleb Natapov05988d72013-05-31 08:36:30 +08002563
2564 /*
2565 * The obsolete pages can not be used on any vcpus.
2566 * See the comments in kvm_mmu_invalidate_zap_all_pages().
2567 */
2568 if (!sp->role.invalid && !is_obsolete_sp(kvm, sp))
2569 kvm_reload_remote_mmus(kvm);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05002570 }
Xiao Guangrong77758342010-06-04 21:53:54 +08002571
2572 sp->role.invalid = 1;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002573 return ret;
Avi Kivitya4360362007-01-05 16:36:45 -08002574}
2575
Xiao Guangrong77758342010-06-04 21:53:54 +08002576static void kvm_mmu_commit_zap_page(struct kvm *kvm,
2577 struct list_head *invalid_list)
2578{
Takuya Yoshikawa945315b2013-03-06 16:05:52 +09002579 struct kvm_mmu_page *sp, *nsp;
Xiao Guangrong77758342010-06-04 21:53:54 +08002580
2581 if (list_empty(invalid_list))
2582 return;
2583
Avi Kivityc1427862012-05-14 15:44:06 +03002584 /*
Lan Tianyu9753f522016-03-13 11:10:24 +08002585 * We need to make sure everyone sees our modifications to
2586 * the page tables and see changes to vcpu->mode here. The barrier
2587 * in the kvm_flush_remote_tlbs() achieves this. This pairs
2588 * with vcpu_enter_guest and walk_shadow_page_lockless_begin/end.
2589 *
2590 * In addition, kvm_flush_remote_tlbs waits for all vcpus to exit
2591 * guest mode and/or lockless shadow page table walks.
Avi Kivityc1427862012-05-14 15:44:06 +03002592 */
Xiao Guangrong77758342010-06-04 21:53:54 +08002593 kvm_flush_remote_tlbs(kvm);
2594
Takuya Yoshikawa945315b2013-03-06 16:05:52 +09002595 list_for_each_entry_safe(sp, nsp, invalid_list, link) {
Xiao Guangrong77758342010-06-04 21:53:54 +08002596 WARN_ON(!sp->role.invalid || sp->root_count);
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08002597 kvm_mmu_free_page(sp);
Takuya Yoshikawa945315b2013-03-06 16:05:52 +09002598 }
Xiao Guangrong77758342010-06-04 21:53:54 +08002599}
2600
Takuya Yoshikawa5da59602013-03-06 16:06:58 +09002601static bool prepare_zap_oldest_mmu_page(struct kvm *kvm,
2602 struct list_head *invalid_list)
2603{
2604 struct kvm_mmu_page *sp;
2605
2606 if (list_empty(&kvm->arch.active_mmu_pages))
2607 return false;
2608
Geliang Tangd74c0e62016-01-01 19:47:14 +08002609 sp = list_last_entry(&kvm->arch.active_mmu_pages,
2610 struct kvm_mmu_page, link);
Wanpeng Li42bcbeb2017-08-10 06:55:51 -07002611 return kvm_mmu_prepare_zap_page(kvm, sp, invalid_list);
Takuya Yoshikawa5da59602013-03-06 16:06:58 +09002612}
2613
Izik Eidus82ce2c92007-10-02 18:52:55 +02002614/*
2615 * Changing the number of mmu pages allocated to the vm
Dave Hansen49d5ca22010-08-19 18:11:28 -07002616 * Note: if goal_nr_mmu_pages is too small, you will get dead lock
Izik Eidus82ce2c92007-10-02 18:52:55 +02002617 */
Dave Hansen49d5ca22010-08-19 18:11:28 -07002618void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int goal_nr_mmu_pages)
Izik Eidus82ce2c92007-10-02 18:52:55 +02002619{
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002620 LIST_HEAD(invalid_list);
Izik Eidus82ce2c92007-10-02 18:52:55 +02002621
Takuya Yoshikawab34cb592013-01-08 19:46:07 +09002622 spin_lock(&kvm->mmu_lock);
2623
Dave Hansen49d5ca22010-08-19 18:11:28 -07002624 if (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages) {
Takuya Yoshikawa5da59602013-03-06 16:06:58 +09002625 /* Need to free some mmu pages to achieve the goal. */
2626 while (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages)
2627 if (!prepare_zap_oldest_mmu_page(kvm, &invalid_list))
2628 break;
Izik Eidus82ce2c92007-10-02 18:52:55 +02002629
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08002630 kvm_mmu_commit_zap_page(kvm, &invalid_list);
Dave Hansen49d5ca22010-08-19 18:11:28 -07002631 goal_nr_mmu_pages = kvm->arch.n_used_mmu_pages;
Izik Eidus82ce2c92007-10-02 18:52:55 +02002632 }
Izik Eidus82ce2c92007-10-02 18:52:55 +02002633
Dave Hansen49d5ca22010-08-19 18:11:28 -07002634 kvm->arch.n_max_mmu_pages = goal_nr_mmu_pages;
Takuya Yoshikawab34cb592013-01-08 19:46:07 +09002635
2636 spin_unlock(&kvm->mmu_lock);
Izik Eidus82ce2c92007-10-02 18:52:55 +02002637}
2638
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002639int kvm_mmu_unprotect_page(struct kvm *kvm, gfn_t gfn)
Avi Kivitya4360362007-01-05 16:36:45 -08002640{
Avi Kivity4db35312007-11-21 15:28:32 +02002641 struct kvm_mmu_page *sp;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002642 LIST_HEAD(invalid_list);
Avi Kivitya4360362007-01-05 16:36:45 -08002643 int r;
2644
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002645 pgprintk("%s: looking for gfn %llx\n", __func__, gfn);
Avi Kivitya4360362007-01-05 16:36:45 -08002646 r = 0;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002647 spin_lock(&kvm->mmu_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08002648 for_each_gfn_indirect_valid_sp(kvm, sp, gfn) {
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002649 pgprintk("%s: gfn %llx role %x\n", __func__, gfn,
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002650 sp->role.word);
2651 r = 1;
Xiao Guangrongf41d3352010-06-04 21:56:11 +08002652 kvm_mmu_prepare_zap_page(kvm, sp, &invalid_list);
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002653 }
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002654 kvm_mmu_commit_zap_page(kvm, &invalid_list);
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002655 spin_unlock(&kvm->mmu_lock);
2656
Avi Kivitya4360362007-01-05 16:36:45 -08002657 return r;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002658}
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002659EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page);
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002660
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002661static void kvm_unsync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002662{
Xiao Guangrong5e1b3dd2010-04-28 11:55:06 +08002663 trace_kvm_mmu_unsync_page(sp);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002664 ++vcpu->kvm->stat.mmu_unsync;
2665 sp->unsync = 1;
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -02002666
Xiao Guangrong6b184932010-04-16 21:29:17 +08002667 kvm_mmu_mark_parents_unsync(sp);
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002668}
2669
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08002670static bool mmu_need_write_protect(struct kvm_vcpu *vcpu, gfn_t gfn,
2671 bool can_unsync)
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002672{
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002673 struct kvm_mmu_page *sp;
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002674
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08002675 if (kvm_page_track_is_active(vcpu, gfn, KVM_PAGE_TRACK_WRITE))
2676 return true;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002677
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002678 for_each_gfn_indirect_valid_sp(vcpu->kvm, sp, gfn) {
Xiao Guangrong36a2e672010-06-30 16:02:02 +08002679 if (!can_unsync)
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08002680 return true;
Xiao Guangrong36a2e672010-06-30 16:02:02 +08002681
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002682 if (sp->unsync)
2683 continue;
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002684
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002685 WARN_ON(sp->role.level != PT_PAGE_TABLE_LEVEL);
2686 kvm_unsync_page(vcpu, sp);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002687 }
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08002688
2689 return false;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002690}
2691
Dan Williamsba049e92016-01-15 16:56:11 -08002692static bool kvm_is_mmio_pfn(kvm_pfn_t pfn)
Paolo Bonzinid1fe9212015-07-07 15:03:18 +02002693{
2694 if (pfn_valid(pfn))
2695 return !is_zero_pfn(pfn) && PageReserved(pfn_to_page(pfn));
2696
2697 return true;
2698}
2699
Avi Kivityd555c332009-06-10 14:24:23 +03002700static int set_spte(struct kvm_vcpu *vcpu, u64 *sptep,
Xiao Guangrongc22885052013-01-08 14:36:04 +08002701 unsigned pte_access, int level,
Dan Williamsba049e92016-01-15 16:56:11 -08002702 gfn_t gfn, kvm_pfn_t pfn, bool speculative,
Lai Jiangshan9bdbba12010-11-19 17:03:22 +08002703 bool can_unsync, bool host_writable)
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002704{
Bandan Dasffb128c2016-07-12 18:18:49 -04002705 u64 spte = 0;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002706 int ret = 0;
Peter Feinerac8d57e2017-06-30 17:26:31 -07002707 struct kvm_mmu_page *sp;
Sheng Yang64d4d522008-10-09 16:01:57 +08002708
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002709 if (set_mmio_spte(vcpu, sptep, gfn, pfn, pte_access))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08002710 return 0;
2711
Peter Feinerac8d57e2017-06-30 17:26:31 -07002712 sp = page_header(__pa(sptep));
2713 if (sp_ad_disabled(sp))
2714 spte |= shadow_acc_track_value;
2715
Bandan Dasd95c5562016-07-12 18:18:51 -04002716 /*
2717 * For the EPT case, shadow_present_mask is 0 if hardware
2718 * supports exec-only page table entries. In that case,
2719 * ACC_USER_MASK and shadow_user_mask are used to represent
2720 * read access. See FNAME(gpte_access) in paging_tmpl.h.
2721 */
Bandan Dasffb128c2016-07-12 18:18:49 -04002722 spte |= shadow_present_mask;
Avi Kivity947da532008-03-18 11:05:52 +02002723 if (!speculative)
Peter Feinerac8d57e2017-06-30 17:26:31 -07002724 spte |= spte_shadow_accessed_mask(spte);
Xiao Guangrong640d9b02011-07-12 03:24:39 +08002725
Sheng Yang7b523452008-04-25 21:13:50 +08002726 if (pte_access & ACC_EXEC_MASK)
2727 spte |= shadow_x_mask;
2728 else
2729 spte |= shadow_nx_mask;
Xiao Guangrong49fde342012-06-20 15:58:58 +08002730
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002731 if (pte_access & ACC_USER_MASK)
Sheng Yang7b523452008-04-25 21:13:50 +08002732 spte |= shadow_user_mask;
Xiao Guangrong49fde342012-06-20 15:58:58 +08002733
Joerg Roedel852e3c12009-07-27 16:30:44 +02002734 if (level > PT_PAGE_TABLE_LEVEL)
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002735 spte |= PT_PAGE_SIZE_MASK;
Avi Kivityb0bc3ee2010-09-13 16:45:28 +02002736 if (tdp_enabled)
Sheng Yang4b12f0d2009-04-27 20:35:42 +08002737 spte |= kvm_x86_ops->get_mt_mask(vcpu, gfn,
Paolo Bonzinid1fe9212015-07-07 15:03:18 +02002738 kvm_is_mmio_pfn(pfn));
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002739
Lai Jiangshan9bdbba12010-11-19 17:03:22 +08002740 if (host_writable)
Izik Eidus14032832009-09-23 21:47:17 +03002741 spte |= SPTE_HOST_WRITEABLE;
Xiao Guangrongf8e453b2010-12-23 16:09:29 +08002742 else
2743 pte_access &= ~ACC_WRITE_MASK;
Izik Eidus14032832009-09-23 21:47:17 +03002744
Anthony Liguori35149e22008-04-02 14:46:56 -05002745 spte |= (u64)pfn << PAGE_SHIFT;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002746
Xiao Guangrongc22885052013-01-08 14:36:04 +08002747 if (pte_access & ACC_WRITE_MASK) {
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002748
Xiao Guangrongc2193462012-12-04 07:17:11 +08002749 /*
Xiao Guangrong7751bab2013-01-08 14:36:51 +08002750 * Other vcpu creates new sp in the window between
2751 * mapping_level() and acquiring mmu-lock. We can
2752 * allow guest to retry the access, the mapping can
2753 * be fixed if guest refault.
Xiao Guangrongc2193462012-12-04 07:17:11 +08002754 */
Joerg Roedel852e3c12009-07-27 16:30:44 +02002755 if (level > PT_PAGE_TABLE_LEVEL &&
Xiao Guangrong92f94f12016-02-24 17:51:06 +08002756 mmu_gfn_lpage_is_disallowed(vcpu, gfn, level))
Avi Kivitybe38d272010-06-06 14:31:27 +03002757 goto done;
Marcelo Tosatti38187c82008-09-23 13:18:32 -03002758
Xiao Guangrong49fde342012-06-20 15:58:58 +08002759 spte |= PT_WRITABLE_MASK | SPTE_MMU_WRITEABLE;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002760
Marcelo Tosattiecc55892008-11-25 15:58:07 +01002761 /*
2762 * Optimization: for pte sync, if spte was writable the hash
2763 * lookup is unnecessary (and expensive). Write protection
2764 * is responsibility of mmu_get_page / kvm_sync_page.
2765 * Same reasoning can be applied to dirty page accounting.
2766 */
Takuya Yoshikawa8dae4442010-01-18 18:45:10 +09002767 if (!can_unsync && is_writable_pte(*sptep))
Marcelo Tosattiecc55892008-11-25 15:58:07 +01002768 goto set_pte;
2769
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002770 if (mmu_need_write_protect(vcpu, gfn, can_unsync)) {
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002771 pgprintk("%s: found shadow page for %llx, marking ro\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002772 __func__, gfn);
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002773 ret = 1;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002774 pte_access &= ~ACC_WRITE_MASK;
Xiao Guangrong49fde342012-06-20 15:58:58 +08002775 spte &= ~(PT_WRITABLE_MASK | SPTE_MMU_WRITEABLE);
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002776 }
2777 }
2778
Kai Huang9b51a632015-01-28 10:54:25 +08002779 if (pte_access & ACC_WRITE_MASK) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002780 kvm_vcpu_mark_page_dirty(vcpu, gfn);
Peter Feinerac8d57e2017-06-30 17:26:31 -07002781 spte |= spte_shadow_dirty_mask(spte);
Kai Huang9b51a632015-01-28 10:54:25 +08002782 }
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002783
Junaid Shahidf160c7b2016-12-06 16:46:16 -08002784 if (speculative)
2785 spte = mark_spte_for_access_track(spte);
2786
Marcelo Tosatti38187c82008-09-23 13:18:32 -03002787set_pte:
Xiao Guangrong6e7d0352012-06-20 15:58:33 +08002788 if (mmu_spte_update(sptep, spte))
Xiao Guangrongb330aa02010-11-19 17:02:35 +08002789 kvm_flush_remote_tlbs(vcpu->kvm);
Avi Kivitybe38d272010-06-06 14:31:27 +03002790done:
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002791 return ret;
2792}
2793
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002794static bool mmu_set_spte(struct kvm_vcpu *vcpu, u64 *sptep, unsigned pte_access,
Dan Williamsba049e92016-01-15 16:56:11 -08002795 int write_fault, int level, gfn_t gfn, kvm_pfn_t pfn,
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002796 bool speculative, bool host_writable)
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002797{
2798 int was_rmapped = 0;
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03002799 int rmap_count;
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002800 bool emulate = false;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002801
Xiao Guangrongf7616202013-02-05 15:27:27 +08002802 pgprintk("%s: spte %llx write_fault %d gfn %llx\n", __func__,
2803 *sptep, write_fault, gfn);
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002804
Takuya Yoshikawaafd28fe2015-11-20 17:44:55 +09002805 if (is_shadow_present_pte(*sptep)) {
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002806 /*
2807 * If we overwrite a PTE page pointer with a 2MB PMD, unlink
2808 * the parent of the now unreachable PTE.
2809 */
Joerg Roedel852e3c12009-07-27 16:30:44 +02002810 if (level > PT_PAGE_TABLE_LEVEL &&
2811 !is_large_pte(*sptep)) {
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002812 struct kvm_mmu_page *child;
Avi Kivityd555c332009-06-10 14:24:23 +03002813 u64 pte = *sptep;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002814
2815 child = page_header(pte & PT64_BASE_ADDR_MASK);
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08002816 drop_parent_pte(child, sptep);
Marcelo Tosatti3be22642010-05-28 09:44:59 -03002817 kvm_flush_remote_tlbs(vcpu->kvm);
Avi Kivityd555c332009-06-10 14:24:23 +03002818 } else if (pfn != spte_to_pfn(*sptep)) {
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002819 pgprintk("hfn old %llx new %llx\n",
Avi Kivityd555c332009-06-10 14:24:23 +03002820 spte_to_pfn(*sptep), pfn);
Xiao Guangrongc3707952011-07-12 03:28:04 +08002821 drop_spte(vcpu->kvm, sptep);
Xiao Guangrong91546352010-06-30 16:04:06 +08002822 kvm_flush_remote_tlbs(vcpu->kvm);
Joerg Roedel6bed6b92009-02-18 14:08:59 +01002823 } else
2824 was_rmapped = 1;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002825 }
Joerg Roedel852e3c12009-07-27 16:30:44 +02002826
Xiao Guangrongc22885052013-01-08 14:36:04 +08002827 if (set_spte(vcpu, sptep, pte_access, level, gfn, pfn, speculative,
2828 true, host_writable)) {
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002829 if (write_fault)
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002830 emulate = true;
Liang Chen77c39132014-09-18 12:38:37 -04002831 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Marcelo Tosattia378b4e2008-09-23 13:18:31 -03002832 }
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002833
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002834 if (unlikely(is_mmio_spte(*sptep)))
2835 emulate = true;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08002836
Avi Kivityd555c332009-06-10 14:24:23 +03002837 pgprintk("%s: setting spte %llx\n", __func__, *sptep);
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002838 pgprintk("instantiating %s PTE (%s) at %llx (%llx) addr %p\n",
Avi Kivityd555c332009-06-10 14:24:23 +03002839 is_large_pte(*sptep)? "2MB" : "4kB",
Junaid Shahidf160c7b2016-12-06 16:46:16 -08002840 *sptep & PT_WRITABLE_MASK ? "RW" : "R", gfn,
Joerg Roedela205bc12009-07-09 16:36:01 +02002841 *sptep, sptep);
Avi Kivityd555c332009-06-10 14:24:23 +03002842 if (!was_rmapped && is_large_pte(*sptep))
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002843 ++vcpu->kvm->stat.lpages;
2844
Xiao Guangrongffb61bb2011-07-12 03:22:01 +08002845 if (is_shadow_present_pte(*sptep)) {
Xiao Guangrongffb61bb2011-07-12 03:22:01 +08002846 if (!was_rmapped) {
2847 rmap_count = rmap_add(vcpu, sptep, gfn);
2848 if (rmap_count > RMAP_RECYCLE_THRESHOLD)
2849 rmap_recycle(vcpu, sptep, gfn);
2850 }
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002851 }
Xiao Guangrongcb9aaa32012-08-03 15:42:10 +08002852
Xiao Guangrongf3ac1a42012-10-16 20:07:03 +08002853 kvm_release_pfn_clean(pfn);
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002854
2855 return emulate;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002856}
2857
Dan Williamsba049e92016-01-15 16:56:11 -08002858static kvm_pfn_t pte_prefetch_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn,
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002859 bool no_dirty_log)
2860{
2861 struct kvm_memory_slot *slot;
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002862
Xiao Guangrong5d163b12011-03-09 15:43:00 +08002863 slot = gfn_to_memslot_dirty_bitmap(vcpu, gfn, no_dirty_log);
Xiao Guangrong903816f2012-07-17 21:54:11 +08002864 if (!slot)
Xiao Guangrong6c8ee572012-08-03 15:37:54 +08002865 return KVM_PFN_ERR_FAULT;
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002866
Xiao Guangrong037d92d2012-08-21 10:59:12 +08002867 return gfn_to_pfn_memslot_atomic(slot, gfn);
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002868}
2869
2870static int direct_pte_prefetch_many(struct kvm_vcpu *vcpu,
2871 struct kvm_mmu_page *sp,
2872 u64 *start, u64 *end)
2873{
2874 struct page *pages[PTE_PREFETCH_NUM];
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02002875 struct kvm_memory_slot *slot;
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002876 unsigned access = sp->role.access;
2877 int i, ret;
2878 gfn_t gfn;
2879
2880 gfn = kvm_mmu_page_get_gfn(sp, start - sp->spt);
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02002881 slot = gfn_to_memslot_dirty_bitmap(vcpu, gfn, access & ACC_WRITE_MASK);
2882 if (!slot)
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002883 return -1;
2884
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02002885 ret = gfn_to_page_many_atomic(slot, gfn, pages, end - start);
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002886 if (ret <= 0)
2887 return -1;
2888
2889 for (i = 0; i < ret; i++, gfn++, start++)
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002890 mmu_set_spte(vcpu, start, access, 0, sp->role.level, gfn,
2891 page_to_pfn(pages[i]), true, true);
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002892
2893 return 0;
2894}
2895
2896static void __direct_pte_prefetch(struct kvm_vcpu *vcpu,
2897 struct kvm_mmu_page *sp, u64 *sptep)
2898{
2899 u64 *spte, *start = NULL;
2900 int i;
2901
2902 WARN_ON(!sp->role.direct);
2903
2904 i = (sptep - sp->spt) & ~(PTE_PREFETCH_NUM - 1);
2905 spte = sp->spt + i;
2906
2907 for (i = 0; i < PTE_PREFETCH_NUM; i++, spte++) {
Xiao Guangrongc3707952011-07-12 03:28:04 +08002908 if (is_shadow_present_pte(*spte) || spte == sptep) {
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002909 if (!start)
2910 continue;
2911 if (direct_pte_prefetch_many(vcpu, sp, start, spte) < 0)
2912 break;
2913 start = NULL;
2914 } else if (!start)
2915 start = spte;
2916 }
2917}
2918
2919static void direct_pte_prefetch(struct kvm_vcpu *vcpu, u64 *sptep)
2920{
2921 struct kvm_mmu_page *sp;
2922
Peter Feinerac8d57e2017-06-30 17:26:31 -07002923 sp = page_header(__pa(sptep));
2924
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002925 /*
Peter Feinerac8d57e2017-06-30 17:26:31 -07002926 * Without accessed bits, there's no way to distinguish between
2927 * actually accessed translations and prefetched, so disable pte
2928 * prefetch if accessed bits aren't available.
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002929 */
Peter Feinerac8d57e2017-06-30 17:26:31 -07002930 if (sp_ad_disabled(sp))
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002931 return;
2932
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002933 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
2934 return;
2935
2936 __direct_pte_prefetch(vcpu, sp, sptep);
2937}
2938
Takuya Yoshikawa7ee0e5b2015-11-20 17:42:23 +09002939static int __direct_map(struct kvm_vcpu *vcpu, int write, int map_writable,
Dan Williamsba049e92016-01-15 16:56:11 -08002940 int level, gfn_t gfn, kvm_pfn_t pfn, bool prefault)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002941{
Avi Kivity9f652d212008-12-25 14:54:25 +02002942 struct kvm_shadow_walk_iterator iterator;
2943 struct kvm_mmu_page *sp;
Xiao Guangrongb90a0e62011-07-12 03:25:56 +08002944 int emulate = 0;
Avi Kivity9f652d212008-12-25 14:54:25 +02002945 gfn_t pseudo_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002946
Marcelo Tosatti989c6b32013-12-19 15:28:51 -02002947 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
2948 return 0;
2949
Avi Kivity9f652d212008-12-25 14:54:25 +02002950 for_each_shadow_entry(vcpu, (u64)gfn << PAGE_SHIFT, iterator) {
Joerg Roedel852e3c12009-07-27 16:30:44 +02002951 if (iterator.level == level) {
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002952 emulate = mmu_set_spte(vcpu, iterator.sptep, ACC_ALL,
2953 write, level, gfn, pfn, prefault,
2954 map_writable);
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002955 direct_pte_prefetch(vcpu, iterator.sptep);
Avi Kivity9f652d212008-12-25 14:54:25 +02002956 ++vcpu->stat.pf_fixed;
2957 break;
2958 }
2959
Marcelo Tosatti404381c2014-02-24 13:59:32 -03002960 drop_large_spte(vcpu, iterator.sptep);
Xiao Guangrongc3707952011-07-12 03:28:04 +08002961 if (!is_shadow_present_pte(*iterator.sptep)) {
Lai Jiangshanc9fa0b32010-05-26 16:48:25 +08002962 u64 base_addr = iterator.addr;
2963
2964 base_addr &= PT64_LVL_ADDR_MASK(iterator.level);
2965 pseudo_gfn = base_addr >> PAGE_SHIFT;
Avi Kivity9f652d212008-12-25 14:54:25 +02002966 sp = kvm_mmu_get_page(vcpu, pseudo_gfn, iterator.addr,
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09002967 iterator.level - 1, 1, ACC_ALL);
Avi Kivity9f652d212008-12-25 14:54:25 +02002968
Takuya Yoshikawa98bba232015-11-26 21:14:34 +09002969 link_shadow_page(vcpu, iterator.sptep, sp);
Avi Kivity9f652d212008-12-25 14:54:25 +02002970 }
2971 }
Xiao Guangrongb90a0e62011-07-12 03:25:56 +08002972 return emulate;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002973}
2974
Huang Ying77db5cb2010-10-08 16:24:15 +08002975static void kvm_send_hwpoison_signal(unsigned long address, struct task_struct *tsk)
Huang Yingbf998152010-05-31 14:28:19 +08002976{
Huang Ying77db5cb2010-10-08 16:24:15 +08002977 siginfo_t info;
Huang Yingbf998152010-05-31 14:28:19 +08002978
Huang Ying77db5cb2010-10-08 16:24:15 +08002979 info.si_signo = SIGBUS;
2980 info.si_errno = 0;
2981 info.si_code = BUS_MCEERR_AR;
2982 info.si_addr = (void __user *)address;
2983 info.si_addr_lsb = PAGE_SHIFT;
2984
2985 send_sig_info(SIGBUS, &info, tsk);
Huang Yingbf998152010-05-31 14:28:19 +08002986}
2987
Dan Williamsba049e92016-01-15 16:56:11 -08002988static int kvm_handle_bad_page(struct kvm_vcpu *vcpu, gfn_t gfn, kvm_pfn_t pfn)
Huang Yingbf998152010-05-31 14:28:19 +08002989{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08002990 /*
2991 * Do not cache the mmio info caused by writing the readonly gfn
2992 * into the spte otherwise read access on readonly gfn also can
2993 * caused mmio page fault and treat it as mmio access.
2994 * Return 1 to tell kvm to emulate it.
2995 */
2996 if (pfn == KVM_PFN_ERR_RO_FAULT)
2997 return 1;
2998
Xiao Guangronge6c15022012-08-03 15:38:36 +08002999 if (pfn == KVM_PFN_ERR_HWPOISON) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003000 kvm_send_hwpoison_signal(kvm_vcpu_gfn_to_hva(vcpu, gfn), current);
Huang Yingbf998152010-05-31 14:28:19 +08003001 return 0;
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003002 }
Gleb Natapovedba23e2010-07-07 20:16:45 +03003003
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003004 return -EFAULT;
Huang Yingbf998152010-05-31 14:28:19 +08003005}
3006
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003007static void transparent_hugepage_adjust(struct kvm_vcpu *vcpu,
Dan Williamsba049e92016-01-15 16:56:11 -08003008 gfn_t *gfnp, kvm_pfn_t *pfnp,
3009 int *levelp)
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003010{
Dan Williamsba049e92016-01-15 16:56:11 -08003011 kvm_pfn_t pfn = *pfnp;
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003012 gfn_t gfn = *gfnp;
3013 int level = *levelp;
3014
3015 /*
3016 * Check if it's a transparent hugepage. If this would be an
3017 * hugetlbfs page, level wouldn't be set to
3018 * PT_PAGE_TABLE_LEVEL and there would be no adjustment done
3019 * here.
3020 */
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00003021 if (!is_error_noslot_pfn(pfn) && !kvm_is_reserved_pfn(pfn) &&
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003022 level == PT_PAGE_TABLE_LEVEL &&
Andrea Arcangeli127393f2016-05-05 16:22:20 -07003023 PageTransCompoundMap(pfn_to_page(pfn)) &&
Xiao Guangrong92f94f12016-02-24 17:51:06 +08003024 !mmu_gfn_lpage_is_disallowed(vcpu, gfn, PT_DIRECTORY_LEVEL)) {
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003025 unsigned long mask;
3026 /*
3027 * mmu_notifier_retry was successful and we hold the
3028 * mmu_lock here, so the pmd can't become splitting
3029 * from under us, and in turn
3030 * __split_huge_page_refcount() can't run from under
3031 * us and we can safely transfer the refcount from
3032 * PG_tail to PG_head as we switch the pfn to tail to
3033 * head.
3034 */
3035 *levelp = level = PT_DIRECTORY_LEVEL;
3036 mask = KVM_PAGES_PER_HPAGE(level) - 1;
3037 VM_BUG_ON((gfn & mask) != (pfn & mask));
3038 if (pfn & mask) {
3039 gfn &= ~mask;
3040 *gfnp = gfn;
3041 kvm_release_pfn_clean(pfn);
3042 pfn &= ~mask;
Xiao Guangrongc3586662012-05-28 14:10:43 +08003043 kvm_get_pfn(pfn);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003044 *pfnp = pfn;
3045 }
3046 }
3047}
3048
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003049static bool handle_abnormal_pfn(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn,
Dan Williamsba049e92016-01-15 16:56:11 -08003050 kvm_pfn_t pfn, unsigned access, int *ret_val)
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003051{
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003052 /* The pfn is invalid, report the error! */
Xiao Guangrong81c52c52012-10-16 20:10:59 +08003053 if (unlikely(is_error_pfn(pfn))) {
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003054 *ret_val = kvm_handle_bad_page(vcpu, gfn, pfn);
Paolo Bonzini798e88b2016-02-23 15:28:51 +01003055 return true;
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003056 }
3057
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003058 if (unlikely(is_noslot_pfn(pfn)))
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003059 vcpu_cache_mmio_info(vcpu, gva, gfn, access);
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003060
Paolo Bonzini798e88b2016-02-23 15:28:51 +01003061 return false;
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003062}
3063
Xiao Guangronge5552fd2013-07-30 21:01:59 +08003064static bool page_fault_can_be_fast(u32 error_code)
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003065{
3066 /*
Xiao Guangrong1c118b82013-07-18 12:52:37 +08003067 * Do not fix the mmio spte with invalid generation number which
3068 * need to be updated by slow page fault path.
3069 */
3070 if (unlikely(error_code & PFERR_RSVD_MASK))
3071 return false;
3072
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003073 /* See if the page fault is due to an NX violation */
3074 if (unlikely(((error_code & (PFERR_FETCH_MASK | PFERR_PRESENT_MASK))
3075 == (PFERR_FETCH_MASK | PFERR_PRESENT_MASK))))
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003076 return false;
3077
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003078 /*
3079 * #PF can be fast if:
3080 * 1. The shadow page table entry is not present, which could mean that
3081 * the fault is potentially caused by access tracking (if enabled).
3082 * 2. The shadow page table entry is present and the fault
3083 * is caused by write-protect, that means we just need change the W
3084 * bit of the spte which can be done out of mmu-lock.
3085 *
3086 * However, if access tracking is disabled we know that a non-present
3087 * page must be a genuine page fault where we have to create a new SPTE.
3088 * So, if access tracking is disabled, we return true only for write
3089 * accesses to a present page.
3090 */
3091
3092 return shadow_acc_track_mask != 0 ||
3093 ((error_code & (PFERR_WRITE_MASK | PFERR_PRESENT_MASK))
3094 == (PFERR_WRITE_MASK | PFERR_PRESENT_MASK));
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003095}
3096
Junaid Shahid97dceba2016-12-06 16:46:12 -08003097/*
3098 * Returns true if the SPTE was fixed successfully. Otherwise,
3099 * someone else modified the SPTE from its original value.
3100 */
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003101static bool
Xiao Guangrong92a476c2014-04-17 17:06:13 +08003102fast_pf_fix_direct_spte(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
Junaid Shahidd3e328f2016-12-21 20:29:32 -08003103 u64 *sptep, u64 old_spte, u64 new_spte)
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003104{
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003105 gfn_t gfn;
3106
3107 WARN_ON(!sp->role.direct);
3108
Kai Huang9b51a632015-01-28 10:54:25 +08003109 /*
3110 * Theoretically we could also set dirty bit (and flush TLB) here in
3111 * order to eliminate unnecessary PML logging. See comments in
3112 * set_spte. But fast_page_fault is very unlikely to happen with PML
3113 * enabled, so we do not do this. This might result in the same GPA
3114 * to be logged in PML buffer again when the write really happens, and
3115 * eventually to be called by mark_page_dirty twice. But it's also no
3116 * harm. This also avoids the TLB flush needed after setting dirty bit
3117 * so non-PML cases won't be impacted.
3118 *
3119 * Compare with set_spte where instead shadow_dirty_mask is set.
3120 */
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003121 if (cmpxchg64(sptep, old_spte, new_spte) != old_spte)
Junaid Shahid97dceba2016-12-06 16:46:12 -08003122 return false;
3123
Junaid Shahidd3e328f2016-12-21 20:29:32 -08003124 if (is_writable_pte(new_spte) && !is_writable_pte(old_spte)) {
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003125 /*
3126 * The gfn of direct spte is stable since it is
3127 * calculated by sp->gfn.
3128 */
3129 gfn = kvm_mmu_page_get_gfn(sp, sptep - sp->spt);
3130 kvm_vcpu_mark_page_dirty(vcpu, gfn);
3131 }
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003132
3133 return true;
3134}
3135
Junaid Shahidd3e328f2016-12-21 20:29:32 -08003136static bool is_access_allowed(u32 fault_err_code, u64 spte)
3137{
3138 if (fault_err_code & PFERR_FETCH_MASK)
3139 return is_executable_pte(spte);
3140
3141 if (fault_err_code & PFERR_WRITE_MASK)
3142 return is_writable_pte(spte);
3143
3144 /* Fault was on Read access */
3145 return spte & PT_PRESENT_MASK;
3146}
3147
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003148/*
3149 * Return value:
3150 * - true: let the vcpu to access on the same address again.
3151 * - false: let the real page fault path to fix it.
3152 */
3153static bool fast_page_fault(struct kvm_vcpu *vcpu, gva_t gva, int level,
3154 u32 error_code)
3155{
3156 struct kvm_shadow_walk_iterator iterator;
Xiao Guangrong92a476c2014-04-17 17:06:13 +08003157 struct kvm_mmu_page *sp;
Junaid Shahid97dceba2016-12-06 16:46:12 -08003158 bool fault_handled = false;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003159 u64 spte = 0ull;
Junaid Shahid97dceba2016-12-06 16:46:12 -08003160 uint retry_count = 0;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003161
Marcelo Tosatti37f6a4e2014-01-03 17:09:32 -02003162 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3163 return false;
3164
Xiao Guangronge5552fd2013-07-30 21:01:59 +08003165 if (!page_fault_can_be_fast(error_code))
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003166 return false;
3167
3168 walk_shadow_page_lockless_begin(vcpu);
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003169
Junaid Shahid97dceba2016-12-06 16:46:12 -08003170 do {
Junaid Shahidd3e328f2016-12-21 20:29:32 -08003171 u64 new_spte;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003172
Junaid Shahidd162f302016-12-21 20:29:30 -08003173 for_each_shadow_entry_lockless(vcpu, gva, iterator, spte)
3174 if (!is_shadow_present_pte(spte) ||
3175 iterator.level < level)
3176 break;
3177
Junaid Shahid97dceba2016-12-06 16:46:12 -08003178 sp = page_header(__pa(iterator.sptep));
3179 if (!is_last_spte(spte, sp->role.level))
3180 break;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003181
Junaid Shahid97dceba2016-12-06 16:46:12 -08003182 /*
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003183 * Check whether the memory access that caused the fault would
3184 * still cause it if it were to be performed right now. If not,
3185 * then this is a spurious fault caused by TLB lazily flushed,
3186 * or some other CPU has already fixed the PTE after the
3187 * current CPU took the fault.
Junaid Shahid97dceba2016-12-06 16:46:12 -08003188 *
3189 * Need not check the access of upper level table entries since
3190 * they are always ACC_ALL.
3191 */
Junaid Shahidd3e328f2016-12-21 20:29:32 -08003192 if (is_access_allowed(error_code, spte)) {
3193 fault_handled = true;
3194 break;
Junaid Shahid97dceba2016-12-06 16:46:12 -08003195 }
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003196
Junaid Shahidd3e328f2016-12-21 20:29:32 -08003197 new_spte = spte;
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003198
Junaid Shahidd3e328f2016-12-21 20:29:32 -08003199 if (is_access_track_spte(spte))
3200 new_spte = restore_acc_track_spte(new_spte);
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003201
Junaid Shahid97dceba2016-12-06 16:46:12 -08003202 /*
Junaid Shahidd3e328f2016-12-21 20:29:32 -08003203 * Currently, to simplify the code, write-protection can
3204 * be removed in the fast path only if the SPTE was
3205 * write-protected for dirty-logging or access tracking.
Junaid Shahid97dceba2016-12-06 16:46:12 -08003206 */
Junaid Shahidd3e328f2016-12-21 20:29:32 -08003207 if ((error_code & PFERR_WRITE_MASK) &&
3208 spte_can_locklessly_be_made_writable(spte))
3209 {
3210 new_spte |= PT_WRITABLE_MASK;
3211
3212 /*
3213 * Do not fix write-permission on the large spte. Since
3214 * we only dirty the first page into the dirty-bitmap in
3215 * fast_pf_fix_direct_spte(), other pages are missed
3216 * if its slot has dirty logging enabled.
3217 *
3218 * Instead, we let the slow page fault path create a
3219 * normal spte to fix the access.
3220 *
3221 * See the comments in kvm_arch_commit_memory_region().
3222 */
3223 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
3224 break;
3225 }
3226
3227 /* Verify that the fault can be handled in the fast path */
3228 if (new_spte == spte ||
3229 !is_access_allowed(error_code, new_spte))
Junaid Shahid97dceba2016-12-06 16:46:12 -08003230 break;
Xiao Guangrongc126d942014-04-17 17:06:14 +08003231
Junaid Shahid97dceba2016-12-06 16:46:12 -08003232 /*
3233 * Currently, fast page fault only works for direct mapping
3234 * since the gfn is not stable for indirect shadow page. See
3235 * Documentation/virtual/kvm/locking.txt to get more detail.
3236 */
3237 fault_handled = fast_pf_fix_direct_spte(vcpu, sp,
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003238 iterator.sptep, spte,
Junaid Shahidd3e328f2016-12-21 20:29:32 -08003239 new_spte);
Junaid Shahid97dceba2016-12-06 16:46:12 -08003240 if (fault_handled)
3241 break;
3242
3243 if (++retry_count > 4) {
3244 printk_once(KERN_WARNING
3245 "kvm: Fast #PF retrying more than 4 times.\n");
3246 break;
3247 }
3248
Junaid Shahid97dceba2016-12-06 16:46:12 -08003249 } while (true);
3250
Xiao Guangronga72faf22012-06-20 15:59:41 +08003251 trace_fast_page_fault(vcpu, gva, error_code, iterator.sptep,
Junaid Shahid97dceba2016-12-06 16:46:12 -08003252 spte, fault_handled);
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003253 walk_shadow_page_lockless_end(vcpu);
3254
Junaid Shahid97dceba2016-12-06 16:46:12 -08003255 return fault_handled;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003256}
3257
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003258static bool try_async_pf(struct kvm_vcpu *vcpu, bool prefault, gfn_t gfn,
Dan Williamsba049e92016-01-15 16:56:11 -08003259 gva_t gva, kvm_pfn_t *pfn, bool write, bool *writable);
Wanpeng Li26eeb532017-08-10 16:28:02 -07003260static int make_mmu_pages_available(struct kvm_vcpu *vcpu);
Xiao Guangrong060c2ab2010-11-12 14:49:11 +08003261
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003262static int nonpaging_map(struct kvm_vcpu *vcpu, gva_t v, u32 error_code,
3263 gfn_t gfn, bool prefault)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003264{
3265 int r;
Joerg Roedel852e3c12009-07-27 16:30:44 +02003266 int level;
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003267 bool force_pt_level = false;
Dan Williamsba049e92016-01-15 16:56:11 -08003268 kvm_pfn_t pfn;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003269 unsigned long mmu_seq;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003270 bool map_writable, write = error_code & PFERR_WRITE_MASK;
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003271
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003272 level = mapping_level(vcpu, gfn, &force_pt_level);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003273 if (likely(!force_pt_level)) {
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003274 /*
3275 * This path builds a PAE pagetable - so we can map
3276 * 2mb pages at maximum. Therefore check if the level
3277 * is larger than that.
3278 */
3279 if (level > PT_DIRECTORY_LEVEL)
3280 level = PT_DIRECTORY_LEVEL;
Joerg Roedel852e3c12009-07-27 16:30:44 +02003281
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003282 gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1);
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003283 }
Marcelo Tosatti05da4552008-02-23 11:44:30 -03003284
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003285 if (fast_page_fault(vcpu, v, level, error_code))
3286 return 0;
3287
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003288 mmu_seq = vcpu->kvm->mmu_notifier_seq;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03003289 smp_rmb();
Xiao Guangrong060c2ab2010-11-12 14:49:11 +08003290
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003291 if (try_async_pf(vcpu, prefault, gfn, v, &pfn, write, &map_writable))
Xiao Guangrong060c2ab2010-11-12 14:49:11 +08003292 return 0;
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003293
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003294 if (handle_abnormal_pfn(vcpu, v, gfn, pfn, ACC_ALL, &r))
3295 return r;
Avi Kivityd196e342008-01-24 11:44:11 +02003296
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003297 spin_lock(&vcpu->kvm->mmu_lock);
Christoffer Dall8ca40a72012-10-14 23:10:18 -04003298 if (mmu_notifier_retry(vcpu->kvm, mmu_seq))
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003299 goto out_unlock;
Wanpeng Li26eeb532017-08-10 16:28:02 -07003300 if (make_mmu_pages_available(vcpu) < 0)
3301 goto out_unlock;
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003302 if (likely(!force_pt_level))
3303 transparent_hugepage_adjust(vcpu, &gfn, &pfn, &level);
Takuya Yoshikawa7ee0e5b2015-11-20 17:42:23 +09003304 r = __direct_map(vcpu, write, map_writable, level, gfn, pfn, prefault);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003305 spin_unlock(&vcpu->kvm->mmu_lock);
3306
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003307 return r;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003308
3309out_unlock:
3310 spin_unlock(&vcpu->kvm->mmu_lock);
3311 kvm_release_pfn_clean(pfn);
3312 return 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003313}
3314
3315
Avi Kivity17ac10a2007-01-05 16:36:40 -08003316static void mmu_free_roots(struct kvm_vcpu *vcpu)
3317{
3318 int i;
Avi Kivity4db35312007-11-21 15:28:32 +02003319 struct kvm_mmu_page *sp;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08003320 LIST_HEAD(invalid_list);
Avi Kivity17ac10a2007-01-05 16:36:40 -08003321
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003322 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
Avi Kivity7b53aa52007-06-05 12:17:03 +03003323 return;
Gleb Natapov35af5772013-05-16 11:55:51 +03003324
Yu Zhang2a7266a2017-08-24 20:27:54 +08003325 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_4LEVEL &&
3326 (vcpu->arch.mmu.root_level == PT64_ROOT_4LEVEL ||
Joerg Roedel81407ca2010-09-10 17:31:00 +02003327 vcpu->arch.mmu.direct_map)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003328 hpa_t root = vcpu->arch.mmu.root_hpa;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003329
Gleb Natapov35af5772013-05-16 11:55:51 +03003330 spin_lock(&vcpu->kvm->mmu_lock);
Avi Kivity4db35312007-11-21 15:28:32 +02003331 sp = page_header(root);
3332 --sp->root_count;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08003333 if (!sp->root_count && sp->role.invalid) {
3334 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, &invalid_list);
3335 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
3336 }
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003337 spin_unlock(&vcpu->kvm->mmu_lock);
Gleb Natapov35af5772013-05-16 11:55:51 +03003338 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003339 return;
3340 }
Gleb Natapov35af5772013-05-16 11:55:51 +03003341
3342 spin_lock(&vcpu->kvm->mmu_lock);
Avi Kivity17ac10a2007-01-05 16:36:40 -08003343 for (i = 0; i < 4; ++i) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003344 hpa_t root = vcpu->arch.mmu.pae_root[i];
Avi Kivity17ac10a2007-01-05 16:36:40 -08003345
Avi Kivity417726a2007-04-12 17:35:58 +03003346 if (root) {
Avi Kivity417726a2007-04-12 17:35:58 +03003347 root &= PT64_BASE_ADDR_MASK;
Avi Kivity4db35312007-11-21 15:28:32 +02003348 sp = page_header(root);
3349 --sp->root_count;
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05003350 if (!sp->root_count && sp->role.invalid)
Xiao Guangrongd98ba052010-06-04 21:55:29 +08003351 kvm_mmu_prepare_zap_page(vcpu->kvm, sp,
3352 &invalid_list);
Avi Kivity417726a2007-04-12 17:35:58 +03003353 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003354 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003355 }
Xiao Guangrongd98ba052010-06-04 21:55:29 +08003356 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003357 spin_unlock(&vcpu->kvm->mmu_lock);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003358 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003359}
3360
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003361static int mmu_check_root(struct kvm_vcpu *vcpu, gfn_t root_gfn)
3362{
3363 int ret = 0;
3364
3365 if (!kvm_is_visible_gfn(vcpu->kvm, root_gfn)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03003366 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003367 ret = 1;
3368 }
3369
3370 return ret;
3371}
3372
Joerg Roedel651dd372010-09-10 17:30:59 +02003373static int mmu_alloc_direct_roots(struct kvm_vcpu *vcpu)
3374{
3375 struct kvm_mmu_page *sp;
Avi Kivity7ebaf152010-10-03 18:51:39 +02003376 unsigned i;
Joerg Roedel651dd372010-09-10 17:30:59 +02003377
Yu Zhang2a7266a2017-08-24 20:27:54 +08003378 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_4LEVEL) {
Joerg Roedel651dd372010-09-10 17:30:59 +02003379 spin_lock(&vcpu->kvm->mmu_lock);
Wanpeng Li26eeb532017-08-10 16:28:02 -07003380 if(make_mmu_pages_available(vcpu) < 0) {
3381 spin_unlock(&vcpu->kvm->mmu_lock);
3382 return 1;
3383 }
Yu Zhang2a7266a2017-08-24 20:27:54 +08003384 sp = kvm_mmu_get_page(vcpu, 0, 0, PT64_ROOT_4LEVEL, 1, ACC_ALL);
Joerg Roedel651dd372010-09-10 17:30:59 +02003385 ++sp->root_count;
3386 spin_unlock(&vcpu->kvm->mmu_lock);
3387 vcpu->arch.mmu.root_hpa = __pa(sp->spt);
3388 } else if (vcpu->arch.mmu.shadow_root_level == PT32E_ROOT_LEVEL) {
3389 for (i = 0; i < 4; ++i) {
3390 hpa_t root = vcpu->arch.mmu.pae_root[i];
3391
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003392 MMU_WARN_ON(VALID_PAGE(root));
Joerg Roedel651dd372010-09-10 17:30:59 +02003393 spin_lock(&vcpu->kvm->mmu_lock);
Wanpeng Li26eeb532017-08-10 16:28:02 -07003394 if (make_mmu_pages_available(vcpu) < 0) {
3395 spin_unlock(&vcpu->kvm->mmu_lock);
3396 return 1;
3397 }
Avi Kivity649497d2010-12-28 12:09:07 +02003398 sp = kvm_mmu_get_page(vcpu, i << (30 - PAGE_SHIFT),
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09003399 i << 30, PT32_ROOT_LEVEL, 1, ACC_ALL);
Joerg Roedel651dd372010-09-10 17:30:59 +02003400 root = __pa(sp->spt);
3401 ++sp->root_count;
3402 spin_unlock(&vcpu->kvm->mmu_lock);
3403 vcpu->arch.mmu.pae_root[i] = root | PT_PRESENT_MASK;
Joerg Roedel651dd372010-09-10 17:30:59 +02003404 }
Xiao Guangrong62927572010-09-27 18:02:12 +08003405 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
Joerg Roedel651dd372010-09-10 17:30:59 +02003406 } else
3407 BUG();
3408
3409 return 0;
3410}
3411
3412static int mmu_alloc_shadow_roots(struct kvm_vcpu *vcpu)
Avi Kivity17ac10a2007-01-05 16:36:40 -08003413{
Avi Kivity4db35312007-11-21 15:28:32 +02003414 struct kvm_mmu_page *sp;
Joerg Roedel81407ca2010-09-10 17:31:00 +02003415 u64 pdptr, pm_mask;
3416 gfn_t root_gfn;
3417 int i;
Avi Kivity3bb65a22007-01-05 16:36:51 -08003418
Joerg Roedel5777ed32010-09-10 17:30:42 +02003419 root_gfn = vcpu->arch.mmu.get_cr3(vcpu) >> PAGE_SHIFT;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003420
Joerg Roedel651dd372010-09-10 17:30:59 +02003421 if (mmu_check_root(vcpu, root_gfn))
3422 return 1;
3423
3424 /*
3425 * Do we shadow a long mode page table? If so we need to
3426 * write-protect the guests page table root.
3427 */
Yu Zhang2a7266a2017-08-24 20:27:54 +08003428 if (vcpu->arch.mmu.root_level == PT64_ROOT_4LEVEL) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003429 hpa_t root = vcpu->arch.mmu.root_hpa;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003430
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003431 MMU_WARN_ON(VALID_PAGE(root));
Joerg Roedel651dd372010-09-10 17:30:59 +02003432
Avi Kivity8facbbf2010-05-04 12:58:32 +03003433 spin_lock(&vcpu->kvm->mmu_lock);
Wanpeng Li26eeb532017-08-10 16:28:02 -07003434 if (make_mmu_pages_available(vcpu) < 0) {
3435 spin_unlock(&vcpu->kvm->mmu_lock);
3436 return 1;
3437 }
Yu Zhang2a7266a2017-08-24 20:27:54 +08003438 sp = kvm_mmu_get_page(vcpu, root_gfn, 0, PT64_ROOT_4LEVEL,
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09003439 0, ACC_ALL);
Avi Kivity4db35312007-11-21 15:28:32 +02003440 root = __pa(sp->spt);
3441 ++sp->root_count;
Avi Kivity8facbbf2010-05-04 12:58:32 +03003442 spin_unlock(&vcpu->kvm->mmu_lock);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003443 vcpu->arch.mmu.root_hpa = root;
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003444 return 0;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003445 }
Joerg Roedelf87f9282010-09-02 17:29:45 +02003446
Joerg Roedel651dd372010-09-10 17:30:59 +02003447 /*
3448 * We shadow a 32 bit page table. This may be a legacy 2-level
Joerg Roedel81407ca2010-09-10 17:31:00 +02003449 * or a PAE 3-level page table. In either case we need to be aware that
3450 * the shadow page table may be a PAE or a long mode page table.
Joerg Roedel651dd372010-09-10 17:30:59 +02003451 */
Joerg Roedel81407ca2010-09-10 17:31:00 +02003452 pm_mask = PT_PRESENT_MASK;
Yu Zhang2a7266a2017-08-24 20:27:54 +08003453 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_4LEVEL)
Joerg Roedel81407ca2010-09-10 17:31:00 +02003454 pm_mask |= PT_ACCESSED_MASK | PT_WRITABLE_MASK | PT_USER_MASK;
3455
Avi Kivity17ac10a2007-01-05 16:36:40 -08003456 for (i = 0; i < 4; ++i) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003457 hpa_t root = vcpu->arch.mmu.pae_root[i];
Avi Kivity17ac10a2007-01-05 16:36:40 -08003458
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003459 MMU_WARN_ON(VALID_PAGE(root));
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003460 if (vcpu->arch.mmu.root_level == PT32E_ROOT_LEVEL) {
Avi Kivitye4e517b2011-07-28 11:36:17 +03003461 pdptr = vcpu->arch.mmu.get_pdptr(vcpu, i);
Bandan Das812f30b2016-07-12 18:18:50 -04003462 if (!(pdptr & PT_PRESENT_MASK)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003463 vcpu->arch.mmu.pae_root[i] = 0;
Avi Kivity417726a2007-04-12 17:35:58 +03003464 continue;
3465 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003466 root_gfn = pdptr >> PAGE_SHIFT;
Joerg Roedelf87f9282010-09-02 17:29:45 +02003467 if (mmu_check_root(vcpu, root_gfn))
3468 return 1;
Eric Northup5a7388c2010-04-26 17:00:05 -07003469 }
Avi Kivity8facbbf2010-05-04 12:58:32 +03003470 spin_lock(&vcpu->kvm->mmu_lock);
Wanpeng Li26eeb532017-08-10 16:28:02 -07003471 if (make_mmu_pages_available(vcpu) < 0) {
3472 spin_unlock(&vcpu->kvm->mmu_lock);
3473 return 1;
3474 }
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09003475 sp = kvm_mmu_get_page(vcpu, root_gfn, i << 30, PT32_ROOT_LEVEL,
3476 0, ACC_ALL);
Avi Kivity4db35312007-11-21 15:28:32 +02003477 root = __pa(sp->spt);
3478 ++sp->root_count;
Avi Kivity8facbbf2010-05-04 12:58:32 +03003479 spin_unlock(&vcpu->kvm->mmu_lock);
3480
Joerg Roedel81407ca2010-09-10 17:31:00 +02003481 vcpu->arch.mmu.pae_root[i] = root | pm_mask;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003482 }
Xiao Guangrong62927572010-09-27 18:02:12 +08003483 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
Joerg Roedel81407ca2010-09-10 17:31:00 +02003484
3485 /*
3486 * If we shadow a 32 bit page table with a long mode page
3487 * table we enter this path.
3488 */
Yu Zhang2a7266a2017-08-24 20:27:54 +08003489 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_4LEVEL) {
Joerg Roedel81407ca2010-09-10 17:31:00 +02003490 if (vcpu->arch.mmu.lm_root == NULL) {
3491 /*
3492 * The additional page necessary for this is only
3493 * allocated on demand.
3494 */
3495
3496 u64 *lm_root;
3497
3498 lm_root = (void*)get_zeroed_page(GFP_KERNEL);
3499 if (lm_root == NULL)
3500 return 1;
3501
3502 lm_root[0] = __pa(vcpu->arch.mmu.pae_root) | pm_mask;
3503
3504 vcpu->arch.mmu.lm_root = lm_root;
3505 }
3506
3507 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.lm_root);
3508 }
3509
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003510 return 0;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003511}
3512
Joerg Roedel651dd372010-09-10 17:30:59 +02003513static int mmu_alloc_roots(struct kvm_vcpu *vcpu)
3514{
3515 if (vcpu->arch.mmu.direct_map)
3516 return mmu_alloc_direct_roots(vcpu);
3517 else
3518 return mmu_alloc_shadow_roots(vcpu);
3519}
3520
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003521static void mmu_sync_roots(struct kvm_vcpu *vcpu)
3522{
3523 int i;
3524 struct kvm_mmu_page *sp;
3525
Joerg Roedel81407ca2010-09-10 17:31:00 +02003526 if (vcpu->arch.mmu.direct_map)
3527 return;
3528
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003529 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3530 return;
Xiao Guangrong69030742010-09-27 18:09:29 +08003531
David Matlack56f17dd2014-08-18 15:46:07 -07003532 vcpu_clear_mmio_info(vcpu, MMIO_GVA_ANY);
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08003533 kvm_mmu_audit(vcpu, AUDIT_PRE_SYNC);
Yu Zhang2a7266a2017-08-24 20:27:54 +08003534 if (vcpu->arch.mmu.root_level == PT64_ROOT_4LEVEL) {
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003535 hpa_t root = vcpu->arch.mmu.root_hpa;
3536 sp = page_header(root);
3537 mmu_sync_children(vcpu, sp);
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08003538 kvm_mmu_audit(vcpu, AUDIT_POST_SYNC);
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003539 return;
3540 }
3541 for (i = 0; i < 4; ++i) {
3542 hpa_t root = vcpu->arch.mmu.pae_root[i];
3543
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003544 if (root && VALID_PAGE(root)) {
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003545 root &= PT64_BASE_ADDR_MASK;
3546 sp = page_header(root);
3547 mmu_sync_children(vcpu, sp);
3548 }
3549 }
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08003550 kvm_mmu_audit(vcpu, AUDIT_POST_SYNC);
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003551}
3552
3553void kvm_mmu_sync_roots(struct kvm_vcpu *vcpu)
3554{
3555 spin_lock(&vcpu->kvm->mmu_lock);
3556 mmu_sync_roots(vcpu);
3557 spin_unlock(&vcpu->kvm->mmu_lock);
3558}
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03003559EXPORT_SYMBOL_GPL(kvm_mmu_sync_roots);
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003560
Gleb Natapov1871c602010-02-10 14:21:32 +02003561static gpa_t nonpaging_gva_to_gpa(struct kvm_vcpu *vcpu, gva_t vaddr,
Avi Kivityab9ae312010-11-22 17:53:26 +02003562 u32 access, struct x86_exception *exception)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003563{
Avi Kivityab9ae312010-11-22 17:53:26 +02003564 if (exception)
3565 exception->error_code = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003566 return vaddr;
3567}
3568
Joerg Roedel6539e732010-09-10 17:30:50 +02003569static gpa_t nonpaging_gva_to_gpa_nested(struct kvm_vcpu *vcpu, gva_t vaddr,
Avi Kivityab9ae312010-11-22 17:53:26 +02003570 u32 access,
3571 struct x86_exception *exception)
Joerg Roedel6539e732010-09-10 17:30:50 +02003572{
Avi Kivityab9ae312010-11-22 17:53:26 +02003573 if (exception)
3574 exception->error_code = 0;
Paolo Bonzini54987b72014-09-02 13:23:06 +02003575 return vcpu->arch.nested_mmu.translate_gpa(vcpu, vaddr, access, exception);
Joerg Roedel6539e732010-09-10 17:30:50 +02003576}
3577
Xiao Guangrongd625b152015-08-05 12:04:25 +08003578static bool
3579__is_rsvd_bits_set(struct rsvd_bits_validate *rsvd_check, u64 pte, int level)
3580{
3581 int bit7 = (pte >> 7) & 1, low6 = pte & 0x3f;
3582
3583 return (pte & rsvd_check->rsvd_bits_mask[bit7][level-1]) |
3584 ((rsvd_check->bad_mt_xwr & (1ull << low6)) != 0);
3585}
3586
3587static bool is_rsvd_bits_set(struct kvm_mmu *mmu, u64 gpte, int level)
3588{
3589 return __is_rsvd_bits_set(&mmu->guest_rsvd_check, gpte, level);
3590}
3591
3592static bool is_shadow_zero_bits_set(struct kvm_mmu *mmu, u64 spte, int level)
3593{
3594 return __is_rsvd_bits_set(&mmu->shadow_zero_check, spte, level);
3595}
3596
Takuya Yoshikawaded58742016-02-22 17:23:40 +09003597static bool mmio_info_in_cache(struct kvm_vcpu *vcpu, u64 addr, bool direct)
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003598{
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02003599 /*
3600 * A nested guest cannot use the MMIO cache if it is using nested
3601 * page tables, because cr2 is a nGPA while the cache stores GPAs.
3602 */
3603 if (mmu_is_nested(vcpu))
3604 return false;
3605
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003606 if (direct)
3607 return vcpu_match_mmio_gpa(vcpu, addr);
3608
3609 return vcpu_match_mmio_gva(vcpu, addr);
3610}
3611
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003612/* return true if reserved bit is detected on spte. */
3613static bool
3614walk_shadow_page_get_mmio_spte(struct kvm_vcpu *vcpu, u64 addr, u64 *sptep)
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003615{
3616 struct kvm_shadow_walk_iterator iterator;
Yu Zhang2a7266a2017-08-24 20:27:54 +08003617 u64 sptes[PT64_ROOT_MAX_LEVEL], spte = 0ull;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003618 int root, leaf;
3619 bool reserved = false;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003620
Marcelo Tosatti37f6a4e2014-01-03 17:09:32 -02003621 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003622 goto exit;
Marcelo Tosatti37f6a4e2014-01-03 17:09:32 -02003623
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003624 walk_shadow_page_lockless_begin(vcpu);
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003625
Paolo Bonzini29ecd662015-09-06 16:24:50 +02003626 for (shadow_walk_init(&iterator, vcpu, addr),
3627 leaf = root = iterator.level;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003628 shadow_walk_okay(&iterator);
3629 __shadow_walk_next(&iterator, spte)) {
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003630 spte = mmu_spte_get_lockless(iterator.sptep);
3631
3632 sptes[leaf - 1] = spte;
Paolo Bonzini29ecd662015-09-06 16:24:50 +02003633 leaf--;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003634
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003635 if (!is_shadow_present_pte(spte))
3636 break;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003637
3638 reserved |= is_shadow_zero_bits_set(&vcpu->arch.mmu, spte,
Paolo Bonzini58c95072015-09-22 10:15:59 +02003639 iterator.level);
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003640 }
3641
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003642 walk_shadow_page_lockless_end(vcpu);
3643
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003644 if (reserved) {
3645 pr_err("%s: detect reserved bits on spte, addr 0x%llx, dump hierarchy:\n",
3646 __func__, addr);
Paolo Bonzini29ecd662015-09-06 16:24:50 +02003647 while (root > leaf) {
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003648 pr_err("------ spte 0x%llx level %d.\n",
3649 sptes[root - 1], root);
3650 root--;
3651 }
3652 }
3653exit:
3654 *sptep = spte;
3655 return reserved;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003656}
3657
Paolo Bonzinie08d26f2017-08-17 18:36:56 +02003658/*
3659 * Return values of handle_mmio_page_fault:
3660 * RET_MMIO_PF_EMULATE: it is a real mmio page fault, emulate the instruction
3661 * directly.
3662 * RET_MMIO_PF_INVALID: invalid spte is detected then let the real page
3663 * fault path update the mmio spte.
3664 * RET_MMIO_PF_RETRY: let CPU fault again on the address.
3665 * RET_MMIO_PF_BUG: a bug was detected (and a WARN was printed).
3666 */
3667enum {
3668 RET_MMIO_PF_EMULATE = 1,
3669 RET_MMIO_PF_INVALID = 2,
3670 RET_MMIO_PF_RETRY = 0,
3671 RET_MMIO_PF_BUG = -1
3672};
3673
3674static int handle_mmio_page_fault(struct kvm_vcpu *vcpu, u64 addr, bool direct)
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003675{
3676 u64 spte;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003677 bool reserved;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003678
Takuya Yoshikawaded58742016-02-22 17:23:40 +09003679 if (mmio_info_in_cache(vcpu, addr, direct))
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08003680 return RET_MMIO_PF_EMULATE;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003681
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003682 reserved = walk_shadow_page_get_mmio_spte(vcpu, addr, &spte);
Paolo Bonzini450869d2015-11-04 13:41:21 +01003683 if (WARN_ON(reserved))
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003684 return RET_MMIO_PF_BUG;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003685
3686 if (is_mmio_spte(spte)) {
3687 gfn_t gfn = get_mmio_spte_gfn(spte);
3688 unsigned access = get_mmio_spte_access(spte);
3689
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003690 if (!check_mmio_spte(vcpu, spte))
Xiao Guangrongf8f55942013-06-07 16:51:26 +08003691 return RET_MMIO_PF_INVALID;
3692
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003693 if (direct)
3694 addr = 0;
Xiao Guangrong4f022642011-07-12 03:34:24 +08003695
3696 trace_handle_mmio_page_fault(addr, gfn, access);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003697 vcpu_cache_mmio_info(vcpu, addr, gfn, access);
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08003698 return RET_MMIO_PF_EMULATE;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003699 }
3700
3701 /*
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003702 * If the page table is zapped by other cpus, let CPU fault again on
3703 * the address.
3704 */
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08003705 return RET_MMIO_PF_RETRY;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003706}
Paolo Bonzini450869d2015-11-04 13:41:21 +01003707EXPORT_SYMBOL_GPL(handle_mmio_page_fault);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003708
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08003709static bool page_fault_handle_page_track(struct kvm_vcpu *vcpu,
3710 u32 error_code, gfn_t gfn)
3711{
3712 if (unlikely(error_code & PFERR_RSVD_MASK))
3713 return false;
3714
3715 if (!(error_code & PFERR_PRESENT_MASK) ||
3716 !(error_code & PFERR_WRITE_MASK))
3717 return false;
3718
3719 /*
3720 * guest is writing the page which is write tracked which can
3721 * not be fixed by page fault handler.
3722 */
3723 if (kvm_page_track_is_active(vcpu, gfn, KVM_PAGE_TRACK_WRITE))
3724 return true;
3725
3726 return false;
3727}
3728
Xiao Guangronge5691a82016-02-24 17:51:12 +08003729static void shadow_page_table_clear_flood(struct kvm_vcpu *vcpu, gva_t addr)
3730{
3731 struct kvm_shadow_walk_iterator iterator;
3732 u64 spte;
3733
3734 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3735 return;
3736
3737 walk_shadow_page_lockless_begin(vcpu);
3738 for_each_shadow_entry_lockless(vcpu, addr, iterator, spte) {
3739 clear_sp_write_flooding_count(iterator.sptep);
3740 if (!is_shadow_present_pte(spte))
3741 break;
3742 }
3743 walk_shadow_page_lockless_end(vcpu);
3744}
3745
Avi Kivity6aa8b732006-12-10 02:21:36 -08003746static int nonpaging_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003747 u32 error_code, bool prefault)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003748{
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08003749 gfn_t gfn = gva >> PAGE_SHIFT;
Avi Kivitye2dec932007-01-05 16:36:54 -08003750 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003751
Harvey Harrisonb8688d52008-03-03 12:59:56 -08003752 pgprintk("%s: gva %lx error %x\n", __func__, gva, error_code);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003753
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08003754 if (page_fault_handle_page_track(vcpu, error_code, gfn))
3755 return 1;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003756
Avi Kivitye2dec932007-01-05 16:36:54 -08003757 r = mmu_topup_memory_caches(vcpu);
3758 if (r)
3759 return r;
Avi Kivity714b93d2007-01-05 16:36:53 -08003760
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003761 MMU_WARN_ON(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003762
Avi Kivity6aa8b732006-12-10 02:21:36 -08003763
Avi Kivitye8332402007-12-09 18:43:00 +02003764 return nonpaging_map(vcpu, gva & PAGE_MASK,
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003765 error_code, gfn, prefault);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003766}
3767
Jan Kiszka7e1fbea2010-10-20 15:18:02 +02003768static int kvm_arch_setup_async_pf(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn)
Gleb Natapovaf585b92010-10-14 11:22:46 +02003769{
3770 struct kvm_arch_async_pf arch;
Xiao Guangrongfb67e142010-12-07 10:35:25 +08003771
Gleb Natapov7c907052010-10-14 11:22:53 +02003772 arch.token = (vcpu->arch.apf.id++ << 12) | vcpu->vcpu_id;
Gleb Natapovaf585b92010-10-14 11:22:46 +02003773 arch.gfn = gfn;
Xiao Guangrongc4806ac2010-11-12 14:49:55 +08003774 arch.direct_map = vcpu->arch.mmu.direct_map;
Xiao Guangrongfb67e142010-12-07 10:35:25 +08003775 arch.cr3 = vcpu->arch.mmu.get_cr3(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003776
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003777 return kvm_setup_async_pf(vcpu, gva, kvm_vcpu_gfn_to_hva(vcpu, gfn), &arch);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003778}
3779
Wanpeng Li9bc1f092017-06-08 20:13:40 -07003780bool kvm_can_do_async_pf(struct kvm_vcpu *vcpu)
Gleb Natapovaf585b92010-10-14 11:22:46 +02003781{
Paolo Bonzini35754c92015-07-29 12:05:37 +02003782 if (unlikely(!lapic_in_kernel(vcpu) ||
Gleb Natapovaf585b92010-10-14 11:22:46 +02003783 kvm_event_needs_reinjection(vcpu)))
3784 return false;
3785
Wanpeng Li52a5c152017-07-13 18:30:42 -07003786 if (!vcpu->arch.apf.delivery_as_pf_vmexit && is_guest_mode(vcpu))
Wanpeng Li9bc1f092017-06-08 20:13:40 -07003787 return false;
3788
Gleb Natapovaf585b92010-10-14 11:22:46 +02003789 return kvm_x86_ops->interrupt_allowed(vcpu);
3790}
3791
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003792static bool try_async_pf(struct kvm_vcpu *vcpu, bool prefault, gfn_t gfn,
Dan Williamsba049e92016-01-15 16:56:11 -08003793 gva_t gva, kvm_pfn_t *pfn, bool write, bool *writable)
Gleb Natapovaf585b92010-10-14 11:22:46 +02003794{
Paolo Bonzini35204692015-04-02 11:20:48 +02003795 struct kvm_memory_slot *slot;
Gleb Natapovaf585b92010-10-14 11:22:46 +02003796 bool async;
3797
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003798 slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
Paolo Bonzini35204692015-04-02 11:20:48 +02003799 async = false;
3800 *pfn = __gfn_to_pfn_memslot(slot, gfn, false, &async, write, writable);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003801 if (!async)
3802 return false; /* *pfn has correct page already */
3803
Wanpeng Li9bc1f092017-06-08 20:13:40 -07003804 if (!prefault && kvm_can_do_async_pf(vcpu)) {
Xiao Guangrongc9b263d2010-11-01 16:58:43 +08003805 trace_kvm_try_async_get_page(gva, gfn);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003806 if (kvm_find_async_pf_gfn(vcpu, gfn)) {
3807 trace_kvm_async_pf_doublefault(gva, gfn);
3808 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
3809 return true;
3810 } else if (kvm_arch_setup_async_pf(vcpu, gva, gfn))
3811 return true;
3812 }
3813
Paolo Bonzini35204692015-04-02 11:20:48 +02003814 *pfn = __gfn_to_pfn_memslot(slot, gfn, false, NULL, write, writable);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003815 return false;
3816}
3817
Wanpeng Li1261bfa2017-07-13 18:30:40 -07003818int kvm_handle_page_fault(struct kvm_vcpu *vcpu, u64 error_code,
3819 u64 fault_address, char *insn, int insn_len,
3820 bool need_unprotect)
3821{
3822 int r = 1;
3823
3824 switch (vcpu->arch.apf.host_apf_reason) {
3825 default:
3826 trace_kvm_page_fault(fault_address, error_code);
3827
3828 if (need_unprotect && kvm_event_needs_reinjection(vcpu))
3829 kvm_mmu_unprotect_page_virt(vcpu, fault_address);
3830 r = kvm_mmu_page_fault(vcpu, fault_address, error_code, insn,
3831 insn_len);
3832 break;
3833 case KVM_PV_REASON_PAGE_NOT_PRESENT:
3834 vcpu->arch.apf.host_apf_reason = 0;
3835 local_irq_disable();
3836 kvm_async_pf_task_wait(fault_address);
3837 local_irq_enable();
3838 break;
3839 case KVM_PV_REASON_PAGE_READY:
3840 vcpu->arch.apf.host_apf_reason = 0;
3841 local_irq_disable();
3842 kvm_async_pf_task_wake(fault_address);
3843 local_irq_enable();
3844 break;
3845 }
3846 return r;
3847}
3848EXPORT_SYMBOL_GPL(kvm_handle_page_fault);
3849
Xiao Guangrong6a39bbc2015-06-15 16:55:35 +08003850static bool
3851check_hugepage_cache_consistency(struct kvm_vcpu *vcpu, gfn_t gfn, int level)
3852{
3853 int page_num = KVM_PAGES_PER_HPAGE(level);
3854
3855 gfn &= ~(page_num - 1);
3856
3857 return kvm_mtrr_check_gfn_range_consistency(vcpu, gfn, page_num);
3858}
3859
Gleb Natapov56028d02010-10-17 18:13:42 +02003860static int tdp_page_fault(struct kvm_vcpu *vcpu, gva_t gpa, u32 error_code,
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003861 bool prefault)
Joerg Roedelfb72d162008-02-07 13:47:44 +01003862{
Dan Williamsba049e92016-01-15 16:56:11 -08003863 kvm_pfn_t pfn;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003864 int r;
Joerg Roedel852e3c12009-07-27 16:30:44 +02003865 int level;
Takuya Yoshikawacd1872f2015-10-16 17:04:13 +09003866 bool force_pt_level;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03003867 gfn_t gfn = gpa >> PAGE_SHIFT;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003868 unsigned long mmu_seq;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02003869 int write = error_code & PFERR_WRITE_MASK;
3870 bool map_writable;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003871
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003872 MMU_WARN_ON(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
Joerg Roedelfb72d162008-02-07 13:47:44 +01003873
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08003874 if (page_fault_handle_page_track(vcpu, error_code, gfn))
3875 return 1;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003876
Joerg Roedelfb72d162008-02-07 13:47:44 +01003877 r = mmu_topup_memory_caches(vcpu);
3878 if (r)
3879 return r;
3880
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003881 force_pt_level = !check_hugepage_cache_consistency(vcpu, gfn,
3882 PT_DIRECTORY_LEVEL);
3883 level = mapping_level(vcpu, gfn, &force_pt_level);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003884 if (likely(!force_pt_level)) {
Xiao Guangrong6a39bbc2015-06-15 16:55:35 +08003885 if (level > PT_DIRECTORY_LEVEL &&
3886 !check_hugepage_cache_consistency(vcpu, gfn, level))
3887 level = PT_DIRECTORY_LEVEL;
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003888 gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1);
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003889 }
Joerg Roedel852e3c12009-07-27 16:30:44 +02003890
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003891 if (fast_page_fault(vcpu, gpa, level, error_code))
3892 return 0;
3893
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003894 mmu_seq = vcpu->kvm->mmu_notifier_seq;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03003895 smp_rmb();
Gleb Natapovaf585b92010-10-14 11:22:46 +02003896
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003897 if (try_async_pf(vcpu, prefault, gfn, gpa, &pfn, write, &map_writable))
Gleb Natapovaf585b92010-10-14 11:22:46 +02003898 return 0;
3899
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003900 if (handle_abnormal_pfn(vcpu, 0, gfn, pfn, ACC_ALL, &r))
3901 return r;
3902
Joerg Roedelfb72d162008-02-07 13:47:44 +01003903 spin_lock(&vcpu->kvm->mmu_lock);
Christoffer Dall8ca40a72012-10-14 23:10:18 -04003904 if (mmu_notifier_retry(vcpu->kvm, mmu_seq))
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003905 goto out_unlock;
Wanpeng Li26eeb532017-08-10 16:28:02 -07003906 if (make_mmu_pages_available(vcpu) < 0)
3907 goto out_unlock;
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003908 if (likely(!force_pt_level))
3909 transparent_hugepage_adjust(vcpu, &gfn, &pfn, &level);
Takuya Yoshikawa7ee0e5b2015-11-20 17:42:23 +09003910 r = __direct_map(vcpu, write, map_writable, level, gfn, pfn, prefault);
Joerg Roedelfb72d162008-02-07 13:47:44 +01003911 spin_unlock(&vcpu->kvm->mmu_lock);
Joerg Roedelfb72d162008-02-07 13:47:44 +01003912
3913 return r;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003914
3915out_unlock:
3916 spin_unlock(&vcpu->kvm->mmu_lock);
3917 kvm_release_pfn_clean(pfn);
3918 return 0;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003919}
3920
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003921static void nonpaging_init_context(struct kvm_vcpu *vcpu,
3922 struct kvm_mmu *context)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003923{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003924 context->page_fault = nonpaging_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003925 context->gva_to_gpa = nonpaging_gva_to_gpa;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03003926 context->sync_page = nonpaging_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03003927 context->invlpg = nonpaging_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08003928 context->update_pte = nonpaging_update_pte;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08003929 context->root_level = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003930 context->shadow_root_level = PT32E_ROOT_LEVEL;
Avi Kivity17c3ba92007-06-04 15:58:30 +03003931 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02003932 context->direct_map = true;
Joerg Roedel2d48a982010-09-10 17:31:01 +02003933 context->nx = false;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003934}
3935
Paolo Bonzinid8d173d2013-10-02 16:56:11 +02003936void kvm_mmu_new_cr3(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003937{
Avi Kivitycea0f0e2007-01-05 16:36:43 -08003938 mmu_free_roots(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003939}
3940
Joerg Roedel5777ed32010-09-10 17:30:42 +02003941static unsigned long get_cr3(struct kvm_vcpu *vcpu)
3942{
Avi Kivity9f8fe502010-12-05 17:30:00 +02003943 return kvm_read_cr3(vcpu);
Joerg Roedel5777ed32010-09-10 17:30:42 +02003944}
3945
Avi Kivity6389ee92010-11-29 16:12:30 +02003946static void inject_page_fault(struct kvm_vcpu *vcpu,
3947 struct x86_exception *fault)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003948{
Avi Kivity6389ee92010-11-29 16:12:30 +02003949 vcpu->arch.mmu.inject_page_fault(vcpu, fault);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003950}
3951
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003952static bool sync_mmio_spte(struct kvm_vcpu *vcpu, u64 *sptep, gfn_t gfn,
Xiao Guangrongf2fd1252013-06-07 16:51:24 +08003953 unsigned access, int *nr_present)
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003954{
3955 if (unlikely(is_mmio_spte(*sptep))) {
3956 if (gfn != get_mmio_spte_gfn(*sptep)) {
3957 mmu_spte_clear_no_track(sptep);
3958 return true;
3959 }
3960
3961 (*nr_present)++;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003962 mark_mmio_spte(vcpu, sptep, gfn, access);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003963 return true;
3964 }
3965
3966 return false;
3967}
3968
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01003969static inline bool is_last_gpte(struct kvm_mmu *mmu,
3970 unsigned level, unsigned gpte)
Avi Kivity6fd01b72012-09-12 20:46:56 +03003971{
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01003972 /*
3973 * PT_PAGE_TABLE_LEVEL always terminates. The RHS has bit 7 set
3974 * iff level <= PT_PAGE_TABLE_LEVEL, which for our purpose means
3975 * level == PT_PAGE_TABLE_LEVEL; set PT_PAGE_SIZE_MASK in gpte then.
3976 */
3977 gpte |= level - PT_PAGE_TABLE_LEVEL - 1;
Avi Kivity6fd01b72012-09-12 20:46:56 +03003978
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01003979 /*
3980 * The RHS has bit 7 set iff level < mmu->last_nonleaf_level.
3981 * If it is clear, there are no large pages at this level, so clear
3982 * PT_PAGE_SIZE_MASK in gpte if that is the case.
3983 */
3984 gpte &= level - mmu->last_nonleaf_level;
3985
3986 return gpte & PT_PAGE_SIZE_MASK;
Avi Kivity6fd01b72012-09-12 20:46:56 +03003987}
3988
Nadav Har'El37406aa2013-08-05 11:07:12 +03003989#define PTTYPE_EPT 18 /* arbitrary */
3990#define PTTYPE PTTYPE_EPT
3991#include "paging_tmpl.h"
3992#undef PTTYPE
3993
Avi Kivity6aa8b732006-12-10 02:21:36 -08003994#define PTTYPE 64
3995#include "paging_tmpl.h"
3996#undef PTTYPE
3997
3998#define PTTYPE 32
3999#include "paging_tmpl.h"
4000#undef PTTYPE
4001
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08004002static void
4003__reset_rsvds_bits_mask(struct kvm_vcpu *vcpu,
4004 struct rsvd_bits_validate *rsvd_check,
4005 int maxphyaddr, int level, bool nx, bool gbpages,
Paolo Bonzini6fec2142015-09-22 23:02:14 +02004006 bool pse, bool amd)
Dong, Eddie82725b22009-03-30 16:21:08 +08004007{
Dong, Eddie82725b22009-03-30 16:21:08 +08004008 u64 exb_bit_rsvd = 0;
Nadav Amit5f7dde72014-05-07 15:32:50 +03004009 u64 gbpages_bit_rsvd = 0;
Paolo Bonzinia0c0feb2014-09-02 13:24:12 +02004010 u64 nonleaf_bit8_rsvd = 0;
Dong, Eddie82725b22009-03-30 16:21:08 +08004011
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004012 rsvd_check->bad_mt_xwr = 0;
Yang Zhang25d92082013-08-06 12:00:32 +03004013
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08004014 if (!nx)
Dong, Eddie82725b22009-03-30 16:21:08 +08004015 exb_bit_rsvd = rsvd_bits(63, 63);
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08004016 if (!gbpages)
Nadav Amit5f7dde72014-05-07 15:32:50 +03004017 gbpages_bit_rsvd = rsvd_bits(7, 7);
Paolo Bonzinia0c0feb2014-09-02 13:24:12 +02004018
4019 /*
4020 * Non-leaf PML4Es and PDPEs reserve bit 8 (which would be the G bit for
4021 * leaf entries) on AMD CPUs only.
4022 */
Paolo Bonzini6fec2142015-09-22 23:02:14 +02004023 if (amd)
Paolo Bonzinia0c0feb2014-09-02 13:24:12 +02004024 nonleaf_bit8_rsvd = rsvd_bits(8, 8);
4025
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08004026 switch (level) {
Dong, Eddie82725b22009-03-30 16:21:08 +08004027 case PT32_ROOT_LEVEL:
4028 /* no rsvd bits for 2 level 4K page table entries */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004029 rsvd_check->rsvd_bits_mask[0][1] = 0;
4030 rsvd_check->rsvd_bits_mask[0][0] = 0;
4031 rsvd_check->rsvd_bits_mask[1][0] =
4032 rsvd_check->rsvd_bits_mask[0][0];
Xiao Guangrongf815bce2010-03-19 17:58:53 +08004033
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08004034 if (!pse) {
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004035 rsvd_check->rsvd_bits_mask[1][1] = 0;
Xiao Guangrongf815bce2010-03-19 17:58:53 +08004036 break;
4037 }
4038
Dong, Eddie82725b22009-03-30 16:21:08 +08004039 if (is_cpuid_PSE36())
4040 /* 36bits PSE 4MB page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004041 rsvd_check->rsvd_bits_mask[1][1] = rsvd_bits(17, 21);
Dong, Eddie82725b22009-03-30 16:21:08 +08004042 else
4043 /* 32 bits PSE 4MB page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004044 rsvd_check->rsvd_bits_mask[1][1] = rsvd_bits(13, 21);
Dong, Eddie82725b22009-03-30 16:21:08 +08004045 break;
4046 case PT32E_ROOT_LEVEL:
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004047 rsvd_check->rsvd_bits_mask[0][2] =
Dong, Eddie20c466b2009-03-31 23:03:45 +08004048 rsvd_bits(maxphyaddr, 63) |
Nadav Amitcd9ae5f2014-04-04 06:31:04 +03004049 rsvd_bits(5, 8) | rsvd_bits(1, 2); /* PDPTE */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004050 rsvd_check->rsvd_bits_mask[0][1] = exb_bit_rsvd |
Sheng Yang4c26b4c2009-04-02 10:28:37 +08004051 rsvd_bits(maxphyaddr, 62); /* PDE */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004052 rsvd_check->rsvd_bits_mask[0][0] = exb_bit_rsvd |
Dong, Eddie82725b22009-03-30 16:21:08 +08004053 rsvd_bits(maxphyaddr, 62); /* PTE */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004054 rsvd_check->rsvd_bits_mask[1][1] = exb_bit_rsvd |
Dong, Eddie82725b22009-03-30 16:21:08 +08004055 rsvd_bits(maxphyaddr, 62) |
4056 rsvd_bits(13, 20); /* large page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004057 rsvd_check->rsvd_bits_mask[1][0] =
4058 rsvd_check->rsvd_bits_mask[0][0];
Dong, Eddie82725b22009-03-30 16:21:08 +08004059 break;
Yu Zhang2a7266a2017-08-24 20:27:54 +08004060 case PT64_ROOT_4LEVEL:
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004061 rsvd_check->rsvd_bits_mask[0][3] = exb_bit_rsvd |
4062 nonleaf_bit8_rsvd | rsvd_bits(7, 7) |
Sheng Yang4c26b4c2009-04-02 10:28:37 +08004063 rsvd_bits(maxphyaddr, 51);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004064 rsvd_check->rsvd_bits_mask[0][2] = exb_bit_rsvd |
4065 nonleaf_bit8_rsvd | gbpages_bit_rsvd |
Dong, Eddie82725b22009-03-30 16:21:08 +08004066 rsvd_bits(maxphyaddr, 51);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004067 rsvd_check->rsvd_bits_mask[0][1] = exb_bit_rsvd |
4068 rsvd_bits(maxphyaddr, 51);
4069 rsvd_check->rsvd_bits_mask[0][0] = exb_bit_rsvd |
4070 rsvd_bits(maxphyaddr, 51);
4071 rsvd_check->rsvd_bits_mask[1][3] =
4072 rsvd_check->rsvd_bits_mask[0][3];
4073 rsvd_check->rsvd_bits_mask[1][2] = exb_bit_rsvd |
Nadav Amit5f7dde72014-05-07 15:32:50 +03004074 gbpages_bit_rsvd | rsvd_bits(maxphyaddr, 51) |
Joerg Roedele04da982009-07-27 16:30:45 +02004075 rsvd_bits(13, 29);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004076 rsvd_check->rsvd_bits_mask[1][1] = exb_bit_rsvd |
Sheng Yang4c26b4c2009-04-02 10:28:37 +08004077 rsvd_bits(maxphyaddr, 51) |
4078 rsvd_bits(13, 20); /* large page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004079 rsvd_check->rsvd_bits_mask[1][0] =
4080 rsvd_check->rsvd_bits_mask[0][0];
Dong, Eddie82725b22009-03-30 16:21:08 +08004081 break;
4082 }
4083}
4084
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08004085static void reset_rsvds_bits_mask(struct kvm_vcpu *vcpu,
4086 struct kvm_mmu *context)
4087{
4088 __reset_rsvds_bits_mask(vcpu, &context->guest_rsvd_check,
4089 cpuid_maxphyaddr(vcpu), context->root_level,
Radim Krčmářd6321d42017-08-05 00:12:49 +02004090 context->nx,
4091 guest_cpuid_has(vcpu, X86_FEATURE_GBPAGES),
Paolo Bonzini6fec2142015-09-22 23:02:14 +02004092 is_pse(vcpu), guest_cpuid_is_amd(vcpu));
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08004093}
4094
Xiao Guangrong81b8eeb2015-08-05 12:04:23 +08004095static void
4096__reset_rsvds_bits_mask_ept(struct rsvd_bits_validate *rsvd_check,
4097 int maxphyaddr, bool execonly)
Yang Zhang25d92082013-08-06 12:00:32 +03004098{
Paolo Bonzini951f9fd2015-09-23 10:34:26 +02004099 u64 bad_mt_xwr;
Yang Zhang25d92082013-08-06 12:00:32 +03004100
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004101 rsvd_check->rsvd_bits_mask[0][3] =
Yang Zhang25d92082013-08-06 12:00:32 +03004102 rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 7);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004103 rsvd_check->rsvd_bits_mask[0][2] =
Yang Zhang25d92082013-08-06 12:00:32 +03004104 rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 6);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004105 rsvd_check->rsvd_bits_mask[0][1] =
Yang Zhang25d92082013-08-06 12:00:32 +03004106 rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 6);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004107 rsvd_check->rsvd_bits_mask[0][0] = rsvd_bits(maxphyaddr, 51);
Yang Zhang25d92082013-08-06 12:00:32 +03004108
4109 /* large page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004110 rsvd_check->rsvd_bits_mask[1][3] = rsvd_check->rsvd_bits_mask[0][3];
4111 rsvd_check->rsvd_bits_mask[1][2] =
Yang Zhang25d92082013-08-06 12:00:32 +03004112 rsvd_bits(maxphyaddr, 51) | rsvd_bits(12, 29);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004113 rsvd_check->rsvd_bits_mask[1][1] =
Yang Zhang25d92082013-08-06 12:00:32 +03004114 rsvd_bits(maxphyaddr, 51) | rsvd_bits(12, 20);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004115 rsvd_check->rsvd_bits_mask[1][0] = rsvd_check->rsvd_bits_mask[0][0];
Yang Zhang25d92082013-08-06 12:00:32 +03004116
Paolo Bonzini951f9fd2015-09-23 10:34:26 +02004117 bad_mt_xwr = 0xFFull << (2 * 8); /* bits 3..5 must not be 2 */
4118 bad_mt_xwr |= 0xFFull << (3 * 8); /* bits 3..5 must not be 3 */
4119 bad_mt_xwr |= 0xFFull << (7 * 8); /* bits 3..5 must not be 7 */
4120 bad_mt_xwr |= REPEAT_BYTE(1ull << 2); /* bits 0..2 must not be 010 */
4121 bad_mt_xwr |= REPEAT_BYTE(1ull << 6); /* bits 0..2 must not be 110 */
4122 if (!execonly) {
4123 /* bits 0..2 must not be 100 unless VMX capabilities allow it */
4124 bad_mt_xwr |= REPEAT_BYTE(1ull << 4);
Yang Zhang25d92082013-08-06 12:00:32 +03004125 }
Paolo Bonzini951f9fd2015-09-23 10:34:26 +02004126 rsvd_check->bad_mt_xwr = bad_mt_xwr;
Yang Zhang25d92082013-08-06 12:00:32 +03004127}
4128
Xiao Guangrong81b8eeb2015-08-05 12:04:23 +08004129static void reset_rsvds_bits_mask_ept(struct kvm_vcpu *vcpu,
4130 struct kvm_mmu *context, bool execonly)
4131{
4132 __reset_rsvds_bits_mask_ept(&context->guest_rsvd_check,
4133 cpuid_maxphyaddr(vcpu), execonly);
4134}
4135
Xiao Guangrongc258b622015-08-05 12:04:24 +08004136/*
4137 * the page table on host is the shadow page table for the page
4138 * table in guest or amd nested guest, its mmu features completely
4139 * follow the features in guest.
4140 */
4141void
4142reset_shadow_zero_bits_mask(struct kvm_vcpu *vcpu, struct kvm_mmu *context)
4143{
Paolo Bonzini5f0b8192016-03-09 14:28:02 +01004144 bool uses_nx = context->nx || context->base_role.smep_andnot_wp;
4145
Paolo Bonzini6fec2142015-09-22 23:02:14 +02004146 /*
4147 * Passing "true" to the last argument is okay; it adds a check
4148 * on bit 8 of the SPTEs which KVM doesn't use anyway.
4149 */
Xiao Guangrongc258b622015-08-05 12:04:24 +08004150 __reset_rsvds_bits_mask(vcpu, &context->shadow_zero_check,
4151 boot_cpu_data.x86_phys_bits,
Paolo Bonzini5f0b8192016-03-09 14:28:02 +01004152 context->shadow_root_level, uses_nx,
Radim Krčmářd6321d42017-08-05 00:12:49 +02004153 guest_cpuid_has(vcpu, X86_FEATURE_GBPAGES),
4154 is_pse(vcpu), true);
Xiao Guangrongc258b622015-08-05 12:04:24 +08004155}
4156EXPORT_SYMBOL_GPL(reset_shadow_zero_bits_mask);
4157
Paolo Bonzini6fec2142015-09-22 23:02:14 +02004158static inline bool boot_cpu_is_amd(void)
4159{
4160 WARN_ON_ONCE(!tdp_enabled);
4161 return shadow_x_mask == 0;
4162}
4163
Xiao Guangrongc258b622015-08-05 12:04:24 +08004164/*
4165 * the direct page table on host, use as much mmu features as
4166 * possible, however, kvm currently does not do execution-protection.
4167 */
4168static void
4169reset_tdp_shadow_zero_bits_mask(struct kvm_vcpu *vcpu,
4170 struct kvm_mmu *context)
4171{
Paolo Bonzini6fec2142015-09-22 23:02:14 +02004172 if (boot_cpu_is_amd())
Xiao Guangrongc258b622015-08-05 12:04:24 +08004173 __reset_rsvds_bits_mask(vcpu, &context->shadow_zero_check,
4174 boot_cpu_data.x86_phys_bits,
4175 context->shadow_root_level, false,
Borislav Petkovb8291adc2016-03-29 17:41:58 +02004176 boot_cpu_has(X86_FEATURE_GBPAGES),
4177 true, true);
Xiao Guangrongc258b622015-08-05 12:04:24 +08004178 else
4179 __reset_rsvds_bits_mask_ept(&context->shadow_zero_check,
4180 boot_cpu_data.x86_phys_bits,
4181 false);
4182
4183}
4184
4185/*
4186 * as the comments in reset_shadow_zero_bits_mask() except it
4187 * is the shadow page table for intel nested guest.
4188 */
4189static void
4190reset_ept_shadow_zero_bits_mask(struct kvm_vcpu *vcpu,
4191 struct kvm_mmu *context, bool execonly)
4192{
4193 __reset_rsvds_bits_mask_ept(&context->shadow_zero_check,
4194 boot_cpu_data.x86_phys_bits, execonly);
4195}
4196
Xiao Guangrongedc90b72015-05-11 22:55:21 +08004197static void update_permission_bitmask(struct kvm_vcpu *vcpu,
4198 struct kvm_mmu *mmu, bool ept)
Avi Kivity97d64b72012-09-12 14:52:00 +03004199{
4200 unsigned bit, byte, pfec;
4201 u8 map;
Feng Wu66386ad2014-04-01 17:56:48 +08004202 bool fault, x, w, u, wf, uf, ff, smapf, cr4_smap, cr4_smep, smap = 0;
Avi Kivity97d64b72012-09-12 14:52:00 +03004203
Feng Wu66386ad2014-04-01 17:56:48 +08004204 cr4_smep = kvm_read_cr4_bits(vcpu, X86_CR4_SMEP);
Feng Wu97ec8c02014-04-01 17:46:34 +08004205 cr4_smap = kvm_read_cr4_bits(vcpu, X86_CR4_SMAP);
Avi Kivity97d64b72012-09-12 14:52:00 +03004206 for (byte = 0; byte < ARRAY_SIZE(mmu->permissions); ++byte) {
4207 pfec = byte << 1;
4208 map = 0;
4209 wf = pfec & PFERR_WRITE_MASK;
4210 uf = pfec & PFERR_USER_MASK;
4211 ff = pfec & PFERR_FETCH_MASK;
Feng Wu97ec8c02014-04-01 17:46:34 +08004212 /*
4213 * PFERR_RSVD_MASK bit is set in PFEC if the access is not
4214 * subject to SMAP restrictions, and cleared otherwise. The
4215 * bit is only meaningful if the SMAP bit is set in CR4.
4216 */
4217 smapf = !(pfec & PFERR_RSVD_MASK);
Avi Kivity97d64b72012-09-12 14:52:00 +03004218 for (bit = 0; bit < 8; ++bit) {
4219 x = bit & ACC_EXEC_MASK;
4220 w = bit & ACC_WRITE_MASK;
4221 u = bit & ACC_USER_MASK;
4222
Yang Zhang25d92082013-08-06 12:00:32 +03004223 if (!ept) {
4224 /* Not really needed: !nx will cause pte.nx to fault */
4225 x |= !mmu->nx;
4226 /* Allow supervisor writes if !cr0.wp */
4227 w |= !is_write_protection(vcpu) && !uf;
4228 /* Disallow supervisor fetches of user code if cr4.smep */
Feng Wu66386ad2014-04-01 17:56:48 +08004229 x &= !(cr4_smep && u && !uf);
Feng Wu97ec8c02014-04-01 17:46:34 +08004230
4231 /*
4232 * SMAP:kernel-mode data accesses from user-mode
4233 * mappings should fault. A fault is considered
4234 * as a SMAP violation if all of the following
4235 * conditions are ture:
4236 * - X86_CR4_SMAP is set in CR4
Masahiro Yamada9332ef92017-02-27 14:28:47 -08004237 * - A user page is accessed
Feng Wu97ec8c02014-04-01 17:46:34 +08004238 * - Page fault in kernel mode
4239 * - if CPL = 3 or X86_EFLAGS_AC is clear
4240 *
4241 * Here, we cover the first three conditions.
4242 * The fourth is computed dynamically in
4243 * permission_fault() and is in smapf.
4244 *
4245 * Also, SMAP does not affect instruction
4246 * fetches, add the !ff check here to make it
4247 * clearer.
4248 */
4249 smap = cr4_smap && u && !uf && !ff;
Bandan Dasd95c5562016-07-12 18:18:51 -04004250 }
Avi Kivity97d64b72012-09-12 14:52:00 +03004251
Feng Wu97ec8c02014-04-01 17:46:34 +08004252 fault = (ff && !x) || (uf && !u) || (wf && !w) ||
4253 (smapf && smap);
Avi Kivity97d64b72012-09-12 14:52:00 +03004254 map |= fault << bit;
4255 }
4256 mmu->permissions[byte] = map;
4257 }
4258}
4259
Huaitong Han2d344102016-03-22 16:51:19 +08004260/*
4261* PKU is an additional mechanism by which the paging controls access to
4262* user-mode addresses based on the value in the PKRU register. Protection
4263* key violations are reported through a bit in the page fault error code.
4264* Unlike other bits of the error code, the PK bit is not known at the
4265* call site of e.g. gva_to_gpa; it must be computed directly in
4266* permission_fault based on two bits of PKRU, on some machine state (CR4,
4267* CR0, EFER, CPL), and on other bits of the error code and the page tables.
4268*
4269* In particular the following conditions come from the error code, the
4270* page tables and the machine state:
4271* - PK is always zero unless CR4.PKE=1 and EFER.LMA=1
4272* - PK is always zero if RSVD=1 (reserved bit set) or F=1 (instruction fetch)
4273* - PK is always zero if U=0 in the page tables
4274* - PKRU.WD is ignored if CR0.WP=0 and the access is a supervisor access.
4275*
4276* The PKRU bitmask caches the result of these four conditions. The error
4277* code (minus the P bit) and the page table's U bit form an index into the
4278* PKRU bitmask. Two bits of the PKRU bitmask are then extracted and ANDed
4279* with the two bits of the PKRU register corresponding to the protection key.
4280* For the first three conditions above the bits will be 00, thus masking
4281* away both AD and WD. For all reads or if the last condition holds, WD
4282* only will be masked away.
4283*/
4284static void update_pkru_bitmask(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
4285 bool ept)
4286{
4287 unsigned bit;
4288 bool wp;
4289
4290 if (ept) {
4291 mmu->pkru_mask = 0;
4292 return;
4293 }
4294
4295 /* PKEY is enabled only if CR4.PKE and EFER.LMA are both set. */
4296 if (!kvm_read_cr4_bits(vcpu, X86_CR4_PKE) || !is_long_mode(vcpu)) {
4297 mmu->pkru_mask = 0;
4298 return;
4299 }
4300
4301 wp = is_write_protection(vcpu);
4302
4303 for (bit = 0; bit < ARRAY_SIZE(mmu->permissions); ++bit) {
4304 unsigned pfec, pkey_bits;
4305 bool check_pkey, check_write, ff, uf, wf, pte_user;
4306
4307 pfec = bit << 1;
4308 ff = pfec & PFERR_FETCH_MASK;
4309 uf = pfec & PFERR_USER_MASK;
4310 wf = pfec & PFERR_WRITE_MASK;
4311
4312 /* PFEC.RSVD is replaced by ACC_USER_MASK. */
4313 pte_user = pfec & PFERR_RSVD_MASK;
4314
4315 /*
4316 * Only need to check the access which is not an
4317 * instruction fetch and is to a user page.
4318 */
4319 check_pkey = (!ff && pte_user);
4320 /*
4321 * write access is controlled by PKRU if it is a
4322 * user access or CR0.WP = 1.
4323 */
4324 check_write = check_pkey && wf && (uf || wp);
4325
4326 /* PKRU.AD stops both read and write access. */
4327 pkey_bits = !!check_pkey;
4328 /* PKRU.WD stops write access. */
4329 pkey_bits |= (!!check_write) << 1;
4330
4331 mmu->pkru_mask |= (pkey_bits & 3) << pfec;
4332 }
4333}
4334
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004335static void update_last_nonleaf_level(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu)
Avi Kivity6fd01b72012-09-12 20:46:56 +03004336{
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004337 unsigned root_level = mmu->root_level;
Avi Kivity6fd01b72012-09-12 20:46:56 +03004338
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004339 mmu->last_nonleaf_level = root_level;
4340 if (root_level == PT32_ROOT_LEVEL && is_pse(vcpu))
4341 mmu->last_nonleaf_level++;
Avi Kivity6fd01b72012-09-12 20:46:56 +03004342}
4343
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004344static void paging64_init_context_common(struct kvm_vcpu *vcpu,
4345 struct kvm_mmu *context,
4346 int level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004347{
Joerg Roedel2d48a982010-09-10 17:31:01 +02004348 context->nx = is_nx(vcpu);
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004349 context->root_level = level;
Joerg Roedel2d48a982010-09-10 17:31:01 +02004350
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004351 reset_rsvds_bits_mask(vcpu, context);
Yang Zhang25d92082013-08-06 12:00:32 +03004352 update_permission_bitmask(vcpu, context, false);
Huaitong Han2d344102016-03-22 16:51:19 +08004353 update_pkru_bitmask(vcpu, context, false);
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004354 update_last_nonleaf_level(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004355
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02004356 MMU_WARN_ON(!is_pae(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004357 context->page_fault = paging64_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004358 context->gva_to_gpa = paging64_gva_to_gpa;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03004359 context->sync_page = paging64_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03004360 context->invlpg = paging64_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08004361 context->update_pte = paging64_update_pte;
Avi Kivity17ac10a2007-01-05 16:36:40 -08004362 context->shadow_root_level = level;
Avi Kivity17c3ba92007-06-04 15:58:30 +03004363 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02004364 context->direct_map = false;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004365}
4366
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004367static void paging64_init_context(struct kvm_vcpu *vcpu,
4368 struct kvm_mmu *context)
Avi Kivity17ac10a2007-01-05 16:36:40 -08004369{
Yu Zhang2a7266a2017-08-24 20:27:54 +08004370 paging64_init_context_common(vcpu, context, PT64_ROOT_4LEVEL);
Avi Kivity17ac10a2007-01-05 16:36:40 -08004371}
4372
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004373static void paging32_init_context(struct kvm_vcpu *vcpu,
4374 struct kvm_mmu *context)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004375{
Joerg Roedel2d48a982010-09-10 17:31:01 +02004376 context->nx = false;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004377 context->root_level = PT32_ROOT_LEVEL;
Joerg Roedel2d48a982010-09-10 17:31:01 +02004378
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004379 reset_rsvds_bits_mask(vcpu, context);
Yang Zhang25d92082013-08-06 12:00:32 +03004380 update_permission_bitmask(vcpu, context, false);
Huaitong Han2d344102016-03-22 16:51:19 +08004381 update_pkru_bitmask(vcpu, context, false);
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004382 update_last_nonleaf_level(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004383
Avi Kivity6aa8b732006-12-10 02:21:36 -08004384 context->page_fault = paging32_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004385 context->gva_to_gpa = paging32_gva_to_gpa;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03004386 context->sync_page = paging32_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03004387 context->invlpg = paging32_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08004388 context->update_pte = paging32_update_pte;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004389 context->shadow_root_level = PT32E_ROOT_LEVEL;
Avi Kivity17c3ba92007-06-04 15:58:30 +03004390 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02004391 context->direct_map = false;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004392}
4393
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004394static void paging32E_init_context(struct kvm_vcpu *vcpu,
4395 struct kvm_mmu *context)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004396{
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004397 paging64_init_context_common(vcpu, context, PT32E_ROOT_LEVEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004398}
4399
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004400static void init_kvm_tdp_mmu(struct kvm_vcpu *vcpu)
Joerg Roedelfb72d162008-02-07 13:47:44 +01004401{
Paolo Bonziniad896af2013-10-02 16:56:14 +02004402 struct kvm_mmu *context = &vcpu->arch.mmu;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004403
Avi Kivityc445f8e2010-12-21 16:26:01 +02004404 context->base_role.word = 0;
Paolo Bonzini699023e2015-05-18 15:03:39 +02004405 context->base_role.smm = is_smm(vcpu);
Peter Feinerac8d57e2017-06-30 17:26:31 -07004406 context->base_role.ad_disabled = (shadow_accessed_mask == 0);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004407 context->page_fault = tdp_page_fault;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03004408 context->sync_page = nonpaging_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03004409 context->invlpg = nonpaging_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08004410 context->update_pte = nonpaging_update_pte;
Sheng Yang67253af2008-04-25 10:20:22 +08004411 context->shadow_root_level = kvm_x86_ops->get_tdp_level();
Joerg Roedelfb72d162008-02-07 13:47:44 +01004412 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02004413 context->direct_map = true;
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02004414 context->set_cr3 = kvm_x86_ops->set_tdp_cr3;
Joerg Roedel5777ed32010-09-10 17:30:42 +02004415 context->get_cr3 = get_cr3;
Avi Kivitye4e517b2011-07-28 11:36:17 +03004416 context->get_pdptr = kvm_pdptr_read;
Joerg Roedelcb659db2010-09-10 17:30:43 +02004417 context->inject_page_fault = kvm_inject_page_fault;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004418
4419 if (!is_paging(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004420 context->nx = false;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004421 context->gva_to_gpa = nonpaging_gva_to_gpa;
4422 context->root_level = 0;
4423 } else if (is_long_mode(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004424 context->nx = is_nx(vcpu);
Yu Zhang2a7266a2017-08-24 20:27:54 +08004425 context->root_level = PT64_ROOT_4LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004426 reset_rsvds_bits_mask(vcpu, context);
4427 context->gva_to_gpa = paging64_gva_to_gpa;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004428 } else if (is_pae(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004429 context->nx = is_nx(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004430 context->root_level = PT32E_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004431 reset_rsvds_bits_mask(vcpu, context);
4432 context->gva_to_gpa = paging64_gva_to_gpa;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004433 } else {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004434 context->nx = false;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004435 context->root_level = PT32_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004436 reset_rsvds_bits_mask(vcpu, context);
4437 context->gva_to_gpa = paging32_gva_to_gpa;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004438 }
4439
Yang Zhang25d92082013-08-06 12:00:32 +03004440 update_permission_bitmask(vcpu, context, false);
Huaitong Han2d344102016-03-22 16:51:19 +08004441 update_pkru_bitmask(vcpu, context, false);
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004442 update_last_nonleaf_level(vcpu, context);
Xiao Guangrongc258b622015-08-05 12:04:24 +08004443 reset_tdp_shadow_zero_bits_mask(vcpu, context);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004444}
4445
Paolo Bonziniad896af2013-10-02 16:56:14 +02004446void kvm_init_shadow_mmu(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004447{
Avi Kivity411c5882011-06-06 16:11:54 +03004448 bool smep = kvm_read_cr4_bits(vcpu, X86_CR4_SMEP);
Xiao Guangrongedc90b72015-05-11 22:55:21 +08004449 bool smap = kvm_read_cr4_bits(vcpu, X86_CR4_SMAP);
Paolo Bonziniad896af2013-10-02 16:56:14 +02004450 struct kvm_mmu *context = &vcpu->arch.mmu;
4451
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02004452 MMU_WARN_ON(VALID_PAGE(context->root_hpa));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004453
4454 if (!is_paging(vcpu))
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004455 nonpaging_init_context(vcpu, context);
Avi Kivitya9058ec2006-12-29 16:49:37 -08004456 else if (is_long_mode(vcpu))
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004457 paging64_init_context(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004458 else if (is_pae(vcpu))
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004459 paging32E_init_context(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004460 else
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004461 paging32_init_context(vcpu, context);
Avi Kivitya770f6f2008-12-21 19:20:09 +02004462
Paolo Bonziniad896af2013-10-02 16:56:14 +02004463 context->base_role.nxe = is_nx(vcpu);
4464 context->base_role.cr4_pae = !!is_pae(vcpu);
4465 context->base_role.cr0_wp = is_write_protection(vcpu);
4466 context->base_role.smep_andnot_wp
Avi Kivity411c5882011-06-06 16:11:54 +03004467 = smep && !is_write_protection(vcpu);
Xiao Guangrongedc90b72015-05-11 22:55:21 +08004468 context->base_role.smap_andnot_wp
4469 = smap && !is_write_protection(vcpu);
Paolo Bonzini699023e2015-05-18 15:03:39 +02004470 context->base_role.smm = is_smm(vcpu);
Xiao Guangrongc258b622015-08-05 12:04:24 +08004471 reset_shadow_zero_bits_mask(vcpu, context);
Joerg Roedel52fde8d2010-09-10 17:30:44 +02004472}
4473EXPORT_SYMBOL_GPL(kvm_init_shadow_mmu);
4474
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02004475void kvm_init_shadow_ept_mmu(struct kvm_vcpu *vcpu, bool execonly,
4476 bool accessed_dirty)
Nadav Har'El155a97a2013-08-05 11:07:16 +03004477{
Paolo Bonziniad896af2013-10-02 16:56:14 +02004478 struct kvm_mmu *context = &vcpu->arch.mmu;
4479
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02004480 MMU_WARN_ON(VALID_PAGE(context->root_hpa));
Nadav Har'El155a97a2013-08-05 11:07:16 +03004481
4482 context->shadow_root_level = kvm_x86_ops->get_tdp_level();
4483
4484 context->nx = true;
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02004485 context->ept_ad = accessed_dirty;
Nadav Har'El155a97a2013-08-05 11:07:16 +03004486 context->page_fault = ept_page_fault;
4487 context->gva_to_gpa = ept_gva_to_gpa;
4488 context->sync_page = ept_sync_page;
4489 context->invlpg = ept_invlpg;
4490 context->update_pte = ept_update_pte;
Nadav Har'El155a97a2013-08-05 11:07:16 +03004491 context->root_level = context->shadow_root_level;
4492 context->root_hpa = INVALID_PAGE;
4493 context->direct_map = false;
Peter Feiner995f00a2017-06-30 17:26:32 -07004494 context->base_role.ad_disabled = !accessed_dirty;
Nadav Har'El155a97a2013-08-05 11:07:16 +03004495
4496 update_permission_bitmask(vcpu, context, true);
Huaitong Han2d344102016-03-22 16:51:19 +08004497 update_pkru_bitmask(vcpu, context, true);
Nadav Har'El155a97a2013-08-05 11:07:16 +03004498 reset_rsvds_bits_mask_ept(vcpu, context, execonly);
Xiao Guangrongc258b622015-08-05 12:04:24 +08004499 reset_ept_shadow_zero_bits_mask(vcpu, context, execonly);
Nadav Har'El155a97a2013-08-05 11:07:16 +03004500}
4501EXPORT_SYMBOL_GPL(kvm_init_shadow_ept_mmu);
4502
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004503static void init_kvm_softmmu(struct kvm_vcpu *vcpu)
Joerg Roedel52fde8d2010-09-10 17:30:44 +02004504{
Paolo Bonziniad896af2013-10-02 16:56:14 +02004505 struct kvm_mmu *context = &vcpu->arch.mmu;
4506
4507 kvm_init_shadow_mmu(vcpu);
4508 context->set_cr3 = kvm_x86_ops->set_cr3;
4509 context->get_cr3 = get_cr3;
4510 context->get_pdptr = kvm_pdptr_read;
4511 context->inject_page_fault = kvm_inject_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004512}
4513
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004514static void init_kvm_nested_mmu(struct kvm_vcpu *vcpu)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004515{
4516 struct kvm_mmu *g_context = &vcpu->arch.nested_mmu;
4517
4518 g_context->get_cr3 = get_cr3;
Avi Kivitye4e517b2011-07-28 11:36:17 +03004519 g_context->get_pdptr = kvm_pdptr_read;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004520 g_context->inject_page_fault = kvm_inject_page_fault;
4521
4522 /*
David Matlack0af25932015-12-30 08:26:17 -08004523 * Note that arch.mmu.gva_to_gpa translates l2_gpa to l1_gpa using
4524 * L1's nested page tables (e.g. EPT12). The nested translation
4525 * of l2_gva to l1_gpa is done by arch.nested_mmu.gva_to_gpa using
4526 * L2's page tables as the first level of translation and L1's
4527 * nested page tables as the second level of translation. Basically
4528 * the gva_to_gpa functions between mmu and nested_mmu are swapped.
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004529 */
4530 if (!is_paging(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004531 g_context->nx = false;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004532 g_context->root_level = 0;
4533 g_context->gva_to_gpa = nonpaging_gva_to_gpa_nested;
4534 } else if (is_long_mode(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004535 g_context->nx = is_nx(vcpu);
Yu Zhang2a7266a2017-08-24 20:27:54 +08004536 g_context->root_level = PT64_ROOT_4LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004537 reset_rsvds_bits_mask(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004538 g_context->gva_to_gpa = paging64_gva_to_gpa_nested;
4539 } else if (is_pae(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004540 g_context->nx = is_nx(vcpu);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004541 g_context->root_level = PT32E_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004542 reset_rsvds_bits_mask(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004543 g_context->gva_to_gpa = paging64_gva_to_gpa_nested;
4544 } else {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004545 g_context->nx = false;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004546 g_context->root_level = PT32_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004547 reset_rsvds_bits_mask(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004548 g_context->gva_to_gpa = paging32_gva_to_gpa_nested;
4549 }
4550
Yang Zhang25d92082013-08-06 12:00:32 +03004551 update_permission_bitmask(vcpu, g_context, false);
Huaitong Han2d344102016-03-22 16:51:19 +08004552 update_pkru_bitmask(vcpu, g_context, false);
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004553 update_last_nonleaf_level(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004554}
4555
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004556static void init_kvm_mmu(struct kvm_vcpu *vcpu)
Joerg Roedelfb72d162008-02-07 13:47:44 +01004557{
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004558 if (mmu_is_nested(vcpu))
Paolo Bonzinie0c6db32014-12-23 13:39:46 +01004559 init_kvm_nested_mmu(vcpu);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004560 else if (tdp_enabled)
Paolo Bonzinie0c6db32014-12-23 13:39:46 +01004561 init_kvm_tdp_mmu(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004562 else
Paolo Bonzinie0c6db32014-12-23 13:39:46 +01004563 init_kvm_softmmu(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004564}
4565
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004566void kvm_mmu_reset_context(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004567{
Paolo Bonzini95f93af2013-10-02 16:56:12 +02004568 kvm_mmu_unload(vcpu);
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004569 init_kvm_mmu(vcpu);
Avi Kivity17c3ba92007-06-04 15:58:30 +03004570}
Eddie Dong8668a3c2007-10-10 14:26:45 +08004571EXPORT_SYMBOL_GPL(kvm_mmu_reset_context);
Avi Kivity17c3ba92007-06-04 15:58:30 +03004572
4573int kvm_mmu_load(struct kvm_vcpu *vcpu)
4574{
Avi Kivity714b93d2007-01-05 16:36:53 -08004575 int r;
4576
Avi Kivitye2dec932007-01-05 16:36:54 -08004577 r = mmu_topup_memory_caches(vcpu);
Avi Kivity17c3ba92007-06-04 15:58:30 +03004578 if (r)
4579 goto out;
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03004580 r = mmu_alloc_roots(vcpu);
Takuya Yoshikawae2858b42013-05-09 15:45:12 +09004581 kvm_mmu_sync_roots(vcpu);
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03004582 if (r)
4583 goto out;
Sheng Yang3662cb12009-07-09 17:00:42 +08004584 /* set_cr3() should ensure TLB has been flushed */
Joerg Roedelf43addd2010-09-10 17:30:40 +02004585 vcpu->arch.mmu.set_cr3(vcpu, vcpu->arch.mmu.root_hpa);
Avi Kivity714b93d2007-01-05 16:36:53 -08004586out:
4587 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004588}
Avi Kivity17c3ba92007-06-04 15:58:30 +03004589EXPORT_SYMBOL_GPL(kvm_mmu_load);
4590
4591void kvm_mmu_unload(struct kvm_vcpu *vcpu)
4592{
4593 mmu_free_roots(vcpu);
Paolo Bonzini95f93af2013-10-02 16:56:12 +02004594 WARN_ON(VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity17c3ba92007-06-04 15:58:30 +03004595}
Joerg Roedel4b161842010-09-10 17:31:03 +02004596EXPORT_SYMBOL_GPL(kvm_mmu_unload);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004597
Avi Kivity00284252007-05-01 16:53:31 +03004598static void mmu_pte_write_new_pte(struct kvm_vcpu *vcpu,
Xiao Guangrong7c562522011-03-28 10:29:27 +08004599 struct kvm_mmu_page *sp, u64 *spte,
4600 const void *new)
Avi Kivity00284252007-05-01 16:53:31 +03004601{
Marcelo Tosatti30945382008-06-11 20:32:40 -03004602 if (sp->role.level != PT_PAGE_TABLE_LEVEL) {
Joerg Roedel7e4e4052009-07-27 16:30:46 +02004603 ++vcpu->kvm->stat.mmu_pde_zapped;
4604 return;
Marcelo Tosatti30945382008-06-11 20:32:40 -03004605 }
Avi Kivity00284252007-05-01 16:53:31 +03004606
Avi Kivity4cee5762007-11-18 16:37:07 +02004607 ++vcpu->kvm->stat.mmu_pte_updated;
Xiao Guangrong7c562522011-03-28 10:29:27 +08004608 vcpu->arch.mmu.update_pte(vcpu, sp, spte, new);
Avi Kivity00284252007-05-01 16:53:31 +03004609}
4610
Avi Kivity79539ce2007-11-21 02:06:21 +02004611static bool need_remote_flush(u64 old, u64 new)
4612{
4613 if (!is_shadow_present_pte(old))
4614 return false;
4615 if (!is_shadow_present_pte(new))
4616 return true;
4617 if ((old ^ new) & PT64_BASE_ADDR_MASK)
4618 return true;
Gleb Natapov53166222013-08-05 11:07:14 +03004619 old ^= shadow_nx_mask;
4620 new ^= shadow_nx_mask;
Avi Kivity79539ce2007-11-21 02:06:21 +02004621 return (old & ~new & PT64_PERM_MASK) != 0;
4622}
4623
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004624static u64 mmu_pte_write_fetch_gpte(struct kvm_vcpu *vcpu, gpa_t *gpa,
4625 const u8 *new, int *bytes)
Avi Kivityda4a00f2007-01-05 16:36:44 -08004626{
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004627 u64 gentry;
4628 int r;
Avi Kivity72016f32010-03-15 13:59:53 +02004629
Avi Kivity08e850c2010-03-15 13:59:57 +02004630 /*
4631 * Assume that the pte write on a page table of the same type
Xiao Guangrong49b26e22011-03-04 19:00:00 +08004632 * as the current vcpu paging mode since we update the sptes only
4633 * when they have the same mode.
Avi Kivity08e850c2010-03-15 13:59:57 +02004634 */
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004635 if (is_pae(vcpu) && *bytes == 4) {
Avi Kivity08e850c2010-03-15 13:59:57 +02004636 /* Handle a 32-bit guest writing two halves of a 64-bit gpte */
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004637 *gpa &= ~(gpa_t)7;
4638 *bytes = 8;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004639 r = kvm_vcpu_read_guest(vcpu, *gpa, &gentry, 8);
Avi Kivity08e850c2010-03-15 13:59:57 +02004640 if (r)
4641 gentry = 0;
4642 new = (const u8 *)&gentry;
4643 }
4644
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004645 switch (*bytes) {
Avi Kivity72016f32010-03-15 13:59:53 +02004646 case 4:
4647 gentry = *(const u32 *)new;
4648 break;
4649 case 8:
4650 gentry = *(const u64 *)new;
4651 break;
4652 default:
4653 gentry = 0;
4654 break;
4655 }
4656
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004657 return gentry;
4658}
4659
4660/*
4661 * If we're seeing too many writes to a page, it may no longer be a page table,
4662 * or we may be forking, in which case it is better to unmap the page.
4663 */
Xiao Guangronga138fe72011-12-16 18:18:10 +08004664static bool detect_write_flooding(struct kvm_mmu_page *sp)
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004665{
Xiao Guangronga30f47c2011-09-22 16:58:36 +08004666 /*
4667 * Skip write-flooding detected for the sp whose level is 1, because
4668 * it can become unsync, then the guest page is not write-protected.
4669 */
Davidlohr Buesof71fa312012-04-18 12:24:29 +02004670 if (sp->role.level == PT_PAGE_TABLE_LEVEL)
Xiao Guangronga30f47c2011-09-22 16:58:36 +08004671 return false;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004672
Xiao Guangronge5691a82016-02-24 17:51:12 +08004673 atomic_inc(&sp->write_flooding_count);
4674 return atomic_read(&sp->write_flooding_count) >= 3;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004675}
4676
4677/*
4678 * Misaligned accesses are too much trouble to fix up; also, they usually
4679 * indicate a page is not used as a page table.
4680 */
4681static bool detect_write_misaligned(struct kvm_mmu_page *sp, gpa_t gpa,
4682 int bytes)
4683{
4684 unsigned offset, pte_size, misaligned;
4685
4686 pgprintk("misaligned: gpa %llx bytes %d role %x\n",
4687 gpa, bytes, sp->role.word);
4688
4689 offset = offset_in_page(gpa);
4690 pte_size = sp->role.cr4_pae ? 8 : 4;
Xiao Guangrong5d9ca302011-09-22 16:57:55 +08004691
4692 /*
4693 * Sometimes, the OS only writes the last one bytes to update status
4694 * bits, for example, in linux, andb instruction is used in clear_bit().
4695 */
4696 if (!(offset & (pte_size - 1)) && bytes == 1)
4697 return false;
4698
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004699 misaligned = (offset ^ (offset + bytes - 1)) & ~(pte_size - 1);
4700 misaligned |= bytes < 4;
4701
4702 return misaligned;
4703}
4704
4705static u64 *get_written_sptes(struct kvm_mmu_page *sp, gpa_t gpa, int *nspte)
4706{
4707 unsigned page_offset, quadrant;
4708 u64 *spte;
4709 int level;
4710
4711 page_offset = offset_in_page(gpa);
4712 level = sp->role.level;
4713 *nspte = 1;
4714 if (!sp->role.cr4_pae) {
4715 page_offset <<= 1; /* 32->64 */
4716 /*
4717 * A 32-bit pde maps 4MB while the shadow pdes map
4718 * only 2MB. So we need to double the offset again
4719 * and zap two pdes instead of one.
4720 */
4721 if (level == PT32_ROOT_LEVEL) {
4722 page_offset &= ~7; /* kill rounding error */
4723 page_offset <<= 1;
4724 *nspte = 2;
4725 }
4726 quadrant = page_offset >> PAGE_SHIFT;
4727 page_offset &= ~PAGE_MASK;
4728 if (quadrant != sp->role.quadrant)
4729 return NULL;
4730 }
4731
4732 spte = &sp->spt[page_offset / sizeof(*spte)];
4733 return spte;
4734}
4735
Xiao Guangrong13d268c2016-02-24 17:51:16 +08004736static void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
Jike Songd1263632016-10-25 15:50:42 +08004737 const u8 *new, int bytes,
4738 struct kvm_page_track_notifier_node *node)
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004739{
4740 gfn_t gfn = gpa >> PAGE_SHIFT;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004741 struct kvm_mmu_page *sp;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004742 LIST_HEAD(invalid_list);
4743 u64 entry, gentry, *spte;
4744 int npte;
Paolo Bonzinib8c67b72016-02-24 11:21:55 +01004745 bool remote_flush, local_flush;
Andrew Morton41412592015-05-27 11:53:06 +02004746 union kvm_mmu_page_role mask = { };
4747
4748 mask.cr0_wp = 1;
4749 mask.cr4_pae = 1;
4750 mask.nxe = 1;
4751 mask.smep_andnot_wp = 1;
4752 mask.smap_andnot_wp = 1;
Paolo Bonzini699023e2015-05-18 15:03:39 +02004753 mask.smm = 1;
Peter Feinerac8d57e2017-06-30 17:26:31 -07004754 mask.ad_disabled = 1;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004755
4756 /*
4757 * If we don't have indirect shadow pages, it means no page is
4758 * write-protected, so we can exit simply.
4759 */
4760 if (!ACCESS_ONCE(vcpu->kvm->arch.indirect_shadow_pages))
4761 return;
4762
Paolo Bonzinib8c67b72016-02-24 11:21:55 +01004763 remote_flush = local_flush = false;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004764
4765 pgprintk("%s: gpa %llx bytes %d\n", __func__, gpa, bytes);
4766
4767 gentry = mmu_pte_write_fetch_gpte(vcpu, &gpa, new, &bytes);
4768
4769 /*
4770 * No need to care whether allocation memory is successful
4771 * or not since pte prefetch is skiped if it does not have
4772 * enough objects in the cache.
4773 */
4774 mmu_topup_memory_caches(vcpu);
4775
4776 spin_lock(&vcpu->kvm->mmu_lock);
4777 ++vcpu->kvm->stat.mmu_pte_write;
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08004778 kvm_mmu_audit(vcpu, AUDIT_PRE_PTE_WRITE);
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004779
Sasha Levinb67bfe02013-02-27 17:06:00 -08004780 for_each_gfn_indirect_valid_sp(vcpu->kvm, sp, gfn) {
Xiao Guangronga30f47c2011-09-22 16:58:36 +08004781 if (detect_write_misaligned(sp, gpa, bytes) ||
Xiao Guangronga138fe72011-12-16 18:18:10 +08004782 detect_write_flooding(sp)) {
Paolo Bonzinib8c67b72016-02-24 11:21:55 +01004783 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, &invalid_list);
Avi Kivity4cee5762007-11-18 16:37:07 +02004784 ++vcpu->kvm->stat.mmu_flooded;
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08004785 continue;
4786 }
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004787
4788 spte = get_written_sptes(sp, gpa, &npte);
4789 if (!spte)
4790 continue;
4791
Xiao Guangrong0671a8e2010-06-04 21:56:59 +08004792 local_flush = true;
Avi Kivityac1b7142007-03-08 17:13:32 +02004793 while (npte--) {
Avi Kivity79539ce2007-11-21 02:06:21 +02004794 entry = *spte;
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08004795 mmu_page_zap_pte(vcpu->kvm, sp, spte);
Xiao Guangrongfa1de2b2010-07-16 11:19:51 +08004796 if (gentry &&
4797 !((sp->role.word ^ vcpu->arch.mmu.base_role.word)
Xiao Guangrongf759e2b2011-09-22 16:53:17 +08004798 & mask.word) && rmap_can_add(vcpu))
Xiao Guangrong7c562522011-03-28 10:29:27 +08004799 mmu_pte_write_new_pte(vcpu, sp, spte, &gentry);
Gleb Natapov9bb4f6b2013-01-30 16:45:01 +02004800 if (need_remote_flush(entry, *spte))
Xiao Guangrong0671a8e2010-06-04 21:56:59 +08004801 remote_flush = true;
Avi Kivityac1b7142007-03-08 17:13:32 +02004802 ++spte;
Avi Kivity9b7a0322007-01-05 16:36:45 -08004803 }
Avi Kivity9b7a0322007-01-05 16:36:45 -08004804 }
Paolo Bonzinib8c67b72016-02-24 11:21:55 +01004805 kvm_mmu_flush_or_zap(vcpu, &invalid_list, remote_flush, local_flush);
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08004806 kvm_mmu_audit(vcpu, AUDIT_POST_PTE_WRITE);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05004807 spin_unlock(&vcpu->kvm->mmu_lock);
Avi Kivityda4a00f2007-01-05 16:36:44 -08004808}
4809
Avi Kivitya4360362007-01-05 16:36:45 -08004810int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva)
4811{
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004812 gpa_t gpa;
4813 int r;
Avi Kivitya4360362007-01-05 16:36:45 -08004814
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02004815 if (vcpu->arch.mmu.direct_map)
Avi Kivity60f24782009-08-27 13:37:06 +03004816 return 0;
4817
Gleb Natapov1871c602010-02-10 14:21:32 +02004818 gpa = kvm_mmu_gva_to_gpa_read(vcpu, gva, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004819
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004820 r = kvm_mmu_unprotect_page(vcpu->kvm, gpa >> PAGE_SHIFT);
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004821
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004822 return r;
Avi Kivitya4360362007-01-05 16:36:45 -08004823}
Avi Kivity577bdc42008-07-19 08:57:05 +03004824EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page_virt);
Avi Kivitya4360362007-01-05 16:36:45 -08004825
Wanpeng Li26eeb532017-08-10 16:28:02 -07004826static int make_mmu_pages_available(struct kvm_vcpu *vcpu)
Avi Kivityebeace82007-01-05 16:36:47 -08004827{
Xiao Guangrongd98ba052010-06-04 21:55:29 +08004828 LIST_HEAD(invalid_list);
Xiao Guangrong103ad252010-06-04 21:54:38 +08004829
Takuya Yoshikawa81f4f762013-03-21 19:34:27 +09004830 if (likely(kvm_mmu_available_pages(vcpu->kvm) >= KVM_MIN_FREE_MMU_PAGES))
Wanpeng Li26eeb532017-08-10 16:28:02 -07004831 return 0;
Takuya Yoshikawa81f4f762013-03-21 19:34:27 +09004832
Takuya Yoshikawa5da59602013-03-06 16:06:58 +09004833 while (kvm_mmu_available_pages(vcpu->kvm) < KVM_REFILL_PAGES) {
4834 if (!prepare_zap_oldest_mmu_page(vcpu->kvm, &invalid_list))
4835 break;
Avi Kivityebeace82007-01-05 16:36:47 -08004836
Avi Kivity4cee5762007-11-18 16:37:07 +02004837 ++vcpu->kvm->stat.mmu_recycled;
Avi Kivityebeace82007-01-05 16:36:47 -08004838 }
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08004839 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
Wanpeng Li26eeb532017-08-10 16:28:02 -07004840
4841 if (!kvm_mmu_available_pages(vcpu->kvm))
4842 return -ENOSPC;
4843 return 0;
Avi Kivityebeace82007-01-05 16:36:47 -08004844}
Avi Kivityebeace82007-01-05 16:36:47 -08004845
Tom Lendacky14727752016-11-23 12:01:38 -05004846int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t cr2, u64 error_code,
Andre Przywaradc25e892010-12-21 11:12:07 +01004847 void *insn, int insn_len)
Avi Kivity30677142007-10-28 18:48:59 +02004848{
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004849 int r, emulation_type = EMULTYPE_RETRY;
Avi Kivity30677142007-10-28 18:48:59 +02004850 enum emulation_result er;
Paolo Bonzini9034e6e2017-08-17 18:36:58 +02004851 bool direct = vcpu->arch.mmu.direct_map;
Avi Kivity30677142007-10-28 18:48:59 +02004852
Brijesh Singh618232e2017-08-17 18:36:57 +02004853 /* With shadow page tables, fault_address contains a GVA or nGPA. */
4854 if (vcpu->arch.mmu.direct_map) {
4855 vcpu->arch.gpa_available = true;
4856 vcpu->arch.gpa_val = cr2;
4857 }
4858
Takuya Yoshikawae9ee9562016-02-22 17:23:41 +09004859 if (unlikely(error_code & PFERR_RSVD_MASK)) {
4860 r = handle_mmio_page_fault(vcpu, cr2, direct);
4861 if (r == RET_MMIO_PF_EMULATE) {
4862 emulation_type = 0;
4863 goto emulate;
4864 }
4865 if (r == RET_MMIO_PF_RETRY)
4866 return 1;
4867 if (r < 0)
4868 return r;
Paolo Bonzinie08d26f2017-08-17 18:36:56 +02004869 /* Must be RET_MMIO_PF_INVALID. */
Takuya Yoshikawae9ee9562016-02-22 17:23:41 +09004870 }
Avi Kivity30677142007-10-28 18:48:59 +02004871
Tom Lendacky14727752016-11-23 12:01:38 -05004872 r = vcpu->arch.mmu.page_fault(vcpu, cr2, lower_32_bits(error_code),
4873 false);
Avi Kivity30677142007-10-28 18:48:59 +02004874 if (r < 0)
Takuya Yoshikawae9ee9562016-02-22 17:23:41 +09004875 return r;
4876 if (!r)
4877 return 1;
Avi Kivity30677142007-10-28 18:48:59 +02004878
Tom Lendacky14727752016-11-23 12:01:38 -05004879 /*
4880 * Before emulating the instruction, check if the error code
4881 * was due to a RO violation while translating the guest page.
4882 * This can occur when using nested virtualization with nested
4883 * paging in both guests. If true, we simply unprotect the page
4884 * and resume the guest.
Tom Lendacky14727752016-11-23 12:01:38 -05004885 */
Brijesh Singh64531a32017-08-07 14:11:30 -05004886 if (vcpu->arch.mmu.direct_map &&
Paolo Bonzinieebed242016-11-28 14:39:58 +01004887 (error_code & PFERR_NESTED_GUEST_PAGE) == PFERR_NESTED_GUEST_PAGE) {
Tom Lendacky14727752016-11-23 12:01:38 -05004888 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(cr2));
4889 return 1;
4890 }
4891
Takuya Yoshikawaded58742016-02-22 17:23:40 +09004892 if (mmio_info_in_cache(vcpu, cr2, direct))
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004893 emulation_type = 0;
Takuya Yoshikawae9ee9562016-02-22 17:23:41 +09004894emulate:
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004895 er = x86_emulate_instruction(vcpu, cr2, emulation_type, insn, insn_len);
Avi Kivity30677142007-10-28 18:48:59 +02004896
4897 switch (er) {
4898 case EMULATE_DONE:
4899 return 1;
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02004900 case EMULATE_USER_EXIT:
Avi Kivity30677142007-10-28 18:48:59 +02004901 ++vcpu->stat.mmio_exits;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03004902 /* fall through */
Avi Kivity30677142007-10-28 18:48:59 +02004903 case EMULATE_FAIL:
Avi Kivity3f5d18a2009-06-11 15:43:28 +03004904 return 0;
Avi Kivity30677142007-10-28 18:48:59 +02004905 default:
4906 BUG();
4907 }
Avi Kivity30677142007-10-28 18:48:59 +02004908}
4909EXPORT_SYMBOL_GPL(kvm_mmu_page_fault);
4910
Marcelo Tosattia7052892008-09-23 13:18:35 -03004911void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
4912{
Marcelo Tosattia7052892008-09-23 13:18:35 -03004913 vcpu->arch.mmu.invlpg(vcpu, gva);
Liang Chen77c39132014-09-18 12:38:37 -04004914 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03004915 ++vcpu->stat.invlpg;
4916}
4917EXPORT_SYMBOL_GPL(kvm_mmu_invlpg);
4918
Joerg Roedel18552672008-02-07 13:47:41 +01004919void kvm_enable_tdp(void)
4920{
4921 tdp_enabled = true;
4922}
4923EXPORT_SYMBOL_GPL(kvm_enable_tdp);
4924
Joerg Roedel5f4cb662008-07-14 20:36:36 +02004925void kvm_disable_tdp(void)
4926{
4927 tdp_enabled = false;
4928}
4929EXPORT_SYMBOL_GPL(kvm_disable_tdp);
4930
Avi Kivity6aa8b732006-12-10 02:21:36 -08004931static void free_mmu_pages(struct kvm_vcpu *vcpu)
4932{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004933 free_page((unsigned long)vcpu->arch.mmu.pae_root);
Joerg Roedel81407ca2010-09-10 17:31:00 +02004934 if (vcpu->arch.mmu.lm_root != NULL)
4935 free_page((unsigned long)vcpu->arch.mmu.lm_root);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004936}
4937
4938static int alloc_mmu_pages(struct kvm_vcpu *vcpu)
4939{
Avi Kivity17ac10a2007-01-05 16:36:40 -08004940 struct page *page;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004941 int i;
4942
Avi Kivity17ac10a2007-01-05 16:36:40 -08004943 /*
4944 * When emulating 32-bit mode, cr3 is only 32 bits even on x86_64.
4945 * Therefore we need to allocate shadow page tables in the first
4946 * 4GB of memory, which happens to fit the DMA32 zone.
4947 */
4948 page = alloc_page(GFP_KERNEL | __GFP_DMA32);
4949 if (!page)
Wei Yongjund7fa6ab2010-01-22 16:55:05 +08004950 return -ENOMEM;
4951
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004952 vcpu->arch.mmu.pae_root = page_address(page);
Avi Kivity17ac10a2007-01-05 16:36:40 -08004953 for (i = 0; i < 4; ++i)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004954 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08004955
Avi Kivity6aa8b732006-12-10 02:21:36 -08004956 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004957}
4958
Ingo Molnar8018c272006-12-29 16:50:01 -08004959int kvm_mmu_create(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004960{
Xiao Guangronge459e322011-11-28 20:42:16 +08004961 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
4962 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
4963 vcpu->arch.mmu.translate_gpa = translate_gpa;
4964 vcpu->arch.nested_mmu.translate_gpa = translate_nested_gpa;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004965
Ingo Molnar8018c272006-12-29 16:50:01 -08004966 return alloc_mmu_pages(vcpu);
4967}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004968
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004969void kvm_mmu_setup(struct kvm_vcpu *vcpu)
Ingo Molnar8018c272006-12-29 16:50:01 -08004970{
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02004971 MMU_WARN_ON(VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity2c264952006-12-22 01:05:28 -08004972
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004973 init_kvm_mmu(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004974}
4975
Xiaoguang Chenb5f5fdc2016-10-09 15:41:44 +08004976static void kvm_mmu_invalidate_zap_pages_in_memslot(struct kvm *kvm,
Jike Songd1263632016-10-25 15:50:42 +08004977 struct kvm_memory_slot *slot,
4978 struct kvm_page_track_notifier_node *node)
Xiaoguang Chenb5f5fdc2016-10-09 15:41:44 +08004979{
4980 kvm_mmu_invalidate_zap_all_pages(kvm);
4981}
4982
Xiao Guangrong13d268c2016-02-24 17:51:16 +08004983void kvm_mmu_init_vm(struct kvm *kvm)
4984{
4985 struct kvm_page_track_notifier_node *node = &kvm->arch.mmu_sp_tracker;
4986
4987 node->track_write = kvm_mmu_pte_write;
Xiaoguang Chenb5f5fdc2016-10-09 15:41:44 +08004988 node->track_flush_slot = kvm_mmu_invalidate_zap_pages_in_memslot;
Xiao Guangrong13d268c2016-02-24 17:51:16 +08004989 kvm_page_track_register_notifier(kvm, node);
4990}
4991
4992void kvm_mmu_uninit_vm(struct kvm *kvm)
4993{
4994 struct kvm_page_track_notifier_node *node = &kvm->arch.mmu_sp_tracker;
4995
4996 kvm_page_track_unregister_notifier(kvm, node);
4997}
4998
Xiao Guangrong1bad2b22015-05-13 14:42:23 +08004999/* The return value indicates if tlb flush on all vcpus is needed. */
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09005000typedef bool (*slot_level_handler) (struct kvm *kvm, struct kvm_rmap_head *rmap_head);
Xiao Guangrong1bad2b22015-05-13 14:42:23 +08005001
5002/* The caller should hold mmu-lock before calling this function. */
5003static bool
5004slot_handle_level_range(struct kvm *kvm, struct kvm_memory_slot *memslot,
5005 slot_level_handler fn, int start_level, int end_level,
5006 gfn_t start_gfn, gfn_t end_gfn, bool lock_flush_tlb)
5007{
5008 struct slot_rmap_walk_iterator iterator;
5009 bool flush = false;
5010
5011 for_each_slot_rmap_range(memslot, start_level, end_level, start_gfn,
5012 end_gfn, &iterator) {
5013 if (iterator.rmap)
5014 flush |= fn(kvm, iterator.rmap);
5015
5016 if (need_resched() || spin_needbreak(&kvm->mmu_lock)) {
5017 if (flush && lock_flush_tlb) {
5018 kvm_flush_remote_tlbs(kvm);
5019 flush = false;
5020 }
5021 cond_resched_lock(&kvm->mmu_lock);
5022 }
5023 }
5024
5025 if (flush && lock_flush_tlb) {
5026 kvm_flush_remote_tlbs(kvm);
5027 flush = false;
5028 }
5029
5030 return flush;
5031}
5032
5033static bool
5034slot_handle_level(struct kvm *kvm, struct kvm_memory_slot *memslot,
5035 slot_level_handler fn, int start_level, int end_level,
5036 bool lock_flush_tlb)
5037{
5038 return slot_handle_level_range(kvm, memslot, fn, start_level,
5039 end_level, memslot->base_gfn,
5040 memslot->base_gfn + memslot->npages - 1,
5041 lock_flush_tlb);
5042}
5043
5044static bool
5045slot_handle_all_level(struct kvm *kvm, struct kvm_memory_slot *memslot,
5046 slot_level_handler fn, bool lock_flush_tlb)
5047{
5048 return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL,
5049 PT_MAX_HUGEPAGE_LEVEL, lock_flush_tlb);
5050}
5051
5052static bool
5053slot_handle_large_level(struct kvm *kvm, struct kvm_memory_slot *memslot,
5054 slot_level_handler fn, bool lock_flush_tlb)
5055{
5056 return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL + 1,
5057 PT_MAX_HUGEPAGE_LEVEL, lock_flush_tlb);
5058}
5059
5060static bool
5061slot_handle_leaf(struct kvm *kvm, struct kvm_memory_slot *memslot,
5062 slot_level_handler fn, bool lock_flush_tlb)
5063{
5064 return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL,
5065 PT_PAGE_TABLE_LEVEL, lock_flush_tlb);
5066}
5067
Xiao Guangrongefdfe532015-05-13 14:42:27 +08005068void kvm_zap_gfn_range(struct kvm *kvm, gfn_t gfn_start, gfn_t gfn_end)
5069{
5070 struct kvm_memslots *slots;
5071 struct kvm_memory_slot *memslot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005072 int i;
Xiao Guangrongefdfe532015-05-13 14:42:27 +08005073
5074 spin_lock(&kvm->mmu_lock);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005075 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
5076 slots = __kvm_memslots(kvm, i);
5077 kvm_for_each_memslot(memslot, slots) {
5078 gfn_t start, end;
Xiao Guangrongefdfe532015-05-13 14:42:27 +08005079
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005080 start = max(gfn_start, memslot->base_gfn);
5081 end = min(gfn_end, memslot->base_gfn + memslot->npages);
5082 if (start >= end)
5083 continue;
Xiao Guangrongefdfe532015-05-13 14:42:27 +08005084
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005085 slot_handle_level_range(kvm, memslot, kvm_zap_rmapp,
5086 PT_PAGE_TABLE_LEVEL, PT_MAX_HUGEPAGE_LEVEL,
5087 start, end - 1, true);
5088 }
Xiao Guangrongefdfe532015-05-13 14:42:27 +08005089 }
5090
5091 spin_unlock(&kvm->mmu_lock);
5092}
5093
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09005094static bool slot_rmap_write_protect(struct kvm *kvm,
5095 struct kvm_rmap_head *rmap_head)
Xiao Guangrongd77aa732015-05-13 14:42:24 +08005096{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09005097 return __rmap_write_protect(kvm, rmap_head, false);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08005098}
5099
Kai Huang1c91cad42015-01-28 10:54:26 +08005100void kvm_mmu_slot_remove_write_access(struct kvm *kvm,
5101 struct kvm_memory_slot *memslot)
Avi Kivity6aa8b732006-12-10 02:21:36 -08005102{
Xiao Guangrongd77aa732015-05-13 14:42:24 +08005103 bool flush;
Avi Kivity6aa8b732006-12-10 02:21:36 -08005104
Takuya Yoshikawa9d1beef2013-01-08 19:46:48 +09005105 spin_lock(&kvm->mmu_lock);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08005106 flush = slot_handle_all_level(kvm, memslot, slot_rmap_write_protect,
5107 false);
Takuya Yoshikawa9d1beef2013-01-08 19:46:48 +09005108 spin_unlock(&kvm->mmu_lock);
Xiao Guangrong198c74f2014-04-17 17:06:16 +08005109
5110 /*
5111 * kvm_mmu_slot_remove_write_access() and kvm_vm_ioctl_get_dirty_log()
5112 * which do tlb flush out of mmu-lock should be serialized by
5113 * kvm->slots_lock otherwise tlb flush would be missed.
5114 */
5115 lockdep_assert_held(&kvm->slots_lock);
5116
5117 /*
5118 * We can flush all the TLBs out of the mmu lock without TLB
5119 * corruption since we just change the spte from writable to
5120 * readonly so that we only need to care the case of changing
5121 * spte from present to present (changing the spte from present
5122 * to nonpresent will flush all the TLBs immediately), in other
5123 * words, the only case we care is mmu_spte_update() where we
5124 * haved checked SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE
5125 * instead of PT_WRITABLE_MASK, that means it does not depend
5126 * on PT_WRITABLE_MASK anymore.
5127 */
Kai Huangd91ffee2015-01-12 15:28:54 +08005128 if (flush)
5129 kvm_flush_remote_tlbs(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005130}
Avi Kivity37a7d8b2007-01-05 16:36:56 -08005131
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005132static bool kvm_mmu_zap_collapsible_spte(struct kvm *kvm,
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09005133 struct kvm_rmap_head *rmap_head)
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005134{
5135 u64 *sptep;
5136 struct rmap_iterator iter;
5137 int need_tlb_flush = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08005138 kvm_pfn_t pfn;
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005139 struct kvm_mmu_page *sp;
5140
Xiao Guangrong0d536792015-05-13 14:42:20 +08005141restart:
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09005142 for_each_rmap_spte(rmap_head, &iter, sptep) {
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005143 sp = page_header(__pa(sptep));
5144 pfn = spte_to_pfn(*sptep);
5145
5146 /*
Xiao Guangrongdecf6332015-04-14 12:04:10 +08005147 * We cannot do huge page mapping for indirect shadow pages,
5148 * which are found on the last rmap (level = 1) when not using
5149 * tdp; such shadow pages are synced with the page table in
5150 * the guest, and the guest page table is using 4K page size
5151 * mapping if the indirect sp has level = 1.
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005152 */
5153 if (sp->role.direct &&
5154 !kvm_is_reserved_pfn(pfn) &&
Andrea Arcangeli127393f2016-05-05 16:22:20 -07005155 PageTransCompoundMap(pfn_to_page(pfn))) {
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005156 drop_spte(kvm, sptep);
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005157 need_tlb_flush = 1;
Xiao Guangrong0d536792015-05-13 14:42:20 +08005158 goto restart;
5159 }
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005160 }
5161
5162 return need_tlb_flush;
5163}
5164
5165void kvm_mmu_zap_collapsible_sptes(struct kvm *kvm,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02005166 const struct kvm_memory_slot *memslot)
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005167{
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02005168 /* FIXME: const-ify all uses of struct kvm_memory_slot. */
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005169 spin_lock(&kvm->mmu_lock);
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02005170 slot_handle_leaf(kvm, (struct kvm_memory_slot *)memslot,
5171 kvm_mmu_zap_collapsible_spte, true);
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005172 spin_unlock(&kvm->mmu_lock);
5173}
5174
Kai Huangf4b4b182015-01-28 10:54:24 +08005175void kvm_mmu_slot_leaf_clear_dirty(struct kvm *kvm,
5176 struct kvm_memory_slot *memslot)
5177{
Xiao Guangrongd77aa732015-05-13 14:42:24 +08005178 bool flush;
Kai Huangf4b4b182015-01-28 10:54:24 +08005179
5180 spin_lock(&kvm->mmu_lock);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08005181 flush = slot_handle_leaf(kvm, memslot, __rmap_clear_dirty, false);
Kai Huangf4b4b182015-01-28 10:54:24 +08005182 spin_unlock(&kvm->mmu_lock);
5183
5184 lockdep_assert_held(&kvm->slots_lock);
5185
5186 /*
5187 * It's also safe to flush TLBs out of mmu lock here as currently this
5188 * function is only used for dirty logging, in which case flushing TLB
5189 * out of mmu lock also guarantees no dirty pages will be lost in
5190 * dirty_bitmap.
5191 */
5192 if (flush)
5193 kvm_flush_remote_tlbs(kvm);
5194}
5195EXPORT_SYMBOL_GPL(kvm_mmu_slot_leaf_clear_dirty);
5196
5197void kvm_mmu_slot_largepage_remove_write_access(struct kvm *kvm,
5198 struct kvm_memory_slot *memslot)
5199{
Xiao Guangrongd77aa732015-05-13 14:42:24 +08005200 bool flush;
Kai Huangf4b4b182015-01-28 10:54:24 +08005201
5202 spin_lock(&kvm->mmu_lock);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08005203 flush = slot_handle_large_level(kvm, memslot, slot_rmap_write_protect,
5204 false);
Kai Huangf4b4b182015-01-28 10:54:24 +08005205 spin_unlock(&kvm->mmu_lock);
5206
5207 /* see kvm_mmu_slot_remove_write_access */
5208 lockdep_assert_held(&kvm->slots_lock);
5209
5210 if (flush)
5211 kvm_flush_remote_tlbs(kvm);
5212}
5213EXPORT_SYMBOL_GPL(kvm_mmu_slot_largepage_remove_write_access);
5214
5215void kvm_mmu_slot_set_dirty(struct kvm *kvm,
5216 struct kvm_memory_slot *memslot)
5217{
Xiao Guangrongd77aa732015-05-13 14:42:24 +08005218 bool flush;
Kai Huangf4b4b182015-01-28 10:54:24 +08005219
5220 spin_lock(&kvm->mmu_lock);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08005221 flush = slot_handle_all_level(kvm, memslot, __rmap_set_dirty, false);
Kai Huangf4b4b182015-01-28 10:54:24 +08005222 spin_unlock(&kvm->mmu_lock);
5223
5224 lockdep_assert_held(&kvm->slots_lock);
5225
5226 /* see kvm_mmu_slot_leaf_clear_dirty */
5227 if (flush)
5228 kvm_flush_remote_tlbs(kvm);
5229}
5230EXPORT_SYMBOL_GPL(kvm_mmu_slot_set_dirty);
5231
Xiao Guangronge7d11c72013-05-31 08:36:27 +08005232#define BATCH_ZAP_PAGES 10
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005233static void kvm_zap_obsolete_pages(struct kvm *kvm)
5234{
5235 struct kvm_mmu_page *sp, *node;
Xiao Guangronge7d11c72013-05-31 08:36:27 +08005236 int batch = 0;
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005237
5238restart:
5239 list_for_each_entry_safe_reverse(sp, node,
5240 &kvm->arch.active_mmu_pages, link) {
Xiao Guangronge7d11c72013-05-31 08:36:27 +08005241 int ret;
5242
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005243 /*
5244 * No obsolete page exists before new created page since
5245 * active_mmu_pages is the FIFO list.
5246 */
5247 if (!is_obsolete_sp(kvm, sp))
5248 break;
5249
5250 /*
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005251 * Since we are reversely walking the list and the invalid
5252 * list will be moved to the head, skip the invalid page
5253 * can help us to avoid the infinity list walking.
5254 */
5255 if (sp->role.invalid)
5256 continue;
5257
Xiao Guangrongf34d2512013-05-31 08:36:28 +08005258 /*
5259 * Need not flush tlb since we only zap the sp with invalid
5260 * generation number.
5261 */
Xiao Guangronge7d11c72013-05-31 08:36:27 +08005262 if (batch >= BATCH_ZAP_PAGES &&
Xiao Guangrongf34d2512013-05-31 08:36:28 +08005263 cond_resched_lock(&kvm->mmu_lock)) {
Xiao Guangronge7d11c72013-05-31 08:36:27 +08005264 batch = 0;
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005265 goto restart;
5266 }
5267
Xiao Guangrong365c8862013-05-31 08:36:29 +08005268 ret = kvm_mmu_prepare_zap_page(kvm, sp,
5269 &kvm->arch.zapped_obsolete_pages);
Xiao Guangronge7d11c72013-05-31 08:36:27 +08005270 batch += ret;
5271
5272 if (ret)
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005273 goto restart;
5274 }
5275
Xiao Guangrongf34d2512013-05-31 08:36:28 +08005276 /*
5277 * Should flush tlb before free page tables since lockless-walking
5278 * may use the pages.
5279 */
Xiao Guangrong365c8862013-05-31 08:36:29 +08005280 kvm_mmu_commit_zap_page(kvm, &kvm->arch.zapped_obsolete_pages);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005281}
5282
5283/*
5284 * Fast invalidate all shadow pages and use lock-break technique
5285 * to zap obsolete pages.
5286 *
5287 * It's required when memslot is being deleted or VM is being
5288 * destroyed, in these cases, we should ensure that KVM MMU does
5289 * not use any resource of the being-deleted slot or all slots
5290 * after calling the function.
5291 */
5292void kvm_mmu_invalidate_zap_all_pages(struct kvm *kvm)
5293{
5294 spin_lock(&kvm->mmu_lock);
Xiao Guangrong35006122013-05-31 08:36:25 +08005295 trace_kvm_mmu_invalidate_zap_all_pages(kvm);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005296 kvm->arch.mmu_valid_gen++;
5297
Xiao Guangrongf34d2512013-05-31 08:36:28 +08005298 /*
5299 * Notify all vcpus to reload its shadow page table
5300 * and flush TLB. Then all vcpus will switch to new
5301 * shadow page table with the new mmu_valid_gen.
5302 *
5303 * Note: we should do this under the protection of
5304 * mmu-lock, otherwise, vcpu would purge shadow page
5305 * but miss tlb flush.
5306 */
5307 kvm_reload_remote_mmus(kvm);
5308
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005309 kvm_zap_obsolete_pages(kvm);
5310 spin_unlock(&kvm->mmu_lock);
5311}
5312
Xiao Guangrong365c8862013-05-31 08:36:29 +08005313static bool kvm_has_zapped_obsolete_pages(struct kvm *kvm)
5314{
5315 return unlikely(!list_empty_careful(&kvm->arch.zapped_obsolete_pages));
5316}
5317
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005318void kvm_mmu_invalidate_mmio_sptes(struct kvm *kvm, struct kvm_memslots *slots)
Xiao Guangrongf8f55942013-06-07 16:51:26 +08005319{
5320 /*
5321 * The very rare case: if the generation-number is round,
5322 * zap all shadow pages.
Xiao Guangrongf8f55942013-06-07 16:51:26 +08005323 */
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005324 if (unlikely((slots->generation & MMIO_GEN_MASK) == 0)) {
Bandan Dasae0f5492016-11-15 01:36:18 -05005325 kvm_debug_ratelimited("kvm: zapping shadow pages for mmio generation wraparound\n");
Xiao Guangronga8eca9d2013-06-10 16:28:55 +08005326 kvm_mmu_invalidate_zap_all_pages(kvm);
Takuya Yoshikawa7a2e8aa2013-06-21 01:34:31 +09005327 }
Xiao Guangrongf8f55942013-06-07 16:51:26 +08005328}
5329
Dave Chinner70534a72013-08-28 10:18:14 +10005330static unsigned long
5331mmu_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
Izik Eidus3ee16c82008-03-30 15:17:21 +03005332{
5333 struct kvm *kvm;
Ying Han1495f232011-05-24 17:12:27 -07005334 int nr_to_scan = sc->nr_to_scan;
Dave Chinner70534a72013-08-28 10:18:14 +10005335 unsigned long freed = 0;
Izik Eidus3ee16c82008-03-30 15:17:21 +03005336
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005337 spin_lock(&kvm_lock);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005338
5339 list_for_each_entry(kvm, &vm_list, vm_list) {
Jan Kiszka3d56cbd2011-12-02 18:35:24 +01005340 int idx;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08005341 LIST_HEAD(invalid_list);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005342
Gleb Natapov19526392012-06-04 14:53:23 +03005343 /*
Takuya Yoshikawa35f2d162012-08-20 18:35:39 +09005344 * Never scan more than sc->nr_to_scan VM instances.
5345 * Will not hit this condition practically since we do not try
5346 * to shrink more than one VM and it is very unlikely to see
5347 * !n_used_mmu_pages so many times.
5348 */
5349 if (!nr_to_scan--)
5350 break;
5351 /*
Gleb Natapov19526392012-06-04 14:53:23 +03005352 * n_used_mmu_pages is accessed without holding kvm->mmu_lock
5353 * here. We may skip a VM instance errorneosly, but we do not
5354 * want to shrink a VM that only started to populate its MMU
5355 * anyway.
5356 */
Xiao Guangrong365c8862013-05-31 08:36:29 +08005357 if (!kvm->arch.n_used_mmu_pages &&
5358 !kvm_has_zapped_obsolete_pages(kvm))
Gleb Natapov19526392012-06-04 14:53:23 +03005359 continue;
Gleb Natapov19526392012-06-04 14:53:23 +03005360
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005361 idx = srcu_read_lock(&kvm->srcu);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005362 spin_lock(&kvm->mmu_lock);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005363
Xiao Guangrong365c8862013-05-31 08:36:29 +08005364 if (kvm_has_zapped_obsolete_pages(kvm)) {
5365 kvm_mmu_commit_zap_page(kvm,
5366 &kvm->arch.zapped_obsolete_pages);
5367 goto unlock;
5368 }
5369
Dave Chinner70534a72013-08-28 10:18:14 +10005370 if (prepare_zap_oldest_mmu_page(kvm, &invalid_list))
5371 freed++;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08005372 kvm_mmu_commit_zap_page(kvm, &invalid_list);
Gleb Natapov19526392012-06-04 14:53:23 +03005373
Xiao Guangrong365c8862013-05-31 08:36:29 +08005374unlock:
Izik Eidus3ee16c82008-03-30 15:17:21 +03005375 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005376 srcu_read_unlock(&kvm->srcu, idx);
Gleb Natapov19526392012-06-04 14:53:23 +03005377
Dave Chinner70534a72013-08-28 10:18:14 +10005378 /*
5379 * unfair on small ones
5380 * per-vm shrinkers cry out
5381 * sadness comes quickly
5382 */
Gleb Natapov19526392012-06-04 14:53:23 +03005383 list_move_tail(&kvm->vm_list, &vm_list);
5384 break;
Izik Eidus3ee16c82008-03-30 15:17:21 +03005385 }
Izik Eidus3ee16c82008-03-30 15:17:21 +03005386
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005387 spin_unlock(&kvm_lock);
Dave Chinner70534a72013-08-28 10:18:14 +10005388 return freed;
Dave Chinner70534a72013-08-28 10:18:14 +10005389}
5390
5391static unsigned long
5392mmu_shrink_count(struct shrinker *shrink, struct shrink_control *sc)
5393{
Dave Hansen45221ab2010-08-19 18:11:37 -07005394 return percpu_counter_read_positive(&kvm_total_used_mmu_pages);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005395}
5396
5397static struct shrinker mmu_shrinker = {
Dave Chinner70534a72013-08-28 10:18:14 +10005398 .count_objects = mmu_shrink_count,
5399 .scan_objects = mmu_shrink_scan,
Izik Eidus3ee16c82008-03-30 15:17:21 +03005400 .seeks = DEFAULT_SEEKS * 10,
5401};
5402
Ingo Molnar2ddfd202008-05-22 10:37:48 +02005403static void mmu_destroy_caches(void)
Avi Kivityb5a33a72007-04-15 16:31:09 +03005404{
Xiao Guangrong53c07b12011-05-15 23:26:20 +08005405 if (pte_list_desc_cache)
5406 kmem_cache_destroy(pte_list_desc_cache);
Avi Kivityd3d25b02007-05-30 12:34:53 +03005407 if (mmu_page_header_cache)
5408 kmem_cache_destroy(mmu_page_header_cache);
Avi Kivityb5a33a72007-04-15 16:31:09 +03005409}
5410
5411int kvm_mmu_module_init(void)
5412{
Junaid Shahidf160c7b2016-12-06 16:46:16 -08005413 kvm_mmu_clear_all_pte_masks();
5414
Xiao Guangrong53c07b12011-05-15 23:26:20 +08005415 pte_list_desc_cache = kmem_cache_create("pte_list_desc",
5416 sizeof(struct pte_list_desc),
Paul Mundt20c2df82007-07-20 10:11:58 +09005417 0, 0, NULL);
Xiao Guangrong53c07b12011-05-15 23:26:20 +08005418 if (!pte_list_desc_cache)
Avi Kivityb5a33a72007-04-15 16:31:09 +03005419 goto nomem;
5420
Avi Kivityd3d25b02007-05-30 12:34:53 +03005421 mmu_page_header_cache = kmem_cache_create("kvm_mmu_page_header",
5422 sizeof(struct kvm_mmu_page),
Paul Mundt20c2df82007-07-20 10:11:58 +09005423 0, 0, NULL);
Avi Kivityd3d25b02007-05-30 12:34:53 +03005424 if (!mmu_page_header_cache)
5425 goto nomem;
5426
Tejun Heo908c7f12014-09-08 09:51:29 +09005427 if (percpu_counter_init(&kvm_total_used_mmu_pages, 0, GFP_KERNEL))
Wei Yongjun45bf21a2010-08-23 16:13:15 +08005428 goto nomem;
5429
Izik Eidus3ee16c82008-03-30 15:17:21 +03005430 register_shrinker(&mmu_shrinker);
5431
Avi Kivityb5a33a72007-04-15 16:31:09 +03005432 return 0;
5433
5434nomem:
Izik Eidus3ee16c82008-03-30 15:17:21 +03005435 mmu_destroy_caches();
Avi Kivityb5a33a72007-04-15 16:31:09 +03005436 return -ENOMEM;
5437}
5438
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005439/*
5440 * Caculate mmu pages needed for kvm.
5441 */
5442unsigned int kvm_mmu_calculate_mmu_pages(struct kvm *kvm)
5443{
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005444 unsigned int nr_mmu_pages;
5445 unsigned int nr_pages = 0;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02005446 struct kvm_memslots *slots;
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +08005447 struct kvm_memory_slot *memslot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005448 int i;
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005449
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005450 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
5451 slots = __kvm_memslots(kvm, i);
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08005452
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005453 kvm_for_each_memslot(memslot, slots)
5454 nr_pages += memslot->npages;
5455 }
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005456
5457 nr_mmu_pages = nr_pages * KVM_PERMILLE_MMU_PAGES / 1000;
5458 nr_mmu_pages = max(nr_mmu_pages,
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005459 (unsigned int) KVM_MIN_ALLOC_MMU_PAGES);
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005460
5461 return nr_mmu_pages;
5462}
5463
Xiao Guangrongc42fffe2010-09-27 18:07:07 +08005464void kvm_mmu_destroy(struct kvm_vcpu *vcpu)
5465{
Paolo Bonzini95f93af2013-10-02 16:56:12 +02005466 kvm_mmu_unload(vcpu);
Xiao Guangrongc42fffe2010-09-27 18:07:07 +08005467 free_mmu_pages(vcpu);
5468 mmu_free_memory_caches(vcpu);
Xiao Guangrongb034cf02010-12-23 16:08:35 +08005469}
5470
Xiao Guangrongb034cf02010-12-23 16:08:35 +08005471void kvm_mmu_module_exit(void)
5472{
5473 mmu_destroy_caches();
5474 percpu_counter_destroy(&kvm_total_used_mmu_pages);
5475 unregister_shrinker(&mmu_shrinker);
Xiao Guangrongc42fffe2010-09-27 18:07:07 +08005476 mmu_audit_disable();
5477}