blob: cb8225969255ec006fbff5eab76471f341d92b77 [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/*
2 * Kernel-based Virtual Machine driver for Linux
3 *
4 * This module enables machines with Intel VT-x extensions to run virtual
5 * machines without emulation or binary translation.
6 *
7 * MMU support
8 *
9 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +020010 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Avi Kivity6aa8b732006-12-10 02:21:36 -080011 *
12 * Authors:
13 * Yaniv Kamay <yaniv@qumranet.com>
14 * Avi Kivity <avi@qumranet.com>
15 *
16 * This work is licensed under the terms of the GNU GPL, version 2. See
17 * the COPYING file in the top-level directory.
18 *
19 */
Avi Kivity6aa8b732006-12-10 02:21:36 -080020
Gleb Natapovaf585b92010-10-14 11:22:46 +020021#include "irq.h"
Zhang Xiantao1d737c82007-12-14 09:35:10 +080022#include "mmu.h"
Avi Kivity836a1b32010-01-21 15:31:49 +020023#include "x86.h"
Avi Kivity6de4f3a2009-05-31 22:58:47 +030024#include "kvm_cache_regs.h"
Nadav Amit5f7dde72014-05-07 15:32:50 +030025#include "cpuid.h"
Avi Kivity6aa8b732006-12-10 02:21:36 -080026
Avi Kivityedf88412007-12-16 11:02:48 +020027#include <linux/kvm_host.h>
Avi Kivitye4956062007-06-28 14:15:57 -040028#include <linux/types.h>
29#include <linux/string.h>
30#include <linux/mm.h>
31#include <linux/highmem.h>
Paul Gortmaker1767e932016-07-13 20:19:00 -040032#include <linux/moduleparam.h>
33#include <linux/export.h>
Izik Eidus448353c2007-11-26 14:08:14 +020034#include <linux/swap.h>
Marcelo Tosatti05da4552008-02-23 11:44:30 -030035#include <linux/hugetlb.h>
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -050036#include <linux/compiler.h>
Marcelo Tosattibc6678a2009-12-23 14:35:21 -020037#include <linux/srcu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010039#include <linux/sched/signal.h>
Huang Yingbf998152010-05-31 14:28:19 +080040#include <linux/uaccess.h>
David Matlack114df302016-12-19 13:58:25 -080041#include <linux/hash.h>
Junaid Shahidf160c7b2016-12-06 16:46:16 -080042#include <linux/kern_levels.h>
Avi Kivitye4956062007-06-28 14:15:57 -040043
44#include <asm/page.h>
45#include <asm/cmpxchg.h>
Avi Kivity4e542372007-11-21 14:08:40 +020046#include <asm/io.h>
Eduardo Habkost13673a92008-11-17 19:03:13 -020047#include <asm/vmx.h>
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +080048#include <asm/kvm_page_track.h>
Avi Kivitye4956062007-06-28 14:15:57 -040049
Joerg Roedel18552672008-02-07 13:47:41 +010050/*
51 * When setting this variable to true it enables Two-Dimensional-Paging
52 * where the hardware walks 2 page tables:
53 * 1. the guest-virtual to guest-physical
54 * 2. while doing 1. it walks guest-physical to host-physical
55 * If the hardware supports that we don't need to do shadow paging.
56 */
Marcelo Tosatti2f333bc2008-02-22 12:21:37 -050057bool tdp_enabled = false;
Joerg Roedel18552672008-02-07 13:47:41 +010058
Xiao Guangrong8b1fe172010-08-30 18:22:53 +080059enum {
60 AUDIT_PRE_PAGE_FAULT,
61 AUDIT_POST_PAGE_FAULT,
62 AUDIT_PRE_PTE_WRITE,
Xiao Guangrong69030742010-09-27 18:09:29 +080063 AUDIT_POST_PTE_WRITE,
64 AUDIT_PRE_SYNC,
65 AUDIT_POST_SYNC
Xiao Guangrong8b1fe172010-08-30 18:22:53 +080066};
67
Avi Kivity37a7d8b2007-01-05 16:36:56 -080068#undef MMU_DEBUG
69
Avi Kivity37a7d8b2007-01-05 16:36:56 -080070#ifdef MMU_DEBUG
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +020071static bool dbg = 0;
72module_param(dbg, bool, 0644);
Avi Kivity37a7d8b2007-01-05 16:36:56 -080073
74#define pgprintk(x...) do { if (dbg) printk(x); } while (0)
75#define rmap_printk(x...) do { if (dbg) printk(x); } while (0)
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +020076#define MMU_WARN_ON(x) WARN_ON(x)
Avi Kivity37a7d8b2007-01-05 16:36:56 -080077#else
Avi Kivity37a7d8b2007-01-05 16:36:56 -080078#define pgprintk(x...) do { } while (0)
79#define rmap_printk(x...) do { } while (0)
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +020080#define MMU_WARN_ON(x) do { } while (0)
Yaozu Dongd6c69ee2007-04-25 14:17:25 +080081#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -080082
Xiao Guangrong957ed9e2010-08-22 19:12:48 +080083#define PTE_PREFETCH_NUM 8
84
Xudong Hao00763e42012-06-07 18:26:07 +080085#define PT_FIRST_AVAIL_BITS_SHIFT 10
Avi Kivity6aa8b732006-12-10 02:21:36 -080086#define PT64_SECOND_AVAIL_BITS_SHIFT 52
87
Avi Kivity6aa8b732006-12-10 02:21:36 -080088#define PT64_LEVEL_BITS 9
89
90#define PT64_LEVEL_SHIFT(level) \
Mike Dayd77c26f2007-10-08 09:02:08 -040091 (PAGE_SHIFT + (level - 1) * PT64_LEVEL_BITS)
Avi Kivity6aa8b732006-12-10 02:21:36 -080092
Avi Kivity6aa8b732006-12-10 02:21:36 -080093#define PT64_INDEX(address, level)\
94 (((address) >> PT64_LEVEL_SHIFT(level)) & ((1 << PT64_LEVEL_BITS) - 1))
95
96
97#define PT32_LEVEL_BITS 10
98
99#define PT32_LEVEL_SHIFT(level) \
Mike Dayd77c26f2007-10-08 09:02:08 -0400100 (PAGE_SHIFT + (level - 1) * PT32_LEVEL_BITS)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800101
Joerg Roedele04da982009-07-27 16:30:45 +0200102#define PT32_LVL_OFFSET_MASK(level) \
103 (PT32_BASE_ADDR_MASK & ((1ULL << (PAGE_SHIFT + (((level) - 1) \
104 * PT32_LEVEL_BITS))) - 1))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800105
106#define PT32_INDEX(address, level)\
107 (((address) >> PT32_LEVEL_SHIFT(level)) & ((1 << PT32_LEVEL_BITS) - 1))
108
109
Avi Kivity27aba762007-03-09 13:04:31 +0200110#define PT64_BASE_ADDR_MASK (((1ULL << 52) - 1) & ~(u64)(PAGE_SIZE-1))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800111#define PT64_DIR_BASE_ADDR_MASK \
112 (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + PT64_LEVEL_BITS)) - 1))
Joerg Roedele04da982009-07-27 16:30:45 +0200113#define PT64_LVL_ADDR_MASK(level) \
114 (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + (((level) - 1) \
115 * PT64_LEVEL_BITS))) - 1))
116#define PT64_LVL_OFFSET_MASK(level) \
117 (PT64_BASE_ADDR_MASK & ((1ULL << (PAGE_SHIFT + (((level) - 1) \
118 * PT64_LEVEL_BITS))) - 1))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800119
120#define PT32_BASE_ADDR_MASK PAGE_MASK
121#define PT32_DIR_BASE_ADDR_MASK \
122 (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + PT32_LEVEL_BITS)) - 1))
Joerg Roedele04da982009-07-27 16:30:45 +0200123#define PT32_LVL_ADDR_MASK(level) \
124 (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + (((level) - 1) \
125 * PT32_LEVEL_BITS))) - 1))
Avi Kivity6aa8b732006-12-10 02:21:36 -0800126
Gleb Natapov53166222013-08-05 11:07:14 +0300127#define PT64_PERM_MASK (PT_PRESENT_MASK | PT_WRITABLE_MASK | shadow_user_mask \
128 | shadow_x_mask | shadow_nx_mask)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800129
Avi Kivityfe135d22007-12-09 16:15:46 +0200130#define ACC_EXEC_MASK 1
131#define ACC_WRITE_MASK PT_WRITABLE_MASK
132#define ACC_USER_MASK PT_USER_MASK
133#define ACC_ALL (ACC_EXEC_MASK | ACC_WRITE_MASK | ACC_USER_MASK)
134
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800135/* The mask for the R/X bits in EPT PTEs */
136#define PT64_EPT_READABLE_MASK 0x1ull
137#define PT64_EPT_EXECUTABLE_MASK 0x4ull
138
Avi Kivity90bb6fc2009-12-31 12:10:16 +0200139#include <trace/events/kvm.h>
140
Avi Kivity07420172009-07-06 12:21:32 +0300141#define CREATE_TRACE_POINTS
142#include "mmutrace.h"
143
Xiao Guangrong49fde342012-06-20 15:58:58 +0800144#define SPTE_HOST_WRITEABLE (1ULL << PT_FIRST_AVAIL_BITS_SHIFT)
145#define SPTE_MMU_WRITEABLE (1ULL << (PT_FIRST_AVAIL_BITS_SHIFT + 1))
Izik Eidus14032832009-09-23 21:47:17 +0300146
Avi Kivity135f8c22008-08-21 17:49:56 +0300147#define SHADOW_PT_INDEX(addr, level) PT64_INDEX(addr, level)
148
Takuya Yoshikawa220f7732012-03-21 23:49:39 +0900149/* make pte_list_desc fit well in cache line */
150#define PTE_LIST_EXT 3
151
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800152struct pte_list_desc {
153 u64 *sptes[PTE_LIST_EXT];
154 struct pte_list_desc *more;
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800155};
156
Avi Kivity2d111232008-12-25 14:39:47 +0200157struct kvm_shadow_walk_iterator {
158 u64 addr;
159 hpa_t shadow_addr;
Avi Kivity2d111232008-12-25 14:39:47 +0200160 u64 *sptep;
Xiao Guangrongdd3bfd52011-07-12 03:32:54 +0800161 int level;
Avi Kivity2d111232008-12-25 14:39:47 +0200162 unsigned index;
163};
164
165#define for_each_shadow_entry(_vcpu, _addr, _walker) \
166 for (shadow_walk_init(&(_walker), _vcpu, _addr); \
167 shadow_walk_okay(&(_walker)); \
168 shadow_walk_next(&(_walker)))
169
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800170#define for_each_shadow_entry_lockless(_vcpu, _addr, _walker, spte) \
171 for (shadow_walk_init(&(_walker), _vcpu, _addr); \
172 shadow_walk_okay(&(_walker)) && \
173 ({ spte = mmu_spte_get_lockless(_walker.sptep); 1; }); \
174 __shadow_walk_next(&(_walker), spte))
175
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800176static struct kmem_cache *pte_list_desc_cache;
Avi Kivityd3d25b02007-05-30 12:34:53 +0300177static struct kmem_cache *mmu_page_header_cache;
Dave Hansen45221ab2010-08-19 18:11:37 -0700178static struct percpu_counter kvm_total_used_mmu_pages;
Avi Kivityb5a33a72007-04-15 16:31:09 +0300179
Sheng Yang7b523452008-04-25 21:13:50 +0800180static u64 __read_mostly shadow_nx_mask;
181static u64 __read_mostly shadow_x_mask; /* mutual exclusive with nx_mask */
182static u64 __read_mostly shadow_user_mask;
183static u64 __read_mostly shadow_accessed_mask;
184static u64 __read_mostly shadow_dirty_mask;
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800185static u64 __read_mostly shadow_mmio_mask;
Bandan Dasffb128c2016-07-12 18:18:49 -0400186static u64 __read_mostly shadow_present_mask;
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800187
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800188/*
189 * The mask/value to distinguish a PTE that has been marked not-present for
190 * access tracking purposes.
191 * The mask would be either 0 if access tracking is disabled, or
192 * SPTE_SPECIAL_MASK|VMX_EPT_RWX_MASK if access tracking is enabled.
193 */
194static u64 __read_mostly shadow_acc_track_mask;
195static const u64 shadow_acc_track_value = SPTE_SPECIAL_MASK;
196
197/*
198 * The mask/shift to use for saving the original R/X bits when marking the PTE
199 * as not-present for access tracking purposes. We do not save the W bit as the
200 * PTEs being access tracked also need to be dirty tracked, so the W bit will be
201 * restored only when a write is attempted to the page.
202 */
203static const u64 shadow_acc_track_saved_bits_mask = PT64_EPT_READABLE_MASK |
204 PT64_EPT_EXECUTABLE_MASK;
205static const u64 shadow_acc_track_saved_bits_shift = PT64_SECOND_AVAIL_BITS_SHIFT;
206
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800207static void mmu_spte_set(u64 *sptep, u64 spte);
Avi Kivitye6765052012-07-08 17:16:30 +0300208static void mmu_free_roots(struct kvm_vcpu *vcpu);
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800209
210void kvm_mmu_set_mmio_spte_mask(u64 mmio_mask)
211{
Junaid Shahid312b6162016-12-21 20:29:29 -0800212 shadow_mmio_mask = mmio_mask | SPTE_SPECIAL_MASK;
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800213}
214EXPORT_SYMBOL_GPL(kvm_mmu_set_mmio_spte_mask);
215
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800216static inline bool is_access_track_spte(u64 spte)
217{
218 /* Always false if shadow_acc_track_mask is zero. */
219 return (spte & shadow_acc_track_mask) == shadow_acc_track_value;
220}
221
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800222/*
David Matlackee3d1572014-08-18 15:46:06 -0700223 * the low bit of the generation number is always presumed to be zero.
224 * This disables mmio caching during memslot updates. The concept is
225 * similar to a seqcount but instead of retrying the access we just punt
226 * and ignore the cache.
227 *
228 * spte bits 3-11 are used as bits 1-9 of the generation number,
229 * the bits 52-61 are used as bits 10-19 of the generation number.
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800230 */
David Matlackee3d1572014-08-18 15:46:06 -0700231#define MMIO_SPTE_GEN_LOW_SHIFT 2
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800232#define MMIO_SPTE_GEN_HIGH_SHIFT 52
233
David Matlackee3d1572014-08-18 15:46:06 -0700234#define MMIO_GEN_SHIFT 20
235#define MMIO_GEN_LOW_SHIFT 10
236#define MMIO_GEN_LOW_MASK ((1 << MMIO_GEN_LOW_SHIFT) - 2)
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800237#define MMIO_GEN_MASK ((1 << MMIO_GEN_SHIFT) - 1)
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800238
239static u64 generation_mmio_spte_mask(unsigned int gen)
240{
241 u64 mask;
242
Tiejun Chen842bb262014-11-18 17:14:38 +0800243 WARN_ON(gen & ~MMIO_GEN_MASK);
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800244
245 mask = (gen & MMIO_GEN_LOW_MASK) << MMIO_SPTE_GEN_LOW_SHIFT;
246 mask |= ((u64)gen >> MMIO_GEN_LOW_SHIFT) << MMIO_SPTE_GEN_HIGH_SHIFT;
247 return mask;
248}
249
250static unsigned int get_mmio_spte_generation(u64 spte)
251{
252 unsigned int gen;
253
254 spte &= ~shadow_mmio_mask;
255
256 gen = (spte >> MMIO_SPTE_GEN_LOW_SHIFT) & MMIO_GEN_LOW_MASK;
257 gen |= (spte >> MMIO_SPTE_GEN_HIGH_SHIFT) << MMIO_GEN_LOW_SHIFT;
258 return gen;
259}
260
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200261static unsigned int kvm_current_mmio_generation(struct kvm_vcpu *vcpu)
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800262{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200263 return kvm_vcpu_memslots(vcpu)->generation & MMIO_GEN_MASK;
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800264}
265
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200266static void mark_mmio_spte(struct kvm_vcpu *vcpu, u64 *sptep, u64 gfn,
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800267 unsigned access)
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800268{
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200269 unsigned int gen = kvm_current_mmio_generation(vcpu);
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800270 u64 mask = generation_mmio_spte_mask(gen);
Takuya Yoshikawa95b04302013-03-12 17:44:40 +0900271
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800272 access &= ACC_WRITE_MASK | ACC_USER_MASK;
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800273 mask |= shadow_mmio_mask | access | gfn << PAGE_SHIFT;
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800274
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800275 trace_mark_mmio_spte(sptep, gfn, access, gen);
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800276 mmu_spte_set(sptep, mask);
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800277}
278
279static bool is_mmio_spte(u64 spte)
280{
281 return (spte & shadow_mmio_mask) == shadow_mmio_mask;
282}
283
284static gfn_t get_mmio_spte_gfn(u64 spte)
285{
Tiejun Chen842bb262014-11-18 17:14:38 +0800286 u64 mask = generation_mmio_spte_mask(MMIO_GEN_MASK) | shadow_mmio_mask;
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800287 return (spte & ~mask) >> PAGE_SHIFT;
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800288}
289
290static unsigned get_mmio_spte_access(u64 spte)
291{
Tiejun Chen842bb262014-11-18 17:14:38 +0800292 u64 mask = generation_mmio_spte_mask(MMIO_GEN_MASK) | shadow_mmio_mask;
Xiao Guangrongf2fd1252013-06-07 16:51:24 +0800293 return (spte & ~mask) & ~PAGE_MASK;
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800294}
295
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200296static bool set_mmio_spte(struct kvm_vcpu *vcpu, u64 *sptep, gfn_t gfn,
Dan Williamsba049e92016-01-15 16:56:11 -0800297 kvm_pfn_t pfn, unsigned access)
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800298{
299 if (unlikely(is_noslot_pfn(pfn))) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200300 mark_mmio_spte(vcpu, sptep, gfn, access);
Xiao Guangrongce88dec2011-07-12 03:33:44 +0800301 return true;
302 }
303
304 return false;
305}
Avi Kivityc7addb92007-09-16 18:58:32 +0200306
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200307static bool check_mmio_spte(struct kvm_vcpu *vcpu, u64 spte)
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800308{
Xiao Guangrong089504c2013-06-07 16:51:27 +0800309 unsigned int kvm_gen, spte_gen;
310
Paolo Bonzini54bf36a2015-04-08 15:39:23 +0200311 kvm_gen = kvm_current_mmio_generation(vcpu);
Xiao Guangrong089504c2013-06-07 16:51:27 +0800312 spte_gen = get_mmio_spte_generation(spte);
313
314 trace_check_mmio_spte(spte, kvm_gen, spte_gen);
315 return likely(kvm_gen == spte_gen);
Xiao Guangrongf8f55942013-06-07 16:51:26 +0800316}
317
Sheng Yang7b523452008-04-25 21:13:50 +0800318void kvm_mmu_set_mask_ptes(u64 user_mask, u64 accessed_mask,
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800319 u64 dirty_mask, u64 nx_mask, u64 x_mask, u64 p_mask,
320 u64 acc_track_mask)
Sheng Yang7b523452008-04-25 21:13:50 +0800321{
Junaid Shahid312b6162016-12-21 20:29:29 -0800322 if (acc_track_mask != 0)
323 acc_track_mask |= SPTE_SPECIAL_MASK;
324
Sheng Yang7b523452008-04-25 21:13:50 +0800325 shadow_user_mask = user_mask;
326 shadow_accessed_mask = accessed_mask;
327 shadow_dirty_mask = dirty_mask;
328 shadow_nx_mask = nx_mask;
329 shadow_x_mask = x_mask;
Bandan Dasffb128c2016-07-12 18:18:49 -0400330 shadow_present_mask = p_mask;
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800331 shadow_acc_track_mask = acc_track_mask;
332 WARN_ON(shadow_accessed_mask != 0 && shadow_acc_track_mask != 0);
Sheng Yang7b523452008-04-25 21:13:50 +0800333}
334EXPORT_SYMBOL_GPL(kvm_mmu_set_mask_ptes);
335
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800336void kvm_mmu_clear_all_pte_masks(void)
337{
338 shadow_user_mask = 0;
339 shadow_accessed_mask = 0;
340 shadow_dirty_mask = 0;
341 shadow_nx_mask = 0;
342 shadow_x_mask = 0;
343 shadow_mmio_mask = 0;
344 shadow_present_mask = 0;
345 shadow_acc_track_mask = 0;
346}
347
Avi Kivity6aa8b732006-12-10 02:21:36 -0800348static int is_cpuid_PSE36(void)
349{
350 return 1;
351}
352
Avi Kivity73b10872007-01-26 00:56:41 -0800353static int is_nx(struct kvm_vcpu *vcpu)
354{
Avi Kivityf6801df2010-01-21 15:31:50 +0200355 return vcpu->arch.efer & EFER_NX;
Avi Kivity73b10872007-01-26 00:56:41 -0800356}
357
Avi Kivityc7addb92007-09-16 18:58:32 +0200358static int is_shadow_present_pte(u64 pte)
359{
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800360 return (pte != 0) && !is_mmio_spte(pte);
Avi Kivityc7addb92007-09-16 18:58:32 +0200361}
362
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300363static int is_large_pte(u64 pte)
364{
365 return pte & PT_PAGE_SIZE_MASK;
366}
367
Marcelo Tosatti776e6632009-06-10 12:27:03 -0300368static int is_last_spte(u64 pte, int level)
369{
370 if (level == PT_PAGE_TABLE_LEVEL)
371 return 1;
Joerg Roedel852e3c12009-07-27 16:30:44 +0200372 if (is_large_pte(pte))
Marcelo Tosatti776e6632009-06-10 12:27:03 -0300373 return 1;
374 return 0;
375}
376
Junaid Shahidd3e328f2016-12-21 20:29:32 -0800377static bool is_executable_pte(u64 spte)
378{
379 return (spte & (shadow_x_mask | shadow_nx_mask)) == shadow_x_mask;
380}
381
Dan Williamsba049e92016-01-15 16:56:11 -0800382static kvm_pfn_t spte_to_pfn(u64 pte)
Avi Kivity0b49ea82008-03-23 15:06:23 +0200383{
Anthony Liguori35149e22008-04-02 14:46:56 -0500384 return (pte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT;
Avi Kivity0b49ea82008-03-23 15:06:23 +0200385}
386
Avi Kivityda9285212007-11-21 13:54:47 +0200387static gfn_t pse36_gfn_delta(u32 gpte)
388{
389 int shift = 32 - PT32_DIR_PSE36_SHIFT - PAGE_SHIFT;
390
391 return (gpte & PT32_DIR_PSE36_MASK) << shift;
392}
393
Xiao Guangrong603e0652011-07-12 03:31:28 +0800394#ifdef CONFIG_X86_64
Avi Kivityd555c332009-06-10 14:24:23 +0300395static void __set_spte(u64 *sptep, u64 spte)
Avi Kivitye663ee62007-05-31 15:46:04 +0300396{
Nadav Amitb19ee2f2016-05-11 08:04:29 -0700397 WRITE_ONCE(*sptep, spte);
Avi Kivitye663ee62007-05-31 15:46:04 +0300398}
399
Xiao Guangrong603e0652011-07-12 03:31:28 +0800400static void __update_clear_spte_fast(u64 *sptep, u64 spte)
Avi Kivitya9221dd2010-06-06 14:48:06 +0300401{
Nadav Amitb19ee2f2016-05-11 08:04:29 -0700402 WRITE_ONCE(*sptep, spte);
Avi Kivitya9221dd2010-06-06 14:48:06 +0300403}
404
Xiao Guangrong603e0652011-07-12 03:31:28 +0800405static u64 __update_clear_spte_slow(u64 *sptep, u64 spte)
406{
407 return xchg(sptep, spte);
408}
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800409
410static u64 __get_spte_lockless(u64 *sptep)
411{
412 return ACCESS_ONCE(*sptep);
413}
Xiao Guangrong603e0652011-07-12 03:31:28 +0800414#else
415union split_spte {
416 struct {
417 u32 spte_low;
418 u32 spte_high;
419 };
420 u64 spte;
421};
422
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800423static void count_spte_clear(u64 *sptep, u64 spte)
424{
425 struct kvm_mmu_page *sp = page_header(__pa(sptep));
426
427 if (is_shadow_present_pte(spte))
428 return;
429
430 /* Ensure the spte is completely set before we increase the count */
431 smp_wmb();
432 sp->clear_spte_count++;
433}
434
Xiao Guangrong603e0652011-07-12 03:31:28 +0800435static void __set_spte(u64 *sptep, u64 spte)
436{
437 union split_spte *ssptep, sspte;
438
439 ssptep = (union split_spte *)sptep;
440 sspte = (union split_spte)spte;
441
442 ssptep->spte_high = sspte.spte_high;
443
444 /*
445 * If we map the spte from nonpresent to present, We should store
446 * the high bits firstly, then set present bit, so cpu can not
447 * fetch this spte while we are setting the spte.
448 */
449 smp_wmb();
450
Nadav Amitb19ee2f2016-05-11 08:04:29 -0700451 WRITE_ONCE(ssptep->spte_low, sspte.spte_low);
Xiao Guangrong603e0652011-07-12 03:31:28 +0800452}
453
454static void __update_clear_spte_fast(u64 *sptep, u64 spte)
455{
456 union split_spte *ssptep, sspte;
457
458 ssptep = (union split_spte *)sptep;
459 sspte = (union split_spte)spte;
460
Nadav Amitb19ee2f2016-05-11 08:04:29 -0700461 WRITE_ONCE(ssptep->spte_low, sspte.spte_low);
Xiao Guangrong603e0652011-07-12 03:31:28 +0800462
463 /*
464 * If we map the spte from present to nonpresent, we should clear
465 * present bit firstly to avoid vcpu fetch the old high bits.
466 */
467 smp_wmb();
468
469 ssptep->spte_high = sspte.spte_high;
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800470 count_spte_clear(sptep, spte);
Xiao Guangrong603e0652011-07-12 03:31:28 +0800471}
472
473static u64 __update_clear_spte_slow(u64 *sptep, u64 spte)
474{
475 union split_spte *ssptep, sspte, orig;
476
477 ssptep = (union split_spte *)sptep;
478 sspte = (union split_spte)spte;
479
480 /* xchg acts as a barrier before the setting of the high bits */
481 orig.spte_low = xchg(&ssptep->spte_low, sspte.spte_low);
Zhao Jin41bc3182011-09-19 12:19:51 +0800482 orig.spte_high = ssptep->spte_high;
483 ssptep->spte_high = sspte.spte_high;
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800484 count_spte_clear(sptep, spte);
Xiao Guangrong603e0652011-07-12 03:31:28 +0800485
486 return orig.spte;
487}
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800488
489/*
490 * The idea using the light way get the spte on x86_32 guest is from
491 * gup_get_pte(arch/x86/mm/gup.c).
Xiao Guangrongaccaefe2013-06-19 17:09:20 +0800492 *
493 * An spte tlb flush may be pending, because kvm_set_pte_rmapp
494 * coalesces them and we are running out of the MMU lock. Therefore
495 * we need to protect against in-progress updates of the spte.
496 *
497 * Reading the spte while an update is in progress may get the old value
498 * for the high part of the spte. The race is fine for a present->non-present
499 * change (because the high part of the spte is ignored for non-present spte),
500 * but for a present->present change we must reread the spte.
501 *
502 * All such changes are done in two steps (present->non-present and
503 * non-present->present), hence it is enough to count the number of
504 * present->non-present updates: if it changed while reading the spte,
505 * we might have hit the race. This is done using clear_spte_count.
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800506 */
507static u64 __get_spte_lockless(u64 *sptep)
508{
509 struct kvm_mmu_page *sp = page_header(__pa(sptep));
510 union split_spte spte, *orig = (union split_spte *)sptep;
511 int count;
512
513retry:
514 count = sp->clear_spte_count;
515 smp_rmb();
516
517 spte.spte_low = orig->spte_low;
518 smp_rmb();
519
520 spte.spte_high = orig->spte_high;
521 smp_rmb();
522
523 if (unlikely(spte.spte_low != orig->spte_low ||
524 count != sp->clear_spte_count))
525 goto retry;
526
527 return spte.spte;
528}
Xiao Guangrong603e0652011-07-12 03:31:28 +0800529#endif
530
Junaid Shahidea4114b2016-12-06 16:46:11 -0800531static bool spte_can_locklessly_be_made_writable(u64 spte)
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800532{
Gleb Natapovfeb3eb72013-01-30 16:45:00 +0200533 return (spte & (SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE)) ==
534 (SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE);
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800535}
536
Xiao Guangrong8672b722010-08-02 16:14:04 +0800537static bool spte_has_volatile_bits(u64 spte)
538{
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800539 if (!is_shadow_present_pte(spte))
540 return false;
541
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800542 /*
Adam Buchbinder6a6256f2016-02-23 15:34:30 -0800543 * Always atomically update spte if it can be updated
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800544 * out of mmu-lock, it can ensure dirty bit is not lost,
545 * also, it can help us to get a stable is_writable_pte()
546 * to ensure tlb flush is not missed.
547 */
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800548 if (spte_can_locklessly_be_made_writable(spte) ||
549 is_access_track_spte(spte))
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800550 return true;
551
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800552 if (shadow_accessed_mask) {
553 if ((spte & shadow_accessed_mask) == 0 ||
554 (is_writable_pte(spte) && (spte & shadow_dirty_mask) == 0))
555 return true;
556 }
Xiao Guangrong8672b722010-08-02 16:14:04 +0800557
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800558 return false;
Xiao Guangrong8672b722010-08-02 16:14:04 +0800559}
560
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800561static bool is_accessed_spte(u64 spte)
Xiao Guangrong41327792010-08-02 16:15:08 +0800562{
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800563 return shadow_accessed_mask ? spte & shadow_accessed_mask
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800564 : !is_access_track_spte(spte);
Xiao Guangrong41327792010-08-02 16:15:08 +0800565}
566
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800567static bool is_dirty_spte(u64 spte)
Kai Huang7e71a592015-01-09 16:44:30 +0800568{
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800569 return shadow_dirty_mask ? spte & shadow_dirty_mask
570 : spte & PT_WRITABLE_MASK;
Kai Huang7e71a592015-01-09 16:44:30 +0800571}
572
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800573/* Rules for using mmu_spte_set:
574 * Set the sptep from nonpresent to present.
575 * Note: the sptep being assigned *must* be either not present
576 * or in a state where the hardware will not attempt to update
577 * the spte.
578 */
579static void mmu_spte_set(u64 *sptep, u64 new_spte)
580{
581 WARN_ON(is_shadow_present_pte(*sptep));
582 __set_spte(sptep, new_spte);
583}
584
Junaid Shahidf39a0582016-12-06 16:46:14 -0800585/*
586 * Update the SPTE (excluding the PFN), but do not track changes in its
587 * accessed/dirty status.
588 */
589static u64 mmu_spte_update_no_track(u64 *sptep, u64 new_spte)
590{
591 u64 old_spte = *sptep;
592
593 WARN_ON(!is_shadow_present_pte(new_spte));
594
595 if (!is_shadow_present_pte(old_spte)) {
596 mmu_spte_set(sptep, new_spte);
597 return old_spte;
598 }
599
600 if (!spte_has_volatile_bits(old_spte))
601 __update_clear_spte_fast(sptep, new_spte);
602 else
603 old_spte = __update_clear_spte_slow(sptep, new_spte);
604
605 WARN_ON(spte_to_pfn(old_spte) != spte_to_pfn(new_spte));
606
607 return old_spte;
608}
609
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800610/* Rules for using mmu_spte_update:
Andrea Gelminibb3541f2016-05-21 14:14:44 +0200611 * Update the state bits, it means the mapped pfn is not changed.
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800612 *
613 * Whenever we overwrite a writable spte with a read-only one we
614 * should flush remote TLBs. Otherwise rmap_write_protect
615 * will find a read-only spte, even though the writable spte
616 * might be cached on a CPU's TLB, the return value indicates this
617 * case.
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800618 *
619 * Returns true if the TLB needs to be flushed
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800620 */
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800621static bool mmu_spte_update(u64 *sptep, u64 new_spte)
Avi Kivityb79b93f2010-06-06 15:46:44 +0300622{
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800623 bool flush = false;
Junaid Shahidf39a0582016-12-06 16:46:14 -0800624 u64 old_spte = mmu_spte_update_no_track(sptep, new_spte);
Avi Kivityb79b93f2010-06-06 15:46:44 +0300625
Junaid Shahidf39a0582016-12-06 16:46:14 -0800626 if (!is_shadow_present_pte(old_spte))
627 return false;
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800628
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800629 /*
630 * For the spte updated out of mmu-lock is safe, since
Adam Buchbinder6a6256f2016-02-23 15:34:30 -0800631 * we always atomically update it, see the comments in
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +0800632 * spte_has_volatile_bits().
633 */
Junaid Shahidea4114b2016-12-06 16:46:11 -0800634 if (spte_can_locklessly_be_made_writable(old_spte) &&
Xiao Guangrong7f31c952014-04-17 17:06:15 +0800635 !is_writable_pte(new_spte))
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800636 flush = true;
Xiao Guangrong41327792010-08-02 16:15:08 +0800637
Kai Huang7e71a592015-01-09 16:44:30 +0800638 /*
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800639 * Flush TLB when accessed/dirty states are changed in the page tables,
Kai Huang7e71a592015-01-09 16:44:30 +0800640 * to guarantee consistency between TLB and page tables.
641 */
Kai Huang7e71a592015-01-09 16:44:30 +0800642
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800643 if (is_accessed_spte(old_spte) && !is_accessed_spte(new_spte)) {
644 flush = true;
Xiao Guangrong41327792010-08-02 16:15:08 +0800645 kvm_set_pfn_accessed(spte_to_pfn(old_spte));
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800646 }
Xiao Guangrong6e7d0352012-06-20 15:58:33 +0800647
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800648 if (is_dirty_spte(old_spte) && !is_dirty_spte(new_spte)) {
649 flush = true;
650 kvm_set_pfn_dirty(spte_to_pfn(old_spte));
651 }
652
653 return flush;
Avi Kivityb79b93f2010-06-06 15:46:44 +0300654}
655
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800656/*
657 * Rules for using mmu_spte_clear_track_bits:
658 * It sets the sptep from present to nonpresent, and track the
659 * state bits, it is used to clear the last level sptep.
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800660 * Returns non-zero if the PTE was previously valid.
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800661 */
662static int mmu_spte_clear_track_bits(u64 *sptep)
663{
Dan Williamsba049e92016-01-15 16:56:11 -0800664 kvm_pfn_t pfn;
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800665 u64 old_spte = *sptep;
666
667 if (!spte_has_volatile_bits(old_spte))
Xiao Guangrong603e0652011-07-12 03:31:28 +0800668 __update_clear_spte_fast(sptep, 0ull);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800669 else
Xiao Guangrong603e0652011-07-12 03:31:28 +0800670 old_spte = __update_clear_spte_slow(sptep, 0ull);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800671
Takuya Yoshikawaafd28fe2015-11-20 17:44:55 +0900672 if (!is_shadow_present_pte(old_spte))
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800673 return 0;
674
675 pfn = spte_to_pfn(old_spte);
Xiao Guangrong86fde742012-07-17 21:52:52 +0800676
677 /*
678 * KVM does not hold the refcount of the page used by
679 * kvm mmu, before reclaiming the page, we should
680 * unmap it from mmu first.
681 */
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +0000682 WARN_ON(!kvm_is_reserved_pfn(pfn) && !page_count(pfn_to_page(pfn)));
Xiao Guangrong86fde742012-07-17 21:52:52 +0800683
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800684 if (is_accessed_spte(old_spte))
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800685 kvm_set_pfn_accessed(pfn);
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800686
687 if (is_dirty_spte(old_spte))
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800688 kvm_set_pfn_dirty(pfn);
Junaid Shahid83ef6c82016-12-06 16:46:13 -0800689
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800690 return 1;
691}
692
693/*
694 * Rules for using mmu_spte_clear_no_track:
695 * Directly clear spte without caring the state bits of sptep,
696 * it is used to set the upper level spte.
697 */
698static void mmu_spte_clear_no_track(u64 *sptep)
699{
Xiao Guangrong603e0652011-07-12 03:31:28 +0800700 __update_clear_spte_fast(sptep, 0ull);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +0800701}
702
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800703static u64 mmu_spte_get_lockless(u64 *sptep)
704{
705 return __get_spte_lockless(sptep);
706}
707
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800708static u64 mark_spte_for_access_track(u64 spte)
709{
710 if (shadow_accessed_mask != 0)
711 return spte & ~shadow_accessed_mask;
712
713 if (shadow_acc_track_mask == 0 || is_access_track_spte(spte))
714 return spte;
715
716 /*
Junaid Shahid20d65232016-12-21 20:29:31 -0800717 * Making an Access Tracking PTE will result in removal of write access
718 * from the PTE. So, verify that we will be able to restore the write
719 * access in the fast page fault path later on.
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800720 */
721 WARN_ONCE((spte & PT_WRITABLE_MASK) &&
722 !spte_can_locklessly_be_made_writable(spte),
723 "kvm: Writable SPTE is not locklessly dirty-trackable\n");
724
725 WARN_ONCE(spte & (shadow_acc_track_saved_bits_mask <<
726 shadow_acc_track_saved_bits_shift),
727 "kvm: Access Tracking saved bit locations are not zero\n");
728
729 spte |= (spte & shadow_acc_track_saved_bits_mask) <<
730 shadow_acc_track_saved_bits_shift;
731 spte &= ~shadow_acc_track_mask;
732 spte |= shadow_acc_track_value;
733
734 return spte;
735}
736
Junaid Shahidd3e328f2016-12-21 20:29:32 -0800737/* Restore an acc-track PTE back to a regular PTE */
738static u64 restore_acc_track_spte(u64 spte)
739{
740 u64 new_spte = spte;
741 u64 saved_bits = (spte >> shadow_acc_track_saved_bits_shift)
742 & shadow_acc_track_saved_bits_mask;
743
744 WARN_ON_ONCE(!is_access_track_spte(spte));
745
746 new_spte &= ~shadow_acc_track_mask;
747 new_spte &= ~(shadow_acc_track_saved_bits_mask <<
748 shadow_acc_track_saved_bits_shift);
749 new_spte |= saved_bits;
750
751 return new_spte;
752}
753
Junaid Shahidf160c7b2016-12-06 16:46:16 -0800754/* Returns the Accessed status of the PTE and resets it at the same time. */
755static bool mmu_spte_age(u64 *sptep)
756{
757 u64 spte = mmu_spte_get_lockless(sptep);
758
759 if (!is_accessed_spte(spte))
760 return false;
761
762 if (shadow_accessed_mask) {
763 clear_bit((ffs(shadow_accessed_mask) - 1),
764 (unsigned long *)sptep);
765 } else {
766 /*
767 * Capture the dirty status of the page, so that it doesn't get
768 * lost when the SPTE is marked for access tracking.
769 */
770 if (is_writable_pte(spte))
771 kvm_set_pfn_dirty(spte_to_pfn(spte));
772
773 spte = mark_spte_for_access_track(spte);
774 mmu_spte_update_no_track(sptep, spte);
775 }
776
777 return true;
778}
779
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800780static void walk_shadow_page_lockless_begin(struct kvm_vcpu *vcpu)
781{
Avi Kivityc1427862012-05-14 15:44:06 +0300782 /*
783 * Prevent page table teardown by making any free-er wait during
784 * kvm_flush_remote_tlbs() IPI to all active vcpus.
785 */
786 local_irq_disable();
Lan Tianyu36ca7e02016-03-13 11:10:25 +0800787
Avi Kivityc1427862012-05-14 15:44:06 +0300788 /*
789 * Make sure a following spte read is not reordered ahead of the write
790 * to vcpu->mode.
791 */
Lan Tianyu36ca7e02016-03-13 11:10:25 +0800792 smp_store_mb(vcpu->mode, READING_SHADOW_PAGE_TABLES);
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800793}
794
795static void walk_shadow_page_lockless_end(struct kvm_vcpu *vcpu)
796{
Avi Kivityc1427862012-05-14 15:44:06 +0300797 /*
798 * Make sure the write to vcpu->mode is not reordered in front of
799 * reads to sptes. If it does, kvm_commit_zap_page() can see us
800 * OUTSIDE_GUEST_MODE and proceed to free the shadow page table.
801 */
Lan Tianyu36ca7e02016-03-13 11:10:25 +0800802 smp_store_release(&vcpu->mode, OUTSIDE_GUEST_MODE);
Avi Kivityc1427862012-05-14 15:44:06 +0300803 local_irq_enable();
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +0800804}
805
Avi Kivitye2dec932007-01-05 16:36:54 -0800806static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300807 struct kmem_cache *base_cache, int min)
Avi Kivity714b93d2007-01-05 16:36:53 -0800808{
809 void *obj;
810
811 if (cache->nobjs >= min)
Avi Kivitye2dec932007-01-05 16:36:54 -0800812 return 0;
Avi Kivity714b93d2007-01-05 16:36:53 -0800813 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
Avi Kivity2e3e5882007-09-10 11:28:17 +0300814 obj = kmem_cache_zalloc(base_cache, GFP_KERNEL);
Avi Kivity714b93d2007-01-05 16:36:53 -0800815 if (!obj)
Avi Kivitye2dec932007-01-05 16:36:54 -0800816 return -ENOMEM;
Avi Kivity714b93d2007-01-05 16:36:53 -0800817 cache->objects[cache->nobjs++] = obj;
818 }
Avi Kivitye2dec932007-01-05 16:36:54 -0800819 return 0;
Avi Kivity714b93d2007-01-05 16:36:53 -0800820}
821
Xiao Guangrongf759e2b2011-09-22 16:53:17 +0800822static int mmu_memory_cache_free_objects(struct kvm_mmu_memory_cache *cache)
823{
824 return cache->nobjs;
825}
826
Xiao Guangronge8ad9a72010-05-13 10:06:02 +0800827static void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc,
828 struct kmem_cache *cache)
Avi Kivity714b93d2007-01-05 16:36:53 -0800829{
830 while (mc->nobjs)
Xiao Guangronge8ad9a72010-05-13 10:06:02 +0800831 kmem_cache_free(cache, mc->objects[--mc->nobjs]);
Avi Kivity714b93d2007-01-05 16:36:53 -0800832}
833
Avi Kivityc1158e62007-07-20 08:18:27 +0300834static int mmu_topup_memory_cache_page(struct kvm_mmu_memory_cache *cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300835 int min)
Avi Kivityc1158e62007-07-20 08:18:27 +0300836{
Xiao Guangrong842f22e2011-03-04 19:01:10 +0800837 void *page;
Avi Kivityc1158e62007-07-20 08:18:27 +0300838
839 if (cache->nobjs >= min)
840 return 0;
841 while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
Xiao Guangrong842f22e2011-03-04 19:01:10 +0800842 page = (void *)__get_free_page(GFP_KERNEL);
Avi Kivityc1158e62007-07-20 08:18:27 +0300843 if (!page)
844 return -ENOMEM;
Xiao Guangrong842f22e2011-03-04 19:01:10 +0800845 cache->objects[cache->nobjs++] = page;
Avi Kivityc1158e62007-07-20 08:18:27 +0300846 }
847 return 0;
848}
849
850static void mmu_free_memory_cache_page(struct kvm_mmu_memory_cache *mc)
851{
852 while (mc->nobjs)
Avi Kivityc4d198d2007-07-21 09:06:46 +0300853 free_page((unsigned long)mc->objects[--mc->nobjs]);
Avi Kivityc1158e62007-07-20 08:18:27 +0300854}
855
Avi Kivity8c438502007-04-16 11:53:17 +0300856static int mmu_topup_memory_caches(struct kvm_vcpu *vcpu)
857{
858 int r;
859
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800860 r = mmu_topup_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache,
Xiao Guangrong67052b32011-05-15 23:27:08 +0800861 pte_list_desc_cache, 8 + PTE_PREFETCH_NUM);
Avi Kivity2e3e5882007-09-10 11:28:17 +0300862 if (r)
863 goto out;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800864 r = mmu_topup_memory_cache_page(&vcpu->arch.mmu_page_cache, 8);
Avi Kivity2e3e5882007-09-10 11:28:17 +0300865 if (r)
866 goto out;
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800867 r = mmu_topup_memory_cache(&vcpu->arch.mmu_page_header_cache,
Avi Kivity2e3e5882007-09-10 11:28:17 +0300868 mmu_page_header_cache, 4);
869out:
Avi Kivity8c438502007-04-16 11:53:17 +0300870 return r;
871}
872
Avi Kivity714b93d2007-01-05 16:36:53 -0800873static void mmu_free_memory_caches(struct kvm_vcpu *vcpu)
874{
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800875 mmu_free_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache,
876 pte_list_desc_cache);
Zhang Xiantaoad312c72007-12-13 23:50:52 +0800877 mmu_free_memory_cache_page(&vcpu->arch.mmu_page_cache);
Xiao Guangronge8ad9a72010-05-13 10:06:02 +0800878 mmu_free_memory_cache(&vcpu->arch.mmu_page_header_cache,
879 mmu_page_header_cache);
Avi Kivity714b93d2007-01-05 16:36:53 -0800880}
881
Takuya Yoshikawa80feb892012-05-29 23:54:26 +0900882static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc)
Avi Kivity714b93d2007-01-05 16:36:53 -0800883{
884 void *p;
885
886 BUG_ON(!mc->nobjs);
887 p = mc->objects[--mc->nobjs];
Avi Kivity714b93d2007-01-05 16:36:53 -0800888 return p;
889}
890
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800891static struct pte_list_desc *mmu_alloc_pte_list_desc(struct kvm_vcpu *vcpu)
Avi Kivity714b93d2007-01-05 16:36:53 -0800892{
Takuya Yoshikawa80feb892012-05-29 23:54:26 +0900893 return mmu_memory_cache_alloc(&vcpu->arch.mmu_pte_list_desc_cache);
Avi Kivity714b93d2007-01-05 16:36:53 -0800894}
895
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800896static void mmu_free_pte_list_desc(struct pte_list_desc *pte_list_desc)
Avi Kivity714b93d2007-01-05 16:36:53 -0800897{
Xiao Guangrong53c07b12011-05-15 23:26:20 +0800898 kmem_cache_free(pte_list_desc_cache, pte_list_desc);
Avi Kivity714b93d2007-01-05 16:36:53 -0800899}
900
Lai Jiangshan2032a932010-05-26 16:49:59 +0800901static gfn_t kvm_mmu_page_get_gfn(struct kvm_mmu_page *sp, int index)
902{
903 if (!sp->role.direct)
904 return sp->gfns[index];
905
906 return sp->gfn + (index << ((sp->role.level - 1) * PT64_LEVEL_BITS));
907}
908
909static void kvm_mmu_page_set_gfn(struct kvm_mmu_page *sp, int index, gfn_t gfn)
910{
911 if (sp->role.direct)
912 BUG_ON(gfn != kvm_mmu_page_get_gfn(sp, index));
913 else
914 sp->gfns[index] = gfn;
915}
916
Avi Kivitycd4a4e52007-01-05 16:36:38 -0800917/*
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900918 * Return the pointer to the large page information for a given gfn,
919 * handling slots that are not large page aligned.
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300920 */
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900921static struct kvm_lpage_info *lpage_info_slot(gfn_t gfn,
922 struct kvm_memory_slot *slot,
923 int level)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300924{
925 unsigned long idx;
926
Takuya Yoshikawafb03cb62012-02-08 12:59:10 +0900927 idx = gfn_to_index(gfn, slot->base_gfn, level);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900928 return &slot->arch.lpage_info[level - 2][idx];
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300929}
930
Xiao Guangrong547ffae2016-02-24 17:51:07 +0800931static void update_gfn_disallow_lpage_count(struct kvm_memory_slot *slot,
932 gfn_t gfn, int count)
933{
934 struct kvm_lpage_info *linfo;
935 int i;
936
937 for (i = PT_DIRECTORY_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) {
938 linfo = lpage_info_slot(gfn, slot, i);
939 linfo->disallow_lpage += count;
940 WARN_ON(linfo->disallow_lpage < 0);
941 }
942}
943
944void kvm_mmu_gfn_disallow_lpage(struct kvm_memory_slot *slot, gfn_t gfn)
945{
946 update_gfn_disallow_lpage_count(slot, gfn, 1);
947}
948
949void kvm_mmu_gfn_allow_lpage(struct kvm_memory_slot *slot, gfn_t gfn)
950{
951 update_gfn_disallow_lpage_count(slot, gfn, -1);
952}
953
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200954static void account_shadowed(struct kvm *kvm, struct kvm_mmu_page *sp)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300955{
Paolo Bonzini699023e2015-05-18 15:03:39 +0200956 struct kvm_memslots *slots;
Joerg Roedeld25797b2009-07-27 16:30:43 +0200957 struct kvm_memory_slot *slot;
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200958 gfn_t gfn;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300959
Xiao Guangrong56ca57f2016-02-24 17:51:14 +0800960 kvm->arch.indirect_shadow_pages++;
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200961 gfn = sp->gfn;
Paolo Bonzini699023e2015-05-18 15:03:39 +0200962 slots = kvm_memslots_for_spte_role(kvm, sp->role);
963 slot = __gfn_to_memslot(slots, gfn);
Xiao Guangrong56ca57f2016-02-24 17:51:14 +0800964
965 /* the non-leaf shadow pages are keeping readonly. */
966 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
967 return kvm_slot_page_track_add_page(kvm, slot, gfn,
968 KVM_PAGE_TRACK_WRITE);
969
Xiao Guangrong547ffae2016-02-24 17:51:07 +0800970 kvm_mmu_gfn_disallow_lpage(slot, gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300971}
972
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200973static void unaccount_shadowed(struct kvm *kvm, struct kvm_mmu_page *sp)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300974{
Paolo Bonzini699023e2015-05-18 15:03:39 +0200975 struct kvm_memslots *slots;
Joerg Roedeld25797b2009-07-27 16:30:43 +0200976 struct kvm_memory_slot *slot;
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200977 gfn_t gfn;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300978
Xiao Guangrong56ca57f2016-02-24 17:51:14 +0800979 kvm->arch.indirect_shadow_pages--;
Paolo Bonzini3ed1a472015-05-19 16:29:22 +0200980 gfn = sp->gfn;
Paolo Bonzini699023e2015-05-18 15:03:39 +0200981 slots = kvm_memslots_for_spte_role(kvm, sp->role);
982 slot = __gfn_to_memslot(slots, gfn);
Xiao Guangrong56ca57f2016-02-24 17:51:14 +0800983 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
984 return kvm_slot_page_track_remove_page(kvm, slot, gfn,
985 KVM_PAGE_TRACK_WRITE);
986
Xiao Guangrong547ffae2016-02-24 17:51:07 +0800987 kvm_mmu_gfn_allow_lpage(slot, gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300988}
989
Xiao Guangrong92f94f12016-02-24 17:51:06 +0800990static bool __mmu_gfn_lpage_is_disallowed(gfn_t gfn, int level,
991 struct kvm_memory_slot *slot)
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300992{
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900993 struct kvm_lpage_info *linfo;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300994
995 if (slot) {
Takuya Yoshikawad4dbf472010-12-07 12:59:07 +0900996 linfo = lpage_info_slot(gfn, slot, level);
Xiao Guangrong92f94f12016-02-24 17:51:06 +0800997 return !!linfo->disallow_lpage;
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300998 }
999
Xiao Guangrong92f94f12016-02-24 17:51:06 +08001000 return true;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001001}
1002
Xiao Guangrong92f94f12016-02-24 17:51:06 +08001003static bool mmu_gfn_lpage_is_disallowed(struct kvm_vcpu *vcpu, gfn_t gfn,
1004 int level)
Takuya Yoshikawa5225fdf2015-10-16 17:08:03 +09001005{
1006 struct kvm_memory_slot *slot;
1007
1008 slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
Xiao Guangrong92f94f12016-02-24 17:51:06 +08001009 return __mmu_gfn_lpage_is_disallowed(gfn, level, slot);
Takuya Yoshikawa5225fdf2015-10-16 17:08:03 +09001010}
1011
Joerg Roedeld25797b2009-07-27 16:30:43 +02001012static int host_mapping_level(struct kvm *kvm, gfn_t gfn)
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001013{
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +01001014 unsigned long page_size;
Joerg Roedeld25797b2009-07-27 16:30:43 +02001015 int i, ret = 0;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001016
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +01001017 page_size = kvm_host_page_size(kvm, gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001018
Xiao Guangrong8a3d08f2015-05-13 14:42:21 +08001019 for (i = PT_PAGE_TABLE_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) {
Joerg Roedeld25797b2009-07-27 16:30:43 +02001020 if (page_size >= KVM_HPAGE_SIZE(i))
1021 ret = i;
1022 else
1023 break;
1024 }
1025
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03001026 return ret;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001027}
1028
Takuya Yoshikawad8aacf52015-10-16 17:07:01 +09001029static inline bool memslot_valid_for_gpte(struct kvm_memory_slot *slot,
1030 bool no_dirty_log)
1031{
1032 if (!slot || slot->flags & KVM_MEMSLOT_INVALID)
1033 return false;
1034 if (no_dirty_log && slot->dirty_bitmap)
1035 return false;
1036
1037 return true;
1038}
1039
Xiao Guangrong5d163b12011-03-09 15:43:00 +08001040static struct kvm_memory_slot *
1041gfn_to_memslot_dirty_bitmap(struct kvm_vcpu *vcpu, gfn_t gfn,
1042 bool no_dirty_log)
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001043{
1044 struct kvm_memory_slot *slot;
Xiao Guangrong5d163b12011-03-09 15:43:00 +08001045
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02001046 slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
Takuya Yoshikawad8aacf52015-10-16 17:07:01 +09001047 if (!memslot_valid_for_gpte(slot, no_dirty_log))
Xiao Guangrong5d163b12011-03-09 15:43:00 +08001048 slot = NULL;
1049
1050 return slot;
1051}
1052
Takuya Yoshikawafd136902015-10-16 17:06:02 +09001053static int mapping_level(struct kvm_vcpu *vcpu, gfn_t large_gfn,
1054 bool *force_pt_level)
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08001055{
1056 int host_level, level, max_level;
Takuya Yoshikawad8aacf52015-10-16 17:07:01 +09001057 struct kvm_memory_slot *slot;
1058
Takuya Yoshikawa8c85ac12015-10-19 15:13:29 +09001059 if (unlikely(*force_pt_level))
1060 return PT_PAGE_TABLE_LEVEL;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001061
Takuya Yoshikawa8c85ac12015-10-19 15:13:29 +09001062 slot = kvm_vcpu_gfn_to_memslot(vcpu, large_gfn);
1063 *force_pt_level = !memslot_valid_for_gpte(slot, true);
Takuya Yoshikawafd136902015-10-16 17:06:02 +09001064 if (unlikely(*force_pt_level))
1065 return PT_PAGE_TABLE_LEVEL;
1066
Joerg Roedeld25797b2009-07-27 16:30:43 +02001067 host_level = host_mapping_level(vcpu->kvm, large_gfn);
1068
1069 if (host_level == PT_PAGE_TABLE_LEVEL)
1070 return host_level;
1071
Xiao Guangrong55dd98c2013-02-05 15:26:54 +08001072 max_level = min(kvm_x86_ops->get_lpage_level(), host_level);
Sheng Yang878403b2010-01-05 19:02:29 +08001073
1074 for (level = PT_DIRECTORY_LEVEL; level <= max_level; ++level)
Xiao Guangrong92f94f12016-02-24 17:51:06 +08001075 if (__mmu_gfn_lpage_is_disallowed(large_gfn, level, slot))
Joerg Roedeld25797b2009-07-27 16:30:43 +02001076 break;
Joerg Roedeld25797b2009-07-27 16:30:43 +02001077
1078 return level - 1;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001079}
1080
1081/*
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001082 * About rmap_head encoding:
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001083 *
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001084 * If the bit zero of rmap_head->val is clear, then it points to the only spte
1085 * in this rmap chain. Otherwise, (rmap_head->val & ~1) points to a struct
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001086 * pte_list_desc containing more mappings.
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001087 */
1088
1089/*
1090 * Returns the number of pointers in the rmap chain, not counting the new one.
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001091 */
1092static int pte_list_add(struct kvm_vcpu *vcpu, u64 *spte,
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001093 struct kvm_rmap_head *rmap_head)
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001094{
1095 struct pte_list_desc *desc;
1096 int i, count = 0;
1097
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001098 if (!rmap_head->val) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001099 rmap_printk("pte_list_add: %p %llx 0->1\n", spte, *spte);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001100 rmap_head->val = (unsigned long)spte;
1101 } else if (!(rmap_head->val & 1)) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001102 rmap_printk("pte_list_add: %p %llx 1->many\n", spte, *spte);
1103 desc = mmu_alloc_pte_list_desc(vcpu);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001104 desc->sptes[0] = (u64 *)rmap_head->val;
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001105 desc->sptes[1] = spte;
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001106 rmap_head->val = (unsigned long)desc | 1;
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001107 ++count;
1108 } else {
1109 rmap_printk("pte_list_add: %p %llx many->many\n", spte, *spte);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001110 desc = (struct pte_list_desc *)(rmap_head->val & ~1ul);
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001111 while (desc->sptes[PTE_LIST_EXT-1] && desc->more) {
1112 desc = desc->more;
1113 count += PTE_LIST_EXT;
1114 }
1115 if (desc->sptes[PTE_LIST_EXT-1]) {
1116 desc->more = mmu_alloc_pte_list_desc(vcpu);
1117 desc = desc->more;
1118 }
1119 for (i = 0; desc->sptes[i]; ++i)
1120 ++count;
1121 desc->sptes[i] = spte;
1122 }
1123 return count;
1124}
1125
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001126static void
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001127pte_list_desc_remove_entry(struct kvm_rmap_head *rmap_head,
1128 struct pte_list_desc *desc, int i,
1129 struct pte_list_desc *prev_desc)
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001130{
1131 int j;
1132
1133 for (j = PTE_LIST_EXT - 1; !desc->sptes[j] && j > i; --j)
1134 ;
1135 desc->sptes[i] = desc->sptes[j];
1136 desc->sptes[j] = NULL;
1137 if (j != 0)
1138 return;
1139 if (!prev_desc && !desc->more)
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001140 rmap_head->val = (unsigned long)desc->sptes[0];
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001141 else
1142 if (prev_desc)
1143 prev_desc->more = desc->more;
1144 else
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001145 rmap_head->val = (unsigned long)desc->more | 1;
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001146 mmu_free_pte_list_desc(desc);
1147}
1148
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001149static void pte_list_remove(u64 *spte, struct kvm_rmap_head *rmap_head)
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001150{
1151 struct pte_list_desc *desc;
1152 struct pte_list_desc *prev_desc;
1153 int i;
1154
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001155 if (!rmap_head->val) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001156 printk(KERN_ERR "pte_list_remove: %p 0->BUG\n", spte);
1157 BUG();
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001158 } else if (!(rmap_head->val & 1)) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001159 rmap_printk("pte_list_remove: %p 1->0\n", spte);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001160 if ((u64 *)rmap_head->val != spte) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001161 printk(KERN_ERR "pte_list_remove: %p 1->BUG\n", spte);
1162 BUG();
1163 }
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001164 rmap_head->val = 0;
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001165 } else {
1166 rmap_printk("pte_list_remove: %p many->many\n", spte);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001167 desc = (struct pte_list_desc *)(rmap_head->val & ~1ul);
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001168 prev_desc = NULL;
1169 while (desc) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001170 for (i = 0; i < PTE_LIST_EXT && desc->sptes[i]; ++i) {
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001171 if (desc->sptes[i] == spte) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001172 pte_list_desc_remove_entry(rmap_head,
1173 desc, i, prev_desc);
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001174 return;
1175 }
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001176 }
Xiao Guangrong53c07b12011-05-15 23:26:20 +08001177 prev_desc = desc;
1178 desc = desc->more;
1179 }
1180 pr_err("pte_list_remove: %p many->many\n", spte);
1181 BUG();
1182 }
1183}
1184
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001185static struct kvm_rmap_head *__gfn_to_rmap(gfn_t gfn, int level,
1186 struct kvm_memory_slot *slot)
Takuya Yoshikawa9b9b1492011-11-14 18:22:28 +09001187{
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09001188 unsigned long idx;
Takuya Yoshikawa9b9b1492011-11-14 18:22:28 +09001189
Takuya Yoshikawa77d11302012-07-02 17:57:17 +09001190 idx = gfn_to_index(gfn, slot->base_gfn, level);
Takuya Yoshikawad89cc612012-08-01 18:03:28 +09001191 return &slot->arch.rmap[level - PT_PAGE_TABLE_LEVEL][idx];
Takuya Yoshikawa9b9b1492011-11-14 18:22:28 +09001192}
1193
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001194static struct kvm_rmap_head *gfn_to_rmap(struct kvm *kvm, gfn_t gfn,
1195 struct kvm_mmu_page *sp)
Izik Eidus290fc382007-09-27 14:11:22 +02001196{
Paolo Bonzini699023e2015-05-18 15:03:39 +02001197 struct kvm_memslots *slots;
Izik Eidus290fc382007-09-27 14:11:22 +02001198 struct kvm_memory_slot *slot;
1199
Paolo Bonzini699023e2015-05-18 15:03:39 +02001200 slots = kvm_memslots_for_spte_role(kvm, sp->role);
1201 slot = __gfn_to_memslot(slots, gfn);
Paolo Bonzinie4cd1da2015-05-18 15:11:46 +02001202 return __gfn_to_rmap(gfn, sp->role.level, slot);
Izik Eidus290fc382007-09-27 14:11:22 +02001203}
1204
Xiao Guangrongf759e2b2011-09-22 16:53:17 +08001205static bool rmap_can_add(struct kvm_vcpu *vcpu)
1206{
1207 struct kvm_mmu_memory_cache *cache;
1208
1209 cache = &vcpu->arch.mmu_pte_list_desc_cache;
1210 return mmu_memory_cache_free_objects(cache);
1211}
1212
Joerg Roedel44ad9942009-07-27 16:30:42 +02001213static int rmap_add(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn)
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001214{
Avi Kivity4db35312007-11-21 15:28:32 +02001215 struct kvm_mmu_page *sp;
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001216 struct kvm_rmap_head *rmap_head;
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001217
Avi Kivity4db35312007-11-21 15:28:32 +02001218 sp = page_header(__pa(spte));
Lai Jiangshan2032a932010-05-26 16:49:59 +08001219 kvm_mmu_page_set_gfn(sp, spte - sp->spt, gfn);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001220 rmap_head = gfn_to_rmap(vcpu->kvm, gfn, sp);
1221 return pte_list_add(vcpu, spte, rmap_head);
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001222}
1223
Izik Eidus290fc382007-09-27 14:11:22 +02001224static void rmap_remove(struct kvm *kvm, u64 *spte)
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001225{
Avi Kivity4db35312007-11-21 15:28:32 +02001226 struct kvm_mmu_page *sp;
Lai Jiangshan2032a932010-05-26 16:49:59 +08001227 gfn_t gfn;
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001228 struct kvm_rmap_head *rmap_head;
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001229
Avi Kivity4db35312007-11-21 15:28:32 +02001230 sp = page_header(__pa(spte));
Lai Jiangshan2032a932010-05-26 16:49:59 +08001231 gfn = kvm_mmu_page_get_gfn(sp, spte - sp->spt);
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001232 rmap_head = gfn_to_rmap(kvm, gfn, sp);
1233 pte_list_remove(spte, rmap_head);
Avi Kivitycd4a4e52007-01-05 16:36:38 -08001234}
1235
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001236/*
1237 * Used by the following functions to iterate through the sptes linked by a
1238 * rmap. All fields are private and not assumed to be used outside.
1239 */
1240struct rmap_iterator {
1241 /* private fields */
1242 struct pte_list_desc *desc; /* holds the sptep if not NULL */
1243 int pos; /* index of the sptep */
1244};
1245
1246/*
1247 * Iteration must be started by this function. This should also be used after
1248 * removing/dropping sptes from the rmap link because in such cases the
1249 * information in the itererator may not be valid.
1250 *
1251 * Returns sptep if found, NULL otherwise.
1252 */
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001253static u64 *rmap_get_first(struct kvm_rmap_head *rmap_head,
1254 struct rmap_iterator *iter)
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001255{
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001256 u64 *sptep;
1257
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001258 if (!rmap_head->val)
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001259 return NULL;
1260
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001261 if (!(rmap_head->val & 1)) {
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001262 iter->desc = NULL;
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001263 sptep = (u64 *)rmap_head->val;
1264 goto out;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001265 }
1266
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001267 iter->desc = (struct pte_list_desc *)(rmap_head->val & ~1ul);
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001268 iter->pos = 0;
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001269 sptep = iter->desc->sptes[iter->pos];
1270out:
1271 BUG_ON(!is_shadow_present_pte(*sptep));
1272 return sptep;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001273}
1274
1275/*
1276 * Must be used with a valid iterator: e.g. after rmap_get_first().
1277 *
1278 * Returns sptep if found, NULL otherwise.
1279 */
1280static u64 *rmap_get_next(struct rmap_iterator *iter)
1281{
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001282 u64 *sptep;
1283
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001284 if (iter->desc) {
1285 if (iter->pos < PTE_LIST_EXT - 1) {
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001286 ++iter->pos;
1287 sptep = iter->desc->sptes[iter->pos];
1288 if (sptep)
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001289 goto out;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001290 }
1291
1292 iter->desc = iter->desc->more;
1293
1294 if (iter->desc) {
1295 iter->pos = 0;
1296 /* desc->sptes[0] cannot be NULL */
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001297 sptep = iter->desc->sptes[iter->pos];
1298 goto out;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001299 }
1300 }
1301
1302 return NULL;
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001303out:
1304 BUG_ON(!is_shadow_present_pte(*sptep));
1305 return sptep;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001306}
1307
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001308#define for_each_rmap_spte(_rmap_head_, _iter_, _spte_) \
1309 for (_spte_ = rmap_get_first(_rmap_head_, _iter_); \
Takuya Yoshikawa77fbbbd2015-11-20 17:45:44 +09001310 _spte_; _spte_ = rmap_get_next(_iter_))
Xiao Guangrong0d536792015-05-13 14:42:20 +08001311
Xiao Guangrongc3707952011-07-12 03:28:04 +08001312static void drop_spte(struct kvm *kvm, u64 *sptep)
Xiao Guangronge4b502e2010-07-16 11:28:09 +08001313{
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +08001314 if (mmu_spte_clear_track_bits(sptep))
Marcelo Tosattieb45fda2010-10-25 11:58:22 -02001315 rmap_remove(kvm, sptep);
Avi Kivitybe38d272010-06-06 14:31:27 +03001316}
1317
Xiao Guangrong8e22f952012-06-20 15:57:39 +08001318
1319static bool __drop_large_spte(struct kvm *kvm, u64 *sptep)
1320{
1321 if (is_large_pte(*sptep)) {
1322 WARN_ON(page_header(__pa(sptep))->role.level ==
1323 PT_PAGE_TABLE_LEVEL);
1324 drop_spte(kvm, sptep);
1325 --kvm->stat.lpages;
1326 return true;
1327 }
1328
1329 return false;
1330}
1331
1332static void drop_large_spte(struct kvm_vcpu *vcpu, u64 *sptep)
1333{
1334 if (__drop_large_spte(vcpu->kvm, sptep))
1335 kvm_flush_remote_tlbs(vcpu->kvm);
1336}
1337
1338/*
Xiao Guangrong49fde342012-06-20 15:58:58 +08001339 * Write-protect on the specified @sptep, @pt_protect indicates whether
Xiao Guangrongc126d942014-04-17 17:06:14 +08001340 * spte write-protection is caused by protecting shadow page table.
Xiao Guangrong49fde342012-06-20 15:58:58 +08001341 *
Tiejun Chenb4619662014-09-22 10:31:38 +08001342 * Note: write protection is difference between dirty logging and spte
Xiao Guangrong49fde342012-06-20 15:58:58 +08001343 * protection:
1344 * - for dirty logging, the spte can be set to writable at anytime if
1345 * its dirty bitmap is properly set.
1346 * - for spte protection, the spte can be writable only after unsync-ing
1347 * shadow page.
Xiao Guangrong8e22f952012-06-20 15:57:39 +08001348 *
Xiao Guangrongc126d942014-04-17 17:06:14 +08001349 * Return true if tlb need be flushed.
Xiao Guangrong8e22f952012-06-20 15:57:39 +08001350 */
Bandan Dasc4f138b2016-08-02 16:32:37 -04001351static bool spte_write_protect(u64 *sptep, bool pt_protect)
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001352{
1353 u64 spte = *sptep;
1354
Xiao Guangrong49fde342012-06-20 15:58:58 +08001355 if (!is_writable_pte(spte) &&
Junaid Shahidea4114b2016-12-06 16:46:11 -08001356 !(pt_protect && spte_can_locklessly_be_made_writable(spte)))
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001357 return false;
1358
1359 rmap_printk("rmap_write_protect: spte %p %llx\n", sptep, *sptep);
1360
Xiao Guangrong49fde342012-06-20 15:58:58 +08001361 if (pt_protect)
1362 spte &= ~SPTE_MMU_WRITEABLE;
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001363 spte = spte & ~PT_WRITABLE_MASK;
Xiao Guangrong49fde342012-06-20 15:58:58 +08001364
Xiao Guangrongc126d942014-04-17 17:06:14 +08001365 return mmu_spte_update(sptep, spte);
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001366}
1367
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001368static bool __rmap_write_protect(struct kvm *kvm,
1369 struct kvm_rmap_head *rmap_head,
Takuya Yoshikawa245c3912013-01-08 19:44:09 +09001370 bool pt_protect)
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001371{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001372 u64 *sptep;
1373 struct rmap_iterator iter;
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001374 bool flush = false;
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001375
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001376 for_each_rmap_spte(rmap_head, &iter, sptep)
Bandan Dasc4f138b2016-08-02 16:32:37 -04001377 flush |= spte_write_protect(sptep, pt_protect);
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001378
Xiao Guangrongd13bc5b2012-06-20 15:57:15 +08001379 return flush;
Takuya Yoshikawaa0ed4602012-03-01 19:31:22 +09001380}
1381
Bandan Dasc4f138b2016-08-02 16:32:37 -04001382static bool spte_clear_dirty(u64 *sptep)
Kai Huangf4b4b182015-01-28 10:54:24 +08001383{
1384 u64 spte = *sptep;
1385
1386 rmap_printk("rmap_clear_dirty: spte %p %llx\n", sptep, *sptep);
1387
1388 spte &= ~shadow_dirty_mask;
1389
1390 return mmu_spte_update(sptep, spte);
1391}
1392
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001393static bool __rmap_clear_dirty(struct kvm *kvm, struct kvm_rmap_head *rmap_head)
Kai Huangf4b4b182015-01-28 10:54:24 +08001394{
1395 u64 *sptep;
1396 struct rmap_iterator iter;
1397 bool flush = false;
1398
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001399 for_each_rmap_spte(rmap_head, &iter, sptep)
Bandan Dasc4f138b2016-08-02 16:32:37 -04001400 flush |= spte_clear_dirty(sptep);
Kai Huangf4b4b182015-01-28 10:54:24 +08001401
1402 return flush;
1403}
1404
Bandan Dasc4f138b2016-08-02 16:32:37 -04001405static bool spte_set_dirty(u64 *sptep)
Kai Huangf4b4b182015-01-28 10:54:24 +08001406{
1407 u64 spte = *sptep;
1408
1409 rmap_printk("rmap_set_dirty: spte %p %llx\n", sptep, *sptep);
1410
1411 spte |= shadow_dirty_mask;
1412
1413 return mmu_spte_update(sptep, spte);
1414}
1415
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001416static bool __rmap_set_dirty(struct kvm *kvm, struct kvm_rmap_head *rmap_head)
Kai Huangf4b4b182015-01-28 10:54:24 +08001417{
1418 u64 *sptep;
1419 struct rmap_iterator iter;
1420 bool flush = false;
1421
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001422 for_each_rmap_spte(rmap_head, &iter, sptep)
Bandan Dasc4f138b2016-08-02 16:32:37 -04001423 flush |= spte_set_dirty(sptep);
Kai Huangf4b4b182015-01-28 10:54:24 +08001424
1425 return flush;
1426}
1427
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001428/**
Kai Huang3b0f1d02015-01-28 10:54:23 +08001429 * kvm_mmu_write_protect_pt_masked - write protect selected PT level pages
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001430 * @kvm: kvm instance
1431 * @slot: slot to protect
1432 * @gfn_offset: start of the BITS_PER_LONG pages we care about
1433 * @mask: indicates which pages we should protect
1434 *
1435 * Used when we do not need to care about huge page mappings: e.g. during dirty
1436 * logging we do not have any such mappings.
1437 */
Kai Huang3b0f1d02015-01-28 10:54:23 +08001438static void kvm_mmu_write_protect_pt_masked(struct kvm *kvm,
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001439 struct kvm_memory_slot *slot,
1440 gfn_t gfn_offset, unsigned long mask)
Izik Eidus98348e92007-10-16 14:42:30 +02001441{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001442 struct kvm_rmap_head *rmap_head;
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001443
1444 while (mask) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001445 rmap_head = __gfn_to_rmap(slot->base_gfn + gfn_offset + __ffs(mask),
1446 PT_PAGE_TABLE_LEVEL, slot);
1447 __rmap_write_protect(kvm, rmap_head, false);
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001448
1449 /* clear the first set bit */
1450 mask &= mask - 1;
1451 }
1452}
1453
Kai Huang3b0f1d02015-01-28 10:54:23 +08001454/**
Kai Huangf4b4b182015-01-28 10:54:24 +08001455 * kvm_mmu_clear_dirty_pt_masked - clear MMU D-bit for PT level pages
1456 * @kvm: kvm instance
1457 * @slot: slot to clear D-bit
1458 * @gfn_offset: start of the BITS_PER_LONG pages we care about
1459 * @mask: indicates which pages we should clear D-bit
1460 *
1461 * Used for PML to re-log the dirty GPAs after userspace querying dirty_bitmap.
1462 */
1463void kvm_mmu_clear_dirty_pt_masked(struct kvm *kvm,
1464 struct kvm_memory_slot *slot,
1465 gfn_t gfn_offset, unsigned long mask)
1466{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001467 struct kvm_rmap_head *rmap_head;
Kai Huangf4b4b182015-01-28 10:54:24 +08001468
1469 while (mask) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001470 rmap_head = __gfn_to_rmap(slot->base_gfn + gfn_offset + __ffs(mask),
1471 PT_PAGE_TABLE_LEVEL, slot);
1472 __rmap_clear_dirty(kvm, rmap_head);
Kai Huangf4b4b182015-01-28 10:54:24 +08001473
1474 /* clear the first set bit */
1475 mask &= mask - 1;
1476 }
1477}
1478EXPORT_SYMBOL_GPL(kvm_mmu_clear_dirty_pt_masked);
1479
1480/**
Kai Huang3b0f1d02015-01-28 10:54:23 +08001481 * kvm_arch_mmu_enable_log_dirty_pt_masked - enable dirty logging for selected
1482 * PT level pages.
1483 *
1484 * It calls kvm_mmu_write_protect_pt_masked to write protect selected pages to
1485 * enable dirty logging for them.
1486 *
1487 * Used when we do not need to care about huge page mappings: e.g. during dirty
1488 * logging we do not have any such mappings.
1489 */
1490void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm,
1491 struct kvm_memory_slot *slot,
1492 gfn_t gfn_offset, unsigned long mask)
1493{
Kai Huang88178fd2015-01-28 10:54:27 +08001494 if (kvm_x86_ops->enable_log_dirty_pt_masked)
1495 kvm_x86_ops->enable_log_dirty_pt_masked(kvm, slot, gfn_offset,
1496 mask);
1497 else
1498 kvm_mmu_write_protect_pt_masked(kvm, slot, gfn_offset, mask);
Kai Huang3b0f1d02015-01-28 10:54:23 +08001499}
1500
Bandan Dasbab41652017-05-05 15:25:13 -04001501/**
1502 * kvm_arch_write_log_dirty - emulate dirty page logging
1503 * @vcpu: Guest mode vcpu
1504 *
1505 * Emulate arch specific page modification logging for the
1506 * nested hypervisor
1507 */
1508int kvm_arch_write_log_dirty(struct kvm_vcpu *vcpu)
1509{
1510 if (kvm_x86_ops->write_log_dirty)
1511 return kvm_x86_ops->write_log_dirty(vcpu);
1512
1513 return 0;
1514}
1515
Xiao Guangrongaeecee22016-02-24 17:51:08 +08001516bool kvm_mmu_slot_gfn_write_protect(struct kvm *kvm,
1517 struct kvm_memory_slot *slot, u64 gfn)
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001518{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001519 struct kvm_rmap_head *rmap_head;
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001520 int i;
Xiao Guangrong2f845692012-06-20 15:56:53 +08001521 bool write_protected = false;
Takuya Yoshikawa5dc99b232012-03-01 19:32:16 +09001522
Xiao Guangrong8a3d08f2015-05-13 14:42:21 +08001523 for (i = PT_PAGE_TABLE_LEVEL; i <= PT_MAX_HUGEPAGE_LEVEL; ++i) {
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001524 rmap_head = __gfn_to_rmap(gfn, i, slot);
Xiao Guangrongaeecee22016-02-24 17:51:08 +08001525 write_protected |= __rmap_write_protect(kvm, rmap_head, true);
Marcelo Tosatti05da4552008-02-23 11:44:30 -03001526 }
1527
Marcelo Tosattib1a36822008-12-01 22:32:03 -02001528 return write_protected;
Avi Kivity374cbac2007-01-05 16:36:43 -08001529}
1530
Xiao Guangrongaeecee22016-02-24 17:51:08 +08001531static bool rmap_write_protect(struct kvm_vcpu *vcpu, u64 gfn)
1532{
1533 struct kvm_memory_slot *slot;
1534
1535 slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
1536 return kvm_mmu_slot_gfn_write_protect(vcpu->kvm, slot, gfn);
1537}
1538
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001539static bool kvm_zap_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head)
Xiao Guangrong6a49f852015-05-13 14:42:25 +08001540{
1541 u64 *sptep;
1542 struct rmap_iterator iter;
1543 bool flush = false;
1544
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001545 while ((sptep = rmap_get_first(rmap_head, &iter))) {
Xiao Guangrong6a49f852015-05-13 14:42:25 +08001546 rmap_printk("%s: spte %p %llx.\n", __func__, sptep, *sptep);
1547
1548 drop_spte(kvm, sptep);
1549 flush = true;
1550 }
1551
1552 return flush;
1553}
1554
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001555static int kvm_unmap_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001556 struct kvm_memory_slot *slot, gfn_t gfn, int level,
1557 unsigned long data)
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001558{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001559 return kvm_zap_rmapp(kvm, rmap_head);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001560}
1561
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001562static int kvm_set_pte_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001563 struct kvm_memory_slot *slot, gfn_t gfn, int level,
1564 unsigned long data)
Izik Eidus3da0dd42009-09-23 21:47:18 +03001565{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001566 u64 *sptep;
1567 struct rmap_iterator iter;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001568 int need_flush = 0;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001569 u64 new_spte;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001570 pte_t *ptep = (pte_t *)data;
Dan Williamsba049e92016-01-15 16:56:11 -08001571 kvm_pfn_t new_pfn;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001572
1573 WARN_ON(pte_huge(*ptep));
1574 new_pfn = pte_pfn(*ptep);
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001575
Xiao Guangrong0d536792015-05-13 14:42:20 +08001576restart:
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001577 for_each_rmap_spte(rmap_head, &iter, sptep) {
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001578 rmap_printk("kvm_set_pte_rmapp: spte %p %llx gfn %llx (%d)\n",
Junaid Shahidf160c7b2016-12-06 16:46:16 -08001579 sptep, *sptep, gfn, level);
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001580
Izik Eidus3da0dd42009-09-23 21:47:18 +03001581 need_flush = 1;
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001582
Izik Eidus3da0dd42009-09-23 21:47:18 +03001583 if (pte_write(*ptep)) {
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001584 drop_spte(kvm, sptep);
Xiao Guangrong0d536792015-05-13 14:42:20 +08001585 goto restart;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001586 } else {
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001587 new_spte = *sptep & ~PT64_BASE_ADDR_MASK;
Izik Eidus3da0dd42009-09-23 21:47:18 +03001588 new_spte |= (u64)new_pfn << PAGE_SHIFT;
1589
1590 new_spte &= ~PT_WRITABLE_MASK;
1591 new_spte &= ~SPTE_HOST_WRITEABLE;
Junaid Shahidf160c7b2016-12-06 16:46:16 -08001592
1593 new_spte = mark_spte_for_access_track(new_spte);
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001594
1595 mmu_spte_clear_track_bits(sptep);
1596 mmu_spte_set(sptep, new_spte);
Izik Eidus3da0dd42009-09-23 21:47:18 +03001597 }
1598 }
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001599
Izik Eidus3da0dd42009-09-23 21:47:18 +03001600 if (need_flush)
1601 kvm_flush_remote_tlbs(kvm);
1602
1603 return 0;
1604}
1605
Xiao Guangrong6ce1f4e2015-05-13 14:42:22 +08001606struct slot_rmap_walk_iterator {
1607 /* input fields. */
1608 struct kvm_memory_slot *slot;
1609 gfn_t start_gfn;
1610 gfn_t end_gfn;
1611 int start_level;
1612 int end_level;
1613
1614 /* output fields. */
1615 gfn_t gfn;
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001616 struct kvm_rmap_head *rmap;
Xiao Guangrong6ce1f4e2015-05-13 14:42:22 +08001617 int level;
1618
1619 /* private field. */
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001620 struct kvm_rmap_head *end_rmap;
Xiao Guangrong6ce1f4e2015-05-13 14:42:22 +08001621};
1622
1623static void
1624rmap_walk_init_level(struct slot_rmap_walk_iterator *iterator, int level)
1625{
1626 iterator->level = level;
1627 iterator->gfn = iterator->start_gfn;
1628 iterator->rmap = __gfn_to_rmap(iterator->gfn, level, iterator->slot);
1629 iterator->end_rmap = __gfn_to_rmap(iterator->end_gfn, level,
1630 iterator->slot);
1631}
1632
1633static void
1634slot_rmap_walk_init(struct slot_rmap_walk_iterator *iterator,
1635 struct kvm_memory_slot *slot, int start_level,
1636 int end_level, gfn_t start_gfn, gfn_t end_gfn)
1637{
1638 iterator->slot = slot;
1639 iterator->start_level = start_level;
1640 iterator->end_level = end_level;
1641 iterator->start_gfn = start_gfn;
1642 iterator->end_gfn = end_gfn;
1643
1644 rmap_walk_init_level(iterator, iterator->start_level);
1645}
1646
1647static bool slot_rmap_walk_okay(struct slot_rmap_walk_iterator *iterator)
1648{
1649 return !!iterator->rmap;
1650}
1651
1652static void slot_rmap_walk_next(struct slot_rmap_walk_iterator *iterator)
1653{
1654 if (++iterator->rmap <= iterator->end_rmap) {
1655 iterator->gfn += (1UL << KVM_HPAGE_GFN_SHIFT(iterator->level));
1656 return;
1657 }
1658
1659 if (++iterator->level > iterator->end_level) {
1660 iterator->rmap = NULL;
1661 return;
1662 }
1663
1664 rmap_walk_init_level(iterator, iterator->level);
1665}
1666
1667#define for_each_slot_rmap_range(_slot_, _start_level_, _end_level_, \
1668 _start_gfn, _end_gfn, _iter_) \
1669 for (slot_rmap_walk_init(_iter_, _slot_, _start_level_, \
1670 _end_level_, _start_gfn, _end_gfn); \
1671 slot_rmap_walk_okay(_iter_); \
1672 slot_rmap_walk_next(_iter_))
1673
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001674static int kvm_handle_hva_range(struct kvm *kvm,
1675 unsigned long start,
1676 unsigned long end,
1677 unsigned long data,
1678 int (*handler)(struct kvm *kvm,
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001679 struct kvm_rmap_head *rmap_head,
Takuya Yoshikawa048212d2012-07-02 17:57:59 +09001680 struct kvm_memory_slot *slot,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001681 gfn_t gfn,
1682 int level,
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001683 unsigned long data))
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001684{
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001685 struct kvm_memslots *slots;
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +08001686 struct kvm_memory_slot *memslot;
Xiao Guangrong6ce1f4e2015-05-13 14:42:22 +08001687 struct slot_rmap_walk_iterator iterator;
1688 int ret = 0;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02001689 int i;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001690
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02001691 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
1692 slots = __kvm_memslots(kvm, i);
1693 kvm_for_each_memslot(memslot, slots) {
1694 unsigned long hva_start, hva_end;
1695 gfn_t gfn_start, gfn_end;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02001696
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02001697 hva_start = max(start, memslot->userspace_addr);
1698 hva_end = min(end, memslot->userspace_addr +
1699 (memslot->npages << PAGE_SHIFT));
1700 if (hva_start >= hva_end)
1701 continue;
1702 /*
1703 * {gfn(page) | page intersects with [hva_start, hva_end)} =
1704 * {gfn_start, gfn_start+1, ..., gfn_end-1}.
1705 */
1706 gfn_start = hva_to_gfn_memslot(hva_start, memslot);
1707 gfn_end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, memslot);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001708
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02001709 for_each_slot_rmap_range(memslot, PT_PAGE_TABLE_LEVEL,
1710 PT_MAX_HUGEPAGE_LEVEL,
1711 gfn_start, gfn_end - 1,
1712 &iterator)
1713 ret |= handler(kvm, iterator.rmap, memslot,
1714 iterator.gfn, iterator.level, data);
1715 }
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001716 }
1717
Takuya Yoshikawaf3953022012-07-02 17:58:48 +09001718 return ret;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001719}
1720
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001721static int kvm_handle_hva(struct kvm *kvm, unsigned long hva,
1722 unsigned long data,
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001723 int (*handler)(struct kvm *kvm,
1724 struct kvm_rmap_head *rmap_head,
Takuya Yoshikawa048212d2012-07-02 17:57:59 +09001725 struct kvm_memory_slot *slot,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001726 gfn_t gfn, int level,
Takuya Yoshikawa84504ef2012-07-02 17:55:48 +09001727 unsigned long data))
1728{
1729 return kvm_handle_hva_range(kvm, hva, hva + 1, data, handler);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001730}
1731
1732int kvm_unmap_hva(struct kvm *kvm, unsigned long hva)
1733{
Izik Eidus3da0dd42009-09-23 21:47:18 +03001734 return kvm_handle_hva(kvm, hva, 0, kvm_unmap_rmapp);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001735}
1736
Takuya Yoshikawab3ae2092012-07-02 17:56:33 +09001737int kvm_unmap_hva_range(struct kvm *kvm, unsigned long start, unsigned long end)
1738{
1739 return kvm_handle_hva_range(kvm, start, end, 0, kvm_unmap_rmapp);
1740}
1741
Izik Eidus3da0dd42009-09-23 21:47:18 +03001742void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte)
1743{
Frederik Deweerdt8a8365c2009-10-09 11:42:56 +00001744 kvm_handle_hva(kvm, hva, (unsigned long)&pte, kvm_set_pte_rmapp);
Izik Eidus3da0dd42009-09-23 21:47:18 +03001745}
1746
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001747static int kvm_age_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001748 struct kvm_memory_slot *slot, gfn_t gfn, int level,
1749 unsigned long data)
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001750{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001751 u64 *sptep;
Michael S. Tsirkin79f702a2012-06-03 11:34:08 +03001752 struct rmap_iterator uninitialized_var(iter);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001753 int young = 0;
1754
Junaid Shahidf160c7b2016-12-06 16:46:16 -08001755 for_each_rmap_spte(rmap_head, &iter, sptep)
1756 young |= mmu_spte_age(sptep);
Xiao Guangrong0d536792015-05-13 14:42:20 +08001757
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001758 trace_kvm_age_page(gfn, level, slot, young);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001759 return young;
1760}
1761
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001762static int kvm_test_age_rmapp(struct kvm *kvm, struct kvm_rmap_head *rmap_head,
Andres Lagar-Cavilla8a9522d2014-09-23 12:34:54 -07001763 struct kvm_memory_slot *slot, gfn_t gfn,
1764 int level, unsigned long data)
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001765{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09001766 u64 *sptep;
1767 struct rmap_iterator iter;
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001768
1769 /*
Junaid Shahidf160c7b2016-12-06 16:46:16 -08001770 * If there's no access bit in the secondary pte set by the hardware and
1771 * fast access tracking is also not enabled, it's up to gup-fast/gup to
1772 * set the access bit in the primary pte or in the page structure.
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001773 */
Junaid Shahidf160c7b2016-12-06 16:46:16 -08001774 if (!shadow_accessed_mask && !shadow_acc_track_mask)
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001775 goto out;
1776
Junaid Shahid83ef6c82016-12-06 16:46:13 -08001777 for_each_rmap_spte(rmap_head, &iter, sptep)
1778 if (is_accessed_spte(*sptep))
1779 return 1;
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001780out:
Junaid Shahid83ef6c82016-12-06 16:46:13 -08001781 return 0;
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001782}
1783
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001784#define RMAP_RECYCLE_THRESHOLD 1000
1785
Joerg Roedel852e3c12009-07-27 16:30:44 +02001786static void rmap_recycle(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn)
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001787{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001788 struct kvm_rmap_head *rmap_head;
Joerg Roedel852e3c12009-07-27 16:30:44 +02001789 struct kvm_mmu_page *sp;
1790
1791 sp = page_header(__pa(spte));
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001792
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001793 rmap_head = gfn_to_rmap(vcpu->kvm, gfn, sp);
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001794
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09001795 kvm_unmap_rmapp(vcpu->kvm, rmap_head, NULL, gfn, sp->role.level, 0);
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03001796 kvm_flush_remote_tlbs(vcpu->kvm);
1797}
1798
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -07001799int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end)
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001800{
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -07001801 /*
1802 * In case of absence of EPT Access and Dirty Bits supports,
1803 * emulate the accessed bit for EPT, by checking if this page has
1804 * an EPT mapping, and clearing it if it does. On the next access,
1805 * a new EPT mapping will be established.
1806 * This has some overhead, but not as much as the cost of swapping
1807 * out actively used pages or breaking up actively used hugepages.
1808 */
Junaid Shahidf160c7b2016-12-06 16:46:16 -08001809 if (!shadow_accessed_mask && !shadow_acc_track_mask)
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -07001810 return kvm_handle_hva_range(kvm, start, end, 0,
1811 kvm_unmap_rmapp);
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -07001812
1813 return kvm_handle_hva_range(kvm, start, end, 0, kvm_age_rmapp);
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001814}
1815
Andrea Arcangeli8ee53822011-01-13 15:47:10 -08001816int kvm_test_age_hva(struct kvm *kvm, unsigned long hva)
1817{
1818 return kvm_handle_hva(kvm, hva, 0, kvm_test_age_rmapp);
1819}
1820
Yaozu Dongd6c69ee2007-04-25 14:17:25 +08001821#ifdef MMU_DEBUG
Avi Kivity47ad8e62007-05-06 15:50:58 +03001822static int is_empty_shadow_page(u64 *spt)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001823{
Avi Kivity139bdb22007-01-05 16:36:50 -08001824 u64 *pos;
1825 u64 *end;
1826
Avi Kivity47ad8e62007-05-06 15:50:58 +03001827 for (pos = spt, end = pos + PAGE_SIZE / sizeof(u64); pos != end; pos++)
Avi Kivity3c915512008-05-20 16:21:13 +03001828 if (is_shadow_present_pte(*pos)) {
Harvey Harrisonb8688d52008-03-03 12:59:56 -08001829 printk(KERN_ERR "%s: %p %llx\n", __func__,
Avi Kivity139bdb22007-01-05 16:36:50 -08001830 pos, *pos);
Avi Kivity6aa8b732006-12-10 02:21:36 -08001831 return 0;
Avi Kivity139bdb22007-01-05 16:36:50 -08001832 }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001833 return 1;
1834}
Yaozu Dongd6c69ee2007-04-25 14:17:25 +08001835#endif
Avi Kivity6aa8b732006-12-10 02:21:36 -08001836
Dave Hansen45221ab2010-08-19 18:11:37 -07001837/*
1838 * This value is the sum of all of the kvm instances's
1839 * kvm->arch.n_used_mmu_pages values. We need a global,
1840 * aggregate version in order to make the slab shrinker
1841 * faster
1842 */
1843static inline void kvm_mod_used_mmu_pages(struct kvm *kvm, int nr)
1844{
1845 kvm->arch.n_used_mmu_pages += nr;
1846 percpu_counter_add(&kvm_total_used_mmu_pages, nr);
1847}
1848
Gleb Natapov834be0d2013-01-30 16:45:05 +02001849static void kvm_mmu_free_page(struct kvm_mmu_page *sp)
Avi Kivity260746c2007-01-05 16:36:49 -08001850{
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02001851 MMU_WARN_ON(!is_empty_shadow_page(sp->spt));
Xiao Guangrong77758342010-06-04 21:53:54 +08001852 hlist_del(&sp->hash_link);
Xiao Guangrongbd4c86e2011-07-12 03:27:14 +08001853 list_del(&sp->link);
1854 free_page((unsigned long)sp->spt);
Gleb Natapov834be0d2013-01-30 16:45:05 +02001855 if (!sp->role.direct)
1856 free_page((unsigned long)sp->gfns);
Xiao Guangronge8ad9a72010-05-13 10:06:02 +08001857 kmem_cache_free(mmu_page_header_cache, sp);
Avi Kivity260746c2007-01-05 16:36:49 -08001858}
1859
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001860static unsigned kvm_page_table_hashfn(gfn_t gfn)
1861{
David Matlack114df302016-12-19 13:58:25 -08001862 return hash_64(gfn, KVM_MMU_HASH_SHIFT);
Avi Kivitycea0f0e2007-01-05 16:36:43 -08001863}
1864
Xiao Guangrong67052b32011-05-15 23:27:08 +08001865static void mmu_page_add_parent_pte(struct kvm_vcpu *vcpu,
1866 struct kvm_mmu_page *sp, u64 *parent_pte)
1867{
1868 if (!parent_pte)
1869 return;
1870
1871 pte_list_add(vcpu, parent_pte, &sp->parent_ptes);
1872}
1873
1874static void mmu_page_remove_parent_pte(struct kvm_mmu_page *sp,
1875 u64 *parent_pte)
1876{
1877 pte_list_remove(parent_pte, &sp->parent_ptes);
1878}
1879
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08001880static void drop_parent_pte(struct kvm_mmu_page *sp,
1881 u64 *parent_pte)
1882{
1883 mmu_page_remove_parent_pte(sp, parent_pte);
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +08001884 mmu_spte_clear_no_track(parent_pte);
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08001885}
1886
Takuya Yoshikawa47005792015-11-20 17:46:29 +09001887static struct kvm_mmu_page *kvm_mmu_alloc_page(struct kvm_vcpu *vcpu, int direct)
Avi Kivity6aa8b732006-12-10 02:21:36 -08001888{
Avi Kivity4db35312007-11-21 15:28:32 +02001889 struct kvm_mmu_page *sp;
Takuya Yoshikawa7ddca7e2013-03-21 19:33:43 +09001890
Takuya Yoshikawa80feb892012-05-29 23:54:26 +09001891 sp = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_header_cache);
1892 sp->spt = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache);
Lai Jiangshan2032a932010-05-26 16:49:59 +08001893 if (!direct)
Takuya Yoshikawa80feb892012-05-29 23:54:26 +09001894 sp->gfns = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache);
Avi Kivity4db35312007-11-21 15:28:32 +02001895 set_page_private(virt_to_page(sp->spt), (unsigned long)sp);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08001896
1897 /*
1898 * The active_mmu_pages list is the FIFO list, do not move the
1899 * page until it is zapped. kvm_zap_obsolete_pages depends on
1900 * this feature. See the comments in kvm_zap_obsolete_pages().
1901 */
Zhang Xiantaof05e70a2007-12-14 10:01:48 +08001902 list_add(&sp->link, &vcpu->kvm->arch.active_mmu_pages);
Dave Hansen45221ab2010-08-19 18:11:37 -07001903 kvm_mod_used_mmu_pages(vcpu->kvm, +1);
Avi Kivity4db35312007-11-21 15:28:32 +02001904 return sp;
Avi Kivity6aa8b732006-12-10 02:21:36 -08001905}
1906
Xiao Guangrong67052b32011-05-15 23:27:08 +08001907static void mark_unsync(u64 *spte);
Xiao Guangrong6b184932010-04-16 21:29:17 +08001908static void kvm_mmu_mark_parents_unsync(struct kvm_mmu_page *sp)
Marcelo Tosatti0074ff62008-09-23 13:18:40 -03001909{
Takuya Yoshikawa74c4e632015-11-26 21:15:38 +09001910 u64 *sptep;
1911 struct rmap_iterator iter;
1912
1913 for_each_rmap_spte(&sp->parent_ptes, &iter, sptep) {
1914 mark_unsync(sptep);
1915 }
Xiao Guangrong1047df12010-06-11 21:35:15 +08001916}
1917
Xiao Guangrong67052b32011-05-15 23:27:08 +08001918static void mark_unsync(u64 *spte)
Xiao Guangrong1047df12010-06-11 21:35:15 +08001919{
Xiao Guangrong67052b32011-05-15 23:27:08 +08001920 struct kvm_mmu_page *sp;
Xiao Guangrong1047df12010-06-11 21:35:15 +08001921 unsigned int index;
1922
Xiao Guangrong67052b32011-05-15 23:27:08 +08001923 sp = page_header(__pa(spte));
Xiao Guangrong1047df12010-06-11 21:35:15 +08001924 index = spte - sp->spt;
1925 if (__test_and_set_bit(index, sp->unsync_child_bitmap))
1926 return;
1927 if (sp->unsync_children++)
1928 return;
1929 kvm_mmu_mark_parents_unsync(sp);
Marcelo Tosatti0074ff62008-09-23 13:18:40 -03001930}
1931
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03001932static int nonpaging_sync_page(struct kvm_vcpu *vcpu,
Xiao Guangronga4a8e6f2010-11-19 17:04:03 +08001933 struct kvm_mmu_page *sp)
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03001934{
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01001935 return 0;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03001936}
1937
Marcelo Tosattia7052892008-09-23 13:18:35 -03001938static void nonpaging_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
1939{
1940}
1941
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08001942static void nonpaging_update_pte(struct kvm_vcpu *vcpu,
1943 struct kvm_mmu_page *sp, u64 *spte,
Xiao Guangrong7c562522011-03-28 10:29:27 +08001944 const void *pte)
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08001945{
1946 WARN_ON(1);
1947}
1948
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001949#define KVM_PAGE_ARRAY_NR 16
1950
1951struct kvm_mmu_pages {
1952 struct mmu_page_and_offset {
1953 struct kvm_mmu_page *sp;
1954 unsigned int idx;
1955 } page[KVM_PAGE_ARRAY_NR];
1956 unsigned int nr;
1957};
1958
Hannes Edercded19f2009-02-21 02:19:13 +01001959static int mmu_pages_add(struct kvm_mmu_pages *pvec, struct kvm_mmu_page *sp,
1960 int idx)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001961{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001962 int i;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001963
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001964 if (sp->unsync)
1965 for (i=0; i < pvec->nr; i++)
1966 if (pvec->page[i].sp == sp)
1967 return 0;
1968
1969 pvec->page[pvec->nr].sp = sp;
1970 pvec->page[pvec->nr].idx = idx;
1971 pvec->nr++;
1972 return (pvec->nr == KVM_PAGE_ARRAY_NR);
1973}
1974
Takuya Yoshikawafd951452015-11-20 17:43:13 +09001975static inline void clear_unsync_child_bit(struct kvm_mmu_page *sp, int idx)
1976{
1977 --sp->unsync_children;
1978 WARN_ON((int)sp->unsync_children < 0);
1979 __clear_bit(idx, sp->unsync_child_bitmap);
1980}
1981
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001982static int __mmu_unsync_walk(struct kvm_mmu_page *sp,
1983 struct kvm_mmu_pages *pvec)
1984{
1985 int i, ret, nr_unsync_leaf = 0;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001986
Takuya Yoshikawa37178b82011-11-29 14:02:45 +09001987 for_each_set_bit(i, sp->unsync_child_bitmap, 512) {
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001988 struct kvm_mmu_page *child;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001989 u64 ent = sp->spt[i];
1990
Takuya Yoshikawafd951452015-11-20 17:43:13 +09001991 if (!is_shadow_present_pte(ent) || is_large_pte(ent)) {
1992 clear_unsync_child_bit(sp, i);
1993 continue;
1994 }
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03001995
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001996 child = page_header(ent & PT64_BASE_ADDR_MASK);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02001997
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08001998 if (child->unsync_children) {
1999 if (mmu_pages_add(pvec, child, i))
2000 return -ENOSPC;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002001
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08002002 ret = __mmu_unsync_walk(child, pvec);
Takuya Yoshikawafd951452015-11-20 17:43:13 +09002003 if (!ret) {
2004 clear_unsync_child_bit(sp, i);
2005 continue;
2006 } else if (ret > 0) {
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08002007 nr_unsync_leaf += ret;
Takuya Yoshikawafd951452015-11-20 17:43:13 +09002008 } else
Xiao Guangrong7a8f1a72010-06-11 21:34:04 +08002009 return ret;
2010 } else if (child->unsync) {
2011 nr_unsync_leaf++;
2012 if (mmu_pages_add(pvec, child, i))
2013 return -ENOSPC;
2014 } else
Takuya Yoshikawafd951452015-11-20 17:43:13 +09002015 clear_unsync_child_bit(sp, i);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002016 }
2017
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002018 return nr_unsync_leaf;
2019}
2020
Xiao Guangronge23d3fe2016-02-24 09:46:06 +01002021#define INVALID_INDEX (-1)
2022
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002023static int mmu_unsync_walk(struct kvm_mmu_page *sp,
2024 struct kvm_mmu_pages *pvec)
2025{
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002026 pvec->nr = 0;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002027 if (!sp->unsync_children)
2028 return 0;
2029
Xiao Guangronge23d3fe2016-02-24 09:46:06 +01002030 mmu_pages_add(pvec, sp, INVALID_INDEX);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002031 return __mmu_unsync_walk(sp, pvec);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002032}
2033
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002034static void kvm_unlink_unsync_page(struct kvm *kvm, struct kvm_mmu_page *sp)
2035{
2036 WARN_ON(!sp->unsync);
Xiao Guangrong5e1b3dd2010-04-28 11:55:06 +08002037 trace_kvm_mmu_sync_page(sp);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002038 sp->unsync = 0;
2039 --kvm->stat.mmu_unsync;
2040}
2041
Xiao Guangrong77758342010-06-04 21:53:54 +08002042static int kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp,
2043 struct list_head *invalid_list);
2044static void kvm_mmu_commit_zap_page(struct kvm *kvm,
2045 struct list_head *invalid_list);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002046
Xiao Guangrongf34d2512013-05-31 08:36:28 +08002047/*
2048 * NOTE: we should pay more attention on the zapped-obsolete page
2049 * (is_obsolete_sp(sp) && sp->role.invalid) when you do hash list walk
2050 * since it has been deleted from active_mmu_pages but still can be found
2051 * at hast list.
2052 *
David Matlackf3414bc2016-12-20 15:25:57 -08002053 * for_each_valid_sp() has skipped that kind of pages.
Xiao Guangrongf34d2512013-05-31 08:36:28 +08002054 */
David Matlackf3414bc2016-12-20 15:25:57 -08002055#define for_each_valid_sp(_kvm, _sp, _gfn) \
Takuya Yoshikawa1044b032013-03-06 16:05:07 +09002056 hlist_for_each_entry(_sp, \
2057 &(_kvm)->arch.mmu_page_hash[kvm_page_table_hashfn(_gfn)], hash_link) \
David Matlackf3414bc2016-12-20 15:25:57 -08002058 if (is_obsolete_sp((_kvm), (_sp)) || (_sp)->role.invalid) { \
2059 } else
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002060
Takuya Yoshikawa1044b032013-03-06 16:05:07 +09002061#define for_each_gfn_indirect_valid_sp(_kvm, _sp, _gfn) \
David Matlackf3414bc2016-12-20 15:25:57 -08002062 for_each_valid_sp(_kvm, _sp, _gfn) \
2063 if ((_sp)->gfn != (_gfn) || (_sp)->role.direct) {} else
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002064
Xiao Guangrongf918b442010-06-11 21:30:36 +08002065/* @sp->gfn should be write-protected at the call site */
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01002066static bool __kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
2067 struct list_head *invalid_list)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002068{
Avi Kivity5b7e0102010-04-14 19:20:03 +03002069 if (sp->role.cr4_pae != !!is_pae(vcpu)) {
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002070 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list);
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01002071 return false;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002072 }
2073
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01002074 if (vcpu->arch.mmu.sync_page(vcpu, sp) == 0) {
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002075 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list);
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01002076 return false;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002077 }
2078
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01002079 return true;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002080}
2081
Paolo Bonzini35a70512016-02-24 10:03:27 +01002082static void kvm_mmu_flush_or_zap(struct kvm_vcpu *vcpu,
2083 struct list_head *invalid_list,
2084 bool remote_flush, bool local_flush)
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08002085{
Paolo Bonzini35a70512016-02-24 10:03:27 +01002086 if (!list_empty(invalid_list)) {
2087 kvm_mmu_commit_zap_page(vcpu->kvm, invalid_list);
2088 return;
2089 }
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08002090
Paolo Bonzini35a70512016-02-24 10:03:27 +01002091 if (remote_flush)
2092 kvm_flush_remote_tlbs(vcpu->kvm);
2093 else if (local_flush)
2094 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08002095}
2096
Xiao Guangronge37fa782011-11-30 17:43:24 +08002097#ifdef CONFIG_KVM_MMU_AUDIT
2098#include "mmu_audit.c"
2099#else
2100static void kvm_mmu_audit(struct kvm_vcpu *vcpu, int point) { }
2101static void mmu_audit_disable(void) { }
2102#endif
2103
Xiao Guangrong46971a22016-03-25 21:19:38 +08002104static bool is_obsolete_sp(struct kvm *kvm, struct kvm_mmu_page *sp)
2105{
2106 return unlikely(sp->mmu_valid_gen != kvm->arch.mmu_valid_gen);
2107}
2108
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01002109static bool kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002110 struct list_head *invalid_list)
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08002111{
Paolo Bonzini9a43c5d2016-02-24 10:28:01 +01002112 kvm_unlink_unsync_page(vcpu->kvm, sp);
2113 return __kvm_sync_page(vcpu, sp, invalid_list);
Xiao Guangrong1d9dc7e2010-05-15 18:51:24 +08002114}
2115
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002116/* @gfn should be write-protected at the call site */
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002117static bool kvm_sync_pages(struct kvm_vcpu *vcpu, gfn_t gfn,
2118 struct list_head *invalid_list)
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002119{
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002120 struct kvm_mmu_page *s;
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002121 bool ret = false;
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002122
Sasha Levinb67bfe02013-02-27 17:06:00 -08002123 for_each_gfn_indirect_valid_sp(vcpu->kvm, s, gfn) {
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002124 if (!s->unsync)
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002125 continue;
2126
2127 WARN_ON(s->role.level != PT_PAGE_TABLE_LEVEL);
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002128 ret |= kvm_sync_page(vcpu, s, invalid_list);
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002129 }
2130
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002131 return ret;
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002132}
2133
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002134struct mmu_page_path {
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002135 struct kvm_mmu_page *parent[PT64_ROOT_LEVEL];
2136 unsigned int idx[PT64_ROOT_LEVEL];
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002137};
2138
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002139#define for_each_sp(pvec, sp, parents, i) \
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002140 for (i = mmu_pages_first(&pvec, &parents); \
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002141 i < pvec.nr && ({ sp = pvec.page[i].sp; 1;}); \
2142 i = mmu_pages_next(&pvec, &parents, i))
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002143
Hannes Edercded19f2009-02-21 02:19:13 +01002144static int mmu_pages_next(struct kvm_mmu_pages *pvec,
2145 struct mmu_page_path *parents,
2146 int i)
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002147{
2148 int n;
2149
2150 for (n = i+1; n < pvec->nr; n++) {
2151 struct kvm_mmu_page *sp = pvec->page[n].sp;
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002152 unsigned idx = pvec->page[n].idx;
2153 int level = sp->role.level;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002154
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002155 parents->idx[level-1] = idx;
2156 if (level == PT_PAGE_TABLE_LEVEL)
2157 break;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002158
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002159 parents->parent[level-2] = sp;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002160 }
2161
2162 return n;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002163}
2164
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002165static int mmu_pages_first(struct kvm_mmu_pages *pvec,
2166 struct mmu_page_path *parents)
2167{
2168 struct kvm_mmu_page *sp;
2169 int level;
2170
2171 if (pvec->nr == 0)
2172 return 0;
2173
Xiao Guangronge23d3fe2016-02-24 09:46:06 +01002174 WARN_ON(pvec->page[0].idx != INVALID_INDEX);
2175
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002176 sp = pvec->page[0].sp;
2177 level = sp->role.level;
2178 WARN_ON(level == PT_PAGE_TABLE_LEVEL);
2179
2180 parents->parent[level-2] = sp;
2181
2182 /* Also set up a sentinel. Further entries in pvec are all
2183 * children of sp, so this element is never overwritten.
2184 */
2185 parents->parent[level-1] = NULL;
2186 return mmu_pages_next(pvec, parents, 0);
2187}
2188
Hannes Edercded19f2009-02-21 02:19:13 +01002189static void mmu_pages_clear_parents(struct mmu_page_path *parents)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002190{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002191 struct kvm_mmu_page *sp;
2192 unsigned int level = 0;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002193
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002194 do {
2195 unsigned int idx = parents->idx[level];
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002196 sp = parents->parent[level];
2197 if (!sp)
2198 return;
2199
Xiao Guangronge23d3fe2016-02-24 09:46:06 +01002200 WARN_ON(idx == INVALID_INDEX);
Takuya Yoshikawafd951452015-11-20 17:43:13 +09002201 clear_unsync_child_bit(sp, idx);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002202 level++;
Paolo Bonzini0a47cd82016-02-23 13:54:25 +01002203 } while (!sp->unsync_children);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002204}
2205
2206static void mmu_sync_children(struct kvm_vcpu *vcpu,
2207 struct kvm_mmu_page *parent)
2208{
2209 int i;
2210 struct kvm_mmu_page *sp;
2211 struct mmu_page_path parents;
2212 struct kvm_mmu_pages pages;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002213 LIST_HEAD(invalid_list);
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002214 bool flush = false;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002215
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002216 while (mmu_unsync_walk(parent, &pages)) {
Xiao Guangrong2f845692012-06-20 15:56:53 +08002217 bool protected = false;
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002218
2219 for_each_sp(pages, sp, parents, i)
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002220 protected |= rmap_write_protect(vcpu, sp->gfn);
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002221
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002222 if (protected) {
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002223 kvm_flush_remote_tlbs(vcpu->kvm);
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002224 flush = false;
2225 }
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002226
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002227 for_each_sp(pages, sp, parents, i) {
Paolo Bonzini1f50f1b2016-02-24 11:07:14 +01002228 flush |= kvm_sync_page(vcpu, sp, &invalid_list);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002229 mmu_pages_clear_parents(&parents);
2230 }
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002231 if (need_resched() || spin_needbreak(&vcpu->kvm->mmu_lock)) {
2232 kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush);
2233 cond_resched_lock(&vcpu->kvm->mmu_lock);
2234 flush = false;
2235 }
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002236 }
Paolo Bonzini50c9e6f2016-02-25 10:47:38 +01002237
2238 kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002239}
2240
Xiao Guangronga30f47c2011-09-22 16:58:36 +08002241static void __clear_sp_write_flooding_count(struct kvm_mmu_page *sp)
2242{
Xiao Guangronge5691a82016-02-24 17:51:12 +08002243 atomic_set(&sp->write_flooding_count, 0);
Xiao Guangronga30f47c2011-09-22 16:58:36 +08002244}
2245
2246static void clear_sp_write_flooding_count(u64 *spte)
2247{
2248 struct kvm_mmu_page *sp = page_header(__pa(spte));
2249
2250 __clear_sp_write_flooding_count(sp);
2251}
2252
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002253static struct kvm_mmu_page *kvm_mmu_get_page(struct kvm_vcpu *vcpu,
2254 gfn_t gfn,
2255 gva_t gaddr,
2256 unsigned level,
Avi Kivityf6e2c02b2009-01-11 13:02:10 +02002257 int direct,
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09002258 unsigned access)
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002259{
2260 union kvm_mmu_page_role role;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002261 unsigned quadrant;
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002262 struct kvm_mmu_page *sp;
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002263 bool need_sync = false;
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002264 bool flush = false;
David Matlackf3414bc2016-12-20 15:25:57 -08002265 int collisions = 0;
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002266 LIST_HEAD(invalid_list);
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002267
Avi Kivitya770f6f2008-12-21 19:20:09 +02002268 role = vcpu->arch.mmu.base_role;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002269 role.level = level;
Avi Kivityf6e2c02b2009-01-11 13:02:10 +02002270 role.direct = direct;
Avi Kivity84b0c8c2010-03-14 10:16:40 +02002271 if (role.direct)
Avi Kivity5b7e0102010-04-14 19:20:03 +03002272 role.cr4_pae = 0;
Avi Kivity41074d02007-12-09 17:00:02 +02002273 role.access = access;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02002274 if (!vcpu->arch.mmu.direct_map
2275 && vcpu->arch.mmu.root_level <= PT32_ROOT_LEVEL) {
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002276 quadrant = gaddr >> (PAGE_SHIFT + (PT64_PT_BITS * level));
2277 quadrant &= (1 << ((PT32_PT_BITS - PT64_PT_BITS) * level)) - 1;
2278 role.quadrant = quadrant;
2279 }
David Matlackf3414bc2016-12-20 15:25:57 -08002280 for_each_valid_sp(vcpu->kvm, sp, gfn) {
2281 if (sp->gfn != gfn) {
2282 collisions++;
2283 continue;
2284 }
2285
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002286 if (!need_sync && sp->unsync)
2287 need_sync = true;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002288
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002289 if (sp->role.word != role.word)
2290 continue;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002291
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002292 if (sp->unsync) {
2293 /* The page is good, but __kvm_sync_page might still end
2294 * up zapping it. If so, break in order to rebuild it.
2295 */
2296 if (!__kvm_sync_page(vcpu, sp, &invalid_list))
2297 break;
2298
2299 WARN_ON(!list_empty(&invalid_list));
2300 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
2301 }
Xiao Guangronge02aa902010-05-15 18:52:34 +08002302
Takuya Yoshikawa98bba232015-11-26 21:14:34 +09002303 if (sp->unsync_children)
Avi Kivitya8eeb042010-05-10 12:34:53 +03002304 kvm_make_request(KVM_REQ_MMU_SYNC, vcpu);
Xiao Guangronge02aa902010-05-15 18:52:34 +08002305
Xiao Guangronga30f47c2011-09-22 16:58:36 +08002306 __clear_sp_write_flooding_count(sp);
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002307 trace_kvm_mmu_get_page(sp, false);
David Matlackf3414bc2016-12-20 15:25:57 -08002308 goto out;
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002309 }
Takuya Yoshikawa47005792015-11-20 17:46:29 +09002310
Avi Kivitydfc5aa02007-12-18 19:47:18 +02002311 ++vcpu->kvm->stat.mmu_cache_miss;
Takuya Yoshikawa47005792015-11-20 17:46:29 +09002312
2313 sp = kvm_mmu_alloc_page(vcpu, direct);
2314
Avi Kivity4db35312007-11-21 15:28:32 +02002315 sp->gfn = gfn;
2316 sp->role = role;
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002317 hlist_add_head(&sp->hash_link,
2318 &vcpu->kvm->arch.mmu_page_hash[kvm_page_table_hashfn(gfn)]);
Avi Kivityf6e2c02b2009-01-11 13:02:10 +02002319 if (!direct) {
Xiao Guangrong56ca57f2016-02-24 17:51:14 +08002320 /*
2321 * we should do write protection before syncing pages
2322 * otherwise the content of the synced shadow page may
2323 * be inconsistent with guest page table.
2324 */
Paolo Bonzini3ed1a472015-05-19 16:29:22 +02002325 account_shadowed(vcpu->kvm, sp);
Xiao Guangrong56ca57f2016-02-24 17:51:14 +08002326 if (level == PT_PAGE_TABLE_LEVEL &&
2327 rmap_write_protect(vcpu, gfn))
Marcelo Tosattib1a36822008-12-01 22:32:03 -02002328 kvm_flush_remote_tlbs(vcpu->kvm);
Xiao Guangrong56ca57f2016-02-24 17:51:14 +08002329
Xiao Guangrong9f1a1222010-05-24 15:41:33 +08002330 if (level > PT_PAGE_TABLE_LEVEL && need_sync)
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002331 flush |= kvm_sync_pages(vcpu, gfn, &invalid_list);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002332 }
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08002333 sp->mmu_valid_gen = vcpu->kvm->arch.mmu_valid_gen;
Takuya Yoshikawa77492662015-12-18 18:54:49 +09002334 clear_page(sp->spt);
Avi Kivityf691fe12009-07-06 15:58:14 +03002335 trace_kvm_mmu_get_page(sp, true);
Paolo Bonzini2a74003a2016-02-24 11:26:10 +01002336
2337 kvm_mmu_flush_or_zap(vcpu, &invalid_list, false, flush);
David Matlackf3414bc2016-12-20 15:25:57 -08002338out:
2339 if (collisions > vcpu->kvm->stat.max_mmu_page_hash_collisions)
2340 vcpu->kvm->stat.max_mmu_page_hash_collisions = collisions;
Avi Kivity4db35312007-11-21 15:28:32 +02002341 return sp;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002342}
2343
Avi Kivity2d111232008-12-25 14:39:47 +02002344static void shadow_walk_init(struct kvm_shadow_walk_iterator *iterator,
2345 struct kvm_vcpu *vcpu, u64 addr)
2346{
2347 iterator->addr = addr;
2348 iterator->shadow_addr = vcpu->arch.mmu.root_hpa;
2349 iterator->level = vcpu->arch.mmu.shadow_root_level;
Joerg Roedel81407ca2010-09-10 17:31:00 +02002350
2351 if (iterator->level == PT64_ROOT_LEVEL &&
2352 vcpu->arch.mmu.root_level < PT64_ROOT_LEVEL &&
2353 !vcpu->arch.mmu.direct_map)
2354 --iterator->level;
2355
Avi Kivity2d111232008-12-25 14:39:47 +02002356 if (iterator->level == PT32E_ROOT_LEVEL) {
2357 iterator->shadow_addr
2358 = vcpu->arch.mmu.pae_root[(addr >> 30) & 3];
2359 iterator->shadow_addr &= PT64_BASE_ADDR_MASK;
2360 --iterator->level;
2361 if (!iterator->shadow_addr)
2362 iterator->level = 0;
2363 }
2364}
2365
2366static bool shadow_walk_okay(struct kvm_shadow_walk_iterator *iterator)
2367{
2368 if (iterator->level < PT_PAGE_TABLE_LEVEL)
2369 return false;
Marcelo Tosatti4d889542009-06-11 12:07:41 -03002370
Avi Kivity2d111232008-12-25 14:39:47 +02002371 iterator->index = SHADOW_PT_INDEX(iterator->addr, iterator->level);
2372 iterator->sptep = ((u64 *)__va(iterator->shadow_addr)) + iterator->index;
2373 return true;
2374}
2375
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002376static void __shadow_walk_next(struct kvm_shadow_walk_iterator *iterator,
2377 u64 spte)
Avi Kivity2d111232008-12-25 14:39:47 +02002378{
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002379 if (is_last_spte(spte, iterator->level)) {
Xiao Guangrong052331b2011-07-12 03:21:17 +08002380 iterator->level = 0;
2381 return;
2382 }
2383
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002384 iterator->shadow_addr = spte & PT64_BASE_ADDR_MASK;
Avi Kivity2d111232008-12-25 14:39:47 +02002385 --iterator->level;
2386}
2387
Xiao Guangrongc2a2ac22011-07-12 03:32:13 +08002388static void shadow_walk_next(struct kvm_shadow_walk_iterator *iterator)
2389{
2390 return __shadow_walk_next(iterator, *iterator->sptep);
2391}
2392
Takuya Yoshikawa98bba232015-11-26 21:14:34 +09002393static void link_shadow_page(struct kvm_vcpu *vcpu, u64 *sptep,
2394 struct kvm_mmu_page *sp)
Avi Kivity32ef26a2010-07-13 14:27:04 +03002395{
2396 u64 spte;
2397
Bandan Dasffb128c2016-07-12 18:18:49 -04002398 BUILD_BUG_ON(VMX_EPT_WRITABLE_MASK != PT_WRITABLE_MASK);
Yang Zhang7a1638c2013-08-05 11:07:13 +03002399
Bandan Dasffb128c2016-07-12 18:18:49 -04002400 spte = __pa(sp->spt) | shadow_present_mask | PT_WRITABLE_MASK |
Paolo Bonzini0e3d0642015-11-13 11:52:45 +01002401 shadow_user_mask | shadow_x_mask | shadow_accessed_mask;
Xiao Guangrong24db2732013-02-05 15:28:02 +08002402
Xiao Guangrong1df9f2d2011-07-12 03:30:35 +08002403 mmu_spte_set(sptep, spte);
Takuya Yoshikawa98bba232015-11-26 21:14:34 +09002404
2405 mmu_page_add_parent_pte(vcpu, sp, sptep);
2406
2407 if (sp->unsync_children || sp->unsync)
2408 mark_unsync(sptep);
Avi Kivity32ef26a2010-07-13 14:27:04 +03002409}
2410
Avi Kivitya357bd22010-07-13 14:27:07 +03002411static void validate_direct_spte(struct kvm_vcpu *vcpu, u64 *sptep,
2412 unsigned direct_access)
2413{
2414 if (is_shadow_present_pte(*sptep) && !is_large_pte(*sptep)) {
2415 struct kvm_mmu_page *child;
2416
2417 /*
2418 * For the direct sp, if the guest pte's dirty bit
2419 * changed form clean to dirty, it will corrupt the
2420 * sp's access: allow writable in the read-only sp,
2421 * so we should update the spte at this point to get
2422 * a new sp with the correct access.
2423 */
2424 child = page_header(*sptep & PT64_BASE_ADDR_MASK);
2425 if (child->role.access == direct_access)
2426 return;
2427
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08002428 drop_parent_pte(child, sptep);
Avi Kivitya357bd22010-07-13 14:27:07 +03002429 kvm_flush_remote_tlbs(vcpu->kvm);
2430 }
2431}
2432
Xiao Guangrong505aef82011-09-22 16:56:06 +08002433static bool mmu_page_zap_pte(struct kvm *kvm, struct kvm_mmu_page *sp,
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002434 u64 *spte)
2435{
2436 u64 pte;
2437 struct kvm_mmu_page *child;
2438
2439 pte = *spte;
2440 if (is_shadow_present_pte(pte)) {
Xiao Guangrong505aef82011-09-22 16:56:06 +08002441 if (is_last_spte(pte, sp->role.level)) {
Xiao Guangrongc3707952011-07-12 03:28:04 +08002442 drop_spte(kvm, spte);
Xiao Guangrong505aef82011-09-22 16:56:06 +08002443 if (is_large_pte(pte))
2444 --kvm->stat.lpages;
2445 } else {
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002446 child = page_header(pte & PT64_BASE_ADDR_MASK);
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08002447 drop_parent_pte(child, spte);
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002448 }
Xiao Guangrong505aef82011-09-22 16:56:06 +08002449 return true;
2450 }
2451
2452 if (is_mmio_spte(pte))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08002453 mmu_spte_clear_no_track(spte);
Xiao Guangrongc3707952011-07-12 03:28:04 +08002454
Xiao Guangrong505aef82011-09-22 16:56:06 +08002455 return false;
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002456}
2457
Avi Kivity90cb0522007-07-17 13:04:56 +03002458static void kvm_mmu_page_unlink_children(struct kvm *kvm,
Avi Kivity4db35312007-11-21 15:28:32 +02002459 struct kvm_mmu_page *sp)
Avi Kivitya4360362007-01-05 16:36:45 -08002460{
Avi Kivity697fe2e2007-01-05 16:36:46 -08002461 unsigned i;
Avi Kivity697fe2e2007-01-05 16:36:46 -08002462
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08002463 for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
2464 mmu_page_zap_pte(kvm, sp, sp->spt + i);
Avi Kivitya4360362007-01-05 16:36:45 -08002465}
2466
Avi Kivity31aa2b42008-07-11 17:59:46 +03002467static void kvm_mmu_unlink_parents(struct kvm *kvm, struct kvm_mmu_page *sp)
Avi Kivitya4360362007-01-05 16:36:45 -08002468{
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09002469 u64 *sptep;
2470 struct rmap_iterator iter;
Avi Kivitya4360362007-01-05 16:36:45 -08002471
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09002472 while ((sptep = rmap_get_first(&sp->parent_ptes, &iter)))
Takuya Yoshikawa1e3f42f2012-03-21 23:50:34 +09002473 drop_parent_pte(sp, sptep);
Avi Kivity31aa2b42008-07-11 17:59:46 +03002474}
2475
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002476static int mmu_zap_unsync_children(struct kvm *kvm,
Xiao Guangrong77758342010-06-04 21:53:54 +08002477 struct kvm_mmu_page *parent,
2478 struct list_head *invalid_list)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002479{
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002480 int i, zapped = 0;
2481 struct mmu_page_path parents;
2482 struct kvm_mmu_pages pages;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002483
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002484 if (parent->role.level == PT_PAGE_TABLE_LEVEL)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002485 return 0;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002486
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002487 while (mmu_unsync_walk(parent, &pages)) {
2488 struct kvm_mmu_page *sp;
2489
2490 for_each_sp(pages, sp, parents, i) {
Xiao Guangrong77758342010-06-04 21:53:54 +08002491 kvm_mmu_prepare_zap_page(kvm, sp, invalid_list);
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002492 mmu_pages_clear_parents(&parents);
Xiao Guangrong77662e02010-04-16 16:34:42 +08002493 zapped++;
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002494 }
Marcelo Tosatti60c8aec2008-12-01 22:32:02 -02002495 }
2496
2497 return zapped;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002498}
2499
Xiao Guangrong77758342010-06-04 21:53:54 +08002500static int kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp,
2501 struct list_head *invalid_list)
Avi Kivity31aa2b42008-07-11 17:59:46 +03002502{
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002503 int ret;
Avi Kivityf691fe12009-07-06 15:58:14 +03002504
Xiao Guangrong77758342010-06-04 21:53:54 +08002505 trace_kvm_mmu_prepare_zap_page(sp);
Avi Kivity31aa2b42008-07-11 17:59:46 +03002506 ++kvm->stat.mmu_shadow_zapped;
Xiao Guangrong77758342010-06-04 21:53:54 +08002507 ret = mmu_zap_unsync_children(kvm, sp, invalid_list);
Avi Kivity4db35312007-11-21 15:28:32 +02002508 kvm_mmu_page_unlink_children(kvm, sp);
Avi Kivity31aa2b42008-07-11 17:59:46 +03002509 kvm_mmu_unlink_parents(kvm, sp);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08002510
Avi Kivityf6e2c02b2009-01-11 13:02:10 +02002511 if (!sp->role.invalid && !sp->role.direct)
Paolo Bonzini3ed1a472015-05-19 16:29:22 +02002512 unaccount_shadowed(kvm, sp);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08002513
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002514 if (sp->unsync)
2515 kvm_unlink_unsync_page(kvm, sp);
Avi Kivity4db35312007-11-21 15:28:32 +02002516 if (!sp->root_count) {
Gui Jianfeng54a4f022010-05-05 09:03:49 +08002517 /* Count self */
2518 ret++;
Xiao Guangrong77758342010-06-04 21:53:54 +08002519 list_move(&sp->link, invalid_list);
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08002520 kvm_mod_used_mmu_pages(kvm, -1);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05002521 } else {
Avi Kivity5b5c6a52008-07-11 18:07:26 +03002522 list_move(&sp->link, &kvm->arch.active_mmu_pages);
Gleb Natapov05988d72013-05-31 08:36:30 +08002523
2524 /*
2525 * The obsolete pages can not be used on any vcpus.
2526 * See the comments in kvm_mmu_invalidate_zap_all_pages().
2527 */
2528 if (!sp->role.invalid && !is_obsolete_sp(kvm, sp))
2529 kvm_reload_remote_mmus(kvm);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05002530 }
Xiao Guangrong77758342010-06-04 21:53:54 +08002531
2532 sp->role.invalid = 1;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002533 return ret;
Avi Kivitya4360362007-01-05 16:36:45 -08002534}
2535
Xiao Guangrong77758342010-06-04 21:53:54 +08002536static void kvm_mmu_commit_zap_page(struct kvm *kvm,
2537 struct list_head *invalid_list)
2538{
Takuya Yoshikawa945315b2013-03-06 16:05:52 +09002539 struct kvm_mmu_page *sp, *nsp;
Xiao Guangrong77758342010-06-04 21:53:54 +08002540
2541 if (list_empty(invalid_list))
2542 return;
2543
Avi Kivityc1427862012-05-14 15:44:06 +03002544 /*
Lan Tianyu9753f522016-03-13 11:10:24 +08002545 * We need to make sure everyone sees our modifications to
2546 * the page tables and see changes to vcpu->mode here. The barrier
2547 * in the kvm_flush_remote_tlbs() achieves this. This pairs
2548 * with vcpu_enter_guest and walk_shadow_page_lockless_begin/end.
2549 *
2550 * In addition, kvm_flush_remote_tlbs waits for all vcpus to exit
2551 * guest mode and/or lockless shadow page table walks.
Avi Kivityc1427862012-05-14 15:44:06 +03002552 */
Xiao Guangrong77758342010-06-04 21:53:54 +08002553 kvm_flush_remote_tlbs(kvm);
2554
Takuya Yoshikawa945315b2013-03-06 16:05:52 +09002555 list_for_each_entry_safe(sp, nsp, invalid_list, link) {
Xiao Guangrong77758342010-06-04 21:53:54 +08002556 WARN_ON(!sp->role.invalid || sp->root_count);
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08002557 kvm_mmu_free_page(sp);
Takuya Yoshikawa945315b2013-03-06 16:05:52 +09002558 }
Xiao Guangrong77758342010-06-04 21:53:54 +08002559}
2560
Takuya Yoshikawa5da59602013-03-06 16:06:58 +09002561static bool prepare_zap_oldest_mmu_page(struct kvm *kvm,
2562 struct list_head *invalid_list)
2563{
2564 struct kvm_mmu_page *sp;
2565
2566 if (list_empty(&kvm->arch.active_mmu_pages))
2567 return false;
2568
Geliang Tangd74c0e62016-01-01 19:47:14 +08002569 sp = list_last_entry(&kvm->arch.active_mmu_pages,
2570 struct kvm_mmu_page, link);
Takuya Yoshikawa5da59602013-03-06 16:06:58 +09002571 kvm_mmu_prepare_zap_page(kvm, sp, invalid_list);
2572
2573 return true;
2574}
2575
Izik Eidus82ce2c92007-10-02 18:52:55 +02002576/*
2577 * Changing the number of mmu pages allocated to the vm
Dave Hansen49d5ca22010-08-19 18:11:28 -07002578 * Note: if goal_nr_mmu_pages is too small, you will get dead lock
Izik Eidus82ce2c92007-10-02 18:52:55 +02002579 */
Dave Hansen49d5ca22010-08-19 18:11:28 -07002580void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int goal_nr_mmu_pages)
Izik Eidus82ce2c92007-10-02 18:52:55 +02002581{
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002582 LIST_HEAD(invalid_list);
Izik Eidus82ce2c92007-10-02 18:52:55 +02002583
Takuya Yoshikawab34cb592013-01-08 19:46:07 +09002584 spin_lock(&kvm->mmu_lock);
2585
Dave Hansen49d5ca22010-08-19 18:11:28 -07002586 if (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages) {
Takuya Yoshikawa5da59602013-03-06 16:06:58 +09002587 /* Need to free some mmu pages to achieve the goal. */
2588 while (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages)
2589 if (!prepare_zap_oldest_mmu_page(kvm, &invalid_list))
2590 break;
Izik Eidus82ce2c92007-10-02 18:52:55 +02002591
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08002592 kvm_mmu_commit_zap_page(kvm, &invalid_list);
Dave Hansen49d5ca22010-08-19 18:11:28 -07002593 goal_nr_mmu_pages = kvm->arch.n_used_mmu_pages;
Izik Eidus82ce2c92007-10-02 18:52:55 +02002594 }
Izik Eidus82ce2c92007-10-02 18:52:55 +02002595
Dave Hansen49d5ca22010-08-19 18:11:28 -07002596 kvm->arch.n_max_mmu_pages = goal_nr_mmu_pages;
Takuya Yoshikawab34cb592013-01-08 19:46:07 +09002597
2598 spin_unlock(&kvm->mmu_lock);
Izik Eidus82ce2c92007-10-02 18:52:55 +02002599}
2600
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002601int kvm_mmu_unprotect_page(struct kvm *kvm, gfn_t gfn)
Avi Kivitya4360362007-01-05 16:36:45 -08002602{
Avi Kivity4db35312007-11-21 15:28:32 +02002603 struct kvm_mmu_page *sp;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002604 LIST_HEAD(invalid_list);
Avi Kivitya4360362007-01-05 16:36:45 -08002605 int r;
2606
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002607 pgprintk("%s: looking for gfn %llx\n", __func__, gfn);
Avi Kivitya4360362007-01-05 16:36:45 -08002608 r = 0;
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002609 spin_lock(&kvm->mmu_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08002610 for_each_gfn_indirect_valid_sp(kvm, sp, gfn) {
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002611 pgprintk("%s: gfn %llx role %x\n", __func__, gfn,
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002612 sp->role.word);
2613 r = 1;
Xiao Guangrongf41d3352010-06-04 21:56:11 +08002614 kvm_mmu_prepare_zap_page(kvm, sp, &invalid_list);
Xiao Guangrong7ae680e2010-06-04 21:53:07 +08002615 }
Xiao Guangrongd98ba052010-06-04 21:55:29 +08002616 kvm_mmu_commit_zap_page(kvm, &invalid_list);
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002617 spin_unlock(&kvm->mmu_lock);
2618
Avi Kivitya4360362007-01-05 16:36:45 -08002619 return r;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002620}
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08002621EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page);
Avi Kivitycea0f0e2007-01-05 16:36:43 -08002622
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002623static void kvm_unsync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002624{
Xiao Guangrong5e1b3dd2010-04-28 11:55:06 +08002625 trace_kvm_mmu_unsync_page(sp);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002626 ++vcpu->kvm->stat.mmu_unsync;
2627 sp->unsync = 1;
Marcelo Tosatti6cffe8c2008-12-01 22:32:04 -02002628
Xiao Guangrong6b184932010-04-16 21:29:17 +08002629 kvm_mmu_mark_parents_unsync(sp);
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002630}
2631
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08002632static bool mmu_need_write_protect(struct kvm_vcpu *vcpu, gfn_t gfn,
2633 bool can_unsync)
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002634{
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002635 struct kvm_mmu_page *sp;
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002636
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08002637 if (kvm_page_track_is_active(vcpu, gfn, KVM_PAGE_TRACK_WRITE))
2638 return true;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002639
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002640 for_each_gfn_indirect_valid_sp(vcpu->kvm, sp, gfn) {
Xiao Guangrong36a2e672010-06-30 16:02:02 +08002641 if (!can_unsync)
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08002642 return true;
Xiao Guangrong36a2e672010-06-30 16:02:02 +08002643
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002644 if (sp->unsync)
2645 continue;
Xiao Guangrong9cf5cf52010-05-24 15:40:07 +08002646
Xiao Guangrong5c520e92016-02-24 17:51:15 +08002647 WARN_ON(sp->role.level != PT_PAGE_TABLE_LEVEL);
2648 kvm_unsync_page(vcpu, sp);
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002649 }
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08002650
2651 return false;
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002652}
2653
Dan Williamsba049e92016-01-15 16:56:11 -08002654static bool kvm_is_mmio_pfn(kvm_pfn_t pfn)
Paolo Bonzinid1fe9212015-07-07 15:03:18 +02002655{
2656 if (pfn_valid(pfn))
2657 return !is_zero_pfn(pfn) && PageReserved(pfn_to_page(pfn));
2658
2659 return true;
2660}
2661
Avi Kivityd555c332009-06-10 14:24:23 +03002662static int set_spte(struct kvm_vcpu *vcpu, u64 *sptep,
Xiao Guangrongc22885052013-01-08 14:36:04 +08002663 unsigned pte_access, int level,
Dan Williamsba049e92016-01-15 16:56:11 -08002664 gfn_t gfn, kvm_pfn_t pfn, bool speculative,
Lai Jiangshan9bdbba12010-11-19 17:03:22 +08002665 bool can_unsync, bool host_writable)
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002666{
Bandan Dasffb128c2016-07-12 18:18:49 -04002667 u64 spte = 0;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002668 int ret = 0;
Sheng Yang64d4d522008-10-09 16:01:57 +08002669
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002670 if (set_mmio_spte(vcpu, sptep, gfn, pfn, pte_access))
Xiao Guangrongce88dec2011-07-12 03:33:44 +08002671 return 0;
2672
Bandan Dasd95c5562016-07-12 18:18:51 -04002673 /*
2674 * For the EPT case, shadow_present_mask is 0 if hardware
2675 * supports exec-only page table entries. In that case,
2676 * ACC_USER_MASK and shadow_user_mask are used to represent
2677 * read access. See FNAME(gpte_access) in paging_tmpl.h.
2678 */
Bandan Dasffb128c2016-07-12 18:18:49 -04002679 spte |= shadow_present_mask;
Avi Kivity947da532008-03-18 11:05:52 +02002680 if (!speculative)
Avi Kivity3201b5d2008-08-27 20:01:04 +03002681 spte |= shadow_accessed_mask;
Xiao Guangrong640d9b02011-07-12 03:24:39 +08002682
Sheng Yang7b523452008-04-25 21:13:50 +08002683 if (pte_access & ACC_EXEC_MASK)
2684 spte |= shadow_x_mask;
2685 else
2686 spte |= shadow_nx_mask;
Xiao Guangrong49fde342012-06-20 15:58:58 +08002687
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002688 if (pte_access & ACC_USER_MASK)
Sheng Yang7b523452008-04-25 21:13:50 +08002689 spte |= shadow_user_mask;
Xiao Guangrong49fde342012-06-20 15:58:58 +08002690
Joerg Roedel852e3c12009-07-27 16:30:44 +02002691 if (level > PT_PAGE_TABLE_LEVEL)
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002692 spte |= PT_PAGE_SIZE_MASK;
Avi Kivityb0bc3ee2010-09-13 16:45:28 +02002693 if (tdp_enabled)
Sheng Yang4b12f0d2009-04-27 20:35:42 +08002694 spte |= kvm_x86_ops->get_mt_mask(vcpu, gfn,
Paolo Bonzinid1fe9212015-07-07 15:03:18 +02002695 kvm_is_mmio_pfn(pfn));
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002696
Lai Jiangshan9bdbba12010-11-19 17:03:22 +08002697 if (host_writable)
Izik Eidus14032832009-09-23 21:47:17 +03002698 spte |= SPTE_HOST_WRITEABLE;
Xiao Guangrongf8e453b2010-12-23 16:09:29 +08002699 else
2700 pte_access &= ~ACC_WRITE_MASK;
Izik Eidus14032832009-09-23 21:47:17 +03002701
Anthony Liguori35149e22008-04-02 14:46:56 -05002702 spte |= (u64)pfn << PAGE_SHIFT;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002703
Xiao Guangrongc22885052013-01-08 14:36:04 +08002704 if (pte_access & ACC_WRITE_MASK) {
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002705
Xiao Guangrongc2193462012-12-04 07:17:11 +08002706 /*
Xiao Guangrong7751bab2013-01-08 14:36:51 +08002707 * Other vcpu creates new sp in the window between
2708 * mapping_level() and acquiring mmu-lock. We can
2709 * allow guest to retry the access, the mapping can
2710 * be fixed if guest refault.
Xiao Guangrongc2193462012-12-04 07:17:11 +08002711 */
Joerg Roedel852e3c12009-07-27 16:30:44 +02002712 if (level > PT_PAGE_TABLE_LEVEL &&
Xiao Guangrong92f94f12016-02-24 17:51:06 +08002713 mmu_gfn_lpage_is_disallowed(vcpu, gfn, level))
Avi Kivitybe38d272010-06-06 14:31:27 +03002714 goto done;
Marcelo Tosatti38187c82008-09-23 13:18:32 -03002715
Xiao Guangrong49fde342012-06-20 15:58:58 +08002716 spte |= PT_WRITABLE_MASK | SPTE_MMU_WRITEABLE;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002717
Marcelo Tosattiecc55892008-11-25 15:58:07 +01002718 /*
2719 * Optimization: for pte sync, if spte was writable the hash
2720 * lookup is unnecessary (and expensive). Write protection
2721 * is responsibility of mmu_get_page / kvm_sync_page.
2722 * Same reasoning can be applied to dirty page accounting.
2723 */
Takuya Yoshikawa8dae4442010-01-18 18:45:10 +09002724 if (!can_unsync && is_writable_pte(*sptep))
Marcelo Tosattiecc55892008-11-25 15:58:07 +01002725 goto set_pte;
2726
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -03002727 if (mmu_need_write_protect(vcpu, gfn, can_unsync)) {
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002728 pgprintk("%s: found shadow page for %llx, marking ro\n",
Harvey Harrisonb8688d52008-03-03 12:59:56 -08002729 __func__, gfn);
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002730 ret = 1;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002731 pte_access &= ~ACC_WRITE_MASK;
Xiao Guangrong49fde342012-06-20 15:58:58 +08002732 spte &= ~(PT_WRITABLE_MASK | SPTE_MMU_WRITEABLE);
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002733 }
2734 }
2735
Kai Huang9b51a632015-01-28 10:54:25 +08002736 if (pte_access & ACC_WRITE_MASK) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002737 kvm_vcpu_mark_page_dirty(vcpu, gfn);
Kai Huang9b51a632015-01-28 10:54:25 +08002738 spte |= shadow_dirty_mask;
2739 }
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002740
Junaid Shahidf160c7b2016-12-06 16:46:16 -08002741 if (speculative)
2742 spte = mark_spte_for_access_track(spte);
2743
Marcelo Tosatti38187c82008-09-23 13:18:32 -03002744set_pte:
Xiao Guangrong6e7d0352012-06-20 15:58:33 +08002745 if (mmu_spte_update(sptep, spte))
Xiao Guangrongb330aa02010-11-19 17:02:35 +08002746 kvm_flush_remote_tlbs(vcpu->kvm);
Avi Kivitybe38d272010-06-06 14:31:27 +03002747done:
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002748 return ret;
2749}
2750
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002751static bool mmu_set_spte(struct kvm_vcpu *vcpu, u64 *sptep, unsigned pte_access,
Dan Williamsba049e92016-01-15 16:56:11 -08002752 int write_fault, int level, gfn_t gfn, kvm_pfn_t pfn,
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002753 bool speculative, bool host_writable)
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002754{
2755 int was_rmapped = 0;
Marcelo Tosatti53a27b32009-08-05 15:43:58 -03002756 int rmap_count;
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002757 bool emulate = false;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002758
Xiao Guangrongf7616202013-02-05 15:27:27 +08002759 pgprintk("%s: spte %llx write_fault %d gfn %llx\n", __func__,
2760 *sptep, write_fault, gfn);
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002761
Takuya Yoshikawaafd28fe2015-11-20 17:44:55 +09002762 if (is_shadow_present_pte(*sptep)) {
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002763 /*
2764 * If we overwrite a PTE page pointer with a 2MB PMD, unlink
2765 * the parent of the now unreachable PTE.
2766 */
Joerg Roedel852e3c12009-07-27 16:30:44 +02002767 if (level > PT_PAGE_TABLE_LEVEL &&
2768 !is_large_pte(*sptep)) {
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002769 struct kvm_mmu_page *child;
Avi Kivityd555c332009-06-10 14:24:23 +03002770 u64 pte = *sptep;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002771
2772 child = page_header(pte & PT64_BASE_ADDR_MASK);
Xiao Guangrongbcdd9a92011-05-15 23:28:29 +08002773 drop_parent_pte(child, sptep);
Marcelo Tosatti3be22642010-05-28 09:44:59 -03002774 kvm_flush_remote_tlbs(vcpu->kvm);
Avi Kivityd555c332009-06-10 14:24:23 +03002775 } else if (pfn != spte_to_pfn(*sptep)) {
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002776 pgprintk("hfn old %llx new %llx\n",
Avi Kivityd555c332009-06-10 14:24:23 +03002777 spte_to_pfn(*sptep), pfn);
Xiao Guangrongc3707952011-07-12 03:28:04 +08002778 drop_spte(vcpu->kvm, sptep);
Xiao Guangrong91546352010-06-30 16:04:06 +08002779 kvm_flush_remote_tlbs(vcpu->kvm);
Joerg Roedel6bed6b92009-02-18 14:08:59 +01002780 } else
2781 was_rmapped = 1;
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002782 }
Joerg Roedel852e3c12009-07-27 16:30:44 +02002783
Xiao Guangrongc22885052013-01-08 14:36:04 +08002784 if (set_spte(vcpu, sptep, pte_access, level, gfn, pfn, speculative,
2785 true, host_writable)) {
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002786 if (write_fault)
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002787 emulate = true;
Liang Chen77c39132014-09-18 12:38:37 -04002788 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Marcelo Tosattia378b4e2008-09-23 13:18:31 -03002789 }
Marcelo Tosatti1e73f9d2008-09-23 13:18:30 -03002790
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002791 if (unlikely(is_mmio_spte(*sptep)))
2792 emulate = true;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08002793
Avi Kivityd555c332009-06-10 14:24:23 +03002794 pgprintk("%s: setting spte %llx\n", __func__, *sptep);
Xiao Guangrong9ad17b102010-08-28 19:19:42 +08002795 pgprintk("instantiating %s PTE (%s) at %llx (%llx) addr %p\n",
Avi Kivityd555c332009-06-10 14:24:23 +03002796 is_large_pte(*sptep)? "2MB" : "4kB",
Junaid Shahidf160c7b2016-12-06 16:46:16 -08002797 *sptep & PT_WRITABLE_MASK ? "RW" : "R", gfn,
Joerg Roedela205bc12009-07-09 16:36:01 +02002798 *sptep, sptep);
Avi Kivityd555c332009-06-10 14:24:23 +03002799 if (!was_rmapped && is_large_pte(*sptep))
Marcelo Tosatti05da4552008-02-23 11:44:30 -03002800 ++vcpu->kvm->stat.lpages;
2801
Xiao Guangrongffb61bb2011-07-12 03:22:01 +08002802 if (is_shadow_present_pte(*sptep)) {
Xiao Guangrongffb61bb2011-07-12 03:22:01 +08002803 if (!was_rmapped) {
2804 rmap_count = rmap_add(vcpu, sptep, gfn);
2805 if (rmap_count > RMAP_RECYCLE_THRESHOLD)
2806 rmap_recycle(vcpu, sptep, gfn);
2807 }
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002808 }
Xiao Guangrongcb9aaa32012-08-03 15:42:10 +08002809
Xiao Guangrongf3ac1a42012-10-16 20:07:03 +08002810 kvm_release_pfn_clean(pfn);
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002811
2812 return emulate;
Avi Kivity1c4f1fd2007-12-09 17:40:31 +02002813}
2814
Dan Williamsba049e92016-01-15 16:56:11 -08002815static kvm_pfn_t pte_prefetch_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn,
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002816 bool no_dirty_log)
2817{
2818 struct kvm_memory_slot *slot;
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002819
Xiao Guangrong5d163b12011-03-09 15:43:00 +08002820 slot = gfn_to_memslot_dirty_bitmap(vcpu, gfn, no_dirty_log);
Xiao Guangrong903816f2012-07-17 21:54:11 +08002821 if (!slot)
Xiao Guangrong6c8ee572012-08-03 15:37:54 +08002822 return KVM_PFN_ERR_FAULT;
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002823
Xiao Guangrong037d92d2012-08-21 10:59:12 +08002824 return gfn_to_pfn_memslot_atomic(slot, gfn);
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002825}
2826
2827static int direct_pte_prefetch_many(struct kvm_vcpu *vcpu,
2828 struct kvm_mmu_page *sp,
2829 u64 *start, u64 *end)
2830{
2831 struct page *pages[PTE_PREFETCH_NUM];
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02002832 struct kvm_memory_slot *slot;
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002833 unsigned access = sp->role.access;
2834 int i, ret;
2835 gfn_t gfn;
2836
2837 gfn = kvm_mmu_page_get_gfn(sp, start - sp->spt);
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02002838 slot = gfn_to_memslot_dirty_bitmap(vcpu, gfn, access & ACC_WRITE_MASK);
2839 if (!slot)
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002840 return -1;
2841
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +02002842 ret = gfn_to_page_many_atomic(slot, gfn, pages, end - start);
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002843 if (ret <= 0)
2844 return -1;
2845
2846 for (i = 0; i < ret; i++, gfn++, start++)
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002847 mmu_set_spte(vcpu, start, access, 0, sp->role.level, gfn,
2848 page_to_pfn(pages[i]), true, true);
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002849
2850 return 0;
2851}
2852
2853static void __direct_pte_prefetch(struct kvm_vcpu *vcpu,
2854 struct kvm_mmu_page *sp, u64 *sptep)
2855{
2856 u64 *spte, *start = NULL;
2857 int i;
2858
2859 WARN_ON(!sp->role.direct);
2860
2861 i = (sptep - sp->spt) & ~(PTE_PREFETCH_NUM - 1);
2862 spte = sp->spt + i;
2863
2864 for (i = 0; i < PTE_PREFETCH_NUM; i++, spte++) {
Xiao Guangrongc3707952011-07-12 03:28:04 +08002865 if (is_shadow_present_pte(*spte) || spte == sptep) {
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002866 if (!start)
2867 continue;
2868 if (direct_pte_prefetch_many(vcpu, sp, start, spte) < 0)
2869 break;
2870 start = NULL;
2871 } else if (!start)
2872 start = spte;
2873 }
2874}
2875
2876static void direct_pte_prefetch(struct kvm_vcpu *vcpu, u64 *sptep)
2877{
2878 struct kvm_mmu_page *sp;
2879
2880 /*
2881 * Since it's no accessed bit on EPT, it's no way to
2882 * distinguish between actually accessed translations
2883 * and prefetched, so disable pte prefetch if EPT is
2884 * enabled.
2885 */
2886 if (!shadow_accessed_mask)
2887 return;
2888
2889 sp = page_header(__pa(sptep));
2890 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
2891 return;
2892
2893 __direct_pte_prefetch(vcpu, sp, sptep);
2894}
2895
Takuya Yoshikawa7ee0e5b2015-11-20 17:42:23 +09002896static int __direct_map(struct kvm_vcpu *vcpu, int write, int map_writable,
Dan Williamsba049e92016-01-15 16:56:11 -08002897 int level, gfn_t gfn, kvm_pfn_t pfn, bool prefault)
Avi Kivity6aa8b732006-12-10 02:21:36 -08002898{
Avi Kivity9f652d212008-12-25 14:54:25 +02002899 struct kvm_shadow_walk_iterator iterator;
2900 struct kvm_mmu_page *sp;
Xiao Guangrongb90a0e62011-07-12 03:25:56 +08002901 int emulate = 0;
Avi Kivity9f652d212008-12-25 14:54:25 +02002902 gfn_t pseudo_gfn;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002903
Marcelo Tosatti989c6b32013-12-19 15:28:51 -02002904 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
2905 return 0;
2906
Avi Kivity9f652d212008-12-25 14:54:25 +02002907 for_each_shadow_entry(vcpu, (u64)gfn << PAGE_SHIFT, iterator) {
Joerg Roedel852e3c12009-07-27 16:30:44 +02002908 if (iterator.level == level) {
Takuya Yoshikawa029499b2015-11-20 17:44:05 +09002909 emulate = mmu_set_spte(vcpu, iterator.sptep, ACC_ALL,
2910 write, level, gfn, pfn, prefault,
2911 map_writable);
Xiao Guangrong957ed9e2010-08-22 19:12:48 +08002912 direct_pte_prefetch(vcpu, iterator.sptep);
Avi Kivity9f652d212008-12-25 14:54:25 +02002913 ++vcpu->stat.pf_fixed;
2914 break;
2915 }
2916
Marcelo Tosatti404381c2014-02-24 13:59:32 -03002917 drop_large_spte(vcpu, iterator.sptep);
Xiao Guangrongc3707952011-07-12 03:28:04 +08002918 if (!is_shadow_present_pte(*iterator.sptep)) {
Lai Jiangshanc9fa0b32010-05-26 16:48:25 +08002919 u64 base_addr = iterator.addr;
2920
2921 base_addr &= PT64_LVL_ADDR_MASK(iterator.level);
2922 pseudo_gfn = base_addr >> PAGE_SHIFT;
Avi Kivity9f652d212008-12-25 14:54:25 +02002923 sp = kvm_mmu_get_page(vcpu, pseudo_gfn, iterator.addr,
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09002924 iterator.level - 1, 1, ACC_ALL);
Avi Kivity9f652d212008-12-25 14:54:25 +02002925
Takuya Yoshikawa98bba232015-11-26 21:14:34 +09002926 link_shadow_page(vcpu, iterator.sptep, sp);
Avi Kivity9f652d212008-12-25 14:54:25 +02002927 }
2928 }
Xiao Guangrongb90a0e62011-07-12 03:25:56 +08002929 return emulate;
Avi Kivity6aa8b732006-12-10 02:21:36 -08002930}
2931
Huang Ying77db5cb2010-10-08 16:24:15 +08002932static void kvm_send_hwpoison_signal(unsigned long address, struct task_struct *tsk)
Huang Yingbf998152010-05-31 14:28:19 +08002933{
Huang Ying77db5cb2010-10-08 16:24:15 +08002934 siginfo_t info;
Huang Yingbf998152010-05-31 14:28:19 +08002935
Huang Ying77db5cb2010-10-08 16:24:15 +08002936 info.si_signo = SIGBUS;
2937 info.si_errno = 0;
2938 info.si_code = BUS_MCEERR_AR;
2939 info.si_addr = (void __user *)address;
2940 info.si_addr_lsb = PAGE_SHIFT;
2941
2942 send_sig_info(SIGBUS, &info, tsk);
Huang Yingbf998152010-05-31 14:28:19 +08002943}
2944
Dan Williamsba049e92016-01-15 16:56:11 -08002945static int kvm_handle_bad_page(struct kvm_vcpu *vcpu, gfn_t gfn, kvm_pfn_t pfn)
Huang Yingbf998152010-05-31 14:28:19 +08002946{
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +08002947 /*
2948 * Do not cache the mmio info caused by writing the readonly gfn
2949 * into the spte otherwise read access on readonly gfn also can
2950 * caused mmio page fault and treat it as mmio access.
2951 * Return 1 to tell kvm to emulate it.
2952 */
2953 if (pfn == KVM_PFN_ERR_RO_FAULT)
2954 return 1;
2955
Xiao Guangronge6c15022012-08-03 15:38:36 +08002956 if (pfn == KVM_PFN_ERR_HWPOISON) {
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02002957 kvm_send_hwpoison_signal(kvm_vcpu_gfn_to_hva(vcpu, gfn), current);
Huang Yingbf998152010-05-31 14:28:19 +08002958 return 0;
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002959 }
Gleb Natapovedba23e2010-07-07 20:16:45 +03002960
Xiao Guangrongd7c55202011-07-12 03:29:38 +08002961 return -EFAULT;
Huang Yingbf998152010-05-31 14:28:19 +08002962}
2963
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002964static void transparent_hugepage_adjust(struct kvm_vcpu *vcpu,
Dan Williamsba049e92016-01-15 16:56:11 -08002965 gfn_t *gfnp, kvm_pfn_t *pfnp,
2966 int *levelp)
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002967{
Dan Williamsba049e92016-01-15 16:56:11 -08002968 kvm_pfn_t pfn = *pfnp;
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002969 gfn_t gfn = *gfnp;
2970 int level = *levelp;
2971
2972 /*
2973 * Check if it's a transparent hugepage. If this would be an
2974 * hugetlbfs page, level wouldn't be set to
2975 * PT_PAGE_TABLE_LEVEL and there would be no adjustment done
2976 * here.
2977 */
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +00002978 if (!is_error_noslot_pfn(pfn) && !kvm_is_reserved_pfn(pfn) &&
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002979 level == PT_PAGE_TABLE_LEVEL &&
Andrea Arcangeli127393f2016-05-05 16:22:20 -07002980 PageTransCompoundMap(pfn_to_page(pfn)) &&
Xiao Guangrong92f94f12016-02-24 17:51:06 +08002981 !mmu_gfn_lpage_is_disallowed(vcpu, gfn, PT_DIRECTORY_LEVEL)) {
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08002982 unsigned long mask;
2983 /*
2984 * mmu_notifier_retry was successful and we hold the
2985 * mmu_lock here, so the pmd can't become splitting
2986 * from under us, and in turn
2987 * __split_huge_page_refcount() can't run from under
2988 * us and we can safely transfer the refcount from
2989 * PG_tail to PG_head as we switch the pfn to tail to
2990 * head.
2991 */
2992 *levelp = level = PT_DIRECTORY_LEVEL;
2993 mask = KVM_PAGES_PER_HPAGE(level) - 1;
2994 VM_BUG_ON((gfn & mask) != (pfn & mask));
2995 if (pfn & mask) {
2996 gfn &= ~mask;
2997 *gfnp = gfn;
2998 kvm_release_pfn_clean(pfn);
2999 pfn &= ~mask;
Xiao Guangrongc3586662012-05-28 14:10:43 +08003000 kvm_get_pfn(pfn);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003001 *pfnp = pfn;
3002 }
3003 }
3004}
3005
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003006static bool handle_abnormal_pfn(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn,
Dan Williamsba049e92016-01-15 16:56:11 -08003007 kvm_pfn_t pfn, unsigned access, int *ret_val)
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003008{
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003009 /* The pfn is invalid, report the error! */
Xiao Guangrong81c52c52012-10-16 20:10:59 +08003010 if (unlikely(is_error_pfn(pfn))) {
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003011 *ret_val = kvm_handle_bad_page(vcpu, gfn, pfn);
Paolo Bonzini798e88b2016-02-23 15:28:51 +01003012 return true;
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003013 }
3014
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003015 if (unlikely(is_noslot_pfn(pfn)))
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003016 vcpu_cache_mmio_info(vcpu, gva, gfn, access);
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003017
Paolo Bonzini798e88b2016-02-23 15:28:51 +01003018 return false;
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003019}
3020
Xiao Guangronge5552fd2013-07-30 21:01:59 +08003021static bool page_fault_can_be_fast(u32 error_code)
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003022{
3023 /*
Xiao Guangrong1c118b82013-07-18 12:52:37 +08003024 * Do not fix the mmio spte with invalid generation number which
3025 * need to be updated by slow page fault path.
3026 */
3027 if (unlikely(error_code & PFERR_RSVD_MASK))
3028 return false;
3029
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003030 /* See if the page fault is due to an NX violation */
3031 if (unlikely(((error_code & (PFERR_FETCH_MASK | PFERR_PRESENT_MASK))
3032 == (PFERR_FETCH_MASK | PFERR_PRESENT_MASK))))
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003033 return false;
3034
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003035 /*
3036 * #PF can be fast if:
3037 * 1. The shadow page table entry is not present, which could mean that
3038 * the fault is potentially caused by access tracking (if enabled).
3039 * 2. The shadow page table entry is present and the fault
3040 * is caused by write-protect, that means we just need change the W
3041 * bit of the spte which can be done out of mmu-lock.
3042 *
3043 * However, if access tracking is disabled we know that a non-present
3044 * page must be a genuine page fault where we have to create a new SPTE.
3045 * So, if access tracking is disabled, we return true only for write
3046 * accesses to a present page.
3047 */
3048
3049 return shadow_acc_track_mask != 0 ||
3050 ((error_code & (PFERR_WRITE_MASK | PFERR_PRESENT_MASK))
3051 == (PFERR_WRITE_MASK | PFERR_PRESENT_MASK));
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003052}
3053
Junaid Shahid97dceba2016-12-06 16:46:12 -08003054/*
3055 * Returns true if the SPTE was fixed successfully. Otherwise,
3056 * someone else modified the SPTE from its original value.
3057 */
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003058static bool
Xiao Guangrong92a476c2014-04-17 17:06:13 +08003059fast_pf_fix_direct_spte(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
Junaid Shahidd3e328f2016-12-21 20:29:32 -08003060 u64 *sptep, u64 old_spte, u64 new_spte)
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003061{
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003062 gfn_t gfn;
3063
3064 WARN_ON(!sp->role.direct);
3065
Kai Huang9b51a632015-01-28 10:54:25 +08003066 /*
3067 * Theoretically we could also set dirty bit (and flush TLB) here in
3068 * order to eliminate unnecessary PML logging. See comments in
3069 * set_spte. But fast_page_fault is very unlikely to happen with PML
3070 * enabled, so we do not do this. This might result in the same GPA
3071 * to be logged in PML buffer again when the write really happens, and
3072 * eventually to be called by mark_page_dirty twice. But it's also no
3073 * harm. This also avoids the TLB flush needed after setting dirty bit
3074 * so non-PML cases won't be impacted.
3075 *
3076 * Compare with set_spte where instead shadow_dirty_mask is set.
3077 */
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003078 if (cmpxchg64(sptep, old_spte, new_spte) != old_spte)
Junaid Shahid97dceba2016-12-06 16:46:12 -08003079 return false;
3080
Junaid Shahidd3e328f2016-12-21 20:29:32 -08003081 if (is_writable_pte(new_spte) && !is_writable_pte(old_spte)) {
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003082 /*
3083 * The gfn of direct spte is stable since it is
3084 * calculated by sp->gfn.
3085 */
3086 gfn = kvm_mmu_page_get_gfn(sp, sptep - sp->spt);
3087 kvm_vcpu_mark_page_dirty(vcpu, gfn);
3088 }
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003089
3090 return true;
3091}
3092
Junaid Shahidd3e328f2016-12-21 20:29:32 -08003093static bool is_access_allowed(u32 fault_err_code, u64 spte)
3094{
3095 if (fault_err_code & PFERR_FETCH_MASK)
3096 return is_executable_pte(spte);
3097
3098 if (fault_err_code & PFERR_WRITE_MASK)
3099 return is_writable_pte(spte);
3100
3101 /* Fault was on Read access */
3102 return spte & PT_PRESENT_MASK;
3103}
3104
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003105/*
3106 * Return value:
3107 * - true: let the vcpu to access on the same address again.
3108 * - false: let the real page fault path to fix it.
3109 */
3110static bool fast_page_fault(struct kvm_vcpu *vcpu, gva_t gva, int level,
3111 u32 error_code)
3112{
3113 struct kvm_shadow_walk_iterator iterator;
Xiao Guangrong92a476c2014-04-17 17:06:13 +08003114 struct kvm_mmu_page *sp;
Junaid Shahid97dceba2016-12-06 16:46:12 -08003115 bool fault_handled = false;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003116 u64 spte = 0ull;
Junaid Shahid97dceba2016-12-06 16:46:12 -08003117 uint retry_count = 0;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003118
Marcelo Tosatti37f6a4e2014-01-03 17:09:32 -02003119 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3120 return false;
3121
Xiao Guangronge5552fd2013-07-30 21:01:59 +08003122 if (!page_fault_can_be_fast(error_code))
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003123 return false;
3124
3125 walk_shadow_page_lockless_begin(vcpu);
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003126
Junaid Shahid97dceba2016-12-06 16:46:12 -08003127 do {
Junaid Shahidd3e328f2016-12-21 20:29:32 -08003128 u64 new_spte;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003129
Junaid Shahidd162f302016-12-21 20:29:30 -08003130 for_each_shadow_entry_lockless(vcpu, gva, iterator, spte)
3131 if (!is_shadow_present_pte(spte) ||
3132 iterator.level < level)
3133 break;
3134
Junaid Shahid97dceba2016-12-06 16:46:12 -08003135 sp = page_header(__pa(iterator.sptep));
3136 if (!is_last_spte(spte, sp->role.level))
3137 break;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003138
Junaid Shahid97dceba2016-12-06 16:46:12 -08003139 /*
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003140 * Check whether the memory access that caused the fault would
3141 * still cause it if it were to be performed right now. If not,
3142 * then this is a spurious fault caused by TLB lazily flushed,
3143 * or some other CPU has already fixed the PTE after the
3144 * current CPU took the fault.
Junaid Shahid97dceba2016-12-06 16:46:12 -08003145 *
3146 * Need not check the access of upper level table entries since
3147 * they are always ACC_ALL.
3148 */
Junaid Shahidd3e328f2016-12-21 20:29:32 -08003149 if (is_access_allowed(error_code, spte)) {
3150 fault_handled = true;
3151 break;
Junaid Shahid97dceba2016-12-06 16:46:12 -08003152 }
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003153
Junaid Shahidd3e328f2016-12-21 20:29:32 -08003154 new_spte = spte;
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003155
Junaid Shahidd3e328f2016-12-21 20:29:32 -08003156 if (is_access_track_spte(spte))
3157 new_spte = restore_acc_track_spte(new_spte);
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003158
Junaid Shahid97dceba2016-12-06 16:46:12 -08003159 /*
Junaid Shahidd3e328f2016-12-21 20:29:32 -08003160 * Currently, to simplify the code, write-protection can
3161 * be removed in the fast path only if the SPTE was
3162 * write-protected for dirty-logging or access tracking.
Junaid Shahid97dceba2016-12-06 16:46:12 -08003163 */
Junaid Shahidd3e328f2016-12-21 20:29:32 -08003164 if ((error_code & PFERR_WRITE_MASK) &&
3165 spte_can_locklessly_be_made_writable(spte))
3166 {
3167 new_spte |= PT_WRITABLE_MASK;
3168
3169 /*
3170 * Do not fix write-permission on the large spte. Since
3171 * we only dirty the first page into the dirty-bitmap in
3172 * fast_pf_fix_direct_spte(), other pages are missed
3173 * if its slot has dirty logging enabled.
3174 *
3175 * Instead, we let the slow page fault path create a
3176 * normal spte to fix the access.
3177 *
3178 * See the comments in kvm_arch_commit_memory_region().
3179 */
3180 if (sp->role.level > PT_PAGE_TABLE_LEVEL)
3181 break;
3182 }
3183
3184 /* Verify that the fault can be handled in the fast path */
3185 if (new_spte == spte ||
3186 !is_access_allowed(error_code, new_spte))
Junaid Shahid97dceba2016-12-06 16:46:12 -08003187 break;
Xiao Guangrongc126d942014-04-17 17:06:14 +08003188
Junaid Shahid97dceba2016-12-06 16:46:12 -08003189 /*
3190 * Currently, fast page fault only works for direct mapping
3191 * since the gfn is not stable for indirect shadow page. See
3192 * Documentation/virtual/kvm/locking.txt to get more detail.
3193 */
3194 fault_handled = fast_pf_fix_direct_spte(vcpu, sp,
Junaid Shahidf160c7b2016-12-06 16:46:16 -08003195 iterator.sptep, spte,
Junaid Shahidd3e328f2016-12-21 20:29:32 -08003196 new_spte);
Junaid Shahid97dceba2016-12-06 16:46:12 -08003197 if (fault_handled)
3198 break;
3199
3200 if (++retry_count > 4) {
3201 printk_once(KERN_WARNING
3202 "kvm: Fast #PF retrying more than 4 times.\n");
3203 break;
3204 }
3205
Junaid Shahid97dceba2016-12-06 16:46:12 -08003206 } while (true);
3207
Xiao Guangronga72faf22012-06-20 15:59:41 +08003208 trace_fast_page_fault(vcpu, gva, error_code, iterator.sptep,
Junaid Shahid97dceba2016-12-06 16:46:12 -08003209 spte, fault_handled);
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003210 walk_shadow_page_lockless_end(vcpu);
3211
Junaid Shahid97dceba2016-12-06 16:46:12 -08003212 return fault_handled;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003213}
3214
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003215static bool try_async_pf(struct kvm_vcpu *vcpu, bool prefault, gfn_t gfn,
Dan Williamsba049e92016-01-15 16:56:11 -08003216 gva_t gva, kvm_pfn_t *pfn, bool write, bool *writable);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003217static void make_mmu_pages_available(struct kvm_vcpu *vcpu);
Xiao Guangrong060c2ab2010-11-12 14:49:11 +08003218
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003219static int nonpaging_map(struct kvm_vcpu *vcpu, gva_t v, u32 error_code,
3220 gfn_t gfn, bool prefault)
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003221{
3222 int r;
Joerg Roedel852e3c12009-07-27 16:30:44 +02003223 int level;
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003224 bool force_pt_level = false;
Dan Williamsba049e92016-01-15 16:56:11 -08003225 kvm_pfn_t pfn;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003226 unsigned long mmu_seq;
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003227 bool map_writable, write = error_code & PFERR_WRITE_MASK;
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003228
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003229 level = mapping_level(vcpu, gfn, &force_pt_level);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003230 if (likely(!force_pt_level)) {
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003231 /*
3232 * This path builds a PAE pagetable - so we can map
3233 * 2mb pages at maximum. Therefore check if the level
3234 * is larger than that.
3235 */
3236 if (level > PT_DIRECTORY_LEVEL)
3237 level = PT_DIRECTORY_LEVEL;
Joerg Roedel852e3c12009-07-27 16:30:44 +02003238
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003239 gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1);
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003240 }
Marcelo Tosatti05da4552008-02-23 11:44:30 -03003241
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003242 if (fast_page_fault(vcpu, v, level, error_code))
3243 return 0;
3244
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003245 mmu_seq = vcpu->kvm->mmu_notifier_seq;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03003246 smp_rmb();
Xiao Guangrong060c2ab2010-11-12 14:49:11 +08003247
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003248 if (try_async_pf(vcpu, prefault, gfn, v, &pfn, write, &map_writable))
Xiao Guangrong060c2ab2010-11-12 14:49:11 +08003249 return 0;
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003250
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003251 if (handle_abnormal_pfn(vcpu, v, gfn, pfn, ACC_ALL, &r))
3252 return r;
Avi Kivityd196e342008-01-24 11:44:11 +02003253
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003254 spin_lock(&vcpu->kvm->mmu_lock);
Christoffer Dall8ca40a72012-10-14 23:10:18 -04003255 if (mmu_notifier_retry(vcpu->kvm, mmu_seq))
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003256 goto out_unlock;
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003257 make_mmu_pages_available(vcpu);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003258 if (likely(!force_pt_level))
3259 transparent_hugepage_adjust(vcpu, &gfn, &pfn, &level);
Takuya Yoshikawa7ee0e5b2015-11-20 17:42:23 +09003260 r = __direct_map(vcpu, write, map_writable, level, gfn, pfn, prefault);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003261 spin_unlock(&vcpu->kvm->mmu_lock);
3262
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003263 return r;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003264
3265out_unlock:
3266 spin_unlock(&vcpu->kvm->mmu_lock);
3267 kvm_release_pfn_clean(pfn);
3268 return 0;
Marcelo Tosatti10589a42007-12-20 19:18:22 -05003269}
3270
3271
Avi Kivity17ac10a2007-01-05 16:36:40 -08003272static void mmu_free_roots(struct kvm_vcpu *vcpu)
3273{
3274 int i;
Avi Kivity4db35312007-11-21 15:28:32 +02003275 struct kvm_mmu_page *sp;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08003276 LIST_HEAD(invalid_list);
Avi Kivity17ac10a2007-01-05 16:36:40 -08003277
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003278 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
Avi Kivity7b53aa52007-06-05 12:17:03 +03003279 return;
Gleb Natapov35af5772013-05-16 11:55:51 +03003280
Joerg Roedel81407ca2010-09-10 17:31:00 +02003281 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL &&
3282 (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL ||
3283 vcpu->arch.mmu.direct_map)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003284 hpa_t root = vcpu->arch.mmu.root_hpa;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003285
Gleb Natapov35af5772013-05-16 11:55:51 +03003286 spin_lock(&vcpu->kvm->mmu_lock);
Avi Kivity4db35312007-11-21 15:28:32 +02003287 sp = page_header(root);
3288 --sp->root_count;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08003289 if (!sp->root_count && sp->role.invalid) {
3290 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, &invalid_list);
3291 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
3292 }
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003293 spin_unlock(&vcpu->kvm->mmu_lock);
Gleb Natapov35af5772013-05-16 11:55:51 +03003294 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003295 return;
3296 }
Gleb Natapov35af5772013-05-16 11:55:51 +03003297
3298 spin_lock(&vcpu->kvm->mmu_lock);
Avi Kivity17ac10a2007-01-05 16:36:40 -08003299 for (i = 0; i < 4; ++i) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003300 hpa_t root = vcpu->arch.mmu.pae_root[i];
Avi Kivity17ac10a2007-01-05 16:36:40 -08003301
Avi Kivity417726a2007-04-12 17:35:58 +03003302 if (root) {
Avi Kivity417726a2007-04-12 17:35:58 +03003303 root &= PT64_BASE_ADDR_MASK;
Avi Kivity4db35312007-11-21 15:28:32 +02003304 sp = page_header(root);
3305 --sp->root_count;
Marcelo Tosatti2e53d632008-02-20 14:47:24 -05003306 if (!sp->root_count && sp->role.invalid)
Xiao Guangrongd98ba052010-06-04 21:55:29 +08003307 kvm_mmu_prepare_zap_page(vcpu->kvm, sp,
3308 &invalid_list);
Avi Kivity417726a2007-04-12 17:35:58 +03003309 }
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003310 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003311 }
Xiao Guangrongd98ba052010-06-04 21:55:29 +08003312 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05003313 spin_unlock(&vcpu->kvm->mmu_lock);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003314 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003315}
3316
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003317static int mmu_check_root(struct kvm_vcpu *vcpu, gfn_t root_gfn)
3318{
3319 int ret = 0;
3320
3321 if (!kvm_is_visible_gfn(vcpu->kvm, root_gfn)) {
Avi Kivitya8eeb042010-05-10 12:34:53 +03003322 kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003323 ret = 1;
3324 }
3325
3326 return ret;
3327}
3328
Joerg Roedel651dd372010-09-10 17:30:59 +02003329static int mmu_alloc_direct_roots(struct kvm_vcpu *vcpu)
3330{
3331 struct kvm_mmu_page *sp;
Avi Kivity7ebaf152010-10-03 18:51:39 +02003332 unsigned i;
Joerg Roedel651dd372010-09-10 17:30:59 +02003333
3334 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
3335 spin_lock(&vcpu->kvm->mmu_lock);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003336 make_mmu_pages_available(vcpu);
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09003337 sp = kvm_mmu_get_page(vcpu, 0, 0, PT64_ROOT_LEVEL, 1, ACC_ALL);
Joerg Roedel651dd372010-09-10 17:30:59 +02003338 ++sp->root_count;
3339 spin_unlock(&vcpu->kvm->mmu_lock);
3340 vcpu->arch.mmu.root_hpa = __pa(sp->spt);
3341 } else if (vcpu->arch.mmu.shadow_root_level == PT32E_ROOT_LEVEL) {
3342 for (i = 0; i < 4; ++i) {
3343 hpa_t root = vcpu->arch.mmu.pae_root[i];
3344
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003345 MMU_WARN_ON(VALID_PAGE(root));
Joerg Roedel651dd372010-09-10 17:30:59 +02003346 spin_lock(&vcpu->kvm->mmu_lock);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003347 make_mmu_pages_available(vcpu);
Avi Kivity649497d2010-12-28 12:09:07 +02003348 sp = kvm_mmu_get_page(vcpu, i << (30 - PAGE_SHIFT),
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09003349 i << 30, PT32_ROOT_LEVEL, 1, ACC_ALL);
Joerg Roedel651dd372010-09-10 17:30:59 +02003350 root = __pa(sp->spt);
3351 ++sp->root_count;
3352 spin_unlock(&vcpu->kvm->mmu_lock);
3353 vcpu->arch.mmu.pae_root[i] = root | PT_PRESENT_MASK;
Joerg Roedel651dd372010-09-10 17:30:59 +02003354 }
Xiao Guangrong62927572010-09-27 18:02:12 +08003355 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
Joerg Roedel651dd372010-09-10 17:30:59 +02003356 } else
3357 BUG();
3358
3359 return 0;
3360}
3361
3362static int mmu_alloc_shadow_roots(struct kvm_vcpu *vcpu)
Avi Kivity17ac10a2007-01-05 16:36:40 -08003363{
Avi Kivity4db35312007-11-21 15:28:32 +02003364 struct kvm_mmu_page *sp;
Joerg Roedel81407ca2010-09-10 17:31:00 +02003365 u64 pdptr, pm_mask;
3366 gfn_t root_gfn;
3367 int i;
Avi Kivity3bb65a22007-01-05 16:36:51 -08003368
Joerg Roedel5777ed32010-09-10 17:30:42 +02003369 root_gfn = vcpu->arch.mmu.get_cr3(vcpu) >> PAGE_SHIFT;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003370
Joerg Roedel651dd372010-09-10 17:30:59 +02003371 if (mmu_check_root(vcpu, root_gfn))
3372 return 1;
3373
3374 /*
3375 * Do we shadow a long mode page table? If so we need to
3376 * write-protect the guests page table root.
3377 */
3378 if (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003379 hpa_t root = vcpu->arch.mmu.root_hpa;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003380
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003381 MMU_WARN_ON(VALID_PAGE(root));
Joerg Roedel651dd372010-09-10 17:30:59 +02003382
Avi Kivity8facbbf2010-05-04 12:58:32 +03003383 spin_lock(&vcpu->kvm->mmu_lock);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003384 make_mmu_pages_available(vcpu);
Joerg Roedel651dd372010-09-10 17:30:59 +02003385 sp = kvm_mmu_get_page(vcpu, root_gfn, 0, PT64_ROOT_LEVEL,
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09003386 0, ACC_ALL);
Avi Kivity4db35312007-11-21 15:28:32 +02003387 root = __pa(sp->spt);
3388 ++sp->root_count;
Avi Kivity8facbbf2010-05-04 12:58:32 +03003389 spin_unlock(&vcpu->kvm->mmu_lock);
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003390 vcpu->arch.mmu.root_hpa = root;
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003391 return 0;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003392 }
Joerg Roedelf87f9282010-09-02 17:29:45 +02003393
Joerg Roedel651dd372010-09-10 17:30:59 +02003394 /*
3395 * We shadow a 32 bit page table. This may be a legacy 2-level
Joerg Roedel81407ca2010-09-10 17:31:00 +02003396 * or a PAE 3-level page table. In either case we need to be aware that
3397 * the shadow page table may be a PAE or a long mode page table.
Joerg Roedel651dd372010-09-10 17:30:59 +02003398 */
Joerg Roedel81407ca2010-09-10 17:31:00 +02003399 pm_mask = PT_PRESENT_MASK;
3400 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL)
3401 pm_mask |= PT_ACCESSED_MASK | PT_WRITABLE_MASK | PT_USER_MASK;
3402
Avi Kivity17ac10a2007-01-05 16:36:40 -08003403 for (i = 0; i < 4; ++i) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003404 hpa_t root = vcpu->arch.mmu.pae_root[i];
Avi Kivity17ac10a2007-01-05 16:36:40 -08003405
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003406 MMU_WARN_ON(VALID_PAGE(root));
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003407 if (vcpu->arch.mmu.root_level == PT32E_ROOT_LEVEL) {
Avi Kivitye4e517b2011-07-28 11:36:17 +03003408 pdptr = vcpu->arch.mmu.get_pdptr(vcpu, i);
Bandan Das812f30b2016-07-12 18:18:50 -04003409 if (!(pdptr & PT_PRESENT_MASK)) {
Zhang Xiantaoad312c72007-12-13 23:50:52 +08003410 vcpu->arch.mmu.pae_root[i] = 0;
Avi Kivity417726a2007-04-12 17:35:58 +03003411 continue;
3412 }
Avi Kivity6de4f3a2009-05-31 22:58:47 +03003413 root_gfn = pdptr >> PAGE_SHIFT;
Joerg Roedelf87f9282010-09-02 17:29:45 +02003414 if (mmu_check_root(vcpu, root_gfn))
3415 return 1;
Eric Northup5a7388c2010-04-26 17:00:05 -07003416 }
Avi Kivity8facbbf2010-05-04 12:58:32 +03003417 spin_lock(&vcpu->kvm->mmu_lock);
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003418 make_mmu_pages_available(vcpu);
Takuya Yoshikawabb11c6c2015-11-26 21:16:35 +09003419 sp = kvm_mmu_get_page(vcpu, root_gfn, i << 30, PT32_ROOT_LEVEL,
3420 0, ACC_ALL);
Avi Kivity4db35312007-11-21 15:28:32 +02003421 root = __pa(sp->spt);
3422 ++sp->root_count;
Avi Kivity8facbbf2010-05-04 12:58:32 +03003423 spin_unlock(&vcpu->kvm->mmu_lock);
3424
Joerg Roedel81407ca2010-09-10 17:31:00 +02003425 vcpu->arch.mmu.pae_root[i] = root | pm_mask;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003426 }
Xiao Guangrong62927572010-09-27 18:02:12 +08003427 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
Joerg Roedel81407ca2010-09-10 17:31:00 +02003428
3429 /*
3430 * If we shadow a 32 bit page table with a long mode page
3431 * table we enter this path.
3432 */
3433 if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
3434 if (vcpu->arch.mmu.lm_root == NULL) {
3435 /*
3436 * The additional page necessary for this is only
3437 * allocated on demand.
3438 */
3439
3440 u64 *lm_root;
3441
3442 lm_root = (void*)get_zeroed_page(GFP_KERNEL);
3443 if (lm_root == NULL)
3444 return 1;
3445
3446 lm_root[0] = __pa(vcpu->arch.mmu.pae_root) | pm_mask;
3447
3448 vcpu->arch.mmu.lm_root = lm_root;
3449 }
3450
3451 vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.lm_root);
3452 }
3453
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003454 return 0;
Avi Kivity17ac10a2007-01-05 16:36:40 -08003455}
3456
Joerg Roedel651dd372010-09-10 17:30:59 +02003457static int mmu_alloc_roots(struct kvm_vcpu *vcpu)
3458{
3459 if (vcpu->arch.mmu.direct_map)
3460 return mmu_alloc_direct_roots(vcpu);
3461 else
3462 return mmu_alloc_shadow_roots(vcpu);
3463}
3464
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003465static void mmu_sync_roots(struct kvm_vcpu *vcpu)
3466{
3467 int i;
3468 struct kvm_mmu_page *sp;
3469
Joerg Roedel81407ca2010-09-10 17:31:00 +02003470 if (vcpu->arch.mmu.direct_map)
3471 return;
3472
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003473 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3474 return;
Xiao Guangrong69030742010-09-27 18:09:29 +08003475
David Matlack56f17dd2014-08-18 15:46:07 -07003476 vcpu_clear_mmio_info(vcpu, MMIO_GVA_ANY);
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08003477 kvm_mmu_audit(vcpu, AUDIT_PRE_SYNC);
Joerg Roedel81407ca2010-09-10 17:31:00 +02003478 if (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL) {
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003479 hpa_t root = vcpu->arch.mmu.root_hpa;
3480 sp = page_header(root);
3481 mmu_sync_children(vcpu, sp);
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08003482 kvm_mmu_audit(vcpu, AUDIT_POST_SYNC);
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003483 return;
3484 }
3485 for (i = 0; i < 4; ++i) {
3486 hpa_t root = vcpu->arch.mmu.pae_root[i];
3487
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03003488 if (root && VALID_PAGE(root)) {
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003489 root &= PT64_BASE_ADDR_MASK;
3490 sp = page_header(root);
3491 mmu_sync_children(vcpu, sp);
3492 }
3493 }
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08003494 kvm_mmu_audit(vcpu, AUDIT_POST_SYNC);
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003495}
3496
3497void kvm_mmu_sync_roots(struct kvm_vcpu *vcpu)
3498{
3499 spin_lock(&vcpu->kvm->mmu_lock);
3500 mmu_sync_roots(vcpu);
3501 spin_unlock(&vcpu->kvm->mmu_lock);
3502}
Nadav Har'Elbfd0a562013-08-05 11:07:17 +03003503EXPORT_SYMBOL_GPL(kvm_mmu_sync_roots);
Marcelo Tosatti0ba73cd2008-09-23 13:18:34 -03003504
Gleb Natapov1871c602010-02-10 14:21:32 +02003505static gpa_t nonpaging_gva_to_gpa(struct kvm_vcpu *vcpu, gva_t vaddr,
Avi Kivityab9ae312010-11-22 17:53:26 +02003506 u32 access, struct x86_exception *exception)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003507{
Avi Kivityab9ae312010-11-22 17:53:26 +02003508 if (exception)
3509 exception->error_code = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003510 return vaddr;
3511}
3512
Joerg Roedel6539e732010-09-10 17:30:50 +02003513static gpa_t nonpaging_gva_to_gpa_nested(struct kvm_vcpu *vcpu, gva_t vaddr,
Avi Kivityab9ae312010-11-22 17:53:26 +02003514 u32 access,
3515 struct x86_exception *exception)
Joerg Roedel6539e732010-09-10 17:30:50 +02003516{
Avi Kivityab9ae312010-11-22 17:53:26 +02003517 if (exception)
3518 exception->error_code = 0;
Paolo Bonzini54987b72014-09-02 13:23:06 +02003519 return vcpu->arch.nested_mmu.translate_gpa(vcpu, vaddr, access, exception);
Joerg Roedel6539e732010-09-10 17:30:50 +02003520}
3521
Xiao Guangrongd625b152015-08-05 12:04:25 +08003522static bool
3523__is_rsvd_bits_set(struct rsvd_bits_validate *rsvd_check, u64 pte, int level)
3524{
3525 int bit7 = (pte >> 7) & 1, low6 = pte & 0x3f;
3526
3527 return (pte & rsvd_check->rsvd_bits_mask[bit7][level-1]) |
3528 ((rsvd_check->bad_mt_xwr & (1ull << low6)) != 0);
3529}
3530
3531static bool is_rsvd_bits_set(struct kvm_mmu *mmu, u64 gpte, int level)
3532{
3533 return __is_rsvd_bits_set(&mmu->guest_rsvd_check, gpte, level);
3534}
3535
3536static bool is_shadow_zero_bits_set(struct kvm_mmu *mmu, u64 spte, int level)
3537{
3538 return __is_rsvd_bits_set(&mmu->shadow_zero_check, spte, level);
3539}
3540
Takuya Yoshikawaded58742016-02-22 17:23:40 +09003541static bool mmio_info_in_cache(struct kvm_vcpu *vcpu, u64 addr, bool direct)
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003542{
3543 if (direct)
3544 return vcpu_match_mmio_gpa(vcpu, addr);
3545
3546 return vcpu_match_mmio_gva(vcpu, addr);
3547}
3548
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003549/* return true if reserved bit is detected on spte. */
3550static bool
3551walk_shadow_page_get_mmio_spte(struct kvm_vcpu *vcpu, u64 addr, u64 *sptep)
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003552{
3553 struct kvm_shadow_walk_iterator iterator;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003554 u64 sptes[PT64_ROOT_LEVEL], spte = 0ull;
3555 int root, leaf;
3556 bool reserved = false;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003557
Marcelo Tosatti37f6a4e2014-01-03 17:09:32 -02003558 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003559 goto exit;
Marcelo Tosatti37f6a4e2014-01-03 17:09:32 -02003560
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003561 walk_shadow_page_lockless_begin(vcpu);
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003562
Paolo Bonzini29ecd662015-09-06 16:24:50 +02003563 for (shadow_walk_init(&iterator, vcpu, addr),
3564 leaf = root = iterator.level;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003565 shadow_walk_okay(&iterator);
3566 __shadow_walk_next(&iterator, spte)) {
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003567 spte = mmu_spte_get_lockless(iterator.sptep);
3568
3569 sptes[leaf - 1] = spte;
Paolo Bonzini29ecd662015-09-06 16:24:50 +02003570 leaf--;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003571
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003572 if (!is_shadow_present_pte(spte))
3573 break;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003574
3575 reserved |= is_shadow_zero_bits_set(&vcpu->arch.mmu, spte,
Paolo Bonzini58c95072015-09-22 10:15:59 +02003576 iterator.level);
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003577 }
3578
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003579 walk_shadow_page_lockless_end(vcpu);
3580
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003581 if (reserved) {
3582 pr_err("%s: detect reserved bits on spte, addr 0x%llx, dump hierarchy:\n",
3583 __func__, addr);
Paolo Bonzini29ecd662015-09-06 16:24:50 +02003584 while (root > leaf) {
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003585 pr_err("------ spte 0x%llx level %d.\n",
3586 sptes[root - 1], root);
3587 root--;
3588 }
3589 }
3590exit:
3591 *sptep = spte;
3592 return reserved;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003593}
3594
Paolo Bonzini450869d2015-11-04 13:41:21 +01003595int handle_mmio_page_fault(struct kvm_vcpu *vcpu, u64 addr, bool direct)
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003596{
3597 u64 spte;
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003598 bool reserved;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003599
Takuya Yoshikawaded58742016-02-22 17:23:40 +09003600 if (mmio_info_in_cache(vcpu, addr, direct))
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08003601 return RET_MMIO_PF_EMULATE;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003602
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003603 reserved = walk_shadow_page_get_mmio_spte(vcpu, addr, &spte);
Paolo Bonzini450869d2015-11-04 13:41:21 +01003604 if (WARN_ON(reserved))
Xiao Guangrong47ab8752015-08-05 12:04:26 +08003605 return RET_MMIO_PF_BUG;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003606
3607 if (is_mmio_spte(spte)) {
3608 gfn_t gfn = get_mmio_spte_gfn(spte);
3609 unsigned access = get_mmio_spte_access(spte);
3610
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003611 if (!check_mmio_spte(vcpu, spte))
Xiao Guangrongf8f55942013-06-07 16:51:26 +08003612 return RET_MMIO_PF_INVALID;
3613
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003614 if (direct)
3615 addr = 0;
Xiao Guangrong4f022642011-07-12 03:34:24 +08003616
3617 trace_handle_mmio_page_fault(addr, gfn, access);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003618 vcpu_cache_mmio_info(vcpu, addr, gfn, access);
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08003619 return RET_MMIO_PF_EMULATE;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003620 }
3621
3622 /*
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003623 * If the page table is zapped by other cpus, let CPU fault again on
3624 * the address.
3625 */
Xiao Guangrongb37fbea2013-06-07 16:51:25 +08003626 return RET_MMIO_PF_RETRY;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003627}
Paolo Bonzini450869d2015-11-04 13:41:21 +01003628EXPORT_SYMBOL_GPL(handle_mmio_page_fault);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003629
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08003630static bool page_fault_handle_page_track(struct kvm_vcpu *vcpu,
3631 u32 error_code, gfn_t gfn)
3632{
3633 if (unlikely(error_code & PFERR_RSVD_MASK))
3634 return false;
3635
3636 if (!(error_code & PFERR_PRESENT_MASK) ||
3637 !(error_code & PFERR_WRITE_MASK))
3638 return false;
3639
3640 /*
3641 * guest is writing the page which is write tracked which can
3642 * not be fixed by page fault handler.
3643 */
3644 if (kvm_page_track_is_active(vcpu, gfn, KVM_PAGE_TRACK_WRITE))
3645 return true;
3646
3647 return false;
3648}
3649
Xiao Guangronge5691a82016-02-24 17:51:12 +08003650static void shadow_page_table_clear_flood(struct kvm_vcpu *vcpu, gva_t addr)
3651{
3652 struct kvm_shadow_walk_iterator iterator;
3653 u64 spte;
3654
3655 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
3656 return;
3657
3658 walk_shadow_page_lockless_begin(vcpu);
3659 for_each_shadow_entry_lockless(vcpu, addr, iterator, spte) {
3660 clear_sp_write_flooding_count(iterator.sptep);
3661 if (!is_shadow_present_pte(spte))
3662 break;
3663 }
3664 walk_shadow_page_lockless_end(vcpu);
3665}
3666
Avi Kivity6aa8b732006-12-10 02:21:36 -08003667static int nonpaging_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003668 u32 error_code, bool prefault)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003669{
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08003670 gfn_t gfn = gva >> PAGE_SHIFT;
Avi Kivitye2dec932007-01-05 16:36:54 -08003671 int r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003672
Harvey Harrisonb8688d52008-03-03 12:59:56 -08003673 pgprintk("%s: gva %lx error %x\n", __func__, gva, error_code);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003674
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08003675 if (page_fault_handle_page_track(vcpu, error_code, gfn))
3676 return 1;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003677
Avi Kivitye2dec932007-01-05 16:36:54 -08003678 r = mmu_topup_memory_caches(vcpu);
3679 if (r)
3680 return r;
Avi Kivity714b93d2007-01-05 16:36:53 -08003681
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003682 MMU_WARN_ON(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity6aa8b732006-12-10 02:21:36 -08003683
Avi Kivity6aa8b732006-12-10 02:21:36 -08003684
Avi Kivitye8332402007-12-09 18:43:00 +02003685 return nonpaging_map(vcpu, gva & PAGE_MASK,
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003686 error_code, gfn, prefault);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003687}
3688
Jan Kiszka7e1fbea2010-10-20 15:18:02 +02003689static int kvm_arch_setup_async_pf(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn)
Gleb Natapovaf585b92010-10-14 11:22:46 +02003690{
3691 struct kvm_arch_async_pf arch;
Xiao Guangrongfb67e142010-12-07 10:35:25 +08003692
Gleb Natapov7c907052010-10-14 11:22:53 +02003693 arch.token = (vcpu->arch.apf.id++ << 12) | vcpu->vcpu_id;
Gleb Natapovaf585b92010-10-14 11:22:46 +02003694 arch.gfn = gfn;
Xiao Guangrongc4806ac2010-11-12 14:49:55 +08003695 arch.direct_map = vcpu->arch.mmu.direct_map;
Xiao Guangrongfb67e142010-12-07 10:35:25 +08003696 arch.cr3 = vcpu->arch.mmu.get_cr3(vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003697
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003698 return kvm_setup_async_pf(vcpu, gva, kvm_vcpu_gfn_to_hva(vcpu, gfn), &arch);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003699}
3700
Wanpeng Li9bc1f092017-06-08 20:13:40 -07003701bool kvm_can_do_async_pf(struct kvm_vcpu *vcpu)
Gleb Natapovaf585b92010-10-14 11:22:46 +02003702{
Paolo Bonzini35754c92015-07-29 12:05:37 +02003703 if (unlikely(!lapic_in_kernel(vcpu) ||
Gleb Natapovaf585b92010-10-14 11:22:46 +02003704 kvm_event_needs_reinjection(vcpu)))
3705 return false;
3706
Wanpeng Li9bc1f092017-06-08 20:13:40 -07003707 if (is_guest_mode(vcpu))
3708 return false;
3709
Gleb Natapovaf585b92010-10-14 11:22:46 +02003710 return kvm_x86_ops->interrupt_allowed(vcpu);
3711}
3712
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003713static bool try_async_pf(struct kvm_vcpu *vcpu, bool prefault, gfn_t gfn,
Dan Williamsba049e92016-01-15 16:56:11 -08003714 gva_t gva, kvm_pfn_t *pfn, bool write, bool *writable)
Gleb Natapovaf585b92010-10-14 11:22:46 +02003715{
Paolo Bonzini35204692015-04-02 11:20:48 +02003716 struct kvm_memory_slot *slot;
Gleb Natapovaf585b92010-10-14 11:22:46 +02003717 bool async;
3718
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003719 slot = kvm_vcpu_gfn_to_memslot(vcpu, gfn);
Paolo Bonzini35204692015-04-02 11:20:48 +02003720 async = false;
3721 *pfn = __gfn_to_pfn_memslot(slot, gfn, false, &async, write, writable);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003722 if (!async)
3723 return false; /* *pfn has correct page already */
3724
Wanpeng Li9bc1f092017-06-08 20:13:40 -07003725 if (!prefault && kvm_can_do_async_pf(vcpu)) {
Xiao Guangrongc9b263d2010-11-01 16:58:43 +08003726 trace_kvm_try_async_get_page(gva, gfn);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003727 if (kvm_find_async_pf_gfn(vcpu, gfn)) {
3728 trace_kvm_async_pf_doublefault(gva, gfn);
3729 kvm_make_request(KVM_REQ_APF_HALT, vcpu);
3730 return true;
3731 } else if (kvm_arch_setup_async_pf(vcpu, gva, gfn))
3732 return true;
3733 }
3734
Paolo Bonzini35204692015-04-02 11:20:48 +02003735 *pfn = __gfn_to_pfn_memslot(slot, gfn, false, NULL, write, writable);
Gleb Natapovaf585b92010-10-14 11:22:46 +02003736 return false;
3737}
3738
Xiao Guangrong6a39bbc2015-06-15 16:55:35 +08003739static bool
3740check_hugepage_cache_consistency(struct kvm_vcpu *vcpu, gfn_t gfn, int level)
3741{
3742 int page_num = KVM_PAGES_PER_HPAGE(level);
3743
3744 gfn &= ~(page_num - 1);
3745
3746 return kvm_mtrr_check_gfn_range_consistency(vcpu, gfn, page_num);
3747}
3748
Gleb Natapov56028d02010-10-17 18:13:42 +02003749static int tdp_page_fault(struct kvm_vcpu *vcpu, gva_t gpa, u32 error_code,
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003750 bool prefault)
Joerg Roedelfb72d162008-02-07 13:47:44 +01003751{
Dan Williamsba049e92016-01-15 16:56:11 -08003752 kvm_pfn_t pfn;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003753 int r;
Joerg Roedel852e3c12009-07-27 16:30:44 +02003754 int level;
Takuya Yoshikawacd1872f2015-10-16 17:04:13 +09003755 bool force_pt_level;
Marcelo Tosatti05da4552008-02-23 11:44:30 -03003756 gfn_t gfn = gpa >> PAGE_SHIFT;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003757 unsigned long mmu_seq;
Marcelo Tosatti612819c2010-10-22 14:18:18 -02003758 int write = error_code & PFERR_WRITE_MASK;
3759 bool map_writable;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003760
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02003761 MMU_WARN_ON(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
Joerg Roedelfb72d162008-02-07 13:47:44 +01003762
Xiao Guangrong3d0c27a2016-02-24 17:51:11 +08003763 if (page_fault_handle_page_track(vcpu, error_code, gfn))
3764 return 1;
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003765
Joerg Roedelfb72d162008-02-07 13:47:44 +01003766 r = mmu_topup_memory_caches(vcpu);
3767 if (r)
3768 return r;
3769
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003770 force_pt_level = !check_hugepage_cache_consistency(vcpu, gfn,
3771 PT_DIRECTORY_LEVEL);
3772 level = mapping_level(vcpu, gfn, &force_pt_level);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003773 if (likely(!force_pt_level)) {
Xiao Guangrong6a39bbc2015-06-15 16:55:35 +08003774 if (level > PT_DIRECTORY_LEVEL &&
3775 !check_hugepage_cache_consistency(vcpu, gfn, level))
3776 level = PT_DIRECTORY_LEVEL;
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003777 gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1);
Takuya Yoshikawafd136902015-10-16 17:06:02 +09003778 }
Joerg Roedel852e3c12009-07-27 16:30:44 +02003779
Xiao Guangrongc7ba5b42012-06-20 15:59:18 +08003780 if (fast_page_fault(vcpu, gpa, level, error_code))
3781 return 0;
3782
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003783 mmu_seq = vcpu->kvm->mmu_notifier_seq;
Marcelo Tosatti4c2155c2008-09-16 20:54:47 -03003784 smp_rmb();
Gleb Natapovaf585b92010-10-14 11:22:46 +02003785
Xiao Guangrong78b2c542010-12-07 10:48:06 +08003786 if (try_async_pf(vcpu, prefault, gfn, gpa, &pfn, write, &map_writable))
Gleb Natapovaf585b92010-10-14 11:22:46 +02003787 return 0;
3788
Xiao Guangrongd7c55202011-07-12 03:29:38 +08003789 if (handle_abnormal_pfn(vcpu, 0, gfn, pfn, ACC_ALL, &r))
3790 return r;
3791
Joerg Roedelfb72d162008-02-07 13:47:44 +01003792 spin_lock(&vcpu->kvm->mmu_lock);
Christoffer Dall8ca40a72012-10-14 23:10:18 -04003793 if (mmu_notifier_retry(vcpu->kvm, mmu_seq))
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003794 goto out_unlock;
Takuya Yoshikawa450e0b42013-03-29 14:05:26 +09003795 make_mmu_pages_available(vcpu);
Andrea Arcangeli936a5fe2011-01-13 15:46:48 -08003796 if (likely(!force_pt_level))
3797 transparent_hugepage_adjust(vcpu, &gfn, &pfn, &level);
Takuya Yoshikawa7ee0e5b2015-11-20 17:42:23 +09003798 r = __direct_map(vcpu, write, map_writable, level, gfn, pfn, prefault);
Joerg Roedelfb72d162008-02-07 13:47:44 +01003799 spin_unlock(&vcpu->kvm->mmu_lock);
Joerg Roedelfb72d162008-02-07 13:47:44 +01003800
3801 return r;
Andrea Arcangelie930bff2008-07-25 16:24:52 +02003802
3803out_unlock:
3804 spin_unlock(&vcpu->kvm->mmu_lock);
3805 kvm_release_pfn_clean(pfn);
3806 return 0;
Joerg Roedelfb72d162008-02-07 13:47:44 +01003807}
3808
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02003809static void nonpaging_init_context(struct kvm_vcpu *vcpu,
3810 struct kvm_mmu *context)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003811{
Avi Kivity6aa8b732006-12-10 02:21:36 -08003812 context->page_fault = nonpaging_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003813 context->gva_to_gpa = nonpaging_gva_to_gpa;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03003814 context->sync_page = nonpaging_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03003815 context->invlpg = nonpaging_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08003816 context->update_pte = nonpaging_update_pte;
Avi Kivitycea0f0e2007-01-05 16:36:43 -08003817 context->root_level = 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003818 context->shadow_root_level = PT32E_ROOT_LEVEL;
Avi Kivity17c3ba92007-06-04 15:58:30 +03003819 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02003820 context->direct_map = true;
Joerg Roedel2d48a982010-09-10 17:31:01 +02003821 context->nx = false;
Avi Kivity6aa8b732006-12-10 02:21:36 -08003822}
3823
Paolo Bonzinid8d173d2013-10-02 16:56:11 +02003824void kvm_mmu_new_cr3(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003825{
Avi Kivitycea0f0e2007-01-05 16:36:43 -08003826 mmu_free_roots(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003827}
3828
Joerg Roedel5777ed32010-09-10 17:30:42 +02003829static unsigned long get_cr3(struct kvm_vcpu *vcpu)
3830{
Avi Kivity9f8fe502010-12-05 17:30:00 +02003831 return kvm_read_cr3(vcpu);
Joerg Roedel5777ed32010-09-10 17:30:42 +02003832}
3833
Avi Kivity6389ee92010-11-29 16:12:30 +02003834static void inject_page_fault(struct kvm_vcpu *vcpu,
3835 struct x86_exception *fault)
Avi Kivity6aa8b732006-12-10 02:21:36 -08003836{
Avi Kivity6389ee92010-11-29 16:12:30 +02003837 vcpu->arch.mmu.inject_page_fault(vcpu, fault);
Avi Kivity6aa8b732006-12-10 02:21:36 -08003838}
3839
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003840static bool sync_mmio_spte(struct kvm_vcpu *vcpu, u64 *sptep, gfn_t gfn,
Xiao Guangrongf2fd1252013-06-07 16:51:24 +08003841 unsigned access, int *nr_present)
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003842{
3843 if (unlikely(is_mmio_spte(*sptep))) {
3844 if (gfn != get_mmio_spte_gfn(*sptep)) {
3845 mmu_spte_clear_no_track(sptep);
3846 return true;
3847 }
3848
3849 (*nr_present)++;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02003850 mark_mmio_spte(vcpu, sptep, gfn, access);
Xiao Guangrongce88dec2011-07-12 03:33:44 +08003851 return true;
3852 }
3853
3854 return false;
3855}
3856
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01003857static inline bool is_last_gpte(struct kvm_mmu *mmu,
3858 unsigned level, unsigned gpte)
Avi Kivity6fd01b72012-09-12 20:46:56 +03003859{
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01003860 /*
3861 * PT_PAGE_TABLE_LEVEL always terminates. The RHS has bit 7 set
3862 * iff level <= PT_PAGE_TABLE_LEVEL, which for our purpose means
3863 * level == PT_PAGE_TABLE_LEVEL; set PT_PAGE_SIZE_MASK in gpte then.
3864 */
3865 gpte |= level - PT_PAGE_TABLE_LEVEL - 1;
Avi Kivity6fd01b72012-09-12 20:46:56 +03003866
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01003867 /*
3868 * The RHS has bit 7 set iff level < mmu->last_nonleaf_level.
3869 * If it is clear, there are no large pages at this level, so clear
3870 * PT_PAGE_SIZE_MASK in gpte if that is the case.
3871 */
3872 gpte &= level - mmu->last_nonleaf_level;
3873
3874 return gpte & PT_PAGE_SIZE_MASK;
Avi Kivity6fd01b72012-09-12 20:46:56 +03003875}
3876
Nadav Har'El37406aa2013-08-05 11:07:12 +03003877#define PTTYPE_EPT 18 /* arbitrary */
3878#define PTTYPE PTTYPE_EPT
3879#include "paging_tmpl.h"
3880#undef PTTYPE
3881
Avi Kivity6aa8b732006-12-10 02:21:36 -08003882#define PTTYPE 64
3883#include "paging_tmpl.h"
3884#undef PTTYPE
3885
3886#define PTTYPE 32
3887#include "paging_tmpl.h"
3888#undef PTTYPE
3889
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003890static void
3891__reset_rsvds_bits_mask(struct kvm_vcpu *vcpu,
3892 struct rsvd_bits_validate *rsvd_check,
3893 int maxphyaddr, int level, bool nx, bool gbpages,
Paolo Bonzini6fec2142015-09-22 23:02:14 +02003894 bool pse, bool amd)
Dong, Eddie82725b22009-03-30 16:21:08 +08003895{
Dong, Eddie82725b22009-03-30 16:21:08 +08003896 u64 exb_bit_rsvd = 0;
Nadav Amit5f7dde72014-05-07 15:32:50 +03003897 u64 gbpages_bit_rsvd = 0;
Paolo Bonzinia0c0feb2014-09-02 13:24:12 +02003898 u64 nonleaf_bit8_rsvd = 0;
Dong, Eddie82725b22009-03-30 16:21:08 +08003899
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003900 rsvd_check->bad_mt_xwr = 0;
Yang Zhang25d92082013-08-06 12:00:32 +03003901
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003902 if (!nx)
Dong, Eddie82725b22009-03-30 16:21:08 +08003903 exb_bit_rsvd = rsvd_bits(63, 63);
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003904 if (!gbpages)
Nadav Amit5f7dde72014-05-07 15:32:50 +03003905 gbpages_bit_rsvd = rsvd_bits(7, 7);
Paolo Bonzinia0c0feb2014-09-02 13:24:12 +02003906
3907 /*
3908 * Non-leaf PML4Es and PDPEs reserve bit 8 (which would be the G bit for
3909 * leaf entries) on AMD CPUs only.
3910 */
Paolo Bonzini6fec2142015-09-22 23:02:14 +02003911 if (amd)
Paolo Bonzinia0c0feb2014-09-02 13:24:12 +02003912 nonleaf_bit8_rsvd = rsvd_bits(8, 8);
3913
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003914 switch (level) {
Dong, Eddie82725b22009-03-30 16:21:08 +08003915 case PT32_ROOT_LEVEL:
3916 /* no rsvd bits for 2 level 4K page table entries */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003917 rsvd_check->rsvd_bits_mask[0][1] = 0;
3918 rsvd_check->rsvd_bits_mask[0][0] = 0;
3919 rsvd_check->rsvd_bits_mask[1][0] =
3920 rsvd_check->rsvd_bits_mask[0][0];
Xiao Guangrongf815bce2010-03-19 17:58:53 +08003921
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003922 if (!pse) {
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003923 rsvd_check->rsvd_bits_mask[1][1] = 0;
Xiao Guangrongf815bce2010-03-19 17:58:53 +08003924 break;
3925 }
3926
Dong, Eddie82725b22009-03-30 16:21:08 +08003927 if (is_cpuid_PSE36())
3928 /* 36bits PSE 4MB page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003929 rsvd_check->rsvd_bits_mask[1][1] = rsvd_bits(17, 21);
Dong, Eddie82725b22009-03-30 16:21:08 +08003930 else
3931 /* 32 bits PSE 4MB page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003932 rsvd_check->rsvd_bits_mask[1][1] = rsvd_bits(13, 21);
Dong, Eddie82725b22009-03-30 16:21:08 +08003933 break;
3934 case PT32E_ROOT_LEVEL:
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003935 rsvd_check->rsvd_bits_mask[0][2] =
Dong, Eddie20c466b2009-03-31 23:03:45 +08003936 rsvd_bits(maxphyaddr, 63) |
Nadav Amitcd9ae5f2014-04-04 06:31:04 +03003937 rsvd_bits(5, 8) | rsvd_bits(1, 2); /* PDPTE */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003938 rsvd_check->rsvd_bits_mask[0][1] = exb_bit_rsvd |
Sheng Yang4c26b4c2009-04-02 10:28:37 +08003939 rsvd_bits(maxphyaddr, 62); /* PDE */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003940 rsvd_check->rsvd_bits_mask[0][0] = exb_bit_rsvd |
Dong, Eddie82725b22009-03-30 16:21:08 +08003941 rsvd_bits(maxphyaddr, 62); /* PTE */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003942 rsvd_check->rsvd_bits_mask[1][1] = exb_bit_rsvd |
Dong, Eddie82725b22009-03-30 16:21:08 +08003943 rsvd_bits(maxphyaddr, 62) |
3944 rsvd_bits(13, 20); /* large page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003945 rsvd_check->rsvd_bits_mask[1][0] =
3946 rsvd_check->rsvd_bits_mask[0][0];
Dong, Eddie82725b22009-03-30 16:21:08 +08003947 break;
3948 case PT64_ROOT_LEVEL:
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003949 rsvd_check->rsvd_bits_mask[0][3] = exb_bit_rsvd |
3950 nonleaf_bit8_rsvd | rsvd_bits(7, 7) |
Sheng Yang4c26b4c2009-04-02 10:28:37 +08003951 rsvd_bits(maxphyaddr, 51);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003952 rsvd_check->rsvd_bits_mask[0][2] = exb_bit_rsvd |
3953 nonleaf_bit8_rsvd | gbpages_bit_rsvd |
Dong, Eddie82725b22009-03-30 16:21:08 +08003954 rsvd_bits(maxphyaddr, 51);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003955 rsvd_check->rsvd_bits_mask[0][1] = exb_bit_rsvd |
3956 rsvd_bits(maxphyaddr, 51);
3957 rsvd_check->rsvd_bits_mask[0][0] = exb_bit_rsvd |
3958 rsvd_bits(maxphyaddr, 51);
3959 rsvd_check->rsvd_bits_mask[1][3] =
3960 rsvd_check->rsvd_bits_mask[0][3];
3961 rsvd_check->rsvd_bits_mask[1][2] = exb_bit_rsvd |
Nadav Amit5f7dde72014-05-07 15:32:50 +03003962 gbpages_bit_rsvd | rsvd_bits(maxphyaddr, 51) |
Joerg Roedele04da982009-07-27 16:30:45 +02003963 rsvd_bits(13, 29);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003964 rsvd_check->rsvd_bits_mask[1][1] = exb_bit_rsvd |
Sheng Yang4c26b4c2009-04-02 10:28:37 +08003965 rsvd_bits(maxphyaddr, 51) |
3966 rsvd_bits(13, 20); /* large page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003967 rsvd_check->rsvd_bits_mask[1][0] =
3968 rsvd_check->rsvd_bits_mask[0][0];
Dong, Eddie82725b22009-03-30 16:21:08 +08003969 break;
3970 }
3971}
3972
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003973static void reset_rsvds_bits_mask(struct kvm_vcpu *vcpu,
3974 struct kvm_mmu *context)
3975{
3976 __reset_rsvds_bits_mask(vcpu, &context->guest_rsvd_check,
3977 cpuid_maxphyaddr(vcpu), context->root_level,
3978 context->nx, guest_cpuid_has_gbpages(vcpu),
Paolo Bonzini6fec2142015-09-22 23:02:14 +02003979 is_pse(vcpu), guest_cpuid_is_amd(vcpu));
Xiao Guangrong6dc98b82015-08-05 12:04:22 +08003980}
3981
Xiao Guangrong81b8eeb2015-08-05 12:04:23 +08003982static void
3983__reset_rsvds_bits_mask_ept(struct rsvd_bits_validate *rsvd_check,
3984 int maxphyaddr, bool execonly)
Yang Zhang25d92082013-08-06 12:00:32 +03003985{
Paolo Bonzini951f9fd2015-09-23 10:34:26 +02003986 u64 bad_mt_xwr;
Yang Zhang25d92082013-08-06 12:00:32 +03003987
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003988 rsvd_check->rsvd_bits_mask[0][3] =
Yang Zhang25d92082013-08-06 12:00:32 +03003989 rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 7);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003990 rsvd_check->rsvd_bits_mask[0][2] =
Yang Zhang25d92082013-08-06 12:00:32 +03003991 rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 6);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003992 rsvd_check->rsvd_bits_mask[0][1] =
Yang Zhang25d92082013-08-06 12:00:32 +03003993 rsvd_bits(maxphyaddr, 51) | rsvd_bits(3, 6);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003994 rsvd_check->rsvd_bits_mask[0][0] = rsvd_bits(maxphyaddr, 51);
Yang Zhang25d92082013-08-06 12:00:32 +03003995
3996 /* large page */
Xiao Guangronga0a64f52015-08-05 12:04:21 +08003997 rsvd_check->rsvd_bits_mask[1][3] = rsvd_check->rsvd_bits_mask[0][3];
3998 rsvd_check->rsvd_bits_mask[1][2] =
Yang Zhang25d92082013-08-06 12:00:32 +03003999 rsvd_bits(maxphyaddr, 51) | rsvd_bits(12, 29);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004000 rsvd_check->rsvd_bits_mask[1][1] =
Yang Zhang25d92082013-08-06 12:00:32 +03004001 rsvd_bits(maxphyaddr, 51) | rsvd_bits(12, 20);
Xiao Guangronga0a64f52015-08-05 12:04:21 +08004002 rsvd_check->rsvd_bits_mask[1][0] = rsvd_check->rsvd_bits_mask[0][0];
Yang Zhang25d92082013-08-06 12:00:32 +03004003
Paolo Bonzini951f9fd2015-09-23 10:34:26 +02004004 bad_mt_xwr = 0xFFull << (2 * 8); /* bits 3..5 must not be 2 */
4005 bad_mt_xwr |= 0xFFull << (3 * 8); /* bits 3..5 must not be 3 */
4006 bad_mt_xwr |= 0xFFull << (7 * 8); /* bits 3..5 must not be 7 */
4007 bad_mt_xwr |= REPEAT_BYTE(1ull << 2); /* bits 0..2 must not be 010 */
4008 bad_mt_xwr |= REPEAT_BYTE(1ull << 6); /* bits 0..2 must not be 110 */
4009 if (!execonly) {
4010 /* bits 0..2 must not be 100 unless VMX capabilities allow it */
4011 bad_mt_xwr |= REPEAT_BYTE(1ull << 4);
Yang Zhang25d92082013-08-06 12:00:32 +03004012 }
Paolo Bonzini951f9fd2015-09-23 10:34:26 +02004013 rsvd_check->bad_mt_xwr = bad_mt_xwr;
Yang Zhang25d92082013-08-06 12:00:32 +03004014}
4015
Xiao Guangrong81b8eeb2015-08-05 12:04:23 +08004016static void reset_rsvds_bits_mask_ept(struct kvm_vcpu *vcpu,
4017 struct kvm_mmu *context, bool execonly)
4018{
4019 __reset_rsvds_bits_mask_ept(&context->guest_rsvd_check,
4020 cpuid_maxphyaddr(vcpu), execonly);
4021}
4022
Xiao Guangrongc258b622015-08-05 12:04:24 +08004023/*
4024 * the page table on host is the shadow page table for the page
4025 * table in guest or amd nested guest, its mmu features completely
4026 * follow the features in guest.
4027 */
4028void
4029reset_shadow_zero_bits_mask(struct kvm_vcpu *vcpu, struct kvm_mmu *context)
4030{
Paolo Bonzini5f0b8192016-03-09 14:28:02 +01004031 bool uses_nx = context->nx || context->base_role.smep_andnot_wp;
4032
Paolo Bonzini6fec2142015-09-22 23:02:14 +02004033 /*
4034 * Passing "true" to the last argument is okay; it adds a check
4035 * on bit 8 of the SPTEs which KVM doesn't use anyway.
4036 */
Xiao Guangrongc258b622015-08-05 12:04:24 +08004037 __reset_rsvds_bits_mask(vcpu, &context->shadow_zero_check,
4038 boot_cpu_data.x86_phys_bits,
Paolo Bonzini5f0b8192016-03-09 14:28:02 +01004039 context->shadow_root_level, uses_nx,
Paolo Bonzini6fec2142015-09-22 23:02:14 +02004040 guest_cpuid_has_gbpages(vcpu), is_pse(vcpu),
4041 true);
Xiao Guangrongc258b622015-08-05 12:04:24 +08004042}
4043EXPORT_SYMBOL_GPL(reset_shadow_zero_bits_mask);
4044
Paolo Bonzini6fec2142015-09-22 23:02:14 +02004045static inline bool boot_cpu_is_amd(void)
4046{
4047 WARN_ON_ONCE(!tdp_enabled);
4048 return shadow_x_mask == 0;
4049}
4050
Xiao Guangrongc258b622015-08-05 12:04:24 +08004051/*
4052 * the direct page table on host, use as much mmu features as
4053 * possible, however, kvm currently does not do execution-protection.
4054 */
4055static void
4056reset_tdp_shadow_zero_bits_mask(struct kvm_vcpu *vcpu,
4057 struct kvm_mmu *context)
4058{
Paolo Bonzini6fec2142015-09-22 23:02:14 +02004059 if (boot_cpu_is_amd())
Xiao Guangrongc258b622015-08-05 12:04:24 +08004060 __reset_rsvds_bits_mask(vcpu, &context->shadow_zero_check,
4061 boot_cpu_data.x86_phys_bits,
4062 context->shadow_root_level, false,
Borislav Petkovb8291adc2016-03-29 17:41:58 +02004063 boot_cpu_has(X86_FEATURE_GBPAGES),
4064 true, true);
Xiao Guangrongc258b622015-08-05 12:04:24 +08004065 else
4066 __reset_rsvds_bits_mask_ept(&context->shadow_zero_check,
4067 boot_cpu_data.x86_phys_bits,
4068 false);
4069
4070}
4071
4072/*
4073 * as the comments in reset_shadow_zero_bits_mask() except it
4074 * is the shadow page table for intel nested guest.
4075 */
4076static void
4077reset_ept_shadow_zero_bits_mask(struct kvm_vcpu *vcpu,
4078 struct kvm_mmu *context, bool execonly)
4079{
4080 __reset_rsvds_bits_mask_ept(&context->shadow_zero_check,
4081 boot_cpu_data.x86_phys_bits, execonly);
4082}
4083
Xiao Guangrongedc90b72015-05-11 22:55:21 +08004084static void update_permission_bitmask(struct kvm_vcpu *vcpu,
4085 struct kvm_mmu *mmu, bool ept)
Avi Kivity97d64b72012-09-12 14:52:00 +03004086{
4087 unsigned bit, byte, pfec;
4088 u8 map;
Feng Wu66386ad2014-04-01 17:56:48 +08004089 bool fault, x, w, u, wf, uf, ff, smapf, cr4_smap, cr4_smep, smap = 0;
Avi Kivity97d64b72012-09-12 14:52:00 +03004090
Feng Wu66386ad2014-04-01 17:56:48 +08004091 cr4_smep = kvm_read_cr4_bits(vcpu, X86_CR4_SMEP);
Feng Wu97ec8c02014-04-01 17:46:34 +08004092 cr4_smap = kvm_read_cr4_bits(vcpu, X86_CR4_SMAP);
Avi Kivity97d64b72012-09-12 14:52:00 +03004093 for (byte = 0; byte < ARRAY_SIZE(mmu->permissions); ++byte) {
4094 pfec = byte << 1;
4095 map = 0;
4096 wf = pfec & PFERR_WRITE_MASK;
4097 uf = pfec & PFERR_USER_MASK;
4098 ff = pfec & PFERR_FETCH_MASK;
Feng Wu97ec8c02014-04-01 17:46:34 +08004099 /*
4100 * PFERR_RSVD_MASK bit is set in PFEC if the access is not
4101 * subject to SMAP restrictions, and cleared otherwise. The
4102 * bit is only meaningful if the SMAP bit is set in CR4.
4103 */
4104 smapf = !(pfec & PFERR_RSVD_MASK);
Avi Kivity97d64b72012-09-12 14:52:00 +03004105 for (bit = 0; bit < 8; ++bit) {
4106 x = bit & ACC_EXEC_MASK;
4107 w = bit & ACC_WRITE_MASK;
4108 u = bit & ACC_USER_MASK;
4109
Yang Zhang25d92082013-08-06 12:00:32 +03004110 if (!ept) {
4111 /* Not really needed: !nx will cause pte.nx to fault */
4112 x |= !mmu->nx;
4113 /* Allow supervisor writes if !cr0.wp */
4114 w |= !is_write_protection(vcpu) && !uf;
4115 /* Disallow supervisor fetches of user code if cr4.smep */
Feng Wu66386ad2014-04-01 17:56:48 +08004116 x &= !(cr4_smep && u && !uf);
Feng Wu97ec8c02014-04-01 17:46:34 +08004117
4118 /*
4119 * SMAP:kernel-mode data accesses from user-mode
4120 * mappings should fault. A fault is considered
4121 * as a SMAP violation if all of the following
4122 * conditions are ture:
4123 * - X86_CR4_SMAP is set in CR4
Masahiro Yamada9332ef92017-02-27 14:28:47 -08004124 * - A user page is accessed
Feng Wu97ec8c02014-04-01 17:46:34 +08004125 * - Page fault in kernel mode
4126 * - if CPL = 3 or X86_EFLAGS_AC is clear
4127 *
4128 * Here, we cover the first three conditions.
4129 * The fourth is computed dynamically in
4130 * permission_fault() and is in smapf.
4131 *
4132 * Also, SMAP does not affect instruction
4133 * fetches, add the !ff check here to make it
4134 * clearer.
4135 */
4136 smap = cr4_smap && u && !uf && !ff;
Bandan Dasd95c5562016-07-12 18:18:51 -04004137 }
Avi Kivity97d64b72012-09-12 14:52:00 +03004138
Feng Wu97ec8c02014-04-01 17:46:34 +08004139 fault = (ff && !x) || (uf && !u) || (wf && !w) ||
4140 (smapf && smap);
Avi Kivity97d64b72012-09-12 14:52:00 +03004141 map |= fault << bit;
4142 }
4143 mmu->permissions[byte] = map;
4144 }
4145}
4146
Huaitong Han2d344102016-03-22 16:51:19 +08004147/*
4148* PKU is an additional mechanism by which the paging controls access to
4149* user-mode addresses based on the value in the PKRU register. Protection
4150* key violations are reported through a bit in the page fault error code.
4151* Unlike other bits of the error code, the PK bit is not known at the
4152* call site of e.g. gva_to_gpa; it must be computed directly in
4153* permission_fault based on two bits of PKRU, on some machine state (CR4,
4154* CR0, EFER, CPL), and on other bits of the error code and the page tables.
4155*
4156* In particular the following conditions come from the error code, the
4157* page tables and the machine state:
4158* - PK is always zero unless CR4.PKE=1 and EFER.LMA=1
4159* - PK is always zero if RSVD=1 (reserved bit set) or F=1 (instruction fetch)
4160* - PK is always zero if U=0 in the page tables
4161* - PKRU.WD is ignored if CR0.WP=0 and the access is a supervisor access.
4162*
4163* The PKRU bitmask caches the result of these four conditions. The error
4164* code (minus the P bit) and the page table's U bit form an index into the
4165* PKRU bitmask. Two bits of the PKRU bitmask are then extracted and ANDed
4166* with the two bits of the PKRU register corresponding to the protection key.
4167* For the first three conditions above the bits will be 00, thus masking
4168* away both AD and WD. For all reads or if the last condition holds, WD
4169* only will be masked away.
4170*/
4171static void update_pkru_bitmask(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu,
4172 bool ept)
4173{
4174 unsigned bit;
4175 bool wp;
4176
4177 if (ept) {
4178 mmu->pkru_mask = 0;
4179 return;
4180 }
4181
4182 /* PKEY is enabled only if CR4.PKE and EFER.LMA are both set. */
4183 if (!kvm_read_cr4_bits(vcpu, X86_CR4_PKE) || !is_long_mode(vcpu)) {
4184 mmu->pkru_mask = 0;
4185 return;
4186 }
4187
4188 wp = is_write_protection(vcpu);
4189
4190 for (bit = 0; bit < ARRAY_SIZE(mmu->permissions); ++bit) {
4191 unsigned pfec, pkey_bits;
4192 bool check_pkey, check_write, ff, uf, wf, pte_user;
4193
4194 pfec = bit << 1;
4195 ff = pfec & PFERR_FETCH_MASK;
4196 uf = pfec & PFERR_USER_MASK;
4197 wf = pfec & PFERR_WRITE_MASK;
4198
4199 /* PFEC.RSVD is replaced by ACC_USER_MASK. */
4200 pte_user = pfec & PFERR_RSVD_MASK;
4201
4202 /*
4203 * Only need to check the access which is not an
4204 * instruction fetch and is to a user page.
4205 */
4206 check_pkey = (!ff && pte_user);
4207 /*
4208 * write access is controlled by PKRU if it is a
4209 * user access or CR0.WP = 1.
4210 */
4211 check_write = check_pkey && wf && (uf || wp);
4212
4213 /* PKRU.AD stops both read and write access. */
4214 pkey_bits = !!check_pkey;
4215 /* PKRU.WD stops write access. */
4216 pkey_bits |= (!!check_write) << 1;
4217
4218 mmu->pkru_mask |= (pkey_bits & 3) << pfec;
4219 }
4220}
4221
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004222static void update_last_nonleaf_level(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu)
Avi Kivity6fd01b72012-09-12 20:46:56 +03004223{
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004224 unsigned root_level = mmu->root_level;
Avi Kivity6fd01b72012-09-12 20:46:56 +03004225
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004226 mmu->last_nonleaf_level = root_level;
4227 if (root_level == PT32_ROOT_LEVEL && is_pse(vcpu))
4228 mmu->last_nonleaf_level++;
Avi Kivity6fd01b72012-09-12 20:46:56 +03004229}
4230
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004231static void paging64_init_context_common(struct kvm_vcpu *vcpu,
4232 struct kvm_mmu *context,
4233 int level)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004234{
Joerg Roedel2d48a982010-09-10 17:31:01 +02004235 context->nx = is_nx(vcpu);
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004236 context->root_level = level;
Joerg Roedel2d48a982010-09-10 17:31:01 +02004237
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004238 reset_rsvds_bits_mask(vcpu, context);
Yang Zhang25d92082013-08-06 12:00:32 +03004239 update_permission_bitmask(vcpu, context, false);
Huaitong Han2d344102016-03-22 16:51:19 +08004240 update_pkru_bitmask(vcpu, context, false);
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004241 update_last_nonleaf_level(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004242
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02004243 MMU_WARN_ON(!is_pae(vcpu));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004244 context->page_fault = paging64_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004245 context->gva_to_gpa = paging64_gva_to_gpa;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03004246 context->sync_page = paging64_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03004247 context->invlpg = paging64_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08004248 context->update_pte = paging64_update_pte;
Avi Kivity17ac10a2007-01-05 16:36:40 -08004249 context->shadow_root_level = level;
Avi Kivity17c3ba92007-06-04 15:58:30 +03004250 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02004251 context->direct_map = false;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004252}
4253
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004254static void paging64_init_context(struct kvm_vcpu *vcpu,
4255 struct kvm_mmu *context)
Avi Kivity17ac10a2007-01-05 16:36:40 -08004256{
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004257 paging64_init_context_common(vcpu, context, PT64_ROOT_LEVEL);
Avi Kivity17ac10a2007-01-05 16:36:40 -08004258}
4259
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004260static void paging32_init_context(struct kvm_vcpu *vcpu,
4261 struct kvm_mmu *context)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004262{
Joerg Roedel2d48a982010-09-10 17:31:01 +02004263 context->nx = false;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004264 context->root_level = PT32_ROOT_LEVEL;
Joerg Roedel2d48a982010-09-10 17:31:01 +02004265
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004266 reset_rsvds_bits_mask(vcpu, context);
Yang Zhang25d92082013-08-06 12:00:32 +03004267 update_permission_bitmask(vcpu, context, false);
Huaitong Han2d344102016-03-22 16:51:19 +08004268 update_pkru_bitmask(vcpu, context, false);
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004269 update_last_nonleaf_level(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004270
Avi Kivity6aa8b732006-12-10 02:21:36 -08004271 context->page_fault = paging32_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004272 context->gva_to_gpa = paging32_gva_to_gpa;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03004273 context->sync_page = paging32_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03004274 context->invlpg = paging32_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08004275 context->update_pte = paging32_update_pte;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004276 context->shadow_root_level = PT32E_ROOT_LEVEL;
Avi Kivity17c3ba92007-06-04 15:58:30 +03004277 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02004278 context->direct_map = false;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004279}
4280
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004281static void paging32E_init_context(struct kvm_vcpu *vcpu,
4282 struct kvm_mmu *context)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004283{
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004284 paging64_init_context_common(vcpu, context, PT32E_ROOT_LEVEL);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004285}
4286
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004287static void init_kvm_tdp_mmu(struct kvm_vcpu *vcpu)
Joerg Roedelfb72d162008-02-07 13:47:44 +01004288{
Paolo Bonziniad896af2013-10-02 16:56:14 +02004289 struct kvm_mmu *context = &vcpu->arch.mmu;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004290
Avi Kivityc445f8e2010-12-21 16:26:01 +02004291 context->base_role.word = 0;
Paolo Bonzini699023e2015-05-18 15:03:39 +02004292 context->base_role.smm = is_smm(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004293 context->page_fault = tdp_page_fault;
Marcelo Tosattie8bc2172008-09-23 13:18:33 -03004294 context->sync_page = nonpaging_sync_page;
Marcelo Tosattia7052892008-09-23 13:18:35 -03004295 context->invlpg = nonpaging_invlpg;
Xiao Guangrong0f53b5b2011-03-09 15:43:51 +08004296 context->update_pte = nonpaging_update_pte;
Sheng Yang67253af2008-04-25 10:20:22 +08004297 context->shadow_root_level = kvm_x86_ops->get_tdp_level();
Joerg Roedelfb72d162008-02-07 13:47:44 +01004298 context->root_hpa = INVALID_PAGE;
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02004299 context->direct_map = true;
Joerg Roedel1c97f0a2010-09-10 17:30:41 +02004300 context->set_cr3 = kvm_x86_ops->set_tdp_cr3;
Joerg Roedel5777ed32010-09-10 17:30:42 +02004301 context->get_cr3 = get_cr3;
Avi Kivitye4e517b2011-07-28 11:36:17 +03004302 context->get_pdptr = kvm_pdptr_read;
Joerg Roedelcb659db2010-09-10 17:30:43 +02004303 context->inject_page_fault = kvm_inject_page_fault;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004304
4305 if (!is_paging(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004306 context->nx = false;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004307 context->gva_to_gpa = nonpaging_gva_to_gpa;
4308 context->root_level = 0;
4309 } else if (is_long_mode(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004310 context->nx = is_nx(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004311 context->root_level = PT64_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004312 reset_rsvds_bits_mask(vcpu, context);
4313 context->gva_to_gpa = paging64_gva_to_gpa;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004314 } else if (is_pae(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004315 context->nx = is_nx(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004316 context->root_level = PT32E_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004317 reset_rsvds_bits_mask(vcpu, context);
4318 context->gva_to_gpa = paging64_gva_to_gpa;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004319 } else {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004320 context->nx = false;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004321 context->root_level = PT32_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004322 reset_rsvds_bits_mask(vcpu, context);
4323 context->gva_to_gpa = paging32_gva_to_gpa;
Joerg Roedelfb72d162008-02-07 13:47:44 +01004324 }
4325
Yang Zhang25d92082013-08-06 12:00:32 +03004326 update_permission_bitmask(vcpu, context, false);
Huaitong Han2d344102016-03-22 16:51:19 +08004327 update_pkru_bitmask(vcpu, context, false);
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004328 update_last_nonleaf_level(vcpu, context);
Xiao Guangrongc258b622015-08-05 12:04:24 +08004329 reset_tdp_shadow_zero_bits_mask(vcpu, context);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004330}
4331
Paolo Bonziniad896af2013-10-02 16:56:14 +02004332void kvm_init_shadow_mmu(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004333{
Avi Kivity411c5882011-06-06 16:11:54 +03004334 bool smep = kvm_read_cr4_bits(vcpu, X86_CR4_SMEP);
Xiao Guangrongedc90b72015-05-11 22:55:21 +08004335 bool smap = kvm_read_cr4_bits(vcpu, X86_CR4_SMAP);
Paolo Bonziniad896af2013-10-02 16:56:14 +02004336 struct kvm_mmu *context = &vcpu->arch.mmu;
4337
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02004338 MMU_WARN_ON(VALID_PAGE(context->root_hpa));
Avi Kivity6aa8b732006-12-10 02:21:36 -08004339
4340 if (!is_paging(vcpu))
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004341 nonpaging_init_context(vcpu, context);
Avi Kivitya9058ec2006-12-29 16:49:37 -08004342 else if (is_long_mode(vcpu))
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004343 paging64_init_context(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004344 else if (is_pae(vcpu))
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004345 paging32E_init_context(vcpu, context);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004346 else
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004347 paging32_init_context(vcpu, context);
Avi Kivitya770f6f2008-12-21 19:20:09 +02004348
Paolo Bonziniad896af2013-10-02 16:56:14 +02004349 context->base_role.nxe = is_nx(vcpu);
4350 context->base_role.cr4_pae = !!is_pae(vcpu);
4351 context->base_role.cr0_wp = is_write_protection(vcpu);
4352 context->base_role.smep_andnot_wp
Avi Kivity411c5882011-06-06 16:11:54 +03004353 = smep && !is_write_protection(vcpu);
Xiao Guangrongedc90b72015-05-11 22:55:21 +08004354 context->base_role.smap_andnot_wp
4355 = smap && !is_write_protection(vcpu);
Paolo Bonzini699023e2015-05-18 15:03:39 +02004356 context->base_role.smm = is_smm(vcpu);
Xiao Guangrongc258b622015-08-05 12:04:24 +08004357 reset_shadow_zero_bits_mask(vcpu, context);
Joerg Roedel52fde8d2010-09-10 17:30:44 +02004358}
4359EXPORT_SYMBOL_GPL(kvm_init_shadow_mmu);
4360
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02004361void kvm_init_shadow_ept_mmu(struct kvm_vcpu *vcpu, bool execonly,
4362 bool accessed_dirty)
Nadav Har'El155a97a2013-08-05 11:07:16 +03004363{
Paolo Bonziniad896af2013-10-02 16:56:14 +02004364 struct kvm_mmu *context = &vcpu->arch.mmu;
4365
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02004366 MMU_WARN_ON(VALID_PAGE(context->root_hpa));
Nadav Har'El155a97a2013-08-05 11:07:16 +03004367
4368 context->shadow_root_level = kvm_x86_ops->get_tdp_level();
4369
4370 context->nx = true;
Paolo Bonziniae1e2d12017-03-30 11:55:30 +02004371 context->ept_ad = accessed_dirty;
Nadav Har'El155a97a2013-08-05 11:07:16 +03004372 context->page_fault = ept_page_fault;
4373 context->gva_to_gpa = ept_gva_to_gpa;
4374 context->sync_page = ept_sync_page;
4375 context->invlpg = ept_invlpg;
4376 context->update_pte = ept_update_pte;
Nadav Har'El155a97a2013-08-05 11:07:16 +03004377 context->root_level = context->shadow_root_level;
4378 context->root_hpa = INVALID_PAGE;
4379 context->direct_map = false;
4380
4381 update_permission_bitmask(vcpu, context, true);
Huaitong Han2d344102016-03-22 16:51:19 +08004382 update_pkru_bitmask(vcpu, context, true);
Nadav Har'El155a97a2013-08-05 11:07:16 +03004383 reset_rsvds_bits_mask_ept(vcpu, context, execonly);
Xiao Guangrongc258b622015-08-05 12:04:24 +08004384 reset_ept_shadow_zero_bits_mask(vcpu, context, execonly);
Nadav Har'El155a97a2013-08-05 11:07:16 +03004385}
4386EXPORT_SYMBOL_GPL(kvm_init_shadow_ept_mmu);
4387
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004388static void init_kvm_softmmu(struct kvm_vcpu *vcpu)
Joerg Roedel52fde8d2010-09-10 17:30:44 +02004389{
Paolo Bonziniad896af2013-10-02 16:56:14 +02004390 struct kvm_mmu *context = &vcpu->arch.mmu;
4391
4392 kvm_init_shadow_mmu(vcpu);
4393 context->set_cr3 = kvm_x86_ops->set_cr3;
4394 context->get_cr3 = get_cr3;
4395 context->get_pdptr = kvm_pdptr_read;
4396 context->inject_page_fault = kvm_inject_page_fault;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004397}
4398
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004399static void init_kvm_nested_mmu(struct kvm_vcpu *vcpu)
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004400{
4401 struct kvm_mmu *g_context = &vcpu->arch.nested_mmu;
4402
4403 g_context->get_cr3 = get_cr3;
Avi Kivitye4e517b2011-07-28 11:36:17 +03004404 g_context->get_pdptr = kvm_pdptr_read;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004405 g_context->inject_page_fault = kvm_inject_page_fault;
4406
4407 /*
David Matlack0af25932015-12-30 08:26:17 -08004408 * Note that arch.mmu.gva_to_gpa translates l2_gpa to l1_gpa using
4409 * L1's nested page tables (e.g. EPT12). The nested translation
4410 * of l2_gva to l1_gpa is done by arch.nested_mmu.gva_to_gpa using
4411 * L2's page tables as the first level of translation and L1's
4412 * nested page tables as the second level of translation. Basically
4413 * the gva_to_gpa functions between mmu and nested_mmu are swapped.
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004414 */
4415 if (!is_paging(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004416 g_context->nx = false;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004417 g_context->root_level = 0;
4418 g_context->gva_to_gpa = nonpaging_gva_to_gpa_nested;
4419 } else if (is_long_mode(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004420 g_context->nx = is_nx(vcpu);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004421 g_context->root_level = PT64_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004422 reset_rsvds_bits_mask(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004423 g_context->gva_to_gpa = paging64_gva_to_gpa_nested;
4424 } else if (is_pae(vcpu)) {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004425 g_context->nx = is_nx(vcpu);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004426 g_context->root_level = PT32E_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004427 reset_rsvds_bits_mask(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004428 g_context->gva_to_gpa = paging64_gva_to_gpa_nested;
4429 } else {
Joerg Roedel2d48a982010-09-10 17:31:01 +02004430 g_context->nx = false;
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004431 g_context->root_level = PT32_ROOT_LEVEL;
Davidlohr Bueso4d6931c2012-03-05 16:53:06 +01004432 reset_rsvds_bits_mask(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004433 g_context->gva_to_gpa = paging32_gva_to_gpa_nested;
4434 }
4435
Yang Zhang25d92082013-08-06 12:00:32 +03004436 update_permission_bitmask(vcpu, g_context, false);
Huaitong Han2d344102016-03-22 16:51:19 +08004437 update_pkru_bitmask(vcpu, g_context, false);
Paolo Bonzini6bb69c92016-02-23 12:51:19 +01004438 update_last_nonleaf_level(vcpu, g_context);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004439}
4440
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004441static void init_kvm_mmu(struct kvm_vcpu *vcpu)
Joerg Roedelfb72d162008-02-07 13:47:44 +01004442{
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004443 if (mmu_is_nested(vcpu))
Paolo Bonzinie0c6db32014-12-23 13:39:46 +01004444 init_kvm_nested_mmu(vcpu);
Joerg Roedel02f59dc2010-09-10 17:30:54 +02004445 else if (tdp_enabled)
Paolo Bonzinie0c6db32014-12-23 13:39:46 +01004446 init_kvm_tdp_mmu(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004447 else
Paolo Bonzinie0c6db32014-12-23 13:39:46 +01004448 init_kvm_softmmu(vcpu);
Joerg Roedelfb72d162008-02-07 13:47:44 +01004449}
4450
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004451void kvm_mmu_reset_context(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004452{
Paolo Bonzini95f93af2013-10-02 16:56:12 +02004453 kvm_mmu_unload(vcpu);
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004454 init_kvm_mmu(vcpu);
Avi Kivity17c3ba92007-06-04 15:58:30 +03004455}
Eddie Dong8668a3c2007-10-10 14:26:45 +08004456EXPORT_SYMBOL_GPL(kvm_mmu_reset_context);
Avi Kivity17c3ba92007-06-04 15:58:30 +03004457
4458int kvm_mmu_load(struct kvm_vcpu *vcpu)
4459{
Avi Kivity714b93d2007-01-05 16:36:53 -08004460 int r;
4461
Avi Kivitye2dec932007-01-05 16:36:54 -08004462 r = mmu_topup_memory_caches(vcpu);
Avi Kivity17c3ba92007-06-04 15:58:30 +03004463 if (r)
4464 goto out;
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03004465 r = mmu_alloc_roots(vcpu);
Takuya Yoshikawae2858b42013-05-09 15:45:12 +09004466 kvm_mmu_sync_roots(vcpu);
Marcelo Tosatti8986ecc2009-05-12 18:55:45 -03004467 if (r)
4468 goto out;
Sheng Yang3662cb12009-07-09 17:00:42 +08004469 /* set_cr3() should ensure TLB has been flushed */
Joerg Roedelf43addd2010-09-10 17:30:40 +02004470 vcpu->arch.mmu.set_cr3(vcpu, vcpu->arch.mmu.root_hpa);
Avi Kivity714b93d2007-01-05 16:36:53 -08004471out:
4472 return r;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004473}
Avi Kivity17c3ba92007-06-04 15:58:30 +03004474EXPORT_SYMBOL_GPL(kvm_mmu_load);
4475
4476void kvm_mmu_unload(struct kvm_vcpu *vcpu)
4477{
4478 mmu_free_roots(vcpu);
Paolo Bonzini95f93af2013-10-02 16:56:12 +02004479 WARN_ON(VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity17c3ba92007-06-04 15:58:30 +03004480}
Joerg Roedel4b161842010-09-10 17:31:03 +02004481EXPORT_SYMBOL_GPL(kvm_mmu_unload);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004482
Avi Kivity00284252007-05-01 16:53:31 +03004483static void mmu_pte_write_new_pte(struct kvm_vcpu *vcpu,
Xiao Guangrong7c562522011-03-28 10:29:27 +08004484 struct kvm_mmu_page *sp, u64 *spte,
4485 const void *new)
Avi Kivity00284252007-05-01 16:53:31 +03004486{
Marcelo Tosatti30945382008-06-11 20:32:40 -03004487 if (sp->role.level != PT_PAGE_TABLE_LEVEL) {
Joerg Roedel7e4e4052009-07-27 16:30:46 +02004488 ++vcpu->kvm->stat.mmu_pde_zapped;
4489 return;
Marcelo Tosatti30945382008-06-11 20:32:40 -03004490 }
Avi Kivity00284252007-05-01 16:53:31 +03004491
Avi Kivity4cee5762007-11-18 16:37:07 +02004492 ++vcpu->kvm->stat.mmu_pte_updated;
Xiao Guangrong7c562522011-03-28 10:29:27 +08004493 vcpu->arch.mmu.update_pte(vcpu, sp, spte, new);
Avi Kivity00284252007-05-01 16:53:31 +03004494}
4495
Avi Kivity79539ce2007-11-21 02:06:21 +02004496static bool need_remote_flush(u64 old, u64 new)
4497{
4498 if (!is_shadow_present_pte(old))
4499 return false;
4500 if (!is_shadow_present_pte(new))
4501 return true;
4502 if ((old ^ new) & PT64_BASE_ADDR_MASK)
4503 return true;
Gleb Natapov53166222013-08-05 11:07:14 +03004504 old ^= shadow_nx_mask;
4505 new ^= shadow_nx_mask;
Avi Kivity79539ce2007-11-21 02:06:21 +02004506 return (old & ~new & PT64_PERM_MASK) != 0;
4507}
4508
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004509static u64 mmu_pte_write_fetch_gpte(struct kvm_vcpu *vcpu, gpa_t *gpa,
4510 const u8 *new, int *bytes)
Avi Kivityda4a00f2007-01-05 16:36:44 -08004511{
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004512 u64 gentry;
4513 int r;
Avi Kivity72016f32010-03-15 13:59:53 +02004514
Avi Kivity08e850c2010-03-15 13:59:57 +02004515 /*
4516 * Assume that the pte write on a page table of the same type
Xiao Guangrong49b26e22011-03-04 19:00:00 +08004517 * as the current vcpu paging mode since we update the sptes only
4518 * when they have the same mode.
Avi Kivity08e850c2010-03-15 13:59:57 +02004519 */
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004520 if (is_pae(vcpu) && *bytes == 4) {
Avi Kivity08e850c2010-03-15 13:59:57 +02004521 /* Handle a 32-bit guest writing two halves of a 64-bit gpte */
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004522 *gpa &= ~(gpa_t)7;
4523 *bytes = 8;
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02004524 r = kvm_vcpu_read_guest(vcpu, *gpa, &gentry, 8);
Avi Kivity08e850c2010-03-15 13:59:57 +02004525 if (r)
4526 gentry = 0;
4527 new = (const u8 *)&gentry;
4528 }
4529
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004530 switch (*bytes) {
Avi Kivity72016f32010-03-15 13:59:53 +02004531 case 4:
4532 gentry = *(const u32 *)new;
4533 break;
4534 case 8:
4535 gentry = *(const u64 *)new;
4536 break;
4537 default:
4538 gentry = 0;
4539 break;
4540 }
4541
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004542 return gentry;
4543}
4544
4545/*
4546 * If we're seeing too many writes to a page, it may no longer be a page table,
4547 * or we may be forking, in which case it is better to unmap the page.
4548 */
Xiao Guangronga138fe72011-12-16 18:18:10 +08004549static bool detect_write_flooding(struct kvm_mmu_page *sp)
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004550{
Xiao Guangronga30f47c2011-09-22 16:58:36 +08004551 /*
4552 * Skip write-flooding detected for the sp whose level is 1, because
4553 * it can become unsync, then the guest page is not write-protected.
4554 */
Davidlohr Buesof71fa312012-04-18 12:24:29 +02004555 if (sp->role.level == PT_PAGE_TABLE_LEVEL)
Xiao Guangronga30f47c2011-09-22 16:58:36 +08004556 return false;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004557
Xiao Guangronge5691a82016-02-24 17:51:12 +08004558 atomic_inc(&sp->write_flooding_count);
4559 return atomic_read(&sp->write_flooding_count) >= 3;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004560}
4561
4562/*
4563 * Misaligned accesses are too much trouble to fix up; also, they usually
4564 * indicate a page is not used as a page table.
4565 */
4566static bool detect_write_misaligned(struct kvm_mmu_page *sp, gpa_t gpa,
4567 int bytes)
4568{
4569 unsigned offset, pte_size, misaligned;
4570
4571 pgprintk("misaligned: gpa %llx bytes %d role %x\n",
4572 gpa, bytes, sp->role.word);
4573
4574 offset = offset_in_page(gpa);
4575 pte_size = sp->role.cr4_pae ? 8 : 4;
Xiao Guangrong5d9ca302011-09-22 16:57:55 +08004576
4577 /*
4578 * Sometimes, the OS only writes the last one bytes to update status
4579 * bits, for example, in linux, andb instruction is used in clear_bit().
4580 */
4581 if (!(offset & (pte_size - 1)) && bytes == 1)
4582 return false;
4583
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004584 misaligned = (offset ^ (offset + bytes - 1)) & ~(pte_size - 1);
4585 misaligned |= bytes < 4;
4586
4587 return misaligned;
4588}
4589
4590static u64 *get_written_sptes(struct kvm_mmu_page *sp, gpa_t gpa, int *nspte)
4591{
4592 unsigned page_offset, quadrant;
4593 u64 *spte;
4594 int level;
4595
4596 page_offset = offset_in_page(gpa);
4597 level = sp->role.level;
4598 *nspte = 1;
4599 if (!sp->role.cr4_pae) {
4600 page_offset <<= 1; /* 32->64 */
4601 /*
4602 * A 32-bit pde maps 4MB while the shadow pdes map
4603 * only 2MB. So we need to double the offset again
4604 * and zap two pdes instead of one.
4605 */
4606 if (level == PT32_ROOT_LEVEL) {
4607 page_offset &= ~7; /* kill rounding error */
4608 page_offset <<= 1;
4609 *nspte = 2;
4610 }
4611 quadrant = page_offset >> PAGE_SHIFT;
4612 page_offset &= ~PAGE_MASK;
4613 if (quadrant != sp->role.quadrant)
4614 return NULL;
4615 }
4616
4617 spte = &sp->spt[page_offset / sizeof(*spte)];
4618 return spte;
4619}
4620
Xiao Guangrong13d268c2016-02-24 17:51:16 +08004621static void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
Jike Songd1263632016-10-25 15:50:42 +08004622 const u8 *new, int bytes,
4623 struct kvm_page_track_notifier_node *node)
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004624{
4625 gfn_t gfn = gpa >> PAGE_SHIFT;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004626 struct kvm_mmu_page *sp;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004627 LIST_HEAD(invalid_list);
4628 u64 entry, gentry, *spte;
4629 int npte;
Paolo Bonzinib8c67b72016-02-24 11:21:55 +01004630 bool remote_flush, local_flush;
Andrew Morton41412592015-05-27 11:53:06 +02004631 union kvm_mmu_page_role mask = { };
4632
4633 mask.cr0_wp = 1;
4634 mask.cr4_pae = 1;
4635 mask.nxe = 1;
4636 mask.smep_andnot_wp = 1;
4637 mask.smap_andnot_wp = 1;
Paolo Bonzini699023e2015-05-18 15:03:39 +02004638 mask.smm = 1;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004639
4640 /*
4641 * If we don't have indirect shadow pages, it means no page is
4642 * write-protected, so we can exit simply.
4643 */
4644 if (!ACCESS_ONCE(vcpu->kvm->arch.indirect_shadow_pages))
4645 return;
4646
Paolo Bonzinib8c67b72016-02-24 11:21:55 +01004647 remote_flush = local_flush = false;
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004648
4649 pgprintk("%s: gpa %llx bytes %d\n", __func__, gpa, bytes);
4650
4651 gentry = mmu_pte_write_fetch_gpte(vcpu, &gpa, new, &bytes);
4652
4653 /*
4654 * No need to care whether allocation memory is successful
4655 * or not since pte prefetch is skiped if it does not have
4656 * enough objects in the cache.
4657 */
4658 mmu_topup_memory_caches(vcpu);
4659
4660 spin_lock(&vcpu->kvm->mmu_lock);
4661 ++vcpu->kvm->stat.mmu_pte_write;
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08004662 kvm_mmu_audit(vcpu, AUDIT_PRE_PTE_WRITE);
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004663
Sasha Levinb67bfe02013-02-27 17:06:00 -08004664 for_each_gfn_indirect_valid_sp(vcpu->kvm, sp, gfn) {
Xiao Guangronga30f47c2011-09-22 16:58:36 +08004665 if (detect_write_misaligned(sp, gpa, bytes) ||
Xiao Guangronga138fe72011-12-16 18:18:10 +08004666 detect_write_flooding(sp)) {
Paolo Bonzinib8c67b72016-02-24 11:21:55 +01004667 kvm_mmu_prepare_zap_page(vcpu->kvm, sp, &invalid_list);
Avi Kivity4cee5762007-11-18 16:37:07 +02004668 ++vcpu->kvm->stat.mmu_flooded;
Avi Kivity0e7bc4b2007-01-05 16:36:48 -08004669 continue;
4670 }
Xiao Guangrong889e5cb2011-09-22 16:57:23 +08004671
4672 spte = get_written_sptes(sp, gpa, &npte);
4673 if (!spte)
4674 continue;
4675
Xiao Guangrong0671a8e2010-06-04 21:56:59 +08004676 local_flush = true;
Avi Kivityac1b7142007-03-08 17:13:32 +02004677 while (npte--) {
Avi Kivity79539ce2007-11-21 02:06:21 +02004678 entry = *spte;
Xiao Guangrong38e3b2b2011-05-15 23:27:52 +08004679 mmu_page_zap_pte(vcpu->kvm, sp, spte);
Xiao Guangrongfa1de2b2010-07-16 11:19:51 +08004680 if (gentry &&
4681 !((sp->role.word ^ vcpu->arch.mmu.base_role.word)
Xiao Guangrongf759e2b2011-09-22 16:53:17 +08004682 & mask.word) && rmap_can_add(vcpu))
Xiao Guangrong7c562522011-03-28 10:29:27 +08004683 mmu_pte_write_new_pte(vcpu, sp, spte, &gentry);
Gleb Natapov9bb4f6b2013-01-30 16:45:01 +02004684 if (need_remote_flush(entry, *spte))
Xiao Guangrong0671a8e2010-06-04 21:56:59 +08004685 remote_flush = true;
Avi Kivityac1b7142007-03-08 17:13:32 +02004686 ++spte;
Avi Kivity9b7a0322007-01-05 16:36:45 -08004687 }
Avi Kivity9b7a0322007-01-05 16:36:45 -08004688 }
Paolo Bonzinib8c67b72016-02-24 11:21:55 +01004689 kvm_mmu_flush_or_zap(vcpu, &invalid_list, remote_flush, local_flush);
Xiao Guangrong0375f7f2011-11-28 20:41:00 +08004690 kvm_mmu_audit(vcpu, AUDIT_POST_PTE_WRITE);
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -05004691 spin_unlock(&vcpu->kvm->mmu_lock);
Avi Kivityda4a00f2007-01-05 16:36:44 -08004692}
4693
Avi Kivitya4360362007-01-05 16:36:45 -08004694int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva)
4695{
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004696 gpa_t gpa;
4697 int r;
Avi Kivitya4360362007-01-05 16:36:45 -08004698
Joerg Roedelc5a78f2b2010-09-10 17:30:39 +02004699 if (vcpu->arch.mmu.direct_map)
Avi Kivity60f24782009-08-27 13:37:06 +03004700 return 0;
4701
Gleb Natapov1871c602010-02-10 14:21:32 +02004702 gpa = kvm_mmu_gva_to_gpa_read(vcpu, gva, NULL);
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004703
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004704 r = kvm_mmu_unprotect_page(vcpu->kvm, gpa >> PAGE_SHIFT);
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004705
Marcelo Tosatti10589a42007-12-20 19:18:22 -05004706 return r;
Avi Kivitya4360362007-01-05 16:36:45 -08004707}
Avi Kivity577bdc42008-07-19 08:57:05 +03004708EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page_virt);
Avi Kivitya4360362007-01-05 16:36:45 -08004709
Takuya Yoshikawa81f4f762013-03-21 19:34:27 +09004710static void make_mmu_pages_available(struct kvm_vcpu *vcpu)
Avi Kivityebeace82007-01-05 16:36:47 -08004711{
Xiao Guangrongd98ba052010-06-04 21:55:29 +08004712 LIST_HEAD(invalid_list);
Xiao Guangrong103ad252010-06-04 21:54:38 +08004713
Takuya Yoshikawa81f4f762013-03-21 19:34:27 +09004714 if (likely(kvm_mmu_available_pages(vcpu->kvm) >= KVM_MIN_FREE_MMU_PAGES))
4715 return;
4716
Takuya Yoshikawa5da59602013-03-06 16:06:58 +09004717 while (kvm_mmu_available_pages(vcpu->kvm) < KVM_REFILL_PAGES) {
4718 if (!prepare_zap_oldest_mmu_page(vcpu->kvm, &invalid_list))
4719 break;
Avi Kivityebeace82007-01-05 16:36:47 -08004720
Avi Kivity4cee5762007-11-18 16:37:07 +02004721 ++vcpu->kvm->stat.mmu_recycled;
Avi Kivityebeace82007-01-05 16:36:47 -08004722 }
Xiao Guangrongaa6bd182011-07-12 03:26:40 +08004723 kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
Avi Kivityebeace82007-01-05 16:36:47 -08004724}
Avi Kivityebeace82007-01-05 16:36:47 -08004725
Tom Lendacky14727752016-11-23 12:01:38 -05004726int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t cr2, u64 error_code,
Andre Przywaradc25e892010-12-21 11:12:07 +01004727 void *insn, int insn_len)
Avi Kivity30677142007-10-28 18:48:59 +02004728{
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004729 int r, emulation_type = EMULTYPE_RETRY;
Avi Kivity30677142007-10-28 18:48:59 +02004730 enum emulation_result er;
Takuya Yoshikawaded58742016-02-22 17:23:40 +09004731 bool direct = vcpu->arch.mmu.direct_map || mmu_is_nested(vcpu);
Avi Kivity30677142007-10-28 18:48:59 +02004732
Takuya Yoshikawae9ee9562016-02-22 17:23:41 +09004733 if (unlikely(error_code & PFERR_RSVD_MASK)) {
4734 r = handle_mmio_page_fault(vcpu, cr2, direct);
4735 if (r == RET_MMIO_PF_EMULATE) {
4736 emulation_type = 0;
4737 goto emulate;
4738 }
4739 if (r == RET_MMIO_PF_RETRY)
4740 return 1;
4741 if (r < 0)
4742 return r;
4743 }
Avi Kivity30677142007-10-28 18:48:59 +02004744
Tom Lendacky14727752016-11-23 12:01:38 -05004745 r = vcpu->arch.mmu.page_fault(vcpu, cr2, lower_32_bits(error_code),
4746 false);
Avi Kivity30677142007-10-28 18:48:59 +02004747 if (r < 0)
Takuya Yoshikawae9ee9562016-02-22 17:23:41 +09004748 return r;
4749 if (!r)
4750 return 1;
Avi Kivity30677142007-10-28 18:48:59 +02004751
Tom Lendacky14727752016-11-23 12:01:38 -05004752 /*
4753 * Before emulating the instruction, check if the error code
4754 * was due to a RO violation while translating the guest page.
4755 * This can occur when using nested virtualization with nested
4756 * paging in both guests. If true, we simply unprotect the page
4757 * and resume the guest.
4758 *
4759 * Note: AMD only (since it supports the PFERR_GUEST_PAGE_MASK used
4760 * in PFERR_NEXT_GUEST_PAGE)
4761 */
4762 if (error_code == PFERR_NESTED_GUEST_PAGE) {
4763 kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(cr2));
4764 return 1;
4765 }
4766
Takuya Yoshikawaded58742016-02-22 17:23:40 +09004767 if (mmio_info_in_cache(vcpu, cr2, direct))
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004768 emulation_type = 0;
Takuya Yoshikawae9ee9562016-02-22 17:23:41 +09004769emulate:
Xiao Guangrong1cb3f3a2011-09-22 17:02:48 +08004770 er = x86_emulate_instruction(vcpu, cr2, emulation_type, insn, insn_len);
Avi Kivity30677142007-10-28 18:48:59 +02004771
4772 switch (er) {
4773 case EMULATE_DONE:
4774 return 1;
Paolo Bonziniac0a48c2013-06-25 18:24:41 +02004775 case EMULATE_USER_EXIT:
Avi Kivity30677142007-10-28 18:48:59 +02004776 ++vcpu->stat.mmio_exits;
Gleb Natapov6d77dbf2010-05-10 11:16:56 +03004777 /* fall through */
Avi Kivity30677142007-10-28 18:48:59 +02004778 case EMULATE_FAIL:
Avi Kivity3f5d18a2009-06-11 15:43:28 +03004779 return 0;
Avi Kivity30677142007-10-28 18:48:59 +02004780 default:
4781 BUG();
4782 }
Avi Kivity30677142007-10-28 18:48:59 +02004783}
4784EXPORT_SYMBOL_GPL(kvm_mmu_page_fault);
4785
Marcelo Tosattia7052892008-09-23 13:18:35 -03004786void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
4787{
Marcelo Tosattia7052892008-09-23 13:18:35 -03004788 vcpu->arch.mmu.invlpg(vcpu, gva);
Liang Chen77c39132014-09-18 12:38:37 -04004789 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
Marcelo Tosattia7052892008-09-23 13:18:35 -03004790 ++vcpu->stat.invlpg;
4791}
4792EXPORT_SYMBOL_GPL(kvm_mmu_invlpg);
4793
Joerg Roedel18552672008-02-07 13:47:41 +01004794void kvm_enable_tdp(void)
4795{
4796 tdp_enabled = true;
4797}
4798EXPORT_SYMBOL_GPL(kvm_enable_tdp);
4799
Joerg Roedel5f4cb662008-07-14 20:36:36 +02004800void kvm_disable_tdp(void)
4801{
4802 tdp_enabled = false;
4803}
4804EXPORT_SYMBOL_GPL(kvm_disable_tdp);
4805
Avi Kivity6aa8b732006-12-10 02:21:36 -08004806static void free_mmu_pages(struct kvm_vcpu *vcpu)
4807{
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004808 free_page((unsigned long)vcpu->arch.mmu.pae_root);
Joerg Roedel81407ca2010-09-10 17:31:00 +02004809 if (vcpu->arch.mmu.lm_root != NULL)
4810 free_page((unsigned long)vcpu->arch.mmu.lm_root);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004811}
4812
4813static int alloc_mmu_pages(struct kvm_vcpu *vcpu)
4814{
Avi Kivity17ac10a2007-01-05 16:36:40 -08004815 struct page *page;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004816 int i;
4817
Avi Kivity17ac10a2007-01-05 16:36:40 -08004818 /*
4819 * When emulating 32-bit mode, cr3 is only 32 bits even on x86_64.
4820 * Therefore we need to allocate shadow page tables in the first
4821 * 4GB of memory, which happens to fit the DMA32 zone.
4822 */
4823 page = alloc_page(GFP_KERNEL | __GFP_DMA32);
4824 if (!page)
Wei Yongjund7fa6ab2010-01-22 16:55:05 +08004825 return -ENOMEM;
4826
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004827 vcpu->arch.mmu.pae_root = page_address(page);
Avi Kivity17ac10a2007-01-05 16:36:40 -08004828 for (i = 0; i < 4; ++i)
Zhang Xiantaoad312c72007-12-13 23:50:52 +08004829 vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
Avi Kivity17ac10a2007-01-05 16:36:40 -08004830
Avi Kivity6aa8b732006-12-10 02:21:36 -08004831 return 0;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004832}
4833
Ingo Molnar8018c272006-12-29 16:50:01 -08004834int kvm_mmu_create(struct kvm_vcpu *vcpu)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004835{
Xiao Guangronge459e322011-11-28 20:42:16 +08004836 vcpu->arch.walk_mmu = &vcpu->arch.mmu;
4837 vcpu->arch.mmu.root_hpa = INVALID_PAGE;
4838 vcpu->arch.mmu.translate_gpa = translate_gpa;
4839 vcpu->arch.nested_mmu.translate_gpa = translate_nested_gpa;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004840
Ingo Molnar8018c272006-12-29 16:50:01 -08004841 return alloc_mmu_pages(vcpu);
4842}
Avi Kivity6aa8b732006-12-10 02:21:36 -08004843
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004844void kvm_mmu_setup(struct kvm_vcpu *vcpu)
Ingo Molnar8018c272006-12-29 16:50:01 -08004845{
Paolo Bonzinifa4a2c02013-10-02 16:56:16 +02004846 MMU_WARN_ON(VALID_PAGE(vcpu->arch.mmu.root_hpa));
Avi Kivity2c264952006-12-22 01:05:28 -08004847
Paolo Bonzini8a3c1a332013-10-02 16:56:13 +02004848 init_kvm_mmu(vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -08004849}
4850
Xiaoguang Chenb5f5fdc2016-10-09 15:41:44 +08004851static void kvm_mmu_invalidate_zap_pages_in_memslot(struct kvm *kvm,
Jike Songd1263632016-10-25 15:50:42 +08004852 struct kvm_memory_slot *slot,
4853 struct kvm_page_track_notifier_node *node)
Xiaoguang Chenb5f5fdc2016-10-09 15:41:44 +08004854{
4855 kvm_mmu_invalidate_zap_all_pages(kvm);
4856}
4857
Xiao Guangrong13d268c2016-02-24 17:51:16 +08004858void kvm_mmu_init_vm(struct kvm *kvm)
4859{
4860 struct kvm_page_track_notifier_node *node = &kvm->arch.mmu_sp_tracker;
4861
4862 node->track_write = kvm_mmu_pte_write;
Xiaoguang Chenb5f5fdc2016-10-09 15:41:44 +08004863 node->track_flush_slot = kvm_mmu_invalidate_zap_pages_in_memslot;
Xiao Guangrong13d268c2016-02-24 17:51:16 +08004864 kvm_page_track_register_notifier(kvm, node);
4865}
4866
4867void kvm_mmu_uninit_vm(struct kvm *kvm)
4868{
4869 struct kvm_page_track_notifier_node *node = &kvm->arch.mmu_sp_tracker;
4870
4871 kvm_page_track_unregister_notifier(kvm, node);
4872}
4873
Xiao Guangrong1bad2b22015-05-13 14:42:23 +08004874/* The return value indicates if tlb flush on all vcpus is needed. */
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09004875typedef bool (*slot_level_handler) (struct kvm *kvm, struct kvm_rmap_head *rmap_head);
Xiao Guangrong1bad2b22015-05-13 14:42:23 +08004876
4877/* The caller should hold mmu-lock before calling this function. */
4878static bool
4879slot_handle_level_range(struct kvm *kvm, struct kvm_memory_slot *memslot,
4880 slot_level_handler fn, int start_level, int end_level,
4881 gfn_t start_gfn, gfn_t end_gfn, bool lock_flush_tlb)
4882{
4883 struct slot_rmap_walk_iterator iterator;
4884 bool flush = false;
4885
4886 for_each_slot_rmap_range(memslot, start_level, end_level, start_gfn,
4887 end_gfn, &iterator) {
4888 if (iterator.rmap)
4889 flush |= fn(kvm, iterator.rmap);
4890
4891 if (need_resched() || spin_needbreak(&kvm->mmu_lock)) {
4892 if (flush && lock_flush_tlb) {
4893 kvm_flush_remote_tlbs(kvm);
4894 flush = false;
4895 }
4896 cond_resched_lock(&kvm->mmu_lock);
4897 }
4898 }
4899
4900 if (flush && lock_flush_tlb) {
4901 kvm_flush_remote_tlbs(kvm);
4902 flush = false;
4903 }
4904
4905 return flush;
4906}
4907
4908static bool
4909slot_handle_level(struct kvm *kvm, struct kvm_memory_slot *memslot,
4910 slot_level_handler fn, int start_level, int end_level,
4911 bool lock_flush_tlb)
4912{
4913 return slot_handle_level_range(kvm, memslot, fn, start_level,
4914 end_level, memslot->base_gfn,
4915 memslot->base_gfn + memslot->npages - 1,
4916 lock_flush_tlb);
4917}
4918
4919static bool
4920slot_handle_all_level(struct kvm *kvm, struct kvm_memory_slot *memslot,
4921 slot_level_handler fn, bool lock_flush_tlb)
4922{
4923 return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL,
4924 PT_MAX_HUGEPAGE_LEVEL, lock_flush_tlb);
4925}
4926
4927static bool
4928slot_handle_large_level(struct kvm *kvm, struct kvm_memory_slot *memslot,
4929 slot_level_handler fn, bool lock_flush_tlb)
4930{
4931 return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL + 1,
4932 PT_MAX_HUGEPAGE_LEVEL, lock_flush_tlb);
4933}
4934
4935static bool
4936slot_handle_leaf(struct kvm *kvm, struct kvm_memory_slot *memslot,
4937 slot_level_handler fn, bool lock_flush_tlb)
4938{
4939 return slot_handle_level(kvm, memslot, fn, PT_PAGE_TABLE_LEVEL,
4940 PT_PAGE_TABLE_LEVEL, lock_flush_tlb);
4941}
4942
Xiao Guangrongefdfe532015-05-13 14:42:27 +08004943void kvm_zap_gfn_range(struct kvm *kvm, gfn_t gfn_start, gfn_t gfn_end)
4944{
4945 struct kvm_memslots *slots;
4946 struct kvm_memory_slot *memslot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02004947 int i;
Xiao Guangrongefdfe532015-05-13 14:42:27 +08004948
4949 spin_lock(&kvm->mmu_lock);
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02004950 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
4951 slots = __kvm_memslots(kvm, i);
4952 kvm_for_each_memslot(memslot, slots) {
4953 gfn_t start, end;
Xiao Guangrongefdfe532015-05-13 14:42:27 +08004954
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02004955 start = max(gfn_start, memslot->base_gfn);
4956 end = min(gfn_end, memslot->base_gfn + memslot->npages);
4957 if (start >= end)
4958 continue;
Xiao Guangrongefdfe532015-05-13 14:42:27 +08004959
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02004960 slot_handle_level_range(kvm, memslot, kvm_zap_rmapp,
4961 PT_PAGE_TABLE_LEVEL, PT_MAX_HUGEPAGE_LEVEL,
4962 start, end - 1, true);
4963 }
Xiao Guangrongefdfe532015-05-13 14:42:27 +08004964 }
4965
4966 spin_unlock(&kvm->mmu_lock);
4967}
4968
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09004969static bool slot_rmap_write_protect(struct kvm *kvm,
4970 struct kvm_rmap_head *rmap_head)
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004971{
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09004972 return __rmap_write_protect(kvm, rmap_head, false);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004973}
4974
Kai Huang1c91cad42015-01-28 10:54:26 +08004975void kvm_mmu_slot_remove_write_access(struct kvm *kvm,
4976 struct kvm_memory_slot *memslot)
Avi Kivity6aa8b732006-12-10 02:21:36 -08004977{
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004978 bool flush;
Avi Kivity6aa8b732006-12-10 02:21:36 -08004979
Takuya Yoshikawa9d1beef2013-01-08 19:46:48 +09004980 spin_lock(&kvm->mmu_lock);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08004981 flush = slot_handle_all_level(kvm, memslot, slot_rmap_write_protect,
4982 false);
Takuya Yoshikawa9d1beef2013-01-08 19:46:48 +09004983 spin_unlock(&kvm->mmu_lock);
Xiao Guangrong198c74f2014-04-17 17:06:16 +08004984
4985 /*
4986 * kvm_mmu_slot_remove_write_access() and kvm_vm_ioctl_get_dirty_log()
4987 * which do tlb flush out of mmu-lock should be serialized by
4988 * kvm->slots_lock otherwise tlb flush would be missed.
4989 */
4990 lockdep_assert_held(&kvm->slots_lock);
4991
4992 /*
4993 * We can flush all the TLBs out of the mmu lock without TLB
4994 * corruption since we just change the spte from writable to
4995 * readonly so that we only need to care the case of changing
4996 * spte from present to present (changing the spte from present
4997 * to nonpresent will flush all the TLBs immediately), in other
4998 * words, the only case we care is mmu_spte_update() where we
4999 * haved checked SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE
5000 * instead of PT_WRITABLE_MASK, that means it does not depend
5001 * on PT_WRITABLE_MASK anymore.
5002 */
Kai Huangd91ffee2015-01-12 15:28:54 +08005003 if (flush)
5004 kvm_flush_remote_tlbs(kvm);
Avi Kivity6aa8b732006-12-10 02:21:36 -08005005}
Avi Kivity37a7d8b2007-01-05 16:36:56 -08005006
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005007static bool kvm_mmu_zap_collapsible_spte(struct kvm *kvm,
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09005008 struct kvm_rmap_head *rmap_head)
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005009{
5010 u64 *sptep;
5011 struct rmap_iterator iter;
5012 int need_tlb_flush = 0;
Dan Williamsba049e92016-01-15 16:56:11 -08005013 kvm_pfn_t pfn;
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005014 struct kvm_mmu_page *sp;
5015
Xiao Guangrong0d536792015-05-13 14:42:20 +08005016restart:
Takuya Yoshikawa018aabb52015-11-20 17:41:28 +09005017 for_each_rmap_spte(rmap_head, &iter, sptep) {
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005018 sp = page_header(__pa(sptep));
5019 pfn = spte_to_pfn(*sptep);
5020
5021 /*
Xiao Guangrongdecf6332015-04-14 12:04:10 +08005022 * We cannot do huge page mapping for indirect shadow pages,
5023 * which are found on the last rmap (level = 1) when not using
5024 * tdp; such shadow pages are synced with the page table in
5025 * the guest, and the guest page table is using 4K page size
5026 * mapping if the indirect sp has level = 1.
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005027 */
5028 if (sp->role.direct &&
5029 !kvm_is_reserved_pfn(pfn) &&
Andrea Arcangeli127393f2016-05-05 16:22:20 -07005030 PageTransCompoundMap(pfn_to_page(pfn))) {
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005031 drop_spte(kvm, sptep);
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005032 need_tlb_flush = 1;
Xiao Guangrong0d536792015-05-13 14:42:20 +08005033 goto restart;
5034 }
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005035 }
5036
5037 return need_tlb_flush;
5038}
5039
5040void kvm_mmu_zap_collapsible_sptes(struct kvm *kvm,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02005041 const struct kvm_memory_slot *memslot)
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005042{
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02005043 /* FIXME: const-ify all uses of struct kvm_memory_slot. */
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005044 spin_lock(&kvm->mmu_lock);
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02005045 slot_handle_leaf(kvm, (struct kvm_memory_slot *)memslot,
5046 kvm_mmu_zap_collapsible_spte, true);
Wanpeng Li3ea3b7f2015-04-03 15:40:25 +08005047 spin_unlock(&kvm->mmu_lock);
5048}
5049
Kai Huangf4b4b182015-01-28 10:54:24 +08005050void kvm_mmu_slot_leaf_clear_dirty(struct kvm *kvm,
5051 struct kvm_memory_slot *memslot)
5052{
Xiao Guangrongd77aa732015-05-13 14:42:24 +08005053 bool flush;
Kai Huangf4b4b182015-01-28 10:54:24 +08005054
5055 spin_lock(&kvm->mmu_lock);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08005056 flush = slot_handle_leaf(kvm, memslot, __rmap_clear_dirty, false);
Kai Huangf4b4b182015-01-28 10:54:24 +08005057 spin_unlock(&kvm->mmu_lock);
5058
5059 lockdep_assert_held(&kvm->slots_lock);
5060
5061 /*
5062 * It's also safe to flush TLBs out of mmu lock here as currently this
5063 * function is only used for dirty logging, in which case flushing TLB
5064 * out of mmu lock also guarantees no dirty pages will be lost in
5065 * dirty_bitmap.
5066 */
5067 if (flush)
5068 kvm_flush_remote_tlbs(kvm);
5069}
5070EXPORT_SYMBOL_GPL(kvm_mmu_slot_leaf_clear_dirty);
5071
5072void kvm_mmu_slot_largepage_remove_write_access(struct kvm *kvm,
5073 struct kvm_memory_slot *memslot)
5074{
Xiao Guangrongd77aa732015-05-13 14:42:24 +08005075 bool flush;
Kai Huangf4b4b182015-01-28 10:54:24 +08005076
5077 spin_lock(&kvm->mmu_lock);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08005078 flush = slot_handle_large_level(kvm, memslot, slot_rmap_write_protect,
5079 false);
Kai Huangf4b4b182015-01-28 10:54:24 +08005080 spin_unlock(&kvm->mmu_lock);
5081
5082 /* see kvm_mmu_slot_remove_write_access */
5083 lockdep_assert_held(&kvm->slots_lock);
5084
5085 if (flush)
5086 kvm_flush_remote_tlbs(kvm);
5087}
5088EXPORT_SYMBOL_GPL(kvm_mmu_slot_largepage_remove_write_access);
5089
5090void kvm_mmu_slot_set_dirty(struct kvm *kvm,
5091 struct kvm_memory_slot *memslot)
5092{
Xiao Guangrongd77aa732015-05-13 14:42:24 +08005093 bool flush;
Kai Huangf4b4b182015-01-28 10:54:24 +08005094
5095 spin_lock(&kvm->mmu_lock);
Xiao Guangrongd77aa732015-05-13 14:42:24 +08005096 flush = slot_handle_all_level(kvm, memslot, __rmap_set_dirty, false);
Kai Huangf4b4b182015-01-28 10:54:24 +08005097 spin_unlock(&kvm->mmu_lock);
5098
5099 lockdep_assert_held(&kvm->slots_lock);
5100
5101 /* see kvm_mmu_slot_leaf_clear_dirty */
5102 if (flush)
5103 kvm_flush_remote_tlbs(kvm);
5104}
5105EXPORT_SYMBOL_GPL(kvm_mmu_slot_set_dirty);
5106
Xiao Guangronge7d11c72013-05-31 08:36:27 +08005107#define BATCH_ZAP_PAGES 10
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005108static void kvm_zap_obsolete_pages(struct kvm *kvm)
5109{
5110 struct kvm_mmu_page *sp, *node;
Xiao Guangronge7d11c72013-05-31 08:36:27 +08005111 int batch = 0;
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005112
5113restart:
5114 list_for_each_entry_safe_reverse(sp, node,
5115 &kvm->arch.active_mmu_pages, link) {
Xiao Guangronge7d11c72013-05-31 08:36:27 +08005116 int ret;
5117
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005118 /*
5119 * No obsolete page exists before new created page since
5120 * active_mmu_pages is the FIFO list.
5121 */
5122 if (!is_obsolete_sp(kvm, sp))
5123 break;
5124
5125 /*
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005126 * Since we are reversely walking the list and the invalid
5127 * list will be moved to the head, skip the invalid page
5128 * can help us to avoid the infinity list walking.
5129 */
5130 if (sp->role.invalid)
5131 continue;
5132
Xiao Guangrongf34d2512013-05-31 08:36:28 +08005133 /*
5134 * Need not flush tlb since we only zap the sp with invalid
5135 * generation number.
5136 */
Xiao Guangronge7d11c72013-05-31 08:36:27 +08005137 if (batch >= BATCH_ZAP_PAGES &&
Xiao Guangrongf34d2512013-05-31 08:36:28 +08005138 cond_resched_lock(&kvm->mmu_lock)) {
Xiao Guangronge7d11c72013-05-31 08:36:27 +08005139 batch = 0;
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005140 goto restart;
5141 }
5142
Xiao Guangrong365c8862013-05-31 08:36:29 +08005143 ret = kvm_mmu_prepare_zap_page(kvm, sp,
5144 &kvm->arch.zapped_obsolete_pages);
Xiao Guangronge7d11c72013-05-31 08:36:27 +08005145 batch += ret;
5146
5147 if (ret)
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005148 goto restart;
5149 }
5150
Xiao Guangrongf34d2512013-05-31 08:36:28 +08005151 /*
5152 * Should flush tlb before free page tables since lockless-walking
5153 * may use the pages.
5154 */
Xiao Guangrong365c8862013-05-31 08:36:29 +08005155 kvm_mmu_commit_zap_page(kvm, &kvm->arch.zapped_obsolete_pages);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005156}
5157
5158/*
5159 * Fast invalidate all shadow pages and use lock-break technique
5160 * to zap obsolete pages.
5161 *
5162 * It's required when memslot is being deleted or VM is being
5163 * destroyed, in these cases, we should ensure that KVM MMU does
5164 * not use any resource of the being-deleted slot or all slots
5165 * after calling the function.
5166 */
5167void kvm_mmu_invalidate_zap_all_pages(struct kvm *kvm)
5168{
5169 spin_lock(&kvm->mmu_lock);
Xiao Guangrong35006122013-05-31 08:36:25 +08005170 trace_kvm_mmu_invalidate_zap_all_pages(kvm);
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005171 kvm->arch.mmu_valid_gen++;
5172
Xiao Guangrongf34d2512013-05-31 08:36:28 +08005173 /*
5174 * Notify all vcpus to reload its shadow page table
5175 * and flush TLB. Then all vcpus will switch to new
5176 * shadow page table with the new mmu_valid_gen.
5177 *
5178 * Note: we should do this under the protection of
5179 * mmu-lock, otherwise, vcpu would purge shadow page
5180 * but miss tlb flush.
5181 */
5182 kvm_reload_remote_mmus(kvm);
5183
Xiao Guangrong5304b8d2013-05-31 08:36:22 +08005184 kvm_zap_obsolete_pages(kvm);
5185 spin_unlock(&kvm->mmu_lock);
5186}
5187
Xiao Guangrong365c8862013-05-31 08:36:29 +08005188static bool kvm_has_zapped_obsolete_pages(struct kvm *kvm)
5189{
5190 return unlikely(!list_empty_careful(&kvm->arch.zapped_obsolete_pages));
5191}
5192
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005193void kvm_mmu_invalidate_mmio_sptes(struct kvm *kvm, struct kvm_memslots *slots)
Xiao Guangrongf8f55942013-06-07 16:51:26 +08005194{
5195 /*
5196 * The very rare case: if the generation-number is round,
5197 * zap all shadow pages.
Xiao Guangrongf8f55942013-06-07 16:51:26 +08005198 */
Paolo Bonzini54bf36a2015-04-08 15:39:23 +02005199 if (unlikely((slots->generation & MMIO_GEN_MASK) == 0)) {
Bandan Dasae0f5492016-11-15 01:36:18 -05005200 kvm_debug_ratelimited("kvm: zapping shadow pages for mmio generation wraparound\n");
Xiao Guangronga8eca9d2013-06-10 16:28:55 +08005201 kvm_mmu_invalidate_zap_all_pages(kvm);
Takuya Yoshikawa7a2e8aa2013-06-21 01:34:31 +09005202 }
Xiao Guangrongf8f55942013-06-07 16:51:26 +08005203}
5204
Dave Chinner70534a72013-08-28 10:18:14 +10005205static unsigned long
5206mmu_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
Izik Eidus3ee16c82008-03-30 15:17:21 +03005207{
5208 struct kvm *kvm;
Ying Han1495f232011-05-24 17:12:27 -07005209 int nr_to_scan = sc->nr_to_scan;
Dave Chinner70534a72013-08-28 10:18:14 +10005210 unsigned long freed = 0;
Izik Eidus3ee16c82008-03-30 15:17:21 +03005211
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005212 spin_lock(&kvm_lock);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005213
5214 list_for_each_entry(kvm, &vm_list, vm_list) {
Jan Kiszka3d56cbd2011-12-02 18:35:24 +01005215 int idx;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08005216 LIST_HEAD(invalid_list);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005217
Gleb Natapov19526392012-06-04 14:53:23 +03005218 /*
Takuya Yoshikawa35f2d162012-08-20 18:35:39 +09005219 * Never scan more than sc->nr_to_scan VM instances.
5220 * Will not hit this condition practically since we do not try
5221 * to shrink more than one VM and it is very unlikely to see
5222 * !n_used_mmu_pages so many times.
5223 */
5224 if (!nr_to_scan--)
5225 break;
5226 /*
Gleb Natapov19526392012-06-04 14:53:23 +03005227 * n_used_mmu_pages is accessed without holding kvm->mmu_lock
5228 * here. We may skip a VM instance errorneosly, but we do not
5229 * want to shrink a VM that only started to populate its MMU
5230 * anyway.
5231 */
Xiao Guangrong365c8862013-05-31 08:36:29 +08005232 if (!kvm->arch.n_used_mmu_pages &&
5233 !kvm_has_zapped_obsolete_pages(kvm))
Gleb Natapov19526392012-06-04 14:53:23 +03005234 continue;
Gleb Natapov19526392012-06-04 14:53:23 +03005235
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005236 idx = srcu_read_lock(&kvm->srcu);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005237 spin_lock(&kvm->mmu_lock);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005238
Xiao Guangrong365c8862013-05-31 08:36:29 +08005239 if (kvm_has_zapped_obsolete_pages(kvm)) {
5240 kvm_mmu_commit_zap_page(kvm,
5241 &kvm->arch.zapped_obsolete_pages);
5242 goto unlock;
5243 }
5244
Dave Chinner70534a72013-08-28 10:18:14 +10005245 if (prepare_zap_oldest_mmu_page(kvm, &invalid_list))
5246 freed++;
Xiao Guangrongd98ba052010-06-04 21:55:29 +08005247 kvm_mmu_commit_zap_page(kvm, &invalid_list);
Gleb Natapov19526392012-06-04 14:53:23 +03005248
Xiao Guangrong365c8862013-05-31 08:36:29 +08005249unlock:
Izik Eidus3ee16c82008-03-30 15:17:21 +03005250 spin_unlock(&kvm->mmu_lock);
Marcelo Tosattif656ce02009-12-23 14:35:25 -02005251 srcu_read_unlock(&kvm->srcu, idx);
Gleb Natapov19526392012-06-04 14:53:23 +03005252
Dave Chinner70534a72013-08-28 10:18:14 +10005253 /*
5254 * unfair on small ones
5255 * per-vm shrinkers cry out
5256 * sadness comes quickly
5257 */
Gleb Natapov19526392012-06-04 14:53:23 +03005258 list_move_tail(&kvm->vm_list, &vm_list);
5259 break;
Izik Eidus3ee16c82008-03-30 15:17:21 +03005260 }
Izik Eidus3ee16c82008-03-30 15:17:21 +03005261
Paolo Bonzini2f303b72013-09-25 13:53:07 +02005262 spin_unlock(&kvm_lock);
Dave Chinner70534a72013-08-28 10:18:14 +10005263 return freed;
Dave Chinner70534a72013-08-28 10:18:14 +10005264}
5265
5266static unsigned long
5267mmu_shrink_count(struct shrinker *shrink, struct shrink_control *sc)
5268{
Dave Hansen45221ab2010-08-19 18:11:37 -07005269 return percpu_counter_read_positive(&kvm_total_used_mmu_pages);
Izik Eidus3ee16c82008-03-30 15:17:21 +03005270}
5271
5272static struct shrinker mmu_shrinker = {
Dave Chinner70534a72013-08-28 10:18:14 +10005273 .count_objects = mmu_shrink_count,
5274 .scan_objects = mmu_shrink_scan,
Izik Eidus3ee16c82008-03-30 15:17:21 +03005275 .seeks = DEFAULT_SEEKS * 10,
5276};
5277
Ingo Molnar2ddfd202008-05-22 10:37:48 +02005278static void mmu_destroy_caches(void)
Avi Kivityb5a33a72007-04-15 16:31:09 +03005279{
Xiao Guangrong53c07b12011-05-15 23:26:20 +08005280 if (pte_list_desc_cache)
5281 kmem_cache_destroy(pte_list_desc_cache);
Avi Kivityd3d25b02007-05-30 12:34:53 +03005282 if (mmu_page_header_cache)
5283 kmem_cache_destroy(mmu_page_header_cache);
Avi Kivityb5a33a72007-04-15 16:31:09 +03005284}
5285
5286int kvm_mmu_module_init(void)
5287{
Junaid Shahidf160c7b2016-12-06 16:46:16 -08005288 kvm_mmu_clear_all_pte_masks();
5289
Xiao Guangrong53c07b12011-05-15 23:26:20 +08005290 pte_list_desc_cache = kmem_cache_create("pte_list_desc",
5291 sizeof(struct pte_list_desc),
Paul Mundt20c2df82007-07-20 10:11:58 +09005292 0, 0, NULL);
Xiao Guangrong53c07b12011-05-15 23:26:20 +08005293 if (!pte_list_desc_cache)
Avi Kivityb5a33a72007-04-15 16:31:09 +03005294 goto nomem;
5295
Avi Kivityd3d25b02007-05-30 12:34:53 +03005296 mmu_page_header_cache = kmem_cache_create("kvm_mmu_page_header",
5297 sizeof(struct kvm_mmu_page),
Paul Mundt20c2df82007-07-20 10:11:58 +09005298 0, 0, NULL);
Avi Kivityd3d25b02007-05-30 12:34:53 +03005299 if (!mmu_page_header_cache)
5300 goto nomem;
5301
Tejun Heo908c7f12014-09-08 09:51:29 +09005302 if (percpu_counter_init(&kvm_total_used_mmu_pages, 0, GFP_KERNEL))
Wei Yongjun45bf21a2010-08-23 16:13:15 +08005303 goto nomem;
5304
Izik Eidus3ee16c82008-03-30 15:17:21 +03005305 register_shrinker(&mmu_shrinker);
5306
Avi Kivityb5a33a72007-04-15 16:31:09 +03005307 return 0;
5308
5309nomem:
Izik Eidus3ee16c82008-03-30 15:17:21 +03005310 mmu_destroy_caches();
Avi Kivityb5a33a72007-04-15 16:31:09 +03005311 return -ENOMEM;
5312}
5313
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005314/*
5315 * Caculate mmu pages needed for kvm.
5316 */
5317unsigned int kvm_mmu_calculate_mmu_pages(struct kvm *kvm)
5318{
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005319 unsigned int nr_mmu_pages;
5320 unsigned int nr_pages = 0;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -02005321 struct kvm_memslots *slots;
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +08005322 struct kvm_memory_slot *memslot;
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005323 int i;
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005324
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005325 for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) {
5326 slots = __kvm_memslots(kvm, i);
Lai Jiangshan90d83dc2010-04-19 17:41:23 +08005327
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005328 kvm_for_each_memslot(memslot, slots)
5329 nr_pages += memslot->npages;
5330 }
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005331
5332 nr_mmu_pages = nr_pages * KVM_PERMILLE_MMU_PAGES / 1000;
5333 nr_mmu_pages = max(nr_mmu_pages,
Paolo Bonzini9da0e4d2015-05-18 13:33:16 +02005334 (unsigned int) KVM_MIN_ALLOC_MMU_PAGES);
Zhang Xiantao3ad82a72007-11-20 13:11:38 +08005335
5336 return nr_mmu_pages;
5337}
5338
Xiao Guangrongc42fffe2010-09-27 18:07:07 +08005339void kvm_mmu_destroy(struct kvm_vcpu *vcpu)
5340{
Paolo Bonzini95f93af2013-10-02 16:56:12 +02005341 kvm_mmu_unload(vcpu);
Xiao Guangrongc42fffe2010-09-27 18:07:07 +08005342 free_mmu_pages(vcpu);
5343 mmu_free_memory_caches(vcpu);
Xiao Guangrongb034cf02010-12-23 16:08:35 +08005344}
5345
Xiao Guangrongb034cf02010-12-23 16:08:35 +08005346void kvm_mmu_module_exit(void)
5347{
5348 mmu_destroy_caches();
5349 percpu_counter_destroy(&kvm_total_used_mmu_pages);
5350 unregister_shrinker(&mmu_shrinker);
Xiao Guangrongc42fffe2010-09-27 18:07:07 +08005351 mmu_audit_disable();
5352}