probe-event.c 35.7 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
#include "debugfs.h"
46
#include "trace-event.h"	/* For __unused */
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
	struct dso *kernel;
82 83
	int ret;

84 85 86 87 88
	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);
89 90 91 92 93
	ret = symbol__init();
	if (ret < 0) {
		pr_debug("Failed to init symbol map.\n");
		goto out;
	}
94

95 96 97 98
	kernel = dso__new_kernel(symbol_conf.vmlinux_name);
	if (kernel == NULL)
		die("Failed to create kernel dso.");

99
	map_groups__init(&kmap_groups);
100
	ret = __map_groups__create_kernel_maps(&kmap_groups, kmaps, kernel);
101 102 103 104 105 106 107
	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;
108 109
}

110
#ifdef DWARF_SUPPORT
111 112 113 114 115 116 117 118 119
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);
}
120

121 122 123
/* 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)
124 125
{
	struct symbol *sym;
126
	int fd, ret = -ENOENT;
127 128 129 130 131

	sym = map__find_symbol_by_name(kmaps[MAP__FUNCTION],
				       tp->symbol, NULL);
	if (sym) {
		fd = open_vmlinux();
132 133 134 135 136
		if (fd >= 0) {
			ret = find_perf_probe_point(fd,
						 sym->start + tp->offset, pp);
			close(fd);
		}
137 138
	}
	if (ret <= 0) {
139 140
		pr_debug("Failed to find corresponding probes from "
			 "debuginfo. Use kprobe event information.\n");
141 142 143
		pp->function = strdup(tp->symbol);
		if (pp->function == NULL)
			return -ENOMEM;
144 145 146
		pp->offset = tp->offset;
	}
	pp->retprobe = tp->retprobe;
147 148

	return 0;
149 150 151 152 153 154 155 156 157 158 159
}

/* 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) {
160 161 162 163
		if (need_dwarf) {
			pr_warning("Failed to open debuginfo file.\n");
			return fd;
		}
164 165 166 167 168 169 170 171
		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);

172 173
	if (ntevs > 0) {	/* Succeeded to find trace events */
		pr_debug("find %d kprobe_trace_events.\n", ntevs);
174
		return ntevs;
175
	}
176

177 178 179 180 181 182
	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 */
183
	if (need_dwarf) {
184
		if (ntevs == -EBADF)
185 186
			pr_warning("No dwarf info found in the vmlinux - "
				"please rebuild with CONFIG_DEBUG_INFO=y.\n");
187
		return ntevs;
188 189 190 191 192 193 194 195 196
	}
	pr_debug("An error occurred in debuginfo analysis."
		 " Try to use symbols.\n");
	return 0;
}

#define LINEBUF_SIZE 256
#define NR_ADDITIONAL_LINES 2

197
static int show_one_line(FILE *fp, int l, bool skip, bool show_num)
198 199 200 201 202 203 204 205
{
	char buf[LINEBUF_SIZE];
	const char *color = PERF_COLOR_BLUE;

	if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
		goto error;
	if (!skip) {
		if (show_num)
206
			fprintf(stdout, "%7d  %s", l, buf);
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
		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);
		}
	}
222 223

	return 0;
224 225
error:
	if (feof(fp))
226
		pr_warning("Source file is shorter than expected.\n");
227
	else
228 229 230
		pr_warning("File read error: %s\n", strerror(errno));

	return -1;
231 232 233 234 235 236
}

/*
 * Show line-range always requires debuginfo to find source file and
 * line number.
 */
237
int show_line_range(struct line_range *lr)
238
{
239
	int l = 1;
240 241 242 243 244
	struct line_node *ln;
	FILE *fp;
	int fd, ret;

	/* Search a line range */
245 246 247 248
	ret = init_vmlinux();
	if (ret < 0)
		return ret;

249
	fd = open_vmlinux();
250 251 252 253 254
	if (fd < 0) {
		pr_warning("Failed to open debuginfo file.\n");
		return fd;
	}

255 256
	ret = find_line_range(fd, lr);
	close(fd);
257 258 259 260 261 262 263
	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;
	}
264 265 266 267 268 269 270 271 272 273

	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");
274 275 276 277 278
	if (fp == NULL) {
		pr_warning("Failed to open %s: %s\n", lr->path,
			   strerror(errno));
		return -errno;
	}
279
	/* Skip to starting line number */
280 281 282 283
	while (l < lr->start && ret >= 0)
		ret = show_one_line(fp, l++, true, false);
	if (ret < 0)
		goto end;
284 285

	list_for_each_entry(ln, &lr->line_list, list) {
286 287 288 289 290 291 292 293
		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;
294 295 296 297
	}

	if (lr->end == INT_MAX)
		lr->end = l + NR_ADDITIONAL_LINES;
298
	while (l <= lr->end && !feof(fp) && ret >= 0)
299 300
		ret = show_one_line(fp, (l++) - lr->offset, false, false);
end:
301
	fclose(fp);
302
	return ret;
303 304 305 306
}

#else	/* !DWARF_SUPPORT */

307
static int convert_to_perf_probe_point(struct kprobe_trace_point *tp,
308 309
					struct perf_probe_point *pp)
{
310 311 312
	pp->function = strdup(tp->symbol);
	if (pp->function == NULL)
		return -ENOMEM;
313 314
	pp->offset = tp->offset;
	pp->retprobe = tp->retprobe;
315 316

	return 0;
317 318 319 320 321
}

static int try_to_find_kprobe_trace_events(struct perf_probe_event *pev,
				struct kprobe_trace_event **tevs __unused)
{
322 323 324 325
	if (perf_probe_event_need_dwarf(pev)) {
		pr_warning("Debuginfo-analysis is not supported.\n");
		return -ENOSYS;
	}
326 327 328
	return 0;
}

329
int show_line_range(struct line_range *lr __unused)
330
{
331 332
	pr_warning("Debuginfo-analysis is not supported.\n");
	return -ENOSYS;
333 334
}

335 336
#endif

337
int parse_line_range_desc(const char *arg, struct line_range *lr)
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) {
348
		lr->start = (int)strtoul(ptr + 1, &tmp, 0);
349
		if (*tmp == '+') {
350
			lr->end = lr->start + (int)strtoul(tmp + 1, &tmp, 0);
351 352 353 354 355 356 357
			lr->end--;	/*
					 * Adjust the number of lines here.
					 * If the number of lines == 1, the
					 * the end of line should be equal to
					 * the start of line.
					 */
		} else if (*tmp == '-')
358
			lr->end = (int)strtoul(tmp + 1, &tmp, 0);
359
		else
360 361 362
			lr->end = INT_MAX;
		pr_debug("Line range is %d to %d\n", lr->start, lr->end);
		if (lr->start > lr->end) {
363
			semantic_error("Start line must be smaller"
364 365 366 367 368
				       " than end line.\n");
			return -EINVAL;
		}
		if (*tmp != '\0') {
			semantic_error("Tailing with invalid character '%d'.\n",
369
				       *tmp);
370 371
			return -EINVAL;
		}
372
		tmp = strndup(arg, (ptr - arg));
373
	} else {
374
		tmp = strdup(arg);
375 376
		lr->end = INT_MAX;
	}
377 378 379

	if (tmp == NULL)
		return -ENOMEM;
380 381 382 383 384

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

	return 0;
387 388
}

389 390 391 392 393 394 395 396 397 398 399 400
/* 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;
}

401
/* Parse probepoint definition. */
402
static int parse_perf_probe_point(char *arg, struct perf_probe_event *pev)
403
{
404
	struct perf_probe_point *pp = &pev->point;
405 406 407 408
	char *ptr, *tmp;
	char c, nc = 0;
	/*
	 * <Syntax>
409 410
	 * perf probe [EVENT=]SRC[:LN|;PTN]
	 * perf probe [EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
411 412
	 *
	 * TODO:Group name support
413 414
	 */

415 416
	ptr = strpbrk(arg, ";=@+%");
	if (ptr && *ptr == '=') {	/* Event name */
417 418
		*ptr = '\0';
		tmp = ptr + 1;
419 420 421 422 423
		if (strchr(arg, ':')) {
			semantic_error("Group name is not supported yet.\n");
			return -ENOTSUP;
		}
		if (!check_event_name(arg)) {
424
			semantic_error("%s is bad for event name -it must "
425 426 427
				       "follow C symbol-naming rule.\n", arg);
			return -EINVAL;
		}
428 429 430
		pev->event = strdup(arg);
		if (pev->event == NULL)
			return -ENOMEM;
431
		pev->group = NULL;
432 433 434
		arg = tmp;
	}

435
	ptr = strpbrk(arg, ";:+@%");
436 437 438 439 440
	if (ptr) {
		nc = *ptr;
		*ptr++ = '\0';
	}

441 442 443 444
	tmp = strdup(arg);
	if (tmp == NULL)
		return -ENOMEM;

445
	/* Check arg is function or file and copy it */
446 447
	if (strchr(tmp, '.'))	/* File */
		pp->file = tmp;
448
	else			/* Function */
449
		pp->function = tmp;
450 451 452 453 454

	/* Parse other options */
	while (ptr) {
		arg = ptr;
		c = nc;
455
		if (c == ';') {	/* Lazy pattern must be the last part */
456 457 458
			pp->lazy_line = strdup(arg);
			if (pp->lazy_line == NULL)
				return -ENOMEM;
459 460 461
			break;
		}
		ptr = strpbrk(arg, ";:+@%");
462 463 464 465 466 467 468
		if (ptr) {
			nc = *ptr;
			*ptr++ = '\0';
		}
		switch (c) {
		case ':':	/* Line number */
			pp->line = strtoul(arg, &tmp, 0);
469
			if (*tmp != '\0') {
470
				semantic_error("There is non-digit char"
471 472 473
					       " in line number.\n");
				return -EINVAL;
			}
474 475 476
			break;
		case '+':	/* Byte offset from a symbol */
			pp->offset = strtoul(arg, &tmp, 0);
477
			if (*tmp != '\0') {
478
				semantic_error("There is non-digit character"
479 480 481
						" in offset.\n");
				return -EINVAL;
			}
482 483
			break;
		case '@':	/* File name */
484 485 486 487
			if (pp->file) {
				semantic_error("SRC@SRC is not allowed.\n");
				return -EINVAL;
			}
488 489 490
			pp->file = strdup(arg);
			if (pp->file == NULL)
				return -ENOMEM;
491 492 493 494
			break;
		case '%':	/* Probe places */
			if (strcmp(arg, "return") == 0) {
				pp->retprobe = 1;
495 496 497 498
			} else {	/* Others not supported yet */
				semantic_error("%%%s is not supported.\n", arg);
				return -ENOTSUP;
			}
499
			break;
500 501 502 503
		default:	/* Buggy case */
			pr_err("This program has a bug at %s:%d.\n",
				__FILE__, __LINE__);
			return -ENOTSUP;
504 505 506 507 508
			break;
		}
	}

	/* Exclusion check */
509
	if (pp->lazy_line && pp->line) {
510
		semantic_error("Lazy pattern can't be used with line number.");
511 512
		return -EINVAL;
	}
513

514
	if (pp->lazy_line && pp->offset) {
515
		semantic_error("Lazy pattern can't be used with offset.");
516 517
		return -EINVAL;
	}
518

519
	if (pp->line && pp->offset) {
520
		semantic_error("Offset can't be used with line number.");
521 522
		return -EINVAL;
	}
523

524
	if (!pp->line && !pp->lazy_line && pp->file && !pp->function) {
525 526
		semantic_error("File always requires line number or "
			       "lazy pattern.");
527 528
		return -EINVAL;
	}
529

530
	if (pp->offset && !pp->function) {
531
		semantic_error("Offset requires an entry function.");
532 533
		return -EINVAL;
	}
534

535
	if (pp->retprobe && !pp->function) {
536
		semantic_error("Return probe requires an entry function.");
537 538
		return -EINVAL;
	}
539

540
	if ((pp->offset || pp->line || pp->lazy_line) && pp->retprobe) {
541 542
		semantic_error("Offset/Line/Lazy pattern can't be used with "
			       "return probe.");
543 544
		return -EINVAL;
	}
545

546
	pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n",
547 548
		 pp->function, pp->file, pp->line, pp->offset, pp->retprobe,
		 pp->lazy_line);
549
	return 0;
550 551
}

552
/* Parse perf-probe event argument */
553
static int parse_perf_probe_arg(char *str, struct perf_probe_arg *arg)
554
{
555
	char *tmp;
556 557 558 559
	struct perf_probe_arg_field **fieldp;

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

560 561
	tmp = strchr(str, '=');
	if (tmp) {
562 563 564
		arg->name = strndup(str, tmp - str);
		if (arg->name == NULL)
			return -ENOMEM;
565
		pr_debug("name:%s ", arg->name);
566 567 568
		str = tmp + 1;
	}

569 570 571
	tmp = strchr(str, ':');
	if (tmp) {	/* Type setting */
		*tmp = '\0';
572 573 574
		arg->type = strdup(tmp + 1);
		if (arg->type == NULL)
			return -ENOMEM;
575 576 577
		pr_debug("type:%s ", arg->type);
	}

578 579 580
	tmp = strpbrk(str, "-.");
	if (!is_c_varname(str) || !tmp) {
		/* A variable, register, symbol or special value */
581 582 583
		arg->var = strdup(str);
		if (arg->var == NULL)
			return -ENOMEM;
584
		pr_debug("%s\n", arg->var);
585
		return 0;
586 587 588
	}

	/* Structure fields */
589 590 591
	arg->var = strndup(str, tmp - str);
	if (arg->var == NULL)
		return -ENOMEM;
592
	pr_debug("%s, ", arg->var);
593 594 595
	fieldp = &arg->field;

	do {
596 597 598
		*fieldp = zalloc(sizeof(struct perf_probe_arg_field));
		if (*fieldp == NULL)
			return -ENOMEM;
599 600 601 602 603 604
		if (*tmp == '.') {
			str = tmp + 1;
			(*fieldp)->ref = false;
		} else if (tmp[1] == '>') {
			str = tmp + 2;
			(*fieldp)->ref = true;
605 606 607 608
		} else {
			semantic_error("Argument parse error: %s\n", str);
			return -EINVAL;
		}
609 610 611

		tmp = strpbrk(str, "-.");
		if (tmp) {
612 613 614
			(*fieldp)->name = strndup(str, tmp - str);
			if ((*fieldp)->name == NULL)
				return -ENOMEM;
615 616 617 618
			pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
			fieldp = &(*fieldp)->next;
		}
	} while (tmp);
619 620 621
	(*fieldp)->name = strdup(str);
	if ((*fieldp)->name == NULL)
		return -ENOMEM;
622
	pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);
623 624

	/* If no name is specified, set the last field name */
625 626 627 628 629
	if (!arg->name) {
		arg->name = strdup((*fieldp)->name);
		if (arg->name == NULL)
			return -ENOMEM;
	}
630
	return 0;
631 632
}

633
/* Parse perf-probe event command */
634
int parse_perf_probe_command(const char *cmd, struct perf_probe_event *pev)
635
{
636
	char **argv;
637
	int argc, i, ret = 0;
638

639
	argv = argv_split(cmd, &argc);
640 641 642 643 644 645 646 647 648
	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;
	}
649
	/* Parse probe point */
650 651 652
	ret = parse_perf_probe_point(argv[0], pev);
	if (ret < 0)
		goto out;
653

654
	/* Copy arguments and ensure return probe has no C argument */
655
	pev->nargs = argc - 1;
656 657 658 659 660
	pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
	if (pev->args == NULL) {
		ret = -ENOMEM;
		goto out;
	}
661 662 663 664
	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) {
665
			semantic_error("You can't specify local variable for"
666 667 668
				       " kretprobe.\n");
			ret = -EINVAL;
		}
669
	}
670
out:
671
	argv_free(argv);
672 673

	return ret;
674 675
}

676 677 678 679 680 681 682 683 684
/* 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++)
685
		if (is_c_varname(pev->args[i].var))
686 687 688 689 690
			return true;

	return false;
}

691
/* Parse kprobe_events event into struct probe_point */
692
int parse_kprobe_trace_command(const char *cmd, struct kprobe_trace_event *tev)
693
{
694
	struct kprobe_trace_point *tp = &tev->point;
695 696 697 698 699
	char pr;
	char *p;
	int ret, i, argc;
	char **argv;

700 701
	pr_debug("Parsing kprobe_events: %s\n", cmd);
	argv = argv_split(cmd, &argc);
702 703 704 705 706 707 708 709 710
	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;
	}
711 712

	/* Scan event and group name. */
713
	ret = sscanf(argv[0], "%c:%a[^/ \t]/%a[^ \t]",
714 715
		     &pr, (float *)(void *)&tev->group,
		     (float *)(void *)&tev->event);
716 717 718 719 720
	if (ret != 3) {
		semantic_error("Failed to parse event name: %s\n", argv[0]);
		ret = -EINVAL;
		goto out;
	}
721
	pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr);
722

723
	tp->retprobe = (pr == 'r');
724 725

	/* Scan function name and offset */
726 727
	ret = sscanf(argv[1], "%a[^+]+%lu", (float *)(void *)&tp->symbol,
		     &tp->offset);
728
	if (ret == 1)
729
		tp->offset = 0;
730

731
	tev->nargs = argc - 2;
732 733 734 735 736
	tev->args = zalloc(sizeof(struct kprobe_trace_arg) * tev->nargs);
	if (tev->args == NULL) {
		ret = -ENOMEM;
		goto out;
	}
737
	for (i = 0; i < tev->nargs; i++) {
738 739
		p = strchr(argv[i + 2], '=');
		if (p)	/* We don't need which register is assigned. */
740 741 742
			*p++ = '\0';
		else
			p = argv[i + 2];
743
		tev->args[i].name = strdup(argv[i + 2]);
744
		/* TODO: parse regs and offset */
745 746 747 748 749
		tev->args[i].value = strdup(p);
		if (tev->args[i].name == NULL || tev->args[i].value == NULL) {
			ret = -ENOMEM;
			goto out;
		}
750
	}
751 752
	ret = 0;
out:
753
	argv_free(argv);
754
	return ret;
755 756
}

757 758 759 760 761 762 763
/* 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;

764 765 766 767
	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);
768 769 770 771 772 773 774 775 776 777 778 779 780 781
	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;
	}
782 783 784 785 786 787 788 789 790

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

791 792
	return tmp - buf;
error:
793 794 795
	pr_debug("Failed to synthesize perf probe argument: %s",
		 strerror(-ret));
	return ret;
796 797
}

798 799
/* Compose only probe point (not argument) */
static char *synthesize_perf_probe_point(struct perf_probe_point *pp)
800
{
801 802 803
	char *buf, *tmp;
	char offs[32] = "", line[32] = "", file[32] = "";
	int ret, len;
804

805 806 807 808 809
	buf = zalloc(MAX_CMDLEN);
	if (buf == NULL) {
		ret = -ENOMEM;
		goto error;
	}
810
	if (pp->offset) {
811
		ret = e_snprintf(offs, 32, "+%lu", pp->offset);
812 813 814 815
		if (ret <= 0)
			goto error;
	}
	if (pp->line) {
816 817 818 819 820
		ret = e_snprintf(line, 32, ":%d", pp->line);
		if (ret <= 0)
			goto error;
	}
	if (pp->file) {
821
		len = strlen(pp->file) - 31;
822 823 824 825
		if (len < 0)
			len = 0;
		tmp = strchr(pp->file + len, '/');
		if (!tmp)
826
			tmp = pp->file + len;
827
		ret = e_snprintf(file, 32, "@%s", tmp + 1);
828 829 830 831 832
		if (ret <= 0)
			goto error;
	}

	if (pp->function)
833 834 835
		ret = e_snprintf(buf, MAX_CMDLEN, "%s%s%s%s%s", pp->function,
				 offs, pp->retprobe ? "%return" : "", line,
				 file);
836
	else
837
		ret = e_snprintf(buf, MAX_CMDLEN, "%s%s", file, line);
838 839 840 841
	if (ret <= 0)
		goto error;

	return buf;
842
error:
843 844
	pr_debug("Failed to synthesize perf probe point: %s",
		 strerror(-ret));
845 846
	if (buf)
		free(buf);
847
	return NULL;
848 849
}

850 851
#if 0
char *synthesize_perf_probe_command(struct perf_probe_event *pev)
852 853 854 855
{
	char *buf;
	int i, len, ret;

856 857 858
	buf = synthesize_perf_probe_point(&pev->point);
	if (!buf)
		return NULL;
859

860 861
	len = strlen(buf);
	for (i = 0; i < pev->nargs; i++) {
862
		ret = e_snprintf(&buf[len], MAX_CMDLEN - len, " %s",
863 864 865 866 867
				 pev->args[i].name);
		if (ret <= 0) {
			free(buf);
			return NULL;
		}
868 869 870
		len += ret;
	}

871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895
	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;
896 897 898

}

899 900
static int synthesize_kprobe_trace_arg(struct kprobe_trace_arg *arg,
				       char *buf, size_t buflen)
901
{
902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937
	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;
	}
938 939 940 941 942 943 944
	/* Print argument type */
	if (arg->type) {
		ret = e_snprintf(buf, buflen, ":%s", arg->type);
		if (ret <= 0)
			return ret;
		buf += ret;
	}
945 946 947 948 949 950 951

	return buf - tmp;
}

char *synthesize_kprobe_trace_command(struct kprobe_trace_event *tev)
{
	struct kprobe_trace_point *tp = &tev->point;
952 953 954
	char *buf;
	int i, len, ret;

955 956 957 958
	buf = zalloc(MAX_CMDLEN);
	if (buf == NULL)
		return NULL;

959 960 961 962 963
	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)
964 965
		goto error;

966 967 968
	for (i = 0; i < tev->nargs; i++) {
		ret = synthesize_kprobe_trace_arg(&tev->args[i], buf + len,
						  MAX_CMDLEN - len);
969
		if (ret <= 0)
970 971 972 973
			goto error;
		len += ret;
	}

974
	return buf;
975
error:
976 977 978
	free(buf);
	return NULL;
}
979

980 981
int convert_to_perf_probe_event(struct kprobe_trace_event *tev,
				struct perf_probe_event *pev)
982
{
983
	char buf[64] = "";
984
	int i, ret;
985

986
	/* Convert event/group name */
987 988 989 990
	pev->event = strdup(tev->event);
	pev->group = strdup(tev->group);
	if (pev->event == NULL || pev->group == NULL)
		return -ENOMEM;
991

992
	/* Convert trace_point to probe_point */
993 994 995
	ret = convert_to_perf_probe_point(&tev->point, &pev->point);
	if (ret < 0)
		return ret;
996

997 998
	/* Convert trace_arg to probe_arg */
	pev->nargs = tev->nargs;
999 1000 1001
	pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
	if (pev->args == NULL)
		return -ENOMEM;
1002
	for (i = 0; i < tev->nargs && ret >= 0; i++) {
1003
		if (tev->args[i].name)
1004
			pev->args[i].name = strdup(tev->args[i].name);
1005
		else {
1006 1007
			ret = synthesize_kprobe_trace_arg(&tev->args[i],
							  buf, 64);
1008
			pev->args[i].name = strdup(buf);
1009
		}
1010 1011 1012
		if (pev->args[i].name == NULL && ret >= 0)
			ret = -ENOMEM;
	}
1013 1014 1015 1016 1017

	if (ret < 0)
		clear_perf_probe_event(pev);

	return ret;
1018 1019 1020 1021 1022
}

void clear_perf_probe_event(struct perf_probe_event *pev)
{
	struct perf_probe_point *pp = &pev->point;
1023
	struct perf_probe_arg_field *field, *next;
1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035
	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);
1036
	for (i = 0; i < pev->nargs; i++) {
1037 1038
		if (pev->args[i].name)
			free(pev->args[i].name);
1039 1040
		if (pev->args[i].var)
			free(pev->args[i].var);
1041 1042
		if (pev->args[i].type)
			free(pev->args[i].type);
1043 1044 1045 1046 1047 1048 1049 1050 1051
		field = pev->args[i].field;
		while (field) {
			next = field->next;
			if (field->name)
				free(field->name);
			free(field);
			field = next;
		}
	}
1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072
	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);
1073 1074
		if (tev->args[i].type)
			free(tev->args[i].type);
1075 1076 1077 1078 1079 1080 1081 1082 1083 1084
		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));
1085 1086
}

1087
static int open_kprobe_events(bool readwrite)
1088 1089
{
	char buf[PATH_MAX];
1090
	const char *__debugfs;
1091 1092
	int ret;

1093 1094 1095 1096 1097 1098 1099
	__debugfs = debugfs_find_mountpoint();
	if (__debugfs == NULL) {
		pr_warning("Debugfs is not mounted.\n");
		return -ENOENT;
	}

	ret = e_snprintf(buf, PATH_MAX, "%stracing/kprobe_events", __debugfs);
1100
	if (ret >= 0) {
1101
		pr_debug("Opening %s write=%d\n", buf, readwrite);
1102 1103 1104 1105 1106
		if (readwrite && !probe_event_dry_run)
			ret = open(buf, O_RDWR, O_APPEND);
		else
			ret = open(buf, O_RDONLY, 0);
	}
1107

1108 1109
	if (ret < 0) {
		if (errno == ENOENT)
1110 1111
			pr_warning("kprobe_events file does not exist - please"
				 " rebuild kernel with CONFIG_KPROBE_EVENT.\n");
1112
		else
1113 1114
			pr_warning("Failed to open kprobe_events file: %s\n",
				   strerror(errno));
1115 1116 1117 1118 1119
	}
	return ret;
}

/* Get raw string list of current kprobe_events */
1120
static struct strlist *get_kprobe_trace_command_rawlist(int fd)
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139
{
	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);
1140 1141 1142 1143 1144
		if (ret < 0) {
			pr_debug("strlist__add failed: %s\n", strerror(-ret));
			strlist__delete(sl);
			return NULL;
		}
1145 1146 1147 1148 1149 1150
	}
	fclose(fp);

	return sl;
}

1151
/* Show an event */
1152
static int show_perf_probe_event(struct perf_probe_event *pev)
1153
{
1154
	int i, ret;
1155
	char buf[128];
1156
	char *place;
1157

1158 1159
	/* Synthesize only event probe point */
	place = synthesize_perf_probe_point(&pev->point);
1160 1161
	if (!place)
		return -EINVAL;
1162 1163

	ret = e_snprintf(buf, 128, "%s:%s", pev->group, pev->event);
1164
	if (ret < 0)
1165 1166
		return ret;

1167
	printf("  %-20s (on %s", buf, place);
1168

1169
	if (pev->nargs > 0) {
1170
		printf(" with");
1171
		for (i = 0; i < pev->nargs; i++) {
1172 1173 1174 1175
			ret = synthesize_perf_probe_arg(&pev->args[i],
							buf, 128);
			if (ret < 0)
				break;
1176 1177
			printf(" %s", buf);
		}
1178 1179
	}
	printf(")\n");
1180
	free(place);
1181
	return ret;
1182 1183
}

1184
/* List up current perf-probe events */
1185
int show_perf_probe_events(void)
1186
{
1187
	int fd, ret;
1188 1189
	struct kprobe_trace_event tev;
	struct perf_probe_event pev;
1190 1191 1192
	struct strlist *rawlist;
	struct str_node *ent;

1193
	setup_pager();
1194 1195 1196
	ret = init_vmlinux();
	if (ret < 0)
		return ret;
1197 1198 1199

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

1201
	fd = open_kprobe_events(false);
1202 1203 1204
	if (fd < 0)
		return fd;

1205
	rawlist = get_kprobe_trace_command_rawlist(fd);
1206
	close(fd);
1207 1208
	if (!rawlist)
		return -ENOENT;
1209

1210
	strlist__for_each(ent, rawlist) {
1211 1212 1213 1214 1215 1216
		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);
		}
1217 1218
		clear_perf_probe_event(&pev);
		clear_kprobe_trace_event(&tev);
1219 1220
		if (ret < 0)
			break;
1221 1222
	}
	strlist__delete(rawlist);
1223 1224

	return ret;
1225 1226
}

1227
/* Get current perf-probe event names */
1228
static struct strlist *get_kprobe_trace_event_names(int fd, bool include_group)
1229
{
1230
	char buf[128];
1231 1232
	struct strlist *sl, *rawlist;
	struct str_node *ent;
1233
	struct kprobe_trace_event tev;
1234
	int ret = 0;
1235

1236
	memset(&tev, 0, sizeof(tev));
1237

1238
	rawlist = get_kprobe_trace_command_rawlist(fd);
1239
	sl = strlist__new(true, NULL);
1240
	strlist__for_each(ent, rawlist) {
1241 1242 1243
		ret = parse_kprobe_trace_command(ent->s, &tev);
		if (ret < 0)
			break;
1244
		if (include_group) {
1245 1246 1247 1248
			ret = e_snprintf(buf, 128, "%s:%s", tev.group,
					tev.event);
			if (ret >= 0)
				ret = strlist__add(sl, buf);
1249
		} else
1250
			ret = strlist__add(sl, tev.event);
1251
		clear_kprobe_trace_event(&tev);
1252 1253
		if (ret < 0)
			break;
1254 1255 1256
	}
	strlist__delete(rawlist);

1257 1258 1259 1260
	if (ret < 0) {
		strlist__delete(sl);
		return NULL;
	}
1261 1262 1263
	return sl;
}

1264
static int write_kprobe_trace_event(int fd, struct kprobe_trace_event *tev)
1265 1266
{
	int ret;
1267
	char *buf = synthesize_kprobe_trace_command(tev);
1268

1269 1270 1271 1272 1273
	if (!buf) {
		pr_debug("Failed to synthesize kprobe trace event.\n");
		return -EINVAL;
	}

1274
	pr_debug("Writing event: %s\n", buf);
1275 1276 1277
	if (!probe_event_dry_run) {
		ret = write(fd, buf, strlen(buf));
		if (ret <= 0)
1278 1279
			pr_warning("Failed to write event: %s\n",
				   strerror(errno));
1280
	}
1281
	free(buf);
1282
	return ret;
1283 1284
}

1285 1286
static int get_new_event_name(char *buf, size_t len, const char *base,
			      struct strlist *namelist, bool allow_suffix)
1287 1288
{
	int i, ret;
1289 1290 1291

	/* Try no suffix */
	ret = e_snprintf(buf, len, "%s", base);
1292 1293 1294 1295
	if (ret < 0) {
		pr_debug("snprintf() failed: %s\n", strerror(-ret));
		return ret;
	}
1296
	if (!strlist__has_entry(namelist, buf))
1297
		return 0;
1298

1299 1300 1301
	if (!allow_suffix) {
		pr_warning("Error: event \"%s\" already exists. "
			   "(Use -f to force duplicates.)\n", base);
1302
		return -EEXIST;
1303 1304
	}

1305 1306
	/* Try to add suffix */
	for (i = 1; i < MAX_EVENT_INDEX; i++) {
1307
		ret = e_snprintf(buf, len, "%s_%d", base, i);
1308 1309 1310 1311
		if (ret < 0) {
			pr_debug("snprintf() failed: %s\n", strerror(-ret));
			return ret;
		}
1312 1313 1314
		if (!strlist__has_entry(namelist, buf))
			break;
	}
1315 1316 1317 1318 1319 1320
	if (i == MAX_EVENT_INDEX) {
		pr_warning("Too many events are on the same function.\n");
		ret = -ERANGE;
	}

	return ret;
1321 1322
}

1323 1324 1325
static int __add_kprobe_trace_events(struct perf_probe_event *pev,
				     struct kprobe_trace_event *tevs,
				     int ntevs, bool allow_suffix)
1326
{
1327
	int i, fd, ret;
1328
	struct kprobe_trace_event *tev = NULL;
1329 1330
	char buf[64];
	const char *event, *group;
1331
	struct strlist *namelist;
1332

1333
	fd = open_kprobe_events(true);
1334 1335
	if (fd < 0)
		return fd;
1336
	/* Get current event names */
1337
	namelist = get_kprobe_trace_event_names(fd, false);
1338 1339 1340 1341
	if (!namelist) {
		pr_debug("Failed to get current event list.\n");
		return -EIO;
	}
1342

1343
	ret = 0;
1344
	printf("Add new event%s\n", (ntevs > 1) ? "s:" : ":");
1345
	for (i = 0; i < ntevs; i++) {
1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359
		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 */
1360 1361 1362 1363
		ret = get_new_event_name(buf, 64, event,
					 namelist, allow_suffix);
		if (ret < 0)
			break;
1364 1365
		event = buf;

1366 1367 1368 1369 1370 1371
		tev->event = strdup(event);
		tev->group = strdup(group);
		if (tev->event == NULL || tev->group == NULL) {
			ret = -ENOMEM;
			break;
		}
1372 1373 1374
		ret = write_kprobe_trace_event(fd, tev);
		if (ret < 0)
			break;
1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394
		/* 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;
1395
	}
1396 1397 1398 1399 1400 1401 1402

	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);
	}
1403

1404
	strlist__delete(namelist);
1405
	close(fd);
1406
	return ret;
1407
}
1408

1409 1410
static int convert_to_kprobe_trace_events(struct perf_probe_event *pev,
					  struct kprobe_trace_event **tevs)
1411 1412
{
	struct symbol *sym;
1413
	int ret = 0, i;
1414 1415
	struct kprobe_trace_event *tev;

1416
	/* Convert perf_probe_event with debuginfo */
1417 1418 1419
	ret = try_to_find_kprobe_trace_events(pev, tevs);
	if (ret != 0)
		return ret;
1420

1421
	/* Allocate trace event buffer */
1422 1423 1424
	tev = *tevs = zalloc(sizeof(struct kprobe_trace_event));
	if (tev == NULL)
		return -ENOMEM;
1425 1426

	/* Copy parameters */
1427 1428 1429 1430 1431
	tev->point.symbol = strdup(pev->point.function);
	if (tev->point.symbol == NULL) {
		ret = -ENOMEM;
		goto error;
	}
1432 1433 1434
	tev->point.offset = pev->point.offset;
	tev->nargs = pev->nargs;
	if (tev->nargs) {
1435 1436 1437
		tev->args = zalloc(sizeof(struct kprobe_trace_arg)
				   * tev->nargs);
		if (tev->args == NULL) {
1438 1439
			ret = -ENOMEM;
			goto error;
1440
		}
1441
		for (i = 0; i < tev->nargs; i++) {
1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460
			if (pev->args[i].name) {
				tev->args[i].name = strdup(pev->args[i].name);
				if (tev->args[i].name == NULL) {
					ret = -ENOMEM;
					goto error;
				}
			}
			tev->args[i].value = strdup(pev->args[i].var);
			if (tev->args[i].value == NULL) {
				ret = -ENOMEM;
				goto error;
			}
			if (pev->args[i].type) {
				tev->args[i].type = strdup(pev->args[i].type);
				if (tev->args[i].type == NULL) {
					ret = -ENOMEM;
					goto error;
				}
			}
1461
		}
1462 1463 1464 1465 1466
	}

	/* Currently just checking function name from symbol map */
	sym = map__find_symbol_by_name(kmaps[MAP__FUNCTION],
				       tev->point.symbol, NULL);
1467 1468 1469
	if (!sym) {
		pr_warning("Kernel symbol \'%s\' not found.\n",
			   tev->point.symbol);
1470 1471 1472
		ret = -ENOENT;
		goto error;
	}
1473

1474 1475 1476 1477 1478
	return 1;
error:
	clear_kprobe_trace_event(tev);
	free(tev);
	*tevs = NULL;
1479
	return ret;
1480 1481 1482 1483 1484 1485 1486 1487
}

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

1488 1489
int add_perf_probe_events(struct perf_probe_event *pevs, int npevs,
			  bool force_add)
1490
{
1491
	int i, j, ret;
1492 1493
	struct __event_package *pkgs;

1494 1495 1496
	pkgs = zalloc(sizeof(struct __event_package) * npevs);
	if (pkgs == NULL)
		return -ENOMEM;
1497 1498

	/* Init vmlinux path */
1499 1500 1501
	ret = init_vmlinux();
	if (ret < 0)
		return ret;
1502 1503 1504 1505 1506

	/* Loop 1: convert all events */
	for (i = 0; i < npevs; i++) {
		pkgs[i].pev = &pevs[i];
		/* Convert with or without debuginfo */
1507 1508 1509 1510 1511
		ret  = convert_to_kprobe_trace_events(pkgs[i].pev,
						      &pkgs[i].tevs);
		if (ret < 0)
			goto end;
		pkgs[i].ntevs = ret;
1512 1513
	}

1514
	/* Loop 2: add all events */
1515 1516 1517 1518 1519
	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  */
1520
	for (i = 0; i < npevs; i++)
1521 1522 1523 1524
		for (j = 0; j < pkgs[i].ntevs; j++)
			clear_kprobe_trace_event(&pkgs[i].tevs[j]);

	return ret;
1525 1526
}

1527
static int __del_trace_kprobe_event(int fd, struct str_node *ent)
1528 1529 1530
{
	char *p;
	char buf[128];
1531
	int ret;
1532 1533

	/* Convert from perf-probe event to trace-kprobe event */
1534 1535 1536 1537
	ret = e_snprintf(buf, 128, "-:%s", ent->s);
	if (ret < 0)
		goto error;

1538
	p = strchr(buf + 2, ':');
1539 1540 1541 1542 1543 1544
	if (!p) {
		pr_debug("Internal error: %s should have ':' but not.\n",
			 ent->s);
		ret = -ENOTSUP;
		goto error;
	}
1545 1546
	*p = '/';

1547 1548
	pr_debug("Writing event: %s\n", buf);
	ret = write(fd, buf, strlen(buf));
1549 1550 1551
	if (ret < 0)
		goto error;

1552
	printf("Remove event: %s\n", ent->s);
1553 1554 1555 1556
	return 0;
error:
	pr_warning("Failed to delete event: %s\n", strerror(-ret));
	return ret;
1557 1558
}

1559 1560
static int del_trace_kprobe_event(int fd, const char *group,
				  const char *event, struct strlist *namelist)
1561 1562
{
	char buf[128];
1563
	struct str_node *ent, *n;
1564
	int found = 0, ret = 0;
1565

1566 1567 1568 1569 1570
	ret = e_snprintf(buf, 128, "%s:%s", group, event);
	if (ret < 0) {
		pr_err("Failed to copy event.");
		return ret;
	}
1571

1572 1573 1574 1575
	if (strpbrk(buf, "*?")) { /* Glob-exp */
		strlist__for_each_safe(ent, n, namelist)
			if (strglobmatch(ent->s, buf)) {
				found++;
1576 1577 1578
				ret = __del_trace_kprobe_event(fd, ent);
				if (ret < 0)
					break;
1579 1580 1581 1582 1583 1584
				strlist__remove(namelist, ent);
			}
	} else {
		ent = strlist__find(namelist, buf);
		if (ent) {
			found++;
1585 1586 1587
			ret = __del_trace_kprobe_event(fd, ent);
			if (ret >= 0)
				strlist__remove(namelist, ent);
1588 1589
		}
	}
1590 1591 1592 1593
	if (found == 0 && ret >= 0)
		pr_info("Info: Event \"%s\" does not exist.\n", buf);

	return ret;
1594 1595
}

1596
int del_perf_probe_events(struct strlist *dellist)
1597
{
1598
	int fd, ret = 0;
1599 1600 1601 1602 1603
	const char *group, *event;
	char *p, *str;
	struct str_node *ent;
	struct strlist *namelist;

1604
	fd = open_kprobe_events(true);
1605 1606 1607
	if (fd < 0)
		return fd;

1608
	/* Get current event names */
1609
	namelist = get_kprobe_trace_event_names(fd, true);
1610 1611
	if (namelist == NULL)
		return -EINVAL;
1612

1613
	strlist__for_each(ent, dellist) {
1614 1615 1616 1617 1618
		str = strdup(ent->s);
		if (str == NULL) {
			ret = -ENOMEM;
			break;
		}
1619
		pr_debug("Parsing: %s\n", str);
1620 1621 1622 1623 1624 1625
		p = strchr(str, ':');
		if (p) {
			group = str;
			*p = '\0';
			event = p + 1;
		} else {
1626
			group = "*";
1627 1628
			event = str;
		}
1629
		pr_debug("Group: %s, Event: %s\n", group, event);
1630
		ret = del_trace_kprobe_event(fd, group, event, namelist);
1631
		free(str);
1632 1633
		if (ret < 0)
			break;
1634 1635 1636
	}
	strlist__delete(namelist);
	close(fd);
1637 1638

	return ret;
1639 1640
}