]> git.ipfire.org Git - thirdparty/linux.git/blame - kernel/kprobes.c
Merge tag 'x86-fpu-2020-06-01' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
[thirdparty/linux.git] / kernel / kprobes.c
CommitLineData
1a59d1b8 1// SPDX-License-Identifier: GPL-2.0-or-later
1da177e4
LT
2/*
3 * Kernel Probes (KProbes)
4 * kernel/kprobes.c
5 *
1da177e4
LT
6 * Copyright (C) IBM Corporation, 2002, 2004
7 *
8 * 2002-Oct Created by Vamsi Krishna S <vamsi_krishna@in.ibm.com> Kernel
9 * Probes initial implementation (includes suggestions from
10 * Rusty Russell).
11 * 2004-Aug Updated by Prasanna S Panchamukhi <prasanna@in.ibm.com> with
12 * hlists and exceptions notifier as suggested by Andi Kleen.
13 * 2004-July Suparna Bhattacharya <suparna@in.ibm.com> added jumper probes
14 * interface to access function arguments.
15 * 2004-Sep Prasanna S Panchamukhi <prasanna@in.ibm.com> Changed Kprobes
16 * exceptions notifier to be first on the priority list.
b94cce92
HN
17 * 2005-May Hien Nguyen <hien@us.ibm.com>, Jim Keniston
18 * <jkenisto@us.ibm.com> and Prasanna S Panchamukhi
19 * <prasanna@in.ibm.com> added function-return probes.
1da177e4
LT
20 */
21#include <linux/kprobes.h>
1da177e4
LT
22#include <linux/hash.h>
23#include <linux/init.h>
4e57b681 24#include <linux/slab.h>
e3869792 25#include <linux/stddef.h>
9984de1a 26#include <linux/export.h>
9ec4b1f3 27#include <linux/moduleloader.h>
3a872d89 28#include <linux/kallsyms.h>
b4c6c34a 29#include <linux/freezer.h>
346fd59b
SD
30#include <linux/seq_file.h>
31#include <linux/debugfs.h>
b2be84df 32#include <linux/sysctl.h>
1eeb66a1 33#include <linux/kdebug.h>
4460fdad 34#include <linux/memory.h>
4554dbcb 35#include <linux/ftrace.h>
afd66255 36#include <linux/cpu.h>
bf5438fc 37#include <linux/jump_label.h>
bf8f6e5b 38
bfd45be0 39#include <asm/sections.h>
1da177e4
LT
40#include <asm/cacheflush.h>
41#include <asm/errno.h>
7c0f6ba6 42#include <linux/uaccess.h>
1da177e4
LT
43
44#define KPROBE_HASH_BITS 6
45#define KPROBE_TABLE_SIZE (1 << KPROBE_HASH_BITS)
46
3a872d89 47
ef53d9c5 48static int kprobes_initialized;
1da177e4 49static struct hlist_head kprobe_table[KPROBE_TABLE_SIZE];
b94cce92 50static struct hlist_head kretprobe_inst_table[KPROBE_TABLE_SIZE];
1da177e4 51
bf8f6e5b 52/* NOTE: change this value only with kprobe_mutex held */
e579abeb 53static bool kprobes_all_disarmed;
bf8f6e5b 54
43948f50
MH
55/* This protects kprobe_table and optimizing_list */
56static DEFINE_MUTEX(kprobe_mutex);
e6584523 57static DEFINE_PER_CPU(struct kprobe *, kprobe_instance) = NULL;
ef53d9c5 58static struct {
ec484608 59 raw_spinlock_t lock ____cacheline_aligned_in_smp;
ef53d9c5
S
60} kretprobe_table_locks[KPROBE_TABLE_SIZE];
61
290e3070
NR
62kprobe_opcode_t * __weak kprobe_lookup_name(const char *name,
63 unsigned int __unused)
49e0b465
NR
64{
65 return ((kprobe_opcode_t *)(kallsyms_lookup_name(name)));
66}
67
ec484608 68static raw_spinlock_t *kretprobe_table_lock_ptr(unsigned long hash)
ef53d9c5
S
69{
70 return &(kretprobe_table_locks[hash].lock);
71}
1da177e4 72
376e2424
MH
73/* Blacklist -- list of struct kprobe_blacklist_entry */
74static LIST_HEAD(kprobe_blacklist);
3d8d996e 75
2d14e39d 76#ifdef __ARCH_WANT_KPROBES_INSN_SLOT
9ec4b1f3
AM
77/*
78 * kprobe->ainsn.insn points to the copy of the instruction to be
79 * single-stepped. x86_64, POWER4 and above have no-exec support and
80 * stepping on the instruction on a vmalloced/kmalloced/data page
81 * is a recipe for disaster
82 */
9ec4b1f3 83struct kprobe_insn_page {
c5cb5a2d 84 struct list_head list;
9ec4b1f3 85 kprobe_opcode_t *insns; /* Page of instruction slots */
af96397d 86 struct kprobe_insn_cache *cache;
9ec4b1f3 87 int nused;
b4c6c34a 88 int ngarbage;
4610ee1d 89 char slot_used[];
9ec4b1f3
AM
90};
91
4610ee1d
MH
92#define KPROBE_INSN_PAGE_SIZE(slots) \
93 (offsetof(struct kprobe_insn_page, slot_used) + \
94 (sizeof(char) * (slots)))
95
4610ee1d
MH
96static int slots_per_page(struct kprobe_insn_cache *c)
97{
98 return PAGE_SIZE/(c->insn_size * sizeof(kprobe_opcode_t));
99}
100
ab40c5c6
MH
101enum kprobe_slot_state {
102 SLOT_CLEAN = 0,
103 SLOT_DIRTY = 1,
104 SLOT_USED = 2,
105};
106
63fef14f 107void __weak *alloc_insn_page(void)
af96397d
HC
108{
109 return module_alloc(PAGE_SIZE);
110}
111
c93f5cf5 112void __weak free_insn_page(void *page)
af96397d 113{
be1f221c 114 module_memfree(page);
af96397d
HC
115}
116
c802d64a
HC
117struct kprobe_insn_cache kprobe_insn_slots = {
118 .mutex = __MUTEX_INITIALIZER(kprobe_insn_slots.mutex),
af96397d
HC
119 .alloc = alloc_insn_page,
120 .free = free_insn_page,
4610ee1d
MH
121 .pages = LIST_HEAD_INIT(kprobe_insn_slots.pages),
122 .insn_size = MAX_INSN_SIZE,
123 .nr_garbage = 0,
124};
55479f64 125static int collect_garbage_slots(struct kprobe_insn_cache *c);
b4c6c34a 126
9ec4b1f3 127/**
12941560 128 * __get_insn_slot() - Find a slot on an executable page for an instruction.
9ec4b1f3
AM
129 * We allocate an executable page if there's no room on existing ones.
130 */
55479f64 131kprobe_opcode_t *__get_insn_slot(struct kprobe_insn_cache *c)
9ec4b1f3
AM
132{
133 struct kprobe_insn_page *kip;
c802d64a 134 kprobe_opcode_t *slot = NULL;
9ec4b1f3 135
5b485629 136 /* Since the slot array is not protected by rcu, we need a mutex */
c802d64a 137 mutex_lock(&c->mutex);
6f716acd 138 retry:
5b485629
MH
139 rcu_read_lock();
140 list_for_each_entry_rcu(kip, &c->pages, list) {
4610ee1d 141 if (kip->nused < slots_per_page(c)) {
9ec4b1f3 142 int i;
4610ee1d 143 for (i = 0; i < slots_per_page(c); i++) {
ab40c5c6
MH
144 if (kip->slot_used[i] == SLOT_CLEAN) {
145 kip->slot_used[i] = SLOT_USED;
9ec4b1f3 146 kip->nused++;
c802d64a 147 slot = kip->insns + (i * c->insn_size);
5b485629 148 rcu_read_unlock();
c802d64a 149 goto out;
9ec4b1f3
AM
150 }
151 }
4610ee1d
MH
152 /* kip->nused is broken. Fix it. */
153 kip->nused = slots_per_page(c);
154 WARN_ON(1);
9ec4b1f3
AM
155 }
156 }
5b485629 157 rcu_read_unlock();
9ec4b1f3 158
b4c6c34a 159 /* If there are any garbage slots, collect it and try again. */
4610ee1d 160 if (c->nr_garbage && collect_garbage_slots(c) == 0)
b4c6c34a 161 goto retry;
4610ee1d
MH
162
163 /* All out of space. Need to allocate a new page. */
164 kip = kmalloc(KPROBE_INSN_PAGE_SIZE(slots_per_page(c)), GFP_KERNEL);
6f716acd 165 if (!kip)
c802d64a 166 goto out;
9ec4b1f3
AM
167
168 /*
169 * Use module_alloc so this page is within +/- 2GB of where the
170 * kernel image and loaded module images reside. This is required
171 * so x86_64 can correctly handle the %rip-relative fixups.
172 */
af96397d 173 kip->insns = c->alloc();
9ec4b1f3
AM
174 if (!kip->insns) {
175 kfree(kip);
c802d64a 176 goto out;
9ec4b1f3 177 }
c5cb5a2d 178 INIT_LIST_HEAD(&kip->list);
4610ee1d 179 memset(kip->slot_used, SLOT_CLEAN, slots_per_page(c));
ab40c5c6 180 kip->slot_used[0] = SLOT_USED;
9ec4b1f3 181 kip->nused = 1;
b4c6c34a 182 kip->ngarbage = 0;
af96397d 183 kip->cache = c;
5b485629 184 list_add_rcu(&kip->list, &c->pages);
c802d64a
HC
185 slot = kip->insns;
186out:
187 mutex_unlock(&c->mutex);
188 return slot;
12941560
MH
189}
190
b4c6c34a 191/* Return 1 if all garbages are collected, otherwise 0. */
55479f64 192static int collect_one_slot(struct kprobe_insn_page *kip, int idx)
b4c6c34a 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 */
4610ee1d 203 if (!list_is_singular(&kip->list)) {
5b485629
MH
204 list_del_rcu(&kip->list);
205 synchronize_rcu();
af96397d 206 kip->cache->free(kip->insns);
b4c6c34a
MH
207 kfree(kip);
208 }
209 return 1;
210 }
211 return 0;
212}
213
55479f64 214static int collect_garbage_slots(struct kprobe_insn_cache *c)
b4c6c34a 215{
c5cb5a2d 216 struct kprobe_insn_page *kip, *next;
b4c6c34a 217
615d0ebb 218 /* Ensure no-one is interrupted on the garbages */
ae8b7ce7 219 synchronize_rcu();
b4c6c34a 220
4610ee1d 221 list_for_each_entry_safe(kip, next, &c->pages, list) {
b4c6c34a 222 int i;
b4c6c34a
MH
223 if (kip->ngarbage == 0)
224 continue;
225 kip->ngarbage = 0; /* we will collect all garbages */
4610ee1d 226 for (i = 0; i < slots_per_page(c); i++) {
5b485629 227 if (kip->slot_used[i] == SLOT_DIRTY && collect_one_slot(kip, i))
b4c6c34a
MH
228 break;
229 }
230 }
4610ee1d 231 c->nr_garbage = 0;
b4c6c34a
MH
232 return 0;
233}
234
55479f64
MH
235void __free_insn_slot(struct kprobe_insn_cache *c,
236 kprobe_opcode_t *slot, int dirty)
9ec4b1f3
AM
237{
238 struct kprobe_insn_page *kip;
5b485629 239 long idx;
9ec4b1f3 240
c802d64a 241 mutex_lock(&c->mutex);
5b485629
MH
242 rcu_read_lock();
243 list_for_each_entry_rcu(kip, &c->pages, list) {
244 idx = ((long)slot - (long)kip->insns) /
245 (c->insn_size * sizeof(kprobe_opcode_t));
246 if (idx >= 0 && idx < slots_per_page(c))
c802d64a 247 goto out;
9ec4b1f3 248 }
5b485629 249 /* Could not find this slot. */
4610ee1d 250 WARN_ON(1);
5b485629 251 kip = NULL;
c802d64a 252out:
5b485629
MH
253 rcu_read_unlock();
254 /* Mark and sweep: this may sleep */
255 if (kip) {
256 /* Check double free */
257 WARN_ON(kip->slot_used[idx] != SLOT_USED);
258 if (dirty) {
259 kip->slot_used[idx] = SLOT_DIRTY;
260 kip->ngarbage++;
261 if (++c->nr_garbage > slots_per_page(c))
262 collect_garbage_slots(c);
263 } else {
264 collect_one_slot(kip, idx);
265 }
266 }
c802d64a 267 mutex_unlock(&c->mutex);
4610ee1d 268}
6f716acd 269
5b485629
MH
270/*
271 * Check given address is on the page of kprobe instruction slots.
272 * This will be used for checking whether the address on a stack
273 * is on a text area or not.
274 */
275bool __is_insn_slot_addr(struct kprobe_insn_cache *c, unsigned long addr)
276{
277 struct kprobe_insn_page *kip;
278 bool ret = false;
279
280 rcu_read_lock();
281 list_for_each_entry_rcu(kip, &c->pages, list) {
282 if (addr >= (unsigned long)kip->insns &&
283 addr < (unsigned long)kip->insns + PAGE_SIZE) {
284 ret = true;
285 break;
286 }
287 }
288 rcu_read_unlock();
289
290 return ret;
291}
292
afd66255
MH
293#ifdef CONFIG_OPTPROBES
294/* For optimized_kprobe buffer */
c802d64a
HC
295struct kprobe_insn_cache kprobe_optinsn_slots = {
296 .mutex = __MUTEX_INITIALIZER(kprobe_optinsn_slots.mutex),
af96397d
HC
297 .alloc = alloc_insn_page,
298 .free = free_insn_page,
afd66255
MH
299 .pages = LIST_HEAD_INIT(kprobe_optinsn_slots.pages),
300 /* .insn_size is initialized later */
301 .nr_garbage = 0,
302};
afd66255 303#endif
2d14e39d 304#endif
9ec4b1f3 305
e6584523
AM
306/* We have preemption disabled.. so it is safe to use __ versions */
307static inline void set_kprobe_instance(struct kprobe *kp)
308{
b76834bc 309 __this_cpu_write(kprobe_instance, kp);
e6584523
AM
310}
311
312static inline void reset_kprobe_instance(void)
313{
b76834bc 314 __this_cpu_write(kprobe_instance, NULL);
e6584523
AM
315}
316
3516a460
AM
317/*
318 * This routine is called either:
49a2a1b8 319 * - under the kprobe_mutex - during kprobe_[un]register()
3516a460 320 * OR
d217d545 321 * - with preemption disabled - from arch/xxx/kernel/kprobes.c
3516a460 322 */
820aede0 323struct kprobe *get_kprobe(void *addr)
1da177e4
LT
324{
325 struct hlist_head *head;
3516a460 326 struct kprobe *p;
1da177e4
LT
327
328 head = &kprobe_table[hash_ptr(addr, KPROBE_HASH_BITS)];
b67bfe0d 329 hlist_for_each_entry_rcu(p, head, hlist) {
1da177e4
LT
330 if (p->addr == addr)
331 return p;
332 }
afd66255 333
1da177e4
LT
334 return NULL;
335}
820aede0 336NOKPROBE_SYMBOL(get_kprobe);
1da177e4 337
820aede0 338static int aggr_pre_handler(struct kprobe *p, struct pt_regs *regs);
afd66255
MH
339
340/* Return true if the kprobe is an aggregator */
341static inline int kprobe_aggrprobe(struct kprobe *p)
342{
343 return p->pre_handler == aggr_pre_handler;
344}
345
6274de49
MH
346/* Return true(!0) if the kprobe is unused */
347static inline int kprobe_unused(struct kprobe *p)
348{
349 return kprobe_aggrprobe(p) && kprobe_disabled(p) &&
350 list_empty(&p->list);
351}
352
afd66255
MH
353/*
354 * Keep all fields in the kprobe consistent
355 */
6d8e40a8 356static inline void copy_kprobe(struct kprobe *ap, struct kprobe *p)
afd66255 357{
6d8e40a8
MH
358 memcpy(&p->opcode, &ap->opcode, sizeof(kprobe_opcode_t));
359 memcpy(&p->ainsn, &ap->ainsn, sizeof(struct arch_specific_insn));
afd66255
MH
360}
361
362#ifdef CONFIG_OPTPROBES
b2be84df
MH
363/* NOTE: change this value only with kprobe_mutex held */
364static bool kprobes_allow_optimization;
365
afd66255
MH
366/*
367 * Call all pre_handler on the list, but ignores its return value.
368 * This must be called from arch-dep optimized caller.
369 */
820aede0 370void opt_pre_handler(struct kprobe *p, struct pt_regs *regs)
afd66255
MH
371{
372 struct kprobe *kp;
373
374 list_for_each_entry_rcu(kp, &p->list, list) {
375 if (kp->pre_handler && likely(!kprobe_disabled(kp))) {
376 set_kprobe_instance(kp);
4f3a8714 377 kp->pre_handler(kp, regs);
afd66255
MH
378 }
379 reset_kprobe_instance();
380 }
381}
820aede0 382NOKPROBE_SYMBOL(opt_pre_handler);
afd66255 383
6274de49 384/* Free optimized instructions and optimized_kprobe */
55479f64 385static void free_aggr_kprobe(struct kprobe *p)
6274de49
MH
386{
387 struct optimized_kprobe *op;
388
389 op = container_of(p, struct optimized_kprobe, kp);
390 arch_remove_optimized_kprobe(op);
391 arch_remove_kprobe(p);
392 kfree(op);
393}
394
afd66255
MH
395/* Return true(!0) if the kprobe is ready for optimization. */
396static inline int kprobe_optready(struct kprobe *p)
397{
398 struct optimized_kprobe *op;
399
400 if (kprobe_aggrprobe(p)) {
401 op = container_of(p, struct optimized_kprobe, kp);
402 return arch_prepared_optinsn(&op->optinsn);
403 }
404
405 return 0;
406}
407
6274de49
MH
408/* Return true(!0) if the kprobe is disarmed. Note: p must be on hash list */
409static inline int kprobe_disarmed(struct kprobe *p)
410{
411 struct optimized_kprobe *op;
412
413 /* If kprobe is not aggr/opt probe, just return kprobe is disabled */
414 if (!kprobe_aggrprobe(p))
415 return kprobe_disabled(p);
416
417 op = container_of(p, struct optimized_kprobe, kp);
418
419 return kprobe_disabled(p) && list_empty(&op->list);
420}
421
422/* Return true(!0) if the probe is queued on (un)optimizing lists */
55479f64 423static int kprobe_queued(struct kprobe *p)
6274de49
MH
424{
425 struct optimized_kprobe *op;
426
427 if (kprobe_aggrprobe(p)) {
428 op = container_of(p, struct optimized_kprobe, kp);
429 if (!list_empty(&op->list))
430 return 1;
431 }
432 return 0;
433}
434
afd66255
MH
435/*
436 * Return an optimized kprobe whose optimizing code replaces
437 * instructions including addr (exclude breakpoint).
438 */
55479f64 439static struct kprobe *get_optimized_kprobe(unsigned long addr)
afd66255
MH
440{
441 int i;
442 struct kprobe *p = NULL;
443 struct optimized_kprobe *op;
444
445 /* Don't check i == 0, since that is a breakpoint case. */
446 for (i = 1; !p && i < MAX_OPTIMIZED_LENGTH; i++)
447 p = get_kprobe((void *)(addr - i));
448
449 if (p && kprobe_optready(p)) {
450 op = container_of(p, struct optimized_kprobe, kp);
451 if (arch_within_optimized_kprobe(op, addr))
452 return p;
453 }
454
455 return NULL;
456}
457
458/* Optimization staging list, protected by kprobe_mutex */
459static LIST_HEAD(optimizing_list);
6274de49 460static LIST_HEAD(unoptimizing_list);
7b959fc5 461static LIST_HEAD(freeing_list);
afd66255
MH
462
463static void kprobe_optimizer(struct work_struct *work);
464static DECLARE_DELAYED_WORK(optimizing_work, kprobe_optimizer);
465#define OPTIMIZE_DELAY 5
466
61f4e13f
MH
467/*
468 * Optimize (replace a breakpoint with a jump) kprobes listed on
469 * optimizing_list.
470 */
55479f64 471static void do_optimize_kprobes(void)
afd66255 472{
f1c6ece2 473 lockdep_assert_held(&text_mutex);
afd66255
MH
474 /*
475 * The optimization/unoptimization refers online_cpus via
476 * stop_machine() and cpu-hotplug modifies online_cpus.
477 * And same time, text_mutex will be held in cpu-hotplug and here.
478 * This combination can cause a deadlock (cpu-hotplug try to lock
479 * text_mutex but stop_machine can not be done because online_cpus
480 * has been changed)
2d1e38f5 481 * To avoid this deadlock, caller must have locked cpu hotplug
afd66255
MH
482 * for preventing cpu-hotplug outside of text_mutex locking.
483 */
2d1e38f5
TG
484 lockdep_assert_cpus_held();
485
486 /* Optimization never be done when disarmed */
487 if (kprobes_all_disarmed || !kprobes_allow_optimization ||
488 list_empty(&optimizing_list))
489 return;
490
cd7ebe22 491 arch_optimize_kprobes(&optimizing_list);
61f4e13f
MH
492}
493
6274de49
MH
494/*
495 * Unoptimize (replace a jump with a breakpoint and remove the breakpoint
496 * if need) kprobes listed on unoptimizing_list.
497 */
55479f64 498static void do_unoptimize_kprobes(void)
6274de49
MH
499{
500 struct optimized_kprobe *op, *tmp;
501
f1c6ece2 502 lockdep_assert_held(&text_mutex);
2d1e38f5
TG
503 /* See comment in do_optimize_kprobes() */
504 lockdep_assert_cpus_held();
505
6274de49
MH
506 /* Unoptimization must be done anytime */
507 if (list_empty(&unoptimizing_list))
508 return;
509
7b959fc5 510 arch_unoptimize_kprobes(&unoptimizing_list, &freeing_list);
f984ba4e 511 /* Loop free_list for disarming */
7b959fc5 512 list_for_each_entry_safe(op, tmp, &freeing_list, list) {
f66c0447
MH
513 /* Switching from detour code to origin */
514 op->kp.flags &= ~KPROBE_FLAG_OPTIMIZED;
6274de49
MH
515 /* Disarm probes if marked disabled */
516 if (kprobe_disabled(&op->kp))
517 arch_disarm_kprobe(&op->kp);
518 if (kprobe_unused(&op->kp)) {
519 /*
520 * Remove unused probes from hash list. After waiting
521 * for synchronization, these probes are reclaimed.
522 * (reclaiming is done by do_free_cleaned_kprobes.)
523 */
524 hlist_del_rcu(&op->kp.hlist);
6274de49
MH
525 } else
526 list_del_init(&op->list);
527 }
6274de49
MH
528}
529
530/* Reclaim all kprobes on the free_list */
55479f64 531static void do_free_cleaned_kprobes(void)
6274de49
MH
532{
533 struct optimized_kprobe *op, *tmp;
534
7b959fc5 535 list_for_each_entry_safe(op, tmp, &freeing_list, list) {
6274de49 536 list_del_init(&op->list);
cbdd96f5
MH
537 if (WARN_ON_ONCE(!kprobe_unused(&op->kp))) {
538 /*
539 * This must not happen, but if there is a kprobe
540 * still in use, keep it on kprobes hash list.
541 */
542 continue;
543 }
6274de49
MH
544 free_aggr_kprobe(&op->kp);
545 }
546}
547
548/* Start optimizer after OPTIMIZE_DELAY passed */
55479f64 549static void kick_kprobe_optimizer(void)
6274de49 550{
ad72b3be 551 schedule_delayed_work(&optimizing_work, OPTIMIZE_DELAY);
6274de49
MH
552}
553
61f4e13f 554/* Kprobe jump optimizer */
55479f64 555static void kprobe_optimizer(struct work_struct *work)
61f4e13f 556{
72ef3794 557 mutex_lock(&kprobe_mutex);
2d1e38f5 558 cpus_read_lock();
f1c6ece2 559 mutex_lock(&text_mutex);
61f4e13f
MH
560 /* Lock modules while optimizing kprobes */
561 mutex_lock(&module_mutex);
61f4e13f
MH
562
563 /*
6274de49
MH
564 * Step 1: Unoptimize kprobes and collect cleaned (unused and disarmed)
565 * kprobes before waiting for quiesence period.
566 */
7b959fc5 567 do_unoptimize_kprobes();
6274de49
MH
568
569 /*
a30b85df
MH
570 * Step 2: Wait for quiesence period to ensure all potentially
571 * preempted tasks to have normally scheduled. Because optprobe
572 * may modify multiple instructions, there is a chance that Nth
573 * instruction is preempted. In that case, such tasks can return
574 * to 2nd-Nth byte of jump instruction. This wait is for avoiding it.
575 * Note that on non-preemptive kernel, this is transparently converted
576 * to synchronoze_sched() to wait for all interrupts to have completed.
61f4e13f 577 */
a30b85df 578 synchronize_rcu_tasks();
61f4e13f 579
6274de49 580 /* Step 3: Optimize kprobes after quiesence period */
61f4e13f 581 do_optimize_kprobes();
6274de49
MH
582
583 /* Step 4: Free cleaned kprobes after quiesence period */
7b959fc5 584 do_free_cleaned_kprobes();
6274de49 585
afd66255 586 mutex_unlock(&module_mutex);
f1c6ece2 587 mutex_unlock(&text_mutex);
2d1e38f5 588 cpus_read_unlock();
72ef3794 589 mutex_unlock(&kprobe_mutex);
6274de49 590
cd7ebe22 591 /* Step 5: Kick optimizer again if needed */
f984ba4e 592 if (!list_empty(&optimizing_list) || !list_empty(&unoptimizing_list))
cd7ebe22 593 kick_kprobe_optimizer();
6274de49
MH
594}
595
596/* Wait for completing optimization and unoptimization */
30e7d894 597void wait_for_kprobe_optimizer(void)
6274de49 598{
ad72b3be
TH
599 mutex_lock(&kprobe_mutex);
600
601 while (!list_empty(&optimizing_list) || !list_empty(&unoptimizing_list)) {
602 mutex_unlock(&kprobe_mutex);
603
604 /* this will also make optimizing_work execute immmediately */
605 flush_delayed_work(&optimizing_work);
606 /* @optimizing_work might not have been queued yet, relax */
607 cpu_relax();
608
609 mutex_lock(&kprobe_mutex);
610 }
611
612 mutex_unlock(&kprobe_mutex);
afd66255
MH
613}
614
e4add247
MH
615static bool optprobe_queued_unopt(struct optimized_kprobe *op)
616{
617 struct optimized_kprobe *_op;
618
619 list_for_each_entry(_op, &unoptimizing_list, list) {
620 if (op == _op)
621 return true;
622 }
623
624 return false;
625}
626
afd66255 627/* Optimize kprobe if p is ready to be optimized */
55479f64 628static void optimize_kprobe(struct kprobe *p)
afd66255
MH
629{
630 struct optimized_kprobe *op;
631
632 /* Check if the kprobe is disabled or not ready for optimization. */
b2be84df 633 if (!kprobe_optready(p) || !kprobes_allow_optimization ||
afd66255
MH
634 (kprobe_disabled(p) || kprobes_all_disarmed))
635 return;
636
059053a2
MH
637 /* kprobes with post_handler can not be optimized */
638 if (p->post_handler)
afd66255
MH
639 return;
640
641 op = container_of(p, struct optimized_kprobe, kp);
642
643 /* Check there is no other kprobes at the optimized instructions */
644 if (arch_check_optimized_kprobe(op) < 0)
645 return;
646
647 /* Check if it is already optimized. */
e4add247
MH
648 if (op->kp.flags & KPROBE_FLAG_OPTIMIZED) {
649 if (optprobe_queued_unopt(op)) {
650 /* This is under unoptimizing. Just dequeue the probe */
651 list_del_init(&op->list);
652 }
afd66255 653 return;
e4add247 654 }
afd66255 655 op->kp.flags |= KPROBE_FLAG_OPTIMIZED;
6274de49 656
e4add247
MH
657 /* On unoptimizing/optimizing_list, op must have OPTIMIZED flag */
658 if (WARN_ON_ONCE(!list_empty(&op->list)))
659 return;
660
661 list_add(&op->list, &optimizing_list);
662 kick_kprobe_optimizer();
6274de49
MH
663}
664
665/* Short cut to direct unoptimizing */
55479f64 666static void force_unoptimize_kprobe(struct optimized_kprobe *op)
6274de49 667{
2d1e38f5 668 lockdep_assert_cpus_held();
6274de49 669 arch_unoptimize_kprobe(op);
f66c0447 670 op->kp.flags &= ~KPROBE_FLAG_OPTIMIZED;
6274de49
MH
671 if (kprobe_disabled(&op->kp))
672 arch_disarm_kprobe(&op->kp);
afd66255
MH
673}
674
675/* Unoptimize a kprobe if p is optimized */
55479f64 676static void unoptimize_kprobe(struct kprobe *p, bool force)
afd66255
MH
677{
678 struct optimized_kprobe *op;
679
6274de49
MH
680 if (!kprobe_aggrprobe(p) || kprobe_disarmed(p))
681 return; /* This is not an optprobe nor optimized */
682
683 op = container_of(p, struct optimized_kprobe, kp);
e4add247 684 if (!kprobe_optimized(p))
6274de49 685 return;
6274de49 686
6274de49 687 if (!list_empty(&op->list)) {
e4add247
MH
688 if (optprobe_queued_unopt(op)) {
689 /* Queued in unoptimizing queue */
690 if (force) {
691 /*
692 * Forcibly unoptimize the kprobe here, and queue it
693 * in the freeing list for release afterwards.
694 */
695 force_unoptimize_kprobe(op);
696 list_move(&op->list, &freeing_list);
697 }
698 } else {
699 /* Dequeue from the optimizing queue */
700 list_del_init(&op->list);
701 op->kp.flags &= ~KPROBE_FLAG_OPTIMIZED;
702 }
6274de49
MH
703 return;
704 }
e4add247 705
6274de49 706 /* Optimized kprobe case */
e4add247 707 if (force) {
6274de49
MH
708 /* Forcibly update the code: this is a special case */
709 force_unoptimize_kprobe(op);
e4add247 710 } else {
6274de49
MH
711 list_add(&op->list, &unoptimizing_list);
712 kick_kprobe_optimizer();
afd66255
MH
713 }
714}
715
0490cd1f 716/* Cancel unoptimizing for reusing */
819319fc 717static int reuse_unused_kprobe(struct kprobe *ap)
0490cd1f
MH
718{
719 struct optimized_kprobe *op;
720
0490cd1f
MH
721 /*
722 * Unused kprobe MUST be on the way of delayed unoptimizing (means
723 * there is still a relative jump) and disabled.
724 */
725 op = container_of(ap, struct optimized_kprobe, kp);
4458515b 726 WARN_ON_ONCE(list_empty(&op->list));
0490cd1f
MH
727 /* Enable the probe again */
728 ap->flags &= ~KPROBE_FLAG_DISABLED;
729 /* Optimize it again (remove from op->list) */
5f843ed4
MH
730 if (!kprobe_optready(ap))
731 return -EINVAL;
819319fc 732
0490cd1f 733 optimize_kprobe(ap);
819319fc 734 return 0;
0490cd1f
MH
735}
736
afd66255 737/* Remove optimized instructions */
55479f64 738static void kill_optimized_kprobe(struct kprobe *p)
afd66255
MH
739{
740 struct optimized_kprobe *op;
741
742 op = container_of(p, struct optimized_kprobe, kp);
6274de49
MH
743 if (!list_empty(&op->list))
744 /* Dequeue from the (un)optimization queue */
afd66255 745 list_del_init(&op->list);
6274de49 746 op->kp.flags &= ~KPROBE_FLAG_OPTIMIZED;
7b959fc5
MH
747
748 if (kprobe_unused(p)) {
749 /* Enqueue if it is unused */
750 list_add(&op->list, &freeing_list);
751 /*
752 * Remove unused probes from the hash list. After waiting
753 * for synchronization, this probe is reclaimed.
754 * (reclaiming is done by do_free_cleaned_kprobes().)
755 */
756 hlist_del_rcu(&op->kp.hlist);
757 }
758
6274de49 759 /* Don't touch the code, because it is already freed. */
afd66255
MH
760 arch_remove_optimized_kprobe(op);
761}
762
a460246c
MH
763static inline
764void __prepare_optimized_kprobe(struct optimized_kprobe *op, struct kprobe *p)
765{
766 if (!kprobe_ftrace(p))
767 arch_prepare_optimized_kprobe(op, p);
768}
769
afd66255 770/* Try to prepare optimized instructions */
55479f64 771static void prepare_optimized_kprobe(struct kprobe *p)
afd66255
MH
772{
773 struct optimized_kprobe *op;
774
775 op = container_of(p, struct optimized_kprobe, kp);
a460246c 776 __prepare_optimized_kprobe(op, p);
afd66255
MH
777}
778
afd66255 779/* Allocate new optimized_kprobe and try to prepare optimized instructions */
55479f64 780static struct kprobe *alloc_aggr_kprobe(struct kprobe *p)
afd66255
MH
781{
782 struct optimized_kprobe *op;
783
784 op = kzalloc(sizeof(struct optimized_kprobe), GFP_KERNEL);
785 if (!op)
786 return NULL;
787
788 INIT_LIST_HEAD(&op->list);
789 op->kp.addr = p->addr;
a460246c 790 __prepare_optimized_kprobe(op, p);
afd66255
MH
791
792 return &op->kp;
793}
794
55479f64 795static void init_aggr_kprobe(struct kprobe *ap, struct kprobe *p);
afd66255
MH
796
797/*
798 * Prepare an optimized_kprobe and optimize it
799 * NOTE: p must be a normal registered kprobe
800 */
55479f64 801static void try_to_optimize_kprobe(struct kprobe *p)
afd66255
MH
802{
803 struct kprobe *ap;
804 struct optimized_kprobe *op;
805
ae6aa16f
MH
806 /* Impossible to optimize ftrace-based kprobe */
807 if (kprobe_ftrace(p))
808 return;
809
25764288 810 /* For preparing optimization, jump_label_text_reserved() is called */
2d1e38f5 811 cpus_read_lock();
25764288
MH
812 jump_label_lock();
813 mutex_lock(&text_mutex);
814
afd66255
MH
815 ap = alloc_aggr_kprobe(p);
816 if (!ap)
25764288 817 goto out;
afd66255
MH
818
819 op = container_of(ap, struct optimized_kprobe, kp);
820 if (!arch_prepared_optinsn(&op->optinsn)) {
821 /* If failed to setup optimizing, fallback to kprobe */
6274de49
MH
822 arch_remove_optimized_kprobe(op);
823 kfree(op);
25764288 824 goto out;
afd66255
MH
825 }
826
827 init_aggr_kprobe(ap, p);
25764288
MH
828 optimize_kprobe(ap); /* This just kicks optimizer thread */
829
830out:
831 mutex_unlock(&text_mutex);
832 jump_label_unlock();
2d1e38f5 833 cpus_read_unlock();
afd66255
MH
834}
835
b2be84df 836#ifdef CONFIG_SYSCTL
55479f64 837static void optimize_all_kprobes(void)
b2be84df
MH
838{
839 struct hlist_head *head;
b2be84df
MH
840 struct kprobe *p;
841 unsigned int i;
842
5c51543b 843 mutex_lock(&kprobe_mutex);
b2be84df
MH
844 /* If optimization is already allowed, just return */
845 if (kprobes_allow_optimization)
5c51543b 846 goto out;
b2be84df 847
2d1e38f5 848 cpus_read_lock();
b2be84df 849 kprobes_allow_optimization = true;
b2be84df
MH
850 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
851 head = &kprobe_table[i];
b67bfe0d 852 hlist_for_each_entry_rcu(p, head, hlist)
b2be84df
MH
853 if (!kprobe_disabled(p))
854 optimize_kprobe(p);
855 }
2d1e38f5 856 cpus_read_unlock();
b2be84df 857 printk(KERN_INFO "Kprobes globally optimized\n");
5c51543b
MH
858out:
859 mutex_unlock(&kprobe_mutex);
b2be84df
MH
860}
861
55479f64 862static void unoptimize_all_kprobes(void)
b2be84df
MH
863{
864 struct hlist_head *head;
b2be84df
MH
865 struct kprobe *p;
866 unsigned int i;
867
5c51543b 868 mutex_lock(&kprobe_mutex);
b2be84df 869 /* If optimization is already prohibited, just return */
5c51543b
MH
870 if (!kprobes_allow_optimization) {
871 mutex_unlock(&kprobe_mutex);
b2be84df 872 return;
5c51543b 873 }
b2be84df 874
2d1e38f5 875 cpus_read_lock();
b2be84df 876 kprobes_allow_optimization = false;
b2be84df
MH
877 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
878 head = &kprobe_table[i];
b67bfe0d 879 hlist_for_each_entry_rcu(p, head, hlist) {
b2be84df 880 if (!kprobe_disabled(p))
6274de49 881 unoptimize_kprobe(p, false);
b2be84df
MH
882 }
883 }
2d1e38f5 884 cpus_read_unlock();
5c51543b
MH
885 mutex_unlock(&kprobe_mutex);
886
6274de49
MH
887 /* Wait for unoptimizing completion */
888 wait_for_kprobe_optimizer();
889 printk(KERN_INFO "Kprobes globally unoptimized\n");
b2be84df
MH
890}
891
5c51543b 892static DEFINE_MUTEX(kprobe_sysctl_mutex);
b2be84df
MH
893int sysctl_kprobes_optimization;
894int proc_kprobes_optimization_handler(struct ctl_table *table, int write,
895 void __user *buffer, size_t *length,
896 loff_t *ppos)
897{
898 int ret;
899
5c51543b 900 mutex_lock(&kprobe_sysctl_mutex);
b2be84df
MH
901 sysctl_kprobes_optimization = kprobes_allow_optimization ? 1 : 0;
902 ret = proc_dointvec_minmax(table, write, buffer, length, ppos);
903
904 if (sysctl_kprobes_optimization)
905 optimize_all_kprobes();
906 else
907 unoptimize_all_kprobes();
5c51543b 908 mutex_unlock(&kprobe_sysctl_mutex);
b2be84df
MH
909
910 return ret;
911}
912#endif /* CONFIG_SYSCTL */
913
6274de49 914/* Put a breakpoint for a probe. Must be called with text_mutex locked */
55479f64 915static void __arm_kprobe(struct kprobe *p)
afd66255 916{
6d8e40a8 917 struct kprobe *_p;
afd66255
MH
918
919 /* Check collision with other optimized kprobes */
6d8e40a8
MH
920 _p = get_optimized_kprobe((unsigned long)p->addr);
921 if (unlikely(_p))
6274de49
MH
922 /* Fallback to unoptimized kprobe */
923 unoptimize_kprobe(_p, true);
afd66255
MH
924
925 arch_arm_kprobe(p);
926 optimize_kprobe(p); /* Try to optimize (add kprobe to a list) */
927}
928
6274de49 929/* Remove the breakpoint of a probe. Must be called with text_mutex locked */
55479f64 930static void __disarm_kprobe(struct kprobe *p, bool reopt)
afd66255 931{
6d8e40a8 932 struct kprobe *_p;
afd66255 933
69d54b91
WN
934 /* Try to unoptimize */
935 unoptimize_kprobe(p, kprobes_all_disarmed);
afd66255 936
6274de49
MH
937 if (!kprobe_queued(p)) {
938 arch_disarm_kprobe(p);
939 /* If another kprobe was blocked, optimize it. */
940 _p = get_optimized_kprobe((unsigned long)p->addr);
941 if (unlikely(_p) && reopt)
942 optimize_kprobe(_p);
943 }
944 /* TODO: reoptimize others after unoptimized this probe */
afd66255
MH
945}
946
947#else /* !CONFIG_OPTPROBES */
948
949#define optimize_kprobe(p) do {} while (0)
6274de49 950#define unoptimize_kprobe(p, f) do {} while (0)
afd66255
MH
951#define kill_optimized_kprobe(p) do {} while (0)
952#define prepare_optimized_kprobe(p) do {} while (0)
953#define try_to_optimize_kprobe(p) do {} while (0)
954#define __arm_kprobe(p) arch_arm_kprobe(p)
6274de49
MH
955#define __disarm_kprobe(p, o) arch_disarm_kprobe(p)
956#define kprobe_disarmed(p) kprobe_disabled(p)
957#define wait_for_kprobe_optimizer() do {} while (0)
afd66255 958
819319fc 959static int reuse_unused_kprobe(struct kprobe *ap)
0490cd1f 960{
819319fc
MH
961 /*
962 * If the optimized kprobe is NOT supported, the aggr kprobe is
963 * released at the same time that the last aggregated kprobe is
964 * unregistered.
965 * Thus there should be no chance to reuse unused kprobe.
966 */
0490cd1f 967 printk(KERN_ERR "Error: There should be no unused kprobe here.\n");
819319fc 968 return -EINVAL;
0490cd1f
MH
969}
970
55479f64 971static void free_aggr_kprobe(struct kprobe *p)
afd66255 972{
6274de49 973 arch_remove_kprobe(p);
afd66255
MH
974 kfree(p);
975}
976
55479f64 977static struct kprobe *alloc_aggr_kprobe(struct kprobe *p)
afd66255
MH
978{
979 return kzalloc(sizeof(struct kprobe), GFP_KERNEL);
980}
981#endif /* CONFIG_OPTPROBES */
982
e7dbfe34 983#ifdef CONFIG_KPROBES_ON_FTRACE
ae6aa16f 984static struct ftrace_ops kprobe_ftrace_ops __read_mostly = {
0bc11ed5
MH
985 .func = kprobe_ftrace_handler,
986 .flags = FTRACE_OPS_FL_SAVE_REGS,
987};
988
989static struct ftrace_ops kprobe_ipmodify_ops __read_mostly = {
e5253896 990 .func = kprobe_ftrace_handler,
1d70be34 991 .flags = FTRACE_OPS_FL_SAVE_REGS | FTRACE_OPS_FL_IPMODIFY,
ae6aa16f 992};
0bc11ed5
MH
993
994static int kprobe_ipmodify_enabled;
ae6aa16f
MH
995static int kprobe_ftrace_enabled;
996
997/* Must ensure p->addr is really on ftrace */
55479f64 998static int prepare_kprobe(struct kprobe *p)
ae6aa16f
MH
999{
1000 if (!kprobe_ftrace(p))
1001 return arch_prepare_kprobe(p);
1002
1003 return arch_prepare_kprobe_ftrace(p);
1004}
1005
1006/* Caller must lock kprobe_mutex */
0bc11ed5
MH
1007static int __arm_kprobe_ftrace(struct kprobe *p, struct ftrace_ops *ops,
1008 int *cnt)
ae6aa16f 1009{
12310e34 1010 int ret = 0;
ae6aa16f 1011
0bc11ed5 1012 ret = ftrace_set_filter_ip(ops, (unsigned long)p->addr, 0, 0);
12310e34 1013 if (ret) {
4458515b
MH
1014 pr_debug("Failed to arm kprobe-ftrace at %pS (%d)\n",
1015 p->addr, ret);
12310e34
JY
1016 return ret;
1017 }
1018
0bc11ed5
MH
1019 if (*cnt == 0) {
1020 ret = register_ftrace_function(ops);
12310e34
JY
1021 if (ret) {
1022 pr_debug("Failed to init kprobe-ftrace (%d)\n", ret);
1023 goto err_ftrace;
1024 }
ae6aa16f 1025 }
12310e34 1026
0bc11ed5 1027 (*cnt)++;
12310e34
JY
1028 return ret;
1029
1030err_ftrace:
1031 /*
0bc11ed5
MH
1032 * At this point, sinec ops is not registered, we should be sefe from
1033 * registering empty filter.
12310e34 1034 */
0bc11ed5 1035 ftrace_set_filter_ip(ops, (unsigned long)p->addr, 1, 0);
12310e34 1036 return ret;
ae6aa16f
MH
1037}
1038
0bc11ed5
MH
1039static int arm_kprobe_ftrace(struct kprobe *p)
1040{
1041 bool ipmodify = (p->post_handler != NULL);
1042
1043 return __arm_kprobe_ftrace(p,
1044 ipmodify ? &kprobe_ipmodify_ops : &kprobe_ftrace_ops,
1045 ipmodify ? &kprobe_ipmodify_enabled : &kprobe_ftrace_enabled);
1046}
1047
ae6aa16f 1048/* Caller must lock kprobe_mutex */
0bc11ed5
MH
1049static int __disarm_kprobe_ftrace(struct kprobe *p, struct ftrace_ops *ops,
1050 int *cnt)
ae6aa16f 1051{
297f9233 1052 int ret = 0;
ae6aa16f 1053
0bc11ed5
MH
1054 if (*cnt == 1) {
1055 ret = unregister_ftrace_function(ops);
297f9233
JY
1056 if (WARN(ret < 0, "Failed to unregister kprobe-ftrace (%d)\n", ret))
1057 return ret;
ae6aa16f 1058 }
297f9233 1059
0bc11ed5 1060 (*cnt)--;
297f9233 1061
0bc11ed5 1062 ret = ftrace_set_filter_ip(ops, (unsigned long)p->addr, 1, 0);
4458515b
MH
1063 WARN_ONCE(ret < 0, "Failed to disarm kprobe-ftrace at %pS (%d)\n",
1064 p->addr, ret);
297f9233 1065 return ret;
ae6aa16f 1066}
0bc11ed5
MH
1067
1068static int disarm_kprobe_ftrace(struct kprobe *p)
1069{
1070 bool ipmodify = (p->post_handler != NULL);
1071
1072 return __disarm_kprobe_ftrace(p,
1073 ipmodify ? &kprobe_ipmodify_ops : &kprobe_ftrace_ops,
1074 ipmodify ? &kprobe_ipmodify_enabled : &kprobe_ftrace_enabled);
1075}
e7dbfe34 1076#else /* !CONFIG_KPROBES_ON_FTRACE */
ae6aa16f 1077#define prepare_kprobe(p) arch_prepare_kprobe(p)
12310e34 1078#define arm_kprobe_ftrace(p) (-ENODEV)
297f9233 1079#define disarm_kprobe_ftrace(p) (-ENODEV)
ae6aa16f
MH
1080#endif
1081
201517a7 1082/* Arm a kprobe with text_mutex */
12310e34 1083static int arm_kprobe(struct kprobe *kp)
201517a7 1084{
12310e34
JY
1085 if (unlikely(kprobe_ftrace(kp)))
1086 return arm_kprobe_ftrace(kp);
1087
2d1e38f5 1088 cpus_read_lock();
201517a7 1089 mutex_lock(&text_mutex);
afd66255 1090 __arm_kprobe(kp);
201517a7 1091 mutex_unlock(&text_mutex);
2d1e38f5 1092 cpus_read_unlock();
12310e34
JY
1093
1094 return 0;
201517a7
MH
1095}
1096
1097/* Disarm a kprobe with text_mutex */
297f9233 1098static int disarm_kprobe(struct kprobe *kp, bool reopt)
201517a7 1099{
297f9233
JY
1100 if (unlikely(kprobe_ftrace(kp)))
1101 return disarm_kprobe_ftrace(kp);
2d1e38f5
TG
1102
1103 cpus_read_lock();
201517a7 1104 mutex_lock(&text_mutex);
ae6aa16f 1105 __disarm_kprobe(kp, reopt);
201517a7 1106 mutex_unlock(&text_mutex);
2d1e38f5 1107 cpus_read_unlock();
297f9233
JY
1108
1109 return 0;
201517a7
MH
1110}
1111
64f562c6
AM
1112/*
1113 * Aggregate handlers for multiple kprobes support - these handlers
1114 * take care of invoking the individual kprobe handlers on p->list
1115 */
820aede0 1116static int aggr_pre_handler(struct kprobe *p, struct pt_regs *regs)
64f562c6
AM
1117{
1118 struct kprobe *kp;
1119
3516a460 1120 list_for_each_entry_rcu(kp, &p->list, list) {
de5bd88d 1121 if (kp->pre_handler && likely(!kprobe_disabled(kp))) {
e6584523 1122 set_kprobe_instance(kp);
8b0914ea
PP
1123 if (kp->pre_handler(kp, regs))
1124 return 1;
64f562c6 1125 }
e6584523 1126 reset_kprobe_instance();
64f562c6
AM
1127 }
1128 return 0;
1129}
820aede0 1130NOKPROBE_SYMBOL(aggr_pre_handler);
64f562c6 1131
820aede0
MH
1132static void aggr_post_handler(struct kprobe *p, struct pt_regs *regs,
1133 unsigned long flags)
64f562c6
AM
1134{
1135 struct kprobe *kp;
1136
3516a460 1137 list_for_each_entry_rcu(kp, &p->list, list) {
de5bd88d 1138 if (kp->post_handler && likely(!kprobe_disabled(kp))) {
e6584523 1139 set_kprobe_instance(kp);
64f562c6 1140 kp->post_handler(kp, regs, flags);
e6584523 1141 reset_kprobe_instance();
64f562c6
AM
1142 }
1143 }
64f562c6 1144}
820aede0 1145NOKPROBE_SYMBOL(aggr_post_handler);
64f562c6 1146
820aede0
MH
1147static int aggr_fault_handler(struct kprobe *p, struct pt_regs *regs,
1148 int trapnr)
64f562c6 1149{
b76834bc 1150 struct kprobe *cur = __this_cpu_read(kprobe_instance);
e6584523 1151
64f562c6
AM
1152 /*
1153 * if we faulted "during" the execution of a user specified
1154 * probe handler, invoke just that probe's fault handler
1155 */
e6584523
AM
1156 if (cur && cur->fault_handler) {
1157 if (cur->fault_handler(cur, regs, trapnr))
64f562c6
AM
1158 return 1;
1159 }
1160 return 0;
1161}
820aede0 1162NOKPROBE_SYMBOL(aggr_fault_handler);
64f562c6 1163
bf8d5c52 1164/* Walks the list and increments nmissed count for multiprobe case */
820aede0 1165void kprobes_inc_nmissed_count(struct kprobe *p)
bf8d5c52
KA
1166{
1167 struct kprobe *kp;
afd66255 1168 if (!kprobe_aggrprobe(p)) {
bf8d5c52
KA
1169 p->nmissed++;
1170 } else {
1171 list_for_each_entry_rcu(kp, &p->list, list)
1172 kp->nmissed++;
1173 }
1174 return;
1175}
820aede0 1176NOKPROBE_SYMBOL(kprobes_inc_nmissed_count);
bf8d5c52 1177
820aede0
MH
1178void recycle_rp_inst(struct kretprobe_instance *ri,
1179 struct hlist_head *head)
b94cce92 1180{
ef53d9c5
S
1181 struct kretprobe *rp = ri->rp;
1182
b94cce92
HN
1183 /* remove rp inst off the rprobe_inst_table */
1184 hlist_del(&ri->hlist);
ef53d9c5
S
1185 INIT_HLIST_NODE(&ri->hlist);
1186 if (likely(rp)) {
ec484608 1187 raw_spin_lock(&rp->lock);
ef53d9c5 1188 hlist_add_head(&ri->hlist, &rp->free_instances);
ec484608 1189 raw_spin_unlock(&rp->lock);
b94cce92
HN
1190 } else
1191 /* Unregistering */
99219a3f 1192 hlist_add_head(&ri->hlist, head);
b94cce92 1193}
820aede0 1194NOKPROBE_SYMBOL(recycle_rp_inst);
b94cce92 1195
820aede0 1196void kretprobe_hash_lock(struct task_struct *tsk,
ef53d9c5 1197 struct hlist_head **head, unsigned long *flags)
635c17c2 1198__acquires(hlist_lock)
ef53d9c5
S
1199{
1200 unsigned long hash = hash_ptr(tsk, KPROBE_HASH_BITS);
ec484608 1201 raw_spinlock_t *hlist_lock;
ef53d9c5
S
1202
1203 *head = &kretprobe_inst_table[hash];
1204 hlist_lock = kretprobe_table_lock_ptr(hash);
ec484608 1205 raw_spin_lock_irqsave(hlist_lock, *flags);
ef53d9c5 1206}
820aede0 1207NOKPROBE_SYMBOL(kretprobe_hash_lock);
ef53d9c5 1208
820aede0
MH
1209static void kretprobe_table_lock(unsigned long hash,
1210 unsigned long *flags)
635c17c2 1211__acquires(hlist_lock)
b94cce92 1212{
ec484608
TG
1213 raw_spinlock_t *hlist_lock = kretprobe_table_lock_ptr(hash);
1214 raw_spin_lock_irqsave(hlist_lock, *flags);
ef53d9c5 1215}
820aede0 1216NOKPROBE_SYMBOL(kretprobe_table_lock);
ef53d9c5 1217
820aede0
MH
1218void kretprobe_hash_unlock(struct task_struct *tsk,
1219 unsigned long *flags)
635c17c2 1220__releases(hlist_lock)
ef53d9c5
S
1221{
1222 unsigned long hash = hash_ptr(tsk, KPROBE_HASH_BITS);
ec484608 1223 raw_spinlock_t *hlist_lock;
ef53d9c5
S
1224
1225 hlist_lock = kretprobe_table_lock_ptr(hash);
ec484608 1226 raw_spin_unlock_irqrestore(hlist_lock, *flags);
ef53d9c5 1227}
820aede0 1228NOKPROBE_SYMBOL(kretprobe_hash_unlock);
ef53d9c5 1229
820aede0
MH
1230static void kretprobe_table_unlock(unsigned long hash,
1231 unsigned long *flags)
635c17c2 1232__releases(hlist_lock)
ef53d9c5 1233{
ec484608
TG
1234 raw_spinlock_t *hlist_lock = kretprobe_table_lock_ptr(hash);
1235 raw_spin_unlock_irqrestore(hlist_lock, *flags);
b94cce92 1236}
820aede0 1237NOKPROBE_SYMBOL(kretprobe_table_unlock);
b94cce92 1238
b94cce92 1239/*
c6fd91f0 1240 * This function is called from finish_task_switch when task tk becomes dead,
1241 * so that we can recycle any function-return probe instances associated
1242 * with this task. These left over instances represent probed functions
1243 * that have been called but will never return.
b94cce92 1244 */
820aede0 1245void kprobe_flush_task(struct task_struct *tk)
b94cce92 1246{
62c27be0 1247 struct kretprobe_instance *ri;
99219a3f 1248 struct hlist_head *head, empty_rp;
b67bfe0d 1249 struct hlist_node *tmp;
ef53d9c5 1250 unsigned long hash, flags = 0;
802eae7c 1251
ef53d9c5
S
1252 if (unlikely(!kprobes_initialized))
1253 /* Early boot. kretprobe_table_locks not yet initialized. */
1254 return;
1255
d496aab5 1256 INIT_HLIST_HEAD(&empty_rp);
ef53d9c5
S
1257 hash = hash_ptr(tk, KPROBE_HASH_BITS);
1258 head = &kretprobe_inst_table[hash];
1259 kretprobe_table_lock(hash, &flags);
b67bfe0d 1260 hlist_for_each_entry_safe(ri, tmp, head, hlist) {
62c27be0 1261 if (ri->task == tk)
99219a3f 1262 recycle_rp_inst(ri, &empty_rp);
62c27be0 1263 }
ef53d9c5 1264 kretprobe_table_unlock(hash, &flags);
b67bfe0d 1265 hlist_for_each_entry_safe(ri, tmp, &empty_rp, hlist) {
99219a3f 1266 hlist_del(&ri->hlist);
1267 kfree(ri);
1268 }
b94cce92 1269}
820aede0 1270NOKPROBE_SYMBOL(kprobe_flush_task);
b94cce92 1271
b94cce92
HN
1272static inline void free_rp_inst(struct kretprobe *rp)
1273{
1274 struct kretprobe_instance *ri;
b67bfe0d 1275 struct hlist_node *next;
4c4308cb 1276
b67bfe0d 1277 hlist_for_each_entry_safe(ri, next, &rp->free_instances, hlist) {
ef53d9c5 1278 hlist_del(&ri->hlist);
b94cce92
HN
1279 kfree(ri);
1280 }
1281}
1282
820aede0 1283static void cleanup_rp_inst(struct kretprobe *rp)
4a296e07 1284{
ef53d9c5 1285 unsigned long flags, hash;
4a296e07 1286 struct kretprobe_instance *ri;
b67bfe0d 1287 struct hlist_node *next;
ef53d9c5
S
1288 struct hlist_head *head;
1289
4a296e07 1290 /* No race here */
ef53d9c5
S
1291 for (hash = 0; hash < KPROBE_TABLE_SIZE; hash++) {
1292 kretprobe_table_lock(hash, &flags);
1293 head = &kretprobe_inst_table[hash];
b67bfe0d 1294 hlist_for_each_entry_safe(ri, next, head, hlist) {
ef53d9c5
S
1295 if (ri->rp == rp)
1296 ri->rp = NULL;
1297 }
1298 kretprobe_table_unlock(hash, &flags);
4a296e07 1299 }
4a296e07
MH
1300 free_rp_inst(rp);
1301}
820aede0 1302NOKPROBE_SYMBOL(cleanup_rp_inst);
4a296e07 1303
059053a2 1304/* Add the new probe to ap->list */
55479f64 1305static int add_new_kprobe(struct kprobe *ap, struct kprobe *p)
8b0914ea 1306{
059053a2 1307 if (p->post_handler)
6274de49 1308 unoptimize_kprobe(ap, true); /* Fall back to normal kprobe */
afd66255 1309
059053a2 1310 list_add_rcu(&p->list, &ap->list);
b918e5e6
MH
1311 if (p->post_handler && !ap->post_handler)
1312 ap->post_handler = aggr_post_handler;
de5bd88d 1313
8b0914ea
PP
1314 return 0;
1315}
1316
64f562c6
AM
1317/*
1318 * Fill in the required fields of the "manager kprobe". Replace the
1319 * earlier kprobe in the hlist with the manager kprobe
1320 */
55479f64 1321static void init_aggr_kprobe(struct kprobe *ap, struct kprobe *p)
64f562c6 1322{
afd66255 1323 /* Copy p's insn slot to ap */
8b0914ea 1324 copy_kprobe(p, ap);
a9ad965e 1325 flush_insn_slot(ap);
64f562c6 1326 ap->addr = p->addr;
afd66255 1327 ap->flags = p->flags & ~KPROBE_FLAG_OPTIMIZED;
64f562c6 1328 ap->pre_handler = aggr_pre_handler;
64f562c6 1329 ap->fault_handler = aggr_fault_handler;
e8386a0c
MH
1330 /* We don't care the kprobe which has gone. */
1331 if (p->post_handler && !kprobe_gone(p))
36721656 1332 ap->post_handler = aggr_post_handler;
64f562c6
AM
1333
1334 INIT_LIST_HEAD(&ap->list);
afd66255 1335 INIT_HLIST_NODE(&ap->hlist);
64f562c6 1336
afd66255 1337 list_add_rcu(&p->list, &ap->list);
adad0f33 1338 hlist_replace_rcu(&p->hlist, &ap->hlist);
64f562c6
AM
1339}
1340
1341/*
1342 * This is the second or subsequent kprobe at the address - handle
1343 * the intricacies
64f562c6 1344 */
55479f64 1345static int register_aggr_kprobe(struct kprobe *orig_p, struct kprobe *p)
64f562c6
AM
1346{
1347 int ret = 0;
6d8e40a8 1348 struct kprobe *ap = orig_p;
64f562c6 1349
2d1e38f5
TG
1350 cpus_read_lock();
1351
25764288
MH
1352 /* For preparing optimization, jump_label_text_reserved() is called */
1353 jump_label_lock();
25764288
MH
1354 mutex_lock(&text_mutex);
1355
6d8e40a8
MH
1356 if (!kprobe_aggrprobe(orig_p)) {
1357 /* If orig_p is not an aggr_kprobe, create new aggr_kprobe. */
1358 ap = alloc_aggr_kprobe(orig_p);
25764288
MH
1359 if (!ap) {
1360 ret = -ENOMEM;
1361 goto out;
1362 }
6d8e40a8 1363 init_aggr_kprobe(ap, orig_p);
819319fc 1364 } else if (kprobe_unused(ap)) {
0490cd1f 1365 /* This probe is going to die. Rescue it */
819319fc
MH
1366 ret = reuse_unused_kprobe(ap);
1367 if (ret)
1368 goto out;
1369 }
b918e5e6
MH
1370
1371 if (kprobe_gone(ap)) {
e8386a0c
MH
1372 /*
1373 * Attempting to insert new probe at the same location that
1374 * had a probe in the module vaddr area which already
1375 * freed. So, the instruction slot has already been
1376 * released. We need a new slot for the new probe.
1377 */
b918e5e6 1378 ret = arch_prepare_kprobe(ap);
e8386a0c 1379 if (ret)
b918e5e6
MH
1380 /*
1381 * Even if fail to allocate new slot, don't need to
1382 * free aggr_probe. It will be used next time, or
1383 * freed by unregister_kprobe.
1384 */
25764288 1385 goto out;
de5bd88d 1386
afd66255
MH
1387 /* Prepare optimized instructions if possible. */
1388 prepare_optimized_kprobe(ap);
1389
e8386a0c 1390 /*
de5bd88d
MH
1391 * Clear gone flag to prevent allocating new slot again, and
1392 * set disabled flag because it is not armed yet.
e8386a0c 1393 */
de5bd88d
MH
1394 ap->flags = (ap->flags & ~KPROBE_FLAG_GONE)
1395 | KPROBE_FLAG_DISABLED;
e8386a0c 1396 }
b918e5e6 1397
afd66255 1398 /* Copy ap's insn slot to p */
b918e5e6 1399 copy_kprobe(ap, p);
25764288
MH
1400 ret = add_new_kprobe(ap, p);
1401
1402out:
1403 mutex_unlock(&text_mutex);
25764288 1404 jump_label_unlock();
2d1e38f5 1405 cpus_read_unlock();
25764288
MH
1406
1407 if (ret == 0 && kprobe_disabled(ap) && !kprobe_disabled(p)) {
1408 ap->flags &= ~KPROBE_FLAG_DISABLED;
12310e34 1409 if (!kprobes_all_disarmed) {
25764288 1410 /* Arm the breakpoint again. */
12310e34
JY
1411 ret = arm_kprobe(ap);
1412 if (ret) {
1413 ap->flags |= KPROBE_FLAG_DISABLED;
1414 list_del_rcu(&p->list);
ae8b7ce7 1415 synchronize_rcu();
12310e34
JY
1416 }
1417 }
25764288
MH
1418 }
1419 return ret;
64f562c6
AM
1420}
1421
be8f2743
MH
1422bool __weak arch_within_kprobe_blacklist(unsigned long addr)
1423{
1424 /* The __kprobes marked functions and entry code must not be probed */
1425 return addr >= (unsigned long)__kprobes_text_start &&
1426 addr < (unsigned long)__kprobes_text_end;
1427}
1428
6143c6fb 1429static bool __within_kprobe_blacklist(unsigned long addr)
d0aaff97 1430{
376e2424 1431 struct kprobe_blacklist_entry *ent;
3d8d996e 1432
be8f2743 1433 if (arch_within_kprobe_blacklist(addr))
376e2424 1434 return true;
3d8d996e
SD
1435 /*
1436 * If there exists a kprobe_blacklist, verify and
1437 * fail any probe registration in the prohibited area
1438 */
376e2424
MH
1439 list_for_each_entry(ent, &kprobe_blacklist, list) {
1440 if (addr >= ent->start_addr && addr < ent->end_addr)
1441 return true;
3d8d996e 1442 }
6143c6fb
MH
1443 return false;
1444}
376e2424 1445
6143c6fb
MH
1446bool within_kprobe_blacklist(unsigned long addr)
1447{
1448 char symname[KSYM_NAME_LEN], *p;
1449
1450 if (__within_kprobe_blacklist(addr))
1451 return true;
1452
1453 /* Check if the address is on a suffixed-symbol */
1454 if (!lookup_symbol_name(addr, symname)) {
1455 p = strchr(symname, '.');
1456 if (!p)
1457 return false;
1458 *p = '\0';
1459 addr = (unsigned long)kprobe_lookup_name(symname, 0);
1460 if (addr)
1461 return __within_kprobe_blacklist(addr);
1462 }
376e2424 1463 return false;
d0aaff97
PP
1464}
1465
b2a5cd69
MH
1466/*
1467 * If we have a symbol_name argument, look it up and add the offset field
1468 * to it. This way, we can specify a relative address to a symbol.
bc81d48d
MH
1469 * This returns encoded errors if it fails to look up symbol or invalid
1470 * combination of parameters.
b2a5cd69 1471 */
1d585e70
NR
1472static kprobe_opcode_t *_kprobe_addr(kprobe_opcode_t *addr,
1473 const char *symbol_name, unsigned int offset)
b2a5cd69 1474{
1d585e70 1475 if ((symbol_name && addr) || (!symbol_name && !addr))
bc81d48d
MH
1476 goto invalid;
1477
1d585e70 1478 if (symbol_name) {
7246f600 1479 addr = kprobe_lookup_name(symbol_name, offset);
bc81d48d
MH
1480 if (!addr)
1481 return ERR_PTR(-ENOENT);
b2a5cd69
MH
1482 }
1483
1d585e70 1484 addr = (kprobe_opcode_t *)(((char *)addr) + offset);
bc81d48d
MH
1485 if (addr)
1486 return addr;
1487
1488invalid:
1489 return ERR_PTR(-EINVAL);
b2a5cd69
MH
1490}
1491
1d585e70
NR
1492static kprobe_opcode_t *kprobe_addr(struct kprobe *p)
1493{
1494 return _kprobe_addr(p->addr, p->symbol_name, p->offset);
1495}
1496
1f0ab409 1497/* Check passed kprobe is valid and return kprobe in kprobe_table. */
55479f64 1498static struct kprobe *__get_valid_kprobe(struct kprobe *p)
1f0ab409 1499{
6d8e40a8 1500 struct kprobe *ap, *list_p;
1f0ab409 1501
6d8e40a8
MH
1502 ap = get_kprobe(p->addr);
1503 if (unlikely(!ap))
1f0ab409
AM
1504 return NULL;
1505
6d8e40a8
MH
1506 if (p != ap) {
1507 list_for_each_entry_rcu(list_p, &ap->list, list)
1f0ab409
AM
1508 if (list_p == p)
1509 /* kprobe p is a valid probe */
1510 goto valid;
1511 return NULL;
1512 }
1513valid:
6d8e40a8 1514 return ap;
1f0ab409
AM
1515}
1516
1517/* Return error if the kprobe is being re-registered */
1518static inline int check_kprobe_rereg(struct kprobe *p)
1519{
1520 int ret = 0;
1f0ab409
AM
1521
1522 mutex_lock(&kprobe_mutex);
6d8e40a8 1523 if (__get_valid_kprobe(p))
1f0ab409
AM
1524 ret = -EINVAL;
1525 mutex_unlock(&kprobe_mutex);
6d8e40a8 1526
1f0ab409
AM
1527 return ret;
1528}
1529
f7f242ff 1530int __weak arch_check_ftrace_location(struct kprobe *p)
1da177e4 1531{
ae6aa16f
MH
1532 unsigned long ftrace_addr;
1533
ae6aa16f
MH
1534 ftrace_addr = ftrace_location((unsigned long)p->addr);
1535 if (ftrace_addr) {
e7dbfe34 1536#ifdef CONFIG_KPROBES_ON_FTRACE
ae6aa16f
MH
1537 /* Given address is not on the instruction boundary */
1538 if ((unsigned long)p->addr != ftrace_addr)
1539 return -EILSEQ;
ae6aa16f 1540 p->flags |= KPROBE_FLAG_FTRACE;
e7dbfe34 1541#else /* !CONFIG_KPROBES_ON_FTRACE */
ae6aa16f
MH
1542 return -EINVAL;
1543#endif
1544 }
f7f242ff
HC
1545 return 0;
1546}
1547
1548static int check_kprobe_address_safe(struct kprobe *p,
1549 struct module **probed_mod)
1550{
1551 int ret;
1f0ab409 1552
f7f242ff
HC
1553 ret = arch_check_ftrace_location(p);
1554 if (ret)
1555 return ret;
91bad2f8 1556 jump_label_lock();
de31c3ca 1557 preempt_disable();
f7fa6ef0
MH
1558
1559 /* Ensure it is not in reserved area nor out of text */
ec30c5f3 1560 if (!kernel_text_address((unsigned long) p->addr) ||
376e2424 1561 within_kprobe_blacklist((unsigned long) p->addr) ||
e336b402
MH
1562 jump_label_text_reserved(p->addr, p->addr) ||
1563 find_bug((unsigned long)p->addr)) {
f986a499 1564 ret = -EINVAL;
f7fa6ef0 1565 goto out;
f986a499 1566 }
b3e55c72 1567
f7fa6ef0
MH
1568 /* Check if are we probing a module */
1569 *probed_mod = __module_text_address((unsigned long) p->addr);
1570 if (*probed_mod) {
6f716acd 1571 /*
e8386a0c
MH
1572 * We must hold a refcount of the probed module while updating
1573 * its code to prohibit unexpected unloading.
df019b1d 1574 */
f7fa6ef0
MH
1575 if (unlikely(!try_module_get(*probed_mod))) {
1576 ret = -ENOENT;
1577 goto out;
1578 }
de31c3ca 1579
f24659d9
MH
1580 /*
1581 * If the module freed .init.text, we couldn't insert
1582 * kprobes in there.
1583 */
f7fa6ef0
MH
1584 if (within_module_init((unsigned long)p->addr, *probed_mod) &&
1585 (*probed_mod)->state != MODULE_STATE_COMING) {
1586 module_put(*probed_mod);
1587 *probed_mod = NULL;
1588 ret = -ENOENT;
f24659d9 1589 }
df019b1d 1590 }
f7fa6ef0 1591out:
a189d035 1592 preempt_enable();
de31c3ca 1593 jump_label_unlock();
1da177e4 1594
f7fa6ef0
MH
1595 return ret;
1596}
1597
55479f64 1598int register_kprobe(struct kprobe *p)
f7fa6ef0
MH
1599{
1600 int ret;
1601 struct kprobe *old_p;
1602 struct module *probed_mod;
1603 kprobe_opcode_t *addr;
1604
1605 /* Adjust probe address from symbol */
1606 addr = kprobe_addr(p);
1607 if (IS_ERR(addr))
1608 return PTR_ERR(addr);
1609 p->addr = addr;
1610
1611 ret = check_kprobe_rereg(p);
1612 if (ret)
1613 return ret;
1614
1615 /* User can pass only KPROBE_FLAG_DISABLED to register_kprobe */
1616 p->flags &= KPROBE_FLAG_DISABLED;
3516a460 1617 p->nmissed = 0;
9861668f 1618 INIT_LIST_HEAD(&p->list);
afd66255 1619
f7fa6ef0
MH
1620 ret = check_kprobe_address_safe(p, &probed_mod);
1621 if (ret)
1622 return ret;
1623
1624 mutex_lock(&kprobe_mutex);
afd66255 1625
64f562c6
AM
1626 old_p = get_kprobe(p->addr);
1627 if (old_p) {
afd66255 1628 /* Since this may unoptimize old_p, locking text_mutex. */
64f562c6 1629 ret = register_aggr_kprobe(old_p, p);
1da177e4
LT
1630 goto out;
1631 }
1da177e4 1632
2d1e38f5
TG
1633 cpus_read_lock();
1634 /* Prevent text modification */
1635 mutex_lock(&text_mutex);
ae6aa16f 1636 ret = prepare_kprobe(p);
25764288 1637 mutex_unlock(&text_mutex);
2d1e38f5 1638 cpus_read_unlock();
6f716acd 1639 if (ret)
afd66255 1640 goto out;
49a2a1b8 1641
64f562c6 1642 INIT_HLIST_NODE(&p->hlist);
3516a460 1643 hlist_add_head_rcu(&p->hlist,
1da177e4
LT
1644 &kprobe_table[hash_ptr(p->addr, KPROBE_HASH_BITS)]);
1645
12310e34
JY
1646 if (!kprobes_all_disarmed && !kprobe_disabled(p)) {
1647 ret = arm_kprobe(p);
1648 if (ret) {
1649 hlist_del_rcu(&p->hlist);
ae8b7ce7 1650 synchronize_rcu();
12310e34
JY
1651 goto out;
1652 }
1653 }
afd66255
MH
1654
1655 /* Try to optimize kprobe */
1656 try_to_optimize_kprobe(p);
1da177e4 1657out:
7a7d1cf9 1658 mutex_unlock(&kprobe_mutex);
49a2a1b8 1659
e8386a0c 1660 if (probed_mod)
df019b1d 1661 module_put(probed_mod);
e8386a0c 1662
1da177e4
LT
1663 return ret;
1664}
99081ab5 1665EXPORT_SYMBOL_GPL(register_kprobe);
1da177e4 1666
6f0f1dd7 1667/* Check if all probes on the aggrprobe are disabled */
55479f64 1668static int aggr_kprobe_disabled(struct kprobe *ap)
6f0f1dd7
MH
1669{
1670 struct kprobe *kp;
1671
1672 list_for_each_entry_rcu(kp, &ap->list, list)
1673 if (!kprobe_disabled(kp))
1674 /*
1675 * There is an active probe on the list.
1676 * We can't disable this ap.
1677 */
1678 return 0;
1679
1680 return 1;
1681}
1682
1683/* Disable one kprobe: Make sure called under kprobe_mutex is locked */
55479f64 1684static struct kprobe *__disable_kprobe(struct kprobe *p)
6f0f1dd7
MH
1685{
1686 struct kprobe *orig_p;
297f9233 1687 int ret;
6f0f1dd7
MH
1688
1689 /* Get an original kprobe for return */
1690 orig_p = __get_valid_kprobe(p);
1691 if (unlikely(orig_p == NULL))
297f9233 1692 return ERR_PTR(-EINVAL);
6f0f1dd7
MH
1693
1694 if (!kprobe_disabled(p)) {
1695 /* Disable probe if it is a child probe */
1696 if (p != orig_p)
1697 p->flags |= KPROBE_FLAG_DISABLED;
1698
1699 /* Try to disarm and disable this/parent probe */
1700 if (p == orig_p || aggr_kprobe_disabled(orig_p)) {
69d54b91
WN
1701 /*
1702 * If kprobes_all_disarmed is set, orig_p
1703 * should have already been disarmed, so
1704 * skip unneed disarming process.
1705 */
297f9233
JY
1706 if (!kprobes_all_disarmed) {
1707 ret = disarm_kprobe(orig_p, true);
1708 if (ret) {
1709 p->flags &= ~KPROBE_FLAG_DISABLED;
1710 return ERR_PTR(ret);
1711 }
1712 }
6f0f1dd7
MH
1713 orig_p->flags |= KPROBE_FLAG_DISABLED;
1714 }
1715 }
1716
1717 return orig_p;
1718}
1719
de5bd88d
MH
1720/*
1721 * Unregister a kprobe without a scheduler synchronization.
1722 */
55479f64 1723static int __unregister_kprobe_top(struct kprobe *p)
de5bd88d 1724{
6d8e40a8 1725 struct kprobe *ap, *list_p;
de5bd88d 1726
6f0f1dd7
MH
1727 /* Disable kprobe. This will disarm it if needed. */
1728 ap = __disable_kprobe(p);
297f9233
JY
1729 if (IS_ERR(ap))
1730 return PTR_ERR(ap);
de5bd88d 1731
6f0f1dd7 1732 if (ap == p)
bf8f6e5b 1733 /*
6f0f1dd7
MH
1734 * This probe is an independent(and non-optimized) kprobe
1735 * (not an aggrprobe). Remove from the hash list.
bf8f6e5b 1736 */
6f0f1dd7
MH
1737 goto disarmed;
1738
1739 /* Following process expects this probe is an aggrprobe */
1740 WARN_ON(!kprobe_aggrprobe(ap));
1741
6274de49
MH
1742 if (list_is_singular(&ap->list) && kprobe_disarmed(ap))
1743 /*
1744 * !disarmed could be happen if the probe is under delayed
1745 * unoptimizing.
1746 */
6f0f1dd7
MH
1747 goto disarmed;
1748 else {
1749 /* If disabling probe has special handlers, update aggrprobe */
e8386a0c 1750 if (p->post_handler && !kprobe_gone(p)) {
6d8e40a8 1751 list_for_each_entry_rcu(list_p, &ap->list, list) {
9861668f
MH
1752 if ((list_p != p) && (list_p->post_handler))
1753 goto noclean;
1754 }
6d8e40a8 1755 ap->post_handler = NULL;
9861668f
MH
1756 }
1757noclean:
6f0f1dd7
MH
1758 /*
1759 * Remove from the aggrprobe: this path will do nothing in
1760 * __unregister_kprobe_bottom().
1761 */
49a2a1b8 1762 list_del_rcu(&p->list);
6f0f1dd7
MH
1763 if (!kprobe_disabled(ap) && !kprobes_all_disarmed)
1764 /*
1765 * Try to optimize this probe again, because post
1766 * handler may have been changed.
1767 */
1768 optimize_kprobe(ap);
49a2a1b8 1769 }
9861668f 1770 return 0;
6f0f1dd7
MH
1771
1772disarmed:
1773 hlist_del_rcu(&ap->hlist);
1774 return 0;
9861668f 1775}
3516a460 1776
55479f64 1777static void __unregister_kprobe_bottom(struct kprobe *p)
9861668f 1778{
6d8e40a8 1779 struct kprobe *ap;
b3e55c72 1780
e8386a0c 1781 if (list_empty(&p->list))
6274de49 1782 /* This is an independent kprobe */
0498b635 1783 arch_remove_kprobe(p);
e8386a0c 1784 else if (list_is_singular(&p->list)) {
6274de49 1785 /* This is the last child of an aggrprobe */
6d8e40a8 1786 ap = list_entry(p->list.next, struct kprobe, list);
e8386a0c 1787 list_del(&p->list);
6d8e40a8 1788 free_aggr_kprobe(ap);
9861668f 1789 }
6274de49 1790 /* Otherwise, do nothing. */
9861668f
MH
1791}
1792
55479f64 1793int register_kprobes(struct kprobe **kps, int num)
9861668f
MH
1794{
1795 int i, ret = 0;
1796
1797 if (num <= 0)
1798 return -EINVAL;
1799 for (i = 0; i < num; i++) {
49ad2fd7 1800 ret = register_kprobe(kps[i]);
67dddaad
MH
1801 if (ret < 0) {
1802 if (i > 0)
1803 unregister_kprobes(kps, i);
9861668f 1804 break;
36721656 1805 }
49a2a1b8 1806 }
9861668f
MH
1807 return ret;
1808}
99081ab5 1809EXPORT_SYMBOL_GPL(register_kprobes);
9861668f 1810
55479f64 1811void unregister_kprobe(struct kprobe *p)
9861668f
MH
1812{
1813 unregister_kprobes(&p, 1);
1814}
99081ab5 1815EXPORT_SYMBOL_GPL(unregister_kprobe);
9861668f 1816
55479f64 1817void unregister_kprobes(struct kprobe **kps, int num)
9861668f
MH
1818{
1819 int i;
1820
1821 if (num <= 0)
1822 return;
1823 mutex_lock(&kprobe_mutex);
1824 for (i = 0; i < num; i++)
1825 if (__unregister_kprobe_top(kps[i]) < 0)
1826 kps[i]->addr = NULL;
1827 mutex_unlock(&kprobe_mutex);
1828
ae8b7ce7 1829 synchronize_rcu();
9861668f
MH
1830 for (i = 0; i < num; i++)
1831 if (kps[i]->addr)
1832 __unregister_kprobe_bottom(kps[i]);
1da177e4 1833}
99081ab5 1834EXPORT_SYMBOL_GPL(unregister_kprobes);
1da177e4 1835
5f6bee34
NR
1836int __weak kprobe_exceptions_notify(struct notifier_block *self,
1837 unsigned long val, void *data)
fc62d020
NR
1838{
1839 return NOTIFY_DONE;
1840}
5f6bee34 1841NOKPROBE_SYMBOL(kprobe_exceptions_notify);
fc62d020 1842
1da177e4 1843static struct notifier_block kprobe_exceptions_nb = {
3d5631e0
AK
1844 .notifier_call = kprobe_exceptions_notify,
1845 .priority = 0x7fffffff /* we need to be notified first */
1846};
1847
3d7e3382
ME
1848unsigned long __weak arch_deref_entry_point(void *entry)
1849{
1850 return (unsigned long)entry;
1851}
1da177e4 1852
9edddaa2 1853#ifdef CONFIG_KRETPROBES
e65cefe8
AB
1854/*
1855 * This kprobe pre_handler is registered with every kretprobe. When probe
1856 * hits it will set up the return probe.
1857 */
820aede0 1858static int pre_handler_kretprobe(struct kprobe *p, struct pt_regs *regs)
e65cefe8
AB
1859{
1860 struct kretprobe *rp = container_of(p, struct kretprobe, kp);
ef53d9c5
S
1861 unsigned long hash, flags = 0;
1862 struct kretprobe_instance *ri;
e65cefe8 1863
f96f5678
MH
1864 /*
1865 * To avoid deadlocks, prohibit return probing in NMI contexts,
1866 * just skip the probe and increase the (inexact) 'nmissed'
1867 * statistical counter, so that the user is informed that
1868 * something happened:
1869 */
1870 if (unlikely(in_nmi())) {
1871 rp->nmissed++;
1872 return 0;
1873 }
1874
1875 /* TODO: consider to only swap the RA after the last pre_handler fired */
ef53d9c5 1876 hash = hash_ptr(current, KPROBE_HASH_BITS);
ec484608 1877 raw_spin_lock_irqsave(&rp->lock, flags);
4c4308cb 1878 if (!hlist_empty(&rp->free_instances)) {
4c4308cb 1879 ri = hlist_entry(rp->free_instances.first,
ef53d9c5
S
1880 struct kretprobe_instance, hlist);
1881 hlist_del(&ri->hlist);
ec484608 1882 raw_spin_unlock_irqrestore(&rp->lock, flags);
ef53d9c5 1883
4c4308cb
CH
1884 ri->rp = rp;
1885 ri->task = current;
f47cd9b5 1886
55ca6140
JL
1887 if (rp->entry_handler && rp->entry_handler(ri, regs)) {
1888 raw_spin_lock_irqsave(&rp->lock, flags);
1889 hlist_add_head(&ri->hlist, &rp->free_instances);
1890 raw_spin_unlock_irqrestore(&rp->lock, flags);
f47cd9b5 1891 return 0;
55ca6140 1892 }
f47cd9b5 1893
4c4308cb
CH
1894 arch_prepare_kretprobe(ri, regs);
1895
1896 /* XXX(hch): why is there no hlist_move_head? */
ef53d9c5
S
1897 INIT_HLIST_NODE(&ri->hlist);
1898 kretprobe_table_lock(hash, &flags);
1899 hlist_add_head(&ri->hlist, &kretprobe_inst_table[hash]);
1900 kretprobe_table_unlock(hash, &flags);
1901 } else {
4c4308cb 1902 rp->nmissed++;
ec484608 1903 raw_spin_unlock_irqrestore(&rp->lock, flags);
ef53d9c5 1904 }
e65cefe8
AB
1905 return 0;
1906}
820aede0 1907NOKPROBE_SYMBOL(pre_handler_kretprobe);
e65cefe8 1908
659b957f 1909bool __weak arch_kprobe_on_func_entry(unsigned long offset)
90ec5e89
NR
1910{
1911 return !offset;
1912}
1913
659b957f 1914bool kprobe_on_func_entry(kprobe_opcode_t *addr, const char *sym, unsigned long offset)
1d585e70
NR
1915{
1916 kprobe_opcode_t *kp_addr = _kprobe_addr(addr, sym, offset);
1917
1918 if (IS_ERR(kp_addr))
1919 return false;
1920
1921 if (!kallsyms_lookup_size_offset((unsigned long)kp_addr, NULL, &offset) ||
659b957f 1922 !arch_kprobe_on_func_entry(offset))
1d585e70
NR
1923 return false;
1924
1925 return true;
1926}
1927
55479f64 1928int register_kretprobe(struct kretprobe *rp)
b94cce92
HN
1929{
1930 int ret = 0;
1931 struct kretprobe_instance *inst;
1932 int i;
b2a5cd69 1933 void *addr;
90ec5e89 1934
659b957f 1935 if (!kprobe_on_func_entry(rp->kp.addr, rp->kp.symbol_name, rp->kp.offset))
90ec5e89 1936 return -EINVAL;
f438d914
MH
1937
1938 if (kretprobe_blacklist_size) {
b2a5cd69 1939 addr = kprobe_addr(&rp->kp);
bc81d48d
MH
1940 if (IS_ERR(addr))
1941 return PTR_ERR(addr);
f438d914
MH
1942
1943 for (i = 0; kretprobe_blacklist[i].name != NULL; i++) {
1944 if (kretprobe_blacklist[i].addr == addr)
1945 return -EINVAL;
1946 }
1947 }
b94cce92
HN
1948
1949 rp->kp.pre_handler = pre_handler_kretprobe;
7522a842
AM
1950 rp->kp.post_handler = NULL;
1951 rp->kp.fault_handler = NULL;
b94cce92
HN
1952
1953 /* Pre-allocate memory for max kretprobe instances */
1954 if (rp->maxactive <= 0) {
92616606 1955#ifdef CONFIG_PREEMPTION
c2ef6661 1956 rp->maxactive = max_t(unsigned int, 10, 2*num_possible_cpus());
b94cce92 1957#else
4dae560f 1958 rp->maxactive = num_possible_cpus();
b94cce92
HN
1959#endif
1960 }
ec484608 1961 raw_spin_lock_init(&rp->lock);
b94cce92
HN
1962 INIT_HLIST_HEAD(&rp->free_instances);
1963 for (i = 0; i < rp->maxactive; i++) {
f47cd9b5
AS
1964 inst = kmalloc(sizeof(struct kretprobe_instance) +
1965 rp->data_size, GFP_KERNEL);
b94cce92
HN
1966 if (inst == NULL) {
1967 free_rp_inst(rp);
1968 return -ENOMEM;
1969 }
ef53d9c5
S
1970 INIT_HLIST_NODE(&inst->hlist);
1971 hlist_add_head(&inst->hlist, &rp->free_instances);
b94cce92
HN
1972 }
1973
1974 rp->nmissed = 0;
1975 /* Establish function entry probe point */
49ad2fd7 1976 ret = register_kprobe(&rp->kp);
4a296e07 1977 if (ret != 0)
b94cce92
HN
1978 free_rp_inst(rp);
1979 return ret;
1980}
99081ab5 1981EXPORT_SYMBOL_GPL(register_kretprobe);
b94cce92 1982
55479f64 1983int register_kretprobes(struct kretprobe **rps, int num)
4a296e07
MH
1984{
1985 int ret = 0, i;
1986
1987 if (num <= 0)
1988 return -EINVAL;
1989 for (i = 0; i < num; i++) {
49ad2fd7 1990 ret = register_kretprobe(rps[i]);
67dddaad
MH
1991 if (ret < 0) {
1992 if (i > 0)
1993 unregister_kretprobes(rps, i);
4a296e07
MH
1994 break;
1995 }
1996 }
1997 return ret;
1998}
99081ab5 1999EXPORT_SYMBOL_GPL(register_kretprobes);
4a296e07 2000
55479f64 2001void unregister_kretprobe(struct kretprobe *rp)
4a296e07
MH
2002{
2003 unregister_kretprobes(&rp, 1);
2004}
99081ab5 2005EXPORT_SYMBOL_GPL(unregister_kretprobe);
4a296e07 2006
55479f64 2007void unregister_kretprobes(struct kretprobe **rps, int num)
4a296e07
MH
2008{
2009 int i;
2010
2011 if (num <= 0)
2012 return;
2013 mutex_lock(&kprobe_mutex);
2014 for (i = 0; i < num; i++)
2015 if (__unregister_kprobe_top(&rps[i]->kp) < 0)
2016 rps[i]->kp.addr = NULL;
2017 mutex_unlock(&kprobe_mutex);
2018
ae8b7ce7 2019 synchronize_rcu();
4a296e07
MH
2020 for (i = 0; i < num; i++) {
2021 if (rps[i]->kp.addr) {
2022 __unregister_kprobe_bottom(&rps[i]->kp);
2023 cleanup_rp_inst(rps[i]);
2024 }
2025 }
2026}
99081ab5 2027EXPORT_SYMBOL_GPL(unregister_kretprobes);
4a296e07 2028
9edddaa2 2029#else /* CONFIG_KRETPROBES */
55479f64 2030int register_kretprobe(struct kretprobe *rp)
b94cce92
HN
2031{
2032 return -ENOSYS;
2033}
99081ab5 2034EXPORT_SYMBOL_GPL(register_kretprobe);
b94cce92 2035
55479f64 2036int register_kretprobes(struct kretprobe **rps, int num)
346fd59b 2037{
4a296e07 2038 return -ENOSYS;
346fd59b 2039}
99081ab5
MH
2040EXPORT_SYMBOL_GPL(register_kretprobes);
2041
55479f64 2042void unregister_kretprobe(struct kretprobe *rp)
b94cce92 2043{
4a296e07 2044}
99081ab5 2045EXPORT_SYMBOL_GPL(unregister_kretprobe);
b94cce92 2046
55479f64 2047void unregister_kretprobes(struct kretprobe **rps, int num)
4a296e07
MH
2048{
2049}
99081ab5 2050EXPORT_SYMBOL_GPL(unregister_kretprobes);
4c4308cb 2051
820aede0 2052static int pre_handler_kretprobe(struct kprobe *p, struct pt_regs *regs)
4a296e07
MH
2053{
2054 return 0;
b94cce92 2055}
820aede0 2056NOKPROBE_SYMBOL(pre_handler_kretprobe);
b94cce92 2057
4a296e07
MH
2058#endif /* CONFIG_KRETPROBES */
2059
e8386a0c 2060/* Set the kprobe gone and remove its instruction buffer. */
55479f64 2061static void kill_kprobe(struct kprobe *p)
e8386a0c
MH
2062{
2063 struct kprobe *kp;
de5bd88d 2064
e8386a0c 2065 p->flags |= KPROBE_FLAG_GONE;
afd66255 2066 if (kprobe_aggrprobe(p)) {
e8386a0c
MH
2067 /*
2068 * If this is an aggr_kprobe, we have to list all the
2069 * chained probes and mark them GONE.
2070 */
2071 list_for_each_entry_rcu(kp, &p->list, list)
2072 kp->flags |= KPROBE_FLAG_GONE;
2073 p->post_handler = NULL;
afd66255 2074 kill_optimized_kprobe(p);
e8386a0c
MH
2075 }
2076 /*
2077 * Here, we can remove insn_slot safely, because no thread calls
2078 * the original probed function (which will be freed soon) any more.
2079 */
2080 arch_remove_kprobe(p);
2081}
2082
c0614829 2083/* Disable one kprobe */
55479f64 2084int disable_kprobe(struct kprobe *kp)
c0614829
MH
2085{
2086 int ret = 0;
297f9233 2087 struct kprobe *p;
c0614829
MH
2088
2089 mutex_lock(&kprobe_mutex);
2090
6f0f1dd7 2091 /* Disable this kprobe */
297f9233
JY
2092 p = __disable_kprobe(kp);
2093 if (IS_ERR(p))
2094 ret = PTR_ERR(p);
c0614829 2095
c0614829
MH
2096 mutex_unlock(&kprobe_mutex);
2097 return ret;
2098}
2099EXPORT_SYMBOL_GPL(disable_kprobe);
2100
2101/* Enable one kprobe */
55479f64 2102int enable_kprobe(struct kprobe *kp)
c0614829
MH
2103{
2104 int ret = 0;
2105 struct kprobe *p;
2106
2107 mutex_lock(&kprobe_mutex);
2108
2109 /* Check whether specified probe is valid. */
2110 p = __get_valid_kprobe(kp);
2111 if (unlikely(p == NULL)) {
2112 ret = -EINVAL;
2113 goto out;
2114 }
2115
2116 if (kprobe_gone(kp)) {
2117 /* This kprobe has gone, we couldn't enable it. */
2118 ret = -EINVAL;
2119 goto out;
2120 }
2121
2122 if (p != kp)
2123 kp->flags &= ~KPROBE_FLAG_DISABLED;
2124
2125 if (!kprobes_all_disarmed && kprobe_disabled(p)) {
2126 p->flags &= ~KPROBE_FLAG_DISABLED;
12310e34
JY
2127 ret = arm_kprobe(p);
2128 if (ret)
2129 p->flags |= KPROBE_FLAG_DISABLED;
c0614829
MH
2130 }
2131out:
2132 mutex_unlock(&kprobe_mutex);
2133 return ret;
2134}
2135EXPORT_SYMBOL_GPL(enable_kprobe);
2136
4458515b 2137/* Caller must NOT call this in usual path. This is only for critical case */
820aede0 2138void dump_kprobe(struct kprobe *kp)
24851d24 2139{
4458515b
MH
2140 pr_err("Dumping kprobe:\n");
2141 pr_err("Name: %s\nOffset: %x\nAddress: %pS\n",
2142 kp->symbol_name, kp->offset, kp->addr);
24851d24 2143}
820aede0 2144NOKPROBE_SYMBOL(dump_kprobe);
24851d24 2145
fb1a59fa
MH
2146int kprobe_add_ksym_blacklist(unsigned long entry)
2147{
2148 struct kprobe_blacklist_entry *ent;
2149 unsigned long offset = 0, size = 0;
2150
2151 if (!kernel_text_address(entry) ||
2152 !kallsyms_lookup_size_offset(entry, &size, &offset))
2153 return -EINVAL;
2154
2155 ent = kmalloc(sizeof(*ent), GFP_KERNEL);
2156 if (!ent)
2157 return -ENOMEM;
2158 ent->start_addr = entry;
2159 ent->end_addr = entry + size;
2160 INIT_LIST_HEAD(&ent->list);
2161 list_add_tail(&ent->list, &kprobe_blacklist);
2162
2163 return (int)size;
2164}
2165
2166/* Add all symbols in given area into kprobe blacklist */
2167int kprobe_add_area_blacklist(unsigned long start, unsigned long end)
2168{
2169 unsigned long entry;
2170 int ret = 0;
2171
2172 for (entry = start; entry < end; entry += ret) {
2173 ret = kprobe_add_ksym_blacklist(entry);
2174 if (ret < 0)
2175 return ret;
2176 if (ret == 0) /* In case of alias symbol */
2177 ret = 1;
2178 }
2179 return 0;
2180}
2181
1e6769b0
MH
2182/* Remove all symbols in given area from kprobe blacklist */
2183static void kprobe_remove_area_blacklist(unsigned long start, unsigned long end)
2184{
2185 struct kprobe_blacklist_entry *ent, *n;
2186
2187 list_for_each_entry_safe(ent, n, &kprobe_blacklist, list) {
2188 if (ent->start_addr < start || ent->start_addr >= end)
2189 continue;
2190 list_del(&ent->list);
2191 kfree(ent);
2192 }
2193}
2194
16db6264
MH
2195static void kprobe_remove_ksym_blacklist(unsigned long entry)
2196{
2197 kprobe_remove_area_blacklist(entry, entry + 1);
2198}
2199
fb1a59fa
MH
2200int __init __weak arch_populate_kprobe_blacklist(void)
2201{
2202 return 0;
2203}
2204
376e2424
MH
2205/*
2206 * Lookup and populate the kprobe_blacklist.
2207 *
2208 * Unlike the kretprobe blacklist, we'll need to determine
2209 * the range of addresses that belong to the said functions,
2210 * since a kprobe need not necessarily be at the beginning
2211 * of a function.
2212 */
2213static int __init populate_kprobe_blacklist(unsigned long *start,
2214 unsigned long *end)
2215{
fb1a59fa 2216 unsigned long entry;
376e2424 2217 unsigned long *iter;
fb1a59fa 2218 int ret;
376e2424
MH
2219
2220 for (iter = start; iter < end; iter++) {
d81b4253 2221 entry = arch_deref_entry_point((void *)*iter);
fb1a59fa
MH
2222 ret = kprobe_add_ksym_blacklist(entry);
2223 if (ret == -EINVAL)
376e2424 2224 continue;
fb1a59fa
MH
2225 if (ret < 0)
2226 return ret;
376e2424 2227 }
fb1a59fa
MH
2228
2229 /* Symbols in __kprobes_text are blacklisted */
2230 ret = kprobe_add_area_blacklist((unsigned long)__kprobes_text_start,
2231 (unsigned long)__kprobes_text_end);
66e9b071
TG
2232 if (ret)
2233 return ret;
2234
2235 /* Symbols in noinstr section are blacklisted */
2236 ret = kprobe_add_area_blacklist((unsigned long)__noinstr_text_start,
2237 (unsigned long)__noinstr_text_end);
fb1a59fa
MH
2238
2239 return ret ? : arch_populate_kprobe_blacklist();
376e2424
MH
2240}
2241
1e6769b0
MH
2242static void add_module_kprobe_blacklist(struct module *mod)
2243{
2244 unsigned long start, end;
16db6264
MH
2245 int i;
2246
2247 if (mod->kprobe_blacklist) {
2248 for (i = 0; i < mod->num_kprobe_blacklist; i++)
2249 kprobe_add_ksym_blacklist(mod->kprobe_blacklist[i]);
2250 }
1e6769b0
MH
2251
2252 start = (unsigned long)mod->kprobes_text_start;
2253 if (start) {
2254 end = start + mod->kprobes_text_size;
2255 kprobe_add_area_blacklist(start, end);
2256 }
66e9b071
TG
2257
2258 start = (unsigned long)mod->noinstr_text_start;
2259 if (start) {
2260 end = start + mod->noinstr_text_size;
2261 kprobe_add_area_blacklist(start, end);
2262 }
1e6769b0
MH
2263}
2264
2265static void remove_module_kprobe_blacklist(struct module *mod)
2266{
2267 unsigned long start, end;
16db6264
MH
2268 int i;
2269
2270 if (mod->kprobe_blacklist) {
2271 for (i = 0; i < mod->num_kprobe_blacklist; i++)
2272 kprobe_remove_ksym_blacklist(mod->kprobe_blacklist[i]);
2273 }
1e6769b0
MH
2274
2275 start = (unsigned long)mod->kprobes_text_start;
2276 if (start) {
2277 end = start + mod->kprobes_text_size;
2278 kprobe_remove_area_blacklist(start, end);
2279 }
66e9b071
TG
2280
2281 start = (unsigned long)mod->noinstr_text_start;
2282 if (start) {
2283 end = start + mod->noinstr_text_size;
2284 kprobe_remove_area_blacklist(start, end);
2285 }
1e6769b0
MH
2286}
2287
e8386a0c 2288/* Module notifier call back, checking kprobes on the module */
55479f64
MH
2289static int kprobes_module_callback(struct notifier_block *nb,
2290 unsigned long val, void *data)
e8386a0c
MH
2291{
2292 struct module *mod = data;
2293 struct hlist_head *head;
e8386a0c
MH
2294 struct kprobe *p;
2295 unsigned int i;
f24659d9 2296 int checkcore = (val == MODULE_STATE_GOING);
e8386a0c 2297
1e6769b0
MH
2298 if (val == MODULE_STATE_COMING) {
2299 mutex_lock(&kprobe_mutex);
2300 add_module_kprobe_blacklist(mod);
2301 mutex_unlock(&kprobe_mutex);
2302 }
f24659d9 2303 if (val != MODULE_STATE_GOING && val != MODULE_STATE_LIVE)
e8386a0c
MH
2304 return NOTIFY_DONE;
2305
2306 /*
f24659d9
MH
2307 * When MODULE_STATE_GOING was notified, both of module .text and
2308 * .init.text sections would be freed. When MODULE_STATE_LIVE was
2309 * notified, only .init.text section would be freed. We need to
2310 * disable kprobes which have been inserted in the sections.
e8386a0c
MH
2311 */
2312 mutex_lock(&kprobe_mutex);
2313 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
2314 head = &kprobe_table[i];
b67bfe0d 2315 hlist_for_each_entry_rcu(p, head, hlist)
f24659d9
MH
2316 if (within_module_init((unsigned long)p->addr, mod) ||
2317 (checkcore &&
2318 within_module_core((unsigned long)p->addr, mod))) {
e8386a0c
MH
2319 /*
2320 * The vaddr this probe is installed will soon
2321 * be vfreed buy not synced to disk. Hence,
2322 * disarming the breakpoint isn't needed.
545a0281
SRV
2323 *
2324 * Note, this will also move any optimized probes
2325 * that are pending to be removed from their
2326 * corresponding lists to the freeing_list and
2327 * will not be touched by the delayed
2328 * kprobe_optimizer work handler.
e8386a0c
MH
2329 */
2330 kill_kprobe(p);
2331 }
2332 }
1e6769b0
MH
2333 if (val == MODULE_STATE_GOING)
2334 remove_module_kprobe_blacklist(mod);
e8386a0c
MH
2335 mutex_unlock(&kprobe_mutex);
2336 return NOTIFY_DONE;
2337}
2338
2339static struct notifier_block kprobe_module_nb = {
2340 .notifier_call = kprobes_module_callback,
2341 .priority = 0
2342};
2343
376e2424
MH
2344/* Markers of _kprobe_blacklist section */
2345extern unsigned long __start_kprobe_blacklist[];
2346extern unsigned long __stop_kprobe_blacklist[];
2347
1da177e4
LT
2348static int __init init_kprobes(void)
2349{
2350 int i, err = 0;
2351
2352 /* FIXME allocate the probe table, currently defined statically */
2353 /* initialize all list heads */
b94cce92 2354 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
1da177e4 2355 INIT_HLIST_HEAD(&kprobe_table[i]);
b94cce92 2356 INIT_HLIST_HEAD(&kretprobe_inst_table[i]);
ec484608 2357 raw_spin_lock_init(&(kretprobe_table_locks[i].lock));
b94cce92 2358 }
1da177e4 2359
376e2424
MH
2360 err = populate_kprobe_blacklist(__start_kprobe_blacklist,
2361 __stop_kprobe_blacklist);
2362 if (err) {
2363 pr_err("kprobes: failed to populate blacklist: %d\n", err);
2364 pr_err("Please take care of using kprobes.\n");
3d8d996e
SD
2365 }
2366
f438d914
MH
2367 if (kretprobe_blacklist_size) {
2368 /* lookup the function address from its name */
2369 for (i = 0; kretprobe_blacklist[i].name != NULL; i++) {
49e0b465 2370 kretprobe_blacklist[i].addr =
290e3070 2371 kprobe_lookup_name(kretprobe_blacklist[i].name, 0);
f438d914
MH
2372 if (!kretprobe_blacklist[i].addr)
2373 printk("kretprobe: lookup failed: %s\n",
2374 kretprobe_blacklist[i].name);
2375 }
2376 }
2377
b2be84df
MH
2378#if defined(CONFIG_OPTPROBES)
2379#if defined(__ARCH_WANT_KPROBES_INSN_SLOT)
afd66255
MH
2380 /* Init kprobe_optinsn_slots */
2381 kprobe_optinsn_slots.insn_size = MAX_OPTINSN_SIZE;
2382#endif
b2be84df
MH
2383 /* By default, kprobes can be optimized */
2384 kprobes_allow_optimization = true;
2385#endif
afd66255 2386
e579abeb
MH
2387 /* By default, kprobes are armed */
2388 kprobes_all_disarmed = false;
bf8f6e5b 2389
6772926b 2390 err = arch_init_kprobes();
802eae7c
RL
2391 if (!err)
2392 err = register_die_notifier(&kprobe_exceptions_nb);
e8386a0c
MH
2393 if (!err)
2394 err = register_module_notifier(&kprobe_module_nb);
2395
ef53d9c5 2396 kprobes_initialized = (err == 0);
802eae7c 2397
8c1c9356
AM
2398 if (!err)
2399 init_test_probes();
1da177e4
LT
2400 return err;
2401}
65fc965c 2402subsys_initcall(init_kprobes);
1da177e4 2403
346fd59b 2404#ifdef CONFIG_DEBUG_FS
55479f64 2405static void report_probe(struct seq_file *pi, struct kprobe *p,
afd66255 2406 const char *sym, int offset, char *modname, struct kprobe *pp)
346fd59b
SD
2407{
2408 char *kprobe_type;
81365a94 2409 void *addr = p->addr;
346fd59b
SD
2410
2411 if (p->pre_handler == pre_handler_kretprobe)
2412 kprobe_type = "r";
346fd59b
SD
2413 else
2414 kprobe_type = "k";
afd66255 2415
81365a94
MH
2416 if (!kallsyms_show_value())
2417 addr = NULL;
2418
346fd59b 2419 if (sym)
81365a94
MH
2420 seq_printf(pi, "%px %s %s+0x%x %s ",
2421 addr, kprobe_type, sym, offset,
afd66255 2422 (modname ? modname : " "));
81365a94
MH
2423 else /* try to use %pS */
2424 seq_printf(pi, "%px %s %pS ",
2425 addr, kprobe_type, p->addr);
afd66255
MH
2426
2427 if (!pp)
2428 pp = p;
ae6aa16f 2429 seq_printf(pi, "%s%s%s%s\n",
afd66255
MH
2430 (kprobe_gone(p) ? "[GONE]" : ""),
2431 ((kprobe_disabled(p) && !kprobe_gone(p)) ? "[DISABLED]" : ""),
ae6aa16f
MH
2432 (kprobe_optimized(pp) ? "[OPTIMIZED]" : ""),
2433 (kprobe_ftrace(pp) ? "[FTRACE]" : ""));
346fd59b
SD
2434}
2435
55479f64 2436static void *kprobe_seq_start(struct seq_file *f, loff_t *pos)
346fd59b
SD
2437{
2438 return (*pos < KPROBE_TABLE_SIZE) ? pos : NULL;
2439}
2440
55479f64 2441static void *kprobe_seq_next(struct seq_file *f, void *v, loff_t *pos)
346fd59b
SD
2442{
2443 (*pos)++;
2444 if (*pos >= KPROBE_TABLE_SIZE)
2445 return NULL;
2446 return pos;
2447}
2448
55479f64 2449static void kprobe_seq_stop(struct seq_file *f, void *v)
346fd59b
SD
2450{
2451 /* Nothing to do */
2452}
2453
55479f64 2454static int show_kprobe_addr(struct seq_file *pi, void *v)
346fd59b
SD
2455{
2456 struct hlist_head *head;
346fd59b
SD
2457 struct kprobe *p, *kp;
2458 const char *sym = NULL;
2459 unsigned int i = *(loff_t *) v;
ffb45122 2460 unsigned long offset = 0;
ab767865 2461 char *modname, namebuf[KSYM_NAME_LEN];
346fd59b
SD
2462
2463 head = &kprobe_table[i];
2464 preempt_disable();
b67bfe0d 2465 hlist_for_each_entry_rcu(p, head, hlist) {
ffb45122 2466 sym = kallsyms_lookup((unsigned long)p->addr, NULL,
346fd59b 2467 &offset, &modname, namebuf);
afd66255 2468 if (kprobe_aggrprobe(p)) {
346fd59b 2469 list_for_each_entry_rcu(kp, &p->list, list)
afd66255 2470 report_probe(pi, kp, sym, offset, modname, p);
346fd59b 2471 } else
afd66255 2472 report_probe(pi, p, sym, offset, modname, NULL);
346fd59b
SD
2473 }
2474 preempt_enable();
2475 return 0;
2476}
2477
88e9d34c 2478static const struct seq_operations kprobes_seq_ops = {
346fd59b
SD
2479 .start = kprobe_seq_start,
2480 .next = kprobe_seq_next,
2481 .stop = kprobe_seq_stop,
2482 .show = show_kprobe_addr
2483};
2484
55479f64 2485static int kprobes_open(struct inode *inode, struct file *filp)
346fd59b
SD
2486{
2487 return seq_open(filp, &kprobes_seq_ops);
2488}
2489
828c0950 2490static const struct file_operations debugfs_kprobes_operations = {
346fd59b
SD
2491 .open = kprobes_open,
2492 .read = seq_read,
2493 .llseek = seq_lseek,
2494 .release = seq_release,
2495};
2496
63724740
MH
2497/* kprobes/blacklist -- shows which functions can not be probed */
2498static void *kprobe_blacklist_seq_start(struct seq_file *m, loff_t *pos)
2499{
4fdd8887 2500 mutex_lock(&kprobe_mutex);
63724740
MH
2501 return seq_list_start(&kprobe_blacklist, *pos);
2502}
2503
2504static void *kprobe_blacklist_seq_next(struct seq_file *m, void *v, loff_t *pos)
2505{
2506 return seq_list_next(v, &kprobe_blacklist, pos);
2507}
2508
2509static int kprobe_blacklist_seq_show(struct seq_file *m, void *v)
2510{
2511 struct kprobe_blacklist_entry *ent =
2512 list_entry(v, struct kprobe_blacklist_entry, list);
2513
ffb9bd68
MH
2514 /*
2515 * If /proc/kallsyms is not showing kernel address, we won't
2516 * show them here either.
2517 */
2518 if (!kallsyms_show_value())
2519 seq_printf(m, "0x%px-0x%px\t%ps\n", NULL, NULL,
2520 (void *)ent->start_addr);
2521 else
2522 seq_printf(m, "0x%px-0x%px\t%ps\n", (void *)ent->start_addr,
2523 (void *)ent->end_addr, (void *)ent->start_addr);
63724740
MH
2524 return 0;
2525}
2526
4fdd8887
MH
2527static void kprobe_blacklist_seq_stop(struct seq_file *f, void *v)
2528{
2529 mutex_unlock(&kprobe_mutex);
2530}
2531
63724740
MH
2532static const struct seq_operations kprobe_blacklist_seq_ops = {
2533 .start = kprobe_blacklist_seq_start,
2534 .next = kprobe_blacklist_seq_next,
4fdd8887 2535 .stop = kprobe_blacklist_seq_stop,
63724740
MH
2536 .show = kprobe_blacklist_seq_show,
2537};
2538
2539static int kprobe_blacklist_open(struct inode *inode, struct file *filp)
2540{
2541 return seq_open(filp, &kprobe_blacklist_seq_ops);
2542}
2543
2544static const struct file_operations debugfs_kprobe_blacklist_ops = {
2545 .open = kprobe_blacklist_open,
2546 .read = seq_read,
2547 .llseek = seq_lseek,
2548 .release = seq_release,
2549};
2550
12310e34 2551static int arm_all_kprobes(void)
bf8f6e5b
AM
2552{
2553 struct hlist_head *head;
bf8f6e5b 2554 struct kprobe *p;
12310e34
JY
2555 unsigned int i, total = 0, errors = 0;
2556 int err, ret = 0;
bf8f6e5b
AM
2557
2558 mutex_lock(&kprobe_mutex);
2559
e579abeb
MH
2560 /* If kprobes are armed, just return */
2561 if (!kprobes_all_disarmed)
bf8f6e5b
AM
2562 goto already_enabled;
2563
977ad481
WN
2564 /*
2565 * optimize_kprobe() called by arm_kprobe() checks
2566 * kprobes_all_disarmed, so set kprobes_all_disarmed before
2567 * arm_kprobe.
2568 */
2569 kprobes_all_disarmed = false;
afd66255 2570 /* Arming kprobes doesn't optimize kprobe itself */
bf8f6e5b
AM
2571 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
2572 head = &kprobe_table[i];
12310e34
JY
2573 /* Arm all kprobes on a best-effort basis */
2574 hlist_for_each_entry_rcu(p, head, hlist) {
2575 if (!kprobe_disabled(p)) {
2576 err = arm_kprobe(p);
2577 if (err) {
2578 errors++;
2579 ret = err;
2580 }
2581 total++;
2582 }
2583 }
bf8f6e5b
AM
2584 }
2585
12310e34
JY
2586 if (errors)
2587 pr_warn("Kprobes globally enabled, but failed to arm %d out of %d probes\n",
2588 errors, total);
2589 else
2590 pr_info("Kprobes globally enabled\n");
bf8f6e5b
AM
2591
2592already_enabled:
2593 mutex_unlock(&kprobe_mutex);
12310e34 2594 return ret;
bf8f6e5b
AM
2595}
2596
297f9233 2597static int disarm_all_kprobes(void)
bf8f6e5b
AM
2598{
2599 struct hlist_head *head;
bf8f6e5b 2600 struct kprobe *p;
297f9233
JY
2601 unsigned int i, total = 0, errors = 0;
2602 int err, ret = 0;
bf8f6e5b
AM
2603
2604 mutex_lock(&kprobe_mutex);
2605
e579abeb 2606 /* If kprobes are already disarmed, just return */
6274de49
MH
2607 if (kprobes_all_disarmed) {
2608 mutex_unlock(&kprobe_mutex);
297f9233 2609 return 0;
6274de49 2610 }
bf8f6e5b 2611
e579abeb 2612 kprobes_all_disarmed = true;
afd66255 2613
bf8f6e5b
AM
2614 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
2615 head = &kprobe_table[i];
297f9233 2616 /* Disarm all kprobes on a best-effort basis */
b67bfe0d 2617 hlist_for_each_entry_rcu(p, head, hlist) {
297f9233
JY
2618 if (!arch_trampoline_kprobe(p) && !kprobe_disabled(p)) {
2619 err = disarm_kprobe(p, false);
2620 if (err) {
2621 errors++;
2622 ret = err;
2623 }
2624 total++;
2625 }
bf8f6e5b
AM
2626 }
2627 }
297f9233
JY
2628
2629 if (errors)
2630 pr_warn("Kprobes globally disabled, but failed to disarm %d out of %d probes\n",
2631 errors, total);
2632 else
2633 pr_info("Kprobes globally disabled\n");
2634
bf8f6e5b 2635 mutex_unlock(&kprobe_mutex);
bf8f6e5b 2636
6274de49
MH
2637 /* Wait for disarming all kprobes by optimizer */
2638 wait_for_kprobe_optimizer();
297f9233
JY
2639
2640 return ret;
bf8f6e5b
AM
2641}
2642
2643/*
2644 * XXX: The debugfs bool file interface doesn't allow for callbacks
2645 * when the bool state is switched. We can reuse that facility when
2646 * available
2647 */
2648static ssize_t read_enabled_file_bool(struct file *file,
2649 char __user *user_buf, size_t count, loff_t *ppos)
2650{
2651 char buf[3];
2652
e579abeb 2653 if (!kprobes_all_disarmed)
bf8f6e5b
AM
2654 buf[0] = '1';
2655 else
2656 buf[0] = '0';
2657 buf[1] = '\n';
2658 buf[2] = 0x00;
2659 return simple_read_from_buffer(user_buf, count, ppos, buf, 2);
2660}
2661
2662static ssize_t write_enabled_file_bool(struct file *file,
2663 const char __user *user_buf, size_t count, loff_t *ppos)
2664{
2665 char buf[32];
efeb156e 2666 size_t buf_size;
12310e34 2667 int ret = 0;
bf8f6e5b
AM
2668
2669 buf_size = min(count, (sizeof(buf)-1));
2670 if (copy_from_user(buf, user_buf, buf_size))
2671 return -EFAULT;
2672
10fb46d5 2673 buf[buf_size] = '\0';
bf8f6e5b
AM
2674 switch (buf[0]) {
2675 case 'y':
2676 case 'Y':
2677 case '1':
12310e34 2678 ret = arm_all_kprobes();
bf8f6e5b
AM
2679 break;
2680 case 'n':
2681 case 'N':
2682 case '0':
297f9233 2683 ret = disarm_all_kprobes();
bf8f6e5b 2684 break;
10fb46d5
MK
2685 default:
2686 return -EINVAL;
bf8f6e5b
AM
2687 }
2688
12310e34
JY
2689 if (ret)
2690 return ret;
2691
bf8f6e5b
AM
2692 return count;
2693}
2694
828c0950 2695static const struct file_operations fops_kp = {
bf8f6e5b
AM
2696 .read = read_enabled_file_bool,
2697 .write = write_enabled_file_bool,
6038f373 2698 .llseek = default_llseek,
bf8f6e5b
AM
2699};
2700
55479f64 2701static int __init debugfs_kprobe_init(void)
346fd59b 2702{
8c0fd1fa 2703 struct dentry *dir;
bf8f6e5b 2704 unsigned int value = 1;
346fd59b
SD
2705
2706 dir = debugfs_create_dir("kprobes", NULL);
346fd59b 2707
8c0fd1fa
GKH
2708 debugfs_create_file("list", 0400, dir, NULL,
2709 &debugfs_kprobes_operations);
346fd59b 2710
8c0fd1fa 2711 debugfs_create_file("enabled", 0600, dir, &value, &fops_kp);
63724740 2712
8c0fd1fa
GKH
2713 debugfs_create_file("blacklist", 0400, dir, NULL,
2714 &debugfs_kprobe_blacklist_ops);
bf8f6e5b 2715
346fd59b
SD
2716 return 0;
2717}
2718
2719late_initcall(debugfs_kprobe_init);
2720#endif /* CONFIG_DEBUG_FS */