blob: c49f0465e966d899e762d0a0b73b3cadac9bf3e6 [file] [log] [blame]
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001/*
Masami Hiramatsu77b44d12009-11-03 19:12:47 -05002 * Kprobes-based tracing events
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04003 *
4 * Created by Masami Hiramatsu <mhiramat@redhat.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20#include <linux/module.h>
21#include <linux/uaccess.h>
Masami Hiramatsu413d37d2009-08-13 16:35:11 -040022
Srikar Dronamraju8ab83f52012-04-09 14:41:44 +053023#include "trace_probe.h"
Masami Hiramatsu413d37d2009-08-13 16:35:11 -040024
Masami Hiramatsuf52487e2009-09-10 19:53:53 -040025#define KPROBE_EVENT_SYSTEM "kprobes"
Masami Hiramatsu413d37d2009-08-13 16:35:11 -040026
Masami Hiramatsu413d37d2009-08-13 16:35:11 -040027/**
Masami Hiramatsu77b44d12009-11-03 19:12:47 -050028 * Kprobe event core functions
Masami Hiramatsu413d37d2009-08-13 16:35:11 -040029 */
Namhyung Kimc31ffb32013-07-03 13:50:51 +090030struct trace_kprobe {
Masami Hiramatsu413d37d2009-08-13 16:35:11 -040031 struct list_head list;
Masami Hiramatsu4a846b42009-09-11 05:31:21 +020032 struct kretprobe rp; /* Use rp.kp for kprobe use */
Martin KaFai Laua7636d92016-02-03 12:28:28 -080033 unsigned long __percpu *nhit;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -040034 const char *symbol; /* symbol name */
Namhyung Kimc31ffb32013-07-03 13:50:51 +090035 struct trace_probe tp;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -040036};
37
Namhyung Kimc31ffb32013-07-03 13:50:51 +090038#define SIZEOF_TRACE_KPROBE(n) \
39 (offsetof(struct trace_kprobe, tp.args) + \
Masami Hiramatsueca0d912009-09-10 19:53:38 -040040 (sizeof(struct probe_arg) * (n)))
Masami Hiramatsua82378d2009-08-13 16:35:18 -040041
Masami Hiramatsu93ccae72010-04-12 13:17:08 -040042
Masami Hiramatsu3da0f182014-04-17 17:18:28 +090043static nokprobe_inline bool trace_kprobe_is_return(struct trace_kprobe *tk)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -040044{
Namhyung Kimc31ffb32013-07-03 13:50:51 +090045 return tk->rp.handler != NULL;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -040046}
47
Masami Hiramatsu3da0f182014-04-17 17:18:28 +090048static nokprobe_inline const char *trace_kprobe_symbol(struct trace_kprobe *tk)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -040049{
Namhyung Kimc31ffb32013-07-03 13:50:51 +090050 return tk->symbol ? tk->symbol : "unknown";
Masami Hiramatsu413d37d2009-08-13 16:35:11 -040051}
52
Masami Hiramatsu3da0f182014-04-17 17:18:28 +090053static nokprobe_inline unsigned long trace_kprobe_offset(struct trace_kprobe *tk)
Masami Hiramatsu61424312011-06-27 16:26:56 +090054{
Namhyung Kimc31ffb32013-07-03 13:50:51 +090055 return tk->rp.kp.offset;
Masami Hiramatsu61424312011-06-27 16:26:56 +090056}
57
Masami Hiramatsu3da0f182014-04-17 17:18:28 +090058static nokprobe_inline bool trace_kprobe_has_gone(struct trace_kprobe *tk)
Masami Hiramatsu61424312011-06-27 16:26:56 +090059{
Namhyung Kimc31ffb32013-07-03 13:50:51 +090060 return !!(kprobe_gone(&tk->rp.kp));
Masami Hiramatsu61424312011-06-27 16:26:56 +090061}
62
Masami Hiramatsu3da0f182014-04-17 17:18:28 +090063static nokprobe_inline bool trace_kprobe_within_module(struct trace_kprobe *tk,
Namhyung Kimc31ffb32013-07-03 13:50:51 +090064 struct module *mod)
Masami Hiramatsu61424312011-06-27 16:26:56 +090065{
66 int len = strlen(mod->name);
Namhyung Kimc31ffb32013-07-03 13:50:51 +090067 const char *name = trace_kprobe_symbol(tk);
Masami Hiramatsu61424312011-06-27 16:26:56 +090068 return strncmp(mod->name, name, len) == 0 && name[len] == ':';
69}
70
Masami Hiramatsu3da0f182014-04-17 17:18:28 +090071static nokprobe_inline bool trace_kprobe_is_on_module(struct trace_kprobe *tk)
Masami Hiramatsu61424312011-06-27 16:26:56 +090072{
Namhyung Kimc31ffb32013-07-03 13:50:51 +090073 return !!strchr(trace_kprobe_symbol(tk), ':');
Masami Hiramatsu61424312011-06-27 16:26:56 +090074}
75
Namhyung Kimc31ffb32013-07-03 13:50:51 +090076static int register_kprobe_event(struct trace_kprobe *tk);
77static int unregister_kprobe_event(struct trace_kprobe *tk);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -040078
79static DEFINE_MUTEX(probe_lock);
80static LIST_HEAD(probe_list);
81
Masami Hiramatsu50d78052009-09-14 16:49:20 -040082static int kprobe_dispatcher(struct kprobe *kp, struct pt_regs *regs);
83static int kretprobe_dispatcher(struct kretprobe_instance *ri,
84 struct pt_regs *regs);
85
Namhyung Kim1301a442013-11-26 15:21:04 +090086/* Memory fetching by symbol */
87struct symbol_cache {
88 char *symbol;
89 long offset;
90 unsigned long addr;
91};
92
93unsigned long update_symbol_cache(struct symbol_cache *sc)
94{
95 sc->addr = (unsigned long)kallsyms_lookup_name(sc->symbol);
96
97 if (sc->addr)
98 sc->addr += sc->offset;
99
100 return sc->addr;
101}
102
103void free_symbol_cache(struct symbol_cache *sc)
104{
105 kfree(sc->symbol);
106 kfree(sc);
107}
108
109struct symbol_cache *alloc_symbol_cache(const char *sym, long offset)
110{
111 struct symbol_cache *sc;
112
113 if (!sym || strlen(sym) == 0)
114 return NULL;
115
116 sc = kzalloc(sizeof(struct symbol_cache), GFP_KERNEL);
117 if (!sc)
118 return NULL;
119
120 sc->symbol = kstrdup(sym, GFP_KERNEL);
121 if (!sc->symbol) {
122 kfree(sc);
123 return NULL;
124 }
125 sc->offset = offset;
126 update_symbol_cache(sc);
127
128 return sc;
129}
130
Namhyung Kim3fd996a2013-11-26 15:21:04 +0900131/*
132 * Kprobes-specific fetch functions
133 */
134#define DEFINE_FETCH_stack(type) \
Masami Hiramatsu3da0f182014-04-17 17:18:28 +0900135static void FETCH_FUNC_NAME(stack, type)(struct pt_regs *regs, \
Namhyung Kim3fd996a2013-11-26 15:21:04 +0900136 void *offset, void *dest) \
137{ \
138 *(type *)dest = (type)regs_get_kernel_stack_nth(regs, \
139 (unsigned int)((unsigned long)offset)); \
Masami Hiramatsu3da0f182014-04-17 17:18:28 +0900140} \
141NOKPROBE_SYMBOL(FETCH_FUNC_NAME(stack, type));
142
Namhyung Kim3fd996a2013-11-26 15:21:04 +0900143DEFINE_BASIC_FETCH_FUNCS(stack)
144/* No string on the stack entry */
145#define fetch_stack_string NULL
146#define fetch_stack_string_size NULL
147
Namhyung Kim5baaa592013-11-26 15:21:04 +0900148#define DEFINE_FETCH_memory(type) \
Masami Hiramatsu3da0f182014-04-17 17:18:28 +0900149static void FETCH_FUNC_NAME(memory, type)(struct pt_regs *regs, \
Namhyung Kim5baaa592013-11-26 15:21:04 +0900150 void *addr, void *dest) \
151{ \
152 type retval; \
153 if (probe_kernel_address(addr, retval)) \
154 *(type *)dest = 0; \
155 else \
156 *(type *)dest = retval; \
Masami Hiramatsu3da0f182014-04-17 17:18:28 +0900157} \
158NOKPROBE_SYMBOL(FETCH_FUNC_NAME(memory, type));
159
Namhyung Kim5baaa592013-11-26 15:21:04 +0900160DEFINE_BASIC_FETCH_FUNCS(memory)
161/*
162 * Fetch a null-terminated string. Caller MUST set *(u32 *)dest with max
163 * length and relative data location.
164 */
Masami Hiramatsu3da0f182014-04-17 17:18:28 +0900165static void FETCH_FUNC_NAME(memory, string)(struct pt_regs *regs,
166 void *addr, void *dest)
Namhyung Kim5baaa592013-11-26 15:21:04 +0900167{
Namhyung Kim5baaa592013-11-26 15:21:04 +0900168 int maxlen = get_rloc_len(*(u32 *)dest);
169 u8 *dst = get_rloc_data(dest);
Alexei Starovoitov1a6877b2015-08-28 15:56:22 -0700170 long ret;
Namhyung Kim5baaa592013-11-26 15:21:04 +0900171
172 if (!maxlen)
173 return;
174
175 /*
176 * Try to get string again, since the string can be changed while
177 * probing.
178 */
Alexei Starovoitov1a6877b2015-08-28 15:56:22 -0700179 ret = strncpy_from_unsafe(dst, addr, maxlen);
Namhyung Kim5baaa592013-11-26 15:21:04 +0900180
181 if (ret < 0) { /* Failed to fetch string */
Alexei Starovoitov1a6877b2015-08-28 15:56:22 -0700182 dst[0] = '\0';
Namhyung Kim5baaa592013-11-26 15:21:04 +0900183 *(u32 *)dest = make_data_rloc(0, get_rloc_offs(*(u32 *)dest));
184 } else {
Alexei Starovoitov1a6877b2015-08-28 15:56:22 -0700185 *(u32 *)dest = make_data_rloc(ret, get_rloc_offs(*(u32 *)dest));
Namhyung Kim5baaa592013-11-26 15:21:04 +0900186 }
187}
Masami Hiramatsu3da0f182014-04-17 17:18:28 +0900188NOKPROBE_SYMBOL(FETCH_FUNC_NAME(memory, string));
Namhyung Kim5baaa592013-11-26 15:21:04 +0900189
190/* Return the length of string -- including null terminal byte */
Masami Hiramatsu3da0f182014-04-17 17:18:28 +0900191static void FETCH_FUNC_NAME(memory, string_size)(struct pt_regs *regs,
192 void *addr, void *dest)
Namhyung Kim5baaa592013-11-26 15:21:04 +0900193{
194 mm_segment_t old_fs;
195 int ret, len = 0;
196 u8 c;
197
198 old_fs = get_fs();
199 set_fs(KERNEL_DS);
200 pagefault_disable();
201
202 do {
203 ret = __copy_from_user_inatomic(&c, (u8 *)addr + len, 1);
204 len++;
205 } while (c && ret == 0 && len < MAX_STRING_SIZE);
206
207 pagefault_enable();
208 set_fs(old_fs);
209
210 if (ret < 0) /* Failed to check the length */
211 *(u32 *)dest = 0;
212 else
213 *(u32 *)dest = len;
214}
Masami Hiramatsu3da0f182014-04-17 17:18:28 +0900215NOKPROBE_SYMBOL(FETCH_FUNC_NAME(memory, string_size));
Namhyung Kim5baaa592013-11-26 15:21:04 +0900216
Namhyung Kim1301a442013-11-26 15:21:04 +0900217#define DEFINE_FETCH_symbol(type) \
Masami Hiramatsu3da0f182014-04-17 17:18:28 +0900218void FETCH_FUNC_NAME(symbol, type)(struct pt_regs *regs, void *data, void *dest)\
Namhyung Kim1301a442013-11-26 15:21:04 +0900219{ \
220 struct symbol_cache *sc = data; \
221 if (sc->addr) \
222 fetch_memory_##type(regs, (void *)sc->addr, dest); \
223 else \
224 *(type *)dest = 0; \
Masami Hiramatsu3da0f182014-04-17 17:18:28 +0900225} \
226NOKPROBE_SYMBOL(FETCH_FUNC_NAME(symbol, type));
227
Namhyung Kim1301a442013-11-26 15:21:04 +0900228DEFINE_BASIC_FETCH_FUNCS(symbol)
229DEFINE_FETCH_symbol(string)
230DEFINE_FETCH_symbol(string_size)
231
Namhyung Kimb7e0bf32013-11-25 13:42:47 +0900232/* kprobes don't support file_offset fetch methods */
233#define fetch_file_offset_u8 NULL
234#define fetch_file_offset_u16 NULL
235#define fetch_file_offset_u32 NULL
236#define fetch_file_offset_u64 NULL
237#define fetch_file_offset_string NULL
238#define fetch_file_offset_string_size NULL
239
Namhyung Kim34fee3a2013-11-26 14:56:28 +0900240/* Fetch type information table */
Stephen Rothwelld9a16d32015-03-12 16:58:34 +1100241static const struct fetch_type kprobes_fetch_type_table[] = {
Namhyung Kim34fee3a2013-11-26 14:56:28 +0900242 /* Special types */
243 [FETCH_TYPE_STRING] = __ASSIGN_FETCH_TYPE("string", string, string,
244 sizeof(u32), 1, "__data_loc char[]"),
245 [FETCH_TYPE_STRSIZE] = __ASSIGN_FETCH_TYPE("string_size", u32,
246 string_size, sizeof(u32), 0, "u32"),
247 /* Basic types */
248 ASSIGN_FETCH_TYPE(u8, u8, 0),
249 ASSIGN_FETCH_TYPE(u16, u16, 0),
250 ASSIGN_FETCH_TYPE(u32, u32, 0),
251 ASSIGN_FETCH_TYPE(u64, u64, 0),
252 ASSIGN_FETCH_TYPE(s8, u8, 1),
253 ASSIGN_FETCH_TYPE(s16, u16, 1),
254 ASSIGN_FETCH_TYPE(s32, u32, 1),
255 ASSIGN_FETCH_TYPE(s64, u64, 1),
Masami Hiramatsu17ce3dc2016-08-18 17:57:50 +0900256 ASSIGN_FETCH_TYPE_ALIAS(x8, u8, u8, 0),
257 ASSIGN_FETCH_TYPE_ALIAS(x16, u16, u16, 0),
258 ASSIGN_FETCH_TYPE_ALIAS(x32, u32, u32, 0),
259 ASSIGN_FETCH_TYPE_ALIAS(x64, u64, u64, 0),
Namhyung Kim34fee3a2013-11-26 14:56:28 +0900260
261 ASSIGN_FETCH_TYPE_END
262};
263
Masami Hiramatsu4a846b42009-09-11 05:31:21 +0200264/*
265 * Allocate new trace_probe and initialize it (including kprobes).
266 */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900267static struct trace_kprobe *alloc_trace_kprobe(const char *group,
Masami Hiramatsuf52487e2009-09-10 19:53:53 -0400268 const char *event,
Masami Hiramatsu4a846b42009-09-11 05:31:21 +0200269 void *addr,
270 const char *symbol,
271 unsigned long offs,
Srikar Dronamraju3a6b7662012-04-09 14:41:33 +0530272 int nargs, bool is_return)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400273{
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900274 struct trace_kprobe *tk;
Masami Hiramatsu6f3cf442009-12-16 17:24:08 -0500275 int ret = -ENOMEM;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400276
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900277 tk = kzalloc(SIZEOF_TRACE_KPROBE(nargs), GFP_KERNEL);
278 if (!tk)
Masami Hiramatsu6f3cf442009-12-16 17:24:08 -0500279 return ERR_PTR(ret);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400280
Martin KaFai Laua7636d92016-02-03 12:28:28 -0800281 tk->nhit = alloc_percpu(unsigned long);
282 if (!tk->nhit)
283 goto error;
284
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400285 if (symbol) {
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900286 tk->symbol = kstrdup(symbol, GFP_KERNEL);
287 if (!tk->symbol)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400288 goto error;
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900289 tk->rp.kp.symbol_name = tk->symbol;
290 tk->rp.kp.offset = offs;
Masami Hiramatsu4a846b42009-09-11 05:31:21 +0200291 } else
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900292 tk->rp.kp.addr = addr;
Masami Hiramatsu4a846b42009-09-11 05:31:21 +0200293
294 if (is_return)
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900295 tk->rp.handler = kretprobe_dispatcher;
Masami Hiramatsu4a846b42009-09-11 05:31:21 +0200296 else
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900297 tk->rp.kp.pre_handler = kprobe_dispatcher;
Masami Hiramatsu4a846b42009-09-11 05:31:21 +0200298
Masami Hiramatsuda346342010-08-27 20:39:12 +0900299 if (!event || !is_good_name(event)) {
Masami Hiramatsu6f3cf442009-12-16 17:24:08 -0500300 ret = -EINVAL;
Masami Hiramatsu42635652009-08-13 16:35:26 -0400301 goto error;
Masami Hiramatsu6f3cf442009-12-16 17:24:08 -0500302 }
303
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900304 tk->tp.call.class = &tk->tp.class;
305 tk->tp.call.name = kstrdup(event, GFP_KERNEL);
306 if (!tk->tp.call.name)
Masami Hiramatsu42635652009-08-13 16:35:26 -0400307 goto error;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400308
Masami Hiramatsuda346342010-08-27 20:39:12 +0900309 if (!group || !is_good_name(group)) {
Masami Hiramatsu6f3cf442009-12-16 17:24:08 -0500310 ret = -EINVAL;
Masami Hiramatsuf52487e2009-09-10 19:53:53 -0400311 goto error;
Masami Hiramatsu6f3cf442009-12-16 17:24:08 -0500312 }
313
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900314 tk->tp.class.system = kstrdup(group, GFP_KERNEL);
315 if (!tk->tp.class.system)
Masami Hiramatsuf52487e2009-09-10 19:53:53 -0400316 goto error;
317
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900318 INIT_LIST_HEAD(&tk->list);
319 INIT_LIST_HEAD(&tk->tp.files);
320 return tk;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400321error:
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900322 kfree(tk->tp.call.name);
323 kfree(tk->symbol);
Martin KaFai Laua7636d92016-02-03 12:28:28 -0800324 free_percpu(tk->nhit);
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900325 kfree(tk);
Masami Hiramatsu6f3cf442009-12-16 17:24:08 -0500326 return ERR_PTR(ret);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400327}
328
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900329static void free_trace_kprobe(struct trace_kprobe *tk)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400330{
331 int i;
332
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900333 for (i = 0; i < tk->tp.nr_args; i++)
334 traceprobe_free_probe_arg(&tk->tp.args[i]);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400335
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900336 kfree(tk->tp.call.class->system);
337 kfree(tk->tp.call.name);
338 kfree(tk->symbol);
Martin KaFai Laua7636d92016-02-03 12:28:28 -0800339 free_percpu(tk->nhit);
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900340 kfree(tk);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400341}
342
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900343static struct trace_kprobe *find_trace_kprobe(const char *event,
344 const char *group)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400345{
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900346 struct trace_kprobe *tk;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400347
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900348 list_for_each_entry(tk, &probe_list, list)
Steven Rostedt (Red Hat)687fcc42015-05-13 14:20:14 -0400349 if (strcmp(trace_event_name(&tk->tp.call), event) == 0 &&
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900350 strcmp(tk->tp.call.class->system, group) == 0)
351 return tk;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400352 return NULL;
353}
354
Oleg Nesterov3fe3d612013-06-20 19:38:09 +0200355/*
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900356 * Enable trace_probe
357 * if the file is NULL, enable "perf" handler, or enable "trace" handler.
358 */
359static int
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400360enable_trace_kprobe(struct trace_kprobe *tk, struct trace_event_file *file)
Masami Hiramatsu1538f882011-06-27 16:26:44 +0900361{
Steven Rostedt (VMware)b985a732018-07-25 22:28:56 -0400362 struct event_file_link *link = NULL;
Masami Hiramatsu1538f882011-06-27 16:26:44 +0900363 int ret = 0;
364
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900365 if (file) {
Oleg Nesterovb04d52e2013-06-20 19:38:14 +0200366 link = kmalloc(sizeof(*link), GFP_KERNEL);
367 if (!link) {
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900368 ret = -ENOMEM;
Oleg Nesterov3fe3d612013-06-20 19:38:09 +0200369 goto out;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900370 }
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900371
Oleg Nesterovb04d52e2013-06-20 19:38:14 +0200372 link->file = file;
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900373 list_add_tail_rcu(&link->list, &tk->tp.files);
Oleg Nesterovb04d52e2013-06-20 19:38:14 +0200374
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900375 tk->tp.flags |= TP_FLAG_TRACE;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900376 } else
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900377 tk->tp.flags |= TP_FLAG_PROFILE;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900378
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900379 if (trace_probe_is_registered(&tk->tp) && !trace_kprobe_has_gone(tk)) {
380 if (trace_kprobe_is_return(tk))
381 ret = enable_kretprobe(&tk->rp);
Masami Hiramatsu1538f882011-06-27 16:26:44 +0900382 else
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900383 ret = enable_kprobe(&tk->rp.kp);
Masami Hiramatsu1538f882011-06-27 16:26:44 +0900384 }
Artem Savkov987e425a2018-07-25 16:20:38 +0200385
386 if (ret) {
387 if (file) {
Steven Rostedt (VMware)b985a732018-07-25 22:28:56 -0400388 /* Notice the if is true on not WARN() */
389 if (!WARN_ON_ONCE(!link))
390 list_del_rcu(&link->list);
Artem Savkov987e425a2018-07-25 16:20:38 +0200391 kfree(link);
392 tk->tp.flags &= ~TP_FLAG_TRACE;
393 } else {
394 tk->tp.flags &= ~TP_FLAG_PROFILE;
395 }
396 }
Oleg Nesterov3fe3d612013-06-20 19:38:09 +0200397 out:
Masami Hiramatsu1538f882011-06-27 16:26:44 +0900398 return ret;
399}
400
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900401/*
402 * Disable trace_probe
403 * if the file is NULL, disable "perf" handler, or disable "trace" handler.
404 */
405static int
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400406disable_trace_kprobe(struct trace_kprobe *tk, struct trace_event_file *file)
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900407{
Masami Hiramatsua232e272013-07-09 18:35:26 +0900408 struct event_file_link *link = NULL;
409 int wait = 0;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900410 int ret = 0;
411
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900412 if (file) {
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900413 link = find_event_file_link(&tk->tp, file);
Oleg Nesterovb04d52e2013-06-20 19:38:14 +0200414 if (!link) {
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900415 ret = -EINVAL;
Oleg Nesterov3fe3d612013-06-20 19:38:09 +0200416 goto out;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900417 }
418
Oleg Nesterovb04d52e2013-06-20 19:38:14 +0200419 list_del_rcu(&link->list);
Masami Hiramatsua232e272013-07-09 18:35:26 +0900420 wait = 1;
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900421 if (!list_empty(&tk->tp.files))
Oleg Nesterovb04d52e2013-06-20 19:38:14 +0200422 goto out;
423
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900424 tk->tp.flags &= ~TP_FLAG_TRACE;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900425 } else
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900426 tk->tp.flags &= ~TP_FLAG_PROFILE;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900427
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900428 if (!trace_probe_is_enabled(&tk->tp) && trace_probe_is_registered(&tk->tp)) {
429 if (trace_kprobe_is_return(tk))
430 disable_kretprobe(&tk->rp);
Masami Hiramatsu1538f882011-06-27 16:26:44 +0900431 else
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900432 disable_kprobe(&tk->rp.kp);
Masami Hiramatsua232e272013-07-09 18:35:26 +0900433 wait = 1;
Masami Hiramatsu1538f882011-06-27 16:26:44 +0900434 }
Oleg Nesterov3fe3d612013-06-20 19:38:09 +0200435 out:
Masami Hiramatsua232e272013-07-09 18:35:26 +0900436 if (wait) {
437 /*
438 * Synchronize with kprobe_trace_func/kretprobe_trace_func
439 * to ensure disabled (all running handlers are finished).
440 * This is not only for kfree(), but also the caller,
441 * trace_remove_event_call() supposes it for releasing
442 * event_call related objects, which will be accessed in
443 * the kprobe_trace_func/kretprobe_trace_func.
444 */
445 synchronize_sched();
446 kfree(link); /* Ignored if link == NULL */
447 }
448
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900449 return ret;
Masami Hiramatsu1538f882011-06-27 16:26:44 +0900450}
451
Masami Hiramatsu61424312011-06-27 16:26:56 +0900452/* Internal register function - just handle k*probes and flags */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900453static int __register_trace_kprobe(struct trace_kprobe *tk)
Masami Hiramatsu61424312011-06-27 16:26:56 +0900454{
Masami Hiramatsu7f6878a2011-06-27 16:27:03 +0900455 int i, ret;
Masami Hiramatsu61424312011-06-27 16:26:56 +0900456
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900457 if (trace_probe_is_registered(&tk->tp))
Masami Hiramatsu61424312011-06-27 16:26:56 +0900458 return -EINVAL;
459
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900460 for (i = 0; i < tk->tp.nr_args; i++)
461 traceprobe_update_arg(&tk->tp.args[i]);
Masami Hiramatsu7f6878a2011-06-27 16:27:03 +0900462
Masami Hiramatsu61424312011-06-27 16:26:56 +0900463 /* Set/clear disabled flag according to tp->flag */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900464 if (trace_probe_is_enabled(&tk->tp))
465 tk->rp.kp.flags &= ~KPROBE_FLAG_DISABLED;
Masami Hiramatsu61424312011-06-27 16:26:56 +0900466 else
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900467 tk->rp.kp.flags |= KPROBE_FLAG_DISABLED;
Masami Hiramatsu61424312011-06-27 16:26:56 +0900468
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900469 if (trace_kprobe_is_return(tk))
470 ret = register_kretprobe(&tk->rp);
Masami Hiramatsu61424312011-06-27 16:26:56 +0900471 else
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900472 ret = register_kprobe(&tk->rp.kp);
Masami Hiramatsu61424312011-06-27 16:26:56 +0900473
474 if (ret == 0)
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900475 tk->tp.flags |= TP_FLAG_REGISTERED;
Masami Hiramatsu61424312011-06-27 16:26:56 +0900476 else {
Joe Perchesa395d6a2016-03-22 14:28:09 -0700477 pr_warn("Could not insert probe at %s+%lu: %d\n",
478 trace_kprobe_symbol(tk), trace_kprobe_offset(tk), ret);
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900479 if (ret == -ENOENT && trace_kprobe_is_on_module(tk)) {
Joe Perchesa395d6a2016-03-22 14:28:09 -0700480 pr_warn("This probe might be able to register after target module is loaded. Continue.\n");
Masami Hiramatsu61424312011-06-27 16:26:56 +0900481 ret = 0;
482 } else if (ret == -EILSEQ) {
Joe Perchesa395d6a2016-03-22 14:28:09 -0700483 pr_warn("Probing address(0x%p) is not an instruction boundary.\n",
484 tk->rp.kp.addr);
Masami Hiramatsu61424312011-06-27 16:26:56 +0900485 ret = -EINVAL;
486 }
487 }
488
489 return ret;
490}
491
492/* Internal unregister function - just handle k*probes and flags */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900493static void __unregister_trace_kprobe(struct trace_kprobe *tk)
Masami Hiramatsu61424312011-06-27 16:26:56 +0900494{
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900495 if (trace_probe_is_registered(&tk->tp)) {
496 if (trace_kprobe_is_return(tk))
497 unregister_kretprobe(&tk->rp);
Masami Hiramatsu61424312011-06-27 16:26:56 +0900498 else
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900499 unregister_kprobe(&tk->rp.kp);
500 tk->tp.flags &= ~TP_FLAG_REGISTERED;
Masami Hiramatsu61424312011-06-27 16:26:56 +0900501 /* Cleanup kprobe for reuse */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900502 if (tk->rp.kp.symbol_name)
503 tk->rp.kp.addr = NULL;
Masami Hiramatsu61424312011-06-27 16:26:56 +0900504 }
505}
506
Masami Hiramatsu2d5e0672009-09-14 16:48:56 -0400507/* Unregister a trace_probe and probe_event: call with locking probe_lock */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900508static int unregister_trace_kprobe(struct trace_kprobe *tk)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400509{
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900510 /* Enabled event can not be unregistered */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900511 if (trace_probe_is_enabled(&tk->tp))
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900512 return -EBUSY;
513
Steven Rostedt (Red Hat)40c32592013-07-03 23:33:50 -0400514 /* Will fail if probe is being used by ftrace or perf */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900515 if (unregister_kprobe_event(tk))
Steven Rostedt (Red Hat)40c32592013-07-03 23:33:50 -0400516 return -EBUSY;
517
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900518 __unregister_trace_kprobe(tk);
519 list_del(&tk->list);
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900520
521 return 0;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400522}
523
524/* Register a trace_probe and probe_event */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900525static int register_trace_kprobe(struct trace_kprobe *tk)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400526{
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900527 struct trace_kprobe *old_tk;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400528 int ret;
529
530 mutex_lock(&probe_lock);
531
Masami Hiramatsu61424312011-06-27 16:26:56 +0900532 /* Delete old (same name) event if exist */
Steven Rostedt (Red Hat)687fcc42015-05-13 14:20:14 -0400533 old_tk = find_trace_kprobe(trace_event_name(&tk->tp.call),
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400534 tk->tp.call.class->system);
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900535 if (old_tk) {
536 ret = unregister_trace_kprobe(old_tk);
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900537 if (ret < 0)
538 goto end;
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900539 free_trace_kprobe(old_tk);
Masami Hiramatsu2d5e0672009-09-14 16:48:56 -0400540 }
Masami Hiramatsu61424312011-06-27 16:26:56 +0900541
542 /* Register new event */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900543 ret = register_kprobe_event(tk);
Masami Hiramatsu2d5e0672009-09-14 16:48:56 -0400544 if (ret) {
Joe Perchesa395d6a2016-03-22 14:28:09 -0700545 pr_warn("Failed to register probe event(%d)\n", ret);
Masami Hiramatsu2d5e0672009-09-14 16:48:56 -0400546 goto end;
547 }
548
Masami Hiramatsu61424312011-06-27 16:26:56 +0900549 /* Register k*probe */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900550 ret = __register_trace_kprobe(tk);
Masami Hiramatsu61424312011-06-27 16:26:56 +0900551 if (ret < 0)
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900552 unregister_kprobe_event(tk);
Masami Hiramatsu61424312011-06-27 16:26:56 +0900553 else
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900554 list_add_tail(&tk->list, &probe_list);
Masami Hiramatsu61424312011-06-27 16:26:56 +0900555
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400556end:
557 mutex_unlock(&probe_lock);
558 return ret;
559}
560
Masami Hiramatsu61424312011-06-27 16:26:56 +0900561/* Module notifier call back, checking event on the module */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900562static int trace_kprobe_module_callback(struct notifier_block *nb,
Masami Hiramatsu61424312011-06-27 16:26:56 +0900563 unsigned long val, void *data)
564{
565 struct module *mod = data;
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900566 struct trace_kprobe *tk;
Masami Hiramatsu61424312011-06-27 16:26:56 +0900567 int ret;
568
569 if (val != MODULE_STATE_COMING)
570 return NOTIFY_DONE;
571
572 /* Update probes on coming module */
573 mutex_lock(&probe_lock);
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900574 list_for_each_entry(tk, &probe_list, list) {
575 if (trace_kprobe_within_module(tk, mod)) {
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900576 /* Don't need to check busy - this should have gone. */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900577 __unregister_trace_kprobe(tk);
578 ret = __register_trace_kprobe(tk);
Masami Hiramatsu61424312011-06-27 16:26:56 +0900579 if (ret)
Joe Perchesa395d6a2016-03-22 14:28:09 -0700580 pr_warn("Failed to re-register probe %s on %s: %d\n",
581 trace_event_name(&tk->tp.call),
582 mod->name, ret);
Masami Hiramatsu61424312011-06-27 16:26:56 +0900583 }
584 }
585 mutex_unlock(&probe_lock);
586
587 return NOTIFY_DONE;
588}
589
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900590static struct notifier_block trace_kprobe_module_nb = {
591 .notifier_call = trace_kprobe_module_callback,
Masami Hiramatsu61424312011-06-27 16:26:56 +0900592 .priority = 1 /* Invoked after kprobe module callback */
593};
594
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900595static int create_trace_kprobe(int argc, char **argv)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400596{
597 /*
598 * Argument syntax:
Masami Hiramatsu61424312011-06-27 16:26:56 +0900599 * - Add kprobe: p[:[GRP/]EVENT] [MOD:]KSYM[+OFFS]|KADDR [FETCHARGS]
600 * - Add kretprobe: r[:[GRP/]EVENT] [MOD:]KSYM[+0] [FETCHARGS]
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400601 * Fetch args:
Masami Hiramatsu2e06ff62009-10-07 18:27:59 -0400602 * $retval : fetch return value
603 * $stack : fetch stack address
604 * $stackN : fetch Nth of stack (N:0-)
Omar Sandoval35abb672016-06-08 18:38:02 -0700605 * $comm : fetch current task comm
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400606 * @ADDR : fetch memory at ADDR (ADDR should be in kernel)
607 * @SYM[+|-offs] : fetch memory at SYM +|- offs (SYM is a data symbol)
608 * %REG : fetch register REG
Masami Hiramatsu93ccae72010-04-12 13:17:08 -0400609 * Dereferencing memory fetch:
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400610 * +|-offs(ARG) : fetch memory at ARG +|- offs address.
Masami Hiramatsueca0d912009-09-10 19:53:38 -0400611 * Alias name of args:
612 * NAME=FETCHARG : set NAME as alias of FETCHARG.
Masami Hiramatsu93ccae72010-04-12 13:17:08 -0400613 * Type of args:
614 * FETCHARG:TYPE : use TYPE instead of unsigned long.
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400615 */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900616 struct trace_kprobe *tk;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400617 int i, ret = 0;
Srikar Dronamraju3a6b7662012-04-09 14:41:33 +0530618 bool is_return = false, is_delete = false;
Masami Hiramatsu93ccae72010-04-12 13:17:08 -0400619 char *symbol = NULL, *event = NULL, *group = NULL;
Masami Hiramatsuda346342010-08-27 20:39:12 +0900620 char *arg;
Masami Hiramatsud434dae2018-03-17 21:38:10 +0900621 long offset = 0;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400622 void *addr = NULL;
Masami Hiramatsu4a846b42009-09-11 05:31:21 +0200623 char buf[MAX_EVENT_NAME_LEN];
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400624
Masami Hiramatsua7c312b2009-12-08 17:03:16 -0500625 /* argc must be >= 1 */
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400626 if (argv[0][0] == 'p')
Srikar Dronamraju3a6b7662012-04-09 14:41:33 +0530627 is_return = false;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400628 else if (argv[0][0] == 'r')
Srikar Dronamraju3a6b7662012-04-09 14:41:33 +0530629 is_return = true;
Masami Hiramatsua7c312b2009-12-08 17:03:16 -0500630 else if (argv[0][0] == '-')
Srikar Dronamraju3a6b7662012-04-09 14:41:33 +0530631 is_delete = true;
Masami Hiramatsue63cc232009-10-16 20:07:28 -0400632 else {
Masami Hiramatsua7c312b2009-12-08 17:03:16 -0500633 pr_info("Probe definition must be started with 'p', 'r' or"
634 " '-'.\n");
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400635 return -EINVAL;
Masami Hiramatsue63cc232009-10-16 20:07:28 -0400636 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400637
638 if (argv[0][1] == ':') {
639 event = &argv[0][2];
Masami Hiramatsuf52487e2009-09-10 19:53:53 -0400640 if (strchr(event, '/')) {
641 group = event;
642 event = strchr(group, '/') + 1;
643 event[-1] = '\0';
644 if (strlen(group) == 0) {
Wenji Huanga5efd922010-02-24 15:40:23 +0800645 pr_info("Group name is not specified\n");
Masami Hiramatsuf52487e2009-09-10 19:53:53 -0400646 return -EINVAL;
647 }
648 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400649 if (strlen(event) == 0) {
Wenji Huanga5efd922010-02-24 15:40:23 +0800650 pr_info("Event name is not specified\n");
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400651 return -EINVAL;
652 }
653 }
Masami Hiramatsua7c312b2009-12-08 17:03:16 -0500654 if (!group)
655 group = KPROBE_EVENT_SYSTEM;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400656
Masami Hiramatsua7c312b2009-12-08 17:03:16 -0500657 if (is_delete) {
658 if (!event) {
659 pr_info("Delete command needs an event name.\n");
660 return -EINVAL;
661 }
Srikar Dronamraju9da79ab2010-06-30 14:15:48 +0530662 mutex_lock(&probe_lock);
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900663 tk = find_trace_kprobe(event, group);
664 if (!tk) {
Srikar Dronamraju9da79ab2010-06-30 14:15:48 +0530665 mutex_unlock(&probe_lock);
Masami Hiramatsua7c312b2009-12-08 17:03:16 -0500666 pr_info("Event %s/%s doesn't exist.\n", group, event);
667 return -ENOENT;
668 }
669 /* delete an event */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900670 ret = unregister_trace_kprobe(tk);
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900671 if (ret == 0)
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900672 free_trace_kprobe(tk);
Srikar Dronamraju9da79ab2010-06-30 14:15:48 +0530673 mutex_unlock(&probe_lock);
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900674 return ret;
Masami Hiramatsua7c312b2009-12-08 17:03:16 -0500675 }
676
677 if (argc < 2) {
678 pr_info("Probe point is not specified.\n");
679 return -EINVAL;
680 }
Sabrina Dubroca36930422017-06-22 11:24:42 +0200681
682 /* try to parse an address. if that fails, try to read the
683 * input as a symbol. */
684 if (kstrtoul(argv[1], 0, (unsigned long *)&addr)) {
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400685 /* a symbol specified */
686 symbol = argv[1];
687 /* TODO: support .init module functions */
Srikar Dronamraju8ab83f52012-04-09 14:41:44 +0530688 ret = traceprobe_split_symbol_offset(symbol, &offset);
Masami Hiramatsud434dae2018-03-17 21:38:10 +0900689 if (ret || offset < 0 || offset > UINT_MAX) {
Sabrina Dubroca36930422017-06-22 11:24:42 +0200690 pr_info("Failed to parse either an address or a symbol.\n");
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400691 return ret;
Masami Hiramatsue63cc232009-10-16 20:07:28 -0400692 }
693 if (offset && is_return) {
694 pr_info("Return probe must be used without offset.\n");
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400695 return -EINVAL;
Masami Hiramatsue63cc232009-10-16 20:07:28 -0400696 }
Sabrina Dubroca36930422017-06-22 11:24:42 +0200697 } else if (is_return) {
698 pr_info("Return probe point must be a symbol.\n");
699 return -EINVAL;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400700 }
Masami Hiramatsua82378d2009-08-13 16:35:18 -0400701 argc -= 2; argv += 2;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400702
703 /* setup a probe */
Masami Hiramatsu42635652009-08-13 16:35:26 -0400704 if (!event) {
705 /* Make a new event name */
Masami Hiramatsu42635652009-08-13 16:35:26 -0400706 if (symbol)
Masami Hiramatsu6f3cf442009-12-16 17:24:08 -0500707 snprintf(buf, MAX_EVENT_NAME_LEN, "%c_%s_%ld",
Masami Hiramatsu42635652009-08-13 16:35:26 -0400708 is_return ? 'r' : 'p', symbol, offset);
709 else
Masami Hiramatsu6f3cf442009-12-16 17:24:08 -0500710 snprintf(buf, MAX_EVENT_NAME_LEN, "%c_0x%p",
Masami Hiramatsu42635652009-08-13 16:35:26 -0400711 is_return ? 'r' : 'p', addr);
Masami Hiramatsu4a846b42009-09-11 05:31:21 +0200712 event = buf;
713 }
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900714 tk = alloc_trace_kprobe(group, event, addr, symbol, offset, argc,
Masami Hiramatsuf52487e2009-09-10 19:53:53 -0400715 is_return);
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900716 if (IS_ERR(tk)) {
Masami Hiramatsue63cc232009-10-16 20:07:28 -0400717 pr_info("Failed to allocate trace_probe.(%d)\n",
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900718 (int)PTR_ERR(tk));
719 return PTR_ERR(tk);
Masami Hiramatsue63cc232009-10-16 20:07:28 -0400720 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400721
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400722 /* parse arguments */
Masami Hiramatsua82378d2009-08-13 16:35:18 -0400723 ret = 0;
724 for (i = 0; i < argc && i < MAX_TRACE_ARGS; i++) {
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900725 struct probe_arg *parg = &tk->tp.args[i];
726
Masami Hiramatsu61a52732010-08-27 20:38:46 +0900727 /* Increment count for freeing args in error case */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900728 tk->tp.nr_args++;
Masami Hiramatsu61a52732010-08-27 20:38:46 +0900729
Masami Hiramatsueca0d912009-09-10 19:53:38 -0400730 /* Parse argument name */
731 arg = strchr(argv[i], '=');
Masami Hiramatsuaba91592010-08-27 20:39:06 +0900732 if (arg) {
Masami Hiramatsueca0d912009-09-10 19:53:38 -0400733 *arg++ = '\0';
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900734 parg->name = kstrdup(argv[i], GFP_KERNEL);
Masami Hiramatsuaba91592010-08-27 20:39:06 +0900735 } else {
Masami Hiramatsueca0d912009-09-10 19:53:38 -0400736 arg = argv[i];
Masami Hiramatsuaba91592010-08-27 20:39:06 +0900737 /* If argument name is omitted, set "argN" */
738 snprintf(buf, MAX_EVENT_NAME_LEN, "arg%d", i + 1);
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900739 parg->name = kstrdup(buf, GFP_KERNEL);
Masami Hiramatsuaba91592010-08-27 20:39:06 +0900740 }
Masami Hiramatsua703d942009-10-07 18:28:07 -0400741
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900742 if (!parg->name) {
Masami Hiramatsuaba91592010-08-27 20:39:06 +0900743 pr_info("Failed to allocate argument[%d] name.\n", i);
Masami Hiramatsuba8665d2009-11-30 19:19:20 -0500744 ret = -ENOMEM;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400745 goto error;
746 }
Masami Hiramatsuda346342010-08-27 20:39:12 +0900747
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900748 if (!is_good_name(parg->name)) {
Masami Hiramatsuda346342010-08-27 20:39:12 +0900749 pr_info("Invalid argument[%d] name: %s\n",
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900750 i, parg->name);
Masami Hiramatsuda346342010-08-27 20:39:12 +0900751 ret = -EINVAL;
752 goto error;
753 }
Masami Hiramatsu93ccae72010-04-12 13:17:08 -0400754
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900755 if (traceprobe_conflict_field_name(parg->name,
756 tk->tp.args, i)) {
Masami Hiramatsuaba91592010-08-27 20:39:06 +0900757 pr_info("Argument[%d] name '%s' conflicts with "
Masami Hiramatsu93ccae72010-04-12 13:17:08 -0400758 "another field.\n", i, argv[i]);
759 ret = -EINVAL;
760 goto error;
761 }
Masami Hiramatsuba8665d2009-11-30 19:19:20 -0500762
763 /* Parse fetch argument */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900764 ret = traceprobe_parse_probe_arg(arg, &tk->tp.size, parg,
Stephen Rothwelld9a16d32015-03-12 16:58:34 +1100765 is_return, true,
766 kprobes_fetch_type_table);
Masami Hiramatsue63cc232009-10-16 20:07:28 -0400767 if (ret) {
Masami Hiramatsuaba91592010-08-27 20:39:06 +0900768 pr_info("Parse error at argument[%d]. (%d)\n", i, ret);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400769 goto error;
Masami Hiramatsue63cc232009-10-16 20:07:28 -0400770 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400771 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400772
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900773 ret = register_trace_kprobe(tk);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400774 if (ret)
775 goto error;
776 return 0;
777
778error:
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900779 free_trace_kprobe(tk);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400780 return ret;
781}
782
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900783static int release_all_trace_kprobes(void)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400784{
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900785 struct trace_kprobe *tk;
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900786 int ret = 0;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400787
788 mutex_lock(&probe_lock);
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900789 /* Ensure no probe is in use. */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900790 list_for_each_entry(tk, &probe_list, list)
791 if (trace_probe_is_enabled(&tk->tp)) {
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900792 ret = -EBUSY;
793 goto end;
794 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400795 /* TODO: Use batch unregistration */
796 while (!list_empty(&probe_list)) {
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900797 tk = list_entry(probe_list.next, struct trace_kprobe, list);
798 ret = unregister_trace_kprobe(tk);
Steven Rostedt (Red Hat)40c32592013-07-03 23:33:50 -0400799 if (ret)
800 goto end;
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900801 free_trace_kprobe(tk);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400802 }
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900803
804end:
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400805 mutex_unlock(&probe_lock);
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900806
807 return ret;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400808}
809
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400810/* Probes listing interfaces */
811static void *probes_seq_start(struct seq_file *m, loff_t *pos)
812{
813 mutex_lock(&probe_lock);
814 return seq_list_start(&probe_list, *pos);
815}
816
817static void *probes_seq_next(struct seq_file *m, void *v, loff_t *pos)
818{
819 return seq_list_next(v, &probe_list, pos);
820}
821
822static void probes_seq_stop(struct seq_file *m, void *v)
823{
824 mutex_unlock(&probe_lock);
825}
826
827static int probes_seq_show(struct seq_file *m, void *v)
828{
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900829 struct trace_kprobe *tk = v;
Masami Hiramatsu93ccae72010-04-12 13:17:08 -0400830 int i;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400831
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100832 seq_putc(m, trace_kprobe_is_return(tk) ? 'r' : 'p');
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400833 seq_printf(m, ":%s/%s", tk->tp.call.class->system,
Steven Rostedt (Red Hat)687fcc42015-05-13 14:20:14 -0400834 trace_event_name(&tk->tp.call));
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400835
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900836 if (!tk->symbol)
837 seq_printf(m, " 0x%p", tk->rp.kp.addr);
838 else if (tk->rp.kp.offset)
839 seq_printf(m, " %s+%u", trace_kprobe_symbol(tk),
840 tk->rp.kp.offset);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400841 else
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900842 seq_printf(m, " %s", trace_kprobe_symbol(tk));
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400843
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900844 for (i = 0; i < tk->tp.nr_args; i++)
845 seq_printf(m, " %s=%s", tk->tp.args[i].name, tk->tp.args[i].comm);
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100846 seq_putc(m, '\n');
Masami Hiramatsu93ccae72010-04-12 13:17:08 -0400847
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400848 return 0;
849}
850
851static const struct seq_operations probes_seq_op = {
852 .start = probes_seq_start,
853 .next = probes_seq_next,
854 .stop = probes_seq_stop,
855 .show = probes_seq_show
856};
857
858static int probes_open(struct inode *inode, struct file *file)
859{
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900860 int ret;
861
862 if ((file->f_mode & FMODE_WRITE) && (file->f_flags & O_TRUNC)) {
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900863 ret = release_all_trace_kprobes();
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900864 if (ret < 0)
865 return ret;
866 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400867
868 return seq_open(file, &probes_seq_op);
869}
870
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400871static ssize_t probes_write(struct file *file, const char __user *buffer,
872 size_t count, loff_t *ppos)
873{
Srikar Dronamraju8ab83f52012-04-09 14:41:44 +0530874 return traceprobe_probes_write(file, buffer, count, ppos,
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900875 create_trace_kprobe);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400876}
877
878static const struct file_operations kprobe_events_ops = {
879 .owner = THIS_MODULE,
880 .open = probes_open,
881 .read = seq_read,
882 .llseek = seq_lseek,
883 .release = seq_release,
884 .write = probes_write,
885};
886
Masami Hiramatsucd7e7bd2009-08-13 16:35:42 -0400887/* Probes profiling interfaces */
888static int probes_profile_seq_show(struct seq_file *m, void *v)
889{
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900890 struct trace_kprobe *tk = v;
Martin KaFai Laua7636d92016-02-03 12:28:28 -0800891 unsigned long nhit = 0;
892 int cpu;
893
894 for_each_possible_cpu(cpu)
895 nhit += *per_cpu_ptr(tk->nhit, cpu);
Masami Hiramatsucd7e7bd2009-08-13 16:35:42 -0400896
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400897 seq_printf(m, " %-44s %15lu %15lu\n",
Martin KaFai Laua7636d92016-02-03 12:28:28 -0800898 trace_event_name(&tk->tp.call), nhit,
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900899 tk->rp.kp.nmissed);
Masami Hiramatsucd7e7bd2009-08-13 16:35:42 -0400900
901 return 0;
902}
903
904static const struct seq_operations profile_seq_op = {
905 .start = probes_seq_start,
906 .next = probes_seq_next,
907 .stop = probes_seq_stop,
908 .show = probes_profile_seq_show
909};
910
911static int profile_open(struct inode *inode, struct file *file)
912{
913 return seq_open(file, &profile_seq_op);
914}
915
916static const struct file_operations kprobe_profile_ops = {
917 .owner = THIS_MODULE,
918 .open = profile_open,
919 .read = seq_read,
920 .llseek = seq_lseek,
921 .release = seq_release,
922};
923
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400924/* Kprobe handler */
Masami Hiramatsu3da0f182014-04-17 17:18:28 +0900925static nokprobe_inline void
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900926__kprobe_trace_func(struct trace_kprobe *tk, struct pt_regs *regs,
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400927 struct trace_event_file *trace_file)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400928{
Masami Hiramatsu93ccae72010-04-12 13:17:08 -0400929 struct kprobe_trace_entry_head *entry;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400930 struct ring_buffer_event *event;
Frederic Weisbecker8f8ffe22009-09-11 01:09:23 +0200931 struct ring_buffer *buffer;
Masami Hiramatsue09c8612010-07-05 15:54:45 -0300932 int size, dsize, pc;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400933 unsigned long irq_flags;
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400934 struct trace_event_call *call = &tk->tp.call;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400935
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400936 WARN_ON(call != trace_file->event_call);
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900937
Steven Rostedt (Red Hat)09a50592015-05-13 15:21:25 -0400938 if (trace_trigger_soft_disabled(trace_file))
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500939 return;
Masami Hiramatsub8820082013-05-09 14:44:54 +0900940
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400941 local_save_flags(irq_flags);
942 pc = preempt_count();
943
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900944 dsize = __get_data_size(&tk->tp, regs);
945 size = sizeof(*entry) + tk->tp.size + dsize;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400946
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400947 event = trace_event_buffer_lock_reserve(&buffer, trace_file,
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900948 call->event.type,
949 size, irq_flags, pc);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400950 if (!event)
Xiao Guangrong1e12a4a2010-01-28 09:34:27 +0800951 return;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400952
953 entry = ring_buffer_event_data(event);
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900954 entry->ip = (unsigned long)tk->rp.kp.addr;
955 store_trace_args(sizeof(*entry), &tk->tp, regs, (u8 *)&entry[1], dsize);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400956
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400957 event_trigger_unlock_commit_regs(trace_file, buffer, event,
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500958 entry, irq_flags, pc, regs);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400959}
960
Masami Hiramatsu3da0f182014-04-17 17:18:28 +0900961static void
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900962kprobe_trace_func(struct trace_kprobe *tk, struct pt_regs *regs)
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900963{
Oleg Nesterovb04d52e2013-06-20 19:38:14 +0200964 struct event_file_link *link;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900965
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900966 list_for_each_entry_rcu(link, &tk->tp.files, list)
967 __kprobe_trace_func(tk, regs, link->file);
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900968}
Masami Hiramatsu3da0f182014-04-17 17:18:28 +0900969NOKPROBE_SYMBOL(kprobe_trace_func);
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900970
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400971/* Kretprobe handler */
Masami Hiramatsu3da0f182014-04-17 17:18:28 +0900972static nokprobe_inline void
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900973__kretprobe_trace_func(struct trace_kprobe *tk, struct kretprobe_instance *ri,
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900974 struct pt_regs *regs,
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400975 struct trace_event_file *trace_file)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400976{
Masami Hiramatsu93ccae72010-04-12 13:17:08 -0400977 struct kretprobe_trace_entry_head *entry;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400978 struct ring_buffer_event *event;
Frederic Weisbecker8f8ffe22009-09-11 01:09:23 +0200979 struct ring_buffer *buffer;
Masami Hiramatsue09c8612010-07-05 15:54:45 -0300980 int size, pc, dsize;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400981 unsigned long irq_flags;
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400982 struct trace_event_call *call = &tk->tp.call;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400983
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400984 WARN_ON(call != trace_file->event_call);
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900985
Steven Rostedt (Red Hat)09a50592015-05-13 15:21:25 -0400986 if (trace_trigger_soft_disabled(trace_file))
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500987 return;
Masami Hiramatsub8820082013-05-09 14:44:54 +0900988
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400989 local_save_flags(irq_flags);
990 pc = preempt_count();
991
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900992 dsize = __get_data_size(&tk->tp, regs);
993 size = sizeof(*entry) + tk->tp.size + dsize;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400994
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400995 event = trace_event_buffer_lock_reserve(&buffer, trace_file,
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900996 call->event.type,
997 size, irq_flags, pc);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400998 if (!event)
Xiao Guangrong1e12a4a2010-01-28 09:34:27 +0800999 return;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001000
1001 entry = ring_buffer_event_data(event);
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001002 entry->func = (unsigned long)tk->rp.kp.addr;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001003 entry->ret_ip = (unsigned long)ri->ret_addr;
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001004 store_trace_args(sizeof(*entry), &tk->tp, regs, (u8 *)&entry[1], dsize);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001005
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -04001006 event_trigger_unlock_commit_regs(trace_file, buffer, event,
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -05001007 entry, irq_flags, pc, regs);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001008}
1009
Masami Hiramatsu3da0f182014-04-17 17:18:28 +09001010static void
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001011kretprobe_trace_func(struct trace_kprobe *tk, struct kretprobe_instance *ri,
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001012 struct pt_regs *regs)
1013{
Oleg Nesterovb04d52e2013-06-20 19:38:14 +02001014 struct event_file_link *link;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001015
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001016 list_for_each_entry_rcu(link, &tk->tp.files, list)
1017 __kretprobe_trace_func(tk, ri, regs, link->file);
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001018}
Masami Hiramatsu3da0f182014-04-17 17:18:28 +09001019NOKPROBE_SYMBOL(kretprobe_trace_func);
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001020
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001021/* Event entry printers */
Masami Hiramatsub62fdd92013-05-13 20:58:39 +09001022static enum print_line_t
Steven Rostedta9a57762010-04-22 18:46:14 -04001023print_kprobe_event(struct trace_iterator *iter, int flags,
1024 struct trace_event *event)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001025{
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001026 struct kprobe_trace_entry_head *field;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001027 struct trace_seq *s = &iter->seq;
Masami Hiramatsueca0d912009-09-10 19:53:38 -04001028 struct trace_probe *tp;
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001029 u8 *data;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001030 int i;
1031
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001032 field = (struct kprobe_trace_entry_head *)iter->ent;
Steven Rostedt80decc72010-04-23 10:00:22 -04001033 tp = container_of(event, struct trace_probe, call.event);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001034
Steven Rostedt (Red Hat)687fcc42015-05-13 14:20:14 -04001035 trace_seq_printf(s, "%s: (", trace_event_name(&tp->call));
Masami Hiramatsu6e9f23d2009-09-10 19:53:45 -04001036
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001037 if (!seq_print_ip_sym(s, field->ip, flags | TRACE_ITER_SYM_OFFSET))
Steven Rostedt (Red Hat)85224da2014-11-12 15:18:16 -05001038 goto out;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001039
Steven Rostedt (Red Hat)85224da2014-11-12 15:18:16 -05001040 trace_seq_putc(s, ')');
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001041
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001042 data = (u8 *)&field[1];
1043 for (i = 0; i < tp->nr_args; i++)
1044 if (!tp->args[i].type->print(s, tp->args[i].name,
Masami Hiramatsue09c8612010-07-05 15:54:45 -03001045 data + tp->args[i].offset, field))
Steven Rostedt (Red Hat)85224da2014-11-12 15:18:16 -05001046 goto out;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001047
Steven Rostedt (Red Hat)85224da2014-11-12 15:18:16 -05001048 trace_seq_putc(s, '\n');
1049 out:
1050 return trace_handle_return(s);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001051}
1052
Masami Hiramatsub62fdd92013-05-13 20:58:39 +09001053static enum print_line_t
Steven Rostedta9a57762010-04-22 18:46:14 -04001054print_kretprobe_event(struct trace_iterator *iter, int flags,
1055 struct trace_event *event)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001056{
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001057 struct kretprobe_trace_entry_head *field;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001058 struct trace_seq *s = &iter->seq;
Masami Hiramatsueca0d912009-09-10 19:53:38 -04001059 struct trace_probe *tp;
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001060 u8 *data;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001061 int i;
1062
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001063 field = (struct kretprobe_trace_entry_head *)iter->ent;
Steven Rostedt80decc72010-04-23 10:00:22 -04001064 tp = container_of(event, struct trace_probe, call.event);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001065
Steven Rostedt (Red Hat)687fcc42015-05-13 14:20:14 -04001066 trace_seq_printf(s, "%s: (", trace_event_name(&tp->call));
Masami Hiramatsu6e9f23d2009-09-10 19:53:45 -04001067
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001068 if (!seq_print_ip_sym(s, field->ret_ip, flags | TRACE_ITER_SYM_OFFSET))
Steven Rostedt (Red Hat)85224da2014-11-12 15:18:16 -05001069 goto out;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001070
Steven Rostedt (Red Hat)85224da2014-11-12 15:18:16 -05001071 trace_seq_puts(s, " <- ");
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001072
1073 if (!seq_print_ip_sym(s, field->func, flags & ~TRACE_ITER_SYM_OFFSET))
Steven Rostedt (Red Hat)85224da2014-11-12 15:18:16 -05001074 goto out;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001075
Steven Rostedt (Red Hat)85224da2014-11-12 15:18:16 -05001076 trace_seq_putc(s, ')');
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001077
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001078 data = (u8 *)&field[1];
1079 for (i = 0; i < tp->nr_args; i++)
1080 if (!tp->args[i].type->print(s, tp->args[i].name,
Masami Hiramatsue09c8612010-07-05 15:54:45 -03001081 data + tp->args[i].offset, field))
Steven Rostedt (Red Hat)85224da2014-11-12 15:18:16 -05001082 goto out;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001083
Steven Rostedt (Red Hat)85224da2014-11-12 15:18:16 -05001084 trace_seq_putc(s, '\n');
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001085
Steven Rostedt (Red Hat)85224da2014-11-12 15:18:16 -05001086 out:
1087 return trace_handle_return(s);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001088}
1089
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001090
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -04001091static int kprobe_event_define_fields(struct trace_event_call *event_call)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001092{
1093 int ret, i;
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001094 struct kprobe_trace_entry_head field;
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001095 struct trace_kprobe *tk = (struct trace_kprobe *)event_call->data;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001096
Masami Hiramatsua703d942009-10-07 18:28:07 -04001097 DEFINE_FIELD(unsigned long, ip, FIELD_STRING_IP, 0);
Masami Hiramatsueca0d912009-09-10 19:53:38 -04001098 /* Set argument names as fields */
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001099 for (i = 0; i < tk->tp.nr_args; i++) {
1100 struct probe_arg *parg = &tk->tp.args[i];
1101
1102 ret = trace_define_field(event_call, parg->type->fmttype,
1103 parg->name,
1104 sizeof(field) + parg->offset,
1105 parg->type->size,
1106 parg->type->is_signed,
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001107 FILTER_OTHER);
1108 if (ret)
1109 return ret;
1110 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001111 return 0;
1112}
1113
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -04001114static int kretprobe_event_define_fields(struct trace_event_call *event_call)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001115{
1116 int ret, i;
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001117 struct kretprobe_trace_entry_head field;
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001118 struct trace_kprobe *tk = (struct trace_kprobe *)event_call->data;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001119
Masami Hiramatsua703d942009-10-07 18:28:07 -04001120 DEFINE_FIELD(unsigned long, func, FIELD_STRING_FUNC, 0);
1121 DEFINE_FIELD(unsigned long, ret_ip, FIELD_STRING_RETIP, 0);
Masami Hiramatsueca0d912009-09-10 19:53:38 -04001122 /* Set argument names as fields */
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001123 for (i = 0; i < tk->tp.nr_args; i++) {
1124 struct probe_arg *parg = &tk->tp.args[i];
1125
1126 ret = trace_define_field(event_call, parg->type->fmttype,
1127 parg->name,
1128 sizeof(field) + parg->offset,
1129 parg->type->size,
1130 parg->type->is_signed,
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001131 FILTER_OTHER);
1132 if (ret)
1133 return ret;
1134 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001135 return 0;
1136}
1137
Li Zefan07b139c2009-12-21 14:27:35 +08001138#ifdef CONFIG_PERF_EVENTS
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001139
1140/* Kprobe profile handler */
Masami Hiramatsu3da0f182014-04-17 17:18:28 +09001141static void
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001142kprobe_perf_func(struct trace_kprobe *tk, struct pt_regs *regs)
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001143{
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -04001144 struct trace_event_call *call = &tk->tp.call;
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001145 struct kprobe_trace_entry_head *entry;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02001146 struct hlist_head *head;
Masami Hiramatsue09c8612010-07-05 15:54:45 -03001147 int size, __size, dsize;
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01001148 int rctx;
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001149
Yonghong Song265229d2017-10-23 23:53:08 -07001150 if (bpf_prog_array_valid(call) && !trace_call_bpf(call, regs))
Alexei Starovoitov25415172015-03-25 12:49:20 -07001151 return;
1152
Oleg Nesterov288e9842013-06-20 19:38:06 +02001153 head = this_cpu_ptr(call->perf_events);
1154 if (hlist_empty(head))
1155 return;
1156
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001157 dsize = __get_data_size(&tk->tp, regs);
1158 __size = sizeof(*entry) + tk->tp.size + dsize;
Masami Hiramatsu74ebb632009-09-14 16:49:28 -04001159 size = ALIGN(__size + sizeof(u32), sizeof(u64));
1160 size -= sizeof(u32);
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001161
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07001162 entry = perf_trace_buf_alloc(size, NULL, &rctx);
Xiao Guangrong430ad5a2010-01-28 09:32:29 +08001163 if (!entry)
Xiao Guangrong1e12a4a2010-01-28 09:34:27 +08001164 return;
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01001165
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001166 entry->ip = (unsigned long)tk->rp.kp.addr;
Masami Hiramatsue09c8612010-07-05 15:54:45 -03001167 memset(&entry[1], 0, dsize);
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001168 store_trace_args(sizeof(*entry), &tk->tp, regs, (u8 *)&entry[1], dsize);
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07001169 perf_trace_buf_submit(entry, size, rctx, call->event.type, 1, regs,
1170 head, NULL);
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001171}
Masami Hiramatsu3da0f182014-04-17 17:18:28 +09001172NOKPROBE_SYMBOL(kprobe_perf_func);
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001173
1174/* Kretprobe profile handler */
Masami Hiramatsu3da0f182014-04-17 17:18:28 +09001175static void
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001176kretprobe_perf_func(struct trace_kprobe *tk, struct kretprobe_instance *ri,
Masami Hiramatsu2b106aa2013-05-09 14:44:41 +09001177 struct pt_regs *regs)
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001178{
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -04001179 struct trace_event_call *call = &tk->tp.call;
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001180 struct kretprobe_trace_entry_head *entry;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02001181 struct hlist_head *head;
Masami Hiramatsue09c8612010-07-05 15:54:45 -03001182 int size, __size, dsize;
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01001183 int rctx;
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001184
Yonghong Song265229d2017-10-23 23:53:08 -07001185 if (bpf_prog_array_valid(call) && !trace_call_bpf(call, regs))
Alexei Starovoitov25415172015-03-25 12:49:20 -07001186 return;
1187
Oleg Nesterov288e9842013-06-20 19:38:06 +02001188 head = this_cpu_ptr(call->perf_events);
1189 if (hlist_empty(head))
1190 return;
1191
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001192 dsize = __get_data_size(&tk->tp, regs);
1193 __size = sizeof(*entry) + tk->tp.size + dsize;
Masami Hiramatsu74ebb632009-09-14 16:49:28 -04001194 size = ALIGN(__size + sizeof(u32), sizeof(u64));
1195 size -= sizeof(u32);
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001196
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07001197 entry = perf_trace_buf_alloc(size, NULL, &rctx);
Xiao Guangrong430ad5a2010-01-28 09:32:29 +08001198 if (!entry)
Xiao Guangrong1e12a4a2010-01-28 09:34:27 +08001199 return;
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01001200
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001201 entry->func = (unsigned long)tk->rp.kp.addr;
Masami Hiramatsua1a138d2009-09-25 11:20:12 -07001202 entry->ret_ip = (unsigned long)ri->ret_addr;
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001203 store_trace_args(sizeof(*entry), &tk->tp, regs, (u8 *)&entry[1], dsize);
Alexei Starovoitov1e1dcd92016-04-06 18:43:24 -07001204 perf_trace_buf_submit(entry, size, rctx, call->event.type, 1, regs,
1205 head, NULL);
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001206}
Masami Hiramatsu3da0f182014-04-17 17:18:28 +09001207NOKPROBE_SYMBOL(kretprobe_perf_func);
Li Zefan07b139c2009-12-21 14:27:35 +08001208#endif /* CONFIG_PERF_EVENTS */
Masami Hiramatsu50d78052009-09-14 16:49:20 -04001209
Oleg Nesterov3fe3d612013-06-20 19:38:09 +02001210/*
1211 * called by perf_trace_init() or __ftrace_set_clr_event() under event_mutex.
1212 *
1213 * kprobe_trace_self_tests_init() does enable_trace_probe/disable_trace_probe
1214 * lockless, but we can't race with this __init function.
1215 */
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -04001216static int kprobe_register(struct trace_event_call *event,
Masami Hiramatsufbc19632014-04-17 17:18:00 +09001217 enum trace_reg type, void *data)
Steven Rostedt22392912010-04-21 12:27:06 -04001218{
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001219 struct trace_kprobe *tk = (struct trace_kprobe *)event->data;
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -04001220 struct trace_event_file *file = data;
Masami Hiramatsu1538f882011-06-27 16:26:44 +09001221
Steven Rostedt22392912010-04-21 12:27:06 -04001222 switch (type) {
1223 case TRACE_REG_REGISTER:
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001224 return enable_trace_kprobe(tk, file);
Steven Rostedt22392912010-04-21 12:27:06 -04001225 case TRACE_REG_UNREGISTER:
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001226 return disable_trace_kprobe(tk, file);
Steven Rostedt22392912010-04-21 12:27:06 -04001227
1228#ifdef CONFIG_PERF_EVENTS
1229 case TRACE_REG_PERF_REGISTER:
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001230 return enable_trace_kprobe(tk, NULL);
Steven Rostedt22392912010-04-21 12:27:06 -04001231 case TRACE_REG_PERF_UNREGISTER:
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001232 return disable_trace_kprobe(tk, NULL);
Jiri Olsaceec0b62012-02-15 15:51:49 +01001233 case TRACE_REG_PERF_OPEN:
1234 case TRACE_REG_PERF_CLOSE:
Jiri Olsa489c75c2012-02-15 15:51:50 +01001235 case TRACE_REG_PERF_ADD:
1236 case TRACE_REG_PERF_DEL:
Jiri Olsaceec0b62012-02-15 15:51:49 +01001237 return 0;
Steven Rostedt22392912010-04-21 12:27:06 -04001238#endif
1239 }
1240 return 0;
1241}
Masami Hiramatsu50d78052009-09-14 16:49:20 -04001242
Masami Hiramatsu3da0f182014-04-17 17:18:28 +09001243static int kprobe_dispatcher(struct kprobe *kp, struct pt_regs *regs)
Masami Hiramatsu50d78052009-09-14 16:49:20 -04001244{
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001245 struct trace_kprobe *tk = container_of(kp, struct trace_kprobe, rp.kp);
Masami Hiramatsu50d78052009-09-14 16:49:20 -04001246
Martin KaFai Laua7636d92016-02-03 12:28:28 -08001247 raw_cpu_inc(*tk->nhit);
Masami Hiramatsu48182bd2013-05-09 14:44:36 +09001248
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001249 if (tk->tp.flags & TP_FLAG_TRACE)
1250 kprobe_trace_func(tk, regs);
Li Zefan07b139c2009-12-21 14:27:35 +08001251#ifdef CONFIG_PERF_EVENTS
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001252 if (tk->tp.flags & TP_FLAG_PROFILE)
1253 kprobe_perf_func(tk, regs);
Li Zefan07b139c2009-12-21 14:27:35 +08001254#endif
Masami Hiramatsu50d78052009-09-14 16:49:20 -04001255 return 0; /* We don't tweek kernel, so just return 0 */
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001256}
Masami Hiramatsu3da0f182014-04-17 17:18:28 +09001257NOKPROBE_SYMBOL(kprobe_dispatcher);
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001258
Masami Hiramatsu3da0f182014-04-17 17:18:28 +09001259static int
1260kretprobe_dispatcher(struct kretprobe_instance *ri, struct pt_regs *regs)
Masami Hiramatsu50d78052009-09-14 16:49:20 -04001261{
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001262 struct trace_kprobe *tk = container_of(ri->rp, struct trace_kprobe, rp);
Masami Hiramatsu50d78052009-09-14 16:49:20 -04001263
Martin KaFai Laua7636d92016-02-03 12:28:28 -08001264 raw_cpu_inc(*tk->nhit);
Masami Hiramatsu48182bd2013-05-09 14:44:36 +09001265
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001266 if (tk->tp.flags & TP_FLAG_TRACE)
1267 kretprobe_trace_func(tk, ri, regs);
Li Zefan07b139c2009-12-21 14:27:35 +08001268#ifdef CONFIG_PERF_EVENTS
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001269 if (tk->tp.flags & TP_FLAG_PROFILE)
1270 kretprobe_perf_func(tk, ri, regs);
Li Zefan07b139c2009-12-21 14:27:35 +08001271#endif
Masami Hiramatsu50d78052009-09-14 16:49:20 -04001272 return 0; /* We don't tweek kernel, so just return 0 */
1273}
Masami Hiramatsu3da0f182014-04-17 17:18:28 +09001274NOKPROBE_SYMBOL(kretprobe_dispatcher);
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001275
Steven Rostedta9a57762010-04-22 18:46:14 -04001276static struct trace_event_functions kretprobe_funcs = {
1277 .trace = print_kretprobe_event
1278};
1279
1280static struct trace_event_functions kprobe_funcs = {
1281 .trace = print_kprobe_event
1282};
1283
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001284static int register_kprobe_event(struct trace_kprobe *tk)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001285{
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -04001286 struct trace_event_call *call = &tk->tp.call;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001287 int ret;
1288
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -04001289 /* Initialize trace_event_call */
Li Zefanffb9f992010-05-24 16:24:52 +08001290 INIT_LIST_HEAD(&call->class->fields);
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001291 if (trace_kprobe_is_return(tk)) {
Steven Rostedt80decc72010-04-23 10:00:22 -04001292 call->event.funcs = &kretprobe_funcs;
Steven Rostedt2e33af02010-04-22 10:35:55 -04001293 call->class->define_fields = kretprobe_event_define_fields;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001294 } else {
Steven Rostedt80decc72010-04-23 10:00:22 -04001295 call->event.funcs = &kprobe_funcs;
Steven Rostedt2e33af02010-04-22 10:35:55 -04001296 call->class->define_fields = kprobe_event_define_fields;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001297 }
Namhyung Kim5bf652a2013-07-03 16:09:02 +09001298 if (set_print_fmt(&tk->tp, trace_kprobe_is_return(tk)) < 0)
Lai Jiangshana342a0282009-12-15 15:39:49 +08001299 return -ENOMEM;
Steven Rostedt (Red Hat)9023c932015-05-05 09:39:12 -04001300 ret = register_trace_event(&call->event);
Steven Rostedt32c0eda2010-04-23 10:38:03 -04001301 if (!ret) {
Lai Jiangshana342a0282009-12-15 15:39:49 +08001302 kfree(call->print_fmt);
Masami Hiramatsuff50d992009-08-13 16:35:34 -04001303 return -ENODEV;
Lai Jiangshana342a0282009-12-15 15:39:49 +08001304 }
Alexei Starovoitov72cbbc82015-03-25 12:49:19 -07001305 call->flags = TRACE_EVENT_FL_KPROBE;
Steven Rostedt22392912010-04-21 12:27:06 -04001306 call->class->reg = kprobe_register;
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001307 call->data = tk;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001308 ret = trace_add_event_call(call);
Masami Hiramatsuff50d992009-08-13 16:35:34 -04001309 if (ret) {
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -04001310 pr_info("Failed to register kprobe event: %s\n",
Steven Rostedt (Red Hat)687fcc42015-05-13 14:20:14 -04001311 trace_event_name(call));
Lai Jiangshana342a0282009-12-15 15:39:49 +08001312 kfree(call->print_fmt);
Steven Rostedt (Red Hat)9023c932015-05-05 09:39:12 -04001313 unregister_trace_event(&call->event);
Masami Hiramatsuff50d992009-08-13 16:35:34 -04001314 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001315 return ret;
1316}
1317
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001318static int unregister_kprobe_event(struct trace_kprobe *tk)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001319{
Steven Rostedt (Red Hat)40c32592013-07-03 23:33:50 -04001320 int ret;
1321
Masami Hiramatsuff50d992009-08-13 16:35:34 -04001322 /* tp->event is unregistered in trace_remove_event_call() */
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001323 ret = trace_remove_event_call(&tk->tp.call);
Steven Rostedt (Red Hat)40c32592013-07-03 23:33:50 -04001324 if (!ret)
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001325 kfree(tk->tp.call.print_fmt);
Steven Rostedt (Red Hat)40c32592013-07-03 23:33:50 -04001326 return ret;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001327}
1328
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001329/* Make a tracefs interface for controlling probe points */
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001330static __init int init_kprobe_trace(void)
1331{
1332 struct dentry *d_tracer;
1333 struct dentry *entry;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001334
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001335 if (register_module_notifier(&trace_kprobe_module_nb))
Masami Hiramatsu61424312011-06-27 16:26:56 +09001336 return -EINVAL;
1337
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001338 d_tracer = tracing_init_dentry();
Steven Rostedt (Red Hat)14a5ae42015-01-20 11:14:16 -05001339 if (IS_ERR(d_tracer))
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001340 return 0;
1341
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001342 entry = tracefs_create_file("kprobe_events", 0644, d_tracer,
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001343 NULL, &kprobe_events_ops);
1344
Masami Hiramatsucd7e7bd2009-08-13 16:35:42 -04001345 /* Event list interface */
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001346 if (!entry)
Joe Perchesa395d6a2016-03-22 14:28:09 -07001347 pr_warn("Could not create tracefs 'kprobe_events' entry\n");
Masami Hiramatsucd7e7bd2009-08-13 16:35:42 -04001348
1349 /* Profile interface */
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001350 entry = tracefs_create_file("kprobe_profile", 0444, d_tracer,
Masami Hiramatsucd7e7bd2009-08-13 16:35:42 -04001351 NULL, &kprobe_profile_ops);
1352
1353 if (!entry)
Joe Perchesa395d6a2016-03-22 14:28:09 -07001354 pr_warn("Could not create tracefs 'kprobe_profile' entry\n");
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001355 return 0;
1356}
1357fs_initcall(init_kprobe_trace);
1358
1359
1360#ifdef CONFIG_FTRACE_STARTUP_TEST
1361
Steven Rostedt265a5b72011-06-06 22:35:13 -04001362/*
1363 * The "__used" keeps gcc from removing the function symbol
1364 * from the kallsyms table.
1365 */
1366static __used int kprobe_trace_selftest_target(int a1, int a2, int a3,
1367 int a4, int a5, int a6)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001368{
1369 return a1 + a2 + a3 + a4 + a5 + a6;
1370}
1371
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -04001372static struct trace_event_file *
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001373find_trace_probe_file(struct trace_kprobe *tk, struct trace_array *tr)
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001374{
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -04001375 struct trace_event_file *file;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001376
1377 list_for_each_entry(file, &tr->events, list)
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001378 if (file->event_call == &tk->tp.call)
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001379 return file;
1380
1381 return NULL;
1382}
1383
Oleg Nesterov3fe3d612013-06-20 19:38:09 +02001384/*
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001385 * Nobody but us can call enable_trace_kprobe/disable_trace_kprobe at this
Oleg Nesterov3fe3d612013-06-20 19:38:09 +02001386 * stage, we can do this lockless.
1387 */
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001388static __init int kprobe_trace_self_tests_init(void)
1389{
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001390 int ret, warn = 0;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001391 int (*target)(int, int, int, int, int, int);
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001392 struct trace_kprobe *tk;
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -04001393 struct trace_event_file *file;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001394
Yoshihiro YUNOMAE748ec3a2014-06-06 07:35:20 +09001395 if (tracing_is_disabled())
1396 return -ENODEV;
1397
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001398 target = kprobe_trace_selftest_target;
1399
1400 pr_info("Testing kprobe tracing: ");
1401
Srikar Dronamraju8ab83f52012-04-09 14:41:44 +05301402 ret = traceprobe_command("p:testprobe kprobe_trace_selftest_target "
1403 "$stack $stack0 +0($stack)",
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001404 create_trace_kprobe);
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001405 if (WARN_ON_ONCE(ret)) {
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001406 pr_warn("error on probing function entry.\n");
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001407 warn++;
1408 } else {
1409 /* Enable trace point */
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001410 tk = find_trace_kprobe("testprobe", KPROBE_EVENT_SYSTEM);
1411 if (WARN_ON_ONCE(tk == NULL)) {
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001412 pr_warn("error on getting new probe.\n");
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001413 warn++;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001414 } else {
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001415 file = find_trace_probe_file(tk, top_trace_array());
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001416 if (WARN_ON_ONCE(file == NULL)) {
1417 pr_warn("error on getting probe file.\n");
1418 warn++;
1419 } else
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001420 enable_trace_kprobe(tk, file);
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001421 }
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001422 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001423
Srikar Dronamraju8ab83f52012-04-09 14:41:44 +05301424 ret = traceprobe_command("r:testprobe2 kprobe_trace_selftest_target "
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001425 "$retval", create_trace_kprobe);
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001426 if (WARN_ON_ONCE(ret)) {
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001427 pr_warn("error on probing function return.\n");
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001428 warn++;
1429 } else {
1430 /* Enable trace point */
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001431 tk = find_trace_kprobe("testprobe2", KPROBE_EVENT_SYSTEM);
1432 if (WARN_ON_ONCE(tk == NULL)) {
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001433 pr_warn("error on getting 2nd new probe.\n");
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001434 warn++;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001435 } else {
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001436 file = find_trace_probe_file(tk, top_trace_array());
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001437 if (WARN_ON_ONCE(file == NULL)) {
1438 pr_warn("error on getting probe file.\n");
1439 warn++;
1440 } else
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001441 enable_trace_kprobe(tk, file);
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001442 }
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001443 }
1444
1445 if (warn)
1446 goto end;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001447
1448 ret = target(1, 2, 3, 4, 5, 6);
1449
Masami Hiramatsu02ca1522011-10-04 19:44:38 +09001450 /* Disable trace points before removing it */
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001451 tk = find_trace_kprobe("testprobe", KPROBE_EVENT_SYSTEM);
1452 if (WARN_ON_ONCE(tk == NULL)) {
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001453 pr_warn("error on getting test probe.\n");
Masami Hiramatsu02ca1522011-10-04 19:44:38 +09001454 warn++;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001455 } else {
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001456 file = find_trace_probe_file(tk, top_trace_array());
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001457 if (WARN_ON_ONCE(file == NULL)) {
1458 pr_warn("error on getting probe file.\n");
1459 warn++;
1460 } else
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001461 disable_trace_kprobe(tk, file);
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001462 }
Masami Hiramatsu02ca1522011-10-04 19:44:38 +09001463
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001464 tk = find_trace_kprobe("testprobe2", KPROBE_EVENT_SYSTEM);
1465 if (WARN_ON_ONCE(tk == NULL)) {
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001466 pr_warn("error on getting 2nd test probe.\n");
Masami Hiramatsu02ca1522011-10-04 19:44:38 +09001467 warn++;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001468 } else {
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001469 file = find_trace_probe_file(tk, top_trace_array());
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001470 if (WARN_ON_ONCE(file == NULL)) {
1471 pr_warn("error on getting probe file.\n");
1472 warn++;
1473 } else
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001474 disable_trace_kprobe(tk, file);
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001475 }
Masami Hiramatsu02ca1522011-10-04 19:44:38 +09001476
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001477 ret = traceprobe_command("-:testprobe", create_trace_kprobe);
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001478 if (WARN_ON_ONCE(ret)) {
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001479 pr_warn("error on deleting a probe.\n");
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001480 warn++;
1481 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001482
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001483 ret = traceprobe_command("-:testprobe2", create_trace_kprobe);
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001484 if (WARN_ON_ONCE(ret)) {
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001485 pr_warn("error on deleting a probe.\n");
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001486 warn++;
1487 }
1488
1489end:
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001490 release_all_trace_kprobes();
Thomas Gleixnerdd0023d2017-05-17 10:19:49 +02001491 /*
1492 * Wait for the optimizer work to finish. Otherwise it might fiddle
1493 * with probes in already freed __init text.
1494 */
1495 wait_for_kprobe_optimizer();
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001496 if (warn)
1497 pr_cont("NG: Some tests are failed. Please check them.\n");
1498 else
1499 pr_cont("OK\n");
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001500 return 0;
1501}
1502
1503late_initcall(kprobe_trace_self_tests_init);
1504
1505#endif