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

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

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

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

#define semantic_error(msg ...) die("Semantic error :" msg)

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

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

70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101

static struct map_groups kmap_groups;
static struct map *kmaps[MAP__NR_TYPES];

/* Initialize symbol maps for vmlinux */
static void init_vmlinux(void)
{
	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);
	if (symbol__init() < 0)
		die("Failed to init symbol map.");

	map_groups__init(&kmap_groups);
	if (map_groups__create_kernel_maps(&kmap_groups, kmaps) < 0)
		die("Failed to create kernel maps.");
}

#ifndef NO_DWARF_SUPPORT
static int open_vmlinux(void)
{
	if (map__load(kmaps[MAP__FUNCTION], NULL) < 0) {
		pr_debug("Failed to load kernel map.\n");
		return -EINVAL;
	}
	pr_debug("Try to open %s\n", kmaps[MAP__FUNCTION]->dso->long_name);
	return open(kmaps[MAP__FUNCTION]->dso->long_name, O_RDONLY);
}
#endif

102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
void parse_line_range_desc(const char *arg, struct line_range *lr)
{
	const char *ptr;
	char *tmp;
	/*
	 * <Syntax>
	 * SRC:SLN[+NUM|-ELN]
	 * FUNC[:SLN[+NUM|-ELN]]
	 */
	ptr = strchr(arg, ':');
	if (ptr) {
		lr->start = (unsigned int)strtoul(ptr + 1, &tmp, 0);
		if (*tmp == '+')
			lr->end = lr->start + (unsigned int)strtoul(tmp + 1,
								    &tmp, 0);
		else if (*tmp == '-')
			lr->end = (unsigned int)strtoul(tmp + 1, &tmp, 0);
		else
			lr->end = 0;
		pr_debug("Line range is %u to %u\n", lr->start, lr->end);
		if (lr->end && lr->start > lr->end)
			semantic_error("Start line must be smaller"
				       " than end line.");
		if (*tmp != '\0')
			semantic_error("Tailing with invalid character '%d'.",
				       *tmp);
128
		tmp = xstrndup(arg, (ptr - arg));
129
	} else
130
		tmp = xstrdup(arg);
131 132 133 134 135 136 137

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

138 139 140 141 142 143 144 145 146 147 148 149
/* 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;
}

150 151 152 153 154 155 156
/* Parse probepoint definition. */
static void parse_perf_probe_probepoint(char *arg, struct probe_point *pp)
{
	char *ptr, *tmp;
	char c, nc = 0;
	/*
	 * <Syntax>
157 158
	 * perf probe [EVENT=]SRC[:LN|;PTN]
	 * perf probe [EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
159 160
	 *
	 * TODO:Group name support
161 162
	 */

163 164
	ptr = strpbrk(arg, ";=@+%");
	if (ptr && *ptr == '=') {	/* Event name */
165 166 167 168 169
		*ptr = '\0';
		tmp = ptr + 1;
		ptr = strchr(arg, ':');
		if (ptr)	/* Group name is not supported yet. */
			semantic_error("Group name is not supported yet.");
170 171 172
		if (!check_event_name(arg))
			semantic_error("%s is bad for event name -it must "
				       "follow C symbol-naming rule.", arg);
173
		pp->event = xstrdup(arg);
174 175 176
		arg = tmp;
	}

177
	ptr = strpbrk(arg, ";:+@%");
178 179 180 181 182 183 184
	if (ptr) {
		nc = *ptr;
		*ptr++ = '\0';
	}

	/* Check arg is function or file and copy it */
	if (strchr(arg, '.'))	/* File */
185
		pp->file = xstrdup(arg);
186
	else			/* Function */
187
		pp->function = xstrdup(arg);
188 189 190 191 192

	/* Parse other options */
	while (ptr) {
		arg = ptr;
		c = nc;
193
		if (c == ';') {	/* Lazy pattern must be the last part */
194
			pp->lazy_line = xstrdup(arg);
195 196 197
			break;
		}
		ptr = strpbrk(arg, ";:+@%");
198 199 200 201 202 203 204 205
		if (ptr) {
			nc = *ptr;
			*ptr++ = '\0';
		}
		switch (c) {
		case ':':	/* Line number */
			pp->line = strtoul(arg, &tmp, 0);
			if (*tmp != '\0')
206 207
				semantic_error("There is non-digit char"
					       " in line number.");
208 209 210 211
			break;
		case '+':	/* Byte offset from a symbol */
			pp->offset = strtoul(arg, &tmp, 0);
			if (*tmp != '\0')
212
				semantic_error("There is non-digit character"
213 214 215 216 217
						" in offset.");
			break;
		case '@':	/* File name */
			if (pp->file)
				semantic_error("SRC@SRC is not allowed.");
218
			pp->file = xstrdup(arg);
219 220 221 222 223 224 225 226 227 228 229 230 231 232
			break;
		case '%':	/* Probe places */
			if (strcmp(arg, "return") == 0) {
				pp->retprobe = 1;
			} else	/* Others not supported yet */
				semantic_error("%%%s is not supported.", arg);
			break;
		default:
			DIE_IF("Program has a bug.");
			break;
		}
	}

	/* Exclusion check */
233 234 235 236 237 238
	if (pp->lazy_line && pp->line)
		semantic_error("Lazy pattern can't be used with line number.");

	if (pp->lazy_line && pp->offset)
		semantic_error("Lazy pattern can't be used with offset.");

239 240 241
	if (pp->line && pp->offset)
		semantic_error("Offset can't be used with line number.");

242 243 244
	if (!pp->line && !pp->lazy_line && pp->file && !pp->function)
		semantic_error("File always requires line number or "
			       "lazy pattern.");
245 246 247 248 249 250 251

	if (pp->offset && !pp->function)
		semantic_error("Offset requires an entry function.");

	if (pp->retprobe && !pp->function)
		semantic_error("Return probe requires an entry function.");

252 253 254
	if ((pp->offset || pp->line || pp->lazy_line) && pp->retprobe)
		semantic_error("Offset/Line/Lazy pattern can't be used with "
			       "return probe.");
255

256 257 258
	pr_debug("symbol:%s file:%s line:%d offset:%d return:%d lazy:%s\n",
		 pp->function, pp->file, pp->line, pp->offset, pp->retprobe,
		 pp->lazy_line);
259 260 261
}

/* Parse perf-probe event definition */
262 263
void parse_perf_probe_event(const char *str, struct probe_point *pp,
			    bool *need_dwarf)
264
{
265
	char **argv;
266 267 268
	int argc, i;

	*need_dwarf = false;
269

270 271 272 273 274
	argv = argv_split(str, &argc);
	if (!argv)
		die("argv_split failed.");
	if (argc > MAX_PROBE_ARGS + 1)
		semantic_error("Too many arguments");
275 276 277

	/* Parse probe point */
	parse_perf_probe_probepoint(argv[0], pp);
278
	if (pp->file || pp->line || pp->lazy_line)
279
		*need_dwarf = true;
280

281
	/* Copy arguments and ensure return probe has no C argument */
282
	pp->nr_args = argc - 1;
283
	pp->args = xzalloc(sizeof(char *) * pp->nr_args);
284
	for (i = 0; i < pp->nr_args; i++) {
285
		pp->args[i] = xstrdup(argv[i + 1]);
286 287 288 289
		if (is_c_varname(pp->args[i])) {
			if (pp->retprobe)
				semantic_error("You can't specify local"
						" variable for kretprobe");
290
			*need_dwarf = true;
291
		}
292
	}
293

294
	argv_free(argv);
295 296
}

297
/* Parse kprobe_events event into struct probe_point */
298
void parse_trace_kprobe_event(const char *str, struct probe_point *pp)
299 300 301 302 303 304 305 306 307 308 309 310 311 312
{
	char pr;
	char *p;
	int ret, i, argc;
	char **argv;

	pr_debug("Parsing kprobe_events: %s\n", str);
	argv = argv_split(str, &argc);
	if (!argv)
		die("argv_split failed.");
	if (argc < 2)
		semantic_error("Too less arguments.");

	/* Scan event and group name. */
313
	ret = sscanf(argv[0], "%c:%a[^/ \t]/%a[^ \t]",
314 315
		     &pr, (float *)(void *)&pp->group,
		     (float *)(void *)&pp->event);
316 317
	if (ret != 3)
		semantic_error("Failed to parse event name: %s", argv[0]);
318
	pr_debug("Group:%s Event:%s probe:%c\n", pp->group, pp->event, pr);
319 320 321 322

	pp->retprobe = (pr == 'r');

	/* Scan function name and offset */
323 324
	ret = sscanf(argv[1], "%a[^+]+%d", (float *)(void *)&pp->function,
		     &pp->offset);
325 326 327 328 329 330 331 332
	if (ret == 1)
		pp->offset = 0;

	/* kprobe_events doesn't have this information */
	pp->line = 0;
	pp->file = NULL;

	pp->nr_args = argc - 2;
333
	pp->args = xzalloc(sizeof(char *) * pp->nr_args);
334 335 336 337
	for (i = 0; i < pp->nr_args; i++) {
		p = strchr(argv[i + 2], '=');
		if (p)	/* We don't need which register is assigned. */
			*p = '\0';
338
		pp->args[i] = xstrdup(argv[i + 2]);
339 340 341 342 343
	}

	argv_free(argv);
}

344 345
/* Synthesize only probe point (not argument) */
int synthesize_perf_probe_point(struct probe_point *pp)
346 347 348
{
	char *buf;
	char offs[64] = "", line[64] = "";
349
	int ret;
350

351
	pp->probes[0] = buf = xzalloc(MAX_CMDLEN);
352
	pp->found = 1;
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
	if (pp->offset) {
		ret = e_snprintf(offs, 64, "+%d", pp->offset);
		if (ret <= 0)
			goto error;
	}
	if (pp->line) {
		ret = e_snprintf(line, 64, ":%d", pp->line);
		if (ret <= 0)
			goto error;
	}

	if (pp->function)
		ret = e_snprintf(buf, MAX_CMDLEN, "%s%s%s%s", pp->function,
				 offs, pp->retprobe ? "%return" : "", line);
	else
368
		ret = e_snprintf(buf, MAX_CMDLEN, "%s%s", pp->file, line);
369 370 371 372
	if (ret <= 0) {
error:
		free(pp->probes[0]);
		pp->probes[0] = NULL;
373
		pp->found = 0;
374 375 376 377 378 379 380 381 382 383 384 385
	}
	return ret;
}

int synthesize_perf_probe_event(struct probe_point *pp)
{
	char *buf;
	int i, len, ret;

	len = synthesize_perf_probe_point(pp);
	if (len < 0)
		return 0;
386

387
	buf = pp->probes[0];
388 389 390 391 392 393 394 395 396 397 398 399
	for (i = 0; i < pp->nr_args; i++) {
		ret = e_snprintf(&buf[len], MAX_CMDLEN - len, " %s",
				 pp->args[i]);
		if (ret <= 0)
			goto error;
		len += ret;
	}
	pp->found = 1;

	return pp->found;
error:
	free(pp->probes[0]);
400
	pp->probes[0] = NULL;
401 402 403 404

	return ret;
}

405 406 407 408 409
int synthesize_trace_kprobe_event(struct probe_point *pp)
{
	char *buf;
	int i, len, ret;

410
	pp->probes[0] = buf = xzalloc(MAX_CMDLEN);
411 412
	ret = e_snprintf(buf, MAX_CMDLEN, "%s+%d", pp->function, pp->offset);
	if (ret <= 0)
413 414 415 416
		goto error;
	len = ret;

	for (i = 0; i < pp->nr_args; i++) {
417 418 419
		ret = e_snprintf(&buf[len], MAX_CMDLEN - len, " %s",
				 pp->args[i]);
		if (ret <= 0)
420 421 422 423 424 425 426 427
			goto error;
		len += ret;
	}
	pp->found = 1;

	return pp->found;
error:
	free(pp->probes[0]);
428
	pp->probes[0] = NULL;
429 430 431 432

	return ret;
}

433 434 435 436 437 438 439 440 441 442 443 444 445
static int open_kprobe_events(int flags, int mode)
{
	char buf[PATH_MAX];
	int ret;

	ret = e_snprintf(buf, PATH_MAX, "%s/../kprobe_events", debugfs_path);
	if (ret < 0)
		die("Failed to make kprobe_events path.");

	ret = open(buf, flags, mode);
	if (ret < 0) {
		if (errno == ENOENT)
			die("kprobe_events file does not exist -"
446
			    " please rebuild with CONFIG_KPROBE_EVENT.");
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487
		else
			die("Could not open kprobe_events file: %s",
			    strerror(errno));
	}
	return ret;
}

/* Get raw string list of current kprobe_events */
static struct strlist *get_trace_kprobe_event_rawlist(int fd)
{
	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);
		if (ret < 0)
			die("strlist__add failed: %s", strerror(-ret));
	}
	fclose(fp);

	return sl;
}

/* Free and zero clear probe_point */
static void clear_probe_point(struct probe_point *pp)
{
	int i;

488 489 490 491
	if (pp->event)
		free(pp->event);
	if (pp->group)
		free(pp->group);
492 493 494 495
	if (pp->function)
		free(pp->function);
	if (pp->file)
		free(pp->file);
496 497
	if (pp->lazy_line)
		free(pp->lazy_line);
498 499 500 501 502 503
	for (i = 0; i < pp->nr_args; i++)
		free(pp->args[i]);
	if (pp->args)
		free(pp->args);
	for (i = 0; i < pp->found; i++)
		free(pp->probes[i]);
504
	memset(pp, 0, sizeof(*pp));
505 506
}

507
/* Show an event */
508 509
static void show_perf_probe_event(const char *event, const char *place,
				  struct probe_point *pp)
510
{
511
	int i, ret;
512 513
	char buf[128];

514
	ret = e_snprintf(buf, 128, "%s:%s", pp->group, event);
515 516
	if (ret < 0)
		die("Failed to copy event: %s", strerror(-ret));
517 518 519 520 521 522 523 524 525 526
	printf("  %-40s (on %s", buf, place);

	if (pp->nr_args > 0) {
		printf(" with");
		for (i = 0; i < pp->nr_args; i++)
			printf(" %s", pp->args[i]);
	}
	printf(")\n");
}

527 528 529
/* List up current perf-probe events */
void show_perf_probe_events(void)
{
530
	int fd;
531 532 533 534
	struct probe_point pp;
	struct strlist *rawlist;
	struct str_node *ent;

535
	setup_pager();
536
	memset(&pp, 0, sizeof(pp));
537

538 539 540 541
	fd = open_kprobe_events(O_RDONLY, 0);
	rawlist = get_trace_kprobe_event_rawlist(fd);
	close(fd);

542
	strlist__for_each(ent, rawlist) {
543
		parse_trace_kprobe_event(ent->s, &pp);
544
		/* Synthesize only event probe point */
545
		synthesize_perf_probe_point(&pp);
546
		/* Show an event */
547
		show_perf_probe_event(pp.event, pp.probes[0], &pp);
548 549 550 551 552 553
		clear_probe_point(&pp);
	}

	strlist__delete(rawlist);
}

554
/* Get current perf-probe event names */
555
static struct strlist *get_perf_event_names(int fd, bool include_group)
556
{
557
	char buf[128];
558 559
	struct strlist *sl, *rawlist;
	struct str_node *ent;
560
	struct probe_point pp;
561

562
	memset(&pp, 0, sizeof(pp));
563 564
	rawlist = get_trace_kprobe_event_rawlist(fd);

565
	sl = strlist__new(true, NULL);
566
	strlist__for_each(ent, rawlist) {
567
		parse_trace_kprobe_event(ent->s, &pp);
568
		if (include_group) {
569 570
			if (e_snprintf(buf, 128, "%s:%s", pp.group,
				       pp.event) < 0)
571 572 573
				die("Failed to copy group:event name.");
			strlist__add(sl, buf);
		} else
574 575
			strlist__add(sl, pp.event);
		clear_probe_point(&pp);
576 577 578 579 580 581 582
	}

	strlist__delete(rawlist);

	return sl;
}

583
static void write_trace_kprobe_event(int fd, const char *buf)
584 585 586
{
	int ret;

587
	pr_debug("Writing event: %s\n", buf);
588 589
	ret = write(fd, buf, strlen(buf));
	if (ret <= 0)
590
		die("Failed to write event: %s", strerror(errno));
591 592
}

593
static void get_new_event_name(char *buf, size_t len, const char *base,
594
			       struct strlist *namelist, bool allow_suffix)
595 596
{
	int i, ret;
597 598 599 600 601 602 603 604

	/* Try no suffix */
	ret = e_snprintf(buf, len, "%s", base);
	if (ret < 0)
		die("snprintf() failed: %s", strerror(-ret));
	if (!strlist__has_entry(namelist, buf))
		return;

605 606 607 608 609 610
	if (!allow_suffix) {
		pr_warning("Error: event \"%s\" already exists. "
			   "(Use -f to force duplicates.)\n", base);
		die("Can't add new event.");
	}

611 612
	/* Try to add suffix */
	for (i = 1; i < MAX_EVENT_INDEX; i++) {
613 614 615 616 617 618 619 620 621 622
		ret = e_snprintf(buf, len, "%s_%d", base, i);
		if (ret < 0)
			die("snprintf() failed: %s", strerror(-ret));
		if (!strlist__has_entry(namelist, buf))
			break;
	}
	if (i == MAX_EVENT_INDEX)
		die("Too many events are on the same function.");
}

623 624
static void __add_trace_kprobe_events(struct probe_point *probes,
				      int nr_probes, bool force_add)
625 626 627 628
{
	int i, j, fd;
	struct probe_point *pp;
	char buf[MAX_CMDLEN];
629 630
	char event[64];
	struct strlist *namelist;
631
	bool allow_suffix;
632

633 634
	fd = open_kprobe_events(O_RDWR, O_APPEND);
	/* Get current event names */
635
	namelist = get_perf_event_names(fd, false);
636 637 638

	for (j = 0; j < nr_probes; j++) {
		pp = probes + j;
639
		if (!pp->event)
640
			pp->event = xstrdup(pp->function);
641
		if (!pp->group)
642
			pp->group = xstrdup(PERFPROBE_GROUP);
643 644
		/* If force_add is true, suffix search is allowed */
		allow_suffix = force_add;
645 646
		for (i = 0; i < pp->found; i++) {
			/* Get an unused new event name */
647 648
			get_new_event_name(event, 64, pp->event, namelist,
					   allow_suffix);
649 650
			snprintf(buf, MAX_CMDLEN, "%c:%s/%s %s\n",
				 pp->retprobe ? 'r' : 'p',
651
				 pp->group, event,
652
				 pp->probes[i]);
653
			write_trace_kprobe_event(fd, buf);
654 655 656
			printf("Added new event:\n");
			/* Get the first parameter (probe-point) */
			sscanf(pp->probes[i], "%s", buf);
657
			show_perf_probe_event(event, buf, pp);
658 659
			/* Add added event name to namelist */
			strlist__add(namelist, event);
660 661 662 663 664 665 666
			/*
			 * 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;
667
		}
668
	}
669 670 671 672
	/* 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 -a sleep 1\n\n", PERFPROBE_GROUP, event);

673
	strlist__delete(namelist);
674 675
	close(fd);
}
676

677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762
/* Currently just checking function name from symbol map */
static void evaluate_probe_point(struct probe_point *pp)
{
	struct symbol *sym;
	sym = map__find_symbol_by_name(kmaps[MAP__FUNCTION],
				       pp->function, NULL);
	if (!sym)
		die("Kernel symbol \'%s\' not found - probe not added.",
		    pp->function);
}

void add_trace_kprobe_events(struct probe_point *probes, int nr_probes,
			     bool force_add, bool need_dwarf)
{
	int i, ret;
	struct probe_point *pp;
#ifndef NO_DWARF_SUPPORT
	int fd;
#endif
	/* Add probes */
	init_vmlinux();

	if (need_dwarf)
#ifdef NO_DWARF_SUPPORT
		die("Debuginfo-analysis is not supported");
#else	/* !NO_DWARF_SUPPORT */
		pr_debug("Some probes require debuginfo.\n");

	fd = open_vmlinux();
	if (fd < 0) {
		if (need_dwarf)
			die("Could not open debuginfo file.");

		pr_debug("Could not open vmlinux/module file."
			 " Try to use symbols.\n");
		goto end_dwarf;
	}

	/* Searching probe points */
	for (i = 0; i < nr_probes; i++) {
		pp = &probes[i];
		if (pp->found)
			continue;

		lseek(fd, SEEK_SET, 0);
		ret = find_probe_point(fd, pp);
		if (ret > 0)
			continue;
		if (ret == 0) {	/* No error but failed to find probe point. */
			synthesize_perf_probe_point(pp);
			die("Probe point '%s' not found. - probe not added.",
			    pp->probes[0]);
		}
		/* Error path */
		if (need_dwarf) {
			if (ret == -ENOENT)
				pr_warning("No dwarf info found in the vmlinux - please rebuild with CONFIG_DEBUG_INFO=y.\n");
			die("Could not analyze debuginfo.");
		}
		pr_debug("An error occurred in debuginfo analysis."
			 " Try to use symbols.\n");
		break;
	}
	close(fd);

end_dwarf:
#endif /* !NO_DWARF_SUPPORT */

	/* Synthesize probes without dwarf */
	for (i = 0; i < nr_probes; i++) {
		pp = &probes[i];
		if (pp->found)	/* This probe is already found. */
			continue;

		evaluate_probe_point(pp);
		ret = synthesize_trace_kprobe_event(pp);
		if (ret == -E2BIG)
			die("probe point definition becomes too long.");
		else if (ret < 0)
			die("Failed to synthesize a probe point.");
	}

	/* Settng up probe points */
	__add_trace_kprobe_events(probes, nr_probes, force_add);
}

763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779
static void __del_trace_kprobe_event(int fd, struct str_node *ent)
{
	char *p;
	char buf[128];

	/* Convert from perf-probe event to trace-kprobe event */
	if (e_snprintf(buf, 128, "-:%s", ent->s) < 0)
		die("Failed to copy event.");
	p = strchr(buf + 2, ':');
	if (!p)
		die("Internal error: %s should have ':' but not.", ent->s);
	*p = '/';

	write_trace_kprobe_event(fd, buf);
	printf("Remove event: %s\n", ent->s);
}

780 781 782 783
static void del_trace_kprobe_event(int fd, const char *group,
				   const char *event, struct strlist *namelist)
{
	char buf[128];
784 785
	struct str_node *ent, *n;
	int found = 0;
786 787 788 789

	if (e_snprintf(buf, 128, "%s:%s", group, event) < 0)
		die("Failed to copy event.");

790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806
	if (strpbrk(buf, "*?")) { /* Glob-exp */
		strlist__for_each_safe(ent, n, namelist)
			if (strglobmatch(ent->s, buf)) {
				found++;
				__del_trace_kprobe_event(fd, ent);
				strlist__remove(namelist, ent);
			}
	} else {
		ent = strlist__find(namelist, buf);
		if (ent) {
			found++;
			__del_trace_kprobe_event(fd, ent);
			strlist__remove(namelist, ent);
		}
	}
	if (found == 0)
		pr_info("Info: event \"%s\" does not exist, could not remove it.\n", buf);
807 808 809 810 811 812 813 814 815 816 817 818 819 820
}

void del_trace_kprobe_events(struct strlist *dellist)
{
	int fd;
	const char *group, *event;
	char *p, *str;
	struct str_node *ent;
	struct strlist *namelist;

	fd = open_kprobe_events(O_RDWR, O_APPEND);
	/* Get current event names */
	namelist = get_perf_event_names(fd, true);

821
	strlist__for_each(ent, dellist) {
822
		str = xstrdup(ent->s);
823
		pr_debug("Parsing: %s\n", str);
824 825 826 827 828 829
		p = strchr(str, ':');
		if (p) {
			group = str;
			*p = '\0';
			event = p + 1;
		} else {
830
			group = "*";
831 832
			event = str;
		}
833
		pr_debug("Group: %s, Event: %s\n", group, event);
834 835 836 837 838 839 840
		del_trace_kprobe_event(fd, group, event, namelist);
		free(str);
	}
	strlist__delete(namelist);
	close(fd);
}

841
#define LINEBUF_SIZE 256
842
#define NR_ADDITIONAL_LINES 2
843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881

static void show_one_line(FILE *fp, unsigned int l, bool skip, bool show_num)
{
	char buf[LINEBUF_SIZE];
	const char *color = PERF_COLOR_BLUE;

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

	while (strlen(buf) == LINEBUF_SIZE - 1 &&
	       buf[LINEBUF_SIZE - 2] != '\n') {
		if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
			goto error;
		if (!skip) {
			if (show_num)
				fprintf(stdout, "%s", buf);
			else
				color_fprintf(stdout, color, "%s", buf);
		}
	}
	return;
error:
	if (feof(fp))
		die("Source file is shorter than expected.");
	else
		die("File read error: %s", strerror(errno));
}

void show_line_range(struct line_range *lr)
{
	unsigned int l = 1;
	struct line_node *ln;
	FILE *fp;
882 883 884 885 886 887 888 889 890 891 892
	int fd, ret;

	/* Search a line range */
	init_vmlinux();
	fd = open_vmlinux();
	if (fd < 0)
		die("Could not open debuginfo file.");
	ret = find_line_range(fd, lr);
	if (ret <= 0)
		die("Source line is not found.\n");
	close(fd);
893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913

	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");
	if (fp == NULL)
		die("Failed to open %s: %s", lr->path, strerror(errno));
	/* Skip to starting line number */
	while (l < lr->start)
		show_one_line(fp, l++, true, false);

	list_for_each_entry(ln, &lr->line_list, list) {
		while (ln->line > l)
			show_one_line(fp, (l++) - lr->offset, false, false);
		show_one_line(fp, (l++) - lr->offset, false, true);
	}
914 915 916 917 918 919

	if (lr->end == INT_MAX)
		lr->end = l + NR_ADDITIONAL_LINES;
	while (l < lr->end && !feof(fp))
		show_one_line(fp, (l++) - lr->offset, false, false);

920 921
	fclose(fp);
}
922 923