blob: 6a92d9111b64c002d4acd31a2daeac6445b00885 [file] [log] [blame]
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +02001/* Support for MMIO probes.
2 * Benfit many code from kprobes
3 * (C) 2002 Louis Zhuang <louis.zhuang@intel.com>.
4 * 2007 Alexander Eichner
5 * 2008 Pekka Paalanen <pq@iki.fi>
6 */
7
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +02008#include <linux/list.h>
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +02009#include <linux/spinlock.h>
10#include <linux/hash.h>
11#include <linux/init.h>
12#include <linux/module.h>
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +020013#include <linux/kernel.h>
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +020014#include <linux/uaccess.h>
15#include <linux/ptrace.h>
16#include <linux/preempt.h>
Pekka Paalanenf5136382008-05-12 21:20:57 +020017#include <linux/percpu.h>
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +020018#include <linux/kdebug.h>
Pekka Paalanend61fc442008-05-12 21:20:57 +020019#include <linux/mutex.h>
Pekka Paalanen970e6fa2008-05-12 21:21:03 +020020#include <linux/io.h>
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +020021#include <asm/cacheflush.h>
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +020022#include <asm/tlbflush.h>
Pekka Paalanen970e6fa2008-05-12 21:21:03 +020023#include <linux/errno.h>
Pekka Paalanen13829532008-05-12 21:20:58 +020024#include <asm/debugreg.h>
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +020025#include <linux/mmiotrace.h>
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +020026
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +020027#define KMMIO_PAGE_HASH_BITS 4
28#define KMMIO_PAGE_TABLE_SIZE (1 << KMMIO_PAGE_HASH_BITS)
29
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +020030struct kmmio_fault_page {
31 struct list_head list;
32 struct kmmio_fault_page *release_next;
33 unsigned long page; /* location of the fault page */
34
35 /*
36 * Number of times this page has been registered as a part
37 * of a probe. If zero, page is disarmed and this may be freed.
38 * Used only by writers (RCU).
39 */
40 int count;
41};
42
43struct kmmio_delayed_release {
44 struct rcu_head rcu;
45 struct kmmio_fault_page *release_list;
46};
47
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +020048struct kmmio_context {
49 struct kmmio_fault_page *fpage;
50 struct kmmio_probe *probe;
51 unsigned long saved_flags;
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +020052 unsigned long addr;
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +020053 int active;
54};
55
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +020056static DEFINE_SPINLOCK(kmmio_lock);
57
Pekka Paalanen13829532008-05-12 21:20:58 +020058/* Protected by kmmio_lock */
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +020059unsigned int kmmio_count;
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +020060
61/* Read-protected by RCU, write-protected by kmmio_lock. */
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +020062static struct list_head kmmio_page_table[KMMIO_PAGE_TABLE_SIZE];
63static LIST_HEAD(kmmio_probes);
64
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +020065static struct list_head *kmmio_page_list(unsigned long page)
66{
67 return &kmmio_page_table[hash_long(page, KMMIO_PAGE_HASH_BITS)];
68}
69
Pekka Paalanenf5136382008-05-12 21:20:57 +020070/* Accessed per-cpu */
71static DEFINE_PER_CPU(struct kmmio_context, kmmio_ctx);
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +020072
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +020073/*
74 * this is basically a dynamic stabbing problem:
75 * Could use the existing prio tree code or
76 * Possible better implementations:
77 * The Interval Skip List: A Data Structure for Finding All Intervals That
78 * Overlap a Point (might be simple)
79 * Space Efficient Dynamic Stabbing with Fast Queries - Mikkel Thorup
80 */
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +020081/* Get the kmmio at this addr (if any). You must be holding RCU read lock. */
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +020082static struct kmmio_probe *get_kmmio_probe(unsigned long addr)
83{
84 struct kmmio_probe *p;
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +020085 list_for_each_entry_rcu(p, &kmmio_probes, list) {
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +020086 if (addr >= p->addr && addr <= (p->addr + p->len))
87 return p;
88 }
89 return NULL;
90}
91
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +020092/* You must be holding RCU read lock. */
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +020093static struct kmmio_fault_page *get_kmmio_fault_page(unsigned long page)
94{
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +020095 struct list_head *head;
96 struct kmmio_fault_page *p;
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +020097
98 page &= PAGE_MASK;
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +020099 head = kmmio_page_list(page);
100 list_for_each_entry_rcu(p, head, list) {
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200101 if (p->page == page)
102 return p;
103 }
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200104 return NULL;
105}
106
Pekka Paalanen13829532008-05-12 21:20:58 +0200107static void set_page_present(unsigned long addr, bool present, int *pglevel)
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200108{
Pekka Paalanen13829532008-05-12 21:20:58 +0200109 pteval_t pteval;
110 pmdval_t pmdval;
Pekka Paalanen75bb8832008-05-12 21:20:56 +0200111 int level;
Pekka Paalanen13829532008-05-12 21:20:58 +0200112 pmd_t *pmd;
113 pte_t *pte = lookup_address(addr, &level);
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200114
Pekka Paalanen75bb8832008-05-12 21:20:56 +0200115 if (!pte) {
Pekka Paalanen13829532008-05-12 21:20:58 +0200116 pr_err("kmmio: no pte for page 0x%08lx\n", addr);
Pekka Paalanen75bb8832008-05-12 21:20:56 +0200117 return;
118 }
119
Pekka Paalanen13829532008-05-12 21:20:58 +0200120 if (pglevel)
121 *pglevel = level;
122
123 switch (level) {
124 case PG_LEVEL_2M:
125 pmd = (pmd_t *)pte;
126 pmdval = pmd_val(*pmd) & ~_PAGE_PRESENT;
127 if (present)
128 pmdval |= _PAGE_PRESENT;
129 set_pmd(pmd, __pmd(pmdval));
130 break;
131
132 case PG_LEVEL_4K:
133 pteval = pte_val(*pte) & ~_PAGE_PRESENT;
134 if (present)
135 pteval |= _PAGE_PRESENT;
136 set_pte_atomic(pte, __pte(pteval));
137 break;
138
139 default:
140 pr_err("kmmio: unexpected page level 0x%x.\n", level);
141 return;
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200142 }
143
Pekka Paalanen13829532008-05-12 21:20:58 +0200144 __flush_tlb_one(addr);
145}
Pekka Paalanen75bb8832008-05-12 21:20:56 +0200146
Pekka Paalanen13829532008-05-12 21:20:58 +0200147/** Mark the given page as not present. Access to it will trigger a fault. */
148static void arm_kmmio_fault_page(unsigned long page, int *page_level)
149{
150 set_page_present(page & PAGE_MASK, false, page_level);
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200151}
152
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200153/** Mark the given page as present. */
Pekka Paalanen75bb8832008-05-12 21:20:56 +0200154static void disarm_kmmio_fault_page(unsigned long page, int *page_level)
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200155{
Pekka Paalanen13829532008-05-12 21:20:58 +0200156 set_page_present(page & PAGE_MASK, true, page_level);
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200157}
158
159/*
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200160 * This is being called from do_page_fault().
161 *
162 * We may be in an interrupt or a critical section. Also prefecthing may
163 * trigger a page fault. We may be in the middle of process switch.
164 * We cannot take any locks, because we could be executing especially
165 * within a kmmio critical section.
166 *
167 * Local interrupts are disabled, so preemption cannot happen.
168 * Do not enable interrupts, do not sleep, and watch out for other CPUs.
169 */
170/*
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200171 * Interrupts are disabled on entry as trap3 is an interrupt gate
172 * and they remain disabled thorough out this function.
173 */
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200174int kmmio_handler(struct pt_regs *regs, unsigned long addr)
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200175{
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200176 struct kmmio_context *ctx;
177 struct kmmio_fault_page *faultpage;
Pekka Paalanen13829532008-05-12 21:20:58 +0200178 int ret = 0; /* default to fault not handled */
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200179
180 /*
181 * Preemption is now disabled to prevent process switch during
182 * single stepping. We can only handle one active kmmio trace
183 * per cpu, so ensure that we finish it before something else
Pekka Paalanend61fc442008-05-12 21:20:57 +0200184 * gets to run. We also hold the RCU read lock over single
185 * stepping to avoid looking up the probe and kmmio_fault_page
186 * again.
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200187 */
188 preempt_disable();
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200189 rcu_read_lock();
Pekka Paalanend61fc442008-05-12 21:20:57 +0200190
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200191 faultpage = get_kmmio_fault_page(addr);
192 if (!faultpage) {
193 /*
194 * Either this page fault is not caused by kmmio, or
195 * another CPU just pulled the kmmio probe from under
Pekka Paalanen13829532008-05-12 21:20:58 +0200196 * our feet. The latter case should not be possible.
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200197 */
198 goto no_kmmio;
199 }
200
201 ctx = &get_cpu_var(kmmio_ctx);
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200202 if (ctx->active) {
Pekka Paalanen13829532008-05-12 21:20:58 +0200203 disarm_kmmio_fault_page(faultpage->page, NULL);
204 if (addr == ctx->addr) {
205 /*
206 * On SMP we sometimes get recursive probe hits on the
207 * same address. Context is already saved, fall out.
208 */
209 pr_debug("kmmio: duplicate probe hit on CPU %d, for "
210 "address 0x%08lx.\n",
211 smp_processor_id(), addr);
212 ret = 1;
213 goto no_kmmio_ctx;
214 }
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200215 /*
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200216 * Prevent overwriting already in-flight context.
Pekka Paalanen13829532008-05-12 21:20:58 +0200217 * This should not happen, let's hope disarming at least
218 * prevents a panic.
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200219 */
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200220 pr_emerg("kmmio: recursive probe hit on CPU %d, "
221 "for address 0x%08lx. Ignoring.\n",
Pekka Paalanenf5136382008-05-12 21:20:57 +0200222 smp_processor_id(), addr);
Pekka Paalanen13829532008-05-12 21:20:58 +0200223 pr_emerg("kmmio: previous hit was at 0x%08lx.\n",
224 ctx->addr);
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200225 goto no_kmmio_ctx;
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200226 }
227 ctx->active++;
228
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200229 ctx->fpage = faultpage;
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200230 ctx->probe = get_kmmio_probe(addr);
Ingo Molnar49023162008-05-12 21:20:58 +0200231 ctx->saved_flags = (regs->flags & (X86_EFLAGS_TF | X86_EFLAGS_IF));
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200232 ctx->addr = addr;
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200233
234 if (ctx->probe && ctx->probe->pre_handler)
235 ctx->probe->pre_handler(ctx->probe, regs, addr);
236
Pekka Paalanend61fc442008-05-12 21:20:57 +0200237 /*
238 * Enable single-stepping and disable interrupts for the faulting
239 * context. Local interrupts must not get enabled during stepping.
240 */
Ingo Molnar49023162008-05-12 21:20:58 +0200241 regs->flags |= X86_EFLAGS_TF;
242 regs->flags &= ~X86_EFLAGS_IF;
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200243
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200244 /* Now we set present bit in PTE and single step. */
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200245 disarm_kmmio_fault_page(ctx->fpage->page, NULL);
246
Pekka Paalanend61fc442008-05-12 21:20:57 +0200247 /*
248 * If another cpu accesses the same page while we are stepping,
249 * the access will not be caught. It will simply succeed and the
250 * only downside is we lose the event. If this becomes a problem,
251 * the user should drop to single cpu before tracing.
252 */
253
Pekka Paalanenf5136382008-05-12 21:20:57 +0200254 put_cpu_var(kmmio_ctx);
Pekka Paalanen13829532008-05-12 21:20:58 +0200255 return 1; /* fault handled */
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200256
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200257no_kmmio_ctx:
Pekka Paalanenf5136382008-05-12 21:20:57 +0200258 put_cpu_var(kmmio_ctx);
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200259no_kmmio:
260 rcu_read_unlock();
261 preempt_enable_no_resched();
Pekka Paalanen13829532008-05-12 21:20:58 +0200262 return ret;
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200263}
264
265/*
266 * Interrupts are disabled on entry as trap1 is an interrupt gate
267 * and they remain disabled thorough out this function.
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200268 * This must always get called as the pair to kmmio_handler().
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200269 */
270static int post_kmmio_handler(unsigned long condition, struct pt_regs *regs)
271{
Pekka Paalanenf5136382008-05-12 21:20:57 +0200272 int ret = 0;
273 struct kmmio_context *ctx = &get_cpu_var(kmmio_ctx);
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200274
Pekka Paalanen13829532008-05-12 21:20:58 +0200275 if (!ctx->active) {
276 pr_debug("kmmio: spurious debug trap on CPU %d.\n",
277 smp_processor_id());
Pekka Paalanenf5136382008-05-12 21:20:57 +0200278 goto out;
Pekka Paalanen13829532008-05-12 21:20:58 +0200279 }
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200280
281 if (ctx->probe && ctx->probe->post_handler)
282 ctx->probe->post_handler(ctx->probe, condition, regs);
283
Pekka Paalanend61fc442008-05-12 21:20:57 +0200284 arm_kmmio_fault_page(ctx->fpage->page, NULL);
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200285
Ingo Molnar49023162008-05-12 21:20:58 +0200286 regs->flags &= ~X86_EFLAGS_TF;
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200287 regs->flags |= ctx->saved_flags;
288
289 /* These were acquired in kmmio_handler(). */
290 ctx->active--;
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200291 BUG_ON(ctx->active);
Pekka Paalanend61fc442008-05-12 21:20:57 +0200292 rcu_read_unlock();
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200293 preempt_enable_no_resched();
294
295 /*
296 * if somebody else is singlestepping across a probe point, flags
297 * will have TF set, in which case, continue the remaining processing
298 * of do_debug, as if this is not a probe hit.
299 */
Ingo Molnar49023162008-05-12 21:20:58 +0200300 if (!(regs->flags & X86_EFLAGS_TF))
Pekka Paalanenf5136382008-05-12 21:20:57 +0200301 ret = 1;
Pekka Paalanenf5136382008-05-12 21:20:57 +0200302out:
303 put_cpu_var(kmmio_ctx);
304 return ret;
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200305}
306
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200307/* You must be holding kmmio_lock. */
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200308static int add_kmmio_fault_page(unsigned long page)
309{
310 struct kmmio_fault_page *f;
311
312 page &= PAGE_MASK;
313 f = get_kmmio_fault_page(page);
314 if (f) {
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200315 if (!f->count)
316 arm_kmmio_fault_page(f->page, NULL);
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200317 f->count++;
318 return 0;
319 }
320
321 f = kmalloc(sizeof(*f), GFP_ATOMIC);
322 if (!f)
323 return -1;
324
325 f->count = 1;
326 f->page = page;
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200327 list_add_rcu(&f->list, kmmio_page_list(f->page));
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200328
329 arm_kmmio_fault_page(f->page, NULL);
330
331 return 0;
332}
333
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200334/* You must be holding kmmio_lock. */
335static void release_kmmio_fault_page(unsigned long page,
336 struct kmmio_fault_page **release_list)
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200337{
338 struct kmmio_fault_page *f;
339
340 page &= PAGE_MASK;
341 f = get_kmmio_fault_page(page);
342 if (!f)
343 return;
344
345 f->count--;
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200346 BUG_ON(f->count < 0);
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200347 if (!f->count) {
348 disarm_kmmio_fault_page(f->page, NULL);
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200349 f->release_next = *release_list;
350 *release_list = f;
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200351 }
352}
353
354int register_kmmio_probe(struct kmmio_probe *p)
355{
Pekka Paalanend61fc442008-05-12 21:20:57 +0200356 unsigned long flags;
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200357 int ret = 0;
358 unsigned long size = 0;
359
Pekka Paalanend61fc442008-05-12 21:20:57 +0200360 spin_lock_irqsave(&kmmio_lock, flags);
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200361 if (get_kmmio_probe(p->addr)) {
362 ret = -EEXIST;
363 goto out;
364 }
Pekka Paalanend61fc442008-05-12 21:20:57 +0200365 kmmio_count++;
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200366 list_add_rcu(&p->list, &kmmio_probes);
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200367 while (size < p->len) {
368 if (add_kmmio_fault_page(p->addr + size))
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200369 pr_err("kmmio: Unable to set page fault.\n");
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200370 size += PAGE_SIZE;
371 }
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200372out:
Pekka Paalanend61fc442008-05-12 21:20:57 +0200373 spin_unlock_irqrestore(&kmmio_lock, flags);
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200374 /*
375 * XXX: What should I do here?
376 * Here was a call to global_flush_tlb(), but it does not exist
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200377 * anymore. It seems it's not needed after all.
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200378 */
379 return ret;
380}
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200381EXPORT_SYMBOL(register_kmmio_probe);
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200382
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200383static void rcu_free_kmmio_fault_pages(struct rcu_head *head)
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200384{
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200385 struct kmmio_delayed_release *dr = container_of(
386 head,
387 struct kmmio_delayed_release,
388 rcu);
389 struct kmmio_fault_page *p = dr->release_list;
390 while (p) {
391 struct kmmio_fault_page *next = p->release_next;
392 BUG_ON(p->count);
393 kfree(p);
394 p = next;
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200395 }
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200396 kfree(dr);
397}
398
399static void remove_kmmio_fault_pages(struct rcu_head *head)
400{
401 struct kmmio_delayed_release *dr = container_of(
402 head,
403 struct kmmio_delayed_release,
404 rcu);
405 struct kmmio_fault_page *p = dr->release_list;
406 struct kmmio_fault_page **prevp = &dr->release_list;
407 unsigned long flags;
408 spin_lock_irqsave(&kmmio_lock, flags);
409 while (p) {
410 if (!p->count)
411 list_del_rcu(&p->list);
412 else
413 *prevp = p->release_next;
414 prevp = &p->release_next;
415 p = p->release_next;
416 }
417 spin_unlock_irqrestore(&kmmio_lock, flags);
418 /* This is the real RCU destroy call. */
419 call_rcu(&dr->rcu, rcu_free_kmmio_fault_pages);
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200420}
421
422/*
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200423 * Remove a kmmio probe. You have to synchronize_rcu() before you can be
Pekka Paalanend61fc442008-05-12 21:20:57 +0200424 * sure that the callbacks will not be called anymore. Only after that
425 * you may actually release your struct kmmio_probe.
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200426 *
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200427 * Unregistering a kmmio fault page has three steps:
428 * 1. release_kmmio_fault_page()
429 * Disarm the page, wait a grace period to let all faults finish.
430 * 2. remove_kmmio_fault_pages()
431 * Remove the pages from kmmio_page_table.
432 * 3. rcu_free_kmmio_fault_pages()
433 * Actally free the kmmio_fault_page structs as with RCU.
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200434 */
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200435void unregister_kmmio_probe(struct kmmio_probe *p)
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200436{
Pekka Paalanend61fc442008-05-12 21:20:57 +0200437 unsigned long flags;
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200438 unsigned long size = 0;
439 struct kmmio_fault_page *release_list = NULL;
440 struct kmmio_delayed_release *drelease;
441
Pekka Paalanend61fc442008-05-12 21:20:57 +0200442 spin_lock_irqsave(&kmmio_lock, flags);
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200443 while (size < p->len) {
444 release_kmmio_fault_page(p->addr + size, &release_list);
445 size += PAGE_SIZE;
446 }
447 list_del_rcu(&p->list);
448 kmmio_count--;
Pekka Paalanend61fc442008-05-12 21:20:57 +0200449 spin_unlock_irqrestore(&kmmio_lock, flags);
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200450
451 drelease = kmalloc(sizeof(*drelease), GFP_ATOMIC);
452 if (!drelease) {
453 pr_crit("kmmio: leaking kmmio_fault_page objects.\n");
454 return;
455 }
456 drelease->release_list = release_list;
457
458 /*
459 * This is not really RCU here. We have just disarmed a set of
460 * pages so that they cannot trigger page faults anymore. However,
461 * we cannot remove the pages from kmmio_page_table,
462 * because a probe hit might be in flight on another CPU. The
463 * pages are collected into a list, and they will be removed from
464 * kmmio_page_table when it is certain that no probe hit related to
465 * these pages can be in flight. RCU grace period sounds like a
466 * good choice.
467 *
468 * If we removed the pages too early, kmmio page fault handler might
469 * not find the respective kmmio_fault_page and determine it's not
470 * a kmmio fault, when it actually is. This would lead to madness.
471 */
472 call_rcu(&drelease->rcu, remove_kmmio_fault_pages);
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200473}
Pekka Paalanen0fd0e3d2008-05-12 21:20:57 +0200474EXPORT_SYMBOL(unregister_kmmio_probe);
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200475
476static int kmmio_die_notifier(struct notifier_block *nb, unsigned long val,
477 void *args)
478{
479 struct die_args *arg = args;
480
Pekka Paalanen13829532008-05-12 21:20:58 +0200481 if (val == DIE_DEBUG && (arg->err & DR_STEP))
Pekka Paalanen8b7d89d2008-05-12 21:20:56 +0200482 if (post_kmmio_handler(arg->err, arg->regs) == 1)
483 return NOTIFY_STOP;
484
485 return NOTIFY_DONE;
486}
Pekka Paalanen13829532008-05-12 21:20:58 +0200487
488static struct notifier_block nb_die = {
489 .notifier_call = kmmio_die_notifier
490};
491
492static int __init init_kmmio(void)
493{
494 int i;
495 for (i = 0; i < KMMIO_PAGE_TABLE_SIZE; i++)
496 INIT_LIST_HEAD(&kmmio_page_table[i]);
497 return register_die_notifier(&nb_die);
498}
499fs_initcall(init_kmmio); /* should be before device_initcall() */