blob: cfef959693355ca45008cccd348a66d7b0f2de4a [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 Kivityda928522007-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 Guangrong8672b7212010-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 Guangrong8672b7212010-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 Guangrong8672b7212010-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
531/* Rules for using mmu_spte_update:
Andrea Gelminibb3541f2016-05-21 14:14:44 +0200532 * Update the state bits, it means the mapped pfn is not changed.
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800533 *
534 * Whenever we overwrite a writable spte with a read-only one we
535 * should flush remote TLBs. Otherwise rmap_write_protect
536 * will find a read-only spte, even though the writable spte
537 * might be cached on a CPU's TLB, the return value indicates this
538 * case.
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800539 *
540 * Returns true if the TLB needs to be flushed
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800541 */
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800542static bool mmu_spte_update(u64 *sptep, u64 new_spte)
Avi Kivityb79b93f2010-06-06 15:46:44 +0300543{
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800544 u64 old_spte = *sptep;
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800545 bool flush = false;
Avi Kivityb79b93f2010-06-06 15:46:44 +0300546
Takuya Yoshikawaafd28fe2015-11-20 17:44:55 +0900547 WARN_ON(!is_shadow_present_pte(new_spte));
Xiao Guangrong41327792010-08-02 16:15:08 +0800548
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800549 if (!is_shadow_present_pte(old_spte)) {
550 mmu_spte_set(sptep, new_spte);
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800551 return flush;
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800552 }
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800553
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800554 if (!spte_has_volatile_bits(old_spte))
Xiao Guangrong603e0652011-07-12 03:31:28 +0800555 __update_clear_spte_fast(sptep, new_spte);
Xiao Guangrong41327792010-08-02 16:15:08 +0800556 else
Xiao Guangrong603e0652011-07-12 03:31:28 +0800557 old_spte = __update_clear_spte_slow(sptep, new_spte);
Xiao Guangrong41327792010-08-02 16:15:08 +0800558
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800559 WARN_ON(spte_to_pfn(old_spte) != spte_to_pfn(new_spte));
560
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800561 /*
562 * For the spte updated out of mmu-lock is safe, since
Adam Buchbinder6a6256f2016-02-23 15:34:30 -0800563 * we always atomically update it, see the comments in
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800564 * spte_has_volatile_bits().
565 */
Junaid Shahidea4114b2016-12-06 16:46:11 -0800566 if (spte_can_locklessly_be_made_writable(old_spte) &&
Xiao Guangrong7f31c952014-04-17 17:06:15 +0800567 !is_writable_pte(new_spte))
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800568 flush = true;
Xiao Guangrong41327792010-08-02 16:15:08 +0800569
Kai Huang7e71a592015-01-09 16:44:30 +0800570 /*
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800571 * Flush TLB when accessed/dirty states are changed in the page tables,
Kai Huang7e71a592015-01-09 16:44:30 +0800572 * to guarantee consistency between TLB and page tables.
573 */
Kai Huang7e71a592015-01-09 16:44:30 +0800574
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800575 if (is_accessed_spte(old_spte) && !is_accessed_spte(new_spte)) {
576 flush = true;
Xiao Guangrong41327792010-08-02 16:15:08 +0800577 kvm_set_pfn_accessed(spte_to_pfn(old_spte));
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800578 }
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800579
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800580 if (is_dirty_spte(old_spte) && !is_dirty_spte(new_spte)) {
581 flush = true;
582 kvm_set_pfn_dirty(spte_to_pfn(old_spte));
583 }
584
585 return flush;
Avi Kivityb79b93f2010-06-06 15:46:44 +0300586}
587
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800588/*
589 * Rules for using mmu_spte_clear_track_bits:
590 * It sets the sptep from present to nonpresent, and track the
591 * state bits, it is used to clear the last level sptep.
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800592 * Returns non-zero if the PTE was previously valid.
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800593 */
594static int mmu_spte_clear_track_bits(u64 *sptep)
595{
Dan Williamsba049e92016-01-15 16:56:11 -0800596 kvm_pfn_t pfn;
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800597 u64 old_spte = *sptep;
598
599 if (!spte_has_volatile_bits(old_spte))
Xiao Guangrong603e0652011-07-12 03:31:28 +0800600 __update_clear_spte_fast(sptep, 0ull);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800601 else
Xiao Guangrong603e0652011-07-12 03:31:28 +0800602 old_spte = __update_clear_spte_slow(sptep, 0ull);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800603
Takuya Yoshikawaafd28fe2015-11-20 17:44:55 +0900604 if (!is_shadow_present_pte(old_spte))
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800605 return 0;
606
607 pfn = spte_to_pfn(old_spte);
Xiao Guangrong86fde742012-07-17 21:52:52 +0800608
609 /*
610 * KVM does not hold the refcount of the page used by
611 * kvm mmu, before reclaiming the page, we should
612 * unmap it from mmu first.
613 */
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +0000614 WARN_ON(!kvm_is_reserved_pfn(pfn) && !page_count(pfn_to_page(pfn)));
Xiao Guangrong86fde742012-07-17 21:52:52 +0800615
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800616 if (is_accessed_spte(old_spte))
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800617 kvm_set_pfn_accessed(pfn);
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800618
619 if (is_dirty_spte(old_spte))
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800620 kvm_set_pfn_dirty(pfn);
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800621
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800622 return 1;
623}
624
625/*
626 * Rules for using mmu_spte_clear_no_track:
627 * Directly clear spte without caring the state bits of sptep,
628 * it is used to set the upper level spte.
629 */
630static void mmu_spte_clear_no_track(u64 *sptep)
631{
Xiao Guangrong603e0652011-07-12 03:31:28 +0800632 __update_clear_spte_fast(sptep, 0ull);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800633}
634
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800635static u64 mmu_spte_get_lockless(u64 *sptep)
636{
637 return __get_spte_lockless(sptep);
638}
639
640static void walk_shadow_page_lockless_begin(struct kvm_vcpu *vcpu)
641{
Avi Kivityc1427862012-05-14 15:44:06 +0300642 /*
643 * Prevent page table teardown by making any free-er wait during
644 * kvm_flush_remote_tlbs() IPI to all active vcpus.
645 */
646 local_irq_disable();
Lan Tianyu36ca7e02016-03-13 11:10:25 +0800647
Avi Kivityc1427862012-05-14 15:44:06 +0300648 /*
649 * Make sure a following spte read is not reordered ahead of the write
650 * to vcpu->mode.
651 */
Lan Tianyu36ca7e02016-03-13 11:10:25 +0800652 smp_store_mb(vcpu->mode, READING_SHADOW_PAGE_TABLES);
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800653}
654
655static void walk_shadow_page_lockless_end(struct kvm_vcpu *vcpu)
656{
Avi Kivityc1427862012-05-14 15:44:06 +0300657 /*
658 * Make sure the write to vcpu->mode is not reordered in front of
659 * reads to sptes. If it does, kvm_commit_zap_page() can see us
660 * OUTSIDE_GUEST_MODE and proceed to free the shadow page table.
661 */
Lan Tianyu36ca7e02016-03-13 11:10:25 +0800662 smp_store_release(&vcpu->mode, OUTSIDE_GUEST_MODE);
Avi Kivityc1427862012-05-14 15:44:06 +0300663 local_irq_enable();
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800664}
665
Avi Kivitye2dec932007-01-05 16:36:54 -0800666static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300667 struct kmem_cache *base_cache, int min)
Avi Kivity714b93d2007-01-05 16:36:53 -0800668{
669 void *obj;
670
671 if (cache->nobjs >= min)
Avi Kivitye2dec932007-01-05 16:36:54 -0800672 return 0;
Avi Kivity714b93d2007-01-05 16:36:53 -0800673 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
Avi Kivity2e3e5882007-09-10 11:28:17 +0300674 obj = kmem_cache_zalloc(base_cache, GFP_KERNEL);
Avi Kivity714b93d2007-01-05 16:36:53 -0800675 if (!obj)
Avi Kivitye2dec932007-01-05 16:36:54 -0800676 return -ENOMEM;
Avi Kivity714b93d2007-01-05 16:36:53 -0800677 cache->objects[cache->nobjs++] = obj;
678 }
Avi Kivitye2dec932007-01-05 16:36:54 -0800679 return 0;
Avi Kivity714b93d2007-01-05 16:36:53 -0800680}
681
Xiao Guangrongf759e2b2011-09-22 16:53:17 +0800682static int mmu_memory_cache_free_objects(struct kvm_mmu_memory_cache *cache)
683{
684 return cache->nobjs;
685}
686
Xiao Guangronge8ad9a72010-05-13 10:06:02 +0800687static void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc,
688 struct kmem_cache *cache)
Avi Kivity714b93d2007-01-05 16:36:53 -0800689{
690 while (mc->nobjs)
Xiao Guangronge8ad9a72010-05-13 10:06:02 +0800691 kmem_cache_free(cache, mc->objects[--mc->nobjs]);
Avi Kivity714b93d2007-01-05 16:36:53 -0800692}
693
Avi Kivityc1158e62007-07-20 08:18:27 +0300694static int mmu_topup_memory_cache_page(struct kvm_mmu_memory_cache *cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300695 int min)
Avi Kivityc1158e62007-07-20 08:18:27 +0300696{
Xiao Guangrong842f22e2011-03-04 19:01:10 +0800697 void *page;
Avi Kivityc1158e62007-07-20 08:18:27 +0300698
699 if (cache->nobjs >= min)
700 return 0;
701 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
Xiao Guangrong842f22e2011-03-04 19:01:10 +0800702 page = (void *)__get_free_page(GFP_KERNEL);
Avi Kivityc1158e62007-07-20 08:18:27 +0300703 if (!page)
704 return -ENOMEM;
Xiao Guangrong842f22e2011-03-04 19:01:10 +0800705 cache->objects[cache->nobjs++] = page;
Avi Kivityc1158e62007-07-20 08:18:27 +0300706 }
707 return 0;
708}
709
710static void mmu_free_memory_cache_page(struct kvm_mmu_memory_cache *mc)
711{
712 while (mc->nobjs)
Avi Kivityc4d198d2007-07-21 09:06:46 +0300713 free_page((unsigned long)mc->objects[--mc->nobjs]);
Avi Kivityc1158e62007-07-20 08:18:27 +0300714}
715
Avi Kivity8c438502007-04-16 11:53:17 +0300716static int mmu_topup_memory_caches(struct kvm_vcpu *vcpu)
717{
718 int r;
719
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800720 r = mmu_topup_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache,
Xiao Guangrong67052b32011-05-15 23:27:08 +0800721 pte_list_desc_cache, 8 + PTE_PREFETCH_NUM);
Avi Kivity2e3e5882007-09-10 11:28:17 +0300722 if (r)
723 goto out;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800724 r = mmu_topup_memory_cache_page(&vcpu->arch.mmu_page_cache, 8);
Avi Kivity2e3e5882007-09-10 11:28:17 +0300725 if (r)
726 goto out;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800727 r = mmu_topup_memory_cache(&vcpu->arch.mmu_page_header_cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300728 mmu_page_header_cache, 4);
729out:
Avi Kivity8c438502007-04-16 11:53:17 +0300730 return r;
731}
732
Avi Kivity714b93d2007-01-05 16:36:53 -0800733static void mmu_free_memory_caches(struct kvm_vcpu *vcpu)
734{
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800735 mmu_free_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache,
736 pte_list_desc_cache);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800737 mmu_free_memory_cache_page(&vcpu->arch.mmu_page_cache);
Xiao Guangronge8ad9a72010-05-13 10:06:02 +0800738 mmu_free_memory_cache(&vcpu->arch.mmu_page_header_cache,
739 mmu_page_header_cache);
Avi Kivity714b93d2007-01-05 16:36:53 -0800740}
741
Takuya Yoshikawa80feb892012-05-29 23:54:26 +0900742static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc)
Avi Kivity714b93d2007-01-05 16:36:53 -0800743{
744 void *p;
745
746 BUG_ON(!mc->nobjs);
747 p = mc->objects[--mc->nobjs];
Avi Kivity714b93d2007-01-05 16:36:53 -0800748 return p;
749}
750
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800751static struct pte_list_desc *mmu_alloc_pte_list_desc(struct kvm_vcpu *vcpu)
Avi Kivity714b93d2007-01-05 16:36:53 -0800752{
Takuya Yoshikawa80feb892012-05-29 23:54:26 +0900753 return mmu_memory_cache_alloc(&vcpu->arch.mmu_pte_list_desc_cache);
Avi Kivity714b93d2007-01-05 16:36:53 -0800754}
755
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800756static void mmu_free_pte_list_desc(struct pte_list_desc *pte_list_desc)
Avi Kivity714b93d2007-01-05 16:36:53 -0800757{
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800758 kmem_cache_free(pte_list_desc_cache, pte_list_desc);
Avi Kivity714b93d2007-01-05 16:36:53 -0800759}
760
Lai Jiangshan2032a932010-05-26 16:49:59 +0800761static gfn_t kvm_mmu_page_get_gfn(struct kvm_mmu_page *sp, int index)
762{
763 if (!sp->role.direct)
764 return sp->gfns[index];
765
766 return sp->gfn + (index << ((sp->role.level - 1) * PT64_LEVEL_BITS));
767}
768
769static void kvm_mmu_page_set_gfn(struct kvm_mmu_page *sp, int index, gfn_t gfn)
770{
771 if (sp->role.direct)
772 BUG_ON(gfn != kvm_mmu_page_get_gfn(sp, index));
773 else
774 sp->gfns[index] = gfn;
775}
776
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800777/*
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900778 * Return the pointer to the large page information for a given gfn,
779 * handling slots that are not large page aligned.
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300780 */
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900781static struct kvm_lpage_info *lpage_info_slot(gfn_t gfn,
782 struct kvm_memory_slot *slot,
783 int level)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300784{
785 unsigned long idx;
786
Takuya Yoshikawafb03cb62012-02-08 12:59:10 +0900787 idx = gfn_to_index(gfn, slot->base_gfn, level);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900788 return &slot->arch.lpage_info[level - 2][idx];
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300789}
790
Xiao Guangrong547ffae2016-02-24 17:51:07 +0800791static void update_gfn_disallow_lpage_count(struct kvm_memory_slot *slot,
792 gfn_t gfn, int count)
793{
794 struct kvm_lpage_info *linfo;
795 int i;
796
797 for (i = PT_DIRECTORY_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) {
798 linfo = lpage_info_slot(gfn, slot, i);
799 linfo->disallow_lpage += count;
800 WARN_ON(linfo->disallow_lpage < 0);
801 }
802}
803
804void kvm_mmu_gfn_disallow_lpage(struct kvm_memory_slot *slot, gfn_t gfn)
805{
806 update_gfn_disallow_lpage_count(slot, gfn, 1);
807}
808
809void kvm_mmu_gfn_allow_lpage(struct kvm_memory_slot *slot, gfn_t gfn)
810{
811 update_gfn_disallow_lpage_count(slot, gfn, -1);
812}
813
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200814static void account_shadowed(struct kvm *kvm, struct kvm_mmu_page *sp)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300815{
Paolo Bonzini699023e2015-05-18 15:03:39 +0200816 struct kvm_memslots *slots;
Joerg Roedeld25797b2009-07-27 16:30:43 +0200817 struct kvm_memory_slot *slot;
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200818 gfn_t gfn;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300819
Xiao Guangrong56ca57f2016-02-24 17:51:14 +0800820 kvm->arch.indirect_shadow_pages++;
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200821 gfn = sp->gfn;
Paolo Bonzini699023e2015-05-18 15:03:39 +0200822 slots = kvm_memslots_for_spte_role(kvm, sp->role);
823 slot = __gfn_to_memslot(slots, gfn);
Xiao Guangrong56ca57f2016-02-24 17:51:14 +0800824
825 /* the non-leaf shadow pages are keeping readonly. */
826 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
827 return kvm_slot_page_track_add_page(kvm, slot, gfn,
828 KVM_PAGE_TRACK_WRITE);
829
Xiao Guangrong547ffae2016-02-24 17:51:07 +0800830 kvm_mmu_gfn_disallow_lpage(slot, gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300831}
832
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200833static void unaccount_shadowed(struct kvm *kvm, struct kvm_mmu_page *sp)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300834{
Paolo Bonzini699023e2015-05-18 15:03:39 +0200835 struct kvm_memslots *slots;
Joerg Roedeld25797b2009-07-27 16:30:43 +0200836 struct kvm_memory_slot *slot;
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200837 gfn_t gfn;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300838
Xiao Guangrong56ca57f2016-02-24 17:51:14 +0800839 kvm->arch.indirect_shadow_pages--;
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200840 gfn = sp->gfn;
Paolo Bonzini699023e2015-05-18 15:03:39 +0200841 slots = kvm_memslots_for_spte_role(kvm, sp->role);
842 slot = __gfn_to_memslot(slots, gfn);
Xiao Guangrong56ca57f2016-02-24 17:51:14 +0800843 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
844 return kvm_slot_page_track_remove_page(kvm, slot, gfn,
845 KVM_PAGE_TRACK_WRITE);
846
Xiao Guangrong547ffae2016-02-24 17:51:07 +0800847 kvm_mmu_gfn_allow_lpage(slot, gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300848}
849
Xiao Guangrong92f94f12016-02-24 17:51:06 +0800850static bool __mmu_gfn_lpage_is_disallowed(gfn_t gfn, int level,
851 struct kvm_memory_slot *slot)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300852{
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900853 struct kvm_lpage_info *linfo;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300854
855 if (slot) {
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900856 linfo = lpage_info_slot(gfn, slot, level);
Xiao Guangrong92f94f12016-02-24 17:51:06 +0800857 return !!linfo->disallow_lpage;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300858 }
859
Xiao Guangrong92f94f12016-02-24 17:51:06 +0800860 return true;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300861}
862
Xiao Guangrong92f94f12016-02-24 17:51:06 +0800863static bool mmu_gfn_lpage_is_disallowed(struct kvm_vcpu *vcpu, gfn_t gfn,
864 int level)
Takuya Yoshikawa5225fdf2015-10-16 17:08:03 +0900865{
866 struct kvm_memory_slot *slot;
867
868 slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
Xiao Guangrong92f94f12016-02-24 17:51:06 +0800869 return __mmu_gfn_lpage_is_disallowed(gfn, level, slot);
Takuya Yoshikawa5225fdf2015-10-16 17:08:03 +0900870}
871
Joerg Roedeld25797b2009-07-27 16:30:43 +0200872static int host_mapping_level(struct kvm *kvm, gfn_t gfn)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300873{
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +0100874 unsigned long page_size;
Joerg Roedeld25797b2009-07-27 16:30:43 +0200875 int i, ret = 0;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300876
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +0100877 page_size = kvm_host_page_size(kvm, gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300878
Xiao Guangrong8a3d08f2015-05-13 14:42:21 +0800879 for (i = PT_PAGE_TABLE_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) {
Joerg Roedeld25797b2009-07-27 16:30:43 +0200880 if (page_size >= KVM_HPAGE_SIZE(i))
881 ret = i;
882 else
883 break;
884 }
885
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -0300886 return ret;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300887}
888
Takuya Yoshikawad8aacf52015-10-16 17:07:01 +0900889static inline bool memslot_valid_for_gpte(struct kvm_memory_slot *slot,
890 bool no_dirty_log)
891{
892 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
893 return false;
894 if (no_dirty_log && slot->dirty_bitmap)
895 return false;
896
897 return true;
898}
899
Xiao Guangrong5d163b12011-03-09 15:43:00 +0800900static struct kvm_memory_slot *
901gfn_to_memslot_dirty_bitmap(struct kvm_vcpu *vcpu, gfn_t gfn,
902 bool no_dirty_log)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300903{
904 struct kvm_memory_slot *slot;
Xiao Guangrong5d163b12011-03-09 15:43:00 +0800905
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200906 slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
Takuya Yoshikawad8aacf52015-10-16 17:07:01 +0900907 if (!memslot_valid_for_gpte(slot, no_dirty_log))
Xiao Guangrong5d163b12011-03-09 15:43:00 +0800908 slot = NULL;
909
910 return slot;
911}
912
Takuya Yoshikawafd136902015-10-16 17:06:02 +0900913static int mapping_level(struct kvm_vcpu *vcpu, gfn_t large_gfn,
914 bool *force_pt_level)
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -0800915{
916 int host_level, level, max_level;
Takuya Yoshikawad8aacf52015-10-16 17:07:01 +0900917 struct kvm_memory_slot *slot;
918
Takuya Yoshikawa8c85ac12015-10-19 15:13:29 +0900919 if (unlikely(*force_pt_level))
920 return PT_PAGE_TABLE_LEVEL;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300921
Takuya Yoshikawa8c85ac12015-10-19 15:13:29 +0900922 slot = kvm_vcpu_gfn_to_memslot(vcpu, large_gfn);
923 *force_pt_level = !memslot_valid_for_gpte(slot, true);
Takuya Yoshikawafd136902015-10-16 17:06:02 +0900924 if (unlikely(*force_pt_level))
925 return PT_PAGE_TABLE_LEVEL;
926
Joerg Roedeld25797b2009-07-27 16:30:43 +0200927 host_level = host_mapping_level(vcpu->kvm, large_gfn);
928
929 if (host_level == PT_PAGE_TABLE_LEVEL)
930 return host_level;
931
Xiao Guangrong55dd98c2013-02-05 15:26:54 +0800932 max_level = min(kvm_x86_ops->get_lpage_level(), host_level);
Sheng Yang878403b2010-01-05 19:02:29 +0800933
934 for (level = PT_DIRECTORY_LEVEL; level <= max_level; ++level)
Xiao Guangrong92f94f12016-02-24 17:51:06 +0800935 if (__mmu_gfn_lpage_is_disallowed(large_gfn, level, slot))
Joerg Roedeld25797b2009-07-27 16:30:43 +0200936 break;
Joerg Roedeld25797b2009-07-27 16:30:43 +0200937
938 return level - 1;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300939}
940
941/*
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +0900942 * About rmap_head encoding:
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800943 *
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +0900944 * If the bit zero of rmap_head->val is clear, then it points to the only spte
945 * in this rmap chain. Otherwise, (rmap_head->val & ~1) points to a struct
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800946 * pte_list_desc containing more mappings.
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +0900947 */
948
949/*
950 * Returns the number of pointers in the rmap chain, not counting the new one.
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800951 */
952static int pte_list_add(struct kvm_vcpu *vcpu, u64 *spte,
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +0900953 struct kvm_rmap_head *rmap_head)
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800954{
955 struct pte_list_desc *desc;
956 int i, count = 0;
957
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +0900958 if (!rmap_head->val) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800959 rmap_printk("pte_list_add: %p %llx 0->1\n", spte, *spte);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +0900960 rmap_head->val = (unsigned long)spte;
961 } else if (!(rmap_head->val & 1)) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800962 rmap_printk("pte_list_add: %p %llx 1->many\n", spte, *spte);
963 desc = mmu_alloc_pte_list_desc(vcpu);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +0900964 desc->sptes[0] = (u64 *)rmap_head->val;
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800965 desc->sptes[1] = spte;
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +0900966 rmap_head->val = (unsigned long)desc | 1;
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800967 ++count;
968 } else {
969 rmap_printk("pte_list_add: %p %llx many->many\n", spte, *spte);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +0900970 desc = (struct pte_list_desc *)(rmap_head->val & ~1ul);
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800971 while (desc->sptes[PTE_LIST_EXT-1] && desc->more) {
972 desc = desc->more;
973 count += PTE_LIST_EXT;
974 }
975 if (desc->sptes[PTE_LIST_EXT-1]) {
976 desc->more = mmu_alloc_pte_list_desc(vcpu);
977 desc = desc->more;
978 }
979 for (i = 0; desc->sptes[i]; ++i)
980 ++count;
981 desc->sptes[i] = spte;
982 }
983 return count;
984}
985
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800986static void
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +0900987pte_list_desc_remove_entry(struct kvm_rmap_head *rmap_head,
988 struct pte_list_desc *desc, int i,
989 struct pte_list_desc *prev_desc)
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800990{
991 int j;
992
993 for (j = PTE_LIST_EXT - 1; !desc->sptes[j] && j > i; --j)
994 ;
995 desc->sptes[i] = desc->sptes[j];
996 desc->sptes[j] = NULL;
997 if (j != 0)
998 return;
999 if (!prev_desc && !desc->more)
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001000 rmap_head->val = (unsigned long)desc->sptes[0];
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001001 else
1002 if (prev_desc)
1003 prev_desc->more = desc->more;
1004 else
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001005 rmap_head->val = (unsigned long)desc->more | 1;
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001006 mmu_free_pte_list_desc(desc);
1007}
1008
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001009static void pte_list_remove(u64 *spte, struct kvm_rmap_head *rmap_head)
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001010{
1011 struct pte_list_desc *desc;
1012 struct pte_list_desc *prev_desc;
1013 int i;
1014
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001015 if (!rmap_head->val) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001016 printk(KERN_ERR "pte_list_remove: %p 0->BUG\n", spte);
1017 BUG();
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001018 } else if (!(rmap_head->val & 1)) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001019 rmap_printk("pte_list_remove: %p 1->0\n", spte);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001020 if ((u64 *)rmap_head->val != spte) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001021 printk(KERN_ERR "pte_list_remove: %p 1->BUG\n", spte);
1022 BUG();
1023 }
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001024 rmap_head->val = 0;
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001025 } else {
1026 rmap_printk("pte_list_remove: %p many->many\n", spte);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001027 desc = (struct pte_list_desc *)(rmap_head->val & ~1ul);
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001028 prev_desc = NULL;
1029 while (desc) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001030 for (i = 0; i < PTE_LIST_EXT && desc->sptes[i]; ++i) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001031 if (desc->sptes[i] == spte) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001032 pte_list_desc_remove_entry(rmap_head,
1033 desc, i, prev_desc);
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001034 return;
1035 }
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001036 }
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001037 prev_desc = desc;
1038 desc = desc->more;
1039 }
1040 pr_err("pte_list_remove: %p many->many\n", spte);
1041 BUG();
1042 }
1043}
1044
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001045static struct kvm_rmap_head *__gfn_to_rmap(gfn_t gfn, int level,
1046 struct kvm_memory_slot *slot)
Takuya Yoshikawa9b9b1492011-11-14 18:22:28 +09001047{
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09001048 unsigned long idx;
Takuya Yoshikawa9b9b1492011-11-14 18:22:28 +09001049
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09001050 idx = gfn_to_index(gfn, slot->base_gfn, level);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09001051 return &slot->arch.rmap[level - PT_PAGE_TABLE_LEVEL][idx];
Takuya Yoshikawa9b9b1492011-11-14 18:22:28 +09001052}
1053
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001054static struct kvm_rmap_head *gfn_to_rmap(struct kvm *kvm, gfn_t gfn,
1055 struct kvm_mmu_page *sp)
Izik Eidus290fc382007-09-27 14:11:22 +02001056{
Paolo Bonzini699023e2015-05-18 15:03:39 +02001057 struct kvm_memslots *slots;
Izik Eidus290fc382007-09-27 14:11:22 +02001058 struct kvm_memory_slot *slot;
1059
Paolo Bonzini699023e2015-05-18 15:03:39 +02001060 slots = kvm_memslots_for_spte_role(kvm, sp->role);
1061 slot = __gfn_to_memslot(slots, gfn);
Paolo Bonzinie4cd1da2015-05-18 15:11:46 +02001062 return __gfn_to_rmap(gfn, sp->role.level, slot);
Izik Eidus290fc382007-09-27 14:11:22 +02001063}
1064
Xiao Guangrongf759e2b2011-09-22 16:53:17 +08001065static bool rmap_can_add(struct kvm_vcpu *vcpu)
1066{
1067 struct kvm_mmu_memory_cache *cache;
1068
1069 cache = &vcpu->arch.mmu_pte_list_desc_cache;
1070 return mmu_memory_cache_free_objects(cache);
1071}
1072
Joerg Roedel44ad9942009-07-27 16:30:42 +02001073static int rmap_add(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn)
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001074{
Avi Kivity4db35312007-11-21 15:28:32 +02001075 struct kvm_mmu_page *sp;
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001076 struct kvm_rmap_head *rmap_head;
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001077
Avi Kivity4db35312007-11-21 15:28:32 +02001078 sp = page_header(__pa(spte));
Lai Jiangshan2032a932010-05-26 16:49:59 +08001079 kvm_mmu_page_set_gfn(sp, spte - sp->spt, gfn);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001080 rmap_head = gfn_to_rmap(vcpu->kvm, gfn, sp);
1081 return pte_list_add(vcpu, spte, rmap_head);
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001082}
1083
Izik Eidus290fc382007-09-27 14:11:22 +02001084static void rmap_remove(struct kvm *kvm, u64 *spte)
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001085{
Avi Kivity4db35312007-11-21 15:28:32 +02001086 struct kvm_mmu_page *sp;
Lai Jiangshan2032a932010-05-26 16:49:59 +08001087 gfn_t gfn;
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001088 struct kvm_rmap_head *rmap_head;
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001089
Avi Kivity4db35312007-11-21 15:28:32 +02001090 sp = page_header(__pa(spte));
Lai Jiangshan2032a932010-05-26 16:49:59 +08001091 gfn = kvm_mmu_page_get_gfn(sp, spte - sp->spt);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001092 rmap_head = gfn_to_rmap(kvm, gfn, sp);
1093 pte_list_remove(spte, rmap_head);
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001094}
1095
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001096/*
1097 * Used by the following functions to iterate through the sptes linked by a
1098 * rmap. All fields are private and not assumed to be used outside.
1099 */
1100struct rmap_iterator {
1101 /* private fields */
1102 struct pte_list_desc *desc; /* holds the sptep if not NULL */
1103 int pos; /* index of the sptep */
1104};
1105
1106/*
1107 * Iteration must be started by this function. This should also be used after
1108 * removing/dropping sptes from the rmap link because in such cases the
1109 * information in the itererator may not be valid.
1110 *
1111 * Returns sptep if found, NULL otherwise.
1112 */
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001113static u64 *rmap_get_first(struct kvm_rmap_head *rmap_head,
1114 struct rmap_iterator *iter)
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001115{
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001116 u64 *sptep;
1117
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001118 if (!rmap_head->val)
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001119 return NULL;
1120
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001121 if (!(rmap_head->val & 1)) {
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001122 iter->desc = NULL;
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001123 sptep = (u64 *)rmap_head->val;
1124 goto out;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001125 }
1126
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001127 iter->desc = (struct pte_list_desc *)(rmap_head->val & ~1ul);
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001128 iter->pos = 0;
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001129 sptep = iter->desc->sptes[iter->pos];
1130out:
1131 BUG_ON(!is_shadow_present_pte(*sptep));
1132 return sptep;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001133}
1134
1135/*
1136 * Must be used with a valid iterator: e.g. after rmap_get_first().
1137 *
1138 * Returns sptep if found, NULL otherwise.
1139 */
1140static u64 *rmap_get_next(struct rmap_iterator *iter)
1141{
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001142 u64 *sptep;
1143
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001144 if (iter->desc) {
1145 if (iter->pos < PTE_LIST_EXT - 1) {
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001146 ++iter->pos;
1147 sptep = iter->desc->sptes[iter->pos];
1148 if (sptep)
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001149 goto out;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001150 }
1151
1152 iter->desc = iter->desc->more;
1153
1154 if (iter->desc) {
1155 iter->pos = 0;
1156 /* desc->sptes[0] cannot be NULL */
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001157 sptep = iter->desc->sptes[iter->pos];
1158 goto out;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001159 }
1160 }
1161
1162 return NULL;
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001163out:
1164 BUG_ON(!is_shadow_present_pte(*sptep));
1165 return sptep;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001166}
1167
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001168#define for_each_rmap_spte(_rmap_head_, _iter_, _spte_) \
1169 for (_spte_ = rmap_get_first(_rmap_head_, _iter_); \
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001170 _spte_; _spte_ = rmap_get_next(_iter_))
Xiao Guangrong0d536792015-05-13 14:42:20 +08001171
Xiao Guangrongc3707952011-07-12 03:28:04 +08001172static void drop_spte(struct kvm *kvm, u64 *sptep)
Xiao Guangronge4b502e2010-07-16 11:28:09 +08001173{
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +08001174 if (mmu_spte_clear_track_bits(sptep))
Marcelo Tosattieb45fda2010-10-25 11:58:22 -02001175 rmap_remove(kvm, sptep);
Avi Kivitybe38d272010-06-06 14:31:27 +03001176}
1177
Xiao Guangrong8e22f952012-06-20 15:57:39 +08001178
1179static bool __drop_large_spte(struct kvm *kvm, u64 *sptep)
1180{
1181 if (is_large_pte(*sptep)) {
1182 WARN_ON(page_header(__pa(sptep))->role.level ==
1183 PT_PAGE_TABLE_LEVEL);
1184 drop_spte(kvm, sptep);
1185 --kvm->stat.lpages;
1186 return true;
1187 }
1188
1189 return false;
1190}
1191
1192static void drop_large_spte(struct kvm_vcpu *vcpu, u64 *sptep)
1193{
1194 if (__drop_large_spte(vcpu->kvm, sptep))
1195 kvm_flush_remote_tlbs(vcpu->kvm);
1196}
1197
1198/*
Xiao Guangrong49fde342012-06-20 15:58:58 +08001199 * Write-protect on the specified @sptep, @pt_protect indicates whether
Xiao Guangrongc126d942014-04-17 17:06:14 +08001200 * spte write-protection is caused by protecting shadow page table.
Xiao Guangrong49fde342012-06-20 15:58:58 +08001201 *
Tiejun Chenb4619662014-09-22 10:31:38 +08001202 * Note: write protection is difference between dirty logging and spte
Xiao Guangrong49fde342012-06-20 15:58:58 +08001203 * protection:
1204 * - for dirty logging, the spte can be set to writable at anytime if
1205 * its dirty bitmap is properly set.
1206 * - for spte protection, the spte can be writable only after unsync-ing
1207 * shadow page.
Xiao Guangrong8e22f952012-06-20 15:57:39 +08001208 *
Xiao Guangrongc126d942014-04-17 17:06:14 +08001209 * Return true if tlb need be flushed.
Xiao Guangrong8e22f952012-06-20 15:57:39 +08001210 */
Bandan Dasc4f138b2016-08-02 16:32:37 -04001211static bool spte_write_protect(u64 *sptep, bool pt_protect)
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001212{
1213 u64 spte = *sptep;
1214
Xiao Guangrong49fde342012-06-20 15:58:58 +08001215 if (!is_writable_pte(spte) &&
Junaid Shahidea4114b2016-12-06 16:46:11 -08001216 !(pt_protect && spte_can_locklessly_be_made_writable(spte)))
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001217 return false;
1218
1219 rmap_printk("rmap_write_protect: spte %p %llx\n", sptep, *sptep);
1220
Xiao Guangrong49fde342012-06-20 15:58:58 +08001221 if (pt_protect)
1222 spte &= ~SPTE_MMU_WRITEABLE;
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001223 spte = spte & ~PT_WRITABLE_MASK;
Xiao Guangrong49fde342012-06-20 15:58:58 +08001224
Xiao Guangrongc126d942014-04-17 17:06:14 +08001225 return mmu_spte_update(sptep, spte);
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001226}
1227
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001228static bool __rmap_write_protect(struct kvm *kvm,
1229 struct kvm_rmap_head *rmap_head,
Takuya Yoshikawa245c3912013-01-08 19:44:09 +09001230 bool pt_protect)
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001231{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001232 u64 *sptep;
1233 struct rmap_iterator iter;
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001234 bool flush = false;
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001235
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001236 for_each_rmap_spte(rmap_head, &iter, sptep)
Bandan Dasc4f138b2016-08-02 16:32:37 -04001237 flush |= spte_write_protect(sptep, pt_protect);
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001238
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001239 return flush;
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001240}
1241
Bandan Dasc4f138b2016-08-02 16:32:37 -04001242static bool spte_clear_dirty(u64 *sptep)
Kai Huangf4b4b182015-01-28 10:54:24 +08001243{
1244 u64 spte = *sptep;
1245
1246 rmap_printk("rmap_clear_dirty: spte %p %llx\n", sptep, *sptep);
1247
1248 spte &= ~shadow_dirty_mask;
1249
1250 return mmu_spte_update(sptep, spte);
1251}
1252
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001253static bool __rmap_clear_dirty(struct kvm *kvm, struct kvm_rmap_head *rmap_head)
Kai Huangf4b4b182015-01-28 10:54:24 +08001254{
1255 u64 *sptep;
1256 struct rmap_iterator iter;
1257 bool flush = false;
1258
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001259 for_each_rmap_spte(rmap_head, &iter, sptep)
Bandan Dasc4f138b2016-08-02 16:32:37 -04001260 flush |= spte_clear_dirty(sptep);
Kai Huangf4b4b182015-01-28 10:54:24 +08001261
1262 return flush;
1263}
1264
Bandan Dasc4f138b2016-08-02 16:32:37 -04001265static bool spte_set_dirty(u64 *sptep)
Kai Huangf4b4b182015-01-28 10:54:24 +08001266{
1267 u64 spte = *sptep;
1268
1269 rmap_printk("rmap_set_dirty: spte %p %llx\n", sptep, *sptep);
1270
1271 spte |= shadow_dirty_mask;
1272
1273 return mmu_spte_update(sptep, spte);
1274}
1275
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001276static bool __rmap_set_dirty(struct kvm *kvm, struct kvm_rmap_head *rmap_head)
Kai Huangf4b4b182015-01-28 10:54:24 +08001277{
1278 u64 *sptep;
1279 struct rmap_iterator iter;
1280 bool flush = false;
1281
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001282 for_each_rmap_spte(rmap_head, &iter, sptep)
Bandan Dasc4f138b2016-08-02 16:32:37 -04001283 flush |= spte_set_dirty(sptep);
Kai Huangf4b4b182015-01-28 10:54:24 +08001284
1285 return flush;
1286}
1287
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001288/**
Kai Huang3b0f1d02015-01-28 10:54:23 +08001289 * kvm_mmu_write_protect_pt_masked - write protect selected PT level pages
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001290 * @kvm: kvm instance
1291 * @slot: slot to protect
1292 * @gfn_offset: start of the BITS_PER_LONG pages we care about
1293 * @mask: indicates which pages we should protect
1294 *
1295 * Used when we do not need to care about huge page mappings: e.g. during dirty
1296 * logging we do not have any such mappings.
1297 */
Kai Huang3b0f1d02015-01-28 10:54:23 +08001298static void kvm_mmu_write_protect_pt_masked(struct kvm *kvm,
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001299 struct kvm_memory_slot *slot,
1300 gfn_t gfn_offset, unsigned long mask)
Izik Eidus98348e92007-10-16 14:42:30 +02001301{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001302 struct kvm_rmap_head *rmap_head;
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001303
1304 while (mask) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001305 rmap_head = __gfn_to_rmap(slot->base_gfn + gfn_offset + __ffs(mask),
1306 PT_PAGE_TABLE_LEVEL, slot);
1307 __rmap_write_protect(kvm, rmap_head, false);
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001308
1309 /* clear the first set bit */
1310 mask &= mask - 1;
1311 }
1312}
1313
Kai Huang3b0f1d02015-01-28 10:54:23 +08001314/**
Kai Huangf4b4b182015-01-28 10:54:24 +08001315 * kvm_mmu_clear_dirty_pt_masked - clear MMU D-bit for PT level pages
1316 * @kvm: kvm instance
1317 * @slot: slot to clear D-bit
1318 * @gfn_offset: start of the BITS_PER_LONG pages we care about
1319 * @mask: indicates which pages we should clear D-bit
1320 *
1321 * Used for PML to re-log the dirty GPAs after userspace querying dirty_bitmap.
1322 */
1323void kvm_mmu_clear_dirty_pt_masked(struct kvm *kvm,
1324 struct kvm_memory_slot *slot,
1325 gfn_t gfn_offset, unsigned long mask)
1326{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001327 struct kvm_rmap_head *rmap_head;
Kai Huangf4b4b182015-01-28 10:54:24 +08001328
1329 while (mask) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001330 rmap_head = __gfn_to_rmap(slot->base_gfn + gfn_offset + __ffs(mask),
1331 PT_PAGE_TABLE_LEVEL, slot);
1332 __rmap_clear_dirty(kvm, rmap_head);
Kai Huangf4b4b182015-01-28 10:54:24 +08001333
1334 /* clear the first set bit */
1335 mask &= mask - 1;
1336 }
1337}
1338EXPORT_SYMBOL_GPL(kvm_mmu_clear_dirty_pt_masked);
1339
1340/**
Kai Huang3b0f1d02015-01-28 10:54:23 +08001341 * kvm_arch_mmu_enable_log_dirty_pt_masked - enable dirty logging for selected
1342 * PT level pages.
1343 *
1344 * It calls kvm_mmu_write_protect_pt_masked to write protect selected pages to
1345 * enable dirty logging for them.
1346 *
1347 * Used when we do not need to care about huge page mappings: e.g. during dirty
1348 * logging we do not have any such mappings.
1349 */
1350void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm,
1351 struct kvm_memory_slot *slot,
1352 gfn_t gfn_offset, unsigned long mask)
1353{
Kai Huang88178fd2015-01-28 10:54:27 +08001354 if (kvm_x86_ops->enable_log_dirty_pt_masked)
1355 kvm_x86_ops->enable_log_dirty_pt_masked(kvm, slot, gfn_offset,
1356 mask);
1357 else
1358 kvm_mmu_write_protect_pt_masked(kvm, slot, gfn_offset, mask);
Kai Huang3b0f1d02015-01-28 10:54:23 +08001359}
1360
Xiao Guangrongaeecee22016-02-24 17:51:08 +08001361bool kvm_mmu_slot_gfn_write_protect(struct kvm *kvm,
1362 struct kvm_memory_slot *slot, u64 gfn)
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001363{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001364 struct kvm_rmap_head *rmap_head;
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001365 int i;
Xiao Guangrong2f845692012-06-20 15:56:53 +08001366 bool write_protected = false;
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001367
Xiao Guangrong8a3d08f2015-05-13 14:42:21 +08001368 for (i = PT_PAGE_TABLE_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001369 rmap_head = __gfn_to_rmap(gfn, i, slot);
Xiao Guangrongaeecee22016-02-24 17:51:08 +08001370 write_protected |= __rmap_write_protect(kvm, rmap_head, true);
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001371 }
1372
Marcelo Tosattib1a36822008-12-01 22:32:03 -02001373 return write_protected;
Avi Kivity374cbac2007-01-05 16:36:43 -08001374}
1375
Xiao Guangrongaeecee22016-02-24 17:51:08 +08001376static bool rmap_write_protect(struct kvm_vcpu *vcpu, u64 gfn)
1377{
1378 struct kvm_memory_slot *slot;
1379
1380 slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1381 return kvm_mmu_slot_gfn_write_protect(vcpu->kvm, slot, gfn);
1382}
1383
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001384static bool kvm_zap_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head)
Xiao Guangrong6a49f852015-05-13 14:42:25 +08001385{
1386 u64 *sptep;
1387 struct rmap_iterator iter;
1388 bool flush = false;
1389
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001390 while ((sptep = rmap_get_first(rmap_head, &iter))) {
Xiao Guangrong6a49f852015-05-13 14:42:25 +08001391 rmap_printk("%s: spte %p %llx.\n", __func__, sptep, *sptep);
1392
1393 drop_spte(kvm, sptep);
1394 flush = true;
1395 }
1396
1397 return flush;
1398}
1399
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001400static int kvm_unmap_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001401 struct kvm_memory_slot *slot, gfn_t gfn, int level,
1402 unsigned long data)
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001403{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001404 return kvm_zap_rmapp(kvm, rmap_head);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001405}
1406
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001407static int kvm_set_pte_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001408 struct kvm_memory_slot *slot, gfn_t gfn, int level,
1409 unsigned long data)
Izik Eidus3da0dd42009-09-23 21:47:18 +03001410{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001411 u64 *sptep;
1412 struct rmap_iterator iter;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001413 int need_flush = 0;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001414 u64 new_spte;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001415 pte_t *ptep = (pte_t *)data;
Dan Williamsba049e92016-01-15 16:56:11 -08001416 kvm_pfn_t new_pfn;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001417
1418 WARN_ON(pte_huge(*ptep));
1419 new_pfn = pte_pfn(*ptep);
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001420
Xiao Guangrong0d536792015-05-13 14:42:20 +08001421restart:
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001422 for_each_rmap_spte(rmap_head, &iter, sptep) {
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001423 rmap_printk("kvm_set_pte_rmapp: spte %p %llx gfn %llx (%d)\n",
1424 sptep, *sptep, gfn, level);
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001425
Izik Eidus3da0dd42009-09-23 21:47:18 +03001426 need_flush = 1;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001427
Izik Eidus3da0dd42009-09-23 21:47:18 +03001428 if (pte_write(*ptep)) {
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001429 drop_spte(kvm, sptep);
Xiao Guangrong0d536792015-05-13 14:42:20 +08001430 goto restart;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001431 } else {
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001432 new_spte = *sptep & ~PT64_BASE_ADDR_MASK;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001433 new_spte |= (u64)new_pfn << PAGE_SHIFT;
1434
1435 new_spte &= ~PT_WRITABLE_MASK;
1436 new_spte &= ~SPTE_HOST_WRITEABLE;
Avi Kivityb79b93f2010-06-06 15:46:44 +03001437 new_spte &= ~shadow_accessed_mask;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001438
1439 mmu_spte_clear_track_bits(sptep);
1440 mmu_spte_set(sptep, new_spte);
Izik Eidus3da0dd42009-09-23 21:47:18 +03001441 }
1442 }
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001443
Izik Eidus3da0dd42009-09-23 21:47:18 +03001444 if (need_flush)
1445 kvm_flush_remote_tlbs(kvm);
1446
1447 return 0;
1448}
1449
Xiao Guangrong6ce1f4e2015-05-13 14:42:22 +08001450struct slot_rmap_walk_iterator {
1451 /* input fields. */
1452 struct kvm_memory_slot *slot;
1453 gfn_t start_gfn;
1454 gfn_t end_gfn;
1455 int start_level;
1456 int end_level;
1457
1458 /* output fields. */
1459 gfn_t gfn;
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001460 struct kvm_rmap_head *rmap;
Xiao Guangrong6ce1f4e2015-05-13 14:42:22 +08001461 int level;
1462
1463 /* private field. */
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001464 struct kvm_rmap_head *end_rmap;
Xiao Guangrong6ce1f4e2015-05-13 14:42:22 +08001465};
1466
1467static void
1468rmap_walk_init_level(struct slot_rmap_walk_iterator *iterator, int level)
1469{
1470 iterator->level = level;
1471 iterator->gfn = iterator->start_gfn;
1472 iterator->rmap = __gfn_to_rmap(iterator->gfn, level, iterator->slot);
1473 iterator->end_rmap = __gfn_to_rmap(iterator->end_gfn, level,
1474 iterator->slot);
1475}
1476
1477static void
1478slot_rmap_walk_init(struct slot_rmap_walk_iterator *iterator,
1479 struct kvm_memory_slot *slot, int start_level,
1480 int end_level, gfn_t start_gfn, gfn_t end_gfn)
1481{
1482 iterator->slot = slot;
1483 iterator->start_level = start_level;
1484 iterator->end_level = end_level;
1485 iterator->start_gfn = start_gfn;
1486 iterator->end_gfn = end_gfn;
1487
1488 rmap_walk_init_level(iterator, iterator->start_level);
1489}
1490
1491static bool slot_rmap_walk_okay(struct slot_rmap_walk_iterator *iterator)
1492{
1493 return !!iterator->rmap;
1494}
1495
1496static void slot_rmap_walk_next(struct slot_rmap_walk_iterator *iterator)
1497{
1498 if (++iterator->rmap <= iterator->end_rmap) {
1499 iterator->gfn += (1UL << KVM_HPAGE_GFN_SHIFT(iterator->level));
1500 return;
1501 }
1502
1503 if (++iterator->level > iterator->end_level) {
1504 iterator->rmap = NULL;
1505 return;
1506 }
1507
1508 rmap_walk_init_level(iterator, iterator->level);
1509}
1510
1511#define for_each_slot_rmap_range(_slot_, _start_level_, _end_level_, \
1512 _start_gfn, _end_gfn, _iter_) \
1513 for (slot_rmap_walk_init(_iter_, _slot_, _start_level_, \
1514 _end_level_, _start_gfn, _end_gfn); \
1515 slot_rmap_walk_okay(_iter_); \
1516 slot_rmap_walk_next(_iter_))
1517
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001518static int kvm_handle_hva_range(struct kvm *kvm,
1519 unsigned long start,
1520 unsigned long end,
1521 unsigned long data,
1522 int (*handler)(struct kvm *kvm,
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001523 struct kvm_rmap_head *rmap_head,
Takuya Yoshikawa048212d2012-07-02 17:57:59 +09001524 struct kvm_memory_slot *slot,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001525 gfn_t gfn,
1526 int level,
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001527 unsigned long data))
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001528{
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001529 struct kvm_memslots *slots;
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +08001530 struct kvm_memory_slot *memslot;
Xiao Guangrong6ce1f4e2015-05-13 14:42:22 +08001531 struct slot_rmap_walk_iterator iterator;
1532 int ret = 0;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02001533 int i;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001534
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02001535 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
1536 slots = __kvm_memslots(kvm, i);
1537 kvm_for_each_memslot(memslot, slots) {
1538 unsigned long hva_start, hva_end;
1539 gfn_t gfn_start, gfn_end;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001540
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02001541 hva_start = max(start, memslot->userspace_addr);
1542 hva_end = min(end, memslot->userspace_addr +
1543 (memslot->npages << PAGE_SHIFT));
1544 if (hva_start >= hva_end)
1545 continue;
1546 /*
1547 * {gfn(page) | page intersects with [hva_start, hva_end)} =
1548 * {gfn_start, gfn_start+1, ..., gfn_end-1}.
1549 */
1550 gfn_start = hva_to_gfn_memslot(hva_start, memslot);
1551 gfn_end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, memslot);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001552
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02001553 for_each_slot_rmap_range(memslot, PT_PAGE_TABLE_LEVEL,
1554 PT_MAX_HUGEPAGE_LEVEL,
1555 gfn_start, gfn_end - 1,
1556 &iterator)
1557 ret |= handler(kvm, iterator.rmap, memslot,
1558 iterator.gfn, iterator.level, data);
1559 }
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001560 }
1561
Takuya Yoshikawaf3953022012-07-02 17:58:48 +09001562 return ret;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001563}
1564
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001565static int kvm_handle_hva(struct kvm *kvm, unsigned long hva,
1566 unsigned long data,
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001567 int (*handler)(struct kvm *kvm,
1568 struct kvm_rmap_head *rmap_head,
Takuya Yoshikawa048212d2012-07-02 17:57:59 +09001569 struct kvm_memory_slot *slot,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001570 gfn_t gfn, int level,
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001571 unsigned long data))
1572{
1573 return kvm_handle_hva_range(kvm, hva, hva + 1, data, handler);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001574}
1575
1576int kvm_unmap_hva(struct kvm *kvm, unsigned long hva)
1577{
Izik Eidus3da0dd42009-09-23 21:47:18 +03001578 return kvm_handle_hva(kvm, hva, 0, kvm_unmap_rmapp);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001579}
1580
Takuya Yoshikawab3ae2092012-07-02 17:56:33 +09001581int kvm_unmap_hva_range(struct kvm *kvm, unsigned long start, unsigned long end)
1582{
1583 return kvm_handle_hva_range(kvm, start, end, 0, kvm_unmap_rmapp);
1584}
1585
Izik Eidus3da0dd42009-09-23 21:47:18 +03001586void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte)
1587{
Frederik Deweerdt8a8365c2009-10-09 11:42:56 +00001588 kvm_handle_hva(kvm, hva, (unsigned long)&pte, kvm_set_pte_rmapp);
Izik Eidus3da0dd42009-09-23 21:47:18 +03001589}
1590
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001591static int kvm_age_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001592 struct kvm_memory_slot *slot, gfn_t gfn, int level,
1593 unsigned long data)
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001594{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001595 u64 *sptep;
Michael S. Tsirkin79f702a2012-06-03 11:34:08 +03001596 struct rmap_iterator uninitialized_var(iter);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001597 int young = 0;
1598
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -07001599 BUG_ON(!shadow_accessed_mask);
Sheng Yang534e38b2008-09-08 15:12:30 +08001600
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001601 for_each_rmap_spte(rmap_head, &iter, sptep) {
Xudong Hao3f6d8c82012-05-22 11:23:15 +08001602 if (*sptep & shadow_accessed_mask) {
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001603 young = 1;
Xudong Hao3f6d8c82012-05-22 11:23:15 +08001604 clear_bit((ffs(shadow_accessed_mask) - 1),
1605 (unsigned long *)sptep);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001606 }
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001607 }
Xiao Guangrong0d536792015-05-13 14:42:20 +08001608
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001609 trace_kvm_age_page(gfn, level, slot, young);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001610 return young;
1611}
1612
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001613static int kvm_test_age_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001614 struct kvm_memory_slot *slot, gfn_t gfn,
1615 int level, unsigned long data)
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001616{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001617 u64 *sptep;
1618 struct rmap_iterator iter;
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001619
1620 /*
1621 * If there's no access bit in the secondary pte set by the
1622 * hardware it's up to gup-fast/gup to set the access bit in
1623 * the primary pte or in the page structure.
1624 */
1625 if (!shadow_accessed_mask)
1626 goto out;
1627
Junaid Shahid83ef6c82016-12-06 16:46:13 -08001628 for_each_rmap_spte(rmap_head, &iter, sptep)
1629 if (is_accessed_spte(*sptep))
1630 return 1;
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001631out:
Junaid Shahid83ef6c82016-12-06 16:46:13 -08001632 return 0;
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001633}
1634
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001635#define RMAP_RECYCLE_THRESHOLD 1000
1636
Joerg Roedel852e3c12009-07-27 16:30:44 +02001637static void rmap_recycle(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn)
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001638{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001639 struct kvm_rmap_head *rmap_head;
Joerg Roedel852e3c12009-07-27 16:30:44 +02001640 struct kvm_mmu_page *sp;
1641
1642 sp = page_header(__pa(spte));
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001643
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001644 rmap_head = gfn_to_rmap(vcpu->kvm, gfn, sp);
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001645
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001646 kvm_unmap_rmapp(vcpu->kvm, rmap_head, NULL, gfn, sp->role.level, 0);
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001647 kvm_flush_remote_tlbs(vcpu->kvm);
1648}
1649
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -07001650int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end)
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001651{
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -07001652 /*
1653 * In case of absence of EPT Access and Dirty Bits supports,
1654 * emulate the accessed bit for EPT, by checking if this page has
1655 * an EPT mapping, and clearing it if it does. On the next access,
1656 * a new EPT mapping will be established.
1657 * This has some overhead, but not as much as the cost of swapping
1658 * out actively used pages or breaking up actively used hugepages.
1659 */
Peter Feiner66d73e12016-09-26 10:45:34 -07001660 if (!shadow_accessed_mask)
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -07001661 return kvm_handle_hva_range(kvm, start, end, 0,
1662 kvm_unmap_rmapp);
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -07001663
1664 return kvm_handle_hva_range(kvm, start, end, 0, kvm_age_rmapp);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001665}
1666
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001667int kvm_test_age_hva(struct kvm *kvm, unsigned long hva)
1668{
1669 return kvm_handle_hva(kvm, hva, 0, kvm_test_age_rmapp);
1670}
1671
Yaozu Dongd6c69ee2007-04-25 14:17:25 +08001672#ifdef MMU_DEBUG
Avi Kivity47ad8e62007-05-06 15:50:58 +03001673static int is_empty_shadow_page(u64 *spt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001674{
Avi Kivity139bdb22007-01-05 16:36:50 -08001675 u64 *pos;
1676 u64 *end;
1677
Avi Kivity47ad8e62007-05-06 15:50:58 +03001678 for (pos = spt, end = pos + PAGE_SIZE / sizeof(u64); pos != end; pos++)
Avi Kivity3c915512008-05-20 16:21:13 +03001679 if (is_shadow_present_pte(*pos)) {
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001680 printk(KERN_ERR "%s: %p %llx\n", __func__,
Avi Kivity139bdb22007-01-05 16:36:50 -08001681 pos, *pos);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001682 return 0;
Avi Kivity139bdb22007-01-05 16:36:50 -08001683 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001684 return 1;
1685}
Yaozu Dongd6c69ee2007-04-25 14:17:25 +08001686#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001687
Dave Hansen45221ab2010-08-19 18:11:37 -07001688/*
1689 * This value is the sum of all of the kvm instances's
1690 * kvm->arch.n_used_mmu_pages values. We need a global,
1691 * aggregate version in order to make the slab shrinker
1692 * faster
1693 */
1694static inline void kvm_mod_used_mmu_pages(struct kvm *kvm, int nr)
1695{
1696 kvm->arch.n_used_mmu_pages += nr;
1697 percpu_counter_add(&kvm_total_used_mmu_pages, nr);
1698}
1699
Gleb Natapov834be0d2013-01-30 16:45:05 +02001700static void kvm_mmu_free_page(struct kvm_mmu_page *sp)
Avi Kivity260746c2007-01-05 16:36:49 -08001701{
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02001702 MMU_WARN_ON(!is_empty_shadow_page(sp->spt));
Xiao Guangrong77758342010-06-04 21:53:54 +08001703 hlist_del(&sp->hash_link);
Xiao Guangrongbd4c86e2011-07-12 03:27:14 +08001704 list_del(&sp->link);
1705 free_page((unsigned long)sp->spt);
Gleb Natapov834be0d2013-01-30 16:45:05 +02001706 if (!sp->role.direct)
1707 free_page((unsigned long)sp->gfns);
Xiao Guangronge8ad9a72010-05-13 10:06:02 +08001708 kmem_cache_free(mmu_page_header_cache, sp);
Avi Kivity260746c2007-01-05 16:36:49 -08001709}
1710
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001711static unsigned kvm_page_table_hashfn(gfn_t gfn)
1712{
David Matlack114df302016-12-19 13:58:25 -08001713 return hash_64(gfn, KVM_MMU_HASH_SHIFT);
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001714}
1715
Xiao Guangrong67052b32011-05-15 23:27:08 +08001716static void mmu_page_add_parent_pte(struct kvm_vcpu *vcpu,
1717 struct kvm_mmu_page *sp, u64 *parent_pte)
1718{
1719 if (!parent_pte)
1720 return;
1721
1722 pte_list_add(vcpu, parent_pte, &sp->parent_ptes);
1723}
1724
1725static void mmu_page_remove_parent_pte(struct kvm_mmu_page *sp,
1726 u64 *parent_pte)
1727{
1728 pte_list_remove(parent_pte, &sp->parent_ptes);
1729}
1730
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08001731static void drop_parent_pte(struct kvm_mmu_page *sp,
1732 u64 *parent_pte)
1733{
1734 mmu_page_remove_parent_pte(sp, parent_pte);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +08001735 mmu_spte_clear_no_track(parent_pte);
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08001736}
1737
Takuya Yoshikawa47005792015-11-20 17:46:29 +09001738static struct kvm_mmu_page *kvm_mmu_alloc_page(struct kvm_vcpu *vcpu, int direct)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001739{
Avi Kivity4db35312007-11-21 15:28:32 +02001740 struct kvm_mmu_page *sp;
Takuya Yoshikawa7ddca7e2013-03-21 19:33:43 +09001741
Takuya Yoshikawa80feb892012-05-29 23:54:26 +09001742 sp = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_header_cache);
1743 sp->spt = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache);
Lai Jiangshan2032a932010-05-26 16:49:59 +08001744 if (!direct)
Takuya Yoshikawa80feb892012-05-29 23:54:26 +09001745 sp->gfns = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache);
Avi Kivity4db35312007-11-21 15:28:32 +02001746 set_page_private(virt_to_page(sp->spt), (unsigned long)sp);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08001747
1748 /*
1749 * The active_mmu_pages list is the FIFO list, do not move the
1750 * page until it is zapped. kvm_zap_obsolete_pages depends on
1751 * this feature. See the comments in kvm_zap_obsolete_pages().
1752 */
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001753 list_add(&sp->link, &vcpu->kvm->arch.active_mmu_pages);
Dave Hansen45221ab2010-08-19 18:11:37 -07001754 kvm_mod_used_mmu_pages(vcpu->kvm, +1);
Avi Kivity4db35312007-11-21 15:28:32 +02001755 return sp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001756}
1757
Xiao Guangrong67052b32011-05-15 23:27:08 +08001758static void mark_unsync(u64 *spte);
Xiao Guangrong6b184932010-04-16 21:29:17 +08001759static void kvm_mmu_mark_parents_unsync(struct kvm_mmu_page *sp)
Marcelo Tosatti0074ff62008-09-23 13:18:40 -03001760{
Takuya Yoshikawa74c4e632015-11-26 21:15:38 +09001761 u64 *sptep;
1762 struct rmap_iterator iter;
1763
1764 for_each_rmap_spte(&sp->parent_ptes, &iter, sptep) {
1765 mark_unsync(sptep);
1766 }
Xiao Guangrong1047df12010-06-11 21:35:15 +08001767}
1768
Xiao Guangrong67052b32011-05-15 23:27:08 +08001769static void mark_unsync(u64 *spte)
Xiao Guangrong1047df12010-06-11 21:35:15 +08001770{
Xiao Guangrong67052b32011-05-15 23:27:08 +08001771 struct kvm_mmu_page *sp;
Xiao Guangrong1047df12010-06-11 21:35:15 +08001772 unsigned int index;
1773
Xiao Guangrong67052b32011-05-15 23:27:08 +08001774 sp = page_header(__pa(spte));
Xiao Guangrong1047df12010-06-11 21:35:15 +08001775 index = spte - sp->spt;
1776 if (__test_and_set_bit(index, sp->unsync_child_bitmap))
1777 return;
1778 if (sp->unsync_children++)
1779 return;
1780 kvm_mmu_mark_parents_unsync(sp);
Marcelo Tosatti0074ff62008-09-23 13:18:40 -03001781}
1782
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03001783static int nonpaging_sync_page(struct kvm_vcpu *vcpu,
Xiao Guangronga4a8e6f2010-11-19 17:04:03 +08001784 struct kvm_mmu_page *sp)
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03001785{
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01001786 return 0;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03001787}
1788
Marcelo Tosattia7052892008-09-23 13:18:35 -03001789static void nonpaging_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
1790{
1791}
1792
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08001793static void nonpaging_update_pte(struct kvm_vcpu *vcpu,
1794 struct kvm_mmu_page *sp, u64 *spte,
Xiao Guangrong7c562522011-03-28 10:29:27 +08001795 const void *pte)
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08001796{
1797 WARN_ON(1);
1798}
1799
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001800#define KVM_PAGE_ARRAY_NR 16
1801
1802struct kvm_mmu_pages {
1803 struct mmu_page_and_offset {
1804 struct kvm_mmu_page *sp;
1805 unsigned int idx;
1806 } page[KVM_PAGE_ARRAY_NR];
1807 unsigned int nr;
1808};
1809
Hannes Edercded19f2009-02-21 02:19:13 +01001810static int mmu_pages_add(struct kvm_mmu_pages *pvec, struct kvm_mmu_page *sp,
1811 int idx)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001812{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001813 int i;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001814
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001815 if (sp->unsync)
1816 for (i=0; i < pvec->nr; i++)
1817 if (pvec->page[i].sp == sp)
1818 return 0;
1819
1820 pvec->page[pvec->nr].sp = sp;
1821 pvec->page[pvec->nr].idx = idx;
1822 pvec->nr++;
1823 return (pvec->nr == KVM_PAGE_ARRAY_NR);
1824}
1825
Takuya Yoshikawafd951452015-11-20 17:43:13 +09001826static inline void clear_unsync_child_bit(struct kvm_mmu_page *sp, int idx)
1827{
1828 --sp->unsync_children;
1829 WARN_ON((int)sp->unsync_children < 0);
1830 __clear_bit(idx, sp->unsync_child_bitmap);
1831}
1832
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001833static int __mmu_unsync_walk(struct kvm_mmu_page *sp,
1834 struct kvm_mmu_pages *pvec)
1835{
1836 int i, ret, nr_unsync_leaf = 0;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001837
Takuya Yoshikawa37178b82011-11-29 14:02:45 +09001838 for_each_set_bit(i, sp->unsync_child_bitmap, 512) {
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001839 struct kvm_mmu_page *child;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001840 u64 ent = sp->spt[i];
1841
Takuya Yoshikawafd951452015-11-20 17:43:13 +09001842 if (!is_shadow_present_pte(ent) || is_large_pte(ent)) {
1843 clear_unsync_child_bit(sp, i);
1844 continue;
1845 }
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001846
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001847 child = page_header(ent & PT64_BASE_ADDR_MASK);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001848
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001849 if (child->unsync_children) {
1850 if (mmu_pages_add(pvec, child, i))
1851 return -ENOSPC;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001852
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001853 ret = __mmu_unsync_walk(child, pvec);
Takuya Yoshikawafd951452015-11-20 17:43:13 +09001854 if (!ret) {
1855 clear_unsync_child_bit(sp, i);
1856 continue;
1857 } else if (ret > 0) {
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001858 nr_unsync_leaf += ret;
Takuya Yoshikawafd951452015-11-20 17:43:13 +09001859 } else
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001860 return ret;
1861 } else if (child->unsync) {
1862 nr_unsync_leaf++;
1863 if (mmu_pages_add(pvec, child, i))
1864 return -ENOSPC;
1865 } else
Takuya Yoshikawafd951452015-11-20 17:43:13 +09001866 clear_unsync_child_bit(sp, i);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001867 }
1868
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001869 return nr_unsync_leaf;
1870}
1871
Xiao Guangronge23d3fe2016-02-24 09:46:06 +01001872#define INVALID_INDEX (-1)
1873
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001874static int mmu_unsync_walk(struct kvm_mmu_page *sp,
1875 struct kvm_mmu_pages *pvec)
1876{
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01001877 pvec->nr = 0;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001878 if (!sp->unsync_children)
1879 return 0;
1880
Xiao Guangronge23d3fe2016-02-24 09:46:06 +01001881 mmu_pages_add(pvec, sp, INVALID_INDEX);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001882 return __mmu_unsync_walk(sp, pvec);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001883}
1884
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001885static void kvm_unlink_unsync_page(struct kvm *kvm, struct kvm_mmu_page *sp)
1886{
1887 WARN_ON(!sp->unsync);
Xiao Guangrong5e1b3dd2010-04-28 11:55:06 +08001888 trace_kvm_mmu_sync_page(sp);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001889 sp->unsync = 0;
1890 --kvm->stat.mmu_unsync;
1891}
1892
Xiao Guangrong77758342010-06-04 21:53:54 +08001893static int kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp,
1894 struct list_head *invalid_list);
1895static void kvm_mmu_commit_zap_page(struct kvm *kvm,
1896 struct list_head *invalid_list);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001897
Xiao Guangrongf34d2512013-05-31 08:36:28 +08001898/*
1899 * NOTE: we should pay more attention on the zapped-obsolete page
1900 * (is_obsolete_sp(sp) && sp->role.invalid) when you do hash list walk
1901 * since it has been deleted from active_mmu_pages but still can be found
1902 * at hast list.
1903 *
David Matlackf3414bc2016-12-20 15:25:57 -08001904 * for_each_valid_sp() has skipped that kind of pages.
Xiao Guangrongf34d2512013-05-31 08:36:28 +08001905 */
David Matlackf3414bc2016-12-20 15:25:57 -08001906#define for_each_valid_sp(_kvm, _sp, _gfn) \
Takuya Yoshikawa1044b032013-03-06 16:05:07 +09001907 hlist_for_each_entry(_sp, \
1908 &(_kvm)->arch.mmu_page_hash[kvm_page_table_hashfn(_gfn)], hash_link) \
David Matlackf3414bc2016-12-20 15:25:57 -08001909 if (is_obsolete_sp((_kvm), (_sp)) || (_sp)->role.invalid) { \
1910 } else
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08001911
Takuya Yoshikawa1044b032013-03-06 16:05:07 +09001912#define for_each_gfn_indirect_valid_sp(_kvm, _sp, _gfn) \
David Matlackf3414bc2016-12-20 15:25:57 -08001913 for_each_valid_sp(_kvm, _sp, _gfn) \
1914 if ((_sp)->gfn != (_gfn) || (_sp)->role.direct) {} else
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08001915
Xiao Guangrongf918b442010-06-11 21:30:36 +08001916/* @sp->gfn should be write-protected at the call site */
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01001917static bool __kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
1918 struct list_head *invalid_list)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001919{
Avi Kivity5b7e0102010-04-14 19:20:03 +03001920 if (sp->role.cr4_pae != !!is_pae(vcpu)) {
Xiao Guangrongd98ba052010-06-04 21:55:29 +08001921 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list);
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01001922 return false;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001923 }
1924
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01001925 if (vcpu->arch.mmu.sync_page(vcpu, sp) == 0) {
Xiao Guangrongd98ba052010-06-04 21:55:29 +08001926 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list);
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01001927 return false;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001928 }
1929
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01001930 return true;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001931}
1932
Paolo Bonzini35a70512016-02-24 10:03:27 +01001933static void kvm_mmu_flush_or_zap(struct kvm_vcpu *vcpu,
1934 struct list_head *invalid_list,
1935 bool remote_flush, bool local_flush)
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08001936{
Paolo Bonzini35a70512016-02-24 10:03:27 +01001937 if (!list_empty(invalid_list)) {
1938 kvm_mmu_commit_zap_page(vcpu->kvm, invalid_list);
1939 return;
1940 }
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08001941
Paolo Bonzini35a70512016-02-24 10:03:27 +01001942 if (remote_flush)
1943 kvm_flush_remote_tlbs(vcpu->kvm);
1944 else if (local_flush)
1945 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08001946}
1947
Xiao Guangronge37fa782011-11-30 17:43:24 +08001948#ifdef CONFIG_KVM_MMU_AUDIT
1949#include "mmu_audit.c"
1950#else
1951static void kvm_mmu_audit(struct kvm_vcpu *vcpu, int point) { }
1952static void mmu_audit_disable(void) { }
1953#endif
1954
Xiao Guangrong46971a22016-03-25 21:19:38 +08001955static bool is_obsolete_sp(struct kvm *kvm, struct kvm_mmu_page *sp)
1956{
1957 return unlikely(sp->mmu_valid_gen != kvm->arch.mmu_valid_gen);
1958}
1959
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01001960static bool kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
Xiao Guangrongd98ba052010-06-04 21:55:29 +08001961 struct list_head *invalid_list)
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08001962{
Paolo Bonzini9a43c5d2016-02-24 10:28:01 +01001963 kvm_unlink_unsync_page(vcpu->kvm, sp);
1964 return __kvm_sync_page(vcpu, sp, invalid_list);
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08001965}
1966
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001967/* @gfn should be write-protected at the call site */
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01001968static bool kvm_sync_pages(struct kvm_vcpu *vcpu, gfn_t gfn,
1969 struct list_head *invalid_list)
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001970{
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001971 struct kvm_mmu_page *s;
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01001972 bool ret = false;
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001973
Sasha Levinb67bfe02013-02-27 17:06:00 -08001974 for_each_gfn_indirect_valid_sp(vcpu->kvm, s, gfn) {
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08001975 if (!s->unsync)
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001976 continue;
1977
1978 WARN_ON(s->role.level != PT_PAGE_TABLE_LEVEL);
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01001979 ret |= kvm_sync_page(vcpu, s, invalid_list);
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001980 }
1981
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01001982 return ret;
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001983}
1984
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001985struct mmu_page_path {
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01001986 struct kvm_mmu_page *parent[PT64_ROOT_LEVEL];
1987 unsigned int idx[PT64_ROOT_LEVEL];
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001988};
1989
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001990#define for_each_sp(pvec, sp, parents, i) \
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01001991 for (i = mmu_pages_first(&pvec, &parents); \
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001992 i < pvec.nr && ({ sp = pvec.page[i].sp; 1;}); \
1993 i = mmu_pages_next(&pvec, &parents, i))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001994
Hannes Edercded19f2009-02-21 02:19:13 +01001995static int mmu_pages_next(struct kvm_mmu_pages *pvec,
1996 struct mmu_page_path *parents,
1997 int i)
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001998{
1999 int n;
2000
2001 for (n = i+1; n < pvec->nr; n++) {
2002 struct kvm_mmu_page *sp = pvec->page[n].sp;
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002003 unsigned idx = pvec->page[n].idx;
2004 int level = sp->role.level;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002005
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002006 parents->idx[level-1] = idx;
2007 if (level == PT_PAGE_TABLE_LEVEL)
2008 break;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002009
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002010 parents->parent[level-2] = sp;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002011 }
2012
2013 return n;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002014}
2015
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002016static int mmu_pages_first(struct kvm_mmu_pages *pvec,
2017 struct mmu_page_path *parents)
2018{
2019 struct kvm_mmu_page *sp;
2020 int level;
2021
2022 if (pvec->nr == 0)
2023 return 0;
2024
Xiao Guangronge23d3fe2016-02-24 09:46:06 +01002025 WARN_ON(pvec->page[0].idx != INVALID_INDEX);
2026
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002027 sp = pvec->page[0].sp;
2028 level = sp->role.level;
2029 WARN_ON(level == PT_PAGE_TABLE_LEVEL);
2030
2031 parents->parent[level-2] = sp;
2032
2033 /* Also set up a sentinel. Further entries in pvec are all
2034 * children of sp, so this element is never overwritten.
2035 */
2036 parents->parent[level-1] = NULL;
2037 return mmu_pages_next(pvec, parents, 0);
2038}
2039
Hannes Edercded19f2009-02-21 02:19:13 +01002040static void mmu_pages_clear_parents(struct mmu_page_path *parents)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002041{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002042 struct kvm_mmu_page *sp;
2043 unsigned int level = 0;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002044
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002045 do {
2046 unsigned int idx = parents->idx[level];
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002047 sp = parents->parent[level];
2048 if (!sp)
2049 return;
2050
Xiao Guangronge23d3fe2016-02-24 09:46:06 +01002051 WARN_ON(idx == INVALID_INDEX);
Takuya Yoshikawafd951452015-11-20 17:43:13 +09002052 clear_unsync_child_bit(sp, idx);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002053 level++;
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002054 } while (!sp->unsync_children);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002055}
2056
2057static void mmu_sync_children(struct kvm_vcpu *vcpu,
2058 struct kvm_mmu_page *parent)
2059{
2060 int i;
2061 struct kvm_mmu_page *sp;
2062 struct mmu_page_path parents;
2063 struct kvm_mmu_pages pages;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002064 LIST_HEAD(invalid_list);
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002065 bool flush = false;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002066
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002067 while (mmu_unsync_walk(parent, &pages)) {
Xiao Guangrong2f845692012-06-20 15:56:53 +08002068 bool protected = false;
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002069
2070 for_each_sp(pages, sp, parents, i)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002071 protected |= rmap_write_protect(vcpu, sp->gfn);
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002072
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002073 if (protected) {
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002074 kvm_flush_remote_tlbs(vcpu->kvm);
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002075 flush = false;
2076 }
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002077
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002078 for_each_sp(pages, sp, parents, i) {
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01002079 flush |= kvm_sync_page(vcpu, sp, &invalid_list);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002080 mmu_pages_clear_parents(&parents);
2081 }
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002082 if (need_resched() || spin_needbreak(&vcpu->kvm->mmu_lock)) {
2083 kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush);
2084 cond_resched_lock(&vcpu->kvm->mmu_lock);
2085 flush = false;
2086 }
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002087 }
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002088
2089 kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002090}
2091
Xiao Guangronga30f47c2011-09-22 16:58:36 +08002092static void __clear_sp_write_flooding_count(struct kvm_mmu_page *sp)
2093{
Xiao Guangronge5691a82016-02-24 17:51:12 +08002094 atomic_set(&sp->write_flooding_count, 0);
Xiao Guangronga30f47c2011-09-22 16:58:36 +08002095}
2096
2097static void clear_sp_write_flooding_count(u64 *spte)
2098{
2099 struct kvm_mmu_page *sp = page_header(__pa(spte));
2100
2101 __clear_sp_write_flooding_count(sp);
2102}
2103
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002104static struct kvm_mmu_page *kvm_mmu_get_page(struct kvm_vcpu *vcpu,
2105 gfn_t gfn,
2106 gva_t gaddr,
2107 unsigned level,
Avi Kivityf6e2c02b2009-01-11 13:02:10 +02002108 int direct,
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09002109 unsigned access)
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002110{
2111 union kvm_mmu_page_role role;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002112 unsigned quadrant;
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002113 struct kvm_mmu_page *sp;
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002114 bool need_sync = false;
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002115 bool flush = false;
David Matlackf3414bc2016-12-20 15:25:57 -08002116 int collisions = 0;
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002117 LIST_HEAD(invalid_list);
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002118
Avi Kivitya770f6f2008-12-21 19:20:09 +02002119 role = vcpu->arch.mmu.base_role;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002120 role.level = level;
Avi Kivityf6e2c02b2009-01-11 13:02:10 +02002121 role.direct = direct;
Avi Kivity84b0c8c2010-03-14 10:16:40 +02002122 if (role.direct)
Avi Kivity5b7e0102010-04-14 19:20:03 +03002123 role.cr4_pae = 0;
Avi Kivity41074d02007-12-09 17:00:02 +02002124 role.access = access;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02002125 if (!vcpu->arch.mmu.direct_map
2126 && vcpu->arch.mmu.root_level <= PT32_ROOT_LEVEL) {
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002127 quadrant = gaddr >> (PAGE_SHIFT + (PT64_PT_BITS * level));
2128 quadrant &= (1 << ((PT32_PT_BITS - PT64_PT_BITS) * level)) - 1;
2129 role.quadrant = quadrant;
2130 }
David Matlackf3414bc2016-12-20 15:25:57 -08002131 for_each_valid_sp(vcpu->kvm, sp, gfn) {
2132 if (sp->gfn != gfn) {
2133 collisions++;
2134 continue;
2135 }
2136
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002137 if (!need_sync && sp->unsync)
2138 need_sync = true;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002139
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002140 if (sp->role.word != role.word)
2141 continue;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002142
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002143 if (sp->unsync) {
2144 /* The page is good, but __kvm_sync_page might still end
2145 * up zapping it. If so, break in order to rebuild it.
2146 */
2147 if (!__kvm_sync_page(vcpu, sp, &invalid_list))
2148 break;
2149
2150 WARN_ON(!list_empty(&invalid_list));
2151 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
2152 }
Xiao Guangronge02aa902010-05-15 18:52:34 +08002153
Takuya Yoshikawa98bba232015-11-26 21:14:34 +09002154 if (sp->unsync_children)
Avi Kivitya8eeb042010-05-10 12:34:53 +03002155 kvm_make_request(KVM_REQ_MMU_SYNC, vcpu);
Xiao Guangronge02aa902010-05-15 18:52:34 +08002156
Xiao Guangronga30f47c2011-09-22 16:58:36 +08002157 __clear_sp_write_flooding_count(sp);
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002158 trace_kvm_mmu_get_page(sp, false);
David Matlackf3414bc2016-12-20 15:25:57 -08002159 goto out;
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002160 }
Takuya Yoshikawa47005792015-11-20 17:46:29 +09002161
Avi Kivitydfc5aa02007-12-18 19:47:18 +02002162 ++vcpu->kvm->stat.mmu_cache_miss;
Takuya Yoshikawa47005792015-11-20 17:46:29 +09002163
2164 sp = kvm_mmu_alloc_page(vcpu, direct);
2165
Avi Kivity4db35312007-11-21 15:28:32 +02002166 sp->gfn = gfn;
2167 sp->role = role;
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002168 hlist_add_head(&sp->hash_link,
2169 &vcpu->kvm->arch.mmu_page_hash[kvm_page_table_hashfn(gfn)]);
Avi Kivityf6e2c02b2009-01-11 13:02:10 +02002170 if (!direct) {
Xiao Guangrong56ca57f2016-02-24 17:51:14 +08002171 /*
2172 * we should do write protection before syncing pages
2173 * otherwise the content of the synced shadow page may
2174 * be inconsistent with guest page table.
2175 */
Paolo Bonzini3ed1a472015-05-19 16:29:22 +02002176 account_shadowed(vcpu->kvm, sp);
Xiao Guangrong56ca57f2016-02-24 17:51:14 +08002177 if (level == PT_PAGE_TABLE_LEVEL &&
2178 rmap_write_protect(vcpu, gfn))
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002179 kvm_flush_remote_tlbs(vcpu->kvm);
Xiao Guangrong56ca57f2016-02-24 17:51:14 +08002180
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002181 if (level > PT_PAGE_TABLE_LEVEL && need_sync)
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002182 flush |= kvm_sync_pages(vcpu, gfn, &invalid_list);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002183 }
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08002184 sp->mmu_valid_gen = vcpu->kvm->arch.mmu_valid_gen;
Takuya Yoshikawa77492662015-12-18 18:54:49 +09002185 clear_page(sp->spt);
Avi Kivityf691fe12009-07-06 15:58:14 +03002186 trace_kvm_mmu_get_page(sp, true);
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002187
2188 kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush);
David Matlackf3414bc2016-12-20 15:25:57 -08002189out:
2190 if (collisions > vcpu->kvm->stat.max_mmu_page_hash_collisions)
2191 vcpu->kvm->stat.max_mmu_page_hash_collisions = collisions;
Avi Kivity4db35312007-11-21 15:28:32 +02002192 return sp;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002193}
2194
Avi Kivity2d111232008-12-25 14:39:47 +02002195static void shadow_walk_init(struct kvm_shadow_walk_iterator *iterator,
2196 struct kvm_vcpu *vcpu, u64 addr)
2197{
2198 iterator->addr = addr;
2199 iterator->shadow_addr = vcpu->arch.mmu.root_hpa;
2200 iterator->level = vcpu->arch.mmu.shadow_root_level;
Joerg Roedel81407ca2010-09-10 17:31:00 +02002201
2202 if (iterator->level == PT64_ROOT_LEVEL &&
2203 vcpu->arch.mmu.root_level < PT64_ROOT_LEVEL &&
2204 !vcpu->arch.mmu.direct_map)
2205 --iterator->level;
2206
Avi Kivity2d111232008-12-25 14:39:47 +02002207 if (iterator->level == PT32E_ROOT_LEVEL) {
2208 iterator->shadow_addr
2209 = vcpu->arch.mmu.pae_root[(addr >> 30) & 3];
2210 iterator->shadow_addr &= PT64_BASE_ADDR_MASK;
2211 --iterator->level;
2212 if (!iterator->shadow_addr)
2213 iterator->level = 0;
2214 }
2215}
2216
2217static bool shadow_walk_okay(struct kvm_shadow_walk_iterator *iterator)
2218{
2219 if (iterator->level < PT_PAGE_TABLE_LEVEL)
2220 return false;
Marcelo Tosatti4d889542009-06-11 12:07:41 -03002221
Avi Kivity2d111232008-12-25 14:39:47 +02002222 iterator->index = SHADOW_PT_INDEX(iterator->addr, iterator->level);
2223 iterator->sptep = ((u64 *)__va(iterator->shadow_addr)) + iterator->index;
2224 return true;
2225}
2226
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002227static void __shadow_walk_next(struct kvm_shadow_walk_iterator *iterator,
2228 u64 spte)
Avi Kivity2d111232008-12-25 14:39:47 +02002229{
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002230 if (is_last_spte(spte, iterator->level)) {
Xiao Guangrong052331b2011-07-12 03:21:17 +08002231 iterator->level = 0;
2232 return;
2233 }
2234
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002235 iterator->shadow_addr = spte & PT64_BASE_ADDR_MASK;
Avi Kivity2d111232008-12-25 14:39:47 +02002236 --iterator->level;
2237}
2238
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002239static void shadow_walk_next(struct kvm_shadow_walk_iterator *iterator)
2240{
2241 return __shadow_walk_next(iterator, *iterator->sptep);
2242}
2243
Takuya Yoshikawa98bba232015-11-26 21:14:34 +09002244static void link_shadow_page(struct kvm_vcpu *vcpu, u64 *sptep,
2245 struct kvm_mmu_page *sp)
Avi Kivity32ef26a2010-07-13 14:27:04 +03002246{
2247 u64 spte;
2248
Bandan Dasffb128c2016-07-12 18:18:49 -04002249 BUILD_BUG_ON(VMX_EPT_WRITABLE_MASK != PT_WRITABLE_MASK);
Yang Zhang7a1638c2013-08-05 11:07:13 +03002250
Bandan Dasffb128c2016-07-12 18:18:49 -04002251 spte = __pa(sp->spt) | shadow_present_mask | PT_WRITABLE_MASK |
Paolo Bonzini0e3d0642015-11-13 11:52:45 +01002252 shadow_user_mask | shadow_x_mask | shadow_accessed_mask;
Xiao Guangrong24db2732013-02-05 15:28:02 +08002253
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +08002254 mmu_spte_set(sptep, spte);
Takuya Yoshikawa98bba232015-11-26 21:14:34 +09002255
2256 mmu_page_add_parent_pte(vcpu, sp, sptep);
2257
2258 if (sp->unsync_children || sp->unsync)
2259 mark_unsync(sptep);
Avi Kivity32ef26a2010-07-13 14:27:04 +03002260}
2261
Avi Kivitya357bd22010-07-13 14:27:07 +03002262static void validate_direct_spte(struct kvm_vcpu *vcpu, u64 *sptep,
2263 unsigned direct_access)
2264{
2265 if (is_shadow_present_pte(*sptep) && !is_large_pte(*sptep)) {
2266 struct kvm_mmu_page *child;
2267
2268 /*
2269 * For the direct sp, if the guest pte's dirty bit
2270 * changed form clean to dirty, it will corrupt the
2271 * sp's access: allow writable in the read-only sp,
2272 * so we should update the spte at this point to get
2273 * a new sp with the correct access.
2274 */
2275 child = page_header(*sptep & PT64_BASE_ADDR_MASK);
2276 if (child->role.access == direct_access)
2277 return;
2278
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08002279 drop_parent_pte(child, sptep);
Avi Kivitya357bd22010-07-13 14:27:07 +03002280 kvm_flush_remote_tlbs(vcpu->kvm);
2281 }
2282}
2283
Xiao Guangrong505aef82011-09-22 16:56:06 +08002284static bool mmu_page_zap_pte(struct kvm *kvm, struct kvm_mmu_page *sp,
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002285 u64 *spte)
2286{
2287 u64 pte;
2288 struct kvm_mmu_page *child;
2289
2290 pte = *spte;
2291 if (is_shadow_present_pte(pte)) {
Xiao Guangrong505aef82011-09-22 16:56:06 +08002292 if (is_last_spte(pte, sp->role.level)) {
Xiao Guangrongc3707952011-07-12 03:28:04 +08002293 drop_spte(kvm, spte);
Xiao Guangrong505aef82011-09-22 16:56:06 +08002294 if (is_large_pte(pte))
2295 --kvm->stat.lpages;
2296 } else {
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002297 child = page_header(pte & PT64_BASE_ADDR_MASK);
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08002298 drop_parent_pte(child, spte);
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002299 }
Xiao Guangrong505aef82011-09-22 16:56:06 +08002300 return true;
2301 }
2302
2303 if (is_mmio_spte(pte))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08002304 mmu_spte_clear_no_track(spte);
Xiao Guangrongc3707952011-07-12 03:28:04 +08002305
Xiao Guangrong505aef82011-09-22 16:56:06 +08002306 return false;
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002307}
2308
Avi Kivity90cb0522007-07-17 13:04:56 +03002309static void kvm_mmu_page_unlink_children(struct kvm *kvm,
Avi Kivity4db35312007-11-21 15:28:32 +02002310 struct kvm_mmu_page *sp)
Avi Kivitya4360362007-01-05 16:36:45 -08002311{
Avi Kivity697fe2e2007-01-05 16:36:46 -08002312 unsigned i;
Avi Kivity697fe2e2007-01-05 16:36:46 -08002313
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002314 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
2315 mmu_page_zap_pte(kvm, sp, sp->spt + i);
Avi Kivitya4360362007-01-05 16:36:45 -08002316}
2317
Avi Kivity31aa2b42008-07-11 17:59:46 +03002318static void kvm_mmu_unlink_parents(struct kvm *kvm, struct kvm_mmu_page *sp)
Avi Kivitya4360362007-01-05 16:36:45 -08002319{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09002320 u64 *sptep;
2321 struct rmap_iterator iter;
Avi Kivitya4360362007-01-05 16:36:45 -08002322
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09002323 while ((sptep = rmap_get_first(&sp->parent_ptes, &iter)))
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09002324 drop_parent_pte(sp, sptep);
Avi Kivity31aa2b42008-07-11 17:59:46 +03002325}
2326
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002327static int mmu_zap_unsync_children(struct kvm *kvm,
Xiao Guangrong77758342010-06-04 21:53:54 +08002328 struct kvm_mmu_page *parent,
2329 struct list_head *invalid_list)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002330{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002331 int i, zapped = 0;
2332 struct mmu_page_path parents;
2333 struct kvm_mmu_pages pages;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002334
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002335 if (parent->role.level == PT_PAGE_TABLE_LEVEL)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002336 return 0;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002337
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002338 while (mmu_unsync_walk(parent, &pages)) {
2339 struct kvm_mmu_page *sp;
2340
2341 for_each_sp(pages, sp, parents, i) {
Xiao Guangrong77758342010-06-04 21:53:54 +08002342 kvm_mmu_prepare_zap_page(kvm, sp, invalid_list);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002343 mmu_pages_clear_parents(&parents);
Xiao Guangrong77662e02010-04-16 16:34:42 +08002344 zapped++;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002345 }
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002346 }
2347
2348 return zapped;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002349}
2350
Xiao Guangrong77758342010-06-04 21:53:54 +08002351static int kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp,
2352 struct list_head *invalid_list)
Avi Kivity31aa2b42008-07-11 17:59:46 +03002353{
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002354 int ret;
Avi Kivityf691fe12009-07-06 15:58:14 +03002355
Xiao Guangrong77758342010-06-04 21:53:54 +08002356 trace_kvm_mmu_prepare_zap_page(sp);
Avi Kivity31aa2b42008-07-11 17:59:46 +03002357 ++kvm->stat.mmu_shadow_zapped;
Xiao Guangrong77758342010-06-04 21:53:54 +08002358 ret = mmu_zap_unsync_children(kvm, sp, invalid_list);
Avi Kivity4db35312007-11-21 15:28:32 +02002359 kvm_mmu_page_unlink_children(kvm, sp);
Avi Kivity31aa2b42008-07-11 17:59:46 +03002360 kvm_mmu_unlink_parents(kvm, sp);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08002361
Avi Kivityf6e2c02b2009-01-11 13:02:10 +02002362 if (!sp->role.invalid && !sp->role.direct)
Paolo Bonzini3ed1a472015-05-19 16:29:22 +02002363 unaccount_shadowed(kvm, sp);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08002364
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002365 if (sp->unsync)
2366 kvm_unlink_unsync_page(kvm, sp);
Avi Kivity4db35312007-11-21 15:28:32 +02002367 if (!sp->root_count) {
Gui Jianfeng54a4f022010-05-05 09:03:49 +08002368 /* Count self */
2369 ret++;
Xiao Guangrong77758342010-06-04 21:53:54 +08002370 list_move(&sp->link, invalid_list);
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08002371 kvm_mod_used_mmu_pages(kvm, -1);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05002372 } else {
Avi Kivity5b5c6a52008-07-11 18:07:26 +03002373 list_move(&sp->link, &kvm->arch.active_mmu_pages);
Gleb Natapov05988d72013-05-31 08:36:30 +08002374
2375 /*
2376 * The obsolete pages can not be used on any vcpus.
2377 * See the comments in kvm_mmu_invalidate_zap_all_pages().
2378 */
2379 if (!sp->role.invalid && !is_obsolete_sp(kvm, sp))
2380 kvm_reload_remote_mmus(kvm);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05002381 }
Xiao Guangrong77758342010-06-04 21:53:54 +08002382
2383 sp->role.invalid = 1;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002384 return ret;
Avi Kivitya4360362007-01-05 16:36:45 -08002385}
2386
Xiao Guangrong77758342010-06-04 21:53:54 +08002387static void kvm_mmu_commit_zap_page(struct kvm *kvm,
2388 struct list_head *invalid_list)
2389{
Takuya Yoshikawa945315b2013-03-06 16:05:52 +09002390 struct kvm_mmu_page *sp, *nsp;
Xiao Guangrong77758342010-06-04 21:53:54 +08002391
2392 if (list_empty(invalid_list))
2393 return;
2394
Avi Kivityc1427862012-05-14 15:44:06 +03002395 /*
Lan Tianyu9753f522016-03-13 11:10:24 +08002396 * We need to make sure everyone sees our modifications to
2397 * the page tables and see changes to vcpu->mode here. The barrier
2398 * in the kvm_flush_remote_tlbs() achieves this. This pairs
2399 * with vcpu_enter_guest and walk_shadow_page_lockless_begin/end.
2400 *
2401 * In addition, kvm_flush_remote_tlbs waits for all vcpus to exit
2402 * guest mode and/or lockless shadow page table walks.
Avi Kivityc1427862012-05-14 15:44:06 +03002403 */
Xiao Guangrong77758342010-06-04 21:53:54 +08002404 kvm_flush_remote_tlbs(kvm);
2405
Takuya Yoshikawa945315b2013-03-06 16:05:52 +09002406 list_for_each_entry_safe(sp, nsp, invalid_list, link) {
Xiao Guangrong77758342010-06-04 21:53:54 +08002407 WARN_ON(!sp->role.invalid || sp->root_count);
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08002408 kvm_mmu_free_page(sp);
Takuya Yoshikawa945315b2013-03-06 16:05:52 +09002409 }
Xiao Guangrong77758342010-06-04 21:53:54 +08002410}
2411
Takuya Yoshikawa5da59602013-03-06 16:06:58 +09002412static bool prepare_zap_oldest_mmu_page(struct kvm *kvm,
2413 struct list_head *invalid_list)
2414{
2415 struct kvm_mmu_page *sp;
2416
2417 if (list_empty(&kvm->arch.active_mmu_pages))
2418 return false;
2419
Geliang Tangd74c0e62016-01-01 19:47:14 +08002420 sp = list_last_entry(&kvm->arch.active_mmu_pages,
2421 struct kvm_mmu_page, link);
Takuya Yoshikawa5da59602013-03-06 16:06:58 +09002422 kvm_mmu_prepare_zap_page(kvm, sp, invalid_list);
2423
2424 return true;
2425}
2426
Izik Eidus82ce2c92007-10-02 18:52:55 +02002427/*
2428 * Changing the number of mmu pages allocated to the vm
Dave Hansen49d5ca22010-08-19 18:11:28 -07002429 * Note: if goal_nr_mmu_pages is too small, you will get dead lock
Izik Eidus82ce2c92007-10-02 18:52:55 +02002430 */
Dave Hansen49d5ca22010-08-19 18:11:28 -07002431void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int goal_nr_mmu_pages)
Izik Eidus82ce2c92007-10-02 18:52:55 +02002432{
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002433 LIST_HEAD(invalid_list);
Izik Eidus82ce2c92007-10-02 18:52:55 +02002434
Takuya Yoshikawab34cb592013-01-08 19:46:07 +09002435 spin_lock(&kvm->mmu_lock);
2436
Dave Hansen49d5ca22010-08-19 18:11:28 -07002437 if (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages) {
Takuya Yoshikawa5da59602013-03-06 16:06:58 +09002438 /* Need to free some mmu pages to achieve the goal. */
2439 while (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages)
2440 if (!prepare_zap_oldest_mmu_page(kvm, &invalid_list))
2441 break;
Izik Eidus82ce2c92007-10-02 18:52:55 +02002442
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08002443 kvm_mmu_commit_zap_page(kvm, &invalid_list);
Dave Hansen49d5ca22010-08-19 18:11:28 -07002444 goal_nr_mmu_pages = kvm->arch.n_used_mmu_pages;
Izik Eidus82ce2c92007-10-02 18:52:55 +02002445 }
Izik Eidus82ce2c92007-10-02 18:52:55 +02002446
Dave Hansen49d5ca22010-08-19 18:11:28 -07002447 kvm->arch.n_max_mmu_pages = goal_nr_mmu_pages;
Takuya Yoshikawab34cb592013-01-08 19:46:07 +09002448
2449 spin_unlock(&kvm->mmu_lock);
Izik Eidus82ce2c92007-10-02 18:52:55 +02002450}
2451
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002452int kvm_mmu_unprotect_page(struct kvm *kvm, gfn_t gfn)
Avi Kivitya4360362007-01-05 16:36:45 -08002453{
Avi Kivity4db35312007-11-21 15:28:32 +02002454 struct kvm_mmu_page *sp;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002455 LIST_HEAD(invalid_list);
Avi Kivitya4360362007-01-05 16:36:45 -08002456 int r;
2457
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002458 pgprintk("%s: looking for gfn %llx\n", __func__, gfn);
Avi Kivitya4360362007-01-05 16:36:45 -08002459 r = 0;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002460 spin_lock(&kvm->mmu_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08002461 for_each_gfn_indirect_valid_sp(kvm, sp, gfn) {
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002462 pgprintk("%s: gfn %llx role %x\n", __func__, gfn,
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002463 sp->role.word);
2464 r = 1;
Xiao Guangrongf41d3352010-06-04 21:56:11 +08002465 kvm_mmu_prepare_zap_page(kvm, sp, &invalid_list);
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002466 }
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002467 kvm_mmu_commit_zap_page(kvm, &invalid_list);
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002468 spin_unlock(&kvm->mmu_lock);
2469
Avi Kivitya4360362007-01-05 16:36:45 -08002470 return r;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002471}
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002472EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page);
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002473
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002474static void kvm_unsync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002475{
Xiao Guangrong5e1b3dd2010-04-28 11:55:06 +08002476 trace_kvm_mmu_unsync_page(sp);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002477 ++vcpu->kvm->stat.mmu_unsync;
2478 sp->unsync = 1;
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -02002479
Xiao Guangrong6b184932010-04-16 21:29:17 +08002480 kvm_mmu_mark_parents_unsync(sp);
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002481}
2482
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08002483static bool mmu_need_write_protect(struct kvm_vcpu *vcpu, gfn_t gfn,
2484 bool can_unsync)
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002485{
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002486 struct kvm_mmu_page *sp;
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002487
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08002488 if (kvm_page_track_is_active(vcpu, gfn, KVM_PAGE_TRACK_WRITE))
2489 return true;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002490
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002491 for_each_gfn_indirect_valid_sp(vcpu->kvm, sp, gfn) {
Xiao Guangrong36a2e672010-06-30 16:02:02 +08002492 if (!can_unsync)
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08002493 return true;
Xiao Guangrong36a2e672010-06-30 16:02:02 +08002494
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002495 if (sp->unsync)
2496 continue;
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002497
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002498 WARN_ON(sp->role.level != PT_PAGE_TABLE_LEVEL);
2499 kvm_unsync_page(vcpu, sp);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002500 }
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08002501
2502 return false;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002503}
2504
Dan Williamsba049e92016-01-15 16:56:11 -08002505static bool kvm_is_mmio_pfn(kvm_pfn_t pfn)
Paolo Bonzinid1fe9212015-07-07 15:03:18 +02002506{
2507 if (pfn_valid(pfn))
2508 return !is_zero_pfn(pfn) && PageReserved(pfn_to_page(pfn));
2509
2510 return true;
2511}
2512
Avi Kivityd555c332009-06-10 14:24:23 +03002513static int set_spte(struct kvm_vcpu *vcpu, u64 *sptep,
Xiao Guangrongc22885052013-01-08 14:36:04 +08002514 unsigned pte_access, int level,
Dan Williamsba049e92016-01-15 16:56:11 -08002515 gfn_t gfn, kvm_pfn_t pfn, bool speculative,
Lai Jiangshan9bdbba12010-11-19 17:03:22 +08002516 bool can_unsync, bool host_writable)
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002517{
Bandan Dasffb128c2016-07-12 18:18:49 -04002518 u64 spte = 0;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002519 int ret = 0;
Sheng Yang64d4d522008-10-09 16:01:57 +08002520
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002521 if (set_mmio_spte(vcpu, sptep, gfn, pfn, pte_access))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08002522 return 0;
2523
Bandan Dasd95c5562016-07-12 18:18:51 -04002524 /*
2525 * For the EPT case, shadow_present_mask is 0 if hardware
2526 * supports exec-only page table entries. In that case,
2527 * ACC_USER_MASK and shadow_user_mask are used to represent
2528 * read access. See FNAME(gpte_access) in paging_tmpl.h.
2529 */
Bandan Dasffb128c2016-07-12 18:18:49 -04002530 spte |= shadow_present_mask;
Avi Kivity947da532008-03-18 11:05:52 +02002531 if (!speculative)
Avi Kivity3201b5d2008-08-27 20:01:04 +03002532 spte |= shadow_accessed_mask;
Xiao Guangrong640d9b02011-07-12 03:24:39 +08002533
Sheng Yang7b523452008-04-25 21:13:50 +08002534 if (pte_access & ACC_EXEC_MASK)
2535 spte |= shadow_x_mask;
2536 else
2537 spte |= shadow_nx_mask;
Xiao Guangrong49fde342012-06-20 15:58:58 +08002538
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002539 if (pte_access & ACC_USER_MASK)
Sheng Yang7b523452008-04-25 21:13:50 +08002540 spte |= shadow_user_mask;
Xiao Guangrong49fde342012-06-20 15:58:58 +08002541
Joerg Roedel852e3c12009-07-27 16:30:44 +02002542 if (level > PT_PAGE_TABLE_LEVEL)
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002543 spte |= PT_PAGE_SIZE_MASK;
Avi Kivityb0bc3ee2010-09-13 16:45:28 +02002544 if (tdp_enabled)
Sheng Yang4b12f0d2009-04-27 20:35:42 +08002545 spte |= kvm_x86_ops->get_mt_mask(vcpu, gfn,
Paolo Bonzinid1fe9212015-07-07 15:03:18 +02002546 kvm_is_mmio_pfn(pfn));
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002547
Lai Jiangshan9bdbba12010-11-19 17:03:22 +08002548 if (host_writable)
Izik Eidus14032832009-09-23 21:47:17 +03002549 spte |= SPTE_HOST_WRITEABLE;
Xiao Guangrongf8e453b2010-12-23 16:09:29 +08002550 else
2551 pte_access &= ~ACC_WRITE_MASK;
Izik Eidus14032832009-09-23 21:47:17 +03002552
Anthony Liguori35149e22008-04-02 14:46:56 -05002553 spte |= (u64)pfn << PAGE_SHIFT;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002554
Xiao Guangrongc22885052013-01-08 14:36:04 +08002555 if (pte_access & ACC_WRITE_MASK) {
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002556
Xiao Guangrongc2193462012-12-04 07:17:11 +08002557 /*
Xiao Guangrong7751bab2013-01-08 14:36:51 +08002558 * Other vcpu creates new sp in the window between
2559 * mapping_level() and acquiring mmu-lock. We can
2560 * allow guest to retry the access, the mapping can
2561 * be fixed if guest refault.
Xiao Guangrongc2193462012-12-04 07:17:11 +08002562 */
Joerg Roedel852e3c12009-07-27 16:30:44 +02002563 if (level > PT_PAGE_TABLE_LEVEL &&
Xiao Guangrong92f94f12016-02-24 17:51:06 +08002564 mmu_gfn_lpage_is_disallowed(vcpu, gfn, level))
Avi Kivitybe38d272010-06-06 14:31:27 +03002565 goto done;
Marcelo Tosatti38187c82008-09-23 13:18:32 -03002566
Xiao Guangrong49fde342012-06-20 15:58:58 +08002567 spte |= PT_WRITABLE_MASK | SPTE_MMU_WRITEABLE;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002568
Marcelo Tosattiecc55892008-11-25 15:58:07 +01002569 /*
2570 * Optimization: for pte sync, if spte was writable the hash
2571 * lookup is unnecessary (and expensive). Write protection
2572 * is responsibility of mmu_get_page / kvm_sync_page.
2573 * Same reasoning can be applied to dirty page accounting.
2574 */
Takuya Yoshikawa8dae4442010-01-18 18:45:10 +09002575 if (!can_unsync && is_writable_pte(*sptep))
Marcelo Tosattiecc55892008-11-25 15:58:07 +01002576 goto set_pte;
2577
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002578 if (mmu_need_write_protect(vcpu, gfn, can_unsync)) {
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002579 pgprintk("%s: found shadow page for %llx, marking ro\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002580 __func__, gfn);
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002581 ret = 1;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002582 pte_access &= ~ACC_WRITE_MASK;
Xiao Guangrong49fde342012-06-20 15:58:58 +08002583 spte &= ~(PT_WRITABLE_MASK | SPTE_MMU_WRITEABLE);
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002584 }
2585 }
2586
Kai Huang9b51a632015-01-28 10:54:25 +08002587 if (pte_access & ACC_WRITE_MASK) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002588 kvm_vcpu_mark_page_dirty(vcpu, gfn);
Kai Huang9b51a632015-01-28 10:54:25 +08002589 spte |= shadow_dirty_mask;
2590 }
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002591
Marcelo Tosatti38187c82008-09-23 13:18:32 -03002592set_pte:
Xiao Guangrong6e7d0352012-06-20 15:58:33 +08002593 if (mmu_spte_update(sptep, spte))
Xiao Guangrongb330aa02010-11-19 17:02:35 +08002594 kvm_flush_remote_tlbs(vcpu->kvm);
Avi Kivitybe38d272010-06-06 14:31:27 +03002595done:
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002596 return ret;
2597}
2598
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002599static bool mmu_set_spte(struct kvm_vcpu *vcpu, u64 *sptep, unsigned pte_access,
Dan Williamsba049e92016-01-15 16:56:11 -08002600 int write_fault, int level, gfn_t gfn, kvm_pfn_t pfn,
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002601 bool speculative, bool host_writable)
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002602{
2603 int was_rmapped = 0;
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03002604 int rmap_count;
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002605 bool emulate = false;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002606
Xiao Guangrongf7616202013-02-05 15:27:27 +08002607 pgprintk("%s: spte %llx write_fault %d gfn %llx\n", __func__,
2608 *sptep, write_fault, gfn);
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002609
Takuya Yoshikawaafd28fe2015-11-20 17:44:55 +09002610 if (is_shadow_present_pte(*sptep)) {
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002611 /*
2612 * If we overwrite a PTE page pointer with a 2MB PMD, unlink
2613 * the parent of the now unreachable PTE.
2614 */
Joerg Roedel852e3c12009-07-27 16:30:44 +02002615 if (level > PT_PAGE_TABLE_LEVEL &&
2616 !is_large_pte(*sptep)) {
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002617 struct kvm_mmu_page *child;
Avi Kivityd555c332009-06-10 14:24:23 +03002618 u64 pte = *sptep;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002619
2620 child = page_header(pte & PT64_BASE_ADDR_MASK);
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08002621 drop_parent_pte(child, sptep);
Marcelo Tosatti3be22642010-05-28 09:44:59 -03002622 kvm_flush_remote_tlbs(vcpu->kvm);
Avi Kivityd555c332009-06-10 14:24:23 +03002623 } else if (pfn != spte_to_pfn(*sptep)) {
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002624 pgprintk("hfn old %llx new %llx\n",
Avi Kivityd555c332009-06-10 14:24:23 +03002625 spte_to_pfn(*sptep), pfn);
Xiao Guangrongc3707952011-07-12 03:28:04 +08002626 drop_spte(vcpu->kvm, sptep);
Xiao Guangrong91546352010-06-30 16:04:06 +08002627 kvm_flush_remote_tlbs(vcpu->kvm);
Joerg Roedel6bed6b92009-02-18 14:08:59 +01002628 } else
2629 was_rmapped = 1;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002630 }
Joerg Roedel852e3c12009-07-27 16:30:44 +02002631
Xiao Guangrongc22885052013-01-08 14:36:04 +08002632 if (set_spte(vcpu, sptep, pte_access, level, gfn, pfn, speculative,
2633 true, host_writable)) {
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002634 if (write_fault)
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002635 emulate = true;
Liang Chen77c39132014-09-18 12:38:37 -04002636 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Marcelo Tosattia378b4e2008-09-23 13:18:31 -03002637 }
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002638
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002639 if (unlikely(is_mmio_spte(*sptep)))
2640 emulate = true;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08002641
Avi Kivityd555c332009-06-10 14:24:23 +03002642 pgprintk("%s: setting spte %llx\n", __func__, *sptep);
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002643 pgprintk("instantiating %s PTE (%s) at %llx (%llx) addr %p\n",
Avi Kivityd555c332009-06-10 14:24:23 +03002644 is_large_pte(*sptep)? "2MB" : "4kB",
Joerg Roedela205bc12009-07-09 16:36:01 +02002645 *sptep & PT_PRESENT_MASK ?"RW":"R", gfn,
2646 *sptep, sptep);
Avi Kivityd555c332009-06-10 14:24:23 +03002647 if (!was_rmapped && is_large_pte(*sptep))
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002648 ++vcpu->kvm->stat.lpages;
2649
Xiao Guangrongffb61bb2011-07-12 03:22:01 +08002650 if (is_shadow_present_pte(*sptep)) {
Xiao Guangrongffb61bb2011-07-12 03:22:01 +08002651 if (!was_rmapped) {
2652 rmap_count = rmap_add(vcpu, sptep, gfn);
2653 if (rmap_count > RMAP_RECYCLE_THRESHOLD)
2654 rmap_recycle(vcpu, sptep, gfn);
2655 }
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002656 }
Xiao Guangrongcb9aaa32012-08-03 15:42:10 +08002657
Xiao Guangrongf3ac1a42012-10-16 20:07:03 +08002658 kvm_release_pfn_clean(pfn);
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002659
2660 return emulate;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002661}
2662
Dan Williamsba049e92016-01-15 16:56:11 -08002663static kvm_pfn_t pte_prefetch_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn,
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002664 bool no_dirty_log)
2665{
2666 struct kvm_memory_slot *slot;
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002667
Xiao Guangrong5d163b12011-03-09 15:43:00 +08002668 slot = gfn_to_memslot_dirty_bitmap(vcpu, gfn, no_dirty_log);
Xiao Guangrong903816f2012-07-17 21:54:11 +08002669 if (!slot)
Xiao Guangrong6c8ee572012-08-03 15:37:54 +08002670 return KVM_PFN_ERR_FAULT;
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002671
Xiao Guangrong037d92d2012-08-21 10:59:12 +08002672 return gfn_to_pfn_memslot_atomic(slot, gfn);
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002673}
2674
2675static int direct_pte_prefetch_many(struct kvm_vcpu *vcpu,
2676 struct kvm_mmu_page *sp,
2677 u64 *start, u64 *end)
2678{
2679 struct page *pages[PTE_PREFETCH_NUM];
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02002680 struct kvm_memory_slot *slot;
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002681 unsigned access = sp->role.access;
2682 int i, ret;
2683 gfn_t gfn;
2684
2685 gfn = kvm_mmu_page_get_gfn(sp, start - sp->spt);
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02002686 slot = gfn_to_memslot_dirty_bitmap(vcpu, gfn, access & ACC_WRITE_MASK);
2687 if (!slot)
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002688 return -1;
2689
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02002690 ret = gfn_to_page_many_atomic(slot, gfn, pages, end - start);
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002691 if (ret <= 0)
2692 return -1;
2693
2694 for (i = 0; i < ret; i++, gfn++, start++)
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002695 mmu_set_spte(vcpu, start, access, 0, sp->role.level, gfn,
2696 page_to_pfn(pages[i]), true, true);
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002697
2698 return 0;
2699}
2700
2701static void __direct_pte_prefetch(struct kvm_vcpu *vcpu,
2702 struct kvm_mmu_page *sp, u64 *sptep)
2703{
2704 u64 *spte, *start = NULL;
2705 int i;
2706
2707 WARN_ON(!sp->role.direct);
2708
2709 i = (sptep - sp->spt) & ~(PTE_PREFETCH_NUM - 1);
2710 spte = sp->spt + i;
2711
2712 for (i = 0; i < PTE_PREFETCH_NUM; i++, spte++) {
Xiao Guangrongc3707952011-07-12 03:28:04 +08002713 if (is_shadow_present_pte(*spte) || spte == sptep) {
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002714 if (!start)
2715 continue;
2716 if (direct_pte_prefetch_many(vcpu, sp, start, spte) < 0)
2717 break;
2718 start = NULL;
2719 } else if (!start)
2720 start = spte;
2721 }
2722}
2723
2724static void direct_pte_prefetch(struct kvm_vcpu *vcpu, u64 *sptep)
2725{
2726 struct kvm_mmu_page *sp;
2727
2728 /*
2729 * Since it's no accessed bit on EPT, it's no way to
2730 * distinguish between actually accessed translations
2731 * and prefetched, so disable pte prefetch if EPT is
2732 * enabled.
2733 */
2734 if (!shadow_accessed_mask)
2735 return;
2736
2737 sp = page_header(__pa(sptep));
2738 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
2739 return;
2740
2741 __direct_pte_prefetch(vcpu, sp, sptep);
2742}
2743
Takuya Yoshikawa7ee0e5b2015-11-20 17:42:23 +09002744static int __direct_map(struct kvm_vcpu *vcpu, int write, int map_writable,
Dan Williamsba049e92016-01-15 16:56:11 -08002745 int level, gfn_t gfn, kvm_pfn_t pfn, bool prefault)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002746{
Avi Kivity9f652d22008-12-25 14:54:25 +02002747 struct kvm_shadow_walk_iterator iterator;
2748 struct kvm_mmu_page *sp;
Xiao Guangrongb90a0e62011-07-12 03:25:56 +08002749 int emulate = 0;
Avi Kivity9f652d22008-12-25 14:54:25 +02002750 gfn_t pseudo_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002751
Marcelo Tosatti989c6b32013-12-19 15:28:51 -02002752 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
2753 return 0;
2754
Avi Kivity9f652d22008-12-25 14:54:25 +02002755 for_each_shadow_entry(vcpu, (u64)gfn << PAGE_SHIFT, iterator) {
Joerg Roedel852e3c12009-07-27 16:30:44 +02002756 if (iterator.level == level) {
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002757 emulate = mmu_set_spte(vcpu, iterator.sptep, ACC_ALL,
2758 write, level, gfn, pfn, prefault,
2759 map_writable);
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002760 direct_pte_prefetch(vcpu, iterator.sptep);
Avi Kivity9f652d22008-12-25 14:54:25 +02002761 ++vcpu->stat.pf_fixed;
2762 break;
2763 }
2764
Marcelo Tosatti404381c2014-02-24 13:59:32 -03002765 drop_large_spte(vcpu, iterator.sptep);
Xiao Guangrongc3707952011-07-12 03:28:04 +08002766 if (!is_shadow_present_pte(*iterator.sptep)) {
Lai Jiangshanc9fa0b32010-05-26 16:48:25 +08002767 u64 base_addr = iterator.addr;
2768
2769 base_addr &= PT64_LVL_ADDR_MASK(iterator.level);
2770 pseudo_gfn = base_addr >> PAGE_SHIFT;
Avi Kivity9f652d22008-12-25 14:54:25 +02002771 sp = kvm_mmu_get_page(vcpu, pseudo_gfn, iterator.addr,
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09002772 iterator.level - 1, 1, ACC_ALL);
Avi Kivity9f652d22008-12-25 14:54:25 +02002773
Takuya Yoshikawa98bba232015-11-26 21:14:34 +09002774 link_shadow_page(vcpu, iterator.sptep, sp);
Avi Kivity9f652d22008-12-25 14:54:25 +02002775 }
2776 }
Xiao Guangrongb90a0e62011-07-12 03:25:56 +08002777 return emulate;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002778}
2779
Huang Ying77db5cb2010-10-08 16:24:15 +08002780static void kvm_send_hwpoison_signal(unsigned long address, struct task_struct *tsk)
Huang Yingbf998152010-05-31 14:28:19 +08002781{
Huang Ying77db5cb2010-10-08 16:24:15 +08002782 siginfo_t info;
Huang Yingbf998152010-05-31 14:28:19 +08002783
Huang Ying77db5cb2010-10-08 16:24:15 +08002784 info.si_signo = SIGBUS;
2785 info.si_errno = 0;
2786 info.si_code = BUS_MCEERR_AR;
2787 info.si_addr = (void __user *)address;
2788 info.si_addr_lsb = PAGE_SHIFT;
2789
2790 send_sig_info(SIGBUS, &info, tsk);
Huang Yingbf998152010-05-31 14:28:19 +08002791}
2792
Dan Williamsba049e92016-01-15 16:56:11 -08002793static int kvm_handle_bad_page(struct kvm_vcpu *vcpu, gfn_t gfn, kvm_pfn_t pfn)
Huang Yingbf998152010-05-31 14:28:19 +08002794{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08002795 /*
2796 * Do not cache the mmio info caused by writing the readonly gfn
2797 * into the spte otherwise read access on readonly gfn also can
2798 * caused mmio page fault and treat it as mmio access.
2799 * Return 1 to tell kvm to emulate it.
2800 */
2801 if (pfn == KVM_PFN_ERR_RO_FAULT)
2802 return 1;
2803
Xiao Guangronge6c15022012-08-03 15:38:36 +08002804 if (pfn == KVM_PFN_ERR_HWPOISON) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002805 kvm_send_hwpoison_signal(kvm_vcpu_gfn_to_hva(vcpu, gfn), current);
Huang Yingbf998152010-05-31 14:28:19 +08002806 return 0;
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002807 }
Gleb Natapovedba23e2010-07-07 20:16:45 +03002808
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002809 return -EFAULT;
Huang Yingbf998152010-05-31 14:28:19 +08002810}
2811
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002812static void transparent_hugepage_adjust(struct kvm_vcpu *vcpu,
Dan Williamsba049e92016-01-15 16:56:11 -08002813 gfn_t *gfnp, kvm_pfn_t *pfnp,
2814 int *levelp)
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002815{
Dan Williamsba049e92016-01-15 16:56:11 -08002816 kvm_pfn_t pfn = *pfnp;
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002817 gfn_t gfn = *gfnp;
2818 int level = *levelp;
2819
2820 /*
2821 * Check if it's a transparent hugepage. If this would be an
2822 * hugetlbfs page, level wouldn't be set to
2823 * PT_PAGE_TABLE_LEVEL and there would be no adjustment done
2824 * here.
2825 */
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00002826 if (!is_error_noslot_pfn(pfn) && !kvm_is_reserved_pfn(pfn) &&
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002827 level == PT_PAGE_TABLE_LEVEL &&
Andrea Arcangeli127393f2016-05-05 16:22:20 -07002828 PageTransCompoundMap(pfn_to_page(pfn)) &&
Xiao Guangrong92f94f12016-02-24 17:51:06 +08002829 !mmu_gfn_lpage_is_disallowed(vcpu, gfn, PT_DIRECTORY_LEVEL)) {
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002830 unsigned long mask;
2831 /*
2832 * mmu_notifier_retry was successful and we hold the
2833 * mmu_lock here, so the pmd can't become splitting
2834 * from under us, and in turn
2835 * __split_huge_page_refcount() can't run from under
2836 * us and we can safely transfer the refcount from
2837 * PG_tail to PG_head as we switch the pfn to tail to
2838 * head.
2839 */
2840 *levelp = level = PT_DIRECTORY_LEVEL;
2841 mask = KVM_PAGES_PER_HPAGE(level) - 1;
2842 VM_BUG_ON((gfn & mask) != (pfn & mask));
2843 if (pfn & mask) {
2844 gfn &= ~mask;
2845 *gfnp = gfn;
2846 kvm_release_pfn_clean(pfn);
2847 pfn &= ~mask;
Xiao Guangrongc3586662012-05-28 14:10:43 +08002848 kvm_get_pfn(pfn);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002849 *pfnp = pfn;
2850 }
2851 }
2852}
2853
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002854static bool handle_abnormal_pfn(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn,
Dan Williamsba049e92016-01-15 16:56:11 -08002855 kvm_pfn_t pfn, unsigned access, int *ret_val)
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002856{
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002857 /* The pfn is invalid, report the error! */
Xiao Guangrong81c52c52012-10-16 20:10:59 +08002858 if (unlikely(is_error_pfn(pfn))) {
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002859 *ret_val = kvm_handle_bad_page(vcpu, gfn, pfn);
Paolo Bonzini798e88b2016-02-23 15:28:51 +01002860 return true;
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002861 }
2862
Xiao Guangrongce88dec2011-07-12 03:33:44 +08002863 if (unlikely(is_noslot_pfn(pfn)))
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002864 vcpu_cache_mmio_info(vcpu, gva, gfn, access);
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002865
Paolo Bonzini798e88b2016-02-23 15:28:51 +01002866 return false;
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002867}
2868
Xiao Guangronge5552fd2013-07-30 21:01:59 +08002869static bool page_fault_can_be_fast(u32 error_code)
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002870{
2871 /*
Xiao Guangrong1c118b82013-07-18 12:52:37 +08002872 * Do not fix the mmio spte with invalid generation number which
2873 * need to be updated by slow page fault path.
2874 */
2875 if (unlikely(error_code & PFERR_RSVD_MASK))
2876 return false;
2877
2878 /*
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002879 * #PF can be fast only if the shadow page table is present and it
2880 * is caused by write-protect, that means we just need change the
2881 * W bit of the spte which can be done out of mmu-lock.
2882 */
2883 if (!(error_code & PFERR_PRESENT_MASK) ||
2884 !(error_code & PFERR_WRITE_MASK))
2885 return false;
2886
2887 return true;
2888}
2889
Junaid Shahid97dceba2016-12-06 16:46:12 -08002890/*
2891 * Returns true if the SPTE was fixed successfully. Otherwise,
2892 * someone else modified the SPTE from its original value.
2893 */
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002894static bool
Xiao Guangrong92a476c2014-04-17 17:06:13 +08002895fast_pf_fix_direct_spte(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
2896 u64 *sptep, u64 spte)
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002897{
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002898 gfn_t gfn;
2899
2900 WARN_ON(!sp->role.direct);
2901
2902 /*
2903 * The gfn of direct spte is stable since it is calculated
2904 * by sp->gfn.
2905 */
2906 gfn = kvm_mmu_page_get_gfn(sp, sptep - sp->spt);
2907
Kai Huang9b51a632015-01-28 10:54:25 +08002908 /*
2909 * Theoretically we could also set dirty bit (and flush TLB) here in
2910 * order to eliminate unnecessary PML logging. See comments in
2911 * set_spte. But fast_page_fault is very unlikely to happen with PML
2912 * enabled, so we do not do this. This might result in the same GPA
2913 * to be logged in PML buffer again when the write really happens, and
2914 * eventually to be called by mark_page_dirty twice. But it's also no
2915 * harm. This also avoids the TLB flush needed after setting dirty bit
2916 * so non-PML cases won't be impacted.
2917 *
2918 * Compare with set_spte where instead shadow_dirty_mask is set.
2919 */
Junaid Shahid97dceba2016-12-06 16:46:12 -08002920 if (cmpxchg64(sptep, spte, spte | PT_WRITABLE_MASK) != spte)
2921 return false;
2922
2923 kvm_vcpu_mark_page_dirty(vcpu, gfn);
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002924
2925 return true;
2926}
2927
2928/*
2929 * Return value:
2930 * - true: let the vcpu to access on the same address again.
2931 * - false: let the real page fault path to fix it.
2932 */
2933static bool fast_page_fault(struct kvm_vcpu *vcpu, gva_t gva, int level,
2934 u32 error_code)
2935{
2936 struct kvm_shadow_walk_iterator iterator;
Xiao Guangrong92a476c2014-04-17 17:06:13 +08002937 struct kvm_mmu_page *sp;
Junaid Shahid97dceba2016-12-06 16:46:12 -08002938 bool fault_handled = false;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002939 u64 spte = 0ull;
Junaid Shahid97dceba2016-12-06 16:46:12 -08002940 uint retry_count = 0;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002941
Marcelo Tosatti37f6a4e2014-01-03 17:09:32 -02002942 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
2943 return false;
2944
Xiao Guangronge5552fd2013-07-30 21:01:59 +08002945 if (!page_fault_can_be_fast(error_code))
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002946 return false;
2947
2948 walk_shadow_page_lockless_begin(vcpu);
2949 for_each_shadow_entry_lockless(vcpu, gva, iterator, spte)
2950 if (!is_shadow_present_pte(spte) || iterator.level < level)
2951 break;
2952
Junaid Shahid97dceba2016-12-06 16:46:12 -08002953 do {
2954 /*
2955 * If the mapping has been changed, let the vcpu fault on the
2956 * same address again.
2957 */
2958 if (!is_shadow_present_pte(spte)) {
2959 fault_handled = true;
2960 break;
2961 }
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002962
Junaid Shahid97dceba2016-12-06 16:46:12 -08002963 sp = page_header(__pa(iterator.sptep));
2964 if (!is_last_spte(spte, sp->role.level))
2965 break;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002966
Junaid Shahid97dceba2016-12-06 16:46:12 -08002967 /*
2968 * Check if it is a spurious fault caused by TLB lazily flushed.
2969 *
2970 * Need not check the access of upper level table entries since
2971 * they are always ACC_ALL.
2972 */
2973 if (is_writable_pte(spte)) {
2974 fault_handled = true;
2975 break;
2976 }
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002977
Junaid Shahid97dceba2016-12-06 16:46:12 -08002978 /*
2979 * Currently, to simplify the code, only the spte
2980 * write-protected by dirty-log can be fast fixed.
2981 */
2982 if (!spte_can_locklessly_be_made_writable(spte))
2983 break;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002984
Junaid Shahid97dceba2016-12-06 16:46:12 -08002985 /*
2986 * Do not fix write-permission on the large spte since we only
2987 * dirty the first page into the dirty-bitmap in
2988 * fast_pf_fix_direct_spte() that means other pages are missed
2989 * if its slot is dirty-logged.
2990 *
2991 * Instead, we let the slow page fault path create a normal spte
2992 * to fix the access.
2993 *
2994 * See the comments in kvm_arch_commit_memory_region().
2995 */
2996 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
2997 break;
Xiao Guangrongc126d942014-04-17 17:06:14 +08002998
Junaid Shahid97dceba2016-12-06 16:46:12 -08002999 /*
3000 * Currently, fast page fault only works for direct mapping
3001 * since the gfn is not stable for indirect shadow page. See
3002 * Documentation/virtual/kvm/locking.txt to get more detail.
3003 */
3004 fault_handled = fast_pf_fix_direct_spte(vcpu, sp,
3005 iterator.sptep, spte);
3006 if (fault_handled)
3007 break;
3008
3009 if (++retry_count > 4) {
3010 printk_once(KERN_WARNING
3011 "kvm: Fast #PF retrying more than 4 times.\n");
3012 break;
3013 }
3014
3015 spte = mmu_spte_get_lockless(iterator.sptep);
3016
3017 } while (true);
3018
Xiao Guangronga72faf22012-06-20 15:59:41 +08003019 trace_fast_page_fault(vcpu, gva, error_code, iterator.sptep,
Junaid Shahid97dceba2016-12-06 16:46:12 -08003020 spte, fault_handled);
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003021 walk_shadow_page_lockless_end(vcpu);
3022
Junaid Shahid97dceba2016-12-06 16:46:12 -08003023 return fault_handled;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003024}
3025
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003026static bool try_async_pf(struct kvm_vcpu *vcpu, bool prefault, gfn_t gfn,
Dan Williamsba049e92016-01-15 16:56:11 -08003027 gva_t gva, kvm_pfn_t *pfn, bool write, bool *writable);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003028static void make_mmu_pages_available(struct kvm_vcpu *vcpu);
Xiao Guangrong060c2ab2010-11-12 14:49:11 +08003029
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003030static int nonpaging_map(struct kvm_vcpu *vcpu, gva_t v, u32 error_code,
3031 gfn_t gfn, bool prefault)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003032{
3033 int r;
Joerg Roedel852e3c12009-07-27 16:30:44 +02003034 int level;
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003035 bool force_pt_level = false;
Dan Williamsba049e92016-01-15 16:56:11 -08003036 kvm_pfn_t pfn;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003037 unsigned long mmu_seq;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003038 bool map_writable, write = error_code & PFERR_WRITE_MASK;
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003039
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003040 level = mapping_level(vcpu, gfn, &force_pt_level);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003041 if (likely(!force_pt_level)) {
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003042 /*
3043 * This path builds a PAE pagetable - so we can map
3044 * 2mb pages at maximum. Therefore check if the level
3045 * is larger than that.
3046 */
3047 if (level > PT_DIRECTORY_LEVEL)
3048 level = PT_DIRECTORY_LEVEL;
Joerg Roedel852e3c12009-07-27 16:30:44 +02003049
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003050 gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1);
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003051 }
Marcelo Tosatti05da4552008-02-23 11:44:30 -03003052
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003053 if (fast_page_fault(vcpu, v, level, error_code))
3054 return 0;
3055
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003056 mmu_seq = vcpu->kvm->mmu_notifier_seq;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03003057 smp_rmb();
Xiao Guangrong060c2ab2010-11-12 14:49:11 +08003058
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003059 if (try_async_pf(vcpu, prefault, gfn, v, &pfn, write, &map_writable))
Xiao Guangrong060c2ab2010-11-12 14:49:11 +08003060 return 0;
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003061
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003062 if (handle_abnormal_pfn(vcpu, v, gfn, pfn, ACC_ALL, &r))
3063 return r;
Avi Kivityd196e342008-01-24 11:44:11 +02003064
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003065 spin_lock(&vcpu->kvm->mmu_lock);
Christoffer Dall8ca40a72012-10-14 23:10:18 -04003066 if (mmu_notifier_retry(vcpu->kvm, mmu_seq))
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003067 goto out_unlock;
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003068 make_mmu_pages_available(vcpu);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003069 if (likely(!force_pt_level))
3070 transparent_hugepage_adjust(vcpu, &gfn, &pfn, &level);
Takuya Yoshikawa7ee0e5b2015-11-20 17:42:23 +09003071 r = __direct_map(vcpu, write, map_writable, level, gfn, pfn, prefault);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003072 spin_unlock(&vcpu->kvm->mmu_lock);
3073
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003074 return r;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003075
3076out_unlock:
3077 spin_unlock(&vcpu->kvm->mmu_lock);
3078 kvm_release_pfn_clean(pfn);
3079 return 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003080}
3081
3082
Avi Kivity17ac10a2007-01-05 16:36:40 -08003083static void mmu_free_roots(struct kvm_vcpu *vcpu)
3084{
3085 int i;
Avi Kivity4db35312007-11-21 15:28:32 +02003086 struct kvm_mmu_page *sp;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08003087 LIST_HEAD(invalid_list);
Avi Kivity17ac10a2007-01-05 16:36:40 -08003088
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003089 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
Avi Kivity7b53aa52007-06-05 12:17:03 +03003090 return;
Gleb Natapov35af5772013-05-16 11:55:51 +03003091
Joerg Roedel81407ca2010-09-10 17:31:00 +02003092 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL &&
3093 (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL ||
3094 vcpu->arch.mmu.direct_map)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003095 hpa_t root = vcpu->arch.mmu.root_hpa;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003096
Gleb Natapov35af5772013-05-16 11:55:51 +03003097 spin_lock(&vcpu->kvm->mmu_lock);
Avi Kivity4db35312007-11-21 15:28:32 +02003098 sp = page_header(root);
3099 --sp->root_count;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08003100 if (!sp->root_count && sp->role.invalid) {
3101 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, &invalid_list);
3102 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
3103 }
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003104 spin_unlock(&vcpu->kvm->mmu_lock);
Gleb Natapov35af5772013-05-16 11:55:51 +03003105 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003106 return;
3107 }
Gleb Natapov35af5772013-05-16 11:55:51 +03003108
3109 spin_lock(&vcpu->kvm->mmu_lock);
Avi Kivity17ac10a2007-01-05 16:36:40 -08003110 for (i = 0; i < 4; ++i) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003111 hpa_t root = vcpu->arch.mmu.pae_root[i];
Avi Kivity17ac10a2007-01-05 16:36:40 -08003112
Avi Kivity417726a2007-04-12 17:35:58 +03003113 if (root) {
Avi Kivity417726a2007-04-12 17:35:58 +03003114 root &= PT64_BASE_ADDR_MASK;
Avi Kivity4db35312007-11-21 15:28:32 +02003115 sp = page_header(root);
3116 --sp->root_count;
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05003117 if (!sp->root_count && sp->role.invalid)
Xiao Guangrongd98ba052010-06-04 21:55:29 +08003118 kvm_mmu_prepare_zap_page(vcpu->kvm, sp,
3119 &invalid_list);
Avi Kivity417726a2007-04-12 17:35:58 +03003120 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003121 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003122 }
Xiao Guangrongd98ba052010-06-04 21:55:29 +08003123 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003124 spin_unlock(&vcpu->kvm->mmu_lock);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003125 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003126}
3127
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003128static int mmu_check_root(struct kvm_vcpu *vcpu, gfn_t root_gfn)
3129{
3130 int ret = 0;
3131
3132 if (!kvm_is_visible_gfn(vcpu->kvm, root_gfn)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03003133 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003134 ret = 1;
3135 }
3136
3137 return ret;
3138}
3139
Joerg Roedel651dd372010-09-10 17:30:59 +02003140static int mmu_alloc_direct_roots(struct kvm_vcpu *vcpu)
3141{
3142 struct kvm_mmu_page *sp;
Avi Kivity7ebaf152010-10-03 18:51:39 +02003143 unsigned i;
Joerg Roedel651dd372010-09-10 17:30:59 +02003144
3145 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
3146 spin_lock(&vcpu->kvm->mmu_lock);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003147 make_mmu_pages_available(vcpu);
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09003148 sp = kvm_mmu_get_page(vcpu, 0, 0, PT64_ROOT_LEVEL, 1, ACC_ALL);
Joerg Roedel651dd372010-09-10 17:30:59 +02003149 ++sp->root_count;
3150 spin_unlock(&vcpu->kvm->mmu_lock);
3151 vcpu->arch.mmu.root_hpa = __pa(sp->spt);
3152 } else if (vcpu->arch.mmu.shadow_root_level == PT32E_ROOT_LEVEL) {
3153 for (i = 0; i < 4; ++i) {
3154 hpa_t root = vcpu->arch.mmu.pae_root[i];
3155
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003156 MMU_WARN_ON(VALID_PAGE(root));
Joerg Roedel651dd372010-09-10 17:30:59 +02003157 spin_lock(&vcpu->kvm->mmu_lock);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003158 make_mmu_pages_available(vcpu);
Avi Kivity649497d2010-12-28 12:09:07 +02003159 sp = kvm_mmu_get_page(vcpu, i << (30 - PAGE_SHIFT),
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09003160 i << 30, PT32_ROOT_LEVEL, 1, ACC_ALL);
Joerg Roedel651dd372010-09-10 17:30:59 +02003161 root = __pa(sp->spt);
3162 ++sp->root_count;
3163 spin_unlock(&vcpu->kvm->mmu_lock);
3164 vcpu->arch.mmu.pae_root[i] = root | PT_PRESENT_MASK;
Joerg Roedel651dd372010-09-10 17:30:59 +02003165 }
Xiao Guangrong62927572010-09-27 18:02:12 +08003166 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
Joerg Roedel651dd372010-09-10 17:30:59 +02003167 } else
3168 BUG();
3169
3170 return 0;
3171}
3172
3173static int mmu_alloc_shadow_roots(struct kvm_vcpu *vcpu)
Avi Kivity17ac10a2007-01-05 16:36:40 -08003174{
Avi Kivity4db35312007-11-21 15:28:32 +02003175 struct kvm_mmu_page *sp;
Joerg Roedel81407ca2010-09-10 17:31:00 +02003176 u64 pdptr, pm_mask;
3177 gfn_t root_gfn;
3178 int i;
Avi Kivity3bb65a22007-01-05 16:36:51 -08003179
Joerg Roedel5777ed32010-09-10 17:30:42 +02003180 root_gfn = vcpu->arch.mmu.get_cr3(vcpu) >> PAGE_SHIFT;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003181
Joerg Roedel651dd372010-09-10 17:30:59 +02003182 if (mmu_check_root(vcpu, root_gfn))
3183 return 1;
3184
3185 /*
3186 * Do we shadow a long mode page table? If so we need to
3187 * write-protect the guests page table root.
3188 */
3189 if (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003190 hpa_t root = vcpu->arch.mmu.root_hpa;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003191
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003192 MMU_WARN_ON(VALID_PAGE(root));
Joerg Roedel651dd372010-09-10 17:30:59 +02003193
Avi Kivity8facbbf2010-05-04 12:58:32 +03003194 spin_lock(&vcpu->kvm->mmu_lock);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003195 make_mmu_pages_available(vcpu);
Joerg Roedel651dd372010-09-10 17:30:59 +02003196 sp = kvm_mmu_get_page(vcpu, root_gfn, 0, PT64_ROOT_LEVEL,
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09003197 0, ACC_ALL);
Avi Kivity4db35312007-11-21 15:28:32 +02003198 root = __pa(sp->spt);
3199 ++sp->root_count;
Avi Kivity8facbbf2010-05-04 12:58:32 +03003200 spin_unlock(&vcpu->kvm->mmu_lock);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003201 vcpu->arch.mmu.root_hpa = root;
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003202 return 0;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003203 }
Joerg Roedelf87f9282010-09-02 17:29:45 +02003204
Joerg Roedel651dd372010-09-10 17:30:59 +02003205 /*
3206 * We shadow a 32 bit page table. This may be a legacy 2-level
Joerg Roedel81407ca2010-09-10 17:31:00 +02003207 * or a PAE 3-level page table. In either case we need to be aware that
3208 * the shadow page table may be a PAE or a long mode page table.
Joerg Roedel651dd372010-09-10 17:30:59 +02003209 */
Joerg Roedel81407ca2010-09-10 17:31:00 +02003210 pm_mask = PT_PRESENT_MASK;
3211 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL)
3212 pm_mask |= PT_ACCESSED_MASK | PT_WRITABLE_MASK | PT_USER_MASK;
3213
Avi Kivity17ac10a2007-01-05 16:36:40 -08003214 for (i = 0; i < 4; ++i) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003215 hpa_t root = vcpu->arch.mmu.pae_root[i];
Avi Kivity17ac10a2007-01-05 16:36:40 -08003216
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003217 MMU_WARN_ON(VALID_PAGE(root));
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003218 if (vcpu->arch.mmu.root_level == PT32E_ROOT_LEVEL) {
Avi Kivitye4e517b2011-07-28 11:36:17 +03003219 pdptr = vcpu->arch.mmu.get_pdptr(vcpu, i);
Bandan Das812f30b2016-07-12 18:18:50 -04003220 if (!(pdptr & PT_PRESENT_MASK)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003221 vcpu->arch.mmu.pae_root[i] = 0;
Avi Kivity417726a2007-04-12 17:35:58 +03003222 continue;
3223 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003224 root_gfn = pdptr >> PAGE_SHIFT;
Joerg Roedelf87f9282010-09-02 17:29:45 +02003225 if (mmu_check_root(vcpu, root_gfn))
3226 return 1;
Eric Northup5a7388c2010-04-26 17:00:05 -07003227 }
Avi Kivity8facbbf2010-05-04 12:58:32 +03003228 spin_lock(&vcpu->kvm->mmu_lock);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003229 make_mmu_pages_available(vcpu);
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09003230 sp = kvm_mmu_get_page(vcpu, root_gfn, i << 30, PT32_ROOT_LEVEL,
3231 0, ACC_ALL);
Avi Kivity4db35312007-11-21 15:28:32 +02003232 root = __pa(sp->spt);
3233 ++sp->root_count;
Avi Kivity8facbbf2010-05-04 12:58:32 +03003234 spin_unlock(&vcpu->kvm->mmu_lock);
3235
Joerg Roedel81407ca2010-09-10 17:31:00 +02003236 vcpu->arch.mmu.pae_root[i] = root | pm_mask;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003237 }
Xiao Guangrong62927572010-09-27 18:02:12 +08003238 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
Joerg Roedel81407ca2010-09-10 17:31:00 +02003239
3240 /*
3241 * If we shadow a 32 bit page table with a long mode page
3242 * table we enter this path.
3243 */
3244 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
3245 if (vcpu->arch.mmu.lm_root == NULL) {
3246 /*
3247 * The additional page necessary for this is only
3248 * allocated on demand.
3249 */
3250
3251 u64 *lm_root;
3252
3253 lm_root = (void*)get_zeroed_page(GFP_KERNEL);
3254 if (lm_root == NULL)
3255 return 1;
3256
3257 lm_root[0] = __pa(vcpu->arch.mmu.pae_root) | pm_mask;
3258
3259 vcpu->arch.mmu.lm_root = lm_root;
3260 }
3261
3262 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.lm_root);
3263 }
3264
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003265 return 0;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003266}
3267
Joerg Roedel651dd372010-09-10 17:30:59 +02003268static int mmu_alloc_roots(struct kvm_vcpu *vcpu)
3269{
3270 if (vcpu->arch.mmu.direct_map)
3271 return mmu_alloc_direct_roots(vcpu);
3272 else
3273 return mmu_alloc_shadow_roots(vcpu);
3274}
3275
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003276static void mmu_sync_roots(struct kvm_vcpu *vcpu)
3277{
3278 int i;
3279 struct kvm_mmu_page *sp;
3280
Joerg Roedel81407ca2010-09-10 17:31:00 +02003281 if (vcpu->arch.mmu.direct_map)
3282 return;
3283
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003284 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3285 return;
Xiao Guangrong69030742010-09-27 18:09:29 +08003286
David Matlack56f17dd2014-08-18 15:46:07 -07003287 vcpu_clear_mmio_info(vcpu, MMIO_GVA_ANY);
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08003288 kvm_mmu_audit(vcpu, AUDIT_PRE_SYNC);
Joerg Roedel81407ca2010-09-10 17:31:00 +02003289 if (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL) {
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003290 hpa_t root = vcpu->arch.mmu.root_hpa;
3291 sp = page_header(root);
3292 mmu_sync_children(vcpu, sp);
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08003293 kvm_mmu_audit(vcpu, AUDIT_POST_SYNC);
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003294 return;
3295 }
3296 for (i = 0; i < 4; ++i) {
3297 hpa_t root = vcpu->arch.mmu.pae_root[i];
3298
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003299 if (root && VALID_PAGE(root)) {
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003300 root &= PT64_BASE_ADDR_MASK;
3301 sp = page_header(root);
3302 mmu_sync_children(vcpu, sp);
3303 }
3304 }
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08003305 kvm_mmu_audit(vcpu, AUDIT_POST_SYNC);
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003306}
3307
3308void kvm_mmu_sync_roots(struct kvm_vcpu *vcpu)
3309{
3310 spin_lock(&vcpu->kvm->mmu_lock);
3311 mmu_sync_roots(vcpu);
3312 spin_unlock(&vcpu->kvm->mmu_lock);
3313}
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03003314EXPORT_SYMBOL_GPL(kvm_mmu_sync_roots);
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003315
Gleb Natapov1871c602010-02-10 14:21:32 +02003316static gpa_t nonpaging_gva_to_gpa(struct kvm_vcpu *vcpu, gva_t vaddr,
Avi Kivityab9ae312010-11-22 17:53:26 +02003317 u32 access, struct x86_exception *exception)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003318{
Avi Kivityab9ae312010-11-22 17:53:26 +02003319 if (exception)
3320 exception->error_code = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003321 return vaddr;
3322}
3323
Joerg Roedel6539e732010-09-10 17:30:50 +02003324static gpa_t nonpaging_gva_to_gpa_nested(struct kvm_vcpu *vcpu, gva_t vaddr,
Avi Kivityab9ae312010-11-22 17:53:26 +02003325 u32 access,
3326 struct x86_exception *exception)
Joerg Roedel6539e732010-09-10 17:30:50 +02003327{
Avi Kivityab9ae312010-11-22 17:53:26 +02003328 if (exception)
3329 exception->error_code = 0;
Paolo Bonzini54987b72014-09-02 13:23:06 +02003330 return vcpu->arch.nested_mmu.translate_gpa(vcpu, vaddr, access, exception);
Joerg Roedel6539e732010-09-10 17:30:50 +02003331}
3332
Xiao Guangrongd625b152015-08-05 12:04:25 +08003333static bool
3334__is_rsvd_bits_set(struct rsvd_bits_validate *rsvd_check, u64 pte, int level)
3335{
3336 int bit7 = (pte >> 7) & 1, low6 = pte & 0x3f;
3337
3338 return (pte & rsvd_check->rsvd_bits_mask[bit7][level-1]) |
3339 ((rsvd_check->bad_mt_xwr & (1ull << low6)) != 0);
3340}
3341
3342static bool is_rsvd_bits_set(struct kvm_mmu *mmu, u64 gpte, int level)
3343{
3344 return __is_rsvd_bits_set(&mmu->guest_rsvd_check, gpte, level);
3345}
3346
3347static bool is_shadow_zero_bits_set(struct kvm_mmu *mmu, u64 spte, int level)
3348{
3349 return __is_rsvd_bits_set(&mmu->shadow_zero_check, spte, level);
3350}
3351
Takuya Yoshikawaded58742016-02-22 17:23:40 +09003352static bool mmio_info_in_cache(struct kvm_vcpu *vcpu, u64 addr, bool direct)
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003353{
3354 if (direct)
3355 return vcpu_match_mmio_gpa(vcpu, addr);
3356
3357 return vcpu_match_mmio_gva(vcpu, addr);
3358}
3359
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003360/* return true if reserved bit is detected on spte. */
3361static bool
3362walk_shadow_page_get_mmio_spte(struct kvm_vcpu *vcpu, u64 addr, u64 *sptep)
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003363{
3364 struct kvm_shadow_walk_iterator iterator;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003365 u64 sptes[PT64_ROOT_LEVEL], spte = 0ull;
3366 int root, leaf;
3367 bool reserved = false;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003368
Marcelo Tosatti37f6a4e2014-01-03 17:09:32 -02003369 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003370 goto exit;
Marcelo Tosatti37f6a4e2014-01-03 17:09:32 -02003371
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003372 walk_shadow_page_lockless_begin(vcpu);
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003373
Paolo Bonzini29ecd662015-09-06 16:24:50 +02003374 for (shadow_walk_init(&iterator, vcpu, addr),
3375 leaf = root = iterator.level;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003376 shadow_walk_okay(&iterator);
3377 __shadow_walk_next(&iterator, spte)) {
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003378 spte = mmu_spte_get_lockless(iterator.sptep);
3379
3380 sptes[leaf - 1] = spte;
Paolo Bonzini29ecd662015-09-06 16:24:50 +02003381 leaf--;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003382
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003383 if (!is_shadow_present_pte(spte))
3384 break;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003385
3386 reserved |= is_shadow_zero_bits_set(&vcpu->arch.mmu, spte,
Paolo Bonzini58c95072015-09-22 10:15:59 +02003387 iterator.level);
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003388 }
3389
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003390 walk_shadow_page_lockless_end(vcpu);
3391
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003392 if (reserved) {
3393 pr_err("%s: detect reserved bits on spte, addr 0x%llx, dump hierarchy:\n",
3394 __func__, addr);
Paolo Bonzini29ecd662015-09-06 16:24:50 +02003395 while (root > leaf) {
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003396 pr_err("------ spte 0x%llx level %d.\n",
3397 sptes[root - 1], root);
3398 root--;
3399 }
3400 }
3401exit:
3402 *sptep = spte;
3403 return reserved;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003404}
3405
Paolo Bonzini450869d2015-11-04 13:41:21 +01003406int handle_mmio_page_fault(struct kvm_vcpu *vcpu, u64 addr, bool direct)
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003407{
3408 u64 spte;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003409 bool reserved;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003410
Takuya Yoshikawaded58742016-02-22 17:23:40 +09003411 if (mmio_info_in_cache(vcpu, addr, direct))
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08003412 return RET_MMIO_PF_EMULATE;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003413
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003414 reserved = walk_shadow_page_get_mmio_spte(vcpu, addr, &spte);
Paolo Bonzini450869d2015-11-04 13:41:21 +01003415 if (WARN_ON(reserved))
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003416 return RET_MMIO_PF_BUG;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003417
3418 if (is_mmio_spte(spte)) {
3419 gfn_t gfn = get_mmio_spte_gfn(spte);
3420 unsigned access = get_mmio_spte_access(spte);
3421
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003422 if (!check_mmio_spte(vcpu, spte))
Xiao Guangrongf8f55942013-06-07 16:51:26 +08003423 return RET_MMIO_PF_INVALID;
3424
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003425 if (direct)
3426 addr = 0;
Xiao Guangrong4f022642011-07-12 03:34:24 +08003427
3428 trace_handle_mmio_page_fault(addr, gfn, access);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003429 vcpu_cache_mmio_info(vcpu, addr, gfn, access);
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08003430 return RET_MMIO_PF_EMULATE;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003431 }
3432
3433 /*
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003434 * If the page table is zapped by other cpus, let CPU fault again on
3435 * the address.
3436 */
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08003437 return RET_MMIO_PF_RETRY;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003438}
Paolo Bonzini450869d2015-11-04 13:41:21 +01003439EXPORT_SYMBOL_GPL(handle_mmio_page_fault);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003440
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08003441static bool page_fault_handle_page_track(struct kvm_vcpu *vcpu,
3442 u32 error_code, gfn_t gfn)
3443{
3444 if (unlikely(error_code & PFERR_RSVD_MASK))
3445 return false;
3446
3447 if (!(error_code & PFERR_PRESENT_MASK) ||
3448 !(error_code & PFERR_WRITE_MASK))
3449 return false;
3450
3451 /*
3452 * guest is writing the page which is write tracked which can
3453 * not be fixed by page fault handler.
3454 */
3455 if (kvm_page_track_is_active(vcpu, gfn, KVM_PAGE_TRACK_WRITE))
3456 return true;
3457
3458 return false;
3459}
3460
Xiao Guangronge5691a82016-02-24 17:51:12 +08003461static void shadow_page_table_clear_flood(struct kvm_vcpu *vcpu, gva_t addr)
3462{
3463 struct kvm_shadow_walk_iterator iterator;
3464 u64 spte;
3465
3466 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3467 return;
3468
3469 walk_shadow_page_lockless_begin(vcpu);
3470 for_each_shadow_entry_lockless(vcpu, addr, iterator, spte) {
3471 clear_sp_write_flooding_count(iterator.sptep);
3472 if (!is_shadow_present_pte(spte))
3473 break;
3474 }
3475 walk_shadow_page_lockless_end(vcpu);
3476}
3477
Avi Kivity6aa8b732006-12-10 02:21:36 -08003478static int nonpaging_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003479 u32 error_code, bool prefault)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003480{
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08003481 gfn_t gfn = gva >> PAGE_SHIFT;
Avi Kivitye2dec932007-01-05 16:36:54 -08003482 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003483
Harvey Harrisonb8688d52008-03-03 12:59:56 -08003484 pgprintk("%s: gva %lx error %x\n", __func__, gva, error_code);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003485
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08003486 if (page_fault_handle_page_track(vcpu, error_code, gfn))
3487 return 1;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003488
Avi Kivitye2dec932007-01-05 16:36:54 -08003489 r = mmu_topup_memory_caches(vcpu);
3490 if (r)
3491 return r;
Avi Kivity714b93d2007-01-05 16:36:53 -08003492
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003493 MMU_WARN_ON(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003494
Avi Kivity6aa8b732006-12-10 02:21:36 -08003495
Avi Kivitye8332402007-12-09 18:43:00 +02003496 return nonpaging_map(vcpu, gva & PAGE_MASK,
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003497 error_code, gfn, prefault);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003498}
3499
Jan Kiszka7e1fbea2010-10-20 15:18:02 +02003500static int kvm_arch_setup_async_pf(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn)
Gleb Natapovaf585b92010-10-14 11:22:46 +02003501{
3502 struct kvm_arch_async_pf arch;
Xiao Guangrongfb67e142010-12-07 10:35:25 +08003503
Gleb Natapov7c907052010-10-14 11:22:53 +02003504 arch.token = (vcpu->arch.apf.id++ << 12) | vcpu->vcpu_id;
Gleb Natapovaf585b92010-10-14 11:22:46 +02003505 arch.gfn = gfn;
Xiao Guangrongc4806ac2010-11-12 14:49:55 +08003506 arch.direct_map = vcpu->arch.mmu.direct_map;
Xiao Guangrongfb67e142010-12-07 10:35:25 +08003507 arch.cr3 = vcpu->arch.mmu.get_cr3(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003508
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003509 return kvm_setup_async_pf(vcpu, gva, kvm_vcpu_gfn_to_hva(vcpu, gfn), &arch);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003510}
3511
3512static bool can_do_async_pf(struct kvm_vcpu *vcpu)
3513{
Paolo Bonzini35754c92015-07-29 12:05:37 +02003514 if (unlikely(!lapic_in_kernel(vcpu) ||
Gleb Natapovaf585b92010-10-14 11:22:46 +02003515 kvm_event_needs_reinjection(vcpu)))
3516 return false;
3517
3518 return kvm_x86_ops->interrupt_allowed(vcpu);
3519}
3520
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003521static bool try_async_pf(struct kvm_vcpu *vcpu, bool prefault, gfn_t gfn,
Dan Williamsba049e92016-01-15 16:56:11 -08003522 gva_t gva, kvm_pfn_t *pfn, bool write, bool *writable)
Gleb Natapovaf585b92010-10-14 11:22:46 +02003523{
Paolo Bonzini35204692015-04-02 11:20:48 +02003524 struct kvm_memory_slot *slot;
Gleb Natapovaf585b92010-10-14 11:22:46 +02003525 bool async;
3526
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003527 slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
Paolo Bonzini35204692015-04-02 11:20:48 +02003528 async = false;
3529 *pfn = __gfn_to_pfn_memslot(slot, gfn, false, &async, write, writable);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003530 if (!async)
3531 return false; /* *pfn has correct page already */
3532
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003533 if (!prefault && can_do_async_pf(vcpu)) {
Xiao Guangrongc9b263d2010-11-01 16:58:43 +08003534 trace_kvm_try_async_get_page(gva, gfn);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003535 if (kvm_find_async_pf_gfn(vcpu, gfn)) {
3536 trace_kvm_async_pf_doublefault(gva, gfn);
3537 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
3538 return true;
3539 } else if (kvm_arch_setup_async_pf(vcpu, gva, gfn))
3540 return true;
3541 }
3542
Paolo Bonzini35204692015-04-02 11:20:48 +02003543 *pfn = __gfn_to_pfn_memslot(slot, gfn, false, NULL, write, writable);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003544 return false;
3545}
3546
Xiao Guangrong6a39bbc2015-06-15 16:55:35 +08003547static bool
3548check_hugepage_cache_consistency(struct kvm_vcpu *vcpu, gfn_t gfn, int level)
3549{
3550 int page_num = KVM_PAGES_PER_HPAGE(level);
3551
3552 gfn &= ~(page_num - 1);
3553
3554 return kvm_mtrr_check_gfn_range_consistency(vcpu, gfn, page_num);
3555}
3556
Gleb Natapov56028d02010-10-17 18:13:42 +02003557static int tdp_page_fault(struct kvm_vcpu *vcpu, gva_t gpa, u32 error_code,
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003558 bool prefault)
Joerg Roedelfb72d162008-02-07 13:47:44 +01003559{
Dan Williamsba049e92016-01-15 16:56:11 -08003560 kvm_pfn_t pfn;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003561 int r;
Joerg Roedel852e3c12009-07-27 16:30:44 +02003562 int level;
Takuya Yoshikawacd1872f2015-10-16 17:04:13 +09003563 bool force_pt_level;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03003564 gfn_t gfn = gpa >> PAGE_SHIFT;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003565 unsigned long mmu_seq;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02003566 int write = error_code & PFERR_WRITE_MASK;
3567 bool map_writable;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003568
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003569 MMU_WARN_ON(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
Joerg Roedelfb72d162008-02-07 13:47:44 +01003570
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08003571 if (page_fault_handle_page_track(vcpu, error_code, gfn))
3572 return 1;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003573
Joerg Roedelfb72d162008-02-07 13:47:44 +01003574 r = mmu_topup_memory_caches(vcpu);
3575 if (r)
3576 return r;
3577
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003578 force_pt_level = !check_hugepage_cache_consistency(vcpu, gfn,
3579 PT_DIRECTORY_LEVEL);
3580 level = mapping_level(vcpu, gfn, &force_pt_level);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003581 if (likely(!force_pt_level)) {
Xiao Guangrong6a39bbc2015-06-15 16:55:35 +08003582 if (level > PT_DIRECTORY_LEVEL &&
3583 !check_hugepage_cache_consistency(vcpu, gfn, level))
3584 level = PT_DIRECTORY_LEVEL;
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003585 gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1);
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003586 }
Joerg Roedel852e3c12009-07-27 16:30:44 +02003587
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003588 if (fast_page_fault(vcpu, gpa, level, error_code))
3589 return 0;
3590
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003591 mmu_seq = vcpu->kvm->mmu_notifier_seq;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03003592 smp_rmb();
Gleb Natapovaf585b92010-10-14 11:22:46 +02003593
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003594 if (try_async_pf(vcpu, prefault, gfn, gpa, &pfn, write, &map_writable))
Gleb Natapovaf585b92010-10-14 11:22:46 +02003595 return 0;
3596
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003597 if (handle_abnormal_pfn(vcpu, 0, gfn, pfn, ACC_ALL, &r))
3598 return r;
3599
Joerg Roedelfb72d162008-02-07 13:47:44 +01003600 spin_lock(&vcpu->kvm->mmu_lock);
Christoffer Dall8ca40a72012-10-14 23:10:18 -04003601 if (mmu_notifier_retry(vcpu->kvm, mmu_seq))
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003602 goto out_unlock;
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003603 make_mmu_pages_available(vcpu);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003604 if (likely(!force_pt_level))
3605 transparent_hugepage_adjust(vcpu, &gfn, &pfn, &level);
Takuya Yoshikawa7ee0e5b2015-11-20 17:42:23 +09003606 r = __direct_map(vcpu, write, map_writable, level, gfn, pfn, prefault);
Joerg Roedelfb72d162008-02-07 13:47:44 +01003607 spin_unlock(&vcpu->kvm->mmu_lock);
Joerg Roedelfb72d162008-02-07 13:47:44 +01003608
3609 return r;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003610
3611out_unlock:
3612 spin_unlock(&vcpu->kvm->mmu_lock);
3613 kvm_release_pfn_clean(pfn);
3614 return 0;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003615}
3616
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003617static void nonpaging_init_context(struct kvm_vcpu *vcpu,
3618 struct kvm_mmu *context)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003619{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003620 context->page_fault = nonpaging_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003621 context->gva_to_gpa = nonpaging_gva_to_gpa;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03003622 context->sync_page = nonpaging_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03003623 context->invlpg = nonpaging_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08003624 context->update_pte = nonpaging_update_pte;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08003625 context->root_level = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003626 context->shadow_root_level = PT32E_ROOT_LEVEL;
Avi Kivity17c3ba92007-06-04 15:58:30 +03003627 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02003628 context->direct_map = true;
Joerg Roedel2d48a982010-09-10 17:31:01 +02003629 context->nx = false;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003630}
3631
Paolo Bonzinid8d173d2013-10-02 16:56:11 +02003632void kvm_mmu_new_cr3(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003633{
Avi Kivitycea0f0e2007-01-05 16:36:43 -08003634 mmu_free_roots(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003635}
3636
Joerg Roedel5777ed32010-09-10 17:30:42 +02003637static unsigned long get_cr3(struct kvm_vcpu *vcpu)
3638{
Avi Kivity9f8fe502010-12-05 17:30:00 +02003639 return kvm_read_cr3(vcpu);
Joerg Roedel5777ed32010-09-10 17:30:42 +02003640}
3641
Avi Kivity6389ee92010-11-29 16:12:30 +02003642static void inject_page_fault(struct kvm_vcpu *vcpu,
3643 struct x86_exception *fault)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003644{
Avi Kivity6389ee92010-11-29 16:12:30 +02003645 vcpu->arch.mmu.inject_page_fault(vcpu, fault);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003646}
3647
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003648static bool sync_mmio_spte(struct kvm_vcpu *vcpu, u64 *sptep, gfn_t gfn,
Xiao Guangrongf2fd1252013-06-07 16:51:24 +08003649 unsigned access, int *nr_present)
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003650{
3651 if (unlikely(is_mmio_spte(*sptep))) {
3652 if (gfn != get_mmio_spte_gfn(*sptep)) {
3653 mmu_spte_clear_no_track(sptep);
3654 return true;
3655 }
3656
3657 (*nr_present)++;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003658 mark_mmio_spte(vcpu, sptep, gfn, access);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003659 return true;
3660 }
3661
3662 return false;
3663}
3664
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01003665static inline bool is_last_gpte(struct kvm_mmu *mmu,
3666 unsigned level, unsigned gpte)
Avi Kivity6fd01b72012-09-12 20:46:56 +03003667{
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01003668 /*
3669 * PT_PAGE_TABLE_LEVEL always terminates. The RHS has bit 7 set
3670 * iff level <= PT_PAGE_TABLE_LEVEL, which for our purpose means
3671 * level == PT_PAGE_TABLE_LEVEL; set PT_PAGE_SIZE_MASK in gpte then.
3672 */
3673 gpte |= level - PT_PAGE_TABLE_LEVEL - 1;
Avi Kivity6fd01b72012-09-12 20:46:56 +03003674
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01003675 /*
3676 * The RHS has bit 7 set iff level < mmu->last_nonleaf_level.
3677 * If it is clear, there are no large pages at this level, so clear
3678 * PT_PAGE_SIZE_MASK in gpte if that is the case.
3679 */
3680 gpte &= level - mmu->last_nonleaf_level;
3681
3682 return gpte & PT_PAGE_SIZE_MASK;
Avi Kivity6fd01b72012-09-12 20:46:56 +03003683}
3684
Nadav Har'El37406aa2013-08-05 11:07:12 +03003685#define PTTYPE_EPT 18 /* arbitrary */
3686#define PTTYPE PTTYPE_EPT
3687#include "paging_tmpl.h"
3688#undef PTTYPE
3689
Avi Kivity6aa8b732006-12-10 02:21:36 -08003690#define PTTYPE 64
3691#include "paging_tmpl.h"
3692#undef PTTYPE
3693
3694#define PTTYPE 32
3695#include "paging_tmpl.h"
3696#undef PTTYPE
3697
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003698static void
3699__reset_rsvds_bits_mask(struct kvm_vcpu *vcpu,
3700 struct rsvd_bits_validate *rsvd_check,
3701 int maxphyaddr, int level, bool nx, bool gbpages,
Paolo Bonzini6fec2142015-09-22 23:02:14 +02003702 bool pse, bool amd)
Dong, Eddie82725b22009-03-30 16:21:08 +08003703{
Dong, Eddie82725b22009-03-30 16:21:08 +08003704 u64 exb_bit_rsvd = 0;
Nadav Amit5f7dde72014-05-07 15:32:50 +03003705 u64 gbpages_bit_rsvd = 0;
Paolo Bonzinia0c0feb52014-09-02 13:24:12 +02003706 u64 nonleaf_bit8_rsvd = 0;
Dong, Eddie82725b22009-03-30 16:21:08 +08003707
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003708 rsvd_check->bad_mt_xwr = 0;
Yang Zhang25d92082013-08-06 12:00:32 +03003709
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003710 if (!nx)
Dong, Eddie82725b22009-03-30 16:21:08 +08003711 exb_bit_rsvd = rsvd_bits(63, 63);
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003712 if (!gbpages)
Nadav Amit5f7dde72014-05-07 15:32:50 +03003713 gbpages_bit_rsvd = rsvd_bits(7, 7);
Paolo Bonzinia0c0feb52014-09-02 13:24:12 +02003714
3715 /*
3716 * Non-leaf PML4Es and PDPEs reserve bit 8 (which would be the G bit for
3717 * leaf entries) on AMD CPUs only.
3718 */
Paolo Bonzini6fec2142015-09-22 23:02:14 +02003719 if (amd)
Paolo Bonzinia0c0feb52014-09-02 13:24:12 +02003720 nonleaf_bit8_rsvd = rsvd_bits(8, 8);
3721
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003722 switch (level) {
Dong, Eddie82725b22009-03-30 16:21:08 +08003723 case PT32_ROOT_LEVEL:
3724 /* no rsvd bits for 2 level 4K page table entries */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003725 rsvd_check->rsvd_bits_mask[0][1] = 0;
3726 rsvd_check->rsvd_bits_mask[0][0] = 0;
3727 rsvd_check->rsvd_bits_mask[1][0] =
3728 rsvd_check->rsvd_bits_mask[0][0];
Xiao Guangrongf815bce2010-03-19 17:58:53 +08003729
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003730 if (!pse) {
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003731 rsvd_check->rsvd_bits_mask[1][1] = 0;
Xiao Guangrongf815bce2010-03-19 17:58:53 +08003732 break;
3733 }
3734
Dong, Eddie82725b22009-03-30 16:21:08 +08003735 if (is_cpuid_PSE36())
3736 /* 36bits PSE 4MB page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003737 rsvd_check->rsvd_bits_mask[1][1] = rsvd_bits(17, 21);
Dong, Eddie82725b22009-03-30 16:21:08 +08003738 else
3739 /* 32 bits PSE 4MB page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003740 rsvd_check->rsvd_bits_mask[1][1] = rsvd_bits(13, 21);
Dong, Eddie82725b22009-03-30 16:21:08 +08003741 break;
3742 case PT32E_ROOT_LEVEL:
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003743 rsvd_check->rsvd_bits_mask[0][2] =
Dong, Eddie20c466b2009-03-31 23:03:45 +08003744 rsvd_bits(maxphyaddr, 63) |
Nadav Amitcd9ae5f2014-04-04 06:31:04 +03003745 rsvd_bits(5, 8) | rsvd_bits(1, 2); /* PDPTE */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003746 rsvd_check->rsvd_bits_mask[0][1] = exb_bit_rsvd |
Sheng Yang4c26b4c2009-04-02 10:28:37 +08003747 rsvd_bits(maxphyaddr, 62); /* PDE */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003748 rsvd_check->rsvd_bits_mask[0][0] = exb_bit_rsvd |
Dong, Eddie82725b22009-03-30 16:21:08 +08003749 rsvd_bits(maxphyaddr, 62); /* PTE */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003750 rsvd_check->rsvd_bits_mask[1][1] = exb_bit_rsvd |
Dong, Eddie82725b22009-03-30 16:21:08 +08003751 rsvd_bits(maxphyaddr, 62) |
3752 rsvd_bits(13, 20); /* large page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003753 rsvd_check->rsvd_bits_mask[1][0] =
3754 rsvd_check->rsvd_bits_mask[0][0];
Dong, Eddie82725b22009-03-30 16:21:08 +08003755 break;
3756 case PT64_ROOT_LEVEL:
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003757 rsvd_check->rsvd_bits_mask[0][3] = exb_bit_rsvd |
3758 nonleaf_bit8_rsvd | rsvd_bits(7, 7) |
Sheng Yang4c26b4c2009-04-02 10:28:37 +08003759 rsvd_bits(maxphyaddr, 51);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003760 rsvd_check->rsvd_bits_mask[0][2] = exb_bit_rsvd |
3761 nonleaf_bit8_rsvd | gbpages_bit_rsvd |
Dong, Eddie82725b22009-03-30 16:21:08 +08003762 rsvd_bits(maxphyaddr, 51);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003763 rsvd_check->rsvd_bits_mask[0][1] = exb_bit_rsvd |
3764 rsvd_bits(maxphyaddr, 51);
3765 rsvd_check->rsvd_bits_mask[0][0] = exb_bit_rsvd |
3766 rsvd_bits(maxphyaddr, 51);
3767 rsvd_check->rsvd_bits_mask[1][3] =
3768 rsvd_check->rsvd_bits_mask[0][3];
3769 rsvd_check->rsvd_bits_mask[1][2] = exb_bit_rsvd |
Nadav Amit5f7dde72014-05-07 15:32:50 +03003770 gbpages_bit_rsvd | rsvd_bits(maxphyaddr, 51) |
Joerg Roedele04da982009-07-27 16:30:45 +02003771 rsvd_bits(13, 29);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003772 rsvd_check->rsvd_bits_mask[1][1] = exb_bit_rsvd |
Sheng Yang4c26b4c2009-04-02 10:28:37 +08003773 rsvd_bits(maxphyaddr, 51) |
3774 rsvd_bits(13, 20); /* large page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003775 rsvd_check->rsvd_bits_mask[1][0] =
3776 rsvd_check->rsvd_bits_mask[0][0];
Dong, Eddie82725b22009-03-30 16:21:08 +08003777 break;
3778 }
3779}
3780
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003781static void reset_rsvds_bits_mask(struct kvm_vcpu *vcpu,
3782 struct kvm_mmu *context)
3783{
3784 __reset_rsvds_bits_mask(vcpu, &context->guest_rsvd_check,
3785 cpuid_maxphyaddr(vcpu), context->root_level,
3786 context->nx, guest_cpuid_has_gbpages(vcpu),
Paolo Bonzini6fec2142015-09-22 23:02:14 +02003787 is_pse(vcpu), guest_cpuid_is_amd(vcpu));
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003788}
3789
Xiao Guangrong81b8eeb2015-08-05 12:04:23 +08003790static void
3791__reset_rsvds_bits_mask_ept(struct rsvd_bits_validate *rsvd_check,
3792 int maxphyaddr, bool execonly)
Yang Zhang25d92082013-08-06 12:00:32 +03003793{
Paolo Bonzini951f9fd2015-09-23 10:34:26 +02003794 u64 bad_mt_xwr;
Yang Zhang25d92082013-08-06 12:00:32 +03003795
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003796 rsvd_check->rsvd_bits_mask[0][3] =
Yang Zhang25d92082013-08-06 12:00:32 +03003797 rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 7);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003798 rsvd_check->rsvd_bits_mask[0][2] =
Yang Zhang25d92082013-08-06 12:00:32 +03003799 rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 6);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003800 rsvd_check->rsvd_bits_mask[0][1] =
Yang Zhang25d92082013-08-06 12:00:32 +03003801 rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 6);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003802 rsvd_check->rsvd_bits_mask[0][0] = rsvd_bits(maxphyaddr, 51);
Yang Zhang25d92082013-08-06 12:00:32 +03003803
3804 /* large page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003805 rsvd_check->rsvd_bits_mask[1][3] = rsvd_check->rsvd_bits_mask[0][3];
3806 rsvd_check->rsvd_bits_mask[1][2] =
Yang Zhang25d92082013-08-06 12:00:32 +03003807 rsvd_bits(maxphyaddr, 51) | rsvd_bits(12, 29);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003808 rsvd_check->rsvd_bits_mask[1][1] =
Yang Zhang25d92082013-08-06 12:00:32 +03003809 rsvd_bits(maxphyaddr, 51) | rsvd_bits(12, 20);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003810 rsvd_check->rsvd_bits_mask[1][0] = rsvd_check->rsvd_bits_mask[0][0];
Yang Zhang25d92082013-08-06 12:00:32 +03003811
Paolo Bonzini951f9fd2015-09-23 10:34:26 +02003812 bad_mt_xwr = 0xFFull << (2 * 8); /* bits 3..5 must not be 2 */
3813 bad_mt_xwr |= 0xFFull << (3 * 8); /* bits 3..5 must not be 3 */
3814 bad_mt_xwr |= 0xFFull << (7 * 8); /* bits 3..5 must not be 7 */
3815 bad_mt_xwr |= REPEAT_BYTE(1ull << 2); /* bits 0..2 must not be 010 */
3816 bad_mt_xwr |= REPEAT_BYTE(1ull << 6); /* bits 0..2 must not be 110 */
3817 if (!execonly) {
3818 /* bits 0..2 must not be 100 unless VMX capabilities allow it */
3819 bad_mt_xwr |= REPEAT_BYTE(1ull << 4);
Yang Zhang25d92082013-08-06 12:00:32 +03003820 }
Paolo Bonzini951f9fd2015-09-23 10:34:26 +02003821 rsvd_check->bad_mt_xwr = bad_mt_xwr;
Yang Zhang25d92082013-08-06 12:00:32 +03003822}
3823
Xiao Guangrong81b8eeb2015-08-05 12:04:23 +08003824static void reset_rsvds_bits_mask_ept(struct kvm_vcpu *vcpu,
3825 struct kvm_mmu *context, bool execonly)
3826{
3827 __reset_rsvds_bits_mask_ept(&context->guest_rsvd_check,
3828 cpuid_maxphyaddr(vcpu), execonly);
3829}
3830
Xiao Guangrongc258b622015-08-05 12:04:24 +08003831/*
3832 * the page table on host is the shadow page table for the page
3833 * table in guest or amd nested guest, its mmu features completely
3834 * follow the features in guest.
3835 */
3836void
3837reset_shadow_zero_bits_mask(struct kvm_vcpu *vcpu, struct kvm_mmu *context)
3838{
Paolo Bonzini5f0b8192016-03-09 14:28:02 +01003839 bool uses_nx = context->nx || context->base_role.smep_andnot_wp;
3840
Paolo Bonzini6fec2142015-09-22 23:02:14 +02003841 /*
3842 * Passing "true" to the last argument is okay; it adds a check
3843 * on bit 8 of the SPTEs which KVM doesn't use anyway.
3844 */
Xiao Guangrongc258b622015-08-05 12:04:24 +08003845 __reset_rsvds_bits_mask(vcpu, &context->shadow_zero_check,
3846 boot_cpu_data.x86_phys_bits,
Paolo Bonzini5f0b8192016-03-09 14:28:02 +01003847 context->shadow_root_level, uses_nx,
Paolo Bonzini6fec2142015-09-22 23:02:14 +02003848 guest_cpuid_has_gbpages(vcpu), is_pse(vcpu),
3849 true);
Xiao Guangrongc258b622015-08-05 12:04:24 +08003850}
3851EXPORT_SYMBOL_GPL(reset_shadow_zero_bits_mask);
3852
Paolo Bonzini6fec2142015-09-22 23:02:14 +02003853static inline bool boot_cpu_is_amd(void)
3854{
3855 WARN_ON_ONCE(!tdp_enabled);
3856 return shadow_x_mask == 0;
3857}
3858
Xiao Guangrongc258b622015-08-05 12:04:24 +08003859/*
3860 * the direct page table on host, use as much mmu features as
3861 * possible, however, kvm currently does not do execution-protection.
3862 */
3863static void
3864reset_tdp_shadow_zero_bits_mask(struct kvm_vcpu *vcpu,
3865 struct kvm_mmu *context)
3866{
Paolo Bonzini6fec2142015-09-22 23:02:14 +02003867 if (boot_cpu_is_amd())
Xiao Guangrongc258b622015-08-05 12:04:24 +08003868 __reset_rsvds_bits_mask(vcpu, &context->shadow_zero_check,
3869 boot_cpu_data.x86_phys_bits,
3870 context->shadow_root_level, false,
Borislav Petkovb8291adc2016-03-29 17:41:58 +02003871 boot_cpu_has(X86_FEATURE_GBPAGES),
3872 true, true);
Xiao Guangrongc258b622015-08-05 12:04:24 +08003873 else
3874 __reset_rsvds_bits_mask_ept(&context->shadow_zero_check,
3875 boot_cpu_data.x86_phys_bits,
3876 false);
3877
3878}
3879
3880/*
3881 * as the comments in reset_shadow_zero_bits_mask() except it
3882 * is the shadow page table for intel nested guest.
3883 */
3884static void
3885reset_ept_shadow_zero_bits_mask(struct kvm_vcpu *vcpu,
3886 struct kvm_mmu *context, bool execonly)
3887{
3888 __reset_rsvds_bits_mask_ept(&context->shadow_zero_check,
3889 boot_cpu_data.x86_phys_bits, execonly);
3890}
3891
Xiao Guangrongedc90b72015-05-11 22:55:21 +08003892static void update_permission_bitmask(struct kvm_vcpu *vcpu,
3893 struct kvm_mmu *mmu, bool ept)
Avi Kivity97d64b72012-09-12 14:52:00 +03003894{
3895 unsigned bit, byte, pfec;
3896 u8 map;
Feng Wu66386ad2014-04-01 17:56:48 +08003897 bool fault, x, w, u, wf, uf, ff, smapf, cr4_smap, cr4_smep, smap = 0;
Avi Kivity97d64b72012-09-12 14:52:00 +03003898
Feng Wu66386ad2014-04-01 17:56:48 +08003899 cr4_smep = kvm_read_cr4_bits(vcpu, X86_CR4_SMEP);
Feng Wu97ec8c02014-04-01 17:46:34 +08003900 cr4_smap = kvm_read_cr4_bits(vcpu, X86_CR4_SMAP);
Avi Kivity97d64b72012-09-12 14:52:00 +03003901 for (byte = 0; byte < ARRAY_SIZE(mmu->permissions); ++byte) {
3902 pfec = byte << 1;
3903 map = 0;
3904 wf = pfec & PFERR_WRITE_MASK;
3905 uf = pfec & PFERR_USER_MASK;
3906 ff = pfec & PFERR_FETCH_MASK;
Feng Wu97ec8c02014-04-01 17:46:34 +08003907 /*
3908 * PFERR_RSVD_MASK bit is set in PFEC if the access is not
3909 * subject to SMAP restrictions, and cleared otherwise. The
3910 * bit is only meaningful if the SMAP bit is set in CR4.
3911 */
3912 smapf = !(pfec & PFERR_RSVD_MASK);
Avi Kivity97d64b72012-09-12 14:52:00 +03003913 for (bit = 0; bit < 8; ++bit) {
3914 x = bit & ACC_EXEC_MASK;
3915 w = bit & ACC_WRITE_MASK;
3916 u = bit & ACC_USER_MASK;
3917
Yang Zhang25d92082013-08-06 12:00:32 +03003918 if (!ept) {
3919 /* Not really needed: !nx will cause pte.nx to fault */
3920 x |= !mmu->nx;
3921 /* Allow supervisor writes if !cr0.wp */
3922 w |= !is_write_protection(vcpu) && !uf;
3923 /* Disallow supervisor fetches of user code if cr4.smep */
Feng Wu66386ad2014-04-01 17:56:48 +08003924 x &= !(cr4_smep && u && !uf);
Feng Wu97ec8c02014-04-01 17:46:34 +08003925
3926 /*
3927 * SMAP:kernel-mode data accesses from user-mode
3928 * mappings should fault. A fault is considered
3929 * as a SMAP violation if all of the following
3930 * conditions are ture:
3931 * - X86_CR4_SMAP is set in CR4
3932 * - An user page is accessed
3933 * - Page fault in kernel mode
3934 * - if CPL = 3 or X86_EFLAGS_AC is clear
3935 *
3936 * Here, we cover the first three conditions.
3937 * The fourth is computed dynamically in
3938 * permission_fault() and is in smapf.
3939 *
3940 * Also, SMAP does not affect instruction
3941 * fetches, add the !ff check here to make it
3942 * clearer.
3943 */
3944 smap = cr4_smap && u && !uf && !ff;
Bandan Dasd95c5562016-07-12 18:18:51 -04003945 }
Avi Kivity97d64b72012-09-12 14:52:00 +03003946
Feng Wu97ec8c02014-04-01 17:46:34 +08003947 fault = (ff && !x) || (uf && !u) || (wf && !w) ||
3948 (smapf && smap);
Avi Kivity97d64b72012-09-12 14:52:00 +03003949 map |= fault << bit;
3950 }
3951 mmu->permissions[byte] = map;
3952 }
3953}
3954
Huaitong Han2d344102016-03-22 16:51:19 +08003955/*
3956* PKU is an additional mechanism by which the paging controls access to
3957* user-mode addresses based on the value in the PKRU register. Protection
3958* key violations are reported through a bit in the page fault error code.
3959* Unlike other bits of the error code, the PK bit is not known at the
3960* call site of e.g. gva_to_gpa; it must be computed directly in
3961* permission_fault based on two bits of PKRU, on some machine state (CR4,
3962* CR0, EFER, CPL), and on other bits of the error code and the page tables.
3963*
3964* In particular the following conditions come from the error code, the
3965* page tables and the machine state:
3966* - PK is always zero unless CR4.PKE=1 and EFER.LMA=1
3967* - PK is always zero if RSVD=1 (reserved bit set) or F=1 (instruction fetch)
3968* - PK is always zero if U=0 in the page tables
3969* - PKRU.WD is ignored if CR0.WP=0 and the access is a supervisor access.
3970*
3971* The PKRU bitmask caches the result of these four conditions. The error
3972* code (minus the P bit) and the page table's U bit form an index into the
3973* PKRU bitmask. Two bits of the PKRU bitmask are then extracted and ANDed
3974* with the two bits of the PKRU register corresponding to the protection key.
3975* For the first three conditions above the bits will be 00, thus masking
3976* away both AD and WD. For all reads or if the last condition holds, WD
3977* only will be masked away.
3978*/
3979static void update_pkru_bitmask(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
3980 bool ept)
3981{
3982 unsigned bit;
3983 bool wp;
3984
3985 if (ept) {
3986 mmu->pkru_mask = 0;
3987 return;
3988 }
3989
3990 /* PKEY is enabled only if CR4.PKE and EFER.LMA are both set. */
3991 if (!kvm_read_cr4_bits(vcpu, X86_CR4_PKE) || !is_long_mode(vcpu)) {
3992 mmu->pkru_mask = 0;
3993 return;
3994 }
3995
3996 wp = is_write_protection(vcpu);
3997
3998 for (bit = 0; bit < ARRAY_SIZE(mmu->permissions); ++bit) {
3999 unsigned pfec, pkey_bits;
4000 bool check_pkey, check_write, ff, uf, wf, pte_user;
4001
4002 pfec = bit << 1;
4003 ff = pfec & PFERR_FETCH_MASK;
4004 uf = pfec & PFERR_USER_MASK;
4005 wf = pfec & PFERR_WRITE_MASK;
4006
4007 /* PFEC.RSVD is replaced by ACC_USER_MASK. */
4008 pte_user = pfec & PFERR_RSVD_MASK;
4009
4010 /*
4011 * Only need to check the access which is not an
4012 * instruction fetch and is to a user page.
4013 */
4014 check_pkey = (!ff && pte_user);
4015 /*
4016 * write access is controlled by PKRU if it is a
4017 * user access or CR0.WP = 1.
4018 */
4019 check_write = check_pkey && wf && (uf || wp);
4020
4021 /* PKRU.AD stops both read and write access. */
4022 pkey_bits = !!check_pkey;
4023 /* PKRU.WD stops write access. */
4024 pkey_bits |= (!!check_write) << 1;
4025
4026 mmu->pkru_mask |= (pkey_bits & 3) << pfec;
4027 }
4028}
4029
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004030static void update_last_nonleaf_level(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu)
Avi Kivity6fd01b72012-09-12 20:46:56 +03004031{
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004032 unsigned root_level = mmu->root_level;
Avi Kivity6fd01b72012-09-12 20:46:56 +03004033
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004034 mmu->last_nonleaf_level = root_level;
4035 if (root_level == PT32_ROOT_LEVEL && is_pse(vcpu))
4036 mmu->last_nonleaf_level++;
Avi Kivity6fd01b72012-09-12 20:46:56 +03004037}
4038
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004039static void paging64_init_context_common(struct kvm_vcpu *vcpu,
4040 struct kvm_mmu *context,
4041 int level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004042{
Joerg Roedel2d48a982010-09-10 17:31:01 +02004043 context->nx = is_nx(vcpu);
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004044 context->root_level = level;
Joerg Roedel2d48a982010-09-10 17:31:01 +02004045
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004046 reset_rsvds_bits_mask(vcpu, context);
Yang Zhang25d92082013-08-06 12:00:32 +03004047 update_permission_bitmask(vcpu, context, false);
Huaitong Han2d344102016-03-22 16:51:19 +08004048 update_pkru_bitmask(vcpu, context, false);
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004049 update_last_nonleaf_level(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004050
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02004051 MMU_WARN_ON(!is_pae(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004052 context->page_fault = paging64_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004053 context->gva_to_gpa = paging64_gva_to_gpa;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03004054 context->sync_page = paging64_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03004055 context->invlpg = paging64_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08004056 context->update_pte = paging64_update_pte;
Avi Kivity17ac10a2007-01-05 16:36:40 -08004057 context->shadow_root_level = level;
Avi Kivity17c3ba92007-06-04 15:58:30 +03004058 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02004059 context->direct_map = false;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004060}
4061
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004062static void paging64_init_context(struct kvm_vcpu *vcpu,
4063 struct kvm_mmu *context)
Avi Kivity17ac10a2007-01-05 16:36:40 -08004064{
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004065 paging64_init_context_common(vcpu, context, PT64_ROOT_LEVEL);
Avi Kivity17ac10a2007-01-05 16:36:40 -08004066}
4067
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004068static void paging32_init_context(struct kvm_vcpu *vcpu,
4069 struct kvm_mmu *context)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004070{
Joerg Roedel2d48a982010-09-10 17:31:01 +02004071 context->nx = false;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004072 context->root_level = PT32_ROOT_LEVEL;
Joerg Roedel2d48a982010-09-10 17:31:01 +02004073
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004074 reset_rsvds_bits_mask(vcpu, context);
Yang Zhang25d92082013-08-06 12:00:32 +03004075 update_permission_bitmask(vcpu, context, false);
Huaitong Han2d344102016-03-22 16:51:19 +08004076 update_pkru_bitmask(vcpu, context, false);
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004077 update_last_nonleaf_level(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004078
Avi Kivity6aa8b732006-12-10 02:21:36 -08004079 context->page_fault = paging32_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004080 context->gva_to_gpa = paging32_gva_to_gpa;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03004081 context->sync_page = paging32_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03004082 context->invlpg = paging32_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08004083 context->update_pte = paging32_update_pte;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004084 context->shadow_root_level = PT32E_ROOT_LEVEL;
Avi Kivity17c3ba92007-06-04 15:58:30 +03004085 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02004086 context->direct_map = false;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004087}
4088
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004089static void paging32E_init_context(struct kvm_vcpu *vcpu,
4090 struct kvm_mmu *context)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004091{
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004092 paging64_init_context_common(vcpu, context, PT32E_ROOT_LEVEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004093}
4094
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004095static void init_kvm_tdp_mmu(struct kvm_vcpu *vcpu)
Joerg Roedelfb72d162008-02-07 13:47:44 +01004096{
Paolo Bonziniad896af2013-10-02 16:56:14 +02004097 struct kvm_mmu *context = &vcpu->arch.mmu;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004098
Avi Kivityc445f8e2010-12-21 16:26:01 +02004099 context->base_role.word = 0;
Paolo Bonzini699023e2015-05-18 15:03:39 +02004100 context->base_role.smm = is_smm(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004101 context->page_fault = tdp_page_fault;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03004102 context->sync_page = nonpaging_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03004103 context->invlpg = nonpaging_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08004104 context->update_pte = nonpaging_update_pte;
Sheng Yang67253af2008-04-25 10:20:22 +08004105 context->shadow_root_level = kvm_x86_ops->get_tdp_level();
Joerg Roedelfb72d162008-02-07 13:47:44 +01004106 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02004107 context->direct_map = true;
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02004108 context->set_cr3 = kvm_x86_ops->set_tdp_cr3;
Joerg Roedel5777ed32010-09-10 17:30:42 +02004109 context->get_cr3 = get_cr3;
Avi Kivitye4e517b2011-07-28 11:36:17 +03004110 context->get_pdptr = kvm_pdptr_read;
Joerg Roedelcb659db2010-09-10 17:30:43 +02004111 context->inject_page_fault = kvm_inject_page_fault;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004112
4113 if (!is_paging(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004114 context->nx = false;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004115 context->gva_to_gpa = nonpaging_gva_to_gpa;
4116 context->root_level = 0;
4117 } else if (is_long_mode(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004118 context->nx = is_nx(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004119 context->root_level = PT64_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004120 reset_rsvds_bits_mask(vcpu, context);
4121 context->gva_to_gpa = paging64_gva_to_gpa;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004122 } else if (is_pae(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004123 context->nx = is_nx(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004124 context->root_level = PT32E_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004125 reset_rsvds_bits_mask(vcpu, context);
4126 context->gva_to_gpa = paging64_gva_to_gpa;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004127 } else {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004128 context->nx = false;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004129 context->root_level = PT32_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004130 reset_rsvds_bits_mask(vcpu, context);
4131 context->gva_to_gpa = paging32_gva_to_gpa;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004132 }
4133
Yang Zhang25d92082013-08-06 12:00:32 +03004134 update_permission_bitmask(vcpu, context, false);
Huaitong Han2d344102016-03-22 16:51:19 +08004135 update_pkru_bitmask(vcpu, context, false);
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004136 update_last_nonleaf_level(vcpu, context);
Xiao Guangrongc258b622015-08-05 12:04:24 +08004137 reset_tdp_shadow_zero_bits_mask(vcpu, context);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004138}
4139
Paolo Bonziniad896af2013-10-02 16:56:14 +02004140void kvm_init_shadow_mmu(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004141{
Avi Kivity411c5882011-06-06 16:11:54 +03004142 bool smep = kvm_read_cr4_bits(vcpu, X86_CR4_SMEP);
Xiao Guangrongedc90b72015-05-11 22:55:21 +08004143 bool smap = kvm_read_cr4_bits(vcpu, X86_CR4_SMAP);
Paolo Bonziniad896af2013-10-02 16:56:14 +02004144 struct kvm_mmu *context = &vcpu->arch.mmu;
4145
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02004146 MMU_WARN_ON(VALID_PAGE(context->root_hpa));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004147
4148 if (!is_paging(vcpu))
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004149 nonpaging_init_context(vcpu, context);
Avi Kivitya9058ec2006-12-29 16:49:37 -08004150 else if (is_long_mode(vcpu))
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004151 paging64_init_context(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004152 else if (is_pae(vcpu))
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004153 paging32E_init_context(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004154 else
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004155 paging32_init_context(vcpu, context);
Avi Kivitya770f6f2008-12-21 19:20:09 +02004156
Paolo Bonziniad896af2013-10-02 16:56:14 +02004157 context->base_role.nxe = is_nx(vcpu);
4158 context->base_role.cr4_pae = !!is_pae(vcpu);
4159 context->base_role.cr0_wp = is_write_protection(vcpu);
4160 context->base_role.smep_andnot_wp
Avi Kivity411c5882011-06-06 16:11:54 +03004161 = smep && !is_write_protection(vcpu);
Xiao Guangrongedc90b72015-05-11 22:55:21 +08004162 context->base_role.smap_andnot_wp
4163 = smap && !is_write_protection(vcpu);
Paolo Bonzini699023e2015-05-18 15:03:39 +02004164 context->base_role.smm = is_smm(vcpu);
Xiao Guangrongc258b622015-08-05 12:04:24 +08004165 reset_shadow_zero_bits_mask(vcpu, context);
Joerg Roedel52fde8d2010-09-10 17:30:44 +02004166}
4167EXPORT_SYMBOL_GPL(kvm_init_shadow_mmu);
4168
Paolo Bonziniad896af2013-10-02 16:56:14 +02004169void kvm_init_shadow_ept_mmu(struct kvm_vcpu *vcpu, bool execonly)
Nadav Har'El155a97a2013-08-05 11:07:16 +03004170{
Paolo Bonziniad896af2013-10-02 16:56:14 +02004171 struct kvm_mmu *context = &vcpu->arch.mmu;
4172
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02004173 MMU_WARN_ON(VALID_PAGE(context->root_hpa));
Nadav Har'El155a97a2013-08-05 11:07:16 +03004174
4175 context->shadow_root_level = kvm_x86_ops->get_tdp_level();
4176
4177 context->nx = true;
Nadav Har'El155a97a2013-08-05 11:07:16 +03004178 context->page_fault = ept_page_fault;
4179 context->gva_to_gpa = ept_gva_to_gpa;
4180 context->sync_page = ept_sync_page;
4181 context->invlpg = ept_invlpg;
4182 context->update_pte = ept_update_pte;
Nadav Har'El155a97a2013-08-05 11:07:16 +03004183 context->root_level = context->shadow_root_level;
4184 context->root_hpa = INVALID_PAGE;
4185 context->direct_map = false;
4186
4187 update_permission_bitmask(vcpu, context, true);
Huaitong Han2d344102016-03-22 16:51:19 +08004188 update_pkru_bitmask(vcpu, context, true);
Nadav Har'El155a97a2013-08-05 11:07:16 +03004189 reset_rsvds_bits_mask_ept(vcpu, context, execonly);
Xiao Guangrongc258b622015-08-05 12:04:24 +08004190 reset_ept_shadow_zero_bits_mask(vcpu, context, execonly);
Nadav Har'El155a97a2013-08-05 11:07:16 +03004191}
4192EXPORT_SYMBOL_GPL(kvm_init_shadow_ept_mmu);
4193
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004194static void init_kvm_softmmu(struct kvm_vcpu *vcpu)
Joerg Roedel52fde8d2010-09-10 17:30:44 +02004195{
Paolo Bonziniad896af2013-10-02 16:56:14 +02004196 struct kvm_mmu *context = &vcpu->arch.mmu;
4197
4198 kvm_init_shadow_mmu(vcpu);
4199 context->set_cr3 = kvm_x86_ops->set_cr3;
4200 context->get_cr3 = get_cr3;
4201 context->get_pdptr = kvm_pdptr_read;
4202 context->inject_page_fault = kvm_inject_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004203}
4204
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004205static void init_kvm_nested_mmu(struct kvm_vcpu *vcpu)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004206{
4207 struct kvm_mmu *g_context = &vcpu->arch.nested_mmu;
4208
4209 g_context->get_cr3 = get_cr3;
Avi Kivitye4e517b2011-07-28 11:36:17 +03004210 g_context->get_pdptr = kvm_pdptr_read;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004211 g_context->inject_page_fault = kvm_inject_page_fault;
4212
4213 /*
David Matlack0af25932015-12-30 08:26:17 -08004214 * Note that arch.mmu.gva_to_gpa translates l2_gpa to l1_gpa using
4215 * L1's nested page tables (e.g. EPT12). The nested translation
4216 * of l2_gva to l1_gpa is done by arch.nested_mmu.gva_to_gpa using
4217 * L2's page tables as the first level of translation and L1's
4218 * nested page tables as the second level of translation. Basically
4219 * the gva_to_gpa functions between mmu and nested_mmu are swapped.
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004220 */
4221 if (!is_paging(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004222 g_context->nx = false;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004223 g_context->root_level = 0;
4224 g_context->gva_to_gpa = nonpaging_gva_to_gpa_nested;
4225 } else if (is_long_mode(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004226 g_context->nx = is_nx(vcpu);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004227 g_context->root_level = PT64_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004228 reset_rsvds_bits_mask(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004229 g_context->gva_to_gpa = paging64_gva_to_gpa_nested;
4230 } else if (is_pae(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004231 g_context->nx = is_nx(vcpu);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004232 g_context->root_level = PT32E_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004233 reset_rsvds_bits_mask(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004234 g_context->gva_to_gpa = paging64_gva_to_gpa_nested;
4235 } else {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004236 g_context->nx = false;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004237 g_context->root_level = PT32_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004238 reset_rsvds_bits_mask(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004239 g_context->gva_to_gpa = paging32_gva_to_gpa_nested;
4240 }
4241
Yang Zhang25d92082013-08-06 12:00:32 +03004242 update_permission_bitmask(vcpu, g_context, false);
Huaitong Han2d344102016-03-22 16:51:19 +08004243 update_pkru_bitmask(vcpu, g_context, false);
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004244 update_last_nonleaf_level(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004245}
4246
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004247static void init_kvm_mmu(struct kvm_vcpu *vcpu)
Joerg Roedelfb72d162008-02-07 13:47:44 +01004248{
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004249 if (mmu_is_nested(vcpu))
Paolo Bonzinie0c6db32014-12-23 13:39:46 +01004250 init_kvm_nested_mmu(vcpu);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004251 else if (tdp_enabled)
Paolo Bonzinie0c6db32014-12-23 13:39:46 +01004252 init_kvm_tdp_mmu(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004253 else
Paolo Bonzinie0c6db32014-12-23 13:39:46 +01004254 init_kvm_softmmu(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004255}
4256
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004257void kvm_mmu_reset_context(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004258{
Paolo Bonzini95f93af2013-10-02 16:56:12 +02004259 kvm_mmu_unload(vcpu);
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004260 init_kvm_mmu(vcpu);
Avi Kivity17c3ba92007-06-04 15:58:30 +03004261}
Eddie Dong8668a3c2007-10-10 14:26:45 +08004262EXPORT_SYMBOL_GPL(kvm_mmu_reset_context);
Avi Kivity17c3ba92007-06-04 15:58:30 +03004263
4264int kvm_mmu_load(struct kvm_vcpu *vcpu)
4265{
Avi Kivity714b93d2007-01-05 16:36:53 -08004266 int r;
4267
Avi Kivitye2dec932007-01-05 16:36:54 -08004268 r = mmu_topup_memory_caches(vcpu);
Avi Kivity17c3ba92007-06-04 15:58:30 +03004269 if (r)
4270 goto out;
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03004271 r = mmu_alloc_roots(vcpu);
Takuya Yoshikawae2858b4a2013-05-09 15:45:12 +09004272 kvm_mmu_sync_roots(vcpu);
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03004273 if (r)
4274 goto out;
Sheng Yang3662cb12009-07-09 17:00:42 +08004275 /* set_cr3() should ensure TLB has been flushed */
Joerg Roedelf43addd2010-09-10 17:30:40 +02004276 vcpu->arch.mmu.set_cr3(vcpu, vcpu->arch.mmu.root_hpa);
Avi Kivity714b93d2007-01-05 16:36:53 -08004277out:
4278 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004279}
Avi Kivity17c3ba92007-06-04 15:58:30 +03004280EXPORT_SYMBOL_GPL(kvm_mmu_load);
4281
4282void kvm_mmu_unload(struct kvm_vcpu *vcpu)
4283{
4284 mmu_free_roots(vcpu);
Paolo Bonzini95f93af2013-10-02 16:56:12 +02004285 WARN_ON(VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity17c3ba92007-06-04 15:58:30 +03004286}
Joerg Roedel4b161842010-09-10 17:31:03 +02004287EXPORT_SYMBOL_GPL(kvm_mmu_unload);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004288
Avi Kivity00284252007-05-01 16:53:31 +03004289static void mmu_pte_write_new_pte(struct kvm_vcpu *vcpu,
Xiao Guangrong7c562522011-03-28 10:29:27 +08004290 struct kvm_mmu_page *sp, u64 *spte,
4291 const void *new)
Avi Kivity00284252007-05-01 16:53:31 +03004292{
Marcelo Tosatti30945382008-06-11 20:32:40 -03004293 if (sp->role.level != PT_PAGE_TABLE_LEVEL) {
Joerg Roedel7e4e4052009-07-27 16:30:46 +02004294 ++vcpu->kvm->stat.mmu_pde_zapped;
4295 return;
Marcelo Tosatti30945382008-06-11 20:32:40 -03004296 }
Avi Kivity00284252007-05-01 16:53:31 +03004297
Avi Kivity4cee5762007-11-18 16:37:07 +02004298 ++vcpu->kvm->stat.mmu_pte_updated;
Xiao Guangrong7c562522011-03-28 10:29:27 +08004299 vcpu->arch.mmu.update_pte(vcpu, sp, spte, new);
Avi Kivity00284252007-05-01 16:53:31 +03004300}
4301
Avi Kivity79539ce2007-11-21 02:06:21 +02004302static bool need_remote_flush(u64 old, u64 new)
4303{
4304 if (!is_shadow_present_pte(old))
4305 return false;
4306 if (!is_shadow_present_pte(new))
4307 return true;
4308 if ((old ^ new) & PT64_BASE_ADDR_MASK)
4309 return true;
Gleb Natapov53166222013-08-05 11:07:14 +03004310 old ^= shadow_nx_mask;
4311 new ^= shadow_nx_mask;
Avi Kivity79539ce2007-11-21 02:06:21 +02004312 return (old & ~new & PT64_PERM_MASK) != 0;
4313}
4314
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004315static u64 mmu_pte_write_fetch_gpte(struct kvm_vcpu *vcpu, gpa_t *gpa,
4316 const u8 *new, int *bytes)
Avi Kivityda4a00f2007-01-05 16:36:44 -08004317{
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004318 u64 gentry;
4319 int r;
Avi Kivity72016f32010-03-15 13:59:53 +02004320
Avi Kivity08e850c2010-03-15 13:59:57 +02004321 /*
4322 * Assume that the pte write on a page table of the same type
Xiao Guangrong49b26e22011-03-04 19:00:00 +08004323 * as the current vcpu paging mode since we update the sptes only
4324 * when they have the same mode.
Avi Kivity08e850c2010-03-15 13:59:57 +02004325 */
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004326 if (is_pae(vcpu) && *bytes == 4) {
Avi Kivity08e850c2010-03-15 13:59:57 +02004327 /* Handle a 32-bit guest writing two halves of a 64-bit gpte */
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004328 *gpa &= ~(gpa_t)7;
4329 *bytes = 8;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004330 r = kvm_vcpu_read_guest(vcpu, *gpa, &gentry, 8);
Avi Kivity08e850c2010-03-15 13:59:57 +02004331 if (r)
4332 gentry = 0;
4333 new = (const u8 *)&gentry;
4334 }
4335
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004336 switch (*bytes) {
Avi Kivity72016f32010-03-15 13:59:53 +02004337 case 4:
4338 gentry = *(const u32 *)new;
4339 break;
4340 case 8:
4341 gentry = *(const u64 *)new;
4342 break;
4343 default:
4344 gentry = 0;
4345 break;
4346 }
4347
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004348 return gentry;
4349}
4350
4351/*
4352 * If we're seeing too many writes to a page, it may no longer be a page table,
4353 * or we may be forking, in which case it is better to unmap the page.
4354 */
Xiao Guangronga138fe72011-12-16 18:18:10 +08004355static bool detect_write_flooding(struct kvm_mmu_page *sp)
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004356{
Xiao Guangronga30f47c2011-09-22 16:58:36 +08004357 /*
4358 * Skip write-flooding detected for the sp whose level is 1, because
4359 * it can become unsync, then the guest page is not write-protected.
4360 */
Davidlohr Buesof71fa312012-04-18 12:24:29 +02004361 if (sp->role.level == PT_PAGE_TABLE_LEVEL)
Xiao Guangronga30f47c2011-09-22 16:58:36 +08004362 return false;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004363
Xiao Guangronge5691a82016-02-24 17:51:12 +08004364 atomic_inc(&sp->write_flooding_count);
4365 return atomic_read(&sp->write_flooding_count) >= 3;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004366}
4367
4368/*
4369 * Misaligned accesses are too much trouble to fix up; also, they usually
4370 * indicate a page is not used as a page table.
4371 */
4372static bool detect_write_misaligned(struct kvm_mmu_page *sp, gpa_t gpa,
4373 int bytes)
4374{
4375 unsigned offset, pte_size, misaligned;
4376
4377 pgprintk("misaligned: gpa %llx bytes %d role %x\n",
4378 gpa, bytes, sp->role.word);
4379
4380 offset = offset_in_page(gpa);
4381 pte_size = sp->role.cr4_pae ? 8 : 4;
Xiao Guangrong5d9ca302011-09-22 16:57:55 +08004382
4383 /*
4384 * Sometimes, the OS only writes the last one bytes to update status
4385 * bits, for example, in linux, andb instruction is used in clear_bit().
4386 */
4387 if (!(offset & (pte_size - 1)) && bytes == 1)
4388 return false;
4389
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004390 misaligned = (offset ^ (offset + bytes - 1)) & ~(pte_size - 1);
4391 misaligned |= bytes < 4;
4392
4393 return misaligned;
4394}
4395
4396static u64 *get_written_sptes(struct kvm_mmu_page *sp, gpa_t gpa, int *nspte)
4397{
4398 unsigned page_offset, quadrant;
4399 u64 *spte;
4400 int level;
4401
4402 page_offset = offset_in_page(gpa);
4403 level = sp->role.level;
4404 *nspte = 1;
4405 if (!sp->role.cr4_pae) {
4406 page_offset <<= 1; /* 32->64 */
4407 /*
4408 * A 32-bit pde maps 4MB while the shadow pdes map
4409 * only 2MB. So we need to double the offset again
4410 * and zap two pdes instead of one.
4411 */
4412 if (level == PT32_ROOT_LEVEL) {
4413 page_offset &= ~7; /* kill rounding error */
4414 page_offset <<= 1;
4415 *nspte = 2;
4416 }
4417 quadrant = page_offset >> PAGE_SHIFT;
4418 page_offset &= ~PAGE_MASK;
4419 if (quadrant != sp->role.quadrant)
4420 return NULL;
4421 }
4422
4423 spte = &sp->spt[page_offset / sizeof(*spte)];
4424 return spte;
4425}
4426
Xiao Guangrong13d268c2016-02-24 17:51:16 +08004427static void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
Jike Songd1263632016-10-25 15:50:42 +08004428 const u8 *new, int bytes,
4429 struct kvm_page_track_notifier_node *node)
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004430{
4431 gfn_t gfn = gpa >> PAGE_SHIFT;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004432 struct kvm_mmu_page *sp;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004433 LIST_HEAD(invalid_list);
4434 u64 entry, gentry, *spte;
4435 int npte;
Paolo Bonzinib8c67b72016-02-24 11:21:55 +01004436 bool remote_flush, local_flush;
Andrew Morton41412592015-05-27 11:53:06 +02004437 union kvm_mmu_page_role mask = { };
4438
4439 mask.cr0_wp = 1;
4440 mask.cr4_pae = 1;
4441 mask.nxe = 1;
4442 mask.smep_andnot_wp = 1;
4443 mask.smap_andnot_wp = 1;
Paolo Bonzini699023e2015-05-18 15:03:39 +02004444 mask.smm = 1;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004445
4446 /*
4447 * If we don't have indirect shadow pages, it means no page is
4448 * write-protected, so we can exit simply.
4449 */
4450 if (!ACCESS_ONCE(vcpu->kvm->arch.indirect_shadow_pages))
4451 return;
4452
Paolo Bonzinib8c67b72016-02-24 11:21:55 +01004453 remote_flush = local_flush = false;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004454
4455 pgprintk("%s: gpa %llx bytes %d\n", __func__, gpa, bytes);
4456
4457 gentry = mmu_pte_write_fetch_gpte(vcpu, &gpa, new, &bytes);
4458
4459 /*
4460 * No need to care whether allocation memory is successful
4461 * or not since pte prefetch is skiped if it does not have
4462 * enough objects in the cache.
4463 */
4464 mmu_topup_memory_caches(vcpu);
4465
4466 spin_lock(&vcpu->kvm->mmu_lock);
4467 ++vcpu->kvm->stat.mmu_pte_write;
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08004468 kvm_mmu_audit(vcpu, AUDIT_PRE_PTE_WRITE);
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004469
Sasha Levinb67bfe02013-02-27 17:06:00 -08004470 for_each_gfn_indirect_valid_sp(vcpu->kvm, sp, gfn) {
Xiao Guangronga30f47c2011-09-22 16:58:36 +08004471 if (detect_write_misaligned(sp, gpa, bytes) ||
Xiao Guangronga138fe72011-12-16 18:18:10 +08004472 detect_write_flooding(sp)) {
Paolo Bonzinib8c67b72016-02-24 11:21:55 +01004473 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, &invalid_list);
Avi Kivity4cee5762007-11-18 16:37:07 +02004474 ++vcpu->kvm->stat.mmu_flooded;
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08004475 continue;
4476 }
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004477
4478 spte = get_written_sptes(sp, gpa, &npte);
4479 if (!spte)
4480 continue;
4481
Xiao Guangrong0671a8e2010-06-04 21:56:59 +08004482 local_flush = true;
Avi Kivityac1b7142007-03-08 17:13:32 +02004483 while (npte--) {
Avi Kivity79539ce2007-11-21 02:06:21 +02004484 entry = *spte;
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08004485 mmu_page_zap_pte(vcpu->kvm, sp, spte);
Xiao Guangrongfa1de2b2010-07-16 11:19:51 +08004486 if (gentry &&
4487 !((sp->role.word ^ vcpu->arch.mmu.base_role.word)
Xiao Guangrongf759e2b2011-09-22 16:53:17 +08004488 & mask.word) && rmap_can_add(vcpu))
Xiao Guangrong7c562522011-03-28 10:29:27 +08004489 mmu_pte_write_new_pte(vcpu, sp, spte, &gentry);
Gleb Natapov9bb4f6b2013-01-30 16:45:01 +02004490 if (need_remote_flush(entry, *spte))
Xiao Guangrong0671a8e2010-06-04 21:56:59 +08004491 remote_flush = true;
Avi Kivityac1b7142007-03-08 17:13:32 +02004492 ++spte;
Avi Kivity9b7a0322007-01-05 16:36:45 -08004493 }
Avi Kivity9b7a0322007-01-05 16:36:45 -08004494 }
Paolo Bonzinib8c67b72016-02-24 11:21:55 +01004495 kvm_mmu_flush_or_zap(vcpu, &invalid_list, remote_flush, local_flush);
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08004496 kvm_mmu_audit(vcpu, AUDIT_POST_PTE_WRITE);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05004497 spin_unlock(&vcpu->kvm->mmu_lock);
Avi Kivityda4a00f2007-01-05 16:36:44 -08004498}
4499
Avi Kivitya4360362007-01-05 16:36:45 -08004500int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva)
4501{
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004502 gpa_t gpa;
4503 int r;
Avi Kivitya4360362007-01-05 16:36:45 -08004504
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02004505 if (vcpu->arch.mmu.direct_map)
Avi Kivity60f24782009-08-27 13:37:06 +03004506 return 0;
4507
Gleb Natapov1871c602010-02-10 14:21:32 +02004508 gpa = kvm_mmu_gva_to_gpa_read(vcpu, gva, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004509
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004510 r = kvm_mmu_unprotect_page(vcpu->kvm, gpa >> PAGE_SHIFT);
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004511
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004512 return r;
Avi Kivitya4360362007-01-05 16:36:45 -08004513}
Avi Kivity577bdc42008-07-19 08:57:05 +03004514EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page_virt);
Avi Kivitya4360362007-01-05 16:36:45 -08004515
Takuya Yoshikawa81f4f762013-03-21 19:34:27 +09004516static void make_mmu_pages_available(struct kvm_vcpu *vcpu)
Avi Kivityebeace82007-01-05 16:36:47 -08004517{
Xiao Guangrongd98ba052010-06-04 21:55:29 +08004518 LIST_HEAD(invalid_list);
Xiao Guangrong103ad252010-06-04 21:54:38 +08004519
Takuya Yoshikawa81f4f762013-03-21 19:34:27 +09004520 if (likely(kvm_mmu_available_pages(vcpu->kvm) >= KVM_MIN_FREE_MMU_PAGES))
4521 return;
4522
Takuya Yoshikawa5da59602013-03-06 16:06:58 +09004523 while (kvm_mmu_available_pages(vcpu->kvm) < KVM_REFILL_PAGES) {
4524 if (!prepare_zap_oldest_mmu_page(vcpu->kvm, &invalid_list))
4525 break;
Avi Kivityebeace82007-01-05 16:36:47 -08004526
Avi Kivity4cee5762007-11-18 16:37:07 +02004527 ++vcpu->kvm->stat.mmu_recycled;
Avi Kivityebeace82007-01-05 16:36:47 -08004528 }
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08004529 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
Avi Kivityebeace82007-01-05 16:36:47 -08004530}
Avi Kivityebeace82007-01-05 16:36:47 -08004531
Tom Lendacky14727752016-11-23 12:01:38 -05004532int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t cr2, u64 error_code,
Andre Przywaradc25e892010-12-21 11:12:07 +01004533 void *insn, int insn_len)
Avi Kivity30677142007-10-28 18:48:59 +02004534{
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004535 int r, emulation_type = EMULTYPE_RETRY;
Avi Kivity30677142007-10-28 18:48:59 +02004536 enum emulation_result er;
Takuya Yoshikawaded58742016-02-22 17:23:40 +09004537 bool direct = vcpu->arch.mmu.direct_map || mmu_is_nested(vcpu);
Avi Kivity30677142007-10-28 18:48:59 +02004538
Takuya Yoshikawae9ee9562016-02-22 17:23:41 +09004539 if (unlikely(error_code & PFERR_RSVD_MASK)) {
4540 r = handle_mmio_page_fault(vcpu, cr2, direct);
4541 if (r == RET_MMIO_PF_EMULATE) {
4542 emulation_type = 0;
4543 goto emulate;
4544 }
4545 if (r == RET_MMIO_PF_RETRY)
4546 return 1;
4547 if (r < 0)
4548 return r;
4549 }
Avi Kivity30677142007-10-28 18:48:59 +02004550
Tom Lendacky14727752016-11-23 12:01:38 -05004551 r = vcpu->arch.mmu.page_fault(vcpu, cr2, lower_32_bits(error_code),
4552 false);
Avi Kivity30677142007-10-28 18:48:59 +02004553 if (r < 0)
Takuya Yoshikawae9ee9562016-02-22 17:23:41 +09004554 return r;
4555 if (!r)
4556 return 1;
Avi Kivity30677142007-10-28 18:48:59 +02004557
Tom Lendacky14727752016-11-23 12:01:38 -05004558 /*
4559 * Before emulating the instruction, check if the error code
4560 * was due to a RO violation while translating the guest page.
4561 * This can occur when using nested virtualization with nested
4562 * paging in both guests. If true, we simply unprotect the page
4563 * and resume the guest.
4564 *
4565 * Note: AMD only (since it supports the PFERR_GUEST_PAGE_MASK used
4566 * in PFERR_NEXT_GUEST_PAGE)
4567 */
4568 if (error_code == PFERR_NESTED_GUEST_PAGE) {
4569 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(cr2));
4570 return 1;
4571 }
4572
Takuya Yoshikawaded58742016-02-22 17:23:40 +09004573 if (mmio_info_in_cache(vcpu, cr2, direct))
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004574 emulation_type = 0;
Takuya Yoshikawae9ee9562016-02-22 17:23:41 +09004575emulate:
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004576 er = x86_emulate_instruction(vcpu, cr2, emulation_type, insn, insn_len);
Avi Kivity30677142007-10-28 18:48:59 +02004577
4578 switch (er) {
4579 case EMULATE_DONE:
4580 return 1;
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02004581 case EMULATE_USER_EXIT:
Avi Kivity30677142007-10-28 18:48:59 +02004582 ++vcpu->stat.mmio_exits;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03004583 /* fall through */
Avi Kivity30677142007-10-28 18:48:59 +02004584 case EMULATE_FAIL:
Avi Kivity3f5d18a2009-06-11 15:43:28 +03004585 return 0;
Avi Kivity30677142007-10-28 18:48:59 +02004586 default:
4587 BUG();
4588 }
Avi Kivity30677142007-10-28 18:48:59 +02004589}
4590EXPORT_SYMBOL_GPL(kvm_mmu_page_fault);
4591
Marcelo Tosattia7052892008-09-23 13:18:35 -03004592void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
4593{
Marcelo Tosattia7052892008-09-23 13:18:35 -03004594 vcpu->arch.mmu.invlpg(vcpu, gva);
Liang Chen77c39132014-09-18 12:38:37 -04004595 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03004596 ++vcpu->stat.invlpg;
4597}
4598EXPORT_SYMBOL_GPL(kvm_mmu_invlpg);
4599
Joerg Roedel18552672008-02-07 13:47:41 +01004600void kvm_enable_tdp(void)
4601{
4602 tdp_enabled = true;
4603}
4604EXPORT_SYMBOL_GPL(kvm_enable_tdp);
4605
Joerg Roedel5f4cb662008-07-14 20:36:36 +02004606void kvm_disable_tdp(void)
4607{
4608 tdp_enabled = false;
4609}
4610EXPORT_SYMBOL_GPL(kvm_disable_tdp);
4611
Avi Kivity6aa8b732006-12-10 02:21:36 -08004612static void free_mmu_pages(struct kvm_vcpu *vcpu)
4613{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004614 free_page((unsigned long)vcpu->arch.mmu.pae_root);
Joerg Roedel81407ca2010-09-10 17:31:00 +02004615 if (vcpu->arch.mmu.lm_root != NULL)
4616 free_page((unsigned long)vcpu->arch.mmu.lm_root);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004617}
4618
4619static int alloc_mmu_pages(struct kvm_vcpu *vcpu)
4620{
Avi Kivity17ac10a2007-01-05 16:36:40 -08004621 struct page *page;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004622 int i;
4623
Avi Kivity17ac10a2007-01-05 16:36:40 -08004624 /*
4625 * When emulating 32-bit mode, cr3 is only 32 bits even on x86_64.
4626 * Therefore we need to allocate shadow page tables in the first
4627 * 4GB of memory, which happens to fit the DMA32 zone.
4628 */
4629 page = alloc_page(GFP_KERNEL | __GFP_DMA32);
4630 if (!page)
Wei Yongjund7fa6ab2010-01-22 16:55:05 +08004631 return -ENOMEM;
4632
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004633 vcpu->arch.mmu.pae_root = page_address(page);
Avi Kivity17ac10a2007-01-05 16:36:40 -08004634 for (i = 0; i < 4; ++i)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004635 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08004636
Avi Kivity6aa8b732006-12-10 02:21:36 -08004637 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004638}
4639
Ingo Molnar8018c272006-12-29 16:50:01 -08004640int kvm_mmu_create(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004641{
Xiao Guangronge459e322011-11-28 20:42:16 +08004642 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
4643 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
4644 vcpu->arch.mmu.translate_gpa = translate_gpa;
4645 vcpu->arch.nested_mmu.translate_gpa = translate_nested_gpa;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004646
Ingo Molnar8018c272006-12-29 16:50:01 -08004647 return alloc_mmu_pages(vcpu);
4648}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004649
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004650void kvm_mmu_setup(struct kvm_vcpu *vcpu)
Ingo Molnar8018c272006-12-29 16:50:01 -08004651{
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02004652 MMU_WARN_ON(VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity2c264952006-12-22 01:05:28 -08004653
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004654 init_kvm_mmu(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004655}
4656
Xiaoguang Chenb5f5fdc2016-10-09 15:41:44 +08004657static void kvm_mmu_invalidate_zap_pages_in_memslot(struct kvm *kvm,
Jike Songd1263632016-10-25 15:50:42 +08004658 struct kvm_memory_slot *slot,
4659 struct kvm_page_track_notifier_node *node)
Xiaoguang Chenb5f5fdc2016-10-09 15:41:44 +08004660{
4661 kvm_mmu_invalidate_zap_all_pages(kvm);
4662}
4663
Xiao Guangrong13d268c2016-02-24 17:51:16 +08004664void kvm_mmu_init_vm(struct kvm *kvm)
4665{
4666 struct kvm_page_track_notifier_node *node = &kvm->arch.mmu_sp_tracker;
4667
4668 node->track_write = kvm_mmu_pte_write;
Xiaoguang Chenb5f5fdc2016-10-09 15:41:44 +08004669 node->track_flush_slot = kvm_mmu_invalidate_zap_pages_in_memslot;
Xiao Guangrong13d268c2016-02-24 17:51:16 +08004670 kvm_page_track_register_notifier(kvm, node);
4671}
4672
4673void kvm_mmu_uninit_vm(struct kvm *kvm)
4674{
4675 struct kvm_page_track_notifier_node *node = &kvm->arch.mmu_sp_tracker;
4676
4677 kvm_page_track_unregister_notifier(kvm, node);
4678}
4679
Xiao Guangrong1bad2b22015-05-13 14:42:23 +08004680/* The return value indicates if tlb flush on all vcpus is needed. */
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09004681typedef bool (*slot_level_handler) (struct kvm *kvm, struct kvm_rmap_head *rmap_head);
Xiao Guangrong1bad2b22015-05-13 14:42:23 +08004682
4683/* The caller should hold mmu-lock before calling this function. */
4684static bool
4685slot_handle_level_range(struct kvm *kvm, struct kvm_memory_slot *memslot,
4686 slot_level_handler fn, int start_level, int end_level,
4687 gfn_t start_gfn, gfn_t end_gfn, bool lock_flush_tlb)
4688{
4689 struct slot_rmap_walk_iterator iterator;
4690 bool flush = false;
4691
4692 for_each_slot_rmap_range(memslot, start_level, end_level, start_gfn,
4693 end_gfn, &iterator) {
4694 if (iterator.rmap)
4695 flush |= fn(kvm, iterator.rmap);
4696
4697 if (need_resched() || spin_needbreak(&kvm->mmu_lock)) {
4698 if (flush && lock_flush_tlb) {
4699 kvm_flush_remote_tlbs(kvm);
4700 flush = false;
4701 }
4702 cond_resched_lock(&kvm->mmu_lock);
4703 }
4704 }
4705
4706 if (flush && lock_flush_tlb) {
4707 kvm_flush_remote_tlbs(kvm);
4708 flush = false;
4709 }
4710
4711 return flush;
4712}
4713
4714static bool
4715slot_handle_level(struct kvm *kvm, struct kvm_memory_slot *memslot,
4716 slot_level_handler fn, int start_level, int end_level,
4717 bool lock_flush_tlb)
4718{
4719 return slot_handle_level_range(kvm, memslot, fn, start_level,
4720 end_level, memslot->base_gfn,
4721 memslot->base_gfn + memslot->npages - 1,
4722 lock_flush_tlb);
4723}
4724
4725static bool
4726slot_handle_all_level(struct kvm *kvm, struct kvm_memory_slot *memslot,
4727 slot_level_handler fn, bool lock_flush_tlb)
4728{
4729 return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL,
4730 PT_MAX_HUGEPAGE_LEVEL, lock_flush_tlb);
4731}
4732
4733static bool
4734slot_handle_large_level(struct kvm *kvm, struct kvm_memory_slot *memslot,
4735 slot_level_handler fn, bool lock_flush_tlb)
4736{
4737 return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL + 1,
4738 PT_MAX_HUGEPAGE_LEVEL, lock_flush_tlb);
4739}
4740
4741static bool
4742slot_handle_leaf(struct kvm *kvm, struct kvm_memory_slot *memslot,
4743 slot_level_handler fn, bool lock_flush_tlb)
4744{
4745 return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL,
4746 PT_PAGE_TABLE_LEVEL, lock_flush_tlb);
4747}
4748
Xiao Guangrongefdfe532015-05-13 14:42:27 +08004749void kvm_zap_gfn_range(struct kvm *kvm, gfn_t gfn_start, gfn_t gfn_end)
4750{
4751 struct kvm_memslots *slots;
4752 struct kvm_memory_slot *memslot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02004753 int i;
Xiao Guangrongefdfe532015-05-13 14:42:27 +08004754
4755 spin_lock(&kvm->mmu_lock);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02004756 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
4757 slots = __kvm_memslots(kvm, i);
4758 kvm_for_each_memslot(memslot, slots) {
4759 gfn_t start, end;
Xiao Guangrongefdfe532015-05-13 14:42:27 +08004760
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02004761 start = max(gfn_start, memslot->base_gfn);
4762 end = min(gfn_end, memslot->base_gfn + memslot->npages);
4763 if (start >= end)
4764 continue;
Xiao Guangrongefdfe532015-05-13 14:42:27 +08004765
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02004766 slot_handle_level_range(kvm, memslot, kvm_zap_rmapp,
4767 PT_PAGE_TABLE_LEVEL, PT_MAX_HUGEPAGE_LEVEL,
4768 start, end - 1, true);
4769 }
Xiao Guangrongefdfe532015-05-13 14:42:27 +08004770 }
4771
4772 spin_unlock(&kvm->mmu_lock);
4773}
4774
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09004775static bool slot_rmap_write_protect(struct kvm *kvm,
4776 struct kvm_rmap_head *rmap_head)
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004777{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09004778 return __rmap_write_protect(kvm, rmap_head, false);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004779}
4780
Kai Huang1c91cad42015-01-28 10:54:26 +08004781void kvm_mmu_slot_remove_write_access(struct kvm *kvm,
4782 struct kvm_memory_slot *memslot)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004783{
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004784 bool flush;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004785
Takuya Yoshikawa9d1beef2013-01-08 19:46:48 +09004786 spin_lock(&kvm->mmu_lock);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004787 flush = slot_handle_all_level(kvm, memslot, slot_rmap_write_protect,
4788 false);
Takuya Yoshikawa9d1beef2013-01-08 19:46:48 +09004789 spin_unlock(&kvm->mmu_lock);
Xiao Guangrong198c74f2014-04-17 17:06:16 +08004790
4791 /*
4792 * kvm_mmu_slot_remove_write_access() and kvm_vm_ioctl_get_dirty_log()
4793 * which do tlb flush out of mmu-lock should be serialized by
4794 * kvm->slots_lock otherwise tlb flush would be missed.
4795 */
4796 lockdep_assert_held(&kvm->slots_lock);
4797
4798 /*
4799 * We can flush all the TLBs out of the mmu lock without TLB
4800 * corruption since we just change the spte from writable to
4801 * readonly so that we only need to care the case of changing
4802 * spte from present to present (changing the spte from present
4803 * to nonpresent will flush all the TLBs immediately), in other
4804 * words, the only case we care is mmu_spte_update() where we
4805 * haved checked SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE
4806 * instead of PT_WRITABLE_MASK, that means it does not depend
4807 * on PT_WRITABLE_MASK anymore.
4808 */
Kai Huangd91ffee2015-01-12 15:28:54 +08004809 if (flush)
4810 kvm_flush_remote_tlbs(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004811}
Avi Kivity37a7d8b2007-01-05 16:36:56 -08004812
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004813static bool kvm_mmu_zap_collapsible_spte(struct kvm *kvm,
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09004814 struct kvm_rmap_head *rmap_head)
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004815{
4816 u64 *sptep;
4817 struct rmap_iterator iter;
4818 int need_tlb_flush = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08004819 kvm_pfn_t pfn;
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004820 struct kvm_mmu_page *sp;
4821
Xiao Guangrong0d536792015-05-13 14:42:20 +08004822restart:
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09004823 for_each_rmap_spte(rmap_head, &iter, sptep) {
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004824 sp = page_header(__pa(sptep));
4825 pfn = spte_to_pfn(*sptep);
4826
4827 /*
Xiao Guangrongdecf6332015-04-14 12:04:10 +08004828 * We cannot do huge page mapping for indirect shadow pages,
4829 * which are found on the last rmap (level = 1) when not using
4830 * tdp; such shadow pages are synced with the page table in
4831 * the guest, and the guest page table is using 4K page size
4832 * mapping if the indirect sp has level = 1.
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004833 */
4834 if (sp->role.direct &&
4835 !kvm_is_reserved_pfn(pfn) &&
Andrea Arcangeli127393f2016-05-05 16:22:20 -07004836 PageTransCompoundMap(pfn_to_page(pfn))) {
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004837 drop_spte(kvm, sptep);
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004838 need_tlb_flush = 1;
Xiao Guangrong0d536792015-05-13 14:42:20 +08004839 goto restart;
4840 }
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004841 }
4842
4843 return need_tlb_flush;
4844}
4845
4846void kvm_mmu_zap_collapsible_sptes(struct kvm *kvm,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02004847 const struct kvm_memory_slot *memslot)
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004848{
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02004849 /* FIXME: const-ify all uses of struct kvm_memory_slot. */
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004850 spin_lock(&kvm->mmu_lock);
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02004851 slot_handle_leaf(kvm, (struct kvm_memory_slot *)memslot,
4852 kvm_mmu_zap_collapsible_spte, true);
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08004853 spin_unlock(&kvm->mmu_lock);
4854}
4855
Kai Huangf4b4b182015-01-28 10:54:24 +08004856void kvm_mmu_slot_leaf_clear_dirty(struct kvm *kvm,
4857 struct kvm_memory_slot *memslot)
4858{
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004859 bool flush;
Kai Huangf4b4b182015-01-28 10:54:24 +08004860
4861 spin_lock(&kvm->mmu_lock);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004862 flush = slot_handle_leaf(kvm, memslot, __rmap_clear_dirty, false);
Kai Huangf4b4b182015-01-28 10:54:24 +08004863 spin_unlock(&kvm->mmu_lock);
4864
4865 lockdep_assert_held(&kvm->slots_lock);
4866
4867 /*
4868 * It's also safe to flush TLBs out of mmu lock here as currently this
4869 * function is only used for dirty logging, in which case flushing TLB
4870 * out of mmu lock also guarantees no dirty pages will be lost in
4871 * dirty_bitmap.
4872 */
4873 if (flush)
4874 kvm_flush_remote_tlbs(kvm);
4875}
4876EXPORT_SYMBOL_GPL(kvm_mmu_slot_leaf_clear_dirty);
4877
4878void kvm_mmu_slot_largepage_remove_write_access(struct kvm *kvm,
4879 struct kvm_memory_slot *memslot)
4880{
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004881 bool flush;
Kai Huangf4b4b182015-01-28 10:54:24 +08004882
4883 spin_lock(&kvm->mmu_lock);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004884 flush = slot_handle_large_level(kvm, memslot, slot_rmap_write_protect,
4885 false);
Kai Huangf4b4b182015-01-28 10:54:24 +08004886 spin_unlock(&kvm->mmu_lock);
4887
4888 /* see kvm_mmu_slot_remove_write_access */
4889 lockdep_assert_held(&kvm->slots_lock);
4890
4891 if (flush)
4892 kvm_flush_remote_tlbs(kvm);
4893}
4894EXPORT_SYMBOL_GPL(kvm_mmu_slot_largepage_remove_write_access);
4895
4896void kvm_mmu_slot_set_dirty(struct kvm *kvm,
4897 struct kvm_memory_slot *memslot)
4898{
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004899 bool flush;
Kai Huangf4b4b182015-01-28 10:54:24 +08004900
4901 spin_lock(&kvm->mmu_lock);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004902 flush = slot_handle_all_level(kvm, memslot, __rmap_set_dirty, false);
Kai Huangf4b4b182015-01-28 10:54:24 +08004903 spin_unlock(&kvm->mmu_lock);
4904
4905 lockdep_assert_held(&kvm->slots_lock);
4906
4907 /* see kvm_mmu_slot_leaf_clear_dirty */
4908 if (flush)
4909 kvm_flush_remote_tlbs(kvm);
4910}
4911EXPORT_SYMBOL_GPL(kvm_mmu_slot_set_dirty);
4912
Xiao Guangronge7d11c72013-05-31 08:36:27 +08004913#define BATCH_ZAP_PAGES 10
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004914static void kvm_zap_obsolete_pages(struct kvm *kvm)
4915{
4916 struct kvm_mmu_page *sp, *node;
Xiao Guangronge7d11c72013-05-31 08:36:27 +08004917 int batch = 0;
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004918
4919restart:
4920 list_for_each_entry_safe_reverse(sp, node,
4921 &kvm->arch.active_mmu_pages, link) {
Xiao Guangronge7d11c72013-05-31 08:36:27 +08004922 int ret;
4923
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004924 /*
4925 * No obsolete page exists before new created page since
4926 * active_mmu_pages is the FIFO list.
4927 */
4928 if (!is_obsolete_sp(kvm, sp))
4929 break;
4930
4931 /*
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004932 * Since we are reversely walking the list and the invalid
4933 * list will be moved to the head, skip the invalid page
4934 * can help us to avoid the infinity list walking.
4935 */
4936 if (sp->role.invalid)
4937 continue;
4938
Xiao Guangrongf34d2512013-05-31 08:36:28 +08004939 /*
4940 * Need not flush tlb since we only zap the sp with invalid
4941 * generation number.
4942 */
Xiao Guangronge7d11c72013-05-31 08:36:27 +08004943 if (batch >= BATCH_ZAP_PAGES &&
Xiao Guangrongf34d2512013-05-31 08:36:28 +08004944 cond_resched_lock(&kvm->mmu_lock)) {
Xiao Guangronge7d11c72013-05-31 08:36:27 +08004945 batch = 0;
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004946 goto restart;
4947 }
4948
Xiao Guangrong365c8862013-05-31 08:36:29 +08004949 ret = kvm_mmu_prepare_zap_page(kvm, sp,
4950 &kvm->arch.zapped_obsolete_pages);
Xiao Guangronge7d11c72013-05-31 08:36:27 +08004951 batch += ret;
4952
4953 if (ret)
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004954 goto restart;
4955 }
4956
Xiao Guangrongf34d2512013-05-31 08:36:28 +08004957 /*
4958 * Should flush tlb before free page tables since lockless-walking
4959 * may use the pages.
4960 */
Xiao Guangrong365c8862013-05-31 08:36:29 +08004961 kvm_mmu_commit_zap_page(kvm, &kvm->arch.zapped_obsolete_pages);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004962}
4963
4964/*
4965 * Fast invalidate all shadow pages and use lock-break technique
4966 * to zap obsolete pages.
4967 *
4968 * It's required when memslot is being deleted or VM is being
4969 * destroyed, in these cases, we should ensure that KVM MMU does
4970 * not use any resource of the being-deleted slot or all slots
4971 * after calling the function.
4972 */
4973void kvm_mmu_invalidate_zap_all_pages(struct kvm *kvm)
4974{
4975 spin_lock(&kvm->mmu_lock);
Xiao Guangrong35006122013-05-31 08:36:25 +08004976 trace_kvm_mmu_invalidate_zap_all_pages(kvm);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004977 kvm->arch.mmu_valid_gen++;
4978
Xiao Guangrongf34d2512013-05-31 08:36:28 +08004979 /*
4980 * Notify all vcpus to reload its shadow page table
4981 * and flush TLB. Then all vcpus will switch to new
4982 * shadow page table with the new mmu_valid_gen.
4983 *
4984 * Note: we should do this under the protection of
4985 * mmu-lock, otherwise, vcpu would purge shadow page
4986 * but miss tlb flush.
4987 */
4988 kvm_reload_remote_mmus(kvm);
4989
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004990 kvm_zap_obsolete_pages(kvm);
4991 spin_unlock(&kvm->mmu_lock);
4992}
4993
Xiao Guangrong365c8862013-05-31 08:36:29 +08004994static bool kvm_has_zapped_obsolete_pages(struct kvm *kvm)
4995{
4996 return unlikely(!list_empty_careful(&kvm->arch.zapped_obsolete_pages));
4997}
4998
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004999void kvm_mmu_invalidate_mmio_sptes(struct kvm *kvm, struct kvm_memslots *slots)
Xiao Guangrongf8f55942013-06-07 16:51:26 +08005000{
5001 /*
5002 * The very rare case: if the generation-number is round,
5003 * zap all shadow pages.
Xiao Guangrongf8f55942013-06-07 16:51:26 +08005004 */
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005005 if (unlikely((slots->generation & MMIO_GEN_MASK) == 0)) {
Bandan Dasae0f5492016-11-15 01:36:18 -05005006 kvm_debug_ratelimited("kvm: zapping shadow pages for mmio generation wraparound\n");
Xiao Guangronga8eca9d2013-06-10 16:28:55 +08005007 kvm_mmu_invalidate_zap_all_pages(kvm);
Takuya Yoshikawa7a2e8aa2013-06-21 01:34:31 +09005008 }
Xiao Guangrongf8f55942013-06-07 16:51:26 +08005009}
5010
Dave Chinner70534a72013-08-28 10:18:14 +10005011static unsigned long
5012mmu_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
Izik Eidus3ee16c82008-03-30 15:17:21 +03005013{
5014 struct kvm *kvm;
Ying Han1495f232011-05-24 17:12:27 -07005015 int nr_to_scan = sc->nr_to_scan;
Dave Chinner70534a72013-08-28 10:18:14 +10005016 unsigned long freed = 0;
Izik Eidus3ee16c82008-03-30 15:17:21 +03005017
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005018 spin_lock(&kvm_lock);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005019
5020 list_for_each_entry(kvm, &vm_list, vm_list) {
Jan Kiszka3d56cbd2011-12-02 18:35:24 +01005021 int idx;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08005022 LIST_HEAD(invalid_list);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005023
Gleb Natapov19526392012-06-04 14:53:23 +03005024 /*
Takuya Yoshikawa35f2d162012-08-20 18:35:39 +09005025 * Never scan more than sc->nr_to_scan VM instances.
5026 * Will not hit this condition practically since we do not try
5027 * to shrink more than one VM and it is very unlikely to see
5028 * !n_used_mmu_pages so many times.
5029 */
5030 if (!nr_to_scan--)
5031 break;
5032 /*
Gleb Natapov19526392012-06-04 14:53:23 +03005033 * n_used_mmu_pages is accessed without holding kvm->mmu_lock
5034 * here. We may skip a VM instance errorneosly, but we do not
5035 * want to shrink a VM that only started to populate its MMU
5036 * anyway.
5037 */
Xiao Guangrong365c8862013-05-31 08:36:29 +08005038 if (!kvm->arch.n_used_mmu_pages &&
5039 !kvm_has_zapped_obsolete_pages(kvm))
Gleb Natapov19526392012-06-04 14:53:23 +03005040 continue;
Gleb Natapov19526392012-06-04 14:53:23 +03005041
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005042 idx = srcu_read_lock(&kvm->srcu);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005043 spin_lock(&kvm->mmu_lock);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005044
Xiao Guangrong365c8862013-05-31 08:36:29 +08005045 if (kvm_has_zapped_obsolete_pages(kvm)) {
5046 kvm_mmu_commit_zap_page(kvm,
5047 &kvm->arch.zapped_obsolete_pages);
5048 goto unlock;
5049 }
5050
Dave Chinner70534a72013-08-28 10:18:14 +10005051 if (prepare_zap_oldest_mmu_page(kvm, &invalid_list))
5052 freed++;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08005053 kvm_mmu_commit_zap_page(kvm, &invalid_list);
Gleb Natapov19526392012-06-04 14:53:23 +03005054
Xiao Guangrong365c8862013-05-31 08:36:29 +08005055unlock:
Izik Eidus3ee16c82008-03-30 15:17:21 +03005056 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005057 srcu_read_unlock(&kvm->srcu, idx);
Gleb Natapov19526392012-06-04 14:53:23 +03005058
Dave Chinner70534a72013-08-28 10:18:14 +10005059 /*
5060 * unfair on small ones
5061 * per-vm shrinkers cry out
5062 * sadness comes quickly
5063 */
Gleb Natapov19526392012-06-04 14:53:23 +03005064 list_move_tail(&kvm->vm_list, &vm_list);
5065 break;
Izik Eidus3ee16c82008-03-30 15:17:21 +03005066 }
Izik Eidus3ee16c82008-03-30 15:17:21 +03005067
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005068 spin_unlock(&kvm_lock);
Dave Chinner70534a72013-08-28 10:18:14 +10005069 return freed;
Dave Chinner70534a72013-08-28 10:18:14 +10005070}
5071
5072static unsigned long
5073mmu_shrink_count(struct shrinker *shrink, struct shrink_control *sc)
5074{
Dave Hansen45221ab2010-08-19 18:11:37 -07005075 return percpu_counter_read_positive(&kvm_total_used_mmu_pages);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005076}
5077
5078static struct shrinker mmu_shrinker = {
Dave Chinner70534a72013-08-28 10:18:14 +10005079 .count_objects = mmu_shrink_count,
5080 .scan_objects = mmu_shrink_scan,
Izik Eidus3ee16c82008-03-30 15:17:21 +03005081 .seeks = DEFAULT_SEEKS * 10,
5082};
5083
Ingo Molnar2ddfd202008-05-22 10:37:48 +02005084static void mmu_destroy_caches(void)
Avi Kivityb5a33a72007-04-15 16:31:09 +03005085{
Xiao Guangrong53c07b12011-05-15 23:26:20 +08005086 if (pte_list_desc_cache)
5087 kmem_cache_destroy(pte_list_desc_cache);
Avi Kivityd3d25b02007-05-30 12:34:53 +03005088 if (mmu_page_header_cache)
5089 kmem_cache_destroy(mmu_page_header_cache);
Avi Kivityb5a33a72007-04-15 16:31:09 +03005090}
5091
5092int kvm_mmu_module_init(void)
5093{
Xiao Guangrong53c07b12011-05-15 23:26:20 +08005094 pte_list_desc_cache = kmem_cache_create("pte_list_desc",
5095 sizeof(struct pte_list_desc),
Paul Mundt20c2df82007-07-20 10:11:58 +09005096 0, 0, NULL);
Xiao Guangrong53c07b12011-05-15 23:26:20 +08005097 if (!pte_list_desc_cache)
Avi Kivityb5a33a72007-04-15 16:31:09 +03005098 goto nomem;
5099
Avi Kivityd3d25b02007-05-30 12:34:53 +03005100 mmu_page_header_cache = kmem_cache_create("kvm_mmu_page_header",
5101 sizeof(struct kvm_mmu_page),
Paul Mundt20c2df82007-07-20 10:11:58 +09005102 0, 0, NULL);
Avi Kivityd3d25b02007-05-30 12:34:53 +03005103 if (!mmu_page_header_cache)
5104 goto nomem;
5105
Tejun Heo908c7f12014-09-08 09:51:29 +09005106 if (percpu_counter_init(&kvm_total_used_mmu_pages, 0, GFP_KERNEL))
Wei Yongjun45bf21a2010-08-23 16:13:15 +08005107 goto nomem;
5108
Izik Eidus3ee16c82008-03-30 15:17:21 +03005109 register_shrinker(&mmu_shrinker);
5110
Avi Kivityb5a33a72007-04-15 16:31:09 +03005111 return 0;
5112
5113nomem:
Izik Eidus3ee16c82008-03-30 15:17:21 +03005114 mmu_destroy_caches();
Avi Kivityb5a33a72007-04-15 16:31:09 +03005115 return -ENOMEM;
5116}
5117
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005118/*
5119 * Caculate mmu pages needed for kvm.
5120 */
5121unsigned int kvm_mmu_calculate_mmu_pages(struct kvm *kvm)
5122{
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005123 unsigned int nr_mmu_pages;
5124 unsigned int nr_pages = 0;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02005125 struct kvm_memslots *slots;
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +08005126 struct kvm_memory_slot *memslot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005127 int i;
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005128
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005129 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
5130 slots = __kvm_memslots(kvm, i);
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08005131
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005132 kvm_for_each_memslot(memslot, slots)
5133 nr_pages += memslot->npages;
5134 }
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005135
5136 nr_mmu_pages = nr_pages * KVM_PERMILLE_MMU_PAGES / 1000;
5137 nr_mmu_pages = max(nr_mmu_pages,
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005138 (unsigned int) KVM_MIN_ALLOC_MMU_PAGES);
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005139
5140 return nr_mmu_pages;
5141}
5142
Xiao Guangrongc42fffe2010-09-27 18:07:07 +08005143void kvm_mmu_destroy(struct kvm_vcpu *vcpu)
5144{
Paolo Bonzini95f93af2013-10-02 16:56:12 +02005145 kvm_mmu_unload(vcpu);
Xiao Guangrongc42fffe2010-09-27 18:07:07 +08005146 free_mmu_pages(vcpu);
5147 mmu_free_memory_caches(vcpu);
Xiao Guangrongb034cf02010-12-23 16:08:35 +08005148}
5149
Xiao Guangrongb034cf02010-12-23 16:08:35 +08005150void kvm_mmu_module_exit(void)
5151{
5152 mmu_destroy_caches();
5153 percpu_counter_destroy(&kvm_total_used_mmu_pages);
5154 unregister_shrinker(&mmu_shrinker);
Xiao Guangrongc42fffe2010-09-27 18:07:07 +08005155 mmu_audit_disable();
5156}