kprobes: add (un)register_kretprobes for batch registration
[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
3d8d996e
SD
75/*
76 * Normally, functions that we'd want to prohibit kprobes in, are marked
77 * __kprobes. But, there are cases where such functions already belong to
78 * a different section (__sched for preempt_schedule)
79 *
80 * For such cases, we now have a blacklist
81 */
82struct kprobe_blackpoint kprobe_blacklist[] = {
83 {"preempt_schedule",},
84 {NULL} /* Terminator */
85};
86
2d14e39d 87#ifdef __ARCH_WANT_KPROBES_INSN_SLOT
9ec4b1f3
AM
88/*
89 * kprobe->ainsn.insn points to the copy of the instruction to be
90 * single-stepped. x86_64, POWER4 and above have no-exec support and
91 * stepping on the instruction on a vmalloced/kmalloced/data page
92 * is a recipe for disaster
93 */
94#define INSNS_PER_PAGE (PAGE_SIZE/(MAX_INSN_SIZE * sizeof(kprobe_opcode_t)))
95
96struct kprobe_insn_page {
97 struct hlist_node hlist;
98 kprobe_opcode_t *insns; /* Page of instruction slots */
99 char slot_used[INSNS_PER_PAGE];
100 int nused;
b4c6c34a 101 int ngarbage;
9ec4b1f3
AM
102};
103
ab40c5c6
MH
104enum kprobe_slot_state {
105 SLOT_CLEAN = 0,
106 SLOT_DIRTY = 1,
107 SLOT_USED = 2,
108};
109
9ec4b1f3 110static struct hlist_head kprobe_insn_pages;
b4c6c34a
MH
111static int kprobe_garbage_slots;
112static int collect_garbage_slots(void);
113
114static int __kprobes check_safety(void)
115{
116 int ret = 0;
117#if defined(CONFIG_PREEMPT) && defined(CONFIG_PM)
118 ret = freeze_processes();
119 if (ret == 0) {
120 struct task_struct *p, *q;
121 do_each_thread(p, q) {
122 if (p != current && p->state == TASK_RUNNING &&
123 p->pid != 0) {
124 printk("Check failed: %s is running\n",p->comm);
125 ret = -1;
126 goto loop_end;
127 }
128 } while_each_thread(p, q);
129 }
130loop_end:
131 thaw_processes();
132#else
133 synchronize_sched();
134#endif
135 return ret;
136}
9ec4b1f3
AM
137
138/**
139 * get_insn_slot() - Find a slot on an executable page for an instruction.
140 * We allocate an executable page if there's no room on existing ones.
141 */
d0aaff97 142kprobe_opcode_t __kprobes *get_insn_slot(void)
9ec4b1f3
AM
143{
144 struct kprobe_insn_page *kip;
145 struct hlist_node *pos;
146
6f716acd 147 retry:
b0bb5016 148 hlist_for_each_entry(kip, pos, &kprobe_insn_pages, hlist) {
9ec4b1f3
AM
149 if (kip->nused < INSNS_PER_PAGE) {
150 int i;
151 for (i = 0; i < INSNS_PER_PAGE; i++) {
ab40c5c6
MH
152 if (kip->slot_used[i] == SLOT_CLEAN) {
153 kip->slot_used[i] = SLOT_USED;
9ec4b1f3
AM
154 kip->nused++;
155 return kip->insns + (i * MAX_INSN_SIZE);
156 }
157 }
158 /* Surprise! No unused slots. Fix kip->nused. */
159 kip->nused = INSNS_PER_PAGE;
160 }
161 }
162
b4c6c34a
MH
163 /* If there are any garbage slots, collect it and try again. */
164 if (kprobe_garbage_slots && collect_garbage_slots() == 0) {
165 goto retry;
166 }
167 /* All out of space. Need to allocate a new page. Use slot 0. */
9ec4b1f3 168 kip = kmalloc(sizeof(struct kprobe_insn_page), GFP_KERNEL);
6f716acd 169 if (!kip)
9ec4b1f3 170 return NULL;
9ec4b1f3
AM
171
172 /*
173 * Use module_alloc so this page is within +/- 2GB of where the
174 * kernel image and loaded module images reside. This is required
175 * so x86_64 can correctly handle the %rip-relative fixups.
176 */
177 kip->insns = module_alloc(PAGE_SIZE);
178 if (!kip->insns) {
179 kfree(kip);
180 return NULL;
181 }
182 INIT_HLIST_NODE(&kip->hlist);
183 hlist_add_head(&kip->hlist, &kprobe_insn_pages);
ab40c5c6
MH
184 memset(kip->slot_used, SLOT_CLEAN, INSNS_PER_PAGE);
185 kip->slot_used[0] = SLOT_USED;
9ec4b1f3 186 kip->nused = 1;
b4c6c34a 187 kip->ngarbage = 0;
9ec4b1f3
AM
188 return kip->insns;
189}
190
b4c6c34a
MH
191/* Return 1 if all garbages are collected, otherwise 0. */
192static int __kprobes collect_one_slot(struct kprobe_insn_page *kip, int idx)
193{
ab40c5c6 194 kip->slot_used[idx] = SLOT_CLEAN;
b4c6c34a
MH
195 kip->nused--;
196 if (kip->nused == 0) {
197 /*
198 * Page is no longer in use. Free it unless
199 * it's the last one. We keep the last one
200 * so as not to have to set it up again the
201 * next time somebody inserts a probe.
202 */
203 hlist_del(&kip->hlist);
204 if (hlist_empty(&kprobe_insn_pages)) {
205 INIT_HLIST_NODE(&kip->hlist);
206 hlist_add_head(&kip->hlist,
207 &kprobe_insn_pages);
208 } else {
209 module_free(NULL, kip->insns);
210 kfree(kip);
211 }
212 return 1;
213 }
214 return 0;
215}
216
217static int __kprobes collect_garbage_slots(void)
218{
219 struct kprobe_insn_page *kip;
220 struct hlist_node *pos, *next;
221
222 /* Ensure no-one is preepmted on the garbages */
223 if (check_safety() != 0)
224 return -EAGAIN;
225
b0bb5016 226 hlist_for_each_entry_safe(kip, pos, next, &kprobe_insn_pages, hlist) {
b4c6c34a 227 int i;
b4c6c34a
MH
228 if (kip->ngarbage == 0)
229 continue;
230 kip->ngarbage = 0; /* we will collect all garbages */
231 for (i = 0; i < INSNS_PER_PAGE; i++) {
ab40c5c6 232 if (kip->slot_used[i] == SLOT_DIRTY &&
b4c6c34a
MH
233 collect_one_slot(kip, i))
234 break;
235 }
236 }
237 kprobe_garbage_slots = 0;
238 return 0;
239}
240
241void __kprobes free_insn_slot(kprobe_opcode_t * slot, int dirty)
9ec4b1f3
AM
242{
243 struct kprobe_insn_page *kip;
244 struct hlist_node *pos;
245
b0bb5016 246 hlist_for_each_entry(kip, pos, &kprobe_insn_pages, hlist) {
9ec4b1f3
AM
247 if (kip->insns <= slot &&
248 slot < kip->insns + (INSNS_PER_PAGE * MAX_INSN_SIZE)) {
249 int i = (slot - kip->insns) / MAX_INSN_SIZE;
b4c6c34a 250 if (dirty) {
ab40c5c6 251 kip->slot_used[i] = SLOT_DIRTY;
b4c6c34a
MH
252 kip->ngarbage++;
253 } else {
254 collect_one_slot(kip, i);
9ec4b1f3 255 }
b4c6c34a 256 break;
9ec4b1f3
AM
257 }
258 }
6f716acd
CH
259
260 if (dirty && ++kprobe_garbage_slots > INSNS_PER_PAGE)
b4c6c34a 261 collect_garbage_slots();
9ec4b1f3 262}
2d14e39d 263#endif
9ec4b1f3 264
e6584523
AM
265/* We have preemption disabled.. so it is safe to use __ versions */
266static inline void set_kprobe_instance(struct kprobe *kp)
267{
268 __get_cpu_var(kprobe_instance) = kp;
269}
270
271static inline void reset_kprobe_instance(void)
272{
273 __get_cpu_var(kprobe_instance) = NULL;
274}
275
3516a460
AM
276/*
277 * This routine is called either:
49a2a1b8 278 * - under the kprobe_mutex - during kprobe_[un]register()
3516a460 279 * OR
d217d545 280 * - with preemption disabled - from arch/xxx/kernel/kprobes.c
3516a460 281 */
d0aaff97 282struct kprobe __kprobes *get_kprobe(void *addr)
1da177e4
LT
283{
284 struct hlist_head *head;
285 struct hlist_node *node;
3516a460 286 struct kprobe *p;
1da177e4
LT
287
288 head = &kprobe_table[hash_ptr(addr, KPROBE_HASH_BITS)];
3516a460 289 hlist_for_each_entry_rcu(p, node, head, hlist) {
1da177e4
LT
290 if (p->addr == addr)
291 return p;
292 }
293 return NULL;
294}
295
64f562c6
AM
296/*
297 * Aggregate handlers for multiple kprobes support - these handlers
298 * take care of invoking the individual kprobe handlers on p->list
299 */
d0aaff97 300static int __kprobes aggr_pre_handler(struct kprobe *p, struct pt_regs *regs)
64f562c6
AM
301{
302 struct kprobe *kp;
303
3516a460 304 list_for_each_entry_rcu(kp, &p->list, list) {
64f562c6 305 if (kp->pre_handler) {
e6584523 306 set_kprobe_instance(kp);
8b0914ea
PP
307 if (kp->pre_handler(kp, regs))
308 return 1;
64f562c6 309 }
e6584523 310 reset_kprobe_instance();
64f562c6
AM
311 }
312 return 0;
313}
314
d0aaff97
PP
315static void __kprobes aggr_post_handler(struct kprobe *p, struct pt_regs *regs,
316 unsigned long flags)
64f562c6
AM
317{
318 struct kprobe *kp;
319
3516a460 320 list_for_each_entry_rcu(kp, &p->list, list) {
64f562c6 321 if (kp->post_handler) {
e6584523 322 set_kprobe_instance(kp);
64f562c6 323 kp->post_handler(kp, regs, flags);
e6584523 324 reset_kprobe_instance();
64f562c6
AM
325 }
326 }
64f562c6
AM
327}
328
d0aaff97
PP
329static int __kprobes aggr_fault_handler(struct kprobe *p, struct pt_regs *regs,
330 int trapnr)
64f562c6 331{
e6584523
AM
332 struct kprobe *cur = __get_cpu_var(kprobe_instance);
333
64f562c6
AM
334 /*
335 * if we faulted "during" the execution of a user specified
336 * probe handler, invoke just that probe's fault handler
337 */
e6584523
AM
338 if (cur && cur->fault_handler) {
339 if (cur->fault_handler(cur, regs, trapnr))
64f562c6
AM
340 return 1;
341 }
342 return 0;
343}
344
d0aaff97 345static int __kprobes aggr_break_handler(struct kprobe *p, struct pt_regs *regs)
8b0914ea 346{
e6584523
AM
347 struct kprobe *cur = __get_cpu_var(kprobe_instance);
348 int ret = 0;
349
350 if (cur && cur->break_handler) {
351 if (cur->break_handler(cur, regs))
352 ret = 1;
8b0914ea 353 }
e6584523
AM
354 reset_kprobe_instance();
355 return ret;
8b0914ea
PP
356}
357
bf8d5c52
KA
358/* Walks the list and increments nmissed count for multiprobe case */
359void __kprobes kprobes_inc_nmissed_count(struct kprobe *p)
360{
361 struct kprobe *kp;
362 if (p->pre_handler != aggr_pre_handler) {
363 p->nmissed++;
364 } else {
365 list_for_each_entry_rcu(kp, &p->list, list)
366 kp->nmissed++;
367 }
368 return;
369}
370
3516a460 371/* Called with kretprobe_lock held */
99219a3f 372void __kprobes recycle_rp_inst(struct kretprobe_instance *ri,
373 struct hlist_head *head)
b94cce92
HN
374{
375 /* remove rp inst off the rprobe_inst_table */
376 hlist_del(&ri->hlist);
377 if (ri->rp) {
378 /* remove rp inst off the used list */
379 hlist_del(&ri->uflist);
380 /* put rp inst back onto the free list */
381 INIT_HLIST_NODE(&ri->uflist);
382 hlist_add_head(&ri->uflist, &ri->rp->free_instances);
383 } else
384 /* Unregistering */
99219a3f 385 hlist_add_head(&ri->hlist, head);
b94cce92
HN
386}
387
d0aaff97 388struct hlist_head __kprobes *kretprobe_inst_table_head(struct task_struct *tsk)
b94cce92
HN
389{
390 return &kretprobe_inst_table[hash_ptr(tsk, KPROBE_HASH_BITS)];
391}
392
b94cce92 393/*
c6fd91f0 394 * This function is called from finish_task_switch when task tk becomes dead,
395 * so that we can recycle any function-return probe instances associated
396 * with this task. These left over instances represent probed functions
397 * that have been called but will never return.
b94cce92 398 */
d0aaff97 399void __kprobes kprobe_flush_task(struct task_struct *tk)
b94cce92 400{
62c27be0 401 struct kretprobe_instance *ri;
99219a3f 402 struct hlist_head *head, empty_rp;
802eae7c 403 struct hlist_node *node, *tmp;
0aa55e4d 404 unsigned long flags = 0;
802eae7c 405
99219a3f 406 INIT_HLIST_HEAD(&empty_rp);
3516a460 407 spin_lock_irqsave(&kretprobe_lock, flags);
62c27be0 408 head = kretprobe_inst_table_head(tk);
409 hlist_for_each_entry_safe(ri, node, tmp, head, hlist) {
410 if (ri->task == tk)
99219a3f 411 recycle_rp_inst(ri, &empty_rp);
62c27be0 412 }
3516a460 413 spin_unlock_irqrestore(&kretprobe_lock, flags);
99219a3f 414
415 hlist_for_each_entry_safe(ri, node, tmp, &empty_rp, hlist) {
416 hlist_del(&ri->hlist);
417 kfree(ri);
418 }
b94cce92
HN
419}
420
b94cce92
HN
421static inline void free_rp_inst(struct kretprobe *rp)
422{
423 struct kretprobe_instance *ri;
4c4308cb
CH
424 struct hlist_node *pos, *next;
425
426 hlist_for_each_entry_safe(ri, pos, next, &rp->free_instances, uflist) {
b94cce92
HN
427 hlist_del(&ri->uflist);
428 kfree(ri);
429 }
430}
431
4a296e07
MH
432static void __kprobes cleanup_rp_inst(struct kretprobe *rp)
433{
434 unsigned long flags;
435 struct kretprobe_instance *ri;
436 struct hlist_node *pos, *next;
437 /* No race here */
438 spin_lock_irqsave(&kretprobe_lock, flags);
439 hlist_for_each_entry_safe(ri, pos, next, &rp->used_instances, uflist) {
440 ri->rp = NULL;
441 hlist_del(&ri->uflist);
442 }
443 spin_unlock_irqrestore(&kretprobe_lock, flags);
444 free_rp_inst(rp);
445}
446
8b0914ea
PP
447/*
448 * Keep all fields in the kprobe consistent
449 */
450static inline void copy_kprobe(struct kprobe *old_p, struct kprobe *p)
451{
452 memcpy(&p->opcode, &old_p->opcode, sizeof(kprobe_opcode_t));
453 memcpy(&p->ainsn, &old_p->ainsn, sizeof(struct arch_specific_insn));
454}
455
456/*
457* Add the new probe to old_p->list. Fail if this is the
458* second jprobe at the address - two jprobes can't coexist
459*/
d0aaff97 460static int __kprobes add_new_kprobe(struct kprobe *old_p, struct kprobe *p)
8b0914ea 461{
8b0914ea 462 if (p->break_handler) {
36721656 463 if (old_p->break_handler)
464 return -EEXIST;
3516a460 465 list_add_tail_rcu(&p->list, &old_p->list);
36721656 466 old_p->break_handler = aggr_break_handler;
8b0914ea 467 } else
3516a460 468 list_add_rcu(&p->list, &old_p->list);
36721656 469 if (p->post_handler && !old_p->post_handler)
470 old_p->post_handler = aggr_post_handler;
8b0914ea
PP
471 return 0;
472}
473
64f562c6
AM
474/*
475 * Fill in the required fields of the "manager kprobe". Replace the
476 * earlier kprobe in the hlist with the manager kprobe
477 */
478static inline void add_aggr_kprobe(struct kprobe *ap, struct kprobe *p)
479{
8b0914ea 480 copy_kprobe(p, ap);
a9ad965e 481 flush_insn_slot(ap);
64f562c6 482 ap->addr = p->addr;
64f562c6 483 ap->pre_handler = aggr_pre_handler;
64f562c6 484 ap->fault_handler = aggr_fault_handler;
36721656 485 if (p->post_handler)
486 ap->post_handler = aggr_post_handler;
487 if (p->break_handler)
488 ap->break_handler = aggr_break_handler;
64f562c6
AM
489
490 INIT_LIST_HEAD(&ap->list);
3516a460 491 list_add_rcu(&p->list, &ap->list);
64f562c6 492
adad0f33 493 hlist_replace_rcu(&p->hlist, &ap->hlist);
64f562c6
AM
494}
495
496/*
497 * This is the second or subsequent kprobe at the address - handle
498 * the intricacies
64f562c6 499 */
d0aaff97
PP
500static int __kprobes register_aggr_kprobe(struct kprobe *old_p,
501 struct kprobe *p)
64f562c6
AM
502{
503 int ret = 0;
504 struct kprobe *ap;
505
8b0914ea
PP
506 if (old_p->pre_handler == aggr_pre_handler) {
507 copy_kprobe(old_p, p);
508 ret = add_new_kprobe(old_p, p);
64f562c6 509 } else {
a0d50069 510 ap = kzalloc(sizeof(struct kprobe), GFP_KERNEL);
64f562c6
AM
511 if (!ap)
512 return -ENOMEM;
513 add_aggr_kprobe(ap, old_p);
8b0914ea
PP
514 copy_kprobe(ap, p);
515 ret = add_new_kprobe(ap, p);
64f562c6
AM
516 }
517 return ret;
518}
519
d0aaff97
PP
520static int __kprobes in_kprobes_functions(unsigned long addr)
521{
3d8d996e
SD
522 struct kprobe_blackpoint *kb;
523
6f716acd
CH
524 if (addr >= (unsigned long)__kprobes_text_start &&
525 addr < (unsigned long)__kprobes_text_end)
d0aaff97 526 return -EINVAL;
3d8d996e
SD
527 /*
528 * If there exists a kprobe_blacklist, verify and
529 * fail any probe registration in the prohibited area
530 */
531 for (kb = kprobe_blacklist; kb->name != NULL; kb++) {
532 if (kb->start_addr) {
533 if (addr >= kb->start_addr &&
534 addr < (kb->start_addr + kb->range))
535 return -EINVAL;
536 }
537 }
d0aaff97
PP
538 return 0;
539}
540
b2a5cd69
MH
541/*
542 * If we have a symbol_name argument, look it up and add the offset field
543 * to it. This way, we can specify a relative address to a symbol.
544 */
545static kprobe_opcode_t __kprobes *kprobe_addr(struct kprobe *p)
546{
547 kprobe_opcode_t *addr = p->addr;
548 if (p->symbol_name) {
549 if (addr)
550 return NULL;
551 kprobe_lookup_name(p->symbol_name, addr);
552 }
553
554 if (!addr)
555 return NULL;
556 return (kprobe_opcode_t *)(((char *)addr) + p->offset);
557}
558
df019b1d
KA
559static int __kprobes __register_kprobe(struct kprobe *p,
560 unsigned long called_from)
1da177e4
LT
561{
562 int ret = 0;
64f562c6 563 struct kprobe *old_p;
df019b1d 564 struct module *probed_mod;
b2a5cd69 565 kprobe_opcode_t *addr;
b3e55c72 566
b2a5cd69
MH
567 addr = kprobe_addr(p);
568 if (!addr)
3a872d89 569 return -EINVAL;
b2a5cd69 570 p->addr = addr;
3a872d89 571
6f716acd
CH
572 if (!kernel_text_address((unsigned long) p->addr) ||
573 in_kprobes_functions((unsigned long) p->addr))
b3e55c72
MB
574 return -EINVAL;
575
df019b1d 576 p->mod_refcounted = 0;
6f716acd
CH
577
578 /*
579 * Check if are we probing a module.
580 */
581 probed_mod = module_text_address((unsigned long) p->addr);
582 if (probed_mod) {
df019b1d 583 struct module *calling_mod = module_text_address(called_from);
6f716acd
CH
584 /*
585 * We must allow modules to probe themself and in this case
586 * avoid incrementing the module refcount, so as to allow
587 * unloading of self probing modules.
df019b1d 588 */
6f716acd 589 if (calling_mod && calling_mod != probed_mod) {
df019b1d
KA
590 if (unlikely(!try_module_get(probed_mod)))
591 return -EINVAL;
592 p->mod_refcounted = 1;
593 } else
594 probed_mod = NULL;
595 }
1da177e4 596
3516a460 597 p->nmissed = 0;
9861668f 598 INIT_LIST_HEAD(&p->list);
7a7d1cf9 599 mutex_lock(&kprobe_mutex);
64f562c6
AM
600 old_p = get_kprobe(p->addr);
601 if (old_p) {
602 ret = register_aggr_kprobe(old_p, p);
1da177e4
LT
603 goto out;
604 }
1da177e4 605
6f716acd
CH
606 ret = arch_prepare_kprobe(p);
607 if (ret)
49a2a1b8
AK
608 goto out;
609
64f562c6 610 INIT_HLIST_NODE(&p->hlist);
3516a460 611 hlist_add_head_rcu(&p->hlist,
1da177e4
LT
612 &kprobe_table[hash_ptr(p->addr, KPROBE_HASH_BITS)]);
613
74a0b576 614 if (kprobe_enabled)
bf8f6e5b 615 arch_arm_kprobe(p);
74a0b576 616
1da177e4 617out:
7a7d1cf9 618 mutex_unlock(&kprobe_mutex);
49a2a1b8 619
df019b1d
KA
620 if (ret && probed_mod)
621 module_put(probed_mod);
1da177e4
LT
622 return ret;
623}
624
9861668f
MH
625/*
626 * Unregister a kprobe without a scheduler synchronization.
627 */
628static int __kprobes __unregister_kprobe_top(struct kprobe *p)
1da177e4 629{
f709b122 630 struct kprobe *old_p, *list_p;
64f562c6 631
64f562c6 632 old_p = get_kprobe(p->addr);
9861668f
MH
633 if (unlikely(!old_p))
634 return -EINVAL;
635
f709b122
KA
636 if (p != old_p) {
637 list_for_each_entry_rcu(list_p, &old_p->list, list)
638 if (list_p == p)
639 /* kprobe p is a valid probe */
640 goto valid_p;
9861668f 641 return -EINVAL;
f709b122
KA
642 }
643valid_p:
6f716acd
CH
644 if (old_p == p ||
645 (old_p->pre_handler == aggr_pre_handler &&
9861668f 646 list_is_singular(&old_p->list))) {
bf8f6e5b
AM
647 /*
648 * Only probe on the hash list. Disarm only if kprobes are
649 * enabled - otherwise, the breakpoint would already have
650 * been removed. We save on flushing icache.
651 */
652 if (kprobe_enabled)
653 arch_disarm_kprobe(p);
49a2a1b8 654 hlist_del_rcu(&old_p->hlist);
49a2a1b8 655 } else {
9861668f
MH
656 if (p->break_handler)
657 old_p->break_handler = NULL;
658 if (p->post_handler) {
659 list_for_each_entry_rcu(list_p, &old_p->list, list) {
660 if ((list_p != p) && (list_p->post_handler))
661 goto noclean;
662 }
663 old_p->post_handler = NULL;
664 }
665noclean:
49a2a1b8 666 list_del_rcu(&p->list);
49a2a1b8 667 }
9861668f
MH
668 return 0;
669}
3516a460 670
9861668f
MH
671static void __kprobes __unregister_kprobe_bottom(struct kprobe *p)
672{
673 struct module *mod;
674 struct kprobe *old_p;
b3e55c72 675
6f716acd
CH
676 if (p->mod_refcounted) {
677 mod = module_text_address((unsigned long)p->addr);
678 if (mod)
679 module_put(mod);
680 }
b3e55c72 681
9861668f
MH
682 if (list_empty(&p->list) || list_is_singular(&p->list)) {
683 if (!list_empty(&p->list)) {
684 /* "p" is the last child of an aggr_kprobe */
685 old_p = list_entry(p->list.next, struct kprobe, list);
686 list_del(&p->list);
3516a460 687 kfree(old_p);
49a2a1b8 688 }
0498b635 689 arch_remove_kprobe(p);
9861668f
MH
690 }
691}
692
693static int __register_kprobes(struct kprobe **kps, int num,
694 unsigned long called_from)
695{
696 int i, ret = 0;
697
698 if (num <= 0)
699 return -EINVAL;
700 for (i = 0; i < num; i++) {
701 ret = __register_kprobe(kps[i], called_from);
702 if (ret < 0 && i > 0) {
703 unregister_kprobes(kps, i);
704 break;
36721656 705 }
49a2a1b8 706 }
9861668f
MH
707 return ret;
708}
709
710/*
711 * Registration and unregistration functions for kprobe.
712 */
713int __kprobes register_kprobe(struct kprobe *p)
714{
715 return __register_kprobes(&p, 1,
716 (unsigned long)__builtin_return_address(0));
717}
718
719void __kprobes unregister_kprobe(struct kprobe *p)
720{
721 unregister_kprobes(&p, 1);
722}
723
724int __kprobes register_kprobes(struct kprobe **kps, int num)
725{
726 return __register_kprobes(kps, num,
727 (unsigned long)__builtin_return_address(0));
728}
729
730void __kprobes unregister_kprobes(struct kprobe **kps, int num)
731{
732 int i;
733
734 if (num <= 0)
735 return;
736 mutex_lock(&kprobe_mutex);
737 for (i = 0; i < num; i++)
738 if (__unregister_kprobe_top(kps[i]) < 0)
739 kps[i]->addr = NULL;
740 mutex_unlock(&kprobe_mutex);
741
742 synchronize_sched();
743 for (i = 0; i < num; i++)
744 if (kps[i]->addr)
745 __unregister_kprobe_bottom(kps[i]);
1da177e4
LT
746}
747
748static struct notifier_block kprobe_exceptions_nb = {
3d5631e0
AK
749 .notifier_call = kprobe_exceptions_notify,
750 .priority = 0x7fffffff /* we need to be notified first */
751};
752
3d7e3382
ME
753unsigned long __weak arch_deref_entry_point(void *entry)
754{
755 return (unsigned long)entry;
756}
1da177e4 757
d0aaff97 758int __kprobes register_jprobe(struct jprobe *jp)
1da177e4 759{
3d7e3382
ME
760 unsigned long addr = arch_deref_entry_point(jp->entry);
761
762 if (!kernel_text_address(addr))
763 return -EINVAL;
764
1da177e4
LT
765 /* Todo: Verify probepoint is a function entry point */
766 jp->kp.pre_handler = setjmp_pre_handler;
767 jp->kp.break_handler = longjmp_break_handler;
768
df019b1d
KA
769 return __register_kprobe(&jp->kp,
770 (unsigned long)__builtin_return_address(0));
1da177e4
LT
771}
772
d0aaff97 773void __kprobes unregister_jprobe(struct jprobe *jp)
1da177e4
LT
774{
775 unregister_kprobe(&jp->kp);
776}
777
9edddaa2 778#ifdef CONFIG_KRETPROBES
e65cefe8
AB
779/*
780 * This kprobe pre_handler is registered with every kretprobe. When probe
781 * hits it will set up the return probe.
782 */
783static int __kprobes pre_handler_kretprobe(struct kprobe *p,
784 struct pt_regs *regs)
785{
786 struct kretprobe *rp = container_of(p, struct kretprobe, kp);
787 unsigned long flags = 0;
788
789 /*TODO: consider to only swap the RA after the last pre_handler fired */
790 spin_lock_irqsave(&kretprobe_lock, flags);
4c4308cb
CH
791 if (!hlist_empty(&rp->free_instances)) {
792 struct kretprobe_instance *ri;
793
794 ri = hlist_entry(rp->free_instances.first,
795 struct kretprobe_instance, uflist);
796 ri->rp = rp;
797 ri->task = current;
f47cd9b5
AS
798
799 if (rp->entry_handler && rp->entry_handler(ri, regs)) {
800 spin_unlock_irqrestore(&kretprobe_lock, flags);
801 return 0;
802 }
803
4c4308cb
CH
804 arch_prepare_kretprobe(ri, regs);
805
806 /* XXX(hch): why is there no hlist_move_head? */
807 hlist_del(&ri->uflist);
808 hlist_add_head(&ri->uflist, &ri->rp->used_instances);
809 hlist_add_head(&ri->hlist, kretprobe_inst_table_head(ri->task));
810 } else
811 rp->nmissed++;
e65cefe8
AB
812 spin_unlock_irqrestore(&kretprobe_lock, flags);
813 return 0;
814}
815
4a296e07
MH
816static int __kprobes __register_kretprobe(struct kretprobe *rp,
817 unsigned long called_from)
b94cce92
HN
818{
819 int ret = 0;
820 struct kretprobe_instance *inst;
821 int i;
b2a5cd69 822 void *addr;
f438d914
MH
823
824 if (kretprobe_blacklist_size) {
b2a5cd69
MH
825 addr = kprobe_addr(&rp->kp);
826 if (!addr)
827 return -EINVAL;
f438d914
MH
828
829 for (i = 0; kretprobe_blacklist[i].name != NULL; i++) {
830 if (kretprobe_blacklist[i].addr == addr)
831 return -EINVAL;
832 }
833 }
b94cce92
HN
834
835 rp->kp.pre_handler = pre_handler_kretprobe;
7522a842
AM
836 rp->kp.post_handler = NULL;
837 rp->kp.fault_handler = NULL;
838 rp->kp.break_handler = NULL;
b94cce92
HN
839
840 /* Pre-allocate memory for max kretprobe instances */
841 if (rp->maxactive <= 0) {
842#ifdef CONFIG_PREEMPT
843 rp->maxactive = max(10, 2 * NR_CPUS);
844#else
845 rp->maxactive = NR_CPUS;
846#endif
847 }
848 INIT_HLIST_HEAD(&rp->used_instances);
849 INIT_HLIST_HEAD(&rp->free_instances);
850 for (i = 0; i < rp->maxactive; i++) {
f47cd9b5
AS
851 inst = kmalloc(sizeof(struct kretprobe_instance) +
852 rp->data_size, GFP_KERNEL);
b94cce92
HN
853 if (inst == NULL) {
854 free_rp_inst(rp);
855 return -ENOMEM;
856 }
857 INIT_HLIST_NODE(&inst->uflist);
858 hlist_add_head(&inst->uflist, &rp->free_instances);
859 }
860
861 rp->nmissed = 0;
862 /* Establish function entry probe point */
4a296e07
MH
863 ret = __register_kprobe(&rp->kp, called_from);
864 if (ret != 0)
b94cce92
HN
865 free_rp_inst(rp);
866 return ret;
867}
868
4a296e07
MH
869static int __register_kretprobes(struct kretprobe **rps, int num,
870 unsigned long called_from)
871{
872 int ret = 0, i;
873
874 if (num <= 0)
875 return -EINVAL;
876 for (i = 0; i < num; i++) {
877 ret = __register_kretprobe(rps[i], called_from);
878 if (ret < 0 && i > 0) {
879 unregister_kretprobes(rps, i);
880 break;
881 }
882 }
883 return ret;
884}
885
886int __kprobes register_kretprobe(struct kretprobe *rp)
887{
888 return __register_kretprobes(&rp, 1,
889 (unsigned long)__builtin_return_address(0));
890}
891
892void __kprobes unregister_kretprobe(struct kretprobe *rp)
893{
894 unregister_kretprobes(&rp, 1);
895}
896
897int __kprobes register_kretprobes(struct kretprobe **rps, int num)
898{
899 return __register_kretprobes(rps, num,
900 (unsigned long)__builtin_return_address(0));
901}
902
903void __kprobes unregister_kretprobes(struct kretprobe **rps, int num)
904{
905 int i;
906
907 if (num <= 0)
908 return;
909 mutex_lock(&kprobe_mutex);
910 for (i = 0; i < num; i++)
911 if (__unregister_kprobe_top(&rps[i]->kp) < 0)
912 rps[i]->kp.addr = NULL;
913 mutex_unlock(&kprobe_mutex);
914
915 synchronize_sched();
916 for (i = 0; i < num; i++) {
917 if (rps[i]->kp.addr) {
918 __unregister_kprobe_bottom(&rps[i]->kp);
919 cleanup_rp_inst(rps[i]);
920 }
921 }
922}
923
9edddaa2 924#else /* CONFIG_KRETPROBES */
d0aaff97 925int __kprobes register_kretprobe(struct kretprobe *rp)
b94cce92
HN
926{
927 return -ENOSYS;
928}
929
4a296e07 930int __kprobes register_kretprobes(struct kretprobe **rps, int num)
346fd59b 931{
4a296e07 932 return -ENOSYS;
346fd59b 933}
d0aaff97 934void __kprobes unregister_kretprobe(struct kretprobe *rp)
b94cce92 935{
4a296e07 936}
b94cce92 937
4a296e07
MH
938void __kprobes unregister_kretprobes(struct kretprobe **rps, int num)
939{
940}
4c4308cb 941
4a296e07
MH
942static int __kprobes pre_handler_kretprobe(struct kprobe *p,
943 struct pt_regs *regs)
944{
945 return 0;
b94cce92
HN
946}
947
4a296e07
MH
948#endif /* CONFIG_KRETPROBES */
949
1da177e4
LT
950static int __init init_kprobes(void)
951{
952 int i, err = 0;
3d8d996e
SD
953 unsigned long offset = 0, size = 0;
954 char *modname, namebuf[128];
955 const char *symbol_name;
956 void *addr;
957 struct kprobe_blackpoint *kb;
1da177e4
LT
958
959 /* FIXME allocate the probe table, currently defined statically */
960 /* initialize all list heads */
b94cce92 961 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
1da177e4 962 INIT_HLIST_HEAD(&kprobe_table[i]);
b94cce92
HN
963 INIT_HLIST_HEAD(&kretprobe_inst_table[i]);
964 }
1da177e4 965
3d8d996e
SD
966 /*
967 * Lookup and populate the kprobe_blacklist.
968 *
969 * Unlike the kretprobe blacklist, we'll need to determine
970 * the range of addresses that belong to the said functions,
971 * since a kprobe need not necessarily be at the beginning
972 * of a function.
973 */
974 for (kb = kprobe_blacklist; kb->name != NULL; kb++) {
975 kprobe_lookup_name(kb->name, addr);
976 if (!addr)
977 continue;
978
979 kb->start_addr = (unsigned long)addr;
980 symbol_name = kallsyms_lookup(kb->start_addr,
981 &size, &offset, &modname, namebuf);
982 if (!symbol_name)
983 kb->range = 0;
984 else
985 kb->range = size;
986 }
987
f438d914
MH
988 if (kretprobe_blacklist_size) {
989 /* lookup the function address from its name */
990 for (i = 0; kretprobe_blacklist[i].name != NULL; i++) {
991 kprobe_lookup_name(kretprobe_blacklist[i].name,
992 kretprobe_blacklist[i].addr);
993 if (!kretprobe_blacklist[i].addr)
994 printk("kretprobe: lookup failed: %s\n",
995 kretprobe_blacklist[i].name);
996 }
997 }
998
bf8f6e5b
AM
999 /* By default, kprobes are enabled */
1000 kprobe_enabled = true;
1001
6772926b 1002 err = arch_init_kprobes();
802eae7c
RL
1003 if (!err)
1004 err = register_die_notifier(&kprobe_exceptions_nb);
1005
8c1c9356
AM
1006 if (!err)
1007 init_test_probes();
1da177e4
LT
1008 return err;
1009}
1010
346fd59b
SD
1011#ifdef CONFIG_DEBUG_FS
1012static void __kprobes report_probe(struct seq_file *pi, struct kprobe *p,
bf8f6e5b 1013 const char *sym, int offset,char *modname)
346fd59b
SD
1014{
1015 char *kprobe_type;
1016
1017 if (p->pre_handler == pre_handler_kretprobe)
1018 kprobe_type = "r";
1019 else if (p->pre_handler == setjmp_pre_handler)
1020 kprobe_type = "j";
1021 else
1022 kprobe_type = "k";
1023 if (sym)
1024 seq_printf(pi, "%p %s %s+0x%x %s\n", p->addr, kprobe_type,
1025 sym, offset, (modname ? modname : " "));
1026 else
1027 seq_printf(pi, "%p %s %p\n", p->addr, kprobe_type, p->addr);
1028}
1029
1030static void __kprobes *kprobe_seq_start(struct seq_file *f, loff_t *pos)
1031{
1032 return (*pos < KPROBE_TABLE_SIZE) ? pos : NULL;
1033}
1034
1035static void __kprobes *kprobe_seq_next(struct seq_file *f, void *v, loff_t *pos)
1036{
1037 (*pos)++;
1038 if (*pos >= KPROBE_TABLE_SIZE)
1039 return NULL;
1040 return pos;
1041}
1042
1043static void __kprobes kprobe_seq_stop(struct seq_file *f, void *v)
1044{
1045 /* Nothing to do */
1046}
1047
1048static int __kprobes show_kprobe_addr(struct seq_file *pi, void *v)
1049{
1050 struct hlist_head *head;
1051 struct hlist_node *node;
1052 struct kprobe *p, *kp;
1053 const char *sym = NULL;
1054 unsigned int i = *(loff_t *) v;
ffb45122 1055 unsigned long offset = 0;
346fd59b
SD
1056 char *modname, namebuf[128];
1057
1058 head = &kprobe_table[i];
1059 preempt_disable();
1060 hlist_for_each_entry_rcu(p, node, head, hlist) {
ffb45122 1061 sym = kallsyms_lookup((unsigned long)p->addr, NULL,
346fd59b
SD
1062 &offset, &modname, namebuf);
1063 if (p->pre_handler == aggr_pre_handler) {
1064 list_for_each_entry_rcu(kp, &p->list, list)
1065 report_probe(pi, kp, sym, offset, modname);
1066 } else
1067 report_probe(pi, p, sym, offset, modname);
1068 }
1069 preempt_enable();
1070 return 0;
1071}
1072
1073static struct seq_operations kprobes_seq_ops = {
1074 .start = kprobe_seq_start,
1075 .next = kprobe_seq_next,
1076 .stop = kprobe_seq_stop,
1077 .show = show_kprobe_addr
1078};
1079
1080static int __kprobes kprobes_open(struct inode *inode, struct file *filp)
1081{
1082 return seq_open(filp, &kprobes_seq_ops);
1083}
1084
1085static struct file_operations debugfs_kprobes_operations = {
1086 .open = kprobes_open,
1087 .read = seq_read,
1088 .llseek = seq_lseek,
1089 .release = seq_release,
1090};
1091
bf8f6e5b
AM
1092static void __kprobes enable_all_kprobes(void)
1093{
1094 struct hlist_head *head;
1095 struct hlist_node *node;
1096 struct kprobe *p;
1097 unsigned int i;
1098
1099 mutex_lock(&kprobe_mutex);
1100
1101 /* If kprobes are already enabled, just return */
1102 if (kprobe_enabled)
1103 goto already_enabled;
1104
bf8f6e5b
AM
1105 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
1106 head = &kprobe_table[i];
1107 hlist_for_each_entry_rcu(p, node, head, hlist)
1108 arch_arm_kprobe(p);
1109 }
1110
1111 kprobe_enabled = true;
1112 printk(KERN_INFO "Kprobes globally enabled\n");
1113
1114already_enabled:
1115 mutex_unlock(&kprobe_mutex);
1116 return;
1117}
1118
1119static void __kprobes disable_all_kprobes(void)
1120{
1121 struct hlist_head *head;
1122 struct hlist_node *node;
1123 struct kprobe *p;
1124 unsigned int i;
1125
1126 mutex_lock(&kprobe_mutex);
1127
1128 /* If kprobes are already disabled, just return */
1129 if (!kprobe_enabled)
1130 goto already_disabled;
1131
1132 kprobe_enabled = false;
1133 printk(KERN_INFO "Kprobes globally disabled\n");
1134 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
1135 head = &kprobe_table[i];
1136 hlist_for_each_entry_rcu(p, node, head, hlist) {
1137 if (!arch_trampoline_kprobe(p))
1138 arch_disarm_kprobe(p);
1139 }
1140 }
1141
1142 mutex_unlock(&kprobe_mutex);
1143 /* Allow all currently running kprobes to complete */
1144 synchronize_sched();
74a0b576 1145 return;
bf8f6e5b
AM
1146
1147already_disabled:
1148 mutex_unlock(&kprobe_mutex);
1149 return;
1150}
1151
1152/*
1153 * XXX: The debugfs bool file interface doesn't allow for callbacks
1154 * when the bool state is switched. We can reuse that facility when
1155 * available
1156 */
1157static ssize_t read_enabled_file_bool(struct file *file,
1158 char __user *user_buf, size_t count, loff_t *ppos)
1159{
1160 char buf[3];
1161
1162 if (kprobe_enabled)
1163 buf[0] = '1';
1164 else
1165 buf[0] = '0';
1166 buf[1] = '\n';
1167 buf[2] = 0x00;
1168 return simple_read_from_buffer(user_buf, count, ppos, buf, 2);
1169}
1170
1171static ssize_t write_enabled_file_bool(struct file *file,
1172 const char __user *user_buf, size_t count, loff_t *ppos)
1173{
1174 char buf[32];
1175 int buf_size;
1176
1177 buf_size = min(count, (sizeof(buf)-1));
1178 if (copy_from_user(buf, user_buf, buf_size))
1179 return -EFAULT;
1180
1181 switch (buf[0]) {
1182 case 'y':
1183 case 'Y':
1184 case '1':
1185 enable_all_kprobes();
1186 break;
1187 case 'n':
1188 case 'N':
1189 case '0':
1190 disable_all_kprobes();
1191 break;
1192 }
1193
1194 return count;
1195}
1196
1197static struct file_operations fops_kp = {
1198 .read = read_enabled_file_bool,
1199 .write = write_enabled_file_bool,
1200};
1201
346fd59b
SD
1202static int __kprobes debugfs_kprobe_init(void)
1203{
1204 struct dentry *dir, *file;
bf8f6e5b 1205 unsigned int value = 1;
346fd59b
SD
1206
1207 dir = debugfs_create_dir("kprobes", NULL);
1208 if (!dir)
1209 return -ENOMEM;
1210
e3869792 1211 file = debugfs_create_file("list", 0444, dir, NULL,
346fd59b
SD
1212 &debugfs_kprobes_operations);
1213 if (!file) {
1214 debugfs_remove(dir);
1215 return -ENOMEM;
1216 }
1217
bf8f6e5b
AM
1218 file = debugfs_create_file("enabled", 0600, dir,
1219 &value, &fops_kp);
1220 if (!file) {
1221 debugfs_remove(dir);
1222 return -ENOMEM;
1223 }
1224
346fd59b
SD
1225 return 0;
1226}
1227
1228late_initcall(debugfs_kprobe_init);
1229#endif /* CONFIG_DEBUG_FS */
1230
1231module_init(init_kprobes);
1da177e4
LT
1232
1233EXPORT_SYMBOL_GPL(register_kprobe);
1234EXPORT_SYMBOL_GPL(unregister_kprobe);
9861668f
MH
1235EXPORT_SYMBOL_GPL(register_kprobes);
1236EXPORT_SYMBOL_GPL(unregister_kprobes);
1da177e4
LT
1237EXPORT_SYMBOL_GPL(register_jprobe);
1238EXPORT_SYMBOL_GPL(unregister_jprobe);
cd5bfea2 1239#ifdef CONFIG_KPROBES
1da177e4 1240EXPORT_SYMBOL_GPL(jprobe_return);
cd5bfea2
PC
1241#endif
1242
1243#ifdef CONFIG_KPROBES
b94cce92
HN
1244EXPORT_SYMBOL_GPL(register_kretprobe);
1245EXPORT_SYMBOL_GPL(unregister_kretprobe);
4a296e07
MH
1246EXPORT_SYMBOL_GPL(register_kretprobes);
1247EXPORT_SYMBOL_GPL(unregister_kretprobes);
cd5bfea2 1248#endif