blob: 5f6223b8bcf734257f3da577be93448e032e4c76 [file] [log] [blame]
Xiao Guangrong2f4f3372010-08-30 18:24:10 +08001/*
2 * mmu_audit.c:
3 *
4 * Audit code for KVM MMU
5 *
6 * Copyright (C) 2006 Qumranet, Inc.
Nicolas Kaiser9611c182010-10-06 14:23:22 +02007 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
Xiao Guangrong2f4f3372010-08-30 18:24:10 +08008 *
9 * Authors:
10 * Yaniv Kamay <yaniv@qumranet.com>
11 * Avi Kivity <avi@qumranet.com>
12 * Marcelo Tosatti <mtosatti@redhat.com>
13 * Xiao Guangrong <xiaoguangrong@cn.fujitsu.com>
14 *
15 * This work is licensed under the terms of the GNU GPL, version 2. See
16 * the COPYING file in the top-level directory.
17 *
18 */
19
Xiao Guangrong30644b92010-08-30 18:26:33 +080020#include <linux/ratelimit.h>
21
Xiao Guangrongb034cf02010-12-23 16:08:35 +080022#define audit_printk(kvm, fmt, args...) \
Xiao Guangrong38904e12010-09-27 18:07:59 +080023 printk(KERN_ERR "audit: (%s) error: " \
Xiao Guangrongb034cf02010-12-23 16:08:35 +080024 fmt, audit_point_name[kvm->arch.audit_point], ##args)
Xiao Guangrong2f4f3372010-08-30 18:24:10 +080025
Xiao Guangrongeb259182010-08-30 18:25:51 +080026typedef void (*inspect_spte_fn) (struct kvm_vcpu *vcpu, u64 *sptep, int level);
Xiao Guangrong2f4f3372010-08-30 18:24:10 +080027
Xiao Guangrongeb259182010-08-30 18:25:51 +080028static void __mmu_spte_walk(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
29 inspect_spte_fn fn, int level)
Xiao Guangrong2f4f3372010-08-30 18:24:10 +080030{
31 int i;
32
33 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
Xiao Guangrongeb259182010-08-30 18:25:51 +080034 u64 *ent = sp->spt;
Xiao Guangrong2f4f3372010-08-30 18:24:10 +080035
Xiao Guangrongeb259182010-08-30 18:25:51 +080036 fn(vcpu, ent + i, level);
37
38 if (is_shadow_present_pte(ent[i]) &&
39 !is_last_spte(ent[i], level)) {
40 struct kvm_mmu_page *child;
41
42 child = page_header(ent[i] & PT64_BASE_ADDR_MASK);
43 __mmu_spte_walk(vcpu, child, fn, level - 1);
Xiao Guangrong2f4f3372010-08-30 18:24:10 +080044 }
45 }
46}
47
48static void mmu_spte_walk(struct kvm_vcpu *vcpu, inspect_spte_fn fn)
49{
50 int i;
51 struct kvm_mmu_page *sp;
52
53 if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
54 return;
Xiao Guangrongeb259182010-08-30 18:25:51 +080055
Xiao Guangrong98224bf2010-09-27 18:06:16 +080056 if (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL) {
Xiao Guangrong2f4f3372010-08-30 18:24:10 +080057 hpa_t root = vcpu->arch.mmu.root_hpa;
Xiao Guangrongeb259182010-08-30 18:25:51 +080058
Xiao Guangrong2f4f3372010-08-30 18:24:10 +080059 sp = page_header(root);
Xiao Guangrongeb259182010-08-30 18:25:51 +080060 __mmu_spte_walk(vcpu, sp, fn, PT64_ROOT_LEVEL);
Xiao Guangrong2f4f3372010-08-30 18:24:10 +080061 return;
62 }
Xiao Guangrongeb259182010-08-30 18:25:51 +080063
Xiao Guangrong2f4f3372010-08-30 18:24:10 +080064 for (i = 0; i < 4; ++i) {
65 hpa_t root = vcpu->arch.mmu.pae_root[i];
66
67 if (root && VALID_PAGE(root)) {
68 root &= PT64_BASE_ADDR_MASK;
69 sp = page_header(root);
Xiao Guangrongeb259182010-08-30 18:25:51 +080070 __mmu_spte_walk(vcpu, sp, fn, 2);
Xiao Guangrong2f4f3372010-08-30 18:24:10 +080071 }
72 }
Xiao Guangrongeb259182010-08-30 18:25:51 +080073
Xiao Guangrong2f4f3372010-08-30 18:24:10 +080074 return;
75}
76
Xiao Guangrong49edf872010-08-30 18:25:03 +080077typedef void (*sp_handler) (struct kvm *kvm, struct kvm_mmu_page *sp);
78
79static void walk_all_active_sps(struct kvm *kvm, sp_handler fn)
80{
81 struct kvm_mmu_page *sp;
82
83 list_for_each_entry(sp, &kvm->arch.active_mmu_pages, link)
84 fn(kvm, sp);
85}
86
Xiao Guangrongeb259182010-08-30 18:25:51 +080087static void audit_mappings(struct kvm_vcpu *vcpu, u64 *sptep, int level)
Xiao Guangrong2f4f3372010-08-30 18:24:10 +080088{
Xiao Guangrongeb259182010-08-30 18:25:51 +080089 struct kvm_mmu_page *sp;
90 gfn_t gfn;
91 pfn_t pfn;
92 hpa_t hpa;
Xiao Guangrong2f4f3372010-08-30 18:24:10 +080093
Xiao Guangrongeb259182010-08-30 18:25:51 +080094 sp = page_header(__pa(sptep));
Xiao Guangrong2f4f3372010-08-30 18:24:10 +080095
Xiao Guangrongeb259182010-08-30 18:25:51 +080096 if (sp->unsync) {
97 if (level != PT_PAGE_TABLE_LEVEL) {
Xiao Guangrongb034cf02010-12-23 16:08:35 +080098 audit_printk(vcpu->kvm, "unsync sp: %p "
99 "level = %d\n", sp, level);
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800100 return;
101 }
102
Xiao Guangrongeb259182010-08-30 18:25:51 +0800103 if (*sptep == shadow_notrap_nonpresent_pte) {
Xiao Guangrongb034cf02010-12-23 16:08:35 +0800104 audit_printk(vcpu->kvm, "notrap spte in unsync "
105 "sp: %p\n", sp);
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800106 return;
107 }
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800108 }
Xiao Guangrongeb259182010-08-30 18:25:51 +0800109
110 if (sp->role.direct && *sptep == shadow_notrap_nonpresent_pte) {
Xiao Guangrongb034cf02010-12-23 16:08:35 +0800111 audit_printk(vcpu->kvm, "notrap spte in direct sp: %p\n",
112 sp);
Xiao Guangrongeb259182010-08-30 18:25:51 +0800113 return;
114 }
115
116 if (!is_shadow_present_pte(*sptep) || !is_last_spte(*sptep, level))
117 return;
118
119 gfn = kvm_mmu_page_get_gfn(sp, sptep - sp->spt);
120 pfn = gfn_to_pfn_atomic(vcpu->kvm, gfn);
121
122 if (is_error_pfn(pfn)) {
123 kvm_release_pfn_clean(pfn);
124 return;
125 }
126
127 hpa = pfn << PAGE_SHIFT;
128 if ((*sptep & PT64_BASE_ADDR_MASK) != hpa)
Xiao Guangrongb034cf02010-12-23 16:08:35 +0800129 audit_printk(vcpu->kvm, "levels %d pfn %llx hpa %llx "
130 "ent %llxn", vcpu->arch.mmu.root_level, pfn,
131 hpa, *sptep);
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800132}
133
Xiao Guangrongeb259182010-08-30 18:25:51 +0800134static void inspect_spte_has_rmap(struct kvm *kvm, u64 *sptep)
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800135{
136 unsigned long *rmapp;
137 struct kvm_mmu_page *rev_sp;
138 gfn_t gfn;
139
140
141 rev_sp = page_header(__pa(sptep));
142 gfn = kvm_mmu_page_get_gfn(rev_sp, sptep - rev_sp->spt);
143
144 if (!gfn_to_memslot(kvm, gfn)) {
145 if (!printk_ratelimit())
146 return;
Xiao Guangrongb034cf02010-12-23 16:08:35 +0800147 audit_printk(kvm, "no memslot for gfn %llx\n", gfn);
148 audit_printk(kvm, "index %ld of sp (gfn=%llx)\n",
Xiao Guangrong38904e12010-09-27 18:07:59 +0800149 (long int)(sptep - rev_sp->spt), rev_sp->gfn);
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800150 dump_stack();
151 return;
152 }
153
154 rmapp = gfn_to_rmap(kvm, gfn, rev_sp->role.level);
155 if (!*rmapp) {
156 if (!printk_ratelimit())
157 return;
Xiao Guangrongb034cf02010-12-23 16:08:35 +0800158 audit_printk(kvm, "no rmap for writable spte %llx\n",
159 *sptep);
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800160 dump_stack();
161 }
162}
163
Xiao Guangrongeb259182010-08-30 18:25:51 +0800164static void audit_sptes_have_rmaps(struct kvm_vcpu *vcpu, u64 *sptep, int level)
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800165{
Xiao Guangrongeb259182010-08-30 18:25:51 +0800166 if (is_shadow_present_pte(*sptep) && is_last_spte(*sptep, level))
167 inspect_spte_has_rmap(vcpu->kvm, sptep);
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800168}
169
Xiao Guangrong69030742010-09-27 18:09:29 +0800170static void audit_spte_after_sync(struct kvm_vcpu *vcpu, u64 *sptep, int level)
171{
172 struct kvm_mmu_page *sp = page_header(__pa(sptep));
173
Xiao Guangrongb034cf02010-12-23 16:08:35 +0800174 if (vcpu->kvm->arch.audit_point == AUDIT_POST_SYNC && sp->unsync)
175 audit_printk(vcpu->kvm, "meet unsync sp(%p) after sync "
176 "root.\n", sp);
Xiao Guangrong69030742010-09-27 18:09:29 +0800177}
178
Xiao Guangrong49edf872010-08-30 18:25:03 +0800179static void check_mappings_rmap(struct kvm *kvm, struct kvm_mmu_page *sp)
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800180{
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800181 int i;
182
Xiao Guangrong49edf872010-08-30 18:25:03 +0800183 if (sp->role.level != PT_PAGE_TABLE_LEVEL)
184 return;
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800185
Xiao Guangrong49edf872010-08-30 18:25:03 +0800186 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
187 if (!is_rmap_spte(sp->spt[i]))
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800188 continue;
189
Xiao Guangrong49edf872010-08-30 18:25:03 +0800190 inspect_spte_has_rmap(kvm, sp->spt + i);
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800191 }
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800192}
193
Xiao Guangrong69030742010-09-27 18:09:29 +0800194static void audit_write_protection(struct kvm *kvm, struct kvm_mmu_page *sp)
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800195{
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800196 struct kvm_memory_slot *slot;
197 unsigned long *rmapp;
198 u64 *spte;
199
Xiao Guangrong49edf872010-08-30 18:25:03 +0800200 if (sp->role.direct || sp->unsync || sp->role.invalid)
201 return;
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800202
Xiao Guangrong49edf872010-08-30 18:25:03 +0800203 slot = gfn_to_memslot(kvm, sp->gfn);
204 rmapp = &slot->rmap[sp->gfn - slot->base_gfn];
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800205
Xiao Guangrong49edf872010-08-30 18:25:03 +0800206 spte = rmap_next(kvm, rmapp, NULL);
207 while (spte) {
208 if (is_writable_pte(*spte))
Xiao Guangrongb034cf02010-12-23 16:08:35 +0800209 audit_printk(kvm, "shadow page has writable "
210 "mappings: gfn %llx role %x\n",
211 sp->gfn, sp->role.word);
Xiao Guangrong49edf872010-08-30 18:25:03 +0800212 spte = rmap_next(kvm, rmapp, spte);
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800213 }
214}
215
Xiao Guangrong49edf872010-08-30 18:25:03 +0800216static void audit_sp(struct kvm *kvm, struct kvm_mmu_page *sp)
217{
218 check_mappings_rmap(kvm, sp);
219 audit_write_protection(kvm, sp);
220}
221
222static void audit_all_active_sps(struct kvm *kvm)
223{
224 walk_all_active_sps(kvm, audit_sp);
225}
226
Xiao Guangrongeb259182010-08-30 18:25:51 +0800227static void audit_spte(struct kvm_vcpu *vcpu, u64 *sptep, int level)
228{
229 audit_sptes_have_rmaps(vcpu, sptep, level);
230 audit_mappings(vcpu, sptep, level);
Xiao Guangrong69030742010-09-27 18:09:29 +0800231 audit_spte_after_sync(vcpu, sptep, level);
Xiao Guangrongeb259182010-08-30 18:25:51 +0800232}
233
234static void audit_vcpu_spte(struct kvm_vcpu *vcpu)
235{
236 mmu_spte_walk(vcpu, audit_spte);
237}
238
Xiao Guangrong38904e12010-09-27 18:07:59 +0800239static void kvm_mmu_audit(void *ignore, struct kvm_vcpu *vcpu, int point)
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800240{
Xiao Guangrong30644b92010-08-30 18:26:33 +0800241 static DEFINE_RATELIMIT_STATE(ratelimit_state, 5 * HZ, 10);
242
243 if (!__ratelimit(&ratelimit_state))
244 return;
245
Xiao Guangrongb034cf02010-12-23 16:08:35 +0800246 vcpu->kvm->arch.audit_point = point;
Xiao Guangrong49edf872010-08-30 18:25:03 +0800247 audit_all_active_sps(vcpu->kvm);
Xiao Guangrongeb259182010-08-30 18:25:51 +0800248 audit_vcpu_spte(vcpu);
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800249}
250
251static bool mmu_audit;
252
253static void mmu_audit_enable(void)
254{
255 int ret;
256
257 if (mmu_audit)
258 return;
259
260 ret = register_trace_kvm_mmu_audit(kvm_mmu_audit, NULL);
261 WARN_ON(ret);
262
263 mmu_audit = true;
264}
265
266static void mmu_audit_disable(void)
267{
268 if (!mmu_audit)
269 return;
270
271 unregister_trace_kvm_mmu_audit(kvm_mmu_audit, NULL);
272 tracepoint_synchronize_unregister();
273 mmu_audit = false;
274}
275
276static int mmu_audit_set(const char *val, const struct kernel_param *kp)
277{
278 int ret;
279 unsigned long enable;
280
281 ret = strict_strtoul(val, 10, &enable);
282 if (ret < 0)
283 return -EINVAL;
284
285 switch (enable) {
286 case 0:
287 mmu_audit_disable();
288 break;
289 case 1:
290 mmu_audit_enable();
291 break;
292 default:
293 return -EINVAL;
294 }
295
296 return 0;
297}
298
299static struct kernel_param_ops audit_param_ops = {
300 .set = mmu_audit_set,
301 .get = param_get_bool,
302};
303
304module_param_cb(mmu_audit, &audit_param_ops, &mmu_audit, 0644);