xref: /linux/tools/perf/builtin-mem.c (revision f4bd0b4a9b21c609ede28cee2dcd16824c0489a8)
1 // SPDX-License-Identifier: GPL-2.0
2 #include <inttypes.h>
3 #include <sys/types.h>
4 #include <sys/stat.h>
5 #include <unistd.h>
6 #include "builtin.h"
7 #include "perf.h"
8 
9 #include <subcmd/parse-options.h>
10 #include "util/auxtrace.h"
11 #include "util/trace-event.h"
12 #include "util/tool.h"
13 #include "util/session.h"
14 #include "util/data.h"
15 #include "util/map_symbol.h"
16 #include "util/mem-events.h"
17 #include "util/debug.h"
18 #include "util/dso.h"
19 #include "util/map.h"
20 #include "util/symbol.h"
21 #include <linux/err.h>
22 
23 #define MEM_OPERATION_LOAD	0x1
24 #define MEM_OPERATION_STORE	0x2
25 
26 struct perf_mem {
27 	struct perf_tool	tool;
28 	char const		*input_name;
29 	bool			hide_unresolved;
30 	bool			dump_raw;
31 	bool			force;
32 	bool			phys_addr;
33 	int			operation;
34 	const char		*cpu_list;
35 	DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
36 };
37 
38 static int parse_record_events(const struct option *opt,
39 			       const char *str, int unset __maybe_unused)
40 {
41 	struct perf_mem *mem = *(struct perf_mem **)opt->value;
42 
43 	if (!strcmp(str, "list")) {
44 		perf_mem_events__list();
45 		exit(0);
46 	}
47 	if (perf_mem_events__parse(str))
48 		exit(-1);
49 
50 	mem->operation = 0;
51 	return 0;
52 }
53 
54 static const char * const __usage[] = {
55 	"perf mem record [<options>] [<command>]",
56 	"perf mem record [<options>] -- <command> [<options>]",
57 	NULL
58 };
59 
60 static const char * const *record_mem_usage = __usage;
61 
62 static int __cmd_record(int argc, const char **argv, struct perf_mem *mem)
63 {
64 	int rec_argc, i = 0, j;
65 	const char **rec_argv;
66 	int ret;
67 	bool all_user = false, all_kernel = false;
68 	struct perf_mem_event *e;
69 	struct option options[] = {
70 	OPT_CALLBACK('e', "event", &mem, "event",
71 		     "event selector. use 'perf mem record -e list' to list available events",
72 		     parse_record_events),
73 	OPT_UINTEGER(0, "ldlat", &perf_mem_events__loads_ldlat, "mem-loads latency"),
74 	OPT_INCR('v', "verbose", &verbose,
75 		 "be more verbose (show counter open errors, etc)"),
76 	OPT_BOOLEAN('U', "all-user", &all_user, "collect only user level data"),
77 	OPT_BOOLEAN('K', "all-kernel", &all_kernel, "collect only kernel level data"),
78 	OPT_END()
79 	};
80 
81 	if (perf_mem_events__init()) {
82 		pr_err("failed: memory events not supported\n");
83 		return -1;
84 	}
85 
86 	argc = parse_options(argc, argv, options, record_mem_usage,
87 			     PARSE_OPT_KEEP_UNKNOWN);
88 
89 	rec_argc = argc + 9; /* max number of arguments */
90 	rec_argv = calloc(rec_argc + 1, sizeof(char *));
91 	if (!rec_argv)
92 		return -1;
93 
94 	rec_argv[i++] = "record";
95 
96 	e = perf_mem_events__ptr(PERF_MEM_EVENTS__LOAD_STORE);
97 
98 	/*
99 	 * The load and store operations are required, use the event
100 	 * PERF_MEM_EVENTS__LOAD_STORE if it is supported.
101 	 */
102 	if (e->tag &&
103 	    (mem->operation & MEM_OPERATION_LOAD) &&
104 	    (mem->operation & MEM_OPERATION_STORE)) {
105 		e->record = true;
106 	} else {
107 		if (mem->operation & MEM_OPERATION_LOAD) {
108 			e = perf_mem_events__ptr(PERF_MEM_EVENTS__LOAD);
109 			e->record = true;
110 		}
111 
112 		if (mem->operation & MEM_OPERATION_STORE) {
113 			e = perf_mem_events__ptr(PERF_MEM_EVENTS__STORE);
114 			e->record = true;
115 		}
116 	}
117 
118 	e = perf_mem_events__ptr(PERF_MEM_EVENTS__LOAD);
119 	if (e->record)
120 		rec_argv[i++] = "-W";
121 
122 	rec_argv[i++] = "-d";
123 
124 	if (mem->phys_addr)
125 		rec_argv[i++] = "--phys-data";
126 
127 	for (j = 0; j < PERF_MEM_EVENTS__MAX; j++) {
128 		e = perf_mem_events__ptr(j);
129 		if (!e->record)
130 			continue;
131 
132 		if (!e->supported) {
133 			pr_err("failed: event '%s' not supported\n",
134 			       perf_mem_events__name(j));
135 			free(rec_argv);
136 			return -1;
137 		}
138 
139 		rec_argv[i++] = "-e";
140 		rec_argv[i++] = perf_mem_events__name(j);
141 	}
142 
143 	if (all_user)
144 		rec_argv[i++] = "--all-user";
145 
146 	if (all_kernel)
147 		rec_argv[i++] = "--all-kernel";
148 
149 	for (j = 0; j < argc; j++, i++)
150 		rec_argv[i] = argv[j];
151 
152 	if (verbose > 0) {
153 		pr_debug("calling: record ");
154 
155 		while (rec_argv[j]) {
156 			pr_debug("%s ", rec_argv[j]);
157 			j++;
158 		}
159 		pr_debug("\n");
160 	}
161 
162 	ret = cmd_record(i, rec_argv);
163 	free(rec_argv);
164 	return ret;
165 }
166 
167 static int
168 dump_raw_samples(struct perf_tool *tool,
169 		 union perf_event *event,
170 		 struct perf_sample *sample,
171 		 struct machine *machine)
172 {
173 	struct perf_mem *mem = container_of(tool, struct perf_mem, tool);
174 	struct addr_location al;
175 	const char *fmt;
176 
177 	if (machine__resolve(machine, &al, sample) < 0) {
178 		fprintf(stderr, "problem processing %d event, skipping it.\n",
179 				event->header.type);
180 		return -1;
181 	}
182 
183 	if (al.filtered || (mem->hide_unresolved && al.sym == NULL))
184 		goto out_put;
185 
186 	if (al.map != NULL)
187 		al.map->dso->hit = 1;
188 
189 	if (mem->phys_addr) {
190 		if (symbol_conf.field_sep) {
191 			fmt = "%d%s%d%s0x%"PRIx64"%s0x%"PRIx64"%s0x%016"PRIx64
192 			      "%s%"PRIu64"%s0x%"PRIx64"%s%s:%s\n";
193 		} else {
194 			fmt = "%5d%s%5d%s0x%016"PRIx64"%s0x016%"PRIx64
195 			      "%s0x%016"PRIx64"%s%5"PRIu64"%s0x%06"PRIx64
196 			      "%s%s:%s\n";
197 			symbol_conf.field_sep = " ";
198 		}
199 
200 		printf(fmt,
201 			sample->pid,
202 			symbol_conf.field_sep,
203 			sample->tid,
204 			symbol_conf.field_sep,
205 			sample->ip,
206 			symbol_conf.field_sep,
207 			sample->addr,
208 			symbol_conf.field_sep,
209 			sample->phys_addr,
210 			symbol_conf.field_sep,
211 			sample->weight,
212 			symbol_conf.field_sep,
213 			sample->data_src,
214 			symbol_conf.field_sep,
215 			al.map ? (al.map->dso ? al.map->dso->long_name : "???") : "???",
216 			al.sym ? al.sym->name : "???");
217 	} else {
218 		if (symbol_conf.field_sep) {
219 			fmt = "%d%s%d%s0x%"PRIx64"%s0x%"PRIx64"%s%"PRIu64
220 			      "%s0x%"PRIx64"%s%s:%s\n";
221 		} else {
222 			fmt = "%5d%s%5d%s0x%016"PRIx64"%s0x016%"PRIx64
223 			      "%s%5"PRIu64"%s0x%06"PRIx64"%s%s:%s\n";
224 			symbol_conf.field_sep = " ";
225 		}
226 
227 		printf(fmt,
228 			sample->pid,
229 			symbol_conf.field_sep,
230 			sample->tid,
231 			symbol_conf.field_sep,
232 			sample->ip,
233 			symbol_conf.field_sep,
234 			sample->addr,
235 			symbol_conf.field_sep,
236 			sample->weight,
237 			symbol_conf.field_sep,
238 			sample->data_src,
239 			symbol_conf.field_sep,
240 			al.map ? (al.map->dso ? al.map->dso->long_name : "???") : "???",
241 			al.sym ? al.sym->name : "???");
242 	}
243 out_put:
244 	addr_location__put(&al);
245 	return 0;
246 }
247 
248 static int process_sample_event(struct perf_tool *tool,
249 				union perf_event *event,
250 				struct perf_sample *sample,
251 				struct evsel *evsel __maybe_unused,
252 				struct machine *machine)
253 {
254 	return dump_raw_samples(tool, event, sample, machine);
255 }
256 
257 static int report_raw_events(struct perf_mem *mem)
258 {
259 	struct itrace_synth_opts itrace_synth_opts = {
260 		.set = true,
261 		.mem = true,	/* Only enable memory event */
262 		.default_no_sample = true,
263 	};
264 
265 	struct perf_data data = {
266 		.path  = input_name,
267 		.mode  = PERF_DATA_MODE_READ,
268 		.force = mem->force,
269 	};
270 	int ret;
271 	struct perf_session *session = perf_session__new(&data, false,
272 							 &mem->tool);
273 
274 	if (IS_ERR(session))
275 		return PTR_ERR(session);
276 
277 	session->itrace_synth_opts = &itrace_synth_opts;
278 
279 	if (mem->cpu_list) {
280 		ret = perf_session__cpu_bitmap(session, mem->cpu_list,
281 					       mem->cpu_bitmap);
282 		if (ret < 0)
283 			goto out_delete;
284 	}
285 
286 	ret = symbol__init(&session->header.env);
287 	if (ret < 0)
288 		goto out_delete;
289 
290 	if (mem->phys_addr)
291 		printf("# PID, TID, IP, ADDR, PHYS ADDR, LOCAL WEIGHT, DSRC, SYMBOL\n");
292 	else
293 		printf("# PID, TID, IP, ADDR, LOCAL WEIGHT, DSRC, SYMBOL\n");
294 
295 	ret = perf_session__process_events(session);
296 
297 out_delete:
298 	perf_session__delete(session);
299 	return ret;
300 }
301 
302 static int report_events(int argc, const char **argv, struct perf_mem *mem)
303 {
304 	const char **rep_argv;
305 	int ret, i = 0, j, rep_argc;
306 
307 	if (mem->dump_raw)
308 		return report_raw_events(mem);
309 
310 	rep_argc = argc + 3;
311 	rep_argv = calloc(rep_argc + 1, sizeof(char *));
312 	if (!rep_argv)
313 		return -1;
314 
315 	rep_argv[i++] = "report";
316 	rep_argv[i++] = "--mem-mode";
317 	rep_argv[i++] = "-n"; /* display number of samples */
318 
319 	/*
320 	 * there is no weight (cost) associated with stores, so don't print
321 	 * the column
322 	 */
323 	if (!(mem->operation & MEM_OPERATION_LOAD)) {
324 		if (mem->phys_addr)
325 			rep_argv[i++] = "--sort=mem,sym,dso,symbol_daddr,"
326 					"dso_daddr,tlb,locked,phys_daddr";
327 		else
328 			rep_argv[i++] = "--sort=mem,sym,dso,symbol_daddr,"
329 					"dso_daddr,tlb,locked";
330 	} else if (mem->phys_addr)
331 		rep_argv[i++] = "--sort=local_weight,mem,sym,dso,symbol_daddr,"
332 				"dso_daddr,snoop,tlb,locked,phys_daddr";
333 
334 	for (j = 1; j < argc; j++, i++)
335 		rep_argv[i] = argv[j];
336 
337 	ret = cmd_report(i, rep_argv);
338 	free(rep_argv);
339 	return ret;
340 }
341 
342 struct mem_mode {
343 	const char *name;
344 	int mode;
345 };
346 
347 #define MEM_OPT(n, m) \
348 	{ .name = n, .mode = (m) }
349 
350 #define MEM_END { .name = NULL }
351 
352 static const struct mem_mode mem_modes[]={
353 	MEM_OPT("load", MEM_OPERATION_LOAD),
354 	MEM_OPT("store", MEM_OPERATION_STORE),
355 	MEM_END
356 };
357 
358 static int
359 parse_mem_ops(const struct option *opt, const char *str, int unset)
360 {
361 	int *mode = (int *)opt->value;
362 	const struct mem_mode *m;
363 	char *s, *os = NULL, *p;
364 	int ret = -1;
365 
366 	if (unset)
367 		return 0;
368 
369 	/* str may be NULL in case no arg is passed to -t */
370 	if (str) {
371 		/* because str is read-only */
372 		s = os = strdup(str);
373 		if (!s)
374 			return -1;
375 
376 		/* reset mode */
377 		*mode = 0;
378 
379 		for (;;) {
380 			p = strchr(s, ',');
381 			if (p)
382 				*p = '\0';
383 
384 			for (m = mem_modes; m->name; m++) {
385 				if (!strcasecmp(s, m->name))
386 					break;
387 			}
388 			if (!m->name) {
389 				fprintf(stderr, "unknown sampling op %s,"
390 					    " check man page\n", s);
391 				goto error;
392 			}
393 
394 			*mode |= m->mode;
395 
396 			if (!p)
397 				break;
398 
399 			s = p + 1;
400 		}
401 	}
402 	ret = 0;
403 
404 	if (*mode == 0)
405 		*mode = MEM_OPERATION_LOAD;
406 error:
407 	free(os);
408 	return ret;
409 }
410 
411 int cmd_mem(int argc, const char **argv)
412 {
413 	struct stat st;
414 	struct perf_mem mem = {
415 		.tool = {
416 			.sample		= process_sample_event,
417 			.mmap		= perf_event__process_mmap,
418 			.mmap2		= perf_event__process_mmap2,
419 			.comm		= perf_event__process_comm,
420 			.lost		= perf_event__process_lost,
421 			.fork		= perf_event__process_fork,
422 			.attr		= perf_event__process_attr,
423 			.build_id	= perf_event__process_build_id,
424 			.namespaces	= perf_event__process_namespaces,
425 			.auxtrace_info  = perf_event__process_auxtrace_info,
426 			.auxtrace       = perf_event__process_auxtrace,
427 			.auxtrace_error = perf_event__process_auxtrace_error,
428 			.ordered_events	= true,
429 		},
430 		.input_name		 = "perf.data",
431 		/*
432 		 * default to both load an store sampling
433 		 */
434 		.operation		 = MEM_OPERATION_LOAD | MEM_OPERATION_STORE,
435 	};
436 	const struct option mem_options[] = {
437 	OPT_CALLBACK('t', "type", &mem.operation,
438 		   "type", "memory operations(load,store) Default load,store",
439 		    parse_mem_ops),
440 	OPT_BOOLEAN('D', "dump-raw-samples", &mem.dump_raw,
441 		    "dump raw samples in ASCII"),
442 	OPT_BOOLEAN('U', "hide-unresolved", &mem.hide_unresolved,
443 		    "Only display entries resolved to a symbol"),
444 	OPT_STRING('i', "input", &input_name, "file",
445 		   "input file name"),
446 	OPT_STRING('C', "cpu", &mem.cpu_list, "cpu",
447 		   "list of cpus to profile"),
448 	OPT_STRING_NOEMPTY('x', "field-separator", &symbol_conf.field_sep,
449 		   "separator",
450 		   "separator for columns, no spaces will be added"
451 		   " between columns '.' is reserved."),
452 	OPT_BOOLEAN('f', "force", &mem.force, "don't complain, do it"),
453 	OPT_BOOLEAN('p', "phys-data", &mem.phys_addr, "Record/Report sample physical addresses"),
454 	OPT_END()
455 	};
456 	const char *const mem_subcommands[] = { "record", "report", NULL };
457 	const char *mem_usage[] = {
458 		NULL,
459 		NULL
460 	};
461 
462 	argc = parse_options_subcommand(argc, argv, mem_options, mem_subcommands,
463 					mem_usage, PARSE_OPT_KEEP_UNKNOWN);
464 
465 	if (!argc || !(strncmp(argv[0], "rec", 3) || mem.operation))
466 		usage_with_options(mem_usage, mem_options);
467 
468 	if (!mem.input_name || !strlen(mem.input_name)) {
469 		if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
470 			mem.input_name = "-";
471 		else
472 			mem.input_name = "perf.data";
473 	}
474 
475 	if (!strncmp(argv[0], "rec", 3))
476 		return __cmd_record(argc, argv, &mem);
477 	else if (!strncmp(argv[0], "rep", 3))
478 		return report_events(argc, argv, &mem);
479 	else
480 		usage_with_options(mem_usage, mem_options);
481 
482 	return 0;
483 }
484