blob: b8b5259c8ebb2615c5b0712574a7988299a53a3b [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * MMU support
8 *
9 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +020010 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -080011 *
12 * Authors:
13 * Yaniv Kamay <yaniv@qumranet.com>
14 * Avi Kivity <avi@qumranet.com>
15 *
16 * This work is licensed under the terms of the GNU GPL, version 2. See
17 * the COPYING file in the top-level directory.
18 *
19 */
Avi Kivity6aa8b732006-12-10 02:21:36 -080020
Gleb Natapovaf585b92010-10-14 11:22:46 +020021#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080022#include "mmu.h"
Avi Kivity836a1b32010-01-21 15:31:49 +020023#include "x86.h"
Avi Kivity6de4f3a2009-05-31 22:58:47 +030024#include "kvm_cache_regs.h"
Nadav Amit5f7dde72014-05-07 15:32:50 +030025#include "cpuid.h"
Avi Kivity6aa8b732006-12-10 02:21:36 -080026
Avi Kivityedf88412007-12-16 11:02:48 +020027#include <linux/kvm_host.h>
Avi Kivitye4956062007-06-28 14:15:57 -040028#include <linux/types.h>
29#include <linux/string.h>
30#include <linux/mm.h>
31#include <linux/highmem.h>
Paul Gortmaker1767e932016-07-13 20:19:00 -040032#include <linux/moduleparam.h>
33#include <linux/export.h>
Izik Eidus448353c2007-11-26 14:08:14 +020034#include <linux/swap.h>
Marcelo Tosatti05da4552008-02-23 11:44:30 -030035#include <linux/hugetlb.h>
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -050036#include <linux/compiler.h>
Marcelo Tosattibc6678a2009-12-23 14:35:21 -020037#include <linux/srcu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
Huang Yingbf998152010-05-31 14:28:19 +080039#include <linux/uaccess.h>
David Matlack114df302016-12-19 13:58:25 -080040#include <linux/hash.h>
Avi Kivitye4956062007-06-28 14:15:57 -040041
42#include <asm/page.h>
43#include <asm/cmpxchg.h>
Avi Kivity4e542372007-11-21 14:08:40 +020044#include <asm/io.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020045#include <asm/vmx.h>
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +080046#include <asm/kvm_page_track.h>
Avi Kivitye4956062007-06-28 14:15:57 -040047
Joerg Roedel18552672008-02-07 13:47:41 +010048/*
49 * When setting this variable to true it enables Two-Dimensional-Paging
50 * where the hardware walks 2 page tables:
51 * 1. the guest-virtual to guest-physical
52 * 2. while doing 1. it walks guest-physical to host-physical
53 * If the hardware supports that we don't need to do shadow paging.
54 */
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -050055bool tdp_enabled = false;
Joerg Roedel18552672008-02-07 13:47:41 +010056
Xiao Guangrong8b1fe172010-08-30 18:22:53 +080057enum {
58 AUDIT_PRE_PAGE_FAULT,
59 AUDIT_POST_PAGE_FAULT,
60 AUDIT_PRE_PTE_WRITE,
Xiao Guangrong69030742010-09-27 18:09:29 +080061 AUDIT_POST_PTE_WRITE,
62 AUDIT_PRE_SYNC,
63 AUDIT_POST_SYNC
Xiao Guangrong8b1fe172010-08-30 18:22:53 +080064};
65
Avi Kivity37a7d8b2007-01-05 16:36:56 -080066#undef MMU_DEBUG
67
Avi Kivity37a7d8b2007-01-05 16:36:56 -080068#ifdef MMU_DEBUG
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +020069static bool dbg = 0;
70module_param(dbg, bool, 0644);
Avi Kivity37a7d8b2007-01-05 16:36:56 -080071
72#define pgprintk(x...) do { if (dbg) printk(x); } while (0)
73#define rmap_printk(x...) do { if (dbg) printk(x); } while (0)
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +020074#define MMU_WARN_ON(x) WARN_ON(x)
Avi Kivity37a7d8b2007-01-05 16:36:56 -080075#else
Avi Kivity37a7d8b2007-01-05 16:36:56 -080076#define pgprintk(x...) do { } while (0)
77#define rmap_printk(x...) do { } while (0)
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +020078#define MMU_WARN_ON(x) do { } while (0)
Yaozu Dongd6c69ee2007-04-25 14:17:25 +080079#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -080080
Xiao Guangrong957ed9e2010-08-22 19:12:48 +080081#define PTE_PREFETCH_NUM 8
82
Xudong Hao00763e42012-06-07 18:26:07 +080083#define PT_FIRST_AVAIL_BITS_SHIFT 10
Avi Kivity6aa8b732006-12-10 02:21:36 -080084#define PT64_SECOND_AVAIL_BITS_SHIFT 52
85
Avi Kivity6aa8b732006-12-10 02:21:36 -080086#define PT64_LEVEL_BITS 9
87
88#define PT64_LEVEL_SHIFT(level) \
Mike Dayd77c26f2007-10-08 09:02:08 -040089 (PAGE_SHIFT + (level - 1) * PT64_LEVEL_BITS)
Avi Kivity6aa8b732006-12-10 02:21:36 -080090
Avi Kivity6aa8b732006-12-10 02:21:36 -080091#define PT64_INDEX(address, level)\
92 (((address) >> PT64_LEVEL_SHIFT(level)) & ((1 << PT64_LEVEL_BITS) - 1))
93
94
95#define PT32_LEVEL_BITS 10
96
97#define PT32_LEVEL_SHIFT(level) \
Mike Dayd77c26f2007-10-08 09:02:08 -040098 (PAGE_SHIFT + (level - 1) * PT32_LEVEL_BITS)
Avi Kivity6aa8b732006-12-10 02:21:36 -080099
Joerg Roedele04da982009-07-27 16:30:45 +0200100#define PT32_LVL_OFFSET_MASK(level) \
101 (PT32_BASE_ADDR_MASK & ((1ULL << (PAGE_SHIFT + (((level) - 1) \
102 * PT32_LEVEL_BITS))) - 1))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800103
104#define PT32_INDEX(address, level)\
105 (((address) >> PT32_LEVEL_SHIFT(level)) & ((1 << PT32_LEVEL_BITS) - 1))
106
107
Avi Kivity27aba762007-03-09 13:04:31 +0200108#define PT64_BASE_ADDR_MASK (((1ULL << 52) - 1) & ~(u64)(PAGE_SIZE-1))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800109#define PT64_DIR_BASE_ADDR_MASK \
110 (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + PT64_LEVEL_BITS)) - 1))
Joerg Roedele04da982009-07-27 16:30:45 +0200111#define PT64_LVL_ADDR_MASK(level) \
112 (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + (((level) - 1) \
113 * PT64_LEVEL_BITS))) - 1))
114#define PT64_LVL_OFFSET_MASK(level) \
115 (PT64_BASE_ADDR_MASK & ((1ULL << (PAGE_SHIFT + (((level) - 1) \
116 * PT64_LEVEL_BITS))) - 1))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800117
118#define PT32_BASE_ADDR_MASK PAGE_MASK
119#define PT32_DIR_BASE_ADDR_MASK \
120 (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + PT32_LEVEL_BITS)) - 1))
Joerg Roedele04da982009-07-27 16:30:45 +0200121#define PT32_LVL_ADDR_MASK(level) \
122 (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + (((level) - 1) \
123 * PT32_LEVEL_BITS))) - 1))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800124
Gleb Natapov53166222013-08-05 11:07:14 +0300125#define PT64_PERM_MASK (PT_PRESENT_MASK | PT_WRITABLE_MASK | shadow_user_mask \
126 | shadow_x_mask | shadow_nx_mask)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800127
Avi Kivityfe135d22007-12-09 16:15:46 +0200128#define ACC_EXEC_MASK 1
129#define ACC_WRITE_MASK PT_WRITABLE_MASK
130#define ACC_USER_MASK PT_USER_MASK
131#define ACC_ALL (ACC_EXEC_MASK | ACC_WRITE_MASK | ACC_USER_MASK)
132
Avi Kivity90bb6fc2009-12-31 12:10:16 +0200133#include <trace/events/kvm.h>
134
Avi Kivity07420172009-07-06 12:21:32 +0300135#define CREATE_TRACE_POINTS
136#include "mmutrace.h"
137
Xiao Guangrong49fde342012-06-20 15:58:58 +0800138#define SPTE_HOST_WRITEABLE (1ULL << PT_FIRST_AVAIL_BITS_SHIFT)
139#define SPTE_MMU_WRITEABLE (1ULL << (PT_FIRST_AVAIL_BITS_SHIFT + 1))
Izik Eidus14032832009-09-23 21:47:17 +0300140
Avi Kivity135f8c22008-08-21 17:49:56 +0300141#define SHADOW_PT_INDEX(addr, level) PT64_INDEX(addr, level)
142
Takuya Yoshikawa220f7732012-03-21 23:49:39 +0900143/* make pte_list_desc fit well in cache line */
144#define PTE_LIST_EXT 3
145
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800146struct pte_list_desc {
147 u64 *sptes[PTE_LIST_EXT];
148 struct pte_list_desc *more;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800149};
150
Avi Kivity2d111232008-12-25 14:39:47 +0200151struct kvm_shadow_walk_iterator {
152 u64 addr;
153 hpa_t shadow_addr;
Avi Kivity2d111232008-12-25 14:39:47 +0200154 u64 *sptep;
Xiao Guangrongdd3bfd52011-07-12 03:32:54 +0800155 int level;
Avi Kivity2d111232008-12-25 14:39:47 +0200156 unsigned index;
157};
158
159#define for_each_shadow_entry(_vcpu, _addr, _walker) \
160 for (shadow_walk_init(&(_walker), _vcpu, _addr); \
161 shadow_walk_okay(&(_walker)); \
162 shadow_walk_next(&(_walker)))
163
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800164#define for_each_shadow_entry_lockless(_vcpu, _addr, _walker, spte) \
165 for (shadow_walk_init(&(_walker), _vcpu, _addr); \
166 shadow_walk_okay(&(_walker)) && \
167 ({ spte = mmu_spte_get_lockless(_walker.sptep); 1; }); \
168 __shadow_walk_next(&(_walker), spte))
169
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800170static struct kmem_cache *pte_list_desc_cache;
Avi Kivityd3d25b02007-05-30 12:34:53 +0300171static struct kmem_cache *mmu_page_header_cache;
Dave Hansen45221ab2010-08-19 18:11:37 -0700172static struct percpu_counter kvm_total_used_mmu_pages;
Avi Kivityb5a33a72007-04-15 16:31:09 +0300173
Sheng Yang7b523452008-04-25 21:13:50 +0800174static u64 __read_mostly shadow_nx_mask;
175static u64 __read_mostly shadow_x_mask; /* mutual exclusive with nx_mask */
176static u64 __read_mostly shadow_user_mask;
177static u64 __read_mostly shadow_accessed_mask;
178static u64 __read_mostly shadow_dirty_mask;
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800179static u64 __read_mostly shadow_mmio_mask;
Bandan Dasffb128c2016-07-12 18:18:49 -0400180static u64 __read_mostly shadow_present_mask;
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800181
182static void mmu_spte_set(u64 *sptep, u64 spte);
Avi Kivitye6765052012-07-08 17:16:30 +0300183static void mmu_free_roots(struct kvm_vcpu *vcpu);
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800184
185void kvm_mmu_set_mmio_spte_mask(u64 mmio_mask)
186{
187 shadow_mmio_mask = mmio_mask;
188}
189EXPORT_SYMBOL_GPL(kvm_mmu_set_mmio_spte_mask);
190
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800191/*
David Matlackee3d1572014-08-18 15:46:06 -0700192 * the low bit of the generation number is always presumed to be zero.
193 * This disables mmio caching during memslot updates. The concept is
194 * similar to a seqcount but instead of retrying the access we just punt
195 * and ignore the cache.
196 *
197 * spte bits 3-11 are used as bits 1-9 of the generation number,
198 * the bits 52-61 are used as bits 10-19 of the generation number.
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800199 */
David Matlackee3d1572014-08-18 15:46:06 -0700200#define MMIO_SPTE_GEN_LOW_SHIFT 2
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800201#define MMIO_SPTE_GEN_HIGH_SHIFT 52
202
David Matlackee3d1572014-08-18 15:46:06 -0700203#define MMIO_GEN_SHIFT 20
204#define MMIO_GEN_LOW_SHIFT 10
205#define MMIO_GEN_LOW_MASK ((1 << MMIO_GEN_LOW_SHIFT) - 2)
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800206#define MMIO_GEN_MASK ((1 << MMIO_GEN_SHIFT) - 1)
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800207
208static u64 generation_mmio_spte_mask(unsigned int gen)
209{
210 u64 mask;
211
Tiejun Chen842bb262014-11-18 17:14:38 +0800212 WARN_ON(gen & ~MMIO_GEN_MASK);
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800213
214 mask = (gen & MMIO_GEN_LOW_MASK) << MMIO_SPTE_GEN_LOW_SHIFT;
215 mask |= ((u64)gen >> MMIO_GEN_LOW_SHIFT) << MMIO_SPTE_GEN_HIGH_SHIFT;
216 return mask;
217}
218
219static unsigned int get_mmio_spte_generation(u64 spte)
220{
221 unsigned int gen;
222
223 spte &= ~shadow_mmio_mask;
224
225 gen = (spte >> MMIO_SPTE_GEN_LOW_SHIFT) & MMIO_GEN_LOW_MASK;
226 gen |= (spte >> MMIO_SPTE_GEN_HIGH_SHIFT) << MMIO_GEN_LOW_SHIFT;
227 return gen;
228}
229
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200230static unsigned int kvm_current_mmio_generation(struct kvm_vcpu *vcpu)
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800231{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200232 return kvm_vcpu_memslots(vcpu)->generation & MMIO_GEN_MASK;
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800233}
234
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200235static void mark_mmio_spte(struct kvm_vcpu *vcpu, u64 *sptep, u64 gfn,
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800236 unsigned access)
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800237{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200238 unsigned int gen = kvm_current_mmio_generation(vcpu);
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800239 u64 mask = generation_mmio_spte_mask(gen);
Takuya Yoshikawa95b04302013-03-12 17:44:40 +0900240
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800241 access &= ACC_WRITE_MASK | ACC_USER_MASK;
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800242 mask |= shadow_mmio_mask | access | gfn << PAGE_SHIFT;
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800243
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800244 trace_mark_mmio_spte(sptep, gfn, access, gen);
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800245 mmu_spte_set(sptep, mask);
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800246}
247
248static bool is_mmio_spte(u64 spte)
249{
250 return (spte & shadow_mmio_mask) == shadow_mmio_mask;
251}
252
253static gfn_t get_mmio_spte_gfn(u64 spte)
254{
Tiejun Chen842bb262014-11-18 17:14:38 +0800255 u64 mask = generation_mmio_spte_mask(MMIO_GEN_MASK) | shadow_mmio_mask;
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800256 return (spte & ~mask) >> PAGE_SHIFT;
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800257}
258
259static unsigned get_mmio_spte_access(u64 spte)
260{
Tiejun Chen842bb262014-11-18 17:14:38 +0800261 u64 mask = generation_mmio_spte_mask(MMIO_GEN_MASK) | shadow_mmio_mask;
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800262 return (spte & ~mask) & ~PAGE_MASK;
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800263}
264
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200265static bool set_mmio_spte(struct kvm_vcpu *vcpu, u64 *sptep, gfn_t gfn,
Dan Williamsba049e92016-01-15 16:56:11 -0800266 kvm_pfn_t pfn, unsigned access)
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800267{
268 if (unlikely(is_noslot_pfn(pfn))) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200269 mark_mmio_spte(vcpu, sptep, gfn, access);
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800270 return true;
271 }
272
273 return false;
274}
Avi Kivityc7addb92007-09-16 18:58:32 +0200275
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200276static bool check_mmio_spte(struct kvm_vcpu *vcpu, u64 spte)
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800277{
Xiao Guangrong089504c2013-06-07 16:51:27 +0800278 unsigned int kvm_gen, spte_gen;
279
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200280 kvm_gen = kvm_current_mmio_generation(vcpu);
Xiao Guangrong089504c2013-06-07 16:51:27 +0800281 spte_gen = get_mmio_spte_generation(spte);
282
283 trace_check_mmio_spte(spte, kvm_gen, spte_gen);
284 return likely(kvm_gen == spte_gen);
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800285}
286
Sheng Yang7b523452008-04-25 21:13:50 +0800287void kvm_mmu_set_mask_ptes(u64 user_mask, u64 accessed_mask,
Bandan Dasffb128c2016-07-12 18:18:49 -0400288 u64 dirty_mask, u64 nx_mask, u64 x_mask, u64 p_mask)
Sheng Yang7b523452008-04-25 21:13:50 +0800289{
290 shadow_user_mask = user_mask;
291 shadow_accessed_mask = accessed_mask;
292 shadow_dirty_mask = dirty_mask;
293 shadow_nx_mask = nx_mask;
294 shadow_x_mask = x_mask;
Bandan Dasffb128c2016-07-12 18:18:49 -0400295 shadow_present_mask = p_mask;
Sheng Yang7b523452008-04-25 21:13:50 +0800296}
297EXPORT_SYMBOL_GPL(kvm_mmu_set_mask_ptes);
298
Avi Kivity6aa8b732006-12-10 02:21:36 -0800299static int is_cpuid_PSE36(void)
300{
301 return 1;
302}
303
Avi Kivity73b10872007-01-26 00:56:41 -0800304static int is_nx(struct kvm_vcpu *vcpu)
305{
Avi Kivityf6801df2010-01-21 15:31:50 +0200306 return vcpu->arch.efer & EFER_NX;
Avi Kivity73b10872007-01-26 00:56:41 -0800307}
308
Avi Kivityc7addb92007-09-16 18:58:32 +0200309static int is_shadow_present_pte(u64 pte)
310{
Bandan Das8d5cf162016-07-12 18:18:48 -0400311 return (pte & 0xFFFFFFFFull) && !is_mmio_spte(pte);
Avi Kivityc7addb92007-09-16 18:58:32 +0200312}
313
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300314static int is_large_pte(u64 pte)
315{
316 return pte & PT_PAGE_SIZE_MASK;
317}
318
Marcelo Tosatti776e6632009-06-10 12:27:03 -0300319static int is_last_spte(u64 pte, int level)
320{
321 if (level == PT_PAGE_TABLE_LEVEL)
322 return 1;
Joerg Roedel852e3c12009-07-27 16:30:44 +0200323 if (is_large_pte(pte))
Marcelo Tosatti776e6632009-06-10 12:27:03 -0300324 return 1;
325 return 0;
326}
327
Dan Williamsba049e92016-01-15 16:56:11 -0800328static kvm_pfn_t spte_to_pfn(u64 pte)
Avi Kivity0b49ea82008-03-23 15:06:23 +0200329{
Anthony Liguori35149e22008-04-02 14:46:56 -0500330 return (pte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT;
Avi Kivity0b49ea82008-03-23 15:06:23 +0200331}
332
Avi Kivityda9285212007-11-21 13:54:47 +0200333static gfn_t pse36_gfn_delta(u32 gpte)
334{
335 int shift = 32 - PT32_DIR_PSE36_SHIFT - PAGE_SHIFT;
336
337 return (gpte & PT32_DIR_PSE36_MASK) << shift;
338}
339
Xiao Guangrong603e0652011-07-12 03:31:28 +0800340#ifdef CONFIG_X86_64
Avi Kivityd555c332009-06-10 14:24:23 +0300341static void __set_spte(u64 *sptep, u64 spte)
Avi Kivitye663ee62007-05-31 15:46:04 +0300342{
Nadav Amitb19ee2f2016-05-11 08:04:29 -0700343 WRITE_ONCE(*sptep, spte);
Avi Kivitye663ee62007-05-31 15:46:04 +0300344}
345
Xiao Guangrong603e0652011-07-12 03:31:28 +0800346static void __update_clear_spte_fast(u64 *sptep, u64 spte)
Avi Kivitya9221dd2010-06-06 14:48:06 +0300347{
Nadav Amitb19ee2f2016-05-11 08:04:29 -0700348 WRITE_ONCE(*sptep, spte);
Avi Kivitya9221dd2010-06-06 14:48:06 +0300349}
350
Xiao Guangrong603e0652011-07-12 03:31:28 +0800351static u64 __update_clear_spte_slow(u64 *sptep, u64 spte)
352{
353 return xchg(sptep, spte);
354}
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800355
356static u64 __get_spte_lockless(u64 *sptep)
357{
358 return ACCESS_ONCE(*sptep);
359}
Xiao Guangrong603e0652011-07-12 03:31:28 +0800360#else
361union split_spte {
362 struct {
363 u32 spte_low;
364 u32 spte_high;
365 };
366 u64 spte;
367};
368
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800369static void count_spte_clear(u64 *sptep, u64 spte)
370{
371 struct kvm_mmu_page *sp = page_header(__pa(sptep));
372
373 if (is_shadow_present_pte(spte))
374 return;
375
376 /* Ensure the spte is completely set before we increase the count */
377 smp_wmb();
378 sp->clear_spte_count++;
379}
380
Xiao Guangrong603e0652011-07-12 03:31:28 +0800381static void __set_spte(u64 *sptep, u64 spte)
382{
383 union split_spte *ssptep, sspte;
384
385 ssptep = (union split_spte *)sptep;
386 sspte = (union split_spte)spte;
387
388 ssptep->spte_high = sspte.spte_high;
389
390 /*
391 * If we map the spte from nonpresent to present, We should store
392 * the high bits firstly, then set present bit, so cpu can not
393 * fetch this spte while we are setting the spte.
394 */
395 smp_wmb();
396
Nadav Amitb19ee2f2016-05-11 08:04:29 -0700397 WRITE_ONCE(ssptep->spte_low, sspte.spte_low);
Xiao Guangrong603e0652011-07-12 03:31:28 +0800398}
399
400static void __update_clear_spte_fast(u64 *sptep, u64 spte)
401{
402 union split_spte *ssptep, sspte;
403
404 ssptep = (union split_spte *)sptep;
405 sspte = (union split_spte)spte;
406
Nadav Amitb19ee2f2016-05-11 08:04:29 -0700407 WRITE_ONCE(ssptep->spte_low, sspte.spte_low);
Xiao Guangrong603e0652011-07-12 03:31:28 +0800408
409 /*
410 * If we map the spte from present to nonpresent, we should clear
411 * present bit firstly to avoid vcpu fetch the old high bits.
412 */
413 smp_wmb();
414
415 ssptep->spte_high = sspte.spte_high;
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800416 count_spte_clear(sptep, spte);
Xiao Guangrong603e0652011-07-12 03:31:28 +0800417}
418
419static u64 __update_clear_spte_slow(u64 *sptep, u64 spte)
420{
421 union split_spte *ssptep, sspte, orig;
422
423 ssptep = (union split_spte *)sptep;
424 sspte = (union split_spte)spte;
425
426 /* xchg acts as a barrier before the setting of the high bits */
427 orig.spte_low = xchg(&ssptep->spte_low, sspte.spte_low);
Zhao Jin41bc3182011-09-19 12:19:51 +0800428 orig.spte_high = ssptep->spte_high;
429 ssptep->spte_high = sspte.spte_high;
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800430 count_spte_clear(sptep, spte);
Xiao Guangrong603e0652011-07-12 03:31:28 +0800431
432 return orig.spte;
433}
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800434
435/*
436 * The idea using the light way get the spte on x86_32 guest is from
437 * gup_get_pte(arch/x86/mm/gup.c).
Xiao Guangrongaccaefe2013-06-19 17:09:20 +0800438 *
439 * An spte tlb flush may be pending, because kvm_set_pte_rmapp
440 * coalesces them and we are running out of the MMU lock. Therefore
441 * we need to protect against in-progress updates of the spte.
442 *
443 * Reading the spte while an update is in progress may get the old value
444 * for the high part of the spte. The race is fine for a present->non-present
445 * change (because the high part of the spte is ignored for non-present spte),
446 * but for a present->present change we must reread the spte.
447 *
448 * All such changes are done in two steps (present->non-present and
449 * non-present->present), hence it is enough to count the number of
450 * present->non-present updates: if it changed while reading the spte,
451 * we might have hit the race. This is done using clear_spte_count.
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800452 */
453static u64 __get_spte_lockless(u64 *sptep)
454{
455 struct kvm_mmu_page *sp = page_header(__pa(sptep));
456 union split_spte spte, *orig = (union split_spte *)sptep;
457 int count;
458
459retry:
460 count = sp->clear_spte_count;
461 smp_rmb();
462
463 spte.spte_low = orig->spte_low;
464 smp_rmb();
465
466 spte.spte_high = orig->spte_high;
467 smp_rmb();
468
469 if (unlikely(spte.spte_low != orig->spte_low ||
470 count != sp->clear_spte_count))
471 goto retry;
472
473 return spte.spte;
474}
Xiao Guangrong603e0652011-07-12 03:31:28 +0800475#endif
476
Junaid Shahidea4114b2016-12-06 16:46:11 -0800477static bool spte_can_locklessly_be_made_writable(u64 spte)
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800478{
Gleb Natapovfeb3eb72013-01-30 16:45:00 +0200479 return (spte & (SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE)) ==
480 (SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE);
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800481}
482
Xiao Guangrong8672b722010-08-02 16:14:04 +0800483static bool spte_has_volatile_bits(u64 spte)
484{
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800485 /*
Adam Buchbinder6a6256f2016-02-23 15:34:30 -0800486 * Always atomically update spte if it can be updated
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800487 * out of mmu-lock, it can ensure dirty bit is not lost,
488 * also, it can help us to get a stable is_writable_pte()
489 * to ensure tlb flush is not missed.
490 */
Junaid Shahidea4114b2016-12-06 16:46:11 -0800491 if (spte_can_locklessly_be_made_writable(spte))
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800492 return true;
493
Xiao Guangrong8672b722010-08-02 16:14:04 +0800494 if (!shadow_accessed_mask)
495 return false;
496
497 if (!is_shadow_present_pte(spte))
498 return false;
499
Xiao Guangrong41327792010-08-02 16:15:08 +0800500 if ((spte & shadow_accessed_mask) &&
501 (!is_writable_pte(spte) || (spte & shadow_dirty_mask)))
Xiao Guangrong8672b722010-08-02 16:14:04 +0800502 return false;
503
504 return true;
505}
506
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800507static bool is_accessed_spte(u64 spte)
Xiao Guangrong41327792010-08-02 16:15:08 +0800508{
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800509 return shadow_accessed_mask ? spte & shadow_accessed_mask
510 : true;
Xiao Guangrong41327792010-08-02 16:15:08 +0800511}
512
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800513static bool is_dirty_spte(u64 spte)
Kai Huang7e71a592015-01-09 16:44:30 +0800514{
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800515 return shadow_dirty_mask ? spte & shadow_dirty_mask
516 : spte & PT_WRITABLE_MASK;
Kai Huang7e71a592015-01-09 16:44:30 +0800517}
518
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800519/* Rules for using mmu_spte_set:
520 * Set the sptep from nonpresent to present.
521 * Note: the sptep being assigned *must* be either not present
522 * or in a state where the hardware will not attempt to update
523 * the spte.
524 */
525static void mmu_spte_set(u64 *sptep, u64 new_spte)
526{
527 WARN_ON(is_shadow_present_pte(*sptep));
528 __set_spte(sptep, new_spte);
529}
530
Junaid Shahidf39a0582016-12-06 16:46:14 -0800531/*
532 * Update the SPTE (excluding the PFN), but do not track changes in its
533 * accessed/dirty status.
534 */
535static u64 mmu_spte_update_no_track(u64 *sptep, u64 new_spte)
536{
537 u64 old_spte = *sptep;
538
539 WARN_ON(!is_shadow_present_pte(new_spte));
540
541 if (!is_shadow_present_pte(old_spte)) {
542 mmu_spte_set(sptep, new_spte);
543 return old_spte;
544 }
545
546 if (!spte_has_volatile_bits(old_spte))
547 __update_clear_spte_fast(sptep, new_spte);
548 else
549 old_spte = __update_clear_spte_slow(sptep, new_spte);
550
551 WARN_ON(spte_to_pfn(old_spte) != spte_to_pfn(new_spte));
552
553 return old_spte;
554}
555
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800556/* Rules for using mmu_spte_update:
Andrea Gelminibb3541f2016-05-21 14:14:44 +0200557 * Update the state bits, it means the mapped pfn is not changed.
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800558 *
559 * Whenever we overwrite a writable spte with a read-only one we
560 * should flush remote TLBs. Otherwise rmap_write_protect
561 * will find a read-only spte, even though the writable spte
562 * might be cached on a CPU's TLB, the return value indicates this
563 * case.
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800564 *
565 * Returns true if the TLB needs to be flushed
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800566 */
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800567static bool mmu_spte_update(u64 *sptep, u64 new_spte)
Avi Kivityb79b93f2010-06-06 15:46:44 +0300568{
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800569 bool flush = false;
Junaid Shahidf39a0582016-12-06 16:46:14 -0800570 u64 old_spte = mmu_spte_update_no_track(sptep, new_spte);
Avi Kivityb79b93f2010-06-06 15:46:44 +0300571
Junaid Shahidf39a0582016-12-06 16:46:14 -0800572 if (!is_shadow_present_pte(old_spte))
573 return false;
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800574
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800575 /*
576 * For the spte updated out of mmu-lock is safe, since
Adam Buchbinder6a6256f2016-02-23 15:34:30 -0800577 * we always atomically update it, see the comments in
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800578 * spte_has_volatile_bits().
579 */
Junaid Shahidea4114b2016-12-06 16:46:11 -0800580 if (spte_can_locklessly_be_made_writable(old_spte) &&
Xiao Guangrong7f31c952014-04-17 17:06:15 +0800581 !is_writable_pte(new_spte))
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800582 flush = true;
Xiao Guangrong41327792010-08-02 16:15:08 +0800583
Kai Huang7e71a592015-01-09 16:44:30 +0800584 /*
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800585 * Flush TLB when accessed/dirty states are changed in the page tables,
Kai Huang7e71a592015-01-09 16:44:30 +0800586 * to guarantee consistency between TLB and page tables.
587 */
Kai Huang7e71a592015-01-09 16:44:30 +0800588
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800589 if (is_accessed_spte(old_spte) && !is_accessed_spte(new_spte)) {
590 flush = true;
Xiao Guangrong41327792010-08-02 16:15:08 +0800591 kvm_set_pfn_accessed(spte_to_pfn(old_spte));
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800592 }
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800593
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800594 if (is_dirty_spte(old_spte) && !is_dirty_spte(new_spte)) {
595 flush = true;
596 kvm_set_pfn_dirty(spte_to_pfn(old_spte));
597 }
598
599 return flush;
Avi Kivityb79b93f2010-06-06 15:46:44 +0300600}
601
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800602/*
603 * Rules for using mmu_spte_clear_track_bits:
604 * It sets the sptep from present to nonpresent, and track the
605 * state bits, it is used to clear the last level sptep.
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800606 * Returns non-zero if the PTE was previously valid.
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800607 */
608static int mmu_spte_clear_track_bits(u64 *sptep)
609{
Dan Williamsba049e92016-01-15 16:56:11 -0800610 kvm_pfn_t pfn;
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800611 u64 old_spte = *sptep;
612
613 if (!spte_has_volatile_bits(old_spte))
Xiao Guangrong603e0652011-07-12 03:31:28 +0800614 __update_clear_spte_fast(sptep, 0ull);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800615 else
Xiao Guangrong603e0652011-07-12 03:31:28 +0800616 old_spte = __update_clear_spte_slow(sptep, 0ull);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800617
Takuya Yoshikawaafd28fe2015-11-20 17:44:55 +0900618 if (!is_shadow_present_pte(old_spte))
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800619 return 0;
620
621 pfn = spte_to_pfn(old_spte);
Xiao Guangrong86fde742012-07-17 21:52:52 +0800622
623 /*
624 * KVM does not hold the refcount of the page used by
625 * kvm mmu, before reclaiming the page, we should
626 * unmap it from mmu first.
627 */
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +0000628 WARN_ON(!kvm_is_reserved_pfn(pfn) && !page_count(pfn_to_page(pfn)));
Xiao Guangrong86fde742012-07-17 21:52:52 +0800629
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800630 if (is_accessed_spte(old_spte))
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800631 kvm_set_pfn_accessed(pfn);
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800632
633 if (is_dirty_spte(old_spte))
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800634 kvm_set_pfn_dirty(pfn);
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800635
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800636 return 1;
637}
638
639/*
640 * Rules for using mmu_spte_clear_no_track:
641 * Directly clear spte without caring the state bits of sptep,
642 * it is used to set the upper level spte.
643 */
644static void mmu_spte_clear_no_track(u64 *sptep)
645{
Xiao Guangrong603e0652011-07-12 03:31:28 +0800646 __update_clear_spte_fast(sptep, 0ull);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800647}
648
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800649static u64 mmu_spte_get_lockless(u64 *sptep)
650{
651 return __get_spte_lockless(sptep);
652}
653
654static void walk_shadow_page_lockless_begin(struct kvm_vcpu *vcpu)
655{
Avi Kivityc1427862012-05-14 15:44:06 +0300656 /*
657 * Prevent page table teardown by making any free-er wait during
658 * kvm_flush_remote_tlbs() IPI to all active vcpus.
659 */
660 local_irq_disable();
Lan Tianyu36ca7e02016-03-13 11:10:25 +0800661
Avi Kivityc1427862012-05-14 15:44:06 +0300662 /*
663 * Make sure a following spte read is not reordered ahead of the write
664 * to vcpu->mode.
665 */
Lan Tianyu36ca7e02016-03-13 11:10:25 +0800666 smp_store_mb(vcpu->mode, READING_SHADOW_PAGE_TABLES);
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800667}
668
669static void walk_shadow_page_lockless_end(struct kvm_vcpu *vcpu)
670{
Avi Kivityc1427862012-05-14 15:44:06 +0300671 /*
672 * Make sure the write to vcpu->mode is not reordered in front of
673 * reads to sptes. If it does, kvm_commit_zap_page() can see us
674 * OUTSIDE_GUEST_MODE and proceed to free the shadow page table.
675 */
Lan Tianyu36ca7e02016-03-13 11:10:25 +0800676 smp_store_release(&vcpu->mode, OUTSIDE_GUEST_MODE);
Avi Kivityc1427862012-05-14 15:44:06 +0300677 local_irq_enable();
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800678}
679
Avi Kivitye2dec932007-01-05 16:36:54 -0800680static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300681 struct kmem_cache *base_cache, int min)
Avi Kivity714b93d2007-01-05 16:36:53 -0800682{
683 void *obj;
684
685 if (cache->nobjs >= min)
Avi Kivitye2dec932007-01-05 16:36:54 -0800686 return 0;
Avi Kivity714b93d2007-01-05 16:36:53 -0800687 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
Avi Kivity2e3e5882007-09-10 11:28:17 +0300688 obj = kmem_cache_zalloc(base_cache, GFP_KERNEL);
Avi Kivity714b93d2007-01-05 16:36:53 -0800689 if (!obj)
Avi Kivitye2dec932007-01-05 16:36:54 -0800690 return -ENOMEM;
Avi Kivity714b93d2007-01-05 16:36:53 -0800691 cache->objects[cache->nobjs++] = obj;
692 }
Avi Kivitye2dec932007-01-05 16:36:54 -0800693 return 0;
Avi Kivity714b93d2007-01-05 16:36:53 -0800694}
695
Xiao Guangrongf759e2b2011-09-22 16:53:17 +0800696static int mmu_memory_cache_free_objects(struct kvm_mmu_memory_cache *cache)
697{
698 return cache->nobjs;
699}
700
Xiao Guangronge8ad9a72010-05-13 10:06:02 +0800701static void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc,
702 struct kmem_cache *cache)
Avi Kivity714b93d2007-01-05 16:36:53 -0800703{
704 while (mc->nobjs)
Xiao Guangronge8ad9a72010-05-13 10:06:02 +0800705 kmem_cache_free(cache, mc->objects[--mc->nobjs]);
Avi Kivity714b93d2007-01-05 16:36:53 -0800706}
707
Avi Kivityc1158e62007-07-20 08:18:27 +0300708static int mmu_topup_memory_cache_page(struct kvm_mmu_memory_cache *cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300709 int min)
Avi Kivityc1158e62007-07-20 08:18:27 +0300710{
Xiao Guangrong842f22e2011-03-04 19:01:10 +0800711 void *page;
Avi Kivityc1158e62007-07-20 08:18:27 +0300712
713 if (cache->nobjs >= min)
714 return 0;
715 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
Xiao Guangrong842f22e2011-03-04 19:01:10 +0800716 page = (void *)__get_free_page(GFP_KERNEL);
Avi Kivityc1158e62007-07-20 08:18:27 +0300717 if (!page)
718 return -ENOMEM;
Xiao Guangrong842f22e2011-03-04 19:01:10 +0800719 cache->objects[cache->nobjs++] = page;
Avi Kivityc1158e62007-07-20 08:18:27 +0300720 }
721 return 0;
722}
723
724static void mmu_free_memory_cache_page(struct kvm_mmu_memory_cache *mc)
725{
726 while (mc->nobjs)
Avi Kivityc4d198d2007-07-21 09:06:46 +0300727 free_page((unsigned long)mc->objects[--mc->nobjs]);
Avi Kivityc1158e62007-07-20 08:18:27 +0300728}
729
Avi Kivity8c438502007-04-16 11:53:17 +0300730static int mmu_topup_memory_caches(struct kvm_vcpu *vcpu)
731{
732 int r;
733
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800734 r = mmu_topup_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache,
Xiao Guangrong67052b32011-05-15 23:27:08 +0800735 pte_list_desc_cache, 8 + PTE_PREFETCH_NUM);
Avi Kivity2e3e5882007-09-10 11:28:17 +0300736 if (r)
737 goto out;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800738 r = mmu_topup_memory_cache_page(&vcpu->arch.mmu_page_cache, 8);
Avi Kivity2e3e5882007-09-10 11:28:17 +0300739 if (r)
740 goto out;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800741 r = mmu_topup_memory_cache(&vcpu->arch.mmu_page_header_cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300742 mmu_page_header_cache, 4);
743out:
Avi Kivity8c438502007-04-16 11:53:17 +0300744 return r;
745}
746
Avi Kivity714b93d2007-01-05 16:36:53 -0800747static void mmu_free_memory_caches(struct kvm_vcpu *vcpu)
748{
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800749 mmu_free_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache,
750 pte_list_desc_cache);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800751 mmu_free_memory_cache_page(&vcpu->arch.mmu_page_cache);
Xiao Guangronge8ad9a72010-05-13 10:06:02 +0800752 mmu_free_memory_cache(&vcpu->arch.mmu_page_header_cache,
753 mmu_page_header_cache);
Avi Kivity714b93d2007-01-05 16:36:53 -0800754}
755
Takuya Yoshikawa80feb892012-05-29 23:54:26 +0900756static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc)
Avi Kivity714b93d2007-01-05 16:36:53 -0800757{
758 void *p;
759
760 BUG_ON(!mc->nobjs);
761 p = mc->objects[--mc->nobjs];
Avi Kivity714b93d2007-01-05 16:36:53 -0800762 return p;
763}
764
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800765static struct pte_list_desc *mmu_alloc_pte_list_desc(struct kvm_vcpu *vcpu)
Avi Kivity714b93d2007-01-05 16:36:53 -0800766{
Takuya Yoshikawa80feb892012-05-29 23:54:26 +0900767 return mmu_memory_cache_alloc(&vcpu->arch.mmu_pte_list_desc_cache);
Avi Kivity714b93d2007-01-05 16:36:53 -0800768}
769
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800770static void mmu_free_pte_list_desc(struct pte_list_desc *pte_list_desc)
Avi Kivity714b93d2007-01-05 16:36:53 -0800771{
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800772 kmem_cache_free(pte_list_desc_cache, pte_list_desc);
Avi Kivity714b93d2007-01-05 16:36:53 -0800773}
774
Lai Jiangshan2032a932010-05-26 16:49:59 +0800775static gfn_t kvm_mmu_page_get_gfn(struct kvm_mmu_page *sp, int index)
776{
777 if (!sp->role.direct)
778 return sp->gfns[index];
779
780 return sp->gfn + (index << ((sp->role.level - 1) * PT64_LEVEL_BITS));
781}
782
783static void kvm_mmu_page_set_gfn(struct kvm_mmu_page *sp, int index, gfn_t gfn)
784{
785 if (sp->role.direct)
786 BUG_ON(gfn != kvm_mmu_page_get_gfn(sp, index));
787 else
788 sp->gfns[index] = gfn;
789}
790
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800791/*
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900792 * Return the pointer to the large page information for a given gfn,
793 * handling slots that are not large page aligned.
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300794 */
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900795static struct kvm_lpage_info *lpage_info_slot(gfn_t gfn,
796 struct kvm_memory_slot *slot,
797 int level)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300798{
799 unsigned long idx;
800
Takuya Yoshikawafb03cb62012-02-08 12:59:10 +0900801 idx = gfn_to_index(gfn, slot->base_gfn, level);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900802 return &slot->arch.lpage_info[level - 2][idx];
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300803}
804
Xiao Guangrong547ffae2016-02-24 17:51:07 +0800805static void update_gfn_disallow_lpage_count(struct kvm_memory_slot *slot,
806 gfn_t gfn, int count)
807{
808 struct kvm_lpage_info *linfo;
809 int i;
810
811 for (i = PT_DIRECTORY_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) {
812 linfo = lpage_info_slot(gfn, slot, i);
813 linfo->disallow_lpage += count;
814 WARN_ON(linfo->disallow_lpage < 0);
815 }
816}
817
818void kvm_mmu_gfn_disallow_lpage(struct kvm_memory_slot *slot, gfn_t gfn)
819{
820 update_gfn_disallow_lpage_count(slot, gfn, 1);
821}
822
823void kvm_mmu_gfn_allow_lpage(struct kvm_memory_slot *slot, gfn_t gfn)
824{
825 update_gfn_disallow_lpage_count(slot, gfn, -1);
826}
827
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200828static void account_shadowed(struct kvm *kvm, struct kvm_mmu_page *sp)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300829{
Paolo Bonzini699023e2015-05-18 15:03:39 +0200830 struct kvm_memslots *slots;
Joerg Roedeld25797b2009-07-27 16:30:43 +0200831 struct kvm_memory_slot *slot;
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200832 gfn_t gfn;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300833
Xiao Guangrong56ca57f2016-02-24 17:51:14 +0800834 kvm->arch.indirect_shadow_pages++;
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200835 gfn = sp->gfn;
Paolo Bonzini699023e2015-05-18 15:03:39 +0200836 slots = kvm_memslots_for_spte_role(kvm, sp->role);
837 slot = __gfn_to_memslot(slots, gfn);
Xiao Guangrong56ca57f2016-02-24 17:51:14 +0800838
839 /* the non-leaf shadow pages are keeping readonly. */
840 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
841 return kvm_slot_page_track_add_page(kvm, slot, gfn,
842 KVM_PAGE_TRACK_WRITE);
843
Xiao Guangrong547ffae2016-02-24 17:51:07 +0800844 kvm_mmu_gfn_disallow_lpage(slot, gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300845}
846
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200847static void unaccount_shadowed(struct kvm *kvm, struct kvm_mmu_page *sp)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300848{
Paolo Bonzini699023e2015-05-18 15:03:39 +0200849 struct kvm_memslots *slots;
Joerg Roedeld25797b2009-07-27 16:30:43 +0200850 struct kvm_memory_slot *slot;
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200851 gfn_t gfn;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300852
Xiao Guangrong56ca57f2016-02-24 17:51:14 +0800853 kvm->arch.indirect_shadow_pages--;
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200854 gfn = sp->gfn;
Paolo Bonzini699023e2015-05-18 15:03:39 +0200855 slots = kvm_memslots_for_spte_role(kvm, sp->role);
856 slot = __gfn_to_memslot(slots, gfn);
Xiao Guangrong56ca57f2016-02-24 17:51:14 +0800857 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
858 return kvm_slot_page_track_remove_page(kvm, slot, gfn,
859 KVM_PAGE_TRACK_WRITE);
860
Xiao Guangrong547ffae2016-02-24 17:51:07 +0800861 kvm_mmu_gfn_allow_lpage(slot, gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300862}
863
Xiao Guangrong92f94f12016-02-24 17:51:06 +0800864static bool __mmu_gfn_lpage_is_disallowed(gfn_t gfn, int level,
865 struct kvm_memory_slot *slot)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300866{
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900867 struct kvm_lpage_info *linfo;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300868
869 if (slot) {
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900870 linfo = lpage_info_slot(gfn, slot, level);
Xiao Guangrong92f94f12016-02-24 17:51:06 +0800871 return !!linfo->disallow_lpage;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300872 }
873
Xiao Guangrong92f94f12016-02-24 17:51:06 +0800874 return true;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300875}
876
Xiao Guangrong92f94f12016-02-24 17:51:06 +0800877static bool mmu_gfn_lpage_is_disallowed(struct kvm_vcpu *vcpu, gfn_t gfn,
878 int level)
Takuya Yoshikawa5225fdf2015-10-16 17:08:03 +0900879{
880 struct kvm_memory_slot *slot;
881
882 slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
Xiao Guangrong92f94f12016-02-24 17:51:06 +0800883 return __mmu_gfn_lpage_is_disallowed(gfn, level, slot);
Takuya Yoshikawa5225fdf2015-10-16 17:08:03 +0900884}
885
Joerg Roedeld25797b2009-07-27 16:30:43 +0200886static int host_mapping_level(struct kvm *kvm, gfn_t gfn)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300887{
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +0100888 unsigned long page_size;
Joerg Roedeld25797b2009-07-27 16:30:43 +0200889 int i, ret = 0;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300890
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +0100891 page_size = kvm_host_page_size(kvm, gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300892
Xiao Guangrong8a3d08f2015-05-13 14:42:21 +0800893 for (i = PT_PAGE_TABLE_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) {
Joerg Roedeld25797b2009-07-27 16:30:43 +0200894 if (page_size >= KVM_HPAGE_SIZE(i))
895 ret = i;
896 else
897 break;
898 }
899
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -0300900 return ret;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300901}
902
Takuya Yoshikawad8aacf52015-10-16 17:07:01 +0900903static inline bool memslot_valid_for_gpte(struct kvm_memory_slot *slot,
904 bool no_dirty_log)
905{
906 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
907 return false;
908 if (no_dirty_log && slot->dirty_bitmap)
909 return false;
910
911 return true;
912}
913
Xiao Guangrong5d163b12011-03-09 15:43:00 +0800914static struct kvm_memory_slot *
915gfn_to_memslot_dirty_bitmap(struct kvm_vcpu *vcpu, gfn_t gfn,
916 bool no_dirty_log)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300917{
918 struct kvm_memory_slot *slot;
Xiao Guangrong5d163b12011-03-09 15:43:00 +0800919
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200920 slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
Takuya Yoshikawad8aacf52015-10-16 17:07:01 +0900921 if (!memslot_valid_for_gpte(slot, no_dirty_log))
Xiao Guangrong5d163b12011-03-09 15:43:00 +0800922 slot = NULL;
923
924 return slot;
925}
926
Takuya Yoshikawafd136902015-10-16 17:06:02 +0900927static int mapping_level(struct kvm_vcpu *vcpu, gfn_t large_gfn,
928 bool *force_pt_level)
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -0800929{
930 int host_level, level, max_level;
Takuya Yoshikawad8aacf52015-10-16 17:07:01 +0900931 struct kvm_memory_slot *slot;
932
Takuya Yoshikawa8c85ac12015-10-19 15:13:29 +0900933 if (unlikely(*force_pt_level))
934 return PT_PAGE_TABLE_LEVEL;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300935
Takuya Yoshikawa8c85ac12015-10-19 15:13:29 +0900936 slot = kvm_vcpu_gfn_to_memslot(vcpu, large_gfn);
937 *force_pt_level = !memslot_valid_for_gpte(slot, true);
Takuya Yoshikawafd136902015-10-16 17:06:02 +0900938 if (unlikely(*force_pt_level))
939 return PT_PAGE_TABLE_LEVEL;
940
Joerg Roedeld25797b2009-07-27 16:30:43 +0200941 host_level = host_mapping_level(vcpu->kvm, large_gfn);
942
943 if (host_level == PT_PAGE_TABLE_LEVEL)
944 return host_level;
945
Xiao Guangrong55dd98c2013-02-05 15:26:54 +0800946 max_level = min(kvm_x86_ops->get_lpage_level(), host_level);
Sheng Yang878403b2010-01-05 19:02:29 +0800947
948 for (level = PT_DIRECTORY_LEVEL; level <= max_level; ++level)
Xiao Guangrong92f94f12016-02-24 17:51:06 +0800949 if (__mmu_gfn_lpage_is_disallowed(large_gfn, level, slot))
Joerg Roedeld25797b2009-07-27 16:30:43 +0200950 break;
Joerg Roedeld25797b2009-07-27 16:30:43 +0200951
952 return level - 1;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300953}
954
955/*
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +0900956 * About rmap_head encoding:
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800957 *
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +0900958 * If the bit zero of rmap_head->val is clear, then it points to the only spte
959 * in this rmap chain. Otherwise, (rmap_head->val & ~1) points to a struct
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800960 * pte_list_desc containing more mappings.
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +0900961 */
962
963/*
964 * Returns the number of pointers in the rmap chain, not counting the new one.
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800965 */
966static int pte_list_add(struct kvm_vcpu *vcpu, u64 *spte,
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +0900967 struct kvm_rmap_head *rmap_head)
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800968{
969 struct pte_list_desc *desc;
970 int i, count = 0;
971
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +0900972 if (!rmap_head->val) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800973 rmap_printk("pte_list_add: %p %llx 0->1\n", spte, *spte);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +0900974 rmap_head->val = (unsigned long)spte;
975 } else if (!(rmap_head->val & 1)) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800976 rmap_printk("pte_list_add: %p %llx 1->many\n", spte, *spte);
977 desc = mmu_alloc_pte_list_desc(vcpu);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +0900978 desc->sptes[0] = (u64 *)rmap_head->val;
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800979 desc->sptes[1] = spte;
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +0900980 rmap_head->val = (unsigned long)desc | 1;
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800981 ++count;
982 } else {
983 rmap_printk("pte_list_add: %p %llx many->many\n", spte, *spte);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +0900984 desc = (struct pte_list_desc *)(rmap_head->val & ~1ul);
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800985 while (desc->sptes[PTE_LIST_EXT-1] && desc->more) {
986 desc = desc->more;
987 count += PTE_LIST_EXT;
988 }
989 if (desc->sptes[PTE_LIST_EXT-1]) {
990 desc->more = mmu_alloc_pte_list_desc(vcpu);
991 desc = desc->more;
992 }
993 for (i = 0; desc->sptes[i]; ++i)
994 ++count;
995 desc->sptes[i] = spte;
996 }
997 return count;
998}
999
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001000static void
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001001pte_list_desc_remove_entry(struct kvm_rmap_head *rmap_head,
1002 struct pte_list_desc *desc, int i,
1003 struct pte_list_desc *prev_desc)
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001004{
1005 int j;
1006
1007 for (j = PTE_LIST_EXT - 1; !desc->sptes[j] && j > i; --j)
1008 ;
1009 desc->sptes[i] = desc->sptes[j];
1010 desc->sptes[j] = NULL;
1011 if (j != 0)
1012 return;
1013 if (!prev_desc && !desc->more)
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001014 rmap_head->val = (unsigned long)desc->sptes[0];
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001015 else
1016 if (prev_desc)
1017 prev_desc->more = desc->more;
1018 else
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001019 rmap_head->val = (unsigned long)desc->more | 1;
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001020 mmu_free_pte_list_desc(desc);
1021}
1022
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001023static void pte_list_remove(u64 *spte, struct kvm_rmap_head *rmap_head)
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001024{
1025 struct pte_list_desc *desc;
1026 struct pte_list_desc *prev_desc;
1027 int i;
1028
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001029 if (!rmap_head->val) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001030 printk(KERN_ERR "pte_list_remove: %p 0->BUG\n", spte);
1031 BUG();
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001032 } else if (!(rmap_head->val & 1)) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001033 rmap_printk("pte_list_remove: %p 1->0\n", spte);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001034 if ((u64 *)rmap_head->val != spte) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001035 printk(KERN_ERR "pte_list_remove: %p 1->BUG\n", spte);
1036 BUG();
1037 }
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001038 rmap_head->val = 0;
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001039 } else {
1040 rmap_printk("pte_list_remove: %p many->many\n", spte);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001041 desc = (struct pte_list_desc *)(rmap_head->val & ~1ul);
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001042 prev_desc = NULL;
1043 while (desc) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001044 for (i = 0; i < PTE_LIST_EXT && desc->sptes[i]; ++i) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001045 if (desc->sptes[i] == spte) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001046 pte_list_desc_remove_entry(rmap_head,
1047 desc, i, prev_desc);
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001048 return;
1049 }
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001050 }
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001051 prev_desc = desc;
1052 desc = desc->more;
1053 }
1054 pr_err("pte_list_remove: %p many->many\n", spte);
1055 BUG();
1056 }
1057}
1058
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001059static struct kvm_rmap_head *__gfn_to_rmap(gfn_t gfn, int level,
1060 struct kvm_memory_slot *slot)
Takuya Yoshikawa9b9b1492011-11-14 18:22:28 +09001061{
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09001062 unsigned long idx;
Takuya Yoshikawa9b9b1492011-11-14 18:22:28 +09001063
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09001064 idx = gfn_to_index(gfn, slot->base_gfn, level);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09001065 return &slot->arch.rmap[level - PT_PAGE_TABLE_LEVEL][idx];
Takuya Yoshikawa9b9b1492011-11-14 18:22:28 +09001066}
1067
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001068static struct kvm_rmap_head *gfn_to_rmap(struct kvm *kvm, gfn_t gfn,
1069 struct kvm_mmu_page *sp)
Izik Eidus290fc382007-09-27 14:11:22 +02001070{
Paolo Bonzini699023e2015-05-18 15:03:39 +02001071 struct kvm_memslots *slots;
Izik Eidus290fc382007-09-27 14:11:22 +02001072 struct kvm_memory_slot *slot;
1073
Paolo Bonzini699023e2015-05-18 15:03:39 +02001074 slots = kvm_memslots_for_spte_role(kvm, sp->role);
1075 slot = __gfn_to_memslot(slots, gfn);
Paolo Bonzinie4cd1da2015-05-18 15:11:46 +02001076 return __gfn_to_rmap(gfn, sp->role.level, slot);
Izik Eidus290fc382007-09-27 14:11:22 +02001077}
1078
Xiao Guangrongf759e2b2011-09-22 16:53:17 +08001079static bool rmap_can_add(struct kvm_vcpu *vcpu)
1080{
1081 struct kvm_mmu_memory_cache *cache;
1082
1083 cache = &vcpu->arch.mmu_pte_list_desc_cache;
1084 return mmu_memory_cache_free_objects(cache);
1085}
1086
Joerg Roedel44ad9942009-07-27 16:30:42 +02001087static int rmap_add(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn)
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001088{
Avi Kivity4db35312007-11-21 15:28:32 +02001089 struct kvm_mmu_page *sp;
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001090 struct kvm_rmap_head *rmap_head;
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001091
Avi Kivity4db35312007-11-21 15:28:32 +02001092 sp = page_header(__pa(spte));
Lai Jiangshan2032a932010-05-26 16:49:59 +08001093 kvm_mmu_page_set_gfn(sp, spte - sp->spt, gfn);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001094 rmap_head = gfn_to_rmap(vcpu->kvm, gfn, sp);
1095 return pte_list_add(vcpu, spte, rmap_head);
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001096}
1097
Izik Eidus290fc382007-09-27 14:11:22 +02001098static void rmap_remove(struct kvm *kvm, u64 *spte)
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001099{
Avi Kivity4db35312007-11-21 15:28:32 +02001100 struct kvm_mmu_page *sp;
Lai Jiangshan2032a932010-05-26 16:49:59 +08001101 gfn_t gfn;
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001102 struct kvm_rmap_head *rmap_head;
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001103
Avi Kivity4db35312007-11-21 15:28:32 +02001104 sp = page_header(__pa(spte));
Lai Jiangshan2032a932010-05-26 16:49:59 +08001105 gfn = kvm_mmu_page_get_gfn(sp, spte - sp->spt);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001106 rmap_head = gfn_to_rmap(kvm, gfn, sp);
1107 pte_list_remove(spte, rmap_head);
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001108}
1109
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001110/*
1111 * Used by the following functions to iterate through the sptes linked by a
1112 * rmap. All fields are private and not assumed to be used outside.
1113 */
1114struct rmap_iterator {
1115 /* private fields */
1116 struct pte_list_desc *desc; /* holds the sptep if not NULL */
1117 int pos; /* index of the sptep */
1118};
1119
1120/*
1121 * Iteration must be started by this function. This should also be used after
1122 * removing/dropping sptes from the rmap link because in such cases the
1123 * information in the itererator may not be valid.
1124 *
1125 * Returns sptep if found, NULL otherwise.
1126 */
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001127static u64 *rmap_get_first(struct kvm_rmap_head *rmap_head,
1128 struct rmap_iterator *iter)
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001129{
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001130 u64 *sptep;
1131
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001132 if (!rmap_head->val)
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001133 return NULL;
1134
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001135 if (!(rmap_head->val & 1)) {
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001136 iter->desc = NULL;
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001137 sptep = (u64 *)rmap_head->val;
1138 goto out;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001139 }
1140
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001141 iter->desc = (struct pte_list_desc *)(rmap_head->val & ~1ul);
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001142 iter->pos = 0;
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001143 sptep = iter->desc->sptes[iter->pos];
1144out:
1145 BUG_ON(!is_shadow_present_pte(*sptep));
1146 return sptep;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001147}
1148
1149/*
1150 * Must be used with a valid iterator: e.g. after rmap_get_first().
1151 *
1152 * Returns sptep if found, NULL otherwise.
1153 */
1154static u64 *rmap_get_next(struct rmap_iterator *iter)
1155{
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001156 u64 *sptep;
1157
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001158 if (iter->desc) {
1159 if (iter->pos < PTE_LIST_EXT - 1) {
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001160 ++iter->pos;
1161 sptep = iter->desc->sptes[iter->pos];
1162 if (sptep)
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001163 goto out;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001164 }
1165
1166 iter->desc = iter->desc->more;
1167
1168 if (iter->desc) {
1169 iter->pos = 0;
1170 /* desc->sptes[0] cannot be NULL */
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001171 sptep = iter->desc->sptes[iter->pos];
1172 goto out;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001173 }
1174 }
1175
1176 return NULL;
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001177out:
1178 BUG_ON(!is_shadow_present_pte(*sptep));
1179 return sptep;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001180}
1181
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001182#define for_each_rmap_spte(_rmap_head_, _iter_, _spte_) \
1183 for (_spte_ = rmap_get_first(_rmap_head_, _iter_); \
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001184 _spte_; _spte_ = rmap_get_next(_iter_))
Xiao Guangrong0d536792015-05-13 14:42:20 +08001185
Xiao Guangrongc3707952011-07-12 03:28:04 +08001186static void drop_spte(struct kvm *kvm, u64 *sptep)
Xiao Guangronge4b502e2010-07-16 11:28:09 +08001187{
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +08001188 if (mmu_spte_clear_track_bits(sptep))
Marcelo Tosattieb45fda2010-10-25 11:58:22 -02001189 rmap_remove(kvm, sptep);
Avi Kivitybe38d272010-06-06 14:31:27 +03001190}
1191
Xiao Guangrong8e22f952012-06-20 15:57:39 +08001192
1193static bool __drop_large_spte(struct kvm *kvm, u64 *sptep)
1194{
1195 if (is_large_pte(*sptep)) {
1196 WARN_ON(page_header(__pa(sptep))->role.level ==
1197 PT_PAGE_TABLE_LEVEL);
1198 drop_spte(kvm, sptep);
1199 --kvm->stat.lpages;
1200 return true;
1201 }
1202
1203 return false;
1204}
1205
1206static void drop_large_spte(struct kvm_vcpu *vcpu, u64 *sptep)
1207{
1208 if (__drop_large_spte(vcpu->kvm, sptep))
1209 kvm_flush_remote_tlbs(vcpu->kvm);
1210}
1211
1212/*
Xiao Guangrong49fde342012-06-20 15:58:58 +08001213 * Write-protect on the specified @sptep, @pt_protect indicates whether
Xiao Guangrongc126d942014-04-17 17:06:14 +08001214 * spte write-protection is caused by protecting shadow page table.
Xiao Guangrong49fde342012-06-20 15:58:58 +08001215 *
Tiejun Chenb4619662014-09-22 10:31:38 +08001216 * Note: write protection is difference between dirty logging and spte
Xiao Guangrong49fde342012-06-20 15:58:58 +08001217 * protection:
1218 * - for dirty logging, the spte can be set to writable at anytime if
1219 * its dirty bitmap is properly set.
1220 * - for spte protection, the spte can be writable only after unsync-ing
1221 * shadow page.
Xiao Guangrong8e22f952012-06-20 15:57:39 +08001222 *
Xiao Guangrongc126d942014-04-17 17:06:14 +08001223 * Return true if tlb need be flushed.
Xiao Guangrong8e22f952012-06-20 15:57:39 +08001224 */
Bandan Dasc4f138b2016-08-02 16:32:37 -04001225static bool spte_write_protect(u64 *sptep, bool pt_protect)
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001226{
1227 u64 spte = *sptep;
1228
Xiao Guangrong49fde342012-06-20 15:58:58 +08001229 if (!is_writable_pte(spte) &&
Junaid Shahidea4114b2016-12-06 16:46:11 -08001230 !(pt_protect && spte_can_locklessly_be_made_writable(spte)))
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001231 return false;
1232
1233 rmap_printk("rmap_write_protect: spte %p %llx\n", sptep, *sptep);
1234
Xiao Guangrong49fde342012-06-20 15:58:58 +08001235 if (pt_protect)
1236 spte &= ~SPTE_MMU_WRITEABLE;
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001237 spte = spte & ~PT_WRITABLE_MASK;
Xiao Guangrong49fde342012-06-20 15:58:58 +08001238
Xiao Guangrongc126d942014-04-17 17:06:14 +08001239 return mmu_spte_update(sptep, spte);
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001240}
1241
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001242static bool __rmap_write_protect(struct kvm *kvm,
1243 struct kvm_rmap_head *rmap_head,
Takuya Yoshikawa245c3912013-01-08 19:44:09 +09001244 bool pt_protect)
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001245{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001246 u64 *sptep;
1247 struct rmap_iterator iter;
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001248 bool flush = false;
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001249
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001250 for_each_rmap_spte(rmap_head, &iter, sptep)
Bandan Dasc4f138b2016-08-02 16:32:37 -04001251 flush |= spte_write_protect(sptep, pt_protect);
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001252
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001253 return flush;
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001254}
1255
Bandan Dasc4f138b2016-08-02 16:32:37 -04001256static bool spte_clear_dirty(u64 *sptep)
Kai Huangf4b4b182015-01-28 10:54:24 +08001257{
1258 u64 spte = *sptep;
1259
1260 rmap_printk("rmap_clear_dirty: spte %p %llx\n", sptep, *sptep);
1261
1262 spte &= ~shadow_dirty_mask;
1263
1264 return mmu_spte_update(sptep, spte);
1265}
1266
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001267static bool __rmap_clear_dirty(struct kvm *kvm, struct kvm_rmap_head *rmap_head)
Kai Huangf4b4b182015-01-28 10:54:24 +08001268{
1269 u64 *sptep;
1270 struct rmap_iterator iter;
1271 bool flush = false;
1272
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001273 for_each_rmap_spte(rmap_head, &iter, sptep)
Bandan Dasc4f138b2016-08-02 16:32:37 -04001274 flush |= spte_clear_dirty(sptep);
Kai Huangf4b4b182015-01-28 10:54:24 +08001275
1276 return flush;
1277}
1278
Bandan Dasc4f138b2016-08-02 16:32:37 -04001279static bool spte_set_dirty(u64 *sptep)
Kai Huangf4b4b182015-01-28 10:54:24 +08001280{
1281 u64 spte = *sptep;
1282
1283 rmap_printk("rmap_set_dirty: spte %p %llx\n", sptep, *sptep);
1284
1285 spte |= shadow_dirty_mask;
1286
1287 return mmu_spte_update(sptep, spte);
1288}
1289
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001290static bool __rmap_set_dirty(struct kvm *kvm, struct kvm_rmap_head *rmap_head)
Kai Huangf4b4b182015-01-28 10:54:24 +08001291{
1292 u64 *sptep;
1293 struct rmap_iterator iter;
1294 bool flush = false;
1295
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001296 for_each_rmap_spte(rmap_head, &iter, sptep)
Bandan Dasc4f138b2016-08-02 16:32:37 -04001297 flush |= spte_set_dirty(sptep);
Kai Huangf4b4b182015-01-28 10:54:24 +08001298
1299 return flush;
1300}
1301
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001302/**
Kai Huang3b0f1d02015-01-28 10:54:23 +08001303 * kvm_mmu_write_protect_pt_masked - write protect selected PT level pages
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001304 * @kvm: kvm instance
1305 * @slot: slot to protect
1306 * @gfn_offset: start of the BITS_PER_LONG pages we care about
1307 * @mask: indicates which pages we should protect
1308 *
1309 * Used when we do not need to care about huge page mappings: e.g. during dirty
1310 * logging we do not have any such mappings.
1311 */
Kai Huang3b0f1d02015-01-28 10:54:23 +08001312static void kvm_mmu_write_protect_pt_masked(struct kvm *kvm,
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001313 struct kvm_memory_slot *slot,
1314 gfn_t gfn_offset, unsigned long mask)
Izik Eidus98348e92007-10-16 14:42:30 +02001315{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001316 struct kvm_rmap_head *rmap_head;
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001317
1318 while (mask) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001319 rmap_head = __gfn_to_rmap(slot->base_gfn + gfn_offset + __ffs(mask),
1320 PT_PAGE_TABLE_LEVEL, slot);
1321 __rmap_write_protect(kvm, rmap_head, false);
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001322
1323 /* clear the first set bit */
1324 mask &= mask - 1;
1325 }
1326}
1327
Kai Huang3b0f1d02015-01-28 10:54:23 +08001328/**
Kai Huangf4b4b182015-01-28 10:54:24 +08001329 * kvm_mmu_clear_dirty_pt_masked - clear MMU D-bit for PT level pages
1330 * @kvm: kvm instance
1331 * @slot: slot to clear D-bit
1332 * @gfn_offset: start of the BITS_PER_LONG pages we care about
1333 * @mask: indicates which pages we should clear D-bit
1334 *
1335 * Used for PML to re-log the dirty GPAs after userspace querying dirty_bitmap.
1336 */
1337void kvm_mmu_clear_dirty_pt_masked(struct kvm *kvm,
1338 struct kvm_memory_slot *slot,
1339 gfn_t gfn_offset, unsigned long mask)
1340{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001341 struct kvm_rmap_head *rmap_head;
Kai Huangf4b4b182015-01-28 10:54:24 +08001342
1343 while (mask) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001344 rmap_head = __gfn_to_rmap(slot->base_gfn + gfn_offset + __ffs(mask),
1345 PT_PAGE_TABLE_LEVEL, slot);
1346 __rmap_clear_dirty(kvm, rmap_head);
Kai Huangf4b4b182015-01-28 10:54:24 +08001347
1348 /* clear the first set bit */
1349 mask &= mask - 1;
1350 }
1351}
1352EXPORT_SYMBOL_GPL(kvm_mmu_clear_dirty_pt_masked);
1353
1354/**
Kai Huang3b0f1d02015-01-28 10:54:23 +08001355 * kvm_arch_mmu_enable_log_dirty_pt_masked - enable dirty logging for selected
1356 * PT level pages.
1357 *
1358 * It calls kvm_mmu_write_protect_pt_masked to write protect selected pages to
1359 * enable dirty logging for them.
1360 *
1361 * Used when we do not need to care about huge page mappings: e.g. during dirty
1362 * logging we do not have any such mappings.
1363 */
1364void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm,
1365 struct kvm_memory_slot *slot,
1366 gfn_t gfn_offset, unsigned long mask)
1367{
Kai Huang88178fd2015-01-28 10:54:27 +08001368 if (kvm_x86_ops->enable_log_dirty_pt_masked)
1369 kvm_x86_ops->enable_log_dirty_pt_masked(kvm, slot, gfn_offset,
1370 mask);
1371 else
1372 kvm_mmu_write_protect_pt_masked(kvm, slot, gfn_offset, mask);
Kai Huang3b0f1d02015-01-28 10:54:23 +08001373}
1374
Xiao Guangrongaeecee22016-02-24 17:51:08 +08001375bool kvm_mmu_slot_gfn_write_protect(struct kvm *kvm,
1376 struct kvm_memory_slot *slot, u64 gfn)
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001377{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001378 struct kvm_rmap_head *rmap_head;
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001379 int i;
Xiao Guangrong2f845692012-06-20 15:56:53 +08001380 bool write_protected = false;
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001381
Xiao Guangrong8a3d08f2015-05-13 14:42:21 +08001382 for (i = PT_PAGE_TABLE_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001383 rmap_head = __gfn_to_rmap(gfn, i, slot);
Xiao Guangrongaeecee22016-02-24 17:51:08 +08001384 write_protected |= __rmap_write_protect(kvm, rmap_head, true);
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001385 }
1386
Marcelo Tosattib1a36822008-12-01 22:32:03 -02001387 return write_protected;
Avi Kivity374cbac2007-01-05 16:36:43 -08001388}
1389
Xiao Guangrongaeecee22016-02-24 17:51:08 +08001390static bool rmap_write_protect(struct kvm_vcpu *vcpu, u64 gfn)
1391{
1392 struct kvm_memory_slot *slot;
1393
1394 slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1395 return kvm_mmu_slot_gfn_write_protect(vcpu->kvm, slot, gfn);
1396}
1397
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001398static bool kvm_zap_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head)
Xiao Guangrong6a49f852015-05-13 14:42:25 +08001399{
1400 u64 *sptep;
1401 struct rmap_iterator iter;
1402 bool flush = false;
1403
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001404 while ((sptep = rmap_get_first(rmap_head, &iter))) {
Xiao Guangrong6a49f852015-05-13 14:42:25 +08001405 rmap_printk("%s: spte %p %llx.\n", __func__, sptep, *sptep);
1406
1407 drop_spte(kvm, sptep);
1408 flush = true;
1409 }
1410
1411 return flush;
1412}
1413
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001414static int kvm_unmap_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001415 struct kvm_memory_slot *slot, gfn_t gfn, int level,
1416 unsigned long data)
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001417{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001418 return kvm_zap_rmapp(kvm, rmap_head);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001419}
1420
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001421static int kvm_set_pte_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001422 struct kvm_memory_slot *slot, gfn_t gfn, int level,
1423 unsigned long data)
Izik Eidus3da0dd42009-09-23 21:47:18 +03001424{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001425 u64 *sptep;
1426 struct rmap_iterator iter;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001427 int need_flush = 0;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001428 u64 new_spte;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001429 pte_t *ptep = (pte_t *)data;
Dan Williamsba049e92016-01-15 16:56:11 -08001430 kvm_pfn_t new_pfn;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001431
1432 WARN_ON(pte_huge(*ptep));
1433 new_pfn = pte_pfn(*ptep);
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001434
Xiao Guangrong0d536792015-05-13 14:42:20 +08001435restart:
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001436 for_each_rmap_spte(rmap_head, &iter, sptep) {
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001437 rmap_printk("kvm_set_pte_rmapp: spte %p %llx gfn %llx (%d)\n",
1438 sptep, *sptep, gfn, level);
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001439
Izik Eidus3da0dd42009-09-23 21:47:18 +03001440 need_flush = 1;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001441
Izik Eidus3da0dd42009-09-23 21:47:18 +03001442 if (pte_write(*ptep)) {
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001443 drop_spte(kvm, sptep);
Xiao Guangrong0d536792015-05-13 14:42:20 +08001444 goto restart;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001445 } else {
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001446 new_spte = *sptep & ~PT64_BASE_ADDR_MASK;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001447 new_spte |= (u64)new_pfn << PAGE_SHIFT;
1448
1449 new_spte &= ~PT_WRITABLE_MASK;
1450 new_spte &= ~SPTE_HOST_WRITEABLE;
Avi Kivityb79b93f2010-06-06 15:46:44 +03001451 new_spte &= ~shadow_accessed_mask;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001452
1453 mmu_spte_clear_track_bits(sptep);
1454 mmu_spte_set(sptep, new_spte);
Izik Eidus3da0dd42009-09-23 21:47:18 +03001455 }
1456 }
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001457
Izik Eidus3da0dd42009-09-23 21:47:18 +03001458 if (need_flush)
1459 kvm_flush_remote_tlbs(kvm);
1460
1461 return 0;
1462}
1463
Xiao Guangrong6ce1f4e2015-05-13 14:42:22 +08001464struct slot_rmap_walk_iterator {
1465 /* input fields. */
1466 struct kvm_memory_slot *slot;
1467 gfn_t start_gfn;
1468 gfn_t end_gfn;
1469 int start_level;
1470 int end_level;
1471
1472 /* output fields. */
1473 gfn_t gfn;
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001474 struct kvm_rmap_head *rmap;
Xiao Guangrong6ce1f4e2015-05-13 14:42:22 +08001475 int level;
1476
1477 /* private field. */
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001478 struct kvm_rmap_head *end_rmap;
Xiao Guangrong6ce1f4e2015-05-13 14:42:22 +08001479};
1480
1481static void
1482rmap_walk_init_level(struct slot_rmap_walk_iterator *iterator, int level)
1483{
1484 iterator->level = level;
1485 iterator->gfn = iterator->start_gfn;
1486 iterator->rmap = __gfn_to_rmap(iterator->gfn, level, iterator->slot);
1487 iterator->end_rmap = __gfn_to_rmap(iterator->end_gfn, level,
1488 iterator->slot);
1489}
1490
1491static void
1492slot_rmap_walk_init(struct slot_rmap_walk_iterator *iterator,
1493 struct kvm_memory_slot *slot, int start_level,
1494 int end_level, gfn_t start_gfn, gfn_t end_gfn)
1495{
1496 iterator->slot = slot;
1497 iterator->start_level = start_level;
1498 iterator->end_level = end_level;
1499 iterator->start_gfn = start_gfn;
1500 iterator->end_gfn = end_gfn;
1501
1502 rmap_walk_init_level(iterator, iterator->start_level);
1503}
1504
1505static bool slot_rmap_walk_okay(struct slot_rmap_walk_iterator *iterator)
1506{
1507 return !!iterator->rmap;
1508}
1509
1510static void slot_rmap_walk_next(struct slot_rmap_walk_iterator *iterator)
1511{
1512 if (++iterator->rmap <= iterator->end_rmap) {
1513 iterator->gfn += (1UL << KVM_HPAGE_GFN_SHIFT(iterator->level));
1514 return;
1515 }
1516
1517 if (++iterator->level > iterator->end_level) {
1518 iterator->rmap = NULL;
1519 return;
1520 }
1521
1522 rmap_walk_init_level(iterator, iterator->level);
1523}
1524
1525#define for_each_slot_rmap_range(_slot_, _start_level_, _end_level_, \
1526 _start_gfn, _end_gfn, _iter_) \
1527 for (slot_rmap_walk_init(_iter_, _slot_, _start_level_, \
1528 _end_level_, _start_gfn, _end_gfn); \
1529 slot_rmap_walk_okay(_iter_); \
1530 slot_rmap_walk_next(_iter_))
1531
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001532static int kvm_handle_hva_range(struct kvm *kvm,
1533 unsigned long start,
1534 unsigned long end,
1535 unsigned long data,
1536 int (*handler)(struct kvm *kvm,
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001537 struct kvm_rmap_head *rmap_head,
Takuya Yoshikawa048212d2012-07-02 17:57:59 +09001538 struct kvm_memory_slot *slot,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001539 gfn_t gfn,
1540 int level,
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001541 unsigned long data))
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001542{
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001543 struct kvm_memslots *slots;
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +08001544 struct kvm_memory_slot *memslot;
Xiao Guangrong6ce1f4e2015-05-13 14:42:22 +08001545 struct slot_rmap_walk_iterator iterator;
1546 int ret = 0;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02001547 int i;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001548
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02001549 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
1550 slots = __kvm_memslots(kvm, i);
1551 kvm_for_each_memslot(memslot, slots) {
1552 unsigned long hva_start, hva_end;
1553 gfn_t gfn_start, gfn_end;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001554
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02001555 hva_start = max(start, memslot->userspace_addr);
1556 hva_end = min(end, memslot->userspace_addr +
1557 (memslot->npages << PAGE_SHIFT));
1558 if (hva_start >= hva_end)
1559 continue;
1560 /*
1561 * {gfn(page) | page intersects with [hva_start, hva_end)} =
1562 * {gfn_start, gfn_start+1, ..., gfn_end-1}.
1563 */
1564 gfn_start = hva_to_gfn_memslot(hva_start, memslot);
1565 gfn_end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, memslot);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001566
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02001567 for_each_slot_rmap_range(memslot, PT_PAGE_TABLE_LEVEL,
1568 PT_MAX_HUGEPAGE_LEVEL,
1569 gfn_start, gfn_end - 1,
1570 &iterator)
1571 ret |= handler(kvm, iterator.rmap, memslot,
1572 iterator.gfn, iterator.level, data);
1573 }
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001574 }
1575
Takuya Yoshikawaf3953022012-07-02 17:58:48 +09001576 return ret;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001577}
1578
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001579static int kvm_handle_hva(struct kvm *kvm, unsigned long hva,
1580 unsigned long data,
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001581 int (*handler)(struct kvm *kvm,
1582 struct kvm_rmap_head *rmap_head,
Takuya Yoshikawa048212d2012-07-02 17:57:59 +09001583 struct kvm_memory_slot *slot,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001584 gfn_t gfn, int level,
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001585 unsigned long data))
1586{
1587 return kvm_handle_hva_range(kvm, hva, hva + 1, data, handler);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001588}
1589
1590int kvm_unmap_hva(struct kvm *kvm, unsigned long hva)
1591{
Izik Eidus3da0dd42009-09-23 21:47:18 +03001592 return kvm_handle_hva(kvm, hva, 0, kvm_unmap_rmapp);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001593}
1594
Takuya Yoshikawab3ae2092012-07-02 17:56:33 +09001595int kvm_unmap_hva_range(struct kvm *kvm, unsigned long start, unsigned long end)
1596{
1597 return kvm_handle_hva_range(kvm, start, end, 0, kvm_unmap_rmapp);
1598}
1599
Izik Eidus3da0dd42009-09-23 21:47:18 +03001600void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte)
1601{
Frederik Deweerdt8a8365c2009-10-09 11:42:56 +00001602 kvm_handle_hva(kvm, hva, (unsigned long)&pte, kvm_set_pte_rmapp);
Izik Eidus3da0dd42009-09-23 21:47:18 +03001603}
1604
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001605static int kvm_age_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001606 struct kvm_memory_slot *slot, gfn_t gfn, int level,
1607 unsigned long data)
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001608{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001609 u64 *sptep;
Michael S. Tsirkin79f702a2012-06-03 11:34:08 +03001610 struct rmap_iterator uninitialized_var(iter);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001611 int young = 0;
1612
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -07001613 BUG_ON(!shadow_accessed_mask);
Sheng Yang534e38b2008-09-08 15:12:30 +08001614
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001615 for_each_rmap_spte(rmap_head, &iter, sptep) {
Xudong Hao3f6d8c82012-05-22 11:23:15 +08001616 if (*sptep & shadow_accessed_mask) {
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001617 young = 1;
Xudong Hao3f6d8c82012-05-22 11:23:15 +08001618 clear_bit((ffs(shadow_accessed_mask) - 1),
1619 (unsigned long *)sptep);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001620 }
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001621 }
Xiao Guangrong0d536792015-05-13 14:42:20 +08001622
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001623 trace_kvm_age_page(gfn, level, slot, young);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001624 return young;
1625}
1626
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001627static int kvm_test_age_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001628 struct kvm_memory_slot *slot, gfn_t gfn,
1629 int level, unsigned long data)
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001630{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001631 u64 *sptep;
1632 struct rmap_iterator iter;
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001633
1634 /*
1635 * If there's no access bit in the secondary pte set by the
1636 * hardware it's up to gup-fast/gup to set the access bit in
1637 * the primary pte or in the page structure.
1638 */
1639 if (!shadow_accessed_mask)
1640 goto out;
1641
Junaid Shahid83ef6c82016-12-06 16:46:13 -08001642 for_each_rmap_spte(rmap_head, &iter, sptep)
1643 if (is_accessed_spte(*sptep))
1644 return 1;
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001645out:
Junaid Shahid83ef6c82016-12-06 16:46:13 -08001646 return 0;
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001647}
1648
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001649#define RMAP_RECYCLE_THRESHOLD 1000
1650
Joerg Roedel852e3c12009-07-27 16:30:44 +02001651static void rmap_recycle(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn)
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001652{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001653 struct kvm_rmap_head *rmap_head;
Joerg Roedel852e3c12009-07-27 16:30:44 +02001654 struct kvm_mmu_page *sp;
1655
1656 sp = page_header(__pa(spte));
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001657
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001658 rmap_head = gfn_to_rmap(vcpu->kvm, gfn, sp);
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001659
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001660 kvm_unmap_rmapp(vcpu->kvm, rmap_head, NULL, gfn, sp->role.level, 0);
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001661 kvm_flush_remote_tlbs(vcpu->kvm);
1662}
1663
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -07001664int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end)
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001665{
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -07001666 /*
1667 * In case of absence of EPT Access and Dirty Bits supports,
1668 * emulate the accessed bit for EPT, by checking if this page has
1669 * an EPT mapping, and clearing it if it does. On the next access,
1670 * a new EPT mapping will be established.
1671 * This has some overhead, but not as much as the cost of swapping
1672 * out actively used pages or breaking up actively used hugepages.
1673 */
Peter Feiner66d73e12016-09-26 10:45:34 -07001674 if (!shadow_accessed_mask)
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -07001675 return kvm_handle_hva_range(kvm, start, end, 0,
1676 kvm_unmap_rmapp);
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -07001677
1678 return kvm_handle_hva_range(kvm, start, end, 0, kvm_age_rmapp);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001679}
1680
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001681int kvm_test_age_hva(struct kvm *kvm, unsigned long hva)
1682{
1683 return kvm_handle_hva(kvm, hva, 0, kvm_test_age_rmapp);
1684}
1685
Yaozu Dongd6c69ee2007-04-25 14:17:25 +08001686#ifdef MMU_DEBUG
Avi Kivity47ad8e62007-05-06 15:50:58 +03001687static int is_empty_shadow_page(u64 *spt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001688{
Avi Kivity139bdb22007-01-05 16:36:50 -08001689 u64 *pos;
1690 u64 *end;
1691
Avi Kivity47ad8e62007-05-06 15:50:58 +03001692 for (pos = spt, end = pos + PAGE_SIZE / sizeof(u64); pos != end; pos++)
Avi Kivity3c915512008-05-20 16:21:13 +03001693 if (is_shadow_present_pte(*pos)) {
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001694 printk(KERN_ERR "%s: %p %llx\n", __func__,
Avi Kivity139bdb22007-01-05 16:36:50 -08001695 pos, *pos);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001696 return 0;
Avi Kivity139bdb22007-01-05 16:36:50 -08001697 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001698 return 1;
1699}
Yaozu Dongd6c69ee2007-04-25 14:17:25 +08001700#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001701
Dave Hansen45221ab2010-08-19 18:11:37 -07001702/*
1703 * This value is the sum of all of the kvm instances's
1704 * kvm->arch.n_used_mmu_pages values. We need a global,
1705 * aggregate version in order to make the slab shrinker
1706 * faster
1707 */
1708static inline void kvm_mod_used_mmu_pages(struct kvm *kvm, int nr)
1709{
1710 kvm->arch.n_used_mmu_pages += nr;
1711 percpu_counter_add(&kvm_total_used_mmu_pages, nr);
1712}
1713
Gleb Natapov834be0d2013-01-30 16:45:05 +02001714static void kvm_mmu_free_page(struct kvm_mmu_page *sp)
Avi Kivity260746c2007-01-05 16:36:49 -08001715{
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02001716 MMU_WARN_ON(!is_empty_shadow_page(sp->spt));
Xiao Guangrong77758342010-06-04 21:53:54 +08001717 hlist_del(&sp->hash_link);
Xiao Guangrongbd4c86e2011-07-12 03:27:14 +08001718 list_del(&sp->link);
1719 free_page((unsigned long)sp->spt);
Gleb Natapov834be0d2013-01-30 16:45:05 +02001720 if (!sp->role.direct)
1721 free_page((unsigned long)sp->gfns);
Xiao Guangronge8ad9a72010-05-13 10:06:02 +08001722 kmem_cache_free(mmu_page_header_cache, sp);
Avi Kivity260746c2007-01-05 16:36:49 -08001723}
1724
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001725static unsigned kvm_page_table_hashfn(gfn_t gfn)
1726{
David Matlack114df302016-12-19 13:58:25 -08001727 return hash_64(gfn, KVM_MMU_HASH_SHIFT);
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001728}
1729
Xiao Guangrong67052b32011-05-15 23:27:08 +08001730static void mmu_page_add_parent_pte(struct kvm_vcpu *vcpu,
1731 struct kvm_mmu_page *sp, u64 *parent_pte)
1732{
1733 if (!parent_pte)
1734 return;
1735
1736 pte_list_add(vcpu, parent_pte, &sp->parent_ptes);
1737}
1738
1739static void mmu_page_remove_parent_pte(struct kvm_mmu_page *sp,
1740 u64 *parent_pte)
1741{
1742 pte_list_remove(parent_pte, &sp->parent_ptes);
1743}
1744
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08001745static void drop_parent_pte(struct kvm_mmu_page *sp,
1746 u64 *parent_pte)
1747{
1748 mmu_page_remove_parent_pte(sp, parent_pte);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +08001749 mmu_spte_clear_no_track(parent_pte);
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08001750}
1751
Takuya Yoshikawa47005792015-11-20 17:46:29 +09001752static struct kvm_mmu_page *kvm_mmu_alloc_page(struct kvm_vcpu *vcpu, int direct)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001753{
Avi Kivity4db35312007-11-21 15:28:32 +02001754 struct kvm_mmu_page *sp;
Takuya Yoshikawa7ddca7e2013-03-21 19:33:43 +09001755
Takuya Yoshikawa80feb892012-05-29 23:54:26 +09001756 sp = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_header_cache);
1757 sp->spt = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache);
Lai Jiangshan2032a932010-05-26 16:49:59 +08001758 if (!direct)
Takuya Yoshikawa80feb892012-05-29 23:54:26 +09001759 sp->gfns = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache);
Avi Kivity4db35312007-11-21 15:28:32 +02001760 set_page_private(virt_to_page(sp->spt), (unsigned long)sp);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08001761
1762 /*
1763 * The active_mmu_pages list is the FIFO list, do not move the
1764 * page until it is zapped. kvm_zap_obsolete_pages depends on
1765 * this feature. See the comments in kvm_zap_obsolete_pages().
1766 */
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001767 list_add(&sp->link, &vcpu->kvm->arch.active_mmu_pages);
Dave Hansen45221ab2010-08-19 18:11:37 -07001768 kvm_mod_used_mmu_pages(vcpu->kvm, +1);
Avi Kivity4db35312007-11-21 15:28:32 +02001769 return sp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001770}
1771
Xiao Guangrong67052b32011-05-15 23:27:08 +08001772static void mark_unsync(u64 *spte);
Xiao Guangrong6b184932010-04-16 21:29:17 +08001773static void kvm_mmu_mark_parents_unsync(struct kvm_mmu_page *sp)
Marcelo Tosatti0074ff62008-09-23 13:18:40 -03001774{
Takuya Yoshikawa74c4e632015-11-26 21:15:38 +09001775 u64 *sptep;
1776 struct rmap_iterator iter;
1777
1778 for_each_rmap_spte(&sp->parent_ptes, &iter, sptep) {
1779 mark_unsync(sptep);
1780 }
Xiao Guangrong1047df12010-06-11 21:35:15 +08001781}
1782
Xiao Guangrong67052b32011-05-15 23:27:08 +08001783static void mark_unsync(u64 *spte)
Xiao Guangrong1047df12010-06-11 21:35:15 +08001784{
Xiao Guangrong67052b32011-05-15 23:27:08 +08001785 struct kvm_mmu_page *sp;
Xiao Guangrong1047df12010-06-11 21:35:15 +08001786 unsigned int index;
1787
Xiao Guangrong67052b32011-05-15 23:27:08 +08001788 sp = page_header(__pa(spte));
Xiao Guangrong1047df12010-06-11 21:35:15 +08001789 index = spte - sp->spt;
1790 if (__test_and_set_bit(index, sp->unsync_child_bitmap))
1791 return;
1792 if (sp->unsync_children++)
1793 return;
1794 kvm_mmu_mark_parents_unsync(sp);
Marcelo Tosatti0074ff62008-09-23 13:18:40 -03001795}
1796
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03001797static int nonpaging_sync_page(struct kvm_vcpu *vcpu,
Xiao Guangronga4a8e6f2010-11-19 17:04:03 +08001798 struct kvm_mmu_page *sp)
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03001799{
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01001800 return 0;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03001801}
1802
Marcelo Tosattia7052892008-09-23 13:18:35 -03001803static void nonpaging_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
1804{
1805}
1806
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08001807static void nonpaging_update_pte(struct kvm_vcpu *vcpu,
1808 struct kvm_mmu_page *sp, u64 *spte,
Xiao Guangrong7c562522011-03-28 10:29:27 +08001809 const void *pte)
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08001810{
1811 WARN_ON(1);
1812}
1813
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001814#define KVM_PAGE_ARRAY_NR 16
1815
1816struct kvm_mmu_pages {
1817 struct mmu_page_and_offset {
1818 struct kvm_mmu_page *sp;
1819 unsigned int idx;
1820 } page[KVM_PAGE_ARRAY_NR];
1821 unsigned int nr;
1822};
1823
Hannes Edercded19f2009-02-21 02:19:13 +01001824static int mmu_pages_add(struct kvm_mmu_pages *pvec, struct kvm_mmu_page *sp,
1825 int idx)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001826{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001827 int i;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001828
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001829 if (sp->unsync)
1830 for (i=0; i < pvec->nr; i++)
1831 if (pvec->page[i].sp == sp)
1832 return 0;
1833
1834 pvec->page[pvec->nr].sp = sp;
1835 pvec->page[pvec->nr].idx = idx;
1836 pvec->nr++;
1837 return (pvec->nr == KVM_PAGE_ARRAY_NR);
1838}
1839
Takuya Yoshikawafd951452015-11-20 17:43:13 +09001840static inline void clear_unsync_child_bit(struct kvm_mmu_page *sp, int idx)
1841{
1842 --sp->unsync_children;
1843 WARN_ON((int)sp->unsync_children < 0);
1844 __clear_bit(idx, sp->unsync_child_bitmap);
1845}
1846
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001847static int __mmu_unsync_walk(struct kvm_mmu_page *sp,
1848 struct kvm_mmu_pages *pvec)
1849{
1850 int i, ret, nr_unsync_leaf = 0;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001851
Takuya Yoshikawa37178b82011-11-29 14:02:45 +09001852 for_each_set_bit(i, sp->unsync_child_bitmap, 512) {
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001853 struct kvm_mmu_page *child;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001854 u64 ent = sp->spt[i];
1855
Takuya Yoshikawafd951452015-11-20 17:43:13 +09001856 if (!is_shadow_present_pte(ent) || is_large_pte(ent)) {
1857 clear_unsync_child_bit(sp, i);
1858 continue;
1859 }
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001860
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001861 child = page_header(ent & PT64_BASE_ADDR_MASK);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001862
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001863 if (child->unsync_children) {
1864 if (mmu_pages_add(pvec, child, i))
1865 return -ENOSPC;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001866
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001867 ret = __mmu_unsync_walk(child, pvec);
Takuya Yoshikawafd951452015-11-20 17:43:13 +09001868 if (!ret) {
1869 clear_unsync_child_bit(sp, i);
1870 continue;
1871 } else if (ret > 0) {
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001872 nr_unsync_leaf += ret;
Takuya Yoshikawafd951452015-11-20 17:43:13 +09001873 } else
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001874 return ret;
1875 } else if (child->unsync) {
1876 nr_unsync_leaf++;
1877 if (mmu_pages_add(pvec, child, i))
1878 return -ENOSPC;
1879 } else
Takuya Yoshikawafd951452015-11-20 17:43:13 +09001880 clear_unsync_child_bit(sp, i);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001881 }
1882
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001883 return nr_unsync_leaf;
1884}
1885
Xiao Guangronge23d3fe2016-02-24 09:46:06 +01001886#define INVALID_INDEX (-1)
1887
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001888static int mmu_unsync_walk(struct kvm_mmu_page *sp,
1889 struct kvm_mmu_pages *pvec)
1890{
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01001891 pvec->nr = 0;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001892 if (!sp->unsync_children)
1893 return 0;
1894
Xiao Guangronge23d3fe2016-02-24 09:46:06 +01001895 mmu_pages_add(pvec, sp, INVALID_INDEX);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001896 return __mmu_unsync_walk(sp, pvec);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001897}
1898
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001899static void kvm_unlink_unsync_page(struct kvm *kvm, struct kvm_mmu_page *sp)
1900{
1901 WARN_ON(!sp->unsync);
Xiao Guangrong5e1b3dd2010-04-28 11:55:06 +08001902 trace_kvm_mmu_sync_page(sp);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001903 sp->unsync = 0;
1904 --kvm->stat.mmu_unsync;
1905}
1906
Xiao Guangrong77758342010-06-04 21:53:54 +08001907static int kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp,
1908 struct list_head *invalid_list);
1909static void kvm_mmu_commit_zap_page(struct kvm *kvm,
1910 struct list_head *invalid_list);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001911
Xiao Guangrongf34d2512013-05-31 08:36:28 +08001912/*
1913 * NOTE: we should pay more attention on the zapped-obsolete page
1914 * (is_obsolete_sp(sp) && sp->role.invalid) when you do hash list walk
1915 * since it has been deleted from active_mmu_pages but still can be found
1916 * at hast list.
1917 *
David Matlackf3414bc2016-12-20 15:25:57 -08001918 * for_each_valid_sp() has skipped that kind of pages.
Xiao Guangrongf34d2512013-05-31 08:36:28 +08001919 */
David Matlackf3414bc2016-12-20 15:25:57 -08001920#define for_each_valid_sp(_kvm, _sp, _gfn) \
Takuya Yoshikawa1044b032013-03-06 16:05:07 +09001921 hlist_for_each_entry(_sp, \
1922 &(_kvm)->arch.mmu_page_hash[kvm_page_table_hashfn(_gfn)], hash_link) \
David Matlackf3414bc2016-12-20 15:25:57 -08001923 if (is_obsolete_sp((_kvm), (_sp)) || (_sp)->role.invalid) { \
1924 } else
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08001925
Takuya Yoshikawa1044b032013-03-06 16:05:07 +09001926#define for_each_gfn_indirect_valid_sp(_kvm, _sp, _gfn) \
David Matlackf3414bc2016-12-20 15:25:57 -08001927 for_each_valid_sp(_kvm, _sp, _gfn) \
1928 if ((_sp)->gfn != (_gfn) || (_sp)->role.direct) {} else
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08001929
Xiao Guangrongf918b442010-06-11 21:30:36 +08001930/* @sp->gfn should be write-protected at the call site */
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01001931static bool __kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
1932 struct list_head *invalid_list)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001933{
Avi Kivity5b7e0102010-04-14 19:20:03 +03001934 if (sp->role.cr4_pae != !!is_pae(vcpu)) {
Xiao Guangrongd98ba052010-06-04 21:55:29 +08001935 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list);
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01001936 return false;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001937 }
1938
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01001939 if (vcpu->arch.mmu.sync_page(vcpu, sp) == 0) {
Xiao Guangrongd98ba052010-06-04 21:55:29 +08001940 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list);
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01001941 return false;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001942 }
1943
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01001944 return true;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001945}
1946
Paolo Bonzini35a70512016-02-24 10:03:27 +01001947static void kvm_mmu_flush_or_zap(struct kvm_vcpu *vcpu,
1948 struct list_head *invalid_list,
1949 bool remote_flush, bool local_flush)
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08001950{
Paolo Bonzini35a70512016-02-24 10:03:27 +01001951 if (!list_empty(invalid_list)) {
1952 kvm_mmu_commit_zap_page(vcpu->kvm, invalid_list);
1953 return;
1954 }
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08001955
Paolo Bonzini35a70512016-02-24 10:03:27 +01001956 if (remote_flush)
1957 kvm_flush_remote_tlbs(vcpu->kvm);
1958 else if (local_flush)
1959 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08001960}
1961
Xiao Guangronge37fa782011-11-30 17:43:24 +08001962#ifdef CONFIG_KVM_MMU_AUDIT
1963#include "mmu_audit.c"
1964#else
1965static void kvm_mmu_audit(struct kvm_vcpu *vcpu, int point) { }
1966static void mmu_audit_disable(void) { }
1967#endif
1968
Xiao Guangrong46971a22016-03-25 21:19:38 +08001969static bool is_obsolete_sp(struct kvm *kvm, struct kvm_mmu_page *sp)
1970{
1971 return unlikely(sp->mmu_valid_gen != kvm->arch.mmu_valid_gen);
1972}
1973
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01001974static bool kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
Xiao Guangrongd98ba052010-06-04 21:55:29 +08001975 struct list_head *invalid_list)
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08001976{
Paolo Bonzini9a43c5d2016-02-24 10:28:01 +01001977 kvm_unlink_unsync_page(vcpu->kvm, sp);
1978 return __kvm_sync_page(vcpu, sp, invalid_list);
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08001979}
1980
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001981/* @gfn should be write-protected at the call site */
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01001982static bool kvm_sync_pages(struct kvm_vcpu *vcpu, gfn_t gfn,
1983 struct list_head *invalid_list)
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001984{
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001985 struct kvm_mmu_page *s;
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01001986 bool ret = false;
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001987
Sasha Levinb67bfe02013-02-27 17:06:00 -08001988 for_each_gfn_indirect_valid_sp(vcpu->kvm, s, gfn) {
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08001989 if (!s->unsync)
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001990 continue;
1991
1992 WARN_ON(s->role.level != PT_PAGE_TABLE_LEVEL);
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01001993 ret |= kvm_sync_page(vcpu, s, invalid_list);
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001994 }
1995
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01001996 return ret;
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001997}
1998
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001999struct mmu_page_path {
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002000 struct kvm_mmu_page *parent[PT64_ROOT_LEVEL];
2001 unsigned int idx[PT64_ROOT_LEVEL];
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002002};
2003
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002004#define for_each_sp(pvec, sp, parents, i) \
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002005 for (i = mmu_pages_first(&pvec, &parents); \
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002006 i < pvec.nr && ({ sp = pvec.page[i].sp; 1;}); \
2007 i = mmu_pages_next(&pvec, &parents, i))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002008
Hannes Edercded19f2009-02-21 02:19:13 +01002009static int mmu_pages_next(struct kvm_mmu_pages *pvec,
2010 struct mmu_page_path *parents,
2011 int i)
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002012{
2013 int n;
2014
2015 for (n = i+1; n < pvec->nr; n++) {
2016 struct kvm_mmu_page *sp = pvec->page[n].sp;
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002017 unsigned idx = pvec->page[n].idx;
2018 int level = sp->role.level;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002019
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002020 parents->idx[level-1] = idx;
2021 if (level == PT_PAGE_TABLE_LEVEL)
2022 break;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002023
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002024 parents->parent[level-2] = sp;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002025 }
2026
2027 return n;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002028}
2029
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002030static int mmu_pages_first(struct kvm_mmu_pages *pvec,
2031 struct mmu_page_path *parents)
2032{
2033 struct kvm_mmu_page *sp;
2034 int level;
2035
2036 if (pvec->nr == 0)
2037 return 0;
2038
Xiao Guangronge23d3fe2016-02-24 09:46:06 +01002039 WARN_ON(pvec->page[0].idx != INVALID_INDEX);
2040
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002041 sp = pvec->page[0].sp;
2042 level = sp->role.level;
2043 WARN_ON(level == PT_PAGE_TABLE_LEVEL);
2044
2045 parents->parent[level-2] = sp;
2046
2047 /* Also set up a sentinel. Further entries in pvec are all
2048 * children of sp, so this element is never overwritten.
2049 */
2050 parents->parent[level-1] = NULL;
2051 return mmu_pages_next(pvec, parents, 0);
2052}
2053
Hannes Edercded19f2009-02-21 02:19:13 +01002054static void mmu_pages_clear_parents(struct mmu_page_path *parents)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002055{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002056 struct kvm_mmu_page *sp;
2057 unsigned int level = 0;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002058
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002059 do {
2060 unsigned int idx = parents->idx[level];
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002061 sp = parents->parent[level];
2062 if (!sp)
2063 return;
2064
Xiao Guangronge23d3fe2016-02-24 09:46:06 +01002065 WARN_ON(idx == INVALID_INDEX);
Takuya Yoshikawafd951452015-11-20 17:43:13 +09002066 clear_unsync_child_bit(sp, idx);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002067 level++;
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002068 } while (!sp->unsync_children);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002069}
2070
2071static void mmu_sync_children(struct kvm_vcpu *vcpu,
2072 struct kvm_mmu_page *parent)
2073{
2074 int i;
2075 struct kvm_mmu_page *sp;
2076 struct mmu_page_path parents;
2077 struct kvm_mmu_pages pages;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002078 LIST_HEAD(invalid_list);
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002079 bool flush = false;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002080
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002081 while (mmu_unsync_walk(parent, &pages)) {
Xiao Guangrong2f845692012-06-20 15:56:53 +08002082 bool protected = false;
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002083
2084 for_each_sp(pages, sp, parents, i)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002085 protected |= rmap_write_protect(vcpu, sp->gfn);
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002086
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002087 if (protected) {
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002088 kvm_flush_remote_tlbs(vcpu->kvm);
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002089 flush = false;
2090 }
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002091
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002092 for_each_sp(pages, sp, parents, i) {
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01002093 flush |= kvm_sync_page(vcpu, sp, &invalid_list);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002094 mmu_pages_clear_parents(&parents);
2095 }
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002096 if (need_resched() || spin_needbreak(&vcpu->kvm->mmu_lock)) {
2097 kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush);
2098 cond_resched_lock(&vcpu->kvm->mmu_lock);
2099 flush = false;
2100 }
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002101 }
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002102
2103 kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002104}
2105
Xiao Guangronga30f47c2011-09-22 16:58:36 +08002106static void __clear_sp_write_flooding_count(struct kvm_mmu_page *sp)
2107{
Xiao Guangronge5691a82016-02-24 17:51:12 +08002108 atomic_set(&sp->write_flooding_count, 0);
Xiao Guangronga30f47c2011-09-22 16:58:36 +08002109}
2110
2111static void clear_sp_write_flooding_count(u64 *spte)
2112{
2113 struct kvm_mmu_page *sp = page_header(__pa(spte));
2114
2115 __clear_sp_write_flooding_count(sp);
2116}
2117
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002118static struct kvm_mmu_page *kvm_mmu_get_page(struct kvm_vcpu *vcpu,
2119 gfn_t gfn,
2120 gva_t gaddr,
2121 unsigned level,
Avi Kivityf6e2c02b2009-01-11 13:02:10 +02002122 int direct,
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09002123 unsigned access)
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002124{
2125 union kvm_mmu_page_role role;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002126 unsigned quadrant;
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002127 struct kvm_mmu_page *sp;
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002128 bool need_sync = false;
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002129 bool flush = false;
David Matlackf3414bc2016-12-20 15:25:57 -08002130 int collisions = 0;
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002131 LIST_HEAD(invalid_list);
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002132
Avi Kivitya770f6f2008-12-21 19:20:09 +02002133 role = vcpu->arch.mmu.base_role;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002134 role.level = level;
Avi Kivityf6e2c02b2009-01-11 13:02:10 +02002135 role.direct = direct;
Avi Kivity84b0c8c2010-03-14 10:16:40 +02002136 if (role.direct)
Avi Kivity5b7e0102010-04-14 19:20:03 +03002137 role.cr4_pae = 0;
Avi Kivity41074d02007-12-09 17:00:02 +02002138 role.access = access;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02002139 if (!vcpu->arch.mmu.direct_map
2140 && vcpu->arch.mmu.root_level <= PT32_ROOT_LEVEL) {
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002141 quadrant = gaddr >> (PAGE_SHIFT + (PT64_PT_BITS * level));
2142 quadrant &= (1 << ((PT32_PT_BITS - PT64_PT_BITS) * level)) - 1;
2143 role.quadrant = quadrant;
2144 }
David Matlackf3414bc2016-12-20 15:25:57 -08002145 for_each_valid_sp(vcpu->kvm, sp, gfn) {
2146 if (sp->gfn != gfn) {
2147 collisions++;
2148 continue;
2149 }
2150
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002151 if (!need_sync && sp->unsync)
2152 need_sync = true;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002153
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002154 if (sp->role.word != role.word)
2155 continue;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002156
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002157 if (sp->unsync) {
2158 /* The page is good, but __kvm_sync_page might still end
2159 * up zapping it. If so, break in order to rebuild it.
2160 */
2161 if (!__kvm_sync_page(vcpu, sp, &invalid_list))
2162 break;
2163
2164 WARN_ON(!list_empty(&invalid_list));
2165 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
2166 }
Xiao Guangronge02aa902010-05-15 18:52:34 +08002167
Takuya Yoshikawa98bba232015-11-26 21:14:34 +09002168 if (sp->unsync_children)
Avi Kivitya8eeb042010-05-10 12:34:53 +03002169 kvm_make_request(KVM_REQ_MMU_SYNC, vcpu);
Xiao Guangronge02aa902010-05-15 18:52:34 +08002170
Xiao Guangronga30f47c2011-09-22 16:58:36 +08002171 __clear_sp_write_flooding_count(sp);
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002172 trace_kvm_mmu_get_page(sp, false);
David Matlackf3414bc2016-12-20 15:25:57 -08002173 goto out;
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002174 }
Takuya Yoshikawa47005792015-11-20 17:46:29 +09002175
Avi Kivitydfc5aa02007-12-18 19:47:18 +02002176 ++vcpu->kvm->stat.mmu_cache_miss;
Takuya Yoshikawa47005792015-11-20 17:46:29 +09002177
2178 sp = kvm_mmu_alloc_page(vcpu, direct);
2179
Avi Kivity4db35312007-11-21 15:28:32 +02002180 sp->gfn = gfn;
2181 sp->role = role;
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002182 hlist_add_head(&sp->hash_link,
2183 &vcpu->kvm->arch.mmu_page_hash[kvm_page_table_hashfn(gfn)]);
Avi Kivityf6e2c02b2009-01-11 13:02:10 +02002184 if (!direct) {
Xiao Guangrong56ca57f2016-02-24 17:51:14 +08002185 /*
2186 * we should do write protection before syncing pages
2187 * otherwise the content of the synced shadow page may
2188 * be inconsistent with guest page table.
2189 */
Paolo Bonzini3ed1a472015-05-19 16:29:22 +02002190 account_shadowed(vcpu->kvm, sp);
Xiao Guangrong56ca57f2016-02-24 17:51:14 +08002191 if (level == PT_PAGE_TABLE_LEVEL &&
2192 rmap_write_protect(vcpu, gfn))
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002193 kvm_flush_remote_tlbs(vcpu->kvm);
Xiao Guangrong56ca57f2016-02-24 17:51:14 +08002194
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002195 if (level > PT_PAGE_TABLE_LEVEL && need_sync)
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002196 flush |= kvm_sync_pages(vcpu, gfn, &invalid_list);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002197 }
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08002198 sp->mmu_valid_gen = vcpu->kvm->arch.mmu_valid_gen;
Takuya Yoshikawa77492662015-12-18 18:54:49 +09002199 clear_page(sp->spt);
Avi Kivityf691fe12009-07-06 15:58:14 +03002200 trace_kvm_mmu_get_page(sp, true);
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002201
2202 kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush);
David Matlackf3414bc2016-12-20 15:25:57 -08002203out:
2204 if (collisions > vcpu->kvm->stat.max_mmu_page_hash_collisions)
2205 vcpu->kvm->stat.max_mmu_page_hash_collisions = collisions;
Avi Kivity4db35312007-11-21 15:28:32 +02002206 return sp;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002207}
2208
Avi Kivity2d111232008-12-25 14:39:47 +02002209static void shadow_walk_init(struct kvm_shadow_walk_iterator *iterator,
2210 struct kvm_vcpu *vcpu, u64 addr)
2211{
2212 iterator->addr = addr;
2213 iterator->shadow_addr = vcpu->arch.mmu.root_hpa;
2214 iterator->level = vcpu->arch.mmu.shadow_root_level;
Joerg Roedel81407ca2010-09-10 17:31:00 +02002215
2216 if (iterator->level == PT64_ROOT_LEVEL &&
2217 vcpu->arch.mmu.root_level < PT64_ROOT_LEVEL &&
2218 !vcpu->arch.mmu.direct_map)
2219 --iterator->level;
2220
Avi Kivity2d111232008-12-25 14:39:47 +02002221 if (iterator->level == PT32E_ROOT_LEVEL) {
2222 iterator->shadow_addr
2223 = vcpu->arch.mmu.pae_root[(addr >> 30) & 3];
2224 iterator->shadow_addr &= PT64_BASE_ADDR_MASK;
2225 --iterator->level;
2226 if (!iterator->shadow_addr)
2227 iterator->level = 0;
2228 }
2229}
2230
2231static bool shadow_walk_okay(struct kvm_shadow_walk_iterator *iterator)
2232{
2233 if (iterator->level < PT_PAGE_TABLE_LEVEL)
2234 return false;
Marcelo Tosatti4d889542009-06-11 12:07:41 -03002235
Avi Kivity2d111232008-12-25 14:39:47 +02002236 iterator->index = SHADOW_PT_INDEX(iterator->addr, iterator->level);
2237 iterator->sptep = ((u64 *)__va(iterator->shadow_addr)) + iterator->index;
2238 return true;
2239}
2240
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002241static void __shadow_walk_next(struct kvm_shadow_walk_iterator *iterator,
2242 u64 spte)
Avi Kivity2d111232008-12-25 14:39:47 +02002243{
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002244 if (is_last_spte(spte, iterator->level)) {
Xiao Guangrong052331b2011-07-12 03:21:17 +08002245 iterator->level = 0;
2246 return;
2247 }
2248
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002249 iterator->shadow_addr = spte & PT64_BASE_ADDR_MASK;
Avi Kivity2d111232008-12-25 14:39:47 +02002250 --iterator->level;
2251}
2252
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002253static void shadow_walk_next(struct kvm_shadow_walk_iterator *iterator)
2254{
2255 return __shadow_walk_next(iterator, *iterator->sptep);
2256}
2257
Takuya Yoshikawa98bba232015-11-26 21:14:34 +09002258static void link_shadow_page(struct kvm_vcpu *vcpu, u64 *sptep,
2259 struct kvm_mmu_page *sp)
Avi Kivity32ef26a2010-07-13 14:27:04 +03002260{
2261 u64 spte;
2262
Bandan Dasffb128c2016-07-12 18:18:49 -04002263 BUILD_BUG_ON(VMX_EPT_WRITABLE_MASK != PT_WRITABLE_MASK);
Yang Zhang7a1638c2013-08-05 11:07:13 +03002264
Bandan Dasffb128c2016-07-12 18:18:49 -04002265 spte = __pa(sp->spt) | shadow_present_mask | PT_WRITABLE_MASK |
Paolo Bonzini0e3d0642015-11-13 11:52:45 +01002266 shadow_user_mask | shadow_x_mask | shadow_accessed_mask;
Xiao Guangrong24db2732013-02-05 15:28:02 +08002267
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +08002268 mmu_spte_set(sptep, spte);
Takuya Yoshikawa98bba232015-11-26 21:14:34 +09002269
2270 mmu_page_add_parent_pte(vcpu, sp, sptep);
2271
2272 if (sp->unsync_children || sp->unsync)
2273 mark_unsync(sptep);
Avi Kivity32ef26a2010-07-13 14:27:04 +03002274}
2275
Avi Kivitya357bd22010-07-13 14:27:07 +03002276static void validate_direct_spte(struct kvm_vcpu *vcpu, u64 *sptep,
2277 unsigned direct_access)
2278{
2279 if (is_shadow_present_pte(*sptep) && !is_large_pte(*sptep)) {
2280 struct kvm_mmu_page *child;
2281
2282 /*
2283 * For the direct sp, if the guest pte's dirty bit
2284 * changed form clean to dirty, it will corrupt the
2285 * sp's access: allow writable in the read-only sp,
2286 * so we should update the spte at this point to get
2287 * a new sp with the correct access.
2288 */
2289 child = page_header(*sptep & PT64_BASE_ADDR_MASK);
2290 if (child->role.access == direct_access)
2291 return;
2292
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08002293 drop_parent_pte(child, sptep);
Avi Kivitya357bd22010-07-13 14:27:07 +03002294 kvm_flush_remote_tlbs(vcpu->kvm);
2295 }
2296}
2297
Xiao Guangrong505aef82011-09-22 16:56:06 +08002298static bool mmu_page_zap_pte(struct kvm *kvm, struct kvm_mmu_page *sp,
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002299 u64 *spte)
2300{
2301 u64 pte;
2302 struct kvm_mmu_page *child;
2303
2304 pte = *spte;
2305 if (is_shadow_present_pte(pte)) {
Xiao Guangrong505aef82011-09-22 16:56:06 +08002306 if (is_last_spte(pte, sp->role.level)) {
Xiao Guangrongc3707952011-07-12 03:28:04 +08002307 drop_spte(kvm, spte);
Xiao Guangrong505aef82011-09-22 16:56:06 +08002308 if (is_large_pte(pte))
2309 --kvm->stat.lpages;
2310 } else {
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002311 child = page_header(pte & PT64_BASE_ADDR_MASK);
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08002312 drop_parent_pte(child, spte);
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002313 }
Xiao Guangrong505aef82011-09-22 16:56:06 +08002314 return true;
2315 }
2316
2317 if (is_mmio_spte(pte))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08002318 mmu_spte_clear_no_track(spte);
Xiao Guangrongc3707952011-07-12 03:28:04 +08002319
Xiao Guangrong505aef82011-09-22 16:56:06 +08002320 return false;
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002321}
2322
Avi Kivity90cb0522007-07-17 13:04:56 +03002323static void kvm_mmu_page_unlink_children(struct kvm *kvm,
Avi Kivity4db35312007-11-21 15:28:32 +02002324 struct kvm_mmu_page *sp)
Avi Kivitya4360362007-01-05 16:36:45 -08002325{
Avi Kivity697fe2e2007-01-05 16:36:46 -08002326 unsigned i;
Avi Kivity697fe2e2007-01-05 16:36:46 -08002327
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002328 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
2329 mmu_page_zap_pte(kvm, sp, sp->spt + i);
Avi Kivitya4360362007-01-05 16:36:45 -08002330}
2331
Avi Kivity31aa2b42008-07-11 17:59:46 +03002332static void kvm_mmu_unlink_parents(struct kvm *kvm, struct kvm_mmu_page *sp)
Avi Kivitya4360362007-01-05 16:36:45 -08002333{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09002334 u64 *sptep;
2335 struct rmap_iterator iter;
Avi Kivitya4360362007-01-05 16:36:45 -08002336
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09002337 while ((sptep = rmap_get_first(&sp->parent_ptes, &iter)))
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09002338 drop_parent_pte(sp, sptep);
Avi Kivity31aa2b42008-07-11 17:59:46 +03002339}
2340
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002341static int mmu_zap_unsync_children(struct kvm *kvm,
Xiao Guangrong77758342010-06-04 21:53:54 +08002342 struct kvm_mmu_page *parent,
2343 struct list_head *invalid_list)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002344{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002345 int i, zapped = 0;
2346 struct mmu_page_path parents;
2347 struct kvm_mmu_pages pages;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002348
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002349 if (parent->role.level == PT_PAGE_TABLE_LEVEL)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002350 return 0;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002351
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002352 while (mmu_unsync_walk(parent, &pages)) {
2353 struct kvm_mmu_page *sp;
2354
2355 for_each_sp(pages, sp, parents, i) {
Xiao Guangrong77758342010-06-04 21:53:54 +08002356 kvm_mmu_prepare_zap_page(kvm, sp, invalid_list);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002357 mmu_pages_clear_parents(&parents);
Xiao Guangrong77662e02010-04-16 16:34:42 +08002358 zapped++;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002359 }
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002360 }
2361
2362 return zapped;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002363}
2364
Xiao Guangrong77758342010-06-04 21:53:54 +08002365static int kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp,
2366 struct list_head *invalid_list)
Avi Kivity31aa2b42008-07-11 17:59:46 +03002367{
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002368 int ret;
Avi Kivityf691fe12009-07-06 15:58:14 +03002369
Xiao Guangrong77758342010-06-04 21:53:54 +08002370 trace_kvm_mmu_prepare_zap_page(sp);
Avi Kivity31aa2b42008-07-11 17:59:46 +03002371 ++kvm->stat.mmu_shadow_zapped;
Xiao Guangrong77758342010-06-04 21:53:54 +08002372 ret = mmu_zap_unsync_children(kvm, sp, invalid_list);
Avi Kivity4db35312007-11-21 15:28:32 +02002373 kvm_mmu_page_unlink_children(kvm, sp);
Avi Kivity31aa2b42008-07-11 17:59:46 +03002374 kvm_mmu_unlink_parents(kvm, sp);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08002375
Avi Kivityf6e2c02b2009-01-11 13:02:10 +02002376 if (!sp->role.invalid && !sp->role.direct)
Paolo Bonzini3ed1a472015-05-19 16:29:22 +02002377 unaccount_shadowed(kvm, sp);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08002378
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002379 if (sp->unsync)
2380 kvm_unlink_unsync_page(kvm, sp);
Avi Kivity4db35312007-11-21 15:28:32 +02002381 if (!sp->root_count) {
Gui Jianfeng54a4f022010-05-05 09:03:49 +08002382 /* Count self */
2383 ret++;
Xiao Guangrong77758342010-06-04 21:53:54 +08002384 list_move(&sp->link, invalid_list);
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08002385 kvm_mod_used_mmu_pages(kvm, -1);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05002386 } else {
Avi Kivity5b5c6a52008-07-11 18:07:26 +03002387 list_move(&sp->link, &kvm->arch.active_mmu_pages);
Gleb Natapov05988d72013-05-31 08:36:30 +08002388
2389 /*
2390 * The obsolete pages can not be used on any vcpus.
2391 * See the comments in kvm_mmu_invalidate_zap_all_pages().
2392 */
2393 if (!sp->role.invalid && !is_obsolete_sp(kvm, sp))
2394 kvm_reload_remote_mmus(kvm);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05002395 }
Xiao Guangrong77758342010-06-04 21:53:54 +08002396
2397 sp->role.invalid = 1;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002398 return ret;
Avi Kivitya4360362007-01-05 16:36:45 -08002399}
2400
Xiao Guangrong77758342010-06-04 21:53:54 +08002401static void kvm_mmu_commit_zap_page(struct kvm *kvm,
2402 struct list_head *invalid_list)
2403{
Takuya Yoshikawa945315b2013-03-06 16:05:52 +09002404 struct kvm_mmu_page *sp, *nsp;
Xiao Guangrong77758342010-06-04 21:53:54 +08002405
2406 if (list_empty(invalid_list))
2407 return;
2408
Avi Kivityc1427862012-05-14 15:44:06 +03002409 /*
Lan Tianyu9753f522016-03-13 11:10:24 +08002410 * We need to make sure everyone sees our modifications to
2411 * the page tables and see changes to vcpu->mode here. The barrier
2412 * in the kvm_flush_remote_tlbs() achieves this. This pairs
2413 * with vcpu_enter_guest and walk_shadow_page_lockless_begin/end.
2414 *
2415 * In addition, kvm_flush_remote_tlbs waits for all vcpus to exit
2416 * guest mode and/or lockless shadow page table walks.
Avi Kivityc1427862012-05-14 15:44:06 +03002417 */
Xiao Guangrong77758342010-06-04 21:53:54 +08002418 kvm_flush_remote_tlbs(kvm);
2419
Takuya Yoshikawa945315b2013-03-06 16:05:52 +09002420 list_for_each_entry_safe(sp, nsp, invalid_list, link) {
Xiao Guangrong77758342010-06-04 21:53:54 +08002421 WARN_ON(!sp->role.invalid || sp->root_count);
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08002422 kvm_mmu_free_page(sp);
Takuya Yoshikawa945315b2013-03-06 16:05:52 +09002423 }
Xiao Guangrong77758342010-06-04 21:53:54 +08002424}
2425
Takuya Yoshikawa5da59602013-03-06 16:06:58 +09002426static bool prepare_zap_oldest_mmu_page(struct kvm *kvm,
2427 struct list_head *invalid_list)
2428{
2429 struct kvm_mmu_page *sp;
2430
2431 if (list_empty(&kvm->arch.active_mmu_pages))
2432 return false;
2433
Geliang Tangd74c0e62016-01-01 19:47:14 +08002434 sp = list_last_entry(&kvm->arch.active_mmu_pages,
2435 struct kvm_mmu_page, link);
Takuya Yoshikawa5da59602013-03-06 16:06:58 +09002436 kvm_mmu_prepare_zap_page(kvm, sp, invalid_list);
2437
2438 return true;
2439}
2440
Izik Eidus82ce2c92007-10-02 18:52:55 +02002441/*
2442 * Changing the number of mmu pages allocated to the vm
Dave Hansen49d5ca22010-08-19 18:11:28 -07002443 * Note: if goal_nr_mmu_pages is too small, you will get dead lock
Izik Eidus82ce2c92007-10-02 18:52:55 +02002444 */
Dave Hansen49d5ca22010-08-19 18:11:28 -07002445void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int goal_nr_mmu_pages)
Izik Eidus82ce2c92007-10-02 18:52:55 +02002446{
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002447 LIST_HEAD(invalid_list);
Izik Eidus82ce2c92007-10-02 18:52:55 +02002448
Takuya Yoshikawab34cb592013-01-08 19:46:07 +09002449 spin_lock(&kvm->mmu_lock);
2450
Dave Hansen49d5ca22010-08-19 18:11:28 -07002451 if (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages) {
Takuya Yoshikawa5da59602013-03-06 16:06:58 +09002452 /* Need to free some mmu pages to achieve the goal. */
2453 while (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages)
2454 if (!prepare_zap_oldest_mmu_page(kvm, &invalid_list))
2455 break;
Izik Eidus82ce2c92007-10-02 18:52:55 +02002456
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08002457 kvm_mmu_commit_zap_page(kvm, &invalid_list);
Dave Hansen49d5ca22010-08-19 18:11:28 -07002458 goal_nr_mmu_pages = kvm->arch.n_used_mmu_pages;
Izik Eidus82ce2c92007-10-02 18:52:55 +02002459 }
Izik Eidus82ce2c92007-10-02 18:52:55 +02002460
Dave Hansen49d5ca22010-08-19 18:11:28 -07002461 kvm->arch.n_max_mmu_pages = goal_nr_mmu_pages;
Takuya Yoshikawab34cb592013-01-08 19:46:07 +09002462
2463 spin_unlock(&kvm->mmu_lock);
Izik Eidus82ce2c92007-10-02 18:52:55 +02002464}
2465
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002466int kvm_mmu_unprotect_page(struct kvm *kvm, gfn_t gfn)
Avi Kivitya4360362007-01-05 16:36:45 -08002467{
Avi Kivity4db35312007-11-21 15:28:32 +02002468 struct kvm_mmu_page *sp;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002469 LIST_HEAD(invalid_list);
Avi Kivitya4360362007-01-05 16:36:45 -08002470 int r;
2471
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002472 pgprintk("%s: looking for gfn %llx\n", __func__, gfn);
Avi Kivitya4360362007-01-05 16:36:45 -08002473 r = 0;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002474 spin_lock(&kvm->mmu_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08002475 for_each_gfn_indirect_valid_sp(kvm, sp, gfn) {
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002476 pgprintk("%s: gfn %llx role %x\n", __func__, gfn,
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002477 sp->role.word);
2478 r = 1;
Xiao Guangrongf41d3352010-06-04 21:56:11 +08002479 kvm_mmu_prepare_zap_page(kvm, sp, &invalid_list);
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002480 }
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002481 kvm_mmu_commit_zap_page(kvm, &invalid_list);
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002482 spin_unlock(&kvm->mmu_lock);
2483
Avi Kivitya4360362007-01-05 16:36:45 -08002484 return r;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002485}
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002486EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page);
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002487
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002488static void kvm_unsync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002489{
Xiao Guangrong5e1b3dd2010-04-28 11:55:06 +08002490 trace_kvm_mmu_unsync_page(sp);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002491 ++vcpu->kvm->stat.mmu_unsync;
2492 sp->unsync = 1;
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -02002493
Xiao Guangrong6b184932010-04-16 21:29:17 +08002494 kvm_mmu_mark_parents_unsync(sp);
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002495}
2496
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08002497static bool mmu_need_write_protect(struct kvm_vcpu *vcpu, gfn_t gfn,
2498 bool can_unsync)
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002499{
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002500 struct kvm_mmu_page *sp;
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002501
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08002502 if (kvm_page_track_is_active(vcpu, gfn, KVM_PAGE_TRACK_WRITE))
2503 return true;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002504
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002505 for_each_gfn_indirect_valid_sp(vcpu->kvm, sp, gfn) {
Xiao Guangrong36a2e672010-06-30 16:02:02 +08002506 if (!can_unsync)
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08002507 return true;
Xiao Guangrong36a2e672010-06-30 16:02:02 +08002508
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002509 if (sp->unsync)
2510 continue;
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002511
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002512 WARN_ON(sp->role.level != PT_PAGE_TABLE_LEVEL);
2513 kvm_unsync_page(vcpu, sp);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002514 }
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08002515
2516 return false;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002517}
2518
Dan Williamsba049e92016-01-15 16:56:11 -08002519static bool kvm_is_mmio_pfn(kvm_pfn_t pfn)
Paolo Bonzinid1fe9212015-07-07 15:03:18 +02002520{
2521 if (pfn_valid(pfn))
2522 return !is_zero_pfn(pfn) && PageReserved(pfn_to_page(pfn));
2523
2524 return true;
2525}
2526
Avi Kivityd555c332009-06-10 14:24:23 +03002527static int set_spte(struct kvm_vcpu *vcpu, u64 *sptep,
Xiao Guangrongc22885052013-01-08 14:36:04 +08002528 unsigned pte_access, int level,
Dan Williamsba049e92016-01-15 16:56:11 -08002529 gfn_t gfn, kvm_pfn_t pfn, bool speculative,
Lai Jiangshan9bdbba12010-11-19 17:03:22 +08002530 bool can_unsync, bool host_writable)
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002531{
Bandan Dasffb128c2016-07-12 18:18:49 -04002532 u64 spte = 0;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002533 int ret = 0;
Sheng Yang64d4d522008-10-09 16:01:57 +08002534
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002535 if (set_mmio_spte(vcpu, sptep, gfn, pfn, pte_access))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08002536 return 0;
2537
Bandan Dasd95c5562016-07-12 18:18:51 -04002538 /*
2539 * For the EPT case, shadow_present_mask is 0 if hardware
2540 * supports exec-only page table entries. In that case,
2541 * ACC_USER_MASK and shadow_user_mask are used to represent
2542 * read access. See FNAME(gpte_access) in paging_tmpl.h.
2543 */
Bandan Dasffb128c2016-07-12 18:18:49 -04002544 spte |= shadow_present_mask;
Avi Kivity947da532008-03-18 11:05:52 +02002545 if (!speculative)
Avi Kivity3201b5d2008-08-27 20:01:04 +03002546 spte |= shadow_accessed_mask;
Xiao Guangrong640d9b02011-07-12 03:24:39 +08002547
Sheng Yang7b523452008-04-25 21:13:50 +08002548 if (pte_access & ACC_EXEC_MASK)
2549 spte |= shadow_x_mask;
2550 else
2551 spte |= shadow_nx_mask;
Xiao Guangrong49fde342012-06-20 15:58:58 +08002552
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002553 if (pte_access & ACC_USER_MASK)
Sheng Yang7b523452008-04-25 21:13:50 +08002554 spte |= shadow_user_mask;
Xiao Guangrong49fde342012-06-20 15:58:58 +08002555
Joerg Roedel852e3c12009-07-27 16:30:44 +02002556 if (level > PT_PAGE_TABLE_LEVEL)
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002557 spte |= PT_PAGE_SIZE_MASK;
Avi Kivityb0bc3ee2010-09-13 16:45:28 +02002558 if (tdp_enabled)
Sheng Yang4b12f0d2009-04-27 20:35:42 +08002559 spte |= kvm_x86_ops->get_mt_mask(vcpu, gfn,
Paolo Bonzinid1fe9212015-07-07 15:03:18 +02002560 kvm_is_mmio_pfn(pfn));
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002561
Lai Jiangshan9bdbba12010-11-19 17:03:22 +08002562 if (host_writable)
Izik Eidus14032832009-09-23 21:47:17 +03002563 spte |= SPTE_HOST_WRITEABLE;
Xiao Guangrongf8e453b2010-12-23 16:09:29 +08002564 else
2565 pte_access &= ~ACC_WRITE_MASK;
Izik Eidus14032832009-09-23 21:47:17 +03002566
Anthony Liguori35149e22008-04-02 14:46:56 -05002567 spte |= (u64)pfn << PAGE_SHIFT;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002568
Xiao Guangrongc22885052013-01-08 14:36:04 +08002569 if (pte_access & ACC_WRITE_MASK) {
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002570
Xiao Guangrongc2193462012-12-04 07:17:11 +08002571 /*
Xiao Guangrong7751bab2013-01-08 14:36:51 +08002572 * Other vcpu creates new sp in the window between
2573 * mapping_level() and acquiring mmu-lock. We can
2574 * allow guest to retry the access, the mapping can
2575 * be fixed if guest refault.
Xiao Guangrongc2193462012-12-04 07:17:11 +08002576 */
Joerg Roedel852e3c12009-07-27 16:30:44 +02002577 if (level > PT_PAGE_TABLE_LEVEL &&
Xiao Guangrong92f94f12016-02-24 17:51:06 +08002578 mmu_gfn_lpage_is_disallowed(vcpu, gfn, level))
Avi Kivitybe38d272010-06-06 14:31:27 +03002579 goto done;
Marcelo Tosatti38187c82008-09-23 13:18:32 -03002580
Xiao Guangrong49fde342012-06-20 15:58:58 +08002581 spte |= PT_WRITABLE_MASK | SPTE_MMU_WRITEABLE;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002582
Marcelo Tosattiecc55892008-11-25 15:58:07 +01002583 /*
2584 * Optimization: for pte sync, if spte was writable the hash
2585 * lookup is unnecessary (and expensive). Write protection
2586 * is responsibility of mmu_get_page / kvm_sync_page.
2587 * Same reasoning can be applied to dirty page accounting.
2588 */
Takuya Yoshikawa8dae4442010-01-18 18:45:10 +09002589 if (!can_unsync && is_writable_pte(*sptep))
Marcelo Tosattiecc55892008-11-25 15:58:07 +01002590 goto set_pte;
2591
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002592 if (mmu_need_write_protect(vcpu, gfn, can_unsync)) {
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002593 pgprintk("%s: found shadow page for %llx, marking ro\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002594 __func__, gfn);
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002595 ret = 1;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002596 pte_access &= ~ACC_WRITE_MASK;
Xiao Guangrong49fde342012-06-20 15:58:58 +08002597 spte &= ~(PT_WRITABLE_MASK | SPTE_MMU_WRITEABLE);
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002598 }
2599 }
2600
Kai Huang9b51a632015-01-28 10:54:25 +08002601 if (pte_access & ACC_WRITE_MASK) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002602 kvm_vcpu_mark_page_dirty(vcpu, gfn);
Kai Huang9b51a632015-01-28 10:54:25 +08002603 spte |= shadow_dirty_mask;
2604 }
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002605
Marcelo Tosatti38187c82008-09-23 13:18:32 -03002606set_pte:
Xiao Guangrong6e7d0352012-06-20 15:58:33 +08002607 if (mmu_spte_update(sptep, spte))
Xiao Guangrongb330aa02010-11-19 17:02:35 +08002608 kvm_flush_remote_tlbs(vcpu->kvm);
Avi Kivitybe38d272010-06-06 14:31:27 +03002609done:
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002610 return ret;
2611}
2612
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002613static bool mmu_set_spte(struct kvm_vcpu *vcpu, u64 *sptep, unsigned pte_access,
Dan Williamsba049e92016-01-15 16:56:11 -08002614 int write_fault, int level, gfn_t gfn, kvm_pfn_t pfn,
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002615 bool speculative, bool host_writable)
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002616{
2617 int was_rmapped = 0;
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03002618 int rmap_count;
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002619 bool emulate = false;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002620
Xiao Guangrongf7616202013-02-05 15:27:27 +08002621 pgprintk("%s: spte %llx write_fault %d gfn %llx\n", __func__,
2622 *sptep, write_fault, gfn);
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002623
Takuya Yoshikawaafd28fe2015-11-20 17:44:55 +09002624 if (is_shadow_present_pte(*sptep)) {
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002625 /*
2626 * If we overwrite a PTE page pointer with a 2MB PMD, unlink
2627 * the parent of the now unreachable PTE.
2628 */
Joerg Roedel852e3c12009-07-27 16:30:44 +02002629 if (level > PT_PAGE_TABLE_LEVEL &&
2630 !is_large_pte(*sptep)) {
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002631 struct kvm_mmu_page *child;
Avi Kivityd555c332009-06-10 14:24:23 +03002632 u64 pte = *sptep;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002633
2634 child = page_header(pte & PT64_BASE_ADDR_MASK);
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08002635 drop_parent_pte(child, sptep);
Marcelo Tosatti3be22642010-05-28 09:44:59 -03002636 kvm_flush_remote_tlbs(vcpu->kvm);
Avi Kivityd555c332009-06-10 14:24:23 +03002637 } else if (pfn != spte_to_pfn(*sptep)) {
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002638 pgprintk("hfn old %llx new %llx\n",
Avi Kivityd555c332009-06-10 14:24:23 +03002639 spte_to_pfn(*sptep), pfn);
Xiao Guangrongc3707952011-07-12 03:28:04 +08002640 drop_spte(vcpu->kvm, sptep);
Xiao Guangrong91546352010-06-30 16:04:06 +08002641 kvm_flush_remote_tlbs(vcpu->kvm);
Joerg Roedel6bed6b92009-02-18 14:08:59 +01002642 } else
2643 was_rmapped = 1;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002644 }
Joerg Roedel852e3c12009-07-27 16:30:44 +02002645
Xiao Guangrongc22885052013-01-08 14:36:04 +08002646 if (set_spte(vcpu, sptep, pte_access, level, gfn, pfn, speculative,
2647 true, host_writable)) {
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002648 if (write_fault)
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002649 emulate = true;
Liang Chen77c39132014-09-18 12:38:37 -04002650 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Marcelo Tosattia378b4e2008-09-23 13:18:31 -03002651 }
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002652
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002653 if (unlikely(is_mmio_spte(*sptep)))
2654 emulate = true;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08002655
Avi Kivityd555c332009-06-10 14:24:23 +03002656 pgprintk("%s: setting spte %llx\n", __func__, *sptep);
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002657 pgprintk("instantiating %s PTE (%s) at %llx (%llx) addr %p\n",
Avi Kivityd555c332009-06-10 14:24:23 +03002658 is_large_pte(*sptep)? "2MB" : "4kB",
Joerg Roedela205bc12009-07-09 16:36:01 +02002659 *sptep & PT_PRESENT_MASK ?"RW":"R", gfn,
2660 *sptep, sptep);
Avi Kivityd555c332009-06-10 14:24:23 +03002661 if (!was_rmapped && is_large_pte(*sptep))
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002662 ++vcpu->kvm->stat.lpages;
2663
Xiao Guangrongffb61bb2011-07-12 03:22:01 +08002664 if (is_shadow_present_pte(*sptep)) {
Xiao Guangrongffb61bb2011-07-12 03:22:01 +08002665 if (!was_rmapped) {
2666 rmap_count = rmap_add(vcpu, sptep, gfn);
2667 if (rmap_count > RMAP_RECYCLE_THRESHOLD)
2668 rmap_recycle(vcpu, sptep, gfn);
2669 }
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002670 }
Xiao Guangrongcb9aaa32012-08-03 15:42:10 +08002671
Xiao Guangrongf3ac1a42012-10-16 20:07:03 +08002672 kvm_release_pfn_clean(pfn);
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002673
2674 return emulate;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002675}
2676
Dan Williamsba049e92016-01-15 16:56:11 -08002677static kvm_pfn_t pte_prefetch_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn,
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002678 bool no_dirty_log)
2679{
2680 struct kvm_memory_slot *slot;
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002681
Xiao Guangrong5d163b12011-03-09 15:43:00 +08002682 slot = gfn_to_memslot_dirty_bitmap(vcpu, gfn, no_dirty_log);
Xiao Guangrong903816f2012-07-17 21:54:11 +08002683 if (!slot)
Xiao Guangrong6c8ee572012-08-03 15:37:54 +08002684 return KVM_PFN_ERR_FAULT;
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002685
Xiao Guangrong037d92d2012-08-21 10:59:12 +08002686 return gfn_to_pfn_memslot_atomic(slot, gfn);
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002687}
2688
2689static int direct_pte_prefetch_many(struct kvm_vcpu *vcpu,
2690 struct kvm_mmu_page *sp,
2691 u64 *start, u64 *end)
2692{
2693 struct page *pages[PTE_PREFETCH_NUM];
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02002694 struct kvm_memory_slot *slot;
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002695 unsigned access = sp->role.access;
2696 int i, ret;
2697 gfn_t gfn;
2698
2699 gfn = kvm_mmu_page_get_gfn(sp, start - sp->spt);
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02002700 slot = gfn_to_memslot_dirty_bitmap(vcpu, gfn, access & ACC_WRITE_MASK);
2701 if (!slot)
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002702 return -1;
2703
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02002704 ret = gfn_to_page_many_atomic(slot, gfn, pages, end - start);
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002705 if (ret <= 0)
2706 return -1;
2707
2708 for (i = 0; i < ret; i++, gfn++, start++)
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002709 mmu_set_spte(vcpu, start, access, 0, sp->role.level, gfn,
2710 page_to_pfn(pages[i]), true, true);
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002711
2712 return 0;
2713}
2714
2715static void __direct_pte_prefetch(struct kvm_vcpu *vcpu,
2716 struct kvm_mmu_page *sp, u64 *sptep)
2717{
2718 u64 *spte, *start = NULL;
2719 int i;
2720
2721 WARN_ON(!sp->role.direct);
2722
2723 i = (sptep - sp->spt) & ~(PTE_PREFETCH_NUM - 1);
2724 spte = sp->spt + i;
2725
2726 for (i = 0; i < PTE_PREFETCH_NUM; i++, spte++) {
Xiao Guangrongc3707952011-07-12 03:28:04 +08002727 if (is_shadow_present_pte(*spte) || spte == sptep) {
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002728 if (!start)
2729 continue;
2730 if (direct_pte_prefetch_many(vcpu, sp, start, spte) < 0)
2731 break;
2732 start = NULL;
2733 } else if (!start)
2734 start = spte;
2735 }
2736}
2737
2738static void direct_pte_prefetch(struct kvm_vcpu *vcpu, u64 *sptep)
2739{
2740 struct kvm_mmu_page *sp;
2741
2742 /*
2743 * Since it's no accessed bit on EPT, it's no way to
2744 * distinguish between actually accessed translations
2745 * and prefetched, so disable pte prefetch if EPT is
2746 * enabled.
2747 */
2748 if (!shadow_accessed_mask)
2749 return;
2750
2751 sp = page_header(__pa(sptep));
2752 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
2753 return;
2754
2755 __direct_pte_prefetch(vcpu, sp, sptep);
2756}
2757
Takuya Yoshikawa7ee0e5b2015-11-20 17:42:23 +09002758static int __direct_map(struct kvm_vcpu *vcpu, int write, int map_writable,
Dan Williamsba049e92016-01-15 16:56:11 -08002759 int level, gfn_t gfn, kvm_pfn_t pfn, bool prefault)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002760{
Avi Kivity9f652d212008-12-25 14:54:25 +02002761 struct kvm_shadow_walk_iterator iterator;
2762 struct kvm_mmu_page *sp;
Xiao Guangrongb90a0e62011-07-12 03:25:56 +08002763 int emulate = 0;
Avi Kivity9f652d212008-12-25 14:54:25 +02002764 gfn_t pseudo_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002765
Marcelo Tosatti989c6b32013-12-19 15:28:51 -02002766 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
2767 return 0;
2768
Avi Kivity9f652d212008-12-25 14:54:25 +02002769 for_each_shadow_entry(vcpu, (u64)gfn << PAGE_SHIFT, iterator) {
Joerg Roedel852e3c12009-07-27 16:30:44 +02002770 if (iterator.level == level) {
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002771 emulate = mmu_set_spte(vcpu, iterator.sptep, ACC_ALL,
2772 write, level, gfn, pfn, prefault,
2773 map_writable);
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002774 direct_pte_prefetch(vcpu, iterator.sptep);
Avi Kivity9f652d212008-12-25 14:54:25 +02002775 ++vcpu->stat.pf_fixed;
2776 break;
2777 }
2778
Marcelo Tosatti404381c2014-02-24 13:59:32 -03002779 drop_large_spte(vcpu, iterator.sptep);
Xiao Guangrongc3707952011-07-12 03:28:04 +08002780 if (!is_shadow_present_pte(*iterator.sptep)) {
Lai Jiangshanc9fa0b32010-05-26 16:48:25 +08002781 u64 base_addr = iterator.addr;
2782
2783 base_addr &= PT64_LVL_ADDR_MASK(iterator.level);
2784 pseudo_gfn = base_addr >> PAGE_SHIFT;
Avi Kivity9f652d212008-12-25 14:54:25 +02002785 sp = kvm_mmu_get_page(vcpu, pseudo_gfn, iterator.addr,
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09002786 iterator.level - 1, 1, ACC_ALL);
Avi Kivity9f652d212008-12-25 14:54:25 +02002787
Takuya Yoshikawa98bba232015-11-26 21:14:34 +09002788 link_shadow_page(vcpu, iterator.sptep, sp);
Avi Kivity9f652d212008-12-25 14:54:25 +02002789 }
2790 }
Xiao Guangrongb90a0e62011-07-12 03:25:56 +08002791 return emulate;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002792}
2793
Huang Ying77db5cb2010-10-08 16:24:15 +08002794static void kvm_send_hwpoison_signal(unsigned long address, struct task_struct *tsk)
Huang Yingbf998152010-05-31 14:28:19 +08002795{
Huang Ying77db5cb2010-10-08 16:24:15 +08002796 siginfo_t info;
Huang Yingbf998152010-05-31 14:28:19 +08002797
Huang Ying77db5cb2010-10-08 16:24:15 +08002798 info.si_signo = SIGBUS;
2799 info.si_errno = 0;
2800 info.si_code = BUS_MCEERR_AR;
2801 info.si_addr = (void __user *)address;
2802 info.si_addr_lsb = PAGE_SHIFT;
2803
2804 send_sig_info(SIGBUS, &info, tsk);
Huang Yingbf998152010-05-31 14:28:19 +08002805}
2806
Dan Williamsba049e92016-01-15 16:56:11 -08002807static int kvm_handle_bad_page(struct kvm_vcpu *vcpu, gfn_t gfn, kvm_pfn_t pfn)
Huang Yingbf998152010-05-31 14:28:19 +08002808{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08002809 /*
2810 * Do not cache the mmio info caused by writing the readonly gfn
2811 * into the spte otherwise read access on readonly gfn also can
2812 * caused mmio page fault and treat it as mmio access.
2813 * Return 1 to tell kvm to emulate it.
2814 */
2815 if (pfn == KVM_PFN_ERR_RO_FAULT)
2816 return 1;
2817
Xiao Guangronge6c15022012-08-03 15:38:36 +08002818 if (pfn == KVM_PFN_ERR_HWPOISON) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002819 kvm_send_hwpoison_signal(kvm_vcpu_gfn_to_hva(vcpu, gfn), current);
Huang Yingbf998152010-05-31 14:28:19 +08002820 return 0;
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002821 }
Gleb Natapovedba23e2010-07-07 20:16:45 +03002822
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002823 return -EFAULT;
Huang Yingbf998152010-05-31 14:28:19 +08002824}
2825
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002826static void transparent_hugepage_adjust(struct kvm_vcpu *vcpu,
Dan Williamsba049e92016-01-15 16:56:11 -08002827 gfn_t *gfnp, kvm_pfn_t *pfnp,
2828 int *levelp)
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002829{
Dan Williamsba049e92016-01-15 16:56:11 -08002830 kvm_pfn_t pfn = *pfnp;
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002831 gfn_t gfn = *gfnp;
2832 int level = *levelp;
2833
2834 /*
2835 * Check if it's a transparent hugepage. If this would be an
2836 * hugetlbfs page, level wouldn't be set to
2837 * PT_PAGE_TABLE_LEVEL and there would be no adjustment done
2838 * here.
2839 */
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00002840 if (!is_error_noslot_pfn(pfn) && !kvm_is_reserved_pfn(pfn) &&
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002841 level == PT_PAGE_TABLE_LEVEL &&
Andrea Arcangeli127393f2016-05-05 16:22:20 -07002842 PageTransCompoundMap(pfn_to_page(pfn)) &&
Xiao Guangrong92f94f12016-02-24 17:51:06 +08002843 !mmu_gfn_lpage_is_disallowed(vcpu, gfn, PT_DIRECTORY_LEVEL)) {
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002844 unsigned long mask;
2845 /*
2846 * mmu_notifier_retry was successful and we hold the
2847 * mmu_lock here, so the pmd can't become splitting
2848 * from under us, and in turn
2849 * __split_huge_page_refcount() can't run from under
2850 * us and we can safely transfer the refcount from
2851 * PG_tail to PG_head as we switch the pfn to tail to
2852 * head.
2853 */
2854 *levelp = level = PT_DIRECTORY_LEVEL;
2855 mask = KVM_PAGES_PER_HPAGE(level) - 1;
2856 VM_BUG_ON((gfn & mask) != (pfn & mask));
2857 if (pfn & mask) {
2858 gfn &= ~mask;
2859 *gfnp = gfn;
2860 kvm_release_pfn_clean(pfn);
2861 pfn &= ~mask;
Xiao Guangrongc3586662012-05-28 14:10:43 +08002862 kvm_get_pfn(pfn);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002863 *pfnp = pfn;
2864 }
2865 }
2866}
2867
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002868static bool handle_abnormal_pfn(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn,
Dan Williamsba049e92016-01-15 16:56:11 -08002869 kvm_pfn_t pfn, unsigned access, int *ret_val)
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002870{
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002871 /* The pfn is invalid, report the error! */
Xiao Guangrong81c52c52012-10-16 20:10:59 +08002872 if (unlikely(is_error_pfn(pfn))) {
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002873 *ret_val = kvm_handle_bad_page(vcpu, gfn, pfn);
Paolo Bonzini798e88b2016-02-23 15:28:51 +01002874 return true;
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002875 }
2876
Xiao Guangrongce88dec2011-07-12 03:33:44 +08002877 if (unlikely(is_noslot_pfn(pfn)))
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002878 vcpu_cache_mmio_info(vcpu, gva, gfn, access);
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002879
Paolo Bonzini798e88b2016-02-23 15:28:51 +01002880 return false;
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002881}
2882
Xiao Guangronge5552fd2013-07-30 21:01:59 +08002883static bool page_fault_can_be_fast(u32 error_code)
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002884{
2885 /*
Xiao Guangrong1c118b82013-07-18 12:52:37 +08002886 * Do not fix the mmio spte with invalid generation number which
2887 * need to be updated by slow page fault path.
2888 */
2889 if (unlikely(error_code & PFERR_RSVD_MASK))
2890 return false;
2891
2892 /*
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002893 * #PF can be fast only if the shadow page table is present and it
2894 * is caused by write-protect, that means we just need change the
2895 * W bit of the spte which can be done out of mmu-lock.
2896 */
2897 if (!(error_code & PFERR_PRESENT_MASK) ||
2898 !(error_code & PFERR_WRITE_MASK))
2899 return false;
2900
2901 return true;
2902}
2903
Junaid Shahid97dceba2016-12-06 16:46:12 -08002904/*
2905 * Returns true if the SPTE was fixed successfully. Otherwise,
2906 * someone else modified the SPTE from its original value.
2907 */
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002908static bool
Xiao Guangrong92a476c2014-04-17 17:06:13 +08002909fast_pf_fix_direct_spte(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
2910 u64 *sptep, u64 spte)
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002911{
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002912 gfn_t gfn;
2913
2914 WARN_ON(!sp->role.direct);
2915
2916 /*
2917 * The gfn of direct spte is stable since it is calculated
2918 * by sp->gfn.
2919 */
2920 gfn = kvm_mmu_page_get_gfn(sp, sptep - sp->spt);
2921
Kai Huang9b51a632015-01-28 10:54:25 +08002922 /*
2923 * Theoretically we could also set dirty bit (and flush TLB) here in
2924 * order to eliminate unnecessary PML logging. See comments in
2925 * set_spte. But fast_page_fault is very unlikely to happen with PML
2926 * enabled, so we do not do this. This might result in the same GPA
2927 * to be logged in PML buffer again when the write really happens, and
2928 * eventually to be called by mark_page_dirty twice. But it's also no
2929 * harm. This also avoids the TLB flush needed after setting dirty bit
2930 * so non-PML cases won't be impacted.
2931 *
2932 * Compare with set_spte where instead shadow_dirty_mask is set.
2933 */
Junaid Shahid97dceba2016-12-06 16:46:12 -08002934 if (cmpxchg64(sptep, spte, spte | PT_WRITABLE_MASK) != spte)
2935 return false;
2936
2937 kvm_vcpu_mark_page_dirty(vcpu, gfn);
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002938
2939 return true;
2940}
2941
2942/*
2943 * Return value:
2944 * - true: let the vcpu to access on the same address again.
2945 * - false: let the real page fault path to fix it.
2946 */
2947static bool fast_page_fault(struct kvm_vcpu *vcpu, gva_t gva, int level,
2948 u32 error_code)
2949{
2950 struct kvm_shadow_walk_iterator iterator;
Xiao Guangrong92a476c2014-04-17 17:06:13 +08002951 struct kvm_mmu_page *sp;
Junaid Shahid97dceba2016-12-06 16:46:12 -08002952 bool fault_handled = false;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002953 u64 spte = 0ull;
Junaid Shahid97dceba2016-12-06 16:46:12 -08002954 uint retry_count = 0;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002955
Marcelo Tosatti37f6a4e2014-01-03 17:09:32 -02002956 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
2957 return false;
2958
Xiao Guangronge5552fd2013-07-30 21:01:59 +08002959 if (!page_fault_can_be_fast(error_code))
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002960 return false;
2961
2962 walk_shadow_page_lockless_begin(vcpu);
2963 for_each_shadow_entry_lockless(vcpu, gva, iterator, spte)
2964 if (!is_shadow_present_pte(spte) || iterator.level < level)
2965 break;
2966
Junaid Shahid97dceba2016-12-06 16:46:12 -08002967 do {
2968 /*
2969 * If the mapping has been changed, let the vcpu fault on the
2970 * same address again.
2971 */
2972 if (!is_shadow_present_pte(spte)) {
2973 fault_handled = true;
2974 break;
2975 }
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002976
Junaid Shahid97dceba2016-12-06 16:46:12 -08002977 sp = page_header(__pa(iterator.sptep));
2978 if (!is_last_spte(spte, sp->role.level))
2979 break;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002980
Junaid Shahid97dceba2016-12-06 16:46:12 -08002981 /*
2982 * Check if it is a spurious fault caused by TLB lazily flushed.
2983 *
2984 * Need not check the access of upper level table entries since
2985 * they are always ACC_ALL.
2986 */
2987 if (is_writable_pte(spte)) {
2988 fault_handled = true;
2989 break;
2990 }
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002991
Junaid Shahid97dceba2016-12-06 16:46:12 -08002992 /*
2993 * Currently, to simplify the code, only the spte
2994 * write-protected by dirty-log can be fast fixed.
2995 */
2996 if (!spte_can_locklessly_be_made_writable(spte))
2997 break;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002998
Junaid Shahid97dceba2016-12-06 16:46:12 -08002999 /*
3000 * Do not fix write-permission on the large spte since we only
3001 * dirty the first page into the dirty-bitmap in
3002 * fast_pf_fix_direct_spte() that means other pages are missed
3003 * if its slot is dirty-logged.
3004 *
3005 * Instead, we let the slow page fault path create a normal spte
3006 * to fix the access.
3007 *
3008 * See the comments in kvm_arch_commit_memory_region().
3009 */
3010 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
3011 break;
Xiao Guangrongc126d942014-04-17 17:06:14 +08003012
Junaid Shahid97dceba2016-12-06 16:46:12 -08003013 /*
3014 * Currently, fast page fault only works for direct mapping
3015 * since the gfn is not stable for indirect shadow page. See
3016 * Documentation/virtual/kvm/locking.txt to get more detail.
3017 */
3018 fault_handled = fast_pf_fix_direct_spte(vcpu, sp,
3019 iterator.sptep, spte);
3020 if (fault_handled)
3021 break;
3022
3023 if (++retry_count > 4) {
3024 printk_once(KERN_WARNING
3025 "kvm: Fast #PF retrying more than 4 times.\n");
3026 break;
3027 }
3028
3029 spte = mmu_spte_get_lockless(iterator.sptep);
3030
3031 } while (true);
3032
Xiao Guangronga72faf22012-06-20 15:59:41 +08003033 trace_fast_page_fault(vcpu, gva, error_code, iterator.sptep,
Junaid Shahid97dceba2016-12-06 16:46:12 -08003034 spte, fault_handled);
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003035 walk_shadow_page_lockless_end(vcpu);
3036
Junaid Shahid97dceba2016-12-06 16:46:12 -08003037 return fault_handled;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003038}
3039
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003040static bool try_async_pf(struct kvm_vcpu *vcpu, bool prefault, gfn_t gfn,
Dan Williamsba049e92016-01-15 16:56:11 -08003041 gva_t gva, kvm_pfn_t *pfn, bool write, bool *writable);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003042static void make_mmu_pages_available(struct kvm_vcpu *vcpu);
Xiao Guangrong060c2ab2010-11-12 14:49:11 +08003043
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003044static int nonpaging_map(struct kvm_vcpu *vcpu, gva_t v, u32 error_code,
3045 gfn_t gfn, bool prefault)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003046{
3047 int r;
Joerg Roedel852e3c12009-07-27 16:30:44 +02003048 int level;
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003049 bool force_pt_level = false;
Dan Williamsba049e92016-01-15 16:56:11 -08003050 kvm_pfn_t pfn;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003051 unsigned long mmu_seq;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003052 bool map_writable, write = error_code & PFERR_WRITE_MASK;
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003053
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003054 level = mapping_level(vcpu, gfn, &force_pt_level);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003055 if (likely(!force_pt_level)) {
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003056 /*
3057 * This path builds a PAE pagetable - so we can map
3058 * 2mb pages at maximum. Therefore check if the level
3059 * is larger than that.
3060 */
3061 if (level > PT_DIRECTORY_LEVEL)
3062 level = PT_DIRECTORY_LEVEL;
Joerg Roedel852e3c12009-07-27 16:30:44 +02003063
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003064 gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1);
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003065 }
Marcelo Tosatti05da4552008-02-23 11:44:30 -03003066
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003067 if (fast_page_fault(vcpu, v, level, error_code))
3068 return 0;
3069
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003070 mmu_seq = vcpu->kvm->mmu_notifier_seq;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03003071 smp_rmb();
Xiao Guangrong060c2ab2010-11-12 14:49:11 +08003072
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003073 if (try_async_pf(vcpu, prefault, gfn, v, &pfn, write, &map_writable))
Xiao Guangrong060c2ab2010-11-12 14:49:11 +08003074 return 0;
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003075
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003076 if (handle_abnormal_pfn(vcpu, v, gfn, pfn, ACC_ALL, &r))
3077 return r;
Avi Kivityd196e342008-01-24 11:44:11 +02003078
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003079 spin_lock(&vcpu->kvm->mmu_lock);
Christoffer Dall8ca40a72012-10-14 23:10:18 -04003080 if (mmu_notifier_retry(vcpu->kvm, mmu_seq))
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003081 goto out_unlock;
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003082 make_mmu_pages_available(vcpu);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003083 if (likely(!force_pt_level))
3084 transparent_hugepage_adjust(vcpu, &gfn, &pfn, &level);
Takuya Yoshikawa7ee0e5b2015-11-20 17:42:23 +09003085 r = __direct_map(vcpu, write, map_writable, level, gfn, pfn, prefault);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003086 spin_unlock(&vcpu->kvm->mmu_lock);
3087
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003088 return r;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003089
3090out_unlock:
3091 spin_unlock(&vcpu->kvm->mmu_lock);
3092 kvm_release_pfn_clean(pfn);
3093 return 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003094}
3095
3096
Avi Kivity17ac10a2007-01-05 16:36:40 -08003097static void mmu_free_roots(struct kvm_vcpu *vcpu)
3098{
3099 int i;
Avi Kivity4db35312007-11-21 15:28:32 +02003100 struct kvm_mmu_page *sp;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08003101 LIST_HEAD(invalid_list);
Avi Kivity17ac10a2007-01-05 16:36:40 -08003102
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003103 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
Avi Kivity7b53aa52007-06-05 12:17:03 +03003104 return;
Gleb Natapov35af5772013-05-16 11:55:51 +03003105
Joerg Roedel81407ca2010-09-10 17:31:00 +02003106 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL &&
3107 (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL ||
3108 vcpu->arch.mmu.direct_map)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003109 hpa_t root = vcpu->arch.mmu.root_hpa;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003110
Gleb Natapov35af5772013-05-16 11:55:51 +03003111 spin_lock(&vcpu->kvm->mmu_lock);
Avi Kivity4db35312007-11-21 15:28:32 +02003112 sp = page_header(root);
3113 --sp->root_count;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08003114 if (!sp->root_count && sp->role.invalid) {
3115 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, &invalid_list);
3116 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
3117 }
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003118 spin_unlock(&vcpu->kvm->mmu_lock);
Gleb Natapov35af5772013-05-16 11:55:51 +03003119 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003120 return;
3121 }
Gleb Natapov35af5772013-05-16 11:55:51 +03003122
3123 spin_lock(&vcpu->kvm->mmu_lock);
Avi Kivity17ac10a2007-01-05 16:36:40 -08003124 for (i = 0; i < 4; ++i) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003125 hpa_t root = vcpu->arch.mmu.pae_root[i];
Avi Kivity17ac10a2007-01-05 16:36:40 -08003126
Avi Kivity417726a2007-04-12 17:35:58 +03003127 if (root) {
Avi Kivity417726a2007-04-12 17:35:58 +03003128 root &= PT64_BASE_ADDR_MASK;
Avi Kivity4db35312007-11-21 15:28:32 +02003129 sp = page_header(root);
3130 --sp->root_count;
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05003131 if (!sp->root_count && sp->role.invalid)
Xiao Guangrongd98ba052010-06-04 21:55:29 +08003132 kvm_mmu_prepare_zap_page(vcpu->kvm, sp,
3133 &invalid_list);
Avi Kivity417726a2007-04-12 17:35:58 +03003134 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003135 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003136 }
Xiao Guangrongd98ba052010-06-04 21:55:29 +08003137 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003138 spin_unlock(&vcpu->kvm->mmu_lock);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003139 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003140}
3141
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003142static int mmu_check_root(struct kvm_vcpu *vcpu, gfn_t root_gfn)
3143{
3144 int ret = 0;
3145
3146 if (!kvm_is_visible_gfn(vcpu->kvm, root_gfn)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03003147 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003148 ret = 1;
3149 }
3150
3151 return ret;
3152}
3153
Joerg Roedel651dd372010-09-10 17:30:59 +02003154static int mmu_alloc_direct_roots(struct kvm_vcpu *vcpu)
3155{
3156 struct kvm_mmu_page *sp;
Avi Kivity7ebaf152010-10-03 18:51:39 +02003157 unsigned i;
Joerg Roedel651dd372010-09-10 17:30:59 +02003158
3159 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
3160 spin_lock(&vcpu->kvm->mmu_lock);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003161 make_mmu_pages_available(vcpu);
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09003162 sp = kvm_mmu_get_page(vcpu, 0, 0, PT64_ROOT_LEVEL, 1, ACC_ALL);
Joerg Roedel651dd372010-09-10 17:30:59 +02003163 ++sp->root_count;
3164 spin_unlock(&vcpu->kvm->mmu_lock);
3165 vcpu->arch.mmu.root_hpa = __pa(sp->spt);
3166 } else if (vcpu->arch.mmu.shadow_root_level == PT32E_ROOT_LEVEL) {
3167 for (i = 0; i < 4; ++i) {
3168 hpa_t root = vcpu->arch.mmu.pae_root[i];
3169
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003170 MMU_WARN_ON(VALID_PAGE(root));
Joerg Roedel651dd372010-09-10 17:30:59 +02003171 spin_lock(&vcpu->kvm->mmu_lock);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003172 make_mmu_pages_available(vcpu);
Avi Kivity649497d2010-12-28 12:09:07 +02003173 sp = kvm_mmu_get_page(vcpu, i << (30 - PAGE_SHIFT),
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09003174 i << 30, PT32_ROOT_LEVEL, 1, ACC_ALL);
Joerg Roedel651dd372010-09-10 17:30:59 +02003175 root = __pa(sp->spt);
3176 ++sp->root_count;
3177 spin_unlock(&vcpu->kvm->mmu_lock);
3178 vcpu->arch.mmu.pae_root[i] = root | PT_PRESENT_MASK;
Joerg Roedel651dd372010-09-10 17:30:59 +02003179 }
Xiao Guangrong62927572010-09-27 18:02:12 +08003180 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
Joerg Roedel651dd372010-09-10 17:30:59 +02003181 } else
3182 BUG();
3183
3184 return 0;
3185}
3186
3187static int mmu_alloc_shadow_roots(struct kvm_vcpu *vcpu)
Avi Kivity17ac10a2007-01-05 16:36:40 -08003188{
Avi Kivity4db35312007-11-21 15:28:32 +02003189 struct kvm_mmu_page *sp;
Joerg Roedel81407ca2010-09-10 17:31:00 +02003190 u64 pdptr, pm_mask;
3191 gfn_t root_gfn;
3192 int i;
Avi Kivity3bb65a22007-01-05 16:36:51 -08003193
Joerg Roedel5777ed32010-09-10 17:30:42 +02003194 root_gfn = vcpu->arch.mmu.get_cr3(vcpu) >> PAGE_SHIFT;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003195
Joerg Roedel651dd372010-09-10 17:30:59 +02003196 if (mmu_check_root(vcpu, root_gfn))
3197 return 1;
3198
3199 /*
3200 * Do we shadow a long mode page table? If so we need to
3201 * write-protect the guests page table root.
3202 */
3203 if (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003204 hpa_t root = vcpu->arch.mmu.root_hpa;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003205
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003206 MMU_WARN_ON(VALID_PAGE(root));
Joerg Roedel651dd372010-09-10 17:30:59 +02003207
Avi Kivity8facbbf2010-05-04 12:58:32 +03003208 spin_lock(&vcpu->kvm->mmu_lock);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003209 make_mmu_pages_available(vcpu);
Joerg Roedel651dd372010-09-10 17:30:59 +02003210 sp = kvm_mmu_get_page(vcpu, root_gfn, 0, PT64_ROOT_LEVEL,
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09003211 0, ACC_ALL);
Avi Kivity4db35312007-11-21 15:28:32 +02003212 root = __pa(sp->spt);
3213 ++sp->root_count;
Avi Kivity8facbbf2010-05-04 12:58:32 +03003214 spin_unlock(&vcpu->kvm->mmu_lock);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003215 vcpu->arch.mmu.root_hpa = root;
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003216 return 0;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003217 }
Joerg Roedelf87f9282010-09-02 17:29:45 +02003218
Joerg Roedel651dd372010-09-10 17:30:59 +02003219 /*
3220 * We shadow a 32 bit page table. This may be a legacy 2-level
Joerg Roedel81407ca2010-09-10 17:31:00 +02003221 * or a PAE 3-level page table. In either case we need to be aware that
3222 * the shadow page table may be a PAE or a long mode page table.
Joerg Roedel651dd372010-09-10 17:30:59 +02003223 */
Joerg Roedel81407ca2010-09-10 17:31:00 +02003224 pm_mask = PT_PRESENT_MASK;
3225 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL)
3226 pm_mask |= PT_ACCESSED_MASK | PT_WRITABLE_MASK | PT_USER_MASK;
3227
Avi Kivity17ac10a2007-01-05 16:36:40 -08003228 for (i = 0; i < 4; ++i) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003229 hpa_t root = vcpu->arch.mmu.pae_root[i];
Avi Kivity17ac10a2007-01-05 16:36:40 -08003230
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003231 MMU_WARN_ON(VALID_PAGE(root));
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003232 if (vcpu->arch.mmu.root_level == PT32E_ROOT_LEVEL) {
Avi Kivitye4e517b2011-07-28 11:36:17 +03003233 pdptr = vcpu->arch.mmu.get_pdptr(vcpu, i);
Bandan Das812f30b2016-07-12 18:18:50 -04003234 if (!(pdptr & PT_PRESENT_MASK)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003235 vcpu->arch.mmu.pae_root[i] = 0;
Avi Kivity417726a2007-04-12 17:35:58 +03003236 continue;
3237 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003238 root_gfn = pdptr >> PAGE_SHIFT;
Joerg Roedelf87f9282010-09-02 17:29:45 +02003239 if (mmu_check_root(vcpu, root_gfn))
3240 return 1;
Eric Northup5a7388c2010-04-26 17:00:05 -07003241 }
Avi Kivity8facbbf2010-05-04 12:58:32 +03003242 spin_lock(&vcpu->kvm->mmu_lock);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003243 make_mmu_pages_available(vcpu);
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09003244 sp = kvm_mmu_get_page(vcpu, root_gfn, i << 30, PT32_ROOT_LEVEL,
3245 0, ACC_ALL);
Avi Kivity4db35312007-11-21 15:28:32 +02003246 root = __pa(sp->spt);
3247 ++sp->root_count;
Avi Kivity8facbbf2010-05-04 12:58:32 +03003248 spin_unlock(&vcpu->kvm->mmu_lock);
3249
Joerg Roedel81407ca2010-09-10 17:31:00 +02003250 vcpu->arch.mmu.pae_root[i] = root | pm_mask;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003251 }
Xiao Guangrong62927572010-09-27 18:02:12 +08003252 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
Joerg Roedel81407ca2010-09-10 17:31:00 +02003253
3254 /*
3255 * If we shadow a 32 bit page table with a long mode page
3256 * table we enter this path.
3257 */
3258 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
3259 if (vcpu->arch.mmu.lm_root == NULL) {
3260 /*
3261 * The additional page necessary for this is only
3262 * allocated on demand.
3263 */
3264
3265 u64 *lm_root;
3266
3267 lm_root = (void*)get_zeroed_page(GFP_KERNEL);
3268 if (lm_root == NULL)
3269 return 1;
3270
3271 lm_root[0] = __pa(vcpu->arch.mmu.pae_root) | pm_mask;
3272
3273 vcpu->arch.mmu.lm_root = lm_root;
3274 }
3275
3276 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.lm_root);
3277 }
3278
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003279 return 0;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003280}
3281
Joerg Roedel651dd372010-09-10 17:30:59 +02003282static int mmu_alloc_roots(struct kvm_vcpu *vcpu)
3283{
3284 if (vcpu->arch.mmu.direct_map)
3285 return mmu_alloc_direct_roots(vcpu);
3286 else
3287 return mmu_alloc_shadow_roots(vcpu);
3288}
3289
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003290static void mmu_sync_roots(struct kvm_vcpu *vcpu)
3291{
3292 int i;
3293 struct kvm_mmu_page *sp;
3294
Joerg Roedel81407ca2010-09-10 17:31:00 +02003295 if (vcpu->arch.mmu.direct_map)
3296 return;
3297
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003298 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3299 return;
Xiao Guangrong69030742010-09-27 18:09:29 +08003300
David Matlack56f17dd2014-08-18 15:46:07 -07003301 vcpu_clear_mmio_info(vcpu, MMIO_GVA_ANY);
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08003302 kvm_mmu_audit(vcpu, AUDIT_PRE_SYNC);
Joerg Roedel81407ca2010-09-10 17:31:00 +02003303 if (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL) {
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003304 hpa_t root = vcpu->arch.mmu.root_hpa;
3305 sp = page_header(root);
3306 mmu_sync_children(vcpu, sp);
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08003307 kvm_mmu_audit(vcpu, AUDIT_POST_SYNC);
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003308 return;
3309 }
3310 for (i = 0; i < 4; ++i) {
3311 hpa_t root = vcpu->arch.mmu.pae_root[i];
3312
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003313 if (root && VALID_PAGE(root)) {
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003314 root &= PT64_BASE_ADDR_MASK;
3315 sp = page_header(root);
3316 mmu_sync_children(vcpu, sp);
3317 }
3318 }
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08003319 kvm_mmu_audit(vcpu, AUDIT_POST_SYNC);
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003320}
3321
3322void kvm_mmu_sync_roots(struct kvm_vcpu *vcpu)
3323{
3324 spin_lock(&vcpu->kvm->mmu_lock);
3325 mmu_sync_roots(vcpu);
3326 spin_unlock(&vcpu->kvm->mmu_lock);
3327}
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03003328EXPORT_SYMBOL_GPL(kvm_mmu_sync_roots);
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003329
Gleb Natapov1871c602010-02-10 14:21:32 +02003330static gpa_t nonpaging_gva_to_gpa(struct kvm_vcpu *vcpu, gva_t vaddr,
Avi Kivityab9ae312010-11-22 17:53:26 +02003331 u32 access, struct x86_exception *exception)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003332{
Avi Kivityab9ae312010-11-22 17:53:26 +02003333 if (exception)
3334 exception->error_code = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003335 return vaddr;
3336}
3337
Joerg Roedel6539e732010-09-10 17:30:50 +02003338static gpa_t nonpaging_gva_to_gpa_nested(struct kvm_vcpu *vcpu, gva_t vaddr,
Avi Kivityab9ae312010-11-22 17:53:26 +02003339 u32 access,
3340 struct x86_exception *exception)
Joerg Roedel6539e732010-09-10 17:30:50 +02003341{
Avi Kivityab9ae312010-11-22 17:53:26 +02003342 if (exception)
3343 exception->error_code = 0;
Paolo Bonzini54987b72014-09-02 13:23:06 +02003344 return vcpu->arch.nested_mmu.translate_gpa(vcpu, vaddr, access, exception);
Joerg Roedel6539e732010-09-10 17:30:50 +02003345}
3346
Xiao Guangrongd625b152015-08-05 12:04:25 +08003347static bool
3348__is_rsvd_bits_set(struct rsvd_bits_validate *rsvd_check, u64 pte, int level)
3349{
3350 int bit7 = (pte >> 7) & 1, low6 = pte & 0x3f;
3351
3352 return (pte & rsvd_check->rsvd_bits_mask[bit7][level-1]) |
3353 ((rsvd_check->bad_mt_xwr & (1ull << low6)) != 0);
3354}
3355
3356static bool is_rsvd_bits_set(struct kvm_mmu *mmu, u64 gpte, int level)
3357{
3358 return __is_rsvd_bits_set(&mmu->guest_rsvd_check, gpte, level);
3359}
3360
3361static bool is_shadow_zero_bits_set(struct kvm_mmu *mmu, u64 spte, int level)
3362{
3363 return __is_rsvd_bits_set(&mmu->shadow_zero_check, spte, level);
3364}
3365
Takuya Yoshikawaded58742016-02-22 17:23:40 +09003366static bool mmio_info_in_cache(struct kvm_vcpu *vcpu, u64 addr, bool direct)
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003367{
3368 if (direct)
3369 return vcpu_match_mmio_gpa(vcpu, addr);
3370
3371 return vcpu_match_mmio_gva(vcpu, addr);
3372}
3373
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003374/* return true if reserved bit is detected on spte. */
3375static bool
3376walk_shadow_page_get_mmio_spte(struct kvm_vcpu *vcpu, u64 addr, u64 *sptep)
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003377{
3378 struct kvm_shadow_walk_iterator iterator;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003379 u64 sptes[PT64_ROOT_LEVEL], spte = 0ull;
3380 int root, leaf;
3381 bool reserved = false;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003382
Marcelo Tosatti37f6a4e2014-01-03 17:09:32 -02003383 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003384 goto exit;
Marcelo Tosatti37f6a4e2014-01-03 17:09:32 -02003385
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003386 walk_shadow_page_lockless_begin(vcpu);
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003387
Paolo Bonzini29ecd662015-09-06 16:24:50 +02003388 for (shadow_walk_init(&iterator, vcpu, addr),
3389 leaf = root = iterator.level;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003390 shadow_walk_okay(&iterator);
3391 __shadow_walk_next(&iterator, spte)) {
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003392 spte = mmu_spte_get_lockless(iterator.sptep);
3393
3394 sptes[leaf - 1] = spte;
Paolo Bonzini29ecd662015-09-06 16:24:50 +02003395 leaf--;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003396
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003397 if (!is_shadow_present_pte(spte))
3398 break;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003399
3400 reserved |= is_shadow_zero_bits_set(&vcpu->arch.mmu, spte,
Paolo Bonzini58c95072015-09-22 10:15:59 +02003401 iterator.level);
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003402 }
3403
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003404 walk_shadow_page_lockless_end(vcpu);
3405
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003406 if (reserved) {
3407 pr_err("%s: detect reserved bits on spte, addr 0x%llx, dump hierarchy:\n",
3408 __func__, addr);
Paolo Bonzini29ecd662015-09-06 16:24:50 +02003409 while (root > leaf) {
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003410 pr_err("------ spte 0x%llx level %d.\n",
3411 sptes[root - 1], root);
3412 root--;
3413 }
3414 }
3415exit:
3416 *sptep = spte;
3417 return reserved;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003418}
3419
Paolo Bonzini450869d2015-11-04 13:41:21 +01003420int handle_mmio_page_fault(struct kvm_vcpu *vcpu, u64 addr, bool direct)
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003421{
3422 u64 spte;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003423 bool reserved;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003424
Takuya Yoshikawaded58742016-02-22 17:23:40 +09003425 if (mmio_info_in_cache(vcpu, addr, direct))
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08003426 return RET_MMIO_PF_EMULATE;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003427
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003428 reserved = walk_shadow_page_get_mmio_spte(vcpu, addr, &spte);
Paolo Bonzini450869d2015-11-04 13:41:21 +01003429 if (WARN_ON(reserved))
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003430 return RET_MMIO_PF_BUG;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003431
3432 if (is_mmio_spte(spte)) {
3433 gfn_t gfn = get_mmio_spte_gfn(spte);
3434 unsigned access = get_mmio_spte_access(spte);
3435
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003436 if (!check_mmio_spte(vcpu, spte))
Xiao Guangrongf8f55942013-06-07 16:51:26 +08003437 return RET_MMIO_PF_INVALID;
3438
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003439 if (direct)
3440 addr = 0;
Xiao Guangrong4f022642011-07-12 03:34:24 +08003441
3442 trace_handle_mmio_page_fault(addr, gfn, access);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003443 vcpu_cache_mmio_info(vcpu, addr, gfn, access);
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08003444 return RET_MMIO_PF_EMULATE;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003445 }
3446
3447 /*
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003448 * If the page table is zapped by other cpus, let CPU fault again on
3449 * the address.
3450 */
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08003451 return RET_MMIO_PF_RETRY;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003452}
Paolo Bonzini450869d2015-11-04 13:41:21 +01003453EXPORT_SYMBOL_GPL(handle_mmio_page_fault);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003454
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08003455static bool page_fault_handle_page_track(struct kvm_vcpu *vcpu,
3456 u32 error_code, gfn_t gfn)
3457{
3458 if (unlikely(error_code & PFERR_RSVD_MASK))
3459 return false;
3460
3461 if (!(error_code & PFERR_PRESENT_MASK) ||
3462 !(error_code & PFERR_WRITE_MASK))
3463 return false;
3464
3465 /*
3466 * guest is writing the page which is write tracked which can
3467 * not be fixed by page fault handler.
3468 */
3469 if (kvm_page_track_is_active(vcpu, gfn, KVM_PAGE_TRACK_WRITE))
3470 return true;
3471
3472 return false;
3473}
3474
Xiao Guangronge5691a82016-02-24 17:51:12 +08003475static void shadow_page_table_clear_flood(struct kvm_vcpu *vcpu, gva_t addr)
3476{
3477 struct kvm_shadow_walk_iterator iterator;
3478 u64 spte;
3479
3480 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3481 return;
3482
3483 walk_shadow_page_lockless_begin(vcpu);
3484 for_each_shadow_entry_lockless(vcpu, addr, iterator, spte) {
3485 clear_sp_write_flooding_count(iterator.sptep);
3486 if (!is_shadow_present_pte(spte))
3487 break;
3488 }
3489 walk_shadow_page_lockless_end(vcpu);
3490}
3491
Avi Kivity6aa8b732006-12-10 02:21:36 -08003492static int nonpaging_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003493 u32 error_code, bool prefault)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003494{
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08003495 gfn_t gfn = gva >> PAGE_SHIFT;
Avi Kivitye2dec932007-01-05 16:36:54 -08003496 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003497
Harvey Harrisonb8688d52008-03-03 12:59:56 -08003498 pgprintk("%s: gva %lx error %x\n", __func__, gva, error_code);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003499
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08003500 if (page_fault_handle_page_track(vcpu, error_code, gfn))
3501 return 1;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003502
Avi Kivitye2dec932007-01-05 16:36:54 -08003503 r = mmu_topup_memory_caches(vcpu);
3504 if (r)
3505 return r;
Avi Kivity714b93d2007-01-05 16:36:53 -08003506
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003507 MMU_WARN_ON(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003508
Avi Kivity6aa8b732006-12-10 02:21:36 -08003509
Avi Kivitye8332402007-12-09 18:43:00 +02003510 return nonpaging_map(vcpu, gva & PAGE_MASK,
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003511 error_code, gfn, prefault);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003512}
3513
Jan Kiszka7e1fbea2010-10-20 15:18:02 +02003514static int kvm_arch_setup_async_pf(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn)
Gleb Natapovaf585b92010-10-14 11:22:46 +02003515{
3516 struct kvm_arch_async_pf arch;
Xiao Guangrongfb67e142010-12-07 10:35:25 +08003517
Gleb Natapov7c907052010-10-14 11:22:53 +02003518 arch.token = (vcpu->arch.apf.id++ << 12) | vcpu->vcpu_id;
Gleb Natapovaf585b92010-10-14 11:22:46 +02003519 arch.gfn = gfn;
Xiao Guangrongc4806ac2010-11-12 14:49:55 +08003520 arch.direct_map = vcpu->arch.mmu.direct_map;
Xiao Guangrongfb67e142010-12-07 10:35:25 +08003521 arch.cr3 = vcpu->arch.mmu.get_cr3(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003522
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003523 return kvm_setup_async_pf(vcpu, gva, kvm_vcpu_gfn_to_hva(vcpu, gfn), &arch);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003524}
3525
3526static bool can_do_async_pf(struct kvm_vcpu *vcpu)
3527{
Paolo Bonzini35754c92015-07-29 12:05:37 +02003528 if (unlikely(!lapic_in_kernel(vcpu) ||
Gleb Natapovaf585b92010-10-14 11:22:46 +02003529 kvm_event_needs_reinjection(vcpu)))
3530 return false;
3531
3532 return kvm_x86_ops->interrupt_allowed(vcpu);
3533}
3534
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003535static bool try_async_pf(struct kvm_vcpu *vcpu, bool prefault, gfn_t gfn,
Dan Williamsba049e92016-01-15 16:56:11 -08003536 gva_t gva, kvm_pfn_t *pfn, bool write, bool *writable)
Gleb Natapovaf585b92010-10-14 11:22:46 +02003537{
Paolo Bonzini35204692015-04-02 11:20:48 +02003538 struct kvm_memory_slot *slot;
Gleb Natapovaf585b92010-10-14 11:22:46 +02003539 bool async;
3540
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003541 slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
Paolo Bonzini35204692015-04-02 11:20:48 +02003542 async = false;
3543 *pfn = __gfn_to_pfn_memslot(slot, gfn, false, &async, write, writable);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003544 if (!async)
3545 return false; /* *pfn has correct page already */
3546
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003547 if (!prefault && can_do_async_pf(vcpu)) {
Xiao Guangrongc9b263d2010-11-01 16:58:43 +08003548 trace_kvm_try_async_get_page(gva, gfn);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003549 if (kvm_find_async_pf_gfn(vcpu, gfn)) {
3550 trace_kvm_async_pf_doublefault(gva, gfn);
3551 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
3552 return true;
3553 } else if (kvm_arch_setup_async_pf(vcpu, gva, gfn))
3554 return true;
3555 }
3556
Paolo Bonzini35204692015-04-02 11:20:48 +02003557 *pfn = __gfn_to_pfn_memslot(slot, gfn, false, NULL, write, writable);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003558 return false;
3559}
3560
Xiao Guangrong6a39bbc2015-06-15 16:55:35 +08003561static bool
3562check_hugepage_cache_consistency(struct kvm_vcpu *vcpu, gfn_t gfn, int level)
3563{
3564 int page_num = KVM_PAGES_PER_HPAGE(level);
3565
3566 gfn &= ~(page_num - 1);
3567
3568 return kvm_mtrr_check_gfn_range_consistency(vcpu, gfn, page_num);
3569}
3570
Gleb Natapov56028d02010-10-17 18:13:42 +02003571static int tdp_page_fault(struct kvm_vcpu *vcpu, gva_t gpa, u32 error_code,
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003572 bool prefault)
Joerg Roedelfb72d162008-02-07 13:47:44 +01003573{
Dan Williamsba049e92016-01-15 16:56:11 -08003574 kvm_pfn_t pfn;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003575 int r;
Joerg Roedel852e3c12009-07-27 16:30:44 +02003576 int level;
Takuya Yoshikawacd1872f2015-10-16 17:04:13 +09003577 bool force_pt_level;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03003578 gfn_t gfn = gpa >> PAGE_SHIFT;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003579 unsigned long mmu_seq;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02003580 int write = error_code & PFERR_WRITE_MASK;
3581 bool map_writable;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003582
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003583 MMU_WARN_ON(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
Joerg Roedelfb72d162008-02-07 13:47:44 +01003584
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08003585 if (page_fault_handle_page_track(vcpu, error_code, gfn))
3586 return 1;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003587
Joerg Roedelfb72d162008-02-07 13:47:44 +01003588 r = mmu_topup_memory_caches(vcpu);
3589 if (r)
3590 return r;
3591
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003592 force_pt_level = !check_hugepage_cache_consistency(vcpu, gfn,
3593 PT_DIRECTORY_LEVEL);
3594 level = mapping_level(vcpu, gfn, &force_pt_level);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003595 if (likely(!force_pt_level)) {
Xiao Guangrong6a39bbc2015-06-15 16:55:35 +08003596 if (level > PT_DIRECTORY_LEVEL &&
3597 !check_hugepage_cache_consistency(vcpu, gfn, level))
3598 level = PT_DIRECTORY_LEVEL;
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003599 gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1);
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003600 }
Joerg Roedel852e3c12009-07-27 16:30:44 +02003601
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003602 if (fast_page_fault(vcpu, gpa, level, error_code))
3603 return 0;
3604
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003605 mmu_seq = vcpu->kvm->mmu_notifier_seq;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03003606 smp_rmb();
Gleb Natapovaf585b92010-10-14 11:22:46 +02003607
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003608 if (try_async_pf(vcpu, prefault, gfn, gpa, &pfn, write, &map_writable))
Gleb Natapovaf585b92010-10-14 11:22:46 +02003609 return 0;
3610
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003611 if (handle_abnormal_pfn(vcpu, 0, gfn, pfn, ACC_ALL, &r))
3612 return r;
3613
Joerg Roedelfb72d162008-02-07 13:47:44 +01003614 spin_lock(&vcpu->kvm->mmu_lock);
Christoffer Dall8ca40a72012-10-14 23:10:18 -04003615 if (mmu_notifier_retry(vcpu->kvm, mmu_seq))
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003616 goto out_unlock;
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003617 make_mmu_pages_available(vcpu);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003618 if (likely(!force_pt_level))
3619 transparent_hugepage_adjust(vcpu, &gfn, &pfn, &level);
Takuya Yoshikawa7ee0e5b2015-11-20 17:42:23 +09003620 r = __direct_map(vcpu, write, map_writable, level, gfn, pfn, prefault);
Joerg Roedelfb72d162008-02-07 13:47:44 +01003621 spin_unlock(&vcpu->kvm->mmu_lock);
Joerg Roedelfb72d162008-02-07 13:47:44 +01003622
3623 return r;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003624
3625out_unlock:
3626 spin_unlock(&vcpu->kvm->mmu_lock);
3627 kvm_release_pfn_clean(pfn);
3628 return 0;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003629}
3630
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003631static void nonpaging_init_context(struct kvm_vcpu *vcpu,
3632 struct kvm_mmu *context)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003633{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003634 context->page_fault = nonpaging_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003635 context->gva_to_gpa = nonpaging_gva_to_gpa;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03003636 context->sync_page = nonpaging_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03003637 context->invlpg = nonpaging_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08003638 context->update_pte = nonpaging_update_pte;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08003639 context->root_level = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003640 context->shadow_root_level = PT32E_ROOT_LEVEL;
Avi Kivity17c3ba92007-06-04 15:58:30 +03003641 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02003642 context->direct_map = true;
Joerg Roedel2d48a982010-09-10 17:31:01 +02003643 context->nx = false;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003644}
3645
Paolo Bonzinid8d173d2013-10-02 16:56:11 +02003646void kvm_mmu_new_cr3(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003647{
Avi Kivitycea0f0e2007-01-05 16:36:43 -08003648 mmu_free_roots(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003649}
3650
Joerg Roedel5777ed32010-09-10 17:30:42 +02003651static unsigned long get_cr3(struct kvm_vcpu *vcpu)
3652{
Avi Kivity9f8fe502010-12-05 17:30:00 +02003653 return kvm_read_cr3(vcpu);
Joerg Roedel5777ed32010-09-10 17:30:42 +02003654}
3655
Avi Kivity6389ee92010-11-29 16:12:30 +02003656static void inject_page_fault(struct kvm_vcpu *vcpu,
3657 struct x86_exception *fault)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003658{
Avi Kivity6389ee92010-11-29 16:12:30 +02003659 vcpu->arch.mmu.inject_page_fault(vcpu, fault);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003660}
3661
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003662static bool sync_mmio_spte(struct kvm_vcpu *vcpu, u64 *sptep, gfn_t gfn,
Xiao Guangrongf2fd1252013-06-07 16:51:24 +08003663 unsigned access, int *nr_present)
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003664{
3665 if (unlikely(is_mmio_spte(*sptep))) {
3666 if (gfn != get_mmio_spte_gfn(*sptep)) {
3667 mmu_spte_clear_no_track(sptep);
3668 return true;
3669 }
3670
3671 (*nr_present)++;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003672 mark_mmio_spte(vcpu, sptep, gfn, access);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003673 return true;
3674 }
3675
3676 return false;
3677}
3678
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01003679static inline bool is_last_gpte(struct kvm_mmu *mmu,
3680 unsigned level, unsigned gpte)
Avi Kivity6fd01b72012-09-12 20:46:56 +03003681{
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01003682 /*
3683 * PT_PAGE_TABLE_LEVEL always terminates. The RHS has bit 7 set
3684 * iff level <= PT_PAGE_TABLE_LEVEL, which for our purpose means
3685 * level == PT_PAGE_TABLE_LEVEL; set PT_PAGE_SIZE_MASK in gpte then.
3686 */
3687 gpte |= level - PT_PAGE_TABLE_LEVEL - 1;
Avi Kivity6fd01b72012-09-12 20:46:56 +03003688
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01003689 /*
3690 * The RHS has bit 7 set iff level < mmu->last_nonleaf_level.
3691 * If it is clear, there are no large pages at this level, so clear
3692 * PT_PAGE_SIZE_MASK in gpte if that is the case.
3693 */
3694 gpte &= level - mmu->last_nonleaf_level;
3695
3696 return gpte & PT_PAGE_SIZE_MASK;
Avi Kivity6fd01b72012-09-12 20:46:56 +03003697}
3698
Nadav Har'El37406aa2013-08-05 11:07:12 +03003699#define PTTYPE_EPT 18 /* arbitrary */
3700#define PTTYPE PTTYPE_EPT
3701#include "paging_tmpl.h"
3702#undef PTTYPE
3703
Avi Kivity6aa8b732006-12-10 02:21:36 -08003704#define PTTYPE 64
3705#include "paging_tmpl.h"
3706#undef PTTYPE
3707
3708#define PTTYPE 32
3709#include "paging_tmpl.h"
3710#undef PTTYPE
3711
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003712static void
3713__reset_rsvds_bits_mask(struct kvm_vcpu *vcpu,
3714 struct rsvd_bits_validate *rsvd_check,
3715 int maxphyaddr, int level, bool nx, bool gbpages,
Paolo Bonzini6fec2142015-09-22 23:02:14 +02003716 bool pse, bool amd)
Dong, Eddie82725b22009-03-30 16:21:08 +08003717{
Dong, Eddie82725b22009-03-30 16:21:08 +08003718 u64 exb_bit_rsvd = 0;
Nadav Amit5f7dde72014-05-07 15:32:50 +03003719 u64 gbpages_bit_rsvd = 0;
Paolo Bonzinia0c0feb2014-09-02 13:24:12 +02003720 u64 nonleaf_bit8_rsvd = 0;
Dong, Eddie82725b22009-03-30 16:21:08 +08003721
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003722 rsvd_check->bad_mt_xwr = 0;
Yang Zhang25d92082013-08-06 12:00:32 +03003723
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003724 if (!nx)
Dong, Eddie82725b22009-03-30 16:21:08 +08003725 exb_bit_rsvd = rsvd_bits(63, 63);
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003726 if (!gbpages)
Nadav Amit5f7dde72014-05-07 15:32:50 +03003727 gbpages_bit_rsvd = rsvd_bits(7, 7);
Paolo Bonzinia0c0feb2014-09-02 13:24:12 +02003728
3729 /*
3730 * Non-leaf PML4Es and PDPEs reserve bit 8 (which would be the G bit for
3731 * leaf entries) on AMD CPUs only.
3732 */
Paolo Bonzini6fec2142015-09-22 23:02:14 +02003733 if (amd)
Paolo Bonzinia0c0feb2014-09-02 13:24:12 +02003734 nonleaf_bit8_rsvd = rsvd_bits(8, 8);
3735
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003736 switch (level) {
Dong, Eddie82725b22009-03-30 16:21:08 +08003737 case PT32_ROOT_LEVEL:
3738 /* no rsvd bits for 2 level 4K page table entries */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003739 rsvd_check->rsvd_bits_mask[0][1] = 0;
3740 rsvd_check->rsvd_bits_mask[0][0] = 0;
3741 rsvd_check->rsvd_bits_mask[1][0] =
3742 rsvd_check->rsvd_bits_mask[0][0];
Xiao Guangrongf815bce2010-03-19 17:58:53 +08003743
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003744 if (!pse) {
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003745 rsvd_check->rsvd_bits_mask[1][1] = 0;
Xiao Guangrongf815bce2010-03-19 17:58:53 +08003746 break;
3747 }
3748
Dong, Eddie82725b22009-03-30 16:21:08 +08003749 if (is_cpuid_PSE36())
3750 /* 36bits PSE 4MB page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003751 rsvd_check->rsvd_bits_mask[1][1] = rsvd_bits(17, 21);
Dong, Eddie82725b22009-03-30 16:21:08 +08003752 else
3753 /* 32 bits PSE 4MB page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003754 rsvd_check->rsvd_bits_mask[1][1] = rsvd_bits(13, 21);
Dong, Eddie82725b22009-03-30 16:21:08 +08003755 break;
3756 case PT32E_ROOT_LEVEL:
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003757 rsvd_check->rsvd_bits_mask[0][2] =
Dong, Eddie20c466b2009-03-31 23:03:45 +08003758 rsvd_bits(maxphyaddr, 63) |
Nadav Amitcd9ae5f2014-04-04 06:31:04 +03003759 rsvd_bits(5, 8) | rsvd_bits(1, 2); /* PDPTE */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003760 rsvd_check->rsvd_bits_mask[0][1] = exb_bit_rsvd |
Sheng Yang4c26b4c2009-04-02 10:28:37 +08003761 rsvd_bits(maxphyaddr, 62); /* PDE */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003762 rsvd_check->rsvd_bits_mask[0][0] = exb_bit_rsvd |
Dong, Eddie82725b22009-03-30 16:21:08 +08003763 rsvd_bits(maxphyaddr, 62); /* PTE */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003764 rsvd_check->rsvd_bits_mask[1][1] = exb_bit_rsvd |
Dong, Eddie82725b22009-03-30 16:21:08 +08003765 rsvd_bits(maxphyaddr, 62) |
3766 rsvd_bits(13, 20); /* large page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003767 rsvd_check->rsvd_bits_mask[1][0] =
3768 rsvd_check->rsvd_bits_mask[0][0];
Dong, Eddie82725b22009-03-30 16:21:08 +08003769 break;
3770 case PT64_ROOT_LEVEL:
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003771 rsvd_check->rsvd_bits_mask[0][3] = exb_bit_rsvd |
3772 nonleaf_bit8_rsvd | rsvd_bits(7, 7) |
Sheng Yang4c26b4c2009-04-02 10:28:37 +08003773 rsvd_bits(maxphyaddr, 51);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003774 rsvd_check->rsvd_bits_mask[0][2] = exb_bit_rsvd |
3775 nonleaf_bit8_rsvd | gbpages_bit_rsvd |
Dong, Eddie82725b22009-03-30 16:21:08 +08003776 rsvd_bits(maxphyaddr, 51);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003777 rsvd_check->rsvd_bits_mask[0][1] = exb_bit_rsvd |
3778 rsvd_bits(maxphyaddr, 51);
3779 rsvd_check->rsvd_bits_mask[0][0] = exb_bit_rsvd |
3780 rsvd_bits(maxphyaddr, 51);
3781 rsvd_check->rsvd_bits_mask[1][3] =
3782 rsvd_check->rsvd_bits_mask[0][3];
3783 rsvd_check->rsvd_bits_mask[1][2] = exb_bit_rsvd |
Nadav Amit5f7dde72014-05-07 15:32:50 +03003784 gbpages_bit_rsvd | rsvd_bits(maxphyaddr, 51) |
Joerg Roedele04da982009-07-27 16:30:45 +02003785 rsvd_bits(13, 29);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003786 rsvd_check->rsvd_bits_mask[1][1] = exb_bit_rsvd |
Sheng Yang4c26b4c2009-04-02 10:28:37 +08003787 rsvd_bits(maxphyaddr, 51) |
3788 rsvd_bits(13, 20); /* large page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003789 rsvd_check->rsvd_bits_mask[1][0] =
3790 rsvd_check->rsvd_bits_mask[0][0];
Dong, Eddie82725b22009-03-30 16:21:08 +08003791 break;
3792 }
3793}
3794
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003795static void reset_rsvds_bits_mask(struct kvm_vcpu *vcpu,
3796 struct kvm_mmu *context)
3797{
3798 __reset_rsvds_bits_mask(vcpu, &context->guest_rsvd_check,
3799 cpuid_maxphyaddr(vcpu), context->root_level,
3800 context->nx, guest_cpuid_has_gbpages(vcpu),
Paolo Bonzini6fec2142015-09-22 23:02:14 +02003801 is_pse(vcpu), guest_cpuid_is_amd(vcpu));
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003802}
3803
Xiao Guangrong81b8eeb2015-08-05 12:04:23 +08003804static void
3805__reset_rsvds_bits_mask_ept(struct rsvd_bits_validate *rsvd_check,
3806 int maxphyaddr, bool execonly)
Yang Zhang25d92082013-08-06 12:00:32 +03003807{
Paolo Bonzini951f9fd2015-09-23 10:34:26 +02003808 u64 bad_mt_xwr;
Yang Zhang25d92082013-08-06 12:00:32 +03003809
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003810 rsvd_check->rsvd_bits_mask[0][3] =
Yang Zhang25d92082013-08-06 12:00:32 +03003811 rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 7);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003812 rsvd_check->rsvd_bits_mask[0][2] =
Yang Zhang25d92082013-08-06 12:00:32 +03003813 rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 6);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003814 rsvd_check->rsvd_bits_mask[0][1] =
Yang Zhang25d92082013-08-06 12:00:32 +03003815 rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 6);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003816 rsvd_check->rsvd_bits_mask[0][0] = rsvd_bits(maxphyaddr, 51);
Yang Zhang25d92082013-08-06 12:00:32 +03003817
3818 /* large page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003819 rsvd_check->rsvd_bits_mask[1][3] = rsvd_check->rsvd_bits_mask[0][3];
3820 rsvd_check->rsvd_bits_mask[1][2] =
Yang Zhang25d92082013-08-06 12:00:32 +03003821 rsvd_bits(maxphyaddr, 51) | rsvd_bits(12, 29);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003822 rsvd_check->rsvd_bits_mask[1][1] =
Yang Zhang25d92082013-08-06 12:00:32 +03003823 rsvd_bits(maxphyaddr, 51) | rsvd_bits(12, 20);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003824 rsvd_check->rsvd_bits_mask[1][0] = rsvd_check->rsvd_bits_mask[0][0];
Yang Zhang25d92082013-08-06 12:00:32 +03003825
Paolo Bonzini951f9fd2015-09-23 10:34:26 +02003826 bad_mt_xwr = 0xFFull << (2 * 8); /* bits 3..5 must not be 2 */
3827 bad_mt_xwr |= 0xFFull << (3 * 8); /* bits 3..5 must not be 3 */
3828 bad_mt_xwr |= 0xFFull << (7 * 8); /* bits 3..5 must not be 7 */
3829 bad_mt_xwr |= REPEAT_BYTE(1ull << 2); /* bits 0..2 must not be 010 */
3830 bad_mt_xwr |= REPEAT_BYTE(1ull << 6); /* bits 0..2 must not be 110 */
3831 if (!execonly) {
3832 /* bits 0..2 must not be 100 unless VMX capabilities allow it */
3833 bad_mt_xwr |= REPEAT_BYTE(1ull << 4);
Yang Zhang25d92082013-08-06 12:00:32 +03003834 }
Paolo Bonzini951f9fd2015-09-23 10:34:26 +02003835 rsvd_check->bad_mt_xwr = bad_mt_xwr;
Yang Zhang25d92082013-08-06 12:00:32 +03003836}
3837
Xiao Guangrong81b8eeb2015-08-05 12:04:23 +08003838static void reset_rsvds_bits_mask_ept(struct kvm_vcpu *vcpu,
3839 struct kvm_mmu *context, bool execonly)
3840{
3841 __reset_rsvds_bits_mask_ept(&context->guest_rsvd_check,
3842 cpuid_maxphyaddr(vcpu), execonly);
3843}
3844
Xiao Guangrongc258b622015-08-05 12:04:24 +08003845/*
3846 * the page table on host is the shadow page table for the page
3847 * table in guest or amd nested guest, its mmu features completely
3848 * follow the features in guest.
3849 */
3850void
3851reset_shadow_zero_bits_mask(struct kvm_vcpu *vcpu, struct kvm_mmu *context)
3852{
Paolo Bonzini5f0b8192016-03-09 14:28:02 +01003853 bool uses_nx = context->nx || context->base_role.smep_andnot_wp;
3854
Paolo Bonzini6fec2142015-09-22 23:02:14 +02003855 /*
3856 * Passing "true" to the last argument is okay; it adds a check
3857 * on bit 8 of the SPTEs which KVM doesn't use anyway.
3858 */
Xiao Guangrongc258b622015-08-05 12:04:24 +08003859 __reset_rsvds_bits_mask(vcpu, &context->shadow_zero_check,
3860 boot_cpu_data.x86_phys_bits,
Paolo Bonzini5f0b8192016-03-09 14:28:02 +01003861 context->shadow_root_level, uses_nx,
Paolo Bonzini6fec2142015-09-22 23:02:14 +02003862 guest_cpuid_has_gbpages(vcpu), is_pse(vcpu),
3863 true);
Xiao Guangrongc258b622015-08-05 12:04:24 +08003864}
3865EXPORT_SYMBOL_GPL(reset_shadow_zero_bits_mask);
3866
Paolo Bonzini6fec2142015-09-22 23:02:14 +02003867static inline bool boot_cpu_is_amd(void)
3868{
3869 WARN_ON_ONCE(!tdp_enabled);
3870 return shadow_x_mask == 0;
3871}
3872
Xiao Guangrongc258b622015-08-05 12:04:24 +08003873/*
3874 * the direct page table on host, use as much mmu features as
3875 * possible, however, kvm currently does not do execution-protection.
3876 */
3877static void
3878reset_tdp_shadow_zero_bits_mask(struct kvm_vcpu *vcpu,
3879 struct kvm_mmu *context)
3880{
Paolo Bonzini6fec2142015-09-22 23:02:14 +02003881 if (boot_cpu_is_amd())
Xiao Guangrongc258b622015-08-05 12:04:24 +08003882 __reset_rsvds_bits_mask(vcpu, &context->shadow_zero_check,
3883 boot_cpu_data.x86_phys_bits,
3884 context->shadow_root_level, false,
Borislav Petkovb8291adc2016-03-29 17:41:58 +02003885 boot_cpu_has(X86_FEATURE_GBPAGES),
3886 true, true);
Xiao Guangrongc258b622015-08-05 12:04:24 +08003887 else
3888 __reset_rsvds_bits_mask_ept(&context->shadow_zero_check,
3889 boot_cpu_data.x86_phys_bits,
3890 false);
3891
3892}
3893
3894/*
3895 * as the comments in reset_shadow_zero_bits_mask() except it
3896 * is the shadow page table for intel nested guest.
3897 */
3898static void
3899reset_ept_shadow_zero_bits_mask(struct kvm_vcpu *vcpu,
3900 struct kvm_mmu *context, bool execonly)
3901{
3902 __reset_rsvds_bits_mask_ept(&context->shadow_zero_check,
3903 boot_cpu_data.x86_phys_bits, execonly);
3904}
3905
Xiao Guangrongedc90b72015-05-11 22:55:21 +08003906static void update_permission_bitmask(struct kvm_vcpu *vcpu,
3907 struct kvm_mmu *mmu, bool ept)
Avi Kivity97d64b72012-09-12 14:52:00 +03003908{
3909 unsigned bit, byte, pfec;
3910 u8 map;
Feng Wu66386ad2014-04-01 17:56:48 +08003911 bool fault, x, w, u, wf, uf, ff, smapf, cr4_smap, cr4_smep, smap = 0;
Avi Kivity97d64b72012-09-12 14:52:00 +03003912
Feng Wu66386ad2014-04-01 17:56:48 +08003913 cr4_smep = kvm_read_cr4_bits(vcpu, X86_CR4_SMEP);
Feng Wu97ec8c02014-04-01 17:46:34 +08003914 cr4_smap = kvm_read_cr4_bits(vcpu, X86_CR4_SMAP);
Avi Kivity97d64b72012-09-12 14:52:00 +03003915 for (byte = 0; byte < ARRAY_SIZE(mmu->permissions); ++byte) {
3916 pfec = byte << 1;
3917 map = 0;
3918 wf = pfec & PFERR_WRITE_MASK;
3919 uf = pfec & PFERR_USER_MASK;
3920 ff = pfec & PFERR_FETCH_MASK;
Feng Wu97ec8c02014-04-01 17:46:34 +08003921 /*
3922 * PFERR_RSVD_MASK bit is set in PFEC if the access is not
3923 * subject to SMAP restrictions, and cleared otherwise. The
3924 * bit is only meaningful if the SMAP bit is set in CR4.
3925 */
3926 smapf = !(pfec & PFERR_RSVD_MASK);
Avi Kivity97d64b72012-09-12 14:52:00 +03003927 for (bit = 0; bit < 8; ++bit) {
3928 x = bit & ACC_EXEC_MASK;
3929 w = bit & ACC_WRITE_MASK;
3930 u = bit & ACC_USER_MASK;
3931
Yang Zhang25d92082013-08-06 12:00:32 +03003932 if (!ept) {
3933 /* Not really needed: !nx will cause pte.nx to fault */
3934 x |= !mmu->nx;
3935 /* Allow supervisor writes if !cr0.wp */
3936 w |= !is_write_protection(vcpu) && !uf;
3937 /* Disallow supervisor fetches of user code if cr4.smep */
Feng Wu66386ad2014-04-01 17:56:48 +08003938 x &= !(cr4_smep && u && !uf);
Feng Wu97ec8c02014-04-01 17:46:34 +08003939
3940 /*
3941 * SMAP:kernel-mode data accesses from user-mode
3942 * mappings should fault. A fault is considered
3943 * as a SMAP violation if all of the following
3944 * conditions are ture:
3945 * - X86_CR4_SMAP is set in CR4
3946 * - An user page is accessed
3947 * - Page fault in kernel mode
3948 * - if CPL = 3 or X86_EFLAGS_AC is clear
3949 *
3950 * Here, we cover the first three conditions.
3951 * The fourth is computed dynamically in
3952 * permission_fault() and is in smapf.
3953 *
3954 * Also, SMAP does not affect instruction
3955 * fetches, add the !ff check here to make it
3956 * clearer.
3957 */
3958 smap = cr4_smap && u && !uf && !ff;
Bandan Dasd95c5562016-07-12 18:18:51 -04003959 }
Avi Kivity97d64b72012-09-12 14:52:00 +03003960
Feng Wu97ec8c02014-04-01 17:46:34 +08003961 fault = (ff && !x) || (uf && !u) || (wf && !w) ||
3962 (smapf && smap);
Avi Kivity97d64b72012-09-12 14:52:00 +03003963 map |= fault << bit;
3964 }
3965 mmu->permissions[byte] = map;
3966 }
3967}
3968
Huaitong Han2d344102016-03-22 16:51:19 +08003969/*
3970* PKU is an additional mechanism by which the paging controls access to
3971* user-mode addresses based on the value in the PKRU register. Protection
3972* key violations are reported through a bit in the page fault error code.
3973* Unlike other bits of the error code, the PK bit is not known at the
3974* call site of e.g. gva_to_gpa; it must be computed directly in
3975* permission_fault based on two bits of PKRU, on some machine state (CR4,
3976* CR0, EFER, CPL), and on other bits of the error code and the page tables.
3977*
3978* In particular the following conditions come from the error code, the
3979* page tables and the machine state:
3980* - PK is always zero unless CR4.PKE=1 and EFER.LMA=1
3981* - PK is always zero if RSVD=1 (reserved bit set) or F=1 (instruction fetch)
3982* - PK is always zero if U=0 in the page tables
3983* - PKRU.WD is ignored if CR0.WP=0 and the access is a supervisor access.
3984*
3985* The PKRU bitmask caches the result of these four conditions. The error
3986* code (minus the P bit) and the page table's U bit form an index into the
3987* PKRU bitmask. Two bits of the PKRU bitmask are then extracted and ANDed
3988* with the two bits of the PKRU register corresponding to the protection key.
3989* For the first three conditions above the bits will be 00, thus masking
3990* away both AD and WD. For all reads or if the last condition holds, WD
3991* only will be masked away.
3992*/
3993static void update_pkru_bitmask(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
3994 bool ept)
3995{
3996 unsigned bit;
3997 bool wp;
3998
3999 if (ept) {
4000 mmu->pkru_mask = 0;
4001 return;
4002 }
4003
4004 /* PKEY is enabled only if CR4.PKE and EFER.LMA are both set. */
4005 if (!kvm_read_cr4_bits(vcpu, X86_CR4_PKE) || !is_long_mode(vcpu)) {
4006 mmu->pkru_mask = 0;
4007 return;
4008 }
4009
4010 wp = is_write_protection(vcpu);
4011
4012 for (bit = 0; bit < ARRAY_SIZE(mmu->permissions); ++bit) {
4013 unsigned pfec, pkey_bits;
4014 bool check_pkey, check_write, ff, uf, wf, pte_user;
4015
4016 pfec = bit << 1;
4017 ff = pfec & PFERR_FETCH_MASK;
4018 uf = pfec & PFERR_USER_MASK;
4019 wf = pfec & PFERR_WRITE_MASK;
4020
4021 /* PFEC.RSVD is replaced by ACC_USER_MASK. */
4022 pte_user = pfec & PFERR_RSVD_MASK;
4023
4024 /*
4025 * Only need to check the access which is not an
4026 * instruction fetch and is to a user page.
4027 */
4028 check_pkey = (!ff && pte_user);
4029 /*
4030 * write access is controlled by PKRU if it is a
4031 * user access or CR0.WP = 1.
4032 */
4033 check_write = check_pkey && wf && (uf || wp);
4034
4035 /* PKRU.AD stops both read and write access. */
4036 pkey_bits = !!check_pkey;
4037 /* PKRU.WD stops write access. */
4038 pkey_bits |= (!!check_write) << 1;
4039
4040 mmu->pkru_mask |= (pkey_bits & 3) << pfec;
4041 }
4042}
4043
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004044static void update_last_nonleaf_level(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu)
Avi Kivity6fd01b72012-09-12 20:46:56 +03004045{
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004046 unsigned root_level = mmu->root_level;
Avi Kivity6fd01b72012-09-12 20:46:56 +03004047
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004048 mmu->last_nonleaf_level = root_level;
4049 if (root_level == PT32_ROOT_LEVEL && is_pse(vcpu))
4050 mmu->last_nonleaf_level++;
Avi Kivity6fd01b72012-09-12 20:46:56 +03004051}
4052
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004053static void paging64_init_context_common(struct kvm_vcpu *vcpu,
4054 struct kvm_mmu *context,
4055 int level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004056{
Joerg Roedel2d48a982010-09-10 17:31:01 +02004057 context->nx = is_nx(vcpu);
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004058 context->root_level = level;
Joerg Roedel2d48a982010-09-10 17:31:01 +02004059
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004060 reset_rsvds_bits_mask(vcpu, context);
Yang Zhang25d92082013-08-06 12:00:32 +03004061 update_permission_bitmask(vcpu, context, false);
Huaitong Han2d344102016-03-22 16:51:19 +08004062 update_pkru_bitmask(vcpu, context, false);
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004063 update_last_nonleaf_level(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004064
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02004065 MMU_WARN_ON(!is_pae(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004066 context->page_fault = paging64_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004067 context->gva_to_gpa = paging64_gva_to_gpa;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03004068 context->sync_page = paging64_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03004069 context->invlpg = paging64_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08004070 context->update_pte = paging64_update_pte;
Avi Kivity17ac10a2007-01-05 16:36:40 -08004071 context->shadow_root_level = level;
Avi Kivity17c3ba92007-06-04 15:58:30 +03004072 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02004073 context->direct_map = false;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004074}
4075
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004076static void paging64_init_context(struct kvm_vcpu *vcpu,
4077 struct kvm_mmu *context)
Avi Kivity17ac10a2007-01-05 16:36:40 -08004078{
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004079 paging64_init_context_common(vcpu, context, PT64_ROOT_LEVEL);
Avi Kivity17ac10a2007-01-05 16:36:40 -08004080}
4081
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004082static void paging32_init_context(struct kvm_vcpu *vcpu,
4083 struct kvm_mmu *context)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004084{
Joerg Roedel2d48a982010-09-10 17:31:01 +02004085 context->nx = false;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004086 context->root_level = PT32_ROOT_LEVEL;
Joerg Roedel2d48a982010-09-10 17:31:01 +02004087
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004088 reset_rsvds_bits_mask(vcpu, context);
Yang Zhang25d92082013-08-06 12:00:32 +03004089 update_permission_bitmask(vcpu, context, false);
Huaitong Han2d344102016-03-22 16:51:19 +08004090 update_pkru_bitmask(vcpu, context, false);
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004091 update_last_nonleaf_level(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004092
Avi Kivity6aa8b732006-12-10 02:21:36 -08004093 context->page_fault = paging32_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004094 context->gva_to_gpa = paging32_gva_to_gpa;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03004095 context->sync_page = paging32_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03004096 context->invlpg = paging32_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08004097 context->update_pte = paging32_update_pte;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004098 context->shadow_root_level = PT32E_ROOT_LEVEL;
Avi Kivity17c3ba92007-06-04 15:58:30 +03004099 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02004100 context->direct_map = false;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004101}
4102
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004103static void paging32E_init_context(struct kvm_vcpu *vcpu,
4104 struct kvm_mmu *context)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004105{
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004106 paging64_init_context_common(vcpu, context, PT32E_ROOT_LEVEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004107}
4108
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004109static void init_kvm_tdp_mmu(struct kvm_vcpu *vcpu)
Joerg Roedelfb72d162008-02-07 13:47:44 +01004110{
Paolo Bonziniad896af2013-10-02 16:56:14 +02004111 struct kvm_mmu *context = &vcpu->arch.mmu;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004112
Avi Kivityc445f8e2010-12-21 16:26:01 +02004113 context->base_role.word = 0;
Paolo Bonzini699023e2015-05-18 15:03:39 +02004114 context->base_role.smm = is_smm(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004115 context->page_fault = tdp_page_fault;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03004116 context->sync_page = nonpaging_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03004117 context->invlpg = nonpaging_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08004118 context->update_pte = nonpaging_update_pte;
Sheng Yang67253af2008-04-25 10:20:22 +08004119 context->shadow_root_level = kvm_x86_ops->get_tdp_level();
Joerg Roedelfb72d162008-02-07 13:47:44 +01004120 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02004121 context->direct_map = true;
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02004122 context->set_cr3 = kvm_x86_ops->set_tdp_cr3;
Joerg Roedel5777ed32010-09-10 17:30:42 +02004123 context->get_cr3 = get_cr3;
Avi Kivitye4e517b2011-07-28 11:36:17 +03004124 context->get_pdptr = kvm_pdptr_read;
Joerg Roedelcb659db2010-09-10 17:30:43 +02004125 context->inject_page_fault = kvm_inject_page_fault;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004126
4127 if (!is_paging(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004128 context->nx = false;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004129 context->gva_to_gpa = nonpaging_gva_to_gpa;
4130 context->root_level = 0;
4131 } else if (is_long_mode(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004132 context->nx = is_nx(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004133 context->root_level = PT64_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004134 reset_rsvds_bits_mask(vcpu, context);
4135 context->gva_to_gpa = paging64_gva_to_gpa;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004136 } else if (is_pae(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004137 context->nx = is_nx(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004138 context->root_level = PT32E_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004139 reset_rsvds_bits_mask(vcpu, context);
4140 context->gva_to_gpa = paging64_gva_to_gpa;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004141 } else {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004142 context->nx = false;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004143 context->root_level = PT32_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004144 reset_rsvds_bits_mask(vcpu, context);
4145 context->gva_to_gpa = paging32_gva_to_gpa;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004146 }
4147
Yang Zhang25d92082013-08-06 12:00:32 +03004148 update_permission_bitmask(vcpu, context, false);
Huaitong Han2d344102016-03-22 16:51:19 +08004149 update_pkru_bitmask(vcpu, context, false);
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004150 update_last_nonleaf_level(vcpu, context);
Xiao Guangrongc258b622015-08-05 12:04:24 +08004151 reset_tdp_shadow_zero_bits_mask(vcpu, context);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004152}
4153
Paolo Bonziniad896af2013-10-02 16:56:14 +02004154void kvm_init_shadow_mmu(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004155{
Avi Kivity411c5882011-06-06 16:11:54 +03004156 bool smep = kvm_read_cr4_bits(vcpu, X86_CR4_SMEP);
Xiao Guangrongedc90b72015-05-11 22:55:21 +08004157 bool smap = kvm_read_cr4_bits(vcpu, X86_CR4_SMAP);
Paolo Bonziniad896af2013-10-02 16:56:14 +02004158 struct kvm_mmu *context = &vcpu->arch.mmu;
4159
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02004160 MMU_WARN_ON(VALID_PAGE(context->root_hpa));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004161
4162 if (!is_paging(vcpu))
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004163 nonpaging_init_context(vcpu, context);
Avi Kivitya9058ec2006-12-29 16:49:37 -08004164 else if (is_long_mode(vcpu))
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004165 paging64_init_context(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004166 else if (is_pae(vcpu))
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004167 paging32E_init_context(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004168 else
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004169 paging32_init_context(vcpu, context);
Avi Kivitya770f6f2008-12-21 19:20:09 +02004170
Paolo Bonziniad896af2013-10-02 16:56:14 +02004171 context->base_role.nxe = is_nx(vcpu);
4172 context->base_role.cr4_pae = !!is_pae(vcpu);
4173 context->base_role.cr0_wp = is_write_protection(vcpu);
4174 context->base_role.smep_andnot_wp
Avi Kivity411c5882011-06-06 16:11:54 +03004175 = smep && !is_write_protection(vcpu);
Xiao Guangrongedc90b72015-05-11 22:55:21 +08004176 context->base_role.smap_andnot_wp
4177 = smap && !is_write_protection(vcpu);
Paolo Bonzini699023e2015-05-18 15:03:39 +02004178 context->base_role.smm = is_smm(vcpu);
Xiao Guangrongc258b622015-08-05 12:04:24 +08004179 reset_shadow_zero_bits_mask(vcpu, context);
Joerg Roedel52fde8d2010-09-10 17:30:44 +02004180}
4181EXPORT_SYMBOL_GPL(kvm_init_shadow_mmu);
4182
Paolo Bonziniad896af2013-10-02 16:56:14 +02004183void kvm_init_shadow_ept_mmu(struct kvm_vcpu *vcpu, bool execonly)
Nadav Har'El155a97a2013-08-05 11:07:16 +03004184{
Paolo Bonziniad896af2013-10-02 16:56:14 +02004185 struct kvm_mmu *context = &vcpu->arch.mmu;
4186
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02004187 MMU_WARN_ON(VALID_PAGE(context->root_hpa));
Nadav Har'El155a97a2013-08-05 11:07:16 +03004188
4189 context->shadow_root_level = kvm_x86_ops->get_tdp_level();
4190
4191 context->nx = true;
Nadav Har'El155a97a2013-08-05 11:07:16 +03004192 context->page_fault = ept_page_fault;
4193 context->gva_to_gpa = ept_gva_to_gpa;
4194 context->sync_page = ept_sync_page;
4195 context->invlpg = ept_invlpg;
4196 context->update_pte = ept_update_pte;
Nadav Har'El155a97a2013-08-05 11:07:16 +03004197 context->root_level = context->shadow_root_level;
4198 context->root_hpa = INVALID_PAGE;
4199 context->direct_map = false;
4200
4201 update_permission_bitmask(vcpu, context, true);
Huaitong Han2d344102016-03-22 16:51:19 +08004202 update_pkru_bitmask(vcpu, context, true);
Nadav Har'El155a97a2013-08-05 11:07:16 +03004203 reset_rsvds_bits_mask_ept(vcpu, context, execonly);
Xiao Guangrongc258b622015-08-05 12:04:24 +08004204 reset_ept_shadow_zero_bits_mask(vcpu, context, execonly);
Nadav Har'El155a97a2013-08-05 11:07:16 +03004205}
4206EXPORT_SYMBOL_GPL(kvm_init_shadow_ept_mmu);
4207
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004208static void init_kvm_softmmu(struct kvm_vcpu *vcpu)
Joerg Roedel52fde8d2010-09-10 17:30:44 +02004209{
Paolo Bonziniad896af2013-10-02 16:56:14 +02004210 struct kvm_mmu *context = &vcpu->arch.mmu;
4211
4212 kvm_init_shadow_mmu(vcpu);
4213 context->set_cr3 = kvm_x86_ops->set_cr3;
4214 context->get_cr3 = get_cr3;
4215 context->get_pdptr = kvm_pdptr_read;
4216 context->inject_page_fault = kvm_inject_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004217}
4218
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004219static void init_kvm_nested_mmu(struct kvm_vcpu *vcpu)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004220{
4221 struct kvm_mmu *g_context = &vcpu->arch.nested_mmu;
4222
4223 g_context->get_cr3 = get_cr3;
Avi Kivitye4e517b2011-07-28 11:36:17 +03004224 g_context->get_pdptr = kvm_pdptr_read;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004225 g_context->inject_page_fault = kvm_inject_page_fault;
4226
4227 /*
David Matlack0af25932015-12-30 08:26:17 -08004228 * Note that arch.mmu.gva_to_gpa translates l2_gpa to l1_gpa using
4229 * L1's nested page tables (e.g. EPT12). The nested translation
4230 * of l2_gva to l1_gpa is done by arch.nested_mmu.gva_to_gpa using
4231 * L2's page tables as the first level of translation and L1's
4232 * nested page tables as the second level of translation. Basically
4233 * the gva_to_gpa functions between mmu and nested_mmu are swapped.
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004234 */
4235 if (!is_paging(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004236 g_context->nx = false;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004237 g_context->root_level = 0;
4238 g_context->gva_to_gpa = nonpaging_gva_to_gpa_nested;
4239 } else if (is_long_mode(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004240 g_context->nx = is_nx(vcpu);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004241 g_context->root_level = PT64_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004242 reset_rsvds_bits_mask(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004243 g_context->gva_to_gpa = paging64_gva_to_gpa_nested;
4244 } else if (is_pae(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004245 g_context->nx = is_nx(vcpu);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004246 g_context->root_level = PT32E_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004247 reset_rsvds_bits_mask(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004248 g_context->gva_to_gpa = paging64_gva_to_gpa_nested;
4249 } else {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004250 g_context->nx = false;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004251 g_context->root_level = PT32_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004252 reset_rsvds_bits_mask(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004253 g_context->gva_to_gpa = paging32_gva_to_gpa_nested;
4254 }
4255
Yang Zhang25d92082013-08-06 12:00:32 +03004256 update_permission_bitmask(vcpu, g_context, false);
Huaitong Han2d344102016-03-22 16:51:19 +08004257 update_pkru_bitmask(vcpu, g_context, false);
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004258 update_last_nonleaf_level(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004259}
4260
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004261static void init_kvm_mmu(struct kvm_vcpu *vcpu)
Joerg Roedelfb72d162008-02-07 13:47:44 +01004262{
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004263 if (mmu_is_nested(vcpu))
Paolo Bonzinie0c6db32014-12-23 13:39:46 +01004264 init_kvm_nested_mmu(vcpu);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004265 else if (tdp_enabled)
Paolo Bonzinie0c6db32014-12-23 13:39:46 +01004266 init_kvm_tdp_mmu(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004267 else
Paolo Bonzinie0c6db32014-12-23 13:39:46 +01004268 init_kvm_softmmu(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004269}
4270
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004271void kvm_mmu_reset_context(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004272{
Paolo Bonzini95f93af2013-10-02 16:56:12 +02004273 kvm_mmu_unload(vcpu);
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004274 init_kvm_mmu(vcpu);
Avi Kivity17c3ba92007-06-04 15:58:30 +03004275}
Eddie Dong8668a3c2007-10-10 14:26:45 +08004276EXPORT_SYMBOL_GPL(kvm_mmu_reset_context);
Avi Kivity17c3ba92007-06-04 15:58:30 +03004277
4278int kvm_mmu_load(struct kvm_vcpu *vcpu)
4279{
Avi Kivity714b93d2007-01-05 16:36:53 -08004280 int r;
4281
Avi Kivitye2dec932007-01-05 16:36:54 -08004282 r = mmu_topup_memory_caches(vcpu);
Avi Kivity17c3ba92007-06-04 15:58:30 +03004283 if (r)
4284 goto out;
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03004285 r = mmu_alloc_roots(vcpu);
Takuya Yoshikawae2858b42013-05-09 15:45:12 +09004286 kvm_mmu_sync_roots(vcpu);
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03004287 if (r)
4288 goto out;
Sheng Yang3662cb12009-07-09 17:00:42 +08004289 /* set_cr3() should ensure TLB has been flushed */
Joerg Roedelf43addd2010-09-10 17:30:40 +02004290 vcpu->arch.mmu.set_cr3(vcpu, vcpu->arch.mmu.root_hpa);
Avi Kivity714b93d2007-01-05 16:36:53 -08004291out:
4292 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004293}
Avi Kivity17c3ba92007-06-04 15:58:30 +03004294EXPORT_SYMBOL_GPL(kvm_mmu_load);
4295
4296void kvm_mmu_unload(struct kvm_vcpu *vcpu)
4297{
4298 mmu_free_roots(vcpu);
Paolo Bonzini95f93af2013-10-02 16:56:12 +02004299 WARN_ON(VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity17c3ba92007-06-04 15:58:30 +03004300}
Joerg Roedel4b161842010-09-10 17:31:03 +02004301EXPORT_SYMBOL_GPL(kvm_mmu_unload);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004302
Avi Kivity00284252007-05-01 16:53:31 +03004303static void mmu_pte_write_new_pte(struct kvm_vcpu *vcpu,
Xiao Guangrong7c562522011-03-28 10:29:27 +08004304 struct kvm_mmu_page *sp, u64 *spte,
4305 const void *new)
Avi Kivity00284252007-05-01 16:53:31 +03004306{
Marcelo Tosatti30945382008-06-11 20:32:40 -03004307 if (sp->role.level != PT_PAGE_TABLE_LEVEL) {
Joerg Roedel7e4e4052009-07-27 16:30:46 +02004308 ++vcpu->kvm->stat.mmu_pde_zapped;
4309 return;
Marcelo Tosatti30945382008-06-11 20:32:40 -03004310 }
Avi Kivity00284252007-05-01 16:53:31 +03004311
Avi Kivity4cee5762007-11-18 16:37:07 +02004312 ++vcpu->kvm->stat.mmu_pte_updated;
Xiao Guangrong7c562522011-03-28 10:29:27 +08004313 vcpu->arch.mmu.update_pte(vcpu, sp, spte, new);
Avi Kivity00284252007-05-01 16:53:31 +03004314}
4315
Avi Kivity79539ce2007-11-21 02:06:21 +02004316static bool need_remote_flush(u64 old, u64 new)
4317{
4318 if (!is_shadow_present_pte(old))
4319 return false;
4320 if (!is_shadow_present_pte(new))
4321 return true;
4322 if ((old ^ new) & PT64_BASE_ADDR_MASK)
4323 return true;
Gleb Natapov53166222013-08-05 11:07:14 +03004324 old ^= shadow_nx_mask;
4325 new ^= shadow_nx_mask;
Avi Kivity79539ce2007-11-21 02:06:21 +02004326 return (old & ~new & PT64_PERM_MASK) != 0;
4327}
4328
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004329static u64 mmu_pte_write_fetch_gpte(struct kvm_vcpu *vcpu, gpa_t *gpa,
4330 const u8 *new, int *bytes)
Avi Kivityda4a00f2007-01-05 16:36:44 -08004331{
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004332 u64 gentry;
4333 int r;
Avi Kivity72016f32010-03-15 13:59:53 +02004334
Avi Kivity08e850c2010-03-15 13:59:57 +02004335 /*
4336 * Assume that the pte write on a page table of the same type
Xiao Guangrong49b26e22011-03-04 19:00:00 +08004337 * as the current vcpu paging mode since we update the sptes only
4338 * when they have the same mode.
Avi Kivity08e850c2010-03-15 13:59:57 +02004339 */
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004340 if (is_pae(vcpu) && *bytes == 4) {
Avi Kivity08e850c2010-03-15 13:59:57 +02004341 /* Handle a 32-bit guest writing two halves of a 64-bit gpte */
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004342 *gpa &= ~(gpa_t)7;
4343 *bytes = 8;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004344 r = kvm_vcpu_read_guest(vcpu, *gpa, &gentry, 8);
Avi Kivity08e850c2010-03-15 13:59:57 +02004345 if (r)
4346 gentry = 0;
4347 new = (const u8 *)&gentry;
4348 }
4349
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004350 switch (*bytes) {
Avi Kivity72016f32010-03-15 13:59:53 +02004351 case 4:
4352 gentry = *(const u32 *)new;
4353 break;
4354 case 8:
4355 gentry = *(const u64 *)new;
4356 break;
4357 default:
4358 gentry = 0;
4359 break;
4360 }
4361
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004362 return gentry;
4363}
4364
4365/*
4366 * If we're seeing too many writes to a page, it may no longer be a page table,
4367 * or we may be forking, in which case it is better to unmap the page.
4368 */
Xiao Guangronga138fe72011-12-16 18:18:10 +08004369static bool detect_write_flooding(struct kvm_mmu_page *sp)
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004370{
Xiao Guangronga30f47c2011-09-22 16:58:36 +08004371 /*
4372 * Skip write-flooding detected for the sp whose level is 1, because
4373 * it can become unsync, then the guest page is not write-protected.
4374 */
Davidlohr Buesof71fa312012-04-18 12:24:29 +02004375 if (sp->role.level == PT_PAGE_TABLE_LEVEL)
Xiao Guangronga30f47c2011-09-22 16:58:36 +08004376 return false;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004377
Xiao Guangronge5691a82016-02-24 17:51:12 +08004378 atomic_inc(&sp->write_flooding_count);
4379 return atomic_read(&sp->write_flooding_count) >= 3;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004380}
4381
4382/*
4383 * Misaligned accesses are too much trouble to fix up; also, they usually
4384 * indicate a page is not used as a page table.
4385 */
4386static bool detect_write_misaligned(struct kvm_mmu_page *sp, gpa_t gpa,
4387 int bytes)
4388{
4389 unsigned offset, pte_size, misaligned;
4390
4391 pgprintk("misaligned: gpa %llx bytes %d role %x\n",
4392 gpa, bytes, sp->role.word);
4393
4394 offset = offset_in_page(gpa);
4395 pte_size = sp->role.cr4_pae ? 8 : 4;
Xiao Guangrong5d9ca302011-09-22 16:57:55 +08004396
4397 /*
4398 * Sometimes, the OS only writes the last one bytes to update status
4399 * bits, for example, in linux, andb instruction is used in clear_bit().
4400 */
4401 if (!(offset & (pte_size - 1)) && bytes == 1)
4402 return false;
4403
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004404 misaligned = (offset ^ (offset + bytes - 1)) & ~(pte_size - 1);
4405 misaligned |= bytes < 4;
4406
4407 return misaligned;
4408}
4409
4410static u64 *get_written_sptes(struct kvm_mmu_page *sp, gpa_t gpa, int *nspte)
4411{
4412 unsigned page_offset, quadrant;
4413 u64 *spte;
4414 int level;
4415
4416 page_offset = offset_in_page(gpa);
4417 level = sp->role.level;
4418 *nspte = 1;
4419 if (!sp->role.cr4_pae) {
4420 page_offset <<= 1; /* 32->64 */
4421 /*
4422 * A 32-bit pde maps 4MB while the shadow pdes map
4423 * only 2MB. So we need to double the offset again
4424 * and zap two pdes instead of one.
4425 */
4426 if (level == PT32_ROOT_LEVEL) {
4427 page_offset &= ~7; /* kill rounding error */
4428 page_offset <<= 1;
4429 *nspte = 2;
4430 }
4431 quadrant = page_offset >> PAGE_SHIFT;
4432 page_offset &= ~PAGE_MASK;
4433 if (quadrant != sp->role.quadrant)
4434 return NULL;
4435 }
4436
4437 spte = &sp->spt[page_offset / sizeof(*spte)];
4438 return spte;
4439}
4440
Xiao Guangrong13d268c2016-02-24 17:51:16 +08004441static void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
Jike Songd1263632016-10-25 15:50:42 +08004442 const u8 *new, int bytes,
4443 struct kvm_page_track_notifier_node *node)
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004444{
4445 gfn_t gfn = gpa >> PAGE_SHIFT;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004446 struct kvm_mmu_page *sp;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004447 LIST_HEAD(invalid_list);
4448 u64 entry, gentry, *spte;
4449 int npte;
Paolo Bonzinib8c67b72016-02-24 11:21:55 +01004450 bool remote_flush, local_flush;
Andrew Morton41412592015-05-27 11:53:06 +02004451 union kvm_mmu_page_role mask = { };
4452
4453 mask.cr0_wp = 1;
4454 mask.cr4_pae = 1;
4455 mask.nxe = 1;
4456 mask.smep_andnot_wp = 1;
4457 mask.smap_andnot_wp = 1;
Paolo Bonzini699023e2015-05-18 15:03:39 +02004458 mask.smm = 1;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004459
4460 /*
4461 * If we don't have indirect shadow pages, it means no page is
4462 * write-protected, so we can exit simply.
4463 */
4464 if (!ACCESS_ONCE(vcpu->kvm->arch.indirect_shadow_pages))
4465 return;
4466
Paolo Bonzinib8c67b72016-02-24 11:21:55 +01004467 remote_flush = local_flush = false;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004468
4469 pgprintk("%s: gpa %llx bytes %d\n", __func__, gpa, bytes);
4470
4471 gentry = mmu_pte_write_fetch_gpte(vcpu, &gpa, new, &bytes);
4472
4473 /*
4474 * No need to care whether allocation memory is successful
4475 * or not since pte prefetch is skiped if it does not have
4476 * enough objects in the cache.
4477 */
4478 mmu_topup_memory_caches(vcpu);
4479
4480 spin_lock(&vcpu->kvm->mmu_lock);
4481 ++vcpu->kvm->stat.mmu_pte_write;
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08004482 kvm_mmu_audit(vcpu, AUDIT_PRE_PTE_WRITE);
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004483
Sasha Levinb67bfe02013-02-27 17:06:00 -08004484 for_each_gfn_indirect_valid_sp(vcpu->kvm, sp, gfn) {
Xiao Guangronga30f47c2011-09-22 16:58:36 +08004485 if (detect_write_misaligned(sp, gpa, bytes) ||
Xiao Guangronga138fe72011-12-16 18:18:10 +08004486 detect_write_flooding(sp)) {
Paolo Bonzinib8c67b72016-02-24 11:21:55 +01004487 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, &invalid_list);
Avi Kivity4cee5762007-11-18 16:37:07 +02004488 ++vcpu->kvm->stat.mmu_flooded;
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08004489 continue;
4490 }
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004491
4492 spte = get_written_sptes(sp, gpa, &npte);
4493 if (!spte)
4494 continue;
4495
Xiao Guangrong0671a8e2010-06-04 21:56:59 +08004496 local_flush = true;
Avi Kivityac1b7142007-03-08 17:13:32 +02004497 while (npte--) {
Avi Kivity79539ce2007-11-21 02:06:21 +02004498 entry = *spte;
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08004499 mmu_page_zap_pte(vcpu->kvm, sp, spte);
Xiao Guangrongfa1de2b2010-07-16 11:19:51 +08004500 if (gentry &&
4501 !((sp->role.word ^ vcpu->arch.mmu.base_role.word)
Xiao Guangrongf759e2b2011-09-22 16:53:17 +08004502 & mask.word) && rmap_can_add(vcpu))
Xiao Guangrong7c562522011-03-28 10:29:27 +08004503 mmu_pte_write_new_pte(vcpu, sp, spte, &gentry);
Gleb Natapov9bb4f6b2013-01-30 16:45:01 +02004504 if (need_remote_flush(entry, *spte))
Xiao Guangrong0671a8e2010-06-04 21:56:59 +08004505 remote_flush = true;
Avi Kivityac1b7142007-03-08 17:13:32 +02004506 ++spte;
Avi Kivity9b7a0322007-01-05 16:36:45 -08004507 }
Avi Kivity9b7a0322007-01-05 16:36:45 -08004508 }
Paolo Bonzinib8c67b72016-02-24 11:21:55 +01004509 kvm_mmu_flush_or_zap(vcpu, &invalid_list, remote_flush, local_flush);
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08004510 kvm_mmu_audit(vcpu, AUDIT_POST_PTE_WRITE);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05004511 spin_unlock(&vcpu->kvm->mmu_lock);
Avi Kivityda4a00f2007-01-05 16:36:44 -08004512}
4513
Avi Kivitya4360362007-01-05 16:36:45 -08004514int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva)
4515{
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004516 gpa_t gpa;
4517 int r;
Avi Kivitya4360362007-01-05 16:36:45 -08004518
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02004519 if (vcpu->arch.mmu.direct_map)
Avi Kivity60f24782009-08-27 13:37:06 +03004520 return 0;
4521
Gleb Natapov1871c602010-02-10 14:21:32 +02004522 gpa = kvm_mmu_gva_to_gpa_read(vcpu, gva, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004523
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004524 r = kvm_mmu_unprotect_page(vcpu->kvm, gpa >> PAGE_SHIFT);
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004525
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004526 return r;
Avi Kivitya4360362007-01-05 16:36:45 -08004527}
Avi Kivity577bdc42008-07-19 08:57:05 +03004528EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page_virt);
Avi Kivitya4360362007-01-05 16:36:45 -08004529
Takuya Yoshikawa81f4f762013-03-21 19:34:27 +09004530static void make_mmu_pages_available(struct kvm_vcpu *vcpu)
Avi Kivityebeace82007-01-05 16:36:47 -08004531{
Xiao Guangrongd98ba052010-06-04 21:55:29 +08004532 LIST_HEAD(invalid_list);
Xiao Guangrong103ad252010-06-04 21:54:38 +08004533
Takuya Yoshikawa81f4f762013-03-21 19:34:27 +09004534 if (likely(kvm_mmu_available_pages(vcpu->kvm) >= KVM_MIN_FREE_MMU_PAGES))
4535 return;
4536
Takuya Yoshikawa5da59602013-03-06 16:06:58 +09004537 while (kvm_mmu_available_pages(vcpu->kvm) < KVM_REFILL_PAGES) {
4538 if (!prepare_zap_oldest_mmu_page(vcpu->kvm, &invalid_list))
4539 break;
Avi Kivityebeace82007-01-05 16:36:47 -08004540
Avi Kivity4cee5762007-11-18 16:37:07 +02004541 ++vcpu->kvm->stat.mmu_recycled;
Avi Kivityebeace82007-01-05 16:36:47 -08004542 }
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08004543 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
Avi Kivityebeace82007-01-05 16:36:47 -08004544}
Avi Kivityebeace82007-01-05 16:36:47 -08004545
Tom Lendacky14727752016-11-23 12:01:38 -05004546int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t cr2, u64 error_code,
Andre Przywaradc25e892010-12-21 11:12:07 +01004547 void *insn, int insn_len)
Avi Kivity30677142007-10-28 18:48:59 +02004548{
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004549 int r, emulation_type = EMULTYPE_RETRY;
Avi Kivity30677142007-10-28 18:48:59 +02004550 enum emulation_result er;
Takuya Yoshikawaded58742016-02-22 17:23:40 +09004551 bool direct = vcpu->arch.mmu.direct_map || mmu_is_nested(vcpu);
Avi Kivity30677142007-10-28 18:48:59 +02004552
Takuya Yoshikawae9ee9562016-02-22 17:23:41 +09004553 if (unlikely(error_code & PFERR_RSVD_MASK)) {
4554 r = handle_mmio_page_fault(vcpu, cr2, direct);
4555 if (r == RET_MMIO_PF_EMULATE) {
4556 emulation_type = 0;
4557 goto emulate;
4558 }
4559 if (r == RET_MMIO_PF_RETRY)
4560 return 1;
4561 if (r < 0)
4562 return r;
4563 }
Avi Kivity30677142007-10-28 18:48:59 +02004564
Tom Lendacky14727752016-11-23 12:01:38 -05004565 r = vcpu->arch.mmu.page_fault(vcpu, cr2, lower_32_bits(error_code),
4566 false);
Avi Kivity30677142007-10-28 18:48:59 +02004567 if (r < 0)
Takuya Yoshikawae9ee9562016-02-22 17:23:41 +09004568 return r;
4569 if (!r)
4570 return 1;
Avi Kivity30677142007-10-28 18:48:59 +02004571
Tom Lendacky14727752016-11-23 12:01:38 -05004572 /*
4573 * Before emulating the instruction, check if the error code
4574 * was due to a RO violation while translating the guest page.
4575 * This can occur when using nested virtualization with nested
4576 * paging in both guests. If true, we simply unprotect the page
4577 * and resume the guest.
4578 *
4579 * Note: AMD only (since it supports the PFERR_GUEST_PAGE_MASK used
4580 * in PFERR_NEXT_GUEST_PAGE)
4581 */
4582 if (error_code == PFERR_NESTED_GUEST_PAGE) {
4583 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(cr2));
4584 return 1;
4585 }
4586
Takuya Yoshikawaded58742016-02-22 17:23:40 +09004587 if (mmio_info_in_cache(vcpu, cr2, direct))
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004588 emulation_type = 0;
Takuya Yoshikawae9ee9562016-02-22 17:23:41 +09004589emulate:
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004590 er = x86_emulate_instruction(vcpu, cr2, emulation_type, insn, insn_len);
Avi Kivity30677142007-10-28 18:48:59 +02004591
4592 switch (er) {
4593 case EMULATE_DONE:
4594 return 1;
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02004595 case EMULATE_USER_EXIT:
Avi Kivity30677142007-10-28 18:48:59 +02004596 ++vcpu->stat.mmio_exits;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03004597 /* fall through */
Avi Kivity30677142007-10-28 18:48:59 +02004598 case EMULATE_FAIL:
Avi Kivity3f5d18a2009-06-11 15:43:28 +03004599 return 0;
Avi Kivity30677142007-10-28 18:48:59 +02004600 default:
4601 BUG();
4602 }
Avi Kivity30677142007-10-28 18:48:59 +02004603}
4604EXPORT_SYMBOL_GPL(kvm_mmu_page_fault);
4605
Marcelo Tosattia7052892008-09-23 13:18:35 -03004606void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
4607{
Marcelo Tosattia7052892008-09-23 13:18:35 -03004608 vcpu->arch.mmu.invlpg(vcpu, gva);
Liang Chen77c39132014-09-18 12:38:37 -04004609 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03004610 ++vcpu->stat.invlpg;
4611}
4612EXPORT_SYMBOL_GPL(kvm_mmu_invlpg);
4613
Joerg Roedel18552672008-02-07 13:47:41 +01004614void kvm_enable_tdp(void)
4615{
4616 tdp_enabled = true;
4617}
4618EXPORT_SYMBOL_GPL(kvm_enable_tdp);
4619
Joerg Roedel5f4cb662008-07-14 20:36:36 +02004620void kvm_disable_tdp(void)
4621{
4622 tdp_enabled = false;
4623}
4624EXPORT_SYMBOL_GPL(kvm_disable_tdp);
4625
Avi Kivity6aa8b732006-12-10 02:21:36 -08004626static void free_mmu_pages(struct kvm_vcpu *vcpu)
4627{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004628 free_page((unsigned long)vcpu->arch.mmu.pae_root);
Joerg Roedel81407ca2010-09-10 17:31:00 +02004629 if (vcpu->arch.mmu.lm_root != NULL)
4630 free_page((unsigned long)vcpu->arch.mmu.lm_root);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004631}
4632
4633static int alloc_mmu_pages(struct kvm_vcpu *vcpu)
4634{
Avi Kivity17ac10a2007-01-05 16:36:40 -08004635 struct page *page;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004636 int i;
4637
Avi Kivity17ac10a2007-01-05 16:36:40 -08004638 /*
4639 * When emulating 32-bit mode, cr3 is only 32 bits even on x86_64.
4640 * Therefore we need to allocate shadow page tables in the first
4641 * 4GB of memory, which happens to fit the DMA32 zone.
4642 */
4643 page = alloc_page(GFP_KERNEL | __GFP_DMA32);
4644 if (!page)
Wei Yongjund7fa6ab2010-01-22 16:55:05 +08004645 return -ENOMEM;
4646
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004647 vcpu->arch.mmu.pae_root = page_address(page);
Avi Kivity17ac10a2007-01-05 16:36:40 -08004648 for (i = 0; i < 4; ++i)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004649 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08004650
Avi Kivity6aa8b732006-12-10 02:21:36 -08004651 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004652}
4653
Ingo Molnar8018c272006-12-29 16:50:01 -08004654int kvm_mmu_create(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004655{
Xiao Guangronge459e322011-11-28 20:42:16 +08004656 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
4657 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
4658 vcpu->arch.mmu.translate_gpa = translate_gpa;
4659 vcpu->arch.nested_mmu.translate_gpa = translate_nested_gpa;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004660
Ingo Molnar8018c272006-12-29 16:50:01 -08004661 return alloc_mmu_pages(vcpu);
4662}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004663
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004664void kvm_mmu_setup(struct kvm_vcpu *vcpu)
Ingo Molnar8018c272006-12-29 16:50:01 -08004665{
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02004666 MMU_WARN_ON(VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity2c264952006-12-22 01:05:28 -08004667
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004668 init_kvm_mmu(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004669}
4670
Xiaoguang Chenb5f5fdc2016-10-09 15:41:44 +08004671static void kvm_mmu_invalidate_zap_pages_in_memslot(struct kvm *kvm,
Jike Songd1263632016-10-25 15:50:42 +08004672 struct kvm_memory_slot *slot,
4673 struct kvm_page_track_notifier_node *node)
Xiaoguang Chenb5f5fdc2016-10-09 15:41:44 +08004674{
4675 kvm_mmu_invalidate_zap_all_pages(kvm);
4676}
4677
Xiao Guangrong13d268c2016-02-24 17:51:16 +08004678void kvm_mmu_init_vm(struct kvm *kvm)
4679{
4680 struct kvm_page_track_notifier_node *node = &kvm->arch.mmu_sp_tracker;
4681
4682 node->track_write = kvm_mmu_pte_write;
Xiaoguang Chenb5f5fdc2016-10-09 15:41:44 +08004683 node->track_flush_slot = kvm_mmu_invalidate_zap_pages_in_memslot;
Xiao Guangrong13d268c2016-02-24 17:51:16 +08004684 kvm_page_track_register_notifier(kvm, node);
4685}
4686
4687void kvm_mmu_uninit_vm(struct kvm *kvm)
4688{
4689 struct kvm_page_track_notifier_node *node = &kvm->arch.mmu_sp_tracker;
4690
4691 kvm_page_track_unregister_notifier(kvm, node);
4692}
4693
Xiao Guangrong1bad2b22015-05-13 14:42:23 +08004694/* The return value indicates if tlb flush on all vcpus is needed. */
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09004695typedef bool (*slot_level_handler) (struct kvm *kvm, struct kvm_rmap_head *rmap_head);
Xiao Guangrong1bad2b22015-05-13 14:42:23 +08004696
4697/* The caller should hold mmu-lock before calling this function. */
4698static bool
4699slot_handle_level_range(struct kvm *kvm, struct kvm_memory_slot *memslot,
4700 slot_level_handler fn, int start_level, int end_level,
4701 gfn_t start_gfn, gfn_t end_gfn, bool lock_flush_tlb)
4702{
4703 struct slot_rmap_walk_iterator iterator;
4704 bool flush = false;
4705
4706 for_each_slot_rmap_range(memslot, start_level, end_level, start_gfn,
4707 end_gfn, &iterator) {
4708 if (iterator.rmap)
4709 flush |= fn(kvm, iterator.rmap);
4710
4711 if (need_resched() || spin_needbreak(&kvm->mmu_lock)) {
4712 if (flush && lock_flush_tlb) {
4713 kvm_flush_remote_tlbs(kvm);
4714 flush = false;
4715 }
4716 cond_resched_lock(&kvm->mmu_lock);
4717 }
4718 }
4719
4720 if (flush && lock_flush_tlb) {
4721 kvm_flush_remote_tlbs(kvm);
4722 flush = false;
4723 }
4724
4725 return flush;
4726}
4727
4728static bool
4729slot_handle_level(struct kvm *kvm, struct kvm_memory_slot *memslot,
4730 slot_level_handler fn, int start_level, int end_level,
4731 bool lock_flush_tlb)
4732{
4733 return slot_handle_level_range(kvm, memslot, fn, start_level,
4734 end_level, memslot->base_gfn,
4735 memslot->base_gfn + memslot->npages - 1,
4736 lock_flush_tlb);
4737}
4738
4739static bool
4740slot_handle_all_level(struct kvm *kvm, struct kvm_memory_slot *memslot,
4741 slot_level_handler fn, bool lock_flush_tlb)
4742{
4743 return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL,
4744 PT_MAX_HUGEPAGE_LEVEL, lock_flush_tlb);
4745}
4746
4747static bool
4748slot_handle_large_level(struct kvm *kvm, struct kvm_memory_slot *memslot,
4749 slot_level_handler fn, bool lock_flush_tlb)
4750{
4751 return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL + 1,
4752 PT_MAX_HUGEPAGE_LEVEL, lock_flush_tlb);
4753}
4754
4755static bool
4756slot_handle_leaf(struct kvm *kvm, struct kvm_memory_slot *memslot,
4757 slot_level_handler fn, bool lock_flush_tlb)
4758{
4759 return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL,
4760 PT_PAGE_TABLE_LEVEL, lock_flush_tlb);
4761}
4762
Xiao Guangrongefdfe532015-05-13 14:42:27 +08004763void kvm_zap_gfn_range(struct kvm *kvm, gfn_t gfn_start, gfn_t gfn_end)
4764{
4765 struct kvm_memslots *slots;
4766 struct kvm_memory_slot *memslot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02004767 int i;
Xiao Guangrongefdfe532015-05-13 14:42:27 +08004768
4769 spin_lock(&kvm->mmu_lock);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02004770 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
4771 slots = __kvm_memslots(kvm, i);
4772 kvm_for_each_memslot(memslot, slots) {
4773 gfn_t start, end;
Xiao Guangrongefdfe532015-05-13 14:42:27 +08004774
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02004775 start = max(gfn_start, memslot->base_gfn);
4776 end = min(gfn_end, memslot->base_gfn + memslot->npages);
4777 if (start >= end)
4778 continue;
Xiao Guangrongefdfe532015-05-13 14:42:27 +08004779
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02004780 slot_handle_level_range(kvm, memslot, kvm_zap_rmapp,
4781 PT_PAGE_TABLE_LEVEL, PT_MAX_HUGEPAGE_LEVEL,
4782 start, end - 1, true);
4783 }
Xiao Guangrongefdfe532015-05-13 14:42:27 +08004784 }
4785
4786 spin_unlock(&kvm->mmu_lock);
4787}
4788
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09004789static bool slot_rmap_write_protect(struct kvm *kvm,
4790 struct kvm_rmap_head *rmap_head)
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004791{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09004792 return __rmap_write_protect(kvm, rmap_head, false);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004793}
4794
Kai Huang1c91cad42015-01-28 10:54:26 +08004795void kvm_mmu_slot_remove_write_access(struct kvm *kvm,
4796 struct kvm_memory_slot *memslot)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004797{
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004798 bool flush;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004799
Takuya Yoshikawa9d1beef2013-01-08 19:46:48 +09004800 spin_lock(&kvm->mmu_lock);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004801 flush = slot_handle_all_level(kvm, memslot, slot_rmap_write_protect,
4802 false);
Takuya Yoshikawa9d1beef2013-01-08 19:46:48 +09004803 spin_unlock(&kvm->mmu_lock);
Xiao Guangrong198c74f2014-04-17 17:06:16 +08004804
4805 /*
4806 * kvm_mmu_slot_remove_write_access() and kvm_vm_ioctl_get_dirty_log()
4807 * which do tlb flush out of mmu-lock should be serialized by
4808 * kvm->slots_lock otherwise tlb flush would be missed.
4809 */
4810 lockdep_assert_held(&kvm->slots_lock);
4811
4812 /*
4813 * We can flush all the TLBs out of the mmu lock without TLB
4814 * corruption since we just change the spte from writable to
4815 * readonly so that we only need to care the case of changing
4816 * spte from present to present (changing the spte from present
4817 * to nonpresent will flush all the TLBs immediately), in other
4818 * words, the only case we care is mmu_spte_update() where we
4819 * haved checked SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE
4820 * instead of PT_WRITABLE_MASK, that means it does not depend
4821 * on PT_WRITABLE_MASK anymore.
4822 */
Kai Huangd91ffee2015-01-12 15:28:54 +08004823 if (flush)
4824 kvm_flush_remote_tlbs(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004825}
Avi Kivity37a7d8b2007-01-05 16:36:56 -08004826
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004827static bool kvm_mmu_zap_collapsible_spte(struct kvm *kvm,
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09004828 struct kvm_rmap_head *rmap_head)
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004829{
4830 u64 *sptep;
4831 struct rmap_iterator iter;
4832 int need_tlb_flush = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08004833 kvm_pfn_t pfn;
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004834 struct kvm_mmu_page *sp;
4835
Xiao Guangrong0d536792015-05-13 14:42:20 +08004836restart:
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09004837 for_each_rmap_spte(rmap_head, &iter, sptep) {
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004838 sp = page_header(__pa(sptep));
4839 pfn = spte_to_pfn(*sptep);
4840
4841 /*
Xiao Guangrongdecf6332015-04-14 12:04:10 +08004842 * We cannot do huge page mapping for indirect shadow pages,
4843 * which are found on the last rmap (level = 1) when not using
4844 * tdp; such shadow pages are synced with the page table in
4845 * the guest, and the guest page table is using 4K page size
4846 * mapping if the indirect sp has level = 1.
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004847 */
4848 if (sp->role.direct &&
4849 !kvm_is_reserved_pfn(pfn) &&
Andrea Arcangeli127393f2016-05-05 16:22:20 -07004850 PageTransCompoundMap(pfn_to_page(pfn))) {
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004851 drop_spte(kvm, sptep);
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004852 need_tlb_flush = 1;
Xiao Guangrong0d536792015-05-13 14:42:20 +08004853 goto restart;
4854 }
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004855 }
4856
4857 return need_tlb_flush;
4858}
4859
4860void kvm_mmu_zap_collapsible_sptes(struct kvm *kvm,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02004861 const struct kvm_memory_slot *memslot)
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004862{
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02004863 /* FIXME: const-ify all uses of struct kvm_memory_slot. */
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004864 spin_lock(&kvm->mmu_lock);
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02004865 slot_handle_leaf(kvm, (struct kvm_memory_slot *)memslot,
4866 kvm_mmu_zap_collapsible_spte, true);
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004867 spin_unlock(&kvm->mmu_lock);
4868}
4869
Kai Huangf4b4b182015-01-28 10:54:24 +08004870void kvm_mmu_slot_leaf_clear_dirty(struct kvm *kvm,
4871 struct kvm_memory_slot *memslot)
4872{
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004873 bool flush;
Kai Huangf4b4b182015-01-28 10:54:24 +08004874
4875 spin_lock(&kvm->mmu_lock);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004876 flush = slot_handle_leaf(kvm, memslot, __rmap_clear_dirty, false);
Kai Huangf4b4b182015-01-28 10:54:24 +08004877 spin_unlock(&kvm->mmu_lock);
4878
4879 lockdep_assert_held(&kvm->slots_lock);
4880
4881 /*
4882 * It's also safe to flush TLBs out of mmu lock here as currently this
4883 * function is only used for dirty logging, in which case flushing TLB
4884 * out of mmu lock also guarantees no dirty pages will be lost in
4885 * dirty_bitmap.
4886 */
4887 if (flush)
4888 kvm_flush_remote_tlbs(kvm);
4889}
4890EXPORT_SYMBOL_GPL(kvm_mmu_slot_leaf_clear_dirty);
4891
4892void kvm_mmu_slot_largepage_remove_write_access(struct kvm *kvm,
4893 struct kvm_memory_slot *memslot)
4894{
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004895 bool flush;
Kai Huangf4b4b182015-01-28 10:54:24 +08004896
4897 spin_lock(&kvm->mmu_lock);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004898 flush = slot_handle_large_level(kvm, memslot, slot_rmap_write_protect,
4899 false);
Kai Huangf4b4b182015-01-28 10:54:24 +08004900 spin_unlock(&kvm->mmu_lock);
4901
4902 /* see kvm_mmu_slot_remove_write_access */
4903 lockdep_assert_held(&kvm->slots_lock);
4904
4905 if (flush)
4906 kvm_flush_remote_tlbs(kvm);
4907}
4908EXPORT_SYMBOL_GPL(kvm_mmu_slot_largepage_remove_write_access);
4909
4910void kvm_mmu_slot_set_dirty(struct kvm *kvm,
4911 struct kvm_memory_slot *memslot)
4912{
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004913 bool flush;
Kai Huangf4b4b182015-01-28 10:54:24 +08004914
4915 spin_lock(&kvm->mmu_lock);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004916 flush = slot_handle_all_level(kvm, memslot, __rmap_set_dirty, false);
Kai Huangf4b4b182015-01-28 10:54:24 +08004917 spin_unlock(&kvm->mmu_lock);
4918
4919 lockdep_assert_held(&kvm->slots_lock);
4920
4921 /* see kvm_mmu_slot_leaf_clear_dirty */
4922 if (flush)
4923 kvm_flush_remote_tlbs(kvm);
4924}
4925EXPORT_SYMBOL_GPL(kvm_mmu_slot_set_dirty);
4926
Xiao Guangronge7d11c72013-05-31 08:36:27 +08004927#define BATCH_ZAP_PAGES 10
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004928static void kvm_zap_obsolete_pages(struct kvm *kvm)
4929{
4930 struct kvm_mmu_page *sp, *node;
Xiao Guangronge7d11c72013-05-31 08:36:27 +08004931 int batch = 0;
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004932
4933restart:
4934 list_for_each_entry_safe_reverse(sp, node,
4935 &kvm->arch.active_mmu_pages, link) {
Xiao Guangronge7d11c72013-05-31 08:36:27 +08004936 int ret;
4937
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004938 /*
4939 * No obsolete page exists before new created page since
4940 * active_mmu_pages is the FIFO list.
4941 */
4942 if (!is_obsolete_sp(kvm, sp))
4943 break;
4944
4945 /*
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004946 * Since we are reversely walking the list and the invalid
4947 * list will be moved to the head, skip the invalid page
4948 * can help us to avoid the infinity list walking.
4949 */
4950 if (sp->role.invalid)
4951 continue;
4952
Xiao Guangrongf34d2512013-05-31 08:36:28 +08004953 /*
4954 * Need not flush tlb since we only zap the sp with invalid
4955 * generation number.
4956 */
Xiao Guangronge7d11c72013-05-31 08:36:27 +08004957 if (batch >= BATCH_ZAP_PAGES &&
Xiao Guangrongf34d2512013-05-31 08:36:28 +08004958 cond_resched_lock(&kvm->mmu_lock)) {
Xiao Guangronge7d11c72013-05-31 08:36:27 +08004959 batch = 0;
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004960 goto restart;
4961 }
4962
Xiao Guangrong365c8862013-05-31 08:36:29 +08004963 ret = kvm_mmu_prepare_zap_page(kvm, sp,
4964 &kvm->arch.zapped_obsolete_pages);
Xiao Guangronge7d11c72013-05-31 08:36:27 +08004965 batch += ret;
4966
4967 if (ret)
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004968 goto restart;
4969 }
4970
Xiao Guangrongf34d2512013-05-31 08:36:28 +08004971 /*
4972 * Should flush tlb before free page tables since lockless-walking
4973 * may use the pages.
4974 */
Xiao Guangrong365c8862013-05-31 08:36:29 +08004975 kvm_mmu_commit_zap_page(kvm, &kvm->arch.zapped_obsolete_pages);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004976}
4977
4978/*
4979 * Fast invalidate all shadow pages and use lock-break technique
4980 * to zap obsolete pages.
4981 *
4982 * It's required when memslot is being deleted or VM is being
4983 * destroyed, in these cases, we should ensure that KVM MMU does
4984 * not use any resource of the being-deleted slot or all slots
4985 * after calling the function.
4986 */
4987void kvm_mmu_invalidate_zap_all_pages(struct kvm *kvm)
4988{
4989 spin_lock(&kvm->mmu_lock);
Xiao Guangrong35006122013-05-31 08:36:25 +08004990 trace_kvm_mmu_invalidate_zap_all_pages(kvm);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004991 kvm->arch.mmu_valid_gen++;
4992
Xiao Guangrongf34d2512013-05-31 08:36:28 +08004993 /*
4994 * Notify all vcpus to reload its shadow page table
4995 * and flush TLB. Then all vcpus will switch to new
4996 * shadow page table with the new mmu_valid_gen.
4997 *
4998 * Note: we should do this under the protection of
4999 * mmu-lock, otherwise, vcpu would purge shadow page
5000 * but miss tlb flush.
5001 */
5002 kvm_reload_remote_mmus(kvm);
5003
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005004 kvm_zap_obsolete_pages(kvm);
5005 spin_unlock(&kvm->mmu_lock);
5006}
5007
Xiao Guangrong365c8862013-05-31 08:36:29 +08005008static bool kvm_has_zapped_obsolete_pages(struct kvm *kvm)
5009{
5010 return unlikely(!list_empty_careful(&kvm->arch.zapped_obsolete_pages));
5011}
5012
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005013void kvm_mmu_invalidate_mmio_sptes(struct kvm *kvm, struct kvm_memslots *slots)
Xiao Guangrongf8f55942013-06-07 16:51:26 +08005014{
5015 /*
5016 * The very rare case: if the generation-number is round,
5017 * zap all shadow pages.
Xiao Guangrongf8f55942013-06-07 16:51:26 +08005018 */
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005019 if (unlikely((slots->generation & MMIO_GEN_MASK) == 0)) {
Bandan Dasae0f5492016-11-15 01:36:18 -05005020 kvm_debug_ratelimited("kvm: zapping shadow pages for mmio generation wraparound\n");
Xiao Guangronga8eca9d2013-06-10 16:28:55 +08005021 kvm_mmu_invalidate_zap_all_pages(kvm);
Takuya Yoshikawa7a2e8aa2013-06-21 01:34:31 +09005022 }
Xiao Guangrongf8f55942013-06-07 16:51:26 +08005023}
5024
Dave Chinner70534a72013-08-28 10:18:14 +10005025static unsigned long
5026mmu_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
Izik Eidus3ee16c82008-03-30 15:17:21 +03005027{
5028 struct kvm *kvm;
Ying Han1495f232011-05-24 17:12:27 -07005029 int nr_to_scan = sc->nr_to_scan;
Dave Chinner70534a72013-08-28 10:18:14 +10005030 unsigned long freed = 0;
Izik Eidus3ee16c82008-03-30 15:17:21 +03005031
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005032 spin_lock(&kvm_lock);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005033
5034 list_for_each_entry(kvm, &vm_list, vm_list) {
Jan Kiszka3d56cbd2011-12-02 18:35:24 +01005035 int idx;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08005036 LIST_HEAD(invalid_list);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005037
Gleb Natapov19526392012-06-04 14:53:23 +03005038 /*
Takuya Yoshikawa35f2d162012-08-20 18:35:39 +09005039 * Never scan more than sc->nr_to_scan VM instances.
5040 * Will not hit this condition practically since we do not try
5041 * to shrink more than one VM and it is very unlikely to see
5042 * !n_used_mmu_pages so many times.
5043 */
5044 if (!nr_to_scan--)
5045 break;
5046 /*
Gleb Natapov19526392012-06-04 14:53:23 +03005047 * n_used_mmu_pages is accessed without holding kvm->mmu_lock
5048 * here. We may skip a VM instance errorneosly, but we do not
5049 * want to shrink a VM that only started to populate its MMU
5050 * anyway.
5051 */
Xiao Guangrong365c8862013-05-31 08:36:29 +08005052 if (!kvm->arch.n_used_mmu_pages &&
5053 !kvm_has_zapped_obsolete_pages(kvm))
Gleb Natapov19526392012-06-04 14:53:23 +03005054 continue;
Gleb Natapov19526392012-06-04 14:53:23 +03005055
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005056 idx = srcu_read_lock(&kvm->srcu);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005057 spin_lock(&kvm->mmu_lock);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005058
Xiao Guangrong365c8862013-05-31 08:36:29 +08005059 if (kvm_has_zapped_obsolete_pages(kvm)) {
5060 kvm_mmu_commit_zap_page(kvm,
5061 &kvm->arch.zapped_obsolete_pages);
5062 goto unlock;
5063 }
5064
Dave Chinner70534a72013-08-28 10:18:14 +10005065 if (prepare_zap_oldest_mmu_page(kvm, &invalid_list))
5066 freed++;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08005067 kvm_mmu_commit_zap_page(kvm, &invalid_list);
Gleb Natapov19526392012-06-04 14:53:23 +03005068
Xiao Guangrong365c8862013-05-31 08:36:29 +08005069unlock:
Izik Eidus3ee16c82008-03-30 15:17:21 +03005070 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005071 srcu_read_unlock(&kvm->srcu, idx);
Gleb Natapov19526392012-06-04 14:53:23 +03005072
Dave Chinner70534a72013-08-28 10:18:14 +10005073 /*
5074 * unfair on small ones
5075 * per-vm shrinkers cry out
5076 * sadness comes quickly
5077 */
Gleb Natapov19526392012-06-04 14:53:23 +03005078 list_move_tail(&kvm->vm_list, &vm_list);
5079 break;
Izik Eidus3ee16c82008-03-30 15:17:21 +03005080 }
Izik Eidus3ee16c82008-03-30 15:17:21 +03005081
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005082 spin_unlock(&kvm_lock);
Dave Chinner70534a72013-08-28 10:18:14 +10005083 return freed;
Dave Chinner70534a72013-08-28 10:18:14 +10005084}
5085
5086static unsigned long
5087mmu_shrink_count(struct shrinker *shrink, struct shrink_control *sc)
5088{
Dave Hansen45221ab2010-08-19 18:11:37 -07005089 return percpu_counter_read_positive(&kvm_total_used_mmu_pages);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005090}
5091
5092static struct shrinker mmu_shrinker = {
Dave Chinner70534a72013-08-28 10:18:14 +10005093 .count_objects = mmu_shrink_count,
5094 .scan_objects = mmu_shrink_scan,
Izik Eidus3ee16c82008-03-30 15:17:21 +03005095 .seeks = DEFAULT_SEEKS * 10,
5096};
5097
Ingo Molnar2ddfd202008-05-22 10:37:48 +02005098static void mmu_destroy_caches(void)
Avi Kivityb5a33a72007-04-15 16:31:09 +03005099{
Xiao Guangrong53c07b12011-05-15 23:26:20 +08005100 if (pte_list_desc_cache)
5101 kmem_cache_destroy(pte_list_desc_cache);
Avi Kivityd3d25b02007-05-30 12:34:53 +03005102 if (mmu_page_header_cache)
5103 kmem_cache_destroy(mmu_page_header_cache);
Avi Kivityb5a33a72007-04-15 16:31:09 +03005104}
5105
5106int kvm_mmu_module_init(void)
5107{
Xiao Guangrong53c07b12011-05-15 23:26:20 +08005108 pte_list_desc_cache = kmem_cache_create("pte_list_desc",
5109 sizeof(struct pte_list_desc),
Paul Mundt20c2df82007-07-20 10:11:58 +09005110 0, 0, NULL);
Xiao Guangrong53c07b12011-05-15 23:26:20 +08005111 if (!pte_list_desc_cache)
Avi Kivityb5a33a72007-04-15 16:31:09 +03005112 goto nomem;
5113
Avi Kivityd3d25b02007-05-30 12:34:53 +03005114 mmu_page_header_cache = kmem_cache_create("kvm_mmu_page_header",
5115 sizeof(struct kvm_mmu_page),
Paul Mundt20c2df82007-07-20 10:11:58 +09005116 0, 0, NULL);
Avi Kivityd3d25b02007-05-30 12:34:53 +03005117 if (!mmu_page_header_cache)
5118 goto nomem;
5119
Tejun Heo908c7f12014-09-08 09:51:29 +09005120 if (percpu_counter_init(&kvm_total_used_mmu_pages, 0, GFP_KERNEL))
Wei Yongjun45bf21a2010-08-23 16:13:15 +08005121 goto nomem;
5122
Izik Eidus3ee16c82008-03-30 15:17:21 +03005123 register_shrinker(&mmu_shrinker);
5124
Avi Kivityb5a33a72007-04-15 16:31:09 +03005125 return 0;
5126
5127nomem:
Izik Eidus3ee16c82008-03-30 15:17:21 +03005128 mmu_destroy_caches();
Avi Kivityb5a33a72007-04-15 16:31:09 +03005129 return -ENOMEM;
5130}
5131
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005132/*
5133 * Caculate mmu pages needed for kvm.
5134 */
5135unsigned int kvm_mmu_calculate_mmu_pages(struct kvm *kvm)
5136{
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005137 unsigned int nr_mmu_pages;
5138 unsigned int nr_pages = 0;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02005139 struct kvm_memslots *slots;
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +08005140 struct kvm_memory_slot *memslot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005141 int i;
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005142
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005143 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
5144 slots = __kvm_memslots(kvm, i);
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08005145
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005146 kvm_for_each_memslot(memslot, slots)
5147 nr_pages += memslot->npages;
5148 }
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005149
5150 nr_mmu_pages = nr_pages * KVM_PERMILLE_MMU_PAGES / 1000;
5151 nr_mmu_pages = max(nr_mmu_pages,
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005152 (unsigned int) KVM_MIN_ALLOC_MMU_PAGES);
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005153
5154 return nr_mmu_pages;
5155}
5156
Xiao Guangrongc42fffe2010-09-27 18:07:07 +08005157void kvm_mmu_destroy(struct kvm_vcpu *vcpu)
5158{
Paolo Bonzini95f93af2013-10-02 16:56:12 +02005159 kvm_mmu_unload(vcpu);
Xiao Guangrongc42fffe2010-09-27 18:07:07 +08005160 free_mmu_pages(vcpu);
5161 mmu_free_memory_caches(vcpu);
Xiao Guangrongb034cf02010-12-23 16:08:35 +08005162}
5163
Xiao Guangrongb034cf02010-12-23 16:08:35 +08005164void kvm_mmu_module_exit(void)
5165{
5166 mmu_destroy_caches();
5167 percpu_counter_destroy(&kvm_total_used_mmu_pages);
5168 unregister_shrinker(&mmu_shrinker);
Xiao Guangrongc42fffe2010-09-27 18:07:07 +08005169 mmu_audit_disable();
5170}