blob: 931467881da77f8ea025f2d74b5beaca3aac90a7 [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>
32#include <linux/module.h>
Izik Eidus448353c2007-11-26 14:08:14 +020033#include <linux/swap.h>
Marcelo Tosatti05da4552008-02-23 11:44:30 -030034#include <linux/hugetlb.h>
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -050035#include <linux/compiler.h>
Marcelo Tosattibc6678a2009-12-23 14:35:21 -020036#include <linux/srcu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Huang Yingbf998152010-05-31 14:28:19 +080038#include <linux/uaccess.h>
Avi Kivitye4956062007-06-28 14:15:57 -040039
40#include <asm/page.h>
41#include <asm/cmpxchg.h>
Avi Kivity4e542372007-11-21 14:08:40 +020042#include <asm/io.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020043#include <asm/vmx.h>
Avi Kivitye4956062007-06-28 14:15:57 -040044
Joerg Roedel18552672008-02-07 13:47:41 +010045/*
46 * When setting this variable to true it enables Two-Dimensional-Paging
47 * where the hardware walks 2 page tables:
48 * 1. the guest-virtual to guest-physical
49 * 2. while doing 1. it walks guest-physical to host-physical
50 * If the hardware supports that we don't need to do shadow paging.
51 */
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -050052bool tdp_enabled = false;
Joerg Roedel18552672008-02-07 13:47:41 +010053
Xiao Guangrong8b1fe172010-08-30 18:22:53 +080054enum {
55 AUDIT_PRE_PAGE_FAULT,
56 AUDIT_POST_PAGE_FAULT,
57 AUDIT_PRE_PTE_WRITE,
Xiao Guangrong69030742010-09-27 18:09:29 +080058 AUDIT_POST_PTE_WRITE,
59 AUDIT_PRE_SYNC,
60 AUDIT_POST_SYNC
Xiao Guangrong8b1fe172010-08-30 18:22:53 +080061};
62
Avi Kivity37a7d8b2007-01-05 16:36:56 -080063#undef MMU_DEBUG
64
Avi Kivity37a7d8b2007-01-05 16:36:56 -080065#ifdef MMU_DEBUG
66
67#define pgprintk(x...) do { if (dbg) printk(x); } while (0)
68#define rmap_printk(x...) do { if (dbg) printk(x); } while (0)
69
70#else
71
72#define pgprintk(x...) do { } while (0)
73#define rmap_printk(x...) do { } while (0)
74
75#endif
76
Xiao Guangrong8b1fe172010-08-30 18:22:53 +080077#ifdef MMU_DEBUG
Rusty Russell476bc002012-01-13 09:32:18 +103078static bool dbg = 0;
Avi Kivity6ada8cc2008-06-22 16:45:24 +030079module_param(dbg, bool, 0644);
Avi Kivity37a7d8b2007-01-05 16:36:56 -080080#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -080081
Yaozu Dongd6c69ee2007-04-25 14:17:25 +080082#ifndef MMU_DEBUG
83#define ASSERT(x) do { } while (0)
84#else
Avi Kivity6aa8b732006-12-10 02:21:36 -080085#define ASSERT(x) \
86 if (!(x)) { \
87 printk(KERN_WARNING "assertion failed %s:%d: %s\n", \
88 __FILE__, __LINE__, #x); \
89 }
Yaozu Dongd6c69ee2007-04-25 14:17:25 +080090#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -080091
Xiao Guangrong957ed9e2010-08-22 19:12:48 +080092#define PTE_PREFETCH_NUM 8
93
Xudong Hao00763e42012-06-07 18:26:07 +080094#define PT_FIRST_AVAIL_BITS_SHIFT 10
Avi Kivity6aa8b732006-12-10 02:21:36 -080095#define PT64_SECOND_AVAIL_BITS_SHIFT 52
96
Avi Kivity6aa8b732006-12-10 02:21:36 -080097#define PT64_LEVEL_BITS 9
98
99#define PT64_LEVEL_SHIFT(level) \
Mike Dayd77c26f2007-10-08 09:02:08 -0400100 (PAGE_SHIFT + (level - 1) * PT64_LEVEL_BITS)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800101
Avi Kivity6aa8b732006-12-10 02:21:36 -0800102#define PT64_INDEX(address, level)\
103 (((address) >> PT64_LEVEL_SHIFT(level)) & ((1 << PT64_LEVEL_BITS) - 1))
104
105
106#define PT32_LEVEL_BITS 10
107
108#define PT32_LEVEL_SHIFT(level) \
Mike Dayd77c26f2007-10-08 09:02:08 -0400109 (PAGE_SHIFT + (level - 1) * PT32_LEVEL_BITS)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800110
Joerg Roedele04da982009-07-27 16:30:45 +0200111#define PT32_LVL_OFFSET_MASK(level) \
112 (PT32_BASE_ADDR_MASK & ((1ULL << (PAGE_SHIFT + (((level) - 1) \
113 * PT32_LEVEL_BITS))) - 1))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800114
115#define PT32_INDEX(address, level)\
116 (((address) >> PT32_LEVEL_SHIFT(level)) & ((1 << PT32_LEVEL_BITS) - 1))
117
118
Avi Kivity27aba762007-03-09 13:04:31 +0200119#define PT64_BASE_ADDR_MASK (((1ULL << 52) - 1) & ~(u64)(PAGE_SIZE-1))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800120#define PT64_DIR_BASE_ADDR_MASK \
121 (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + PT64_LEVEL_BITS)) - 1))
Joerg Roedele04da982009-07-27 16:30:45 +0200122#define PT64_LVL_ADDR_MASK(level) \
123 (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + (((level) - 1) \
124 * PT64_LEVEL_BITS))) - 1))
125#define PT64_LVL_OFFSET_MASK(level) \
126 (PT64_BASE_ADDR_MASK & ((1ULL << (PAGE_SHIFT + (((level) - 1) \
127 * PT64_LEVEL_BITS))) - 1))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800128
129#define PT32_BASE_ADDR_MASK PAGE_MASK
130#define PT32_DIR_BASE_ADDR_MASK \
131 (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + PT32_LEVEL_BITS)) - 1))
Joerg Roedele04da982009-07-27 16:30:45 +0200132#define PT32_LVL_ADDR_MASK(level) \
133 (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + (((level) - 1) \
134 * PT32_LEVEL_BITS))) - 1))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800135
Gleb Natapov53166222013-08-05 11:07:14 +0300136#define PT64_PERM_MASK (PT_PRESENT_MASK | PT_WRITABLE_MASK | shadow_user_mask \
137 | shadow_x_mask | shadow_nx_mask)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800138
Avi Kivityfe135d22007-12-09 16:15:46 +0200139#define ACC_EXEC_MASK 1
140#define ACC_WRITE_MASK PT_WRITABLE_MASK
141#define ACC_USER_MASK PT_USER_MASK
142#define ACC_ALL (ACC_EXEC_MASK | ACC_WRITE_MASK | ACC_USER_MASK)
143
Avi Kivity90bb6fc2009-12-31 12:10:16 +0200144#include <trace/events/kvm.h>
145
Avi Kivity07420172009-07-06 12:21:32 +0300146#define CREATE_TRACE_POINTS
147#include "mmutrace.h"
148
Xiao Guangrong49fde342012-06-20 15:58:58 +0800149#define SPTE_HOST_WRITEABLE (1ULL << PT_FIRST_AVAIL_BITS_SHIFT)
150#define SPTE_MMU_WRITEABLE (1ULL << (PT_FIRST_AVAIL_BITS_SHIFT + 1))
Izik Eidus14032832009-09-23 21:47:17 +0300151
Avi Kivity135f8c22008-08-21 17:49:56 +0300152#define SHADOW_PT_INDEX(addr, level) PT64_INDEX(addr, level)
153
Takuya Yoshikawa220f7732012-03-21 23:49:39 +0900154/* make pte_list_desc fit well in cache line */
155#define PTE_LIST_EXT 3
156
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800157struct pte_list_desc {
158 u64 *sptes[PTE_LIST_EXT];
159 struct pte_list_desc *more;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800160};
161
Avi Kivity2d111232008-12-25 14:39:47 +0200162struct kvm_shadow_walk_iterator {
163 u64 addr;
164 hpa_t shadow_addr;
Avi Kivity2d111232008-12-25 14:39:47 +0200165 u64 *sptep;
Xiao Guangrongdd3bfd52011-07-12 03:32:54 +0800166 int level;
Avi Kivity2d111232008-12-25 14:39:47 +0200167 unsigned index;
168};
169
170#define for_each_shadow_entry(_vcpu, _addr, _walker) \
171 for (shadow_walk_init(&(_walker), _vcpu, _addr); \
172 shadow_walk_okay(&(_walker)); \
173 shadow_walk_next(&(_walker)))
174
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800175#define for_each_shadow_entry_lockless(_vcpu, _addr, _walker, spte) \
176 for (shadow_walk_init(&(_walker), _vcpu, _addr); \
177 shadow_walk_okay(&(_walker)) && \
178 ({ spte = mmu_spte_get_lockless(_walker.sptep); 1; }); \
179 __shadow_walk_next(&(_walker), spte))
180
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800181static struct kmem_cache *pte_list_desc_cache;
Avi Kivityd3d25b02007-05-30 12:34:53 +0300182static struct kmem_cache *mmu_page_header_cache;
Dave Hansen45221ab2010-08-19 18:11:37 -0700183static struct percpu_counter kvm_total_used_mmu_pages;
Avi Kivityb5a33a72007-04-15 16:31:09 +0300184
Sheng Yang7b523452008-04-25 21:13:50 +0800185static u64 __read_mostly shadow_nx_mask;
186static u64 __read_mostly shadow_x_mask; /* mutual exclusive with nx_mask */
187static u64 __read_mostly shadow_user_mask;
188static u64 __read_mostly shadow_accessed_mask;
189static u64 __read_mostly shadow_dirty_mask;
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800190static u64 __read_mostly shadow_mmio_mask;
191
192static void mmu_spte_set(u64 *sptep, u64 spte);
Avi Kivitye6765052012-07-08 17:16:30 +0300193static void mmu_free_roots(struct kvm_vcpu *vcpu);
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800194
195void kvm_mmu_set_mmio_spte_mask(u64 mmio_mask)
196{
197 shadow_mmio_mask = mmio_mask;
198}
199EXPORT_SYMBOL_GPL(kvm_mmu_set_mmio_spte_mask);
200
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800201/*
202 * spte bits of bit 3 ~ bit 11 are used as low 9 bits of generation number,
203 * the bits of bits 52 ~ bit 61 are used as high 10 bits of generation
204 * number.
205 */
206#define MMIO_SPTE_GEN_LOW_SHIFT 3
207#define MMIO_SPTE_GEN_HIGH_SHIFT 52
208
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800209#define MMIO_GEN_SHIFT 19
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800210#define MMIO_GEN_LOW_SHIFT 9
211#define MMIO_GEN_LOW_MASK ((1 << MMIO_GEN_LOW_SHIFT) - 1)
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800212#define MMIO_GEN_MASK ((1 << MMIO_GEN_SHIFT) - 1)
213#define MMIO_MAX_GEN ((1 << MMIO_GEN_SHIFT) - 1)
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800214
215static u64 generation_mmio_spte_mask(unsigned int gen)
216{
217 u64 mask;
218
219 WARN_ON(gen > MMIO_MAX_GEN);
220
221 mask = (gen & MMIO_GEN_LOW_MASK) << MMIO_SPTE_GEN_LOW_SHIFT;
222 mask |= ((u64)gen >> MMIO_GEN_LOW_SHIFT) << MMIO_SPTE_GEN_HIGH_SHIFT;
223 return mask;
224}
225
226static unsigned int get_mmio_spte_generation(u64 spte)
227{
228 unsigned int gen;
229
230 spte &= ~shadow_mmio_mask;
231
232 gen = (spte >> MMIO_SPTE_GEN_LOW_SHIFT) & MMIO_GEN_LOW_MASK;
233 gen |= (spte >> MMIO_SPTE_GEN_HIGH_SHIFT) << MMIO_GEN_LOW_SHIFT;
234 return gen;
235}
236
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800237static unsigned int kvm_current_mmio_generation(struct kvm *kvm)
238{
Xiao Guangrong69c9ea92013-06-07 16:51:28 +0800239 /*
240 * Init kvm generation close to MMIO_MAX_GEN to easily test the
241 * code of handling generation number wrap-around.
242 */
243 return (kvm_memslots(kvm)->generation +
244 MMIO_MAX_GEN - 150) & MMIO_GEN_MASK;
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800245}
246
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800247static void mark_mmio_spte(struct kvm *kvm, u64 *sptep, u64 gfn,
248 unsigned access)
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800249{
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800250 unsigned int gen = kvm_current_mmio_generation(kvm);
251 u64 mask = generation_mmio_spte_mask(gen);
Takuya Yoshikawa95b04302013-03-12 17:44:40 +0900252
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800253 access &= ACC_WRITE_MASK | ACC_USER_MASK;
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800254 mask |= shadow_mmio_mask | access | gfn << PAGE_SHIFT;
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800255
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800256 trace_mark_mmio_spte(sptep, gfn, access, gen);
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800257 mmu_spte_set(sptep, mask);
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800258}
259
260static bool is_mmio_spte(u64 spte)
261{
262 return (spte & shadow_mmio_mask) == shadow_mmio_mask;
263}
264
265static gfn_t get_mmio_spte_gfn(u64 spte)
266{
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800267 u64 mask = generation_mmio_spte_mask(MMIO_MAX_GEN) | shadow_mmio_mask;
268 return (spte & ~mask) >> PAGE_SHIFT;
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800269}
270
271static unsigned get_mmio_spte_access(u64 spte)
272{
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800273 u64 mask = generation_mmio_spte_mask(MMIO_MAX_GEN) | shadow_mmio_mask;
274 return (spte & ~mask) & ~PAGE_MASK;
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800275}
276
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800277static bool set_mmio_spte(struct kvm *kvm, u64 *sptep, gfn_t gfn,
278 pfn_t pfn, unsigned access)
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800279{
280 if (unlikely(is_noslot_pfn(pfn))) {
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800281 mark_mmio_spte(kvm, sptep, gfn, access);
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800282 return true;
283 }
284
285 return false;
286}
Avi Kivityc7addb92007-09-16 18:58:32 +0200287
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800288static bool check_mmio_spte(struct kvm *kvm, u64 spte)
289{
Xiao Guangrong089504c2013-06-07 16:51:27 +0800290 unsigned int kvm_gen, spte_gen;
291
292 kvm_gen = kvm_current_mmio_generation(kvm);
293 spte_gen = get_mmio_spte_generation(spte);
294
295 trace_check_mmio_spte(spte, kvm_gen, spte_gen);
296 return likely(kvm_gen == spte_gen);
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800297}
298
Dong, Eddie82725b22009-03-30 16:21:08 +0800299static inline u64 rsvd_bits(int s, int e)
300{
301 return ((1ULL << (e - s + 1)) - 1) << s;
302}
303
Sheng Yang7b523452008-04-25 21:13:50 +0800304void kvm_mmu_set_mask_ptes(u64 user_mask, u64 accessed_mask,
Sheng Yang4b12f0d2009-04-27 20:35:42 +0800305 u64 dirty_mask, u64 nx_mask, u64 x_mask)
Sheng Yang7b523452008-04-25 21:13:50 +0800306{
307 shadow_user_mask = user_mask;
308 shadow_accessed_mask = accessed_mask;
309 shadow_dirty_mask = dirty_mask;
310 shadow_nx_mask = nx_mask;
311 shadow_x_mask = x_mask;
312}
313EXPORT_SYMBOL_GPL(kvm_mmu_set_mask_ptes);
314
Avi Kivity6aa8b732006-12-10 02:21:36 -0800315static int is_cpuid_PSE36(void)
316{
317 return 1;
318}
319
Avi Kivity73b10872007-01-26 00:56:41 -0800320static int is_nx(struct kvm_vcpu *vcpu)
321{
Avi Kivityf6801df2010-01-21 15:31:50 +0200322 return vcpu->arch.efer & EFER_NX;
Avi Kivity73b10872007-01-26 00:56:41 -0800323}
324
Avi Kivityc7addb92007-09-16 18:58:32 +0200325static int is_shadow_present_pte(u64 pte)
326{
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800327 return pte & PT_PRESENT_MASK && !is_mmio_spte(pte);
Avi Kivityc7addb92007-09-16 18:58:32 +0200328}
329
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300330static int is_large_pte(u64 pte)
331{
332 return pte & PT_PAGE_SIZE_MASK;
333}
334
Avi Kivity43a37952009-06-10 14:12:05 +0300335static int is_rmap_spte(u64 pte)
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800336{
Avi Kivity4b1a80f2008-03-23 12:18:19 +0200337 return is_shadow_present_pte(pte);
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800338}
339
Marcelo Tosatti776e6632009-06-10 12:27:03 -0300340static int is_last_spte(u64 pte, int level)
341{
342 if (level == PT_PAGE_TABLE_LEVEL)
343 return 1;
Joerg Roedel852e3c12009-07-27 16:30:44 +0200344 if (is_large_pte(pte))
Marcelo Tosatti776e6632009-06-10 12:27:03 -0300345 return 1;
346 return 0;
347}
348
Anthony Liguori35149e22008-04-02 14:46:56 -0500349static pfn_t spte_to_pfn(u64 pte)
Avi Kivity0b49ea82008-03-23 15:06:23 +0200350{
Anthony Liguori35149e22008-04-02 14:46:56 -0500351 return (pte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT;
Avi Kivity0b49ea82008-03-23 15:06:23 +0200352}
353
Avi Kivityda928522007-11-21 13:54:47 +0200354static gfn_t pse36_gfn_delta(u32 gpte)
355{
356 int shift = 32 - PT32_DIR_PSE36_SHIFT - PAGE_SHIFT;
357
358 return (gpte & PT32_DIR_PSE36_MASK) << shift;
359}
360
Xiao Guangrong603e0652011-07-12 03:31:28 +0800361#ifdef CONFIG_X86_64
Avi Kivityd555c332009-06-10 14:24:23 +0300362static void __set_spte(u64 *sptep, u64 spte)
Avi Kivitye663ee62007-05-31 15:46:04 +0300363{
Xiao Guangrong603e0652011-07-12 03:31:28 +0800364 *sptep = spte;
Avi Kivitye663ee62007-05-31 15:46:04 +0300365}
366
Xiao Guangrong603e0652011-07-12 03:31:28 +0800367static void __update_clear_spte_fast(u64 *sptep, u64 spte)
Avi Kivitya9221dd2010-06-06 14:48:06 +0300368{
Xiao Guangrong603e0652011-07-12 03:31:28 +0800369 *sptep = spte;
Avi Kivitya9221dd2010-06-06 14:48:06 +0300370}
371
Xiao Guangrong603e0652011-07-12 03:31:28 +0800372static u64 __update_clear_spte_slow(u64 *sptep, u64 spte)
373{
374 return xchg(sptep, spte);
375}
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800376
377static u64 __get_spte_lockless(u64 *sptep)
378{
379 return ACCESS_ONCE(*sptep);
380}
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800381
382static bool __check_direct_spte_mmio_pf(u64 spte)
383{
384 /* It is valid if the spte is zapped. */
385 return spte == 0ull;
386}
Xiao Guangrong603e0652011-07-12 03:31:28 +0800387#else
388union split_spte {
389 struct {
390 u32 spte_low;
391 u32 spte_high;
392 };
393 u64 spte;
394};
395
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800396static void count_spte_clear(u64 *sptep, u64 spte)
397{
398 struct kvm_mmu_page *sp = page_header(__pa(sptep));
399
400 if (is_shadow_present_pte(spte))
401 return;
402
403 /* Ensure the spte is completely set before we increase the count */
404 smp_wmb();
405 sp->clear_spte_count++;
406}
407
Xiao Guangrong603e0652011-07-12 03:31:28 +0800408static void __set_spte(u64 *sptep, u64 spte)
409{
410 union split_spte *ssptep, sspte;
411
412 ssptep = (union split_spte *)sptep;
413 sspte = (union split_spte)spte;
414
415 ssptep->spte_high = sspte.spte_high;
416
417 /*
418 * If we map the spte from nonpresent to present, We should store
419 * the high bits firstly, then set present bit, so cpu can not
420 * fetch this spte while we are setting the spte.
421 */
422 smp_wmb();
423
424 ssptep->spte_low = sspte.spte_low;
425}
426
427static void __update_clear_spte_fast(u64 *sptep, u64 spte)
428{
429 union split_spte *ssptep, sspte;
430
431 ssptep = (union split_spte *)sptep;
432 sspte = (union split_spte)spte;
433
434 ssptep->spte_low = sspte.spte_low;
435
436 /*
437 * If we map the spte from present to nonpresent, we should clear
438 * present bit firstly to avoid vcpu fetch the old high bits.
439 */
440 smp_wmb();
441
442 ssptep->spte_high = sspte.spte_high;
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800443 count_spte_clear(sptep, spte);
Xiao Guangrong603e0652011-07-12 03:31:28 +0800444}
445
446static u64 __update_clear_spte_slow(u64 *sptep, u64 spte)
447{
448 union split_spte *ssptep, sspte, orig;
449
450 ssptep = (union split_spte *)sptep;
451 sspte = (union split_spte)spte;
452
453 /* xchg acts as a barrier before the setting of the high bits */
454 orig.spte_low = xchg(&ssptep->spte_low, sspte.spte_low);
Zhao Jin41bc3182011-09-19 12:19:51 +0800455 orig.spte_high = ssptep->spte_high;
456 ssptep->spte_high = sspte.spte_high;
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800457 count_spte_clear(sptep, spte);
Xiao Guangrong603e0652011-07-12 03:31:28 +0800458
459 return orig.spte;
460}
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800461
462/*
463 * The idea using the light way get the spte on x86_32 guest is from
464 * gup_get_pte(arch/x86/mm/gup.c).
Xiao Guangrongaccaefe2013-06-19 17:09:20 +0800465 *
466 * An spte tlb flush may be pending, because kvm_set_pte_rmapp
467 * coalesces them and we are running out of the MMU lock. Therefore
468 * we need to protect against in-progress updates of the spte.
469 *
470 * Reading the spte while an update is in progress may get the old value
471 * for the high part of the spte. The race is fine for a present->non-present
472 * change (because the high part of the spte is ignored for non-present spte),
473 * but for a present->present change we must reread the spte.
474 *
475 * All such changes are done in two steps (present->non-present and
476 * non-present->present), hence it is enough to count the number of
477 * present->non-present updates: if it changed while reading the spte,
478 * we might have hit the race. This is done using clear_spte_count.
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800479 */
480static u64 __get_spte_lockless(u64 *sptep)
481{
482 struct kvm_mmu_page *sp = page_header(__pa(sptep));
483 union split_spte spte, *orig = (union split_spte *)sptep;
484 int count;
485
486retry:
487 count = sp->clear_spte_count;
488 smp_rmb();
489
490 spte.spte_low = orig->spte_low;
491 smp_rmb();
492
493 spte.spte_high = orig->spte_high;
494 smp_rmb();
495
496 if (unlikely(spte.spte_low != orig->spte_low ||
497 count != sp->clear_spte_count))
498 goto retry;
499
500 return spte.spte;
501}
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800502
503static bool __check_direct_spte_mmio_pf(u64 spte)
504{
505 union split_spte sspte = (union split_spte)spte;
506 u32 high_mmio_mask = shadow_mmio_mask >> 32;
507
508 /* It is valid if the spte is zapped. */
509 if (spte == 0ull)
510 return true;
511
512 /* It is valid if the spte is being zapped. */
513 if (sspte.spte_low == 0ull &&
514 (sspte.spte_high & high_mmio_mask) == high_mmio_mask)
515 return true;
516
517 return false;
518}
Xiao Guangrong603e0652011-07-12 03:31:28 +0800519#endif
520
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800521static bool spte_is_locklessly_modifiable(u64 spte)
522{
Gleb Natapovfeb3eb72013-01-30 16:45:00 +0200523 return (spte & (SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE)) ==
524 (SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE);
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800525}
526
Xiao Guangrong8672b722010-08-02 16:14:04 +0800527static bool spte_has_volatile_bits(u64 spte)
528{
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800529 /*
530 * Always atomicly update spte if it can be updated
531 * out of mmu-lock, it can ensure dirty bit is not lost,
532 * also, it can help us to get a stable is_writable_pte()
533 * to ensure tlb flush is not missed.
534 */
535 if (spte_is_locklessly_modifiable(spte))
536 return true;
537
Xiao Guangrong8672b722010-08-02 16:14:04 +0800538 if (!shadow_accessed_mask)
539 return false;
540
541 if (!is_shadow_present_pte(spte))
542 return false;
543
Xiao Guangrong41327792010-08-02 16:15:08 +0800544 if ((spte & shadow_accessed_mask) &&
545 (!is_writable_pte(spte) || (spte & shadow_dirty_mask)))
Xiao Guangrong8672b722010-08-02 16:14:04 +0800546 return false;
547
548 return true;
549}
550
Xiao Guangrong41327792010-08-02 16:15:08 +0800551static bool spte_is_bit_cleared(u64 old_spte, u64 new_spte, u64 bit_mask)
552{
553 return (old_spte & bit_mask) && !(new_spte & bit_mask);
554}
555
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800556/* Rules for using mmu_spte_set:
557 * Set the sptep from nonpresent to present.
558 * Note: the sptep being assigned *must* be either not present
559 * or in a state where the hardware will not attempt to update
560 * the spte.
561 */
562static void mmu_spte_set(u64 *sptep, u64 new_spte)
563{
564 WARN_ON(is_shadow_present_pte(*sptep));
565 __set_spte(sptep, new_spte);
566}
567
568/* Rules for using mmu_spte_update:
569 * Update the state bits, it means the mapped pfn is not changged.
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800570 *
571 * Whenever we overwrite a writable spte with a read-only one we
572 * should flush remote TLBs. Otherwise rmap_write_protect
573 * will find a read-only spte, even though the writable spte
574 * might be cached on a CPU's TLB, the return value indicates this
575 * case.
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800576 */
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800577static bool mmu_spte_update(u64 *sptep, u64 new_spte)
Avi Kivityb79b93f2010-06-06 15:46:44 +0300578{
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800579 u64 old_spte = *sptep;
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800580 bool ret = false;
Avi Kivityb79b93f2010-06-06 15:46:44 +0300581
Xiao Guangrong41327792010-08-02 16:15:08 +0800582 WARN_ON(!is_rmap_spte(new_spte));
583
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800584 if (!is_shadow_present_pte(old_spte)) {
585 mmu_spte_set(sptep, new_spte);
586 return ret;
587 }
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800588
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800589 if (!spte_has_volatile_bits(old_spte))
Xiao Guangrong603e0652011-07-12 03:31:28 +0800590 __update_clear_spte_fast(sptep, new_spte);
Xiao Guangrong41327792010-08-02 16:15:08 +0800591 else
Xiao Guangrong603e0652011-07-12 03:31:28 +0800592 old_spte = __update_clear_spte_slow(sptep, new_spte);
Xiao Guangrong41327792010-08-02 16:15:08 +0800593
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800594 /*
595 * For the spte updated out of mmu-lock is safe, since
596 * we always atomicly update it, see the comments in
597 * spte_has_volatile_bits().
598 */
Xiao Guangrong7f31c952014-04-17 17:06:15 +0800599 if (spte_is_locklessly_modifiable(old_spte) &&
600 !is_writable_pte(new_spte))
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800601 ret = true;
602
Xiao Guangrong41327792010-08-02 16:15:08 +0800603 if (!shadow_accessed_mask)
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800604 return ret;
Xiao Guangrong41327792010-08-02 16:15:08 +0800605
606 if (spte_is_bit_cleared(old_spte, new_spte, shadow_accessed_mask))
607 kvm_set_pfn_accessed(spte_to_pfn(old_spte));
608 if (spte_is_bit_cleared(old_spte, new_spte, shadow_dirty_mask))
609 kvm_set_pfn_dirty(spte_to_pfn(old_spte));
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800610
611 return ret;
Avi Kivityb79b93f2010-06-06 15:46:44 +0300612}
613
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800614/*
615 * Rules for using mmu_spte_clear_track_bits:
616 * It sets the sptep from present to nonpresent, and track the
617 * state bits, it is used to clear the last level sptep.
618 */
619static int mmu_spte_clear_track_bits(u64 *sptep)
620{
621 pfn_t pfn;
622 u64 old_spte = *sptep;
623
624 if (!spte_has_volatile_bits(old_spte))
Xiao Guangrong603e0652011-07-12 03:31:28 +0800625 __update_clear_spte_fast(sptep, 0ull);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800626 else
Xiao Guangrong603e0652011-07-12 03:31:28 +0800627 old_spte = __update_clear_spte_slow(sptep, 0ull);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800628
629 if (!is_rmap_spte(old_spte))
630 return 0;
631
632 pfn = spte_to_pfn(old_spte);
Xiao Guangrong86fde742012-07-17 21:52:52 +0800633
634 /*
635 * KVM does not hold the refcount of the page used by
636 * kvm mmu, before reclaiming the page, we should
637 * unmap it from mmu first.
638 */
639 WARN_ON(!kvm_is_mmio_pfn(pfn) && !page_count(pfn_to_page(pfn)));
640
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800641 if (!shadow_accessed_mask || old_spte & shadow_accessed_mask)
642 kvm_set_pfn_accessed(pfn);
643 if (!shadow_dirty_mask || (old_spte & shadow_dirty_mask))
644 kvm_set_pfn_dirty(pfn);
645 return 1;
646}
647
648/*
649 * Rules for using mmu_spte_clear_no_track:
650 * Directly clear spte without caring the state bits of sptep,
651 * it is used to set the upper level spte.
652 */
653static void mmu_spte_clear_no_track(u64 *sptep)
654{
Xiao Guangrong603e0652011-07-12 03:31:28 +0800655 __update_clear_spte_fast(sptep, 0ull);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800656}
657
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800658static u64 mmu_spte_get_lockless(u64 *sptep)
659{
660 return __get_spte_lockless(sptep);
661}
662
663static void walk_shadow_page_lockless_begin(struct kvm_vcpu *vcpu)
664{
Avi Kivityc1427862012-05-14 15:44:06 +0300665 /*
666 * Prevent page table teardown by making any free-er wait during
667 * kvm_flush_remote_tlbs() IPI to all active vcpus.
668 */
669 local_irq_disable();
670 vcpu->mode = READING_SHADOW_PAGE_TABLES;
671 /*
672 * Make sure a following spte read is not reordered ahead of the write
673 * to vcpu->mode.
674 */
675 smp_mb();
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800676}
677
678static void walk_shadow_page_lockless_end(struct kvm_vcpu *vcpu)
679{
Avi Kivityc1427862012-05-14 15:44:06 +0300680 /*
681 * Make sure the write to vcpu->mode is not reordered in front of
682 * reads to sptes. If it does, kvm_commit_zap_page() can see us
683 * OUTSIDE_GUEST_MODE and proceed to free the shadow page table.
684 */
685 smp_mb();
686 vcpu->mode = OUTSIDE_GUEST_MODE;
687 local_irq_enable();
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800688}
689
Avi Kivitye2dec932007-01-05 16:36:54 -0800690static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300691 struct kmem_cache *base_cache, int min)
Avi Kivity714b93d2007-01-05 16:36:53 -0800692{
693 void *obj;
694
695 if (cache->nobjs >= min)
Avi Kivitye2dec932007-01-05 16:36:54 -0800696 return 0;
Avi Kivity714b93d2007-01-05 16:36:53 -0800697 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
Avi Kivity2e3e5882007-09-10 11:28:17 +0300698 obj = kmem_cache_zalloc(base_cache, GFP_KERNEL);
Avi Kivity714b93d2007-01-05 16:36:53 -0800699 if (!obj)
Avi Kivitye2dec932007-01-05 16:36:54 -0800700 return -ENOMEM;
Avi Kivity714b93d2007-01-05 16:36:53 -0800701 cache->objects[cache->nobjs++] = obj;
702 }
Avi Kivitye2dec932007-01-05 16:36:54 -0800703 return 0;
Avi Kivity714b93d2007-01-05 16:36:53 -0800704}
705
Xiao Guangrongf759e2b2011-09-22 16:53:17 +0800706static int mmu_memory_cache_free_objects(struct kvm_mmu_memory_cache *cache)
707{
708 return cache->nobjs;
709}
710
Xiao Guangronge8ad9a72010-05-13 10:06:02 +0800711static void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc,
712 struct kmem_cache *cache)
Avi Kivity714b93d2007-01-05 16:36:53 -0800713{
714 while (mc->nobjs)
Xiao Guangronge8ad9a72010-05-13 10:06:02 +0800715 kmem_cache_free(cache, mc->objects[--mc->nobjs]);
Avi Kivity714b93d2007-01-05 16:36:53 -0800716}
717
Avi Kivityc1158e62007-07-20 08:18:27 +0300718static int mmu_topup_memory_cache_page(struct kvm_mmu_memory_cache *cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300719 int min)
Avi Kivityc1158e62007-07-20 08:18:27 +0300720{
Xiao Guangrong842f22e2011-03-04 19:01:10 +0800721 void *page;
Avi Kivityc1158e62007-07-20 08:18:27 +0300722
723 if (cache->nobjs >= min)
724 return 0;
725 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
Xiao Guangrong842f22e2011-03-04 19:01:10 +0800726 page = (void *)__get_free_page(GFP_KERNEL);
Avi Kivityc1158e62007-07-20 08:18:27 +0300727 if (!page)
728 return -ENOMEM;
Xiao Guangrong842f22e2011-03-04 19:01:10 +0800729 cache->objects[cache->nobjs++] = page;
Avi Kivityc1158e62007-07-20 08:18:27 +0300730 }
731 return 0;
732}
733
734static void mmu_free_memory_cache_page(struct kvm_mmu_memory_cache *mc)
735{
736 while (mc->nobjs)
Avi Kivityc4d198d2007-07-21 09:06:46 +0300737 free_page((unsigned long)mc->objects[--mc->nobjs]);
Avi Kivityc1158e62007-07-20 08:18:27 +0300738}
739
Avi Kivity8c438502007-04-16 11:53:17 +0300740static int mmu_topup_memory_caches(struct kvm_vcpu *vcpu)
741{
742 int r;
743
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800744 r = mmu_topup_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache,
Xiao Guangrong67052b32011-05-15 23:27:08 +0800745 pte_list_desc_cache, 8 + PTE_PREFETCH_NUM);
Avi Kivity2e3e5882007-09-10 11:28:17 +0300746 if (r)
747 goto out;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800748 r = mmu_topup_memory_cache_page(&vcpu->arch.mmu_page_cache, 8);
Avi Kivity2e3e5882007-09-10 11:28:17 +0300749 if (r)
750 goto out;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800751 r = mmu_topup_memory_cache(&vcpu->arch.mmu_page_header_cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300752 mmu_page_header_cache, 4);
753out:
Avi Kivity8c438502007-04-16 11:53:17 +0300754 return r;
755}
756
Avi Kivity714b93d2007-01-05 16:36:53 -0800757static void mmu_free_memory_caches(struct kvm_vcpu *vcpu)
758{
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800759 mmu_free_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache,
760 pte_list_desc_cache);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800761 mmu_free_memory_cache_page(&vcpu->arch.mmu_page_cache);
Xiao Guangronge8ad9a72010-05-13 10:06:02 +0800762 mmu_free_memory_cache(&vcpu->arch.mmu_page_header_cache,
763 mmu_page_header_cache);
Avi Kivity714b93d2007-01-05 16:36:53 -0800764}
765
Takuya Yoshikawa80feb892012-05-29 23:54:26 +0900766static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc)
Avi Kivity714b93d2007-01-05 16:36:53 -0800767{
768 void *p;
769
770 BUG_ON(!mc->nobjs);
771 p = mc->objects[--mc->nobjs];
Avi Kivity714b93d2007-01-05 16:36:53 -0800772 return p;
773}
774
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800775static struct pte_list_desc *mmu_alloc_pte_list_desc(struct kvm_vcpu *vcpu)
Avi Kivity714b93d2007-01-05 16:36:53 -0800776{
Takuya Yoshikawa80feb892012-05-29 23:54:26 +0900777 return mmu_memory_cache_alloc(&vcpu->arch.mmu_pte_list_desc_cache);
Avi Kivity714b93d2007-01-05 16:36:53 -0800778}
779
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800780static void mmu_free_pte_list_desc(struct pte_list_desc *pte_list_desc)
Avi Kivity714b93d2007-01-05 16:36:53 -0800781{
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800782 kmem_cache_free(pte_list_desc_cache, pte_list_desc);
Avi Kivity714b93d2007-01-05 16:36:53 -0800783}
784
Lai Jiangshan2032a932010-05-26 16:49:59 +0800785static gfn_t kvm_mmu_page_get_gfn(struct kvm_mmu_page *sp, int index)
786{
787 if (!sp->role.direct)
788 return sp->gfns[index];
789
790 return sp->gfn + (index << ((sp->role.level - 1) * PT64_LEVEL_BITS));
791}
792
793static void kvm_mmu_page_set_gfn(struct kvm_mmu_page *sp, int index, gfn_t gfn)
794{
795 if (sp->role.direct)
796 BUG_ON(gfn != kvm_mmu_page_get_gfn(sp, index));
797 else
798 sp->gfns[index] = gfn;
799}
800
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800801/*
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900802 * Return the pointer to the large page information for a given gfn,
803 * handling slots that are not large page aligned.
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300804 */
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900805static struct kvm_lpage_info *lpage_info_slot(gfn_t gfn,
806 struct kvm_memory_slot *slot,
807 int level)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300808{
809 unsigned long idx;
810
Takuya Yoshikawafb03cb62012-02-08 12:59:10 +0900811 idx = gfn_to_index(gfn, slot->base_gfn, level);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900812 return &slot->arch.lpage_info[level - 2][idx];
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300813}
814
815static void account_shadowed(struct kvm *kvm, gfn_t gfn)
816{
Joerg Roedeld25797b2009-07-27 16:30:43 +0200817 struct kvm_memory_slot *slot;
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900818 struct kvm_lpage_info *linfo;
Joerg Roedeld25797b2009-07-27 16:30:43 +0200819 int i;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300820
Avi Kivitya1f4d3952010-06-21 11:44:20 +0300821 slot = gfn_to_memslot(kvm, gfn);
Joerg Roedeld25797b2009-07-27 16:30:43 +0200822 for (i = PT_DIRECTORY_LEVEL;
823 i < PT_PAGE_TABLE_LEVEL + KVM_NR_PAGE_SIZES; ++i) {
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900824 linfo = lpage_info_slot(gfn, slot, i);
825 linfo->write_count += 1;
Joerg Roedeld25797b2009-07-27 16:30:43 +0200826 }
Xiao Guangrong332b2072011-05-15 23:20:27 +0800827 kvm->arch.indirect_shadow_pages++;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300828}
829
830static void unaccount_shadowed(struct kvm *kvm, gfn_t gfn)
831{
Joerg Roedeld25797b2009-07-27 16:30:43 +0200832 struct kvm_memory_slot *slot;
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900833 struct kvm_lpage_info *linfo;
Joerg Roedeld25797b2009-07-27 16:30:43 +0200834 int i;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300835
Avi Kivitya1f4d3952010-06-21 11:44:20 +0300836 slot = gfn_to_memslot(kvm, gfn);
Joerg Roedeld25797b2009-07-27 16:30:43 +0200837 for (i = PT_DIRECTORY_LEVEL;
838 i < PT_PAGE_TABLE_LEVEL + KVM_NR_PAGE_SIZES; ++i) {
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900839 linfo = lpage_info_slot(gfn, slot, i);
840 linfo->write_count -= 1;
841 WARN_ON(linfo->write_count < 0);
Joerg Roedeld25797b2009-07-27 16:30:43 +0200842 }
Xiao Guangrong332b2072011-05-15 23:20:27 +0800843 kvm->arch.indirect_shadow_pages--;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300844}
845
Joerg Roedeld25797b2009-07-27 16:30:43 +0200846static int has_wrprotected_page(struct kvm *kvm,
847 gfn_t gfn,
848 int level)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300849{
Izik Eidus28430992008-10-03 17:40:32 +0300850 struct kvm_memory_slot *slot;
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900851 struct kvm_lpage_info *linfo;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300852
Avi Kivitya1f4d3952010-06-21 11:44:20 +0300853 slot = gfn_to_memslot(kvm, gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300854 if (slot) {
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900855 linfo = lpage_info_slot(gfn, slot, level);
856 return linfo->write_count;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300857 }
858
859 return 1;
860}
861
Joerg Roedeld25797b2009-07-27 16:30:43 +0200862static int host_mapping_level(struct kvm *kvm, gfn_t gfn)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300863{
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +0100864 unsigned long page_size;
Joerg Roedeld25797b2009-07-27 16:30:43 +0200865 int i, ret = 0;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300866
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +0100867 page_size = kvm_host_page_size(kvm, gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300868
Joerg Roedeld25797b2009-07-27 16:30:43 +0200869 for (i = PT_PAGE_TABLE_LEVEL;
870 i < (PT_PAGE_TABLE_LEVEL + KVM_NR_PAGE_SIZES); ++i) {
871 if (page_size >= KVM_HPAGE_SIZE(i))
872 ret = i;
873 else
874 break;
875 }
876
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -0300877 return ret;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300878}
879
Xiao Guangrong5d163b12011-03-09 15:43:00 +0800880static struct kvm_memory_slot *
881gfn_to_memslot_dirty_bitmap(struct kvm_vcpu *vcpu, gfn_t gfn,
882 bool no_dirty_log)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300883{
884 struct kvm_memory_slot *slot;
Xiao Guangrong5d163b12011-03-09 15:43:00 +0800885
886 slot = gfn_to_memslot(vcpu->kvm, gfn);
887 if (!slot || slot->flags & KVM_MEMSLOT_INVALID ||
888 (no_dirty_log && slot->dirty_bitmap))
889 slot = NULL;
890
891 return slot;
892}
893
894static bool mapping_level_dirty_bitmap(struct kvm_vcpu *vcpu, gfn_t large_gfn)
895{
Stevea0a8eab2011-06-17 10:25:39 +0800896 return !gfn_to_memslot_dirty_bitmap(vcpu, large_gfn, true);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -0800897}
898
899static int mapping_level(struct kvm_vcpu *vcpu, gfn_t large_gfn)
900{
901 int host_level, level, max_level;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300902
Joerg Roedeld25797b2009-07-27 16:30:43 +0200903 host_level = host_mapping_level(vcpu->kvm, large_gfn);
904
905 if (host_level == PT_PAGE_TABLE_LEVEL)
906 return host_level;
907
Xiao Guangrong55dd98c2013-02-05 15:26:54 +0800908 max_level = min(kvm_x86_ops->get_lpage_level(), host_level);
Sheng Yang878403b2010-01-05 19:02:29 +0800909
910 for (level = PT_DIRECTORY_LEVEL; level <= max_level; ++level)
Joerg Roedeld25797b2009-07-27 16:30:43 +0200911 if (has_wrprotected_page(vcpu->kvm, large_gfn, level))
912 break;
Joerg Roedeld25797b2009-07-27 16:30:43 +0200913
914 return level - 1;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300915}
916
917/*
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800918 * Pte mapping structures:
919 *
920 * If pte_list bit zero is zero, then pte_list point to the spte.
921 *
922 * If pte_list bit zero is one, (then pte_list & ~1) points to a struct
923 * pte_list_desc containing more mappings.
924 *
925 * Returns the number of pte entries before the spte was added or zero if
926 * the spte was not added.
927 *
928 */
929static int pte_list_add(struct kvm_vcpu *vcpu, u64 *spte,
930 unsigned long *pte_list)
931{
932 struct pte_list_desc *desc;
933 int i, count = 0;
934
935 if (!*pte_list) {
936 rmap_printk("pte_list_add: %p %llx 0->1\n", spte, *spte);
937 *pte_list = (unsigned long)spte;
938 } else if (!(*pte_list & 1)) {
939 rmap_printk("pte_list_add: %p %llx 1->many\n", spte, *spte);
940 desc = mmu_alloc_pte_list_desc(vcpu);
941 desc->sptes[0] = (u64 *)*pte_list;
942 desc->sptes[1] = spte;
943 *pte_list = (unsigned long)desc | 1;
944 ++count;
945 } else {
946 rmap_printk("pte_list_add: %p %llx many->many\n", spte, *spte);
947 desc = (struct pte_list_desc *)(*pte_list & ~1ul);
948 while (desc->sptes[PTE_LIST_EXT-1] && desc->more) {
949 desc = desc->more;
950 count += PTE_LIST_EXT;
951 }
952 if (desc->sptes[PTE_LIST_EXT-1]) {
953 desc->more = mmu_alloc_pte_list_desc(vcpu);
954 desc = desc->more;
955 }
956 for (i = 0; desc->sptes[i]; ++i)
957 ++count;
958 desc->sptes[i] = spte;
959 }
960 return count;
961}
962
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800963static void
964pte_list_desc_remove_entry(unsigned long *pte_list, struct pte_list_desc *desc,
965 int i, struct pte_list_desc *prev_desc)
966{
967 int j;
968
969 for (j = PTE_LIST_EXT - 1; !desc->sptes[j] && j > i; --j)
970 ;
971 desc->sptes[i] = desc->sptes[j];
972 desc->sptes[j] = NULL;
973 if (j != 0)
974 return;
975 if (!prev_desc && !desc->more)
976 *pte_list = (unsigned long)desc->sptes[0];
977 else
978 if (prev_desc)
979 prev_desc->more = desc->more;
980 else
981 *pte_list = (unsigned long)desc->more | 1;
982 mmu_free_pte_list_desc(desc);
983}
984
985static void pte_list_remove(u64 *spte, unsigned long *pte_list)
986{
987 struct pte_list_desc *desc;
988 struct pte_list_desc *prev_desc;
989 int i;
990
991 if (!*pte_list) {
992 printk(KERN_ERR "pte_list_remove: %p 0->BUG\n", spte);
993 BUG();
994 } else if (!(*pte_list & 1)) {
995 rmap_printk("pte_list_remove: %p 1->0\n", spte);
996 if ((u64 *)*pte_list != spte) {
997 printk(KERN_ERR "pte_list_remove: %p 1->BUG\n", spte);
998 BUG();
999 }
1000 *pte_list = 0;
1001 } else {
1002 rmap_printk("pte_list_remove: %p many->many\n", spte);
1003 desc = (struct pte_list_desc *)(*pte_list & ~1ul);
1004 prev_desc = NULL;
1005 while (desc) {
1006 for (i = 0; i < PTE_LIST_EXT && desc->sptes[i]; ++i)
1007 if (desc->sptes[i] == spte) {
1008 pte_list_desc_remove_entry(pte_list,
1009 desc, i,
1010 prev_desc);
1011 return;
1012 }
1013 prev_desc = desc;
1014 desc = desc->more;
1015 }
1016 pr_err("pte_list_remove: %p many->many\n", spte);
1017 BUG();
1018 }
1019}
1020
Xiao Guangrong67052b32011-05-15 23:27:08 +08001021typedef void (*pte_list_walk_fn) (u64 *spte);
1022static void pte_list_walk(unsigned long *pte_list, pte_list_walk_fn fn)
1023{
1024 struct pte_list_desc *desc;
1025 int i;
1026
1027 if (!*pte_list)
1028 return;
1029
1030 if (!(*pte_list & 1))
1031 return fn((u64 *)*pte_list);
1032
1033 desc = (struct pte_list_desc *)(*pte_list & ~1ul);
1034 while (desc) {
1035 for (i = 0; i < PTE_LIST_EXT && desc->sptes[i]; ++i)
1036 fn(desc->sptes[i]);
1037 desc = desc->more;
1038 }
1039}
1040
Takuya Yoshikawa9373e2c02012-01-17 19:51:20 +09001041static unsigned long *__gfn_to_rmap(gfn_t gfn, int level,
Takuya Yoshikawa9b9b1492011-11-14 18:22:28 +09001042 struct kvm_memory_slot *slot)
1043{
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09001044 unsigned long idx;
Takuya Yoshikawa9b9b1492011-11-14 18:22:28 +09001045
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09001046 idx = gfn_to_index(gfn, slot->base_gfn, level);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09001047 return &slot->arch.rmap[level - PT_PAGE_TABLE_LEVEL][idx];
Takuya Yoshikawa9b9b1492011-11-14 18:22:28 +09001048}
1049
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001050/*
Izik Eidus290fc382007-09-27 14:11:22 +02001051 * Take gfn and return the reverse mapping to it.
Izik Eidus290fc382007-09-27 14:11:22 +02001052 */
Joerg Roedel44ad9942009-07-27 16:30:42 +02001053static unsigned long *gfn_to_rmap(struct kvm *kvm, gfn_t gfn, int level)
Izik Eidus290fc382007-09-27 14:11:22 +02001054{
1055 struct kvm_memory_slot *slot;
1056
1057 slot = gfn_to_memslot(kvm, gfn);
Takuya Yoshikawa9373e2c02012-01-17 19:51:20 +09001058 return __gfn_to_rmap(gfn, level, slot);
Izik Eidus290fc382007-09-27 14:11:22 +02001059}
1060
Xiao Guangrongf759e2b2011-09-22 16:53:17 +08001061static bool rmap_can_add(struct kvm_vcpu *vcpu)
1062{
1063 struct kvm_mmu_memory_cache *cache;
1064
1065 cache = &vcpu->arch.mmu_pte_list_desc_cache;
1066 return mmu_memory_cache_free_objects(cache);
1067}
1068
Joerg Roedel44ad9942009-07-27 16:30:42 +02001069static int rmap_add(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn)
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001070{
Avi Kivity4db35312007-11-21 15:28:32 +02001071 struct kvm_mmu_page *sp;
Izik Eidus290fc382007-09-27 14:11:22 +02001072 unsigned long *rmapp;
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001073
Avi Kivity4db35312007-11-21 15:28:32 +02001074 sp = page_header(__pa(spte));
Lai Jiangshan2032a932010-05-26 16:49:59 +08001075 kvm_mmu_page_set_gfn(sp, spte - sp->spt, gfn);
Joerg Roedel44ad9942009-07-27 16:30:42 +02001076 rmapp = gfn_to_rmap(vcpu->kvm, gfn, sp->role.level);
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001077 return pte_list_add(vcpu, spte, rmapp);
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001078}
1079
Izik Eidus290fc382007-09-27 14:11:22 +02001080static void rmap_remove(struct kvm *kvm, u64 *spte)
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001081{
Avi Kivity4db35312007-11-21 15:28:32 +02001082 struct kvm_mmu_page *sp;
Lai Jiangshan2032a932010-05-26 16:49:59 +08001083 gfn_t gfn;
Izik Eidus290fc382007-09-27 14:11:22 +02001084 unsigned long *rmapp;
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001085
Avi Kivity4db35312007-11-21 15:28:32 +02001086 sp = page_header(__pa(spte));
Lai Jiangshan2032a932010-05-26 16:49:59 +08001087 gfn = kvm_mmu_page_get_gfn(sp, spte - sp->spt);
1088 rmapp = gfn_to_rmap(kvm, gfn, sp->role.level);
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001089 pte_list_remove(spte, rmapp);
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001090}
1091
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001092/*
1093 * Used by the following functions to iterate through the sptes linked by a
1094 * rmap. All fields are private and not assumed to be used outside.
1095 */
1096struct rmap_iterator {
1097 /* private fields */
1098 struct pte_list_desc *desc; /* holds the sptep if not NULL */
1099 int pos; /* index of the sptep */
1100};
1101
1102/*
1103 * Iteration must be started by this function. This should also be used after
1104 * removing/dropping sptes from the rmap link because in such cases the
1105 * information in the itererator may not be valid.
1106 *
1107 * Returns sptep if found, NULL otherwise.
1108 */
1109static u64 *rmap_get_first(unsigned long rmap, struct rmap_iterator *iter)
1110{
1111 if (!rmap)
1112 return NULL;
1113
1114 if (!(rmap & 1)) {
1115 iter->desc = NULL;
1116 return (u64 *)rmap;
1117 }
1118
1119 iter->desc = (struct pte_list_desc *)(rmap & ~1ul);
1120 iter->pos = 0;
1121 return iter->desc->sptes[iter->pos];
1122}
1123
1124/*
1125 * Must be used with a valid iterator: e.g. after rmap_get_first().
1126 *
1127 * Returns sptep if found, NULL otherwise.
1128 */
1129static u64 *rmap_get_next(struct rmap_iterator *iter)
1130{
1131 if (iter->desc) {
1132 if (iter->pos < PTE_LIST_EXT - 1) {
1133 u64 *sptep;
1134
1135 ++iter->pos;
1136 sptep = iter->desc->sptes[iter->pos];
1137 if (sptep)
1138 return sptep;
1139 }
1140
1141 iter->desc = iter->desc->more;
1142
1143 if (iter->desc) {
1144 iter->pos = 0;
1145 /* desc->sptes[0] cannot be NULL */
1146 return iter->desc->sptes[iter->pos];
1147 }
1148 }
1149
1150 return NULL;
1151}
1152
Xiao Guangrongc3707952011-07-12 03:28:04 +08001153static void drop_spte(struct kvm *kvm, u64 *sptep)
Xiao Guangronge4b502e2010-07-16 11:28:09 +08001154{
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +08001155 if (mmu_spte_clear_track_bits(sptep))
Marcelo Tosattieb45fda2010-10-25 11:58:22 -02001156 rmap_remove(kvm, sptep);
Avi Kivitybe38d272010-06-06 14:31:27 +03001157}
1158
Xiao Guangrong8e22f952012-06-20 15:57:39 +08001159
1160static bool __drop_large_spte(struct kvm *kvm, u64 *sptep)
1161{
1162 if (is_large_pte(*sptep)) {
1163 WARN_ON(page_header(__pa(sptep))->role.level ==
1164 PT_PAGE_TABLE_LEVEL);
1165 drop_spte(kvm, sptep);
1166 --kvm->stat.lpages;
1167 return true;
1168 }
1169
1170 return false;
1171}
1172
1173static void drop_large_spte(struct kvm_vcpu *vcpu, u64 *sptep)
1174{
1175 if (__drop_large_spte(vcpu->kvm, sptep))
1176 kvm_flush_remote_tlbs(vcpu->kvm);
1177}
1178
1179/*
Xiao Guangrong49fde342012-06-20 15:58:58 +08001180 * Write-protect on the specified @sptep, @pt_protect indicates whether
Xiao Guangrongc126d942014-04-17 17:06:14 +08001181 * spte write-protection is caused by protecting shadow page table.
Xiao Guangrong49fde342012-06-20 15:58:58 +08001182 *
1183 * Note: write protection is difference between drity logging and spte
1184 * protection:
1185 * - for dirty logging, the spte can be set to writable at anytime if
1186 * its dirty bitmap is properly set.
1187 * - for spte protection, the spte can be writable only after unsync-ing
1188 * shadow page.
Xiao Guangrong8e22f952012-06-20 15:57:39 +08001189 *
Xiao Guangrongc126d942014-04-17 17:06:14 +08001190 * Return true if tlb need be flushed.
Xiao Guangrong8e22f952012-06-20 15:57:39 +08001191 */
Xiao Guangrongc126d942014-04-17 17:06:14 +08001192static bool spte_write_protect(struct kvm *kvm, u64 *sptep, bool pt_protect)
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001193{
1194 u64 spte = *sptep;
1195
Xiao Guangrong49fde342012-06-20 15:58:58 +08001196 if (!is_writable_pte(spte) &&
1197 !(pt_protect && spte_is_locklessly_modifiable(spte)))
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001198 return false;
1199
1200 rmap_printk("rmap_write_protect: spte %p %llx\n", sptep, *sptep);
1201
Xiao Guangrong49fde342012-06-20 15:58:58 +08001202 if (pt_protect)
1203 spte &= ~SPTE_MMU_WRITEABLE;
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001204 spte = spte & ~PT_WRITABLE_MASK;
Xiao Guangrong49fde342012-06-20 15:58:58 +08001205
Xiao Guangrongc126d942014-04-17 17:06:14 +08001206 return mmu_spte_update(sptep, spte);
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001207}
1208
Xiao Guangrong49fde342012-06-20 15:58:58 +08001209static bool __rmap_write_protect(struct kvm *kvm, unsigned long *rmapp,
Takuya Yoshikawa245c3912013-01-08 19:44:09 +09001210 bool pt_protect)
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001211{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001212 u64 *sptep;
1213 struct rmap_iterator iter;
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001214 bool flush = false;
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001215
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001216 for (sptep = rmap_get_first(*rmapp, &iter); sptep;) {
1217 BUG_ON(!(*sptep & PT_PRESENT_MASK));
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001218
Xiao Guangrongc126d942014-04-17 17:06:14 +08001219 flush |= spte_write_protect(kvm, sptep, pt_protect);
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001220 sptep = rmap_get_next(&iter);
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001221 }
1222
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001223 return flush;
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001224}
1225
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001226/**
1227 * kvm_mmu_write_protect_pt_masked - write protect selected PT level pages
1228 * @kvm: kvm instance
1229 * @slot: slot to protect
1230 * @gfn_offset: start of the BITS_PER_LONG pages we care about
1231 * @mask: indicates which pages we should protect
1232 *
1233 * Used when we do not need to care about huge page mappings: e.g. during dirty
1234 * logging we do not have any such mappings.
1235 */
1236void kvm_mmu_write_protect_pt_masked(struct kvm *kvm,
1237 struct kvm_memory_slot *slot,
1238 gfn_t gfn_offset, unsigned long mask)
Izik Eidus98348e92007-10-16 14:42:30 +02001239{
Izik Eidus290fc382007-09-27 14:11:22 +02001240 unsigned long *rmapp;
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001241
1242 while (mask) {
Takuya Yoshikawa65fbe372012-08-01 18:02:01 +09001243 rmapp = __gfn_to_rmap(slot->base_gfn + gfn_offset + __ffs(mask),
1244 PT_PAGE_TABLE_LEVEL, slot);
Takuya Yoshikawa245c3912013-01-08 19:44:09 +09001245 __rmap_write_protect(kvm, rmapp, false);
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001246
1247 /* clear the first set bit */
1248 mask &= mask - 1;
1249 }
1250}
1251
Xiao Guangrong2f845692012-06-20 15:56:53 +08001252static bool rmap_write_protect(struct kvm *kvm, u64 gfn)
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001253{
1254 struct kvm_memory_slot *slot;
1255 unsigned long *rmapp;
1256 int i;
Xiao Guangrong2f845692012-06-20 15:56:53 +08001257 bool write_protected = false;
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001258
1259 slot = gfn_to_memslot(kvm, gfn);
Avi Kivity374cbac2007-01-05 16:36:43 -08001260
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001261 for (i = PT_PAGE_TABLE_LEVEL;
Joerg Roedel44ad9942009-07-27 16:30:42 +02001262 i < PT_PAGE_TABLE_LEVEL + KVM_NR_PAGE_SIZES; ++i) {
Takuya Yoshikawa9373e2c02012-01-17 19:51:20 +09001263 rmapp = __gfn_to_rmap(gfn, i, slot);
Takuya Yoshikawa245c3912013-01-08 19:44:09 +09001264 write_protected |= __rmap_write_protect(kvm, rmapp, true);
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001265 }
1266
Marcelo Tosattib1a36822008-12-01 22:32:03 -02001267 return write_protected;
Avi Kivity374cbac2007-01-05 16:36:43 -08001268}
1269
Frederik Deweerdt8a8365c2009-10-09 11:42:56 +00001270static int kvm_unmap_rmapp(struct kvm *kvm, unsigned long *rmapp,
Takuya Yoshikawa048212d2012-07-02 17:57:59 +09001271 struct kvm_memory_slot *slot, unsigned long data)
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001272{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001273 u64 *sptep;
1274 struct rmap_iterator iter;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001275 int need_tlb_flush = 0;
1276
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001277 while ((sptep = rmap_get_first(*rmapp, &iter))) {
1278 BUG_ON(!(*sptep & PT_PRESENT_MASK));
1279 rmap_printk("kvm_rmap_unmap_hva: spte %p %llx\n", sptep, *sptep);
1280
1281 drop_spte(kvm, sptep);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001282 need_tlb_flush = 1;
1283 }
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001284
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001285 return need_tlb_flush;
1286}
1287
Frederik Deweerdt8a8365c2009-10-09 11:42:56 +00001288static int kvm_set_pte_rmapp(struct kvm *kvm, unsigned long *rmapp,
Takuya Yoshikawa048212d2012-07-02 17:57:59 +09001289 struct kvm_memory_slot *slot, unsigned long data)
Izik Eidus3da0dd42009-09-23 21:47:18 +03001290{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001291 u64 *sptep;
1292 struct rmap_iterator iter;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001293 int need_flush = 0;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001294 u64 new_spte;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001295 pte_t *ptep = (pte_t *)data;
1296 pfn_t new_pfn;
1297
1298 WARN_ON(pte_huge(*ptep));
1299 new_pfn = pte_pfn(*ptep);
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001300
1301 for (sptep = rmap_get_first(*rmapp, &iter); sptep;) {
1302 BUG_ON(!is_shadow_present_pte(*sptep));
1303 rmap_printk("kvm_set_pte_rmapp: spte %p %llx\n", sptep, *sptep);
1304
Izik Eidus3da0dd42009-09-23 21:47:18 +03001305 need_flush = 1;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001306
Izik Eidus3da0dd42009-09-23 21:47:18 +03001307 if (pte_write(*ptep)) {
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001308 drop_spte(kvm, sptep);
1309 sptep = rmap_get_first(*rmapp, &iter);
Izik Eidus3da0dd42009-09-23 21:47:18 +03001310 } else {
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001311 new_spte = *sptep & ~PT64_BASE_ADDR_MASK;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001312 new_spte |= (u64)new_pfn << PAGE_SHIFT;
1313
1314 new_spte &= ~PT_WRITABLE_MASK;
1315 new_spte &= ~SPTE_HOST_WRITEABLE;
Avi Kivityb79b93f2010-06-06 15:46:44 +03001316 new_spte &= ~shadow_accessed_mask;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001317
1318 mmu_spte_clear_track_bits(sptep);
1319 mmu_spte_set(sptep, new_spte);
1320 sptep = rmap_get_next(&iter);
Izik Eidus3da0dd42009-09-23 21:47:18 +03001321 }
1322 }
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001323
Izik Eidus3da0dd42009-09-23 21:47:18 +03001324 if (need_flush)
1325 kvm_flush_remote_tlbs(kvm);
1326
1327 return 0;
1328}
1329
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001330static int kvm_handle_hva_range(struct kvm *kvm,
1331 unsigned long start,
1332 unsigned long end,
1333 unsigned long data,
1334 int (*handler)(struct kvm *kvm,
1335 unsigned long *rmapp,
Takuya Yoshikawa048212d2012-07-02 17:57:59 +09001336 struct kvm_memory_slot *slot,
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001337 unsigned long data))
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001338{
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +08001339 int j;
Takuya Yoshikawaf3953022012-07-02 17:58:48 +09001340 int ret = 0;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001341 struct kvm_memslots *slots;
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +08001342 struct kvm_memory_slot *memslot;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001343
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08001344 slots = kvm_memslots(kvm);
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001345
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +08001346 kvm_for_each_memslot(memslot, slots) {
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001347 unsigned long hva_start, hva_end;
Takuya Yoshikawabcd3ef52012-07-02 17:59:33 +09001348 gfn_t gfn_start, gfn_end;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001349
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001350 hva_start = max(start, memslot->userspace_addr);
1351 hva_end = min(end, memslot->userspace_addr +
1352 (memslot->npages << PAGE_SHIFT));
1353 if (hva_start >= hva_end)
1354 continue;
1355 /*
1356 * {gfn(page) | page intersects with [hva_start, hva_end)} =
Takuya Yoshikawabcd3ef52012-07-02 17:59:33 +09001357 * {gfn_start, gfn_start+1, ..., gfn_end-1}.
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001358 */
Takuya Yoshikawabcd3ef52012-07-02 17:59:33 +09001359 gfn_start = hva_to_gfn_memslot(hva_start, memslot);
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001360 gfn_end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, memslot);
Joerg Roedel852e3c12009-07-27 16:30:44 +02001361
Takuya Yoshikawabcd3ef52012-07-02 17:59:33 +09001362 for (j = PT_PAGE_TABLE_LEVEL;
1363 j < PT_PAGE_TABLE_LEVEL + KVM_NR_PAGE_SIZES; ++j) {
1364 unsigned long idx, idx_end;
1365 unsigned long *rmapp;
Joerg Roedel852e3c12009-07-27 16:30:44 +02001366
Takuya Yoshikawabcd3ef52012-07-02 17:59:33 +09001367 /*
1368 * {idx(page_j) | page_j intersects with
1369 * [hva_start, hva_end)} = {idx, idx+1, ..., idx_end}.
1370 */
1371 idx = gfn_to_index(gfn_start, memslot->base_gfn, j);
1372 idx_end = gfn_to_index(gfn_end - 1, memslot->base_gfn, j);
Andrea Arcangeli6e3e2432010-07-16 11:52:55 +02001373
Takuya Yoshikawabcd3ef52012-07-02 17:59:33 +09001374 rmapp = __gfn_to_rmap(gfn_start, j, memslot);
1375
1376 for (; idx <= idx_end; ++idx)
1377 ret |= handler(kvm, rmapp++, memslot, data);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001378 }
1379 }
1380
Takuya Yoshikawaf3953022012-07-02 17:58:48 +09001381 return ret;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001382}
1383
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001384static int kvm_handle_hva(struct kvm *kvm, unsigned long hva,
1385 unsigned long data,
1386 int (*handler)(struct kvm *kvm, unsigned long *rmapp,
Takuya Yoshikawa048212d2012-07-02 17:57:59 +09001387 struct kvm_memory_slot *slot,
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001388 unsigned long data))
1389{
1390 return kvm_handle_hva_range(kvm, hva, hva + 1, data, handler);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001391}
1392
1393int kvm_unmap_hva(struct kvm *kvm, unsigned long hva)
1394{
Izik Eidus3da0dd42009-09-23 21:47:18 +03001395 return kvm_handle_hva(kvm, hva, 0, kvm_unmap_rmapp);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001396}
1397
Takuya Yoshikawab3ae2092012-07-02 17:56:33 +09001398int kvm_unmap_hva_range(struct kvm *kvm, unsigned long start, unsigned long end)
1399{
1400 return kvm_handle_hva_range(kvm, start, end, 0, kvm_unmap_rmapp);
1401}
1402
Izik Eidus3da0dd42009-09-23 21:47:18 +03001403void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte)
1404{
Frederik Deweerdt8a8365c2009-10-09 11:42:56 +00001405 kvm_handle_hva(kvm, hva, (unsigned long)&pte, kvm_set_pte_rmapp);
Izik Eidus3da0dd42009-09-23 21:47:18 +03001406}
1407
Frederik Deweerdt8a8365c2009-10-09 11:42:56 +00001408static int kvm_age_rmapp(struct kvm *kvm, unsigned long *rmapp,
Takuya Yoshikawa048212d2012-07-02 17:57:59 +09001409 struct kvm_memory_slot *slot, unsigned long data)
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001410{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001411 u64 *sptep;
Michael S. Tsirkin79f702a2012-06-03 11:34:08 +03001412 struct rmap_iterator uninitialized_var(iter);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001413 int young = 0;
1414
Rik van Riel6316e1c2010-02-03 16:11:03 -05001415 /*
Xudong Hao3f6d8c82012-05-22 11:23:15 +08001416 * In case of absence of EPT Access and Dirty Bits supports,
1417 * emulate the accessed bit for EPT, by checking if this page has
Rik van Riel6316e1c2010-02-03 16:11:03 -05001418 * an EPT mapping, and clearing it if it does. On the next access,
1419 * a new EPT mapping will be established.
1420 * This has some overhead, but not as much as the cost of swapping
1421 * out actively used pages or breaking up actively used hugepages.
1422 */
Takuya Yoshikawaf3953022012-07-02 17:58:48 +09001423 if (!shadow_accessed_mask) {
1424 young = kvm_unmap_rmapp(kvm, rmapp, slot, data);
1425 goto out;
1426 }
Sheng Yang534e38b2008-09-08 15:12:30 +08001427
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001428 for (sptep = rmap_get_first(*rmapp, &iter); sptep;
1429 sptep = rmap_get_next(&iter)) {
Xudong Hao3f6d8c82012-05-22 11:23:15 +08001430 BUG_ON(!is_shadow_present_pte(*sptep));
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001431
Xudong Hao3f6d8c82012-05-22 11:23:15 +08001432 if (*sptep & shadow_accessed_mask) {
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001433 young = 1;
Xudong Hao3f6d8c82012-05-22 11:23:15 +08001434 clear_bit((ffs(shadow_accessed_mask) - 1),
1435 (unsigned long *)sptep);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001436 }
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001437 }
Takuya Yoshikawaf3953022012-07-02 17:58:48 +09001438out:
1439 /* @data has hva passed to kvm_age_hva(). */
1440 trace_kvm_age_page(data, slot, young);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001441 return young;
1442}
1443
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001444static int kvm_test_age_rmapp(struct kvm *kvm, unsigned long *rmapp,
Takuya Yoshikawa048212d2012-07-02 17:57:59 +09001445 struct kvm_memory_slot *slot, unsigned long data)
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001446{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001447 u64 *sptep;
1448 struct rmap_iterator iter;
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001449 int young = 0;
1450
1451 /*
1452 * If there's no access bit in the secondary pte set by the
1453 * hardware it's up to gup-fast/gup to set the access bit in
1454 * the primary pte or in the page structure.
1455 */
1456 if (!shadow_accessed_mask)
1457 goto out;
1458
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001459 for (sptep = rmap_get_first(*rmapp, &iter); sptep;
1460 sptep = rmap_get_next(&iter)) {
Xudong Hao3f6d8c82012-05-22 11:23:15 +08001461 BUG_ON(!is_shadow_present_pte(*sptep));
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001462
Xudong Hao3f6d8c82012-05-22 11:23:15 +08001463 if (*sptep & shadow_accessed_mask) {
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001464 young = 1;
1465 break;
1466 }
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001467 }
1468out:
1469 return young;
1470}
1471
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001472#define RMAP_RECYCLE_THRESHOLD 1000
1473
Joerg Roedel852e3c12009-07-27 16:30:44 +02001474static void rmap_recycle(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn)
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001475{
1476 unsigned long *rmapp;
Joerg Roedel852e3c12009-07-27 16:30:44 +02001477 struct kvm_mmu_page *sp;
1478
1479 sp = page_header(__pa(spte));
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001480
Joerg Roedel852e3c12009-07-27 16:30:44 +02001481 rmapp = gfn_to_rmap(vcpu->kvm, gfn, sp->role.level);
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001482
Takuya Yoshikawa048212d2012-07-02 17:57:59 +09001483 kvm_unmap_rmapp(vcpu->kvm, rmapp, NULL, 0);
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001484 kvm_flush_remote_tlbs(vcpu->kvm);
1485}
1486
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001487int kvm_age_hva(struct kvm *kvm, unsigned long hva)
1488{
Takuya Yoshikawaf3953022012-07-02 17:58:48 +09001489 return kvm_handle_hva(kvm, hva, hva, kvm_age_rmapp);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001490}
1491
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001492int kvm_test_age_hva(struct kvm *kvm, unsigned long hva)
1493{
1494 return kvm_handle_hva(kvm, hva, 0, kvm_test_age_rmapp);
1495}
1496
Yaozu Dongd6c69ee2007-04-25 14:17:25 +08001497#ifdef MMU_DEBUG
Avi Kivity47ad8e62007-05-06 15:50:58 +03001498static int is_empty_shadow_page(u64 *spt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001499{
Avi Kivity139bdb22007-01-05 16:36:50 -08001500 u64 *pos;
1501 u64 *end;
1502
Avi Kivity47ad8e62007-05-06 15:50:58 +03001503 for (pos = spt, end = pos + PAGE_SIZE / sizeof(u64); pos != end; pos++)
Avi Kivity3c915512008-05-20 16:21:13 +03001504 if (is_shadow_present_pte(*pos)) {
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001505 printk(KERN_ERR "%s: %p %llx\n", __func__,
Avi Kivity139bdb22007-01-05 16:36:50 -08001506 pos, *pos);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001507 return 0;
Avi Kivity139bdb22007-01-05 16:36:50 -08001508 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001509 return 1;
1510}
Yaozu Dongd6c69ee2007-04-25 14:17:25 +08001511#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001512
Dave Hansen45221ab2010-08-19 18:11:37 -07001513/*
1514 * This value is the sum of all of the kvm instances's
1515 * kvm->arch.n_used_mmu_pages values. We need a global,
1516 * aggregate version in order to make the slab shrinker
1517 * faster
1518 */
1519static inline void kvm_mod_used_mmu_pages(struct kvm *kvm, int nr)
1520{
1521 kvm->arch.n_used_mmu_pages += nr;
1522 percpu_counter_add(&kvm_total_used_mmu_pages, nr);
1523}
1524
Gleb Natapov834be0d2013-01-30 16:45:05 +02001525static void kvm_mmu_free_page(struct kvm_mmu_page *sp)
Avi Kivity260746c2007-01-05 16:36:49 -08001526{
Avi Kivity4db35312007-11-21 15:28:32 +02001527 ASSERT(is_empty_shadow_page(sp->spt));
Xiao Guangrong77758342010-06-04 21:53:54 +08001528 hlist_del(&sp->hash_link);
Xiao Guangrongbd4c86e2011-07-12 03:27:14 +08001529 list_del(&sp->link);
1530 free_page((unsigned long)sp->spt);
Gleb Natapov834be0d2013-01-30 16:45:05 +02001531 if (!sp->role.direct)
1532 free_page((unsigned long)sp->gfns);
Xiao Guangronge8ad9a72010-05-13 10:06:02 +08001533 kmem_cache_free(mmu_page_header_cache, sp);
Avi Kivity260746c2007-01-05 16:36:49 -08001534}
1535
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001536static unsigned kvm_page_table_hashfn(gfn_t gfn)
1537{
Dong, Eddie1ae0a132008-01-07 13:20:25 +02001538 return gfn & ((1 << KVM_MMU_HASH_SHIFT) - 1);
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001539}
1540
Xiao Guangrong67052b32011-05-15 23:27:08 +08001541static void mmu_page_add_parent_pte(struct kvm_vcpu *vcpu,
1542 struct kvm_mmu_page *sp, u64 *parent_pte)
1543{
1544 if (!parent_pte)
1545 return;
1546
1547 pte_list_add(vcpu, parent_pte, &sp->parent_ptes);
1548}
1549
1550static void mmu_page_remove_parent_pte(struct kvm_mmu_page *sp,
1551 u64 *parent_pte)
1552{
1553 pte_list_remove(parent_pte, &sp->parent_ptes);
1554}
1555
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08001556static void drop_parent_pte(struct kvm_mmu_page *sp,
1557 u64 *parent_pte)
1558{
1559 mmu_page_remove_parent_pte(sp, parent_pte);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +08001560 mmu_spte_clear_no_track(parent_pte);
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08001561}
1562
Avi Kivity25c0de22007-01-05 16:36:42 -08001563static struct kvm_mmu_page *kvm_mmu_alloc_page(struct kvm_vcpu *vcpu,
Lai Jiangshan2032a932010-05-26 16:49:59 +08001564 u64 *parent_pte, int direct)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001565{
Avi Kivity4db35312007-11-21 15:28:32 +02001566 struct kvm_mmu_page *sp;
Takuya Yoshikawa7ddca7e2013-03-21 19:33:43 +09001567
Takuya Yoshikawa80feb892012-05-29 23:54:26 +09001568 sp = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_header_cache);
1569 sp->spt = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache);
Lai Jiangshan2032a932010-05-26 16:49:59 +08001570 if (!direct)
Takuya Yoshikawa80feb892012-05-29 23:54:26 +09001571 sp->gfns = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache);
Avi Kivity4db35312007-11-21 15:28:32 +02001572 set_page_private(virt_to_page(sp->spt), (unsigned long)sp);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08001573
1574 /*
1575 * The active_mmu_pages list is the FIFO list, do not move the
1576 * page until it is zapped. kvm_zap_obsolete_pages depends on
1577 * this feature. See the comments in kvm_zap_obsolete_pages().
1578 */
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001579 list_add(&sp->link, &vcpu->kvm->arch.active_mmu_pages);
Xiao Guangrong67052b32011-05-15 23:27:08 +08001580 sp->parent_ptes = 0;
1581 mmu_page_add_parent_pte(vcpu, sp, parent_pte);
Dave Hansen45221ab2010-08-19 18:11:37 -07001582 kvm_mod_used_mmu_pages(vcpu->kvm, +1);
Avi Kivity4db35312007-11-21 15:28:32 +02001583 return sp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001584}
1585
Xiao Guangrong67052b32011-05-15 23:27:08 +08001586static void mark_unsync(u64 *spte);
Xiao Guangrong6b184932010-04-16 21:29:17 +08001587static void kvm_mmu_mark_parents_unsync(struct kvm_mmu_page *sp)
Marcelo Tosatti0074ff62008-09-23 13:18:40 -03001588{
Xiao Guangrong67052b32011-05-15 23:27:08 +08001589 pte_list_walk(&sp->parent_ptes, mark_unsync);
Xiao Guangrong1047df12010-06-11 21:35:15 +08001590}
1591
Xiao Guangrong67052b32011-05-15 23:27:08 +08001592static void mark_unsync(u64 *spte)
Xiao Guangrong1047df12010-06-11 21:35:15 +08001593{
Xiao Guangrong67052b32011-05-15 23:27:08 +08001594 struct kvm_mmu_page *sp;
Xiao Guangrong1047df12010-06-11 21:35:15 +08001595 unsigned int index;
1596
Xiao Guangrong67052b32011-05-15 23:27:08 +08001597 sp = page_header(__pa(spte));
Xiao Guangrong1047df12010-06-11 21:35:15 +08001598 index = spte - sp->spt;
1599 if (__test_and_set_bit(index, sp->unsync_child_bitmap))
1600 return;
1601 if (sp->unsync_children++)
1602 return;
1603 kvm_mmu_mark_parents_unsync(sp);
Marcelo Tosatti0074ff62008-09-23 13:18:40 -03001604}
1605
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03001606static int nonpaging_sync_page(struct kvm_vcpu *vcpu,
Xiao Guangronga4a8e6f2010-11-19 17:04:03 +08001607 struct kvm_mmu_page *sp)
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03001608{
1609 return 1;
1610}
1611
Marcelo Tosattia7052892008-09-23 13:18:35 -03001612static void nonpaging_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
1613{
1614}
1615
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08001616static void nonpaging_update_pte(struct kvm_vcpu *vcpu,
1617 struct kvm_mmu_page *sp, u64 *spte,
Xiao Guangrong7c562522011-03-28 10:29:27 +08001618 const void *pte)
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08001619{
1620 WARN_ON(1);
1621}
1622
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001623#define KVM_PAGE_ARRAY_NR 16
1624
1625struct kvm_mmu_pages {
1626 struct mmu_page_and_offset {
1627 struct kvm_mmu_page *sp;
1628 unsigned int idx;
1629 } page[KVM_PAGE_ARRAY_NR];
1630 unsigned int nr;
1631};
1632
Hannes Edercded19f2009-02-21 02:19:13 +01001633static int mmu_pages_add(struct kvm_mmu_pages *pvec, struct kvm_mmu_page *sp,
1634 int idx)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001635{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001636 int i;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001637
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001638 if (sp->unsync)
1639 for (i=0; i < pvec->nr; i++)
1640 if (pvec->page[i].sp == sp)
1641 return 0;
1642
1643 pvec->page[pvec->nr].sp = sp;
1644 pvec->page[pvec->nr].idx = idx;
1645 pvec->nr++;
1646 return (pvec->nr == KVM_PAGE_ARRAY_NR);
1647}
1648
1649static int __mmu_unsync_walk(struct kvm_mmu_page *sp,
1650 struct kvm_mmu_pages *pvec)
1651{
1652 int i, ret, nr_unsync_leaf = 0;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001653
Takuya Yoshikawa37178b82011-11-29 14:02:45 +09001654 for_each_set_bit(i, sp->unsync_child_bitmap, 512) {
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001655 struct kvm_mmu_page *child;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001656 u64 ent = sp->spt[i];
1657
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001658 if (!is_shadow_present_pte(ent) || is_large_pte(ent))
1659 goto clear_child_bitmap;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001660
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001661 child = page_header(ent & PT64_BASE_ADDR_MASK);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001662
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001663 if (child->unsync_children) {
1664 if (mmu_pages_add(pvec, child, i))
1665 return -ENOSPC;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001666
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001667 ret = __mmu_unsync_walk(child, pvec);
1668 if (!ret)
1669 goto clear_child_bitmap;
1670 else if (ret > 0)
1671 nr_unsync_leaf += ret;
1672 else
1673 return ret;
1674 } else if (child->unsync) {
1675 nr_unsync_leaf++;
1676 if (mmu_pages_add(pvec, child, i))
1677 return -ENOSPC;
1678 } else
1679 goto clear_child_bitmap;
1680
1681 continue;
1682
1683clear_child_bitmap:
1684 __clear_bit(i, sp->unsync_child_bitmap);
1685 sp->unsync_children--;
1686 WARN_ON((int)sp->unsync_children < 0);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001687 }
1688
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001689
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001690 return nr_unsync_leaf;
1691}
1692
1693static int mmu_unsync_walk(struct kvm_mmu_page *sp,
1694 struct kvm_mmu_pages *pvec)
1695{
1696 if (!sp->unsync_children)
1697 return 0;
1698
1699 mmu_pages_add(pvec, sp, 0);
1700 return __mmu_unsync_walk(sp, pvec);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001701}
1702
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001703static void kvm_unlink_unsync_page(struct kvm *kvm, struct kvm_mmu_page *sp)
1704{
1705 WARN_ON(!sp->unsync);
Xiao Guangrong5e1b3dd2010-04-28 11:55:06 +08001706 trace_kvm_mmu_sync_page(sp);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001707 sp->unsync = 0;
1708 --kvm->stat.mmu_unsync;
1709}
1710
Xiao Guangrong77758342010-06-04 21:53:54 +08001711static int kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp,
1712 struct list_head *invalid_list);
1713static void kvm_mmu_commit_zap_page(struct kvm *kvm,
1714 struct list_head *invalid_list);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001715
Xiao Guangrongf34d2512013-05-31 08:36:28 +08001716/*
1717 * NOTE: we should pay more attention on the zapped-obsolete page
1718 * (is_obsolete_sp(sp) && sp->role.invalid) when you do hash list walk
1719 * since it has been deleted from active_mmu_pages but still can be found
1720 * at hast list.
1721 *
1722 * for_each_gfn_indirect_valid_sp has skipped that kind of page and
1723 * kvm_mmu_get_page(), the only user of for_each_gfn_sp(), has skipped
1724 * all the obsolete pages.
1725 */
Takuya Yoshikawa1044b032013-03-06 16:05:07 +09001726#define for_each_gfn_sp(_kvm, _sp, _gfn) \
1727 hlist_for_each_entry(_sp, \
1728 &(_kvm)->arch.mmu_page_hash[kvm_page_table_hashfn(_gfn)], hash_link) \
1729 if ((_sp)->gfn != (_gfn)) {} else
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08001730
Takuya Yoshikawa1044b032013-03-06 16:05:07 +09001731#define for_each_gfn_indirect_valid_sp(_kvm, _sp, _gfn) \
1732 for_each_gfn_sp(_kvm, _sp, _gfn) \
1733 if ((_sp)->role.direct || (_sp)->role.invalid) {} else
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08001734
Xiao Guangrongf918b442010-06-11 21:30:36 +08001735/* @sp->gfn should be write-protected at the call site */
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08001736static int __kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
Xiao Guangrongd98ba052010-06-04 21:55:29 +08001737 struct list_head *invalid_list, bool clear_unsync)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001738{
Avi Kivity5b7e0102010-04-14 19:20:03 +03001739 if (sp->role.cr4_pae != !!is_pae(vcpu)) {
Xiao Guangrongd98ba052010-06-04 21:55:29 +08001740 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001741 return 1;
1742 }
1743
Xiao Guangrongf918b442010-06-11 21:30:36 +08001744 if (clear_unsync)
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08001745 kvm_unlink_unsync_page(vcpu->kvm, sp);
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08001746
Xiao Guangronga4a8e6f2010-11-19 17:04:03 +08001747 if (vcpu->arch.mmu.sync_page(vcpu, sp)) {
Xiao Guangrongd98ba052010-06-04 21:55:29 +08001748 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001749 return 1;
1750 }
1751
1752 kvm_mmu_flush_tlb(vcpu);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001753 return 0;
1754}
1755
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08001756static int kvm_sync_page_transient(struct kvm_vcpu *vcpu,
1757 struct kvm_mmu_page *sp)
1758{
Xiao Guangrongd98ba052010-06-04 21:55:29 +08001759 LIST_HEAD(invalid_list);
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08001760 int ret;
1761
Xiao Guangrongd98ba052010-06-04 21:55:29 +08001762 ret = __kvm_sync_page(vcpu, sp, &invalid_list, false);
Xiao Guangrongbe71e062010-06-11 21:31:38 +08001763 if (ret)
Xiao Guangrongd98ba052010-06-04 21:55:29 +08001764 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
1765
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08001766 return ret;
1767}
1768
Xiao Guangronge37fa782011-11-30 17:43:24 +08001769#ifdef CONFIG_KVM_MMU_AUDIT
1770#include "mmu_audit.c"
1771#else
1772static void kvm_mmu_audit(struct kvm_vcpu *vcpu, int point) { }
1773static void mmu_audit_disable(void) { }
1774#endif
1775
Xiao Guangrongd98ba052010-06-04 21:55:29 +08001776static int kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
1777 struct list_head *invalid_list)
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08001778{
Xiao Guangrongd98ba052010-06-04 21:55:29 +08001779 return __kvm_sync_page(vcpu, sp, invalid_list, true);
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08001780}
1781
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001782/* @gfn should be write-protected at the call site */
1783static void kvm_sync_pages(struct kvm_vcpu *vcpu, gfn_t gfn)
1784{
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001785 struct kvm_mmu_page *s;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08001786 LIST_HEAD(invalid_list);
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001787 bool flush = false;
1788
Sasha Levinb67bfe02013-02-27 17:06:00 -08001789 for_each_gfn_indirect_valid_sp(vcpu->kvm, s, gfn) {
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08001790 if (!s->unsync)
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001791 continue;
1792
1793 WARN_ON(s->role.level != PT_PAGE_TABLE_LEVEL);
Xiao Guangronga4a8e6f2010-11-19 17:04:03 +08001794 kvm_unlink_unsync_page(vcpu->kvm, s);
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001795 if ((s->role.cr4_pae != !!is_pae(vcpu)) ||
Xiao Guangronga4a8e6f2010-11-19 17:04:03 +08001796 (vcpu->arch.mmu.sync_page(vcpu, s))) {
Xiao Guangrongd98ba052010-06-04 21:55:29 +08001797 kvm_mmu_prepare_zap_page(vcpu->kvm, s, &invalid_list);
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001798 continue;
1799 }
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001800 flush = true;
1801 }
1802
Xiao Guangrongd98ba052010-06-04 21:55:29 +08001803 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001804 if (flush)
1805 kvm_mmu_flush_tlb(vcpu);
1806}
1807
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001808struct mmu_page_path {
1809 struct kvm_mmu_page *parent[PT64_ROOT_LEVEL-1];
1810 unsigned int idx[PT64_ROOT_LEVEL-1];
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001811};
1812
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001813#define for_each_sp(pvec, sp, parents, i) \
1814 for (i = mmu_pages_next(&pvec, &parents, -1), \
1815 sp = pvec.page[i].sp; \
1816 i < pvec.nr && ({ sp = pvec.page[i].sp; 1;}); \
1817 i = mmu_pages_next(&pvec, &parents, i))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001818
Hannes Edercded19f2009-02-21 02:19:13 +01001819static int mmu_pages_next(struct kvm_mmu_pages *pvec,
1820 struct mmu_page_path *parents,
1821 int i)
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001822{
1823 int n;
1824
1825 for (n = i+1; n < pvec->nr; n++) {
1826 struct kvm_mmu_page *sp = pvec->page[n].sp;
1827
1828 if (sp->role.level == PT_PAGE_TABLE_LEVEL) {
1829 parents->idx[0] = pvec->page[n].idx;
1830 return n;
1831 }
1832
1833 parents->parent[sp->role.level-2] = sp;
1834 parents->idx[sp->role.level-1] = pvec->page[n].idx;
1835 }
1836
1837 return n;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001838}
1839
Hannes Edercded19f2009-02-21 02:19:13 +01001840static void mmu_pages_clear_parents(struct mmu_page_path *parents)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001841{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001842 struct kvm_mmu_page *sp;
1843 unsigned int level = 0;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001844
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001845 do {
1846 unsigned int idx = parents->idx[level];
1847
1848 sp = parents->parent[level];
1849 if (!sp)
1850 return;
1851
1852 --sp->unsync_children;
1853 WARN_ON((int)sp->unsync_children < 0);
1854 __clear_bit(idx, sp->unsync_child_bitmap);
1855 level++;
1856 } while (level < PT64_ROOT_LEVEL-1 && !sp->unsync_children);
1857}
1858
1859static void kvm_mmu_pages_init(struct kvm_mmu_page *parent,
1860 struct mmu_page_path *parents,
1861 struct kvm_mmu_pages *pvec)
1862{
1863 parents->parent[parent->role.level-1] = NULL;
1864 pvec->nr = 0;
1865}
1866
1867static void mmu_sync_children(struct kvm_vcpu *vcpu,
1868 struct kvm_mmu_page *parent)
1869{
1870 int i;
1871 struct kvm_mmu_page *sp;
1872 struct mmu_page_path parents;
1873 struct kvm_mmu_pages pages;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08001874 LIST_HEAD(invalid_list);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001875
1876 kvm_mmu_pages_init(parent, &parents, &pages);
1877 while (mmu_unsync_walk(parent, &pages)) {
Xiao Guangrong2f845692012-06-20 15:56:53 +08001878 bool protected = false;
Marcelo Tosattib1a36822008-12-01 22:32:03 -02001879
1880 for_each_sp(pages, sp, parents, i)
1881 protected |= rmap_write_protect(vcpu->kvm, sp->gfn);
1882
1883 if (protected)
1884 kvm_flush_remote_tlbs(vcpu->kvm);
1885
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001886 for_each_sp(pages, sp, parents, i) {
Xiao Guangrongd98ba052010-06-04 21:55:29 +08001887 kvm_sync_page(vcpu, sp, &invalid_list);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001888 mmu_pages_clear_parents(&parents);
1889 }
Xiao Guangrongd98ba052010-06-04 21:55:29 +08001890 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001891 cond_resched_lock(&vcpu->kvm->mmu_lock);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001892 kvm_mmu_pages_init(parent, &parents, &pages);
1893 }
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001894}
1895
Xiao Guangrongc3707952011-07-12 03:28:04 +08001896static void init_shadow_page_table(struct kvm_mmu_page *sp)
1897{
1898 int i;
1899
1900 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
1901 sp->spt[i] = 0ull;
1902}
1903
Xiao Guangronga30f47c2011-09-22 16:58:36 +08001904static void __clear_sp_write_flooding_count(struct kvm_mmu_page *sp)
1905{
1906 sp->write_flooding_count = 0;
1907}
1908
1909static void clear_sp_write_flooding_count(u64 *spte)
1910{
1911 struct kvm_mmu_page *sp = page_header(__pa(spte));
1912
1913 __clear_sp_write_flooding_count(sp);
1914}
1915
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08001916static bool is_obsolete_sp(struct kvm *kvm, struct kvm_mmu_page *sp)
1917{
1918 return unlikely(sp->mmu_valid_gen != kvm->arch.mmu_valid_gen);
1919}
1920
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001921static struct kvm_mmu_page *kvm_mmu_get_page(struct kvm_vcpu *vcpu,
1922 gfn_t gfn,
1923 gva_t gaddr,
1924 unsigned level,
Avi Kivityf6e2c022009-01-11 13:02:10 +02001925 int direct,
Avi Kivity41074d02007-12-09 17:00:02 +02001926 unsigned access,
Avi Kivityf7d9c7b2008-02-26 22:12:10 +02001927 u64 *parent_pte)
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001928{
1929 union kvm_mmu_page_role role;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001930 unsigned quadrant;
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001931 struct kvm_mmu_page *sp;
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001932 bool need_sync = false;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001933
Avi Kivitya770f6f2008-12-21 19:20:09 +02001934 role = vcpu->arch.mmu.base_role;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001935 role.level = level;
Avi Kivityf6e2c022009-01-11 13:02:10 +02001936 role.direct = direct;
Avi Kivity84b0c8c2010-03-14 10:16:40 +02001937 if (role.direct)
Avi Kivity5b7e0102010-04-14 19:20:03 +03001938 role.cr4_pae = 0;
Avi Kivity41074d02007-12-09 17:00:02 +02001939 role.access = access;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02001940 if (!vcpu->arch.mmu.direct_map
1941 && vcpu->arch.mmu.root_level <= PT32_ROOT_LEVEL) {
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001942 quadrant = gaddr >> (PAGE_SHIFT + (PT64_PT_BITS * level));
1943 quadrant &= (1 << ((PT32_PT_BITS - PT64_PT_BITS) * level)) - 1;
1944 role.quadrant = quadrant;
1945 }
Sasha Levinb67bfe02013-02-27 17:06:00 -08001946 for_each_gfn_sp(vcpu->kvm, sp, gfn) {
Xiao Guangrong7f52af72013-05-31 08:36:26 +08001947 if (is_obsolete_sp(vcpu->kvm, sp))
1948 continue;
1949
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08001950 if (!need_sync && sp->unsync)
1951 need_sync = true;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001952
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08001953 if (sp->role.word != role.word)
1954 continue;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001955
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08001956 if (sp->unsync && kvm_sync_page_transient(vcpu, sp))
1957 break;
Xiao Guangronge02aa902010-05-15 18:52:34 +08001958
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08001959 mmu_page_add_parent_pte(vcpu, sp, parent_pte);
1960 if (sp->unsync_children) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03001961 kvm_make_request(KVM_REQ_MMU_SYNC, vcpu);
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08001962 kvm_mmu_mark_parents_unsync(sp);
1963 } else if (sp->unsync)
1964 kvm_mmu_mark_parents_unsync(sp);
Xiao Guangronge02aa902010-05-15 18:52:34 +08001965
Xiao Guangronga30f47c2011-09-22 16:58:36 +08001966 __clear_sp_write_flooding_count(sp);
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08001967 trace_kvm_mmu_get_page(sp, false);
1968 return sp;
1969 }
Avi Kivitydfc5aa02007-12-18 19:47:18 +02001970 ++vcpu->kvm->stat.mmu_cache_miss;
Lai Jiangshan2032a932010-05-26 16:49:59 +08001971 sp = kvm_mmu_alloc_page(vcpu, parent_pte, direct);
Avi Kivity4db35312007-11-21 15:28:32 +02001972 if (!sp)
1973 return sp;
Avi Kivity4db35312007-11-21 15:28:32 +02001974 sp->gfn = gfn;
1975 sp->role = role;
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08001976 hlist_add_head(&sp->hash_link,
1977 &vcpu->kvm->arch.mmu_page_hash[kvm_page_table_hashfn(gfn)]);
Avi Kivityf6e2c022009-01-11 13:02:10 +02001978 if (!direct) {
Marcelo Tosattib1a36822008-12-01 22:32:03 -02001979 if (rmap_write_protect(vcpu->kvm, gfn))
1980 kvm_flush_remote_tlbs(vcpu->kvm);
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08001981 if (level > PT_PAGE_TABLE_LEVEL && need_sync)
1982 kvm_sync_pages(vcpu, gfn);
1983
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001984 account_shadowed(vcpu->kvm, gfn);
1985 }
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08001986 sp->mmu_valid_gen = vcpu->kvm->arch.mmu_valid_gen;
Xiao Guangrongc3707952011-07-12 03:28:04 +08001987 init_shadow_page_table(sp);
Avi Kivityf691fe12009-07-06 15:58:14 +03001988 trace_kvm_mmu_get_page(sp, true);
Avi Kivity4db35312007-11-21 15:28:32 +02001989 return sp;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001990}
1991
Avi Kivity2d111232008-12-25 14:39:47 +02001992static void shadow_walk_init(struct kvm_shadow_walk_iterator *iterator,
1993 struct kvm_vcpu *vcpu, u64 addr)
1994{
1995 iterator->addr = addr;
1996 iterator->shadow_addr = vcpu->arch.mmu.root_hpa;
1997 iterator->level = vcpu->arch.mmu.shadow_root_level;
Joerg Roedel81407ca2010-09-10 17:31:00 +02001998
1999 if (iterator->level == PT64_ROOT_LEVEL &&
2000 vcpu->arch.mmu.root_level < PT64_ROOT_LEVEL &&
2001 !vcpu->arch.mmu.direct_map)
2002 --iterator->level;
2003
Avi Kivity2d111232008-12-25 14:39:47 +02002004 if (iterator->level == PT32E_ROOT_LEVEL) {
2005 iterator->shadow_addr
2006 = vcpu->arch.mmu.pae_root[(addr >> 30) & 3];
2007 iterator->shadow_addr &= PT64_BASE_ADDR_MASK;
2008 --iterator->level;
2009 if (!iterator->shadow_addr)
2010 iterator->level = 0;
2011 }
2012}
2013
2014static bool shadow_walk_okay(struct kvm_shadow_walk_iterator *iterator)
2015{
2016 if (iterator->level < PT_PAGE_TABLE_LEVEL)
2017 return false;
Marcelo Tosatti4d889542009-06-11 12:07:41 -03002018
Avi Kivity2d111232008-12-25 14:39:47 +02002019 iterator->index = SHADOW_PT_INDEX(iterator->addr, iterator->level);
2020 iterator->sptep = ((u64 *)__va(iterator->shadow_addr)) + iterator->index;
2021 return true;
2022}
2023
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002024static void __shadow_walk_next(struct kvm_shadow_walk_iterator *iterator,
2025 u64 spte)
Avi Kivity2d111232008-12-25 14:39:47 +02002026{
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002027 if (is_last_spte(spte, iterator->level)) {
Xiao Guangrong052331b2011-07-12 03:21:17 +08002028 iterator->level = 0;
2029 return;
2030 }
2031
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002032 iterator->shadow_addr = spte & PT64_BASE_ADDR_MASK;
Avi Kivity2d111232008-12-25 14:39:47 +02002033 --iterator->level;
2034}
2035
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002036static void shadow_walk_next(struct kvm_shadow_walk_iterator *iterator)
2037{
2038 return __shadow_walk_next(iterator, *iterator->sptep);
2039}
2040
Yang Zhang7a1638c2013-08-05 11:07:13 +03002041static void link_shadow_page(u64 *sptep, struct kvm_mmu_page *sp, bool accessed)
Avi Kivity32ef26a2010-07-13 14:27:04 +03002042{
2043 u64 spte;
2044
Yang Zhang7a1638c2013-08-05 11:07:13 +03002045 BUILD_BUG_ON(VMX_EPT_READABLE_MASK != PT_PRESENT_MASK ||
2046 VMX_EPT_WRITABLE_MASK != PT_WRITABLE_MASK);
2047
Xiao Guangrong24db2732013-02-05 15:28:02 +08002048 spte = __pa(sp->spt) | PT_PRESENT_MASK | PT_WRITABLE_MASK |
Yang Zhang7a1638c2013-08-05 11:07:13 +03002049 shadow_user_mask | shadow_x_mask;
2050
2051 if (accessed)
2052 spte |= shadow_accessed_mask;
Xiao Guangrong24db2732013-02-05 15:28:02 +08002053
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +08002054 mmu_spte_set(sptep, spte);
Avi Kivity32ef26a2010-07-13 14:27:04 +03002055}
2056
Avi Kivitya357bd22010-07-13 14:27:07 +03002057static void validate_direct_spte(struct kvm_vcpu *vcpu, u64 *sptep,
2058 unsigned direct_access)
2059{
2060 if (is_shadow_present_pte(*sptep) && !is_large_pte(*sptep)) {
2061 struct kvm_mmu_page *child;
2062
2063 /*
2064 * For the direct sp, if the guest pte's dirty bit
2065 * changed form clean to dirty, it will corrupt the
2066 * sp's access: allow writable in the read-only sp,
2067 * so we should update the spte at this point to get
2068 * a new sp with the correct access.
2069 */
2070 child = page_header(*sptep & PT64_BASE_ADDR_MASK);
2071 if (child->role.access == direct_access)
2072 return;
2073
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08002074 drop_parent_pte(child, sptep);
Avi Kivitya357bd22010-07-13 14:27:07 +03002075 kvm_flush_remote_tlbs(vcpu->kvm);
2076 }
2077}
2078
Xiao Guangrong505aef82011-09-22 16:56:06 +08002079static bool mmu_page_zap_pte(struct kvm *kvm, struct kvm_mmu_page *sp,
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002080 u64 *spte)
2081{
2082 u64 pte;
2083 struct kvm_mmu_page *child;
2084
2085 pte = *spte;
2086 if (is_shadow_present_pte(pte)) {
Xiao Guangrong505aef82011-09-22 16:56:06 +08002087 if (is_last_spte(pte, sp->role.level)) {
Xiao Guangrongc3707952011-07-12 03:28:04 +08002088 drop_spte(kvm, spte);
Xiao Guangrong505aef82011-09-22 16:56:06 +08002089 if (is_large_pte(pte))
2090 --kvm->stat.lpages;
2091 } else {
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002092 child = page_header(pte & PT64_BASE_ADDR_MASK);
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08002093 drop_parent_pte(child, spte);
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002094 }
Xiao Guangrong505aef82011-09-22 16:56:06 +08002095 return true;
2096 }
2097
2098 if (is_mmio_spte(pte))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08002099 mmu_spte_clear_no_track(spte);
Xiao Guangrongc3707952011-07-12 03:28:04 +08002100
Xiao Guangrong505aef82011-09-22 16:56:06 +08002101 return false;
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002102}
2103
Avi Kivity90cb0522007-07-17 13:04:56 +03002104static void kvm_mmu_page_unlink_children(struct kvm *kvm,
Avi Kivity4db35312007-11-21 15:28:32 +02002105 struct kvm_mmu_page *sp)
Avi Kivitya4360362007-01-05 16:36:45 -08002106{
Avi Kivity697fe2e2007-01-05 16:36:46 -08002107 unsigned i;
Avi Kivity697fe2e2007-01-05 16:36:46 -08002108
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002109 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
2110 mmu_page_zap_pte(kvm, sp, sp->spt + i);
Avi Kivitya4360362007-01-05 16:36:45 -08002111}
2112
Avi Kivity4db35312007-11-21 15:28:32 +02002113static void kvm_mmu_put_page(struct kvm_mmu_page *sp, u64 *parent_pte)
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002114{
Avi Kivity4db35312007-11-21 15:28:32 +02002115 mmu_page_remove_parent_pte(sp, parent_pte);
Avi Kivitya4360362007-01-05 16:36:45 -08002116}
2117
Avi Kivity31aa2b42008-07-11 17:59:46 +03002118static void kvm_mmu_unlink_parents(struct kvm *kvm, struct kvm_mmu_page *sp)
Avi Kivitya4360362007-01-05 16:36:45 -08002119{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09002120 u64 *sptep;
2121 struct rmap_iterator iter;
Avi Kivitya4360362007-01-05 16:36:45 -08002122
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09002123 while ((sptep = rmap_get_first(sp->parent_ptes, &iter)))
2124 drop_parent_pte(sp, sptep);
Avi Kivity31aa2b42008-07-11 17:59:46 +03002125}
2126
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002127static int mmu_zap_unsync_children(struct kvm *kvm,
Xiao Guangrong77758342010-06-04 21:53:54 +08002128 struct kvm_mmu_page *parent,
2129 struct list_head *invalid_list)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002130{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002131 int i, zapped = 0;
2132 struct mmu_page_path parents;
2133 struct kvm_mmu_pages pages;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002134
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002135 if (parent->role.level == PT_PAGE_TABLE_LEVEL)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002136 return 0;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002137
2138 kvm_mmu_pages_init(parent, &parents, &pages);
2139 while (mmu_unsync_walk(parent, &pages)) {
2140 struct kvm_mmu_page *sp;
2141
2142 for_each_sp(pages, sp, parents, i) {
Xiao Guangrong77758342010-06-04 21:53:54 +08002143 kvm_mmu_prepare_zap_page(kvm, sp, invalid_list);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002144 mmu_pages_clear_parents(&parents);
Xiao Guangrong77662e02010-04-16 16:34:42 +08002145 zapped++;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002146 }
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002147 kvm_mmu_pages_init(parent, &parents, &pages);
2148 }
2149
2150 return zapped;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002151}
2152
Xiao Guangrong77758342010-06-04 21:53:54 +08002153static int kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp,
2154 struct list_head *invalid_list)
Avi Kivity31aa2b42008-07-11 17:59:46 +03002155{
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002156 int ret;
Avi Kivityf691fe12009-07-06 15:58:14 +03002157
Xiao Guangrong77758342010-06-04 21:53:54 +08002158 trace_kvm_mmu_prepare_zap_page(sp);
Avi Kivity31aa2b42008-07-11 17:59:46 +03002159 ++kvm->stat.mmu_shadow_zapped;
Xiao Guangrong77758342010-06-04 21:53:54 +08002160 ret = mmu_zap_unsync_children(kvm, sp, invalid_list);
Avi Kivity4db35312007-11-21 15:28:32 +02002161 kvm_mmu_page_unlink_children(kvm, sp);
Avi Kivity31aa2b42008-07-11 17:59:46 +03002162 kvm_mmu_unlink_parents(kvm, sp);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08002163
Avi Kivityf6e2c022009-01-11 13:02:10 +02002164 if (!sp->role.invalid && !sp->role.direct)
Avi Kivity5b5c6a52008-07-11 18:07:26 +03002165 unaccount_shadowed(kvm, sp->gfn);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08002166
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002167 if (sp->unsync)
2168 kvm_unlink_unsync_page(kvm, sp);
Avi Kivity4db35312007-11-21 15:28:32 +02002169 if (!sp->root_count) {
Gui Jianfeng54a4f022010-05-05 09:03:49 +08002170 /* Count self */
2171 ret++;
Xiao Guangrong77758342010-06-04 21:53:54 +08002172 list_move(&sp->link, invalid_list);
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08002173 kvm_mod_used_mmu_pages(kvm, -1);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05002174 } else {
Avi Kivity5b5c6a52008-07-11 18:07:26 +03002175 list_move(&sp->link, &kvm->arch.active_mmu_pages);
Gleb Natapov05988d72013-05-31 08:36:30 +08002176
2177 /*
2178 * The obsolete pages can not be used on any vcpus.
2179 * See the comments in kvm_mmu_invalidate_zap_all_pages().
2180 */
2181 if (!sp->role.invalid && !is_obsolete_sp(kvm, sp))
2182 kvm_reload_remote_mmus(kvm);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05002183 }
Xiao Guangrong77758342010-06-04 21:53:54 +08002184
2185 sp->role.invalid = 1;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002186 return ret;
Avi Kivitya4360362007-01-05 16:36:45 -08002187}
2188
Xiao Guangrong77758342010-06-04 21:53:54 +08002189static void kvm_mmu_commit_zap_page(struct kvm *kvm,
2190 struct list_head *invalid_list)
2191{
Takuya Yoshikawa945315b2013-03-06 16:05:52 +09002192 struct kvm_mmu_page *sp, *nsp;
Xiao Guangrong77758342010-06-04 21:53:54 +08002193
2194 if (list_empty(invalid_list))
2195 return;
2196
Avi Kivityc1427862012-05-14 15:44:06 +03002197 /*
2198 * wmb: make sure everyone sees our modifications to the page tables
2199 * rmb: make sure we see changes to vcpu->mode
2200 */
2201 smp_mb();
2202
2203 /*
2204 * Wait for all vcpus to exit guest mode and/or lockless shadow
2205 * page table walks.
2206 */
Xiao Guangrong77758342010-06-04 21:53:54 +08002207 kvm_flush_remote_tlbs(kvm);
2208
Takuya Yoshikawa945315b2013-03-06 16:05:52 +09002209 list_for_each_entry_safe(sp, nsp, invalid_list, link) {
Xiao Guangrong77758342010-06-04 21:53:54 +08002210 WARN_ON(!sp->role.invalid || sp->root_count);
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08002211 kvm_mmu_free_page(sp);
Takuya Yoshikawa945315b2013-03-06 16:05:52 +09002212 }
Xiao Guangrong77758342010-06-04 21:53:54 +08002213}
2214
Takuya Yoshikawa5da59602013-03-06 16:06:58 +09002215static bool prepare_zap_oldest_mmu_page(struct kvm *kvm,
2216 struct list_head *invalid_list)
2217{
2218 struct kvm_mmu_page *sp;
2219
2220 if (list_empty(&kvm->arch.active_mmu_pages))
2221 return false;
2222
2223 sp = list_entry(kvm->arch.active_mmu_pages.prev,
2224 struct kvm_mmu_page, link);
2225 kvm_mmu_prepare_zap_page(kvm, sp, invalid_list);
2226
2227 return true;
2228}
2229
Izik Eidus82ce2c92007-10-02 18:52:55 +02002230/*
2231 * Changing the number of mmu pages allocated to the vm
Dave Hansen49d5ca22010-08-19 18:11:28 -07002232 * Note: if goal_nr_mmu_pages is too small, you will get dead lock
Izik Eidus82ce2c92007-10-02 18:52:55 +02002233 */
Dave Hansen49d5ca22010-08-19 18:11:28 -07002234void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int goal_nr_mmu_pages)
Izik Eidus82ce2c92007-10-02 18:52:55 +02002235{
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002236 LIST_HEAD(invalid_list);
Izik Eidus82ce2c92007-10-02 18:52:55 +02002237
Takuya Yoshikawab34cb592013-01-08 19:46:07 +09002238 spin_lock(&kvm->mmu_lock);
2239
Dave Hansen49d5ca22010-08-19 18:11:28 -07002240 if (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages) {
Takuya Yoshikawa5da59602013-03-06 16:06:58 +09002241 /* Need to free some mmu pages to achieve the goal. */
2242 while (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages)
2243 if (!prepare_zap_oldest_mmu_page(kvm, &invalid_list))
2244 break;
Izik Eidus82ce2c92007-10-02 18:52:55 +02002245
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08002246 kvm_mmu_commit_zap_page(kvm, &invalid_list);
Dave Hansen49d5ca22010-08-19 18:11:28 -07002247 goal_nr_mmu_pages = kvm->arch.n_used_mmu_pages;
Izik Eidus82ce2c92007-10-02 18:52:55 +02002248 }
Izik Eidus82ce2c92007-10-02 18:52:55 +02002249
Dave Hansen49d5ca22010-08-19 18:11:28 -07002250 kvm->arch.n_max_mmu_pages = goal_nr_mmu_pages;
Takuya Yoshikawab34cb592013-01-08 19:46:07 +09002251
2252 spin_unlock(&kvm->mmu_lock);
Izik Eidus82ce2c92007-10-02 18:52:55 +02002253}
2254
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002255int kvm_mmu_unprotect_page(struct kvm *kvm, gfn_t gfn)
Avi Kivitya4360362007-01-05 16:36:45 -08002256{
Avi Kivity4db35312007-11-21 15:28:32 +02002257 struct kvm_mmu_page *sp;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002258 LIST_HEAD(invalid_list);
Avi Kivitya4360362007-01-05 16:36:45 -08002259 int r;
2260
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002261 pgprintk("%s: looking for gfn %llx\n", __func__, gfn);
Avi Kivitya4360362007-01-05 16:36:45 -08002262 r = 0;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002263 spin_lock(&kvm->mmu_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08002264 for_each_gfn_indirect_valid_sp(kvm, sp, gfn) {
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002265 pgprintk("%s: gfn %llx role %x\n", __func__, gfn,
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002266 sp->role.word);
2267 r = 1;
Xiao Guangrongf41d3352010-06-04 21:56:11 +08002268 kvm_mmu_prepare_zap_page(kvm, sp, &invalid_list);
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002269 }
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002270 kvm_mmu_commit_zap_page(kvm, &invalid_list);
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002271 spin_unlock(&kvm->mmu_lock);
2272
Avi Kivitya4360362007-01-05 16:36:45 -08002273 return r;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002274}
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002275EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page);
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002276
Sheng Yang74be52e2008-10-09 16:01:56 +08002277/*
2278 * The function is based on mtrr_type_lookup() in
2279 * arch/x86/kernel/cpu/mtrr/generic.c
2280 */
2281static int get_mtrr_type(struct mtrr_state_type *mtrr_state,
2282 u64 start, u64 end)
2283{
2284 int i;
2285 u64 base, mask;
2286 u8 prev_match, curr_match;
2287 int num_var_ranges = KVM_NR_VAR_MTRR;
2288
2289 if (!mtrr_state->enabled)
2290 return 0xFF;
2291
2292 /* Make end inclusive end, instead of exclusive */
2293 end--;
2294
2295 /* Look in fixed ranges. Just return the type as per start */
2296 if (mtrr_state->have_fixed && (start < 0x100000)) {
2297 int idx;
2298
2299 if (start < 0x80000) {
2300 idx = 0;
2301 idx += (start >> 16);
2302 return mtrr_state->fixed_ranges[idx];
2303 } else if (start < 0xC0000) {
2304 idx = 1 * 8;
2305 idx += ((start - 0x80000) >> 14);
2306 return mtrr_state->fixed_ranges[idx];
2307 } else if (start < 0x1000000) {
2308 idx = 3 * 8;
2309 idx += ((start - 0xC0000) >> 12);
2310 return mtrr_state->fixed_ranges[idx];
2311 }
2312 }
2313
2314 /*
2315 * Look in variable ranges
2316 * Look of multiple ranges matching this address and pick type
2317 * as per MTRR precedence
2318 */
2319 if (!(mtrr_state->enabled & 2))
2320 return mtrr_state->def_type;
2321
2322 prev_match = 0xFF;
2323 for (i = 0; i < num_var_ranges; ++i) {
2324 unsigned short start_state, end_state;
2325
2326 if (!(mtrr_state->var_ranges[i].mask_lo & (1 << 11)))
2327 continue;
2328
2329 base = (((u64)mtrr_state->var_ranges[i].base_hi) << 32) +
2330 (mtrr_state->var_ranges[i].base_lo & PAGE_MASK);
2331 mask = (((u64)mtrr_state->var_ranges[i].mask_hi) << 32) +
2332 (mtrr_state->var_ranges[i].mask_lo & PAGE_MASK);
2333
2334 start_state = ((start & mask) == (base & mask));
2335 end_state = ((end & mask) == (base & mask));
2336 if (start_state != end_state)
2337 return 0xFE;
2338
2339 if ((start & mask) != (base & mask))
2340 continue;
2341
2342 curr_match = mtrr_state->var_ranges[i].base_lo & 0xff;
2343 if (prev_match == 0xFF) {
2344 prev_match = curr_match;
2345 continue;
2346 }
2347
2348 if (prev_match == MTRR_TYPE_UNCACHABLE ||
2349 curr_match == MTRR_TYPE_UNCACHABLE)
2350 return MTRR_TYPE_UNCACHABLE;
2351
2352 if ((prev_match == MTRR_TYPE_WRBACK &&
2353 curr_match == MTRR_TYPE_WRTHROUGH) ||
2354 (prev_match == MTRR_TYPE_WRTHROUGH &&
2355 curr_match == MTRR_TYPE_WRBACK)) {
2356 prev_match = MTRR_TYPE_WRTHROUGH;
2357 curr_match = MTRR_TYPE_WRTHROUGH;
2358 }
2359
2360 if (prev_match != curr_match)
2361 return MTRR_TYPE_UNCACHABLE;
2362 }
2363
2364 if (prev_match != 0xFF)
2365 return prev_match;
2366
2367 return mtrr_state->def_type;
2368}
2369
Sheng Yang4b12f0d2009-04-27 20:35:42 +08002370u8 kvm_get_guest_memory_type(struct kvm_vcpu *vcpu, gfn_t gfn)
Sheng Yang74be52e2008-10-09 16:01:56 +08002371{
2372 u8 mtrr;
2373
2374 mtrr = get_mtrr_type(&vcpu->arch.mtrr_state, gfn << PAGE_SHIFT,
2375 (gfn << PAGE_SHIFT) + PAGE_SIZE);
2376 if (mtrr == 0xfe || mtrr == 0xff)
2377 mtrr = MTRR_TYPE_WRBACK;
2378 return mtrr;
2379}
Sheng Yang4b12f0d2009-04-27 20:35:42 +08002380EXPORT_SYMBOL_GPL(kvm_get_guest_memory_type);
Sheng Yang74be52e2008-10-09 16:01:56 +08002381
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002382static void __kvm_unsync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002383{
Xiao Guangrong5e1b3dd2010-04-28 11:55:06 +08002384 trace_kvm_mmu_unsync_page(sp);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002385 ++vcpu->kvm->stat.mmu_unsync;
2386 sp->unsync = 1;
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -02002387
Xiao Guangrong6b184932010-04-16 21:29:17 +08002388 kvm_mmu_mark_parents_unsync(sp);
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002389}
2390
2391static void kvm_unsync_pages(struct kvm_vcpu *vcpu, gfn_t gfn)
2392{
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002393 struct kvm_mmu_page *s;
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002394
Sasha Levinb67bfe02013-02-27 17:06:00 -08002395 for_each_gfn_indirect_valid_sp(vcpu->kvm, s, gfn) {
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002396 if (s->unsync)
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002397 continue;
2398 WARN_ON(s->role.level != PT_PAGE_TABLE_LEVEL);
2399 __kvm_unsync_page(vcpu, s);
2400 }
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002401}
2402
2403static int mmu_need_write_protect(struct kvm_vcpu *vcpu, gfn_t gfn,
2404 bool can_unsync)
2405{
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002406 struct kvm_mmu_page *s;
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002407 bool need_unsync = false;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002408
Sasha Levinb67bfe02013-02-27 17:06:00 -08002409 for_each_gfn_indirect_valid_sp(vcpu->kvm, s, gfn) {
Xiao Guangrong36a2e672010-06-30 16:02:02 +08002410 if (!can_unsync)
2411 return 1;
2412
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002413 if (s->role.level != PT_PAGE_TABLE_LEVEL)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002414 return 1;
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002415
Gleb Natapov9bb4f6b2013-01-30 16:45:01 +02002416 if (!s->unsync)
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002417 need_unsync = true;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002418 }
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002419 if (need_unsync)
2420 kvm_unsync_pages(vcpu, gfn);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002421 return 0;
2422}
2423
Avi Kivityd555c332009-06-10 14:24:23 +03002424static int set_spte(struct kvm_vcpu *vcpu, u64 *sptep,
Xiao Guangrongc22885052013-01-08 14:36:04 +08002425 unsigned pte_access, int level,
Marcelo Tosattic2d0ee42009-04-05 14:54:47 -03002426 gfn_t gfn, pfn_t pfn, bool speculative,
Lai Jiangshan9bdbba12010-11-19 17:03:22 +08002427 bool can_unsync, bool host_writable)
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002428{
Xiao Guangrong6e7d0352012-06-20 15:58:33 +08002429 u64 spte;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002430 int ret = 0;
Sheng Yang64d4d522008-10-09 16:01:57 +08002431
Xiao Guangrongf2fd1252013-06-07 16:51:24 +08002432 if (set_mmio_spte(vcpu->kvm, sptep, gfn, pfn, pte_access))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08002433 return 0;
2434
Marcelo Tosatti982c2562010-10-22 14:18:16 -02002435 spte = PT_PRESENT_MASK;
Avi Kivity947da532008-03-18 11:05:52 +02002436 if (!speculative)
Avi Kivity3201b5d2008-08-27 20:01:04 +03002437 spte |= shadow_accessed_mask;
Xiao Guangrong640d9b02011-07-12 03:24:39 +08002438
Sheng Yang7b523452008-04-25 21:13:50 +08002439 if (pte_access & ACC_EXEC_MASK)
2440 spte |= shadow_x_mask;
2441 else
2442 spte |= shadow_nx_mask;
Xiao Guangrong49fde342012-06-20 15:58:58 +08002443
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002444 if (pte_access & ACC_USER_MASK)
Sheng Yang7b523452008-04-25 21:13:50 +08002445 spte |= shadow_user_mask;
Xiao Guangrong49fde342012-06-20 15:58:58 +08002446
Joerg Roedel852e3c12009-07-27 16:30:44 +02002447 if (level > PT_PAGE_TABLE_LEVEL)
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002448 spte |= PT_PAGE_SIZE_MASK;
Avi Kivityb0bc3ee2010-09-13 16:45:28 +02002449 if (tdp_enabled)
Sheng Yang4b12f0d2009-04-27 20:35:42 +08002450 spte |= kvm_x86_ops->get_mt_mask(vcpu, gfn,
2451 kvm_is_mmio_pfn(pfn));
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002452
Lai Jiangshan9bdbba12010-11-19 17:03:22 +08002453 if (host_writable)
Izik Eidus14032832009-09-23 21:47:17 +03002454 spte |= SPTE_HOST_WRITEABLE;
Xiao Guangrongf8e453b2010-12-23 16:09:29 +08002455 else
2456 pte_access &= ~ACC_WRITE_MASK;
Izik Eidus14032832009-09-23 21:47:17 +03002457
Anthony Liguori35149e22008-04-02 14:46:56 -05002458 spte |= (u64)pfn << PAGE_SHIFT;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002459
Xiao Guangrongc22885052013-01-08 14:36:04 +08002460 if (pte_access & ACC_WRITE_MASK) {
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002461
Xiao Guangrongc2193462012-12-04 07:17:11 +08002462 /*
Xiao Guangrong7751bab2013-01-08 14:36:51 +08002463 * Other vcpu creates new sp in the window between
2464 * mapping_level() and acquiring mmu-lock. We can
2465 * allow guest to retry the access, the mapping can
2466 * be fixed if guest refault.
Xiao Guangrongc2193462012-12-04 07:17:11 +08002467 */
Joerg Roedel852e3c12009-07-27 16:30:44 +02002468 if (level > PT_PAGE_TABLE_LEVEL &&
Xiao Guangrongc2193462012-12-04 07:17:11 +08002469 has_wrprotected_page(vcpu->kvm, gfn, level))
Avi Kivitybe38d272010-06-06 14:31:27 +03002470 goto done;
Marcelo Tosatti38187c82008-09-23 13:18:32 -03002471
Xiao Guangrong49fde342012-06-20 15:58:58 +08002472 spte |= PT_WRITABLE_MASK | SPTE_MMU_WRITEABLE;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002473
Marcelo Tosattiecc55892008-11-25 15:58:07 +01002474 /*
2475 * Optimization: for pte sync, if spte was writable the hash
2476 * lookup is unnecessary (and expensive). Write protection
2477 * is responsibility of mmu_get_page / kvm_sync_page.
2478 * Same reasoning can be applied to dirty page accounting.
2479 */
Takuya Yoshikawa8dae4442010-01-18 18:45:10 +09002480 if (!can_unsync && is_writable_pte(*sptep))
Marcelo Tosattiecc55892008-11-25 15:58:07 +01002481 goto set_pte;
2482
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002483 if (mmu_need_write_protect(vcpu, gfn, can_unsync)) {
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002484 pgprintk("%s: found shadow page for %llx, marking ro\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002485 __func__, gfn);
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002486 ret = 1;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002487 pte_access &= ~ACC_WRITE_MASK;
Xiao Guangrong49fde342012-06-20 15:58:58 +08002488 spte &= ~(PT_WRITABLE_MASK | SPTE_MMU_WRITEABLE);
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002489 }
2490 }
2491
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002492 if (pte_access & ACC_WRITE_MASK)
2493 mark_page_dirty(vcpu->kvm, gfn);
2494
Marcelo Tosatti38187c82008-09-23 13:18:32 -03002495set_pte:
Xiao Guangrong6e7d0352012-06-20 15:58:33 +08002496 if (mmu_spte_update(sptep, spte))
Xiao Guangrongb330aa02010-11-19 17:02:35 +08002497 kvm_flush_remote_tlbs(vcpu->kvm);
Avi Kivitybe38d272010-06-06 14:31:27 +03002498done:
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002499 return ret;
2500}
2501
Avi Kivityd555c332009-06-10 14:24:23 +03002502static void mmu_set_spte(struct kvm_vcpu *vcpu, u64 *sptep,
Xiao Guangrongf7616202013-02-05 15:27:27 +08002503 unsigned pte_access, int write_fault, int *emulate,
2504 int level, gfn_t gfn, pfn_t pfn, bool speculative,
2505 bool host_writable)
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002506{
2507 int was_rmapped = 0;
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03002508 int rmap_count;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002509
Xiao Guangrongf7616202013-02-05 15:27:27 +08002510 pgprintk("%s: spte %llx write_fault %d gfn %llx\n", __func__,
2511 *sptep, write_fault, gfn);
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002512
Avi Kivityd555c332009-06-10 14:24:23 +03002513 if (is_rmap_spte(*sptep)) {
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002514 /*
2515 * If we overwrite a PTE page pointer with a 2MB PMD, unlink
2516 * the parent of the now unreachable PTE.
2517 */
Joerg Roedel852e3c12009-07-27 16:30:44 +02002518 if (level > PT_PAGE_TABLE_LEVEL &&
2519 !is_large_pte(*sptep)) {
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002520 struct kvm_mmu_page *child;
Avi Kivityd555c332009-06-10 14:24:23 +03002521 u64 pte = *sptep;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002522
2523 child = page_header(pte & PT64_BASE_ADDR_MASK);
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08002524 drop_parent_pte(child, sptep);
Marcelo Tosatti3be22642010-05-28 09:44:59 -03002525 kvm_flush_remote_tlbs(vcpu->kvm);
Avi Kivityd555c332009-06-10 14:24:23 +03002526 } else if (pfn != spte_to_pfn(*sptep)) {
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002527 pgprintk("hfn old %llx new %llx\n",
Avi Kivityd555c332009-06-10 14:24:23 +03002528 spte_to_pfn(*sptep), pfn);
Xiao Guangrongc3707952011-07-12 03:28:04 +08002529 drop_spte(vcpu->kvm, sptep);
Xiao Guangrong91546352010-06-30 16:04:06 +08002530 kvm_flush_remote_tlbs(vcpu->kvm);
Joerg Roedel6bed6b92009-02-18 14:08:59 +01002531 } else
2532 was_rmapped = 1;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002533 }
Joerg Roedel852e3c12009-07-27 16:30:44 +02002534
Xiao Guangrongc22885052013-01-08 14:36:04 +08002535 if (set_spte(vcpu, sptep, pte_access, level, gfn, pfn, speculative,
2536 true, host_writable)) {
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002537 if (write_fault)
Xiao Guangrongb90a0e62011-07-12 03:25:56 +08002538 *emulate = 1;
Xiao Guangrong5304efd2010-06-08 20:05:57 +08002539 kvm_mmu_flush_tlb(vcpu);
Marcelo Tosattia378b4e2008-09-23 13:18:31 -03002540 }
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002541
Xiao Guangrongce88dec2011-07-12 03:33:44 +08002542 if (unlikely(is_mmio_spte(*sptep) && emulate))
2543 *emulate = 1;
2544
Avi Kivityd555c332009-06-10 14:24:23 +03002545 pgprintk("%s: setting spte %llx\n", __func__, *sptep);
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002546 pgprintk("instantiating %s PTE (%s) at %llx (%llx) addr %p\n",
Avi Kivityd555c332009-06-10 14:24:23 +03002547 is_large_pte(*sptep)? "2MB" : "4kB",
Joerg Roedela205bc12009-07-09 16:36:01 +02002548 *sptep & PT_PRESENT_MASK ?"RW":"R", gfn,
2549 *sptep, sptep);
Avi Kivityd555c332009-06-10 14:24:23 +03002550 if (!was_rmapped && is_large_pte(*sptep))
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002551 ++vcpu->kvm->stat.lpages;
2552
Xiao Guangrongffb61bb2011-07-12 03:22:01 +08002553 if (is_shadow_present_pte(*sptep)) {
Xiao Guangrongffb61bb2011-07-12 03:22:01 +08002554 if (!was_rmapped) {
2555 rmap_count = rmap_add(vcpu, sptep, gfn);
2556 if (rmap_count > RMAP_RECYCLE_THRESHOLD)
2557 rmap_recycle(vcpu, sptep, gfn);
2558 }
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002559 }
Xiao Guangrongcb9aaa32012-08-03 15:42:10 +08002560
Xiao Guangrongf3ac1a42012-10-16 20:07:03 +08002561 kvm_release_pfn_clean(pfn);
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002562}
2563
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002564static pfn_t pte_prefetch_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn,
2565 bool no_dirty_log)
2566{
2567 struct kvm_memory_slot *slot;
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002568
Xiao Guangrong5d163b12011-03-09 15:43:00 +08002569 slot = gfn_to_memslot_dirty_bitmap(vcpu, gfn, no_dirty_log);
Xiao Guangrong903816f2012-07-17 21:54:11 +08002570 if (!slot)
Xiao Guangrong6c8ee572012-08-03 15:37:54 +08002571 return KVM_PFN_ERR_FAULT;
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002572
Xiao Guangrong037d92d2012-08-21 10:59:12 +08002573 return gfn_to_pfn_memslot_atomic(slot, gfn);
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002574}
2575
2576static int direct_pte_prefetch_many(struct kvm_vcpu *vcpu,
2577 struct kvm_mmu_page *sp,
2578 u64 *start, u64 *end)
2579{
2580 struct page *pages[PTE_PREFETCH_NUM];
2581 unsigned access = sp->role.access;
2582 int i, ret;
2583 gfn_t gfn;
2584
2585 gfn = kvm_mmu_page_get_gfn(sp, start - sp->spt);
Xiao Guangrong5d163b12011-03-09 15:43:00 +08002586 if (!gfn_to_memslot_dirty_bitmap(vcpu, gfn, access & ACC_WRITE_MASK))
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002587 return -1;
2588
2589 ret = gfn_to_page_many_atomic(vcpu->kvm, gfn, pages, end - start);
2590 if (ret <= 0)
2591 return -1;
2592
2593 for (i = 0; i < ret; i++, gfn++, start++)
Xiao Guangrongf7616202013-02-05 15:27:27 +08002594 mmu_set_spte(vcpu, start, access, 0, NULL,
Xiao Guangrongc22885052013-01-08 14:36:04 +08002595 sp->role.level, gfn, page_to_pfn(pages[i]),
2596 true, true);
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002597
2598 return 0;
2599}
2600
2601static void __direct_pte_prefetch(struct kvm_vcpu *vcpu,
2602 struct kvm_mmu_page *sp, u64 *sptep)
2603{
2604 u64 *spte, *start = NULL;
2605 int i;
2606
2607 WARN_ON(!sp->role.direct);
2608
2609 i = (sptep - sp->spt) & ~(PTE_PREFETCH_NUM - 1);
2610 spte = sp->spt + i;
2611
2612 for (i = 0; i < PTE_PREFETCH_NUM; i++, spte++) {
Xiao Guangrongc3707952011-07-12 03:28:04 +08002613 if (is_shadow_present_pte(*spte) || spte == sptep) {
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002614 if (!start)
2615 continue;
2616 if (direct_pte_prefetch_many(vcpu, sp, start, spte) < 0)
2617 break;
2618 start = NULL;
2619 } else if (!start)
2620 start = spte;
2621 }
2622}
2623
2624static void direct_pte_prefetch(struct kvm_vcpu *vcpu, u64 *sptep)
2625{
2626 struct kvm_mmu_page *sp;
2627
2628 /*
2629 * Since it's no accessed bit on EPT, it's no way to
2630 * distinguish between actually accessed translations
2631 * and prefetched, so disable pte prefetch if EPT is
2632 * enabled.
2633 */
2634 if (!shadow_accessed_mask)
2635 return;
2636
2637 sp = page_header(__pa(sptep));
2638 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
2639 return;
2640
2641 __direct_pte_prefetch(vcpu, sp, sptep);
2642}
2643
Joerg Roedel4d9976b2008-02-07 13:47:42 +01002644static int __direct_map(struct kvm_vcpu *vcpu, gpa_t v, int write,
Xiao Guangrong2ec47392010-12-07 10:34:42 +08002645 int map_writable, int level, gfn_t gfn, pfn_t pfn,
2646 bool prefault)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002647{
Avi Kivity9f652d22008-12-25 14:54:25 +02002648 struct kvm_shadow_walk_iterator iterator;
2649 struct kvm_mmu_page *sp;
Xiao Guangrongb90a0e62011-07-12 03:25:56 +08002650 int emulate = 0;
Avi Kivity9f652d22008-12-25 14:54:25 +02002651 gfn_t pseudo_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002652
Marcelo Tosatti989c6b32013-12-19 15:28:51 -02002653 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
2654 return 0;
2655
Avi Kivity9f652d22008-12-25 14:54:25 +02002656 for_each_shadow_entry(vcpu, (u64)gfn << PAGE_SHIFT, iterator) {
Joerg Roedel852e3c12009-07-27 16:30:44 +02002657 if (iterator.level == level) {
Xiao Guangrongf7616202013-02-05 15:27:27 +08002658 mmu_set_spte(vcpu, iterator.sptep, ACC_ALL,
Xiao Guangrongc22885052013-01-08 14:36:04 +08002659 write, &emulate, level, gfn, pfn,
2660 prefault, map_writable);
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002661 direct_pte_prefetch(vcpu, iterator.sptep);
Avi Kivity9f652d22008-12-25 14:54:25 +02002662 ++vcpu->stat.pf_fixed;
2663 break;
2664 }
2665
Marcelo Tosatti404381c2014-02-24 13:59:32 -03002666 drop_large_spte(vcpu, iterator.sptep);
Xiao Guangrongc3707952011-07-12 03:28:04 +08002667 if (!is_shadow_present_pte(*iterator.sptep)) {
Lai Jiangshanc9fa0b32010-05-26 16:48:25 +08002668 u64 base_addr = iterator.addr;
2669
2670 base_addr &= PT64_LVL_ADDR_MASK(iterator.level);
2671 pseudo_gfn = base_addr >> PAGE_SHIFT;
Avi Kivity9f652d22008-12-25 14:54:25 +02002672 sp = kvm_mmu_get_page(vcpu, pseudo_gfn, iterator.addr,
2673 iterator.level - 1,
2674 1, ACC_ALL, iterator.sptep);
Avi Kivity9f652d22008-12-25 14:54:25 +02002675
Yang Zhang7a1638c2013-08-05 11:07:13 +03002676 link_shadow_page(iterator.sptep, sp, true);
Avi Kivity9f652d22008-12-25 14:54:25 +02002677 }
2678 }
Xiao Guangrongb90a0e62011-07-12 03:25:56 +08002679 return emulate;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002680}
2681
Huang Ying77db5cb2010-10-08 16:24:15 +08002682static void kvm_send_hwpoison_signal(unsigned long address, struct task_struct *tsk)
Huang Yingbf998152010-05-31 14:28:19 +08002683{
Huang Ying77db5cb2010-10-08 16:24:15 +08002684 siginfo_t info;
Huang Yingbf998152010-05-31 14:28:19 +08002685
Huang Ying77db5cb2010-10-08 16:24:15 +08002686 info.si_signo = SIGBUS;
2687 info.si_errno = 0;
2688 info.si_code = BUS_MCEERR_AR;
2689 info.si_addr = (void __user *)address;
2690 info.si_addr_lsb = PAGE_SHIFT;
2691
2692 send_sig_info(SIGBUS, &info, tsk);
Huang Yingbf998152010-05-31 14:28:19 +08002693}
2694
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002695static int kvm_handle_bad_page(struct kvm_vcpu *vcpu, gfn_t gfn, pfn_t pfn)
Huang Yingbf998152010-05-31 14:28:19 +08002696{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08002697 /*
2698 * Do not cache the mmio info caused by writing the readonly gfn
2699 * into the spte otherwise read access on readonly gfn also can
2700 * caused mmio page fault and treat it as mmio access.
2701 * Return 1 to tell kvm to emulate it.
2702 */
2703 if (pfn == KVM_PFN_ERR_RO_FAULT)
2704 return 1;
2705
Xiao Guangronge6c15022012-08-03 15:38:36 +08002706 if (pfn == KVM_PFN_ERR_HWPOISON) {
Xiao Guangrongbebb1062011-07-12 03:23:20 +08002707 kvm_send_hwpoison_signal(gfn_to_hva(vcpu->kvm, gfn), current);
Huang Yingbf998152010-05-31 14:28:19 +08002708 return 0;
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002709 }
Gleb Natapovedba23e2010-07-07 20:16:45 +03002710
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002711 return -EFAULT;
Huang Yingbf998152010-05-31 14:28:19 +08002712}
2713
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002714static void transparent_hugepage_adjust(struct kvm_vcpu *vcpu,
2715 gfn_t *gfnp, pfn_t *pfnp, int *levelp)
2716{
2717 pfn_t pfn = *pfnp;
2718 gfn_t gfn = *gfnp;
2719 int level = *levelp;
2720
2721 /*
2722 * Check if it's a transparent hugepage. If this would be an
2723 * hugetlbfs page, level wouldn't be set to
2724 * PT_PAGE_TABLE_LEVEL and there would be no adjustment done
2725 * here.
2726 */
Xiao Guangrong81c52c52012-10-16 20:10:59 +08002727 if (!is_error_noslot_pfn(pfn) && !kvm_is_mmio_pfn(pfn) &&
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002728 level == PT_PAGE_TABLE_LEVEL &&
2729 PageTransCompound(pfn_to_page(pfn)) &&
2730 !has_wrprotected_page(vcpu->kvm, gfn, PT_DIRECTORY_LEVEL)) {
2731 unsigned long mask;
2732 /*
2733 * mmu_notifier_retry was successful and we hold the
2734 * mmu_lock here, so the pmd can't become splitting
2735 * from under us, and in turn
2736 * __split_huge_page_refcount() can't run from under
2737 * us and we can safely transfer the refcount from
2738 * PG_tail to PG_head as we switch the pfn to tail to
2739 * head.
2740 */
2741 *levelp = level = PT_DIRECTORY_LEVEL;
2742 mask = KVM_PAGES_PER_HPAGE(level) - 1;
2743 VM_BUG_ON((gfn & mask) != (pfn & mask));
2744 if (pfn & mask) {
2745 gfn &= ~mask;
2746 *gfnp = gfn;
2747 kvm_release_pfn_clean(pfn);
2748 pfn &= ~mask;
Xiao Guangrongc3586662012-05-28 14:10:43 +08002749 kvm_get_pfn(pfn);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002750 *pfnp = pfn;
2751 }
2752 }
2753}
2754
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002755static bool handle_abnormal_pfn(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn,
2756 pfn_t pfn, unsigned access, int *ret_val)
2757{
2758 bool ret = true;
2759
2760 /* The pfn is invalid, report the error! */
Xiao Guangrong81c52c52012-10-16 20:10:59 +08002761 if (unlikely(is_error_pfn(pfn))) {
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002762 *ret_val = kvm_handle_bad_page(vcpu, gfn, pfn);
2763 goto exit;
2764 }
2765
Xiao Guangrongce88dec2011-07-12 03:33:44 +08002766 if (unlikely(is_noslot_pfn(pfn)))
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002767 vcpu_cache_mmio_info(vcpu, gva, gfn, access);
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002768
2769 ret = false;
2770exit:
2771 return ret;
2772}
2773
Xiao Guangronge5552fd2013-07-30 21:01:59 +08002774static bool page_fault_can_be_fast(u32 error_code)
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002775{
2776 /*
Xiao Guangrong1c118b82013-07-18 12:52:37 +08002777 * Do not fix the mmio spte with invalid generation number which
2778 * need to be updated by slow page fault path.
2779 */
2780 if (unlikely(error_code & PFERR_RSVD_MASK))
2781 return false;
2782
2783 /*
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002784 * #PF can be fast only if the shadow page table is present and it
2785 * is caused by write-protect, that means we just need change the
2786 * W bit of the spte which can be done out of mmu-lock.
2787 */
2788 if (!(error_code & PFERR_PRESENT_MASK) ||
2789 !(error_code & PFERR_WRITE_MASK))
2790 return false;
2791
2792 return true;
2793}
2794
2795static bool
Xiao Guangrong92a476c2014-04-17 17:06:13 +08002796fast_pf_fix_direct_spte(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
2797 u64 *sptep, u64 spte)
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002798{
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002799 gfn_t gfn;
2800
2801 WARN_ON(!sp->role.direct);
2802
2803 /*
2804 * The gfn of direct spte is stable since it is calculated
2805 * by sp->gfn.
2806 */
2807 gfn = kvm_mmu_page_get_gfn(sp, sptep - sp->spt);
2808
2809 if (cmpxchg64(sptep, spte, spte | PT_WRITABLE_MASK) == spte)
2810 mark_page_dirty(vcpu->kvm, gfn);
2811
2812 return true;
2813}
2814
2815/*
2816 * Return value:
2817 * - true: let the vcpu to access on the same address again.
2818 * - false: let the real page fault path to fix it.
2819 */
2820static bool fast_page_fault(struct kvm_vcpu *vcpu, gva_t gva, int level,
2821 u32 error_code)
2822{
2823 struct kvm_shadow_walk_iterator iterator;
Xiao Guangrong92a476c2014-04-17 17:06:13 +08002824 struct kvm_mmu_page *sp;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002825 bool ret = false;
2826 u64 spte = 0ull;
2827
Marcelo Tosatti37f6a4e2014-01-03 17:09:32 -02002828 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
2829 return false;
2830
Xiao Guangronge5552fd2013-07-30 21:01:59 +08002831 if (!page_fault_can_be_fast(error_code))
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002832 return false;
2833
2834 walk_shadow_page_lockless_begin(vcpu);
2835 for_each_shadow_entry_lockless(vcpu, gva, iterator, spte)
2836 if (!is_shadow_present_pte(spte) || iterator.level < level)
2837 break;
2838
2839 /*
2840 * If the mapping has been changed, let the vcpu fault on the
2841 * same address again.
2842 */
2843 if (!is_rmap_spte(spte)) {
2844 ret = true;
2845 goto exit;
2846 }
2847
Xiao Guangrong92a476c2014-04-17 17:06:13 +08002848 sp = page_header(__pa(iterator.sptep));
2849 if (!is_last_spte(spte, sp->role.level))
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002850 goto exit;
2851
2852 /*
2853 * Check if it is a spurious fault caused by TLB lazily flushed.
2854 *
2855 * Need not check the access of upper level table entries since
2856 * they are always ACC_ALL.
2857 */
2858 if (is_writable_pte(spte)) {
2859 ret = true;
2860 goto exit;
2861 }
2862
2863 /*
2864 * Currently, to simplify the code, only the spte write-protected
2865 * by dirty-log can be fast fixed.
2866 */
2867 if (!spte_is_locklessly_modifiable(spte))
2868 goto exit;
2869
2870 /*
Xiao Guangrongc126d942014-04-17 17:06:14 +08002871 * Do not fix write-permission on the large spte since we only dirty
2872 * the first page into the dirty-bitmap in fast_pf_fix_direct_spte()
2873 * that means other pages are missed if its slot is dirty-logged.
2874 *
2875 * Instead, we let the slow page fault path create a normal spte to
2876 * fix the access.
2877 *
2878 * See the comments in kvm_arch_commit_memory_region().
2879 */
2880 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
2881 goto exit;
2882
2883 /*
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002884 * Currently, fast page fault only works for direct mapping since
2885 * the gfn is not stable for indirect shadow page.
2886 * See Documentation/virtual/kvm/locking.txt to get more detail.
2887 */
Xiao Guangrong92a476c2014-04-17 17:06:13 +08002888 ret = fast_pf_fix_direct_spte(vcpu, sp, iterator.sptep, spte);
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002889exit:
Xiao Guangronga72faf22012-06-20 15:59:41 +08002890 trace_fast_page_fault(vcpu, gva, error_code, iterator.sptep,
2891 spte, ret);
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002892 walk_shadow_page_lockless_end(vcpu);
2893
2894 return ret;
2895}
2896
Xiao Guangrong78b2c542010-12-07 10:48:06 +08002897static bool try_async_pf(struct kvm_vcpu *vcpu, bool prefault, gfn_t gfn,
Xiao Guangrong060c2ab2010-11-12 14:49:11 +08002898 gva_t gva, pfn_t *pfn, bool write, bool *writable);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09002899static void make_mmu_pages_available(struct kvm_vcpu *vcpu);
Xiao Guangrong060c2ab2010-11-12 14:49:11 +08002900
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002901static int nonpaging_map(struct kvm_vcpu *vcpu, gva_t v, u32 error_code,
2902 gfn_t gfn, bool prefault)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002903{
2904 int r;
Joerg Roedel852e3c12009-07-27 16:30:44 +02002905 int level;
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002906 int force_pt_level;
Anthony Liguori35149e22008-04-02 14:46:56 -05002907 pfn_t pfn;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02002908 unsigned long mmu_seq;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002909 bool map_writable, write = error_code & PFERR_WRITE_MASK;
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05002910
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002911 force_pt_level = mapping_level_dirty_bitmap(vcpu, gfn);
2912 if (likely(!force_pt_level)) {
2913 level = mapping_level(vcpu, gfn);
2914 /*
2915 * This path builds a PAE pagetable - so we can map
2916 * 2mb pages at maximum. Therefore check if the level
2917 * is larger than that.
2918 */
2919 if (level > PT_DIRECTORY_LEVEL)
2920 level = PT_DIRECTORY_LEVEL;
Joerg Roedel852e3c12009-07-27 16:30:44 +02002921
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002922 gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1);
2923 } else
2924 level = PT_PAGE_TABLE_LEVEL;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002925
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08002926 if (fast_page_fault(vcpu, v, level, error_code))
2927 return 0;
2928
Andrea Arcangelie930bff2008-07-25 16:24:52 +02002929 mmu_seq = vcpu->kvm->mmu_notifier_seq;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03002930 smp_rmb();
Xiao Guangrong060c2ab2010-11-12 14:49:11 +08002931
Xiao Guangrong78b2c542010-12-07 10:48:06 +08002932 if (try_async_pf(vcpu, prefault, gfn, v, &pfn, write, &map_writable))
Xiao Guangrong060c2ab2010-11-12 14:49:11 +08002933 return 0;
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05002934
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002935 if (handle_abnormal_pfn(vcpu, v, gfn, pfn, ACC_ALL, &r))
2936 return r;
Avi Kivityd196e342008-01-24 11:44:11 +02002937
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05002938 spin_lock(&vcpu->kvm->mmu_lock);
Christoffer Dall8ca40a72012-10-14 23:10:18 -04002939 if (mmu_notifier_retry(vcpu->kvm, mmu_seq))
Andrea Arcangelie930bff2008-07-25 16:24:52 +02002940 goto out_unlock;
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09002941 make_mmu_pages_available(vcpu);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002942 if (likely(!force_pt_level))
2943 transparent_hugepage_adjust(vcpu, &gfn, &pfn, &level);
Xiao Guangrong2ec47392010-12-07 10:34:42 +08002944 r = __direct_map(vcpu, v, write, map_writable, level, gfn, pfn,
2945 prefault);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05002946 spin_unlock(&vcpu->kvm->mmu_lock);
2947
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05002948
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002949 return r;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02002950
2951out_unlock:
2952 spin_unlock(&vcpu->kvm->mmu_lock);
2953 kvm_release_pfn_clean(pfn);
2954 return 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05002955}
2956
2957
Avi Kivity17ac10a2007-01-05 16:36:40 -08002958static void mmu_free_roots(struct kvm_vcpu *vcpu)
2959{
2960 int i;
Avi Kivity4db35312007-11-21 15:28:32 +02002961 struct kvm_mmu_page *sp;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002962 LIST_HEAD(invalid_list);
Avi Kivity17ac10a2007-01-05 16:36:40 -08002963
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002964 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
Avi Kivity7b53aa52007-06-05 12:17:03 +03002965 return;
Gleb Natapov35af5772013-05-16 11:55:51 +03002966
Joerg Roedel81407ca2010-09-10 17:31:00 +02002967 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL &&
2968 (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL ||
2969 vcpu->arch.mmu.direct_map)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002970 hpa_t root = vcpu->arch.mmu.root_hpa;
Avi Kivity17ac10a2007-01-05 16:36:40 -08002971
Gleb Natapov35af5772013-05-16 11:55:51 +03002972 spin_lock(&vcpu->kvm->mmu_lock);
Avi Kivity4db35312007-11-21 15:28:32 +02002973 sp = page_header(root);
2974 --sp->root_count;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002975 if (!sp->root_count && sp->role.invalid) {
2976 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, &invalid_list);
2977 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
2978 }
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05002979 spin_unlock(&vcpu->kvm->mmu_lock);
Gleb Natapov35af5772013-05-16 11:55:51 +03002980 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08002981 return;
2982 }
Gleb Natapov35af5772013-05-16 11:55:51 +03002983
2984 spin_lock(&vcpu->kvm->mmu_lock);
Avi Kivity17ac10a2007-01-05 16:36:40 -08002985 for (i = 0; i < 4; ++i) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002986 hpa_t root = vcpu->arch.mmu.pae_root[i];
Avi Kivity17ac10a2007-01-05 16:36:40 -08002987
Avi Kivity417726a2007-04-12 17:35:58 +03002988 if (root) {
Avi Kivity417726a2007-04-12 17:35:58 +03002989 root &= PT64_BASE_ADDR_MASK;
Avi Kivity4db35312007-11-21 15:28:32 +02002990 sp = page_header(root);
2991 --sp->root_count;
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05002992 if (!sp->root_count && sp->role.invalid)
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002993 kvm_mmu_prepare_zap_page(vcpu->kvm, sp,
2994 &invalid_list);
Avi Kivity417726a2007-04-12 17:35:58 +03002995 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08002996 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08002997 }
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002998 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05002999 spin_unlock(&vcpu->kvm->mmu_lock);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003000 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003001}
3002
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003003static int mmu_check_root(struct kvm_vcpu *vcpu, gfn_t root_gfn)
3004{
3005 int ret = 0;
3006
3007 if (!kvm_is_visible_gfn(vcpu->kvm, root_gfn)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03003008 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003009 ret = 1;
3010 }
3011
3012 return ret;
3013}
3014
Joerg Roedel651dd372010-09-10 17:30:59 +02003015static int mmu_alloc_direct_roots(struct kvm_vcpu *vcpu)
3016{
3017 struct kvm_mmu_page *sp;
Avi Kivity7ebaf152010-10-03 18:51:39 +02003018 unsigned i;
Joerg Roedel651dd372010-09-10 17:30:59 +02003019
3020 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
3021 spin_lock(&vcpu->kvm->mmu_lock);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003022 make_mmu_pages_available(vcpu);
Joerg Roedel651dd372010-09-10 17:30:59 +02003023 sp = kvm_mmu_get_page(vcpu, 0, 0, PT64_ROOT_LEVEL,
3024 1, ACC_ALL, NULL);
3025 ++sp->root_count;
3026 spin_unlock(&vcpu->kvm->mmu_lock);
3027 vcpu->arch.mmu.root_hpa = __pa(sp->spt);
3028 } else if (vcpu->arch.mmu.shadow_root_level == PT32E_ROOT_LEVEL) {
3029 for (i = 0; i < 4; ++i) {
3030 hpa_t root = vcpu->arch.mmu.pae_root[i];
3031
3032 ASSERT(!VALID_PAGE(root));
3033 spin_lock(&vcpu->kvm->mmu_lock);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003034 make_mmu_pages_available(vcpu);
Avi Kivity649497d2010-12-28 12:09:07 +02003035 sp = kvm_mmu_get_page(vcpu, i << (30 - PAGE_SHIFT),
3036 i << 30,
Joerg Roedel651dd372010-09-10 17:30:59 +02003037 PT32_ROOT_LEVEL, 1, ACC_ALL,
3038 NULL);
3039 root = __pa(sp->spt);
3040 ++sp->root_count;
3041 spin_unlock(&vcpu->kvm->mmu_lock);
3042 vcpu->arch.mmu.pae_root[i] = root | PT_PRESENT_MASK;
Joerg Roedel651dd372010-09-10 17:30:59 +02003043 }
Xiao Guangrong62927572010-09-27 18:02:12 +08003044 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
Joerg Roedel651dd372010-09-10 17:30:59 +02003045 } else
3046 BUG();
3047
3048 return 0;
3049}
3050
3051static int mmu_alloc_shadow_roots(struct kvm_vcpu *vcpu)
Avi Kivity17ac10a2007-01-05 16:36:40 -08003052{
Avi Kivity4db35312007-11-21 15:28:32 +02003053 struct kvm_mmu_page *sp;
Joerg Roedel81407ca2010-09-10 17:31:00 +02003054 u64 pdptr, pm_mask;
3055 gfn_t root_gfn;
3056 int i;
Avi Kivity3bb65a22007-01-05 16:36:51 -08003057
Joerg Roedel5777ed32010-09-10 17:30:42 +02003058 root_gfn = vcpu->arch.mmu.get_cr3(vcpu) >> PAGE_SHIFT;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003059
Joerg Roedel651dd372010-09-10 17:30:59 +02003060 if (mmu_check_root(vcpu, root_gfn))
3061 return 1;
3062
3063 /*
3064 * Do we shadow a long mode page table? If so we need to
3065 * write-protect the guests page table root.
3066 */
3067 if (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003068 hpa_t root = vcpu->arch.mmu.root_hpa;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003069
3070 ASSERT(!VALID_PAGE(root));
Joerg Roedel651dd372010-09-10 17:30:59 +02003071
Avi Kivity8facbbf2010-05-04 12:58:32 +03003072 spin_lock(&vcpu->kvm->mmu_lock);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003073 make_mmu_pages_available(vcpu);
Joerg Roedel651dd372010-09-10 17:30:59 +02003074 sp = kvm_mmu_get_page(vcpu, root_gfn, 0, PT64_ROOT_LEVEL,
3075 0, ACC_ALL, NULL);
Avi Kivity4db35312007-11-21 15:28:32 +02003076 root = __pa(sp->spt);
3077 ++sp->root_count;
Avi Kivity8facbbf2010-05-04 12:58:32 +03003078 spin_unlock(&vcpu->kvm->mmu_lock);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003079 vcpu->arch.mmu.root_hpa = root;
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003080 return 0;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003081 }
Joerg Roedelf87f9282010-09-02 17:29:45 +02003082
Joerg Roedel651dd372010-09-10 17:30:59 +02003083 /*
3084 * We shadow a 32 bit page table. This may be a legacy 2-level
Joerg Roedel81407ca2010-09-10 17:31:00 +02003085 * or a PAE 3-level page table. In either case we need to be aware that
3086 * the shadow page table may be a PAE or a long mode page table.
Joerg Roedel651dd372010-09-10 17:30:59 +02003087 */
Joerg Roedel81407ca2010-09-10 17:31:00 +02003088 pm_mask = PT_PRESENT_MASK;
3089 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL)
3090 pm_mask |= PT_ACCESSED_MASK | PT_WRITABLE_MASK | PT_USER_MASK;
3091
Avi Kivity17ac10a2007-01-05 16:36:40 -08003092 for (i = 0; i < 4; ++i) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003093 hpa_t root = vcpu->arch.mmu.pae_root[i];
Avi Kivity17ac10a2007-01-05 16:36:40 -08003094
3095 ASSERT(!VALID_PAGE(root));
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003096 if (vcpu->arch.mmu.root_level == PT32E_ROOT_LEVEL) {
Avi Kivitye4e517b2011-07-28 11:36:17 +03003097 pdptr = vcpu->arch.mmu.get_pdptr(vcpu, i);
Avi Kivity43a37952009-06-10 14:12:05 +03003098 if (!is_present_gpte(pdptr)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003099 vcpu->arch.mmu.pae_root[i] = 0;
Avi Kivity417726a2007-04-12 17:35:58 +03003100 continue;
3101 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003102 root_gfn = pdptr >> PAGE_SHIFT;
Joerg Roedelf87f9282010-09-02 17:29:45 +02003103 if (mmu_check_root(vcpu, root_gfn))
3104 return 1;
Eric Northup5a7388c2010-04-26 17:00:05 -07003105 }
Avi Kivity8facbbf2010-05-04 12:58:32 +03003106 spin_lock(&vcpu->kvm->mmu_lock);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003107 make_mmu_pages_available(vcpu);
Avi Kivity4db35312007-11-21 15:28:32 +02003108 sp = kvm_mmu_get_page(vcpu, root_gfn, i << 30,
Joerg Roedel651dd372010-09-10 17:30:59 +02003109 PT32_ROOT_LEVEL, 0,
Avi Kivityf7d9c7b2008-02-26 22:12:10 +02003110 ACC_ALL, NULL);
Avi Kivity4db35312007-11-21 15:28:32 +02003111 root = __pa(sp->spt);
3112 ++sp->root_count;
Avi Kivity8facbbf2010-05-04 12:58:32 +03003113 spin_unlock(&vcpu->kvm->mmu_lock);
3114
Joerg Roedel81407ca2010-09-10 17:31:00 +02003115 vcpu->arch.mmu.pae_root[i] = root | pm_mask;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003116 }
Xiao Guangrong62927572010-09-27 18:02:12 +08003117 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
Joerg Roedel81407ca2010-09-10 17:31:00 +02003118
3119 /*
3120 * If we shadow a 32 bit page table with a long mode page
3121 * table we enter this path.
3122 */
3123 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
3124 if (vcpu->arch.mmu.lm_root == NULL) {
3125 /*
3126 * The additional page necessary for this is only
3127 * allocated on demand.
3128 */
3129
3130 u64 *lm_root;
3131
3132 lm_root = (void*)get_zeroed_page(GFP_KERNEL);
3133 if (lm_root == NULL)
3134 return 1;
3135
3136 lm_root[0] = __pa(vcpu->arch.mmu.pae_root) | pm_mask;
3137
3138 vcpu->arch.mmu.lm_root = lm_root;
3139 }
3140
3141 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.lm_root);
3142 }
3143
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003144 return 0;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003145}
3146
Joerg Roedel651dd372010-09-10 17:30:59 +02003147static int mmu_alloc_roots(struct kvm_vcpu *vcpu)
3148{
3149 if (vcpu->arch.mmu.direct_map)
3150 return mmu_alloc_direct_roots(vcpu);
3151 else
3152 return mmu_alloc_shadow_roots(vcpu);
3153}
3154
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003155static void mmu_sync_roots(struct kvm_vcpu *vcpu)
3156{
3157 int i;
3158 struct kvm_mmu_page *sp;
3159
Joerg Roedel81407ca2010-09-10 17:31:00 +02003160 if (vcpu->arch.mmu.direct_map)
3161 return;
3162
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003163 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3164 return;
Xiao Guangrong69030742010-09-27 18:09:29 +08003165
Xiao Guangrongbebb1062011-07-12 03:23:20 +08003166 vcpu_clear_mmio_info(vcpu, ~0ul);
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08003167 kvm_mmu_audit(vcpu, AUDIT_PRE_SYNC);
Joerg Roedel81407ca2010-09-10 17:31:00 +02003168 if (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL) {
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003169 hpa_t root = vcpu->arch.mmu.root_hpa;
3170 sp = page_header(root);
3171 mmu_sync_children(vcpu, sp);
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08003172 kvm_mmu_audit(vcpu, AUDIT_POST_SYNC);
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003173 return;
3174 }
3175 for (i = 0; i < 4; ++i) {
3176 hpa_t root = vcpu->arch.mmu.pae_root[i];
3177
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003178 if (root && VALID_PAGE(root)) {
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003179 root &= PT64_BASE_ADDR_MASK;
3180 sp = page_header(root);
3181 mmu_sync_children(vcpu, sp);
3182 }
3183 }
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08003184 kvm_mmu_audit(vcpu, AUDIT_POST_SYNC);
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003185}
3186
3187void kvm_mmu_sync_roots(struct kvm_vcpu *vcpu)
3188{
3189 spin_lock(&vcpu->kvm->mmu_lock);
3190 mmu_sync_roots(vcpu);
3191 spin_unlock(&vcpu->kvm->mmu_lock);
3192}
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03003193EXPORT_SYMBOL_GPL(kvm_mmu_sync_roots);
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003194
Gleb Natapov1871c602010-02-10 14:21:32 +02003195static gpa_t nonpaging_gva_to_gpa(struct kvm_vcpu *vcpu, gva_t vaddr,
Avi Kivityab9ae312010-11-22 17:53:26 +02003196 u32 access, struct x86_exception *exception)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003197{
Avi Kivityab9ae312010-11-22 17:53:26 +02003198 if (exception)
3199 exception->error_code = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003200 return vaddr;
3201}
3202
Joerg Roedel6539e732010-09-10 17:30:50 +02003203static gpa_t nonpaging_gva_to_gpa_nested(struct kvm_vcpu *vcpu, gva_t vaddr,
Avi Kivityab9ae312010-11-22 17:53:26 +02003204 u32 access,
3205 struct x86_exception *exception)
Joerg Roedel6539e732010-09-10 17:30:50 +02003206{
Avi Kivityab9ae312010-11-22 17:53:26 +02003207 if (exception)
3208 exception->error_code = 0;
Joerg Roedel6539e732010-09-10 17:30:50 +02003209 return vcpu->arch.nested_mmu.translate_gpa(vcpu, vaddr, access);
3210}
3211
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003212static bool quickly_check_mmio_pf(struct kvm_vcpu *vcpu, u64 addr, bool direct)
3213{
3214 if (direct)
3215 return vcpu_match_mmio_gpa(vcpu, addr);
3216
3217 return vcpu_match_mmio_gva(vcpu, addr);
3218}
3219
3220
3221/*
3222 * On direct hosts, the last spte is only allows two states
3223 * for mmio page fault:
3224 * - It is the mmio spte
3225 * - It is zapped or it is being zapped.
3226 *
3227 * This function completely checks the spte when the last spte
3228 * is not the mmio spte.
3229 */
3230static bool check_direct_spte_mmio_pf(u64 spte)
3231{
3232 return __check_direct_spte_mmio_pf(spte);
3233}
3234
3235static u64 walk_shadow_page_get_mmio_spte(struct kvm_vcpu *vcpu, u64 addr)
3236{
3237 struct kvm_shadow_walk_iterator iterator;
3238 u64 spte = 0ull;
3239
Marcelo Tosatti37f6a4e2014-01-03 17:09:32 -02003240 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3241 return spte;
3242
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003243 walk_shadow_page_lockless_begin(vcpu);
3244 for_each_shadow_entry_lockless(vcpu, addr, iterator, spte)
3245 if (!is_shadow_present_pte(spte))
3246 break;
3247 walk_shadow_page_lockless_end(vcpu);
3248
3249 return spte;
3250}
3251
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003252int handle_mmio_page_fault_common(struct kvm_vcpu *vcpu, u64 addr, bool direct)
3253{
3254 u64 spte;
3255
3256 if (quickly_check_mmio_pf(vcpu, addr, direct))
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08003257 return RET_MMIO_PF_EMULATE;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003258
3259 spte = walk_shadow_page_get_mmio_spte(vcpu, addr);
3260
3261 if (is_mmio_spte(spte)) {
3262 gfn_t gfn = get_mmio_spte_gfn(spte);
3263 unsigned access = get_mmio_spte_access(spte);
3264
Xiao Guangrongf8f55942013-06-07 16:51:26 +08003265 if (!check_mmio_spte(vcpu->kvm, spte))
3266 return RET_MMIO_PF_INVALID;
3267
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003268 if (direct)
3269 addr = 0;
Xiao Guangrong4f022642011-07-12 03:34:24 +08003270
3271 trace_handle_mmio_page_fault(addr, gfn, access);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003272 vcpu_cache_mmio_info(vcpu, addr, gfn, access);
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08003273 return RET_MMIO_PF_EMULATE;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003274 }
3275
3276 /*
3277 * It's ok if the gva is remapped by other cpus on shadow guest,
3278 * it's a BUG if the gfn is not a mmio page.
3279 */
3280 if (direct && !check_direct_spte_mmio_pf(spte))
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08003281 return RET_MMIO_PF_BUG;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003282
3283 /*
3284 * If the page table is zapped by other cpus, let CPU fault again on
3285 * the address.
3286 */
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08003287 return RET_MMIO_PF_RETRY;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003288}
3289EXPORT_SYMBOL_GPL(handle_mmio_page_fault_common);
3290
3291static int handle_mmio_page_fault(struct kvm_vcpu *vcpu, u64 addr,
3292 u32 error_code, bool direct)
3293{
3294 int ret;
3295
3296 ret = handle_mmio_page_fault_common(vcpu, addr, direct);
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08003297 WARN_ON(ret == RET_MMIO_PF_BUG);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003298 return ret;
3299}
3300
Avi Kivity6aa8b732006-12-10 02:21:36 -08003301static int nonpaging_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003302 u32 error_code, bool prefault)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003303{
Avi Kivitye8332402007-12-09 18:43:00 +02003304 gfn_t gfn;
Avi Kivitye2dec932007-01-05 16:36:54 -08003305 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003306
Harvey Harrisonb8688d52008-03-03 12:59:56 -08003307 pgprintk("%s: gva %lx error %x\n", __func__, gva, error_code);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003308
Xiao Guangrongf8f55942013-06-07 16:51:26 +08003309 if (unlikely(error_code & PFERR_RSVD_MASK)) {
3310 r = handle_mmio_page_fault(vcpu, gva, error_code, true);
3311
3312 if (likely(r != RET_MMIO_PF_INVALID))
3313 return r;
3314 }
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003315
Avi Kivitye2dec932007-01-05 16:36:54 -08003316 r = mmu_topup_memory_caches(vcpu);
3317 if (r)
3318 return r;
Avi Kivity714b93d2007-01-05 16:36:53 -08003319
Avi Kivity6aa8b732006-12-10 02:21:36 -08003320 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003321 ASSERT(VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003322
Avi Kivitye8332402007-12-09 18:43:00 +02003323 gfn = gva >> PAGE_SHIFT;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003324
Avi Kivitye8332402007-12-09 18:43:00 +02003325 return nonpaging_map(vcpu, gva & PAGE_MASK,
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003326 error_code, gfn, prefault);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003327}
3328
Jan Kiszka7e1fbea2010-10-20 15:18:02 +02003329static int kvm_arch_setup_async_pf(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn)
Gleb Natapovaf585b92010-10-14 11:22:46 +02003330{
3331 struct kvm_arch_async_pf arch;
Xiao Guangrongfb67e142010-12-07 10:35:25 +08003332
Gleb Natapov7c907052010-10-14 11:22:53 +02003333 arch.token = (vcpu->arch.apf.id++ << 12) | vcpu->vcpu_id;
Gleb Natapovaf585b92010-10-14 11:22:46 +02003334 arch.gfn = gfn;
Xiao Guangrongc4806ac2010-11-12 14:49:55 +08003335 arch.direct_map = vcpu->arch.mmu.direct_map;
Xiao Guangrongfb67e142010-12-07 10:35:25 +08003336 arch.cr3 = vcpu->arch.mmu.get_cr3(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003337
Dominik Dingele0ead412013-06-06 15:32:37 +02003338 return kvm_setup_async_pf(vcpu, gva, gfn_to_hva(vcpu->kvm, gfn), &arch);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003339}
3340
3341static bool can_do_async_pf(struct kvm_vcpu *vcpu)
3342{
3343 if (unlikely(!irqchip_in_kernel(vcpu->kvm) ||
3344 kvm_event_needs_reinjection(vcpu)))
3345 return false;
3346
3347 return kvm_x86_ops->interrupt_allowed(vcpu);
3348}
3349
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003350static bool try_async_pf(struct kvm_vcpu *vcpu, bool prefault, gfn_t gfn,
Marcelo Tosatti612819c2010-10-22 14:18:18 -02003351 gva_t gva, pfn_t *pfn, bool write, bool *writable)
Gleb Natapovaf585b92010-10-14 11:22:46 +02003352{
3353 bool async;
3354
Marcelo Tosatti612819c2010-10-22 14:18:18 -02003355 *pfn = gfn_to_pfn_async(vcpu->kvm, gfn, &async, write, writable);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003356
3357 if (!async)
3358 return false; /* *pfn has correct page already */
3359
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003360 if (!prefault && can_do_async_pf(vcpu)) {
Xiao Guangrongc9b263d2010-11-01 16:58:43 +08003361 trace_kvm_try_async_get_page(gva, gfn);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003362 if (kvm_find_async_pf_gfn(vcpu, gfn)) {
3363 trace_kvm_async_pf_doublefault(gva, gfn);
3364 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
3365 return true;
3366 } else if (kvm_arch_setup_async_pf(vcpu, gva, gfn))
3367 return true;
3368 }
3369
Marcelo Tosatti612819c2010-10-22 14:18:18 -02003370 *pfn = gfn_to_pfn_prot(vcpu->kvm, gfn, write, writable);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003371
3372 return false;
3373}
3374
Gleb Natapov56028d02010-10-17 18:13:42 +02003375static int tdp_page_fault(struct kvm_vcpu *vcpu, gva_t gpa, u32 error_code,
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003376 bool prefault)
Joerg Roedelfb72d162008-02-07 13:47:44 +01003377{
Anthony Liguori35149e22008-04-02 14:46:56 -05003378 pfn_t pfn;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003379 int r;
Joerg Roedel852e3c12009-07-27 16:30:44 +02003380 int level;
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003381 int force_pt_level;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03003382 gfn_t gfn = gpa >> PAGE_SHIFT;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003383 unsigned long mmu_seq;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02003384 int write = error_code & PFERR_WRITE_MASK;
3385 bool map_writable;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003386
3387 ASSERT(vcpu);
3388 ASSERT(VALID_PAGE(vcpu->arch.mmu.root_hpa));
3389
Xiao Guangrongf8f55942013-06-07 16:51:26 +08003390 if (unlikely(error_code & PFERR_RSVD_MASK)) {
3391 r = handle_mmio_page_fault(vcpu, gpa, error_code, true);
3392
3393 if (likely(r != RET_MMIO_PF_INVALID))
3394 return r;
3395 }
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003396
Joerg Roedelfb72d162008-02-07 13:47:44 +01003397 r = mmu_topup_memory_caches(vcpu);
3398 if (r)
3399 return r;
3400
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003401 force_pt_level = mapping_level_dirty_bitmap(vcpu, gfn);
3402 if (likely(!force_pt_level)) {
3403 level = mapping_level(vcpu, gfn);
3404 gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1);
3405 } else
3406 level = PT_PAGE_TABLE_LEVEL;
Joerg Roedel852e3c12009-07-27 16:30:44 +02003407
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003408 if (fast_page_fault(vcpu, gpa, level, error_code))
3409 return 0;
3410
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003411 mmu_seq = vcpu->kvm->mmu_notifier_seq;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03003412 smp_rmb();
Gleb Natapovaf585b92010-10-14 11:22:46 +02003413
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003414 if (try_async_pf(vcpu, prefault, gfn, gpa, &pfn, write, &map_writable))
Gleb Natapovaf585b92010-10-14 11:22:46 +02003415 return 0;
3416
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003417 if (handle_abnormal_pfn(vcpu, 0, gfn, pfn, ACC_ALL, &r))
3418 return r;
3419
Joerg Roedelfb72d162008-02-07 13:47:44 +01003420 spin_lock(&vcpu->kvm->mmu_lock);
Christoffer Dall8ca40a72012-10-14 23:10:18 -04003421 if (mmu_notifier_retry(vcpu->kvm, mmu_seq))
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003422 goto out_unlock;
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003423 make_mmu_pages_available(vcpu);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003424 if (likely(!force_pt_level))
3425 transparent_hugepage_adjust(vcpu, &gfn, &pfn, &level);
Marcelo Tosatti612819c2010-10-22 14:18:18 -02003426 r = __direct_map(vcpu, gpa, write, map_writable,
Xiao Guangrong2ec47392010-12-07 10:34:42 +08003427 level, gfn, pfn, prefault);
Joerg Roedelfb72d162008-02-07 13:47:44 +01003428 spin_unlock(&vcpu->kvm->mmu_lock);
Joerg Roedelfb72d162008-02-07 13:47:44 +01003429
3430 return r;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003431
3432out_unlock:
3433 spin_unlock(&vcpu->kvm->mmu_lock);
3434 kvm_release_pfn_clean(pfn);
3435 return 0;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003436}
3437
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003438static void nonpaging_init_context(struct kvm_vcpu *vcpu,
3439 struct kvm_mmu *context)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003440{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003441 context->page_fault = nonpaging_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003442 context->gva_to_gpa = nonpaging_gva_to_gpa;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03003443 context->sync_page = nonpaging_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03003444 context->invlpg = nonpaging_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08003445 context->update_pte = nonpaging_update_pte;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08003446 context->root_level = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003447 context->shadow_root_level = PT32E_ROOT_LEVEL;
Avi Kivity17c3ba92007-06-04 15:58:30 +03003448 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02003449 context->direct_map = true;
Joerg Roedel2d48a982010-09-10 17:31:01 +02003450 context->nx = false;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003451}
3452
Avi Kivityd835dfe2007-11-21 02:57:59 +02003453void kvm_mmu_flush_tlb(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003454{
Avi Kivity1165f5f2007-04-19 17:27:43 +03003455 ++vcpu->stat.tlb_flush;
Avi Kivitya8eeb042010-05-10 12:34:53 +03003456 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003457}
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03003458EXPORT_SYMBOL_GPL(kvm_mmu_flush_tlb);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003459
Paolo Bonzinid8d173d2013-10-02 16:56:11 +02003460void kvm_mmu_new_cr3(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003461{
Avi Kivitycea0f0e2007-01-05 16:36:43 -08003462 mmu_free_roots(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003463}
3464
Joerg Roedel5777ed32010-09-10 17:30:42 +02003465static unsigned long get_cr3(struct kvm_vcpu *vcpu)
3466{
Avi Kivity9f8fe502010-12-05 17:30:00 +02003467 return kvm_read_cr3(vcpu);
Joerg Roedel5777ed32010-09-10 17:30:42 +02003468}
3469
Avi Kivity6389ee92010-11-29 16:12:30 +02003470static void inject_page_fault(struct kvm_vcpu *vcpu,
3471 struct x86_exception *fault)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003472{
Avi Kivity6389ee92010-11-29 16:12:30 +02003473 vcpu->arch.mmu.inject_page_fault(vcpu, fault);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003474}
3475
Xiao Guangrongf2fd1252013-06-07 16:51:24 +08003476static bool sync_mmio_spte(struct kvm *kvm, u64 *sptep, gfn_t gfn,
3477 unsigned access, int *nr_present)
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003478{
3479 if (unlikely(is_mmio_spte(*sptep))) {
3480 if (gfn != get_mmio_spte_gfn(*sptep)) {
3481 mmu_spte_clear_no_track(sptep);
3482 return true;
3483 }
3484
3485 (*nr_present)++;
Xiao Guangrongf2fd1252013-06-07 16:51:24 +08003486 mark_mmio_spte(kvm, sptep, gfn, access);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003487 return true;
3488 }
3489
3490 return false;
3491}
3492
Avi Kivity6fd01b72012-09-12 20:46:56 +03003493static inline bool is_last_gpte(struct kvm_mmu *mmu, unsigned level, unsigned gpte)
3494{
3495 unsigned index;
3496
3497 index = level - 1;
3498 index |= (gpte & PT_PAGE_SIZE_MASK) >> (PT_PAGE_SIZE_SHIFT - 2);
3499 return mmu->last_pte_bitmap & (1 << index);
3500}
3501
Nadav Har'El37406aa2013-08-05 11:07:12 +03003502#define PTTYPE_EPT 18 /* arbitrary */
3503#define PTTYPE PTTYPE_EPT
3504#include "paging_tmpl.h"
3505#undef PTTYPE
3506
Avi Kivity6aa8b732006-12-10 02:21:36 -08003507#define PTTYPE 64
3508#include "paging_tmpl.h"
3509#undef PTTYPE
3510
3511#define PTTYPE 32
3512#include "paging_tmpl.h"
3513#undef PTTYPE
3514
Joerg Roedel52fde8d2010-09-10 17:30:44 +02003515static void reset_rsvds_bits_mask(struct kvm_vcpu *vcpu,
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01003516 struct kvm_mmu *context)
Dong, Eddie82725b22009-03-30 16:21:08 +08003517{
Dong, Eddie82725b22009-03-30 16:21:08 +08003518 int maxphyaddr = cpuid_maxphyaddr(vcpu);
3519 u64 exb_bit_rsvd = 0;
Nadav Amit5f7dde72014-05-07 15:32:50 +03003520 u64 gbpages_bit_rsvd = 0;
Dong, Eddie82725b22009-03-30 16:21:08 +08003521
Yang Zhang25d92082013-08-06 12:00:32 +03003522 context->bad_mt_xwr = 0;
3523
Joerg Roedel2d48a982010-09-10 17:31:01 +02003524 if (!context->nx)
Dong, Eddie82725b22009-03-30 16:21:08 +08003525 exb_bit_rsvd = rsvd_bits(63, 63);
Nadav Amit5f7dde72014-05-07 15:32:50 +03003526 if (!guest_cpuid_has_gbpages(vcpu))
3527 gbpages_bit_rsvd = rsvd_bits(7, 7);
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01003528 switch (context->root_level) {
Dong, Eddie82725b22009-03-30 16:21:08 +08003529 case PT32_ROOT_LEVEL:
3530 /* no rsvd bits for 2 level 4K page table entries */
3531 context->rsvd_bits_mask[0][1] = 0;
3532 context->rsvd_bits_mask[0][0] = 0;
Xiao Guangrongf815bce2010-03-19 17:58:53 +08003533 context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[0][0];
3534
3535 if (!is_pse(vcpu)) {
3536 context->rsvd_bits_mask[1][1] = 0;
3537 break;
3538 }
3539
Dong, Eddie82725b22009-03-30 16:21:08 +08003540 if (is_cpuid_PSE36())
3541 /* 36bits PSE 4MB page */
3542 context->rsvd_bits_mask[1][1] = rsvd_bits(17, 21);
3543 else
3544 /* 32 bits PSE 4MB page */
3545 context->rsvd_bits_mask[1][1] = rsvd_bits(13, 21);
Dong, Eddie82725b22009-03-30 16:21:08 +08003546 break;
3547 case PT32E_ROOT_LEVEL:
Dong, Eddie20c466b2009-03-31 23:03:45 +08003548 context->rsvd_bits_mask[0][2] =
3549 rsvd_bits(maxphyaddr, 63) |
Nadav Amitcd9ae5f2014-04-04 06:31:04 +03003550 rsvd_bits(5, 8) | rsvd_bits(1, 2); /* PDPTE */
Dong, Eddie82725b22009-03-30 16:21:08 +08003551 context->rsvd_bits_mask[0][1] = exb_bit_rsvd |
Sheng Yang4c26b4c2009-04-02 10:28:37 +08003552 rsvd_bits(maxphyaddr, 62); /* PDE */
Dong, Eddie82725b22009-03-30 16:21:08 +08003553 context->rsvd_bits_mask[0][0] = exb_bit_rsvd |
3554 rsvd_bits(maxphyaddr, 62); /* PTE */
3555 context->rsvd_bits_mask[1][1] = exb_bit_rsvd |
3556 rsvd_bits(maxphyaddr, 62) |
3557 rsvd_bits(13, 20); /* large page */
Xiao Guangrongf815bce2010-03-19 17:58:53 +08003558 context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[0][0];
Dong, Eddie82725b22009-03-30 16:21:08 +08003559 break;
3560 case PT64_ROOT_LEVEL:
3561 context->rsvd_bits_mask[0][3] = exb_bit_rsvd |
Nadav Amitcd9ae5f2014-04-04 06:31:04 +03003562 rsvd_bits(maxphyaddr, 51) | rsvd_bits(7, 7);
Dong, Eddie82725b22009-03-30 16:21:08 +08003563 context->rsvd_bits_mask[0][2] = exb_bit_rsvd |
Nadav Amit5f7dde72014-05-07 15:32:50 +03003564 gbpages_bit_rsvd | rsvd_bits(maxphyaddr, 51);
Dong, Eddie82725b22009-03-30 16:21:08 +08003565 context->rsvd_bits_mask[0][1] = exb_bit_rsvd |
Sheng Yang4c26b4c2009-04-02 10:28:37 +08003566 rsvd_bits(maxphyaddr, 51);
Dong, Eddie82725b22009-03-30 16:21:08 +08003567 context->rsvd_bits_mask[0][0] = exb_bit_rsvd |
3568 rsvd_bits(maxphyaddr, 51);
3569 context->rsvd_bits_mask[1][3] = context->rsvd_bits_mask[0][3];
Joerg Roedele04da982009-07-27 16:30:45 +02003570 context->rsvd_bits_mask[1][2] = exb_bit_rsvd |
Nadav Amit5f7dde72014-05-07 15:32:50 +03003571 gbpages_bit_rsvd | rsvd_bits(maxphyaddr, 51) |
Joerg Roedele04da982009-07-27 16:30:45 +02003572 rsvd_bits(13, 29);
Dong, Eddie82725b22009-03-30 16:21:08 +08003573 context->rsvd_bits_mask[1][1] = exb_bit_rsvd |
Sheng Yang4c26b4c2009-04-02 10:28:37 +08003574 rsvd_bits(maxphyaddr, 51) |
3575 rsvd_bits(13, 20); /* large page */
Xiao Guangrongf815bce2010-03-19 17:58:53 +08003576 context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[0][0];
Dong, Eddie82725b22009-03-30 16:21:08 +08003577 break;
3578 }
3579}
3580
Yang Zhang25d92082013-08-06 12:00:32 +03003581static void reset_rsvds_bits_mask_ept(struct kvm_vcpu *vcpu,
3582 struct kvm_mmu *context, bool execonly)
3583{
3584 int maxphyaddr = cpuid_maxphyaddr(vcpu);
3585 int pte;
3586
3587 context->rsvd_bits_mask[0][3] =
3588 rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 7);
3589 context->rsvd_bits_mask[0][2] =
3590 rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 6);
3591 context->rsvd_bits_mask[0][1] =
3592 rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 6);
3593 context->rsvd_bits_mask[0][0] = rsvd_bits(maxphyaddr, 51);
3594
3595 /* large page */
3596 context->rsvd_bits_mask[1][3] = context->rsvd_bits_mask[0][3];
3597 context->rsvd_bits_mask[1][2] =
3598 rsvd_bits(maxphyaddr, 51) | rsvd_bits(12, 29);
3599 context->rsvd_bits_mask[1][1] =
3600 rsvd_bits(maxphyaddr, 51) | rsvd_bits(12, 20);
3601 context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[0][0];
3602
3603 for (pte = 0; pte < 64; pte++) {
3604 int rwx_bits = pte & 7;
3605 int mt = pte >> 3;
3606 if (mt == 0x2 || mt == 0x3 || mt == 0x7 ||
3607 rwx_bits == 0x2 || rwx_bits == 0x6 ||
3608 (rwx_bits == 0x4 && !execonly))
3609 context->bad_mt_xwr |= (1ull << pte);
3610 }
3611}
3612
Feng Wu97ec8c02014-04-01 17:46:34 +08003613void update_permission_bitmask(struct kvm_vcpu *vcpu,
Yang Zhang25d92082013-08-06 12:00:32 +03003614 struct kvm_mmu *mmu, bool ept)
Avi Kivity97d64b72012-09-12 14:52:00 +03003615{
3616 unsigned bit, byte, pfec;
3617 u8 map;
Feng Wu66386ad2014-04-01 17:56:48 +08003618 bool fault, x, w, u, wf, uf, ff, smapf, cr4_smap, cr4_smep, smap = 0;
Avi Kivity97d64b72012-09-12 14:52:00 +03003619
Feng Wu66386ad2014-04-01 17:56:48 +08003620 cr4_smep = kvm_read_cr4_bits(vcpu, X86_CR4_SMEP);
Feng Wu97ec8c02014-04-01 17:46:34 +08003621 cr4_smap = kvm_read_cr4_bits(vcpu, X86_CR4_SMAP);
Avi Kivity97d64b72012-09-12 14:52:00 +03003622 for (byte = 0; byte < ARRAY_SIZE(mmu->permissions); ++byte) {
3623 pfec = byte << 1;
3624 map = 0;
3625 wf = pfec & PFERR_WRITE_MASK;
3626 uf = pfec & PFERR_USER_MASK;
3627 ff = pfec & PFERR_FETCH_MASK;
Feng Wu97ec8c02014-04-01 17:46:34 +08003628 /*
3629 * PFERR_RSVD_MASK bit is set in PFEC if the access is not
3630 * subject to SMAP restrictions, and cleared otherwise. The
3631 * bit is only meaningful if the SMAP bit is set in CR4.
3632 */
3633 smapf = !(pfec & PFERR_RSVD_MASK);
Avi Kivity97d64b72012-09-12 14:52:00 +03003634 for (bit = 0; bit < 8; ++bit) {
3635 x = bit & ACC_EXEC_MASK;
3636 w = bit & ACC_WRITE_MASK;
3637 u = bit & ACC_USER_MASK;
3638
Yang Zhang25d92082013-08-06 12:00:32 +03003639 if (!ept) {
3640 /* Not really needed: !nx will cause pte.nx to fault */
3641 x |= !mmu->nx;
3642 /* Allow supervisor writes if !cr0.wp */
3643 w |= !is_write_protection(vcpu) && !uf;
3644 /* Disallow supervisor fetches of user code if cr4.smep */
Feng Wu66386ad2014-04-01 17:56:48 +08003645 x &= !(cr4_smep && u && !uf);
Feng Wu97ec8c02014-04-01 17:46:34 +08003646
3647 /*
3648 * SMAP:kernel-mode data accesses from user-mode
3649 * mappings should fault. A fault is considered
3650 * as a SMAP violation if all of the following
3651 * conditions are ture:
3652 * - X86_CR4_SMAP is set in CR4
3653 * - An user page is accessed
3654 * - Page fault in kernel mode
3655 * - if CPL = 3 or X86_EFLAGS_AC is clear
3656 *
3657 * Here, we cover the first three conditions.
3658 * The fourth is computed dynamically in
3659 * permission_fault() and is in smapf.
3660 *
3661 * Also, SMAP does not affect instruction
3662 * fetches, add the !ff check here to make it
3663 * clearer.
3664 */
3665 smap = cr4_smap && u && !uf && !ff;
Yang Zhang25d92082013-08-06 12:00:32 +03003666 } else
3667 /* Not really needed: no U/S accesses on ept */
3668 u = 1;
Avi Kivity97d64b72012-09-12 14:52:00 +03003669
Feng Wu97ec8c02014-04-01 17:46:34 +08003670 fault = (ff && !x) || (uf && !u) || (wf && !w) ||
3671 (smapf && smap);
Avi Kivity97d64b72012-09-12 14:52:00 +03003672 map |= fault << bit;
3673 }
3674 mmu->permissions[byte] = map;
3675 }
3676}
3677
Avi Kivity6fd01b72012-09-12 20:46:56 +03003678static void update_last_pte_bitmap(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu)
3679{
3680 u8 map;
3681 unsigned level, root_level = mmu->root_level;
3682 const unsigned ps_set_index = 1 << 2; /* bit 2 of index: ps */
3683
3684 if (root_level == PT32E_ROOT_LEVEL)
3685 --root_level;
3686 /* PT_PAGE_TABLE_LEVEL always terminates */
3687 map = 1 | (1 << ps_set_index);
3688 for (level = PT_DIRECTORY_LEVEL; level <= root_level; ++level) {
3689 if (level <= PT_PDPE_LEVEL
3690 && (mmu->root_level >= PT32E_ROOT_LEVEL || is_pse(vcpu)))
3691 map |= 1 << (ps_set_index | (level - 1));
3692 }
3693 mmu->last_pte_bitmap = map;
3694}
3695
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003696static void paging64_init_context_common(struct kvm_vcpu *vcpu,
3697 struct kvm_mmu *context,
3698 int level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003699{
Joerg Roedel2d48a982010-09-10 17:31:01 +02003700 context->nx = is_nx(vcpu);
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01003701 context->root_level = level;
Joerg Roedel2d48a982010-09-10 17:31:01 +02003702
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01003703 reset_rsvds_bits_mask(vcpu, context);
Yang Zhang25d92082013-08-06 12:00:32 +03003704 update_permission_bitmask(vcpu, context, false);
Avi Kivity6fd01b72012-09-12 20:46:56 +03003705 update_last_pte_bitmap(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003706
3707 ASSERT(is_pae(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003708 context->page_fault = paging64_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003709 context->gva_to_gpa = paging64_gva_to_gpa;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03003710 context->sync_page = paging64_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03003711 context->invlpg = paging64_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08003712 context->update_pte = paging64_update_pte;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003713 context->shadow_root_level = level;
Avi Kivity17c3ba92007-06-04 15:58:30 +03003714 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02003715 context->direct_map = false;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003716}
3717
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003718static void paging64_init_context(struct kvm_vcpu *vcpu,
3719 struct kvm_mmu *context)
Avi Kivity17ac10a2007-01-05 16:36:40 -08003720{
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003721 paging64_init_context_common(vcpu, context, PT64_ROOT_LEVEL);
Avi Kivity17ac10a2007-01-05 16:36:40 -08003722}
3723
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003724static void paging32_init_context(struct kvm_vcpu *vcpu,
3725 struct kvm_mmu *context)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003726{
Joerg Roedel2d48a982010-09-10 17:31:01 +02003727 context->nx = false;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01003728 context->root_level = PT32_ROOT_LEVEL;
Joerg Roedel2d48a982010-09-10 17:31:01 +02003729
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01003730 reset_rsvds_bits_mask(vcpu, context);
Yang Zhang25d92082013-08-06 12:00:32 +03003731 update_permission_bitmask(vcpu, context, false);
Avi Kivity6fd01b72012-09-12 20:46:56 +03003732 update_last_pte_bitmap(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003733
Avi Kivity6aa8b732006-12-10 02:21:36 -08003734 context->page_fault = paging32_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003735 context->gva_to_gpa = paging32_gva_to_gpa;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03003736 context->sync_page = paging32_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03003737 context->invlpg = paging32_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08003738 context->update_pte = paging32_update_pte;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003739 context->shadow_root_level = PT32E_ROOT_LEVEL;
Avi Kivity17c3ba92007-06-04 15:58:30 +03003740 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02003741 context->direct_map = false;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003742}
3743
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003744static void paging32E_init_context(struct kvm_vcpu *vcpu,
3745 struct kvm_mmu *context)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003746{
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003747 paging64_init_context_common(vcpu, context, PT32E_ROOT_LEVEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003748}
3749
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003750static void init_kvm_tdp_mmu(struct kvm_vcpu *vcpu)
Joerg Roedelfb72d162008-02-07 13:47:44 +01003751{
Joerg Roedel14dfe852010-09-10 17:30:49 +02003752 struct kvm_mmu *context = vcpu->arch.walk_mmu;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003753
Avi Kivityc445f8e2010-12-21 16:26:01 +02003754 context->base_role.word = 0;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003755 context->page_fault = tdp_page_fault;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03003756 context->sync_page = nonpaging_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03003757 context->invlpg = nonpaging_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08003758 context->update_pte = nonpaging_update_pte;
Sheng Yang67253af2008-04-25 10:20:22 +08003759 context->shadow_root_level = kvm_x86_ops->get_tdp_level();
Joerg Roedelfb72d162008-02-07 13:47:44 +01003760 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02003761 context->direct_map = true;
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02003762 context->set_cr3 = kvm_x86_ops->set_tdp_cr3;
Joerg Roedel5777ed32010-09-10 17:30:42 +02003763 context->get_cr3 = get_cr3;
Avi Kivitye4e517b2011-07-28 11:36:17 +03003764 context->get_pdptr = kvm_pdptr_read;
Joerg Roedelcb659db2010-09-10 17:30:43 +02003765 context->inject_page_fault = kvm_inject_page_fault;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003766
3767 if (!is_paging(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02003768 context->nx = false;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003769 context->gva_to_gpa = nonpaging_gva_to_gpa;
3770 context->root_level = 0;
3771 } else if (is_long_mode(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02003772 context->nx = is_nx(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01003773 context->root_level = PT64_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01003774 reset_rsvds_bits_mask(vcpu, context);
3775 context->gva_to_gpa = paging64_gva_to_gpa;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003776 } else if (is_pae(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02003777 context->nx = is_nx(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01003778 context->root_level = PT32E_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01003779 reset_rsvds_bits_mask(vcpu, context);
3780 context->gva_to_gpa = paging64_gva_to_gpa;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003781 } else {
Joerg Roedel2d48a982010-09-10 17:31:01 +02003782 context->nx = false;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003783 context->root_level = PT32_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01003784 reset_rsvds_bits_mask(vcpu, context);
3785 context->gva_to_gpa = paging32_gva_to_gpa;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003786 }
3787
Yang Zhang25d92082013-08-06 12:00:32 +03003788 update_permission_bitmask(vcpu, context, false);
Avi Kivity6fd01b72012-09-12 20:46:56 +03003789 update_last_pte_bitmap(vcpu, context);
Joerg Roedelfb72d162008-02-07 13:47:44 +01003790}
3791
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003792void kvm_init_shadow_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *context)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003793{
Avi Kivity411c5882011-06-06 16:11:54 +03003794 bool smep = kvm_read_cr4_bits(vcpu, X86_CR4_SMEP);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003795 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003796 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003797
3798 if (!is_paging(vcpu))
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003799 nonpaging_init_context(vcpu, context);
Avi Kivitya9058ec2006-12-29 16:49:37 -08003800 else if (is_long_mode(vcpu))
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003801 paging64_init_context(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003802 else if (is_pae(vcpu))
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003803 paging32E_init_context(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003804 else
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003805 paging32_init_context(vcpu, context);
Avi Kivitya770f6f2008-12-21 19:20:09 +02003806
Gleb Natapov2c9afa52013-01-30 16:45:02 +02003807 vcpu->arch.mmu.base_role.nxe = is_nx(vcpu);
Avi Kivity5b7e0102010-04-14 19:20:03 +03003808 vcpu->arch.mmu.base_role.cr4_pae = !!is_pae(vcpu);
Joerg Roedelf43addd2010-09-10 17:30:40 +02003809 vcpu->arch.mmu.base_role.cr0_wp = is_write_protection(vcpu);
Avi Kivity411c5882011-06-06 16:11:54 +03003810 vcpu->arch.mmu.base_role.smep_andnot_wp
3811 = smep && !is_write_protection(vcpu);
Joerg Roedel52fde8d2010-09-10 17:30:44 +02003812}
3813EXPORT_SYMBOL_GPL(kvm_init_shadow_mmu);
3814
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003815void kvm_init_shadow_ept_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *context,
Nadav Har'El155a97a2013-08-05 11:07:16 +03003816 bool execonly)
3817{
3818 ASSERT(vcpu);
3819 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
3820
3821 context->shadow_root_level = kvm_x86_ops->get_tdp_level();
3822
3823 context->nx = true;
Nadav Har'El155a97a2013-08-05 11:07:16 +03003824 context->page_fault = ept_page_fault;
3825 context->gva_to_gpa = ept_gva_to_gpa;
3826 context->sync_page = ept_sync_page;
3827 context->invlpg = ept_invlpg;
3828 context->update_pte = ept_update_pte;
Nadav Har'El155a97a2013-08-05 11:07:16 +03003829 context->root_level = context->shadow_root_level;
3830 context->root_hpa = INVALID_PAGE;
3831 context->direct_map = false;
3832
3833 update_permission_bitmask(vcpu, context, true);
3834 reset_rsvds_bits_mask_ept(vcpu, context, execonly);
Nadav Har'El155a97a2013-08-05 11:07:16 +03003835}
3836EXPORT_SYMBOL_GPL(kvm_init_shadow_ept_mmu);
3837
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003838static void init_kvm_softmmu(struct kvm_vcpu *vcpu)
Joerg Roedel52fde8d2010-09-10 17:30:44 +02003839{
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003840 kvm_init_shadow_mmu(vcpu, vcpu->arch.walk_mmu);
Joerg Roedel14dfe852010-09-10 17:30:49 +02003841 vcpu->arch.walk_mmu->set_cr3 = kvm_x86_ops->set_cr3;
3842 vcpu->arch.walk_mmu->get_cr3 = get_cr3;
Avi Kivitye4e517b2011-07-28 11:36:17 +03003843 vcpu->arch.walk_mmu->get_pdptr = kvm_pdptr_read;
Joerg Roedel14dfe852010-09-10 17:30:49 +02003844 vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003845}
3846
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003847static void init_kvm_nested_mmu(struct kvm_vcpu *vcpu)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02003848{
3849 struct kvm_mmu *g_context = &vcpu->arch.nested_mmu;
3850
3851 g_context->get_cr3 = get_cr3;
Avi Kivitye4e517b2011-07-28 11:36:17 +03003852 g_context->get_pdptr = kvm_pdptr_read;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02003853 g_context->inject_page_fault = kvm_inject_page_fault;
3854
3855 /*
3856 * Note that arch.mmu.gva_to_gpa translates l2_gva to l1_gpa. The
3857 * translation of l2_gpa to l1_gpa addresses is done using the
3858 * arch.nested_mmu.gva_to_gpa function. Basically the gva_to_gpa
3859 * functions between mmu and nested_mmu are swapped.
3860 */
3861 if (!is_paging(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02003862 g_context->nx = false;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02003863 g_context->root_level = 0;
3864 g_context->gva_to_gpa = nonpaging_gva_to_gpa_nested;
3865 } else if (is_long_mode(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02003866 g_context->nx = is_nx(vcpu);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02003867 g_context->root_level = PT64_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01003868 reset_rsvds_bits_mask(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02003869 g_context->gva_to_gpa = paging64_gva_to_gpa_nested;
3870 } else if (is_pae(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02003871 g_context->nx = is_nx(vcpu);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02003872 g_context->root_level = PT32E_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01003873 reset_rsvds_bits_mask(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02003874 g_context->gva_to_gpa = paging64_gva_to_gpa_nested;
3875 } else {
Joerg Roedel2d48a982010-09-10 17:31:01 +02003876 g_context->nx = false;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02003877 g_context->root_level = PT32_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01003878 reset_rsvds_bits_mask(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02003879 g_context->gva_to_gpa = paging32_gva_to_gpa_nested;
3880 }
3881
Yang Zhang25d92082013-08-06 12:00:32 +03003882 update_permission_bitmask(vcpu, g_context, false);
Avi Kivity6fd01b72012-09-12 20:46:56 +03003883 update_last_pte_bitmap(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02003884}
3885
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003886static void init_kvm_mmu(struct kvm_vcpu *vcpu)
Joerg Roedelfb72d162008-02-07 13:47:44 +01003887{
Joerg Roedel02f59dc2010-09-10 17:30:54 +02003888 if (mmu_is_nested(vcpu))
3889 return init_kvm_nested_mmu(vcpu);
3890 else if (tdp_enabled)
Joerg Roedelfb72d162008-02-07 13:47:44 +01003891 return init_kvm_tdp_mmu(vcpu);
3892 else
3893 return init_kvm_softmmu(vcpu);
3894}
3895
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003896void kvm_mmu_reset_context(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003897{
Paolo Bonzini95f93af2013-10-02 16:56:12 +02003898 ASSERT(vcpu);
3899
3900 kvm_mmu_unload(vcpu);
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003901 init_kvm_mmu(vcpu);
Avi Kivity17c3ba92007-06-04 15:58:30 +03003902}
Eddie Dong8668a3c2007-10-10 14:26:45 +08003903EXPORT_SYMBOL_GPL(kvm_mmu_reset_context);
Avi Kivity17c3ba92007-06-04 15:58:30 +03003904
3905int kvm_mmu_load(struct kvm_vcpu *vcpu)
3906{
Avi Kivity714b93d2007-01-05 16:36:53 -08003907 int r;
3908
Avi Kivitye2dec932007-01-05 16:36:54 -08003909 r = mmu_topup_memory_caches(vcpu);
Avi Kivity17c3ba92007-06-04 15:58:30 +03003910 if (r)
3911 goto out;
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003912 r = mmu_alloc_roots(vcpu);
Takuya Yoshikawae2858b42013-05-09 15:45:12 +09003913 kvm_mmu_sync_roots(vcpu);
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003914 if (r)
3915 goto out;
Sheng Yang3662cb12009-07-09 17:00:42 +08003916 /* set_cr3() should ensure TLB has been flushed */
Joerg Roedelf43addd2010-09-10 17:30:40 +02003917 vcpu->arch.mmu.set_cr3(vcpu, vcpu->arch.mmu.root_hpa);
Avi Kivity714b93d2007-01-05 16:36:53 -08003918out:
3919 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003920}
Avi Kivity17c3ba92007-06-04 15:58:30 +03003921EXPORT_SYMBOL_GPL(kvm_mmu_load);
3922
3923void kvm_mmu_unload(struct kvm_vcpu *vcpu)
3924{
3925 mmu_free_roots(vcpu);
Paolo Bonzini95f93af2013-10-02 16:56:12 +02003926 WARN_ON(VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity17c3ba92007-06-04 15:58:30 +03003927}
Joerg Roedel4b161842010-09-10 17:31:03 +02003928EXPORT_SYMBOL_GPL(kvm_mmu_unload);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003929
Avi Kivity00284252007-05-01 16:53:31 +03003930static void mmu_pte_write_new_pte(struct kvm_vcpu *vcpu,
Xiao Guangrong7c562522011-03-28 10:29:27 +08003931 struct kvm_mmu_page *sp, u64 *spte,
3932 const void *new)
Avi Kivity00284252007-05-01 16:53:31 +03003933{
Marcelo Tosatti30945382008-06-11 20:32:40 -03003934 if (sp->role.level != PT_PAGE_TABLE_LEVEL) {
Joerg Roedel7e4e4052009-07-27 16:30:46 +02003935 ++vcpu->kvm->stat.mmu_pde_zapped;
3936 return;
Marcelo Tosatti30945382008-06-11 20:32:40 -03003937 }
Avi Kivity00284252007-05-01 16:53:31 +03003938
Avi Kivity4cee5762007-11-18 16:37:07 +02003939 ++vcpu->kvm->stat.mmu_pte_updated;
Xiao Guangrong7c562522011-03-28 10:29:27 +08003940 vcpu->arch.mmu.update_pte(vcpu, sp, spte, new);
Avi Kivity00284252007-05-01 16:53:31 +03003941}
3942
Avi Kivity79539ce2007-11-21 02:06:21 +02003943static bool need_remote_flush(u64 old, u64 new)
3944{
3945 if (!is_shadow_present_pte(old))
3946 return false;
3947 if (!is_shadow_present_pte(new))
3948 return true;
3949 if ((old ^ new) & PT64_BASE_ADDR_MASK)
3950 return true;
Gleb Natapov53166222013-08-05 11:07:14 +03003951 old ^= shadow_nx_mask;
3952 new ^= shadow_nx_mask;
Avi Kivity79539ce2007-11-21 02:06:21 +02003953 return (old & ~new & PT64_PERM_MASK) != 0;
3954}
3955
Xiao Guangrong0671a8e2010-06-04 21:56:59 +08003956static void mmu_pte_write_flush_tlb(struct kvm_vcpu *vcpu, bool zap_page,
3957 bool remote_flush, bool local_flush)
Avi Kivity79539ce2007-11-21 02:06:21 +02003958{
Xiao Guangrong0671a8e2010-06-04 21:56:59 +08003959 if (zap_page)
3960 return;
3961
3962 if (remote_flush)
Avi Kivity79539ce2007-11-21 02:06:21 +02003963 kvm_flush_remote_tlbs(vcpu->kvm);
Xiao Guangrong0671a8e2010-06-04 21:56:59 +08003964 else if (local_flush)
Avi Kivity79539ce2007-11-21 02:06:21 +02003965 kvm_mmu_flush_tlb(vcpu);
3966}
3967
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08003968static u64 mmu_pte_write_fetch_gpte(struct kvm_vcpu *vcpu, gpa_t *gpa,
3969 const u8 *new, int *bytes)
Avi Kivityda4a00f2007-01-05 16:36:44 -08003970{
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08003971 u64 gentry;
3972 int r;
Avi Kivity72016f32010-03-15 13:59:53 +02003973
Avi Kivity08e850c2010-03-15 13:59:57 +02003974 /*
3975 * Assume that the pte write on a page table of the same type
Xiao Guangrong49b26e22011-03-04 19:00:00 +08003976 * as the current vcpu paging mode since we update the sptes only
3977 * when they have the same mode.
Avi Kivity08e850c2010-03-15 13:59:57 +02003978 */
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08003979 if (is_pae(vcpu) && *bytes == 4) {
Avi Kivity08e850c2010-03-15 13:59:57 +02003980 /* Handle a 32-bit guest writing two halves of a 64-bit gpte */
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08003981 *gpa &= ~(gpa_t)7;
3982 *bytes = 8;
Gleb Natapov116eb3d2013-01-30 16:45:03 +02003983 r = kvm_read_guest(vcpu->kvm, *gpa, &gentry, 8);
Avi Kivity08e850c2010-03-15 13:59:57 +02003984 if (r)
3985 gentry = 0;
3986 new = (const u8 *)&gentry;
3987 }
3988
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08003989 switch (*bytes) {
Avi Kivity72016f32010-03-15 13:59:53 +02003990 case 4:
3991 gentry = *(const u32 *)new;
3992 break;
3993 case 8:
3994 gentry = *(const u64 *)new;
3995 break;
3996 default:
3997 gentry = 0;
3998 break;
3999 }
4000
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004001 return gentry;
4002}
4003
4004/*
4005 * If we're seeing too many writes to a page, it may no longer be a page table,
4006 * or we may be forking, in which case it is better to unmap the page.
4007 */
Xiao Guangronga138fe72011-12-16 18:18:10 +08004008static bool detect_write_flooding(struct kvm_mmu_page *sp)
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004009{
Xiao Guangronga30f47c2011-09-22 16:58:36 +08004010 /*
4011 * Skip write-flooding detected for the sp whose level is 1, because
4012 * it can become unsync, then the guest page is not write-protected.
4013 */
Davidlohr Buesof71fa312012-04-18 12:24:29 +02004014 if (sp->role.level == PT_PAGE_TABLE_LEVEL)
Xiao Guangronga30f47c2011-09-22 16:58:36 +08004015 return false;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004016
Xiao Guangronga30f47c2011-09-22 16:58:36 +08004017 return ++sp->write_flooding_count >= 3;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004018}
4019
4020/*
4021 * Misaligned accesses are too much trouble to fix up; also, they usually
4022 * indicate a page is not used as a page table.
4023 */
4024static bool detect_write_misaligned(struct kvm_mmu_page *sp, gpa_t gpa,
4025 int bytes)
4026{
4027 unsigned offset, pte_size, misaligned;
4028
4029 pgprintk("misaligned: gpa %llx bytes %d role %x\n",
4030 gpa, bytes, sp->role.word);
4031
4032 offset = offset_in_page(gpa);
4033 pte_size = sp->role.cr4_pae ? 8 : 4;
Xiao Guangrong5d9ca302011-09-22 16:57:55 +08004034
4035 /*
4036 * Sometimes, the OS only writes the last one bytes to update status
4037 * bits, for example, in linux, andb instruction is used in clear_bit().
4038 */
4039 if (!(offset & (pte_size - 1)) && bytes == 1)
4040 return false;
4041
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004042 misaligned = (offset ^ (offset + bytes - 1)) & ~(pte_size - 1);
4043 misaligned |= bytes < 4;
4044
4045 return misaligned;
4046}
4047
4048static u64 *get_written_sptes(struct kvm_mmu_page *sp, gpa_t gpa, int *nspte)
4049{
4050 unsigned page_offset, quadrant;
4051 u64 *spte;
4052 int level;
4053
4054 page_offset = offset_in_page(gpa);
4055 level = sp->role.level;
4056 *nspte = 1;
4057 if (!sp->role.cr4_pae) {
4058 page_offset <<= 1; /* 32->64 */
4059 /*
4060 * A 32-bit pde maps 4MB while the shadow pdes map
4061 * only 2MB. So we need to double the offset again
4062 * and zap two pdes instead of one.
4063 */
4064 if (level == PT32_ROOT_LEVEL) {
4065 page_offset &= ~7; /* kill rounding error */
4066 page_offset <<= 1;
4067 *nspte = 2;
4068 }
4069 quadrant = page_offset >> PAGE_SHIFT;
4070 page_offset &= ~PAGE_MASK;
4071 if (quadrant != sp->role.quadrant)
4072 return NULL;
4073 }
4074
4075 spte = &sp->spt[page_offset / sizeof(*spte)];
4076 return spte;
4077}
4078
4079void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
4080 const u8 *new, int bytes)
4081{
4082 gfn_t gfn = gpa >> PAGE_SHIFT;
4083 union kvm_mmu_page_role mask = { .word = 0 };
4084 struct kvm_mmu_page *sp;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004085 LIST_HEAD(invalid_list);
4086 u64 entry, gentry, *spte;
4087 int npte;
Xiao Guangronga30f47c2011-09-22 16:58:36 +08004088 bool remote_flush, local_flush, zap_page;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004089
4090 /*
4091 * If we don't have indirect shadow pages, it means no page is
4092 * write-protected, so we can exit simply.
4093 */
4094 if (!ACCESS_ONCE(vcpu->kvm->arch.indirect_shadow_pages))
4095 return;
4096
4097 zap_page = remote_flush = local_flush = false;
4098
4099 pgprintk("%s: gpa %llx bytes %d\n", __func__, gpa, bytes);
4100
4101 gentry = mmu_pte_write_fetch_gpte(vcpu, &gpa, new, &bytes);
4102
4103 /*
4104 * No need to care whether allocation memory is successful
4105 * or not since pte prefetch is skiped if it does not have
4106 * enough objects in the cache.
4107 */
4108 mmu_topup_memory_caches(vcpu);
4109
4110 spin_lock(&vcpu->kvm->mmu_lock);
4111 ++vcpu->kvm->stat.mmu_pte_write;
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08004112 kvm_mmu_audit(vcpu, AUDIT_PRE_PTE_WRITE);
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004113
Xiao Guangrongfa1de2b2010-07-16 11:19:51 +08004114 mask.cr0_wp = mask.cr4_pae = mask.nxe = 1;
Sasha Levinb67bfe02013-02-27 17:06:00 -08004115 for_each_gfn_indirect_valid_sp(vcpu->kvm, sp, gfn) {
Xiao Guangronga30f47c2011-09-22 16:58:36 +08004116 if (detect_write_misaligned(sp, gpa, bytes) ||
Xiao Guangronga138fe72011-12-16 18:18:10 +08004117 detect_write_flooding(sp)) {
Xiao Guangrong0671a8e2010-06-04 21:56:59 +08004118 zap_page |= !!kvm_mmu_prepare_zap_page(vcpu->kvm, sp,
Xiao Guangrongf41d3352010-06-04 21:56:11 +08004119 &invalid_list);
Avi Kivity4cee5762007-11-18 16:37:07 +02004120 ++vcpu->kvm->stat.mmu_flooded;
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08004121 continue;
4122 }
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004123
4124 spte = get_written_sptes(sp, gpa, &npte);
4125 if (!spte)
4126 continue;
4127
Xiao Guangrong0671a8e2010-06-04 21:56:59 +08004128 local_flush = true;
Avi Kivityac1b7142007-03-08 17:13:32 +02004129 while (npte--) {
Avi Kivity79539ce2007-11-21 02:06:21 +02004130 entry = *spte;
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08004131 mmu_page_zap_pte(vcpu->kvm, sp, spte);
Xiao Guangrongfa1de2b2010-07-16 11:19:51 +08004132 if (gentry &&
4133 !((sp->role.word ^ vcpu->arch.mmu.base_role.word)
Xiao Guangrongf759e2b2011-09-22 16:53:17 +08004134 & mask.word) && rmap_can_add(vcpu))
Xiao Guangrong7c562522011-03-28 10:29:27 +08004135 mmu_pte_write_new_pte(vcpu, sp, spte, &gentry);
Gleb Natapov9bb4f6b2013-01-30 16:45:01 +02004136 if (need_remote_flush(entry, *spte))
Xiao Guangrong0671a8e2010-06-04 21:56:59 +08004137 remote_flush = true;
Avi Kivityac1b7142007-03-08 17:13:32 +02004138 ++spte;
Avi Kivity9b7a0322007-01-05 16:36:45 -08004139 }
Avi Kivity9b7a0322007-01-05 16:36:45 -08004140 }
Xiao Guangrong0671a8e2010-06-04 21:56:59 +08004141 mmu_pte_write_flush_tlb(vcpu, zap_page, remote_flush, local_flush);
Xiao Guangrongd98ba052010-06-04 21:55:29 +08004142 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08004143 kvm_mmu_audit(vcpu, AUDIT_POST_PTE_WRITE);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05004144 spin_unlock(&vcpu->kvm->mmu_lock);
Avi Kivityda4a00f2007-01-05 16:36:44 -08004145}
4146
Avi Kivitya4360362007-01-05 16:36:45 -08004147int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva)
4148{
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004149 gpa_t gpa;
4150 int r;
Avi Kivitya4360362007-01-05 16:36:45 -08004151
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02004152 if (vcpu->arch.mmu.direct_map)
Avi Kivity60f24782009-08-27 13:37:06 +03004153 return 0;
4154
Gleb Natapov1871c602010-02-10 14:21:32 +02004155 gpa = kvm_mmu_gva_to_gpa_read(vcpu, gva, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004156
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004157 r = kvm_mmu_unprotect_page(vcpu->kvm, gpa >> PAGE_SHIFT);
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004158
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004159 return r;
Avi Kivitya4360362007-01-05 16:36:45 -08004160}
Avi Kivity577bdc42008-07-19 08:57:05 +03004161EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page_virt);
Avi Kivitya4360362007-01-05 16:36:45 -08004162
Takuya Yoshikawa81f4f762013-03-21 19:34:27 +09004163static void make_mmu_pages_available(struct kvm_vcpu *vcpu)
Avi Kivityebeace82007-01-05 16:36:47 -08004164{
Xiao Guangrongd98ba052010-06-04 21:55:29 +08004165 LIST_HEAD(invalid_list);
Xiao Guangrong103ad252010-06-04 21:54:38 +08004166
Takuya Yoshikawa81f4f762013-03-21 19:34:27 +09004167 if (likely(kvm_mmu_available_pages(vcpu->kvm) >= KVM_MIN_FREE_MMU_PAGES))
4168 return;
4169
Takuya Yoshikawa5da59602013-03-06 16:06:58 +09004170 while (kvm_mmu_available_pages(vcpu->kvm) < KVM_REFILL_PAGES) {
4171 if (!prepare_zap_oldest_mmu_page(vcpu->kvm, &invalid_list))
4172 break;
Avi Kivityebeace82007-01-05 16:36:47 -08004173
Avi Kivity4cee5762007-11-18 16:37:07 +02004174 ++vcpu->kvm->stat.mmu_recycled;
Avi Kivityebeace82007-01-05 16:36:47 -08004175 }
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08004176 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
Avi Kivityebeace82007-01-05 16:36:47 -08004177}
Avi Kivityebeace82007-01-05 16:36:47 -08004178
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004179static bool is_mmio_page_fault(struct kvm_vcpu *vcpu, gva_t addr)
4180{
4181 if (vcpu->arch.mmu.direct_map || mmu_is_nested(vcpu))
4182 return vcpu_match_mmio_gpa(vcpu, addr);
4183
4184 return vcpu_match_mmio_gva(vcpu, addr);
4185}
4186
Andre Przywaradc25e892010-12-21 11:12:07 +01004187int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t cr2, u32 error_code,
4188 void *insn, int insn_len)
Avi Kivity30677142007-10-28 18:48:59 +02004189{
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004190 int r, emulation_type = EMULTYPE_RETRY;
Avi Kivity30677142007-10-28 18:48:59 +02004191 enum emulation_result er;
4192
Gleb Natapov56028d02010-10-17 18:13:42 +02004193 r = vcpu->arch.mmu.page_fault(vcpu, cr2, error_code, false);
Avi Kivity30677142007-10-28 18:48:59 +02004194 if (r < 0)
4195 goto out;
4196
4197 if (!r) {
4198 r = 1;
4199 goto out;
4200 }
4201
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004202 if (is_mmio_page_fault(vcpu, cr2))
4203 emulation_type = 0;
4204
4205 er = x86_emulate_instruction(vcpu, cr2, emulation_type, insn, insn_len);
Avi Kivity30677142007-10-28 18:48:59 +02004206
4207 switch (er) {
4208 case EMULATE_DONE:
4209 return 1;
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02004210 case EMULATE_USER_EXIT:
Avi Kivity30677142007-10-28 18:48:59 +02004211 ++vcpu->stat.mmio_exits;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03004212 /* fall through */
Avi Kivity30677142007-10-28 18:48:59 +02004213 case EMULATE_FAIL:
Avi Kivity3f5d18a2009-06-11 15:43:28 +03004214 return 0;
Avi Kivity30677142007-10-28 18:48:59 +02004215 default:
4216 BUG();
4217 }
4218out:
Avi Kivity30677142007-10-28 18:48:59 +02004219 return r;
4220}
4221EXPORT_SYMBOL_GPL(kvm_mmu_page_fault);
4222
Marcelo Tosattia7052892008-09-23 13:18:35 -03004223void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
4224{
Marcelo Tosattia7052892008-09-23 13:18:35 -03004225 vcpu->arch.mmu.invlpg(vcpu, gva);
Marcelo Tosattia7052892008-09-23 13:18:35 -03004226 kvm_mmu_flush_tlb(vcpu);
4227 ++vcpu->stat.invlpg;
4228}
4229EXPORT_SYMBOL_GPL(kvm_mmu_invlpg);
4230
Joerg Roedel18552672008-02-07 13:47:41 +01004231void kvm_enable_tdp(void)
4232{
4233 tdp_enabled = true;
4234}
4235EXPORT_SYMBOL_GPL(kvm_enable_tdp);
4236
Joerg Roedel5f4cb662008-07-14 20:36:36 +02004237void kvm_disable_tdp(void)
4238{
4239 tdp_enabled = false;
4240}
4241EXPORT_SYMBOL_GPL(kvm_disable_tdp);
4242
Avi Kivity6aa8b732006-12-10 02:21:36 -08004243static void free_mmu_pages(struct kvm_vcpu *vcpu)
4244{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004245 free_page((unsigned long)vcpu->arch.mmu.pae_root);
Joerg Roedel81407ca2010-09-10 17:31:00 +02004246 if (vcpu->arch.mmu.lm_root != NULL)
4247 free_page((unsigned long)vcpu->arch.mmu.lm_root);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004248}
4249
4250static int alloc_mmu_pages(struct kvm_vcpu *vcpu)
4251{
Avi Kivity17ac10a2007-01-05 16:36:40 -08004252 struct page *page;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004253 int i;
4254
4255 ASSERT(vcpu);
4256
Avi Kivity17ac10a2007-01-05 16:36:40 -08004257 /*
4258 * When emulating 32-bit mode, cr3 is only 32 bits even on x86_64.
4259 * Therefore we need to allocate shadow page tables in the first
4260 * 4GB of memory, which happens to fit the DMA32 zone.
4261 */
4262 page = alloc_page(GFP_KERNEL | __GFP_DMA32);
4263 if (!page)
Wei Yongjund7fa6ab2010-01-22 16:55:05 +08004264 return -ENOMEM;
4265
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004266 vcpu->arch.mmu.pae_root = page_address(page);
Avi Kivity17ac10a2007-01-05 16:36:40 -08004267 for (i = 0; i < 4; ++i)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004268 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08004269
Avi Kivity6aa8b732006-12-10 02:21:36 -08004270 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004271}
4272
Ingo Molnar8018c272006-12-29 16:50:01 -08004273int kvm_mmu_create(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004274{
Avi Kivity6aa8b732006-12-10 02:21:36 -08004275 ASSERT(vcpu);
Xiao Guangronge459e322011-11-28 20:42:16 +08004276
4277 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
4278 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
4279 vcpu->arch.mmu.translate_gpa = translate_gpa;
4280 vcpu->arch.nested_mmu.translate_gpa = translate_nested_gpa;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004281
Ingo Molnar8018c272006-12-29 16:50:01 -08004282 return alloc_mmu_pages(vcpu);
4283}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004284
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004285void kvm_mmu_setup(struct kvm_vcpu *vcpu)
Ingo Molnar8018c272006-12-29 16:50:01 -08004286{
4287 ASSERT(vcpu);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004288 ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity2c264952006-12-22 01:05:28 -08004289
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004290 init_kvm_mmu(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004291}
4292
Avi Kivity90cb0522007-07-17 13:04:56 +03004293void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004294{
Takuya Yoshikawab99db1d2013-01-08 19:44:48 +09004295 struct kvm_memory_slot *memslot;
4296 gfn_t last_gfn;
4297 int i;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004298
Takuya Yoshikawab99db1d2013-01-08 19:44:48 +09004299 memslot = id_to_memslot(kvm->memslots, slot);
4300 last_gfn = memslot->base_gfn + memslot->npages - 1;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004301
Takuya Yoshikawa9d1beef2013-01-08 19:46:48 +09004302 spin_lock(&kvm->mmu_lock);
4303
Takuya Yoshikawab99db1d2013-01-08 19:44:48 +09004304 for (i = PT_PAGE_TABLE_LEVEL;
4305 i < PT_PAGE_TABLE_LEVEL + KVM_NR_PAGE_SIZES; ++i) {
4306 unsigned long *rmapp;
4307 unsigned long last_index, index;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004308
Takuya Yoshikawab99db1d2013-01-08 19:44:48 +09004309 rmapp = memslot->arch.rmap[i - PT_PAGE_TABLE_LEVEL];
4310 last_index = gfn_to_index(last_gfn, memslot->base_gfn, i);
Xiao Guangrongda8dc752011-03-04 18:56:41 +08004311
Takuya Yoshikawab99db1d2013-01-08 19:44:48 +09004312 for (index = 0; index <= last_index; ++index, ++rmapp) {
4313 if (*rmapp)
4314 __rmap_write_protect(kvm, rmapp, false);
Takuya Yoshikawa6b81b052013-01-08 19:47:33 +09004315
Xiao Guangrong198c74f2014-04-17 17:06:16 +08004316 if (need_resched() || spin_needbreak(&kvm->mmu_lock))
Takuya Yoshikawa6b81b052013-01-08 19:47:33 +09004317 cond_resched_lock(&kvm->mmu_lock);
Avi Kivity8234b222010-12-27 12:08:45 +02004318 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08004319 }
Takuya Yoshikawab99db1d2013-01-08 19:44:48 +09004320
Takuya Yoshikawa9d1beef2013-01-08 19:46:48 +09004321 spin_unlock(&kvm->mmu_lock);
Xiao Guangrong198c74f2014-04-17 17:06:16 +08004322
4323 /*
4324 * kvm_mmu_slot_remove_write_access() and kvm_vm_ioctl_get_dirty_log()
4325 * which do tlb flush out of mmu-lock should be serialized by
4326 * kvm->slots_lock otherwise tlb flush would be missed.
4327 */
4328 lockdep_assert_held(&kvm->slots_lock);
4329
4330 /*
4331 * We can flush all the TLBs out of the mmu lock without TLB
4332 * corruption since we just change the spte from writable to
4333 * readonly so that we only need to care the case of changing
4334 * spte from present to present (changing the spte from present
4335 * to nonpresent will flush all the TLBs immediately), in other
4336 * words, the only case we care is mmu_spte_update() where we
4337 * haved checked SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE
4338 * instead of PT_WRITABLE_MASK, that means it does not depend
4339 * on PT_WRITABLE_MASK anymore.
4340 */
4341 kvm_flush_remote_tlbs(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004342}
Avi Kivity37a7d8b2007-01-05 16:36:56 -08004343
Xiao Guangronge7d11c72013-05-31 08:36:27 +08004344#define BATCH_ZAP_PAGES 10
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004345static void kvm_zap_obsolete_pages(struct kvm *kvm)
4346{
4347 struct kvm_mmu_page *sp, *node;
Xiao Guangronge7d11c72013-05-31 08:36:27 +08004348 int batch = 0;
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004349
4350restart:
4351 list_for_each_entry_safe_reverse(sp, node,
4352 &kvm->arch.active_mmu_pages, link) {
Xiao Guangronge7d11c72013-05-31 08:36:27 +08004353 int ret;
4354
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004355 /*
4356 * No obsolete page exists before new created page since
4357 * active_mmu_pages is the FIFO list.
4358 */
4359 if (!is_obsolete_sp(kvm, sp))
4360 break;
4361
4362 /*
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004363 * Since we are reversely walking the list and the invalid
4364 * list will be moved to the head, skip the invalid page
4365 * can help us to avoid the infinity list walking.
4366 */
4367 if (sp->role.invalid)
4368 continue;
4369
Xiao Guangrongf34d2512013-05-31 08:36:28 +08004370 /*
4371 * Need not flush tlb since we only zap the sp with invalid
4372 * generation number.
4373 */
Xiao Guangronge7d11c72013-05-31 08:36:27 +08004374 if (batch >= BATCH_ZAP_PAGES &&
Xiao Guangrongf34d2512013-05-31 08:36:28 +08004375 cond_resched_lock(&kvm->mmu_lock)) {
Xiao Guangronge7d11c72013-05-31 08:36:27 +08004376 batch = 0;
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004377 goto restart;
4378 }
4379
Xiao Guangrong365c8862013-05-31 08:36:29 +08004380 ret = kvm_mmu_prepare_zap_page(kvm, sp,
4381 &kvm->arch.zapped_obsolete_pages);
Xiao Guangronge7d11c72013-05-31 08:36:27 +08004382 batch += ret;
4383
4384 if (ret)
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004385 goto restart;
4386 }
4387
Xiao Guangrongf34d2512013-05-31 08:36:28 +08004388 /*
4389 * Should flush tlb before free page tables since lockless-walking
4390 * may use the pages.
4391 */
Xiao Guangrong365c8862013-05-31 08:36:29 +08004392 kvm_mmu_commit_zap_page(kvm, &kvm->arch.zapped_obsolete_pages);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004393}
4394
4395/*
4396 * Fast invalidate all shadow pages and use lock-break technique
4397 * to zap obsolete pages.
4398 *
4399 * It's required when memslot is being deleted or VM is being
4400 * destroyed, in these cases, we should ensure that KVM MMU does
4401 * not use any resource of the being-deleted slot or all slots
4402 * after calling the function.
4403 */
4404void kvm_mmu_invalidate_zap_all_pages(struct kvm *kvm)
4405{
4406 spin_lock(&kvm->mmu_lock);
Xiao Guangrong35006122013-05-31 08:36:25 +08004407 trace_kvm_mmu_invalidate_zap_all_pages(kvm);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004408 kvm->arch.mmu_valid_gen++;
4409
Xiao Guangrongf34d2512013-05-31 08:36:28 +08004410 /*
4411 * Notify all vcpus to reload its shadow page table
4412 * and flush TLB. Then all vcpus will switch to new
4413 * shadow page table with the new mmu_valid_gen.
4414 *
4415 * Note: we should do this under the protection of
4416 * mmu-lock, otherwise, vcpu would purge shadow page
4417 * but miss tlb flush.
4418 */
4419 kvm_reload_remote_mmus(kvm);
4420
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08004421 kvm_zap_obsolete_pages(kvm);
4422 spin_unlock(&kvm->mmu_lock);
4423}
4424
Xiao Guangrong365c8862013-05-31 08:36:29 +08004425static bool kvm_has_zapped_obsolete_pages(struct kvm *kvm)
4426{
4427 return unlikely(!list_empty_careful(&kvm->arch.zapped_obsolete_pages));
4428}
4429
Xiao Guangrongf8f55942013-06-07 16:51:26 +08004430void kvm_mmu_invalidate_mmio_sptes(struct kvm *kvm)
4431{
4432 /*
4433 * The very rare case: if the generation-number is round,
4434 * zap all shadow pages.
Xiao Guangrongf8f55942013-06-07 16:51:26 +08004435 */
Takuya Yoshikawae6dff7d2013-07-04 13:41:26 +09004436 if (unlikely(kvm_current_mmio_generation(kvm) >= MMIO_MAX_GEN)) {
Takuya Yoshikawa7a2e8aa2013-06-21 01:34:31 +09004437 printk_ratelimited(KERN_INFO "kvm: zapping shadow pages for mmio generation wraparound\n");
Xiao Guangronga8eca9d2013-06-10 16:28:55 +08004438 kvm_mmu_invalidate_zap_all_pages(kvm);
Takuya Yoshikawa7a2e8aa2013-06-21 01:34:31 +09004439 }
Xiao Guangrongf8f55942013-06-07 16:51:26 +08004440}
4441
Dave Chinner70534a72013-08-28 10:18:14 +10004442static unsigned long
4443mmu_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
Izik Eidus3ee16c82008-03-30 15:17:21 +03004444{
4445 struct kvm *kvm;
Ying Han1495f232011-05-24 17:12:27 -07004446 int nr_to_scan = sc->nr_to_scan;
Dave Chinner70534a72013-08-28 10:18:14 +10004447 unsigned long freed = 0;
Izik Eidus3ee16c82008-03-30 15:17:21 +03004448
Paolo Bonzini2f303b72013-09-25 13:53:07 +02004449 spin_lock(&kvm_lock);
Izik Eidus3ee16c82008-03-30 15:17:21 +03004450
4451 list_for_each_entry(kvm, &vm_list, vm_list) {
Jan Kiszka3d56cbd2011-12-02 18:35:24 +01004452 int idx;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08004453 LIST_HEAD(invalid_list);
Izik Eidus3ee16c82008-03-30 15:17:21 +03004454
Gleb Natapov19526392012-06-04 14:53:23 +03004455 /*
Takuya Yoshikawa35f2d162012-08-20 18:35:39 +09004456 * Never scan more than sc->nr_to_scan VM instances.
4457 * Will not hit this condition practically since we do not try
4458 * to shrink more than one VM and it is very unlikely to see
4459 * !n_used_mmu_pages so many times.
4460 */
4461 if (!nr_to_scan--)
4462 break;
4463 /*
Gleb Natapov19526392012-06-04 14:53:23 +03004464 * n_used_mmu_pages is accessed without holding kvm->mmu_lock
4465 * here. We may skip a VM instance errorneosly, but we do not
4466 * want to shrink a VM that only started to populate its MMU
4467 * anyway.
4468 */
Xiao Guangrong365c8862013-05-31 08:36:29 +08004469 if (!kvm->arch.n_used_mmu_pages &&
4470 !kvm_has_zapped_obsolete_pages(kvm))
Gleb Natapov19526392012-06-04 14:53:23 +03004471 continue;
Gleb Natapov19526392012-06-04 14:53:23 +03004472
Marcelo Tosattif656ce02009-12-23 14:35:25 -02004473 idx = srcu_read_lock(&kvm->srcu);
Izik Eidus3ee16c82008-03-30 15:17:21 +03004474 spin_lock(&kvm->mmu_lock);
Izik Eidus3ee16c82008-03-30 15:17:21 +03004475
Xiao Guangrong365c8862013-05-31 08:36:29 +08004476 if (kvm_has_zapped_obsolete_pages(kvm)) {
4477 kvm_mmu_commit_zap_page(kvm,
4478 &kvm->arch.zapped_obsolete_pages);
4479 goto unlock;
4480 }
4481
Dave Chinner70534a72013-08-28 10:18:14 +10004482 if (prepare_zap_oldest_mmu_page(kvm, &invalid_list))
4483 freed++;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08004484 kvm_mmu_commit_zap_page(kvm, &invalid_list);
Gleb Natapov19526392012-06-04 14:53:23 +03004485
Xiao Guangrong365c8862013-05-31 08:36:29 +08004486unlock:
Izik Eidus3ee16c82008-03-30 15:17:21 +03004487 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02004488 srcu_read_unlock(&kvm->srcu, idx);
Gleb Natapov19526392012-06-04 14:53:23 +03004489
Dave Chinner70534a72013-08-28 10:18:14 +10004490 /*
4491 * unfair on small ones
4492 * per-vm shrinkers cry out
4493 * sadness comes quickly
4494 */
Gleb Natapov19526392012-06-04 14:53:23 +03004495 list_move_tail(&kvm->vm_list, &vm_list);
4496 break;
Izik Eidus3ee16c82008-03-30 15:17:21 +03004497 }
Izik Eidus3ee16c82008-03-30 15:17:21 +03004498
Paolo Bonzini2f303b72013-09-25 13:53:07 +02004499 spin_unlock(&kvm_lock);
Dave Chinner70534a72013-08-28 10:18:14 +10004500 return freed;
Dave Chinner70534a72013-08-28 10:18:14 +10004501}
4502
4503static unsigned long
4504mmu_shrink_count(struct shrinker *shrink, struct shrink_control *sc)
4505{
Dave Hansen45221ab2010-08-19 18:11:37 -07004506 return percpu_counter_read_positive(&kvm_total_used_mmu_pages);
Izik Eidus3ee16c82008-03-30 15:17:21 +03004507}
4508
4509static struct shrinker mmu_shrinker = {
Dave Chinner70534a72013-08-28 10:18:14 +10004510 .count_objects = mmu_shrink_count,
4511 .scan_objects = mmu_shrink_scan,
Izik Eidus3ee16c82008-03-30 15:17:21 +03004512 .seeks = DEFAULT_SEEKS * 10,
4513};
4514
Ingo Molnar2ddfd202008-05-22 10:37:48 +02004515static void mmu_destroy_caches(void)
Avi Kivityb5a33a72007-04-15 16:31:09 +03004516{
Xiao Guangrong53c07b12011-05-15 23:26:20 +08004517 if (pte_list_desc_cache)
4518 kmem_cache_destroy(pte_list_desc_cache);
Avi Kivityd3d25b02007-05-30 12:34:53 +03004519 if (mmu_page_header_cache)
4520 kmem_cache_destroy(mmu_page_header_cache);
Avi Kivityb5a33a72007-04-15 16:31:09 +03004521}
4522
4523int kvm_mmu_module_init(void)
4524{
Xiao Guangrong53c07b12011-05-15 23:26:20 +08004525 pte_list_desc_cache = kmem_cache_create("pte_list_desc",
4526 sizeof(struct pte_list_desc),
Paul Mundt20c2df82007-07-20 10:11:58 +09004527 0, 0, NULL);
Xiao Guangrong53c07b12011-05-15 23:26:20 +08004528 if (!pte_list_desc_cache)
Avi Kivityb5a33a72007-04-15 16:31:09 +03004529 goto nomem;
4530
Avi Kivityd3d25b02007-05-30 12:34:53 +03004531 mmu_page_header_cache = kmem_cache_create("kvm_mmu_page_header",
4532 sizeof(struct kvm_mmu_page),
Paul Mundt20c2df82007-07-20 10:11:58 +09004533 0, 0, NULL);
Avi Kivityd3d25b02007-05-30 12:34:53 +03004534 if (!mmu_page_header_cache)
4535 goto nomem;
4536
Wei Yongjun45bf21a2010-08-23 16:13:15 +08004537 if (percpu_counter_init(&kvm_total_used_mmu_pages, 0))
4538 goto nomem;
4539
Izik Eidus3ee16c82008-03-30 15:17:21 +03004540 register_shrinker(&mmu_shrinker);
4541
Avi Kivityb5a33a72007-04-15 16:31:09 +03004542 return 0;
4543
4544nomem:
Izik Eidus3ee16c82008-03-30 15:17:21 +03004545 mmu_destroy_caches();
Avi Kivityb5a33a72007-04-15 16:31:09 +03004546 return -ENOMEM;
4547}
4548
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08004549/*
4550 * Caculate mmu pages needed for kvm.
4551 */
4552unsigned int kvm_mmu_calculate_mmu_pages(struct kvm *kvm)
4553{
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08004554 unsigned int nr_mmu_pages;
4555 unsigned int nr_pages = 0;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02004556 struct kvm_memslots *slots;
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +08004557 struct kvm_memory_slot *memslot;
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08004558
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08004559 slots = kvm_memslots(kvm);
4560
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +08004561 kvm_for_each_memslot(memslot, slots)
4562 nr_pages += memslot->npages;
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08004563
4564 nr_mmu_pages = nr_pages * KVM_PERMILLE_MMU_PAGES / 1000;
4565 nr_mmu_pages = max(nr_mmu_pages,
4566 (unsigned int) KVM_MIN_ALLOC_MMU_PAGES);
4567
4568 return nr_mmu_pages;
4569}
4570
Marcelo Tosatti94d8b052009-06-11 12:07:42 -03004571int kvm_mmu_get_spte_hierarchy(struct kvm_vcpu *vcpu, u64 addr, u64 sptes[4])
4572{
4573 struct kvm_shadow_walk_iterator iterator;
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08004574 u64 spte;
Marcelo Tosatti94d8b052009-06-11 12:07:42 -03004575 int nr_sptes = 0;
4576
Marcelo Tosatti37f6a4e2014-01-03 17:09:32 -02004577 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
4578 return nr_sptes;
4579
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08004580 walk_shadow_page_lockless_begin(vcpu);
4581 for_each_shadow_entry_lockless(vcpu, addr, iterator, spte) {
4582 sptes[iterator.level-1] = spte;
Marcelo Tosatti94d8b052009-06-11 12:07:42 -03004583 nr_sptes++;
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08004584 if (!is_shadow_present_pte(spte))
Marcelo Tosatti94d8b052009-06-11 12:07:42 -03004585 break;
4586 }
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08004587 walk_shadow_page_lockless_end(vcpu);
Marcelo Tosatti94d8b052009-06-11 12:07:42 -03004588
4589 return nr_sptes;
4590}
4591EXPORT_SYMBOL_GPL(kvm_mmu_get_spte_hierarchy);
4592
Xiao Guangrongc42fffe2010-09-27 18:07:07 +08004593void kvm_mmu_destroy(struct kvm_vcpu *vcpu)
4594{
4595 ASSERT(vcpu);
4596
Paolo Bonzini95f93af2013-10-02 16:56:12 +02004597 kvm_mmu_unload(vcpu);
Xiao Guangrongc42fffe2010-09-27 18:07:07 +08004598 free_mmu_pages(vcpu);
4599 mmu_free_memory_caches(vcpu);
Xiao Guangrongb034cf02010-12-23 16:08:35 +08004600}
4601
Xiao Guangrongb034cf02010-12-23 16:08:35 +08004602void kvm_mmu_module_exit(void)
4603{
4604 mmu_destroy_caches();
4605 percpu_counter_destroy(&kvm_total_used_mmu_pages);
4606 unregister_shrinker(&mmu_shrinker);
Xiao Guangrongc42fffe2010-09-27 18:07:07 +08004607 mmu_audit_disable();
4608}