VT notifier fix for VT switch
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / kernel / kprobes.c
CommitLineData
1da177e4
LT
1/*
2 * Kernel Probes (KProbes)
3 * kernel/kprobes.c
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 *
19 * Copyright (C) IBM Corporation, 2002, 2004
20 *
21 * 2002-Oct Created by Vamsi Krishna S <vamsi_krishna@in.ibm.com> Kernel
22 * Probes initial implementation (includes suggestions from
23 * Rusty Russell).
24 * 2004-Aug Updated by Prasanna S Panchamukhi <prasanna@in.ibm.com> with
25 * hlists and exceptions notifier as suggested by Andi Kleen.
26 * 2004-July Suparna Bhattacharya <suparna@in.ibm.com> added jumper probes
27 * interface to access function arguments.
28 * 2004-Sep Prasanna S Panchamukhi <prasanna@in.ibm.com> Changed Kprobes
29 * exceptions notifier to be first on the priority list.
b94cce92
HN
30 * 2005-May Hien Nguyen <hien@us.ibm.com>, Jim Keniston
31 * <jkenisto@us.ibm.com> and Prasanna S Panchamukhi
32 * <prasanna@in.ibm.com> added function-return probes.
1da177e4
LT
33 */
34#include <linux/kprobes.h>
1da177e4
LT
35#include <linux/hash.h>
36#include <linux/init.h>
4e57b681 37#include <linux/slab.h>
e3869792 38#include <linux/stddef.h>
1da177e4 39#include <linux/module.h>
9ec4b1f3 40#include <linux/moduleloader.h>
3a872d89 41#include <linux/kallsyms.h>
b4c6c34a 42#include <linux/freezer.h>
346fd59b
SD
43#include <linux/seq_file.h>
44#include <linux/debugfs.h>
1eeb66a1 45#include <linux/kdebug.h>
bf8f6e5b 46
d0aaff97 47#include <asm-generic/sections.h>
1da177e4
LT
48#include <asm/cacheflush.h>
49#include <asm/errno.h>
bf8f6e5b 50#include <asm/uaccess.h>
1da177e4
LT
51
52#define KPROBE_HASH_BITS 6
53#define KPROBE_TABLE_SIZE (1 << KPROBE_HASH_BITS)
54
3a872d89
AM
55
56/*
57 * Some oddball architectures like 64bit powerpc have function descriptors
58 * so this must be overridable.
59 */
60#ifndef kprobe_lookup_name
61#define kprobe_lookup_name(name, addr) \
62 addr = ((kprobe_opcode_t *)(kallsyms_lookup_name(name)))
63#endif
64
1da177e4 65static struct hlist_head kprobe_table[KPROBE_TABLE_SIZE];
b94cce92 66static struct hlist_head kretprobe_inst_table[KPROBE_TABLE_SIZE];
1da177e4 67
bf8f6e5b
AM
68/* NOTE: change this value only with kprobe_mutex held */
69static bool kprobe_enabled;
70
7a7d1cf9 71DEFINE_MUTEX(kprobe_mutex); /* Protects kprobe_table */
3516a460 72DEFINE_SPINLOCK(kretprobe_lock); /* Protects kretprobe_inst_table */
e6584523 73static DEFINE_PER_CPU(struct kprobe *, kprobe_instance) = NULL;
1da177e4 74
2d14e39d 75#ifdef __ARCH_WANT_KPROBES_INSN_SLOT
9ec4b1f3
AM
76/*
77 * kprobe->ainsn.insn points to the copy of the instruction to be
78 * single-stepped. x86_64, POWER4 and above have no-exec support and
79 * stepping on the instruction on a vmalloced/kmalloced/data page
80 * is a recipe for disaster
81 */
82#define INSNS_PER_PAGE (PAGE_SIZE/(MAX_INSN_SIZE * sizeof(kprobe_opcode_t)))
83
84struct kprobe_insn_page {
85 struct hlist_node hlist;
86 kprobe_opcode_t *insns; /* Page of instruction slots */
87 char slot_used[INSNS_PER_PAGE];
88 int nused;
b4c6c34a 89 int ngarbage;
9ec4b1f3
AM
90};
91
ab40c5c6
MH
92enum kprobe_slot_state {
93 SLOT_CLEAN = 0,
94 SLOT_DIRTY = 1,
95 SLOT_USED = 2,
96};
97
9ec4b1f3 98static struct hlist_head kprobe_insn_pages;
b4c6c34a
MH
99static int kprobe_garbage_slots;
100static int collect_garbage_slots(void);
101
102static int __kprobes check_safety(void)
103{
104 int ret = 0;
105#if defined(CONFIG_PREEMPT) && defined(CONFIG_PM)
106 ret = freeze_processes();
107 if (ret == 0) {
108 struct task_struct *p, *q;
109 do_each_thread(p, q) {
110 if (p != current && p->state == TASK_RUNNING &&
111 p->pid != 0) {
112 printk("Check failed: %s is running\n",p->comm);
113 ret = -1;
114 goto loop_end;
115 }
116 } while_each_thread(p, q);
117 }
118loop_end:
119 thaw_processes();
120#else
121 synchronize_sched();
122#endif
123 return ret;
124}
9ec4b1f3
AM
125
126/**
127 * get_insn_slot() - Find a slot on an executable page for an instruction.
128 * We allocate an executable page if there's no room on existing ones.
129 */
d0aaff97 130kprobe_opcode_t __kprobes *get_insn_slot(void)
9ec4b1f3
AM
131{
132 struct kprobe_insn_page *kip;
133 struct hlist_node *pos;
134
6f716acd 135 retry:
b0bb5016 136 hlist_for_each_entry(kip, pos, &kprobe_insn_pages, hlist) {
9ec4b1f3
AM
137 if (kip->nused < INSNS_PER_PAGE) {
138 int i;
139 for (i = 0; i < INSNS_PER_PAGE; i++) {
ab40c5c6
MH
140 if (kip->slot_used[i] == SLOT_CLEAN) {
141 kip->slot_used[i] = SLOT_USED;
9ec4b1f3
AM
142 kip->nused++;
143 return kip->insns + (i * MAX_INSN_SIZE);
144 }
145 }
146 /* Surprise! No unused slots. Fix kip->nused. */
147 kip->nused = INSNS_PER_PAGE;
148 }
149 }
150
b4c6c34a
MH
151 /* If there are any garbage slots, collect it and try again. */
152 if (kprobe_garbage_slots && collect_garbage_slots() == 0) {
153 goto retry;
154 }
155 /* All out of space. Need to allocate a new page. Use slot 0. */
9ec4b1f3 156 kip = kmalloc(sizeof(struct kprobe_insn_page), GFP_KERNEL);
6f716acd 157 if (!kip)
9ec4b1f3 158 return NULL;
9ec4b1f3
AM
159
160 /*
161 * Use module_alloc so this page is within +/- 2GB of where the
162 * kernel image and loaded module images reside. This is required
163 * so x86_64 can correctly handle the %rip-relative fixups.
164 */
165 kip->insns = module_alloc(PAGE_SIZE);
166 if (!kip->insns) {
167 kfree(kip);
168 return NULL;
169 }
170 INIT_HLIST_NODE(&kip->hlist);
171 hlist_add_head(&kip->hlist, &kprobe_insn_pages);
ab40c5c6
MH
172 memset(kip->slot_used, SLOT_CLEAN, INSNS_PER_PAGE);
173 kip->slot_used[0] = SLOT_USED;
9ec4b1f3 174 kip->nused = 1;
b4c6c34a 175 kip->ngarbage = 0;
9ec4b1f3
AM
176 return kip->insns;
177}
178
b4c6c34a
MH
179/* Return 1 if all garbages are collected, otherwise 0. */
180static int __kprobes collect_one_slot(struct kprobe_insn_page *kip, int idx)
181{
ab40c5c6 182 kip->slot_used[idx] = SLOT_CLEAN;
b4c6c34a
MH
183 kip->nused--;
184 if (kip->nused == 0) {
185 /*
186 * Page is no longer in use. Free it unless
187 * it's the last one. We keep the last one
188 * so as not to have to set it up again the
189 * next time somebody inserts a probe.
190 */
191 hlist_del(&kip->hlist);
192 if (hlist_empty(&kprobe_insn_pages)) {
193 INIT_HLIST_NODE(&kip->hlist);
194 hlist_add_head(&kip->hlist,
195 &kprobe_insn_pages);
196 } else {
197 module_free(NULL, kip->insns);
198 kfree(kip);
199 }
200 return 1;
201 }
202 return 0;
203}
204
205static int __kprobes collect_garbage_slots(void)
206{
207 struct kprobe_insn_page *kip;
208 struct hlist_node *pos, *next;
209
210 /* Ensure no-one is preepmted on the garbages */
211 if (check_safety() != 0)
212 return -EAGAIN;
213
b0bb5016 214 hlist_for_each_entry_safe(kip, pos, next, &kprobe_insn_pages, hlist) {
b4c6c34a 215 int i;
b4c6c34a
MH
216 if (kip->ngarbage == 0)
217 continue;
218 kip->ngarbage = 0; /* we will collect all garbages */
219 for (i = 0; i < INSNS_PER_PAGE; i++) {
ab40c5c6 220 if (kip->slot_used[i] == SLOT_DIRTY &&
b4c6c34a
MH
221 collect_one_slot(kip, i))
222 break;
223 }
224 }
225 kprobe_garbage_slots = 0;
226 return 0;
227}
228
229void __kprobes free_insn_slot(kprobe_opcode_t * slot, int dirty)
9ec4b1f3
AM
230{
231 struct kprobe_insn_page *kip;
232 struct hlist_node *pos;
233
b0bb5016 234 hlist_for_each_entry(kip, pos, &kprobe_insn_pages, hlist) {
9ec4b1f3
AM
235 if (kip->insns <= slot &&
236 slot < kip->insns + (INSNS_PER_PAGE * MAX_INSN_SIZE)) {
237 int i = (slot - kip->insns) / MAX_INSN_SIZE;
b4c6c34a 238 if (dirty) {
ab40c5c6 239 kip->slot_used[i] = SLOT_DIRTY;
b4c6c34a
MH
240 kip->ngarbage++;
241 } else {
242 collect_one_slot(kip, i);
9ec4b1f3 243 }
b4c6c34a 244 break;
9ec4b1f3
AM
245 }
246 }
6f716acd
CH
247
248 if (dirty && ++kprobe_garbage_slots > INSNS_PER_PAGE)
b4c6c34a 249 collect_garbage_slots();
9ec4b1f3 250}
2d14e39d 251#endif
9ec4b1f3 252
e6584523
AM
253/* We have preemption disabled.. so it is safe to use __ versions */
254static inline void set_kprobe_instance(struct kprobe *kp)
255{
256 __get_cpu_var(kprobe_instance) = kp;
257}
258
259static inline void reset_kprobe_instance(void)
260{
261 __get_cpu_var(kprobe_instance) = NULL;
262}
263
3516a460
AM
264/*
265 * This routine is called either:
49a2a1b8 266 * - under the kprobe_mutex - during kprobe_[un]register()
3516a460 267 * OR
d217d545 268 * - with preemption disabled - from arch/xxx/kernel/kprobes.c
3516a460 269 */
d0aaff97 270struct kprobe __kprobes *get_kprobe(void *addr)
1da177e4
LT
271{
272 struct hlist_head *head;
273 struct hlist_node *node;
3516a460 274 struct kprobe *p;
1da177e4
LT
275
276 head = &kprobe_table[hash_ptr(addr, KPROBE_HASH_BITS)];
3516a460 277 hlist_for_each_entry_rcu(p, node, head, hlist) {
1da177e4
LT
278 if (p->addr == addr)
279 return p;
280 }
281 return NULL;
282}
283
64f562c6
AM
284/*
285 * Aggregate handlers for multiple kprobes support - these handlers
286 * take care of invoking the individual kprobe handlers on p->list
287 */
d0aaff97 288static int __kprobes aggr_pre_handler(struct kprobe *p, struct pt_regs *regs)
64f562c6
AM
289{
290 struct kprobe *kp;
291
3516a460 292 list_for_each_entry_rcu(kp, &p->list, list) {
64f562c6 293 if (kp->pre_handler) {
e6584523 294 set_kprobe_instance(kp);
8b0914ea
PP
295 if (kp->pre_handler(kp, regs))
296 return 1;
64f562c6 297 }
e6584523 298 reset_kprobe_instance();
64f562c6
AM
299 }
300 return 0;
301}
302
d0aaff97
PP
303static void __kprobes aggr_post_handler(struct kprobe *p, struct pt_regs *regs,
304 unsigned long flags)
64f562c6
AM
305{
306 struct kprobe *kp;
307
3516a460 308 list_for_each_entry_rcu(kp, &p->list, list) {
64f562c6 309 if (kp->post_handler) {
e6584523 310 set_kprobe_instance(kp);
64f562c6 311 kp->post_handler(kp, regs, flags);
e6584523 312 reset_kprobe_instance();
64f562c6
AM
313 }
314 }
64f562c6
AM
315}
316
d0aaff97
PP
317static int __kprobes aggr_fault_handler(struct kprobe *p, struct pt_regs *regs,
318 int trapnr)
64f562c6 319{
e6584523
AM
320 struct kprobe *cur = __get_cpu_var(kprobe_instance);
321
64f562c6
AM
322 /*
323 * if we faulted "during" the execution of a user specified
324 * probe handler, invoke just that probe's fault handler
325 */
e6584523
AM
326 if (cur && cur->fault_handler) {
327 if (cur->fault_handler(cur, regs, trapnr))
64f562c6
AM
328 return 1;
329 }
330 return 0;
331}
332
d0aaff97 333static int __kprobes aggr_break_handler(struct kprobe *p, struct pt_regs *regs)
8b0914ea 334{
e6584523
AM
335 struct kprobe *cur = __get_cpu_var(kprobe_instance);
336 int ret = 0;
337
338 if (cur && cur->break_handler) {
339 if (cur->break_handler(cur, regs))
340 ret = 1;
8b0914ea 341 }
e6584523
AM
342 reset_kprobe_instance();
343 return ret;
8b0914ea
PP
344}
345
bf8d5c52
KA
346/* Walks the list and increments nmissed count for multiprobe case */
347void __kprobes kprobes_inc_nmissed_count(struct kprobe *p)
348{
349 struct kprobe *kp;
350 if (p->pre_handler != aggr_pre_handler) {
351 p->nmissed++;
352 } else {
353 list_for_each_entry_rcu(kp, &p->list, list)
354 kp->nmissed++;
355 }
356 return;
357}
358
3516a460 359/* Called with kretprobe_lock held */
99219a3f 360void __kprobes recycle_rp_inst(struct kretprobe_instance *ri,
361 struct hlist_head *head)
b94cce92
HN
362{
363 /* remove rp inst off the rprobe_inst_table */
364 hlist_del(&ri->hlist);
365 if (ri->rp) {
366 /* remove rp inst off the used list */
367 hlist_del(&ri->uflist);
368 /* put rp inst back onto the free list */
369 INIT_HLIST_NODE(&ri->uflist);
370 hlist_add_head(&ri->uflist, &ri->rp->free_instances);
371 } else
372 /* Unregistering */
99219a3f 373 hlist_add_head(&ri->hlist, head);
b94cce92
HN
374}
375
d0aaff97 376struct hlist_head __kprobes *kretprobe_inst_table_head(struct task_struct *tsk)
b94cce92
HN
377{
378 return &kretprobe_inst_table[hash_ptr(tsk, KPROBE_HASH_BITS)];
379}
380
b94cce92 381/*
c6fd91f0 382 * This function is called from finish_task_switch when task tk becomes dead,
383 * so that we can recycle any function-return probe instances associated
384 * with this task. These left over instances represent probed functions
385 * that have been called but will never return.
b94cce92 386 */
d0aaff97 387void __kprobes kprobe_flush_task(struct task_struct *tk)
b94cce92 388{
62c27be0 389 struct kretprobe_instance *ri;
99219a3f 390 struct hlist_head *head, empty_rp;
802eae7c 391 struct hlist_node *node, *tmp;
0aa55e4d 392 unsigned long flags = 0;
802eae7c 393
99219a3f 394 INIT_HLIST_HEAD(&empty_rp);
3516a460 395 spin_lock_irqsave(&kretprobe_lock, flags);
62c27be0 396 head = kretprobe_inst_table_head(tk);
397 hlist_for_each_entry_safe(ri, node, tmp, head, hlist) {
398 if (ri->task == tk)
99219a3f 399 recycle_rp_inst(ri, &empty_rp);
62c27be0 400 }
3516a460 401 spin_unlock_irqrestore(&kretprobe_lock, flags);
99219a3f 402
403 hlist_for_each_entry_safe(ri, node, tmp, &empty_rp, hlist) {
404 hlist_del(&ri->hlist);
405 kfree(ri);
406 }
b94cce92
HN
407}
408
b94cce92
HN
409static inline void free_rp_inst(struct kretprobe *rp)
410{
411 struct kretprobe_instance *ri;
4c4308cb
CH
412 struct hlist_node *pos, *next;
413
414 hlist_for_each_entry_safe(ri, pos, next, &rp->free_instances, uflist) {
b94cce92
HN
415 hlist_del(&ri->uflist);
416 kfree(ri);
417 }
418}
419
8b0914ea
PP
420/*
421 * Keep all fields in the kprobe consistent
422 */
423static inline void copy_kprobe(struct kprobe *old_p, struct kprobe *p)
424{
425 memcpy(&p->opcode, &old_p->opcode, sizeof(kprobe_opcode_t));
426 memcpy(&p->ainsn, &old_p->ainsn, sizeof(struct arch_specific_insn));
427}
428
429/*
430* Add the new probe to old_p->list. Fail if this is the
431* second jprobe at the address - two jprobes can't coexist
432*/
d0aaff97 433static int __kprobes add_new_kprobe(struct kprobe *old_p, struct kprobe *p)
8b0914ea 434{
8b0914ea 435 if (p->break_handler) {
36721656 436 if (old_p->break_handler)
437 return -EEXIST;
3516a460 438 list_add_tail_rcu(&p->list, &old_p->list);
36721656 439 old_p->break_handler = aggr_break_handler;
8b0914ea 440 } else
3516a460 441 list_add_rcu(&p->list, &old_p->list);
36721656 442 if (p->post_handler && !old_p->post_handler)
443 old_p->post_handler = aggr_post_handler;
8b0914ea
PP
444 return 0;
445}
446
64f562c6
AM
447/*
448 * Fill in the required fields of the "manager kprobe". Replace the
449 * earlier kprobe in the hlist with the manager kprobe
450 */
451static inline void add_aggr_kprobe(struct kprobe *ap, struct kprobe *p)
452{
8b0914ea 453 copy_kprobe(p, ap);
a9ad965e 454 flush_insn_slot(ap);
64f562c6 455 ap->addr = p->addr;
64f562c6 456 ap->pre_handler = aggr_pre_handler;
64f562c6 457 ap->fault_handler = aggr_fault_handler;
36721656 458 if (p->post_handler)
459 ap->post_handler = aggr_post_handler;
460 if (p->break_handler)
461 ap->break_handler = aggr_break_handler;
64f562c6
AM
462
463 INIT_LIST_HEAD(&ap->list);
3516a460 464 list_add_rcu(&p->list, &ap->list);
64f562c6 465
adad0f33 466 hlist_replace_rcu(&p->hlist, &ap->hlist);
64f562c6
AM
467}
468
469/*
470 * This is the second or subsequent kprobe at the address - handle
471 * the intricacies
64f562c6 472 */
d0aaff97
PP
473static int __kprobes register_aggr_kprobe(struct kprobe *old_p,
474 struct kprobe *p)
64f562c6
AM
475{
476 int ret = 0;
477 struct kprobe *ap;
478
8b0914ea
PP
479 if (old_p->pre_handler == aggr_pre_handler) {
480 copy_kprobe(old_p, p);
481 ret = add_new_kprobe(old_p, p);
64f562c6 482 } else {
a0d50069 483 ap = kzalloc(sizeof(struct kprobe), GFP_KERNEL);
64f562c6
AM
484 if (!ap)
485 return -ENOMEM;
486 add_aggr_kprobe(ap, old_p);
8b0914ea
PP
487 copy_kprobe(ap, p);
488 ret = add_new_kprobe(ap, p);
64f562c6
AM
489 }
490 return ret;
491}
492
d0aaff97
PP
493static int __kprobes in_kprobes_functions(unsigned long addr)
494{
6f716acd
CH
495 if (addr >= (unsigned long)__kprobes_text_start &&
496 addr < (unsigned long)__kprobes_text_end)
d0aaff97
PP
497 return -EINVAL;
498 return 0;
499}
500
df019b1d
KA
501static int __kprobes __register_kprobe(struct kprobe *p,
502 unsigned long called_from)
1da177e4
LT
503{
504 int ret = 0;
64f562c6 505 struct kprobe *old_p;
df019b1d 506 struct module *probed_mod;
b3e55c72 507
3a872d89
AM
508 /*
509 * If we have a symbol_name argument look it up,
510 * and add it to the address. That way the addr
511 * field can either be global or relative to a symbol.
512 */
513 if (p->symbol_name) {
514 if (p->addr)
515 return -EINVAL;
516 kprobe_lookup_name(p->symbol_name, p->addr);
517 }
518
519 if (!p->addr)
520 return -EINVAL;
521 p->addr = (kprobe_opcode_t *)(((char *)p->addr)+ p->offset);
522
6f716acd
CH
523 if (!kernel_text_address((unsigned long) p->addr) ||
524 in_kprobes_functions((unsigned long) p->addr))
b3e55c72
MB
525 return -EINVAL;
526
df019b1d 527 p->mod_refcounted = 0;
6f716acd
CH
528
529 /*
530 * Check if are we probing a module.
531 */
532 probed_mod = module_text_address((unsigned long) p->addr);
533 if (probed_mod) {
df019b1d 534 struct module *calling_mod = module_text_address(called_from);
6f716acd
CH
535 /*
536 * We must allow modules to probe themself and in this case
537 * avoid incrementing the module refcount, so as to allow
538 * unloading of self probing modules.
df019b1d 539 */
6f716acd 540 if (calling_mod && calling_mod != probed_mod) {
df019b1d
KA
541 if (unlikely(!try_module_get(probed_mod)))
542 return -EINVAL;
543 p->mod_refcounted = 1;
544 } else
545 probed_mod = NULL;
546 }
1da177e4 547
3516a460 548 p->nmissed = 0;
7a7d1cf9 549 mutex_lock(&kprobe_mutex);
64f562c6
AM
550 old_p = get_kprobe(p->addr);
551 if (old_p) {
552 ret = register_aggr_kprobe(old_p, p);
1da177e4
LT
553 goto out;
554 }
1da177e4 555
6f716acd
CH
556 ret = arch_prepare_kprobe(p);
557 if (ret)
49a2a1b8
AK
558 goto out;
559
64f562c6 560 INIT_HLIST_NODE(&p->hlist);
3516a460 561 hlist_add_head_rcu(&p->hlist,
1da177e4
LT
562 &kprobe_table[hash_ptr(p->addr, KPROBE_HASH_BITS)]);
563
74a0b576 564 if (kprobe_enabled)
bf8f6e5b 565 arch_arm_kprobe(p);
74a0b576 566
1da177e4 567out:
7a7d1cf9 568 mutex_unlock(&kprobe_mutex);
49a2a1b8 569
df019b1d
KA
570 if (ret && probed_mod)
571 module_put(probed_mod);
1da177e4
LT
572 return ret;
573}
574
df019b1d
KA
575int __kprobes register_kprobe(struct kprobe *p)
576{
6f716acd 577 return __register_kprobe(p, (unsigned long)__builtin_return_address(0));
df019b1d
KA
578}
579
d0aaff97 580void __kprobes unregister_kprobe(struct kprobe *p)
1da177e4 581{
b3e55c72 582 struct module *mod;
f709b122
KA
583 struct kprobe *old_p, *list_p;
584 int cleanup_p;
64f562c6 585
7a7d1cf9 586 mutex_lock(&kprobe_mutex);
64f562c6 587 old_p = get_kprobe(p->addr);
49a2a1b8 588 if (unlikely(!old_p)) {
7a7d1cf9 589 mutex_unlock(&kprobe_mutex);
49a2a1b8
AK
590 return;
591 }
f709b122
KA
592 if (p != old_p) {
593 list_for_each_entry_rcu(list_p, &old_p->list, list)
594 if (list_p == p)
595 /* kprobe p is a valid probe */
596 goto valid_p;
7a7d1cf9 597 mutex_unlock(&kprobe_mutex);
f709b122
KA
598 return;
599 }
600valid_p:
6f716acd
CH
601 if (old_p == p ||
602 (old_p->pre_handler == aggr_pre_handler &&
603 p->list.next == &old_p->list && p->list.prev == &old_p->list)) {
bf8f6e5b
AM
604 /*
605 * Only probe on the hash list. Disarm only if kprobes are
606 * enabled - otherwise, the breakpoint would already have
607 * been removed. We save on flushing icache.
608 */
609 if (kprobe_enabled)
610 arch_disarm_kprobe(p);
49a2a1b8 611 hlist_del_rcu(&old_p->hlist);
f709b122 612 cleanup_p = 1;
49a2a1b8
AK
613 } else {
614 list_del_rcu(&p->list);
f709b122 615 cleanup_p = 0;
49a2a1b8 616 }
3516a460 617
7a7d1cf9 618 mutex_unlock(&kprobe_mutex);
b3e55c72 619
49a2a1b8 620 synchronize_sched();
6f716acd
CH
621 if (p->mod_refcounted) {
622 mod = module_text_address((unsigned long)p->addr);
623 if (mod)
624 module_put(mod);
625 }
b3e55c72 626
49a2a1b8 627 if (cleanup_p) {
f709b122 628 if (p != old_p) {
49a2a1b8 629 list_del_rcu(&p->list);
3516a460 630 kfree(old_p);
49a2a1b8 631 }
0498b635 632 arch_remove_kprobe(p);
36721656 633 } else {
634 mutex_lock(&kprobe_mutex);
635 if (p->break_handler)
636 old_p->break_handler = NULL;
637 if (p->post_handler){
638 list_for_each_entry_rcu(list_p, &old_p->list, list){
639 if (list_p->post_handler){
640 cleanup_p = 2;
641 break;
642 }
643 }
644 if (cleanup_p == 0)
645 old_p->post_handler = NULL;
646 }
647 mutex_unlock(&kprobe_mutex);
49a2a1b8 648 }
1da177e4
LT
649}
650
651static struct notifier_block kprobe_exceptions_nb = {
3d5631e0
AK
652 .notifier_call = kprobe_exceptions_notify,
653 .priority = 0x7fffffff /* we need to be notified first */
654};
655
3d7e3382
ME
656unsigned long __weak arch_deref_entry_point(void *entry)
657{
658 return (unsigned long)entry;
659}
1da177e4 660
d0aaff97 661int __kprobes register_jprobe(struct jprobe *jp)
1da177e4 662{
3d7e3382
ME
663 unsigned long addr = arch_deref_entry_point(jp->entry);
664
665 if (!kernel_text_address(addr))
666 return -EINVAL;
667
1da177e4
LT
668 /* Todo: Verify probepoint is a function entry point */
669 jp->kp.pre_handler = setjmp_pre_handler;
670 jp->kp.break_handler = longjmp_break_handler;
671
df019b1d
KA
672 return __register_kprobe(&jp->kp,
673 (unsigned long)__builtin_return_address(0));
1da177e4
LT
674}
675
d0aaff97 676void __kprobes unregister_jprobe(struct jprobe *jp)
1da177e4
LT
677{
678 unregister_kprobe(&jp->kp);
679}
680
b94cce92
HN
681#ifdef ARCH_SUPPORTS_KRETPROBES
682
e65cefe8
AB
683/*
684 * This kprobe pre_handler is registered with every kretprobe. When probe
685 * hits it will set up the return probe.
686 */
687static int __kprobes pre_handler_kretprobe(struct kprobe *p,
688 struct pt_regs *regs)
689{
690 struct kretprobe *rp = container_of(p, struct kretprobe, kp);
691 unsigned long flags = 0;
692
693 /*TODO: consider to only swap the RA after the last pre_handler fired */
694 spin_lock_irqsave(&kretprobe_lock, flags);
4c4308cb
CH
695 if (!hlist_empty(&rp->free_instances)) {
696 struct kretprobe_instance *ri;
697
698 ri = hlist_entry(rp->free_instances.first,
699 struct kretprobe_instance, uflist);
700 ri->rp = rp;
701 ri->task = current;
f47cd9b5
AS
702
703 if (rp->entry_handler && rp->entry_handler(ri, regs)) {
704 spin_unlock_irqrestore(&kretprobe_lock, flags);
705 return 0;
706 }
707
4c4308cb
CH
708 arch_prepare_kretprobe(ri, regs);
709
710 /* XXX(hch): why is there no hlist_move_head? */
711 hlist_del(&ri->uflist);
712 hlist_add_head(&ri->uflist, &ri->rp->used_instances);
713 hlist_add_head(&ri->hlist, kretprobe_inst_table_head(ri->task));
714 } else
715 rp->nmissed++;
e65cefe8
AB
716 spin_unlock_irqrestore(&kretprobe_lock, flags);
717 return 0;
718}
719
d0aaff97 720int __kprobes register_kretprobe(struct kretprobe *rp)
b94cce92
HN
721{
722 int ret = 0;
723 struct kretprobe_instance *inst;
724 int i;
f438d914
MH
725 void *addr = rp->kp.addr;
726
727 if (kretprobe_blacklist_size) {
728 if (addr == NULL)
729 kprobe_lookup_name(rp->kp.symbol_name, addr);
730 addr += rp->kp.offset;
731
732 for (i = 0; kretprobe_blacklist[i].name != NULL; i++) {
733 if (kretprobe_blacklist[i].addr == addr)
734 return -EINVAL;
735 }
736 }
b94cce92
HN
737
738 rp->kp.pre_handler = pre_handler_kretprobe;
7522a842
AM
739 rp->kp.post_handler = NULL;
740 rp->kp.fault_handler = NULL;
741 rp->kp.break_handler = NULL;
b94cce92
HN
742
743 /* Pre-allocate memory for max kretprobe instances */
744 if (rp->maxactive <= 0) {
745#ifdef CONFIG_PREEMPT
746 rp->maxactive = max(10, 2 * NR_CPUS);
747#else
748 rp->maxactive = NR_CPUS;
749#endif
750 }
751 INIT_HLIST_HEAD(&rp->used_instances);
752 INIT_HLIST_HEAD(&rp->free_instances);
753 for (i = 0; i < rp->maxactive; i++) {
f47cd9b5
AS
754 inst = kmalloc(sizeof(struct kretprobe_instance) +
755 rp->data_size, GFP_KERNEL);
b94cce92
HN
756 if (inst == NULL) {
757 free_rp_inst(rp);
758 return -ENOMEM;
759 }
760 INIT_HLIST_NODE(&inst->uflist);
761 hlist_add_head(&inst->uflist, &rp->free_instances);
762 }
763
764 rp->nmissed = 0;
765 /* Establish function entry probe point */
df019b1d
KA
766 if ((ret = __register_kprobe(&rp->kp,
767 (unsigned long)__builtin_return_address(0))) != 0)
b94cce92
HN
768 free_rp_inst(rp);
769 return ret;
770}
771
772#else /* ARCH_SUPPORTS_KRETPROBES */
773
d0aaff97 774int __kprobes register_kretprobe(struct kretprobe *rp)
b94cce92
HN
775{
776 return -ENOSYS;
777}
778
346fd59b
SD
779static int __kprobes pre_handler_kretprobe(struct kprobe *p,
780 struct pt_regs *regs)
781{
782 return 0;
783}
784
b94cce92
HN
785#endif /* ARCH_SUPPORTS_KRETPROBES */
786
d0aaff97 787void __kprobes unregister_kretprobe(struct kretprobe *rp)
b94cce92
HN
788{
789 unsigned long flags;
790 struct kretprobe_instance *ri;
4c4308cb 791 struct hlist_node *pos, *next;
b94cce92
HN
792
793 unregister_kprobe(&rp->kp);
4c4308cb 794
b94cce92 795 /* No race here */
3516a460 796 spin_lock_irqsave(&kretprobe_lock, flags);
4c4308cb 797 hlist_for_each_entry_safe(ri, pos, next, &rp->used_instances, uflist) {
b94cce92
HN
798 ri->rp = NULL;
799 hlist_del(&ri->uflist);
800 }
3516a460 801 spin_unlock_irqrestore(&kretprobe_lock, flags);
278ff953 802 free_rp_inst(rp);
b94cce92
HN
803}
804
1da177e4
LT
805static int __init init_kprobes(void)
806{
807 int i, err = 0;
808
809 /* FIXME allocate the probe table, currently defined statically */
810 /* initialize all list heads */
b94cce92 811 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
1da177e4 812 INIT_HLIST_HEAD(&kprobe_table[i]);
b94cce92
HN
813 INIT_HLIST_HEAD(&kretprobe_inst_table[i]);
814 }
1da177e4 815
f438d914
MH
816 if (kretprobe_blacklist_size) {
817 /* lookup the function address from its name */
818 for (i = 0; kretprobe_blacklist[i].name != NULL; i++) {
819 kprobe_lookup_name(kretprobe_blacklist[i].name,
820 kretprobe_blacklist[i].addr);
821 if (!kretprobe_blacklist[i].addr)
822 printk("kretprobe: lookup failed: %s\n",
823 kretprobe_blacklist[i].name);
824 }
825 }
826
bf8f6e5b
AM
827 /* By default, kprobes are enabled */
828 kprobe_enabled = true;
829
6772926b 830 err = arch_init_kprobes();
802eae7c
RL
831 if (!err)
832 err = register_die_notifier(&kprobe_exceptions_nb);
833
8c1c9356
AM
834 if (!err)
835 init_test_probes();
1da177e4
LT
836 return err;
837}
838
346fd59b
SD
839#ifdef CONFIG_DEBUG_FS
840static void __kprobes report_probe(struct seq_file *pi, struct kprobe *p,
bf8f6e5b 841 const char *sym, int offset,char *modname)
346fd59b
SD
842{
843 char *kprobe_type;
844
845 if (p->pre_handler == pre_handler_kretprobe)
846 kprobe_type = "r";
847 else if (p->pre_handler == setjmp_pre_handler)
848 kprobe_type = "j";
849 else
850 kprobe_type = "k";
851 if (sym)
852 seq_printf(pi, "%p %s %s+0x%x %s\n", p->addr, kprobe_type,
853 sym, offset, (modname ? modname : " "));
854 else
855 seq_printf(pi, "%p %s %p\n", p->addr, kprobe_type, p->addr);
856}
857
858static void __kprobes *kprobe_seq_start(struct seq_file *f, loff_t *pos)
859{
860 return (*pos < KPROBE_TABLE_SIZE) ? pos : NULL;
861}
862
863static void __kprobes *kprobe_seq_next(struct seq_file *f, void *v, loff_t *pos)
864{
865 (*pos)++;
866 if (*pos >= KPROBE_TABLE_SIZE)
867 return NULL;
868 return pos;
869}
870
871static void __kprobes kprobe_seq_stop(struct seq_file *f, void *v)
872{
873 /* Nothing to do */
874}
875
876static int __kprobes show_kprobe_addr(struct seq_file *pi, void *v)
877{
878 struct hlist_head *head;
879 struct hlist_node *node;
880 struct kprobe *p, *kp;
881 const char *sym = NULL;
882 unsigned int i = *(loff_t *) v;
ffb45122 883 unsigned long offset = 0;
346fd59b
SD
884 char *modname, namebuf[128];
885
886 head = &kprobe_table[i];
887 preempt_disable();
888 hlist_for_each_entry_rcu(p, node, head, hlist) {
ffb45122 889 sym = kallsyms_lookup((unsigned long)p->addr, NULL,
346fd59b
SD
890 &offset, &modname, namebuf);
891 if (p->pre_handler == aggr_pre_handler) {
892 list_for_each_entry_rcu(kp, &p->list, list)
893 report_probe(pi, kp, sym, offset, modname);
894 } else
895 report_probe(pi, p, sym, offset, modname);
896 }
897 preempt_enable();
898 return 0;
899}
900
901static struct seq_operations kprobes_seq_ops = {
902 .start = kprobe_seq_start,
903 .next = kprobe_seq_next,
904 .stop = kprobe_seq_stop,
905 .show = show_kprobe_addr
906};
907
908static int __kprobes kprobes_open(struct inode *inode, struct file *filp)
909{
910 return seq_open(filp, &kprobes_seq_ops);
911}
912
913static struct file_operations debugfs_kprobes_operations = {
914 .open = kprobes_open,
915 .read = seq_read,
916 .llseek = seq_lseek,
917 .release = seq_release,
918};
919
bf8f6e5b
AM
920static void __kprobes enable_all_kprobes(void)
921{
922 struct hlist_head *head;
923 struct hlist_node *node;
924 struct kprobe *p;
925 unsigned int i;
926
927 mutex_lock(&kprobe_mutex);
928
929 /* If kprobes are already enabled, just return */
930 if (kprobe_enabled)
931 goto already_enabled;
932
bf8f6e5b
AM
933 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
934 head = &kprobe_table[i];
935 hlist_for_each_entry_rcu(p, node, head, hlist)
936 arch_arm_kprobe(p);
937 }
938
939 kprobe_enabled = true;
940 printk(KERN_INFO "Kprobes globally enabled\n");
941
942already_enabled:
943 mutex_unlock(&kprobe_mutex);
944 return;
945}
946
947static void __kprobes disable_all_kprobes(void)
948{
949 struct hlist_head *head;
950 struct hlist_node *node;
951 struct kprobe *p;
952 unsigned int i;
953
954 mutex_lock(&kprobe_mutex);
955
956 /* If kprobes are already disabled, just return */
957 if (!kprobe_enabled)
958 goto already_disabled;
959
960 kprobe_enabled = false;
961 printk(KERN_INFO "Kprobes globally disabled\n");
962 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
963 head = &kprobe_table[i];
964 hlist_for_each_entry_rcu(p, node, head, hlist) {
965 if (!arch_trampoline_kprobe(p))
966 arch_disarm_kprobe(p);
967 }
968 }
969
970 mutex_unlock(&kprobe_mutex);
971 /* Allow all currently running kprobes to complete */
972 synchronize_sched();
74a0b576 973 return;
bf8f6e5b
AM
974
975already_disabled:
976 mutex_unlock(&kprobe_mutex);
977 return;
978}
979
980/*
981 * XXX: The debugfs bool file interface doesn't allow for callbacks
982 * when the bool state is switched. We can reuse that facility when
983 * available
984 */
985static ssize_t read_enabled_file_bool(struct file *file,
986 char __user *user_buf, size_t count, loff_t *ppos)
987{
988 char buf[3];
989
990 if (kprobe_enabled)
991 buf[0] = '1';
992 else
993 buf[0] = '0';
994 buf[1] = '\n';
995 buf[2] = 0x00;
996 return simple_read_from_buffer(user_buf, count, ppos, buf, 2);
997}
998
999static ssize_t write_enabled_file_bool(struct file *file,
1000 const char __user *user_buf, size_t count, loff_t *ppos)
1001{
1002 char buf[32];
1003 int buf_size;
1004
1005 buf_size = min(count, (sizeof(buf)-1));
1006 if (copy_from_user(buf, user_buf, buf_size))
1007 return -EFAULT;
1008
1009 switch (buf[0]) {
1010 case 'y':
1011 case 'Y':
1012 case '1':
1013 enable_all_kprobes();
1014 break;
1015 case 'n':
1016 case 'N':
1017 case '0':
1018 disable_all_kprobes();
1019 break;
1020 }
1021
1022 return count;
1023}
1024
1025static struct file_operations fops_kp = {
1026 .read = read_enabled_file_bool,
1027 .write = write_enabled_file_bool,
1028};
1029
346fd59b
SD
1030static int __kprobes debugfs_kprobe_init(void)
1031{
1032 struct dentry *dir, *file;
bf8f6e5b 1033 unsigned int value = 1;
346fd59b
SD
1034
1035 dir = debugfs_create_dir("kprobes", NULL);
1036 if (!dir)
1037 return -ENOMEM;
1038
e3869792 1039 file = debugfs_create_file("list", 0444, dir, NULL,
346fd59b
SD
1040 &debugfs_kprobes_operations);
1041 if (!file) {
1042 debugfs_remove(dir);
1043 return -ENOMEM;
1044 }
1045
bf8f6e5b
AM
1046 file = debugfs_create_file("enabled", 0600, dir,
1047 &value, &fops_kp);
1048 if (!file) {
1049 debugfs_remove(dir);
1050 return -ENOMEM;
1051 }
1052
346fd59b
SD
1053 return 0;
1054}
1055
1056late_initcall(debugfs_kprobe_init);
1057#endif /* CONFIG_DEBUG_FS */
1058
1059module_init(init_kprobes);
1da177e4
LT
1060
1061EXPORT_SYMBOL_GPL(register_kprobe);
1062EXPORT_SYMBOL_GPL(unregister_kprobe);
1063EXPORT_SYMBOL_GPL(register_jprobe);
1064EXPORT_SYMBOL_GPL(unregister_jprobe);
cd5bfea2 1065#ifdef CONFIG_KPROBES
1da177e4 1066EXPORT_SYMBOL_GPL(jprobe_return);
cd5bfea2
PC
1067#endif
1068
1069#ifdef CONFIG_KPROBES
b94cce92
HN
1070EXPORT_SYMBOL_GPL(register_kretprobe);
1071EXPORT_SYMBOL_GPL(unregister_kretprobe);
cd5bfea2 1072#endif