probe-event.c 15.9 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 36

#undef _GNU_SOURCE
#include "event.h"
37
#include "string.h"
38
#include "strlist.h"
39
#include "debug.h"
40
#include "cache.h"
41 42 43 44 45 46 47 48 49
#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)

50
/* If there is no space to write, returns -E2BIG. */
51 52 53
static int e_snprintf(char *str, size_t size, const char *format, ...)
	__attribute__((format(printf, 3, 4)));

54 55 56 57 58 59 60 61 62 63 64 65
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;
}

66 67 68 69 70 71 72 73 74 75 76 77
/* 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;
}

78 79 80 81 82 83 84
/* Parse probepoint definition. */
static void parse_perf_probe_probepoint(char *arg, struct probe_point *pp)
{
	char *ptr, *tmp;
	char c, nc = 0;
	/*
	 * <Syntax>
85 86 87 88
	 * perf probe [EVENT=]SRC:LN
	 * perf probe [EVENT=]FUNC[+OFFS|%return][@SRC]
	 *
	 * TODO:Group name support
89 90
	 */

91 92 93 94 95 96 97
	ptr = strchr(arg, '=');
	if (ptr) {	/* Event name */
		*ptr = '\0';
		tmp = ptr + 1;
		ptr = strchr(arg, ':');
		if (ptr)	/* Group name is not supported yet. */
			semantic_error("Group name is not supported yet.");
98 99 100
		if (!check_event_name(arg))
			semantic_error("%s is bad for event name -it must "
				       "follow C symbol-naming rule.", arg);
101 102 103 104
		pp->event = strdup(arg);
		arg = tmp;
	}

105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
	ptr = strpbrk(arg, ":+@%");
	if (ptr) {
		nc = *ptr;
		*ptr++ = '\0';
	}

	/* Check arg is function or file and copy it */
	if (strchr(arg, '.'))	/* File */
		pp->file = strdup(arg);
	else			/* Function */
		pp->function = strdup(arg);
	DIE_IF(pp->file == NULL && pp->function == NULL);

	/* Parse other options */
	while (ptr) {
		arg = ptr;
		c = nc;
		ptr = strpbrk(arg, ":+@%");
		if (ptr) {
			nc = *ptr;
			*ptr++ = '\0';
		}
		switch (c) {
		case ':':	/* Line number */
			pp->line = strtoul(arg, &tmp, 0);
			if (*tmp != '\0')
				semantic_error("There is non-digit charactor"
						" in line number.");
			break;
		case '+':	/* Byte offset from a symbol */
			pp->offset = strtoul(arg, &tmp, 0);
			if (*tmp != '\0')
				semantic_error("There is non-digit charactor"
						" in offset.");
			break;
		case '@':	/* File name */
			if (pp->file)
				semantic_error("SRC@SRC is not allowed.");
			pp->file = strdup(arg);
			DIE_IF(pp->file == NULL);
			if (ptr)
				semantic_error("@SRC must be the last "
					       "option.");
			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 */
	if (pp->line && pp->offset)
		semantic_error("Offset can't be used with line number.");

	if (!pp->line && pp->file && !pp->function)
		semantic_error("File always requires line number.");

	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.");

	if ((pp->offset || pp->line) && pp->retprobe)
		semantic_error("Offset/Line can't be used with return probe.");

	pr_debug("symbol:%s file:%s line:%d offset:%d, return:%d\n",
		 pp->function, pp->file, pp->line, pp->offset, pp->retprobe);
}

/* Parse perf-probe event definition */
182 183
void parse_perf_probe_event(const char *str, struct probe_point *pp,
			    bool *need_dwarf)
184
{
185
	char **argv;
186 187 188
	int argc, i;

	*need_dwarf = false;
189

190 191 192 193 194
	argv = argv_split(str, &argc);
	if (!argv)
		die("argv_split failed.");
	if (argc > MAX_PROBE_ARGS + 1)
		semantic_error("Too many arguments");
195 196 197 198

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

201
	/* Copy arguments and ensure return probe has no C argument */
202
	pp->nr_args = argc - 1;
203 204 205 206 207
	pp->args = zalloc(sizeof(char *) * pp->nr_args);
	for (i = 0; i < pp->nr_args; i++) {
		pp->args[i] = strdup(argv[i + 1]);
		if (!pp->args[i])
			die("Failed to copy argument.");
208 209 210 211
		if (is_c_varname(pp->args[i])) {
			if (pp->retprobe)
				semantic_error("You can't specify local"
						" variable for kretprobe");
212
			*need_dwarf = true;
213
		}
214
	}
215

216
	argv_free(argv);
217 218
}

219
/* Parse kprobe_events event into struct probe_point */
220
void parse_trace_kprobe_event(const char *str, struct probe_point *pp)
221 222 223 224 225 226 227 228 229 230 231 232 233 234
{
	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. */
235
	ret = sscanf(argv[0], "%c:%a[^/ \t]/%a[^ \t]",
236 237
		     &pr, (float *)(void *)&pp->group,
		     (float *)(void *)&pp->event);
238 239
	if (ret != 3)
		semantic_error("Failed to parse event name: %s", argv[0]);
240
	pr_debug("Group:%s Event:%s probe:%c\n", pp->group, pp->event, pr);
241 242 243 244

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

	/* Scan function name and offset */
245 246
	ret = sscanf(argv[1], "%a[^+]+%d", (float *)(void *)&pp->function,
		     &pp->offset);
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
	if (ret == 1)
		pp->offset = 0;

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

	pp->nr_args = argc - 2;
	pp->args = zalloc(sizeof(char *) * pp->nr_args);
	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';
		pp->args[i] = strdup(argv[i + 2]);
		if (!pp->args[i])
			die("Failed to copy argument.");
	}

	argv_free(argv);
}

268 269
/* Synthesize only probe point (not argument) */
int synthesize_perf_probe_point(struct probe_point *pp)
270 271 272
{
	char *buf;
	char offs[64] = "", line[64] = "";
273
	int ret;
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292

	pp->probes[0] = buf = zalloc(MAX_CMDLEN);
	if (!buf)
		die("Failed to allocate memory by zalloc.");
	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
293
		ret = e_snprintf(buf, MAX_CMDLEN, "%s%s", pp->file, line);
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
	if (ret <= 0) {
error:
		free(pp->probes[0]);
		pp->probes[0] = NULL;
	}
	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;
310

311
	buf = pp->probes[0];
312 313 314 315 316 317 318 319 320 321 322 323
	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]);
324
	pp->probes[0] = NULL;
325 326 327 328

	return ret;
}

329 330 331 332 333 334 335 336
int synthesize_trace_kprobe_event(struct probe_point *pp)
{
	char *buf;
	int i, len, ret;

	pp->probes[0] = buf = zalloc(MAX_CMDLEN);
	if (!buf)
		die("Failed to allocate memory by zalloc.");
337 338
	ret = e_snprintf(buf, MAX_CMDLEN, "%s+%d", pp->function, pp->offset);
	if (ret <= 0)
339 340 341 342
		goto error;
	len = ret;

	for (i = 0; i < pp->nr_args; i++) {
343 344 345
		ret = e_snprintf(&buf[len], MAX_CMDLEN - len, " %s",
				 pp->args[i]);
		if (ret <= 0)
346 347 348 349 350 351 352 353
			goto error;
		len += ret;
	}
	pp->found = 1;

	return pp->found;
error:
	free(pp->probes[0]);
354
	pp->probes[0] = NULL;
355 356 357 358

	return ret;
}

359 360 361 362 363 364 365 366 367 368 369 370 371
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 -"
372
			    " please rebuild with CONFIG_KPROBE_EVENT.");
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
		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;

414 415 416 417
	if (pp->event)
		free(pp->event);
	if (pp->group)
		free(pp->group);
418 419 420 421 422 423 424 425 426 427
	if (pp->function)
		free(pp->function);
	if (pp->file)
		free(pp->file);
	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]);
428
	memset(pp, 0, sizeof(*pp));
429 430
}

431
/* Show an event */
432 433
static void show_perf_probe_event(const char *event, const char *place,
				  struct probe_point *pp)
434
{
435
	int i, ret;
436 437
	char buf[128];

438
	ret = e_snprintf(buf, 128, "%s:%s", pp->group, event);
439 440
	if (ret < 0)
		die("Failed to copy event: %s", strerror(-ret));
441 442 443 444 445 446 447 448 449 450
	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");
}

451 452 453
/* List up current perf-probe events */
void show_perf_probe_events(void)
{
454
	int fd;
455 456 457 458
	struct probe_point pp;
	struct strlist *rawlist;
	struct str_node *ent;

459 460
	setup_pager();

461 462 463 464
	fd = open_kprobe_events(O_RDONLY, 0);
	rawlist = get_trace_kprobe_event_rawlist(fd);
	close(fd);

465
	strlist__for_each(ent, rawlist) {
466
		parse_trace_kprobe_event(ent->s, &pp);
467
		/* Synthesize only event probe point */
468
		synthesize_perf_probe_point(&pp);
469
		/* Show an event */
470
		show_perf_probe_event(pp.event, pp.probes[0], &pp);
471 472 473 474 475 476
		clear_probe_point(&pp);
	}

	strlist__delete(rawlist);
}

477
/* Get current perf-probe event names */
478
static struct strlist *get_perf_event_names(int fd, bool include_group)
479
{
480
	char buf[128];
481 482
	struct strlist *sl, *rawlist;
	struct str_node *ent;
483
	struct probe_point pp;
484

485
	memset(&pp, 0, sizeof(pp));
486 487
	rawlist = get_trace_kprobe_event_rawlist(fd);

488
	sl = strlist__new(true, NULL);
489
	strlist__for_each(ent, rawlist) {
490
		parse_trace_kprobe_event(ent->s, &pp);
491
		if (include_group) {
492 493
			if (e_snprintf(buf, 128, "%s:%s", pp.group,
				       pp.event) < 0)
494 495 496
				die("Failed to copy group:event name.");
			strlist__add(sl, buf);
		} else
497 498
			strlist__add(sl, pp.event);
		clear_probe_point(&pp);
499 500 501 502 503 504 505
	}

	strlist__delete(rawlist);

	return sl;
}

506
static void write_trace_kprobe_event(int fd, const char *buf)
507 508 509
{
	int ret;

510
	pr_debug("Writing event: %s\n", buf);
511 512
	ret = write(fd, buf, strlen(buf));
	if (ret <= 0)
513
		die("Failed to write event: %s", strerror(errno));
514 515
}

516
static void get_new_event_name(char *buf, size_t len, const char *base,
517
			       struct strlist *namelist, bool allow_suffix)
518 519
{
	int i, ret;
520 521 522 523 524 525 526 527

	/* 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;

528 529 530 531 532 533
	if (!allow_suffix) {
		pr_warning("Error: event \"%s\" already exists. "
			   "(Use -f to force duplicates.)\n", base);
		die("Can't add new event.");
	}

534 535
	/* Try to add suffix */
	for (i = 1; i < MAX_EVENT_INDEX; i++) {
536 537 538 539 540 541 542 543 544 545
		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.");
}

546 547
void add_trace_kprobe_events(struct probe_point *probes, int nr_probes,
			     bool force_add)
548 549 550 551
{
	int i, j, fd;
	struct probe_point *pp;
	char buf[MAX_CMDLEN];
552 553
	char event[64];
	struct strlist *namelist;
554
	bool allow_suffix;
555

556 557
	fd = open_kprobe_events(O_RDWR, O_APPEND);
	/* Get current event names */
558
	namelist = get_perf_event_names(fd, false);
559 560 561

	for (j = 0; j < nr_probes; j++) {
		pp = probes + j;
562 563 564 565 566
		if (!pp->event)
			pp->event = strdup(pp->function);
		if (!pp->group)
			pp->group = strdup(PERFPROBE_GROUP);
		DIE_IF(!pp->event || !pp->group);
567 568
		/* If force_add is true, suffix search is allowed */
		allow_suffix = force_add;
569 570
		for (i = 0; i < pp->found; i++) {
			/* Get an unused new event name */
571 572
			get_new_event_name(event, 64, pp->event, namelist,
					   allow_suffix);
573 574
			snprintf(buf, MAX_CMDLEN, "%c:%s/%s %s\n",
				 pp->retprobe ? 'r' : 'p',
575
				 pp->group, event,
576
				 pp->probes[i]);
577
			write_trace_kprobe_event(fd, buf);
578 579 580
			printf("Added new event:\n");
			/* Get the first parameter (probe-point) */
			sscanf(pp->probes[i], "%s", buf);
581
			show_perf_probe_event(event, buf, pp);
582 583
			/* Add added event name to namelist */
			strlist__add(namelist, event);
584 585 586 587 588 589 590
			/*
			 * 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;
591
		}
592
	}
593 594 595 596
	/* 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);

597
	strlist__delete(namelist);
598 599
	close(fd);
}
600

601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617
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);
}

618 619 620 621
static void del_trace_kprobe_event(int fd, const char *group,
				   const char *event, struct strlist *namelist)
{
	char buf[128];
622 623
	struct str_node *ent, *n;
	int found = 0;
624 625 626 627

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

628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644
	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);
645 646 647 648 649 650 651 652 653 654 655 656 657 658
}

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

659
	strlist__for_each(ent, dellist) {
660 661 662
		str = strdup(ent->s);
		if (!str)
			die("Failed to copy event.");
663
		pr_debug("Parsing: %s\n", str);
664 665 666 667 668 669
		p = strchr(str, ':');
		if (p) {
			group = str;
			*p = '\0';
			event = p + 1;
		} else {
670
			group = "*";
671 672
			event = str;
		}
673
		pr_debug("Group: %s, Event: %s\n", group, event);
674 675 676 677 678 679 680
		del_trace_kprobe_event(fd, group, event, namelist);
		free(str);
	}
	strlist__delete(namelist);
	close(fd);
}