blob: b7d0cdd9906c1ff3e76f964f28f3a88661be2c59 [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 */
Masami Hiramatsucd7e7bd2009-08-13 16:35:42 -040033 unsigned long 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{
168 long ret;
169 int maxlen = get_rloc_len(*(u32 *)dest);
170 u8 *dst = get_rloc_data(dest);
171 u8 *src = addr;
172 mm_segment_t old_fs = get_fs();
173
174 if (!maxlen)
175 return;
176
177 /*
178 * Try to get string again, since the string can be changed while
179 * probing.
180 */
181 set_fs(KERNEL_DS);
182 pagefault_disable();
183
184 do
185 ret = __copy_from_user_inatomic(dst++, src++, 1);
186 while (dst[-1] && ret == 0 && src - (u8 *)addr < maxlen);
187
188 dst[-1] = '\0';
189 pagefault_enable();
190 set_fs(old_fs);
191
192 if (ret < 0) { /* Failed to fetch string */
193 ((u8 *)get_rloc_data(dest))[0] = '\0';
194 *(u32 *)dest = make_data_rloc(0, get_rloc_offs(*(u32 *)dest));
195 } else {
196 *(u32 *)dest = make_data_rloc(src - (u8 *)addr,
197 get_rloc_offs(*(u32 *)dest));
198 }
199}
Masami Hiramatsu3da0f182014-04-17 17:18:28 +0900200NOKPROBE_SYMBOL(FETCH_FUNC_NAME(memory, string));
Namhyung Kim5baaa592013-11-26 15:21:04 +0900201
202/* Return the length of string -- including null terminal byte */
Masami Hiramatsu3da0f182014-04-17 17:18:28 +0900203static void FETCH_FUNC_NAME(memory, string_size)(struct pt_regs *regs,
204 void *addr, void *dest)
Namhyung Kim5baaa592013-11-26 15:21:04 +0900205{
206 mm_segment_t old_fs;
207 int ret, len = 0;
208 u8 c;
209
210 old_fs = get_fs();
211 set_fs(KERNEL_DS);
212 pagefault_disable();
213
214 do {
215 ret = __copy_from_user_inatomic(&c, (u8 *)addr + len, 1);
216 len++;
217 } while (c && ret == 0 && len < MAX_STRING_SIZE);
218
219 pagefault_enable();
220 set_fs(old_fs);
221
222 if (ret < 0) /* Failed to check the length */
223 *(u32 *)dest = 0;
224 else
225 *(u32 *)dest = len;
226}
Masami Hiramatsu3da0f182014-04-17 17:18:28 +0900227NOKPROBE_SYMBOL(FETCH_FUNC_NAME(memory, string_size));
Namhyung Kim5baaa592013-11-26 15:21:04 +0900228
Namhyung Kim1301a442013-11-26 15:21:04 +0900229#define DEFINE_FETCH_symbol(type) \
Masami Hiramatsu3da0f182014-04-17 17:18:28 +0900230void FETCH_FUNC_NAME(symbol, type)(struct pt_regs *regs, void *data, void *dest)\
Namhyung Kim1301a442013-11-26 15:21:04 +0900231{ \
232 struct symbol_cache *sc = data; \
233 if (sc->addr) \
234 fetch_memory_##type(regs, (void *)sc->addr, dest); \
235 else \
236 *(type *)dest = 0; \
Masami Hiramatsu3da0f182014-04-17 17:18:28 +0900237} \
238NOKPROBE_SYMBOL(FETCH_FUNC_NAME(symbol, type));
239
Namhyung Kim1301a442013-11-26 15:21:04 +0900240DEFINE_BASIC_FETCH_FUNCS(symbol)
241DEFINE_FETCH_symbol(string)
242DEFINE_FETCH_symbol(string_size)
243
Namhyung Kimb7e0bf32013-11-25 13:42:47 +0900244/* kprobes don't support file_offset fetch methods */
245#define fetch_file_offset_u8 NULL
246#define fetch_file_offset_u16 NULL
247#define fetch_file_offset_u32 NULL
248#define fetch_file_offset_u64 NULL
249#define fetch_file_offset_string NULL
250#define fetch_file_offset_string_size NULL
251
Namhyung Kim34fee3a2013-11-26 14:56:28 +0900252/* Fetch type information table */
Stephen Rothwelld9a16d32015-03-12 16:58:34 +1100253static const struct fetch_type kprobes_fetch_type_table[] = {
Namhyung Kim34fee3a2013-11-26 14:56:28 +0900254 /* Special types */
255 [FETCH_TYPE_STRING] = __ASSIGN_FETCH_TYPE("string", string, string,
256 sizeof(u32), 1, "__data_loc char[]"),
257 [FETCH_TYPE_STRSIZE] = __ASSIGN_FETCH_TYPE("string_size", u32,
258 string_size, sizeof(u32), 0, "u32"),
259 /* Basic types */
260 ASSIGN_FETCH_TYPE(u8, u8, 0),
261 ASSIGN_FETCH_TYPE(u16, u16, 0),
262 ASSIGN_FETCH_TYPE(u32, u32, 0),
263 ASSIGN_FETCH_TYPE(u64, u64, 0),
264 ASSIGN_FETCH_TYPE(s8, u8, 1),
265 ASSIGN_FETCH_TYPE(s16, u16, 1),
266 ASSIGN_FETCH_TYPE(s32, u32, 1),
267 ASSIGN_FETCH_TYPE(s64, u64, 1),
268
269 ASSIGN_FETCH_TYPE_END
270};
271
Masami Hiramatsu4a846b42009-09-11 05:31:21 +0200272/*
273 * Allocate new trace_probe and initialize it (including kprobes).
274 */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900275static struct trace_kprobe *alloc_trace_kprobe(const char *group,
Masami Hiramatsuf52487e2009-09-10 19:53:53 -0400276 const char *event,
Masami Hiramatsu4a846b42009-09-11 05:31:21 +0200277 void *addr,
278 const char *symbol,
279 unsigned long offs,
Srikar Dronamraju3a6b7662012-04-09 14:41:33 +0530280 int nargs, bool is_return)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400281{
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900282 struct trace_kprobe *tk;
Masami Hiramatsu6f3cf442009-12-16 17:24:08 -0500283 int ret = -ENOMEM;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400284
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900285 tk = kzalloc(SIZEOF_TRACE_KPROBE(nargs), GFP_KERNEL);
286 if (!tk)
Masami Hiramatsu6f3cf442009-12-16 17:24:08 -0500287 return ERR_PTR(ret);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400288
289 if (symbol) {
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900290 tk->symbol = kstrdup(symbol, GFP_KERNEL);
291 if (!tk->symbol)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400292 goto error;
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900293 tk->rp.kp.symbol_name = tk->symbol;
294 tk->rp.kp.offset = offs;
Masami Hiramatsu4a846b42009-09-11 05:31:21 +0200295 } else
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900296 tk->rp.kp.addr = addr;
Masami Hiramatsu4a846b42009-09-11 05:31:21 +0200297
298 if (is_return)
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900299 tk->rp.handler = kretprobe_dispatcher;
Masami Hiramatsu4a846b42009-09-11 05:31:21 +0200300 else
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900301 tk->rp.kp.pre_handler = kprobe_dispatcher;
Masami Hiramatsu4a846b42009-09-11 05:31:21 +0200302
Masami Hiramatsuda346342010-08-27 20:39:12 +0900303 if (!event || !is_good_name(event)) {
Masami Hiramatsu6f3cf442009-12-16 17:24:08 -0500304 ret = -EINVAL;
Masami Hiramatsu42635652009-08-13 16:35:26 -0400305 goto error;
Masami Hiramatsu6f3cf442009-12-16 17:24:08 -0500306 }
307
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900308 tk->tp.call.class = &tk->tp.class;
309 tk->tp.call.name = kstrdup(event, GFP_KERNEL);
310 if (!tk->tp.call.name)
Masami Hiramatsu42635652009-08-13 16:35:26 -0400311 goto error;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400312
Masami Hiramatsuda346342010-08-27 20:39:12 +0900313 if (!group || !is_good_name(group)) {
Masami Hiramatsu6f3cf442009-12-16 17:24:08 -0500314 ret = -EINVAL;
Masami Hiramatsuf52487e2009-09-10 19:53:53 -0400315 goto error;
Masami Hiramatsu6f3cf442009-12-16 17:24:08 -0500316 }
317
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900318 tk->tp.class.system = kstrdup(group, GFP_KERNEL);
319 if (!tk->tp.class.system)
Masami Hiramatsuf52487e2009-09-10 19:53:53 -0400320 goto error;
321
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900322 INIT_LIST_HEAD(&tk->list);
323 INIT_LIST_HEAD(&tk->tp.files);
324 return tk;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400325error:
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900326 kfree(tk->tp.call.name);
327 kfree(tk->symbol);
328 kfree(tk);
Masami Hiramatsu6f3cf442009-12-16 17:24:08 -0500329 return ERR_PTR(ret);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400330}
331
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900332static void free_trace_kprobe(struct trace_kprobe *tk)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400333{
334 int i;
335
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900336 for (i = 0; i < tk->tp.nr_args; i++)
337 traceprobe_free_probe_arg(&tk->tp.args[i]);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400338
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900339 kfree(tk->tp.call.class->system);
340 kfree(tk->tp.call.name);
341 kfree(tk->symbol);
342 kfree(tk);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400343}
344
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900345static struct trace_kprobe *find_trace_kprobe(const char *event,
346 const char *group)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400347{
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900348 struct trace_kprobe *tk;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400349
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900350 list_for_each_entry(tk, &probe_list, list)
Steven Rostedt (Red Hat)687fcc42015-05-13 14:20:14 -0400351 if (strcmp(trace_event_name(&tk->tp.call), event) == 0 &&
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900352 strcmp(tk->tp.call.class->system, group) == 0)
353 return tk;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400354 return NULL;
355}
356
Oleg Nesterov3fe3d612013-06-20 19:38:09 +0200357/*
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900358 * Enable trace_probe
359 * if the file is NULL, enable "perf" handler, or enable "trace" handler.
360 */
361static int
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400362enable_trace_kprobe(struct trace_kprobe *tk, struct trace_event_file *file)
Masami Hiramatsu1538f882011-06-27 16:26:44 +0900363{
364 int ret = 0;
365
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900366 if (file) {
Oleg Nesterovb04d52e2013-06-20 19:38:14 +0200367 struct event_file_link *link;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900368
Oleg Nesterovb04d52e2013-06-20 19:38:14 +0200369 link = kmalloc(sizeof(*link), GFP_KERNEL);
370 if (!link) {
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900371 ret = -ENOMEM;
Oleg Nesterov3fe3d612013-06-20 19:38:09 +0200372 goto out;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900373 }
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900374
Oleg Nesterovb04d52e2013-06-20 19:38:14 +0200375 link->file = file;
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900376 list_add_tail_rcu(&link->list, &tk->tp.files);
Oleg Nesterovb04d52e2013-06-20 19:38:14 +0200377
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900378 tk->tp.flags |= TP_FLAG_TRACE;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900379 } else
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900380 tk->tp.flags |= TP_FLAG_PROFILE;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900381
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900382 if (trace_probe_is_registered(&tk->tp) && !trace_kprobe_has_gone(tk)) {
383 if (trace_kprobe_is_return(tk))
384 ret = enable_kretprobe(&tk->rp);
Masami Hiramatsu1538f882011-06-27 16:26:44 +0900385 else
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900386 ret = enable_kprobe(&tk->rp.kp);
Masami Hiramatsu1538f882011-06-27 16:26:44 +0900387 }
Oleg Nesterov3fe3d612013-06-20 19:38:09 +0200388 out:
Masami Hiramatsu1538f882011-06-27 16:26:44 +0900389 return ret;
390}
391
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900392/*
393 * Disable trace_probe
394 * if the file is NULL, disable "perf" handler, or disable "trace" handler.
395 */
396static int
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400397disable_trace_kprobe(struct trace_kprobe *tk, struct trace_event_file *file)
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900398{
Masami Hiramatsua232e272013-07-09 18:35:26 +0900399 struct event_file_link *link = NULL;
400 int wait = 0;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900401 int ret = 0;
402
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900403 if (file) {
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900404 link = find_event_file_link(&tk->tp, file);
Oleg Nesterovb04d52e2013-06-20 19:38:14 +0200405 if (!link) {
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900406 ret = -EINVAL;
Oleg Nesterov3fe3d612013-06-20 19:38:09 +0200407 goto out;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900408 }
409
Oleg Nesterovb04d52e2013-06-20 19:38:14 +0200410 list_del_rcu(&link->list);
Masami Hiramatsua232e272013-07-09 18:35:26 +0900411 wait = 1;
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900412 if (!list_empty(&tk->tp.files))
Oleg Nesterovb04d52e2013-06-20 19:38:14 +0200413 goto out;
414
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900415 tk->tp.flags &= ~TP_FLAG_TRACE;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900416 } else
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900417 tk->tp.flags &= ~TP_FLAG_PROFILE;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900418
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900419 if (!trace_probe_is_enabled(&tk->tp) && trace_probe_is_registered(&tk->tp)) {
420 if (trace_kprobe_is_return(tk))
421 disable_kretprobe(&tk->rp);
Masami Hiramatsu1538f882011-06-27 16:26:44 +0900422 else
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900423 disable_kprobe(&tk->rp.kp);
Masami Hiramatsua232e272013-07-09 18:35:26 +0900424 wait = 1;
Masami Hiramatsu1538f882011-06-27 16:26:44 +0900425 }
Oleg Nesterov3fe3d612013-06-20 19:38:09 +0200426 out:
Masami Hiramatsua232e272013-07-09 18:35:26 +0900427 if (wait) {
428 /*
429 * Synchronize with kprobe_trace_func/kretprobe_trace_func
430 * to ensure disabled (all running handlers are finished).
431 * This is not only for kfree(), but also the caller,
432 * trace_remove_event_call() supposes it for releasing
433 * event_call related objects, which will be accessed in
434 * the kprobe_trace_func/kretprobe_trace_func.
435 */
436 synchronize_sched();
437 kfree(link); /* Ignored if link == NULL */
438 }
439
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900440 return ret;
Masami Hiramatsu1538f882011-06-27 16:26:44 +0900441}
442
Masami Hiramatsu61424312011-06-27 16:26:56 +0900443/* Internal register function - just handle k*probes and flags */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900444static int __register_trace_kprobe(struct trace_kprobe *tk)
Masami Hiramatsu61424312011-06-27 16:26:56 +0900445{
Masami Hiramatsu7f6878a2011-06-27 16:27:03 +0900446 int i, ret;
Masami Hiramatsu61424312011-06-27 16:26:56 +0900447
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900448 if (trace_probe_is_registered(&tk->tp))
Masami Hiramatsu61424312011-06-27 16:26:56 +0900449 return -EINVAL;
450
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900451 for (i = 0; i < tk->tp.nr_args; i++)
452 traceprobe_update_arg(&tk->tp.args[i]);
Masami Hiramatsu7f6878a2011-06-27 16:27:03 +0900453
Masami Hiramatsu61424312011-06-27 16:26:56 +0900454 /* Set/clear disabled flag according to tp->flag */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900455 if (trace_probe_is_enabled(&tk->tp))
456 tk->rp.kp.flags &= ~KPROBE_FLAG_DISABLED;
Masami Hiramatsu61424312011-06-27 16:26:56 +0900457 else
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900458 tk->rp.kp.flags |= KPROBE_FLAG_DISABLED;
Masami Hiramatsu61424312011-06-27 16:26:56 +0900459
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900460 if (trace_kprobe_is_return(tk))
461 ret = register_kretprobe(&tk->rp);
Masami Hiramatsu61424312011-06-27 16:26:56 +0900462 else
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900463 ret = register_kprobe(&tk->rp.kp);
Masami Hiramatsu61424312011-06-27 16:26:56 +0900464
465 if (ret == 0)
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900466 tk->tp.flags |= TP_FLAG_REGISTERED;
Masami Hiramatsu61424312011-06-27 16:26:56 +0900467 else {
468 pr_warning("Could not insert probe at %s+%lu: %d\n",
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900469 trace_kprobe_symbol(tk), trace_kprobe_offset(tk), ret);
470 if (ret == -ENOENT && trace_kprobe_is_on_module(tk)) {
Masami Hiramatsu61424312011-06-27 16:26:56 +0900471 pr_warning("This probe might be able to register after"
472 "target module is loaded. Continue.\n");
473 ret = 0;
474 } else if (ret == -EILSEQ) {
475 pr_warning("Probing address(0x%p) is not an "
476 "instruction boundary.\n",
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900477 tk->rp.kp.addr);
Masami Hiramatsu61424312011-06-27 16:26:56 +0900478 ret = -EINVAL;
479 }
480 }
481
482 return ret;
483}
484
485/* Internal unregister function - just handle k*probes and flags */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900486static void __unregister_trace_kprobe(struct trace_kprobe *tk)
Masami Hiramatsu61424312011-06-27 16:26:56 +0900487{
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900488 if (trace_probe_is_registered(&tk->tp)) {
489 if (trace_kprobe_is_return(tk))
490 unregister_kretprobe(&tk->rp);
Masami Hiramatsu61424312011-06-27 16:26:56 +0900491 else
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900492 unregister_kprobe(&tk->rp.kp);
493 tk->tp.flags &= ~TP_FLAG_REGISTERED;
Masami Hiramatsu61424312011-06-27 16:26:56 +0900494 /* Cleanup kprobe for reuse */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900495 if (tk->rp.kp.symbol_name)
496 tk->rp.kp.addr = NULL;
Masami Hiramatsu61424312011-06-27 16:26:56 +0900497 }
498}
499
Masami Hiramatsu2d5e0672009-09-14 16:48:56 -0400500/* Unregister a trace_probe and probe_event: call with locking probe_lock */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900501static int unregister_trace_kprobe(struct trace_kprobe *tk)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400502{
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900503 /* Enabled event can not be unregistered */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900504 if (trace_probe_is_enabled(&tk->tp))
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900505 return -EBUSY;
506
Steven Rostedt (Red Hat)40c32592013-07-03 23:33:50 -0400507 /* Will fail if probe is being used by ftrace or perf */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900508 if (unregister_kprobe_event(tk))
Steven Rostedt (Red Hat)40c32592013-07-03 23:33:50 -0400509 return -EBUSY;
510
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900511 __unregister_trace_kprobe(tk);
512 list_del(&tk->list);
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900513
514 return 0;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400515}
516
517/* Register a trace_probe and probe_event */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900518static int register_trace_kprobe(struct trace_kprobe *tk)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400519{
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900520 struct trace_kprobe *old_tk;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400521 int ret;
522
523 mutex_lock(&probe_lock);
524
Masami Hiramatsu61424312011-06-27 16:26:56 +0900525 /* Delete old (same name) event if exist */
Steven Rostedt (Red Hat)687fcc42015-05-13 14:20:14 -0400526 old_tk = find_trace_kprobe(trace_event_name(&tk->tp.call),
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400527 tk->tp.call.class->system);
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900528 if (old_tk) {
529 ret = unregister_trace_kprobe(old_tk);
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900530 if (ret < 0)
531 goto end;
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900532 free_trace_kprobe(old_tk);
Masami Hiramatsu2d5e0672009-09-14 16:48:56 -0400533 }
Masami Hiramatsu61424312011-06-27 16:26:56 +0900534
535 /* Register new event */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900536 ret = register_kprobe_event(tk);
Masami Hiramatsu2d5e0672009-09-14 16:48:56 -0400537 if (ret) {
Paul Bolle426d3102010-08-07 12:30:03 +0200538 pr_warning("Failed to register probe event(%d)\n", ret);
Masami Hiramatsu2d5e0672009-09-14 16:48:56 -0400539 goto end;
540 }
541
Masami Hiramatsu61424312011-06-27 16:26:56 +0900542 /* Register k*probe */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900543 ret = __register_trace_kprobe(tk);
Masami Hiramatsu61424312011-06-27 16:26:56 +0900544 if (ret < 0)
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900545 unregister_kprobe_event(tk);
Masami Hiramatsu61424312011-06-27 16:26:56 +0900546 else
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900547 list_add_tail(&tk->list, &probe_list);
Masami Hiramatsu61424312011-06-27 16:26:56 +0900548
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400549end:
550 mutex_unlock(&probe_lock);
551 return ret;
552}
553
Masami Hiramatsu61424312011-06-27 16:26:56 +0900554/* Module notifier call back, checking event on the module */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900555static int trace_kprobe_module_callback(struct notifier_block *nb,
Masami Hiramatsu61424312011-06-27 16:26:56 +0900556 unsigned long val, void *data)
557{
558 struct module *mod = data;
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900559 struct trace_kprobe *tk;
Masami Hiramatsu61424312011-06-27 16:26:56 +0900560 int ret;
561
562 if (val != MODULE_STATE_COMING)
563 return NOTIFY_DONE;
564
565 /* Update probes on coming module */
566 mutex_lock(&probe_lock);
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900567 list_for_each_entry(tk, &probe_list, list) {
568 if (trace_kprobe_within_module(tk, mod)) {
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900569 /* Don't need to check busy - this should have gone. */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900570 __unregister_trace_kprobe(tk);
571 ret = __register_trace_kprobe(tk);
Masami Hiramatsu61424312011-06-27 16:26:56 +0900572 if (ret)
573 pr_warning("Failed to re-register probe %s on"
574 "%s: %d\n",
Steven Rostedt (Red Hat)687fcc42015-05-13 14:20:14 -0400575 trace_event_name(&tk->tp.call),
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400576 mod->name, ret);
Masami Hiramatsu61424312011-06-27 16:26:56 +0900577 }
578 }
579 mutex_unlock(&probe_lock);
580
581 return NOTIFY_DONE;
582}
583
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900584static struct notifier_block trace_kprobe_module_nb = {
585 .notifier_call = trace_kprobe_module_callback,
Masami Hiramatsu61424312011-06-27 16:26:56 +0900586 .priority = 1 /* Invoked after kprobe module callback */
587};
588
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900589static int create_trace_kprobe(int argc, char **argv)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400590{
591 /*
592 * Argument syntax:
Masami Hiramatsu61424312011-06-27 16:26:56 +0900593 * - Add kprobe: p[:[GRP/]EVENT] [MOD:]KSYM[+OFFS]|KADDR [FETCHARGS]
594 * - Add kretprobe: r[:[GRP/]EVENT] [MOD:]KSYM[+0] [FETCHARGS]
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400595 * Fetch args:
Masami Hiramatsu2e06ff62009-10-07 18:27:59 -0400596 * $retval : fetch return value
597 * $stack : fetch stack address
598 * $stackN : fetch Nth of stack (N:0-)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400599 * @ADDR : fetch memory at ADDR (ADDR should be in kernel)
600 * @SYM[+|-offs] : fetch memory at SYM +|- offs (SYM is a data symbol)
601 * %REG : fetch register REG
Masami Hiramatsu93ccae72010-04-12 13:17:08 -0400602 * Dereferencing memory fetch:
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400603 * +|-offs(ARG) : fetch memory at ARG +|- offs address.
Masami Hiramatsueca0d912009-09-10 19:53:38 -0400604 * Alias name of args:
605 * NAME=FETCHARG : set NAME as alias of FETCHARG.
Masami Hiramatsu93ccae72010-04-12 13:17:08 -0400606 * Type of args:
607 * FETCHARG:TYPE : use TYPE instead of unsigned long.
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400608 */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900609 struct trace_kprobe *tk;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400610 int i, ret = 0;
Srikar Dronamraju3a6b7662012-04-09 14:41:33 +0530611 bool is_return = false, is_delete = false;
Masami Hiramatsu93ccae72010-04-12 13:17:08 -0400612 char *symbol = NULL, *event = NULL, *group = NULL;
Masami Hiramatsuda346342010-08-27 20:39:12 +0900613 char *arg;
Masami Hiramatsu2fba0c82009-09-10 19:53:14 -0400614 unsigned long offset = 0;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400615 void *addr = NULL;
Masami Hiramatsu4a846b42009-09-11 05:31:21 +0200616 char buf[MAX_EVENT_NAME_LEN];
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400617
Masami Hiramatsua7c312b2009-12-08 17:03:16 -0500618 /* argc must be >= 1 */
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400619 if (argv[0][0] == 'p')
Srikar Dronamraju3a6b7662012-04-09 14:41:33 +0530620 is_return = false;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400621 else if (argv[0][0] == 'r')
Srikar Dronamraju3a6b7662012-04-09 14:41:33 +0530622 is_return = true;
Masami Hiramatsua7c312b2009-12-08 17:03:16 -0500623 else if (argv[0][0] == '-')
Srikar Dronamraju3a6b7662012-04-09 14:41:33 +0530624 is_delete = true;
Masami Hiramatsue63cc232009-10-16 20:07:28 -0400625 else {
Masami Hiramatsua7c312b2009-12-08 17:03:16 -0500626 pr_info("Probe definition must be started with 'p', 'r' or"
627 " '-'.\n");
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400628 return -EINVAL;
Masami Hiramatsue63cc232009-10-16 20:07:28 -0400629 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400630
631 if (argv[0][1] == ':') {
632 event = &argv[0][2];
Masami Hiramatsuf52487e2009-09-10 19:53:53 -0400633 if (strchr(event, '/')) {
634 group = event;
635 event = strchr(group, '/') + 1;
636 event[-1] = '\0';
637 if (strlen(group) == 0) {
Wenji Huanga5efd922010-02-24 15:40:23 +0800638 pr_info("Group name is not specified\n");
Masami Hiramatsuf52487e2009-09-10 19:53:53 -0400639 return -EINVAL;
640 }
641 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400642 if (strlen(event) == 0) {
Wenji Huanga5efd922010-02-24 15:40:23 +0800643 pr_info("Event name is not specified\n");
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400644 return -EINVAL;
645 }
646 }
Masami Hiramatsua7c312b2009-12-08 17:03:16 -0500647 if (!group)
648 group = KPROBE_EVENT_SYSTEM;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400649
Masami Hiramatsua7c312b2009-12-08 17:03:16 -0500650 if (is_delete) {
651 if (!event) {
652 pr_info("Delete command needs an event name.\n");
653 return -EINVAL;
654 }
Srikar Dronamraju9da79ab2010-06-30 14:15:48 +0530655 mutex_lock(&probe_lock);
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900656 tk = find_trace_kprobe(event, group);
657 if (!tk) {
Srikar Dronamraju9da79ab2010-06-30 14:15:48 +0530658 mutex_unlock(&probe_lock);
Masami Hiramatsua7c312b2009-12-08 17:03:16 -0500659 pr_info("Event %s/%s doesn't exist.\n", group, event);
660 return -ENOENT;
661 }
662 /* delete an event */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900663 ret = unregister_trace_kprobe(tk);
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900664 if (ret == 0)
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900665 free_trace_kprobe(tk);
Srikar Dronamraju9da79ab2010-06-30 14:15:48 +0530666 mutex_unlock(&probe_lock);
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900667 return ret;
Masami Hiramatsua7c312b2009-12-08 17:03:16 -0500668 }
669
670 if (argc < 2) {
671 pr_info("Probe point is not specified.\n");
672 return -EINVAL;
673 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400674 if (isdigit(argv[1][0])) {
Masami Hiramatsue63cc232009-10-16 20:07:28 -0400675 if (is_return) {
676 pr_info("Return probe point must be a symbol.\n");
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400677 return -EINVAL;
Masami Hiramatsue63cc232009-10-16 20:07:28 -0400678 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400679 /* an address specified */
Daniel Walterbcd83ea2012-09-26 22:08:38 +0200680 ret = kstrtoul(&argv[1][0], 0, (unsigned long *)&addr);
Masami Hiramatsue63cc232009-10-16 20:07:28 -0400681 if (ret) {
682 pr_info("Failed to parse address.\n");
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400683 return ret;
Masami Hiramatsue63cc232009-10-16 20:07:28 -0400684 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400685 } else {
686 /* a symbol specified */
687 symbol = argv[1];
688 /* TODO: support .init module functions */
Srikar Dronamraju8ab83f52012-04-09 14:41:44 +0530689 ret = traceprobe_split_symbol_offset(symbol, &offset);
Masami Hiramatsue63cc232009-10-16 20:07:28 -0400690 if (ret) {
691 pr_info("Failed to parse symbol.\n");
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400692 return ret;
Masami Hiramatsue63cc232009-10-16 20:07:28 -0400693 }
694 if (offset && is_return) {
695 pr_info("Return probe must be used without offset.\n");
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400696 return -EINVAL;
Masami Hiramatsue63cc232009-10-16 20:07:28 -0400697 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400698 }
Masami Hiramatsua82378d2009-08-13 16:35:18 -0400699 argc -= 2; argv += 2;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400700
701 /* setup a probe */
Masami Hiramatsu42635652009-08-13 16:35:26 -0400702 if (!event) {
703 /* Make a new event name */
Masami Hiramatsu42635652009-08-13 16:35:26 -0400704 if (symbol)
Masami Hiramatsu6f3cf442009-12-16 17:24:08 -0500705 snprintf(buf, MAX_EVENT_NAME_LEN, "%c_%s_%ld",
Masami Hiramatsu42635652009-08-13 16:35:26 -0400706 is_return ? 'r' : 'p', symbol, offset);
707 else
Masami Hiramatsu6f3cf442009-12-16 17:24:08 -0500708 snprintf(buf, MAX_EVENT_NAME_LEN, "%c_0x%p",
Masami Hiramatsu42635652009-08-13 16:35:26 -0400709 is_return ? 'r' : 'p', addr);
Masami Hiramatsu4a846b42009-09-11 05:31:21 +0200710 event = buf;
711 }
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900712 tk = alloc_trace_kprobe(group, event, addr, symbol, offset, argc,
Masami Hiramatsuf52487e2009-09-10 19:53:53 -0400713 is_return);
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900714 if (IS_ERR(tk)) {
Masami Hiramatsue63cc232009-10-16 20:07:28 -0400715 pr_info("Failed to allocate trace_probe.(%d)\n",
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900716 (int)PTR_ERR(tk));
717 return PTR_ERR(tk);
Masami Hiramatsue63cc232009-10-16 20:07:28 -0400718 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400719
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400720 /* parse arguments */
Masami Hiramatsua82378d2009-08-13 16:35:18 -0400721 ret = 0;
722 for (i = 0; i < argc && i < MAX_TRACE_ARGS; i++) {
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900723 struct probe_arg *parg = &tk->tp.args[i];
724
Masami Hiramatsu61a52732010-08-27 20:38:46 +0900725 /* Increment count for freeing args in error case */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900726 tk->tp.nr_args++;
Masami Hiramatsu61a52732010-08-27 20:38:46 +0900727
Masami Hiramatsueca0d912009-09-10 19:53:38 -0400728 /* Parse argument name */
729 arg = strchr(argv[i], '=');
Masami Hiramatsuaba91592010-08-27 20:39:06 +0900730 if (arg) {
Masami Hiramatsueca0d912009-09-10 19:53:38 -0400731 *arg++ = '\0';
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900732 parg->name = kstrdup(argv[i], GFP_KERNEL);
Masami Hiramatsuaba91592010-08-27 20:39:06 +0900733 } else {
Masami Hiramatsueca0d912009-09-10 19:53:38 -0400734 arg = argv[i];
Masami Hiramatsuaba91592010-08-27 20:39:06 +0900735 /* If argument name is omitted, set "argN" */
736 snprintf(buf, MAX_EVENT_NAME_LEN, "arg%d", i + 1);
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900737 parg->name = kstrdup(buf, GFP_KERNEL);
Masami Hiramatsuaba91592010-08-27 20:39:06 +0900738 }
Masami Hiramatsua703d942009-10-07 18:28:07 -0400739
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900740 if (!parg->name) {
Masami Hiramatsuaba91592010-08-27 20:39:06 +0900741 pr_info("Failed to allocate argument[%d] name.\n", i);
Masami Hiramatsuba8665d2009-11-30 19:19:20 -0500742 ret = -ENOMEM;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400743 goto error;
744 }
Masami Hiramatsuda346342010-08-27 20:39:12 +0900745
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900746 if (!is_good_name(parg->name)) {
Masami Hiramatsuda346342010-08-27 20:39:12 +0900747 pr_info("Invalid argument[%d] name: %s\n",
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900748 i, parg->name);
Masami Hiramatsuda346342010-08-27 20:39:12 +0900749 ret = -EINVAL;
750 goto error;
751 }
Masami Hiramatsu93ccae72010-04-12 13:17:08 -0400752
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900753 if (traceprobe_conflict_field_name(parg->name,
754 tk->tp.args, i)) {
Masami Hiramatsuaba91592010-08-27 20:39:06 +0900755 pr_info("Argument[%d] name '%s' conflicts with "
Masami Hiramatsu93ccae72010-04-12 13:17:08 -0400756 "another field.\n", i, argv[i]);
757 ret = -EINVAL;
758 goto error;
759 }
Masami Hiramatsuba8665d2009-11-30 19:19:20 -0500760
761 /* Parse fetch argument */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900762 ret = traceprobe_parse_probe_arg(arg, &tk->tp.size, parg,
Stephen Rothwelld9a16d32015-03-12 16:58:34 +1100763 is_return, true,
764 kprobes_fetch_type_table);
Masami Hiramatsue63cc232009-10-16 20:07:28 -0400765 if (ret) {
Masami Hiramatsuaba91592010-08-27 20:39:06 +0900766 pr_info("Parse error at argument[%d]. (%d)\n", i, ret);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400767 goto error;
Masami Hiramatsue63cc232009-10-16 20:07:28 -0400768 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400769 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400770
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900771 ret = register_trace_kprobe(tk);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400772 if (ret)
773 goto error;
774 return 0;
775
776error:
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900777 free_trace_kprobe(tk);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400778 return ret;
779}
780
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900781static int release_all_trace_kprobes(void)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400782{
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900783 struct trace_kprobe *tk;
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900784 int ret = 0;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400785
786 mutex_lock(&probe_lock);
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900787 /* Ensure no probe is in use. */
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900788 list_for_each_entry(tk, &probe_list, list)
789 if (trace_probe_is_enabled(&tk->tp)) {
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900790 ret = -EBUSY;
791 goto end;
792 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400793 /* TODO: Use batch unregistration */
794 while (!list_empty(&probe_list)) {
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900795 tk = list_entry(probe_list.next, struct trace_kprobe, list);
796 ret = unregister_trace_kprobe(tk);
Steven Rostedt (Red Hat)40c32592013-07-03 23:33:50 -0400797 if (ret)
798 goto end;
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900799 free_trace_kprobe(tk);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400800 }
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900801
802end:
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400803 mutex_unlock(&probe_lock);
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900804
805 return ret;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400806}
807
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400808/* Probes listing interfaces */
809static void *probes_seq_start(struct seq_file *m, loff_t *pos)
810{
811 mutex_lock(&probe_lock);
812 return seq_list_start(&probe_list, *pos);
813}
814
815static void *probes_seq_next(struct seq_file *m, void *v, loff_t *pos)
816{
817 return seq_list_next(v, &probe_list, pos);
818}
819
820static void probes_seq_stop(struct seq_file *m, void *v)
821{
822 mutex_unlock(&probe_lock);
823}
824
825static int probes_seq_show(struct seq_file *m, void *v)
826{
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900827 struct trace_kprobe *tk = v;
Masami Hiramatsu93ccae72010-04-12 13:17:08 -0400828 int i;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400829
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100830 seq_putc(m, trace_kprobe_is_return(tk) ? 'r' : 'p');
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400831 seq_printf(m, ":%s/%s", tk->tp.call.class->system,
Steven Rostedt (Red Hat)687fcc42015-05-13 14:20:14 -0400832 trace_event_name(&tk->tp.call));
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400833
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900834 if (!tk->symbol)
835 seq_printf(m, " 0x%p", tk->rp.kp.addr);
836 else if (tk->rp.kp.offset)
837 seq_printf(m, " %s+%u", trace_kprobe_symbol(tk),
838 tk->rp.kp.offset);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400839 else
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900840 seq_printf(m, " %s", trace_kprobe_symbol(tk));
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400841
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900842 for (i = 0; i < tk->tp.nr_args; i++)
843 seq_printf(m, " %s=%s", tk->tp.args[i].name, tk->tp.args[i].comm);
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100844 seq_putc(m, '\n');
Masami Hiramatsu93ccae72010-04-12 13:17:08 -0400845
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400846 return 0;
847}
848
849static const struct seq_operations probes_seq_op = {
850 .start = probes_seq_start,
851 .next = probes_seq_next,
852 .stop = probes_seq_stop,
853 .show = probes_seq_show
854};
855
856static int probes_open(struct inode *inode, struct file *file)
857{
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900858 int ret;
859
860 if ((file->f_mode & FMODE_WRITE) && (file->f_flags & O_TRUNC)) {
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900861 ret = release_all_trace_kprobes();
Masami Hiramatsu02ca1522011-10-04 19:44:38 +0900862 if (ret < 0)
863 return ret;
864 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400865
866 return seq_open(file, &probes_seq_op);
867}
868
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400869static ssize_t probes_write(struct file *file, const char __user *buffer,
870 size_t count, loff_t *ppos)
871{
Srikar Dronamraju8ab83f52012-04-09 14:41:44 +0530872 return traceprobe_probes_write(file, buffer, count, ppos,
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900873 create_trace_kprobe);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400874}
875
876static const struct file_operations kprobe_events_ops = {
877 .owner = THIS_MODULE,
878 .open = probes_open,
879 .read = seq_read,
880 .llseek = seq_lseek,
881 .release = seq_release,
882 .write = probes_write,
883};
884
Masami Hiramatsucd7e7bd2009-08-13 16:35:42 -0400885/* Probes profiling interfaces */
886static int probes_profile_seq_show(struct seq_file *m, void *v)
887{
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900888 struct trace_kprobe *tk = v;
Masami Hiramatsucd7e7bd2009-08-13 16:35:42 -0400889
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -0400890 seq_printf(m, " %-44s %15lu %15lu\n",
Steven Rostedt (Red Hat)687fcc42015-05-13 14:20:14 -0400891 trace_event_name(&tk->tp.call), tk->nhit,
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900892 tk->rp.kp.nmissed);
Masami Hiramatsucd7e7bd2009-08-13 16:35:42 -0400893
894 return 0;
895}
896
897static const struct seq_operations profile_seq_op = {
898 .start = probes_seq_start,
899 .next = probes_seq_next,
900 .stop = probes_seq_stop,
901 .show = probes_profile_seq_show
902};
903
904static int profile_open(struct inode *inode, struct file *file)
905{
906 return seq_open(file, &profile_seq_op);
907}
908
909static const struct file_operations kprobe_profile_ops = {
910 .owner = THIS_MODULE,
911 .open = profile_open,
912 .read = seq_read,
913 .llseek = seq_lseek,
914 .release = seq_release,
915};
916
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400917/* Kprobe handler */
Masami Hiramatsu3da0f182014-04-17 17:18:28 +0900918static nokprobe_inline void
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900919__kprobe_trace_func(struct trace_kprobe *tk, struct pt_regs *regs,
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400920 struct trace_event_file *trace_file)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400921{
Masami Hiramatsu93ccae72010-04-12 13:17:08 -0400922 struct kprobe_trace_entry_head *entry;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400923 struct ring_buffer_event *event;
Frederic Weisbecker8f8ffe22009-09-11 01:09:23 +0200924 struct ring_buffer *buffer;
Masami Hiramatsue09c8612010-07-05 15:54:45 -0300925 int size, dsize, pc;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400926 unsigned long irq_flags;
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400927 struct trace_event_call *call = &tk->tp.call;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400928
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400929 WARN_ON(call != trace_file->event_call);
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900930
Steven Rostedt (Red Hat)09a50592015-05-13 15:21:25 -0400931 if (trace_trigger_soft_disabled(trace_file))
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500932 return;
Masami Hiramatsub8820082013-05-09 14:44:54 +0900933
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400934 local_save_flags(irq_flags);
935 pc = preempt_count();
936
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900937 dsize = __get_data_size(&tk->tp, regs);
938 size = sizeof(*entry) + tk->tp.size + dsize;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400939
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400940 event = trace_event_buffer_lock_reserve(&buffer, trace_file,
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900941 call->event.type,
942 size, irq_flags, pc);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400943 if (!event)
Xiao Guangrong1e12a4a2010-01-28 09:34:27 +0800944 return;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400945
946 entry = ring_buffer_event_data(event);
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900947 entry->ip = (unsigned long)tk->rp.kp.addr;
948 store_trace_args(sizeof(*entry), &tk->tp, regs, (u8 *)&entry[1], dsize);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400949
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400950 event_trigger_unlock_commit_regs(trace_file, buffer, event,
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500951 entry, irq_flags, pc, regs);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400952}
953
Masami Hiramatsu3da0f182014-04-17 17:18:28 +0900954static void
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900955kprobe_trace_func(struct trace_kprobe *tk, struct pt_regs *regs)
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900956{
Oleg Nesterovb04d52e2013-06-20 19:38:14 +0200957 struct event_file_link *link;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900958
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900959 list_for_each_entry_rcu(link, &tk->tp.files, list)
960 __kprobe_trace_func(tk, regs, link->file);
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900961}
Masami Hiramatsu3da0f182014-04-17 17:18:28 +0900962NOKPROBE_SYMBOL(kprobe_trace_func);
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900963
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400964/* Kretprobe handler */
Masami Hiramatsu3da0f182014-04-17 17:18:28 +0900965static nokprobe_inline void
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900966__kretprobe_trace_func(struct trace_kprobe *tk, struct kretprobe_instance *ri,
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900967 struct pt_regs *regs,
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400968 struct trace_event_file *trace_file)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400969{
Masami Hiramatsu93ccae72010-04-12 13:17:08 -0400970 struct kretprobe_trace_entry_head *entry;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400971 struct ring_buffer_event *event;
Frederic Weisbecker8f8ffe22009-09-11 01:09:23 +0200972 struct ring_buffer *buffer;
Masami Hiramatsue09c8612010-07-05 15:54:45 -0300973 int size, pc, dsize;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400974 unsigned long irq_flags;
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -0400975 struct trace_event_call *call = &tk->tp.call;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400976
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400977 WARN_ON(call != trace_file->event_call);
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900978
Steven Rostedt (Red Hat)09a50592015-05-13 15:21:25 -0400979 if (trace_trigger_soft_disabled(trace_file))
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -0500980 return;
Masami Hiramatsub8820082013-05-09 14:44:54 +0900981
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400982 local_save_flags(irq_flags);
983 pc = preempt_count();
984
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900985 dsize = __get_data_size(&tk->tp, regs);
986 size = sizeof(*entry) + tk->tp.size + dsize;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400987
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400988 event = trace_event_buffer_lock_reserve(&buffer, trace_file,
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +0900989 call->event.type,
990 size, irq_flags, pc);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400991 if (!event)
Xiao Guangrong1e12a4a2010-01-28 09:34:27 +0800992 return;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400993
994 entry = ring_buffer_event_data(event);
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900995 entry->func = (unsigned long)tk->rp.kp.addr;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400996 entry->ret_ip = (unsigned long)ri->ret_addr;
Namhyung Kimc31ffb32013-07-03 13:50:51 +0900997 store_trace_args(sizeof(*entry), &tk->tp, regs, (u8 *)&entry[1], dsize);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -0400998
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -0400999 event_trigger_unlock_commit_regs(trace_file, buffer, event,
Steven Rostedt (Red Hat)13a1e4a2014-01-06 21:32:10 -05001000 entry, irq_flags, pc, regs);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001001}
1002
Masami Hiramatsu3da0f182014-04-17 17:18:28 +09001003static void
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001004kretprobe_trace_func(struct trace_kprobe *tk, struct kretprobe_instance *ri,
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001005 struct pt_regs *regs)
1006{
Oleg Nesterovb04d52e2013-06-20 19:38:14 +02001007 struct event_file_link *link;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001008
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001009 list_for_each_entry_rcu(link, &tk->tp.files, list)
1010 __kretprobe_trace_func(tk, ri, regs, link->file);
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001011}
Masami Hiramatsu3da0f182014-04-17 17:18:28 +09001012NOKPROBE_SYMBOL(kretprobe_trace_func);
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001013
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001014/* Event entry printers */
Masami Hiramatsub62fdd92013-05-13 20:58:39 +09001015static enum print_line_t
Steven Rostedta9a57762010-04-22 18:46:14 -04001016print_kprobe_event(struct trace_iterator *iter, int flags,
1017 struct trace_event *event)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001018{
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001019 struct kprobe_trace_entry_head *field;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001020 struct trace_seq *s = &iter->seq;
Masami Hiramatsueca0d912009-09-10 19:53:38 -04001021 struct trace_probe *tp;
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001022 u8 *data;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001023 int i;
1024
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001025 field = (struct kprobe_trace_entry_head *)iter->ent;
Steven Rostedt80decc72010-04-23 10:00:22 -04001026 tp = container_of(event, struct trace_probe, call.event);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001027
Steven Rostedt (Red Hat)687fcc42015-05-13 14:20:14 -04001028 trace_seq_printf(s, "%s: (", trace_event_name(&tp->call));
Masami Hiramatsu6e9f23d2009-09-10 19:53:45 -04001029
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001030 if (!seq_print_ip_sym(s, field->ip, flags | TRACE_ITER_SYM_OFFSET))
Steven Rostedt (Red Hat)85224da2014-11-12 15:18:16 -05001031 goto out;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001032
Steven Rostedt (Red Hat)85224da2014-11-12 15:18:16 -05001033 trace_seq_putc(s, ')');
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001034
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001035 data = (u8 *)&field[1];
1036 for (i = 0; i < tp->nr_args; i++)
1037 if (!tp->args[i].type->print(s, tp->args[i].name,
Masami Hiramatsue09c8612010-07-05 15:54:45 -03001038 data + tp->args[i].offset, field))
Steven Rostedt (Red Hat)85224da2014-11-12 15:18:16 -05001039 goto out;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001040
Steven Rostedt (Red Hat)85224da2014-11-12 15:18:16 -05001041 trace_seq_putc(s, '\n');
1042 out:
1043 return trace_handle_return(s);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001044}
1045
Masami Hiramatsub62fdd92013-05-13 20:58:39 +09001046static enum print_line_t
Steven Rostedta9a57762010-04-22 18:46:14 -04001047print_kretprobe_event(struct trace_iterator *iter, int flags,
1048 struct trace_event *event)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001049{
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001050 struct kretprobe_trace_entry_head *field;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001051 struct trace_seq *s = &iter->seq;
Masami Hiramatsueca0d912009-09-10 19:53:38 -04001052 struct trace_probe *tp;
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001053 u8 *data;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001054 int i;
1055
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001056 field = (struct kretprobe_trace_entry_head *)iter->ent;
Steven Rostedt80decc72010-04-23 10:00:22 -04001057 tp = container_of(event, struct trace_probe, call.event);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001058
Steven Rostedt (Red Hat)687fcc42015-05-13 14:20:14 -04001059 trace_seq_printf(s, "%s: (", trace_event_name(&tp->call));
Masami Hiramatsu6e9f23d2009-09-10 19:53:45 -04001060
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001061 if (!seq_print_ip_sym(s, field->ret_ip, flags | TRACE_ITER_SYM_OFFSET))
Steven Rostedt (Red Hat)85224da2014-11-12 15:18:16 -05001062 goto out;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001063
Steven Rostedt (Red Hat)85224da2014-11-12 15:18:16 -05001064 trace_seq_puts(s, " <- ");
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001065
1066 if (!seq_print_ip_sym(s, field->func, flags & ~TRACE_ITER_SYM_OFFSET))
Steven Rostedt (Red Hat)85224da2014-11-12 15:18:16 -05001067 goto out;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001068
Steven Rostedt (Red Hat)85224da2014-11-12 15:18:16 -05001069 trace_seq_putc(s, ')');
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001070
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001071 data = (u8 *)&field[1];
1072 for (i = 0; i < tp->nr_args; i++)
1073 if (!tp->args[i].type->print(s, tp->args[i].name,
Masami Hiramatsue09c8612010-07-05 15:54:45 -03001074 data + tp->args[i].offset, field))
Steven Rostedt (Red Hat)85224da2014-11-12 15:18:16 -05001075 goto out;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001076
Steven Rostedt (Red Hat)85224da2014-11-12 15:18:16 -05001077 trace_seq_putc(s, '\n');
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001078
Steven Rostedt (Red Hat)85224da2014-11-12 15:18:16 -05001079 out:
1080 return trace_handle_return(s);
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001081}
1082
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001083
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -04001084static int kprobe_event_define_fields(struct trace_event_call *event_call)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001085{
1086 int ret, i;
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001087 struct kprobe_trace_entry_head field;
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001088 struct trace_kprobe *tk = (struct trace_kprobe *)event_call->data;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001089
Masami Hiramatsua703d942009-10-07 18:28:07 -04001090 DEFINE_FIELD(unsigned long, ip, FIELD_STRING_IP, 0);
Masami Hiramatsueca0d912009-09-10 19:53:38 -04001091 /* Set argument names as fields */
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001092 for (i = 0; i < tk->tp.nr_args; i++) {
1093 struct probe_arg *parg = &tk->tp.args[i];
1094
1095 ret = trace_define_field(event_call, parg->type->fmttype,
1096 parg->name,
1097 sizeof(field) + parg->offset,
1098 parg->type->size,
1099 parg->type->is_signed,
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001100 FILTER_OTHER);
1101 if (ret)
1102 return ret;
1103 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001104 return 0;
1105}
1106
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -04001107static int kretprobe_event_define_fields(struct trace_event_call *event_call)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001108{
1109 int ret, i;
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001110 struct kretprobe_trace_entry_head field;
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001111 struct trace_kprobe *tk = (struct trace_kprobe *)event_call->data;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001112
Masami Hiramatsua703d942009-10-07 18:28:07 -04001113 DEFINE_FIELD(unsigned long, func, FIELD_STRING_FUNC, 0);
1114 DEFINE_FIELD(unsigned long, ret_ip, FIELD_STRING_RETIP, 0);
Masami Hiramatsueca0d912009-09-10 19:53:38 -04001115 /* Set argument names as fields */
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001116 for (i = 0; i < tk->tp.nr_args; i++) {
1117 struct probe_arg *parg = &tk->tp.args[i];
1118
1119 ret = trace_define_field(event_call, parg->type->fmttype,
1120 parg->name,
1121 sizeof(field) + parg->offset,
1122 parg->type->size,
1123 parg->type->is_signed,
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001124 FILTER_OTHER);
1125 if (ret)
1126 return ret;
1127 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001128 return 0;
1129}
1130
Li Zefan07b139c2009-12-21 14:27:35 +08001131#ifdef CONFIG_PERF_EVENTS
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001132
1133/* Kprobe profile handler */
Masami Hiramatsu3da0f182014-04-17 17:18:28 +09001134static void
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001135kprobe_perf_func(struct trace_kprobe *tk, struct pt_regs *regs)
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001136{
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -04001137 struct trace_event_call *call = &tk->tp.call;
Alexei Starovoitov25415172015-03-25 12:49:20 -07001138 struct bpf_prog *prog = call->prog;
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001139 struct kprobe_trace_entry_head *entry;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02001140 struct hlist_head *head;
Masami Hiramatsue09c8612010-07-05 15:54:45 -03001141 int size, __size, dsize;
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01001142 int rctx;
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001143
Alexei Starovoitov25415172015-03-25 12:49:20 -07001144 if (prog && !trace_call_bpf(prog, regs))
1145 return;
1146
Oleg Nesterov288e9842013-06-20 19:38:06 +02001147 head = this_cpu_ptr(call->perf_events);
1148 if (hlist_empty(head))
1149 return;
1150
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001151 dsize = __get_data_size(&tk->tp, regs);
1152 __size = sizeof(*entry) + tk->tp.size + dsize;
Masami Hiramatsu74ebb632009-09-14 16:49:28 -04001153 size = ALIGN(__size + sizeof(u32), sizeof(u64));
1154 size -= sizeof(u32);
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001155
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01001156 entry = perf_trace_buf_prepare(size, call->event.type, NULL, &rctx);
Xiao Guangrong430ad5a2010-01-28 09:32:29 +08001157 if (!entry)
Xiao Guangrong1e12a4a2010-01-28 09:34:27 +08001158 return;
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01001159
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001160 entry->ip = (unsigned long)tk->rp.kp.addr;
Masami Hiramatsue09c8612010-07-05 15:54:45 -03001161 memset(&entry[1], 0, dsize);
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001162 store_trace_args(sizeof(*entry), &tk->tp, regs, (u8 *)&entry[1], dsize);
Oleg Nesterovcf6735a2013-06-20 19:38:11 +02001163 perf_trace_buf_submit(entry, size, rctx, 0, 1, regs, head, NULL);
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001164}
Masami Hiramatsu3da0f182014-04-17 17:18:28 +09001165NOKPROBE_SYMBOL(kprobe_perf_func);
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001166
1167/* Kretprobe profile handler */
Masami Hiramatsu3da0f182014-04-17 17:18:28 +09001168static void
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001169kretprobe_perf_func(struct trace_kprobe *tk, struct kretprobe_instance *ri,
Masami Hiramatsu2b106aa2013-05-09 14:44:41 +09001170 struct pt_regs *regs)
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001171{
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -04001172 struct trace_event_call *call = &tk->tp.call;
Alexei Starovoitov25415172015-03-25 12:49:20 -07001173 struct bpf_prog *prog = call->prog;
Masami Hiramatsu93ccae72010-04-12 13:17:08 -04001174 struct kretprobe_trace_entry_head *entry;
Peter Zijlstra1c024eca2010-05-19 14:02:22 +02001175 struct hlist_head *head;
Masami Hiramatsue09c8612010-07-05 15:54:45 -03001176 int size, __size, dsize;
Peter Zijlstra4ed7c922009-11-23 11:37:29 +01001177 int rctx;
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001178
Alexei Starovoitov25415172015-03-25 12:49:20 -07001179 if (prog && !trace_call_bpf(prog, regs))
1180 return;
1181
Oleg Nesterov288e9842013-06-20 19:38:06 +02001182 head = this_cpu_ptr(call->perf_events);
1183 if (hlist_empty(head))
1184 return;
1185
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001186 dsize = __get_data_size(&tk->tp, regs);
1187 __size = sizeof(*entry) + tk->tp.size + dsize;
Masami Hiramatsu74ebb632009-09-14 16:49:28 -04001188 size = ALIGN(__size + sizeof(u32), sizeof(u64));
1189 size -= sizeof(u32);
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001190
Peter Zijlstra (Intel)86038c52014-12-16 12:47:34 +01001191 entry = perf_trace_buf_prepare(size, call->event.type, NULL, &rctx);
Xiao Guangrong430ad5a2010-01-28 09:32:29 +08001192 if (!entry)
Xiao Guangrong1e12a4a2010-01-28 09:34:27 +08001193 return;
Frederic Weisbeckerce71b9d2009-11-22 05:26:55 +01001194
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001195 entry->func = (unsigned long)tk->rp.kp.addr;
Masami Hiramatsua1a138d2009-09-25 11:20:12 -07001196 entry->ret_ip = (unsigned long)ri->ret_addr;
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001197 store_trace_args(sizeof(*entry), &tk->tp, regs, (u8 *)&entry[1], dsize);
Oleg Nesterovcf6735a2013-06-20 19:38:11 +02001198 perf_trace_buf_submit(entry, size, rctx, 0, 1, regs, head, NULL);
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001199}
Masami Hiramatsu3da0f182014-04-17 17:18:28 +09001200NOKPROBE_SYMBOL(kretprobe_perf_func);
Li Zefan07b139c2009-12-21 14:27:35 +08001201#endif /* CONFIG_PERF_EVENTS */
Masami Hiramatsu50d78052009-09-14 16:49:20 -04001202
Oleg Nesterov3fe3d612013-06-20 19:38:09 +02001203/*
1204 * called by perf_trace_init() or __ftrace_set_clr_event() under event_mutex.
1205 *
1206 * kprobe_trace_self_tests_init() does enable_trace_probe/disable_trace_probe
1207 * lockless, but we can't race with this __init function.
1208 */
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -04001209static int kprobe_register(struct trace_event_call *event,
Masami Hiramatsufbc19632014-04-17 17:18:00 +09001210 enum trace_reg type, void *data)
Steven Rostedt22392912010-04-21 12:27:06 -04001211{
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001212 struct trace_kprobe *tk = (struct trace_kprobe *)event->data;
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -04001213 struct trace_event_file *file = data;
Masami Hiramatsu1538f882011-06-27 16:26:44 +09001214
Steven Rostedt22392912010-04-21 12:27:06 -04001215 switch (type) {
1216 case TRACE_REG_REGISTER:
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001217 return enable_trace_kprobe(tk, file);
Steven Rostedt22392912010-04-21 12:27:06 -04001218 case TRACE_REG_UNREGISTER:
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001219 return disable_trace_kprobe(tk, file);
Steven Rostedt22392912010-04-21 12:27:06 -04001220
1221#ifdef CONFIG_PERF_EVENTS
1222 case TRACE_REG_PERF_REGISTER:
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001223 return enable_trace_kprobe(tk, NULL);
Steven Rostedt22392912010-04-21 12:27:06 -04001224 case TRACE_REG_PERF_UNREGISTER:
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001225 return disable_trace_kprobe(tk, NULL);
Jiri Olsaceec0b62012-02-15 15:51:49 +01001226 case TRACE_REG_PERF_OPEN:
1227 case TRACE_REG_PERF_CLOSE:
Jiri Olsa489c75c2012-02-15 15:51:50 +01001228 case TRACE_REG_PERF_ADD:
1229 case TRACE_REG_PERF_DEL:
Jiri Olsaceec0b62012-02-15 15:51:49 +01001230 return 0;
Steven Rostedt22392912010-04-21 12:27:06 -04001231#endif
1232 }
1233 return 0;
1234}
Masami Hiramatsu50d78052009-09-14 16:49:20 -04001235
Masami Hiramatsu3da0f182014-04-17 17:18:28 +09001236static int kprobe_dispatcher(struct kprobe *kp, struct pt_regs *regs)
Masami Hiramatsu50d78052009-09-14 16:49:20 -04001237{
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001238 struct trace_kprobe *tk = container_of(kp, struct trace_kprobe, rp.kp);
Masami Hiramatsu50d78052009-09-14 16:49:20 -04001239
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001240 tk->nhit++;
Masami Hiramatsu48182bd2013-05-09 14:44:36 +09001241
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001242 if (tk->tp.flags & TP_FLAG_TRACE)
1243 kprobe_trace_func(tk, regs);
Li Zefan07b139c2009-12-21 14:27:35 +08001244#ifdef CONFIG_PERF_EVENTS
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001245 if (tk->tp.flags & TP_FLAG_PROFILE)
1246 kprobe_perf_func(tk, regs);
Li Zefan07b139c2009-12-21 14:27:35 +08001247#endif
Masami Hiramatsu50d78052009-09-14 16:49:20 -04001248 return 0; /* We don't tweek kernel, so just return 0 */
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001249}
Masami Hiramatsu3da0f182014-04-17 17:18:28 +09001250NOKPROBE_SYMBOL(kprobe_dispatcher);
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001251
Masami Hiramatsu3da0f182014-04-17 17:18:28 +09001252static int
1253kretprobe_dispatcher(struct kretprobe_instance *ri, struct pt_regs *regs)
Masami Hiramatsu50d78052009-09-14 16:49:20 -04001254{
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001255 struct trace_kprobe *tk = container_of(ri->rp, struct trace_kprobe, rp);
Masami Hiramatsu50d78052009-09-14 16:49:20 -04001256
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001257 tk->nhit++;
Masami Hiramatsu48182bd2013-05-09 14:44:36 +09001258
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001259 if (tk->tp.flags & TP_FLAG_TRACE)
1260 kretprobe_trace_func(tk, ri, regs);
Li Zefan07b139c2009-12-21 14:27:35 +08001261#ifdef CONFIG_PERF_EVENTS
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001262 if (tk->tp.flags & TP_FLAG_PROFILE)
1263 kretprobe_perf_func(tk, ri, regs);
Li Zefan07b139c2009-12-21 14:27:35 +08001264#endif
Masami Hiramatsu50d78052009-09-14 16:49:20 -04001265 return 0; /* We don't tweek kernel, so just return 0 */
1266}
Masami Hiramatsu3da0f182014-04-17 17:18:28 +09001267NOKPROBE_SYMBOL(kretprobe_dispatcher);
Masami Hiramatsue08d1c62009-09-10 19:53:30 -04001268
Steven Rostedta9a57762010-04-22 18:46:14 -04001269static struct trace_event_functions kretprobe_funcs = {
1270 .trace = print_kretprobe_event
1271};
1272
1273static struct trace_event_functions kprobe_funcs = {
1274 .trace = print_kprobe_event
1275};
1276
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001277static int register_kprobe_event(struct trace_kprobe *tk)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001278{
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -04001279 struct trace_event_call *call = &tk->tp.call;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001280 int ret;
1281
Steven Rostedt (Red Hat)2425bcb2015-05-05 11:45:27 -04001282 /* Initialize trace_event_call */
Li Zefanffb9f992010-05-24 16:24:52 +08001283 INIT_LIST_HEAD(&call->class->fields);
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001284 if (trace_kprobe_is_return(tk)) {
Steven Rostedt80decc72010-04-23 10:00:22 -04001285 call->event.funcs = &kretprobe_funcs;
Steven Rostedt2e33af02010-04-22 10:35:55 -04001286 call->class->define_fields = kretprobe_event_define_fields;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001287 } else {
Steven Rostedt80decc72010-04-23 10:00:22 -04001288 call->event.funcs = &kprobe_funcs;
Steven Rostedt2e33af02010-04-22 10:35:55 -04001289 call->class->define_fields = kprobe_event_define_fields;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001290 }
Namhyung Kim5bf652a2013-07-03 16:09:02 +09001291 if (set_print_fmt(&tk->tp, trace_kprobe_is_return(tk)) < 0)
Lai Jiangshana342a0282009-12-15 15:39:49 +08001292 return -ENOMEM;
Steven Rostedt (Red Hat)9023c932015-05-05 09:39:12 -04001293 ret = register_trace_event(&call->event);
Steven Rostedt32c0eda2010-04-23 10:38:03 -04001294 if (!ret) {
Lai Jiangshana342a0282009-12-15 15:39:49 +08001295 kfree(call->print_fmt);
Masami Hiramatsuff50d992009-08-13 16:35:34 -04001296 return -ENODEV;
Lai Jiangshana342a0282009-12-15 15:39:49 +08001297 }
Alexei Starovoitov72cbbc82015-03-25 12:49:19 -07001298 call->flags = TRACE_EVENT_FL_KPROBE;
Steven Rostedt22392912010-04-21 12:27:06 -04001299 call->class->reg = kprobe_register;
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001300 call->data = tk;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001301 ret = trace_add_event_call(call);
Masami Hiramatsuff50d992009-08-13 16:35:34 -04001302 if (ret) {
Mathieu Desnoyersde7b2972014-04-08 17:26:21 -04001303 pr_info("Failed to register kprobe event: %s\n",
Steven Rostedt (Red Hat)687fcc42015-05-13 14:20:14 -04001304 trace_event_name(call));
Lai Jiangshana342a0282009-12-15 15:39:49 +08001305 kfree(call->print_fmt);
Steven Rostedt (Red Hat)9023c932015-05-05 09:39:12 -04001306 unregister_trace_event(&call->event);
Masami Hiramatsuff50d992009-08-13 16:35:34 -04001307 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001308 return ret;
1309}
1310
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001311static int unregister_kprobe_event(struct trace_kprobe *tk)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001312{
Steven Rostedt (Red Hat)40c32592013-07-03 23:33:50 -04001313 int ret;
1314
Masami Hiramatsuff50d992009-08-13 16:35:34 -04001315 /* tp->event is unregistered in trace_remove_event_call() */
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001316 ret = trace_remove_event_call(&tk->tp.call);
Steven Rostedt (Red Hat)40c32592013-07-03 23:33:50 -04001317 if (!ret)
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001318 kfree(tk->tp.call.print_fmt);
Steven Rostedt (Red Hat)40c32592013-07-03 23:33:50 -04001319 return ret;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001320}
1321
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001322/* Make a tracefs interface for controlling probe points */
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001323static __init int init_kprobe_trace(void)
1324{
1325 struct dentry *d_tracer;
1326 struct dentry *entry;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001327
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001328 if (register_module_notifier(&trace_kprobe_module_nb))
Masami Hiramatsu61424312011-06-27 16:26:56 +09001329 return -EINVAL;
1330
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001331 d_tracer = tracing_init_dentry();
Steven Rostedt (Red Hat)14a5ae42015-01-20 11:14:16 -05001332 if (IS_ERR(d_tracer))
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001333 return 0;
1334
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001335 entry = tracefs_create_file("kprobe_events", 0644, d_tracer,
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001336 NULL, &kprobe_events_ops);
1337
Masami Hiramatsucd7e7bd2009-08-13 16:35:42 -04001338 /* Event list interface */
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001339 if (!entry)
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001340 pr_warning("Could not create tracefs "
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001341 "'kprobe_events' entry\n");
Masami Hiramatsucd7e7bd2009-08-13 16:35:42 -04001342
1343 /* Profile interface */
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001344 entry = tracefs_create_file("kprobe_profile", 0444, d_tracer,
Masami Hiramatsucd7e7bd2009-08-13 16:35:42 -04001345 NULL, &kprobe_profile_ops);
1346
1347 if (!entry)
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001348 pr_warning("Could not create tracefs "
Masami Hiramatsucd7e7bd2009-08-13 16:35:42 -04001349 "'kprobe_profile' entry\n");
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001350 return 0;
1351}
1352fs_initcall(init_kprobe_trace);
1353
1354
1355#ifdef CONFIG_FTRACE_STARTUP_TEST
1356
Steven Rostedt265a5b72011-06-06 22:35:13 -04001357/*
1358 * The "__used" keeps gcc from removing the function symbol
1359 * from the kallsyms table.
1360 */
1361static __used int kprobe_trace_selftest_target(int a1, int a2, int a3,
1362 int a4, int a5, int a6)
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001363{
1364 return a1 + a2 + a3 + a4 + a5 + a6;
1365}
1366
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -04001367static struct trace_event_file *
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001368find_trace_probe_file(struct trace_kprobe *tk, struct trace_array *tr)
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001369{
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -04001370 struct trace_event_file *file;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001371
1372 list_for_each_entry(file, &tr->events, list)
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001373 if (file->event_call == &tk->tp.call)
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001374 return file;
1375
1376 return NULL;
1377}
1378
Oleg Nesterov3fe3d612013-06-20 19:38:09 +02001379/*
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001380 * Nobody but us can call enable_trace_kprobe/disable_trace_kprobe at this
Oleg Nesterov3fe3d612013-06-20 19:38:09 +02001381 * stage, we can do this lockless.
1382 */
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001383static __init int kprobe_trace_self_tests_init(void)
1384{
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001385 int ret, warn = 0;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001386 int (*target)(int, int, int, int, int, int);
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001387 struct trace_kprobe *tk;
Steven Rostedt (Red Hat)7f1d2f82015-05-05 10:09:53 -04001388 struct trace_event_file *file;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001389
Yoshihiro YUNOMAE748ec3a2014-06-06 07:35:20 +09001390 if (tracing_is_disabled())
1391 return -ENODEV;
1392
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001393 target = kprobe_trace_selftest_target;
1394
1395 pr_info("Testing kprobe tracing: ");
1396
Srikar Dronamraju8ab83f52012-04-09 14:41:44 +05301397 ret = traceprobe_command("p:testprobe kprobe_trace_selftest_target "
1398 "$stack $stack0 +0($stack)",
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001399 create_trace_kprobe);
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001400 if (WARN_ON_ONCE(ret)) {
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001401 pr_warn("error on probing function entry.\n");
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001402 warn++;
1403 } else {
1404 /* Enable trace point */
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001405 tk = find_trace_kprobe("testprobe", KPROBE_EVENT_SYSTEM);
1406 if (WARN_ON_ONCE(tk == NULL)) {
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001407 pr_warn("error on getting new probe.\n");
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001408 warn++;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001409 } else {
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001410 file = find_trace_probe_file(tk, top_trace_array());
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001411 if (WARN_ON_ONCE(file == NULL)) {
1412 pr_warn("error on getting probe file.\n");
1413 warn++;
1414 } else
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001415 enable_trace_kprobe(tk, file);
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001416 }
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001417 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001418
Srikar Dronamraju8ab83f52012-04-09 14:41:44 +05301419 ret = traceprobe_command("r:testprobe2 kprobe_trace_selftest_target "
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001420 "$retval", create_trace_kprobe);
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001421 if (WARN_ON_ONCE(ret)) {
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001422 pr_warn("error on probing function return.\n");
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001423 warn++;
1424 } else {
1425 /* Enable trace point */
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001426 tk = find_trace_kprobe("testprobe2", KPROBE_EVENT_SYSTEM);
1427 if (WARN_ON_ONCE(tk == NULL)) {
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001428 pr_warn("error on getting 2nd new probe.\n");
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001429 warn++;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001430 } else {
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001431 file = find_trace_probe_file(tk, top_trace_array());
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001432 if (WARN_ON_ONCE(file == NULL)) {
1433 pr_warn("error on getting probe file.\n");
1434 warn++;
1435 } else
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001436 enable_trace_kprobe(tk, file);
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001437 }
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001438 }
1439
1440 if (warn)
1441 goto end;
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001442
1443 ret = target(1, 2, 3, 4, 5, 6);
1444
Masami Hiramatsu02ca1522011-10-04 19:44:38 +09001445 /* Disable trace points before removing it */
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001446 tk = find_trace_kprobe("testprobe", KPROBE_EVENT_SYSTEM);
1447 if (WARN_ON_ONCE(tk == NULL)) {
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001448 pr_warn("error on getting test probe.\n");
Masami Hiramatsu02ca1522011-10-04 19:44:38 +09001449 warn++;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001450 } else {
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001451 file = find_trace_probe_file(tk, top_trace_array());
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001452 if (WARN_ON_ONCE(file == NULL)) {
1453 pr_warn("error on getting probe file.\n");
1454 warn++;
1455 } else
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001456 disable_trace_kprobe(tk, file);
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001457 }
Masami Hiramatsu02ca1522011-10-04 19:44:38 +09001458
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001459 tk = find_trace_kprobe("testprobe2", KPROBE_EVENT_SYSTEM);
1460 if (WARN_ON_ONCE(tk == NULL)) {
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001461 pr_warn("error on getting 2nd test probe.\n");
Masami Hiramatsu02ca1522011-10-04 19:44:38 +09001462 warn++;
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001463 } else {
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001464 file = find_trace_probe_file(tk, top_trace_array());
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001465 if (WARN_ON_ONCE(file == NULL)) {
1466 pr_warn("error on getting probe file.\n");
1467 warn++;
1468 } else
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001469 disable_trace_kprobe(tk, file);
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001470 }
Masami Hiramatsu02ca1522011-10-04 19:44:38 +09001471
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001472 ret = traceprobe_command("-:testprobe", create_trace_kprobe);
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001473 if (WARN_ON_ONCE(ret)) {
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001474 pr_warn("error on deleting a probe.\n");
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001475 warn++;
1476 }
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001477
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001478 ret = traceprobe_command("-:testprobe2", create_trace_kprobe);
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001479 if (WARN_ON_ONCE(ret)) {
Masami Hiramatsu41a7dd42013-05-09 14:44:49 +09001480 pr_warn("error on deleting a probe.\n");
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001481 warn++;
1482 }
1483
1484end:
Namhyung Kimc31ffb32013-07-03 13:50:51 +09001485 release_all_trace_kprobes();
Masami Hiramatsu231e36f2010-01-14 00:12:12 -05001486 if (warn)
1487 pr_cont("NG: Some tests are failed. Please check them.\n");
1488 else
1489 pr_cont("OK\n");
Masami Hiramatsu413d37d2009-08-13 16:35:11 -04001490 return 0;
1491}
1492
1493late_initcall(kprobe_trace_self_tests_init);
1494
1495#endif