builtin-probe.c 6.4 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 32 33 34 35 36 37
/*
 * builtin-probe.c
 *
 * Builtin probe command: Set up probe events by C expression
 *
 * 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>

#undef _GNU_SOURCE
#include "perf.h"
#include "builtin.h"
#include "util/util.h"
38
#include "util/strlist.h"
39
#include "util/symbol.h"
40
#include "util/debug.h"
41
#include "util/debugfs.h"
42 43 44
#include "util/parse-options.h"
#include "util/parse-events.h"	/* For debugfs_path */
#include "util/probe-finder.h"
45
#include "util/probe-event.h"
46 47 48 49 50

#define MAX_PATH_LEN 256

/* Session management structure */
static struct {
51 52
	bool need_dwarf;
	bool list_events;
53
	bool force_add;
54
	bool show_lines;
55 56
	int nr_probe;
	struct probe_point probes[MAX_PROBES];
57
	struct strlist *dellist;
58
	struct line_range line_range;
59
} params;
60

61

62 63
/* Parse an event definition. Note that any error must die. */
static void parse_probe_event(const char *str)
64
{
65
	struct probe_point *pp = &params.probes[params.nr_probe];
66

67 68
	pr_debug("probe-definition(%d): %s\n", params.nr_probe, str);
	if (++params.nr_probe == MAX_PROBES)
69
		die("Too many probes (> %d) are specified.", MAX_PROBES);
70

71
	/* Parse perf-probe event into probe_point */
72
	parse_perf_probe_event(str, pp, &params.need_dwarf);
73

74
	pr_debug("%d arguments\n", pp->nr_args);
75 76
}

77 78 79 80 81 82 83 84 85
static void parse_probe_event_argv(int argc, const char **argv)
{
	int i, len;
	char *buf;

	/* Bind up rest arguments */
	len = 0;
	for (i = 0; i < argc; i++)
		len += strlen(argv[i]) + 1;
86
	buf = xzalloc(len + 1);
87 88 89 90 91 92 93
	len = 0;
	for (i = 0; i < argc; i++)
		len += sprintf(&buf[len], "%s ", argv[i]);
	parse_probe_event(buf);
	free(buf);
}

94
static int opt_add_probe_event(const struct option *opt __used,
95 96 97
			      const char *str, int unset __used)
{
	if (str)
98
		parse_probe_event(str);
99 100 101
	return 0;
}

102 103 104 105
static int opt_del_probe_event(const struct option *opt __used,
			       const char *str, int unset __used)
{
	if (str) {
106 107 108
		if (!params.dellist)
			params.dellist = strlist__new(true, NULL);
		strlist__add(params.dellist, str);
109 110 111 112
	}
	return 0;
}

113
#ifndef NO_DWARF_SUPPORT
114 115 116 117
static int opt_show_lines(const struct option *opt __used,
			  const char *str, int unset __used)
{
	if (str)
118 119 120
		parse_line_range_desc(str, &params.line_range);
	INIT_LIST_HEAD(&params.line_range.line_list);
	params.show_lines = true;
121 122
	return 0;
}
123
#endif
124 125

static const char * const probe_usage[] = {
126 127
	"perf probe [<options>] 'PROBEDEF' ['PROBEDEF' ...]",
	"perf probe [<options>] --add 'PROBEDEF' [--add 'PROBEDEF' ...]",
128
	"perf probe [<options>] --del '[GROUP:]EVENT' ...",
129
	"perf probe --list",
130
#ifndef NO_DWARF_SUPPORT
131
	"perf probe --line 'LINEDESC'",
132
#endif
133 134 135 136
	NULL
};

static const struct option options[] = {
137 138
	OPT_BOOLEAN('v', "verbose", &verbose,
		    "be more verbose (show parsed arguments, etc)"),
139
#ifndef NO_DWARF_SUPPORT
140
	OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
141
		   "file", "vmlinux pathname"),
142
#endif
143
	OPT_BOOLEAN('l', "list", &params.list_events,
144
		    "list up current probe events"),
145 146
	OPT_CALLBACK('d', "del", NULL, "[GROUP:]EVENT", "delete a probe event.",
		opt_del_probe_event),
147
	OPT_CALLBACK('a', "add", NULL,
148
#ifdef NO_DWARF_SUPPORT
149
		"[EVENT=]FUNC[+OFF|%return] [ARG ...]",
150
#else
151
		"[EVENT=]FUNC[@SRC][+OFF|%return|:RL|;PT]|SRC:AL|SRC;PT"
152
		" [ARG ...]",
153
#endif
154
		"probe point definition, where\n"
155 156
		"\t\tGROUP:\tGroup name (optional)\n"
		"\t\tEVENT:\tEvent name\n"
157
		"\t\tFUNC:\tFunction name\n"
158
		"\t\tOFF:\tOffset from function entry (in byte)\n"
159
		"\t\t%return:\tPut the probe at function return\n"
160
#ifdef NO_DWARF_SUPPORT
161 162
		"\t\tARG:\tProbe argument (only \n"
#else
163
		"\t\tSRC:\tSource code path\n"
164 165 166
		"\t\tRL:\tRelative line number from function entry.\n"
		"\t\tAL:\tAbsolute line number in file.\n"
		"\t\tPT:\tLazy expression of line code.\n"
167
		"\t\tARG:\tProbe argument (local variable name or\n"
168
#endif
169
		"\t\t\tkprobe-tracer argument format.)\n",
170
		opt_add_probe_event),
171
	OPT_BOOLEAN('f', "force", &params.force_add, "forcibly add events"
172
		    " with existing name"),
173
#ifndef NO_DWARF_SUPPORT
174 175 176 177
	OPT_CALLBACK('L', "line", NULL,
		     "FUNC[:RLN[+NUM|:RLN2]]|SRC:ALN[+NUM|:ALN2]",
		     "Show source code lines.", opt_show_lines),
#endif
178 179 180 181 182 183
	OPT_END()
};

int cmd_probe(int argc, const char **argv, const char *prefix __used)
{
	argc = parse_options(argc, argv, options, probe_usage,
184
			     PARSE_OPT_STOP_AT_NON_OPTION);
185 186 187 188 189
	if (argc > 0) {
		if (strcmp(argv[0], "-") == 0) {
			pr_warning("  Error: '-' is not supported.\n");
			usage_with_options(probe_usage, options);
		}
190
		parse_probe_event_argv(argc, argv);
191
	}
192

193 194
	if ((!params.nr_probe && !params.dellist && !params.list_events &&
	     !params.show_lines))
195 196
		usage_with_options(probe_usage, options);

197 198 199
	if (debugfs_valid_mountpoint(debugfs_path) < 0)
		die("Failed to find debugfs path.");

200 201
	if (params.list_events) {
		if (params.nr_probe != 0 || params.dellist) {
202 203 204 205
			pr_warning("  Error: Don't use --list with"
				   " --add/--del.\n");
			usage_with_options(probe_usage, options);
		}
206
		if (params.show_lines) {
207 208 209
			pr_warning("  Error: Don't use --list with --line.\n");
			usage_with_options(probe_usage, options);
		}
210 211 212 213
		show_perf_probe_events();
		return 0;
	}

214
#ifndef NO_DWARF_SUPPORT
215 216
	if (params.show_lines) {
		if (params.nr_probe != 0 || params.dellist) {
217 218 219 220
			pr_warning("  Error: Don't use --line with"
				   " --add/--del.\n");
			usage_with_options(probe_usage, options);
		}
221

222
		show_line_range(&params.line_range);
223 224 225 226
		return 0;
	}
#endif

227 228 229 230
	if (params.dellist) {
		del_trace_kprobe_events(params.dellist);
		strlist__delete(params.dellist);
		if (params.nr_probe == 0)
231 232 233
			return 0;
	}

234 235
	add_trace_kprobe_events(params.probes, params.nr_probe,
				params.force_add, params.need_dwarf);
236 237 238
	return 0;
}