blob: 2460a265be235e6adbab8c35ec27c79644dcf3e0 [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 }
Xiao Guangrongeb259182010-08-30 18:25:51 +0800102 }
103
104 if (!is_shadow_present_pte(*sptep) || !is_last_spte(*sptep, level))
105 return;
106
107 gfn = kvm_mmu_page_get_gfn(sp, sptep - sp->spt);
108 pfn = gfn_to_pfn_atomic(vcpu->kvm, gfn);
109
110 if (is_error_pfn(pfn)) {
111 kvm_release_pfn_clean(pfn);
112 return;
113 }
114
115 hpa = pfn << PAGE_SHIFT;
116 if ((*sptep & PT64_BASE_ADDR_MASK) != hpa)
Xiao Guangrongb034cf02010-12-23 16:08:35 +0800117 audit_printk(vcpu->kvm, "levels %d pfn %llx hpa %llx "
118 "ent %llxn", vcpu->arch.mmu.root_level, pfn,
119 hpa, *sptep);
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800120}
121
Xiao Guangrongeb259182010-08-30 18:25:51 +0800122static void inspect_spte_has_rmap(struct kvm *kvm, u64 *sptep)
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800123{
124 unsigned long *rmapp;
125 struct kvm_mmu_page *rev_sp;
126 gfn_t gfn;
127
128
129 rev_sp = page_header(__pa(sptep));
130 gfn = kvm_mmu_page_get_gfn(rev_sp, sptep - rev_sp->spt);
131
132 if (!gfn_to_memslot(kvm, gfn)) {
133 if (!printk_ratelimit())
134 return;
Xiao Guangrongb034cf02010-12-23 16:08:35 +0800135 audit_printk(kvm, "no memslot for gfn %llx\n", gfn);
136 audit_printk(kvm, "index %ld of sp (gfn=%llx)\n",
Xiao Guangrong38904e12010-09-27 18:07:59 +0800137 (long int)(sptep - rev_sp->spt), rev_sp->gfn);
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800138 dump_stack();
139 return;
140 }
141
142 rmapp = gfn_to_rmap(kvm, gfn, rev_sp->role.level);
143 if (!*rmapp) {
144 if (!printk_ratelimit())
145 return;
Xiao Guangrongb034cf02010-12-23 16:08:35 +0800146 audit_printk(kvm, "no rmap for writable spte %llx\n",
147 *sptep);
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800148 dump_stack();
149 }
150}
151
Xiao Guangrongeb259182010-08-30 18:25:51 +0800152static void audit_sptes_have_rmaps(struct kvm_vcpu *vcpu, u64 *sptep, int level)
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800153{
Xiao Guangrongeb259182010-08-30 18:25:51 +0800154 if (is_shadow_present_pte(*sptep) && is_last_spte(*sptep, level))
155 inspect_spte_has_rmap(vcpu->kvm, sptep);
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800156}
157
Xiao Guangrong69030742010-09-27 18:09:29 +0800158static void audit_spte_after_sync(struct kvm_vcpu *vcpu, u64 *sptep, int level)
159{
160 struct kvm_mmu_page *sp = page_header(__pa(sptep));
161
Xiao Guangrongb034cf02010-12-23 16:08:35 +0800162 if (vcpu->kvm->arch.audit_point == AUDIT_POST_SYNC && sp->unsync)
163 audit_printk(vcpu->kvm, "meet unsync sp(%p) after sync "
164 "root.\n", sp);
Xiao Guangrong69030742010-09-27 18:09:29 +0800165}
166
Xiao Guangrong49edf872010-08-30 18:25:03 +0800167static void check_mappings_rmap(struct kvm *kvm, struct kvm_mmu_page *sp)
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800168{
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800169 int i;
170
Xiao Guangrong49edf872010-08-30 18:25:03 +0800171 if (sp->role.level != PT_PAGE_TABLE_LEVEL)
172 return;
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800173
Xiao Guangrong49edf872010-08-30 18:25:03 +0800174 for (i = 0; i < PT64_ENT_PER_PAGE; ++i) {
175 if (!is_rmap_spte(sp->spt[i]))
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800176 continue;
177
Xiao Guangrong49edf872010-08-30 18:25:03 +0800178 inspect_spte_has_rmap(kvm, sp->spt + i);
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800179 }
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800180}
181
Xiao Guangrong69030742010-09-27 18:09:29 +0800182static void audit_write_protection(struct kvm *kvm, struct kvm_mmu_page *sp)
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800183{
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800184 struct kvm_memory_slot *slot;
185 unsigned long *rmapp;
186 u64 *spte;
187
Xiao Guangrong49edf872010-08-30 18:25:03 +0800188 if (sp->role.direct || sp->unsync || sp->role.invalid)
189 return;
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800190
Xiao Guangrong49edf872010-08-30 18:25:03 +0800191 slot = gfn_to_memslot(kvm, sp->gfn);
192 rmapp = &slot->rmap[sp->gfn - slot->base_gfn];
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800193
Xiao Guangrong49edf872010-08-30 18:25:03 +0800194 spte = rmap_next(kvm, rmapp, NULL);
195 while (spte) {
196 if (is_writable_pte(*spte))
Xiao Guangrongb034cf02010-12-23 16:08:35 +0800197 audit_printk(kvm, "shadow page has writable "
198 "mappings: gfn %llx role %x\n",
199 sp->gfn, sp->role.word);
Xiao Guangrong49edf872010-08-30 18:25:03 +0800200 spte = rmap_next(kvm, rmapp, spte);
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800201 }
202}
203
Xiao Guangrong49edf872010-08-30 18:25:03 +0800204static void audit_sp(struct kvm *kvm, struct kvm_mmu_page *sp)
205{
206 check_mappings_rmap(kvm, sp);
207 audit_write_protection(kvm, sp);
208}
209
210static void audit_all_active_sps(struct kvm *kvm)
211{
212 walk_all_active_sps(kvm, audit_sp);
213}
214
Xiao Guangrongeb259182010-08-30 18:25:51 +0800215static void audit_spte(struct kvm_vcpu *vcpu, u64 *sptep, int level)
216{
217 audit_sptes_have_rmaps(vcpu, sptep, level);
218 audit_mappings(vcpu, sptep, level);
Xiao Guangrong69030742010-09-27 18:09:29 +0800219 audit_spte_after_sync(vcpu, sptep, level);
Xiao Guangrongeb259182010-08-30 18:25:51 +0800220}
221
222static void audit_vcpu_spte(struct kvm_vcpu *vcpu)
223{
224 mmu_spte_walk(vcpu, audit_spte);
225}
226
Xiao Guangrong38904e12010-09-27 18:07:59 +0800227static void kvm_mmu_audit(void *ignore, struct kvm_vcpu *vcpu, int point)
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800228{
Xiao Guangrong30644b92010-08-30 18:26:33 +0800229 static DEFINE_RATELIMIT_STATE(ratelimit_state, 5 * HZ, 10);
230
231 if (!__ratelimit(&ratelimit_state))
232 return;
233
Xiao Guangrongb034cf02010-12-23 16:08:35 +0800234 vcpu->kvm->arch.audit_point = point;
Xiao Guangrong49edf872010-08-30 18:25:03 +0800235 audit_all_active_sps(vcpu->kvm);
Xiao Guangrongeb259182010-08-30 18:25:51 +0800236 audit_vcpu_spte(vcpu);
Xiao Guangrong2f4f3372010-08-30 18:24:10 +0800237}
238
239static bool mmu_audit;
240
241static void mmu_audit_enable(void)
242{
243 int ret;
244
245 if (mmu_audit)
246 return;
247
248 ret = register_trace_kvm_mmu_audit(kvm_mmu_audit, NULL);
249 WARN_ON(ret);
250
251 mmu_audit = true;
252}
253
254static void mmu_audit_disable(void)
255{
256 if (!mmu_audit)
257 return;
258
259 unregister_trace_kvm_mmu_audit(kvm_mmu_audit, NULL);
260 tracepoint_synchronize_unregister();
261 mmu_audit = false;
262}
263
264static int mmu_audit_set(const char *val, const struct kernel_param *kp)
265{
266 int ret;
267 unsigned long enable;
268
269 ret = strict_strtoul(val, 10, &enable);
270 if (ret < 0)
271 return -EINVAL;
272
273 switch (enable) {
274 case 0:
275 mmu_audit_disable();
276 break;
277 case 1:
278 mmu_audit_enable();
279 break;
280 default:
281 return -EINVAL;
282 }
283
284 return 0;
285}
286
287static struct kernel_param_ops audit_param_ops = {
288 .set = mmu_audit_set,
289 .get = param_get_bool,
290};
291
292module_param_cb(mmu_audit, &audit_param_ops, &mmu_audit, 0644);