blob: fde17b090a47d30873238ea16efe71722e851d8f [file] [log] [blame]
Masami Hiramatsu50656ee2009-11-30 19:19:58 -05001/*
2 * probe-event.c : perf-probe definition to kprobe_events format converter
3 *
4 * Written 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 as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 *
20 */
21
22#define _GNU_SOURCE
23#include <sys/utsname.h>
24#include <sys/types.h>
25#include <sys/stat.h>
26#include <fcntl.h>
27#include <errno.h>
28#include <stdio.h>
29#include <unistd.h>
30#include <stdlib.h>
31#include <string.h>
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050032#include <stdarg.h>
33#include <limits.h>
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050034
35#undef _GNU_SOURCE
36#include "event.h"
Masami Hiramatsue1c01d62009-11-30 19:20:05 -050037#include "string.h"
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050038#include "strlist.h"
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050039#include "debug.h"
40#include "parse-events.h" /* For debugfs_path */
41#include "probe-event.h"
42
43#define MAX_CMDLEN 256
44#define MAX_PROBE_ARGS 128
45#define PERFPROBE_GROUP "probe"
46
47#define semantic_error(msg ...) die("Semantic error :" msg)
48
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050049/* If there is no space to write, returns -E2BIG. */
50static int e_snprintf(char *str, size_t size, const char *format, ...)
Masami Hiramatsu84988452009-12-07 12:00:53 -050051 __attribute__((format(printf, 3, 4)));
52
53static int e_snprintf(char *str, size_t size, const char *format, ...)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -050054{
55 int ret;
56 va_list ap;
57 va_start(ap, format);
58 ret = vsnprintf(str, size, format, ap);
59 va_end(ap);
60 if (ret >= (int)size)
61 ret = -E2BIG;
62 return ret;
63}
64
Masami Hiramatsub7702a22009-12-16 17:24:15 -050065/* Check the name is good for event/group */
66static bool check_event_name(const char *name)
67{
68 if (!isalpha(*name) && *name != '_')
69 return false;
70 while (*++name != '\0') {
71 if (!isalpha(*name) && !isdigit(*name) && *name != '_')
72 return false;
73 }
74 return true;
75}
76
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050077/* Parse probepoint definition. */
78static void parse_perf_probe_probepoint(char *arg, struct probe_point *pp)
79{
80 char *ptr, *tmp;
81 char c, nc = 0;
82 /*
83 * <Syntax>
Masami Hiramatsuaf663d72009-12-15 10:32:18 -050084 * perf probe [EVENT=]SRC:LN
85 * perf probe [EVENT=]FUNC[+OFFS|%return][@SRC]
86 *
87 * TODO:Group name support
Masami Hiramatsu50656ee2009-11-30 19:19:58 -050088 */
89
Masami Hiramatsuaf663d72009-12-15 10:32:18 -050090 ptr = strchr(arg, '=');
91 if (ptr) { /* Event name */
92 *ptr = '\0';
93 tmp = ptr + 1;
94 ptr = strchr(arg, ':');
95 if (ptr) /* Group name is not supported yet. */
96 semantic_error("Group name is not supported yet.");
Masami Hiramatsub7702a22009-12-16 17:24:15 -050097 if (!check_event_name(arg))
98 semantic_error("%s is bad for event name -it must "
99 "follow C symbol-naming rule.", arg);
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500100 pp->event = strdup(arg);
101 arg = tmp;
102 }
103
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500104 ptr = strpbrk(arg, ":+@%");
105 if (ptr) {
106 nc = *ptr;
107 *ptr++ = '\0';
108 }
109
110 /* Check arg is function or file and copy it */
111 if (strchr(arg, '.')) /* File */
112 pp->file = strdup(arg);
113 else /* Function */
114 pp->function = strdup(arg);
115 DIE_IF(pp->file == NULL && pp->function == NULL);
116
117 /* Parse other options */
118 while (ptr) {
119 arg = ptr;
120 c = nc;
121 ptr = strpbrk(arg, ":+@%");
122 if (ptr) {
123 nc = *ptr;
124 *ptr++ = '\0';
125 }
126 switch (c) {
127 case ':': /* Line number */
128 pp->line = strtoul(arg, &tmp, 0);
129 if (*tmp != '\0')
130 semantic_error("There is non-digit charactor"
131 " in line number.");
132 break;
133 case '+': /* Byte offset from a symbol */
134 pp->offset = strtoul(arg, &tmp, 0);
135 if (*tmp != '\0')
136 semantic_error("There is non-digit charactor"
137 " in offset.");
138 break;
139 case '@': /* File name */
140 if (pp->file)
141 semantic_error("SRC@SRC is not allowed.");
142 pp->file = strdup(arg);
143 DIE_IF(pp->file == NULL);
144 if (ptr)
145 semantic_error("@SRC must be the last "
146 "option.");
147 break;
148 case '%': /* Probe places */
149 if (strcmp(arg, "return") == 0) {
150 pp->retprobe = 1;
151 } else /* Others not supported yet */
152 semantic_error("%%%s is not supported.", arg);
153 break;
154 default:
155 DIE_IF("Program has a bug.");
156 break;
157 }
158 }
159
160 /* Exclusion check */
161 if (pp->line && pp->offset)
162 semantic_error("Offset can't be used with line number.");
163
164 if (!pp->line && pp->file && !pp->function)
165 semantic_error("File always requires line number.");
166
167 if (pp->offset && !pp->function)
168 semantic_error("Offset requires an entry function.");
169
170 if (pp->retprobe && !pp->function)
171 semantic_error("Return probe requires an entry function.");
172
173 if ((pp->offset || pp->line) && pp->retprobe)
174 semantic_error("Offset/Line can't be used with return probe.");
175
176 pr_debug("symbol:%s file:%s line:%d offset:%d, return:%d\n",
177 pp->function, pp->file, pp->line, pp->offset, pp->retprobe);
178}
179
180/* Parse perf-probe event definition */
Masami Hiramatsufac13fd2009-12-15 10:31:14 -0500181void parse_perf_probe_event(const char *str, struct probe_point *pp,
182 bool *need_dwarf)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500183{
Masami Hiramatsue1c01d62009-11-30 19:20:05 -0500184 char **argv;
Masami Hiramatsufac13fd2009-12-15 10:31:14 -0500185 int argc, i;
186
187 *need_dwarf = false;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500188
Masami Hiramatsue1c01d62009-11-30 19:20:05 -0500189 argv = argv_split(str, &argc);
190 if (!argv)
191 die("argv_split failed.");
192 if (argc > MAX_PROBE_ARGS + 1)
193 semantic_error("Too many arguments");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500194
195 /* Parse probe point */
196 parse_perf_probe_probepoint(argv[0], pp);
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500197 if (pp->file || pp->line)
Masami Hiramatsufac13fd2009-12-15 10:31:14 -0500198 *need_dwarf = true;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500199
Masami Hiramatsue1c01d62009-11-30 19:20:05 -0500200 /* Copy arguments and ensure return probe has no C argument */
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500201 pp->nr_args = argc - 1;
Masami Hiramatsue1c01d62009-11-30 19:20:05 -0500202 pp->args = zalloc(sizeof(char *) * pp->nr_args);
203 for (i = 0; i < pp->nr_args; i++) {
204 pp->args[i] = strdup(argv[i + 1]);
205 if (!pp->args[i])
206 die("Failed to copy argument.");
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500207 if (is_c_varname(pp->args[i])) {
208 if (pp->retprobe)
209 semantic_error("You can't specify local"
210 " variable for kretprobe");
Masami Hiramatsufac13fd2009-12-15 10:31:14 -0500211 *need_dwarf = true;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500212 }
Masami Hiramatsue1c01d62009-11-30 19:20:05 -0500213 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500214
Masami Hiramatsue1c01d62009-11-30 19:20:05 -0500215 argv_free(argv);
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500216}
217
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500218/* Parse kprobe_events event into struct probe_point */
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500219void parse_trace_kprobe_event(const char *str, struct probe_point *pp)
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500220{
221 char pr;
222 char *p;
223 int ret, i, argc;
224 char **argv;
225
226 pr_debug("Parsing kprobe_events: %s\n", str);
227 argv = argv_split(str, &argc);
228 if (!argv)
229 die("argv_split failed.");
230 if (argc < 2)
231 semantic_error("Too less arguments.");
232
233 /* Scan event and group name. */
Liming Wang93aaa452009-12-02 16:42:54 +0800234 ret = sscanf(argv[0], "%c:%a[^/ \t]/%a[^ \t]",
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500235 &pr, (float *)(void *)&pp->group,
236 (float *)(void *)&pp->event);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500237 if (ret != 3)
238 semantic_error("Failed to parse event name: %s", argv[0]);
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500239 pr_debug("Group:%s Event:%s probe:%c\n", pp->group, pp->event, pr);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500240
241 pp->retprobe = (pr == 'r');
242
243 /* Scan function name and offset */
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500244 ret = sscanf(argv[1], "%a[^+]+%d", (float *)(void *)&pp->function,
245 &pp->offset);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500246 if (ret == 1)
247 pp->offset = 0;
248
249 /* kprobe_events doesn't have this information */
250 pp->line = 0;
251 pp->file = NULL;
252
253 pp->nr_args = argc - 2;
254 pp->args = zalloc(sizeof(char *) * pp->nr_args);
255 for (i = 0; i < pp->nr_args; i++) {
256 p = strchr(argv[i + 2], '=');
257 if (p) /* We don't need which register is assigned. */
258 *p = '\0';
259 pp->args[i] = strdup(argv[i + 2]);
260 if (!pp->args[i])
261 die("Failed to copy argument.");
262 }
263
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500264 argv_free(argv);
265}
266
Masami Hiramatsu7ef17aa2009-12-15 10:32:47 -0500267/* Synthesize only probe point (not argument) */
268int synthesize_perf_probe_point(struct probe_point *pp)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500269{
270 char *buf;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500271 char offs[64] = "", line[64] = "";
Masami Hiramatsu7ef17aa2009-12-15 10:32:47 -0500272 int ret;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500273
274 pp->probes[0] = buf = zalloc(MAX_CMDLEN);
Masami Hiramatsu388c3aa2010-02-18 13:16:52 -0500275 pp->found = 1;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500276 if (!buf)
277 die("Failed to allocate memory by zalloc.");
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500278 if (pp->offset) {
279 ret = e_snprintf(offs, 64, "+%d", pp->offset);
280 if (ret <= 0)
281 goto error;
282 }
283 if (pp->line) {
284 ret = e_snprintf(line, 64, ":%d", pp->line);
285 if (ret <= 0)
286 goto error;
287 }
288
289 if (pp->function)
290 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s%s%s", pp->function,
291 offs, pp->retprobe ? "%return" : "", line);
292 else
Masami Hiramatsu84988452009-12-07 12:00:53 -0500293 ret = e_snprintf(buf, MAX_CMDLEN, "%s%s", pp->file, line);
Masami Hiramatsu7ef17aa2009-12-15 10:32:47 -0500294 if (ret <= 0) {
295error:
296 free(pp->probes[0]);
297 pp->probes[0] = NULL;
Masami Hiramatsu388c3aa2010-02-18 13:16:52 -0500298 pp->found = 0;
Masami Hiramatsu7ef17aa2009-12-15 10:32:47 -0500299 }
300 return ret;
301}
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500302
Masami Hiramatsu7ef17aa2009-12-15 10:32:47 -0500303int synthesize_perf_probe_event(struct probe_point *pp)
304{
305 char *buf;
306 int i, len, ret;
307
308 len = synthesize_perf_probe_point(pp);
309 if (len < 0)
310 return 0;
311
312 buf = pp->probes[0];
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500313 for (i = 0; i < pp->nr_args; i++) {
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500314 ret = e_snprintf(&buf[len], MAX_CMDLEN - len, " %s",
315 pp->args[i]);
316 if (ret <= 0)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500317 goto error;
318 len += ret;
319 }
320 pp->found = 1;
321
322 return pp->found;
323error:
324 free(pp->probes[0]);
Masami Hiramatsu7ef17aa2009-12-15 10:32:47 -0500325 pp->probes[0] = NULL;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500326
327 return ret;
328}
329
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500330int synthesize_trace_kprobe_event(struct probe_point *pp)
331{
332 char *buf;
333 int i, len, ret;
334
335 pp->probes[0] = buf = zalloc(MAX_CMDLEN);
336 if (!buf)
337 die("Failed to allocate memory by zalloc.");
338 ret = e_snprintf(buf, MAX_CMDLEN, "%s+%d", pp->function, pp->offset);
339 if (ret <= 0)
340 goto error;
341 len = ret;
342
343 for (i = 0; i < pp->nr_args; i++) {
344 ret = e_snprintf(&buf[len], MAX_CMDLEN - len, " %s",
345 pp->args[i]);
346 if (ret <= 0)
347 goto error;
348 len += ret;
349 }
350 pp->found = 1;
351
352 return pp->found;
353error:
354 free(pp->probes[0]);
Masami Hiramatsu7ef17aa2009-12-15 10:32:47 -0500355 pp->probes[0] = NULL;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500356
357 return ret;
358}
359
360static int open_kprobe_events(int flags, int mode)
361{
362 char buf[PATH_MAX];
363 int ret;
364
365 ret = e_snprintf(buf, PATH_MAX, "%s/../kprobe_events", debugfs_path);
366 if (ret < 0)
367 die("Failed to make kprobe_events path.");
368
369 ret = open(buf, flags, mode);
370 if (ret < 0) {
371 if (errno == ENOENT)
372 die("kprobe_events file does not exist -"
373 " please rebuild with CONFIG_KPROBE_TRACER.");
374 else
375 die("Could not open kprobe_events file: %s",
376 strerror(errno));
377 }
378 return ret;
379}
380
381/* Get raw string list of current kprobe_events */
382static struct strlist *get_trace_kprobe_event_rawlist(int fd)
383{
384 int ret, idx;
385 FILE *fp;
386 char buf[MAX_CMDLEN];
387 char *p;
388 struct strlist *sl;
389
390 sl = strlist__new(true, NULL);
391
392 fp = fdopen(dup(fd), "r");
393 while (!feof(fp)) {
394 p = fgets(buf, MAX_CMDLEN, fp);
395 if (!p)
396 break;
397
398 idx = strlen(p) - 1;
399 if (p[idx] == '\n')
400 p[idx] = '\0';
401 ret = strlist__add(sl, buf);
402 if (ret < 0)
403 die("strlist__add failed: %s", strerror(-ret));
404 }
405 fclose(fp);
406
407 return sl;
408}
409
410/* Free and zero clear probe_point */
411static void clear_probe_point(struct probe_point *pp)
412{
413 int i;
414
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500415 if (pp->event)
416 free(pp->event);
417 if (pp->group)
418 free(pp->group);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500419 if (pp->function)
420 free(pp->function);
421 if (pp->file)
422 free(pp->file);
423 for (i = 0; i < pp->nr_args; i++)
424 free(pp->args[i]);
425 if (pp->args)
426 free(pp->args);
427 for (i = 0; i < pp->found; i++)
428 free(pp->probes[i]);
Julia Lawall5660ce32009-12-09 20:26:18 +0100429 memset(pp, 0, sizeof(*pp));
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500430}
431
Masami Hiramatsu278498d2009-12-08 17:02:40 -0500432/* Show an event */
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500433static void show_perf_probe_event(const char *event, const char *place,
434 struct probe_point *pp)
Masami Hiramatsu278498d2009-12-08 17:02:40 -0500435{
Masami Hiramatsu7e990a52009-12-15 10:31:21 -0500436 int i, ret;
Masami Hiramatsu278498d2009-12-08 17:02:40 -0500437 char buf[128];
438
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500439 ret = e_snprintf(buf, 128, "%s:%s", pp->group, event);
Masami Hiramatsu7e990a52009-12-15 10:31:21 -0500440 if (ret < 0)
441 die("Failed to copy event: %s", strerror(-ret));
Masami Hiramatsu278498d2009-12-08 17:02:40 -0500442 printf(" %-40s (on %s", buf, place);
443
444 if (pp->nr_args > 0) {
445 printf(" with");
446 for (i = 0; i < pp->nr_args; i++)
447 printf(" %s", pp->args[i]);
448 }
449 printf(")\n");
450}
451
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500452/* List up current perf-probe events */
453void show_perf_probe_events(void)
454{
Masami Hiramatsu7ef17aa2009-12-15 10:32:47 -0500455 int fd;
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500456 struct probe_point pp;
457 struct strlist *rawlist;
458 struct str_node *ent;
459
Masami Hiramatsu388c3aa2010-02-18 13:16:52 -0500460 memset(&pp, 0, sizeof(pp));
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500461 fd = open_kprobe_events(O_RDONLY, 0);
462 rawlist = get_trace_kprobe_event_rawlist(fd);
463 close(fd);
464
Masami Hiramatsuadf365f2009-12-15 10:32:03 -0500465 strlist__for_each(ent, rawlist) {
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500466 parse_trace_kprobe_event(ent->s, &pp);
Masami Hiramatsu278498d2009-12-08 17:02:40 -0500467 /* Synthesize only event probe point */
Masami Hiramatsu7ef17aa2009-12-15 10:32:47 -0500468 synthesize_perf_probe_point(&pp);
Masami Hiramatsu278498d2009-12-08 17:02:40 -0500469 /* Show an event */
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500470 show_perf_probe_event(pp.event, pp.probes[0], &pp);
Masami Hiramatsu4de189f2009-11-30 19:20:17 -0500471 clear_probe_point(&pp);
472 }
473
474 strlist__delete(rawlist);
475}
476
Masami Hiramatsub498ce12009-11-30 19:20:25 -0500477/* Get current perf-probe event names */
Masami Hiramatsufa282442009-12-08 17:03:23 -0500478static struct strlist *get_perf_event_names(int fd, bool include_group)
Masami Hiramatsub498ce12009-11-30 19:20:25 -0500479{
Masami Hiramatsufa282442009-12-08 17:03:23 -0500480 char buf[128];
Masami Hiramatsub498ce12009-11-30 19:20:25 -0500481 struct strlist *sl, *rawlist;
482 struct str_node *ent;
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500483 struct probe_point pp;
Masami Hiramatsub498ce12009-11-30 19:20:25 -0500484
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500485 memset(&pp, 0, sizeof(pp));
Masami Hiramatsub498ce12009-11-30 19:20:25 -0500486 rawlist = get_trace_kprobe_event_rawlist(fd);
487
Masami Hiramatsue1d20172009-12-07 12:00:46 -0500488 sl = strlist__new(true, NULL);
Masami Hiramatsuadf365f2009-12-15 10:32:03 -0500489 strlist__for_each(ent, rawlist) {
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500490 parse_trace_kprobe_event(ent->s, &pp);
Masami Hiramatsufa282442009-12-08 17:03:23 -0500491 if (include_group) {
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500492 if (e_snprintf(buf, 128, "%s:%s", pp.group,
493 pp.event) < 0)
Masami Hiramatsufa282442009-12-08 17:03:23 -0500494 die("Failed to copy group:event name.");
495 strlist__add(sl, buf);
496 } else
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500497 strlist__add(sl, pp.event);
498 clear_probe_point(&pp);
Masami Hiramatsub498ce12009-11-30 19:20:25 -0500499 }
500
501 strlist__delete(rawlist);
502
503 return sl;
504}
505
Masami Hiramatsua9b495b2009-12-08 17:02:47 -0500506static void write_trace_kprobe_event(int fd, const char *buf)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500507{
508 int ret;
509
Masami Hiramatsufa282442009-12-08 17:03:23 -0500510 pr_debug("Writing event: %s\n", buf);
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500511 ret = write(fd, buf, strlen(buf));
512 if (ret <= 0)
Masami Hiramatsufa282442009-12-08 17:03:23 -0500513 die("Failed to write event: %s", strerror(errno));
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500514}
515
Masami Hiramatsub498ce12009-11-30 19:20:25 -0500516static void get_new_event_name(char *buf, size_t len, const char *base,
Masami Hiramatsud761b082009-12-15 10:32:25 -0500517 struct strlist *namelist, bool allow_suffix)
Masami Hiramatsub498ce12009-11-30 19:20:25 -0500518{
519 int i, ret;
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -0500520
521 /* Try no suffix */
522 ret = e_snprintf(buf, len, "%s", base);
523 if (ret < 0)
524 die("snprintf() failed: %s", strerror(-ret));
525 if (!strlist__has_entry(namelist, buf))
526 return;
527
Masami Hiramatsud761b082009-12-15 10:32:25 -0500528 if (!allow_suffix) {
529 pr_warning("Error: event \"%s\" already exists. "
530 "(Use -f to force duplicates.)\n", base);
531 die("Can't add new event.");
532 }
533
Masami Hiramatsu17f88fc2009-12-08 17:03:02 -0500534 /* Try to add suffix */
535 for (i = 1; i < MAX_EVENT_INDEX; i++) {
Masami Hiramatsub498ce12009-11-30 19:20:25 -0500536 ret = e_snprintf(buf, len, "%s_%d", base, i);
537 if (ret < 0)
538 die("snprintf() failed: %s", strerror(-ret));
539 if (!strlist__has_entry(namelist, buf))
540 break;
541 }
542 if (i == MAX_EVENT_INDEX)
543 die("Too many events are on the same function.");
544}
545
Masami Hiramatsud761b082009-12-15 10:32:25 -0500546void add_trace_kprobe_events(struct probe_point *probes, int nr_probes,
547 bool force_add)
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500548{
549 int i, j, fd;
550 struct probe_point *pp;
551 char buf[MAX_CMDLEN];
Masami Hiramatsub498ce12009-11-30 19:20:25 -0500552 char event[64];
553 struct strlist *namelist;
Masami Hiramatsud761b082009-12-15 10:32:25 -0500554 bool allow_suffix;
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500555
Masami Hiramatsub498ce12009-11-30 19:20:25 -0500556 fd = open_kprobe_events(O_RDWR, O_APPEND);
557 /* Get current event names */
Masami Hiramatsufa282442009-12-08 17:03:23 -0500558 namelist = get_perf_event_names(fd, false);
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500559
560 for (j = 0; j < nr_probes; j++) {
561 pp = probes + j;
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500562 if (!pp->event)
563 pp->event = strdup(pp->function);
564 if (!pp->group)
565 pp->group = strdup(PERFPROBE_GROUP);
566 DIE_IF(!pp->event || !pp->group);
Masami Hiramatsud761b082009-12-15 10:32:25 -0500567 /* If force_add is true, suffix search is allowed */
568 allow_suffix = force_add;
Masami Hiramatsub498ce12009-11-30 19:20:25 -0500569 for (i = 0; i < pp->found; i++) {
570 /* Get an unused new event name */
Masami Hiramatsud761b082009-12-15 10:32:25 -0500571 get_new_event_name(event, 64, pp->event, namelist,
572 allow_suffix);
Masami Hiramatsub498ce12009-11-30 19:20:25 -0500573 snprintf(buf, MAX_CMDLEN, "%c:%s/%s %s\n",
574 pp->retprobe ? 'r' : 'p',
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500575 pp->group, event,
Masami Hiramatsub498ce12009-11-30 19:20:25 -0500576 pp->probes[i]);
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500577 write_trace_kprobe_event(fd, buf);
Masami Hiramatsua9b495b2009-12-08 17:02:47 -0500578 printf("Added new event:\n");
579 /* Get the first parameter (probe-point) */
580 sscanf(pp->probes[i], "%s", buf);
Masami Hiramatsuaf663d72009-12-15 10:32:18 -0500581 show_perf_probe_event(event, buf, pp);
Masami Hiramatsub498ce12009-11-30 19:20:25 -0500582 /* Add added event name to namelist */
583 strlist__add(namelist, event);
Masami Hiramatsud761b082009-12-15 10:32:25 -0500584 /*
585 * Probes after the first probe which comes from same
586 * user input are always allowed to add suffix, because
587 * there might be several addresses corresponding to
588 * one code line.
589 */
590 allow_suffix = true;
Masami Hiramatsub498ce12009-11-30 19:20:25 -0500591 }
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500592 }
Masami Hiramatsua9b495b2009-12-08 17:02:47 -0500593 /* Show how to use the event. */
594 printf("\nYou can now use it on all perf tools, such as:\n\n");
595 printf("\tperf record -e %s:%s -a sleep 1\n\n", PERFPROBE_GROUP, event);
596
Masami Hiramatsue1d20172009-12-07 12:00:46 -0500597 strlist__delete(namelist);
Masami Hiramatsu50656ee2009-11-30 19:19:58 -0500598 close(fd);
599}
Masami Hiramatsufa282442009-12-08 17:03:23 -0500600
Masami Hiramatsubbbb5212009-12-15 10:32:10 -0500601static void __del_trace_kprobe_event(int fd, struct str_node *ent)
602{
603 char *p;
604 char buf[128];
605
606 /* Convert from perf-probe event to trace-kprobe event */
607 if (e_snprintf(buf, 128, "-:%s", ent->s) < 0)
608 die("Failed to copy event.");
609 p = strchr(buf + 2, ':');
610 if (!p)
611 die("Internal error: %s should have ':' but not.", ent->s);
612 *p = '/';
613
614 write_trace_kprobe_event(fd, buf);
615 printf("Remove event: %s\n", ent->s);
616}
617
Masami Hiramatsufa282442009-12-08 17:03:23 -0500618static void del_trace_kprobe_event(int fd, const char *group,
619 const char *event, struct strlist *namelist)
620{
621 char buf[128];
Masami Hiramatsubbbb5212009-12-15 10:32:10 -0500622 struct str_node *ent, *n;
623 int found = 0;
Masami Hiramatsufa282442009-12-08 17:03:23 -0500624
625 if (e_snprintf(buf, 128, "%s:%s", group, event) < 0)
626 die("Failed to copy event.");
Masami Hiramatsufa282442009-12-08 17:03:23 -0500627
Masami Hiramatsubbbb5212009-12-15 10:32:10 -0500628 if (strpbrk(buf, "*?")) { /* Glob-exp */
629 strlist__for_each_safe(ent, n, namelist)
630 if (strglobmatch(ent->s, buf)) {
631 found++;
632 __del_trace_kprobe_event(fd, ent);
633 strlist__remove(namelist, ent);
634 }
635 } else {
636 ent = strlist__find(namelist, buf);
637 if (ent) {
638 found++;
639 __del_trace_kprobe_event(fd, ent);
640 strlist__remove(namelist, ent);
641 }
642 }
643 if (found == 0)
644 pr_info("Info: event \"%s\" does not exist, could not remove it.\n", buf);
Masami Hiramatsufa282442009-12-08 17:03:23 -0500645}
646
647void del_trace_kprobe_events(struct strlist *dellist)
648{
649 int fd;
Masami Hiramatsufa282442009-12-08 17:03:23 -0500650 const char *group, *event;
651 char *p, *str;
652 struct str_node *ent;
653 struct strlist *namelist;
654
655 fd = open_kprobe_events(O_RDWR, O_APPEND);
656 /* Get current event names */
657 namelist = get_perf_event_names(fd, true);
658
Masami Hiramatsuadf365f2009-12-15 10:32:03 -0500659 strlist__for_each(ent, dellist) {
Masami Hiramatsufa282442009-12-08 17:03:23 -0500660 str = strdup(ent->s);
661 if (!str)
662 die("Failed to copy event.");
Masami Hiramatsubbbb5212009-12-15 10:32:10 -0500663 pr_debug("Parsing: %s\n", str);
Masami Hiramatsufa282442009-12-08 17:03:23 -0500664 p = strchr(str, ':');
665 if (p) {
666 group = str;
667 *p = '\0';
668 event = p + 1;
669 } else {
Masami Hiramatsubbbb5212009-12-15 10:32:10 -0500670 group = "*";
Masami Hiramatsufa282442009-12-08 17:03:23 -0500671 event = str;
672 }
Masami Hiramatsubbbb5212009-12-15 10:32:10 -0500673 pr_debug("Group: %s, Event: %s\n", group, event);
Masami Hiramatsufa282442009-12-08 17:03:23 -0500674 del_trace_kprobe_event(fd, group, event, namelist);
675 free(str);
676 }
677 strlist__delete(namelist);
678 close(fd);
679}
680