blob: 069388d26e3ce0c46d88411e0f363d740bdaccd7 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Kernel Probes (KProbes)
4 * kernel/kprobes.c
5 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * 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.
Hien Nguyenb94cce92005-06-23 00:09:19 -070017 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 */
21#include <linux/kprobes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/hash.h>
23#include <linux/init.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080024#include <linux/slab.h>
Randy Dunlape3869792007-05-08 00:27:01 -070025#include <linux/stddef.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -040026#include <linux/export.h>
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -070027#include <linux/moduleloader.h>
Ananth N Mavinakayanahalli3a872d82006-10-02 02:17:30 -070028#include <linux/kallsyms.h>
Masami Hiramatsub4c6c342006-12-06 20:38:11 -080029#include <linux/freezer.h>
Srinivasa Ds346fd592007-02-20 13:57:54 -080030#include <linux/seq_file.h>
31#include <linux/debugfs.h>
Masami Hiramatsub2be84d2010-02-25 08:34:15 -050032#include <linux/sysctl.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070033#include <linux/kdebug.h>
Mathieu Desnoyers4460fda2009-03-06 10:36:38 -050034#include <linux/memory.h>
Masami Hiramatsu4554dbc2010-02-02 16:49:18 -050035#include <linux/ftrace.h>
Masami Hiramatsuafd66252010-02-25 08:34:07 -050036#include <linux/cpu.h>
Jason Baronbf5438fc2010-09-17 11:09:00 -040037#include <linux/jump_label.h>
Peter Zijlstrafa68bd02021-06-28 13:24:12 +020038#include <linux/static_call.h>
Adrian Hunter69e49082020-05-12 15:19:11 +030039#include <linux/perf_event.h>
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -070040
Christoph Hellwigbfd45be2016-10-11 13:52:22 -070041#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/cacheflush.h>
43#include <asm/errno.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080044#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#define KPROBE_HASH_BITS 6
47#define KPROBE_TABLE_SIZE (1 << KPROBE_HASH_BITS)
48
Ananth N Mavinakayanahalli3a872d82006-10-02 02:17:30 -070049
Srinivasa D Sef53d9c2008-07-25 01:46:04 -070050static int kprobes_initialized;
Masami Hiramatsu7e6a71d2020-05-12 17:02:44 +090051/* kprobe_table can be accessed by
52 * - Normal hlist traversal and RCU add/del under kprobe_mutex is held.
53 * Or
54 * - RCU hlist traversal under disabling preempt (breakpoint handlers)
55 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056static struct hlist_head kprobe_table[KPROBE_TABLE_SIZE];
57
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -070058/* NOTE: change this value only with kprobe_mutex held */
Masami Hiramatsue579abe2009-04-06 19:01:01 -070059static bool kprobes_all_disarmed;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -070060
Masami Hiramatsu43948f52010-10-25 22:18:01 +090061/* This protects kprobe_table and optimizing_list */
62static DEFINE_MUTEX(kprobe_mutex);
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -080063static DEFINE_PER_CPU(struct kprobe *, kprobe_instance) = NULL;
Srinivasa D Sef53d9c2008-07-25 01:46:04 -070064
Naveen N. Rao290e3072017-04-19 18:21:01 +053065kprobe_opcode_t * __weak kprobe_lookup_name(const char *name,
66 unsigned int __unused)
Naveen N. Rao49e0b462017-04-19 18:21:00 +053067{
68 return ((kprobe_opcode_t *)(kallsyms_lookup_name(name)));
69}
70
Masami Hiramatsu376e2422014-04-17 17:17:05 +090071/* Blacklist -- list of struct kprobe_blacklist_entry */
72static LIST_HEAD(kprobe_blacklist);
Srinivasa Ds3d8d9962008-04-28 02:14:26 -070073
Anil S Keshavamurthy2d14e392006-01-09 20:52:41 -080074#ifdef __ARCH_WANT_KPROBES_INSN_SLOT
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -070075/*
76 * kprobe->ainsn.insn points to the copy of the instruction to be
77 * single-stepped. x86_64, POWER4 and above have no-exec support and
78 * stepping on the instruction on a vmalloced/kmalloced/data page
79 * is a recipe for disaster
80 */
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -070081struct kprobe_insn_page {
Masami Hiramatsuc5cb5a22009-06-30 17:08:14 -040082 struct list_head list;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -070083 kprobe_opcode_t *insns; /* Page of instruction slots */
Heiko Carstensaf963972013-09-11 14:24:13 -070084 struct kprobe_insn_cache *cache;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -070085 int nused;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -080086 int ngarbage;
Masami Hiramatsu4610ee12010-02-25 08:33:59 -050087 char slot_used[];
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -070088};
89
Masami Hiramatsu4610ee12010-02-25 08:33:59 -050090#define KPROBE_INSN_PAGE_SIZE(slots) \
91 (offsetof(struct kprobe_insn_page, slot_used) + \
92 (sizeof(char) * (slots)))
93
Masami Hiramatsu4610ee12010-02-25 08:33:59 -050094static int slots_per_page(struct kprobe_insn_cache *c)
95{
96 return PAGE_SIZE/(c->insn_size * sizeof(kprobe_opcode_t));
97}
98
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -080099enum kprobe_slot_state {
100 SLOT_CLEAN = 0,
101 SLOT_DIRTY = 1,
102 SLOT_USED = 2,
103};
104
Masami Hiramatsu63fef142017-08-18 17:24:00 +0900105void __weak *alloc_insn_page(void)
Heiko Carstensaf963972013-09-11 14:24:13 -0700106{
107 return module_alloc(PAGE_SIZE);
108}
109
Masami Hiramatsuc93f5cf2017-05-25 19:38:17 +0900110void __weak free_insn_page(void *page)
Heiko Carstensaf963972013-09-11 14:24:13 -0700111{
Rusty Russellbe1f2212015-01-20 09:07:05 +1030112 module_memfree(page);
Heiko Carstensaf963972013-09-11 14:24:13 -0700113}
114
Heiko Carstensc802d642013-09-11 14:24:11 -0700115struct kprobe_insn_cache kprobe_insn_slots = {
116 .mutex = __MUTEX_INITIALIZER(kprobe_insn_slots.mutex),
Heiko Carstensaf963972013-09-11 14:24:13 -0700117 .alloc = alloc_insn_page,
118 .free = free_insn_page,
Adrian Hunterd002b8b2020-05-28 11:00:58 +0300119 .sym = KPROBE_INSN_PAGE_SYM,
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500120 .pages = LIST_HEAD_INIT(kprobe_insn_slots.pages),
121 .insn_size = MAX_INSN_SIZE,
122 .nr_garbage = 0,
123};
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900124static int collect_garbage_slots(struct kprobe_insn_cache *c);
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800125
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700126/**
Masami Hiramatsu12941562009-01-06 14:41:50 -0800127 * __get_insn_slot() - Find a slot on an executable page for an instruction.
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700128 * We allocate an executable page if there's no room on existing ones.
129 */
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900130kprobe_opcode_t *__get_insn_slot(struct kprobe_insn_cache *c)
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700131{
132 struct kprobe_insn_page *kip;
Heiko Carstensc802d642013-09-11 14:24:11 -0700133 kprobe_opcode_t *slot = NULL;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700134
Masami Hiramatsu5b485622017-01-08 23:58:09 +0900135 /* Since the slot array is not protected by rcu, we need a mutex */
Heiko Carstensc802d642013-09-11 14:24:11 -0700136 mutex_lock(&c->mutex);
Christoph Hellwig6f716ac2007-05-08 00:34:13 -0700137 retry:
Masami Hiramatsu5b485622017-01-08 23:58:09 +0900138 rcu_read_lock();
139 list_for_each_entry_rcu(kip, &c->pages, list) {
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500140 if (kip->nused < slots_per_page(c)) {
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700141 int i;
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500142 for (i = 0; i < slots_per_page(c); i++) {
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800143 if (kip->slot_used[i] == SLOT_CLEAN) {
144 kip->slot_used[i] = SLOT_USED;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700145 kip->nused++;
Heiko Carstensc802d642013-09-11 14:24:11 -0700146 slot = kip->insns + (i * c->insn_size);
Masami Hiramatsu5b485622017-01-08 23:58:09 +0900147 rcu_read_unlock();
Heiko Carstensc802d642013-09-11 14:24:11 -0700148 goto out;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700149 }
150 }
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500151 /* kip->nused is broken. Fix it. */
152 kip->nused = slots_per_page(c);
153 WARN_ON(1);
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700154 }
155 }
Masami Hiramatsu5b485622017-01-08 23:58:09 +0900156 rcu_read_unlock();
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700157
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800158 /* If there are any garbage slots, collect it and try again. */
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500159 if (c->nr_garbage && collect_garbage_slots(c) == 0)
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800160 goto retry;
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500161
162 /* All out of space. Need to allocate a new page. */
163 kip = kmalloc(KPROBE_INSN_PAGE_SIZE(slots_per_page(c)), GFP_KERNEL);
Christoph Hellwig6f716ac2007-05-08 00:34:13 -0700164 if (!kip)
Heiko Carstensc802d642013-09-11 14:24:11 -0700165 goto out;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700166
167 /*
168 * Use module_alloc so this page is within +/- 2GB of where the
169 * kernel image and loaded module images reside. This is required
170 * so x86_64 can correctly handle the %rip-relative fixups.
171 */
Heiko Carstensaf963972013-09-11 14:24:13 -0700172 kip->insns = c->alloc();
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700173 if (!kip->insns) {
174 kfree(kip);
Heiko Carstensc802d642013-09-11 14:24:11 -0700175 goto out;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700176 }
Masami Hiramatsuc5cb5a22009-06-30 17:08:14 -0400177 INIT_LIST_HEAD(&kip->list);
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500178 memset(kip->slot_used, SLOT_CLEAN, slots_per_page(c));
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800179 kip->slot_used[0] = SLOT_USED;
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700180 kip->nused = 1;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800181 kip->ngarbage = 0;
Heiko Carstensaf963972013-09-11 14:24:13 -0700182 kip->cache = c;
Masami Hiramatsu5b485622017-01-08 23:58:09 +0900183 list_add_rcu(&kip->list, &c->pages);
Heiko Carstensc802d642013-09-11 14:24:11 -0700184 slot = kip->insns;
Adrian Hunter69e49082020-05-12 15:19:11 +0300185
186 /* Record the perf ksymbol register event after adding the page */
187 perf_event_ksymbol(PERF_RECORD_KSYMBOL_TYPE_OOL, (unsigned long)kip->insns,
188 PAGE_SIZE, false, c->sym);
Heiko Carstensc802d642013-09-11 14:24:11 -0700189out:
190 mutex_unlock(&c->mutex);
191 return slot;
Masami Hiramatsu12941562009-01-06 14:41:50 -0800192}
193
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800194/* Return 1 if all garbages are collected, otherwise 0. */
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900195static int collect_one_slot(struct kprobe_insn_page *kip, int idx)
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800196{
Masami Hiramatsuab40c5c2007-01-30 14:36:06 -0800197 kip->slot_used[idx] = SLOT_CLEAN;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800198 kip->nused--;
199 if (kip->nused == 0) {
200 /*
201 * Page is no longer in use. Free it unless
202 * it's the last one. We keep the last one
203 * so as not to have to set it up again the
204 * next time somebody inserts a probe.
205 */
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500206 if (!list_is_singular(&kip->list)) {
Adrian Hunter69e49082020-05-12 15:19:11 +0300207 /*
208 * Record perf ksymbol unregister event before removing
209 * the page.
210 */
211 perf_event_ksymbol(PERF_RECORD_KSYMBOL_TYPE_OOL,
212 (unsigned long)kip->insns, PAGE_SIZE, true,
213 kip->cache->sym);
Masami Hiramatsu5b485622017-01-08 23:58:09 +0900214 list_del_rcu(&kip->list);
215 synchronize_rcu();
Heiko Carstensaf963972013-09-11 14:24:13 -0700216 kip->cache->free(kip->insns);
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800217 kfree(kip);
218 }
219 return 1;
220 }
221 return 0;
222}
223
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900224static int collect_garbage_slots(struct kprobe_insn_cache *c)
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800225{
Masami Hiramatsuc5cb5a22009-06-30 17:08:14 -0400226 struct kprobe_insn_page *kip, *next;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800227
Masami Hiramatsu615d0eb2010-02-02 16:49:04 -0500228 /* Ensure no-one is interrupted on the garbages */
Paul E. McKenneyae8b7ce2018-11-06 19:04:39 -0800229 synchronize_rcu();
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800230
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500231 list_for_each_entry_safe(kip, next, &c->pages, list) {
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800232 int i;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800233 if (kip->ngarbage == 0)
234 continue;
235 kip->ngarbage = 0; /* we will collect all garbages */
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500236 for (i = 0; i < slots_per_page(c); i++) {
Masami Hiramatsu5b485622017-01-08 23:58:09 +0900237 if (kip->slot_used[i] == SLOT_DIRTY && collect_one_slot(kip, i))
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800238 break;
239 }
240 }
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500241 c->nr_garbage = 0;
Masami Hiramatsub4c6c342006-12-06 20:38:11 -0800242 return 0;
243}
244
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900245void __free_insn_slot(struct kprobe_insn_cache *c,
246 kprobe_opcode_t *slot, int dirty)
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500247{
248 struct kprobe_insn_page *kip;
Masami Hiramatsu5b485622017-01-08 23:58:09 +0900249 long idx;
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500250
Heiko Carstensc802d642013-09-11 14:24:11 -0700251 mutex_lock(&c->mutex);
Masami Hiramatsu5b485622017-01-08 23:58:09 +0900252 rcu_read_lock();
253 list_for_each_entry_rcu(kip, &c->pages, list) {
254 idx = ((long)slot - (long)kip->insns) /
255 (c->insn_size * sizeof(kprobe_opcode_t));
256 if (idx >= 0 && idx < slots_per_page(c))
Heiko Carstensc802d642013-09-11 14:24:11 -0700257 goto out;
Masami Hiramatsu5b485622017-01-08 23:58:09 +0900258 }
259 /* Could not find this slot. */
260 WARN_ON(1);
261 kip = NULL;
262out:
263 rcu_read_unlock();
264 /* Mark and sweep: this may sleep */
265 if (kip) {
266 /* Check double free */
267 WARN_ON(kip->slot_used[idx] != SLOT_USED);
268 if (dirty) {
269 kip->slot_used[idx] = SLOT_DIRTY;
270 kip->ngarbage++;
271 if (++c->nr_garbage > slots_per_page(c))
272 collect_garbage_slots(c);
273 } else {
274 collect_one_slot(kip, idx);
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500275 }
276 }
Heiko Carstensc802d642013-09-11 14:24:11 -0700277 mutex_unlock(&c->mutex);
Masami Hiramatsu4610ee12010-02-25 08:33:59 -0500278}
279
Masami Hiramatsu5b485622017-01-08 23:58:09 +0900280/*
281 * Check given address is on the page of kprobe instruction slots.
282 * This will be used for checking whether the address on a stack
283 * is on a text area or not.
284 */
285bool __is_insn_slot_addr(struct kprobe_insn_cache *c, unsigned long addr)
286{
287 struct kprobe_insn_page *kip;
288 bool ret = false;
289
290 rcu_read_lock();
291 list_for_each_entry_rcu(kip, &c->pages, list) {
292 if (addr >= (unsigned long)kip->insns &&
293 addr < (unsigned long)kip->insns + PAGE_SIZE) {
294 ret = true;
295 break;
296 }
297 }
298 rcu_read_unlock();
299
300 return ret;
301}
302
Adrian Hunterd002b8b2020-05-28 11:00:58 +0300303int kprobe_cache_get_kallsym(struct kprobe_insn_cache *c, unsigned int *symnum,
304 unsigned long *value, char *type, char *sym)
305{
306 struct kprobe_insn_page *kip;
307 int ret = -ERANGE;
308
309 rcu_read_lock();
310 list_for_each_entry_rcu(kip, &c->pages, list) {
311 if ((*symnum)--)
312 continue;
313 strlcpy(sym, c->sym, KSYM_NAME_LEN);
314 *type = 't';
315 *value = (unsigned long)kip->insns;
316 ret = 0;
317 break;
318 }
319 rcu_read_unlock();
320
321 return ret;
322}
323
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500324#ifdef CONFIG_OPTPROBES
325/* For optimized_kprobe buffer */
Heiko Carstensc802d642013-09-11 14:24:11 -0700326struct kprobe_insn_cache kprobe_optinsn_slots = {
327 .mutex = __MUTEX_INITIALIZER(kprobe_optinsn_slots.mutex),
Heiko Carstensaf963972013-09-11 14:24:13 -0700328 .alloc = alloc_insn_page,
329 .free = free_insn_page,
Adrian Hunterd002b8b2020-05-28 11:00:58 +0300330 .sym = KPROBE_OPTINSN_PAGE_SYM,
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500331 .pages = LIST_HEAD_INIT(kprobe_optinsn_slots.pages),
332 /* .insn_size is initialized later */
333 .nr_garbage = 0,
334};
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500335#endif
Anil S Keshavamurthy2d14e392006-01-09 20:52:41 -0800336#endif
Ananth N Mavinakayanahalli9ec4b1f2005-06-27 15:17:01 -0700337
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800338/* We have preemption disabled.. so it is safe to use __ versions */
339static inline void set_kprobe_instance(struct kprobe *kp)
340{
Christoph Lameterb76834b2010-12-06 11:16:25 -0600341 __this_cpu_write(kprobe_instance, kp);
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800342}
343
344static inline void reset_kprobe_instance(void)
345{
Christoph Lameterb76834b2010-12-06 11:16:25 -0600346 __this_cpu_write(kprobe_instance, NULL);
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -0800347}
348
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800349/*
350 * This routine is called either:
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -0800351 * - under the kprobe_mutex - during kprobe_[un]register()
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800352 * OR
Ananth N Mavinakayanahallid217d542005-11-07 01:00:14 -0800353 * - with preemption disabled - from arch/xxx/kernel/kprobes.c
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800354 */
Masami Hiramatsu820aede2014-04-17 17:18:21 +0900355struct kprobe *get_kprobe(void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 struct hlist_head *head;
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -0800358 struct kprobe *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 head = &kprobe_table[hash_ptr(addr, KPROBE_HASH_BITS)];
Masami Hiramatsu6743ad42020-05-12 17:02:33 +0900361 hlist_for_each_entry_rcu(p, head, hlist,
362 lockdep_is_held(&kprobe_mutex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (p->addr == addr)
364 return p;
365 }
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return NULL;
368}
Masami Hiramatsu820aede2014-04-17 17:18:21 +0900369NOKPROBE_SYMBOL(get_kprobe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Masami Hiramatsu820aede2014-04-17 17:18:21 +0900371static int aggr_pre_handler(struct kprobe *p, struct pt_regs *regs);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500372
373/* Return true if the kprobe is an aggregator */
374static inline int kprobe_aggrprobe(struct kprobe *p)
375{
376 return p->pre_handler == aggr_pre_handler;
377}
378
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900379/* Return true(!0) if the kprobe is unused */
380static inline int kprobe_unused(struct kprobe *p)
381{
382 return kprobe_aggrprobe(p) && kprobe_disabled(p) &&
383 list_empty(&p->list);
384}
385
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500386/*
387 * Keep all fields in the kprobe consistent
388 */
Masami Hiramatsu6d8e40a2010-12-03 18:53:50 +0900389static inline void copy_kprobe(struct kprobe *ap, struct kprobe *p)
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500390{
Masami Hiramatsu6d8e40a2010-12-03 18:53:50 +0900391 memcpy(&p->opcode, &ap->opcode, sizeof(kprobe_opcode_t));
392 memcpy(&p->ainsn, &ap->ainsn, sizeof(struct arch_specific_insn));
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500393}
394
395#ifdef CONFIG_OPTPROBES
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500396/* NOTE: change this value only with kprobe_mutex held */
397static bool kprobes_allow_optimization;
398
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500399/*
400 * Call all pre_handler on the list, but ignores its return value.
401 * This must be called from arch-dep optimized caller.
402 */
Masami Hiramatsu820aede2014-04-17 17:18:21 +0900403void opt_pre_handler(struct kprobe *p, struct pt_regs *regs)
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500404{
405 struct kprobe *kp;
406
407 list_for_each_entry_rcu(kp, &p->list, list) {
408 if (kp->pre_handler && likely(!kprobe_disabled(kp))) {
409 set_kprobe_instance(kp);
Naveen N. Rao4f3a8712017-10-17 13:48:34 +0530410 kp->pre_handler(kp, regs);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500411 }
412 reset_kprobe_instance();
413 }
414}
Masami Hiramatsu820aede2014-04-17 17:18:21 +0900415NOKPROBE_SYMBOL(opt_pre_handler);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500416
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900417/* Free optimized instructions and optimized_kprobe */
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900418static void free_aggr_kprobe(struct kprobe *p)
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900419{
420 struct optimized_kprobe *op;
421
422 op = container_of(p, struct optimized_kprobe, kp);
423 arch_remove_optimized_kprobe(op);
424 arch_remove_kprobe(p);
425 kfree(op);
426}
427
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500428/* Return true(!0) if the kprobe is ready for optimization. */
429static inline int kprobe_optready(struct kprobe *p)
430{
431 struct optimized_kprobe *op;
432
433 if (kprobe_aggrprobe(p)) {
434 op = container_of(p, struct optimized_kprobe, kp);
435 return arch_prepared_optinsn(&op->optinsn);
436 }
437
438 return 0;
439}
440
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900441/* Return true(!0) if the kprobe is disarmed. Note: p must be on hash list */
442static inline int kprobe_disarmed(struct kprobe *p)
443{
444 struct optimized_kprobe *op;
445
446 /* If kprobe is not aggr/opt probe, just return kprobe is disabled */
447 if (!kprobe_aggrprobe(p))
448 return kprobe_disabled(p);
449
450 op = container_of(p, struct optimized_kprobe, kp);
451
452 return kprobe_disabled(p) && list_empty(&op->list);
453}
454
455/* Return true(!0) if the probe is queued on (un)optimizing lists */
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900456static int kprobe_queued(struct kprobe *p)
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900457{
458 struct optimized_kprobe *op;
459
460 if (kprobe_aggrprobe(p)) {
461 op = container_of(p, struct optimized_kprobe, kp);
462 if (!list_empty(&op->list))
463 return 1;
464 }
465 return 0;
466}
467
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500468/*
469 * Return an optimized kprobe whose optimizing code replaces
470 * instructions including addr (exclude breakpoint).
471 */
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900472static struct kprobe *get_optimized_kprobe(unsigned long addr)
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500473{
474 int i;
475 struct kprobe *p = NULL;
476 struct optimized_kprobe *op;
477
478 /* Don't check i == 0, since that is a breakpoint case. */
479 for (i = 1; !p && i < MAX_OPTIMIZED_LENGTH; i++)
480 p = get_kprobe((void *)(addr - i));
481
482 if (p && kprobe_optready(p)) {
483 op = container_of(p, struct optimized_kprobe, kp);
484 if (arch_within_optimized_kprobe(op, addr))
485 return p;
486 }
487
488 return NULL;
489}
490
491/* Optimization staging list, protected by kprobe_mutex */
492static LIST_HEAD(optimizing_list);
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900493static LIST_HEAD(unoptimizing_list);
Masami Hiramatsu7b959fc2013-05-22 18:34:09 +0900494static LIST_HEAD(freeing_list);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500495
496static void kprobe_optimizer(struct work_struct *work);
497static DECLARE_DELAYED_WORK(optimizing_work, kprobe_optimizer);
498#define OPTIMIZE_DELAY 5
499
Masami Hiramatsu61f4e132010-12-03 18:54:03 +0900500/*
501 * Optimize (replace a breakpoint with a jump) kprobes listed on
502 * optimizing_list.
503 */
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900504static void do_optimize_kprobes(void)
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500505{
Andrea Righif1c6ece2019-08-12 20:43:02 +0200506 lockdep_assert_held(&text_mutex);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500507 /*
508 * The optimization/unoptimization refers online_cpus via
509 * stop_machine() and cpu-hotplug modifies online_cpus.
510 * And same time, text_mutex will be held in cpu-hotplug and here.
511 * This combination can cause a deadlock (cpu-hotplug try to lock
512 * text_mutex but stop_machine can not be done because online_cpus
513 * has been changed)
Thomas Gleixner2d1e38f2017-05-24 10:15:36 +0200514 * To avoid this deadlock, caller must have locked cpu hotplug
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500515 * for preventing cpu-hotplug outside of text_mutex locking.
516 */
Thomas Gleixner2d1e38f2017-05-24 10:15:36 +0200517 lockdep_assert_cpus_held();
518
519 /* Optimization never be done when disarmed */
520 if (kprobes_all_disarmed || !kprobes_allow_optimization ||
521 list_empty(&optimizing_list))
522 return;
523
Masami Hiramatsucd7ebe22010-12-03 18:54:28 +0900524 arch_optimize_kprobes(&optimizing_list);
Masami Hiramatsu61f4e132010-12-03 18:54:03 +0900525}
526
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900527/*
528 * Unoptimize (replace a jump with a breakpoint and remove the breakpoint
529 * if need) kprobes listed on unoptimizing_list.
530 */
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900531static void do_unoptimize_kprobes(void)
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900532{
533 struct optimized_kprobe *op, *tmp;
534
Andrea Righif1c6ece2019-08-12 20:43:02 +0200535 lockdep_assert_held(&text_mutex);
Thomas Gleixner2d1e38f2017-05-24 10:15:36 +0200536 /* See comment in do_optimize_kprobes() */
537 lockdep_assert_cpus_held();
538
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900539 /* Unoptimization must be done anytime */
540 if (list_empty(&unoptimizing_list))
541 return;
542
Masami Hiramatsu7b959fc2013-05-22 18:34:09 +0900543 arch_unoptimize_kprobes(&unoptimizing_list, &freeing_list);
Masami Hiramatsuf984ba42010-12-03 18:54:34 +0900544 /* Loop free_list for disarming */
Masami Hiramatsu7b959fc2013-05-22 18:34:09 +0900545 list_for_each_entry_safe(op, tmp, &freeing_list, list) {
Masami Hiramatsuf66c0442019-11-27 14:57:04 +0900546 /* Switching from detour code to origin */
547 op->kp.flags &= ~KPROBE_FLAG_OPTIMIZED;
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900548 /* Disarm probes if marked disabled */
549 if (kprobe_disabled(&op->kp))
550 arch_disarm_kprobe(&op->kp);
551 if (kprobe_unused(&op->kp)) {
552 /*
553 * Remove unused probes from hash list. After waiting
554 * for synchronization, these probes are reclaimed.
555 * (reclaiming is done by do_free_cleaned_kprobes.)
556 */
557 hlist_del_rcu(&op->kp.hlist);
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900558 } else
559 list_del_init(&op->list);
560 }
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900561}
562
563/* Reclaim all kprobes on the free_list */
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900564static void do_free_cleaned_kprobes(void)
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900565{
566 struct optimized_kprobe *op, *tmp;
567
Masami Hiramatsu7b959fc2013-05-22 18:34:09 +0900568 list_for_each_entry_safe(op, tmp, &freeing_list, list) {
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900569 list_del_init(&op->list);
Masami Hiramatsucbdd96f2018-09-11 19:21:09 +0900570 if (WARN_ON_ONCE(!kprobe_unused(&op->kp))) {
571 /*
572 * This must not happen, but if there is a kprobe
573 * still in use, keep it on kprobes hash list.
574 */
575 continue;
576 }
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900577 free_aggr_kprobe(&op->kp);
578 }
579}
580
581/* Start optimizer after OPTIMIZE_DELAY passed */
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900582static void kick_kprobe_optimizer(void)
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900583{
Tejun Heoad72b3b2012-12-21 17:57:00 -0800584 schedule_delayed_work(&optimizing_work, OPTIMIZE_DELAY);
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900585}
586
Masami Hiramatsu61f4e132010-12-03 18:54:03 +0900587/* Kprobe jump optimizer */
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900588static void kprobe_optimizer(struct work_struct *work)
Masami Hiramatsu61f4e132010-12-03 18:54:03 +0900589{
Steven Rostedt72ef3792012-06-05 19:28:14 +0900590 mutex_lock(&kprobe_mutex);
Thomas Gleixner2d1e38f2017-05-24 10:15:36 +0200591 cpus_read_lock();
Andrea Righif1c6ece2019-08-12 20:43:02 +0200592 mutex_lock(&text_mutex);
Masami Hiramatsu61f4e132010-12-03 18:54:03 +0900593
594 /*
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900595 * Step 1: Unoptimize kprobes and collect cleaned (unused and disarmed)
596 * kprobes before waiting for quiesence period.
597 */
Masami Hiramatsu7b959fc2013-05-22 18:34:09 +0900598 do_unoptimize_kprobes();
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900599
600 /*
Masami Hiramatsua30b85d2017-10-20 08:43:39 +0900601 * Step 2: Wait for quiesence period to ensure all potentially
602 * preempted tasks to have normally scheduled. Because optprobe
603 * may modify multiple instructions, there is a chance that Nth
604 * instruction is preempted. In that case, such tasks can return
605 * to 2nd-Nth byte of jump instruction. This wait is for avoiding it.
606 * Note that on non-preemptive kernel, this is transparently converted
607 * to synchronoze_sched() to wait for all interrupts to have completed.
Masami Hiramatsu61f4e132010-12-03 18:54:03 +0900608 */
Masami Hiramatsua30b85d2017-10-20 08:43:39 +0900609 synchronize_rcu_tasks();
Masami Hiramatsu61f4e132010-12-03 18:54:03 +0900610
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900611 /* Step 3: Optimize kprobes after quiesence period */
Masami Hiramatsu61f4e132010-12-03 18:54:03 +0900612 do_optimize_kprobes();
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900613
614 /* Step 4: Free cleaned kprobes after quiesence period */
Masami Hiramatsu7b959fc2013-05-22 18:34:09 +0900615 do_free_cleaned_kprobes();
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900616
Andrea Righif1c6ece2019-08-12 20:43:02 +0200617 mutex_unlock(&text_mutex);
Thomas Gleixner2d1e38f2017-05-24 10:15:36 +0200618 cpus_read_unlock();
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900619
Masami Hiramatsucd7ebe22010-12-03 18:54:28 +0900620 /* Step 5: Kick optimizer again if needed */
Masami Hiramatsuf984ba42010-12-03 18:54:34 +0900621 if (!list_empty(&optimizing_list) || !list_empty(&unoptimizing_list))
Masami Hiramatsucd7ebe22010-12-03 18:54:28 +0900622 kick_kprobe_optimizer();
Masami Hiramatsu1a0aa992020-05-12 17:02:56 +0900623
624 mutex_unlock(&kprobe_mutex);
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900625}
626
627/* Wait for completing optimization and unoptimization */
Thomas Gleixner30e7d8942017-05-17 10:19:49 +0200628void wait_for_kprobe_optimizer(void)
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900629{
Tejun Heoad72b3b2012-12-21 17:57:00 -0800630 mutex_lock(&kprobe_mutex);
631
632 while (!list_empty(&optimizing_list) || !list_empty(&unoptimizing_list)) {
633 mutex_unlock(&kprobe_mutex);
634
635 /* this will also make optimizing_work execute immmediately */
636 flush_delayed_work(&optimizing_work);
637 /* @optimizing_work might not have been queued yet, relax */
638 cpu_relax();
639
640 mutex_lock(&kprobe_mutex);
641 }
642
643 mutex_unlock(&kprobe_mutex);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500644}
645
Masami Hiramatsue4add242020-01-07 23:42:24 +0900646static bool optprobe_queued_unopt(struct optimized_kprobe *op)
647{
648 struct optimized_kprobe *_op;
649
650 list_for_each_entry(_op, &unoptimizing_list, list) {
651 if (op == _op)
652 return true;
653 }
654
655 return false;
656}
657
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500658/* Optimize kprobe if p is ready to be optimized */
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900659static void optimize_kprobe(struct kprobe *p)
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500660{
661 struct optimized_kprobe *op;
662
663 /* Check if the kprobe is disabled or not ready for optimization. */
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500664 if (!kprobe_optready(p) || !kprobes_allow_optimization ||
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500665 (kprobe_disabled(p) || kprobes_all_disarmed))
666 return;
667
Masami Hiramatsu059053a2018-06-20 01:10:27 +0900668 /* kprobes with post_handler can not be optimized */
669 if (p->post_handler)
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500670 return;
671
672 op = container_of(p, struct optimized_kprobe, kp);
673
674 /* Check there is no other kprobes at the optimized instructions */
675 if (arch_check_optimized_kprobe(op) < 0)
676 return;
677
678 /* Check if it is already optimized. */
Masami Hiramatsue4add242020-01-07 23:42:24 +0900679 if (op->kp.flags & KPROBE_FLAG_OPTIMIZED) {
680 if (optprobe_queued_unopt(op)) {
681 /* This is under unoptimizing. Just dequeue the probe */
682 list_del_init(&op->list);
683 }
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500684 return;
Masami Hiramatsue4add242020-01-07 23:42:24 +0900685 }
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500686 op->kp.flags |= KPROBE_FLAG_OPTIMIZED;
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900687
Masami Hiramatsue4add242020-01-07 23:42:24 +0900688 /* On unoptimizing/optimizing_list, op must have OPTIMIZED flag */
689 if (WARN_ON_ONCE(!list_empty(&op->list)))
690 return;
691
692 list_add(&op->list, &optimizing_list);
693 kick_kprobe_optimizer();
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900694}
695
696/* Short cut to direct unoptimizing */
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900697static void force_unoptimize_kprobe(struct optimized_kprobe *op)
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900698{
Thomas Gleixner2d1e38f2017-05-24 10:15:36 +0200699 lockdep_assert_cpus_held();
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900700 arch_unoptimize_kprobe(op);
Masami Hiramatsuf66c0442019-11-27 14:57:04 +0900701 op->kp.flags &= ~KPROBE_FLAG_OPTIMIZED;
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500702}
703
704/* Unoptimize a kprobe if p is optimized */
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900705static void unoptimize_kprobe(struct kprobe *p, bool force)
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500706{
707 struct optimized_kprobe *op;
708
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900709 if (!kprobe_aggrprobe(p) || kprobe_disarmed(p))
710 return; /* This is not an optprobe nor optimized */
711
712 op = container_of(p, struct optimized_kprobe, kp);
Masami Hiramatsue4add242020-01-07 23:42:24 +0900713 if (!kprobe_optimized(p))
714 return;
715
716 if (!list_empty(&op->list)) {
717 if (optprobe_queued_unopt(op)) {
718 /* Queued in unoptimizing queue */
719 if (force) {
720 /*
721 * Forcibly unoptimize the kprobe here, and queue it
722 * in the freeing list for release afterwards.
723 */
724 force_unoptimize_kprobe(op);
725 list_move(&op->list, &freeing_list);
726 }
727 } else {
728 /* Dequeue from the optimizing queue */
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500729 list_del_init(&op->list);
Masami Hiramatsue4add242020-01-07 23:42:24 +0900730 op->kp.flags &= ~KPROBE_FLAG_OPTIMIZED;
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900731 }
732 return;
733 }
734
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900735 /* Optimized kprobe case */
Masami Hiramatsue4add242020-01-07 23:42:24 +0900736 if (force) {
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900737 /* Forcibly update the code: this is a special case */
738 force_unoptimize_kprobe(op);
Masami Hiramatsue4add242020-01-07 23:42:24 +0900739 } else {
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900740 list_add(&op->list, &unoptimizing_list);
741 kick_kprobe_optimizer();
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500742 }
743}
744
Masami Hiramatsu0490cd12010-12-03 18:54:16 +0900745/* Cancel unoptimizing for reusing */
Masami Hiramatsu819319f2018-09-11 19:20:40 +0900746static int reuse_unused_kprobe(struct kprobe *ap)
Masami Hiramatsu0490cd12010-12-03 18:54:16 +0900747{
748 struct optimized_kprobe *op;
749
Masami Hiramatsu0490cd12010-12-03 18:54:16 +0900750 /*
751 * Unused kprobe MUST be on the way of delayed unoptimizing (means
752 * there is still a relative jump) and disabled.
753 */
754 op = container_of(ap, struct optimized_kprobe, kp);
Masami Hiramatsu44585152018-04-28 21:36:33 +0900755 WARN_ON_ONCE(list_empty(&op->list));
Masami Hiramatsu0490cd12010-12-03 18:54:16 +0900756 /* Enable the probe again */
757 ap->flags &= ~KPROBE_FLAG_DISABLED;
758 /* Optimize it again (remove from op->list) */
Masami Hiramatsu5f843ed2019-04-15 15:01:25 +0900759 if (!kprobe_optready(ap))
760 return -EINVAL;
Masami Hiramatsu819319f2018-09-11 19:20:40 +0900761
Masami Hiramatsu0490cd12010-12-03 18:54:16 +0900762 optimize_kprobe(ap);
Masami Hiramatsu819319f2018-09-11 19:20:40 +0900763 return 0;
Masami Hiramatsu0490cd12010-12-03 18:54:16 +0900764}
765
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500766/* Remove optimized instructions */
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900767static void kill_optimized_kprobe(struct kprobe *p)
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500768{
769 struct optimized_kprobe *op;
770
771 op = container_of(p, struct optimized_kprobe, kp);
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900772 if (!list_empty(&op->list))
773 /* Dequeue from the (un)optimization queue */
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500774 list_del_init(&op->list);
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900775 op->kp.flags &= ~KPROBE_FLAG_OPTIMIZED;
Masami Hiramatsu7b959fc2013-05-22 18:34:09 +0900776
777 if (kprobe_unused(p)) {
778 /* Enqueue if it is unused */
779 list_add(&op->list, &freeing_list);
780 /*
781 * Remove unused probes from the hash list. After waiting
782 * for synchronization, this probe is reclaimed.
783 * (reclaiming is done by do_free_cleaned_kprobes().)
784 */
785 hlist_del_rcu(&op->kp.hlist);
786 }
787
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900788 /* Don't touch the code, because it is already freed. */
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500789 arch_remove_optimized_kprobe(op);
790}
791
Masami Hiramatsua4602462017-04-19 18:22:25 +0530792static inline
793void __prepare_optimized_kprobe(struct optimized_kprobe *op, struct kprobe *p)
794{
795 if (!kprobe_ftrace(p))
796 arch_prepare_optimized_kprobe(op, p);
797}
798
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500799/* Try to prepare optimized instructions */
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900800static void prepare_optimized_kprobe(struct kprobe *p)
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500801{
802 struct optimized_kprobe *op;
803
804 op = container_of(p, struct optimized_kprobe, kp);
Masami Hiramatsua4602462017-04-19 18:22:25 +0530805 __prepare_optimized_kprobe(op, p);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500806}
807
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500808/* Allocate new optimized_kprobe and try to prepare optimized instructions */
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900809static struct kprobe *alloc_aggr_kprobe(struct kprobe *p)
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500810{
811 struct optimized_kprobe *op;
812
813 op = kzalloc(sizeof(struct optimized_kprobe), GFP_KERNEL);
814 if (!op)
815 return NULL;
816
817 INIT_LIST_HEAD(&op->list);
818 op->kp.addr = p->addr;
Masami Hiramatsua4602462017-04-19 18:22:25 +0530819 __prepare_optimized_kprobe(op, p);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500820
821 return &op->kp;
822}
823
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900824static void init_aggr_kprobe(struct kprobe *ap, struct kprobe *p);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500825
826/*
827 * Prepare an optimized_kprobe and optimize it
828 * NOTE: p must be a normal registered kprobe
829 */
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900830static void try_to_optimize_kprobe(struct kprobe *p)
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500831{
832 struct kprobe *ap;
833 struct optimized_kprobe *op;
834
Masami Hiramatsuae6aa162012-06-05 19:28:32 +0900835 /* Impossible to optimize ftrace-based kprobe */
836 if (kprobe_ftrace(p))
837 return;
838
Masami Hiramatsu25764282012-06-05 19:28:26 +0900839 /* For preparing optimization, jump_label_text_reserved() is called */
Thomas Gleixner2d1e38f2017-05-24 10:15:36 +0200840 cpus_read_lock();
Masami Hiramatsu25764282012-06-05 19:28:26 +0900841 jump_label_lock();
842 mutex_lock(&text_mutex);
843
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500844 ap = alloc_aggr_kprobe(p);
845 if (!ap)
Masami Hiramatsu25764282012-06-05 19:28:26 +0900846 goto out;
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500847
848 op = container_of(ap, struct optimized_kprobe, kp);
849 if (!arch_prepared_optinsn(&op->optinsn)) {
850 /* If failed to setup optimizing, fallback to kprobe */
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900851 arch_remove_optimized_kprobe(op);
852 kfree(op);
Masami Hiramatsu25764282012-06-05 19:28:26 +0900853 goto out;
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500854 }
855
856 init_aggr_kprobe(ap, p);
Masami Hiramatsu25764282012-06-05 19:28:26 +0900857 optimize_kprobe(ap); /* This just kicks optimizer thread */
858
859out:
860 mutex_unlock(&text_mutex);
861 jump_label_unlock();
Thomas Gleixner2d1e38f2017-05-24 10:15:36 +0200862 cpus_read_unlock();
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500863}
864
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900865static void optimize_all_kprobes(void)
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500866{
867 struct hlist_head *head;
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500868 struct kprobe *p;
869 unsigned int i;
870
Masami Hiramatsu5c515432013-04-18 18:33:18 +0900871 mutex_lock(&kprobe_mutex);
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500872 /* If optimization is already allowed, just return */
873 if (kprobes_allow_optimization)
Masami Hiramatsu5c515432013-04-18 18:33:18 +0900874 goto out;
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500875
Thomas Gleixner2d1e38f2017-05-24 10:15:36 +0200876 cpus_read_lock();
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500877 kprobes_allow_optimization = true;
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500878 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
879 head = &kprobe_table[i];
Masami Hiramatsu7e6a71d2020-05-12 17:02:44 +0900880 hlist_for_each_entry(p, head, hlist)
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500881 if (!kprobe_disabled(p))
882 optimize_kprobe(p);
883 }
Thomas Gleixner2d1e38f2017-05-24 10:15:36 +0200884 cpus_read_unlock();
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500885 printk(KERN_INFO "Kprobes globally optimized\n");
Masami Hiramatsu5c515432013-04-18 18:33:18 +0900886out:
887 mutex_unlock(&kprobe_mutex);
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500888}
889
Masami Hiramatsuc85c9a22021-02-18 23:29:23 +0900890#ifdef CONFIG_SYSCTL
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900891static void unoptimize_all_kprobes(void)
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500892{
893 struct hlist_head *head;
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500894 struct kprobe *p;
895 unsigned int i;
896
Masami Hiramatsu5c515432013-04-18 18:33:18 +0900897 mutex_lock(&kprobe_mutex);
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500898 /* If optimization is already prohibited, just return */
Masami Hiramatsu5c515432013-04-18 18:33:18 +0900899 if (!kprobes_allow_optimization) {
900 mutex_unlock(&kprobe_mutex);
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500901 return;
Masami Hiramatsu5c515432013-04-18 18:33:18 +0900902 }
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500903
Thomas Gleixner2d1e38f2017-05-24 10:15:36 +0200904 cpus_read_lock();
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500905 kprobes_allow_optimization = false;
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500906 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
907 head = &kprobe_table[i];
Masami Hiramatsu7e6a71d2020-05-12 17:02:44 +0900908 hlist_for_each_entry(p, head, hlist) {
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500909 if (!kprobe_disabled(p))
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900910 unoptimize_kprobe(p, false);
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500911 }
912 }
Thomas Gleixner2d1e38f2017-05-24 10:15:36 +0200913 cpus_read_unlock();
Masami Hiramatsu5c515432013-04-18 18:33:18 +0900914 mutex_unlock(&kprobe_mutex);
915
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900916 /* Wait for unoptimizing completion */
917 wait_for_kprobe_optimizer();
918 printk(KERN_INFO "Kprobes globally unoptimized\n");
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500919}
920
Masami Hiramatsu5c515432013-04-18 18:33:18 +0900921static DEFINE_MUTEX(kprobe_sysctl_mutex);
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500922int sysctl_kprobes_optimization;
923int proc_kprobes_optimization_handler(struct ctl_table *table, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +0200924 void *buffer, size_t *length,
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500925 loff_t *ppos)
926{
927 int ret;
928
Masami Hiramatsu5c515432013-04-18 18:33:18 +0900929 mutex_lock(&kprobe_sysctl_mutex);
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500930 sysctl_kprobes_optimization = kprobes_allow_optimization ? 1 : 0;
931 ret = proc_dointvec_minmax(table, write, buffer, length, ppos);
932
933 if (sysctl_kprobes_optimization)
934 optimize_all_kprobes();
935 else
936 unoptimize_all_kprobes();
Masami Hiramatsu5c515432013-04-18 18:33:18 +0900937 mutex_unlock(&kprobe_sysctl_mutex);
Masami Hiramatsub2be84d2010-02-25 08:34:15 -0500938
939 return ret;
940}
941#endif /* CONFIG_SYSCTL */
942
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900943/* Put a breakpoint for a probe. Must be called with text_mutex locked */
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900944static void __arm_kprobe(struct kprobe *p)
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500945{
Masami Hiramatsu6d8e40a2010-12-03 18:53:50 +0900946 struct kprobe *_p;
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500947
948 /* Check collision with other optimized kprobes */
Masami Hiramatsu6d8e40a2010-12-03 18:53:50 +0900949 _p = get_optimized_kprobe((unsigned long)p->addr);
950 if (unlikely(_p))
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900951 /* Fallback to unoptimized kprobe */
952 unoptimize_kprobe(_p, true);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500953
954 arch_arm_kprobe(p);
955 optimize_kprobe(p); /* Try to optimize (add kprobe to a list) */
956}
957
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900958/* Remove the breakpoint of a probe. Must be called with text_mutex locked */
Masami Hiramatsu55479f62014-04-17 17:17:54 +0900959static void __disarm_kprobe(struct kprobe *p, bool reopt)
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500960{
Masami Hiramatsu6d8e40a2010-12-03 18:53:50 +0900961 struct kprobe *_p;
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500962
Wang Nan69d54b92015-02-13 14:40:26 -0800963 /* Try to unoptimize */
964 unoptimize_kprobe(p, kprobes_all_disarmed);
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500965
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900966 if (!kprobe_queued(p)) {
967 arch_disarm_kprobe(p);
968 /* If another kprobe was blocked, optimize it. */
969 _p = get_optimized_kprobe((unsigned long)p->addr);
970 if (unlikely(_p) && reopt)
971 optimize_kprobe(_p);
972 }
973 /* TODO: reoptimize others after unoptimized this probe */
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500974}
975
976#else /* !CONFIG_OPTPROBES */
977
978#define optimize_kprobe(p) do {} while (0)
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900979#define unoptimize_kprobe(p, f) do {} while (0)
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500980#define kill_optimized_kprobe(p) do {} while (0)
981#define prepare_optimized_kprobe(p) do {} while (0)
982#define try_to_optimize_kprobe(p) do {} while (0)
983#define __arm_kprobe(p) arch_arm_kprobe(p)
Masami Hiramatsu6274de42010-12-03 18:54:09 +0900984#define __disarm_kprobe(p, o) arch_disarm_kprobe(p)
985#define kprobe_disarmed(p) kprobe_disabled(p)
986#define wait_for_kprobe_optimizer() do {} while (0)
Masami Hiramatsuafd66252010-02-25 08:34:07 -0500987
Masami Hiramatsu819319f2018-09-11 19:20:40 +0900988static int reuse_unused_kprobe(struct kprobe *ap)
Masami Hiramatsu0490cd12010-12-03 18:54:16 +0900989{
Masami Hiramatsu819319f2018-09-11 19:20:40 +0900990 /*
991 * If the optimized kprobe is NOT supported, the aggr kprobe is
992 * released at the same time that the last aggregated kprobe is
993 * unregistered.
994 * Thus there should be no chance to reuse unused kprobe.
995 */
Masami Hiramatsu0490cd12010-12-03 18:54:16 +0900996 printk(KERN_ERR "Error: There should be no unused kprobe here.\n");
Masami Hiramatsu819319f2018-09-11 19:20:40 +0900997 return -EINVAL;
Masami Hiramatsu0490cd12010-12-03 18:54:16 +0900998}
999
Masami Hiramatsu55479f62014-04-17 17:17:54 +09001000static void free_aggr_kprobe(struct kprobe *p)
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001001{
Masami Hiramatsu6274de42010-12-03 18:54:09 +09001002 arch_remove_kprobe(p);
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001003 kfree(p);
1004}
1005
Masami Hiramatsu55479f62014-04-17 17:17:54 +09001006static struct kprobe *alloc_aggr_kprobe(struct kprobe *p)
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001007{
1008 return kzalloc(sizeof(struct kprobe), GFP_KERNEL);
1009}
1010#endif /* CONFIG_OPTPROBES */
1011
Masami Hiramatsue7dbfe32012-09-28 17:15:20 +09001012#ifdef CONFIG_KPROBES_ON_FTRACE
Masami Hiramatsuae6aa162012-06-05 19:28:32 +09001013static struct ftrace_ops kprobe_ftrace_ops __read_mostly = {
Masami Hiramatsue5253892012-06-05 19:28:38 +09001014 .func = kprobe_ftrace_handler,
Masami Hiramatsu0bc11ed2019-07-25 15:24:37 +09001015 .flags = FTRACE_OPS_FL_SAVE_REGS,
1016};
1017
1018static struct ftrace_ops kprobe_ipmodify_ops __read_mostly = {
1019 .func = kprobe_ftrace_handler,
Masami Hiramatsu1d70be32014-11-21 05:25:23 -05001020 .flags = FTRACE_OPS_FL_SAVE_REGS | FTRACE_OPS_FL_IPMODIFY,
Masami Hiramatsuae6aa162012-06-05 19:28:32 +09001021};
Masami Hiramatsu0bc11ed2019-07-25 15:24:37 +09001022
1023static int kprobe_ipmodify_enabled;
Masami Hiramatsuae6aa162012-06-05 19:28:32 +09001024static int kprobe_ftrace_enabled;
1025
1026/* Must ensure p->addr is really on ftrace */
Masami Hiramatsu55479f62014-04-17 17:17:54 +09001027static int prepare_kprobe(struct kprobe *p)
Masami Hiramatsuae6aa162012-06-05 19:28:32 +09001028{
1029 if (!kprobe_ftrace(p))
1030 return arch_prepare_kprobe(p);
1031
1032 return arch_prepare_kprobe_ftrace(p);
1033}
1034
1035/* Caller must lock kprobe_mutex */
Masami Hiramatsu0bc11ed2019-07-25 15:24:37 +09001036static int __arm_kprobe_ftrace(struct kprobe *p, struct ftrace_ops *ops,
1037 int *cnt)
Masami Hiramatsuae6aa162012-06-05 19:28:32 +09001038{
Jessica Yu12310e342018-01-10 00:51:23 +01001039 int ret = 0;
Masami Hiramatsuae6aa162012-06-05 19:28:32 +09001040
Masami Hiramatsu0bc11ed2019-07-25 15:24:37 +09001041 ret = ftrace_set_filter_ip(ops, (unsigned long)p->addr, 0, 0);
Jessica Yu12310e342018-01-10 00:51:23 +01001042 if (ret) {
Masami Hiramatsu44585152018-04-28 21:36:33 +09001043 pr_debug("Failed to arm kprobe-ftrace at %pS (%d)\n",
1044 p->addr, ret);
Jessica Yu12310e342018-01-10 00:51:23 +01001045 return ret;
Masami Hiramatsuae6aa162012-06-05 19:28:32 +09001046 }
Jessica Yu12310e342018-01-10 00:51:23 +01001047
Masami Hiramatsu0bc11ed2019-07-25 15:24:37 +09001048 if (*cnt == 0) {
1049 ret = register_ftrace_function(ops);
Jessica Yu12310e342018-01-10 00:51:23 +01001050 if (ret) {
1051 pr_debug("Failed to init kprobe-ftrace (%d)\n", ret);
1052 goto err_ftrace;
1053 }
1054 }
1055
Masami Hiramatsu0bc11ed2019-07-25 15:24:37 +09001056 (*cnt)++;
Jessica Yu12310e342018-01-10 00:51:23 +01001057 return ret;
1058
1059err_ftrace:
1060 /*
Masami Hiramatsu0bc11ed2019-07-25 15:24:37 +09001061 * At this point, sinec ops is not registered, we should be sefe from
1062 * registering empty filter.
Jessica Yu12310e342018-01-10 00:51:23 +01001063 */
Masami Hiramatsu0bc11ed2019-07-25 15:24:37 +09001064 ftrace_set_filter_ip(ops, (unsigned long)p->addr, 1, 0);
Jessica Yu12310e342018-01-10 00:51:23 +01001065 return ret;
Masami Hiramatsuae6aa162012-06-05 19:28:32 +09001066}
1067
Masami Hiramatsu0bc11ed2019-07-25 15:24:37 +09001068static int arm_kprobe_ftrace(struct kprobe *p)
1069{
1070 bool ipmodify = (p->post_handler != NULL);
1071
1072 return __arm_kprobe_ftrace(p,
1073 ipmodify ? &kprobe_ipmodify_ops : &kprobe_ftrace_ops,
1074 ipmodify ? &kprobe_ipmodify_enabled : &kprobe_ftrace_enabled);
1075}
1076
Masami Hiramatsuae6aa162012-06-05 19:28:32 +09001077/* Caller must lock kprobe_mutex */
Masami Hiramatsu0bc11ed2019-07-25 15:24:37 +09001078static int __disarm_kprobe_ftrace(struct kprobe *p, struct ftrace_ops *ops,
1079 int *cnt)
Masami Hiramatsuae6aa162012-06-05 19:28:32 +09001080{
Jessica Yu297f9232018-01-10 00:51:24 +01001081 int ret = 0;
1082
Masami Hiramatsu0bc11ed2019-07-25 15:24:37 +09001083 if (*cnt == 1) {
1084 ret = unregister_ftrace_function(ops);
Jessica Yu297f9232018-01-10 00:51:24 +01001085 if (WARN(ret < 0, "Failed to unregister kprobe-ftrace (%d)\n", ret))
1086 return ret;
1087 }
Masami Hiramatsuae6aa162012-06-05 19:28:32 +09001088
Masami Hiramatsu0bc11ed2019-07-25 15:24:37 +09001089 (*cnt)--;
Jessica Yu297f9232018-01-10 00:51:24 +01001090
Masami Hiramatsu0bc11ed2019-07-25 15:24:37 +09001091 ret = ftrace_set_filter_ip(ops, (unsigned long)p->addr, 1, 0);
Masami Hiramatsu44585152018-04-28 21:36:33 +09001092 WARN_ONCE(ret < 0, "Failed to disarm kprobe-ftrace at %pS (%d)\n",
1093 p->addr, ret);
Jessica Yu297f9232018-01-10 00:51:24 +01001094 return ret;
Masami Hiramatsuae6aa162012-06-05 19:28:32 +09001095}
Masami Hiramatsu0bc11ed2019-07-25 15:24:37 +09001096
1097static int disarm_kprobe_ftrace(struct kprobe *p)
1098{
1099 bool ipmodify = (p->post_handler != NULL);
1100
1101 return __disarm_kprobe_ftrace(p,
1102 ipmodify ? &kprobe_ipmodify_ops : &kprobe_ftrace_ops,
1103 ipmodify ? &kprobe_ipmodify_enabled : &kprobe_ftrace_enabled);
1104}
Masami Hiramatsue7dbfe32012-09-28 17:15:20 +09001105#else /* !CONFIG_KPROBES_ON_FTRACE */
Muchun Song10de7952020-08-06 01:20:46 +08001106static inline int prepare_kprobe(struct kprobe *p)
1107{
1108 return arch_prepare_kprobe(p);
1109}
1110
1111static inline int arm_kprobe_ftrace(struct kprobe *p)
1112{
1113 return -ENODEV;
1114}
1115
1116static inline int disarm_kprobe_ftrace(struct kprobe *p)
1117{
1118 return -ENODEV;
1119}
Masami Hiramatsuae6aa162012-06-05 19:28:32 +09001120#endif
1121
Masami Hiramatsu201517a2009-05-07 16:31:26 -04001122/* Arm a kprobe with text_mutex */
Jessica Yu12310e342018-01-10 00:51:23 +01001123static int arm_kprobe(struct kprobe *kp)
Masami Hiramatsu201517a2009-05-07 16:31:26 -04001124{
Jessica Yu12310e342018-01-10 00:51:23 +01001125 if (unlikely(kprobe_ftrace(kp)))
1126 return arm_kprobe_ftrace(kp);
1127
Thomas Gleixner2d1e38f2017-05-24 10:15:36 +02001128 cpus_read_lock();
Masami Hiramatsu201517a2009-05-07 16:31:26 -04001129 mutex_lock(&text_mutex);
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001130 __arm_kprobe(kp);
Masami Hiramatsu201517a2009-05-07 16:31:26 -04001131 mutex_unlock(&text_mutex);
Thomas Gleixner2d1e38f2017-05-24 10:15:36 +02001132 cpus_read_unlock();
Jessica Yu12310e342018-01-10 00:51:23 +01001133
1134 return 0;
Masami Hiramatsu201517a2009-05-07 16:31:26 -04001135}
1136
1137/* Disarm a kprobe with text_mutex */
Jessica Yu297f9232018-01-10 00:51:24 +01001138static int disarm_kprobe(struct kprobe *kp, bool reopt)
Masami Hiramatsu201517a2009-05-07 16:31:26 -04001139{
Jessica Yu297f9232018-01-10 00:51:24 +01001140 if (unlikely(kprobe_ftrace(kp)))
1141 return disarm_kprobe_ftrace(kp);
Thomas Gleixner2d1e38f2017-05-24 10:15:36 +02001142
1143 cpus_read_lock();
Masami Hiramatsu201517a2009-05-07 16:31:26 -04001144 mutex_lock(&text_mutex);
Masami Hiramatsuae6aa162012-06-05 19:28:32 +09001145 __disarm_kprobe(kp, reopt);
Masami Hiramatsu201517a2009-05-07 16:31:26 -04001146 mutex_unlock(&text_mutex);
Thomas Gleixner2d1e38f2017-05-24 10:15:36 +02001147 cpus_read_unlock();
Jessica Yu297f9232018-01-10 00:51:24 +01001148
1149 return 0;
Masami Hiramatsu201517a2009-05-07 16:31:26 -04001150}
1151
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001152/*
1153 * Aggregate handlers for multiple kprobes support - these handlers
1154 * take care of invoking the individual kprobe handlers on p->list
1155 */
Masami Hiramatsu820aede2014-04-17 17:18:21 +09001156static int aggr_pre_handler(struct kprobe *p, struct pt_regs *regs)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001157{
1158 struct kprobe *kp;
1159
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -08001160 list_for_each_entry_rcu(kp, &p->list, list) {
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001161 if (kp->pre_handler && likely(!kprobe_disabled(kp))) {
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -08001162 set_kprobe_instance(kp);
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -07001163 if (kp->pre_handler(kp, regs))
1164 return 1;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001165 }
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -08001166 reset_kprobe_instance();
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001167 }
1168 return 0;
1169}
Masami Hiramatsu820aede2014-04-17 17:18:21 +09001170NOKPROBE_SYMBOL(aggr_pre_handler);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001171
Masami Hiramatsu820aede2014-04-17 17:18:21 +09001172static void aggr_post_handler(struct kprobe *p, struct pt_regs *regs,
1173 unsigned long flags)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001174{
1175 struct kprobe *kp;
1176
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -08001177 list_for_each_entry_rcu(kp, &p->list, list) {
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001178 if (kp->post_handler && likely(!kprobe_disabled(kp))) {
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -08001179 set_kprobe_instance(kp);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001180 kp->post_handler(kp, regs, flags);
Ananth N Mavinakayanahallie6584522005-11-07 01:00:07 -08001181 reset_kprobe_instance();
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001182 }
1183 }
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001184}
Masami Hiramatsu820aede2014-04-17 17:18:21 +09001185NOKPROBE_SYMBOL(aggr_post_handler);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001186
Keshavamurthy Anil Sbf8d5c52005-12-12 00:37:34 -08001187/* Walks the list and increments nmissed count for multiprobe case */
Masami Hiramatsu820aede2014-04-17 17:18:21 +09001188void kprobes_inc_nmissed_count(struct kprobe *p)
Keshavamurthy Anil Sbf8d5c52005-12-12 00:37:34 -08001189{
1190 struct kprobe *kp;
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001191 if (!kprobe_aggrprobe(p)) {
Keshavamurthy Anil Sbf8d5c52005-12-12 00:37:34 -08001192 p->nmissed++;
1193 } else {
1194 list_for_each_entry_rcu(kp, &p->list, list)
1195 kp->nmissed++;
1196 }
1197 return;
1198}
Masami Hiramatsu820aede2014-04-17 17:18:21 +09001199NOKPROBE_SYMBOL(kprobes_inc_nmissed_count);
Keshavamurthy Anil Sbf8d5c52005-12-12 00:37:34 -08001200
Peter Zijlstrad741bf42020-08-29 22:03:24 +09001201static void free_rp_inst_rcu(struct rcu_head *head)
1202{
1203 struct kretprobe_instance *ri = container_of(head, struct kretprobe_instance, rcu);
1204
1205 if (refcount_dec_and_test(&ri->rph->ref))
1206 kfree(ri->rph);
1207 kfree(ri);
1208}
1209NOKPROBE_SYMBOL(free_rp_inst_rcu);
1210
Masami Hiramatsub3388172020-08-29 22:02:47 +09001211static void recycle_rp_inst(struct kretprobe_instance *ri)
Hien Nguyenb94cce92005-06-23 00:09:19 -07001212{
Peter Zijlstrad741bf42020-08-29 22:03:24 +09001213 struct kretprobe *rp = get_kretprobe(ri);
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001214
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001215 if (likely(rp)) {
Peter Zijlstra6e426e02020-08-29 22:03:56 +09001216 freelist_add(&ri->freelist, &rp->freelist);
Hien Nguyenb94cce92005-06-23 00:09:19 -07001217 } else
Peter Zijlstrad741bf42020-08-29 22:03:24 +09001218 call_rcu(&ri->rcu, free_rp_inst_rcu);
Hien Nguyenb94cce92005-06-23 00:09:19 -07001219}
Masami Hiramatsu820aede2014-04-17 17:18:21 +09001220NOKPROBE_SYMBOL(recycle_rp_inst);
Hien Nguyenb94cce92005-06-23 00:09:19 -07001221
Masami Hiramatsu319f0ce2020-08-29 22:03:02 +09001222static struct kprobe kprobe_busy = {
Jiri Olsa9b38cc72020-05-12 17:03:18 +09001223 .addr = (void *) get_kprobe,
1224};
1225
1226void kprobe_busy_begin(void)
1227{
1228 struct kprobe_ctlblk *kcb;
1229
1230 preempt_disable();
1231 __this_cpu_write(current_kprobe, &kprobe_busy);
1232 kcb = get_kprobe_ctlblk();
1233 kcb->kprobe_status = KPROBE_HIT_ACTIVE;
1234}
1235
1236void kprobe_busy_end(void)
1237{
1238 __this_cpu_write(current_kprobe, NULL);
1239 preempt_enable();
1240}
1241
Hien Nguyenb94cce92005-06-23 00:09:19 -07001242/*
bibo maoc6fd91f2006-03-26 01:38:20 -08001243 * This function is called from finish_task_switch when task tk becomes dead,
1244 * so that we can recycle any function-return probe instances associated
1245 * with this task. These left over instances represent probed functions
1246 * that have been called but will never return.
Hien Nguyenb94cce92005-06-23 00:09:19 -07001247 */
Masami Hiramatsu820aede2014-04-17 17:18:21 +09001248void kprobe_flush_task(struct task_struct *tk)
Hien Nguyenb94cce92005-06-23 00:09:19 -07001249{
bibo,mao62c27be2006-10-02 02:17:33 -07001250 struct kretprobe_instance *ri;
Peter Zijlstrad741bf42020-08-29 22:03:24 +09001251 struct llist_node *node;
Rusty Lynch802eae72005-06-27 15:17:08 -07001252
Peter Zijlstrad741bf42020-08-29 22:03:24 +09001253 /* Early boot, not yet initialized. */
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001254 if (unlikely(!kprobes_initialized))
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001255 return;
1256
Jiri Olsa9b38cc72020-05-12 17:03:18 +09001257 kprobe_busy_begin();
1258
Peter Zijlstrad741bf42020-08-29 22:03:24 +09001259 node = __llist_del_all(&tk->kretprobe_instances);
1260 while (node) {
1261 ri = container_of(node, struct kretprobe_instance, llist);
1262 node = node->next;
1263
1264 recycle_rp_inst(ri);
bibo,mao62c27be2006-10-02 02:17:33 -07001265 }
Jiri Olsa9b38cc72020-05-12 17:03:18 +09001266
1267 kprobe_busy_end();
Hien Nguyenb94cce92005-06-23 00:09:19 -07001268}
Masami Hiramatsu820aede2014-04-17 17:18:21 +09001269NOKPROBE_SYMBOL(kprobe_flush_task);
Hien Nguyenb94cce92005-06-23 00:09:19 -07001270
Hien Nguyenb94cce92005-06-23 00:09:19 -07001271static inline void free_rp_inst(struct kretprobe *rp)
1272{
1273 struct kretprobe_instance *ri;
Peter Zijlstra6e426e02020-08-29 22:03:56 +09001274 struct freelist_node *node;
Peter Zijlstrad741bf42020-08-29 22:03:24 +09001275 int count = 0;
Christoph Hellwig4c4308c2007-05-08 00:34:14 -07001276
Peter Zijlstra6e426e02020-08-29 22:03:56 +09001277 node = rp->freelist.head;
1278 while (node) {
1279 ri = container_of(node, struct kretprobe_instance, freelist);
1280 node = node->next;
1281
Hien Nguyenb94cce92005-06-23 00:09:19 -07001282 kfree(ri);
Peter Zijlstrad741bf42020-08-29 22:03:24 +09001283 count++;
1284 }
1285
1286 if (refcount_sub_and_test(count, &rp->rph->ref)) {
1287 kfree(rp->rph);
1288 rp->rph = NULL;
Hien Nguyenb94cce92005-06-23 00:09:19 -07001289 }
1290}
1291
Masami Hiramatsu059053a2018-06-20 01:10:27 +09001292/* Add the new probe to ap->list */
Masami Hiramatsu55479f62014-04-17 17:17:54 +09001293static int add_new_kprobe(struct kprobe *ap, struct kprobe *p)
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -07001294{
Masami Hiramatsu059053a2018-06-20 01:10:27 +09001295 if (p->post_handler)
Masami Hiramatsu6274de42010-12-03 18:54:09 +09001296 unoptimize_kprobe(ap, true); /* Fall back to normal kprobe */
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001297
Masami Hiramatsu059053a2018-06-20 01:10:27 +09001298 list_add_rcu(&p->list, &ap->list);
Masami Hiramatsub918e5e2009-04-06 19:00:58 -07001299 if (p->post_handler && !ap->post_handler)
1300 ap->post_handler = aggr_post_handler;
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001301
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -07001302 return 0;
1303}
1304
1305/*
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001306 * Fill in the required fields of the "manager kprobe". Replace the
1307 * earlier kprobe in the hlist with the manager kprobe
1308 */
Masami Hiramatsu55479f62014-04-17 17:17:54 +09001309static void init_aggr_kprobe(struct kprobe *ap, struct kprobe *p)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001310{
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001311 /* Copy p's insn slot to ap */
Prasanna S Panchamukhi8b0914e2005-06-23 00:09:41 -07001312 copy_kprobe(p, ap);
bibo, maoa9ad9652006-07-30 03:03:26 -07001313 flush_insn_slot(ap);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001314 ap->addr = p->addr;
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001315 ap->flags = p->flags & ~KPROBE_FLAG_OPTIMIZED;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001316 ap->pre_handler = aggr_pre_handler;
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001317 /* We don't care the kprobe which has gone. */
1318 if (p->post_handler && !kprobe_gone(p))
mao, bibo36721652006-06-26 00:25:22 -07001319 ap->post_handler = aggr_post_handler;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001320
1321 INIT_LIST_HEAD(&ap->list);
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001322 INIT_HLIST_NODE(&ap->hlist);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001323
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001324 list_add_rcu(&p->list, &ap->list);
Keshavamurthy Anil Sadad0f32005-12-12 00:37:12 -08001325 hlist_replace_rcu(&p->hlist, &ap->hlist);
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001326}
1327
1328/*
1329 * This is the second or subsequent kprobe at the address - handle
1330 * the intricacies
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001331 */
Masami Hiramatsu55479f62014-04-17 17:17:54 +09001332static int register_aggr_kprobe(struct kprobe *orig_p, struct kprobe *p)
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001333{
1334 int ret = 0;
Masami Hiramatsu6d8e40a2010-12-03 18:53:50 +09001335 struct kprobe *ap = orig_p;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001336
Thomas Gleixner2d1e38f2017-05-24 10:15:36 +02001337 cpus_read_lock();
1338
Masami Hiramatsu25764282012-06-05 19:28:26 +09001339 /* For preparing optimization, jump_label_text_reserved() is called */
1340 jump_label_lock();
Masami Hiramatsu25764282012-06-05 19:28:26 +09001341 mutex_lock(&text_mutex);
1342
Masami Hiramatsu6d8e40a2010-12-03 18:53:50 +09001343 if (!kprobe_aggrprobe(orig_p)) {
1344 /* If orig_p is not an aggr_kprobe, create new aggr_kprobe. */
1345 ap = alloc_aggr_kprobe(orig_p);
Masami Hiramatsu25764282012-06-05 19:28:26 +09001346 if (!ap) {
1347 ret = -ENOMEM;
1348 goto out;
1349 }
Masami Hiramatsu6d8e40a2010-12-03 18:53:50 +09001350 init_aggr_kprobe(ap, orig_p);
Masami Hiramatsu819319f2018-09-11 19:20:40 +09001351 } else if (kprobe_unused(ap)) {
Masami Hiramatsu0490cd12010-12-03 18:54:16 +09001352 /* This probe is going to die. Rescue it */
Masami Hiramatsu819319f2018-09-11 19:20:40 +09001353 ret = reuse_unused_kprobe(ap);
1354 if (ret)
1355 goto out;
1356 }
Masami Hiramatsub918e5e2009-04-06 19:00:58 -07001357
1358 if (kprobe_gone(ap)) {
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001359 /*
1360 * Attempting to insert new probe at the same location that
1361 * had a probe in the module vaddr area which already
1362 * freed. So, the instruction slot has already been
1363 * released. We need a new slot for the new probe.
1364 */
Masami Hiramatsub918e5e2009-04-06 19:00:58 -07001365 ret = arch_prepare_kprobe(ap);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001366 if (ret)
Masami Hiramatsub918e5e2009-04-06 19:00:58 -07001367 /*
1368 * Even if fail to allocate new slot, don't need to
1369 * free aggr_probe. It will be used next time, or
1370 * freed by unregister_kprobe.
1371 */
Masami Hiramatsu25764282012-06-05 19:28:26 +09001372 goto out;
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001373
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001374 /* Prepare optimized instructions if possible. */
1375 prepare_optimized_kprobe(ap);
1376
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001377 /*
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001378 * Clear gone flag to prevent allocating new slot again, and
1379 * set disabled flag because it is not armed yet.
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001380 */
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001381 ap->flags = (ap->flags & ~KPROBE_FLAG_GONE)
1382 | KPROBE_FLAG_DISABLED;
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001383 }
Masami Hiramatsub918e5e2009-04-06 19:00:58 -07001384
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001385 /* Copy ap's insn slot to p */
Masami Hiramatsub918e5e2009-04-06 19:00:58 -07001386 copy_kprobe(ap, p);
Masami Hiramatsu25764282012-06-05 19:28:26 +09001387 ret = add_new_kprobe(ap, p);
1388
1389out:
1390 mutex_unlock(&text_mutex);
Masami Hiramatsu25764282012-06-05 19:28:26 +09001391 jump_label_unlock();
Thomas Gleixner2d1e38f2017-05-24 10:15:36 +02001392 cpus_read_unlock();
Masami Hiramatsu25764282012-06-05 19:28:26 +09001393
1394 if (ret == 0 && kprobe_disabled(ap) && !kprobe_disabled(p)) {
1395 ap->flags &= ~KPROBE_FLAG_DISABLED;
Jessica Yu12310e342018-01-10 00:51:23 +01001396 if (!kprobes_all_disarmed) {
Masami Hiramatsu25764282012-06-05 19:28:26 +09001397 /* Arm the breakpoint again. */
Jessica Yu12310e342018-01-10 00:51:23 +01001398 ret = arm_kprobe(ap);
1399 if (ret) {
1400 ap->flags |= KPROBE_FLAG_DISABLED;
1401 list_del_rcu(&p->list);
Paul E. McKenneyae8b7ce2018-11-06 19:04:39 -08001402 synchronize_rcu();
Jessica Yu12310e342018-01-10 00:51:23 +01001403 }
1404 }
Masami Hiramatsu25764282012-06-05 19:28:26 +09001405 }
1406 return ret;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001407}
1408
Masami Hiramatsube8f2742014-04-17 17:16:58 +09001409bool __weak arch_within_kprobe_blacklist(unsigned long addr)
1410{
1411 /* The __kprobes marked functions and entry code must not be probed */
1412 return addr >= (unsigned long)__kprobes_text_start &&
1413 addr < (unsigned long)__kprobes_text_end;
1414}
1415
Masami Hiramatsu6143c6f2019-02-13 01:13:12 +09001416static bool __within_kprobe_blacklist(unsigned long addr)
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -07001417{
Masami Hiramatsu376e2422014-04-17 17:17:05 +09001418 struct kprobe_blacklist_entry *ent;
Srinivasa Ds3d8d9962008-04-28 02:14:26 -07001419
Masami Hiramatsube8f2742014-04-17 17:16:58 +09001420 if (arch_within_kprobe_blacklist(addr))
Masami Hiramatsu376e2422014-04-17 17:17:05 +09001421 return true;
Srinivasa Ds3d8d9962008-04-28 02:14:26 -07001422 /*
1423 * If there exists a kprobe_blacklist, verify and
1424 * fail any probe registration in the prohibited area
1425 */
Masami Hiramatsu376e2422014-04-17 17:17:05 +09001426 list_for_each_entry(ent, &kprobe_blacklist, list) {
1427 if (addr >= ent->start_addr && addr < ent->end_addr)
1428 return true;
Srinivasa Ds3d8d9962008-04-28 02:14:26 -07001429 }
Masami Hiramatsu6143c6f2019-02-13 01:13:12 +09001430 return false;
1431}
Masami Hiramatsu376e2422014-04-17 17:17:05 +09001432
Masami Hiramatsu6143c6f2019-02-13 01:13:12 +09001433bool within_kprobe_blacklist(unsigned long addr)
1434{
1435 char symname[KSYM_NAME_LEN], *p;
1436
1437 if (__within_kprobe_blacklist(addr))
1438 return true;
1439
1440 /* Check if the address is on a suffixed-symbol */
1441 if (!lookup_symbol_name(addr, symname)) {
1442 p = strchr(symname, '.');
1443 if (!p)
1444 return false;
1445 *p = '\0';
1446 addr = (unsigned long)kprobe_lookup_name(symname, 0);
1447 if (addr)
1448 return __within_kprobe_blacklist(addr);
1449 }
Masami Hiramatsu376e2422014-04-17 17:17:05 +09001450 return false;
Prasanna S Panchamukhid0aaff92005-09-06 15:19:26 -07001451}
1452
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001453/*
1454 * If we have a symbol_name argument, look it up and add the offset field
1455 * to it. This way, we can specify a relative address to a symbol.
Masami Hiramatsubc81d482011-06-27 16:26:50 +09001456 * This returns encoded errors if it fails to look up symbol or invalid
1457 * combination of parameters.
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001458 */
Naveen N. Rao1d585e72017-03-08 13:56:06 +05301459static kprobe_opcode_t *_kprobe_addr(kprobe_opcode_t *addr,
1460 const char *symbol_name, unsigned int offset)
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001461{
Naveen N. Rao1d585e72017-03-08 13:56:06 +05301462 if ((symbol_name && addr) || (!symbol_name && !addr))
Masami Hiramatsubc81d482011-06-27 16:26:50 +09001463 goto invalid;
1464
Naveen N. Rao1d585e72017-03-08 13:56:06 +05301465 if (symbol_name) {
Linus Torvalds7246f602017-05-05 11:36:44 -07001466 addr = kprobe_lookup_name(symbol_name, offset);
Masami Hiramatsubc81d482011-06-27 16:26:50 +09001467 if (!addr)
1468 return ERR_PTR(-ENOENT);
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001469 }
1470
Naveen N. Rao1d585e72017-03-08 13:56:06 +05301471 addr = (kprobe_opcode_t *)(((char *)addr) + offset);
Masami Hiramatsubc81d482011-06-27 16:26:50 +09001472 if (addr)
1473 return addr;
1474
1475invalid:
1476 return ERR_PTR(-EINVAL);
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001477}
1478
Naveen N. Rao1d585e72017-03-08 13:56:06 +05301479static kprobe_opcode_t *kprobe_addr(struct kprobe *p)
1480{
1481 return _kprobe_addr(p->addr, p->symbol_name, p->offset);
1482}
1483
Ananth N Mavinakayanahalli1f0ab402009-09-15 10:43:07 +05301484/* Check passed kprobe is valid and return kprobe in kprobe_table. */
Masami Hiramatsu55479f62014-04-17 17:17:54 +09001485static struct kprobe *__get_valid_kprobe(struct kprobe *p)
Ananth N Mavinakayanahalli1f0ab402009-09-15 10:43:07 +05301486{
Masami Hiramatsu6d8e40a2010-12-03 18:53:50 +09001487 struct kprobe *ap, *list_p;
Ananth N Mavinakayanahalli1f0ab402009-09-15 10:43:07 +05301488
Masami Hiramatsu7e6a71d2020-05-12 17:02:44 +09001489 lockdep_assert_held(&kprobe_mutex);
1490
Masami Hiramatsu6d8e40a2010-12-03 18:53:50 +09001491 ap = get_kprobe(p->addr);
1492 if (unlikely(!ap))
Ananth N Mavinakayanahalli1f0ab402009-09-15 10:43:07 +05301493 return NULL;
1494
Masami Hiramatsu6d8e40a2010-12-03 18:53:50 +09001495 if (p != ap) {
Masami Hiramatsu7e6a71d2020-05-12 17:02:44 +09001496 list_for_each_entry(list_p, &ap->list, list)
Ananth N Mavinakayanahalli1f0ab402009-09-15 10:43:07 +05301497 if (list_p == p)
1498 /* kprobe p is a valid probe */
1499 goto valid;
1500 return NULL;
1501 }
1502valid:
Masami Hiramatsu6d8e40a2010-12-03 18:53:50 +09001503 return ap;
Ananth N Mavinakayanahalli1f0ab402009-09-15 10:43:07 +05301504}
1505
Masami Hiramatsu33b1d142021-02-03 23:59:27 +09001506/*
1507 * Warn and return error if the kprobe is being re-registered since
1508 * there must be a software bug.
1509 */
1510static inline int warn_kprobe_rereg(struct kprobe *p)
Ananth N Mavinakayanahalli1f0ab402009-09-15 10:43:07 +05301511{
1512 int ret = 0;
Ananth N Mavinakayanahalli1f0ab402009-09-15 10:43:07 +05301513
1514 mutex_lock(&kprobe_mutex);
Masami Hiramatsu33b1d142021-02-03 23:59:27 +09001515 if (WARN_ON_ONCE(__get_valid_kprobe(p)))
Ananth N Mavinakayanahalli1f0ab402009-09-15 10:43:07 +05301516 ret = -EINVAL;
1517 mutex_unlock(&kprobe_mutex);
Masami Hiramatsu6d8e40a2010-12-03 18:53:50 +09001518
Ananth N Mavinakayanahalli1f0ab402009-09-15 10:43:07 +05301519 return ret;
1520}
1521
Heiko Carstensf7f242f2014-10-15 12:17:34 +02001522int __weak arch_check_ftrace_location(struct kprobe *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523{
Masami Hiramatsuae6aa162012-06-05 19:28:32 +09001524 unsigned long ftrace_addr;
1525
Masami Hiramatsuae6aa162012-06-05 19:28:32 +09001526 ftrace_addr = ftrace_location((unsigned long)p->addr);
1527 if (ftrace_addr) {
Masami Hiramatsue7dbfe32012-09-28 17:15:20 +09001528#ifdef CONFIG_KPROBES_ON_FTRACE
Masami Hiramatsuae6aa162012-06-05 19:28:32 +09001529 /* Given address is not on the instruction boundary */
1530 if ((unsigned long)p->addr != ftrace_addr)
1531 return -EILSEQ;
Masami Hiramatsuae6aa162012-06-05 19:28:32 +09001532 p->flags |= KPROBE_FLAG_FTRACE;
Masami Hiramatsue7dbfe32012-09-28 17:15:20 +09001533#else /* !CONFIG_KPROBES_ON_FTRACE */
Masami Hiramatsuae6aa162012-06-05 19:28:32 +09001534 return -EINVAL;
1535#endif
1536 }
Heiko Carstensf7f242f2014-10-15 12:17:34 +02001537 return 0;
1538}
Masami Hiramatsuf7fa6ef02012-06-05 19:28:20 +09001539
Heiko Carstensf7f242f2014-10-15 12:17:34 +02001540static int check_kprobe_address_safe(struct kprobe *p,
1541 struct module **probed_mod)
1542{
1543 int ret;
1544
1545 ret = arch_check_ftrace_location(p);
1546 if (ret)
1547 return ret;
Masami Hiramatsuf7fa6ef02012-06-05 19:28:20 +09001548 jump_label_lock();
1549 preempt_disable();
1550
1551 /* Ensure it is not in reserved area nor out of text */
1552 if (!kernel_text_address((unsigned long) p->addr) ||
Masami Hiramatsu376e2422014-04-17 17:17:05 +09001553 within_kprobe_blacklist((unsigned long) p->addr) ||
Masami Hiramatsue336b402019-09-03 20:08:21 +09001554 jump_label_text_reserved(p->addr, p->addr) ||
Peter Zijlstrafa68bd02021-06-28 13:24:12 +02001555 static_call_text_reserved(p->addr, p->addr) ||
Masami Hiramatsue336b402019-09-03 20:08:21 +09001556 find_bug((unsigned long)p->addr)) {
Masami Hiramatsuf7fa6ef02012-06-05 19:28:20 +09001557 ret = -EINVAL;
1558 goto out;
1559 }
1560
1561 /* Check if are we probing a module */
1562 *probed_mod = __module_text_address((unsigned long) p->addr);
1563 if (*probed_mod) {
1564 /*
1565 * We must hold a refcount of the probed module while updating
1566 * its code to prohibit unexpected unloading.
1567 */
1568 if (unlikely(!try_module_get(*probed_mod))) {
1569 ret = -ENOENT;
1570 goto out;
1571 }
1572
1573 /*
1574 * If the module freed .init.text, we couldn't insert
1575 * kprobes in there.
1576 */
1577 if (within_module_init((unsigned long)p->addr, *probed_mod) &&
1578 (*probed_mod)->state != MODULE_STATE_COMING) {
1579 module_put(*probed_mod);
1580 *probed_mod = NULL;
1581 ret = -ENOENT;
1582 }
1583 }
1584out:
1585 preempt_enable();
1586 jump_label_unlock();
1587
1588 return ret;
1589}
1590
Masami Hiramatsu55479f62014-04-17 17:17:54 +09001591int register_kprobe(struct kprobe *p)
Masami Hiramatsuf7fa6ef02012-06-05 19:28:20 +09001592{
1593 int ret;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001594 struct kprobe *old_p;
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -08001595 struct module *probed_mod;
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001596 kprobe_opcode_t *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Masami Hiramatsuf7fa6ef02012-06-05 19:28:20 +09001598 /* Adjust probe address from symbol */
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001599 addr = kprobe_addr(p);
Masami Hiramatsubc81d482011-06-27 16:26:50 +09001600 if (IS_ERR(addr))
1601 return PTR_ERR(addr);
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001602 p->addr = addr;
Ananth N Mavinakayanahalli3a872d82006-10-02 02:17:30 -07001603
Masami Hiramatsu33b1d142021-02-03 23:59:27 +09001604 ret = warn_kprobe_rereg(p);
Ananth N Mavinakayanahalli1f0ab402009-09-15 10:43:07 +05301605 if (ret)
1606 return ret;
1607
Masami Hiramatsude5bd882009-04-06 19:01:02 -07001608 /* User can pass only KPROBE_FLAG_DISABLED to register_kprobe */
1609 p->flags &= KPROBE_FLAG_DISABLED;
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -08001610 p->nmissed = 0;
Masami Hiramatsu98616682008-04-28 02:14:28 -07001611 INIT_LIST_HEAD(&p->list);
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001612
Masami Hiramatsuf7fa6ef02012-06-05 19:28:20 +09001613 ret = check_kprobe_address_safe(p, &probed_mod);
1614 if (ret)
1615 return ret;
1616
1617 mutex_lock(&kprobe_mutex);
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001618
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001619 old_p = get_kprobe(p->addr);
1620 if (old_p) {
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001621 /* Since this may unoptimize old_p, locking text_mutex. */
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001622 ret = register_aggr_kprobe(old_p, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 goto out;
1624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Thomas Gleixner2d1e38f2017-05-24 10:15:36 +02001626 cpus_read_lock();
1627 /* Prevent text modification */
1628 mutex_lock(&text_mutex);
Masami Hiramatsuae6aa162012-06-05 19:28:32 +09001629 ret = prepare_kprobe(p);
Masami Hiramatsu25764282012-06-05 19:28:26 +09001630 mutex_unlock(&text_mutex);
Thomas Gleixner2d1e38f2017-05-24 10:15:36 +02001631 cpus_read_unlock();
Christoph Hellwig6f716ac2007-05-08 00:34:13 -07001632 if (ret)
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001633 goto out;
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001634
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001635 INIT_HLIST_NODE(&p->hlist);
Ananth N Mavinakayanahalli3516a462005-11-07 01:00:13 -08001636 hlist_add_head_rcu(&p->hlist,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 &kprobe_table[hash_ptr(p->addr, KPROBE_HASH_BITS)]);
1638
Jessica Yu12310e342018-01-10 00:51:23 +01001639 if (!kprobes_all_disarmed && !kprobe_disabled(p)) {
1640 ret = arm_kprobe(p);
1641 if (ret) {
1642 hlist_del_rcu(&p->hlist);
Paul E. McKenneyae8b7ce2018-11-06 19:04:39 -08001643 synchronize_rcu();
Jessica Yu12310e342018-01-10 00:51:23 +01001644 goto out;
1645 }
1646 }
Christoph Hellwig74a0b572007-10-16 01:24:07 -07001647
Masami Hiramatsuafd66252010-02-25 08:34:07 -05001648 /* Try to optimize kprobe */
1649 try_to_optimize_kprobe(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650out:
Ingo Molnar7a7d1cf2006-03-23 03:00:35 -08001651 mutex_unlock(&kprobe_mutex);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001652
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001653 if (probed_mod)
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -08001654 module_put(probed_mod);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 return ret;
1657}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001658EXPORT_SYMBOL_GPL(register_kprobe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Masami Hiramatsu6f0f1dd2010-12-03 18:53:57 +09001660/* Check if all probes on the aggrprobe are disabled */
Masami Hiramatsu55479f62014-04-17 17:17:54 +09001661static int aggr_kprobe_disabled(struct kprobe *ap)
Masami Hiramatsu6f0f1dd2010-12-03 18:53:57 +09001662{
1663 struct kprobe *kp;
1664
Masami Hiramatsu7e6a71d2020-05-12 17:02:44 +09001665 lockdep_assert_held(&kprobe_mutex);
1666
1667 list_for_each_entry(kp, &ap->list, list)
Masami Hiramatsu6f0f1dd2010-12-03 18:53:57 +09001668 if (!kprobe_disabled(kp))
1669 /*
1670 * There is an active probe on the list.
1671 * We can't disable this ap.
1672 */
1673 return 0;
1674
1675 return 1;
1676}
1677
1678/* Disable one kprobe: Make sure called under kprobe_mutex is locked */
Masami Hiramatsu55479f62014-04-17 17:17:54 +09001679static struct kprobe *__disable_kprobe(struct kprobe *p)
Masami Hiramatsu6f0f1dd2010-12-03 18:53:57 +09001680{
1681 struct kprobe *orig_p;
Jessica Yu297f9232018-01-10 00:51:24 +01001682 int ret;
Masami Hiramatsu6f0f1dd2010-12-03 18:53:57 +09001683
1684 /* Get an original kprobe for return */
1685 orig_p = __get_valid_kprobe(p);
1686 if (unlikely(orig_p == NULL))
Jessica Yu297f9232018-01-10 00:51:24 +01001687 return ERR_PTR(-EINVAL);
Masami Hiramatsu6f0f1dd2010-12-03 18:53:57 +09001688
1689 if (!kprobe_disabled(p)) {
1690 /* Disable probe if it is a child probe */
1691 if (p != orig_p)
1692 p->flags |= KPROBE_FLAG_DISABLED;
1693
1694 /* Try to disarm and disable this/parent probe */
1695 if (p == orig_p || aggr_kprobe_disabled(orig_p)) {
Wang Nan69d54b92015-02-13 14:40:26 -08001696 /*
1697 * If kprobes_all_disarmed is set, orig_p
1698 * should have already been disarmed, so
1699 * skip unneed disarming process.
1700 */
Jessica Yu297f9232018-01-10 00:51:24 +01001701 if (!kprobes_all_disarmed) {
1702 ret = disarm_kprobe(orig_p, true);
1703 if (ret) {
1704 p->flags &= ~KPROBE_FLAG_DISABLED;
1705 return ERR_PTR(ret);
1706 }
1707 }
Masami Hiramatsu6f0f1dd2010-12-03 18:53:57 +09001708 orig_p->flags |= KPROBE_FLAG_DISABLED;
1709 }
1710 }
1711
1712 return orig_p;
1713}
1714
Masami Hiramatsu98616682008-04-28 02:14:28 -07001715/*
1716 * Unregister a kprobe without a scheduler synchronization.
1717 */
Masami Hiramatsu55479f62014-04-17 17:17:54 +09001718static int __unregister_kprobe_top(struct kprobe *p)
Keshavamurthy Anil Sdf019b12006-01-11 12:17:41 -08001719{
Masami Hiramatsu6d8e40a2010-12-03 18:53:50 +09001720 struct kprobe *ap, *list_p;
Ananth N Mavinakayanahalli64f562c2005-05-05 16:15:42 -07001721
Masami Hiramatsu6f0f1dd2010-12-03 18:53:57 +09001722 /* Disable kprobe. This will disarm it if needed. */
1723 ap = __disable_kprobe(p);
Jessica Yu297f9232018-01-10 00:51:24 +01001724 if (IS_ERR(ap))
1725 return PTR_ERR(ap);
Masami Hiramatsu98616682008-04-28 02:14:28 -07001726
Masami Hiramatsu6f0f1dd2010-12-03 18:53:57 +09001727 if (ap == p)
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001728 /*
Masami Hiramatsu6f0f1dd2010-12-03 18:53:57 +09001729 * This probe is an independent(and non-optimized) kprobe
1730 * (not an aggrprobe). Remove from the hash list.
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07001731 */
Masami Hiramatsu6f0f1dd2010-12-03 18:53:57 +09001732 goto disarmed;
1733
1734 /* Following process expects this probe is an aggrprobe */
1735 WARN_ON(!kprobe_aggrprobe(ap));
1736
Masami Hiramatsu6274de42010-12-03 18:54:09 +09001737 if (list_is_singular(&ap->list) && kprobe_disarmed(ap))
1738 /*
1739 * !disarmed could be happen if the probe is under delayed
1740 * unoptimizing.
1741 */
Masami Hiramatsu6f0f1dd2010-12-03 18:53:57 +09001742 goto disarmed;
1743 else {
1744 /* If disabling probe has special handlers, update aggrprobe */
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001745 if (p->post_handler && !kprobe_gone(p)) {
Masami Hiramatsu7e6a71d2020-05-12 17:02:44 +09001746 list_for_each_entry(list_p, &ap->list, list) {
Masami Hiramatsu98616682008-04-28 02:14:28 -07001747 if ((list_p != p) && (list_p->post_handler))
1748 goto noclean;
1749 }
Masami Hiramatsu6d8e40a2010-12-03 18:53:50 +09001750 ap->post_handler = NULL;
Masami Hiramatsu98616682008-04-28 02:14:28 -07001751 }
1752noclean:
Masami Hiramatsu6f0f1dd2010-12-03 18:53:57 +09001753 /*
1754 * Remove from the aggrprobe: this path will do nothing in
1755 * __unregister_kprobe_bottom().
1756 */
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001757 list_del_rcu(&p->list);
Masami Hiramatsu6f0f1dd2010-12-03 18:53:57 +09001758 if (!kprobe_disabled(ap) && !kprobes_all_disarmed)
1759 /*
1760 * Try to optimize this probe again, because post
1761 * handler may have been changed.
1762 */
1763 optimize_kprobe(ap);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001764 }
Masami Hiramatsu98616682008-04-28 02:14:28 -07001765 return 0;
Masami Hiramatsu6f0f1dd2010-12-03 18:53:57 +09001766
1767disarmed:
1768 hlist_del_rcu(&ap->hlist);
1769 return 0;
Masami Hiramatsu98616682008-04-28 02:14:28 -07001770}
Mao, Bibob3e55c72005-12-12 00:37:00 -08001771
Masami Hiramatsu55479f62014-04-17 17:17:54 +09001772static void __unregister_kprobe_bottom(struct kprobe *p)
Masami Hiramatsu98616682008-04-28 02:14:28 -07001773{
Masami Hiramatsu6d8e40a2010-12-03 18:53:50 +09001774 struct kprobe *ap;
Mao, Bibob3e55c72005-12-12 00:37:00 -08001775
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001776 if (list_empty(&p->list))
Masami Hiramatsu6274de42010-12-03 18:54:09 +09001777 /* This is an independent kprobe */
Ananth N Mavinakayanahalli0498b632006-01-09 20:52:46 -08001778 arch_remove_kprobe(p);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001779 else if (list_is_singular(&p->list)) {
Masami Hiramatsu6274de42010-12-03 18:54:09 +09001780 /* This is the last child of an aggrprobe */
Masami Hiramatsu6d8e40a2010-12-03 18:53:50 +09001781 ap = list_entry(p->list.next, struct kprobe, list);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08001782 list_del(&p->list);
Masami Hiramatsu6d8e40a2010-12-03 18:53:50 +09001783 free_aggr_kprobe(ap);
Anil S Keshavamurthy49a2a1b2006-01-09 20:52:43 -08001784 }
Masami Hiramatsu6274de42010-12-03 18:54:09 +09001785 /* Otherwise, do nothing. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786}
1787
Masami Hiramatsu55479f62014-04-17 17:17:54 +09001788int register_kprobes(struct kprobe **kps, int num)
Masami Hiramatsu98616682008-04-28 02:14:28 -07001789{
1790 int i, ret = 0;
1791
1792 if (num <= 0)
1793 return -EINVAL;
1794 for (i = 0; i < num; i++) {
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08001795 ret = register_kprobe(kps[i]);
Masami Hiramatsu67dddaa2008-06-12 15:21:35 -07001796 if (ret < 0) {
1797 if (i > 0)
1798 unregister_kprobes(kps, i);
Masami Hiramatsu98616682008-04-28 02:14:28 -07001799 break;
1800 }
1801 }
1802 return ret;
1803}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001804EXPORT_SYMBOL_GPL(register_kprobes);
Masami Hiramatsu98616682008-04-28 02:14:28 -07001805
Masami Hiramatsu55479f62014-04-17 17:17:54 +09001806void unregister_kprobe(struct kprobe *p)
Masami Hiramatsu98616682008-04-28 02:14:28 -07001807{
1808 unregister_kprobes(&p, 1);
1809}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001810EXPORT_SYMBOL_GPL(unregister_kprobe);
Masami Hiramatsu98616682008-04-28 02:14:28 -07001811
Masami Hiramatsu55479f62014-04-17 17:17:54 +09001812void unregister_kprobes(struct kprobe **kps, int num)
Masami Hiramatsu98616682008-04-28 02:14:28 -07001813{
1814 int i;
1815
1816 if (num <= 0)
1817 return;
1818 mutex_lock(&kprobe_mutex);
1819 for (i = 0; i < num; i++)
1820 if (__unregister_kprobe_top(kps[i]) < 0)
1821 kps[i]->addr = NULL;
1822 mutex_unlock(&kprobe_mutex);
1823
Paul E. McKenneyae8b7ce2018-11-06 19:04:39 -08001824 synchronize_rcu();
Masami Hiramatsu98616682008-04-28 02:14:28 -07001825 for (i = 0; i < num; i++)
1826 if (kps[i]->addr)
1827 __unregister_kprobe_bottom(kps[i]);
1828}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07001829EXPORT_SYMBOL_GPL(unregister_kprobes);
Masami Hiramatsu98616682008-04-28 02:14:28 -07001830
Naveen N. Rao5f6bee32017-03-08 22:34:15 +05301831int __weak kprobe_exceptions_notify(struct notifier_block *self,
1832 unsigned long val, void *data)
Naveen N. Raofc62d022017-02-08 01:24:14 +05301833{
1834 return NOTIFY_DONE;
1835}
Naveen N. Rao5f6bee32017-03-08 22:34:15 +05301836NOKPROBE_SYMBOL(kprobe_exceptions_notify);
Naveen N. Raofc62d022017-02-08 01:24:14 +05301837
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838static struct notifier_block kprobe_exceptions_nb = {
1839 .notifier_call = kprobe_exceptions_notify,
Anil S Keshavamurthy3d5631e2006-06-26 00:25:28 -07001840 .priority = 0x7fffffff /* we need to be notified first */
1841};
1842
Michael Ellerman3d7e3382007-07-19 01:48:11 -07001843unsigned long __weak arch_deref_entry_point(void *entry)
1844{
1845 return (unsigned long)entry;
1846}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Ananth N Mavinakayanahalli9edddaa2008-03-04 14:28:37 -08001848#ifdef CONFIG_KRETPROBES
Masami Hiramatsu66ada2c2020-08-29 22:00:01 +09001849
1850unsigned long __kretprobe_trampoline_handler(struct pt_regs *regs,
1851 void *trampoline_address,
1852 void *frame_pointer)
1853{
Masami Hiramatsu66ada2c2020-08-29 22:00:01 +09001854 kprobe_opcode_t *correct_ret_addr = NULL;
Peter Zijlstrad741bf42020-08-29 22:03:24 +09001855 struct kretprobe_instance *ri = NULL;
1856 struct llist_node *first, *node;
1857 struct kretprobe *rp;
Masami Hiramatsu66ada2c2020-08-29 22:00:01 +09001858
Peter Zijlstrad741bf42020-08-29 22:03:24 +09001859 /* Find all nodes for this frame. */
1860 first = node = current->kretprobe_instances.first;
1861 while (node) {
1862 ri = container_of(node, struct kretprobe_instance, llist);
Masami Hiramatsu66ada2c2020-08-29 22:00:01 +09001863
Peter Zijlstrad741bf42020-08-29 22:03:24 +09001864 BUG_ON(ri->fp != frame_pointer);
Masami Hiramatsu66ada2c2020-08-29 22:00:01 +09001865
Peter Zijlstrad741bf42020-08-29 22:03:24 +09001866 if (ri->ret_addr != trampoline_address) {
1867 correct_ret_addr = ri->ret_addr;
Masami Hiramatsu66ada2c2020-08-29 22:00:01 +09001868 /*
1869 * This is the real return address. Any other
1870 * instances associated with this task are for
1871 * other calls deeper on the call stack
1872 */
Peter Zijlstrad741bf42020-08-29 22:03:24 +09001873 goto found;
1874 }
1875
1876 node = node->next;
Masami Hiramatsu66ada2c2020-08-29 22:00:01 +09001877 }
Peter Zijlstrad741bf42020-08-29 22:03:24 +09001878 pr_err("Oops! Kretprobe fails to find correct return address.\n");
1879 BUG_ON(1);
Masami Hiramatsu66ada2c2020-08-29 22:00:01 +09001880
Peter Zijlstrad741bf42020-08-29 22:03:24 +09001881found:
1882 /* Unlink all nodes for this frame. */
1883 current->kretprobe_instances.first = node->next;
1884 node->next = NULL;
Masami Hiramatsu66ada2c2020-08-29 22:00:01 +09001885
Peter Zijlstrad741bf42020-08-29 22:03:24 +09001886 /* Run them.. */
1887 while (first) {
1888 ri = container_of(first, struct kretprobe_instance, llist);
1889 first = first->next;
Masami Hiramatsu66ada2c2020-08-29 22:00:01 +09001890
Peter Zijlstrad741bf42020-08-29 22:03:24 +09001891 rp = get_kretprobe(ri);
1892 if (rp && rp->handler) {
Masami Hiramatsu66ada2c2020-08-29 22:00:01 +09001893 struct kprobe *prev = kprobe_running();
1894
Peter Zijlstrad741bf42020-08-29 22:03:24 +09001895 __this_cpu_write(current_kprobe, &rp->kp);
Masami Hiramatsu66ada2c2020-08-29 22:00:01 +09001896 ri->ret_addr = correct_ret_addr;
Peter Zijlstrad741bf42020-08-29 22:03:24 +09001897 rp->handler(ri, regs);
Masami Hiramatsu66ada2c2020-08-29 22:00:01 +09001898 __this_cpu_write(current_kprobe, prev);
1899 }
1900
Masami Hiramatsub3388172020-08-29 22:02:47 +09001901 recycle_rp_inst(ri);
Masami Hiramatsu66ada2c2020-08-29 22:00:01 +09001902 }
1903
Masami Hiramatsu66ada2c2020-08-29 22:00:01 +09001904 return (unsigned long)correct_ret_addr;
1905}
1906NOKPROBE_SYMBOL(__kretprobe_trampoline_handler)
1907
Adrian Bunke65cefe2006-02-03 03:03:42 -08001908/*
1909 * This kprobe pre_handler is registered with every kretprobe. When probe
1910 * hits it will set up the return probe.
1911 */
Masami Hiramatsu820aede2014-04-17 17:18:21 +09001912static int pre_handler_kretprobe(struct kprobe *p, struct pt_regs *regs)
Adrian Bunke65cefe2006-02-03 03:03:42 -08001913{
1914 struct kretprobe *rp = container_of(p, struct kretprobe, kp);
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001915 struct kretprobe_instance *ri;
Peter Zijlstra6e426e02020-08-29 22:03:56 +09001916 struct freelist_node *fn;
Adrian Bunke65cefe2006-02-03 03:03:42 -08001917
Peter Zijlstra6e426e02020-08-29 22:03:56 +09001918 fn = freelist_try_get(&rp->freelist);
1919 if (!fn) {
Christoph Hellwig4c4308c2007-05-08 00:34:14 -07001920 rp->nmissed++;
Peter Zijlstra6e426e02020-08-29 22:03:56 +09001921 return 0;
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07001922 }
Peter Zijlstra6e426e02020-08-29 22:03:56 +09001923
1924 ri = container_of(fn, struct kretprobe_instance, freelist);
1925
1926 if (rp->entry_handler && rp->entry_handler(ri, regs)) {
1927 freelist_add(&ri->freelist, &rp->freelist);
1928 return 0;
1929 }
1930
1931 arch_prepare_kretprobe(ri, regs);
1932
1933 __llist_add(&ri->llist, &current->kretprobe_instances);
1934
Adrian Bunke65cefe2006-02-03 03:03:42 -08001935 return 0;
1936}
Masami Hiramatsu820aede2014-04-17 17:18:21 +09001937NOKPROBE_SYMBOL(pre_handler_kretprobe);
Adrian Bunke65cefe2006-02-03 03:03:42 -08001938
Naveen N. Rao659b9572017-07-07 22:37:24 +05301939bool __weak arch_kprobe_on_func_entry(unsigned long offset)
Naveen N. Rao90ec5e82017-02-22 19:23:37 +05301940{
1941 return !offset;
1942}
1943
Masami Hiramatsu97c753e2021-01-28 00:37:51 +09001944/**
1945 * kprobe_on_func_entry() -- check whether given address is function entry
1946 * @addr: Target address
1947 * @sym: Target symbol name
1948 * @offset: The offset from the symbol or the address
1949 *
1950 * This checks whether the given @addr+@offset or @sym+@offset is on the
1951 * function entry address or not.
1952 * This returns 0 if it is the function entry, or -EINVAL if it is not.
1953 * And also it returns -ENOENT if it fails the symbol or address lookup.
1954 * Caller must pass @addr or @sym (either one must be NULL), or this
1955 * returns -EINVAL.
1956 */
1957int kprobe_on_func_entry(kprobe_opcode_t *addr, const char *sym, unsigned long offset)
Naveen N. Rao1d585e72017-03-08 13:56:06 +05301958{
1959 kprobe_opcode_t *kp_addr = _kprobe_addr(addr, sym, offset);
1960
1961 if (IS_ERR(kp_addr))
Masami Hiramatsu97c753e2021-01-28 00:37:51 +09001962 return PTR_ERR(kp_addr);
Naveen N. Rao1d585e72017-03-08 13:56:06 +05301963
Masami Hiramatsu97c753e2021-01-28 00:37:51 +09001964 if (!kallsyms_lookup_size_offset((unsigned long)kp_addr, NULL, &offset))
1965 return -ENOENT;
Naveen N. Rao1d585e72017-03-08 13:56:06 +05301966
Masami Hiramatsu97c753e2021-01-28 00:37:51 +09001967 if (!arch_kprobe_on_func_entry(offset))
1968 return -EINVAL;
1969
1970 return 0;
Naveen N. Rao1d585e72017-03-08 13:56:06 +05301971}
1972
Masami Hiramatsu55479f62014-04-17 17:17:54 +09001973int register_kretprobe(struct kretprobe *rp)
Hien Nguyenb94cce92005-06-23 00:09:19 -07001974{
Masami Hiramatsu97c753e2021-01-28 00:37:51 +09001975 int ret;
Hien Nguyenb94cce92005-06-23 00:09:19 -07001976 struct kretprobe_instance *inst;
1977 int i;
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001978 void *addr;
Naveen N. Rao90ec5e82017-02-22 19:23:37 +05301979
Masami Hiramatsu97c753e2021-01-28 00:37:51 +09001980 ret = kprobe_on_func_entry(rp->kp.addr, rp->kp.symbol_name, rp->kp.offset);
1981 if (ret)
1982 return ret;
Masami Hiramatsuf438d912007-10-16 01:27:49 -07001983
Wang ShaoBo0188b872021-01-28 20:44:27 +08001984 /* If only rp->kp.addr is specified, check reregistering kprobes */
Masami Hiramatsu33b1d142021-02-03 23:59:27 +09001985 if (rp->kp.addr && warn_kprobe_rereg(&rp->kp))
Wang ShaoBo0188b872021-01-28 20:44:27 +08001986 return -EINVAL;
1987
Masami Hiramatsuf438d912007-10-16 01:27:49 -07001988 if (kretprobe_blacklist_size) {
Masami Hiramatsub2a5cd62008-03-04 14:29:44 -08001989 addr = kprobe_addr(&rp->kp);
Masami Hiramatsubc81d482011-06-27 16:26:50 +09001990 if (IS_ERR(addr))
1991 return PTR_ERR(addr);
Masami Hiramatsuf438d912007-10-16 01:27:49 -07001992
1993 for (i = 0; kretprobe_blacklist[i].name != NULL; i++) {
1994 if (kretprobe_blacklist[i].addr == addr)
1995 return -EINVAL;
1996 }
1997 }
Hien Nguyenb94cce92005-06-23 00:09:19 -07001998
1999 rp->kp.pre_handler = pre_handler_kretprobe;
Ananth N Mavinakayanahalli7522a842006-04-20 02:43:11 -07002000 rp->kp.post_handler = NULL;
Hien Nguyenb94cce92005-06-23 00:09:19 -07002001
2002 /* Pre-allocate memory for max kretprobe instances */
2003 if (rp->maxactive <= 0) {
Thomas Gleixner92616602019-07-26 23:19:41 +02002004#ifdef CONFIG_PREEMPTION
Heiko Carstensc2ef6662009-12-21 13:02:24 +01002005 rp->maxactive = max_t(unsigned int, 10, 2*num_possible_cpus());
Hien Nguyenb94cce92005-06-23 00:09:19 -07002006#else
Ananth N Mavinakayanahalli4dae5602009-10-30 19:23:10 +05302007 rp->maxactive = num_possible_cpus();
Hien Nguyenb94cce92005-06-23 00:09:19 -07002008#endif
2009 }
Peter Zijlstra6e426e02020-08-29 22:03:56 +09002010 rp->freelist.head = NULL;
Peter Zijlstrad741bf42020-08-29 22:03:24 +09002011 rp->rph = kzalloc(sizeof(struct kretprobe_holder), GFP_KERNEL);
2012 if (!rp->rph)
2013 return -ENOMEM;
2014
2015 rp->rph->rp = rp;
Hien Nguyenb94cce92005-06-23 00:09:19 -07002016 for (i = 0; i < rp->maxactive; i++) {
Peter Zijlstrad741bf42020-08-29 22:03:24 +09002017 inst = kzalloc(sizeof(struct kretprobe_instance) +
Abhishek Sagarf47cd9b2008-02-06 01:38:22 -08002018 rp->data_size, GFP_KERNEL);
Hien Nguyenb94cce92005-06-23 00:09:19 -07002019 if (inst == NULL) {
Peter Zijlstrad741bf42020-08-29 22:03:24 +09002020 refcount_set(&rp->rph->ref, i);
Hien Nguyenb94cce92005-06-23 00:09:19 -07002021 free_rp_inst(rp);
2022 return -ENOMEM;
2023 }
Peter Zijlstrad741bf42020-08-29 22:03:24 +09002024 inst->rph = rp->rph;
Peter Zijlstra6e426e02020-08-29 22:03:56 +09002025 freelist_add(&inst->freelist, &rp->freelist);
Hien Nguyenb94cce92005-06-23 00:09:19 -07002026 }
Peter Zijlstrad741bf42020-08-29 22:03:24 +09002027 refcount_set(&rp->rph->ref, i);
Hien Nguyenb94cce92005-06-23 00:09:19 -07002028
2029 rp->nmissed = 0;
2030 /* Establish function entry probe point */
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08002031 ret = register_kprobe(&rp->kp);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07002032 if (ret != 0)
Hien Nguyenb94cce92005-06-23 00:09:19 -07002033 free_rp_inst(rp);
2034 return ret;
2035}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07002036EXPORT_SYMBOL_GPL(register_kretprobe);
Hien Nguyenb94cce92005-06-23 00:09:19 -07002037
Masami Hiramatsu55479f62014-04-17 17:17:54 +09002038int register_kretprobes(struct kretprobe **rps, int num)
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07002039{
2040 int ret = 0, i;
2041
2042 if (num <= 0)
2043 return -EINVAL;
2044 for (i = 0; i < num; i++) {
Masami Hiramatsu49ad2fd2009-01-06 14:41:53 -08002045 ret = register_kretprobe(rps[i]);
Masami Hiramatsu67dddaa2008-06-12 15:21:35 -07002046 if (ret < 0) {
2047 if (i > 0)
2048 unregister_kretprobes(rps, i);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07002049 break;
2050 }
2051 }
2052 return ret;
2053}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07002054EXPORT_SYMBOL_GPL(register_kretprobes);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07002055
Masami Hiramatsu55479f62014-04-17 17:17:54 +09002056void unregister_kretprobe(struct kretprobe *rp)
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07002057{
2058 unregister_kretprobes(&rp, 1);
2059}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07002060EXPORT_SYMBOL_GPL(unregister_kretprobe);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07002061
Masami Hiramatsu55479f62014-04-17 17:17:54 +09002062void unregister_kretprobes(struct kretprobe **rps, int num)
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07002063{
2064 int i;
2065
2066 if (num <= 0)
2067 return;
2068 mutex_lock(&kprobe_mutex);
Peter Zijlstrad741bf42020-08-29 22:03:24 +09002069 for (i = 0; i < num; i++) {
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07002070 if (__unregister_kprobe_top(&rps[i]->kp) < 0)
2071 rps[i]->kp.addr = NULL;
Peter Zijlstrad741bf42020-08-29 22:03:24 +09002072 rps[i]->rph->rp = NULL;
2073 }
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07002074 mutex_unlock(&kprobe_mutex);
2075
Paul E. McKenneyae8b7ce2018-11-06 19:04:39 -08002076 synchronize_rcu();
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07002077 for (i = 0; i < num; i++) {
2078 if (rps[i]->kp.addr) {
2079 __unregister_kprobe_bottom(&rps[i]->kp);
Peter Zijlstrad741bf42020-08-29 22:03:24 +09002080 free_rp_inst(rps[i]);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07002081 }
2082 }
2083}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07002084EXPORT_SYMBOL_GPL(unregister_kretprobes);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07002085
Ananth N Mavinakayanahalli9edddaa2008-03-04 14:28:37 -08002086#else /* CONFIG_KRETPROBES */
Masami Hiramatsu55479f62014-04-17 17:17:54 +09002087int register_kretprobe(struct kretprobe *rp)
Hien Nguyenb94cce92005-06-23 00:09:19 -07002088{
2089 return -ENOSYS;
2090}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07002091EXPORT_SYMBOL_GPL(register_kretprobe);
Hien Nguyenb94cce92005-06-23 00:09:19 -07002092
Masami Hiramatsu55479f62014-04-17 17:17:54 +09002093int register_kretprobes(struct kretprobe **rps, int num)
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07002094{
2095 return -ENOSYS;
2096}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07002097EXPORT_SYMBOL_GPL(register_kretprobes);
2098
Masami Hiramatsu55479f62014-04-17 17:17:54 +09002099void unregister_kretprobe(struct kretprobe *rp)
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07002100{
2101}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07002102EXPORT_SYMBOL_GPL(unregister_kretprobe);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07002103
Masami Hiramatsu55479f62014-04-17 17:17:54 +09002104void unregister_kretprobes(struct kretprobe **rps, int num)
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07002105{
2106}
Masami Hiramatsu99081ab2009-04-06 19:00:59 -07002107EXPORT_SYMBOL_GPL(unregister_kretprobes);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07002108
Masami Hiramatsu820aede2014-04-17 17:18:21 +09002109static int pre_handler_kretprobe(struct kprobe *p, struct pt_regs *regs)
Srinivasa Ds346fd592007-02-20 13:57:54 -08002110{
2111 return 0;
2112}
Masami Hiramatsu820aede2014-04-17 17:18:21 +09002113NOKPROBE_SYMBOL(pre_handler_kretprobe);
Masami Hiramatsu4a296e02008-04-28 02:14:29 -07002114
Ananth N Mavinakayanahalli9edddaa2008-03-04 14:28:37 -08002115#endif /* CONFIG_KRETPROBES */
Hien Nguyenb94cce92005-06-23 00:09:19 -07002116
Masami Hiramatsue8386a02009-01-06 14:41:52 -08002117/* Set the kprobe gone and remove its instruction buffer. */
Masami Hiramatsu55479f62014-04-17 17:17:54 +09002118static void kill_kprobe(struct kprobe *p)
Masami Hiramatsue8386a02009-01-06 14:41:52 -08002119{
2120 struct kprobe *kp;
Masami Hiramatsude5bd882009-04-06 19:01:02 -07002121
Masami Hiramatsu7e6a71d2020-05-12 17:02:44 +09002122 lockdep_assert_held(&kprobe_mutex);
2123
Masami Hiramatsue8386a02009-01-06 14:41:52 -08002124 p->flags |= KPROBE_FLAG_GONE;
Masami Hiramatsuafd66252010-02-25 08:34:07 -05002125 if (kprobe_aggrprobe(p)) {
Masami Hiramatsue8386a02009-01-06 14:41:52 -08002126 /*
2127 * If this is an aggr_kprobe, we have to list all the
2128 * chained probes and mark them GONE.
2129 */
Masami Hiramatsu7e6a71d2020-05-12 17:02:44 +09002130 list_for_each_entry(kp, &p->list, list)
Masami Hiramatsue8386a02009-01-06 14:41:52 -08002131 kp->flags |= KPROBE_FLAG_GONE;
2132 p->post_handler = NULL;
Masami Hiramatsuafd66252010-02-25 08:34:07 -05002133 kill_optimized_kprobe(p);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08002134 }
2135 /*
2136 * Here, we can remove insn_slot safely, because no thread calls
2137 * the original probed function (which will be freed soon) any more.
2138 */
2139 arch_remove_kprobe(p);
Muchun Song0cb2f132020-07-28 14:45:36 +08002140
2141 /*
2142 * The module is going away. We should disarm the kprobe which
Masami Hiramatsubcb53202020-09-01 00:12:07 +09002143 * is using ftrace, because ftrace framework is still available at
2144 * MODULE_STATE_GOING notification.
Muchun Song0cb2f132020-07-28 14:45:36 +08002145 */
Masami Hiramatsubcb53202020-09-01 00:12:07 +09002146 if (kprobe_ftrace(p) && !kprobe_disabled(p) && !kprobes_all_disarmed)
Muchun Song0cb2f132020-07-28 14:45:36 +08002147 disarm_kprobe_ftrace(p);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08002148}
2149
Masami Hiramatsuc0614822010-04-27 18:33:12 -04002150/* Disable one kprobe */
Masami Hiramatsu55479f62014-04-17 17:17:54 +09002151int disable_kprobe(struct kprobe *kp)
Masami Hiramatsuc0614822010-04-27 18:33:12 -04002152{
2153 int ret = 0;
Jessica Yu297f9232018-01-10 00:51:24 +01002154 struct kprobe *p;
Masami Hiramatsuc0614822010-04-27 18:33:12 -04002155
2156 mutex_lock(&kprobe_mutex);
2157
Masami Hiramatsu6f0f1dd2010-12-03 18:53:57 +09002158 /* Disable this kprobe */
Jessica Yu297f9232018-01-10 00:51:24 +01002159 p = __disable_kprobe(kp);
2160 if (IS_ERR(p))
2161 ret = PTR_ERR(p);
Masami Hiramatsuc0614822010-04-27 18:33:12 -04002162
Masami Hiramatsuc0614822010-04-27 18:33:12 -04002163 mutex_unlock(&kprobe_mutex);
2164 return ret;
2165}
2166EXPORT_SYMBOL_GPL(disable_kprobe);
2167
2168/* Enable one kprobe */
Masami Hiramatsu55479f62014-04-17 17:17:54 +09002169int enable_kprobe(struct kprobe *kp)
Masami Hiramatsuc0614822010-04-27 18:33:12 -04002170{
2171 int ret = 0;
2172 struct kprobe *p;
2173
2174 mutex_lock(&kprobe_mutex);
2175
2176 /* Check whether specified probe is valid. */
2177 p = __get_valid_kprobe(kp);
2178 if (unlikely(p == NULL)) {
2179 ret = -EINVAL;
2180 goto out;
2181 }
2182
2183 if (kprobe_gone(kp)) {
2184 /* This kprobe has gone, we couldn't enable it. */
2185 ret = -EINVAL;
2186 goto out;
2187 }
2188
2189 if (p != kp)
2190 kp->flags &= ~KPROBE_FLAG_DISABLED;
2191
2192 if (!kprobes_all_disarmed && kprobe_disabled(p)) {
2193 p->flags &= ~KPROBE_FLAG_DISABLED;
Jessica Yu12310e342018-01-10 00:51:23 +01002194 ret = arm_kprobe(p);
2195 if (ret)
2196 p->flags |= KPROBE_FLAG_DISABLED;
Masami Hiramatsuc0614822010-04-27 18:33:12 -04002197 }
2198out:
2199 mutex_unlock(&kprobe_mutex);
2200 return ret;
2201}
2202EXPORT_SYMBOL_GPL(enable_kprobe);
2203
Masami Hiramatsu44585152018-04-28 21:36:33 +09002204/* Caller must NOT call this in usual path. This is only for critical case */
Masami Hiramatsu820aede2014-04-17 17:18:21 +09002205void dump_kprobe(struct kprobe *kp)
Frederic Weisbecker24851d22009-08-26 23:38:30 +02002206{
Masami Hiramatsu44585152018-04-28 21:36:33 +09002207 pr_err("Dumping kprobe:\n");
2208 pr_err("Name: %s\nOffset: %x\nAddress: %pS\n",
2209 kp->symbol_name, kp->offset, kp->addr);
Frederic Weisbecker24851d22009-08-26 23:38:30 +02002210}
Masami Hiramatsu820aede2014-04-17 17:18:21 +09002211NOKPROBE_SYMBOL(dump_kprobe);
Frederic Weisbecker24851d22009-08-26 23:38:30 +02002212
Masami Hiramatsufb1a59f2018-12-17 17:20:55 +09002213int kprobe_add_ksym_blacklist(unsigned long entry)
2214{
2215 struct kprobe_blacklist_entry *ent;
2216 unsigned long offset = 0, size = 0;
2217
2218 if (!kernel_text_address(entry) ||
2219 !kallsyms_lookup_size_offset(entry, &size, &offset))
2220 return -EINVAL;
2221
2222 ent = kmalloc(sizeof(*ent), GFP_KERNEL);
2223 if (!ent)
2224 return -ENOMEM;
2225 ent->start_addr = entry;
2226 ent->end_addr = entry + size;
2227 INIT_LIST_HEAD(&ent->list);
2228 list_add_tail(&ent->list, &kprobe_blacklist);
2229
2230 return (int)size;
2231}
2232
2233/* Add all symbols in given area into kprobe blacklist */
2234int kprobe_add_area_blacklist(unsigned long start, unsigned long end)
2235{
2236 unsigned long entry;
2237 int ret = 0;
2238
2239 for (entry = start; entry < end; entry += ret) {
2240 ret = kprobe_add_ksym_blacklist(entry);
2241 if (ret < 0)
2242 return ret;
2243 if (ret == 0) /* In case of alias symbol */
2244 ret = 1;
2245 }
2246 return 0;
2247}
2248
Masami Hiramatsu1e6769b2020-03-26 23:49:48 +09002249/* Remove all symbols in given area from kprobe blacklist */
2250static void kprobe_remove_area_blacklist(unsigned long start, unsigned long end)
2251{
2252 struct kprobe_blacklist_entry *ent, *n;
2253
2254 list_for_each_entry_safe(ent, n, &kprobe_blacklist, list) {
2255 if (ent->start_addr < start || ent->start_addr >= end)
2256 continue;
2257 list_del(&ent->list);
2258 kfree(ent);
2259 }
2260}
2261
Masami Hiramatsu16db6262020-03-26 23:50:00 +09002262static void kprobe_remove_ksym_blacklist(unsigned long entry)
2263{
2264 kprobe_remove_area_blacklist(entry, entry + 1);
2265}
2266
Adrian Hunterd002b8b2020-05-28 11:00:58 +03002267int __weak arch_kprobe_get_kallsym(unsigned int *symnum, unsigned long *value,
2268 char *type, char *sym)
2269{
2270 return -ERANGE;
2271}
2272
2273int kprobe_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
2274 char *sym)
2275{
2276#ifdef __ARCH_WANT_KPROBES_INSN_SLOT
2277 if (!kprobe_cache_get_kallsym(&kprobe_insn_slots, &symnum, value, type, sym))
2278 return 0;
2279#ifdef CONFIG_OPTPROBES
2280 if (!kprobe_cache_get_kallsym(&kprobe_optinsn_slots, &symnum, value, type, sym))
2281 return 0;
2282#endif
2283#endif
2284 if (!arch_kprobe_get_kallsym(&symnum, value, type, sym))
2285 return 0;
2286 return -ERANGE;
2287}
2288
Masami Hiramatsufb1a59f2018-12-17 17:20:55 +09002289int __init __weak arch_populate_kprobe_blacklist(void)
2290{
2291 return 0;
2292}
2293
Masami Hiramatsu376e2422014-04-17 17:17:05 +09002294/*
2295 * Lookup and populate the kprobe_blacklist.
2296 *
2297 * Unlike the kretprobe blacklist, we'll need to determine
2298 * the range of addresses that belong to the said functions,
2299 * since a kprobe need not necessarily be at the beginning
2300 * of a function.
2301 */
2302static int __init populate_kprobe_blacklist(unsigned long *start,
2303 unsigned long *end)
2304{
Masami Hiramatsufb1a59f2018-12-17 17:20:55 +09002305 unsigned long entry;
Masami Hiramatsu376e2422014-04-17 17:17:05 +09002306 unsigned long *iter;
Masami Hiramatsufb1a59f2018-12-17 17:20:55 +09002307 int ret;
Masami Hiramatsu376e2422014-04-17 17:17:05 +09002308
2309 for (iter = start; iter < end; iter++) {
Masami Hiramatsud81b4252014-07-17 11:44:11 +00002310 entry = arch_deref_entry_point((void *)*iter);
Masami Hiramatsufb1a59f2018-12-17 17:20:55 +09002311 ret = kprobe_add_ksym_blacklist(entry);
2312 if (ret == -EINVAL)
Masami Hiramatsu376e2422014-04-17 17:17:05 +09002313 continue;
Masami Hiramatsufb1a59f2018-12-17 17:20:55 +09002314 if (ret < 0)
2315 return ret;
Masami Hiramatsu376e2422014-04-17 17:17:05 +09002316 }
Masami Hiramatsufb1a59f2018-12-17 17:20:55 +09002317
2318 /* Symbols in __kprobes_text are blacklisted */
2319 ret = kprobe_add_area_blacklist((unsigned long)__kprobes_text_start,
2320 (unsigned long)__kprobes_text_end);
Thomas Gleixner66e9b072020-03-10 14:04:34 +01002321 if (ret)
2322 return ret;
2323
2324 /* Symbols in noinstr section are blacklisted */
2325 ret = kprobe_add_area_blacklist((unsigned long)__noinstr_text_start,
2326 (unsigned long)__noinstr_text_end);
Masami Hiramatsufb1a59f2018-12-17 17:20:55 +09002327
2328 return ret ? : arch_populate_kprobe_blacklist();
Masami Hiramatsu376e2422014-04-17 17:17:05 +09002329}
2330
Masami Hiramatsu1e6769b2020-03-26 23:49:48 +09002331static void add_module_kprobe_blacklist(struct module *mod)
2332{
2333 unsigned long start, end;
Masami Hiramatsu16db6262020-03-26 23:50:00 +09002334 int i;
2335
2336 if (mod->kprobe_blacklist) {
2337 for (i = 0; i < mod->num_kprobe_blacklist; i++)
2338 kprobe_add_ksym_blacklist(mod->kprobe_blacklist[i]);
2339 }
Masami Hiramatsu1e6769b2020-03-26 23:49:48 +09002340
2341 start = (unsigned long)mod->kprobes_text_start;
2342 if (start) {
2343 end = start + mod->kprobes_text_size;
2344 kprobe_add_area_blacklist(start, end);
2345 }
Thomas Gleixner66e9b072020-03-10 14:04:34 +01002346
2347 start = (unsigned long)mod->noinstr_text_start;
2348 if (start) {
2349 end = start + mod->noinstr_text_size;
2350 kprobe_add_area_blacklist(start, end);
2351 }
Masami Hiramatsu1e6769b2020-03-26 23:49:48 +09002352}
2353
2354static void remove_module_kprobe_blacklist(struct module *mod)
2355{
2356 unsigned long start, end;
Masami Hiramatsu16db6262020-03-26 23:50:00 +09002357 int i;
2358
2359 if (mod->kprobe_blacklist) {
2360 for (i = 0; i < mod->num_kprobe_blacklist; i++)
2361 kprobe_remove_ksym_blacklist(mod->kprobe_blacklist[i]);
2362 }
Masami Hiramatsu1e6769b2020-03-26 23:49:48 +09002363
2364 start = (unsigned long)mod->kprobes_text_start;
2365 if (start) {
2366 end = start + mod->kprobes_text_size;
2367 kprobe_remove_area_blacklist(start, end);
2368 }
Thomas Gleixner66e9b072020-03-10 14:04:34 +01002369
2370 start = (unsigned long)mod->noinstr_text_start;
2371 if (start) {
2372 end = start + mod->noinstr_text_size;
2373 kprobe_remove_area_blacklist(start, end);
2374 }
Masami Hiramatsu1e6769b2020-03-26 23:49:48 +09002375}
2376
Masami Hiramatsue8386a02009-01-06 14:41:52 -08002377/* Module notifier call back, checking kprobes on the module */
Masami Hiramatsu55479f62014-04-17 17:17:54 +09002378static int kprobes_module_callback(struct notifier_block *nb,
2379 unsigned long val, void *data)
Masami Hiramatsue8386a02009-01-06 14:41:52 -08002380{
2381 struct module *mod = data;
2382 struct hlist_head *head;
Masami Hiramatsue8386a02009-01-06 14:41:52 -08002383 struct kprobe *p;
2384 unsigned int i;
Masami Hiramatsuf24659d2009-01-06 14:41:55 -08002385 int checkcore = (val == MODULE_STATE_GOING);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08002386
Masami Hiramatsu1e6769b2020-03-26 23:49:48 +09002387 if (val == MODULE_STATE_COMING) {
2388 mutex_lock(&kprobe_mutex);
2389 add_module_kprobe_blacklist(mod);
2390 mutex_unlock(&kprobe_mutex);
2391 }
Masami Hiramatsuf24659d2009-01-06 14:41:55 -08002392 if (val != MODULE_STATE_GOING && val != MODULE_STATE_LIVE)
Masami Hiramatsue8386a02009-01-06 14:41:52 -08002393 return NOTIFY_DONE;
2394
2395 /*
Masami Hiramatsuf24659d2009-01-06 14:41:55 -08002396 * When MODULE_STATE_GOING was notified, both of module .text and
2397 * .init.text sections would be freed. When MODULE_STATE_LIVE was
2398 * notified, only .init.text section would be freed. We need to
2399 * disable kprobes which have been inserted in the sections.
Masami Hiramatsue8386a02009-01-06 14:41:52 -08002400 */
2401 mutex_lock(&kprobe_mutex);
2402 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
2403 head = &kprobe_table[i];
Masami Hiramatsu7e6a71d2020-05-12 17:02:44 +09002404 hlist_for_each_entry(p, head, hlist)
Masami Hiramatsuf24659d2009-01-06 14:41:55 -08002405 if (within_module_init((unsigned long)p->addr, mod) ||
2406 (checkcore &&
2407 within_module_core((unsigned long)p->addr, mod))) {
Masami Hiramatsue8386a02009-01-06 14:41:52 -08002408 /*
2409 * The vaddr this probe is installed will soon
2410 * be vfreed buy not synced to disk. Hence,
2411 * disarming the breakpoint isn't needed.
Steven Rostedt (VMware)545a0282017-05-16 14:58:35 -04002412 *
2413 * Note, this will also move any optimized probes
2414 * that are pending to be removed from their
2415 * corresponding lists to the freeing_list and
2416 * will not be touched by the delayed
2417 * kprobe_optimizer work handler.
Masami Hiramatsue8386a02009-01-06 14:41:52 -08002418 */
2419 kill_kprobe(p);
2420 }
2421 }
Masami Hiramatsu1e6769b2020-03-26 23:49:48 +09002422 if (val == MODULE_STATE_GOING)
2423 remove_module_kprobe_blacklist(mod);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08002424 mutex_unlock(&kprobe_mutex);
2425 return NOTIFY_DONE;
2426}
2427
2428static struct notifier_block kprobe_module_nb = {
2429 .notifier_call = kprobes_module_callback,
2430 .priority = 0
2431};
2432
Masami Hiramatsu376e2422014-04-17 17:17:05 +09002433/* Markers of _kprobe_blacklist section */
2434extern unsigned long __start_kprobe_blacklist[];
2435extern unsigned long __stop_kprobe_blacklist[];
2436
Masami Hiramatsu82d083a2020-09-10 17:55:05 +09002437void kprobe_free_init_mem(void)
2438{
2439 void *start = (void *)(&__init_begin);
2440 void *end = (void *)(&__init_end);
2441 struct hlist_head *head;
2442 struct kprobe *p;
2443 int i;
2444
2445 mutex_lock(&kprobe_mutex);
2446
2447 /* Kill all kprobes on initmem */
2448 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
2449 head = &kprobe_table[i];
2450 hlist_for_each_entry(p, head, hlist) {
2451 if (start <= (void *)p->addr && (void *)p->addr < end)
2452 kill_kprobe(p);
2453 }
2454 }
2455
2456 mutex_unlock(&kprobe_mutex);
2457}
2458
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459static int __init init_kprobes(void)
2460{
2461 int i, err = 0;
2462
2463 /* FIXME allocate the probe table, currently defined statically */
2464 /* initialize all list heads */
Peter Zijlstrad741bf42020-08-29 22:03:24 +09002465 for (i = 0; i < KPROBE_TABLE_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 INIT_HLIST_HEAD(&kprobe_table[i]);
2467
Masami Hiramatsu376e2422014-04-17 17:17:05 +09002468 err = populate_kprobe_blacklist(__start_kprobe_blacklist,
2469 __stop_kprobe_blacklist);
2470 if (err) {
2471 pr_err("kprobes: failed to populate blacklist: %d\n", err);
2472 pr_err("Please take care of using kprobes.\n");
Srinivasa Ds3d8d9962008-04-28 02:14:26 -07002473 }
2474
Masami Hiramatsuf438d912007-10-16 01:27:49 -07002475 if (kretprobe_blacklist_size) {
2476 /* lookup the function address from its name */
2477 for (i = 0; kretprobe_blacklist[i].name != NULL; i++) {
Naveen N. Rao49e0b462017-04-19 18:21:00 +05302478 kretprobe_blacklist[i].addr =
Naveen N. Rao290e3072017-04-19 18:21:01 +05302479 kprobe_lookup_name(kretprobe_blacklist[i].name, 0);
Masami Hiramatsuf438d912007-10-16 01:27:49 -07002480 if (!kretprobe_blacklist[i].addr)
2481 printk("kretprobe: lookup failed: %s\n",
2482 kretprobe_blacklist[i].name);
2483 }
2484 }
2485
Masami Hiramatsue579abe2009-04-06 19:01:01 -07002486 /* By default, kprobes are armed */
2487 kprobes_all_disarmed = false;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002488
Masami Hiramatsuc85c9a22021-02-18 23:29:23 +09002489#if defined(CONFIG_OPTPROBES) && defined(__ARCH_WANT_KPROBES_INSN_SLOT)
2490 /* Init kprobe_optinsn_slots for allocation */
2491 kprobe_optinsn_slots.insn_size = MAX_OPTINSN_SIZE;
2492#endif
2493
Rusty Lynch67729262005-07-05 18:54:50 -07002494 err = arch_init_kprobes();
Rusty Lynch802eae72005-06-27 15:17:08 -07002495 if (!err)
2496 err = register_die_notifier(&kprobe_exceptions_nb);
Masami Hiramatsue8386a02009-01-06 14:41:52 -08002497 if (!err)
2498 err = register_module_notifier(&kprobe_module_nb);
2499
Srinivasa D Sef53d9c2008-07-25 01:46:04 -07002500 kprobes_initialized = (err == 0);
Rusty Lynch802eae72005-06-27 15:17:08 -07002501
Ananth N Mavinakayanahalli8c1c9352008-01-30 13:32:53 +01002502 if (!err)
2503 init_test_probes();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 return err;
2505}
Masami Hiramatsu36dadef2020-09-10 21:38:39 +09002506early_initcall(init_kprobes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
Masami Hiramatsuc85c9a22021-02-18 23:29:23 +09002508#if defined(CONFIG_OPTPROBES)
2509static int __init init_optprobes(void)
2510{
2511 /*
2512 * Enable kprobe optimization - this kicks the optimizer which
2513 * depends on synchronize_rcu_tasks() and ksoftirqd, that is
2514 * not spawned in early initcall. So delay the optimization.
2515 */
2516 optimize_all_kprobes();
2517
2518 return 0;
2519}
2520subsys_initcall(init_optprobes);
2521#endif
2522
Srinivasa Ds346fd592007-02-20 13:57:54 -08002523#ifdef CONFIG_DEBUG_FS
Masami Hiramatsu55479f62014-04-17 17:17:54 +09002524static void report_probe(struct seq_file *pi, struct kprobe *p,
Masami Hiramatsuafd66252010-02-25 08:34:07 -05002525 const char *sym, int offset, char *modname, struct kprobe *pp)
Srinivasa Ds346fd592007-02-20 13:57:54 -08002526{
2527 char *kprobe_type;
Masami Hiramatsu81365a92018-04-28 21:36:02 +09002528 void *addr = p->addr;
Srinivasa Ds346fd592007-02-20 13:57:54 -08002529
2530 if (p->pre_handler == pre_handler_kretprobe)
2531 kprobe_type = "r";
Srinivasa Ds346fd592007-02-20 13:57:54 -08002532 else
2533 kprobe_type = "k";
Masami Hiramatsuafd66252010-02-25 08:34:07 -05002534
Kees Cook60f7bb62020-07-02 15:20:22 -07002535 if (!kallsyms_show_value(pi->file->f_cred))
Masami Hiramatsu81365a92018-04-28 21:36:02 +09002536 addr = NULL;
2537
Srinivasa Ds346fd592007-02-20 13:57:54 -08002538 if (sym)
Masami Hiramatsu81365a92018-04-28 21:36:02 +09002539 seq_printf(pi, "%px %s %s+0x%x %s ",
2540 addr, kprobe_type, sym, offset,
Masami Hiramatsuafd66252010-02-25 08:34:07 -05002541 (modname ? modname : " "));
Masami Hiramatsu81365a92018-04-28 21:36:02 +09002542 else /* try to use %pS */
2543 seq_printf(pi, "%px %s %pS ",
2544 addr, kprobe_type, p->addr);
Masami Hiramatsuafd66252010-02-25 08:34:07 -05002545
2546 if (!pp)
2547 pp = p;
Masami Hiramatsuae6aa162012-06-05 19:28:32 +09002548 seq_printf(pi, "%s%s%s%s\n",
Masami Hiramatsuafd66252010-02-25 08:34:07 -05002549 (kprobe_gone(p) ? "[GONE]" : ""),
2550 ((kprobe_disabled(p) && !kprobe_gone(p)) ? "[DISABLED]" : ""),
Masami Hiramatsuae6aa162012-06-05 19:28:32 +09002551 (kprobe_optimized(pp) ? "[OPTIMIZED]" : ""),
2552 (kprobe_ftrace(pp) ? "[FTRACE]" : ""));
Srinivasa Ds346fd592007-02-20 13:57:54 -08002553}
2554
Masami Hiramatsu55479f62014-04-17 17:17:54 +09002555static void *kprobe_seq_start(struct seq_file *f, loff_t *pos)
Srinivasa Ds346fd592007-02-20 13:57:54 -08002556{
2557 return (*pos < KPROBE_TABLE_SIZE) ? pos : NULL;
2558}
2559
Masami Hiramatsu55479f62014-04-17 17:17:54 +09002560static void *kprobe_seq_next(struct seq_file *f, void *v, loff_t *pos)
Srinivasa Ds346fd592007-02-20 13:57:54 -08002561{
2562 (*pos)++;
2563 if (*pos >= KPROBE_TABLE_SIZE)
2564 return NULL;
2565 return pos;
2566}
2567
Masami Hiramatsu55479f62014-04-17 17:17:54 +09002568static void kprobe_seq_stop(struct seq_file *f, void *v)
Srinivasa Ds346fd592007-02-20 13:57:54 -08002569{
2570 /* Nothing to do */
2571}
2572
Masami Hiramatsu55479f62014-04-17 17:17:54 +09002573static int show_kprobe_addr(struct seq_file *pi, void *v)
Srinivasa Ds346fd592007-02-20 13:57:54 -08002574{
2575 struct hlist_head *head;
Srinivasa Ds346fd592007-02-20 13:57:54 -08002576 struct kprobe *p, *kp;
2577 const char *sym = NULL;
2578 unsigned int i = *(loff_t *) v;
Alexey Dobriyanffb45122007-05-08 00:28:41 -07002579 unsigned long offset = 0;
Joe Marioab767862013-11-12 15:10:23 -08002580 char *modname, namebuf[KSYM_NAME_LEN];
Srinivasa Ds346fd592007-02-20 13:57:54 -08002581
2582 head = &kprobe_table[i];
2583 preempt_disable();
Sasha Levinb67bfe02013-02-27 17:06:00 -08002584 hlist_for_each_entry_rcu(p, head, hlist) {
Alexey Dobriyanffb45122007-05-08 00:28:41 -07002585 sym = kallsyms_lookup((unsigned long)p->addr, NULL,
Srinivasa Ds346fd592007-02-20 13:57:54 -08002586 &offset, &modname, namebuf);
Masami Hiramatsuafd66252010-02-25 08:34:07 -05002587 if (kprobe_aggrprobe(p)) {
Srinivasa Ds346fd592007-02-20 13:57:54 -08002588 list_for_each_entry_rcu(kp, &p->list, list)
Masami Hiramatsuafd66252010-02-25 08:34:07 -05002589 report_probe(pi, kp, sym, offset, modname, p);
Srinivasa Ds346fd592007-02-20 13:57:54 -08002590 } else
Masami Hiramatsuafd66252010-02-25 08:34:07 -05002591 report_probe(pi, p, sym, offset, modname, NULL);
Srinivasa Ds346fd592007-02-20 13:57:54 -08002592 }
2593 preempt_enable();
2594 return 0;
2595}
2596
Kefeng Wangeac2cece2020-06-04 16:51:11 -07002597static const struct seq_operations kprobes_sops = {
Srinivasa Ds346fd592007-02-20 13:57:54 -08002598 .start = kprobe_seq_start,
2599 .next = kprobe_seq_next,
2600 .stop = kprobe_seq_stop,
2601 .show = show_kprobe_addr
2602};
2603
Kefeng Wangeac2cece2020-06-04 16:51:11 -07002604DEFINE_SEQ_ATTRIBUTE(kprobes);
Srinivasa Ds346fd592007-02-20 13:57:54 -08002605
Masami Hiramatsu63724742014-04-17 17:18:49 +09002606/* kprobes/blacklist -- shows which functions can not be probed */
2607static void *kprobe_blacklist_seq_start(struct seq_file *m, loff_t *pos)
2608{
Masami Hiramatsu4fdd8882020-03-26 23:49:36 +09002609 mutex_lock(&kprobe_mutex);
Masami Hiramatsu63724742014-04-17 17:18:49 +09002610 return seq_list_start(&kprobe_blacklist, *pos);
2611}
2612
2613static void *kprobe_blacklist_seq_next(struct seq_file *m, void *v, loff_t *pos)
2614{
2615 return seq_list_next(v, &kprobe_blacklist, pos);
2616}
2617
2618static int kprobe_blacklist_seq_show(struct seq_file *m, void *v)
2619{
2620 struct kprobe_blacklist_entry *ent =
2621 list_entry(v, struct kprobe_blacklist_entry, list);
2622
Masami Hiramatsuffb9bd62018-04-28 21:35:32 +09002623 /*
2624 * If /proc/kallsyms is not showing kernel address, we won't
2625 * show them here either.
2626 */
Kees Cook60f7bb62020-07-02 15:20:22 -07002627 if (!kallsyms_show_value(m->file->f_cred))
Masami Hiramatsuffb9bd62018-04-28 21:35:32 +09002628 seq_printf(m, "0x%px-0x%px\t%ps\n", NULL, NULL,
2629 (void *)ent->start_addr);
2630 else
2631 seq_printf(m, "0x%px-0x%px\t%ps\n", (void *)ent->start_addr,
2632 (void *)ent->end_addr, (void *)ent->start_addr);
Masami Hiramatsu63724742014-04-17 17:18:49 +09002633 return 0;
2634}
2635
Masami Hiramatsu4fdd8882020-03-26 23:49:36 +09002636static void kprobe_blacklist_seq_stop(struct seq_file *f, void *v)
2637{
2638 mutex_unlock(&kprobe_mutex);
2639}
2640
Kefeng Wangeac2cece2020-06-04 16:51:11 -07002641static const struct seq_operations kprobe_blacklist_sops = {
Masami Hiramatsu63724742014-04-17 17:18:49 +09002642 .start = kprobe_blacklist_seq_start,
2643 .next = kprobe_blacklist_seq_next,
Masami Hiramatsu4fdd8882020-03-26 23:49:36 +09002644 .stop = kprobe_blacklist_seq_stop,
Masami Hiramatsu63724742014-04-17 17:18:49 +09002645 .show = kprobe_blacklist_seq_show,
2646};
Kefeng Wangeac2cece2020-06-04 16:51:11 -07002647DEFINE_SEQ_ATTRIBUTE(kprobe_blacklist);
Masami Hiramatsu63724742014-04-17 17:18:49 +09002648
Jessica Yu12310e342018-01-10 00:51:23 +01002649static int arm_all_kprobes(void)
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002650{
2651 struct hlist_head *head;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002652 struct kprobe *p;
Jessica Yu12310e342018-01-10 00:51:23 +01002653 unsigned int i, total = 0, errors = 0;
2654 int err, ret = 0;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002655
2656 mutex_lock(&kprobe_mutex);
2657
Masami Hiramatsue579abe2009-04-06 19:01:01 -07002658 /* If kprobes are armed, just return */
2659 if (!kprobes_all_disarmed)
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002660 goto already_enabled;
2661
Wang Nan977ad482015-02-13 14:40:24 -08002662 /*
2663 * optimize_kprobe() called by arm_kprobe() checks
2664 * kprobes_all_disarmed, so set kprobes_all_disarmed before
2665 * arm_kprobe.
2666 */
2667 kprobes_all_disarmed = false;
Masami Hiramatsuafd66252010-02-25 08:34:07 -05002668 /* Arming kprobes doesn't optimize kprobe itself */
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002669 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
2670 head = &kprobe_table[i];
Jessica Yu12310e342018-01-10 00:51:23 +01002671 /* Arm all kprobes on a best-effort basis */
Masami Hiramatsu7e6a71d2020-05-12 17:02:44 +09002672 hlist_for_each_entry(p, head, hlist) {
Jessica Yu12310e342018-01-10 00:51:23 +01002673 if (!kprobe_disabled(p)) {
2674 err = arm_kprobe(p);
2675 if (err) {
2676 errors++;
2677 ret = err;
2678 }
2679 total++;
2680 }
2681 }
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002682 }
2683
Jessica Yu12310e342018-01-10 00:51:23 +01002684 if (errors)
2685 pr_warn("Kprobes globally enabled, but failed to arm %d out of %d probes\n",
2686 errors, total);
2687 else
2688 pr_info("Kprobes globally enabled\n");
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002689
2690already_enabled:
2691 mutex_unlock(&kprobe_mutex);
Jessica Yu12310e342018-01-10 00:51:23 +01002692 return ret;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002693}
2694
Jessica Yu297f9232018-01-10 00:51:24 +01002695static int disarm_all_kprobes(void)
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002696{
2697 struct hlist_head *head;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002698 struct kprobe *p;
Jessica Yu297f9232018-01-10 00:51:24 +01002699 unsigned int i, total = 0, errors = 0;
2700 int err, ret = 0;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002701
2702 mutex_lock(&kprobe_mutex);
2703
Masami Hiramatsue579abe2009-04-06 19:01:01 -07002704 /* If kprobes are already disarmed, just return */
Masami Hiramatsu6274de42010-12-03 18:54:09 +09002705 if (kprobes_all_disarmed) {
2706 mutex_unlock(&kprobe_mutex);
Jessica Yu297f9232018-01-10 00:51:24 +01002707 return 0;
Masami Hiramatsu6274de42010-12-03 18:54:09 +09002708 }
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002709
Masami Hiramatsue579abe2009-04-06 19:01:01 -07002710 kprobes_all_disarmed = true;
Masami Hiramatsuafd66252010-02-25 08:34:07 -05002711
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002712 for (i = 0; i < KPROBE_TABLE_SIZE; i++) {
2713 head = &kprobe_table[i];
Jessica Yu297f9232018-01-10 00:51:24 +01002714 /* Disarm all kprobes on a best-effort basis */
Masami Hiramatsu7e6a71d2020-05-12 17:02:44 +09002715 hlist_for_each_entry(p, head, hlist) {
Jessica Yu297f9232018-01-10 00:51:24 +01002716 if (!arch_trampoline_kprobe(p) && !kprobe_disabled(p)) {
2717 err = disarm_kprobe(p, false);
2718 if (err) {
2719 errors++;
2720 ret = err;
2721 }
2722 total++;
2723 }
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002724 }
2725 }
Jessica Yu297f9232018-01-10 00:51:24 +01002726
2727 if (errors)
2728 pr_warn("Kprobes globally disabled, but failed to disarm %d out of %d probes\n",
2729 errors, total);
2730 else
2731 pr_info("Kprobes globally disabled\n");
2732
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002733 mutex_unlock(&kprobe_mutex);
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002734
Masami Hiramatsu6274de42010-12-03 18:54:09 +09002735 /* Wait for disarming all kprobes by optimizer */
2736 wait_for_kprobe_optimizer();
Jessica Yu297f9232018-01-10 00:51:24 +01002737
2738 return ret;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002739}
2740
2741/*
2742 * XXX: The debugfs bool file interface doesn't allow for callbacks
2743 * when the bool state is switched. We can reuse that facility when
2744 * available
2745 */
2746static ssize_t read_enabled_file_bool(struct file *file,
2747 char __user *user_buf, size_t count, loff_t *ppos)
2748{
2749 char buf[3];
2750
Masami Hiramatsue579abe2009-04-06 19:01:01 -07002751 if (!kprobes_all_disarmed)
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002752 buf[0] = '1';
2753 else
2754 buf[0] = '0';
2755 buf[1] = '\n';
2756 buf[2] = 0x00;
2757 return simple_read_from_buffer(user_buf, count, ppos, buf, 2);
2758}
2759
2760static ssize_t write_enabled_file_bool(struct file *file,
2761 const char __user *user_buf, size_t count, loff_t *ppos)
2762{
2763 char buf[32];
Stephen Boydefeb1562012-01-12 17:17:11 -08002764 size_t buf_size;
Jessica Yu12310e342018-01-10 00:51:23 +01002765 int ret = 0;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002766
2767 buf_size = min(count, (sizeof(buf)-1));
2768 if (copy_from_user(buf, user_buf, buf_size))
2769 return -EFAULT;
2770
Mathias Krause10fb46d2013-07-03 15:05:39 -07002771 buf[buf_size] = '\0';
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002772 switch (buf[0]) {
2773 case 'y':
2774 case 'Y':
2775 case '1':
Jessica Yu12310e342018-01-10 00:51:23 +01002776 ret = arm_all_kprobes();
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002777 break;
2778 case 'n':
2779 case 'N':
2780 case '0':
Jessica Yu297f9232018-01-10 00:51:24 +01002781 ret = disarm_all_kprobes();
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002782 break;
Mathias Krause10fb46d2013-07-03 15:05:39 -07002783 default:
2784 return -EINVAL;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002785 }
2786
Jessica Yu12310e342018-01-10 00:51:23 +01002787 if (ret)
2788 return ret;
2789
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002790 return count;
2791}
2792
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002793static const struct file_operations fops_kp = {
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002794 .read = read_enabled_file_bool,
2795 .write = write_enabled_file_bool,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002796 .llseek = default_llseek,
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002797};
2798
Masami Hiramatsu55479f62014-04-17 17:17:54 +09002799static int __init debugfs_kprobe_init(void)
Srinivasa Ds346fd592007-02-20 13:57:54 -08002800{
Greg Kroah-Hartman8c0fd1f2019-01-22 16:21:46 +01002801 struct dentry *dir;
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002802 unsigned int value = 1;
Srinivasa Ds346fd592007-02-20 13:57:54 -08002803
2804 dir = debugfs_create_dir("kprobes", NULL);
Srinivasa Ds346fd592007-02-20 13:57:54 -08002805
Kefeng Wangeac2cece2020-06-04 16:51:11 -07002806 debugfs_create_file("list", 0400, dir, NULL, &kprobes_fops);
Srinivasa Ds346fd592007-02-20 13:57:54 -08002807
Greg Kroah-Hartman8c0fd1f2019-01-22 16:21:46 +01002808 debugfs_create_file("enabled", 0600, dir, &value, &fops_kp);
Masami Hiramatsu63724742014-04-17 17:18:49 +09002809
Greg Kroah-Hartman8c0fd1f2019-01-22 16:21:46 +01002810 debugfs_create_file("blacklist", 0400, dir, NULL,
Kefeng Wangeac2cece2020-06-04 16:51:11 -07002811 &kprobe_blacklist_fops);
Ananth N Mavinakayanahallibf8f6e5b2007-05-08 00:34:16 -07002812
Srinivasa Ds346fd592007-02-20 13:57:54 -08002813 return 0;
2814}
2815
2816late_initcall(debugfs_kprobe_init);
2817#endif /* CONFIG_DEBUG_FS */