probe-event.c 33.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
/*
 * probe-event.c : perf-probe definition to kprobe_events format converter
 *
 * Written by Masami Hiramatsu <mhiramat@redhat.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 *
 */

#define _GNU_SOURCE
#include <sys/utsname.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
32 33
#include <stdarg.h>
#include <limits.h>
34 35

#undef _GNU_SOURCE
36
#include "util.h"
37
#include "event.h"
38
#include "string.h"
39
#include "strlist.h"
40
#include "debug.h"
41
#include "cache.h"
42
#include "color.h"
43 44
#include "symbol.h"
#include "thread.h"
45 46
#include "trace-event.h"	/* For __unused */
#include "parse-events.h"	/* For debugfs_path */
47
#include "probe-event.h"
48
#include "probe-finder.h"
49 50 51 52 53

#define MAX_CMDLEN 256
#define MAX_PROBE_ARGS 128
#define PERFPROBE_GROUP "probe"

54 55
bool probe_event_dry_run;	/* Dry run flag */

56
#define semantic_error(msg ...) pr_err("Semantic error :" msg)
57

58
/* If there is no space to write, returns -E2BIG. */
59 60 61
static int e_snprintf(char *str, size_t size, const char *format, ...)
	__attribute__((format(printf, 3, 4)));

62 63 64 65 66 67 68 69 70 71 72 73
static int e_snprintf(char *str, size_t size, const char *format, ...)
{
	int ret;
	va_list ap;
	va_start(ap, format);
	ret = vsnprintf(str, size, format, ap);
	va_end(ap);
	if (ret >= (int)size)
		ret = -E2BIG;
	return ret;
}

74
static char *synthesize_perf_probe_point(struct perf_probe_point *pp);
75 76 77
static struct map_groups kmap_groups;
static struct map *kmaps[MAP__NR_TYPES];

78
/* Initialize symbol maps and path of vmlinux */
79
static int init_vmlinux(void)
80
{
81 82
	int ret;

83 84 85 86 87
	symbol_conf.sort_by_name = true;
	if (symbol_conf.vmlinux_name == NULL)
		symbol_conf.try_vmlinux_path = true;
	else
		pr_debug("Use vmlinux: %s\n", symbol_conf.vmlinux_name);
88 89 90 91 92
	ret = symbol__init();
	if (ret < 0) {
		pr_debug("Failed to init symbol map.\n");
		goto out;
	}
93 94

	map_groups__init(&kmap_groups);
95 96 97 98 99 100 101 102
	ret = map_groups__create_kernel_maps(&kmap_groups, kmaps);
	if (ret < 0)
		pr_debug("Failed to create kernel maps.\n");

out:
	if (ret < 0)
		pr_warning("Failed to init vmlinux path.\n");
	return ret;
103 104
}

105
#ifdef DWARF_SUPPORT
106 107 108 109 110 111 112 113 114
static int open_vmlinux(void)
{
	if (map__load(kmaps[MAP__FUNCTION], NULL) < 0) {
		pr_debug("Failed to load kernel map.\n");
		return -EINVAL;
	}
	pr_debug("Try to open %s\n", kmaps[MAP__FUNCTION]->dso->long_name);
	return open(kmaps[MAP__FUNCTION]->dso->long_name, O_RDONLY);
}
115

116 117 118
/* Convert trace point to probe point with debuginfo */
static int convert_to_perf_probe_point(struct kprobe_trace_point *tp,
				       struct perf_probe_point *pp)
119 120
{
	struct symbol *sym;
121
	int fd, ret = -ENOENT;
122 123 124 125 126

	sym = map__find_symbol_by_name(kmaps[MAP__FUNCTION],
				       tp->symbol, NULL);
	if (sym) {
		fd = open_vmlinux();
127 128 129 130 131
		if (fd >= 0) {
			ret = find_perf_probe_point(fd,
						 sym->start + tp->offset, pp);
			close(fd);
		}
132 133
	}
	if (ret <= 0) {
134 135
		pr_debug("Failed to find corresponding probes from "
			 "debuginfo. Use kprobe event information.\n");
136 137 138 139
		pp->function = xstrdup(tp->symbol);
		pp->offset = tp->offset;
	}
	pp->retprobe = tp->retprobe;
140 141

	return 0;
142 143 144 145 146 147 148 149 150 151 152
}

/* Try to find perf_probe_event with debuginfo */
static int try_to_find_kprobe_trace_events(struct perf_probe_event *pev,
					   struct kprobe_trace_event **tevs)
{
	bool need_dwarf = perf_probe_event_need_dwarf(pev);
	int fd, ntevs;

	fd = open_vmlinux();
	if (fd < 0) {
153 154 155 156
		if (need_dwarf) {
			pr_warning("Failed to open debuginfo file.\n");
			return fd;
		}
157 158 159 160 161 162 163 164
		pr_debug("Could not open vmlinux. Try to use symbols.\n");
		return 0;
	}

	/* Searching trace events corresponding to probe event */
	ntevs = find_kprobe_trace_events(fd, pev, tevs);
	close(fd);

165 166
	if (ntevs > 0) {	/* Succeeded to find trace events */
		pr_debug("find %d kprobe_trace_events.\n", ntevs);
167
		return ntevs;
168
	}
169

170 171 172 173 174 175
	if (ntevs == 0)	{	/* No error but failed to find probe point. */
		pr_warning("Probe point '%s' not found.\n",
			   synthesize_perf_probe_point(&pev->point));
		return -ENOENT;
	}
	/* Error path : ntevs < 0 */
176
	if (need_dwarf) {
177
		if (ntevs == -EBADF)
178 179
			pr_warning("No dwarf info found in the vmlinux - "
				"please rebuild with CONFIG_DEBUG_INFO=y.\n");
180
		return ntevs;
181 182 183 184 185 186 187 188 189
	}
	pr_debug("An error occurred in debuginfo analysis."
		 " Try to use symbols.\n");
	return 0;
}

#define LINEBUF_SIZE 256
#define NR_ADDITIONAL_LINES 2

190
static int show_one_line(FILE *fp, unsigned int l, bool skip, bool show_num)
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
{
	char buf[LINEBUF_SIZE];
	const char *color = PERF_COLOR_BLUE;

	if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
		goto error;
	if (!skip) {
		if (show_num)
			fprintf(stdout, "%7u  %s", l, buf);
		else
			color_fprintf(stdout, color, "         %s", buf);
	}

	while (strlen(buf) == LINEBUF_SIZE - 1 &&
	       buf[LINEBUF_SIZE - 2] != '\n') {
		if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
			goto error;
		if (!skip) {
			if (show_num)
				fprintf(stdout, "%s", buf);
			else
				color_fprintf(stdout, color, "%s", buf);
		}
	}
215 216

	return 0;
217 218
error:
	if (feof(fp))
219
		pr_warning("Source file is shorter than expected.\n");
220
	else
221 222 223
		pr_warning("File read error: %s\n", strerror(errno));

	return -1;
224 225 226 227 228 229
}

/*
 * Show line-range always requires debuginfo to find source file and
 * line number.
 */
230
int show_line_range(struct line_range *lr)
231 232 233 234 235 236 237
{
	unsigned int l = 1;
	struct line_node *ln;
	FILE *fp;
	int fd, ret;

	/* Search a line range */
238 239 240 241
	ret = init_vmlinux();
	if (ret < 0)
		return ret;

242
	fd = open_vmlinux();
243 244 245 246 247
	if (fd < 0) {
		pr_warning("Failed to open debuginfo file.\n");
		return fd;
	}

248 249
	ret = find_line_range(fd, lr);
	close(fd);
250 251 252 253 254 255 256
	if (ret == 0) {
		pr_warning("Specified source line is not found.\n");
		return -ENOENT;
	} else if (ret < 0) {
		pr_warning("Debuginfo analysis failed. (%d)\n", ret);
		return ret;
	}
257 258 259 260 261 262 263 264 265 266

	setup_pager();

	if (lr->function)
		fprintf(stdout, "<%s:%d>\n", lr->function,
			lr->start - lr->offset);
	else
		fprintf(stdout, "<%s:%d>\n", lr->file, lr->start);

	fp = fopen(lr->path, "r");
267 268 269 270 271
	if (fp == NULL) {
		pr_warning("Failed to open %s: %s\n", lr->path,
			   strerror(errno));
		return -errno;
	}
272
	/* Skip to starting line number */
273 274 275 276
	while (l < lr->start && ret >= 0)
		ret = show_one_line(fp, l++, true, false);
	if (ret < 0)
		goto end;
277 278

	list_for_each_entry(ln, &lr->line_list, list) {
279 280 281 282 283 284 285 286
		while (ln->line > l && ret >= 0)
			ret = show_one_line(fp, (l++) - lr->offset,
					    false, false);
		if (ret >= 0)
			ret = show_one_line(fp, (l++) - lr->offset,
					    false, true);
		if (ret < 0)
			goto end;
287 288 289 290
	}

	if (lr->end == INT_MAX)
		lr->end = l + NR_ADDITIONAL_LINES;
291 292 293
	while (l < lr->end && !feof(fp) && ret >= 0)
		ret = show_one_line(fp, (l++) - lr->offset, false, false);
end:
294
	fclose(fp);
295
	return ret;
296 297 298 299
}

#else	/* !DWARF_SUPPORT */

300
static int convert_to_perf_probe_point(struct kprobe_trace_point *tp,
301 302 303 304 305
					struct perf_probe_point *pp)
{
	pp->function = xstrdup(tp->symbol);
	pp->offset = tp->offset;
	pp->retprobe = tp->retprobe;
306 307

	return 0;
308 309 310 311 312
}

static int try_to_find_kprobe_trace_events(struct perf_probe_event *pev,
				struct kprobe_trace_event **tevs __unused)
{
313 314 315 316
	if (perf_probe_event_need_dwarf(pev)) {
		pr_warning("Debuginfo-analysis is not supported.\n");
		return -ENOSYS;
	}
317 318 319
	return 0;
}

320
int show_line_range(struct line_range *lr __unused)
321
{
322 323
	pr_warning("Debuginfo-analysis is not supported.\n");
	return -ENOSYS;
324 325
}

326 327
#endif

328
int parse_line_range_desc(const char *arg, struct line_range *lr)
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
{
	const char *ptr;
	char *tmp;
	/*
	 * <Syntax>
	 * SRC:SLN[+NUM|-ELN]
	 * FUNC[:SLN[+NUM|-ELN]]
	 */
	ptr = strchr(arg, ':');
	if (ptr) {
		lr->start = (unsigned int)strtoul(ptr + 1, &tmp, 0);
		if (*tmp == '+')
			lr->end = lr->start + (unsigned int)strtoul(tmp + 1,
								    &tmp, 0);
		else if (*tmp == '-')
			lr->end = (unsigned int)strtoul(tmp + 1, &tmp, 0);
		else
			lr->end = 0;
		pr_debug("Line range is %u to %u\n", lr->start, lr->end);
348
		if (lr->end && lr->start > lr->end) {
349
			semantic_error("Start line must be smaller"
350 351 352 353 354
				       " than end line.\n");
			return -EINVAL;
		}
		if (*tmp != '\0') {
			semantic_error("Tailing with invalid character '%d'.\n",
355
				       *tmp);
356 357
			return -EINVAL;
		}
358
		tmp = xstrndup(arg, (ptr - arg));
359
	} else
360
		tmp = xstrdup(arg);
361 362 363 364 365

	if (strchr(tmp, '.'))
		lr->file = tmp;
	else
		lr->function = tmp;
366 367

	return 0;
368 369
}

370 371 372 373 374 375 376 377 378 379 380 381
/* Check the name is good for event/group */
static bool check_event_name(const char *name)
{
	if (!isalpha(*name) && *name != '_')
		return false;
	while (*++name != '\0') {
		if (!isalpha(*name) && !isdigit(*name) && *name != '_')
			return false;
	}
	return true;
}

382
/* Parse probepoint definition. */
383
static int parse_perf_probe_point(char *arg, struct perf_probe_event *pev)
384
{
385
	struct perf_probe_point *pp = &pev->point;
386 387 388 389
	char *ptr, *tmp;
	char c, nc = 0;
	/*
	 * <Syntax>
390 391
	 * perf probe [EVENT=]SRC[:LN|;PTN]
	 * perf probe [EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
392 393
	 *
	 * TODO:Group name support
394 395
	 */

396 397
	ptr = strpbrk(arg, ";=@+%");
	if (ptr && *ptr == '=') {	/* Event name */
398 399
		*ptr = '\0';
		tmp = ptr + 1;
400 401 402 403 404
		if (strchr(arg, ':')) {
			semantic_error("Group name is not supported yet.\n");
			return -ENOTSUP;
		}
		if (!check_event_name(arg)) {
405
			semantic_error("%s is bad for event name -it must "
406 407 408
				       "follow C symbol-naming rule.\n", arg);
			return -EINVAL;
		}
409 410
		pev->event = xstrdup(arg);
		pev->group = NULL;
411 412 413
		arg = tmp;
	}

414
	ptr = strpbrk(arg, ";:+@%");
415 416 417 418 419 420 421
	if (ptr) {
		nc = *ptr;
		*ptr++ = '\0';
	}

	/* Check arg is function or file and copy it */
	if (strchr(arg, '.'))	/* File */
422
		pp->file = xstrdup(arg);
423
	else			/* Function */
424
		pp->function = xstrdup(arg);
425 426 427 428 429

	/* Parse other options */
	while (ptr) {
		arg = ptr;
		c = nc;
430
		if (c == ';') {	/* Lazy pattern must be the last part */
431
			pp->lazy_line = xstrdup(arg);
432 433 434
			break;
		}
		ptr = strpbrk(arg, ";:+@%");
435 436 437 438 439 440 441
		if (ptr) {
			nc = *ptr;
			*ptr++ = '\0';
		}
		switch (c) {
		case ':':	/* Line number */
			pp->line = strtoul(arg, &tmp, 0);
442
			if (*tmp != '\0') {
443
				semantic_error("There is non-digit char"
444 445 446
					       " in line number.\n");
				return -EINVAL;
			}
447 448 449
			break;
		case '+':	/* Byte offset from a symbol */
			pp->offset = strtoul(arg, &tmp, 0);
450
			if (*tmp != '\0') {
451
				semantic_error("There is non-digit character"
452 453 454
						" in offset.\n");
				return -EINVAL;
			}
455 456
			break;
		case '@':	/* File name */
457 458 459 460
			if (pp->file) {
				semantic_error("SRC@SRC is not allowed.\n");
				return -EINVAL;
			}
461
			pp->file = xstrdup(arg);
462 463 464 465
			break;
		case '%':	/* Probe places */
			if (strcmp(arg, "return") == 0) {
				pp->retprobe = 1;
466 467 468 469
			} else {	/* Others not supported yet */
				semantic_error("%%%s is not supported.\n", arg);
				return -ENOTSUP;
			}
470
			break;
471 472 473 474
		default:	/* Buggy case */
			pr_err("This program has a bug at %s:%d.\n",
				__FILE__, __LINE__);
			return -ENOTSUP;
475 476 477 478 479
			break;
		}
	}

	/* Exclusion check */
480
	if (pp->lazy_line && pp->line) {
481
		semantic_error("Lazy pattern can't be used with line number.");
482 483
		return -EINVAL;
	}
484

485
	if (pp->lazy_line && pp->offset) {
486
		semantic_error("Lazy pattern can't be used with offset.");
487 488
		return -EINVAL;
	}
489

490
	if (pp->line && pp->offset) {
491
		semantic_error("Offset can't be used with line number.");
492 493
		return -EINVAL;
	}
494

495
	if (!pp->line && !pp->lazy_line && pp->file && !pp->function) {
496 497
		semantic_error("File always requires line number or "
			       "lazy pattern.");
498 499
		return -EINVAL;
	}
500

501
	if (pp->offset && !pp->function) {
502
		semantic_error("Offset requires an entry function.");
503 504
		return -EINVAL;
	}
505

506
	if (pp->retprobe && !pp->function) {
507
		semantic_error("Return probe requires an entry function.");
508 509
		return -EINVAL;
	}
510

511
	if ((pp->offset || pp->line || pp->lazy_line) && pp->retprobe) {
512 513
		semantic_error("Offset/Line/Lazy pattern can't be used with "
			       "return probe.");
514 515
		return -EINVAL;
	}
516

517
	pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n",
518 519
		 pp->function, pp->file, pp->line, pp->offset, pp->retprobe,
		 pp->lazy_line);
520
	return 0;
521 522
}

523
/* Parse perf-probe event argument */
524
static int parse_perf_probe_arg(char *str, struct perf_probe_arg *arg)
525
{
526
	char *tmp;
527 528 529 530
	struct perf_probe_arg_field **fieldp;

	pr_debug("parsing arg: %s into ", str);

531 532 533
	tmp = strchr(str, '=');
	if (tmp) {
		arg->name = xstrndup(str, tmp - str);
534
		pr_debug("name:%s ", arg->name);
535 536 537
		str = tmp + 1;
	}

538 539 540 541 542 543 544
	tmp = strchr(str, ':');
	if (tmp) {	/* Type setting */
		*tmp = '\0';
		arg->type = xstrdup(tmp + 1);
		pr_debug("type:%s ", arg->type);
	}

545 546 547
	tmp = strpbrk(str, "-.");
	if (!is_c_varname(str) || !tmp) {
		/* A variable, register, symbol or special value */
548 549
		arg->var = xstrdup(str);
		pr_debug("%s\n", arg->var);
550
		return 0;
551 552 553
	}

	/* Structure fields */
554 555
	arg->var = xstrndup(str, tmp - str);
	pr_debug("%s, ", arg->var);
556 557 558 559 560 561 562 563 564 565
	fieldp = &arg->field;

	do {
		*fieldp = xzalloc(sizeof(struct perf_probe_arg_field));
		if (*tmp == '.') {
			str = tmp + 1;
			(*fieldp)->ref = false;
		} else if (tmp[1] == '>') {
			str = tmp + 2;
			(*fieldp)->ref = true;
566 567 568 569
		} else {
			semantic_error("Argument parse error: %s\n", str);
			return -EINVAL;
		}
570 571 572 573 574 575 576 577 578 579

		tmp = strpbrk(str, "-.");
		if (tmp) {
			(*fieldp)->name = xstrndup(str, tmp - str);
			pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
			fieldp = &(*fieldp)->next;
		}
	} while (tmp);
	(*fieldp)->name = xstrdup(str);
	pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);
580 581 582 583

	/* If no name is specified, set the last field name */
	if (!arg->name)
		arg->name = xstrdup((*fieldp)->name);
584 585

	return 0;
586 587
}

588
/* Parse perf-probe event command */
589
int parse_perf_probe_command(const char *cmd, struct perf_probe_event *pev)
590
{
591
	char **argv;
592
	int argc, i, ret = 0;
593

594
	argv = argv_split(cmd, &argc);
595 596 597 598 599 600 601 602 603
	if (!argv) {
		pr_debug("Failed to split arguments.\n");
		return -ENOMEM;
	}
	if (argc - 1 > MAX_PROBE_ARGS) {
		semantic_error("Too many probe arguments (%d).\n", argc - 1);
		ret = -ERANGE;
		goto out;
	}
604
	/* Parse probe point */
605 606 607
	ret = parse_perf_probe_point(argv[0], pev);
	if (ret < 0)
		goto out;
608

609
	/* Copy arguments and ensure return probe has no C argument */
610 611
	pev->nargs = argc - 1;
	pev->args = xzalloc(sizeof(struct perf_probe_arg) * pev->nargs);
612 613 614 615
	for (i = 0; i < pev->nargs && ret >= 0; i++) {
		ret = parse_perf_probe_arg(argv[i + 1], &pev->args[i]);
		if (ret >= 0 &&
		    is_c_varname(pev->args[i].var) && pev->point.retprobe) {
616
			semantic_error("You can't specify local variable for"
617 618 619
				       " kretprobe.\n");
			ret = -EINVAL;
		}
620
	}
621
out:
622
	argv_free(argv);
623 624

	return ret;
625 626
}

627 628 629 630 631 632 633 634 635
/* Return true if this perf_probe_event requires debuginfo */
bool perf_probe_event_need_dwarf(struct perf_probe_event *pev)
{
	int i;

	if (pev->point.file || pev->point.line || pev->point.lazy_line)
		return true;

	for (i = 0; i < pev->nargs; i++)
636
		if (is_c_varname(pev->args[i].var))
637 638 639 640 641
			return true;

	return false;
}

642
/* Parse kprobe_events event into struct probe_point */
643
int parse_kprobe_trace_command(const char *cmd, struct kprobe_trace_event *tev)
644
{
645
	struct kprobe_trace_point *tp = &tev->point;
646 647 648 649 650
	char pr;
	char *p;
	int ret, i, argc;
	char **argv;

651 652
	pr_debug("Parsing kprobe_events: %s\n", cmd);
	argv = argv_split(cmd, &argc);
653 654 655 656 657 658 659 660 661
	if (!argv) {
		pr_debug("Failed to split arguments.\n");
		return -ENOMEM;
	}
	if (argc < 2) {
		semantic_error("Too few probe arguments.\n");
		ret = -ERANGE;
		goto out;
	}
662 663

	/* Scan event and group name. */
664
	ret = sscanf(argv[0], "%c:%a[^/ \t]/%a[^ \t]",
665 666
		     &pr, (float *)(void *)&tev->group,
		     (float *)(void *)&tev->event);
667 668 669 670 671
	if (ret != 3) {
		semantic_error("Failed to parse event name: %s\n", argv[0]);
		ret = -EINVAL;
		goto out;
	}
672
	pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr);
673

674
	tp->retprobe = (pr == 'r');
675 676

	/* Scan function name and offset */
677 678
	ret = sscanf(argv[1], "%a[^+]+%lu", (float *)(void *)&tp->symbol,
		     &tp->offset);
679
	if (ret == 1)
680
		tp->offset = 0;
681

682 683 684
	tev->nargs = argc - 2;
	tev->args = xzalloc(sizeof(struct kprobe_trace_arg) * tev->nargs);
	for (i = 0; i < tev->nargs; i++) {
685 686
		p = strchr(argv[i + 2], '=');
		if (p)	/* We don't need which register is assigned. */
687 688 689 690 691 692
			*p++ = '\0';
		else
			p = argv[i + 2];
		tev->args[i].name = xstrdup(argv[i + 2]);
		/* TODO: parse regs and offset */
		tev->args[i].value = xstrdup(p);
693
	}
694 695
	ret = 0;
out:
696
	argv_free(argv);
697
	return ret;
698 699
}

700 701 702 703 704 705 706
/* Compose only probe arg */
int synthesize_perf_probe_arg(struct perf_probe_arg *pa, char *buf, size_t len)
{
	struct perf_probe_arg_field *field = pa->field;
	int ret;
	char *tmp = buf;

707 708 709 710
	if (pa->name && pa->var)
		ret = e_snprintf(tmp, len, "%s=%s", pa->name, pa->var);
	else
		ret = e_snprintf(tmp, len, "%s", pa->name ? pa->name : pa->var);
711 712 713 714 715 716 717 718 719 720 721 722 723 724
	if (ret <= 0)
		goto error;
	tmp += ret;
	len -= ret;

	while (field) {
		ret = e_snprintf(tmp, len, "%s%s", field->ref ? "->" : ".",
				 field->name);
		if (ret <= 0)
			goto error;
		tmp += ret;
		len -= ret;
		field = field->next;
	}
725 726 727 728 729 730 731 732 733

	if (pa->type) {
		ret = e_snprintf(tmp, len, ":%s", pa->type);
		if (ret <= 0)
			goto error;
		tmp += ret;
		len -= ret;
	}

734 735
	return tmp - buf;
error:
736 737 738
	pr_debug("Failed to synthesize perf probe argument: %s",
		 strerror(-ret));
	return ret;
739 740
}

741 742
/* Compose only probe point (not argument) */
static char *synthesize_perf_probe_point(struct perf_probe_point *pp)
743
{
744 745 746
	char *buf, *tmp;
	char offs[32] = "", line[32] = "", file[32] = "";
	int ret, len;
747

748
	buf = xzalloc(MAX_CMDLEN);
749
	if (pp->offset) {
750
		ret = e_snprintf(offs, 32, "+%lu", pp->offset);
751 752 753 754
		if (ret <= 0)
			goto error;
	}
	if (pp->line) {
755 756 757 758 759 760 761 762 763 764 765 766
		ret = e_snprintf(line, 32, ":%d", pp->line);
		if (ret <= 0)
			goto error;
	}
	if (pp->file) {
		len = strlen(pp->file) - 32;
		if (len < 0)
			len = 0;
		tmp = strchr(pp->file + len, '/');
		if (!tmp)
			tmp = pp->file + len - 1;
		ret = e_snprintf(file, 32, "@%s", tmp + 1);
767 768 769 770 771
		if (ret <= 0)
			goto error;
	}

	if (pp->function)
772 773 774
		ret = e_snprintf(buf, MAX_CMDLEN, "%s%s%s%s%s", pp->function,
				 offs, pp->retprobe ? "%return" : "", line,
				 file);
775
	else
776
		ret = e_snprintf(buf, MAX_CMDLEN, "%s%s", file, line);
777 778 779 780
	if (ret <= 0)
		goto error;

	return buf;
781
error:
782 783 784 785
	pr_debug("Failed to synthesize perf probe point: %s",
		 strerror(-ret));
	free(buf);
	return NULL;
786 787
}

788 789
#if 0
char *synthesize_perf_probe_command(struct perf_probe_event *pev)
790 791 792 793
{
	char *buf;
	int i, len, ret;

794 795 796
	buf = synthesize_perf_probe_point(&pev->point);
	if (!buf)
		return NULL;
797

798 799
	len = strlen(buf);
	for (i = 0; i < pev->nargs; i++) {
800
		ret = e_snprintf(&buf[len], MAX_CMDLEN - len, " %s",
801 802 803 804 805
				 pev->args[i].name);
		if (ret <= 0) {
			free(buf);
			return NULL;
		}
806 807 808
		len += ret;
	}

809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833
	return buf;
}
#endif

static int __synthesize_kprobe_trace_arg_ref(struct kprobe_trace_arg_ref *ref,
					     char **buf, size_t *buflen,
					     int depth)
{
	int ret;
	if (ref->next) {
		depth = __synthesize_kprobe_trace_arg_ref(ref->next, buf,
							 buflen, depth + 1);
		if (depth < 0)
			goto out;
	}

	ret = e_snprintf(*buf, *buflen, "%+ld(", ref->offset);
	if (ret < 0)
		depth = ret;
	else {
		*buf += ret;
		*buflen -= ret;
	}
out:
	return depth;
834 835 836

}

837 838
static int synthesize_kprobe_trace_arg(struct kprobe_trace_arg *arg,
				       char *buf, size_t buflen)
839
{
840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875
	int ret, depth = 0;
	char *tmp = buf;

	/* Argument name or separator */
	if (arg->name)
		ret = e_snprintf(buf, buflen, " %s=", arg->name);
	else
		ret = e_snprintf(buf, buflen, " ");
	if (ret < 0)
		return ret;
	buf += ret;
	buflen -= ret;

	/* Dereferencing arguments */
	if (arg->ref) {
		depth = __synthesize_kprobe_trace_arg_ref(arg->ref, &buf,
							  &buflen, 1);
		if (depth < 0)
			return depth;
	}

	/* Print argument value */
	ret = e_snprintf(buf, buflen, "%s", arg->value);
	if (ret < 0)
		return ret;
	buf += ret;
	buflen -= ret;

	/* Closing */
	while (depth--) {
		ret = e_snprintf(buf, buflen, ")");
		if (ret < 0)
			return ret;
		buf += ret;
		buflen -= ret;
	}
876 877 878 879 880 881 882
	/* Print argument type */
	if (arg->type) {
		ret = e_snprintf(buf, buflen, ":%s", arg->type);
		if (ret <= 0)
			return ret;
		buf += ret;
	}
883 884 885 886 887 888 889

	return buf - tmp;
}

char *synthesize_kprobe_trace_command(struct kprobe_trace_event *tev)
{
	struct kprobe_trace_point *tp = &tev->point;
890 891 892
	char *buf;
	int i, len, ret;

893 894 895 896 897 898
	buf = xzalloc(MAX_CMDLEN);
	len = e_snprintf(buf, MAX_CMDLEN, "%c:%s/%s %s+%lu",
			 tp->retprobe ? 'r' : 'p',
			 tev->group, tev->event,
			 tp->symbol, tp->offset);
	if (len <= 0)
899 900
		goto error;

901 902 903
	for (i = 0; i < tev->nargs; i++) {
		ret = synthesize_kprobe_trace_arg(&tev->args[i], buf + len,
						  MAX_CMDLEN - len);
904
		if (ret <= 0)
905 906 907 908
			goto error;
		len += ret;
	}

909
	return buf;
910
error:
911 912 913
	free(buf);
	return NULL;
}
914

915 916
int convert_to_perf_probe_event(struct kprobe_trace_event *tev,
				struct perf_probe_event *pev)
917 918
{
	char buf[64];
919
	int i, ret;
920

921
	/* Convert event/group name */
922 923 924
	pev->event = xstrdup(tev->event);
	pev->group = xstrdup(tev->group);

925
	/* Convert trace_point to probe_point */
926 927 928
	ret = convert_to_perf_probe_point(&tev->point, &pev->point);
	if (ret < 0)
		return ret;
929

930 931 932
	/* Convert trace_arg to probe_arg */
	pev->nargs = tev->nargs;
	pev->args = xzalloc(sizeof(struct perf_probe_arg) * pev->nargs);
933
	for (i = 0; i < tev->nargs && ret >= 0; i++)
934 935 936
		if (tev->args[i].name)
			pev->args[i].name = xstrdup(tev->args[i].name);
		else {
937 938
			ret = synthesize_kprobe_trace_arg(&tev->args[i],
							  buf, 64);
939 940
			pev->args[i].name = xstrdup(buf);
		}
941 942 943 944 945

	if (ret < 0)
		clear_perf_probe_event(pev);

	return ret;
946 947 948 949 950
}

void clear_perf_probe_event(struct perf_probe_event *pev)
{
	struct perf_probe_point *pp = &pev->point;
951
	struct perf_probe_arg_field *field, *next;
952 953 954 955 956 957 958 959 960 961 962 963
	int i;

	if (pev->event)
		free(pev->event);
	if (pev->group)
		free(pev->group);
	if (pp->file)
		free(pp->file);
	if (pp->function)
		free(pp->function);
	if (pp->lazy_line)
		free(pp->lazy_line);
964
	for (i = 0; i < pev->nargs; i++) {
965 966
		if (pev->args[i].name)
			free(pev->args[i].name);
967 968
		if (pev->args[i].var)
			free(pev->args[i].var);
969 970
		if (pev->args[i].type)
			free(pev->args[i].type);
971 972 973 974 975 976 977 978 979
		field = pev->args[i].field;
		while (field) {
			next = field->next;
			if (field->name)
				free(field->name);
			free(field);
			field = next;
		}
	}
980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
	if (pev->args)
		free(pev->args);
	memset(pev, 0, sizeof(*pev));
}

void clear_kprobe_trace_event(struct kprobe_trace_event *tev)
{
	struct kprobe_trace_arg_ref *ref, *next;
	int i;

	if (tev->event)
		free(tev->event);
	if (tev->group)
		free(tev->group);
	if (tev->point.symbol)
		free(tev->point.symbol);
	for (i = 0; i < tev->nargs; i++) {
		if (tev->args[i].name)
			free(tev->args[i].name);
		if (tev->args[i].value)
			free(tev->args[i].value);
1001 1002
		if (tev->args[i].type)
			free(tev->args[i].type);
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012
		ref = tev->args[i].ref;
		while (ref) {
			next = ref->next;
			free(ref);
			ref = next;
		}
	}
	if (tev->args)
		free(tev->args);
	memset(tev, 0, sizeof(*tev));
1013 1014
}

1015
static int open_kprobe_events(bool readwrite)
1016 1017 1018 1019 1020
{
	char buf[PATH_MAX];
	int ret;

	ret = e_snprintf(buf, PATH_MAX, "%s/../kprobe_events", debugfs_path);
1021 1022 1023 1024 1025 1026
	if (ret >= 0) {
		if (readwrite && !probe_event_dry_run)
			ret = open(buf, O_RDWR, O_APPEND);
		else
			ret = open(buf, O_RDONLY, 0);
	}
1027

1028 1029
	if (ret < 0) {
		if (errno == ENOENT)
1030 1031
			pr_warning("kprobe_events file does not exist - please"
				 " rebuild kernel with CONFIG_KPROBE_EVENT.\n");
1032
		else
1033 1034
			pr_warning("Failed to open kprobe_events file: %s\n",
				   strerror(errno));
1035 1036 1037 1038 1039
	}
	return ret;
}

/* Get raw string list of current kprobe_events */
1040
static struct strlist *get_kprobe_trace_command_rawlist(int fd)
1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059
{
	int ret, idx;
	FILE *fp;
	char buf[MAX_CMDLEN];
	char *p;
	struct strlist *sl;

	sl = strlist__new(true, NULL);

	fp = fdopen(dup(fd), "r");
	while (!feof(fp)) {
		p = fgets(buf, MAX_CMDLEN, fp);
		if (!p)
			break;

		idx = strlen(p) - 1;
		if (p[idx] == '\n')
			p[idx] = '\0';
		ret = strlist__add(sl, buf);
1060 1061 1062 1063 1064
		if (ret < 0) {
			pr_debug("strlist__add failed: %s\n", strerror(-ret));
			strlist__delete(sl);
			return NULL;
		}
1065 1066 1067 1068 1069 1070
	}
	fclose(fp);

	return sl;
}

1071
/* Show an event */
1072
static int show_perf_probe_event(struct perf_probe_event *pev)
1073
{
1074
	int i, ret;
1075
	char buf[128];
1076
	char *place;
1077

1078 1079
	/* Synthesize only event probe point */
	place = synthesize_perf_probe_point(&pev->point);
1080 1081
	if (!place)
		return -EINVAL;
1082 1083

	ret = e_snprintf(buf, 128, "%s:%s", pev->group, pev->event);
1084
	if (ret < 0)
1085 1086
		return ret;

1087
	printf("  %-20s (on %s", buf, place);
1088

1089
	if (pev->nargs > 0) {
1090
		printf(" with");
1091
		for (i = 0; i < pev->nargs; i++) {
1092 1093 1094 1095
			ret = synthesize_perf_probe_arg(&pev->args[i],
							buf, 128);
			if (ret < 0)
				break;
1096 1097
			printf(" %s", buf);
		}
1098 1099
	}
	printf(")\n");
1100
	free(place);
1101
	return ret;
1102 1103
}

1104
/* List up current perf-probe events */
1105
int show_perf_probe_events(void)
1106
{
1107
	int fd, ret;
1108 1109
	struct kprobe_trace_event tev;
	struct perf_probe_event pev;
1110 1111 1112
	struct strlist *rawlist;
	struct str_node *ent;

1113
	setup_pager();
1114 1115 1116
	ret = init_vmlinux();
	if (ret < 0)
		return ret;
1117 1118 1119

	memset(&tev, 0, sizeof(tev));
	memset(&pev, 0, sizeof(pev));
1120

1121
	fd = open_kprobe_events(false);
1122 1123 1124
	if (fd < 0)
		return fd;

1125
	rawlist = get_kprobe_trace_command_rawlist(fd);
1126
	close(fd);
1127 1128
	if (!rawlist)
		return -ENOENT;
1129

1130
	strlist__for_each(ent, rawlist) {
1131 1132 1133 1134 1135 1136
		ret = parse_kprobe_trace_command(ent->s, &tev);
		if (ret >= 0) {
			ret = convert_to_perf_probe_event(&tev, &pev);
			if (ret >= 0)
				ret = show_perf_probe_event(&pev);
		}
1137 1138
		clear_perf_probe_event(&pev);
		clear_kprobe_trace_event(&tev);
1139 1140
		if (ret < 0)
			break;
1141 1142
	}
	strlist__delete(rawlist);
1143 1144

	return ret;
1145 1146
}

1147
/* Get current perf-probe event names */
1148
static struct strlist *get_kprobe_trace_event_names(int fd, bool include_group)
1149
{
1150
	char buf[128];
1151 1152
	struct strlist *sl, *rawlist;
	struct str_node *ent;
1153
	struct kprobe_trace_event tev;
1154
	int ret = 0;
1155

1156
	memset(&tev, 0, sizeof(tev));
1157

1158
	rawlist = get_kprobe_trace_command_rawlist(fd);
1159
	sl = strlist__new(true, NULL);
1160
	strlist__for_each(ent, rawlist) {
1161 1162 1163
		ret = parse_kprobe_trace_command(ent->s, &tev);
		if (ret < 0)
			break;
1164
		if (include_group) {
1165 1166 1167 1168
			ret = e_snprintf(buf, 128, "%s:%s", tev.group,
					tev.event);
			if (ret >= 0)
				ret = strlist__add(sl, buf);
1169
		} else
1170
			ret = strlist__add(sl, tev.event);
1171
		clear_kprobe_trace_event(&tev);
1172 1173
		if (ret < 0)
			break;
1174 1175 1176
	}
	strlist__delete(rawlist);

1177 1178 1179 1180
	if (ret < 0) {
		strlist__delete(sl);
		return NULL;
	}
1181 1182 1183
	return sl;
}

1184
static int write_kprobe_trace_event(int fd, struct kprobe_trace_event *tev)
1185 1186
{
	int ret;
1187
	char *buf = synthesize_kprobe_trace_command(tev);
1188

1189 1190 1191 1192 1193
	if (!buf) {
		pr_debug("Failed to synthesize kprobe trace event.\n");
		return -EINVAL;
	}

1194
	pr_debug("Writing event: %s\n", buf);
1195 1196 1197
	if (!probe_event_dry_run) {
		ret = write(fd, buf, strlen(buf));
		if (ret <= 0)
1198 1199
			pr_warning("Failed to write event: %s\n",
				   strerror(errno));
1200
	}
1201
	free(buf);
1202
	return ret;
1203 1204
}

1205 1206
static int get_new_event_name(char *buf, size_t len, const char *base,
			      struct strlist *namelist, bool allow_suffix)
1207 1208
{
	int i, ret;
1209 1210 1211

	/* Try no suffix */
	ret = e_snprintf(buf, len, "%s", base);
1212 1213 1214 1215
	if (ret < 0) {
		pr_debug("snprintf() failed: %s\n", strerror(-ret));
		return ret;
	}
1216
	if (!strlist__has_entry(namelist, buf))
1217
		return 0;
1218

1219 1220 1221
	if (!allow_suffix) {
		pr_warning("Error: event \"%s\" already exists. "
			   "(Use -f to force duplicates.)\n", base);
1222
		return -EEXIST;
1223 1224
	}

1225 1226
	/* Try to add suffix */
	for (i = 1; i < MAX_EVENT_INDEX; i++) {
1227
		ret = e_snprintf(buf, len, "%s_%d", base, i);
1228 1229 1230 1231
		if (ret < 0) {
			pr_debug("snprintf() failed: %s\n", strerror(-ret));
			return ret;
		}
1232 1233 1234
		if (!strlist__has_entry(namelist, buf))
			break;
	}
1235 1236 1237 1238 1239 1240
	if (i == MAX_EVENT_INDEX) {
		pr_warning("Too many events are on the same function.\n");
		ret = -ERANGE;
	}

	return ret;
1241 1242
}

1243 1244 1245
static int __add_kprobe_trace_events(struct perf_probe_event *pev,
				     struct kprobe_trace_event *tevs,
				     int ntevs, bool allow_suffix)
1246
{
1247
	int i, fd, ret;
1248
	struct kprobe_trace_event *tev = NULL;
1249 1250
	char buf[64];
	const char *event, *group;
1251
	struct strlist *namelist;
1252

1253
	fd = open_kprobe_events(true);
1254 1255
	if (fd < 0)
		return fd;
1256
	/* Get current event names */
1257
	namelist = get_kprobe_trace_event_names(fd, false);
1258 1259 1260 1261
	if (!namelist) {
		pr_debug("Failed to get current event list.\n");
		return -EIO;
	}
1262

1263
	ret = 0;
1264
	printf("Add new event%s\n", (ntevs > 1) ? "s:" : ":");
1265
	for (i = 0; i < ntevs && ret >= 0; i++) {
1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279
		tev = &tevs[i];
		if (pev->event)
			event = pev->event;
		else
			if (pev->point.function)
				event = pev->point.function;
			else
				event = tev->point.symbol;
		if (pev->group)
			group = pev->group;
		else
			group = PERFPROBE_GROUP;

		/* Get an unused new event name */
1280 1281 1282 1283
		ret = get_new_event_name(buf, 64, event,
					 namelist, allow_suffix);
		if (ret < 0)
			break;
1284 1285 1286 1287
		event = buf;

		tev->event = xstrdup(event);
		tev->group = xstrdup(group);
1288 1289 1290
		ret = write_kprobe_trace_event(fd, tev);
		if (ret < 0)
			break;
1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310
		/* Add added event name to namelist */
		strlist__add(namelist, event);

		/* Trick here - save current event/group */
		event = pev->event;
		group = pev->group;
		pev->event = tev->event;
		pev->group = tev->group;
		show_perf_probe_event(pev);
		/* Trick here - restore current event/group */
		pev->event = (char *)event;
		pev->group = (char *)group;

		/*
		 * Probes after the first probe which comes from same
		 * user input are always allowed to add suffix, because
		 * there might be several addresses corresponding to
		 * one code line.
		 */
		allow_suffix = true;
1311
	}
1312 1313 1314 1315 1316 1317 1318

	if (ret >= 0) {
		/* Show how to use the event. */
		printf("\nYou can now use it on all perf tools, such as:\n\n");
		printf("\tperf record -e %s:%s -aR sleep 1\n\n", tev->group,
			 tev->event);
	}
1319

1320
	strlist__delete(namelist);
1321
	close(fd);
1322
	return ret;
1323
}
1324

1325 1326
static int convert_to_kprobe_trace_events(struct perf_probe_event *pev,
					  struct kprobe_trace_event **tevs)
1327 1328
{
	struct symbol *sym;
1329 1330 1331
	int ntevs = 0, i;
	struct kprobe_trace_event *tev;

1332 1333
	/* Convert perf_probe_event with debuginfo */
	ntevs = try_to_find_kprobe_trace_events(pev, tevs);
1334
	if (ntevs != 0)
1335
		return ntevs;
1336

1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347
	/* Allocate trace event buffer */
	ntevs = 1;
	tev = *tevs = xzalloc(sizeof(struct kprobe_trace_event));

	/* Copy parameters */
	tev->point.symbol = xstrdup(pev->point.function);
	tev->point.offset = pev->point.offset;
	tev->nargs = pev->nargs;
	if (tev->nargs) {
		tev->args = xzalloc(sizeof(struct kprobe_trace_arg)
				    * tev->nargs);
1348 1349 1350 1351
		for (i = 0; i < tev->nargs; i++) {
			if (pev->args[i].name)
				tev->args[i].name = xstrdup(pev->args[i].name);
			tev->args[i].value = xstrdup(pev->args[i].var);
1352 1353
			if (pev->args[i].type)
				tev->args[i].type = xstrdup(pev->args[i].type);
1354
		}
1355 1356 1357 1358 1359
	}

	/* Currently just checking function name from symbol map */
	sym = map__find_symbol_by_name(kmaps[MAP__FUNCTION],
				       tev->point.symbol, NULL);
1360 1361 1362 1363 1364
	if (!sym) {
		pr_warning("Kernel symbol \'%s\' not found.\n",
			   tev->point.symbol);
		return -ENOENT;
	}
1365 1366 1367 1368 1369 1370 1371 1372 1373
	return ntevs;
}

struct __event_package {
	struct perf_probe_event		*pev;
	struct kprobe_trace_event	*tevs;
	int				ntevs;
};

1374 1375
int add_perf_probe_events(struct perf_probe_event *pevs, int npevs,
			  bool force_add)
1376
{
1377
	int i, j, ret;
1378 1379 1380 1381 1382
	struct __event_package *pkgs;

	pkgs = xzalloc(sizeof(struct __event_package) * npevs);

	/* Init vmlinux path */
1383 1384 1385
	ret = init_vmlinux();
	if (ret < 0)
		return ret;
1386 1387 1388 1389 1390

	/* Loop 1: convert all events */
	for (i = 0; i < npevs; i++) {
		pkgs[i].pev = &pevs[i];
		/* Convert with or without debuginfo */
1391 1392 1393 1394 1395
		ret  = convert_to_kprobe_trace_events(pkgs[i].pev,
						      &pkgs[i].tevs);
		if (ret < 0)
			goto end;
		pkgs[i].ntevs = ret;
1396 1397
	}

1398
	/* Loop 2: add all events */
1399 1400 1401 1402 1403
	for (i = 0; i < npevs && ret >= 0; i++)
		ret = __add_kprobe_trace_events(pkgs[i].pev, pkgs[i].tevs,
						pkgs[i].ntevs, force_add);
end:
	/* Loop 3: cleanup trace events  */
1404
	for (i = 0; i < npevs; i++)
1405 1406 1407 1408
		for (j = 0; j < pkgs[i].ntevs; j++)
			clear_kprobe_trace_event(&pkgs[i].tevs[j]);

	return ret;
1409 1410
}

1411
static int __del_trace_kprobe_event(int fd, struct str_node *ent)
1412 1413 1414
{
	char *p;
	char buf[128];
1415
	int ret;
1416 1417

	/* Convert from perf-probe event to trace-kprobe event */
1418 1419 1420 1421
	ret = e_snprintf(buf, 128, "-:%s", ent->s);
	if (ret < 0)
		goto error;

1422
	p = strchr(buf + 2, ':');
1423 1424 1425 1426 1427 1428
	if (!p) {
		pr_debug("Internal error: %s should have ':' but not.\n",
			 ent->s);
		ret = -ENOTSUP;
		goto error;
	}
1429 1430
	*p = '/';

1431 1432
	pr_debug("Writing event: %s\n", buf);
	ret = write(fd, buf, strlen(buf));
1433 1434 1435
	if (ret < 0)
		goto error;

1436
	printf("Remove event: %s\n", ent->s);
1437 1438 1439 1440
	return 0;
error:
	pr_warning("Failed to delete event: %s\n", strerror(-ret));
	return ret;
1441 1442
}

1443 1444
static int del_trace_kprobe_event(int fd, const char *group,
				  const char *event, struct strlist *namelist)
1445 1446
{
	char buf[128];
1447
	struct str_node *ent, *n;
1448
	int found = 0, ret = 0;
1449

1450 1451 1452 1453 1454
	ret = e_snprintf(buf, 128, "%s:%s", group, event);
	if (ret < 0) {
		pr_err("Failed to copy event.");
		return ret;
	}
1455

1456 1457 1458 1459
	if (strpbrk(buf, "*?")) { /* Glob-exp */
		strlist__for_each_safe(ent, n, namelist)
			if (strglobmatch(ent->s, buf)) {
				found++;
1460 1461 1462
				ret = __del_trace_kprobe_event(fd, ent);
				if (ret < 0)
					break;
1463 1464 1465 1466 1467 1468
				strlist__remove(namelist, ent);
			}
	} else {
		ent = strlist__find(namelist, buf);
		if (ent) {
			found++;
1469 1470 1471
			ret = __del_trace_kprobe_event(fd, ent);
			if (ret >= 0)
				strlist__remove(namelist, ent);
1472 1473
		}
	}
1474 1475 1476 1477
	if (found == 0 && ret >= 0)
		pr_info("Info: Event \"%s\" does not exist.\n", buf);

	return ret;
1478 1479
}

1480
int del_perf_probe_events(struct strlist *dellist)
1481
{
1482
	int fd, ret = 0;
1483 1484 1485 1486 1487
	const char *group, *event;
	char *p, *str;
	struct str_node *ent;
	struct strlist *namelist;

1488
	fd = open_kprobe_events(true);
1489 1490 1491
	if (fd < 0)
		return fd;

1492
	/* Get current event names */
1493
	namelist = get_kprobe_trace_event_names(fd, true);
1494 1495
	if (namelist == NULL)
		return -EINVAL;
1496

1497
	strlist__for_each(ent, dellist) {
1498
		str = xstrdup(ent->s);
1499
		pr_debug("Parsing: %s\n", str);
1500 1501 1502 1503 1504 1505
		p = strchr(str, ':');
		if (p) {
			group = str;
			*p = '\0';
			event = p + 1;
		} else {
1506
			group = "*";
1507 1508
			event = str;
		}
1509
		pr_debug("Group: %s, Event: %s\n", group, event);
1510
		ret = del_trace_kprobe_event(fd, group, event, namelist);
1511
		free(str);
1512 1513
		if (ret < 0)
			break;
1514 1515 1516
	}
	strlist__delete(namelist);
	close(fd);
1517 1518

	return ret;
1519 1520
}