probe-event.c 53.6 KB
Newer Older
1
/*
2
 * probe-event.c : perf-probe definition to probe_events format converter
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
 *
 * 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.
 *
 */

#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>
31 32
#include <stdarg.h>
#include <limits.h>
33
#include <elf.h>
34

35
#include "util.h"
36
#include "event.h"
37
#include "strlist.h"
38
#include "debug.h"
39
#include "cache.h"
40
#include "color.h"
41 42
#include "symbol.h"
#include "thread.h"
43
#include <api/fs/debugfs.h>
44
#include "trace-event.h"	/* For __maybe_unused */
45
#include "probe-event.h"
46
#include "probe-finder.h"
47
#include "session.h"
48 49 50 51

#define MAX_CMDLEN 256
#define PERFPROBE_GROUP "probe"

52 53
bool probe_event_dry_run;	/* Dry run flag */

54
#define semantic_error(msg ...) pr_err("Semantic error :" msg)
55

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

60 61 62 63 64 65 66 67 68 69 70 71
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;
}

72
static char *synthesize_perf_probe_point(struct perf_probe_point *pp);
73 74
static int convert_name_to_addr(struct perf_probe_event *pev,
				const char *exec);
75
static void clear_probe_trace_event(struct probe_trace_event *tev);
76
static struct machine *host_machine;
77

78
/* Initialize symbol maps and path of vmlinux/modules */
79
static int init_symbol_maps(bool user_only)
80
{
81 82
	int ret;

83
	symbol_conf.sort_by_name = true;
84 85 86 87 88
	ret = symbol__init();
	if (ret < 0) {
		pr_debug("Failed to init symbol map.\n");
		goto out;
	}
89

90 91
	if (host_machine || user_only)	/* already initialized */
		return 0;
92

93 94 95 96 97 98 99 100
	if (symbol_conf.vmlinux_name)
		pr_debug("Use vmlinux: %s\n", symbol_conf.vmlinux_name);

	host_machine = machine__new_host();
	if (!host_machine) {
		pr_debug("machine__new_host() failed.\n");
		symbol__exit();
		ret = -1;
101
	}
102 103 104 105
out:
	if (ret < 0)
		pr_warning("Failed to init vmlinux path.\n");
	return ret;
106 107
}

108 109 110 111 112 113 114 115 116
static void exit_symbol_maps(void)
{
	if (host_machine) {
		machine__delete(host_machine);
		host_machine = NULL;
	}
	symbol__exit();
}

117 118 119
static struct symbol *__find_kernel_function_by_name(const char *name,
						     struct map **mapp)
{
120
	return machine__find_kernel_function_by_name(host_machine, name, mapp,
121 122 123
						     NULL);
}

124 125 126
static struct map *kernel_get_module_map(const char *module)
{
	struct rb_node *nd;
127
	struct map_groups *grp = &host_machine->kmaps;
128

129 130
	/* A file path -- this is an offline module */
	if (module && strchr(module, '/'))
131
		return machine__new_module(host_machine, 0, module);
132

133 134 135 136 137 138 139 140 141 142 143 144 145 146
	if (!module)
		module = "kernel";

	for (nd = rb_first(&grp->maps[MAP__FUNCTION]); nd; nd = rb_next(nd)) {
		struct map *pos = rb_entry(nd, struct map, rb_node);
		if (strncmp(pos->dso->short_name + 1, module,
			    pos->dso->short_name_len - 2) == 0) {
			return pos;
		}
	}
	return NULL;
}

static struct dso *kernel_get_module_dso(const char *module)
147 148
{
	struct dso *dso;
149 150
	struct map *map;
	const char *vmlinux_name;
151 152

	if (module) {
153
		list_for_each_entry(dso, &host_machine->kernel_dsos, node) {
154 155 156 157 158 159
			if (strncmp(dso->short_name + 1, module,
				    dso->short_name_len - 2) == 0)
				goto found;
		}
		pr_debug("Failed to find module %s.\n", module);
		return NULL;
160 161
	}

162
	map = host_machine->vmlinux_maps[MAP__FUNCTION];
163 164 165 166
	dso = map->dso;

	vmlinux_name = symbol_conf.vmlinux_name;
	if (vmlinux_name) {
167
		if (dso__load_vmlinux(dso, map, vmlinux_name, false, NULL) <= 0)
168
			return NULL;
169
	} else {
170
		if (dso__load_vmlinux_path(dso, map, NULL) <= 0) {
171 172 173 174 175
			pr_debug("Failed to load kernel map.\n");
			return NULL;
		}
	}
found:
176 177 178 179 180 181 182
	return dso;
}

const char *kernel_get_module_path(const char *module)
{
	struct dso *dso = kernel_get_module_dso(module);
	return (dso) ? dso->long_name : NULL;
183 184
}

185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
static int convert_exec_to_group(const char *exec, char **result)
{
	char *ptr1, *ptr2, *exec_copy;
	char buf[64];
	int ret;

	exec_copy = strdup(exec);
	if (!exec_copy)
		return -ENOMEM;

	ptr1 = basename(exec_copy);
	if (!ptr1) {
		ret = -EINVAL;
		goto out;
	}

	ptr2 = strpbrk(ptr1, "-._");
	if (ptr2)
		*ptr2 = '\0';
	ret = e_snprintf(buf, 64, "%s_%s", PERFPROBE_GROUP, ptr1);
	if (ret < 0)
		goto out;

	*result = strdup(buf);
	ret = *result ? 0 : -ENOMEM;

out:
	free(exec_copy);
	return ret;
}

216 217 218 219 220 221 222 223 224 225 226 227 228 229
static int convert_to_perf_probe_point(struct probe_trace_point *tp,
					struct perf_probe_point *pp)
{
	pp->function = strdup(tp->symbol);

	if (pp->function == NULL)
		return -ENOMEM;

	pp->offset = tp->offset;
	pp->retprobe = tp->retprobe;

	return 0;
}

230
#ifdef HAVE_DWARF_SUPPORT
231 232
/* Open new debuginfo of given module */
static struct debuginfo *open_debuginfo(const char *module)
233
{
234
	const char *path;
235

236 237 238 239 240 241 242 243 244 245 246
	/* A file path -- this is an offline module */
	if (module && strchr(module, '/'))
		path = module;
	else {
		path = kernel_get_module_path(module);

		if (!path) {
			pr_err("Failed to find path of %s module.\n",
			       module ?: "kernel");
			return NULL;
		}
247
	}
248
	return debuginfo__new(path);
249
}
250

251 252 253 254 255
/*
 * Convert trace point to probe point with debuginfo
 * Currently only handles kprobes.
 */
static int kprobe_convert_to_perf_probe(struct probe_trace_point *tp,
256
					struct perf_probe_point *pp)
257 258
{
	struct symbol *sym;
259 260 261
	struct map *map;
	u64 addr;
	int ret = -ENOENT;
262
	struct debuginfo *dinfo;
263

264
	sym = __find_kernel_function_by_name(tp->symbol, &map);
265
	if (sym) {
266
		addr = map->unmap_ip(map, sym->start + tp->offset);
267
		pr_debug("try to find %s+%ld@%" PRIx64 "\n", tp->symbol,
268
			 tp->offset, addr);
269 270 271 272 273 274 275 276 277 278 279

		dinfo = debuginfo__new_online_kernel(addr);
		if (dinfo) {
			ret = debuginfo__find_probe_point(dinfo,
						 (unsigned long)addr, pp);
			debuginfo__delete(dinfo);
		} else {
			pr_debug("Failed to open debuginfo at 0x%" PRIx64 "\n",
				 addr);
			ret = -ENOENT;
		}
280 281
	}
	if (ret <= 0) {
282 283
		pr_debug("Failed to find corresponding probes from "
			 "debuginfo. Use kprobe event information.\n");
284
		return convert_to_perf_probe_point(tp, pp);
285 286
	}
	pp->retprobe = tp->retprobe;
287 288

	return 0;
289 290
}

291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
static int get_text_start_address(const char *exec, unsigned long *address)
{
	Elf *elf;
	GElf_Ehdr ehdr;
	GElf_Shdr shdr;
	int fd, ret = -ENOENT;

	fd = open(exec, O_RDONLY);
	if (fd < 0)
		return -errno;

	elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
	if (elf == NULL)
		return -EINVAL;

	if (gelf_getehdr(elf, &ehdr) == NULL)
		goto out;

	if (!elf_section_by_name(elf, &ehdr, &shdr, ".text", NULL))
		goto out;

	*address = shdr.sh_addr - shdr.sh_offset;
	ret = 0;
out:
	elf_end(elf);
	return ret;
}

319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
static int add_exec_to_probe_trace_events(struct probe_trace_event *tevs,
					  int ntevs, const char *exec)
{
	int i, ret = 0;
	unsigned long offset, stext = 0;
	char buf[32];

	if (!exec)
		return 0;

	ret = get_text_start_address(exec, &stext);
	if (ret < 0)
		return ret;

	for (i = 0; i < ntevs && ret >= 0; i++) {
334
		/* point.address is the addres of point.symbol + point.offset */
335 336
		offset = tevs[i].point.address - stext;
		tevs[i].point.offset = 0;
337
		zfree(&tevs[i].point.symbol);
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
		ret = e_snprintf(buf, 32, "0x%lx", offset);
		if (ret < 0)
			break;
		tevs[i].point.module = strdup(exec);
		tevs[i].point.symbol = strdup(buf);
		if (!tevs[i].point.symbol || !tevs[i].point.module) {
			ret = -ENOMEM;
			break;
		}
		tevs[i].uprobes = true;
	}

	return ret;
}

353 354 355
static int add_module_to_probe_trace_events(struct probe_trace_event *tevs,
					    int ntevs, const char *module)
{
356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
	int i, ret = 0;
	char *tmp;

	if (!module)
		return 0;

	tmp = strrchr(module, '/');
	if (tmp) {
		/* This is a module path -- get the module name */
		module = strdup(tmp + 1);
		if (!module)
			return -ENOMEM;
		tmp = strchr(module, '.');
		if (tmp)
			*tmp = '\0';
		tmp = (char *)module;	/* For free() */
	}

374 375
	for (i = 0; i < ntevs; i++) {
		tevs[i].point.module = strdup(module);
376 377 378 379
		if (!tevs[i].point.module) {
			ret = -ENOMEM;
			break;
		}
380
	}
381

382
	free(tmp);
383
	return ret;
384 385
}

386 387 388 389 390 391 392 393
static void clear_probe_trace_events(struct probe_trace_event *tevs, int ntevs)
{
	int i;

	for (i = 0; i < ntevs; i++)
		clear_probe_trace_event(tevs + i);
}

394
/* Try to find perf_probe_event with debuginfo */
395
static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
396
					  struct probe_trace_event **tevs,
397
					  int max_tevs, const char *target)
398 399
{
	bool need_dwarf = perf_probe_event_need_dwarf(pev);
400
	struct debuginfo *dinfo;
401
	int ntevs, ret = 0;
402

403 404
	dinfo = open_debuginfo(target);

405
	if (!dinfo) {
406 407
		if (need_dwarf) {
			pr_warning("Failed to open debuginfo file.\n");
408
			return -ENOENT;
409
		}
410
		pr_debug("Could not open debuginfo. Try to use symbols.\n");
411 412 413
		return 0;
	}

414 415 416 417
	/* Searching trace events corresponding to a probe event */
	ntevs = debuginfo__find_trace_events(dinfo, pev, tevs, max_tevs);

	debuginfo__delete(dinfo);
418

419
	if (ntevs > 0) {	/* Succeeded to find trace events */
420
		pr_debug("find %d probe_trace_events.\n", ntevs);
421 422 423 424 425 426 427 428
		if (target) {
			if (pev->uprobes)
				ret = add_exec_to_probe_trace_events(*tevs,
						 ntevs, target);
			else
				ret = add_module_to_probe_trace_events(*tevs,
						 ntevs, target);
		}
429 430 431 432
		if (ret < 0) {
			clear_probe_trace_events(*tevs, ntevs);
			zfree(tevs);
		}
433
		return ret < 0 ? ret : ntevs;
434
	}
435

436 437 438 439 440 441
	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 */
442 443 444 445 446
	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) {
M
Masami Hiramatsu 已提交
447
			pr_debug("Trying to use symbols.\n");
448 449
			return 0;
		}
450
	}
451
	return ntevs;
452 453
}

454 455 456 457 458 459
/*
 * 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.
 */
460 461
static int get_real_path(const char *raw_path, const char *comp_dir,
			 char **new_path)
462
{
463 464 465 466 467 468 469 470 471 472 473 474 475
	const char *prefix = symbol_conf.source_prefix;

	if (!prefix) {
		if (raw_path[0] != '/' && comp_dir)
			/* If not an absolute path, try to use comp_dir */
			prefix = comp_dir;
		else {
			if (access(raw_path, R_OK) == 0) {
				*new_path = strdup(raw_path);
				return 0;
			} else
				return -errno;
		}
476 477
	}

478
	*new_path = malloc((strlen(prefix) + strlen(raw_path) + 2));
479 480 481 482
	if (!*new_path)
		return -ENOMEM;

	for (;;) {
483
		sprintf(*new_path, "%s/%s", prefix, raw_path);
484 485 486 487

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

488 489 490 491
		if (!symbol_conf.source_prefix)
			/* In case of searching comp_dir, don't retry */
			return -errno;

492 493 494 495 496 497 498
		switch (errno) {
		case ENAMETOOLONG:
		case ENOENT:
		case EROFS:
		case EFAULT:
			raw_path = strchr(++raw_path, '/');
			if (!raw_path) {
499
				zfree(new_path);
500 501 502 503 504
				return -ENOENT;
			}
			continue;

		default:
505
			zfree(new_path);
506 507 508 509 510
			return -errno;
		}
	}
}

511 512 513
#define LINEBUF_SIZE 256
#define NR_ADDITIONAL_LINES 2

514
static int __show_one_line(FILE *fp, int l, bool skip, bool show_num)
515 516
{
	char buf[LINEBUF_SIZE];
517 518
	const char *color = show_num ? "" : PERF_COLOR_BLUE;
	const char *prefix = NULL;
519

520
	do {
521 522
		if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
			goto error;
523 524 525 526 527
		if (skip)
			continue;
		if (!prefix) {
			prefix = show_num ? "%7d  " : "         ";
			color_fprintf(stdout, color, prefix, l);
528
		}
529 530 531
		color_fprintf(stdout, color, "%s", buf);

	} while (strchr(buf, '\n') == NULL);
532

533
	return 1;
534
error:
535
	if (ferror(fp)) {
536
		pr_warning("File read error: %s\n", strerror(errno));
537 538 539 540
		return -1;
	}
	return 0;
}
541

542 543 544 545 546 547 548 549
static int _show_one_line(FILE *fp, int l, bool skip, bool show_num)
{
	int rv = __show_one_line(fp, l, skip, show_num);
	if (rv == 0) {
		pr_warning("Source file is shorter than expected.\n");
		rv = -1;
	}
	return rv;
550 551
}

552 553 554 555 556
#define show_one_line_with_num(f,l)	_show_one_line(f,l,false,true)
#define show_one_line(f,l)		_show_one_line(f,l,false,false)
#define skip_one_line(f,l)		_show_one_line(f,l,true,false)
#define show_one_line_or_eof(f,l)	__show_one_line(f,l,false,false)

557 558 559 560
/*
 * Show line-range always requires debuginfo to find source file and
 * line number.
 */
561
static int __show_line_range(struct line_range *lr, const char *module)
562
{
563
	int l = 1;
564
	struct line_node *ln;
565
	struct debuginfo *dinfo;
566
	FILE *fp;
567
	int ret;
568
	char *tmp;
569 570

	/* Search a line range */
571 572
	dinfo = open_debuginfo(module);
	if (!dinfo) {
573
		pr_warning("Failed to open debuginfo file.\n");
574
		return -ENOENT;
575 576
	}

577 578
	ret = debuginfo__find_line_range(dinfo, lr);
	debuginfo__delete(dinfo);
579 580 581 582 583 584 585
	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;
	}
586

587 588
	/* Convert source file path */
	tmp = lr->path;
589
	ret = get_real_path(tmp, lr->comp_dir, &lr->path);
590 591 592 593 594 595
	free(tmp);	/* Free old path */
	if (ret < 0) {
		pr_warning("Failed to find source file. (%d)\n", ret);
		return ret;
	}

596 597 598
	setup_pager();

	if (lr->function)
599
		fprintf(stdout, "<%s@%s:%d>\n", lr->function, lr->path,
600 601
			lr->start - lr->offset);
	else
602
		fprintf(stdout, "<%s:%d>\n", lr->path, lr->start);
603 604

	fp = fopen(lr->path, "r");
605 606 607 608 609
	if (fp == NULL) {
		pr_warning("Failed to open %s: %s\n", lr->path,
			   strerror(errno));
		return -errno;
	}
610
	/* Skip to starting line number */
611
	while (l < lr->start) {
612
		ret = skip_one_line(fp, l++);
613 614 615
		if (ret < 0)
			goto end;
	}
616 617

	list_for_each_entry(ln, &lr->line_list, list) {
618
		for (; ln->line > l; l++) {
619
			ret = show_one_line(fp, l - lr->offset);
620 621 622
			if (ret < 0)
				goto end;
		}
623
		ret = show_one_line_with_num(fp, l++ - lr->offset);
624 625
		if (ret < 0)
			goto end;
626 627 628 629
	}

	if (lr->end == INT_MAX)
		lr->end = l + NR_ADDITIONAL_LINES;
630 631 632
	while (l <= lr->end) {
		ret = show_one_line_or_eof(fp, l++ - lr->offset);
		if (ret <= 0)
633 634
			break;
	}
635
end:
636
	fclose(fp);
637
	return ret;
638 639
}

640 641 642 643 644 645 646 647 648 649 650 651 652
int show_line_range(struct line_range *lr, const char *module)
{
	int ret;

	ret = init_symbol_maps(false);
	if (ret < 0)
		return ret;
	ret = __show_line_range(lr, module);
	exit_symbol_maps();

	return ret;
}

653 654
static int show_available_vars_at(struct debuginfo *dinfo,
				  struct perf_probe_event *pev,
655 656
				  int max_vls, struct strfilter *_filter,
				  bool externs)
657 658
{
	char *buf;
659
	int ret, i, nvars;
660 661
	struct str_node *node;
	struct variable_list *vls = NULL, *vl;
662
	const char *var;
663 664 665 666 667 668

	buf = synthesize_perf_probe_point(&pev->point);
	if (!buf)
		return -EINVAL;
	pr_debug("Searching variables at %s\n", buf);

669 670
	ret = debuginfo__find_available_vars_at(dinfo, pev, &vls,
						max_vls, externs);
671 672 673 674 675 676 677 678 679 680 681 682 683 684
	if (ret <= 0) {
		pr_err("Failed to find variables at %s (%d)\n", buf, ret);
		goto end;
	}
	/* Some variables are found */
	fprintf(stdout, "Available variables at %s\n", buf);
	for (i = 0; i < ret; i++) {
		vl = &vls[i];
		/*
		 * A probe point might be converted to
		 * several trace points.
		 */
		fprintf(stdout, "\t@<%s+%lu>\n", vl->point.symbol,
			vl->point.offset);
685
		zfree(&vl->point.symbol);
686 687 688 689 690
		nvars = 0;
		if (vl->vars) {
			strlist__for_each(node, vl->vars) {
				var = strchr(node->s, '\t') + 1;
				if (strfilter__compare(_filter, var)) {
691
					fprintf(stdout, "\t\t%s\n", node->s);
692 693 694 695
					nvars++;
				}
			}
			strlist__delete(vl->vars);
696
		}
697 698 699 700 701
		if (nvars == 0)
			fprintf(stdout, "\t\t(No matched variables)\n");
	}
	free(vls);
end:
702 703 704 705 706 707
	free(buf);
	return ret;
}

/* Show available variables on given probe point */
int show_available_vars(struct perf_probe_event *pevs, int npevs,
708 709
			int max_vls, const char *module,
			struct strfilter *_filter, bool externs)
710
{
711 712
	int i, ret = 0;
	struct debuginfo *dinfo;
713

714
	ret = init_symbol_maps(false);
715 716 717
	if (ret < 0)
		return ret;

718 719 720
	dinfo = open_debuginfo(module);
	if (!dinfo) {
		pr_warning("Failed to open debuginfo file.\n");
721 722
		ret = -ENOENT;
		goto out;
723 724
	}

725 726
	setup_pager();

727 728
	for (i = 0; i < npevs && ret >= 0; i++)
		ret = show_available_vars_at(dinfo, &pevs[i], max_vls, _filter,
729
					     externs);
730 731

	debuginfo__delete(dinfo);
732 733
out:
	exit_symbol_maps();
734 735 736
	return ret;
}

737
#else	/* !HAVE_DWARF_SUPPORT */
738

739
static int kprobe_convert_to_perf_probe(struct probe_trace_point *tp,
740
					struct perf_probe_point *pp)
741
{
742 743 744 745 746 747 748
	struct symbol *sym;

	sym = __find_kernel_function_by_name(tp->symbol, NULL);
	if (!sym) {
		pr_err("Failed to find symbol %s in kernel.\n", tp->symbol);
		return -ENOENT;
	}
749

750
	return convert_to_perf_probe_point(tp, pp);
751 752
}

753
static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
754
				struct probe_trace_event **tevs __maybe_unused,
755 756
				int max_tevs __maybe_unused,
				const char *target __maybe_unused)
757
{
758 759 760 761
	if (perf_probe_event_need_dwarf(pev)) {
		pr_warning("Debuginfo-analysis is not supported.\n");
		return -ENOSYS;
	}
762

763 764 765
	return 0;
}

766 767
int show_line_range(struct line_range *lr __maybe_unused,
		    const char *module __maybe_unused)
768
{
769 770
	pr_warning("Debuginfo-analysis is not supported.\n");
	return -ENOSYS;
771 772
}

773 774 775 776 777
int show_available_vars(struct perf_probe_event *pevs __maybe_unused,
			int npevs __maybe_unused, int max_vls __maybe_unused,
			const char *module __maybe_unused,
			struct strfilter *filter __maybe_unused,
			bool externs __maybe_unused)
778 779 780 781
{
	pr_warning("Debuginfo-analysis is not supported.\n");
	return -ENOSYS;
}
782 783
#endif

784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805
void line_range__clear(struct line_range *lr)
{
	struct line_node *ln;

	free(lr->function);
	free(lr->file);
	free(lr->path);
	free(lr->comp_dir);
	while (!list_empty(&lr->line_list)) {
		ln = list_first_entry(&lr->line_list, struct line_node, list);
		list_del(&ln->list);
		free(ln);
	}
	memset(lr, 0, sizeof(*lr));
}

void line_range__init(struct line_range *lr)
{
	memset(lr, 0, sizeof(*lr));
	INIT_LIST_HEAD(&lr->line_list);
}

806 807 808 809 810 811 812 813 814 815 816 817 818
static int parse_line_num(char **ptr, int *val, const char *what)
{
	const char *start = *ptr;

	errno = 0;
	*val = strtol(*ptr, ptr, 0);
	if (errno || *ptr == start) {
		semantic_error("'%s' is not a valid number.\n", what);
		return -EINVAL;
	}
	return 0;
}

819 820 821 822 823
/*
 * Stuff 'lr' according to the line range described by 'arg'.
 * The line range syntax is described by:
 *
 *         SRC[:SLN[+NUM|-ELN]]
824
 *         FNC[@SRC][:SLN[+NUM|-ELN]]
825
 */
826
int parse_line_range_desc(const char *arg, struct line_range *lr)
827
{
828
	char *range, *file, *name = strdup(arg);
829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862
	int err;

	if (!name)
		return -ENOMEM;

	lr->start = 0;
	lr->end = INT_MAX;

	range = strchr(name, ':');
	if (range) {
		*range++ = '\0';

		err = parse_line_num(&range, &lr->start, "start line");
		if (err)
			goto err;

		if (*range == '+' || *range == '-') {
			const char c = *range++;

			err = parse_line_num(&range, &lr->end, "end line");
			if (err)
				goto err;

			if (c == '+') {
				lr->end += lr->start;
				/*
				 * 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.
				 */
				lr->end--;
			}
		}
863

864
		pr_debug("Line range is %d to %d\n", lr->start, lr->end);
865 866

		err = -EINVAL;
867
		if (lr->start > lr->end) {
868
			semantic_error("Start line must be smaller"
869
				       " than end line.\n");
870
			goto err;
871
		}
872 873 874
		if (*range != '\0') {
			semantic_error("Tailing with invalid str '%s'.\n", range);
			goto err;
875
		}
876
	}
877

878 879 880 881 882 883 884 885 886 887
	file = strchr(name, '@');
	if (file) {
		*file = '\0';
		lr->file = strdup(++file);
		if (lr->file == NULL) {
			err = -ENOMEM;
			goto err;
		}
		lr->function = name;
	} else if (strchr(name, '.'))
888
		lr->file = name;
889
	else
890
		lr->function = name;
891 892

	return 0;
893 894 895
err:
	free(name);
	return err;
896 897
}

898 899 900 901 902 903 904 905 906 907 908 909
/* 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;
}

910
/* Parse probepoint definition. */
911
static int parse_perf_probe_point(char *arg, struct perf_probe_event *pev)
912
{
913
	struct perf_probe_point *pp = &pev->point;
914 915 916 917
	char *ptr, *tmp;
	char c, nc = 0;
	/*
	 * <Syntax>
918 919
	 * perf probe [EVENT=]SRC[:LN|;PTN]
	 * perf probe [EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
920 921
	 *
	 * TODO:Group name support
922 923
	 */

924 925
	ptr = strpbrk(arg, ";=@+%");
	if (ptr && *ptr == '=') {	/* Event name */
926 927
		*ptr = '\0';
		tmp = ptr + 1;
928 929 930 931 932
		if (strchr(arg, ':')) {
			semantic_error("Group name is not supported yet.\n");
			return -ENOTSUP;
		}
		if (!check_event_name(arg)) {
933
			semantic_error("%s is bad for event name -it must "
934 935 936
				       "follow C symbol-naming rule.\n", arg);
			return -EINVAL;
		}
937 938 939
		pev->event = strdup(arg);
		if (pev->event == NULL)
			return -ENOMEM;
940
		pev->group = NULL;
941 942 943
		arg = tmp;
	}

944
	ptr = strpbrk(arg, ";:+@%");
945 946 947 948 949
	if (ptr) {
		nc = *ptr;
		*ptr++ = '\0';
	}

950 951 952 953
	tmp = strdup(arg);
	if (tmp == NULL)
		return -ENOMEM;

954
	/* Check arg is function or file and copy it */
955 956
	if (strchr(tmp, '.'))	/* File */
		pp->file = tmp;
957
	else			/* Function */
958
		pp->function = tmp;
959 960 961 962 963

	/* Parse other options */
	while (ptr) {
		arg = ptr;
		c = nc;
964
		if (c == ';') {	/* Lazy pattern must be the last part */
965 966 967
			pp->lazy_line = strdup(arg);
			if (pp->lazy_line == NULL)
				return -ENOMEM;
968 969 970
			break;
		}
		ptr = strpbrk(arg, ";:+@%");
971 972 973 974 975 976 977
		if (ptr) {
			nc = *ptr;
			*ptr++ = '\0';
		}
		switch (c) {
		case ':':	/* Line number */
			pp->line = strtoul(arg, &tmp, 0);
978
			if (*tmp != '\0') {
979
				semantic_error("There is non-digit char"
980 981 982
					       " in line number.\n");
				return -EINVAL;
			}
983 984 985
			break;
		case '+':	/* Byte offset from a symbol */
			pp->offset = strtoul(arg, &tmp, 0);
986
			if (*tmp != '\0') {
987
				semantic_error("There is non-digit character"
988 989 990
						" in offset.\n");
				return -EINVAL;
			}
991 992
			break;
		case '@':	/* File name */
993 994 995 996
			if (pp->file) {
				semantic_error("SRC@SRC is not allowed.\n");
				return -EINVAL;
			}
997 998 999
			pp->file = strdup(arg);
			if (pp->file == NULL)
				return -ENOMEM;
1000 1001 1002 1003
			break;
		case '%':	/* Probe places */
			if (strcmp(arg, "return") == 0) {
				pp->retprobe = 1;
1004 1005 1006 1007
			} else {	/* Others not supported yet */
				semantic_error("%%%s is not supported.\n", arg);
				return -ENOTSUP;
			}
1008
			break;
1009 1010 1011 1012
		default:	/* Buggy case */
			pr_err("This program has a bug at %s:%d.\n",
				__FILE__, __LINE__);
			return -ENOTSUP;
1013 1014 1015 1016 1017
			break;
		}
	}

	/* Exclusion check */
1018
	if (pp->lazy_line && pp->line) {
M
Masami Hiramatsu 已提交
1019 1020
		semantic_error("Lazy pattern can't be used with"
			       " line number.\n");
1021 1022
		return -EINVAL;
	}
1023

1024
	if (pp->lazy_line && pp->offset) {
M
Masami Hiramatsu 已提交
1025
		semantic_error("Lazy pattern can't be used with offset.\n");
1026 1027
		return -EINVAL;
	}
1028

1029
	if (pp->line && pp->offset) {
M
Masami Hiramatsu 已提交
1030
		semantic_error("Offset can't be used with line number.\n");
1031 1032
		return -EINVAL;
	}
1033

1034
	if (!pp->line && !pp->lazy_line && pp->file && !pp->function) {
1035
		semantic_error("File always requires line number or "
M
Masami Hiramatsu 已提交
1036
			       "lazy pattern.\n");
1037 1038
		return -EINVAL;
	}
1039

1040
	if (pp->offset && !pp->function) {
M
Masami Hiramatsu 已提交
1041
		semantic_error("Offset requires an entry function.\n");
1042 1043
		return -EINVAL;
	}
1044

1045
	if (pp->retprobe && !pp->function) {
M
Masami Hiramatsu 已提交
1046
		semantic_error("Return probe requires an entry function.\n");
1047 1048
		return -EINVAL;
	}
1049

1050
	if ((pp->offset || pp->line || pp->lazy_line) && pp->retprobe) {
1051
		semantic_error("Offset/Line/Lazy pattern can't be used with "
M
Masami Hiramatsu 已提交
1052
			       "return probe.\n");
1053 1054
		return -EINVAL;
	}
1055

1056
	pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n",
1057 1058
		 pp->function, pp->file, pp->line, pp->offset, pp->retprobe,
		 pp->lazy_line);
1059
	return 0;
1060 1061
}

1062
/* Parse perf-probe event argument */
1063
static int parse_perf_probe_arg(char *str, struct perf_probe_arg *arg)
1064
{
1065
	char *tmp, *goodname;
1066 1067 1068 1069
	struct perf_probe_arg_field **fieldp;

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

1070 1071
	tmp = strchr(str, '=');
	if (tmp) {
1072 1073 1074
		arg->name = strndup(str, tmp - str);
		if (arg->name == NULL)
			return -ENOMEM;
1075
		pr_debug("name:%s ", arg->name);
1076 1077 1078
		str = tmp + 1;
	}

1079 1080 1081
	tmp = strchr(str, ':');
	if (tmp) {	/* Type setting */
		*tmp = '\0';
1082 1083 1084
		arg->type = strdup(tmp + 1);
		if (arg->type == NULL)
			return -ENOMEM;
1085 1086 1087
		pr_debug("type:%s ", arg->type);
	}

1088
	tmp = strpbrk(str, "-.[");
1089 1090
	if (!is_c_varname(str) || !tmp) {
		/* A variable, register, symbol or special value */
1091 1092 1093
		arg->var = strdup(str);
		if (arg->var == NULL)
			return -ENOMEM;
1094
		pr_debug("%s\n", arg->var);
1095
		return 0;
1096 1097
	}

1098
	/* Structure fields or array element */
1099 1100 1101
	arg->var = strndup(str, tmp - str);
	if (arg->var == NULL)
		return -ENOMEM;
1102
	goodname = arg->var;
1103
	pr_debug("%s, ", arg->var);
1104 1105 1106
	fieldp = &arg->field;

	do {
1107 1108 1109
		*fieldp = zalloc(sizeof(struct perf_probe_arg_field));
		if (*fieldp == NULL)
			return -ENOMEM;
1110 1111 1112
		if (*tmp == '[') {	/* Array */
			str = tmp;
			(*fieldp)->index = strtol(str + 1, &tmp, 0);
1113
			(*fieldp)->ref = true;
1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134
			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, "-.[");
1135
		}
1136
		if (tmp) {
1137 1138 1139
			(*fieldp)->name = strndup(str, tmp - str);
			if ((*fieldp)->name == NULL)
				return -ENOMEM;
1140 1141
			if (*str != '[')
				goodname = (*fieldp)->name;
1142 1143 1144 1145
			pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
			fieldp = &(*fieldp)->next;
		}
	} while (tmp);
1146 1147 1148
	(*fieldp)->name = strdup(str);
	if ((*fieldp)->name == NULL)
		return -ENOMEM;
1149 1150
	if (*str != '[')
		goodname = (*fieldp)->name;
1151
	pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);
1152

1153
	/* If no name is specified, set the last field name (not array index)*/
1154
	if (!arg->name) {
1155
		arg->name = strdup(goodname);
1156 1157 1158
		if (arg->name == NULL)
			return -ENOMEM;
	}
1159
	return 0;
1160 1161
}

1162
/* Parse perf-probe event command */
1163
int parse_perf_probe_command(const char *cmd, struct perf_probe_event *pev)
1164
{
1165
	char **argv;
1166
	int argc, i, ret = 0;
1167

1168
	argv = argv_split(cmd, &argc);
1169 1170 1171 1172 1173 1174 1175 1176 1177
	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;
	}
1178
	/* Parse probe point */
1179 1180 1181
	ret = parse_perf_probe_point(argv[0], pev);
	if (ret < 0)
		goto out;
1182

1183
	/* Copy arguments and ensure return probe has no C argument */
1184
	pev->nargs = argc - 1;
1185 1186 1187 1188 1189
	pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
	if (pev->args == NULL) {
		ret = -ENOMEM;
		goto out;
	}
1190 1191 1192 1193
	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) {
1194
			semantic_error("You can't specify local variable for"
1195 1196 1197
				       " kretprobe.\n");
			ret = -EINVAL;
		}
1198
	}
1199
out:
1200
	argv_free(argv);
1201 1202

	return ret;
1203 1204
}

1205 1206 1207 1208 1209 1210 1211 1212 1213
/* 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++)
1214
		if (is_c_varname(pev->args[i].var))
1215 1216 1217 1218 1219
			return true;

	return false;
}

1220 1221
/* Parse probe_events event into struct probe_point */
static int parse_probe_trace_command(const char *cmd,
1222
				     struct probe_trace_event *tev)
1223
{
1224
	struct probe_trace_point *tp = &tev->point;
1225 1226
	char pr;
	char *p;
1227
	char *argv0_str = NULL, *fmt, *fmt1_str, *fmt2_str, *fmt3_str;
1228 1229 1230
	int ret, i, argc;
	char **argv;

1231
	pr_debug("Parsing probe_events: %s\n", cmd);
1232
	argv = argv_split(cmd, &argc);
1233 1234 1235 1236 1237 1238 1239 1240 1241
	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;
	}
1242 1243

	/* Scan event and group name. */
1244 1245 1246 1247 1248 1249 1250 1251 1252 1253
	argv0_str = strdup(argv[0]);
	if (argv0_str == NULL) {
		ret = -ENOMEM;
		goto out;
	}
	fmt1_str = strtok_r(argv0_str, ":", &fmt);
	fmt2_str = strtok_r(NULL, "/", &fmt);
	fmt3_str = strtok_r(NULL, " \t", &fmt);
	if (fmt1_str == NULL || strlen(fmt1_str) != 1 || fmt2_str == NULL
	    || fmt3_str == NULL) {
1254 1255 1256 1257
		semantic_error("Failed to parse event name: %s\n", argv[0]);
		ret = -EINVAL;
		goto out;
	}
1258 1259 1260 1261 1262 1263 1264
	pr = fmt1_str[0];
	tev->group = strdup(fmt2_str);
	tev->event = strdup(fmt3_str);
	if (tev->group == NULL || tev->event == NULL) {
		ret = -ENOMEM;
		goto out;
	}
1265
	pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr);
1266

1267
	tp->retprobe = (pr == 'r');
1268

1269 1270 1271 1272 1273 1274 1275
	/* Scan module name(if there), function name and offset */
	p = strchr(argv[1], ':');
	if (p) {
		tp->module = strndup(argv[1], p - argv[1]);
		p++;
	} else
		p = argv[1];
1276 1277 1278 1279 1280 1281 1282 1283
	fmt1_str = strtok_r(p, "+", &fmt);
	tp->symbol = strdup(fmt1_str);
	if (tp->symbol == NULL) {
		ret = -ENOMEM;
		goto out;
	}
	fmt2_str = strtok_r(NULL, "", &fmt);
	if (fmt2_str == NULL)
1284
		tp->offset = 0;
1285 1286
	else
		tp->offset = strtoul(fmt2_str, NULL, 10);
1287

1288
	tev->nargs = argc - 2;
1289
	tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
1290 1291 1292 1293
	if (tev->args == NULL) {
		ret = -ENOMEM;
		goto out;
	}
1294
	for (i = 0; i < tev->nargs; i++) {
1295 1296
		p = strchr(argv[i + 2], '=');
		if (p)	/* We don't need which register is assigned. */
1297 1298 1299
			*p++ = '\0';
		else
			p = argv[i + 2];
1300
		tev->args[i].name = strdup(argv[i + 2]);
1301
		/* TODO: parse regs and offset */
1302 1303 1304 1305 1306
		tev->args[i].value = strdup(p);
		if (tev->args[i].name == NULL || tev->args[i].value == NULL) {
			ret = -ENOMEM;
			goto out;
		}
1307
	}
1308 1309
	ret = 0;
out:
1310
	free(argv0_str);
1311
	argv_free(argv);
1312
	return ret;
1313 1314
}

1315 1316 1317 1318 1319 1320 1321
/* 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;

1322 1323 1324 1325
	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);
1326 1327 1328 1329 1330 1331
	if (ret <= 0)
		goto error;
	tmp += ret;
	len -= ret;

	while (field) {
1332 1333 1334 1335 1336
		if (field->name[0] == '[')
			ret = e_snprintf(tmp, len, "%s", field->name);
		else
			ret = e_snprintf(tmp, len, "%s%s",
					 field->ref ? "->" : ".", field->name);
1337 1338 1339 1340 1341 1342
		if (ret <= 0)
			goto error;
		tmp += ret;
		len -= ret;
		field = field->next;
	}
1343 1344 1345 1346 1347 1348 1349 1350 1351

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

1352 1353
	return tmp - buf;
error:
M
Masami Hiramatsu 已提交
1354
	pr_debug("Failed to synthesize perf probe argument: %s\n",
1355 1356
		 strerror(-ret));
	return ret;
1357 1358
}

1359 1360
/* Compose only probe point (not argument) */
static char *synthesize_perf_probe_point(struct perf_probe_point *pp)
1361
{
1362 1363 1364
	char *buf, *tmp;
	char offs[32] = "", line[32] = "", file[32] = "";
	int ret, len;
1365

1366 1367 1368 1369 1370
	buf = zalloc(MAX_CMDLEN);
	if (buf == NULL) {
		ret = -ENOMEM;
		goto error;
	}
1371
	if (pp->offset) {
1372
		ret = e_snprintf(offs, 32, "+%lu", pp->offset);
1373 1374 1375 1376
		if (ret <= 0)
			goto error;
	}
	if (pp->line) {
1377 1378 1379 1380 1381
		ret = e_snprintf(line, 32, ":%d", pp->line);
		if (ret <= 0)
			goto error;
	}
	if (pp->file) {
1382 1383 1384 1385 1386 1387 1388
		tmp = pp->file;
		len = strlen(tmp);
		if (len > 30) {
			tmp = strchr(pp->file + len - 30, '/');
			tmp = tmp ? tmp + 1 : pp->file + len - 30;
		}
		ret = e_snprintf(file, 32, "@%s", tmp);
1389 1390 1391 1392 1393
		if (ret <= 0)
			goto error;
	}

	if (pp->function)
1394 1395 1396
		ret = e_snprintf(buf, MAX_CMDLEN, "%s%s%s%s%s", pp->function,
				 offs, pp->retprobe ? "%return" : "", line,
				 file);
1397
	else
1398
		ret = e_snprintf(buf, MAX_CMDLEN, "%s%s", file, line);
1399 1400 1401 1402
	if (ret <= 0)
		goto error;

	return buf;
1403
error:
M
Masami Hiramatsu 已提交
1404
	pr_debug("Failed to synthesize perf probe point: %s\n",
1405
		 strerror(-ret));
1406
	free(buf);
1407
	return NULL;
1408 1409
}

1410 1411
#if 0
char *synthesize_perf_probe_command(struct perf_probe_event *pev)
1412 1413 1414 1415
{
	char *buf;
	int i, len, ret;

1416 1417 1418
	buf = synthesize_perf_probe_point(&pev->point);
	if (!buf)
		return NULL;
1419

1420 1421
	len = strlen(buf);
	for (i = 0; i < pev->nargs; i++) {
1422
		ret = e_snprintf(&buf[len], MAX_CMDLEN - len, " %s",
1423 1424 1425 1426 1427
				 pev->args[i].name);
		if (ret <= 0) {
			free(buf);
			return NULL;
		}
1428 1429 1430
		len += ret;
	}

1431 1432 1433 1434
	return buf;
}
#endif

1435
static int __synthesize_probe_trace_arg_ref(struct probe_trace_arg_ref *ref,
1436 1437 1438 1439 1440
					     char **buf, size_t *buflen,
					     int depth)
{
	int ret;
	if (ref->next) {
1441
		depth = __synthesize_probe_trace_arg_ref(ref->next, buf,
1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455
							 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;
1456 1457 1458

}

1459
static int synthesize_probe_trace_arg(struct probe_trace_arg *arg,
1460
				       char *buf, size_t buflen)
1461
{
1462
	struct probe_trace_arg_ref *ref = arg->ref;
1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475
	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;

1476 1477 1478 1479
	/* Special case: @XXX */
	if (arg->value[0] == '@' && arg->ref)
			ref = ref->next;

1480
	/* Dereferencing arguments */
1481
	if (ref) {
1482
		depth = __synthesize_probe_trace_arg_ref(ref, &buf,
1483 1484 1485 1486 1487 1488
							  &buflen, 1);
		if (depth < 0)
			return depth;
	}

	/* Print argument value */
1489 1490 1491 1492 1493
	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);
1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506
	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;
	}
1507 1508 1509 1510 1511 1512 1513
	/* Print argument type */
	if (arg->type) {
		ret = e_snprintf(buf, buflen, ":%s", arg->type);
		if (ret <= 0)
			return ret;
		buf += ret;
	}
1514 1515 1516 1517

	return buf - tmp;
}

1518
char *synthesize_probe_trace_command(struct probe_trace_event *tev)
1519
{
1520
	struct probe_trace_point *tp = &tev->point;
1521 1522 1523
	char *buf;
	int i, len, ret;

1524 1525 1526 1527
	buf = zalloc(MAX_CMDLEN);
	if (buf == NULL)
		return NULL;

1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539
	if (tev->uprobes)
		len = e_snprintf(buf, MAX_CMDLEN, "%c:%s/%s %s:%s",
				 tp->retprobe ? 'r' : 'p',
				 tev->group, tev->event,
				 tp->module, tp->symbol);
	else
		len = e_snprintf(buf, MAX_CMDLEN, "%c:%s/%s %s%s%s+%lu",
				 tp->retprobe ? 'r' : 'p',
				 tev->group, tev->event,
				 tp->module ?: "", tp->module ? ":" : "",
				 tp->symbol, tp->offset);

1540
	if (len <= 0)
1541 1542
		goto error;

1543
	for (i = 0; i < tev->nargs; i++) {
1544
		ret = synthesize_probe_trace_arg(&tev->args[i], buf + len,
1545
						  MAX_CMDLEN - len);
1546
		if (ret <= 0)
1547 1548 1549 1550
			goto error;
		len += ret;
	}

1551
	return buf;
1552
error:
1553 1554 1555
	free(buf);
	return NULL;
}
1556

1557
static int convert_to_perf_probe_event(struct probe_trace_event *tev,
1558
			       struct perf_probe_event *pev, bool is_kprobe)
1559
{
1560
	char buf[64] = "";
1561
	int i, ret;
1562

1563
	/* Convert event/group name */
1564 1565 1566 1567
	pev->event = strdup(tev->event);
	pev->group = strdup(tev->group);
	if (pev->event == NULL || pev->group == NULL)
		return -ENOMEM;
1568

1569
	/* Convert trace_point to probe_point */
1570 1571 1572 1573 1574
	if (is_kprobe)
		ret = kprobe_convert_to_perf_probe(&tev->point, &pev->point);
	else
		ret = convert_to_perf_probe_point(&tev->point, &pev->point);

1575 1576
	if (ret < 0)
		return ret;
1577

1578 1579
	/* Convert trace_arg to probe_arg */
	pev->nargs = tev->nargs;
1580 1581 1582
	pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
	if (pev->args == NULL)
		return -ENOMEM;
1583
	for (i = 0; i < tev->nargs && ret >= 0; i++) {
1584
		if (tev->args[i].name)
1585
			pev->args[i].name = strdup(tev->args[i].name);
1586
		else {
1587
			ret = synthesize_probe_trace_arg(&tev->args[i],
1588
							  buf, 64);
1589
			pev->args[i].name = strdup(buf);
1590
		}
1591 1592 1593
		if (pev->args[i].name == NULL && ret >= 0)
			ret = -ENOMEM;
	}
1594 1595 1596 1597 1598

	if (ret < 0)
		clear_perf_probe_event(pev);

	return ret;
1599 1600 1601 1602 1603
}

void clear_perf_probe_event(struct perf_probe_event *pev)
{
	struct perf_probe_point *pp = &pev->point;
1604
	struct perf_probe_arg_field *field, *next;
1605 1606
	int i;

1607 1608 1609 1610 1611 1612
	free(pev->event);
	free(pev->group);
	free(pp->file);
	free(pp->function);
	free(pp->lazy_line);

1613
	for (i = 0; i < pev->nargs; i++) {
1614 1615 1616
		free(pev->args[i].name);
		free(pev->args[i].var);
		free(pev->args[i].type);
1617 1618 1619
		field = pev->args[i].field;
		while (field) {
			next = field->next;
1620
			zfree(&field->name);
1621 1622 1623 1624
			free(field);
			field = next;
		}
	}
1625
	free(pev->args);
1626 1627 1628
	memset(pev, 0, sizeof(*pev));
}

1629
static void clear_probe_trace_event(struct probe_trace_event *tev)
1630
{
1631
	struct probe_trace_arg_ref *ref, *next;
1632 1633
	int i;

1634 1635 1636 1637
	free(tev->event);
	free(tev->group);
	free(tev->point.symbol);
	free(tev->point.module);
1638
	for (i = 0; i < tev->nargs; i++) {
1639 1640 1641
		free(tev->args[i].name);
		free(tev->args[i].value);
		free(tev->args[i].type);
1642 1643 1644 1645 1646 1647 1648
		ref = tev->args[i].ref;
		while (ref) {
			next = ref->next;
			free(ref);
			ref = next;
		}
	}
1649
	free(tev->args);
1650
	memset(tev, 0, sizeof(*tev));
1651 1652
}

1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672
static void print_warn_msg(const char *file, bool is_kprobe)
{

	if (errno == ENOENT) {
		const char *config;

		if (!is_kprobe)
			config = "CONFIG_UPROBE_EVENTS";
		else
			config = "CONFIG_KPROBE_EVENTS";

		pr_warning("%s file does not exist - please rebuild kernel"
				" with %s.\n", file, config);
	} else
		pr_warning("Failed to open %s file: %s\n", file,
				strerror(errno));
}

static int open_probe_events(const char *trace_file, bool readwrite,
				bool is_kprobe)
1673 1674
{
	char buf[PATH_MAX];
1675
	const char *__debugfs;
1676 1677
	int ret;

1678 1679 1680 1681 1682 1683
	__debugfs = debugfs_find_mountpoint();
	if (__debugfs == NULL) {
		pr_warning("Debugfs is not mounted.\n");
		return -ENOENT;
	}

1684
	ret = e_snprintf(buf, PATH_MAX, "%s/%s", __debugfs, trace_file);
1685
	if (ret >= 0) {
1686
		pr_debug("Opening %s write=%d\n", buf, readwrite);
1687 1688 1689 1690
		if (readwrite && !probe_event_dry_run)
			ret = open(buf, O_RDWR, O_APPEND);
		else
			ret = open(buf, O_RDONLY, 0);
1691

1692 1693
		if (ret < 0)
			print_warn_msg(buf, is_kprobe);
1694 1695 1696 1697
	}
	return ret;
}

1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708
static int open_kprobe_events(bool readwrite)
{
	return open_probe_events("tracing/kprobe_events", readwrite, true);
}

static int open_uprobe_events(bool readwrite)
{
	return open_probe_events("tracing/uprobe_events", readwrite, false);
}

/* Get raw string list of current kprobe_events  or uprobe_events */
1709
static struct strlist *get_probe_trace_command_rawlist(int fd)
1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728
{
	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);
1729 1730 1731 1732 1733
		if (ret < 0) {
			pr_debug("strlist__add failed: %s\n", strerror(-ret));
			strlist__delete(sl);
			return NULL;
		}
1734 1735 1736 1737 1738 1739
	}
	fclose(fp);

	return sl;
}

1740
/* Show an event */
1741
static int show_perf_probe_event(struct perf_probe_event *pev)
1742
{
1743
	int i, ret;
1744
	char buf[128];
1745
	char *place;
1746

1747 1748
	/* Synthesize only event probe point */
	place = synthesize_perf_probe_point(&pev->point);
1749 1750
	if (!place)
		return -EINVAL;
1751 1752

	ret = e_snprintf(buf, 128, "%s:%s", pev->group, pev->event);
1753
	if (ret < 0)
1754 1755
		return ret;

1756
	printf("  %-20s (on %s", buf, place);
1757

1758
	if (pev->nargs > 0) {
1759
		printf(" with");
1760
		for (i = 0; i < pev->nargs; i++) {
1761 1762 1763 1764
			ret = synthesize_perf_probe_arg(&pev->args[i],
							buf, 128);
			if (ret < 0)
				break;
1765 1766
			printf(" %s", buf);
		}
1767 1768
	}
	printf(")\n");
1769
	free(place);
1770
	return ret;
1771 1772
}

1773
static int __show_perf_probe_events(int fd, bool is_kprobe)
1774
{
1775
	int ret = 0;
1776
	struct probe_trace_event tev;
1777
	struct perf_probe_event pev;
1778 1779 1780
	struct strlist *rawlist;
	struct str_node *ent;

1781 1782
	memset(&tev, 0, sizeof(tev));
	memset(&pev, 0, sizeof(pev));
1783

1784
	rawlist = get_probe_trace_command_rawlist(fd);
1785 1786
	if (!rawlist)
		return -ENOENT;
1787

1788
	strlist__for_each(ent, rawlist) {
1789
		ret = parse_probe_trace_command(ent->s, &tev);
1790
		if (ret >= 0) {
1791 1792
			ret = convert_to_perf_probe_event(&tev, &pev,
								is_kprobe);
1793 1794 1795
			if (ret >= 0)
				ret = show_perf_probe_event(&pev);
		}
1796
		clear_perf_probe_event(&pev);
1797
		clear_probe_trace_event(&tev);
1798 1799
		if (ret < 0)
			break;
1800 1801
	}
	strlist__delete(rawlist);
1802 1803

	return ret;
1804 1805
}

1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816
/* List up current perf-probe events */
int show_perf_probe_events(void)
{
	int fd, ret;

	setup_pager();
	fd = open_kprobe_events(false);

	if (fd < 0)
		return fd;

1817
	ret = init_symbol_maps(false);
1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829
	if (ret < 0)
		return ret;

	ret = __show_perf_probe_events(fd, true);
	close(fd);

	fd = open_uprobe_events(false);
	if (fd >= 0) {
		ret = __show_perf_probe_events(fd, false);
		close(fd);
	}

1830
	exit_symbol_maps();
1831 1832 1833
	return ret;
}

1834
/* Get current perf-probe event names */
1835
static struct strlist *get_probe_trace_event_names(int fd, bool include_group)
1836
{
1837
	char buf[128];
1838 1839
	struct strlist *sl, *rawlist;
	struct str_node *ent;
1840
	struct probe_trace_event tev;
1841
	int ret = 0;
1842

1843
	memset(&tev, 0, sizeof(tev));
1844
	rawlist = get_probe_trace_command_rawlist(fd);
1845
	sl = strlist__new(true, NULL);
1846
	strlist__for_each(ent, rawlist) {
1847
		ret = parse_probe_trace_command(ent->s, &tev);
1848 1849
		if (ret < 0)
			break;
1850
		if (include_group) {
1851 1852 1853 1854
			ret = e_snprintf(buf, 128, "%s:%s", tev.group,
					tev.event);
			if (ret >= 0)
				ret = strlist__add(sl, buf);
1855
		} else
1856
			ret = strlist__add(sl, tev.event);
1857
		clear_probe_trace_event(&tev);
1858 1859
		if (ret < 0)
			break;
1860 1861 1862
	}
	strlist__delete(rawlist);

1863 1864 1865 1866
	if (ret < 0) {
		strlist__delete(sl);
		return NULL;
	}
1867 1868 1869
	return sl;
}

1870
static int write_probe_trace_event(int fd, struct probe_trace_event *tev)
1871
{
1872
	int ret = 0;
1873
	char *buf = synthesize_probe_trace_command(tev);
1874

1875
	if (!buf) {
1876
		pr_debug("Failed to synthesize probe trace event.\n");
1877 1878 1879
		return -EINVAL;
	}

1880
	pr_debug("Writing event: %s\n", buf);
1881 1882 1883
	if (!probe_event_dry_run) {
		ret = write(fd, buf, strlen(buf));
		if (ret <= 0)
1884 1885
			pr_warning("Failed to write event: %s\n",
				   strerror(errno));
1886
	}
1887
	free(buf);
1888
	return ret;
1889 1890
}

1891 1892
static int get_new_event_name(char *buf, size_t len, const char *base,
			      struct strlist *namelist, bool allow_suffix)
1893 1894
{
	int i, ret;
1895 1896 1897

	/* Try no suffix */
	ret = e_snprintf(buf, len, "%s", base);
1898 1899 1900 1901
	if (ret < 0) {
		pr_debug("snprintf() failed: %s\n", strerror(-ret));
		return ret;
	}
1902
	if (!strlist__has_entry(namelist, buf))
1903
		return 0;
1904

1905 1906 1907
	if (!allow_suffix) {
		pr_warning("Error: event \"%s\" already exists. "
			   "(Use -f to force duplicates.)\n", base);
1908
		return -EEXIST;
1909 1910
	}

1911 1912
	/* Try to add suffix */
	for (i = 1; i < MAX_EVENT_INDEX; i++) {
1913
		ret = e_snprintf(buf, len, "%s_%d", base, i);
1914 1915 1916 1917
		if (ret < 0) {
			pr_debug("snprintf() failed: %s\n", strerror(-ret));
			return ret;
		}
1918 1919 1920
		if (!strlist__has_entry(namelist, buf))
			break;
	}
1921 1922 1923 1924 1925 1926
	if (i == MAX_EVENT_INDEX) {
		pr_warning("Too many events are on the same function.\n");
		ret = -ERANGE;
	}

	return ret;
1927 1928
}

1929 1930
static int __add_probe_trace_events(struct perf_probe_event *pev,
				     struct probe_trace_event *tevs,
1931
				     int ntevs, bool allow_suffix)
1932
{
1933
	int i, fd, ret;
1934
	struct probe_trace_event *tev = NULL;
1935 1936
	char buf[64];
	const char *event, *group;
1937
	struct strlist *namelist;
1938

1939 1940 1941 1942 1943
	if (pev->uprobes)
		fd = open_uprobe_events(true);
	else
		fd = open_kprobe_events(true);

1944 1945
	if (fd < 0)
		return fd;
1946
	/* Get current event names */
1947
	namelist = get_probe_trace_event_names(fd, false);
1948 1949 1950 1951
	if (!namelist) {
		pr_debug("Failed to get current event list.\n");
		return -EIO;
	}
1952

1953
	ret = 0;
S
Srikar Dronamraju 已提交
1954
	printf("Added new event%s\n", (ntevs > 1) ? "s:" : ":");
1955
	for (i = 0; i < ntevs; i++) {
1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969
		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 */
1970 1971 1972 1973
		ret = get_new_event_name(buf, 64, event,
					 namelist, allow_suffix);
		if (ret < 0)
			break;
1974 1975
		event = buf;

1976 1977 1978 1979 1980 1981
		tev->event = strdup(event);
		tev->group = strdup(group);
		if (tev->event == NULL || tev->group == NULL) {
			ret = -ENOMEM;
			break;
		}
1982
		ret = write_probe_trace_event(fd, tev);
1983 1984
		if (ret < 0)
			break;
1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004
		/* 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;
2005
	}
2006 2007 2008

	if (ret >= 0) {
		/* Show how to use the event. */
S
Srikar Dronamraju 已提交
2009
		printf("\nYou can now use it in all perf tools, such as:\n\n");
2010 2011 2012
		printf("\tperf record -e %s:%s -aR sleep 1\n\n", tev->group,
			 tev->event);
	}
2013

2014
	strlist__delete(namelist);
2015
	close(fd);
2016
	return ret;
2017
}
2018

2019 2020
static int convert_to_probe_trace_events(struct perf_probe_event *pev,
					  struct probe_trace_event **tevs,
2021
					  int max_tevs, const char *target)
2022 2023
{
	struct symbol *sym;
2024
	int ret, i;
2025
	struct probe_trace_event *tev;
2026

2027 2028 2029 2030 2031 2032 2033 2034 2035
	if (pev->uprobes && !pev->group) {
		/* Replace group name if not given */
		ret = convert_exec_to_group(target, &pev->group);
		if (ret != 0) {
			pr_warning("Failed to make a group name.\n");
			return ret;
		}
	}

2036
	/* Convert perf_probe_event with debuginfo */
2037
	ret = try_to_find_probe_trace_events(pev, tevs, max_tevs, target);
2038
	if (ret != 0)
2039
		return ret;	/* Found in debuginfo or got an error */
2040

2041 2042 2043 2044 2045 2046
	if (pev->uprobes) {
		ret = convert_name_to_addr(pev, target);
		if (ret < 0)
			return ret;
	}

2047
	/* Allocate trace event buffer */
2048
	tev = *tevs = zalloc(sizeof(struct probe_trace_event));
2049 2050
	if (tev == NULL)
		return -ENOMEM;
2051 2052

	/* Copy parameters */
2053 2054 2055 2056 2057
	tev->point.symbol = strdup(pev->point.function);
	if (tev->point.symbol == NULL) {
		ret = -ENOMEM;
		goto error;
	}
2058

2059 2060
	if (target) {
		tev->point.module = strdup(target);
2061 2062 2063 2064
		if (tev->point.module == NULL) {
			ret = -ENOMEM;
			goto error;
		}
2065
	}
2066

2067
	tev->point.offset = pev->point.offset;
2068
	tev->point.retprobe = pev->point.retprobe;
2069
	tev->nargs = pev->nargs;
2070 2071
	tev->uprobes = pev->uprobes;

2072
	if (tev->nargs) {
2073
		tev->args = zalloc(sizeof(struct probe_trace_arg)
2074 2075
				   * tev->nargs);
		if (tev->args == NULL) {
2076 2077
			ret = -ENOMEM;
			goto error;
2078
		}
2079
		for (i = 0; i < tev->nargs; i++) {
2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098
			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;
				}
			}
2099
		}
2100 2101
	}

2102 2103 2104
	if (pev->uprobes)
		return 1;

2105
	/* Currently just checking function name from symbol map */
2106
	sym = __find_kernel_function_by_name(tev->point.symbol, NULL);
2107 2108 2109
	if (!sym) {
		pr_warning("Kernel symbol \'%s\' not found.\n",
			   tev->point.symbol);
2110 2111
		ret = -ENOENT;
		goto error;
2112 2113 2114 2115 2116 2117
	} else if (tev->point.offset > sym->end - sym->start) {
		pr_warning("Offset specified is greater than size of %s\n",
			   tev->point.symbol);
		ret = -ENOENT;
		goto error;

2118
	}
2119

2120 2121
	return 1;
error:
2122
	clear_probe_trace_event(tev);
2123 2124
	free(tev);
	*tevs = NULL;
2125
	return ret;
2126 2127 2128 2129
}

struct __event_package {
	struct perf_probe_event		*pev;
2130
	struct probe_trace_event	*tevs;
2131 2132 2133
	int				ntevs;
};

2134
int add_perf_probe_events(struct perf_probe_event *pevs, int npevs,
2135
			  int max_tevs, const char *target, bool force_add)
2136
{
2137
	int i, j, ret;
2138 2139
	struct __event_package *pkgs;

2140
	ret = 0;
2141
	pkgs = zalloc(sizeof(struct __event_package) * npevs);
2142

2143 2144
	if (pkgs == NULL)
		return -ENOMEM;
2145

2146
	ret = init_symbol_maps(pevs->uprobes);
2147 2148
	if (ret < 0) {
		free(pkgs);
2149
		return ret;
2150
	}
2151 2152 2153 2154 2155

	/* Loop 1: convert all events */
	for (i = 0; i < npevs; i++) {
		pkgs[i].pev = &pevs[i];
		/* Convert with or without debuginfo */
2156
		ret  = convert_to_probe_trace_events(pkgs[i].pev,
2157 2158
						     &pkgs[i].tevs,
						     max_tevs,
2159
						     target);
2160 2161 2162
		if (ret < 0)
			goto end;
		pkgs[i].ntevs = ret;
2163 2164
	}

2165
	/* Loop 2: add all events */
2166
	for (i = 0; i < npevs; i++) {
2167
		ret = __add_probe_trace_events(pkgs[i].pev, pkgs[i].tevs,
2168
						pkgs[i].ntevs, force_add);
2169 2170 2171
		if (ret < 0)
			break;
	}
2172
end:
2173 2174
	/* Loop 3: cleanup and free trace events  */
	for (i = 0; i < npevs; i++) {
2175
		for (j = 0; j < pkgs[i].ntevs; j++)
2176
			clear_probe_trace_event(&pkgs[i].tevs[j]);
2177
		zfree(&pkgs[i].tevs);
2178 2179
	}
	free(pkgs);
2180
	exit_symbol_maps();
2181 2182

	return ret;
2183 2184
}

2185
static int __del_trace_probe_event(int fd, struct str_node *ent)
2186 2187 2188
{
	char *p;
	char buf[128];
2189
	int ret;
2190

2191
	/* Convert from perf-probe event to trace-probe event */
2192 2193 2194 2195
	ret = e_snprintf(buf, 128, "-:%s", ent->s);
	if (ret < 0)
		goto error;

2196
	p = strchr(buf + 2, ':');
2197 2198 2199 2200 2201 2202
	if (!p) {
		pr_debug("Internal error: %s should have ':' but not.\n",
			 ent->s);
		ret = -ENOTSUP;
		goto error;
	}
2203 2204
	*p = '/';

2205 2206
	pr_debug("Writing event: %s\n", buf);
	ret = write(fd, buf, strlen(buf));
2207 2208
	if (ret < 0) {
		ret = -errno;
2209
		goto error;
2210
	}
2211

S
Srikar Dronamraju 已提交
2212
	printf("Removed event: %s\n", ent->s);
2213 2214 2215 2216
	return 0;
error:
	pr_warning("Failed to delete event: %s\n", strerror(-ret));
	return ret;
2217 2218
}

2219 2220
static int del_trace_probe_event(int fd, const char *buf,
						  struct strlist *namelist)
2221
{
2222
	struct str_node *ent, *n;
2223
	int ret = -1;
2224

2225 2226 2227
	if (strpbrk(buf, "*?")) { /* Glob-exp */
		strlist__for_each_safe(ent, n, namelist)
			if (strglobmatch(ent->s, buf)) {
2228
				ret = __del_trace_probe_event(fd, ent);
2229 2230
				if (ret < 0)
					break;
2231 2232 2233 2234 2235
				strlist__remove(namelist, ent);
			}
	} else {
		ent = strlist__find(namelist, buf);
		if (ent) {
2236
			ret = __del_trace_probe_event(fd, ent);
2237 2238
			if (ret >= 0)
				strlist__remove(namelist, ent);
2239 2240
		}
	}
2241 2242

	return ret;
2243 2244
}

2245
int del_perf_probe_events(struct strlist *dellist)
2246
{
2247 2248
	int ret = -1, ufd = -1, kfd = -1;
	char buf[128];
2249 2250 2251
	const char *group, *event;
	char *p, *str;
	struct str_node *ent;
2252
	struct strlist *namelist = NULL, *unamelist = NULL;
2253

2254
	/* Get current event names */
2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266
	kfd = open_kprobe_events(true);
	if (kfd < 0)
		return kfd;

	namelist = get_probe_trace_event_names(kfd, true);
	ufd = open_uprobe_events(true);

	if (ufd >= 0)
		unamelist = get_probe_trace_event_names(ufd, true);

	if (namelist == NULL && unamelist == NULL)
		goto error;
2267

2268
	strlist__for_each(ent, dellist) {
2269 2270 2271
		str = strdup(ent->s);
		if (str == NULL) {
			ret = -ENOMEM;
2272
			goto error;
2273
		}
2274
		pr_debug("Parsing: %s\n", str);
2275 2276 2277 2278 2279 2280
		p = strchr(str, ':');
		if (p) {
			group = str;
			*p = '\0';
			event = p + 1;
		} else {
2281
			group = "*";
2282 2283
			event = str;
		}
2284 2285 2286 2287 2288 2289 2290 2291

		ret = e_snprintf(buf, 128, "%s:%s", group, event);
		if (ret < 0) {
			pr_err("Failed to copy event.");
			free(str);
			goto error;
		}

2292
		pr_debug("Group: %s, Event: %s\n", group, event);
2293 2294 2295 2296 2297 2298 2299 2300 2301 2302

		if (namelist)
			ret = del_trace_probe_event(kfd, buf, namelist);

		if (unamelist && ret != 0)
			ret = del_trace_probe_event(ufd, buf, unamelist);

		if (ret != 0)
			pr_info("Info: Event \"%s\" does not exist.\n", buf);

2303 2304
		free(str);
	}
2305 2306 2307

error:
	if (kfd >= 0) {
2308
		strlist__delete(namelist);
2309 2310 2311 2312
		close(kfd);
	}

	if (ufd >= 0) {
2313
		strlist__delete(unamelist);
2314 2315
		close(ufd);
	}
2316 2317

	return ret;
2318
}
2319

2320 2321
/* TODO: don't use a global variable for filter ... */
static struct strfilter *available_func_filter;
2322

2323
/*
2324 2325
 * If a symbol corresponds to a function with global binding and
 * matches filter return 0. For all others return 1.
2326
 */
2327
static int filter_available_functions(struct map *map __maybe_unused,
2328
				      struct symbol *sym)
2329
{
2330 2331 2332 2333
	if (sym->binding == STB_GLOBAL &&
	    strfilter__compare(available_func_filter, sym->name))
		return 0;
	return 1;
2334 2335
}

2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349
static int __show_available_funcs(struct map *map)
{
	if (map__load(map, filter_available_functions)) {
		pr_err("Failed to load map.\n");
		return -EINVAL;
	}
	if (!dso__sorted_by_name(map->dso, map->type))
		dso__sort_by_name(map->dso, map->type);

	dso__fprintf_symbols_by_name(map->dso, map->type, stdout);
	return 0;
}

static int available_kernel_funcs(const char *module)
2350 2351 2352 2353
{
	struct map *map;
	int ret;

2354
	ret = init_symbol_maps(false);
2355 2356 2357
	if (ret < 0)
		return ret;

2358
	map = kernel_get_module_map(module);
2359
	if (!map) {
2360
		pr_err("Failed to find %s map.\n", (module) ? : "kernel");
2361 2362
		return -EINVAL;
	}
2363 2364 2365 2366
	ret = __show_available_funcs(map);
	exit_symbol_maps();

	return ret;
2367 2368 2369 2370 2371 2372 2373
}

static int available_user_funcs(const char *target)
{
	struct map *map;
	int ret;

2374
	ret = init_symbol_maps(true);
2375 2376 2377 2378 2379 2380 2381
	if (ret < 0)
		return ret;

	map = dso__new_map(target);
	ret = __show_available_funcs(map);
	dso__delete(map->dso);
	map__delete(map);
2382
	exit_symbol_maps();
2383 2384 2385 2386 2387 2388 2389
	return ret;
}

int show_available_funcs(const char *target, struct strfilter *_filter,
					bool user)
{
	setup_pager();
2390
	available_func_filter = _filter;
2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406

	if (!user)
		return available_kernel_funcs(target);

	return available_user_funcs(target);
}

/*
 * uprobe_events only accepts address:
 * Convert function and any offset to address
 */
static int convert_name_to_addr(struct perf_probe_event *pev, const char *exec)
{
	struct perf_probe_point *pp = &pev->point;
	struct symbol *sym;
	struct map *map = NULL;
2407
	char *function = NULL;
2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422
	int ret = -EINVAL;
	unsigned long long vaddr = 0;

	if (!pp->function) {
		pr_warning("No function specified for uprobes");
		goto out;
	}

	function = strdup(pp->function);
	if (!function) {
		pr_warning("Failed to allocate memory by strdup.\n");
		ret = -ENOMEM;
		goto out;
	}

2423
	map = dso__new_map(exec);
2424 2425 2426 2427 2428
	if (!map) {
		pr_warning("Cannot find appropriate DSO for %s.\n", exec);
		goto out;
	}
	available_func_filter = strfilter__new(function, NULL);
2429
	if (map__load(map, filter_available_functions)) {
2430
		pr_err("Failed to load map.\n");
2431
		goto out;
2432 2433
	}

2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449
	sym = map__find_symbol_by_name(map, function, NULL);
	if (!sym) {
		pr_warning("Cannot find %s in DSO %s\n", function, exec);
		goto out;
	}

	if (map->start > sym->start)
		vaddr = map->start;
	vaddr += sym->start + pp->offset + map->pgoff;
	pp->offset = 0;

	if (!pev->event) {
		pev->event = function;
		function = NULL;
	}
	if (!pev->group) {
2450
		char *ptr1, *ptr2, *exec_copy;
2451 2452

		pev->group = zalloc(sizeof(char *) * 64);
2453 2454 2455 2456 2457 2458 2459 2460
		exec_copy = strdup(exec);
		if (!exec_copy) {
			ret = -ENOMEM;
			pr_warning("Failed to copy exec string.\n");
			goto out;
		}

		ptr1 = strdup(basename(exec_copy));
2461 2462 2463 2464 2465 2466 2467 2468
		if (ptr1) {
			ptr2 = strpbrk(ptr1, "-._");
			if (ptr2)
				*ptr2 = '\0';
			e_snprintf(pev->group, 64, "%s_%s", PERFPROBE_GROUP,
					ptr1);
			free(ptr1);
		}
2469
		free(exec_copy);
2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488
	}
	free(pp->function);
	pp->function = zalloc(sizeof(char *) * MAX_PROBE_ARGS);
	if (!pp->function) {
		ret = -ENOMEM;
		pr_warning("Failed to allocate memory by zalloc.\n");
		goto out;
	}
	e_snprintf(pp->function, MAX_PROBE_ARGS, "0x%llx", vaddr);
	ret = 0;

out:
	if (map) {
		dso__delete(map->dso);
		map__delete(map);
	}
	if (function)
		free(function);
	return ret;
2489
}