probe-event.c 38.0 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
static struct machine machine;
76

77
/* Initialize symbol maps and path of vmlinux */
78
static int init_vmlinux(void)
79
{
80
	struct dso *kernel;
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 95 96 97
	ret = machine__init(&machine, "/", 0);
	if (ret < 0)
		goto out;

98 99 100 101
	kernel = dso__new_kernel(symbol_conf.vmlinux_name);
	if (kernel == NULL)
		die("Failed to create kernel dso.");

102
	ret = __machine__create_kernel_maps(&machine, kernel);
103 104 105 106 107 108 109
	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;
110 111
}

112
#ifdef DWARF_SUPPORT
113 114
static int open_vmlinux(void)
{
115
	if (map__load(machine.vmlinux_maps[MAP__FUNCTION], NULL) < 0) {
116 117 118
		pr_debug("Failed to load kernel map.\n");
		return -EINVAL;
	}
119 120
	pr_debug("Try to open %s\n", machine.vmlinux_maps[MAP__FUNCTION]->dso->long_name);
	return open(machine.vmlinux_maps[MAP__FUNCTION]->dso->long_name, O_RDONLY);
121
}
122

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

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

	return 0;
151 152 153 154
}

/* Try to find perf_probe_event with debuginfo */
static int try_to_find_kprobe_trace_events(struct perf_probe_event *pev,
155 156
					   struct kprobe_trace_event **tevs,
					   int max_tevs)
157 158 159 160 161 162
{
	bool need_dwarf = perf_probe_event_need_dwarf(pev);
	int fd, ntevs;

	fd = open_vmlinux();
	if (fd < 0) {
163 164 165 166
		if (need_dwarf) {
			pr_warning("Failed to open debuginfo file.\n");
			return fd;
		}
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 */
172
	ntevs = find_kprobe_trace_events(fd, pev, tevs, max_tevs);
173 174
	close(fd);

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

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

198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
/*
 * Find a src file from a DWARF tag path. Prepend optional source path prefix
 * and chop off leading directories that do not exist. Result is passed back as
 * a newly allocated path on success.
 * Return 0 if file was found and readable, -errno otherwise.
 */
static int get_real_path(const char *raw_path, char **new_path)
{
	if (!symbol_conf.source_prefix) {
		if (access(raw_path, R_OK) == 0) {
			*new_path = strdup(raw_path);
			return 0;
		} else
			return -errno;
	}

	*new_path = malloc((strlen(symbol_conf.source_prefix) +
			    strlen(raw_path) + 2));
	if (!*new_path)
		return -ENOMEM;

	for (;;) {
		sprintf(*new_path, "%s/%s", symbol_conf.source_prefix,
			raw_path);

		if (access(*new_path, R_OK) == 0)
			return 0;

		switch (errno) {
		case ENAMETOOLONG:
		case ENOENT:
		case EROFS:
		case EFAULT:
			raw_path = strchr(++raw_path, '/');
			if (!raw_path) {
				free(*new_path);
				*new_path = NULL;
				return -ENOENT;
			}
			continue;

		default:
			free(*new_path);
			*new_path = NULL;
			return -errno;
		}
	}
}

247 248 249
#define LINEBUF_SIZE 256
#define NR_ADDITIONAL_LINES 2

250
static int show_one_line(FILE *fp, int l, bool skip, bool show_num)
251 252 253 254 255 256 257 258
{
	char buf[LINEBUF_SIZE];
	const char *color = PERF_COLOR_BLUE;

	if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
		goto error;
	if (!skip) {
		if (show_num)
259
			fprintf(stdout, "%7d  %s", l, buf);
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
		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);
		}
	}
275 276

	return 0;
277 278
error:
	if (feof(fp))
279
		pr_warning("Source file is shorter than expected.\n");
280
	else
281 282 283
		pr_warning("File read error: %s\n", strerror(errno));

	return -1;
284 285 286 287 288 289
}

/*
 * Show line-range always requires debuginfo to find source file and
 * line number.
 */
290
int show_line_range(struct line_range *lr)
291
{
292
	int l = 1;
293 294 295
	struct line_node *ln;
	FILE *fp;
	int fd, ret;
296
	char *tmp;
297 298

	/* Search a line range */
299 300 301 302
	ret = init_vmlinux();
	if (ret < 0)
		return ret;

303
	fd = open_vmlinux();
304 305 306 307 308
	if (fd < 0) {
		pr_warning("Failed to open debuginfo file.\n");
		return fd;
	}

309 310
	ret = find_line_range(fd, lr);
	close(fd);
311 312 313 314 315 316 317
	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;
	}
318

319 320 321 322 323 324 325 326 327
	/* Convert source file path */
	tmp = lr->path;
	ret = get_real_path(tmp, &lr->path);
	free(tmp);	/* Free old path */
	if (ret < 0) {
		pr_warning("Failed to find source file. (%d)\n", ret);
		return ret;
	}

328 329 330 331 332 333 334 335 336
	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");
337 338 339 340 341
	if (fp == NULL) {
		pr_warning("Failed to open %s: %s\n", lr->path,
			   strerror(errno));
		return -errno;
	}
342
	/* Skip to starting line number */
343 344 345 346
	while (l < lr->start && ret >= 0)
		ret = show_one_line(fp, l++, true, false);
	if (ret < 0)
		goto end;
347 348

	list_for_each_entry(ln, &lr->line_list, list) {
349 350 351 352 353 354 355 356
		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;
357 358 359 360
	}

	if (lr->end == INT_MAX)
		lr->end = l + NR_ADDITIONAL_LINES;
361
	while (l <= lr->end && !feof(fp) && ret >= 0)
362 363
		ret = show_one_line(fp, (l++) - lr->offset, false, false);
end:
364
	fclose(fp);
365
	return ret;
366 367 368 369
}

#else	/* !DWARF_SUPPORT */

370
static int convert_to_perf_probe_point(struct kprobe_trace_point *tp,
371 372
					struct perf_probe_point *pp)
{
373 374 375
	pp->function = strdup(tp->symbol);
	if (pp->function == NULL)
		return -ENOMEM;
376 377
	pp->offset = tp->offset;
	pp->retprobe = tp->retprobe;
378 379

	return 0;
380 381 382
}

static int try_to_find_kprobe_trace_events(struct perf_probe_event *pev,
383 384
				struct kprobe_trace_event **tevs __unused,
				int max_tevs __unused)
385
{
386 387 388 389
	if (perf_probe_event_need_dwarf(pev)) {
		pr_warning("Debuginfo-analysis is not supported.\n");
		return -ENOSYS;
	}
390 391 392
	return 0;
}

393
int show_line_range(struct line_range *lr __unused)
394
{
395 396
	pr_warning("Debuginfo-analysis is not supported.\n");
	return -ENOSYS;
397 398
}

399 400
#endif

401
int parse_line_range_desc(const char *arg, struct line_range *lr)
402 403 404 405 406 407 408 409 410 411
{
	const char *ptr;
	char *tmp;
	/*
	 * <Syntax>
	 * SRC:SLN[+NUM|-ELN]
	 * FUNC[:SLN[+NUM|-ELN]]
	 */
	ptr = strchr(arg, ':');
	if (ptr) {
412
		lr->start = (int)strtoul(ptr + 1, &tmp, 0);
413
		if (*tmp == '+') {
414
			lr->end = lr->start + (int)strtoul(tmp + 1, &tmp, 0);
415 416 417 418 419 420 421
			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 == '-')
422
			lr->end = (int)strtoul(tmp + 1, &tmp, 0);
423
		else
424 425 426
			lr->end = INT_MAX;
		pr_debug("Line range is %d to %d\n", lr->start, lr->end);
		if (lr->start > lr->end) {
427
			semantic_error("Start line must be smaller"
428 429 430 431 432
				       " than end line.\n");
			return -EINVAL;
		}
		if (*tmp != '\0') {
			semantic_error("Tailing with invalid character '%d'.\n",
433
				       *tmp);
434 435
			return -EINVAL;
		}
436
		tmp = strndup(arg, (ptr - arg));
437
	} else {
438
		tmp = strdup(arg);
439 440
		lr->end = INT_MAX;
	}
441 442 443

	if (tmp == NULL)
		return -ENOMEM;
444 445 446 447 448

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

	return 0;
451 452
}

453 454 455 456 457 458 459 460 461 462 463 464
/* 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;
}

465
/* Parse probepoint definition. */
466
static int parse_perf_probe_point(char *arg, struct perf_probe_event *pev)
467
{
468
	struct perf_probe_point *pp = &pev->point;
469 470 471 472
	char *ptr, *tmp;
	char c, nc = 0;
	/*
	 * <Syntax>
473 474
	 * perf probe [EVENT=]SRC[:LN|;PTN]
	 * perf probe [EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
475 476
	 *
	 * TODO:Group name support
477 478
	 */

479 480
	ptr = strpbrk(arg, ";=@+%");
	if (ptr && *ptr == '=') {	/* Event name */
481 482
		*ptr = '\0';
		tmp = ptr + 1;
483 484 485 486 487
		if (strchr(arg, ':')) {
			semantic_error("Group name is not supported yet.\n");
			return -ENOTSUP;
		}
		if (!check_event_name(arg)) {
488
			semantic_error("%s is bad for event name -it must "
489 490 491
				       "follow C symbol-naming rule.\n", arg);
			return -EINVAL;
		}
492 493 494
		pev->event = strdup(arg);
		if (pev->event == NULL)
			return -ENOMEM;
495
		pev->group = NULL;
496 497 498
		arg = tmp;
	}

499
	ptr = strpbrk(arg, ";:+@%");
500 501 502 503 504
	if (ptr) {
		nc = *ptr;
		*ptr++ = '\0';
	}

505 506 507 508
	tmp = strdup(arg);
	if (tmp == NULL)
		return -ENOMEM;

509
	/* Check arg is function or file and copy it */
510 511
	if (strchr(tmp, '.'))	/* File */
		pp->file = tmp;
512
	else			/* Function */
513
		pp->function = tmp;
514 515 516 517 518

	/* Parse other options */
	while (ptr) {
		arg = ptr;
		c = nc;
519
		if (c == ';') {	/* Lazy pattern must be the last part */
520 521 522
			pp->lazy_line = strdup(arg);
			if (pp->lazy_line == NULL)
				return -ENOMEM;
523 524 525
			break;
		}
		ptr = strpbrk(arg, ";:+@%");
526 527 528 529 530 531 532
		if (ptr) {
			nc = *ptr;
			*ptr++ = '\0';
		}
		switch (c) {
		case ':':	/* Line number */
			pp->line = strtoul(arg, &tmp, 0);
533
			if (*tmp != '\0') {
534
				semantic_error("There is non-digit char"
535 536 537
					       " in line number.\n");
				return -EINVAL;
			}
538 539 540
			break;
		case '+':	/* Byte offset from a symbol */
			pp->offset = strtoul(arg, &tmp, 0);
541
			if (*tmp != '\0') {
542
				semantic_error("There is non-digit character"
543 544 545
						" in offset.\n");
				return -EINVAL;
			}
546 547
			break;
		case '@':	/* File name */
548 549 550 551
			if (pp->file) {
				semantic_error("SRC@SRC is not allowed.\n");
				return -EINVAL;
			}
552 553 554
			pp->file = strdup(arg);
			if (pp->file == NULL)
				return -ENOMEM;
555 556 557 558
			break;
		case '%':	/* Probe places */
			if (strcmp(arg, "return") == 0) {
				pp->retprobe = 1;
559 560 561 562
			} else {	/* Others not supported yet */
				semantic_error("%%%s is not supported.\n", arg);
				return -ENOTSUP;
			}
563
			break;
564 565 566 567
		default:	/* Buggy case */
			pr_err("This program has a bug at %s:%d.\n",
				__FILE__, __LINE__);
			return -ENOTSUP;
568 569 570 571 572
			break;
		}
	}

	/* Exclusion check */
573
	if (pp->lazy_line && pp->line) {
574
		semantic_error("Lazy pattern can't be used with line number.");
575 576
		return -EINVAL;
	}
577

578
	if (pp->lazy_line && pp->offset) {
579
		semantic_error("Lazy pattern can't be used with offset.");
580 581
		return -EINVAL;
	}
582

583
	if (pp->line && pp->offset) {
584
		semantic_error("Offset can't be used with line number.");
585 586
		return -EINVAL;
	}
587

588
	if (!pp->line && !pp->lazy_line && pp->file && !pp->function) {
589 590
		semantic_error("File always requires line number or "
			       "lazy pattern.");
591 592
		return -EINVAL;
	}
593

594
	if (pp->offset && !pp->function) {
595
		semantic_error("Offset requires an entry function.");
596 597
		return -EINVAL;
	}
598

599
	if (pp->retprobe && !pp->function) {
600
		semantic_error("Return probe requires an entry function.");
601 602
		return -EINVAL;
	}
603

604
	if ((pp->offset || pp->line || pp->lazy_line) && pp->retprobe) {
605 606
		semantic_error("Offset/Line/Lazy pattern can't be used with "
			       "return probe.");
607 608
		return -EINVAL;
	}
609

610
	pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n",
611 612
		 pp->function, pp->file, pp->line, pp->offset, pp->retprobe,
		 pp->lazy_line);
613
	return 0;
614 615
}

616
/* Parse perf-probe event argument */
617
static int parse_perf_probe_arg(char *str, struct perf_probe_arg *arg)
618
{
619
	char *tmp, *goodname;
620 621 622 623
	struct perf_probe_arg_field **fieldp;

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

624 625
	tmp = strchr(str, '=');
	if (tmp) {
626 627 628
		arg->name = strndup(str, tmp - str);
		if (arg->name == NULL)
			return -ENOMEM;
629
		pr_debug("name:%s ", arg->name);
630 631 632
		str = tmp + 1;
	}

633 634 635
	tmp = strchr(str, ':');
	if (tmp) {	/* Type setting */
		*tmp = '\0';
636 637 638
		arg->type = strdup(tmp + 1);
		if (arg->type == NULL)
			return -ENOMEM;
639 640 641
		pr_debug("type:%s ", arg->type);
	}

642
	tmp = strpbrk(str, "-.[");
643 644
	if (!is_c_varname(str) || !tmp) {
		/* A variable, register, symbol or special value */
645 646 647
		arg->var = strdup(str);
		if (arg->var == NULL)
			return -ENOMEM;
648
		pr_debug("%s\n", arg->var);
649
		return 0;
650 651
	}

652
	/* Structure fields or array element */
653 654 655
	arg->var = strndup(str, tmp - str);
	if (arg->var == NULL)
		return -ENOMEM;
656
	goodname = arg->var;
657
	pr_debug("%s, ", arg->var);
658 659 660
	fieldp = &arg->field;

	do {
661 662 663
		*fieldp = zalloc(sizeof(struct perf_probe_arg_field));
		if (*fieldp == NULL)
			return -ENOMEM;
664 665 666
		if (*tmp == '[') {	/* Array */
			str = tmp;
			(*fieldp)->index = strtol(str + 1, &tmp, 0);
667
			(*fieldp)->ref = true;
668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688
			if (*tmp != ']' || tmp == str + 1) {
				semantic_error("Array index must be a"
						" number.\n");
				return -EINVAL;
			}
			tmp++;
			if (*tmp == '\0')
				tmp = NULL;
		} else {		/* Structure */
			if (*tmp == '.') {
				str = tmp + 1;
				(*fieldp)->ref = false;
			} else if (tmp[1] == '>') {
				str = tmp + 2;
				(*fieldp)->ref = true;
			} else {
				semantic_error("Argument parse error: %s\n",
					       str);
				return -EINVAL;
			}
			tmp = strpbrk(str, "-.[");
689
		}
690
		if (tmp) {
691 692 693
			(*fieldp)->name = strndup(str, tmp - str);
			if ((*fieldp)->name == NULL)
				return -ENOMEM;
694 695
			if (*str != '[')
				goodname = (*fieldp)->name;
696 697 698 699
			pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
			fieldp = &(*fieldp)->next;
		}
	} while (tmp);
700 701 702
	(*fieldp)->name = strdup(str);
	if ((*fieldp)->name == NULL)
		return -ENOMEM;
703 704
	if (*str != '[')
		goodname = (*fieldp)->name;
705
	pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);
706

707
	/* If no name is specified, set the last field name (not array index)*/
708
	if (!arg->name) {
709
		arg->name = strdup(goodname);
710 711 712
		if (arg->name == NULL)
			return -ENOMEM;
	}
713
	return 0;
714 715
}

716
/* Parse perf-probe event command */
717
int parse_perf_probe_command(const char *cmd, struct perf_probe_event *pev)
718
{
719
	char **argv;
720
	int argc, i, ret = 0;
721

722
	argv = argv_split(cmd, &argc);
723 724 725 726 727 728 729 730 731
	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;
	}
732
	/* Parse probe point */
733 734 735
	ret = parse_perf_probe_point(argv[0], pev);
	if (ret < 0)
		goto out;
736

737
	/* Copy arguments and ensure return probe has no C argument */
738
	pev->nargs = argc - 1;
739 740 741 742 743
	pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
	if (pev->args == NULL) {
		ret = -ENOMEM;
		goto out;
	}
744 745 746 747
	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) {
748
			semantic_error("You can't specify local variable for"
749 750 751
				       " kretprobe.\n");
			ret = -EINVAL;
		}
752
	}
753
out:
754
	argv_free(argv);
755 756

	return ret;
757 758
}

759 760 761 762 763 764 765 766 767
/* 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++)
768
		if (is_c_varname(pev->args[i].var))
769 770 771 772 773
			return true;

	return false;
}

774
/* Parse kprobe_events event into struct probe_point */
775
int parse_kprobe_trace_command(const char *cmd, struct kprobe_trace_event *tev)
776
{
777
	struct kprobe_trace_point *tp = &tev->point;
778 779 780 781 782
	char pr;
	char *p;
	int ret, i, argc;
	char **argv;

783 784
	pr_debug("Parsing kprobe_events: %s\n", cmd);
	argv = argv_split(cmd, &argc);
785 786 787 788 789 790 791 792 793
	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;
	}
794 795

	/* Scan event and group name. */
796
	ret = sscanf(argv[0], "%c:%a[^/ \t]/%a[^ \t]",
797 798
		     &pr, (float *)(void *)&tev->group,
		     (float *)(void *)&tev->event);
799 800 801 802 803
	if (ret != 3) {
		semantic_error("Failed to parse event name: %s\n", argv[0]);
		ret = -EINVAL;
		goto out;
	}
804
	pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr);
805

806
	tp->retprobe = (pr == 'r');
807 808

	/* Scan function name and offset */
809 810
	ret = sscanf(argv[1], "%a[^+]+%lu", (float *)(void *)&tp->symbol,
		     &tp->offset);
811
	if (ret == 1)
812
		tp->offset = 0;
813

814
	tev->nargs = argc - 2;
815 816 817 818 819
	tev->args = zalloc(sizeof(struct kprobe_trace_arg) * tev->nargs);
	if (tev->args == NULL) {
		ret = -ENOMEM;
		goto out;
	}
820
	for (i = 0; i < tev->nargs; i++) {
821 822
		p = strchr(argv[i + 2], '=');
		if (p)	/* We don't need which register is assigned. */
823 824 825
			*p++ = '\0';
		else
			p = argv[i + 2];
826
		tev->args[i].name = strdup(argv[i + 2]);
827
		/* TODO: parse regs and offset */
828 829 830 831 832
		tev->args[i].value = strdup(p);
		if (tev->args[i].name == NULL || tev->args[i].value == NULL) {
			ret = -ENOMEM;
			goto out;
		}
833
	}
834 835
	ret = 0;
out:
836
	argv_free(argv);
837
	return ret;
838 839
}

840 841 842 843 844 845 846
/* 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;

847 848 849 850
	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);
851 852 853 854 855 856
	if (ret <= 0)
		goto error;
	tmp += ret;
	len -= ret;

	while (field) {
857 858 859 860 861
		if (field->name[0] == '[')
			ret = e_snprintf(tmp, len, "%s", field->name);
		else
			ret = e_snprintf(tmp, len, "%s%s",
					 field->ref ? "->" : ".", field->name);
862 863 864 865 866 867
		if (ret <= 0)
			goto error;
		tmp += ret;
		len -= ret;
		field = field->next;
	}
868 869 870 871 872 873 874 875 876

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

877 878
	return tmp - buf;
error:
879 880 881
	pr_debug("Failed to synthesize perf probe argument: %s",
		 strerror(-ret));
	return ret;
882 883
}

884 885
/* Compose only probe point (not argument) */
static char *synthesize_perf_probe_point(struct perf_probe_point *pp)
886
{
887 888 889
	char *buf, *tmp;
	char offs[32] = "", line[32] = "", file[32] = "";
	int ret, len;
890

891 892 893 894 895
	buf = zalloc(MAX_CMDLEN);
	if (buf == NULL) {
		ret = -ENOMEM;
		goto error;
	}
896
	if (pp->offset) {
897
		ret = e_snprintf(offs, 32, "+%lu", pp->offset);
898 899 900 901
		if (ret <= 0)
			goto error;
	}
	if (pp->line) {
902 903 904 905 906
		ret = e_snprintf(line, 32, ":%d", pp->line);
		if (ret <= 0)
			goto error;
	}
	if (pp->file) {
907
		len = strlen(pp->file) - 31;
908 909 910 911
		if (len < 0)
			len = 0;
		tmp = strchr(pp->file + len, '/');
		if (!tmp)
912
			tmp = pp->file + len;
913
		ret = e_snprintf(file, 32, "@%s", tmp + 1);
914 915 916 917 918
		if (ret <= 0)
			goto error;
	}

	if (pp->function)
919 920 921
		ret = e_snprintf(buf, MAX_CMDLEN, "%s%s%s%s%s", pp->function,
				 offs, pp->retprobe ? "%return" : "", line,
				 file);
922
	else
923
		ret = e_snprintf(buf, MAX_CMDLEN, "%s%s", file, line);
924 925 926 927
	if (ret <= 0)
		goto error;

	return buf;
928
error:
929 930
	pr_debug("Failed to synthesize perf probe point: %s",
		 strerror(-ret));
931 932
	if (buf)
		free(buf);
933
	return NULL;
934 935
}

936 937
#if 0
char *synthesize_perf_probe_command(struct perf_probe_event *pev)
938 939 940 941
{
	char *buf;
	int i, len, ret;

942 943 944
	buf = synthesize_perf_probe_point(&pev->point);
	if (!buf)
		return NULL;
945

946 947
	len = strlen(buf);
	for (i = 0; i < pev->nargs; i++) {
948
		ret = e_snprintf(&buf[len], MAX_CMDLEN - len, " %s",
949 950 951 952 953
				 pev->args[i].name);
		if (ret <= 0) {
			free(buf);
			return NULL;
		}
954 955 956
		len += ret;
	}

957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981
	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;
982 983 984

}

985 986
static int synthesize_kprobe_trace_arg(struct kprobe_trace_arg *arg,
				       char *buf, size_t buflen)
987
{
988
	struct kprobe_trace_arg_ref *ref = arg->ref;
989 990 991 992 993 994 995 996 997 998 999 1000 1001
	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;

1002 1003 1004 1005
	/* Special case: @XXX */
	if (arg->value[0] == '@' && arg->ref)
			ref = ref->next;

1006
	/* Dereferencing arguments */
1007 1008
	if (ref) {
		depth = __synthesize_kprobe_trace_arg_ref(ref, &buf,
1009 1010 1011 1012 1013 1014
							  &buflen, 1);
		if (depth < 0)
			return depth;
	}

	/* Print argument value */
1015 1016 1017 1018 1019
	if (arg->value[0] == '@' && arg->ref)
		ret = e_snprintf(buf, buflen, "%s%+ld", arg->value,
				 arg->ref->offset);
	else
		ret = e_snprintf(buf, buflen, "%s", arg->value);
1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032
	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;
	}
1033 1034 1035 1036 1037 1038 1039
	/* Print argument type */
	if (arg->type) {
		ret = e_snprintf(buf, buflen, ":%s", arg->type);
		if (ret <= 0)
			return ret;
		buf += ret;
	}
1040 1041 1042 1043 1044 1045 1046

	return buf - tmp;
}

char *synthesize_kprobe_trace_command(struct kprobe_trace_event *tev)
{
	struct kprobe_trace_point *tp = &tev->point;
1047 1048 1049
	char *buf;
	int i, len, ret;

1050 1051 1052 1053
	buf = zalloc(MAX_CMDLEN);
	if (buf == NULL)
		return NULL;

1054 1055 1056 1057 1058
	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)
1059 1060
		goto error;

1061 1062 1063
	for (i = 0; i < tev->nargs; i++) {
		ret = synthesize_kprobe_trace_arg(&tev->args[i], buf + len,
						  MAX_CMDLEN - len);
1064
		if (ret <= 0)
1065 1066 1067 1068
			goto error;
		len += ret;
	}

1069
	return buf;
1070
error:
1071 1072 1073
	free(buf);
	return NULL;
}
1074

1075 1076
int convert_to_perf_probe_event(struct kprobe_trace_event *tev,
				struct perf_probe_event *pev)
1077
{
1078
	char buf[64] = "";
1079
	int i, ret;
1080

1081
	/* Convert event/group name */
1082 1083 1084 1085
	pev->event = strdup(tev->event);
	pev->group = strdup(tev->group);
	if (pev->event == NULL || pev->group == NULL)
		return -ENOMEM;
1086

1087
	/* Convert trace_point to probe_point */
1088 1089 1090
	ret = convert_to_perf_probe_point(&tev->point, &pev->point);
	if (ret < 0)
		return ret;
1091

1092 1093
	/* Convert trace_arg to probe_arg */
	pev->nargs = tev->nargs;
1094 1095 1096
	pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
	if (pev->args == NULL)
		return -ENOMEM;
1097
	for (i = 0; i < tev->nargs && ret >= 0; i++) {
1098
		if (tev->args[i].name)
1099
			pev->args[i].name = strdup(tev->args[i].name);
1100
		else {
1101 1102
			ret = synthesize_kprobe_trace_arg(&tev->args[i],
							  buf, 64);
1103
			pev->args[i].name = strdup(buf);
1104
		}
1105 1106 1107
		if (pev->args[i].name == NULL && ret >= 0)
			ret = -ENOMEM;
	}
1108 1109 1110 1111 1112

	if (ret < 0)
		clear_perf_probe_event(pev);

	return ret;
1113 1114 1115 1116 1117
}

void clear_perf_probe_event(struct perf_probe_event *pev)
{
	struct perf_probe_point *pp = &pev->point;
1118
	struct perf_probe_arg_field *field, *next;
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130
	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);
1131
	for (i = 0; i < pev->nargs; i++) {
1132 1133
		if (pev->args[i].name)
			free(pev->args[i].name);
1134 1135
		if (pev->args[i].var)
			free(pev->args[i].var);
1136 1137
		if (pev->args[i].type)
			free(pev->args[i].type);
1138 1139 1140 1141 1142 1143 1144 1145 1146
		field = pev->args[i].field;
		while (field) {
			next = field->next;
			if (field->name)
				free(field->name);
			free(field);
			field = next;
		}
	}
1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167
	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);
1168 1169
		if (tev->args[i].type)
			free(tev->args[i].type);
1170 1171 1172 1173 1174 1175 1176 1177 1178 1179
		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));
1180 1181
}

1182
static int open_kprobe_events(bool readwrite)
1183 1184
{
	char buf[PATH_MAX];
1185
	const char *__debugfs;
1186 1187
	int ret;

1188 1189 1190 1191 1192 1193 1194
	__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);
1195
	if (ret >= 0) {
1196
		pr_debug("Opening %s write=%d\n", buf, readwrite);
1197 1198 1199 1200 1201
		if (readwrite && !probe_event_dry_run)
			ret = open(buf, O_RDWR, O_APPEND);
		else
			ret = open(buf, O_RDONLY, 0);
	}
1202

1203 1204
	if (ret < 0) {
		if (errno == ENOENT)
1205 1206
			pr_warning("kprobe_events file does not exist - please"
				 " rebuild kernel with CONFIG_KPROBE_EVENT.\n");
1207
		else
1208 1209
			pr_warning("Failed to open kprobe_events file: %s\n",
				   strerror(errno));
1210 1211 1212 1213 1214
	}
	return ret;
}

/* Get raw string list of current kprobe_events */
1215
static struct strlist *get_kprobe_trace_command_rawlist(int fd)
1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234
{
	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);
1235 1236 1237 1238 1239
		if (ret < 0) {
			pr_debug("strlist__add failed: %s\n", strerror(-ret));
			strlist__delete(sl);
			return NULL;
		}
1240 1241 1242 1243 1244 1245
	}
	fclose(fp);

	return sl;
}

1246
/* Show an event */
1247
static int show_perf_probe_event(struct perf_probe_event *pev)
1248
{
1249
	int i, ret;
1250
	char buf[128];
1251
	char *place;
1252

1253 1254
	/* Synthesize only event probe point */
	place = synthesize_perf_probe_point(&pev->point);
1255 1256
	if (!place)
		return -EINVAL;
1257 1258

	ret = e_snprintf(buf, 128, "%s:%s", pev->group, pev->event);
1259
	if (ret < 0)
1260 1261
		return ret;

1262
	printf("  %-20s (on %s", buf, place);
1263

1264
	if (pev->nargs > 0) {
1265
		printf(" with");
1266
		for (i = 0; i < pev->nargs; i++) {
1267 1268 1269 1270
			ret = synthesize_perf_probe_arg(&pev->args[i],
							buf, 128);
			if (ret < 0)
				break;
1271 1272
			printf(" %s", buf);
		}
1273 1274
	}
	printf(")\n");
1275
	free(place);
1276
	return ret;
1277 1278
}

1279
/* List up current perf-probe events */
1280
int show_perf_probe_events(void)
1281
{
1282
	int fd, ret;
1283 1284
	struct kprobe_trace_event tev;
	struct perf_probe_event pev;
1285 1286 1287
	struct strlist *rawlist;
	struct str_node *ent;

1288
	setup_pager();
1289 1290 1291
	ret = init_vmlinux();
	if (ret < 0)
		return ret;
1292 1293 1294

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

1296
	fd = open_kprobe_events(false);
1297 1298 1299
	if (fd < 0)
		return fd;

1300
	rawlist = get_kprobe_trace_command_rawlist(fd);
1301
	close(fd);
1302 1303
	if (!rawlist)
		return -ENOENT;
1304

1305
	strlist__for_each(ent, rawlist) {
1306 1307 1308 1309 1310 1311
		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);
		}
1312 1313
		clear_perf_probe_event(&pev);
		clear_kprobe_trace_event(&tev);
1314 1315
		if (ret < 0)
			break;
1316 1317
	}
	strlist__delete(rawlist);
1318 1319

	return ret;
1320 1321
}

1322
/* Get current perf-probe event names */
1323
static struct strlist *get_kprobe_trace_event_names(int fd, bool include_group)
1324
{
1325
	char buf[128];
1326 1327
	struct strlist *sl, *rawlist;
	struct str_node *ent;
1328
	struct kprobe_trace_event tev;
1329
	int ret = 0;
1330

1331
	memset(&tev, 0, sizeof(tev));
1332

1333
	rawlist = get_kprobe_trace_command_rawlist(fd);
1334
	sl = strlist__new(true, NULL);
1335
	strlist__for_each(ent, rawlist) {
1336 1337 1338
		ret = parse_kprobe_trace_command(ent->s, &tev);
		if (ret < 0)
			break;
1339
		if (include_group) {
1340 1341 1342 1343
			ret = e_snprintf(buf, 128, "%s:%s", tev.group,
					tev.event);
			if (ret >= 0)
				ret = strlist__add(sl, buf);
1344
		} else
1345
			ret = strlist__add(sl, tev.event);
1346
		clear_kprobe_trace_event(&tev);
1347 1348
		if (ret < 0)
			break;
1349 1350 1351
	}
	strlist__delete(rawlist);

1352 1353 1354 1355
	if (ret < 0) {
		strlist__delete(sl);
		return NULL;
	}
1356 1357 1358
	return sl;
}

1359
static int write_kprobe_trace_event(int fd, struct kprobe_trace_event *tev)
1360
{
1361
	int ret = 0;
1362
	char *buf = synthesize_kprobe_trace_command(tev);
1363

1364 1365 1366 1367 1368
	if (!buf) {
		pr_debug("Failed to synthesize kprobe trace event.\n");
		return -EINVAL;
	}

1369
	pr_debug("Writing event: %s\n", buf);
1370 1371 1372
	if (!probe_event_dry_run) {
		ret = write(fd, buf, strlen(buf));
		if (ret <= 0)
1373 1374
			pr_warning("Failed to write event: %s\n",
				   strerror(errno));
1375
	}
1376
	free(buf);
1377
	return ret;
1378 1379
}

1380 1381
static int get_new_event_name(char *buf, size_t len, const char *base,
			      struct strlist *namelist, bool allow_suffix)
1382 1383
{
	int i, ret;
1384 1385 1386

	/* Try no suffix */
	ret = e_snprintf(buf, len, "%s", base);
1387 1388 1389 1390
	if (ret < 0) {
		pr_debug("snprintf() failed: %s\n", strerror(-ret));
		return ret;
	}
1391
	if (!strlist__has_entry(namelist, buf))
1392
		return 0;
1393

1394 1395 1396
	if (!allow_suffix) {
		pr_warning("Error: event \"%s\" already exists. "
			   "(Use -f to force duplicates.)\n", base);
1397
		return -EEXIST;
1398 1399
	}

1400 1401
	/* Try to add suffix */
	for (i = 1; i < MAX_EVENT_INDEX; i++) {
1402
		ret = e_snprintf(buf, len, "%s_%d", base, i);
1403 1404 1405 1406
		if (ret < 0) {
			pr_debug("snprintf() failed: %s\n", strerror(-ret));
			return ret;
		}
1407 1408 1409
		if (!strlist__has_entry(namelist, buf))
			break;
	}
1410 1411 1412 1413 1414 1415
	if (i == MAX_EVENT_INDEX) {
		pr_warning("Too many events are on the same function.\n");
		ret = -ERANGE;
	}

	return ret;
1416 1417
}

1418 1419 1420
static int __add_kprobe_trace_events(struct perf_probe_event *pev,
				     struct kprobe_trace_event *tevs,
				     int ntevs, bool allow_suffix)
1421
{
1422
	int i, fd, ret;
1423
	struct kprobe_trace_event *tev = NULL;
1424 1425
	char buf[64];
	const char *event, *group;
1426
	struct strlist *namelist;
1427

1428
	fd = open_kprobe_events(true);
1429 1430
	if (fd < 0)
		return fd;
1431
	/* Get current event names */
1432
	namelist = get_kprobe_trace_event_names(fd, false);
1433 1434 1435 1436
	if (!namelist) {
		pr_debug("Failed to get current event list.\n");
		return -EIO;
	}
1437

1438
	ret = 0;
1439
	printf("Add new event%s\n", (ntevs > 1) ? "s:" : ":");
1440
	for (i = 0; i < ntevs; i++) {
1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454
		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 */
1455 1456 1457 1458
		ret = get_new_event_name(buf, 64, event,
					 namelist, allow_suffix);
		if (ret < 0)
			break;
1459 1460
		event = buf;

1461 1462 1463 1464 1465 1466
		tev->event = strdup(event);
		tev->group = strdup(group);
		if (tev->event == NULL || tev->group == NULL) {
			ret = -ENOMEM;
			break;
		}
1467 1468 1469
		ret = write_kprobe_trace_event(fd, tev);
		if (ret < 0)
			break;
1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489
		/* 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;
1490
	}
1491 1492 1493 1494 1495 1496 1497

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

1499
	strlist__delete(namelist);
1500
	close(fd);
1501
	return ret;
1502
}
1503

1504
static int convert_to_kprobe_trace_events(struct perf_probe_event *pev,
1505 1506
					  struct kprobe_trace_event **tevs,
					  int max_tevs)
1507 1508
{
	struct symbol *sym;
1509
	int ret = 0, i;
1510 1511
	struct kprobe_trace_event *tev;

1512
	/* Convert perf_probe_event with debuginfo */
1513
	ret = try_to_find_kprobe_trace_events(pev, tevs, max_tevs);
1514 1515
	if (ret != 0)
		return ret;
1516

1517
	/* Allocate trace event buffer */
1518 1519 1520
	tev = *tevs = zalloc(sizeof(struct kprobe_trace_event));
	if (tev == NULL)
		return -ENOMEM;
1521 1522

	/* Copy parameters */
1523 1524 1525 1526 1527
	tev->point.symbol = strdup(pev->point.function);
	if (tev->point.symbol == NULL) {
		ret = -ENOMEM;
		goto error;
	}
1528 1529 1530
	tev->point.offset = pev->point.offset;
	tev->nargs = pev->nargs;
	if (tev->nargs) {
1531 1532 1533
		tev->args = zalloc(sizeof(struct kprobe_trace_arg)
				   * tev->nargs);
		if (tev->args == NULL) {
1534 1535
			ret = -ENOMEM;
			goto error;
1536
		}
1537
		for (i = 0; i < tev->nargs; i++) {
1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556
			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;
				}
			}
1557
		}
1558 1559 1560
	}

	/* Currently just checking function name from symbol map */
1561
	sym = map__find_symbol_by_name(machine.vmlinux_maps[MAP__FUNCTION],
1562
				       tev->point.symbol, NULL);
1563 1564 1565
	if (!sym) {
		pr_warning("Kernel symbol \'%s\' not found.\n",
			   tev->point.symbol);
1566 1567 1568
		ret = -ENOENT;
		goto error;
	}
1569

1570 1571 1572 1573 1574
	return 1;
error:
	clear_kprobe_trace_event(tev);
	free(tev);
	*tevs = NULL;
1575
	return ret;
1576 1577 1578 1579 1580 1581 1582 1583
}

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

1584
int add_perf_probe_events(struct perf_probe_event *pevs, int npevs,
1585
			  bool force_add, int max_tevs)
1586
{
1587
	int i, j, ret;
1588 1589
	struct __event_package *pkgs;

1590 1591 1592
	pkgs = zalloc(sizeof(struct __event_package) * npevs);
	if (pkgs == NULL)
		return -ENOMEM;
1593 1594

	/* Init vmlinux path */
1595 1596 1597
	ret = init_vmlinux();
	if (ret < 0)
		return ret;
1598 1599 1600 1601 1602

	/* Loop 1: convert all events */
	for (i = 0; i < npevs; i++) {
		pkgs[i].pev = &pevs[i];
		/* Convert with or without debuginfo */
1603
		ret  = convert_to_kprobe_trace_events(pkgs[i].pev,
1604
						      &pkgs[i].tevs, max_tevs);
1605 1606 1607
		if (ret < 0)
			goto end;
		pkgs[i].ntevs = ret;
1608 1609
	}

1610
	/* Loop 2: add all events */
1611 1612 1613 1614 1615
	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  */
1616
	for (i = 0; i < npevs; i++)
1617 1618 1619 1620
		for (j = 0; j < pkgs[i].ntevs; j++)
			clear_kprobe_trace_event(&pkgs[i].tevs[j]);

	return ret;
1621 1622
}

1623
static int __del_trace_kprobe_event(int fd, struct str_node *ent)
1624 1625 1626
{
	char *p;
	char buf[128];
1627
	int ret;
1628 1629

	/* Convert from perf-probe event to trace-kprobe event */
1630 1631 1632 1633
	ret = e_snprintf(buf, 128, "-:%s", ent->s);
	if (ret < 0)
		goto error;

1634
	p = strchr(buf + 2, ':');
1635 1636 1637 1638 1639 1640
	if (!p) {
		pr_debug("Internal error: %s should have ':' but not.\n",
			 ent->s);
		ret = -ENOTSUP;
		goto error;
	}
1641 1642
	*p = '/';

1643 1644
	pr_debug("Writing event: %s\n", buf);
	ret = write(fd, buf, strlen(buf));
1645 1646 1647
	if (ret < 0)
		goto error;

1648
	printf("Remove event: %s\n", ent->s);
1649 1650 1651 1652
	return 0;
error:
	pr_warning("Failed to delete event: %s\n", strerror(-ret));
	return ret;
1653 1654
}

1655 1656
static int del_trace_kprobe_event(int fd, const char *group,
				  const char *event, struct strlist *namelist)
1657 1658
{
	char buf[128];
1659
	struct str_node *ent, *n;
1660
	int found = 0, ret = 0;
1661

1662 1663 1664 1665 1666
	ret = e_snprintf(buf, 128, "%s:%s", group, event);
	if (ret < 0) {
		pr_err("Failed to copy event.");
		return ret;
	}
1667

1668 1669 1670 1671
	if (strpbrk(buf, "*?")) { /* Glob-exp */
		strlist__for_each_safe(ent, n, namelist)
			if (strglobmatch(ent->s, buf)) {
				found++;
1672 1673 1674
				ret = __del_trace_kprobe_event(fd, ent);
				if (ret < 0)
					break;
1675 1676 1677 1678 1679 1680
				strlist__remove(namelist, ent);
			}
	} else {
		ent = strlist__find(namelist, buf);
		if (ent) {
			found++;
1681 1682 1683
			ret = __del_trace_kprobe_event(fd, ent);
			if (ret >= 0)
				strlist__remove(namelist, ent);
1684 1685
		}
	}
1686 1687 1688 1689
	if (found == 0 && ret >= 0)
		pr_info("Info: Event \"%s\" does not exist.\n", buf);

	return ret;
1690 1691
}

1692
int del_perf_probe_events(struct strlist *dellist)
1693
{
1694
	int fd, ret = 0;
1695 1696 1697 1698 1699
	const char *group, *event;
	char *p, *str;
	struct str_node *ent;
	struct strlist *namelist;

1700
	fd = open_kprobe_events(true);
1701 1702 1703
	if (fd < 0)
		return fd;

1704
	/* Get current event names */
1705
	namelist = get_kprobe_trace_event_names(fd, true);
1706 1707
	if (namelist == NULL)
		return -EINVAL;
1708

1709
	strlist__for_each(ent, dellist) {
1710 1711 1712 1713 1714
		str = strdup(ent->s);
		if (str == NULL) {
			ret = -ENOMEM;
			break;
		}
1715
		pr_debug("Parsing: %s\n", str);
1716 1717 1718 1719 1720 1721
		p = strchr(str, ':');
		if (p) {
			group = str;
			*p = '\0';
			event = p + 1;
		} else {
1722
			group = "*";
1723 1724
			event = str;
		}
1725
		pr_debug("Group: %s, Event: %s\n", group, event);
1726
		ret = del_trace_kprobe_event(fd, group, event, namelist);
1727
		free(str);
1728 1729
		if (ret < 0)
			break;
1730 1731 1732
	}
	strlist__delete(namelist);
	close(fd);
1733 1734

	return ret;
1735 1736
}