builtin-trace.c 7.7 KB
Newer Older
F
Frederic Weisbecker 已提交
1 2 3 4 5 6 7
#include "builtin.h"

#include "util/util.h"
#include "util/cache.h"
#include "util/symbol.h"
#include "util/thread.h"
#include "util/header.h"
I
Ingo Molnar 已提交
8 9
#include "util/exec_cmd.h"
#include "util/trace-event.h"
F
Frederic Weisbecker 已提交
10

T
Tom Zanussi 已提交
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 38 39 40 41 42
static char const		*script_name;
static char const		*generate_script_lang;

static int default_start_script(const char *script __attribute((unused)))
{
	return 0;
}

static int default_stop_script(void)
{
	return 0;
}

static int default_generate_script(const char *outfile __attribute ((unused)))
{
	return 0;
}

static struct scripting_ops default_scripting_ops = {
	.start_script		= default_start_script,
	.stop_script		= default_stop_script,
	.process_event		= print_event,
	.generate_script	= default_generate_script,
};

static struct scripting_ops	*scripting_ops;

static void setup_scripting(void)
{
	/* make sure PERF_EXEC_PATH is set for scripts */
	perf_set_argv_exec_path(perf_exec_path());

43 44
	setup_perl_scripting();

T
Tom Zanussi 已提交
45 46 47 48 49 50 51 52
	scripting_ops = &default_scripting_ops;
}

static int cleanup_scripting(void)
{
	return scripting_ops->stop_script();
}

F
Frederic Weisbecker 已提交
53 54 55 56 57 58
#include "util/parse-options.h"

#include "perf.h"
#include "util/debug.h"

#include "util/trace-event.h"
59
#include "util/data_map.h"
T
Tom Zanussi 已提交
60
#include "util/exec_cmd.h"
F
Frederic Weisbecker 已提交
61

T
Tom Zanussi 已提交
62
static char const		*input_name = "perf.data";
F
Frederic Weisbecker 已提交
63

T
Tom Zanussi 已提交
64 65
static struct perf_header	*header;
static u64			sample_type;
F
Frederic Weisbecker 已提交
66

67
static int process_sample_event(event_t *event)
F
Frederic Weisbecker 已提交
68 69
{
	u64 ip = event->ip.ip;
70
	u64 timestamp = -1;
I
Ingo Molnar 已提交
71
	u32 cpu = -1;
F
Frederic Weisbecker 已提交
72 73
	u64 period = 1;
	void *more_data = event->ip.__more_data;
74
	struct thread *thread = threads__findnew(event->ip.pid);
F
Frederic Weisbecker 已提交
75

76 77 78 79 80
	if (sample_type & PERF_SAMPLE_TIME) {
		timestamp = *(u64 *)more_data;
		more_data += sizeof(u64);
	}

I
Ingo Molnar 已提交
81 82 83 84 85 86
	if (sample_type & PERF_SAMPLE_CPU) {
		cpu = *(u32 *)more_data;
		more_data += sizeof(u32);
		more_data += sizeof(u32); /* reserved */
	}

F
Frederic Weisbecker 已提交
87 88 89 90 91
	if (sample_type & PERF_SAMPLE_PERIOD) {
		period = *(u64 *)more_data;
		more_data += sizeof(u64);
	}

92
	dump_printf("(IP, %d): %d/%d: %p period: %Ld\n",
F
Frederic Weisbecker 已提交
93 94 95 96 97 98
		event->header.misc,
		event->ip.pid, event->ip.tid,
		(void *)(long)ip,
		(long long)period);

	if (thread == NULL) {
99 100
		pr_debug("problem processing %d event, skipping it.\n",
			 event->header.type);
F
Frederic Weisbecker 已提交
101 102 103
		return -1;
	}

104 105
	dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);

F
Frederic Weisbecker 已提交
106 107 108 109 110 111 112 113 114 115 116
	if (sample_type & PERF_SAMPLE_RAW) {
		struct {
			u32 size;
			char data[0];
		} *raw = more_data;

		/*
		 * FIXME: better resolve from pid from the struct trace_entry
		 * field, although it should be the same than this perf
		 * event pid
		 */
T
Tom Zanussi 已提交
117 118
		scripting_ops->process_event(cpu, raw->data, raw->size,
					     timestamp, thread->comm);
F
Frederic Weisbecker 已提交
119
	}
120
	event__stats.total += period;
F
Frederic Weisbecker 已提交
121 122 123 124

	return 0;
}

125
static int sample_type_check(u64 type)
F
Frederic Weisbecker 已提交
126
{
127
	sample_type = type;
F
Frederic Weisbecker 已提交
128

129 130 131 132
	if (!(sample_type & PERF_SAMPLE_RAW)) {
		fprintf(stderr,
			"No trace sample to read. Did you call perf record "
			"without -R?");
F
Frederic Weisbecker 已提交
133 134 135 136 137 138
		return -1;
	}

	return 0;
}

139 140
static struct perf_file_handler file_handler = {
	.process_sample_event	= process_sample_event,
141
	.process_comm_event	= event__process_comm,
142 143 144
	.sample_type_check	= sample_type_check,
};

F
Frederic Weisbecker 已提交
145 146
static int __cmd_trace(void)
{
147
	register_idle_thread();
148
	register_perf_file_handler(&file_handler);
F
Frederic Weisbecker 已提交
149

150
	return mmap_dispatch_perf_file(&header, input_name,
151
				       0, 0, &event__cwdlen, &event__cwd);
F
Frederic Weisbecker 已提交
152 153
}

T
Tom Zanussi 已提交
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 182 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 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
struct script_spec {
	struct list_head	node;
	struct scripting_ops	*ops;
	char			spec[0];
};

LIST_HEAD(script_specs);

static struct script_spec *script_spec__new(const char *spec,
					    struct scripting_ops *ops)
{
	struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);

	if (s != NULL) {
		strcpy(s->spec, spec);
		s->ops = ops;
	}

	return s;
}

static void script_spec__delete(struct script_spec *s)
{
	free(s->spec);
	free(s);
}

static void script_spec__add(struct script_spec *s)
{
	list_add_tail(&s->node, &script_specs);
}

static struct script_spec *script_spec__find(const char *spec)
{
	struct script_spec *s;

	list_for_each_entry(s, &script_specs, node)
		if (strcasecmp(s->spec, spec) == 0)
			return s;
	return NULL;
}

static struct script_spec *script_spec__findnew(const char *spec,
						struct scripting_ops *ops)
{
	struct script_spec *s = script_spec__find(spec);

	if (s)
		return s;

	s = script_spec__new(spec, ops);
	if (!s)
		goto out_delete_spec;

	script_spec__add(s);

	return s;

out_delete_spec:
	script_spec__delete(s);

	return NULL;
}

int script_spec_register(const char *spec, struct scripting_ops *ops)
{
	struct script_spec *s;

	s = script_spec__find(spec);
	if (s)
		return -1;

	s = script_spec__findnew(spec, ops);
	if (!s)
		return -1;

	return 0;
}

static struct scripting_ops *script_spec__lookup(const char *spec)
{
	struct script_spec *s = script_spec__find(spec);
	if (!s)
		return NULL;

	return s->ops;
}

static void list_available_languages(void)
{
	struct script_spec *s;

	fprintf(stderr, "\n");
	fprintf(stderr, "Scripting language extensions (used in "
		"perf trace -s [spec:]script.[spec]):\n\n");

	list_for_each_entry(s, &script_specs, node)
		fprintf(stderr, "  %-42s [%s]\n", s->spec, s->ops->name);

	fprintf(stderr, "\n");
}

static int parse_scriptname(const struct option *opt __used,
			    const char *str, int unset __used)
{
	char spec[PATH_MAX];
	const char *script, *ext;
	int len;

	if (strcmp(str, "list") == 0) {
		list_available_languages();
		return 0;
	}

	script = strchr(str, ':');
	if (script) {
		len = script - str;
		if (len >= PATH_MAX) {
			fprintf(stderr, "invalid language specifier");
			return -1;
		}
		strncpy(spec, str, len);
		spec[len] = '\0';
		scripting_ops = script_spec__lookup(spec);
		if (!scripting_ops) {
			fprintf(stderr, "invalid language specifier");
			return -1;
		}
		script++;
	} else {
		script = str;
		ext = strchr(script, '.');
		if (!ext) {
			fprintf(stderr, "invalid script extension");
			return -1;
		}
		scripting_ops = script_spec__lookup(++ext);
		if (!scripting_ops) {
			fprintf(stderr, "invalid script extension");
			return -1;
		}
	}

	script_name = strdup(script);

	return 0;
}

F
Frederic Weisbecker 已提交
302 303 304 305 306 307 308 309 310 311
static const char * const annotate_usage[] = {
	"perf trace [<options>] <command>",
	NULL
};

static const struct option options[] = {
	OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
		    "dump raw trace in ASCII"),
	OPT_BOOLEAN('v', "verbose", &verbose,
		    "be more verbose (show symbol address, etc)"),
312 313
	OPT_BOOLEAN('l', "latency", &latency_format,
		    "show latency attributes (irqs/preemption disabled, etc)"),
T
Tom Zanussi 已提交
314 315 316 317 318 319
	OPT_CALLBACK('s', "script", NULL, "name",
		     "script file name (lang:script name, script name, or *)",
		     parse_scriptname),
	OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
		   "generate perf-trace.xx script in specified language"),

320
	OPT_END()
F
Frederic Weisbecker 已提交
321 322 323 324
};

int cmd_trace(int argc, const char **argv, const char *prefix __used)
{
T
Tom Zanussi 已提交
325 326
	int err;

327
	symbol__init(0);
F
Frederic Weisbecker 已提交
328

T
Tom Zanussi 已提交
329 330
	setup_scripting();

F
Frederic Weisbecker 已提交
331 332 333 334 335 336 337 338 339 340 341 342
	argc = parse_options(argc, argv, options, annotate_usage, 0);
	if (argc) {
		/*
		 * Special case: if there's an argument left then assume tha
		 * it's a symbol filter:
		 */
		if (argc > 1)
			usage_with_options(annotate_usage, options);
	}

	setup_pager();

T
Tom Zanussi 已提交
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
	if (generate_script_lang) {
		struct stat perf_stat;

		int input = open(input_name, O_RDONLY);
		if (input < 0) {
			perror("failed to open file");
			exit(-1);
		}

		err = fstat(input, &perf_stat);
		if (err < 0) {
			perror("failed to stat file");
			exit(-1);
		}

		if (!perf_stat.st_size) {
			fprintf(stderr, "zero-sized file, nothing to do!\n");
			exit(0);
		}

		scripting_ops = script_spec__lookup(generate_script_lang);
		if (!scripting_ops) {
			fprintf(stderr, "invalid language specifier");
			return -1;
		}

		header = perf_header__new();
		if (header == NULL)
			return -1;

		perf_header__read(header, input);
		err = scripting_ops->generate_script("perf-trace");
		goto out;
	}

	if (script_name) {
		err = scripting_ops->start_script(script_name);
		if (err)
			goto out;
	}

	err = __cmd_trace();

	cleanup_scripting();
out:
	return err;
F
Frederic Weisbecker 已提交
389
}