License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 22:07:57 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2010-05-01 14:41:20 +08:00
|
|
|
/*
|
|
|
|
* builtin-inject.c
|
|
|
|
*
|
|
|
|
* Builtin inject command: Examine the live mode (stdin) event stream
|
|
|
|
* and repipe it to stdout while optionally injecting additional
|
|
|
|
* events into it.
|
|
|
|
*/
|
|
|
|
#include "builtin.h"
|
|
|
|
|
2012-08-07 20:56:04 +08:00
|
|
|
#include "util/color.h"
|
2019-08-30 22:11:01 +08:00
|
|
|
#include "util/dso.h"
|
2020-10-12 15:02:13 +08:00
|
|
|
#include "util/vdso.h"
|
2012-08-07 20:56:04 +08:00
|
|
|
#include "util/evlist.h"
|
|
|
|
#include "util/evsel.h"
|
2019-01-27 20:42:37 +08:00
|
|
|
#include "util/map.h"
|
2010-05-01 14:41:20 +08:00
|
|
|
#include "util/session.h"
|
2011-11-28 18:30:20 +08:00
|
|
|
#include "util/tool.h"
|
2010-05-01 14:41:20 +08:00
|
|
|
#include "util/debug.h"
|
2012-08-07 20:56:05 +08:00
|
|
|
#include "util/build-id.h"
|
2013-10-15 22:27:32 +08:00
|
|
|
#include "util/data.h"
|
2015-04-09 23:54:00 +08:00
|
|
|
#include "util/auxtrace.h"
|
2015-11-30 17:02:21 +08:00
|
|
|
#include "util/jit.h"
|
2022-08-16 06:59:22 +08:00
|
|
|
#include "util/string2.h"
|
2019-01-28 07:03:34 +08:00
|
|
|
#include "util/symbol.h"
|
2019-09-18 22:36:13 +08:00
|
|
|
#include "util/synthetic-events.h"
|
2017-04-20 08:34:35 +08:00
|
|
|
#include "util/thread.h"
|
2020-10-12 15:02:11 +08:00
|
|
|
#include "util/namespaces.h"
|
2022-02-02 15:08:27 +08:00
|
|
|
#include "util/util.h"
|
2022-07-11 17:32:07 +08:00
|
|
|
#include "util/tsc.h"
|
2010-05-01 14:41:20 +08:00
|
|
|
|
2022-05-20 21:24:02 +08:00
|
|
|
#include <internal/lib.h>
|
|
|
|
|
perf inject: Do not load map/dso when injecting build-id
No need to load symbols in a DSO when injecting build-id. I guess the
reason was to check the DSO is a special file like anon files. Use some
helper functions in map.c to check them before reading build-id. Also
pass sample event's cpumode to a new build-id event.
It brought a speedup in the benchmark of 25 -> 21 msec on my laptop.
Also the memory usage (Max RSS) went down by ~200 KB.
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 21.389 msec (+- 0.138 msec)
Average time per event: 2.097 usec (+- 0.014 usec)
Average memory usage: 8225 KB (+- 0 KB)
Committer notes:
Before:
$ perf stat -r5 perf bench internals inject-build-id > /dev/null
Performance counter stats for 'perf bench internals inject-build-id' (5 runs):
4,020.56 msec task-clock:u # 1.271 CPUs utilized ( +- 0.74% )
0 context-switches:u # 0.000 K/sec
0 cpu-migrations:u # 0.000 K/sec
123,354 page-faults:u # 0.031 M/sec ( +- 0.81% )
7,119,951,568 cycles:u # 1.771 GHz ( +- 1.74% ) (83.27%)
230,086,969 stalled-cycles-frontend:u # 3.23% frontend cycles idle ( +- 1.97% ) (83.41%)
1,168,298,765 stalled-cycles-backend:u # 16.41% backend cycles idle ( +- 1.13% ) (83.44%)
11,173,083,669 instructions:u # 1.57 insn per cycle
# 0.10 stalled cycles per insn ( +- 1.58% ) (83.31%)
2,413,908,936 branches:u # 600.392 M/sec ( +- 1.69% ) (83.26%)
46,576,289 branch-misses:u # 1.93% of all branches ( +- 2.20% ) (83.31%)
3.1638 +- 0.0309 seconds time elapsed ( +- 0.98% )
$
After:
$ perf stat -r5 perf bench internals inject-build-id > /dev/null
Performance counter stats for 'perf bench internals inject-build-id' (5 runs):
2,379.94 msec task-clock:u # 1.473 CPUs utilized ( +- 0.18% )
0 context-switches:u # 0.000 K/sec
0 cpu-migrations:u # 0.000 K/sec
62,584 page-faults:u # 0.026 M/sec ( +- 0.07% )
2,372,389,668 cycles:u # 0.997 GHz ( +- 0.29% ) (83.14%)
106,937,862 stalled-cycles-frontend:u # 4.51% frontend cycles idle ( +- 4.89% ) (83.20%)
581,697,915 stalled-cycles-backend:u # 24.52% backend cycles idle ( +- 0.71% ) (83.47%)
3,659,692,199 instructions:u # 1.54 insn per cycle
# 0.16 stalled cycles per insn ( +- 0.10% ) (83.63%)
791,372,961 branches:u # 332.518 M/sec ( +- 0.27% ) (83.39%)
10,648,083 branch-misses:u # 1.35% of all branches ( +- 0.22% ) (83.16%)
1.61570 +- 0.00172 seconds time elapsed ( +- 0.11% )
$
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Original-patch-by: Stephane Eranian <eranian@google.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Acked-by: Jiri Olsa <jolsa@redhat.com>
Link: https://lore.kernel.org/r/20201012070214.2074921-5-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2020-10-12 15:02:12 +08:00
|
|
|
#include <linux/err.h>
|
2015-12-15 23:39:39 +08:00
|
|
|
#include <subcmd/parse-options.h>
|
perf inject: Do not load map/dso when injecting build-id
No need to load symbols in a DSO when injecting build-id. I guess the
reason was to check the DSO is a special file like anon files. Use some
helper functions in map.c to check them before reading build-id. Also
pass sample event's cpumode to a new build-id event.
It brought a speedup in the benchmark of 25 -> 21 msec on my laptop.
Also the memory usage (Max RSS) went down by ~200 KB.
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 21.389 msec (+- 0.138 msec)
Average time per event: 2.097 usec (+- 0.014 usec)
Average memory usage: 8225 KB (+- 0 KB)
Committer notes:
Before:
$ perf stat -r5 perf bench internals inject-build-id > /dev/null
Performance counter stats for 'perf bench internals inject-build-id' (5 runs):
4,020.56 msec task-clock:u # 1.271 CPUs utilized ( +- 0.74% )
0 context-switches:u # 0.000 K/sec
0 cpu-migrations:u # 0.000 K/sec
123,354 page-faults:u # 0.031 M/sec ( +- 0.81% )
7,119,951,568 cycles:u # 1.771 GHz ( +- 1.74% ) (83.27%)
230,086,969 stalled-cycles-frontend:u # 3.23% frontend cycles idle ( +- 1.97% ) (83.41%)
1,168,298,765 stalled-cycles-backend:u # 16.41% backend cycles idle ( +- 1.13% ) (83.44%)
11,173,083,669 instructions:u # 1.57 insn per cycle
# 0.10 stalled cycles per insn ( +- 1.58% ) (83.31%)
2,413,908,936 branches:u # 600.392 M/sec ( +- 1.69% ) (83.26%)
46,576,289 branch-misses:u # 1.93% of all branches ( +- 2.20% ) (83.31%)
3.1638 +- 0.0309 seconds time elapsed ( +- 0.98% )
$
After:
$ perf stat -r5 perf bench internals inject-build-id > /dev/null
Performance counter stats for 'perf bench internals inject-build-id' (5 runs):
2,379.94 msec task-clock:u # 1.473 CPUs utilized ( +- 0.18% )
0 context-switches:u # 0.000 K/sec
0 cpu-migrations:u # 0.000 K/sec
62,584 page-faults:u # 0.026 M/sec ( +- 0.07% )
2,372,389,668 cycles:u # 0.997 GHz ( +- 0.29% ) (83.14%)
106,937,862 stalled-cycles-frontend:u # 4.51% frontend cycles idle ( +- 4.89% ) (83.20%)
581,697,915 stalled-cycles-backend:u # 24.52% backend cycles idle ( +- 0.71% ) (83.47%)
3,659,692,199 instructions:u # 1.54 insn per cycle
# 0.16 stalled cycles per insn ( +- 0.10% ) (83.63%)
791,372,961 branches:u # 332.518 M/sec ( +- 0.27% ) (83.39%)
10,648,083 branch-misses:u # 1.35% of all branches ( +- 0.22% ) (83.16%)
1.61570 +- 0.00172 seconds time elapsed ( +- 0.11% )
$
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Original-patch-by: Stephane Eranian <eranian@google.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Acked-by: Jiri Olsa <jolsa@redhat.com>
Link: https://lore.kernel.org/r/20201012070214.2074921-5-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2020-10-12 15:02:12 +08:00
|
|
|
#include <uapi/linux/mman.h> /* To get things like MAP_HUGETLB even on older libc headers */
|
2010-05-01 14:41:20 +08:00
|
|
|
|
2012-08-07 20:56:04 +08:00
|
|
|
#include <linux/list.h>
|
2021-04-30 15:03:02 +08:00
|
|
|
#include <linux/string.h>
|
2022-07-11 17:32:07 +08:00
|
|
|
#include <linux/zalloc.h>
|
|
|
|
#include <linux/hash.h>
|
2022-08-16 06:59:22 +08:00
|
|
|
#include <ctype.h>
|
2017-04-18 21:46:11 +08:00
|
|
|
#include <errno.h>
|
2017-04-20 02:49:18 +08:00
|
|
|
#include <signal.h>
|
2022-07-11 17:32:07 +08:00
|
|
|
#include <inttypes.h>
|
|
|
|
|
|
|
|
struct guest_event {
|
|
|
|
struct perf_sample sample;
|
|
|
|
union perf_event *event;
|
2023-05-27 11:43:22 +08:00
|
|
|
char *event_buf;
|
2022-07-11 17:32:07 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct guest_id {
|
|
|
|
/* hlist_node must be first, see free_hlist() */
|
|
|
|
struct hlist_node node;
|
|
|
|
u64 id;
|
|
|
|
u64 host_id;
|
|
|
|
u32 vcpu;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct guest_tid {
|
|
|
|
/* hlist_node must be first, see free_hlist() */
|
|
|
|
struct hlist_node node;
|
|
|
|
/* Thread ID of QEMU thread */
|
|
|
|
u32 tid;
|
|
|
|
u32 vcpu;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct guest_vcpu {
|
|
|
|
/* Current host CPU */
|
|
|
|
u32 cpu;
|
|
|
|
/* Thread ID of QEMU thread */
|
|
|
|
u32 tid;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct guest_session {
|
|
|
|
char *perf_data_file;
|
|
|
|
u32 machine_pid;
|
|
|
|
u64 time_offset;
|
|
|
|
double time_scale;
|
|
|
|
struct perf_tool tool;
|
|
|
|
struct perf_data data;
|
|
|
|
struct perf_session *session;
|
|
|
|
char *tmp_file_name;
|
|
|
|
int tmp_fd;
|
|
|
|
struct perf_tsc_conversion host_tc;
|
|
|
|
struct perf_tsc_conversion guest_tc;
|
|
|
|
bool copy_kcore_dir;
|
|
|
|
bool have_tc;
|
|
|
|
bool fetched;
|
|
|
|
bool ready;
|
|
|
|
u16 dflt_id_hdr_size;
|
|
|
|
u64 dflt_id;
|
|
|
|
u64 highest_id;
|
|
|
|
/* Array of guest_vcpu */
|
|
|
|
struct guest_vcpu *vcpu;
|
|
|
|
size_t vcpu_cnt;
|
|
|
|
/* Hash table for guest_id */
|
|
|
|
struct hlist_head heads[PERF_EVLIST__HLIST_SIZE];
|
|
|
|
/* Hash table for guest_tid */
|
|
|
|
struct hlist_head tids[PERF_EVLIST__HLIST_SIZE];
|
|
|
|
/* Place to stash next guest event */
|
|
|
|
struct guest_event ev;
|
|
|
|
};
|
2012-08-07 20:56:04 +08:00
|
|
|
|
2024-08-17 14:44:36 +08:00
|
|
|
enum build_id_rewrite_style {
|
|
|
|
BID_RWS__NONE = 0,
|
|
|
|
BID_RWS__INJECT_HEADER_LAZY,
|
|
|
|
BID_RWS__INJECT_HEADER_ALL,
|
2024-09-10 04:37:38 +08:00
|
|
|
BID_RWS__MMAP2_BUILDID_ALL,
|
2024-09-10 04:37:39 +08:00
|
|
|
BID_RWS__MMAP2_BUILDID_LAZY,
|
2024-08-17 14:44:36 +08:00
|
|
|
};
|
|
|
|
|
2012-10-01 06:54:10 +08:00
|
|
|
struct perf_inject {
|
2013-10-30 02:04:57 +08:00
|
|
|
struct perf_tool tool;
|
2014-08-12 14:40:37 +08:00
|
|
|
struct perf_session *session;
|
2024-08-17 14:44:36 +08:00
|
|
|
enum build_id_rewrite_style build_id_style;
|
2013-10-30 02:04:57 +08:00
|
|
|
bool sched_stat;
|
2015-04-30 22:37:26 +08:00
|
|
|
bool have_auxtrace;
|
2015-09-25 21:15:55 +08:00
|
|
|
bool strip;
|
2015-11-30 17:02:21 +08:00
|
|
|
bool jit_mode;
|
2021-04-30 15:03:01 +08:00
|
|
|
bool in_place_update;
|
|
|
|
bool in_place_update_dry_run;
|
2022-05-20 21:24:04 +08:00
|
|
|
bool copy_kcore_dir;
|
2013-10-30 02:04:57 +08:00
|
|
|
const char *input_name;
|
2017-01-24 05:07:59 +08:00
|
|
|
struct perf_data output;
|
2013-10-30 02:04:57 +08:00
|
|
|
u64 bytes_written;
|
2015-09-25 21:15:54 +08:00
|
|
|
u64 aux_id;
|
2013-10-30 02:04:57 +08:00
|
|
|
struct list_head samples;
|
2015-04-09 23:54:00 +08:00
|
|
|
struct itrace_synth_opts itrace_synth_opts;
|
2023-05-27 11:43:21 +08:00
|
|
|
char *event_copy;
|
2022-05-20 21:24:02 +08:00
|
|
|
struct perf_file_section secs[HEADER_FEAT_BITS];
|
2022-07-11 17:32:07 +08:00
|
|
|
struct guest_session guest_session;
|
2022-08-16 06:59:22 +08:00
|
|
|
struct strlist *known_build_ids;
|
2024-09-10 04:37:37 +08:00
|
|
|
const struct evsel *mmap_evsel;
|
2012-08-07 20:56:04 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct event_entry {
|
|
|
|
struct list_head node;
|
|
|
|
u32 tid;
|
2020-05-16 01:29:26 +08:00
|
|
|
union perf_event event[];
|
2012-10-01 06:54:10 +08:00
|
|
|
};
|
2010-05-01 14:41:20 +08:00
|
|
|
|
2024-09-10 04:37:37 +08:00
|
|
|
static int tool__inject_build_id(const struct perf_tool *tool,
|
|
|
|
struct perf_sample *sample,
|
|
|
|
struct machine *machine,
|
|
|
|
const struct evsel *evsel,
|
|
|
|
__u16 misc,
|
|
|
|
const char *filename,
|
|
|
|
struct dso *dso, u32 flags);
|
2024-09-10 04:37:38 +08:00
|
|
|
static int tool__inject_mmap2_build_id(const struct perf_tool *tool,
|
|
|
|
struct perf_sample *sample,
|
|
|
|
struct machine *machine,
|
|
|
|
const struct evsel *evsel,
|
|
|
|
__u16 misc,
|
|
|
|
__u32 pid, __u32 tid,
|
|
|
|
__u64 start, __u64 len, __u64 pgoff,
|
|
|
|
struct dso *dso,
|
|
|
|
__u32 prot, __u32 flags,
|
|
|
|
const char *filename);
|
2020-10-12 15:02:13 +08:00
|
|
|
|
2015-04-21 17:21:54 +08:00
|
|
|
static int output_bytes(struct perf_inject *inject, void *buf, size_t sz)
|
2010-05-01 14:41:20 +08:00
|
|
|
{
|
2013-10-30 02:04:57 +08:00
|
|
|
ssize_t size;
|
2010-05-01 14:41:20 +08:00
|
|
|
|
2017-01-24 05:07:59 +08:00
|
|
|
size = perf_data__write(&inject->output, buf, sz);
|
2013-10-30 02:04:57 +08:00
|
|
|
if (size < 0)
|
|
|
|
return -errno;
|
2010-05-01 14:41:20 +08:00
|
|
|
|
2013-10-30 02:04:57 +08:00
|
|
|
inject->bytes_written += size;
|
2010-05-01 14:41:20 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-08-13 04:46:55 +08:00
|
|
|
static int perf_event__repipe_synth(const struct perf_tool *tool,
|
2015-04-21 17:21:54 +08:00
|
|
|
union perf_event *event)
|
2024-09-10 04:37:38 +08:00
|
|
|
|
2015-04-21 17:21:54 +08:00
|
|
|
{
|
|
|
|
struct perf_inject *inject = container_of(tool, struct perf_inject,
|
|
|
|
tool);
|
|
|
|
|
|
|
|
return output_bytes(inject, event, event->header.size);
|
|
|
|
}
|
|
|
|
|
2024-08-13 04:46:55 +08:00
|
|
|
static int perf_event__repipe_oe_synth(const struct perf_tool *tool,
|
2015-03-03 23:37:54 +08:00
|
|
|
union perf_event *event,
|
|
|
|
struct ordered_events *oe __maybe_unused)
|
|
|
|
{
|
|
|
|
return perf_event__repipe_synth(tool, event);
|
|
|
|
}
|
|
|
|
|
2016-03-11 00:41:13 +08:00
|
|
|
#ifdef HAVE_JITDUMP
|
2024-08-13 04:46:55 +08:00
|
|
|
static int perf_event__drop_oe(const struct perf_tool *tool __maybe_unused,
|
2015-11-30 17:02:21 +08:00
|
|
|
union perf_event *event __maybe_unused,
|
|
|
|
struct ordered_events *oe __maybe_unused)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-09-13 20:54:03 +08:00
|
|
|
static int perf_event__repipe_op2_synth(struct perf_session *session,
|
|
|
|
union perf_event *event)
|
2011-11-28 17:56:39 +08:00
|
|
|
{
|
2018-09-13 20:54:03 +08:00
|
|
|
return perf_event__repipe_synth(session->tool, event);
|
2011-11-28 17:56:39 +08:00
|
|
|
}
|
|
|
|
|
2020-10-12 15:02:10 +08:00
|
|
|
static int perf_event__repipe_op4_synth(struct perf_session *session,
|
|
|
|
union perf_event *event,
|
2022-01-18 02:34:36 +08:00
|
|
|
u64 data __maybe_unused,
|
|
|
|
const char *str __maybe_unused)
|
2020-10-12 15:02:10 +08:00
|
|
|
{
|
|
|
|
return perf_event__repipe_synth(session->tool, event);
|
|
|
|
}
|
|
|
|
|
2024-08-13 04:46:55 +08:00
|
|
|
static int perf_event__repipe_attr(const struct perf_tool *tool,
|
2013-07-04 21:20:21 +08:00
|
|
|
union perf_event *event,
|
2019-07-21 19:23:52 +08:00
|
|
|
struct evlist **pevlist)
|
2011-11-12 08:45:41 +08:00
|
|
|
{
|
2013-10-22 15:34:09 +08:00
|
|
|
struct perf_inject *inject = container_of(tool, struct perf_inject,
|
|
|
|
tool);
|
2012-05-15 19:28:11 +08:00
|
|
|
int ret;
|
2013-07-04 21:20:21 +08:00
|
|
|
|
|
|
|
ret = perf_event__process_attr(tool, event, pevlist);
|
2012-05-15 19:28:11 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2024-08-29 23:01:52 +08:00
|
|
|
/* If the output isn't a pipe then the attributes will be written as part of the header. */
|
|
|
|
if (!inject->output.is_pipe)
|
2013-10-22 15:34:09 +08:00
|
|
|
return 0;
|
|
|
|
|
2013-07-04 21:20:21 +08:00
|
|
|
return perf_event__repipe_synth(tool, event);
|
2011-11-12 08:45:41 +08:00
|
|
|
}
|
|
|
|
|
2024-08-13 04:46:55 +08:00
|
|
|
static int perf_event__repipe_event_update(const struct perf_tool *tool,
|
2020-10-12 15:02:10 +08:00
|
|
|
union perf_event *event,
|
|
|
|
struct evlist **pevlist __maybe_unused)
|
|
|
|
{
|
|
|
|
return perf_event__repipe_synth(tool, event);
|
|
|
|
}
|
|
|
|
|
2015-04-30 22:37:27 +08:00
|
|
|
#ifdef HAVE_AUXTRACE_SUPPORT
|
|
|
|
|
2023-01-31 10:33:47 +08:00
|
|
|
static int copy_bytes(struct perf_inject *inject, struct perf_data *data, off_t size)
|
2015-04-30 22:37:27 +08:00
|
|
|
{
|
|
|
|
char buf[4096];
|
|
|
|
ssize_t ssz;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
while (size > 0) {
|
2023-01-31 10:33:47 +08:00
|
|
|
ssz = perf_data__read(data, buf, min(size, (off_t)sizeof(buf)));
|
2015-04-30 22:37:27 +08:00
|
|
|
if (ssz < 0)
|
|
|
|
return -errno;
|
|
|
|
ret = output_bytes(inject, buf, ssz);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
size -= ssz;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-09-13 20:54:04 +08:00
|
|
|
static s64 perf_event__repipe_auxtrace(struct perf_session *session,
|
|
|
|
union perf_event *event)
|
2015-04-21 17:21:54 +08:00
|
|
|
{
|
2024-08-13 04:46:55 +08:00
|
|
|
const struct perf_tool *tool = session->tool;
|
2015-04-21 17:21:54 +08:00
|
|
|
struct perf_inject *inject = container_of(tool, struct perf_inject,
|
|
|
|
tool);
|
|
|
|
int ret;
|
|
|
|
|
2015-04-30 22:37:26 +08:00
|
|
|
inject->have_auxtrace = true;
|
|
|
|
|
2015-04-30 22:37:25 +08:00
|
|
|
if (!inject->output.is_pipe) {
|
|
|
|
off_t offset;
|
|
|
|
|
2017-01-24 05:25:41 +08:00
|
|
|
offset = lseek(inject->output.file.fd, 0, SEEK_CUR);
|
2015-04-30 22:37:25 +08:00
|
|
|
if (offset == -1)
|
|
|
|
return -errno;
|
|
|
|
ret = auxtrace_index__auxtrace_event(&session->auxtrace_index,
|
|
|
|
event, offset);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-01-24 05:07:59 +08:00
|
|
|
if (perf_data__is_pipe(session->data) || !session->one_mmap) {
|
2015-04-21 17:21:54 +08:00
|
|
|
ret = output_bytes(inject, event, event->header.size);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2023-01-31 10:33:47 +08:00
|
|
|
ret = copy_bytes(inject, session->data,
|
2015-04-21 17:21:54 +08:00
|
|
|
event->auxtrace.size);
|
|
|
|
} else {
|
|
|
|
ret = output_bytes(inject, event,
|
|
|
|
event->header.size + event->auxtrace.size);
|
|
|
|
}
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return event->auxtrace.size;
|
|
|
|
}
|
|
|
|
|
2015-04-30 22:37:27 +08:00
|
|
|
#else
|
|
|
|
|
|
|
|
static s64
|
2018-09-13 20:54:04 +08:00
|
|
|
perf_event__repipe_auxtrace(struct perf_session *session __maybe_unused,
|
|
|
|
union perf_event *event __maybe_unused)
|
2015-04-30 22:37:27 +08:00
|
|
|
{
|
|
|
|
pr_err("AUX area tracing not supported\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2024-08-13 04:46:55 +08:00
|
|
|
static int perf_event__repipe(const struct perf_tool *tool,
|
2011-11-25 18:19:45 +08:00
|
|
|
union perf_event *event,
|
2012-09-11 06:15:03 +08:00
|
|
|
struct perf_sample *sample __maybe_unused,
|
2013-07-04 21:20:20 +08:00
|
|
|
struct machine *machine __maybe_unused)
|
perf session: Parse sample earlier
At perf_session__process_event, so that we reduce the number of lines in eache
tool sample processing routine that now receives a sample_data pointer already
parsed.
This will also be useful in the next patch, where we'll allow sample the
identity fields in MMAP, FORK, EXIT, etc, when it will be possible to see (cpu,
timestamp) just after before every event.
Also validate callchains in perf_session__process_event, i.e. as early as
possible, and keep a counter of the number of events discarded due to invalid
callchains, warning the user about it if it happens.
There is an assumption that was kept that all events have the same sample_type,
that will be dealt with in the future, when this preexisting limitation will be
removed.
Tested-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Ian Munsie <imunsie@au1.ibm.com>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Ian Munsie <imunsie@au1.ibm.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Stephane Eranian <eranian@google.com>
LKML-Reference: <1291318772-30880-4-git-send-email-acme@infradead.org>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2010-12-03 00:10:21 +08:00
|
|
|
{
|
2013-07-04 21:20:20 +08:00
|
|
|
return perf_event__repipe_synth(tool, event);
|
perf session: Parse sample earlier
At perf_session__process_event, so that we reduce the number of lines in eache
tool sample processing routine that now receives a sample_data pointer already
parsed.
This will also be useful in the next patch, where we'll allow sample the
identity fields in MMAP, FORK, EXIT, etc, when it will be possible to see (cpu,
timestamp) just after before every event.
Also validate callchains in perf_session__process_event, i.e. as early as
possible, and keep a counter of the number of events discarded due to invalid
callchains, warning the user about it if it happens.
There is an assumption that was kept that all events have the same sample_type,
that will be dealt with in the future, when this preexisting limitation will be
removed.
Tested-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Ian Munsie <imunsie@au1.ibm.com>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Ian Munsie <imunsie@au1.ibm.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Stephane Eranian <eranian@google.com>
LKML-Reference: <1291318772-30880-4-git-send-email-acme@infradead.org>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2010-12-03 00:10:21 +08:00
|
|
|
}
|
|
|
|
|
2024-08-13 04:46:55 +08:00
|
|
|
static int perf_event__drop(const struct perf_tool *tool __maybe_unused,
|
2015-09-25 21:15:55 +08:00
|
|
|
union perf_event *event __maybe_unused,
|
|
|
|
struct perf_sample *sample __maybe_unused,
|
|
|
|
struct machine *machine __maybe_unused)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-08-13 04:46:55 +08:00
|
|
|
static int perf_event__drop_aux(const struct perf_tool *tool,
|
2015-09-25 21:15:54 +08:00
|
|
|
union perf_event *event __maybe_unused,
|
|
|
|
struct perf_sample *sample,
|
|
|
|
struct machine *machine __maybe_unused)
|
|
|
|
{
|
|
|
|
struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
|
|
|
|
|
|
|
|
if (!inject->aux_id)
|
|
|
|
inject->aux_id = sample->id;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-11-15 20:42:18 +08:00
|
|
|
static union perf_event *
|
|
|
|
perf_inject__cut_auxtrace_sample(struct perf_inject *inject,
|
|
|
|
union perf_event *event,
|
|
|
|
struct perf_sample *sample)
|
|
|
|
{
|
|
|
|
size_t sz1 = sample->aux_sample.data - (void *)event;
|
|
|
|
size_t sz2 = event->header.size - sample->aux_sample.size - sz1;
|
2023-05-27 11:43:21 +08:00
|
|
|
union perf_event *ev;
|
2019-11-15 20:42:18 +08:00
|
|
|
|
2023-05-27 11:43:21 +08:00
|
|
|
if (inject->event_copy == NULL) {
|
|
|
|
inject->event_copy = malloc(PERF_SAMPLE_MAX_SIZE);
|
|
|
|
if (!inject->event_copy)
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
}
|
|
|
|
ev = (union perf_event *)inject->event_copy;
|
2019-11-15 20:42:18 +08:00
|
|
|
if (sz1 > event->header.size || sz2 > event->header.size ||
|
|
|
|
sz1 + sz2 > event->header.size ||
|
|
|
|
sz1 < sizeof(struct perf_event_header) + sizeof(u64))
|
|
|
|
return event;
|
|
|
|
|
|
|
|
memcpy(ev, event, sz1);
|
|
|
|
memcpy((void *)ev + sz1, (void *)event + event->header.size - sz2, sz2);
|
|
|
|
ev->header.size = sz1 + sz2;
|
|
|
|
((u64 *)((void *)ev + sz1))[-1] = 0;
|
|
|
|
|
|
|
|
return ev;
|
|
|
|
}
|
|
|
|
|
2024-08-13 04:46:55 +08:00
|
|
|
typedef int (*inject_handler)(const struct perf_tool *tool,
|
2012-08-07 20:56:04 +08:00
|
|
|
union perf_event *event,
|
|
|
|
struct perf_sample *sample,
|
2019-07-21 19:23:51 +08:00
|
|
|
struct evsel *evsel,
|
2012-08-07 20:56:04 +08:00
|
|
|
struct machine *machine);
|
|
|
|
|
2024-08-13 04:46:55 +08:00
|
|
|
static int perf_event__repipe_sample(const struct perf_tool *tool,
|
2011-11-25 18:19:45 +08:00
|
|
|
union perf_event *event,
|
2012-08-07 20:56:04 +08:00
|
|
|
struct perf_sample *sample,
|
2019-07-21 19:23:51 +08:00
|
|
|
struct evsel *evsel,
|
2012-08-07 20:56:04 +08:00
|
|
|
struct machine *machine)
|
2011-03-16 02:44:01 +08:00
|
|
|
{
|
2019-11-15 20:42:18 +08:00
|
|
|
struct perf_inject *inject = container_of(tool, struct perf_inject,
|
|
|
|
tool);
|
|
|
|
|
2019-07-04 03:02:09 +08:00
|
|
|
if (evsel && evsel->handler) {
|
2013-11-06 21:17:38 +08:00
|
|
|
inject_handler f = evsel->handler;
|
2012-08-07 20:56:04 +08:00
|
|
|
return f(tool, event, sample, evsel, machine);
|
|
|
|
}
|
|
|
|
|
2012-08-07 20:56:05 +08:00
|
|
|
build_id__mark_dso_hit(tool, event, sample, evsel, machine);
|
|
|
|
|
2023-05-27 11:43:21 +08:00
|
|
|
if (inject->itrace_synth_opts.set && sample->aux_sample.size) {
|
2019-11-15 20:42:18 +08:00
|
|
|
event = perf_inject__cut_auxtrace_sample(inject, event, sample);
|
2023-05-27 11:43:21 +08:00
|
|
|
if (IS_ERR(event))
|
|
|
|
return PTR_ERR(event);
|
|
|
|
}
|
2019-11-15 20:42:18 +08:00
|
|
|
|
2013-07-04 21:20:20 +08:00
|
|
|
return perf_event__repipe_synth(tool, event);
|
2011-03-16 02:44:01 +08:00
|
|
|
}
|
|
|
|
|
2020-10-12 15:02:13 +08:00
|
|
|
static struct dso *findnew_dso(int pid, int tid, const char *filename,
|
2024-08-17 14:44:33 +08:00
|
|
|
const struct dso_id *id, struct machine *machine)
|
2020-10-12 15:02:13 +08:00
|
|
|
{
|
|
|
|
struct thread *thread;
|
|
|
|
struct nsinfo *nsi = NULL;
|
|
|
|
struct nsinfo *nnsi;
|
|
|
|
struct dso *dso;
|
|
|
|
bool vdso;
|
|
|
|
|
|
|
|
thread = machine__findnew_thread(machine, pid, tid);
|
|
|
|
if (thread == NULL) {
|
|
|
|
pr_err("cannot find or create a task %d/%d.\n", tid, pid);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
vdso = is_vdso_map(filename);
|
2023-06-09 07:28:00 +08:00
|
|
|
nsi = nsinfo__get(thread__nsinfo(thread));
|
2020-10-12 15:02:13 +08:00
|
|
|
|
|
|
|
if (vdso) {
|
|
|
|
/* The vdso maps are always on the host and not the
|
|
|
|
* container. Ensure that we don't use setns to look
|
|
|
|
* them up.
|
|
|
|
*/
|
|
|
|
nnsi = nsinfo__copy(nsi);
|
|
|
|
if (nnsi) {
|
|
|
|
nsinfo__put(nsi);
|
2022-02-11 18:34:06 +08:00
|
|
|
nsinfo__clear_need_setns(nnsi);
|
2020-10-12 15:02:13 +08:00
|
|
|
nsi = nnsi;
|
|
|
|
}
|
|
|
|
dso = machine__findnew_vdso(machine, thread);
|
|
|
|
} else {
|
|
|
|
dso = machine__findnew_dso_id(machine, filename, id);
|
|
|
|
}
|
|
|
|
|
2021-07-16 00:07:06 +08:00
|
|
|
if (dso) {
|
2024-05-05 05:38:01 +08:00
|
|
|
mutex_lock(dso__lock(dso));
|
|
|
|
dso__set_nsinfo(dso, nsi);
|
|
|
|
mutex_unlock(dso__lock(dso));
|
2021-07-16 00:07:06 +08:00
|
|
|
} else
|
2020-10-12 15:02:13 +08:00
|
|
|
nsinfo__put(nsi);
|
|
|
|
|
|
|
|
thread__put(thread);
|
|
|
|
return dso;
|
|
|
|
}
|
|
|
|
|
2024-09-10 04:37:37 +08:00
|
|
|
/*
|
|
|
|
* The evsel used for the sample ID for mmap events. Typically stashed when
|
|
|
|
* processing mmap events. If not stashed, search the evlist for the first mmap
|
|
|
|
* gathering event.
|
|
|
|
*/
|
|
|
|
static const struct evsel *inject__mmap_evsel(struct perf_inject *inject)
|
|
|
|
{
|
|
|
|
struct evsel *pos;
|
|
|
|
|
|
|
|
if (inject->mmap_evsel)
|
|
|
|
return inject->mmap_evsel;
|
|
|
|
|
|
|
|
evlist__for_each_entry(inject->session->evlist, pos) {
|
|
|
|
if (pos->core.attr.mmap) {
|
|
|
|
inject->mmap_evsel = pos;
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pr_err("No mmap events found\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2024-08-17 14:44:38 +08:00
|
|
|
static int perf_event__repipe_common_mmap(const struct perf_tool *tool,
|
|
|
|
union perf_event *event,
|
|
|
|
struct perf_sample *sample,
|
|
|
|
struct machine *machine,
|
2024-09-10 04:37:38 +08:00
|
|
|
__u32 pid, __u32 tid,
|
|
|
|
__u64 start, __u64 len, __u64 pgoff,
|
|
|
|
__u32 flags, __u32 prot,
|
2024-08-17 14:44:38 +08:00
|
|
|
const char *filename,
|
|
|
|
const struct dso_id *dso_id,
|
|
|
|
int (*perf_event_process)(const struct perf_tool *tool,
|
|
|
|
union perf_event *event,
|
|
|
|
struct perf_sample *sample,
|
|
|
|
struct machine *machine))
|
2015-11-30 17:02:21 +08:00
|
|
|
{
|
|
|
|
struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
|
2024-08-17 14:44:37 +08:00
|
|
|
struct dso *dso = NULL;
|
2024-08-17 14:44:38 +08:00
|
|
|
bool dso_sought = false;
|
2015-11-30 17:02:21 +08:00
|
|
|
|
2024-08-17 14:44:37 +08:00
|
|
|
#ifdef HAVE_JITDUMP
|
|
|
|
if (inject->jit_mode) {
|
|
|
|
u64 n = 0;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* If jit marker, then inject jit mmaps and generate ELF images. */
|
|
|
|
ret = jit_process(inject->session, &inject->output, machine,
|
2024-08-17 14:44:38 +08:00
|
|
|
filename, pid, tid, &n);
|
2024-08-17 14:44:37 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
if (ret) {
|
|
|
|
inject->bytes_written += n;
|
|
|
|
return 0;
|
|
|
|
}
|
2015-11-30 17:02:21 +08:00
|
|
|
}
|
|
|
|
#endif
|
2021-05-25 06:50:51 +08:00
|
|
|
if (event->header.misc & PERF_RECORD_MISC_MMAP_BUILD_ID) {
|
2024-08-17 14:44:38 +08:00
|
|
|
dso = findnew_dso(pid, tid, filename, dso_id, machine);
|
|
|
|
dso_sought = true;
|
2021-05-25 06:50:51 +08:00
|
|
|
if (dso) {
|
|
|
|
/* mark it not to inject build-id */
|
2024-05-05 05:38:01 +08:00
|
|
|
dso__set_hit(dso);
|
2021-05-25 06:50:51 +08:00
|
|
|
}
|
|
|
|
}
|
2024-08-17 14:44:37 +08:00
|
|
|
if (inject->build_id_style == BID_RWS__INJECT_HEADER_ALL) {
|
2024-08-17 14:44:38 +08:00
|
|
|
if (!dso_sought) {
|
|
|
|
dso = findnew_dso(pid, tid, filename, dso_id, machine);
|
|
|
|
dso_sought = true;
|
2024-08-17 14:44:37 +08:00
|
|
|
}
|
2024-08-17 14:44:38 +08:00
|
|
|
|
2024-08-17 14:44:37 +08:00
|
|
|
if (dso && !dso__hit(dso)) {
|
2024-09-10 04:37:37 +08:00
|
|
|
struct evsel *evsel = evlist__event2evsel(inject->session->evlist, event);
|
|
|
|
|
|
|
|
if (evsel) {
|
|
|
|
dso__set_hit(dso);
|
|
|
|
tool__inject_build_id(tool, sample, machine, evsel,
|
|
|
|
/*misc=*/sample->cpumode,
|
|
|
|
filename, dso, flags);
|
|
|
|
}
|
2024-08-17 14:44:37 +08:00
|
|
|
}
|
|
|
|
} else {
|
2024-09-10 04:37:37 +08:00
|
|
|
int err;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Remember the evsel for lazy build id generation. It is used
|
|
|
|
* for the sample id header type.
|
|
|
|
*/
|
2024-09-10 04:37:39 +08:00
|
|
|
if ((inject->build_id_style == BID_RWS__INJECT_HEADER_LAZY ||
|
|
|
|
inject->build_id_style == BID_RWS__MMAP2_BUILDID_LAZY) &&
|
2024-09-10 04:37:37 +08:00
|
|
|
!inject->mmap_evsel)
|
|
|
|
inject->mmap_evsel = evlist__event2evsel(inject->session->evlist, event);
|
|
|
|
|
2024-08-17 14:44:37 +08:00
|
|
|
/* Create the thread, map, etc. Not done for the unordered inject all case. */
|
2024-09-10 04:37:37 +08:00
|
|
|
err = perf_event_process(tool, event, sample, machine);
|
2021-05-25 06:50:51 +08:00
|
|
|
|
2024-08-17 14:44:37 +08:00
|
|
|
if (err) {
|
|
|
|
dso__put(dso);
|
|
|
|
return err;
|
|
|
|
}
|
2020-10-12 15:02:13 +08:00
|
|
|
}
|
2024-09-10 04:37:38 +08:00
|
|
|
if ((inject->build_id_style == BID_RWS__MMAP2_BUILDID_ALL) &&
|
|
|
|
!(event->header.misc & PERF_RECORD_MISC_MMAP_BUILD_ID)) {
|
|
|
|
struct evsel *evsel = evlist__event2evsel(inject->session->evlist, event);
|
|
|
|
|
|
|
|
if (evsel && !dso_sought) {
|
|
|
|
dso = findnew_dso(pid, tid, filename, dso_id, machine);
|
|
|
|
dso_sought = true;
|
|
|
|
}
|
|
|
|
if (evsel && dso &&
|
|
|
|
!tool__inject_mmap2_build_id(tool, sample, machine, evsel,
|
|
|
|
sample->cpumode | PERF_RECORD_MISC_MMAP_BUILD_ID,
|
|
|
|
pid, tid, start, len, pgoff,
|
|
|
|
dso,
|
|
|
|
prot, flags,
|
|
|
|
filename)) {
|
|
|
|
/* Injected mmap2 so no need to repipe. */
|
|
|
|
dso__put(dso);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2021-05-25 06:50:50 +08:00
|
|
|
dso__put(dso);
|
2024-09-10 04:37:39 +08:00
|
|
|
if (inject->build_id_style == BID_RWS__MMAP2_BUILDID_LAZY)
|
|
|
|
return 0;
|
|
|
|
|
2024-08-17 14:44:37 +08:00
|
|
|
return perf_event__repipe(tool, event, sample, machine);
|
2020-10-12 15:02:13 +08:00
|
|
|
}
|
|
|
|
|
2024-08-17 14:44:38 +08:00
|
|
|
static int perf_event__repipe_mmap(const struct perf_tool *tool,
|
|
|
|
union perf_event *event,
|
|
|
|
struct perf_sample *sample,
|
|
|
|
struct machine *machine)
|
|
|
|
{
|
|
|
|
return perf_event__repipe_common_mmap(
|
|
|
|
tool, event, sample, machine,
|
2024-09-10 04:37:38 +08:00
|
|
|
event->mmap.pid, event->mmap.tid,
|
|
|
|
event->mmap.start, event->mmap.len, event->mmap.pgoff,
|
|
|
|
/*flags=*/0, PROT_EXEC,
|
2024-08-17 14:44:38 +08:00
|
|
|
event->mmap.filename, /*dso_id=*/NULL,
|
|
|
|
perf_event__process_mmap);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int perf_event__repipe_mmap2(const struct perf_tool *tool,
|
|
|
|
union perf_event *event,
|
|
|
|
struct perf_sample *sample,
|
|
|
|
struct machine *machine)
|
|
|
|
{
|
|
|
|
struct dso_id id;
|
|
|
|
struct dso_id *dso_id = NULL;
|
|
|
|
|
|
|
|
if (!(event->header.misc & PERF_RECORD_MISC_MMAP_BUILD_ID)) {
|
|
|
|
id.maj = event->mmap2.maj;
|
|
|
|
id.min = event->mmap2.min;
|
|
|
|
id.ino = event->mmap2.ino;
|
|
|
|
id.ino_generation = event->mmap2.ino_generation;
|
|
|
|
dso_id = &id;
|
|
|
|
}
|
|
|
|
|
|
|
|
return perf_event__repipe_common_mmap(
|
|
|
|
tool, event, sample, machine,
|
2024-09-10 04:37:38 +08:00
|
|
|
event->mmap2.pid, event->mmap2.tid,
|
|
|
|
event->mmap2.start, event->mmap2.len, event->mmap2.pgoff,
|
|
|
|
event->mmap2.flags, event->mmap2.prot,
|
2024-08-17 14:44:38 +08:00
|
|
|
event->mmap2.filename, dso_id,
|
|
|
|
perf_event__process_mmap2);
|
|
|
|
}
|
|
|
|
|
2024-08-13 04:46:55 +08:00
|
|
|
static int perf_event__repipe_fork(const struct perf_tool *tool,
|
2011-11-25 18:19:45 +08:00
|
|
|
union perf_event *event,
|
2011-01-30 00:01:45 +08:00
|
|
|
struct perf_sample *sample,
|
2011-11-28 17:56:39 +08:00
|
|
|
struct machine *machine)
|
2010-05-01 14:41:20 +08:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
2012-10-07 02:44:59 +08:00
|
|
|
err = perf_event__process_fork(tool, event, sample, machine);
|
2011-11-28 18:30:20 +08:00
|
|
|
perf_event__repipe(tool, event, sample, machine);
|
2010-05-01 14:41:20 +08:00
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2024-08-13 04:46:55 +08:00
|
|
|
static int perf_event__repipe_comm(const struct perf_tool *tool,
|
2015-04-09 23:54:00 +08:00
|
|
|
union perf_event *event,
|
|
|
|
struct perf_sample *sample,
|
|
|
|
struct machine *machine)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = perf_event__process_comm(tool, event, sample, machine);
|
|
|
|
perf_event__repipe(tool, event, sample, machine);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2024-08-13 04:46:55 +08:00
|
|
|
static int perf_event__repipe_namespaces(const struct perf_tool *tool,
|
perf tools: Add PERF_RECORD_NAMESPACES to include namespaces related info
Introduce a new option to record PERF_RECORD_NAMESPACES events emitted
by the kernel when fork, clone, setns or unshare are invoked. And update
perf-record documentation with the new option to record namespace
events.
Committer notes:
Combined it with a later patch to allow printing it via 'perf report -D'
and be able to test the feature introduced in this patch. Had to move
here also perf_ns__name(), that was introduced in another later patch.
Also used PRIu64 and PRIx64 to fix the build in some enfironments wrt:
util/event.c:1129:39: error: format '%lx' expects argument of type 'long unsigned int', but argument 6 has type 'long long unsigned int' [-Werror=format=]
ret += fprintf(fp, "%u/%s: %lu/0x%lx%s", idx
^
Testing it:
# perf record --namespaces -a
^C[ perf record: Woken up 1 times to write data ]
[ perf record: Captured and wrote 1.083 MB perf.data (423 samples) ]
#
# perf report -D
<SNIP>
3 2028902078892 0x115140 [0xa0]: PERF_RECORD_NAMESPACES 14783/14783 - nr_namespaces: 7
[0/net: 3/0xf0000081, 1/uts: 3/0xeffffffe, 2/ipc: 3/0xefffffff, 3/pid: 3/0xeffffffc,
4/user: 3/0xeffffffd, 5/mnt: 3/0xf0000000, 6/cgroup: 3/0xeffffffb]
0x1151e0 [0x30]: event: 9
.
. ... raw event: size 48 bytes
. 0000: 09 00 00 00 02 00 30 00 c4 71 82 68 0c 7f 00 00 ......0..q.h....
. 0010: a9 39 00 00 a9 39 00 00 94 28 fe 63 d8 01 00 00 .9...9...(.c....
. 0020: 03 00 00 00 00 00 00 00 ce c4 02 00 00 00 00 00 ................
<SNIP>
NAMESPACES events: 1
<SNIP>
#
Signed-off-by: Hari Bathini <hbathini@linux.vnet.ibm.com>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Alexei Starovoitov <ast@fb.com>
Cc: Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
Cc: Aravinda Prasad <aravinda@linux.vnet.ibm.com>
Cc: Brendan Gregg <brendan.d.gregg@gmail.com>
Cc: Daniel Borkmann <daniel@iogearbox.net>
Cc: Eric Biederman <ebiederm@xmission.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Sargun Dhillon <sargun@sargun.me>
Cc: Steven Rostedt <rostedt@goodmis.org>
Link: http://lkml.kernel.org/r/148891930386.25309.18412039920746995488.stgit@hbathini.in.ibm.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2017-03-08 04:41:43 +08:00
|
|
|
union perf_event *event,
|
|
|
|
struct perf_sample *sample,
|
|
|
|
struct machine *machine)
|
|
|
|
{
|
|
|
|
int err = perf_event__process_namespaces(tool, event, sample, machine);
|
|
|
|
|
|
|
|
perf_event__repipe(tool, event, sample, machine);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2024-08-13 04:46:55 +08:00
|
|
|
static int perf_event__repipe_exit(const struct perf_tool *tool,
|
2015-04-09 23:54:00 +08:00
|
|
|
union perf_event *event,
|
|
|
|
struct perf_sample *sample,
|
|
|
|
struct machine *machine)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = perf_event__process_exit(tool, event, sample, machine);
|
|
|
|
perf_event__repipe(tool, event, sample, machine);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
perf build: Use libtraceevent from the system
Remove the LIBTRACEEVENT_DYNAMIC and LIBTRACEFS_DYNAMIC make command
line variables.
If libtraceevent isn't installed or NO_LIBTRACEEVENT=1 is passed to the
build, don't compile in libtraceevent and libtracefs support.
This also disables CONFIG_TRACE that controls "perf trace".
CONFIG_LIBTRACEEVENT is used to control enablement in Build/Makefiles,
HAVE_LIBTRACEEVENT is used in C code.
Without HAVE_LIBTRACEEVENT tracepoints are disabled and as such the
commands kmem, kwork, lock, sched and timechart are removed. The
majority of commands continue to work including "perf test".
Committer notes:
Fixed up a tools/perf/util/Build reject and added:
#include <traceevent/event-parse.h>
to tools/perf/util/scripting-engines/trace-event-perl.c.
Committer testing:
$ rpm -qi libtraceevent-devel
Name : libtraceevent-devel
Version : 1.5.3
Release : 2.fc36
Architecture: x86_64
Install Date: Mon 25 Jul 2022 03:20:19 PM -03
Group : Unspecified
Size : 27728
License : LGPLv2+ and GPLv2+
Signature : RSA/SHA256, Fri 15 Apr 2022 02:11:58 PM -03, Key ID 999f7cbf38ab71f4
Source RPM : libtraceevent-1.5.3-2.fc36.src.rpm
Build Date : Fri 15 Apr 2022 10:57:01 AM -03
Build Host : buildvm-x86-05.iad2.fedoraproject.org
Packager : Fedora Project
Vendor : Fedora Project
URL : https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git/
Bug URL : https://bugz.fedoraproject.org/libtraceevent
Summary : Development headers of libtraceevent
Description :
Development headers of libtraceevent-libs
$
Default build:
$ ldd ~/bin/perf | grep tracee
libtraceevent.so.1 => /lib64/libtraceevent.so.1 (0x00007f1dcaf8f000)
$
# perf trace -e sched:* --max-events 10
0.000 migration/0/17 sched:sched_migrate_task(comm: "", pid: 1603763 (perf), prio: 120, dest_cpu: 1)
0.005 migration/0/17 sched:sched_wake_idle_without_ipi(cpu: 1)
0.011 migration/0/17 sched:sched_switch(prev_comm: "", prev_pid: 17 (migration/0), prev_state: 1, next_comm: "", next_prio: 120)
1.173 :0/0 sched:sched_wakeup(comm: "", pid: 3138 (gnome-terminal-), prio: 120)
1.180 :0/0 sched:sched_switch(prev_comm: "", prev_prio: 120, next_comm: "", next_pid: 3138 (gnome-terminal-), next_prio: 120)
0.156 migration/1/21 sched:sched_migrate_task(comm: "", pid: 1603763 (perf), prio: 120, orig_cpu: 1, dest_cpu: 2)
0.160 migration/1/21 sched:sched_wake_idle_without_ipi(cpu: 2)
0.166 migration/1/21 sched:sched_switch(prev_comm: "", prev_pid: 21 (migration/1), prev_state: 1, next_comm: "", next_prio: 120)
1.183 :0/0 sched:sched_wakeup(comm: "", pid: 1602985 (kworker/u16:0-f), prio: 120, target_cpu: 1)
1.186 :0/0 sched:sched_switch(prev_comm: "", prev_prio: 120, next_comm: "", next_pid: 1602985 (kworker/u16:0-f), next_prio: 120)
#
Had to tweak tools/perf/util/setup.py to make sure the python binding
shared object links with libtraceevent if -DHAVE_LIBTRACEEVENT is
present in CFLAGS.
Building with NO_LIBTRACEEVENT=1 uncovered some more build failures:
- Make building of data-convert-bt.c to CONFIG_LIBTRACEEVENT=y
- perf-$(CONFIG_LIBTRACEEVENT) += scripts/
- bpf_kwork.o needs also to be dependent on CONFIG_LIBTRACEEVENT=y
- The python binding needed some fixups and util/trace-event.c can't be
built and linked with the python binding shared object, so remove it
in tools/perf/util/setup.py and exclude it from the list of
dependencies in the python/perf.so Makefile.perf target.
Building without libtraceevent-devel installed uncovered more build
failures:
- The python binding tools/perf/util/python.c was assuming that
traceevent/parse-events.h was always available, which was the case
when we defaulted to using the in-kernel tools/lib/traceevent/ files,
now we need to enclose it under ifdef HAVE_LIBTRACEEVENT, just like
the other parts of it that deal with tracepoints.
- We have to ifdef the rules in the Build files with
CONFIG_LIBTRACEEVENT=y to build builtin-trace.c and
tools/perf/trace/beauty/ as we only ifdef setting CONFIG_TRACE=y when
setting NO_LIBTRACEEVENT=1 in the make command line, not when we don't
detect libtraceevent-devel installed in the system. Simplification here
to avoid these two ways of disabling builtin-trace.c and not having
CONFIG_TRACE=y when libtraceevent-devel isn't installed is the clean
way.
From Athira:
<quote>
tools/perf/arch/powerpc/util/Build
-perf-y += kvm-stat.o
+perf-$(CONFIG_LIBTRACEEVENT) += kvm-stat.o
</quote>
Then, ditto for arm64 and s390, detected by container cross build tests.
- s/390 uses test__checkevent_tracepoint() that is now only available if
HAVE_LIBTRACEEVENT is defined, enclose the callsite with ifder HAVE_LIBTRACEEVENT.
Also from Athira:
<quote>
With this change, I could successfully compile in these environment:
- Without libtraceevent-devel installed
- With libtraceevent-devel installed
- With “make NO_LIBTRACEEVENT=1”
</quote>
Then, finally rename CONFIG_TRACEEVENT to CONFIG_LIBTRACEEVENT for
consistency with other libraries detected in tools/perf/.
Signed-off-by: Ian Rogers <irogers@google.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Tested-by: Athira Rajeev <atrajeev@linux.vnet.ibm.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Nick Desaulniers <ndesaulniers@google.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: bpf@vger.kernel.org
Link: http://lore.kernel.org/lkml/20221205225940.3079667-3-irogers@google.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2022-12-06 06:59:39 +08:00
|
|
|
#ifdef HAVE_LIBTRACEEVENT
|
2018-09-13 20:54:03 +08:00
|
|
|
static int perf_event__repipe_tracing_data(struct perf_session *session,
|
|
|
|
union perf_event *event)
|
2010-05-01 14:41:20 +08:00
|
|
|
{
|
2018-09-13 20:54:03 +08:00
|
|
|
perf_event__repipe_synth(session->tool, event);
|
2010-05-01 14:41:20 +08:00
|
|
|
|
2022-01-12 16:01:09 +08:00
|
|
|
return perf_event__process_tracing_data(session, event);
|
2010-05-01 14:41:20 +08:00
|
|
|
}
|
perf build: Use libtraceevent from the system
Remove the LIBTRACEEVENT_DYNAMIC and LIBTRACEFS_DYNAMIC make command
line variables.
If libtraceevent isn't installed or NO_LIBTRACEEVENT=1 is passed to the
build, don't compile in libtraceevent and libtracefs support.
This also disables CONFIG_TRACE that controls "perf trace".
CONFIG_LIBTRACEEVENT is used to control enablement in Build/Makefiles,
HAVE_LIBTRACEEVENT is used in C code.
Without HAVE_LIBTRACEEVENT tracepoints are disabled and as such the
commands kmem, kwork, lock, sched and timechart are removed. The
majority of commands continue to work including "perf test".
Committer notes:
Fixed up a tools/perf/util/Build reject and added:
#include <traceevent/event-parse.h>
to tools/perf/util/scripting-engines/trace-event-perl.c.
Committer testing:
$ rpm -qi libtraceevent-devel
Name : libtraceevent-devel
Version : 1.5.3
Release : 2.fc36
Architecture: x86_64
Install Date: Mon 25 Jul 2022 03:20:19 PM -03
Group : Unspecified
Size : 27728
License : LGPLv2+ and GPLv2+
Signature : RSA/SHA256, Fri 15 Apr 2022 02:11:58 PM -03, Key ID 999f7cbf38ab71f4
Source RPM : libtraceevent-1.5.3-2.fc36.src.rpm
Build Date : Fri 15 Apr 2022 10:57:01 AM -03
Build Host : buildvm-x86-05.iad2.fedoraproject.org
Packager : Fedora Project
Vendor : Fedora Project
URL : https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git/
Bug URL : https://bugz.fedoraproject.org/libtraceevent
Summary : Development headers of libtraceevent
Description :
Development headers of libtraceevent-libs
$
Default build:
$ ldd ~/bin/perf | grep tracee
libtraceevent.so.1 => /lib64/libtraceevent.so.1 (0x00007f1dcaf8f000)
$
# perf trace -e sched:* --max-events 10
0.000 migration/0/17 sched:sched_migrate_task(comm: "", pid: 1603763 (perf), prio: 120, dest_cpu: 1)
0.005 migration/0/17 sched:sched_wake_idle_without_ipi(cpu: 1)
0.011 migration/0/17 sched:sched_switch(prev_comm: "", prev_pid: 17 (migration/0), prev_state: 1, next_comm: "", next_prio: 120)
1.173 :0/0 sched:sched_wakeup(comm: "", pid: 3138 (gnome-terminal-), prio: 120)
1.180 :0/0 sched:sched_switch(prev_comm: "", prev_prio: 120, next_comm: "", next_pid: 3138 (gnome-terminal-), next_prio: 120)
0.156 migration/1/21 sched:sched_migrate_task(comm: "", pid: 1603763 (perf), prio: 120, orig_cpu: 1, dest_cpu: 2)
0.160 migration/1/21 sched:sched_wake_idle_without_ipi(cpu: 2)
0.166 migration/1/21 sched:sched_switch(prev_comm: "", prev_pid: 21 (migration/1), prev_state: 1, next_comm: "", next_prio: 120)
1.183 :0/0 sched:sched_wakeup(comm: "", pid: 1602985 (kworker/u16:0-f), prio: 120, target_cpu: 1)
1.186 :0/0 sched:sched_switch(prev_comm: "", prev_prio: 120, next_comm: "", next_pid: 1602985 (kworker/u16:0-f), next_prio: 120)
#
Had to tweak tools/perf/util/setup.py to make sure the python binding
shared object links with libtraceevent if -DHAVE_LIBTRACEEVENT is
present in CFLAGS.
Building with NO_LIBTRACEEVENT=1 uncovered some more build failures:
- Make building of data-convert-bt.c to CONFIG_LIBTRACEEVENT=y
- perf-$(CONFIG_LIBTRACEEVENT) += scripts/
- bpf_kwork.o needs also to be dependent on CONFIG_LIBTRACEEVENT=y
- The python binding needed some fixups and util/trace-event.c can't be
built and linked with the python binding shared object, so remove it
in tools/perf/util/setup.py and exclude it from the list of
dependencies in the python/perf.so Makefile.perf target.
Building without libtraceevent-devel installed uncovered more build
failures:
- The python binding tools/perf/util/python.c was assuming that
traceevent/parse-events.h was always available, which was the case
when we defaulted to using the in-kernel tools/lib/traceevent/ files,
now we need to enclose it under ifdef HAVE_LIBTRACEEVENT, just like
the other parts of it that deal with tracepoints.
- We have to ifdef the rules in the Build files with
CONFIG_LIBTRACEEVENT=y to build builtin-trace.c and
tools/perf/trace/beauty/ as we only ifdef setting CONFIG_TRACE=y when
setting NO_LIBTRACEEVENT=1 in the make command line, not when we don't
detect libtraceevent-devel installed in the system. Simplification here
to avoid these two ways of disabling builtin-trace.c and not having
CONFIG_TRACE=y when libtraceevent-devel isn't installed is the clean
way.
From Athira:
<quote>
tools/perf/arch/powerpc/util/Build
-perf-y += kvm-stat.o
+perf-$(CONFIG_LIBTRACEEVENT) += kvm-stat.o
</quote>
Then, ditto for arm64 and s390, detected by container cross build tests.
- s/390 uses test__checkevent_tracepoint() that is now only available if
HAVE_LIBTRACEEVENT is defined, enclose the callsite with ifder HAVE_LIBTRACEEVENT.
Also from Athira:
<quote>
With this change, I could successfully compile in these environment:
- Without libtraceevent-devel installed
- With libtraceevent-devel installed
- With “make NO_LIBTRACEEVENT=1”
</quote>
Then, finally rename CONFIG_TRACEEVENT to CONFIG_LIBTRACEEVENT for
consistency with other libraries detected in tools/perf/.
Signed-off-by: Ian Rogers <irogers@google.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Tested-by: Athira Rajeev <atrajeev@linux.vnet.ibm.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Nick Desaulniers <ndesaulniers@google.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: bpf@vger.kernel.org
Link: http://lore.kernel.org/lkml/20221205225940.3079667-3-irogers@google.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2022-12-06 06:59:39 +08:00
|
|
|
#endif
|
2010-05-01 14:41:20 +08:00
|
|
|
|
2013-10-23 06:01:31 +08:00
|
|
|
static int dso__read_build_id(struct dso *dso)
|
2010-05-01 14:41:20 +08:00
|
|
|
{
|
2020-10-12 15:02:11 +08:00
|
|
|
struct nscookie nsc;
|
|
|
|
|
2024-05-05 05:38:01 +08:00
|
|
|
if (dso__has_build_id(dso))
|
2010-05-03 06:46:36 +08:00
|
|
|
return 0;
|
2010-05-01 14:41:20 +08:00
|
|
|
|
2024-05-05 05:38:01 +08:00
|
|
|
mutex_lock(dso__lock(dso));
|
|
|
|
nsinfo__mountns_enter(dso__nsinfo(dso), &nsc);
|
|
|
|
if (filename__read_build_id(dso__long_name(dso), dso__bid(dso)) > 0)
|
|
|
|
dso__set_has_build_id(dso);
|
|
|
|
else if (dso__nsinfo(dso)) {
|
|
|
|
char *new_name = dso__filename_with_chroot(dso, dso__long_name(dso));
|
2022-02-02 15:08:27 +08:00
|
|
|
|
2024-05-05 05:38:01 +08:00
|
|
|
if (new_name && filename__read_build_id(new_name, dso__bid(dso)) > 0)
|
|
|
|
dso__set_has_build_id(dso);
|
2022-02-02 15:08:27 +08:00
|
|
|
free(new_name);
|
|
|
|
}
|
2020-10-12 15:02:11 +08:00
|
|
|
nsinfo__mountns_exit(&nsc);
|
2024-05-05 05:38:01 +08:00
|
|
|
mutex_unlock(dso__lock(dso));
|
2010-05-01 14:41:20 +08:00
|
|
|
|
2024-05-05 05:38:01 +08:00
|
|
|
return dso__has_build_id(dso) ? 0 : -1;
|
2010-05-03 06:46:36 +08:00
|
|
|
}
|
2010-05-01 14:41:20 +08:00
|
|
|
|
2022-08-16 06:59:22 +08:00
|
|
|
static struct strlist *perf_inject__parse_known_build_ids(
|
|
|
|
const char *known_build_ids_string)
|
|
|
|
{
|
|
|
|
struct str_node *pos, *tmp;
|
|
|
|
struct strlist *known_build_ids;
|
|
|
|
int bid_len;
|
|
|
|
|
|
|
|
known_build_ids = strlist__new(known_build_ids_string, NULL);
|
|
|
|
if (known_build_ids == NULL)
|
|
|
|
return NULL;
|
|
|
|
strlist__for_each_entry_safe(pos, tmp, known_build_ids) {
|
|
|
|
const char *build_id, *dso_name;
|
|
|
|
|
|
|
|
build_id = skip_spaces(pos->s);
|
|
|
|
dso_name = strchr(build_id, ' ');
|
|
|
|
if (dso_name == NULL) {
|
|
|
|
strlist__remove(known_build_ids, pos);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
bid_len = dso_name - pos->s;
|
|
|
|
dso_name = skip_spaces(dso_name);
|
|
|
|
if (bid_len % 2 != 0 || bid_len >= SBUILD_ID_SIZE) {
|
|
|
|
strlist__remove(known_build_ids, pos);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
for (int ix = 0; 2 * ix + 1 < bid_len; ++ix) {
|
|
|
|
if (!isxdigit(build_id[2 * ix]) ||
|
|
|
|
!isxdigit(build_id[2 * ix + 1])) {
|
|
|
|
strlist__remove(known_build_ids, pos);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return known_build_ids;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool perf_inject__lookup_known_build_id(struct perf_inject *inject,
|
|
|
|
struct dso *dso)
|
|
|
|
{
|
|
|
|
struct str_node *pos;
|
|
|
|
int bid_len;
|
|
|
|
|
|
|
|
strlist__for_each_entry(pos, inject->known_build_ids) {
|
|
|
|
const char *build_id, *dso_name;
|
|
|
|
|
|
|
|
build_id = skip_spaces(pos->s);
|
|
|
|
dso_name = strchr(build_id, ' ');
|
|
|
|
bid_len = dso_name - pos->s;
|
|
|
|
dso_name = skip_spaces(dso_name);
|
2024-05-05 05:38:01 +08:00
|
|
|
if (strcmp(dso__long_name(dso), dso_name))
|
2022-08-16 06:59:22 +08:00
|
|
|
continue;
|
|
|
|
for (int ix = 0; 2 * ix + 1 < bid_len; ++ix) {
|
2024-05-05 05:38:01 +08:00
|
|
|
dso__bid(dso)->data[ix] = (hex(build_id[2 * ix]) << 4 |
|
|
|
|
hex(build_id[2 * ix + 1]));
|
2022-08-16 06:59:22 +08:00
|
|
|
}
|
2024-05-05 05:38:01 +08:00
|
|
|
dso__bid(dso)->size = bid_len / 2;
|
|
|
|
dso__set_has_build_id(dso);
|
2022-08-16 06:59:22 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2024-09-10 04:37:37 +08:00
|
|
|
static int tool__inject_build_id(const struct perf_tool *tool,
|
|
|
|
struct perf_sample *sample,
|
|
|
|
struct machine *machine,
|
|
|
|
const struct evsel *evsel,
|
|
|
|
__u16 misc,
|
|
|
|
const char *filename,
|
|
|
|
struct dso *dso, u32 flags)
|
2010-05-03 06:46:36 +08:00
|
|
|
{
|
2024-09-10 04:37:37 +08:00
|
|
|
struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
|
2010-05-03 06:46:36 +08:00
|
|
|
int err;
|
2010-05-01 14:41:20 +08:00
|
|
|
|
2024-09-10 04:37:37 +08:00
|
|
|
if (is_anon_memory(filename) || flags & MAP_HUGETLB)
|
perf inject: Do not load map/dso when injecting build-id
No need to load symbols in a DSO when injecting build-id. I guess the
reason was to check the DSO is a special file like anon files. Use some
helper functions in map.c to check them before reading build-id. Also
pass sample event's cpumode to a new build-id event.
It brought a speedup in the benchmark of 25 -> 21 msec on my laptop.
Also the memory usage (Max RSS) went down by ~200 KB.
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 21.389 msec (+- 0.138 msec)
Average time per event: 2.097 usec (+- 0.014 usec)
Average memory usage: 8225 KB (+- 0 KB)
Committer notes:
Before:
$ perf stat -r5 perf bench internals inject-build-id > /dev/null
Performance counter stats for 'perf bench internals inject-build-id' (5 runs):
4,020.56 msec task-clock:u # 1.271 CPUs utilized ( +- 0.74% )
0 context-switches:u # 0.000 K/sec
0 cpu-migrations:u # 0.000 K/sec
123,354 page-faults:u # 0.031 M/sec ( +- 0.81% )
7,119,951,568 cycles:u # 1.771 GHz ( +- 1.74% ) (83.27%)
230,086,969 stalled-cycles-frontend:u # 3.23% frontend cycles idle ( +- 1.97% ) (83.41%)
1,168,298,765 stalled-cycles-backend:u # 16.41% backend cycles idle ( +- 1.13% ) (83.44%)
11,173,083,669 instructions:u # 1.57 insn per cycle
# 0.10 stalled cycles per insn ( +- 1.58% ) (83.31%)
2,413,908,936 branches:u # 600.392 M/sec ( +- 1.69% ) (83.26%)
46,576,289 branch-misses:u # 1.93% of all branches ( +- 2.20% ) (83.31%)
3.1638 +- 0.0309 seconds time elapsed ( +- 0.98% )
$
After:
$ perf stat -r5 perf bench internals inject-build-id > /dev/null
Performance counter stats for 'perf bench internals inject-build-id' (5 runs):
2,379.94 msec task-clock:u # 1.473 CPUs utilized ( +- 0.18% )
0 context-switches:u # 0.000 K/sec
0 cpu-migrations:u # 0.000 K/sec
62,584 page-faults:u # 0.026 M/sec ( +- 0.07% )
2,372,389,668 cycles:u # 0.997 GHz ( +- 0.29% ) (83.14%)
106,937,862 stalled-cycles-frontend:u # 4.51% frontend cycles idle ( +- 4.89% ) (83.20%)
581,697,915 stalled-cycles-backend:u # 24.52% backend cycles idle ( +- 0.71% ) (83.47%)
3,659,692,199 instructions:u # 1.54 insn per cycle
# 0.16 stalled cycles per insn ( +- 0.10% ) (83.63%)
791,372,961 branches:u # 332.518 M/sec ( +- 0.27% ) (83.39%)
10,648,083 branch-misses:u # 1.35% of all branches ( +- 0.22% ) (83.16%)
1.61570 +- 0.00172 seconds time elapsed ( +- 0.11% )
$
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Original-patch-by: Stephane Eranian <eranian@google.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Acked-by: Jiri Olsa <jolsa@redhat.com>
Link: https://lore.kernel.org/r/20201012070214.2074921-5-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2020-10-12 15:02:12 +08:00
|
|
|
return 0;
|
2024-09-10 04:37:37 +08:00
|
|
|
if (is_no_dso_memory(filename))
|
perf inject: Do not load map/dso when injecting build-id
No need to load symbols in a DSO when injecting build-id. I guess the
reason was to check the DSO is a special file like anon files. Use some
helper functions in map.c to check them before reading build-id. Also
pass sample event's cpumode to a new build-id event.
It brought a speedup in the benchmark of 25 -> 21 msec on my laptop.
Also the memory usage (Max RSS) went down by ~200 KB.
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 21.389 msec (+- 0.138 msec)
Average time per event: 2.097 usec (+- 0.014 usec)
Average memory usage: 8225 KB (+- 0 KB)
Committer notes:
Before:
$ perf stat -r5 perf bench internals inject-build-id > /dev/null
Performance counter stats for 'perf bench internals inject-build-id' (5 runs):
4,020.56 msec task-clock:u # 1.271 CPUs utilized ( +- 0.74% )
0 context-switches:u # 0.000 K/sec
0 cpu-migrations:u # 0.000 K/sec
123,354 page-faults:u # 0.031 M/sec ( +- 0.81% )
7,119,951,568 cycles:u # 1.771 GHz ( +- 1.74% ) (83.27%)
230,086,969 stalled-cycles-frontend:u # 3.23% frontend cycles idle ( +- 1.97% ) (83.41%)
1,168,298,765 stalled-cycles-backend:u # 16.41% backend cycles idle ( +- 1.13% ) (83.44%)
11,173,083,669 instructions:u # 1.57 insn per cycle
# 0.10 stalled cycles per insn ( +- 1.58% ) (83.31%)
2,413,908,936 branches:u # 600.392 M/sec ( +- 1.69% ) (83.26%)
46,576,289 branch-misses:u # 1.93% of all branches ( +- 2.20% ) (83.31%)
3.1638 +- 0.0309 seconds time elapsed ( +- 0.98% )
$
After:
$ perf stat -r5 perf bench internals inject-build-id > /dev/null
Performance counter stats for 'perf bench internals inject-build-id' (5 runs):
2,379.94 msec task-clock:u # 1.473 CPUs utilized ( +- 0.18% )
0 context-switches:u # 0.000 K/sec
0 cpu-migrations:u # 0.000 K/sec
62,584 page-faults:u # 0.026 M/sec ( +- 0.07% )
2,372,389,668 cycles:u # 0.997 GHz ( +- 0.29% ) (83.14%)
106,937,862 stalled-cycles-frontend:u # 4.51% frontend cycles idle ( +- 4.89% ) (83.20%)
581,697,915 stalled-cycles-backend:u # 24.52% backend cycles idle ( +- 0.71% ) (83.47%)
3,659,692,199 instructions:u # 1.54 insn per cycle
# 0.16 stalled cycles per insn ( +- 0.10% ) (83.63%)
791,372,961 branches:u # 332.518 M/sec ( +- 0.27% ) (83.39%)
10,648,083 branch-misses:u # 1.35% of all branches ( +- 0.22% ) (83.16%)
1.61570 +- 0.00172 seconds time elapsed ( +- 0.11% )
$
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Original-patch-by: Stephane Eranian <eranian@google.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Acked-by: Jiri Olsa <jolsa@redhat.com>
Link: https://lore.kernel.org/r/20201012070214.2074921-5-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2020-10-12 15:02:12 +08:00
|
|
|
return 0;
|
|
|
|
|
2022-08-16 06:59:22 +08:00
|
|
|
if (inject->known_build_ids != NULL &&
|
|
|
|
perf_inject__lookup_known_build_id(inject, dso))
|
|
|
|
return 1;
|
|
|
|
|
2013-10-23 06:01:31 +08:00
|
|
|
if (dso__read_build_id(dso) < 0) {
|
2024-09-10 04:37:37 +08:00
|
|
|
pr_debug("no build_id found for %s\n", filename);
|
2010-05-03 06:46:36 +08:00
|
|
|
return -1;
|
|
|
|
}
|
2010-05-01 14:41:20 +08:00
|
|
|
|
2024-09-10 04:37:37 +08:00
|
|
|
err = perf_event__synthesize_build_id(tool, sample, machine,
|
|
|
|
perf_event__repipe,
|
|
|
|
evsel, misc, dso__bid(dso),
|
|
|
|
filename);
|
2010-05-03 06:46:36 +08:00
|
|
|
if (err) {
|
2024-09-10 04:37:37 +08:00
|
|
|
pr_err("Can't synthesize build_id event for %s\n", filename);
|
2010-05-01 14:41:20 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-09-10 04:37:38 +08:00
|
|
|
static int tool__inject_mmap2_build_id(const struct perf_tool *tool,
|
|
|
|
struct perf_sample *sample,
|
|
|
|
struct machine *machine,
|
|
|
|
const struct evsel *evsel,
|
|
|
|
__u16 misc,
|
|
|
|
__u32 pid, __u32 tid,
|
|
|
|
__u64 start, __u64 len, __u64 pgoff,
|
|
|
|
struct dso *dso,
|
|
|
|
__u32 prot, __u32 flags,
|
|
|
|
const char *filename)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
/* Return to repipe anonymous maps. */
|
|
|
|
if (is_anon_memory(filename) || flags & MAP_HUGETLB)
|
|
|
|
return 1;
|
|
|
|
if (is_no_dso_memory(filename))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (dso__read_build_id(dso)) {
|
|
|
|
pr_debug("no build_id found for %s\n", filename);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
err = perf_event__synthesize_mmap2_build_id(tool, sample, machine,
|
|
|
|
perf_event__repipe,
|
|
|
|
evsel,
|
|
|
|
misc, pid, tid,
|
|
|
|
start, len, pgoff,
|
|
|
|
dso__bid(dso),
|
|
|
|
prot, flags,
|
|
|
|
filename);
|
|
|
|
if (err) {
|
|
|
|
pr_err("Can't synthesize build_id event for %s\n", filename);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-09-10 04:37:39 +08:00
|
|
|
static int mark_dso_hit(const struct perf_inject *inject,
|
|
|
|
const struct perf_tool *tool,
|
2024-09-10 04:37:37 +08:00
|
|
|
struct perf_sample *sample,
|
|
|
|
struct machine *machine,
|
|
|
|
const struct evsel *mmap_evsel,
|
|
|
|
struct map *map, bool sample_in_dso)
|
|
|
|
{
|
|
|
|
struct dso *dso;
|
|
|
|
u16 misc = sample->cpumode;
|
|
|
|
|
|
|
|
if (!map)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!sample_in_dso) {
|
|
|
|
u16 guest_mask = PERF_RECORD_MISC_GUEST_KERNEL |
|
|
|
|
PERF_RECORD_MISC_GUEST_USER;
|
|
|
|
|
|
|
|
if ((misc & guest_mask) != 0) {
|
|
|
|
misc &= PERF_RECORD_MISC_HYPERVISOR;
|
|
|
|
misc |= __map__is_kernel(map)
|
|
|
|
? PERF_RECORD_MISC_GUEST_KERNEL
|
|
|
|
: PERF_RECORD_MISC_GUEST_USER;
|
|
|
|
} else {
|
|
|
|
misc &= PERF_RECORD_MISC_HYPERVISOR;
|
|
|
|
misc |= __map__is_kernel(map)
|
|
|
|
? PERF_RECORD_MISC_KERNEL
|
|
|
|
: PERF_RECORD_MISC_USER;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dso = map__dso(map);
|
2024-09-10 04:37:39 +08:00
|
|
|
if (inject->build_id_style == BID_RWS__INJECT_HEADER_LAZY) {
|
|
|
|
if (dso && !dso__hit(dso)) {
|
|
|
|
dso__set_hit(dso);
|
|
|
|
tool__inject_build_id(tool, sample, machine,
|
|
|
|
mmap_evsel, misc, dso__long_name(dso), dso,
|
|
|
|
map__flags(map));
|
|
|
|
}
|
|
|
|
} else if (inject->build_id_style == BID_RWS__MMAP2_BUILDID_LAZY) {
|
|
|
|
if (!map__hit(map)) {
|
|
|
|
const struct build_id null_bid = { .size = 0 };
|
|
|
|
const struct build_id *bid = dso ? dso__bid(dso) : &null_bid;
|
|
|
|
const char *filename = dso ? dso__long_name(dso) : "";
|
|
|
|
|
|
|
|
map__set_hit(map);
|
|
|
|
perf_event__synthesize_mmap2_build_id(tool, sample, machine,
|
|
|
|
perf_event__repipe,
|
|
|
|
mmap_evsel,
|
|
|
|
misc,
|
|
|
|
sample->pid, sample->tid,
|
|
|
|
map__start(map),
|
|
|
|
map__end(map) - map__start(map),
|
|
|
|
map__pgoff(map),
|
|
|
|
bid,
|
|
|
|
map__prot(map),
|
|
|
|
map__flags(map),
|
|
|
|
filename);
|
|
|
|
}
|
2024-09-10 04:37:37 +08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-08-13 06:41:19 +08:00
|
|
|
struct mark_dso_hit_args {
|
2024-09-10 04:37:39 +08:00
|
|
|
const struct perf_inject *inject;
|
2024-08-13 06:41:19 +08:00
|
|
|
const struct perf_tool *tool;
|
2024-09-10 04:37:37 +08:00
|
|
|
struct perf_sample *sample;
|
2024-08-13 06:41:19 +08:00
|
|
|
struct machine *machine;
|
2024-09-10 04:37:37 +08:00
|
|
|
const struct evsel *mmap_evsel;
|
2024-08-13 06:41:19 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static int mark_dso_hit_callback(struct callchain_cursor_node *node, void *data)
|
|
|
|
{
|
|
|
|
struct mark_dso_hit_args *args = data;
|
|
|
|
struct map *map = node->ms.map;
|
|
|
|
|
2024-09-10 04:37:39 +08:00
|
|
|
return mark_dso_hit(args->inject, args->tool, args->sample, args->machine,
|
2024-09-10 04:37:37 +08:00
|
|
|
args->mmap_evsel, map, /*sample_in_dso=*/false);
|
2024-08-13 06:41:19 +08:00
|
|
|
}
|
|
|
|
|
2024-08-13 04:46:55 +08:00
|
|
|
int perf_event__inject_buildid(const struct perf_tool *tool, union perf_event *event,
|
perf bench: Add build-id injection benchmark
Sometimes I can see that 'perf record' piped with 'perf inject' take a
long time processing build-ids.
So introduce a inject-build-id benchmark to the internals benchmark
suite to measure its overhead regularly.
It runs the 'perf inject' command internally and feeds the given number
of synthesized events (MMAP2 + SAMPLE basically).
Usage: perf bench internals inject-build-id <options>
-i, --iterations <n> Number of iterations used to compute average (default: 100)
-m, --nr-mmaps <n> Number of mmap events for each iteration (default: 100)
-n, --nr-samples <n> Number of sample events per mmap event (default: 100)
-v, --verbose be more verbose (show iteration count, DSO name, etc)
By default, it measures average processing time of 100 MMAP2 events
and 10000 SAMPLE events. Below is a result on my laptop.
$ perf bench internals inject-build-id
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 25.789 msec (+- 0.202 msec)
Average time per event: 2.528 usec (+- 0.020 usec)
Average memory usage: 8411 KB (+- 7 KB)
Committer testing:
$ perf bench
Usage:
perf bench [<common options>] <collection> <benchmark> [<options>]
# List of all available benchmark collections:
sched: Scheduler and IPC benchmarks
syscall: System call benchmarks
mem: Memory access benchmarks
numa: NUMA scheduling and MM benchmarks
futex: Futex stressing benchmarks
epoll: Epoll stressing benchmarks
internals: Perf-internals benchmarks
all: All benchmarks
$ perf bench internals
# List of available benchmarks for collection 'internals':
synthesize: Benchmark perf event synthesis
kallsyms-parse: Benchmark kallsyms parsing
inject-build-id: Benchmark build-id injection
$ perf bench internals inject-build-id
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 14.202 msec (+- 0.059 msec)
Average time per event: 1.392 usec (+- 0.006 usec)
Average memory usage: 12650 KB (+- 10 KB)
Average build-id-all injection took: 12.831 msec (+- 0.071 msec)
Average time per event: 1.258 usec (+- 0.007 usec)
Average memory usage: 11895 KB (+- 10 KB)
$
$ perf stat -r5 perf bench internals inject-build-id
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 14.380 msec (+- 0.056 msec)
Average time per event: 1.410 usec (+- 0.006 usec)
Average memory usage: 12608 KB (+- 11 KB)
Average build-id-all injection took: 11.889 msec (+- 0.064 msec)
Average time per event: 1.166 usec (+- 0.006 usec)
Average memory usage: 11838 KB (+- 10 KB)
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 14.246 msec (+- 0.065 msec)
Average time per event: 1.397 usec (+- 0.006 usec)
Average memory usage: 12744 KB (+- 10 KB)
Average build-id-all injection took: 12.019 msec (+- 0.066 msec)
Average time per event: 1.178 usec (+- 0.006 usec)
Average memory usage: 11963 KB (+- 10 KB)
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 14.321 msec (+- 0.067 msec)
Average time per event: 1.404 usec (+- 0.007 usec)
Average memory usage: 12690 KB (+- 10 KB)
Average build-id-all injection took: 11.909 msec (+- 0.041 msec)
Average time per event: 1.168 usec (+- 0.004 usec)
Average memory usage: 11938 KB (+- 10 KB)
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 14.287 msec (+- 0.059 msec)
Average time per event: 1.401 usec (+- 0.006 usec)
Average memory usage: 12864 KB (+- 10 KB)
Average build-id-all injection took: 11.862 msec (+- 0.058 msec)
Average time per event: 1.163 usec (+- 0.006 usec)
Average memory usage: 12103 KB (+- 10 KB)
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 14.402 msec (+- 0.053 msec)
Average time per event: 1.412 usec (+- 0.005 usec)
Average memory usage: 12876 KB (+- 10 KB)
Average build-id-all injection took: 11.826 msec (+- 0.061 msec)
Average time per event: 1.159 usec (+- 0.006 usec)
Average memory usage: 12111 KB (+- 10 KB)
Performance counter stats for 'perf bench internals inject-build-id' (5 runs):
4,267.48 msec task-clock:u # 1.502 CPUs utilized ( +- 0.14% )
0 context-switches:u # 0.000 K/sec
0 cpu-migrations:u # 0.000 K/sec
102,092 page-faults:u # 0.024 M/sec ( +- 0.08% )
3,894,589,578 cycles:u # 0.913 GHz ( +- 0.19% ) (83.49%)
140,078,421 stalled-cycles-frontend:u # 3.60% frontend cycles idle ( +- 0.77% ) (83.34%)
948,581,189 stalled-cycles-backend:u # 24.36% backend cycles idle ( +- 0.46% ) (83.25%)
5,835,587,719 instructions:u # 1.50 insn per cycle
# 0.16 stalled cycles per insn ( +- 0.21% ) (83.24%)
1,267,423,636 branches:u # 296.996 M/sec ( +- 0.22% ) (83.12%)
17,484,290 branch-misses:u # 1.38% of all branches ( +- 0.12% ) (83.55%)
2.84176 +- 0.00222 seconds time elapsed ( +- 0.08% )
$
Acked-by: Jiri Olsa <jolsa@redhat.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Link: https://lore.kernel.org/r/20201012070214.2074921-2-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2020-10-12 15:02:09 +08:00
|
|
|
struct perf_sample *sample,
|
|
|
|
struct evsel *evsel __maybe_unused,
|
|
|
|
struct machine *machine)
|
2010-05-01 14:41:20 +08:00
|
|
|
{
|
|
|
|
struct addr_location al;
|
|
|
|
struct thread *thread;
|
2024-09-10 04:37:37 +08:00
|
|
|
struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
|
2024-08-13 06:41:19 +08:00
|
|
|
struct mark_dso_hit_args args = {
|
2024-09-10 04:37:39 +08:00
|
|
|
.inject = inject,
|
2024-08-13 06:41:19 +08:00
|
|
|
.tool = tool,
|
2024-09-10 04:37:37 +08:00
|
|
|
/*
|
|
|
|
* Use the parsed sample data of the sample event, which will
|
|
|
|
* have a later timestamp than the mmap event.
|
|
|
|
*/
|
|
|
|
.sample = sample,
|
2024-08-13 06:41:19 +08:00
|
|
|
.machine = machine,
|
2024-09-10 04:37:37 +08:00
|
|
|
.mmap_evsel = inject__mmap_evsel(inject),
|
2024-08-13 06:41:19 +08:00
|
|
|
};
|
2010-05-01 14:41:20 +08:00
|
|
|
|
2023-06-09 07:28:03 +08:00
|
|
|
addr_location__init(&al);
|
2014-05-12 08:56:42 +08:00
|
|
|
thread = machine__findnew_thread(machine, sample->pid, sample->tid);
|
2010-05-01 14:41:20 +08:00
|
|
|
if (thread == NULL) {
|
|
|
|
pr_err("problem processing %d event, skipping it.\n",
|
|
|
|
event->header.type);
|
|
|
|
goto repipe;
|
|
|
|
}
|
|
|
|
|
2018-04-24 22:58:56 +08:00
|
|
|
if (thread__find_map(thread, sample->cpumode, sample->ip, &al)) {
|
2024-09-10 04:37:39 +08:00
|
|
|
mark_dso_hit(inject, tool, sample, machine, args.mmap_evsel, al.map,
|
2024-09-10 04:37:37 +08:00
|
|
|
/*sample_in_dso=*/true);
|
2010-05-01 14:41:20 +08:00
|
|
|
}
|
|
|
|
|
2024-08-13 06:41:19 +08:00
|
|
|
sample__for_each_callchain_node(thread, evsel, sample, PERF_MAX_STACK_DEPTH,
|
2024-09-10 04:37:40 +08:00
|
|
|
/*symbols=*/false, mark_dso_hit_callback, &args);
|
2024-08-13 06:41:19 +08:00
|
|
|
|
perf machine: Protect the machine->threads with a rwlock
In addition to using refcounts for the struct thread lifetime
management, we need to protect access to machine->threads from
concurrent access.
That happens in 'perf top', where a thread processes events, inserting
and deleting entries from that rb_tree while another thread decays
hist_entries, that end up dropping references and ultimately deleting
threads from the rb_tree and releasing its resources when no further
hist_entry (or other data structures, like in 'perf sched') references
it.
So the rule is the same for refcounts + protected trees in the kernel,
get the tree lock, find object, bump the refcount, drop the tree lock,
return, use object, drop the refcount if no more use of it is needed,
keep it if storing it in some other data structure, drop when releasing
that data structure.
I.e. pair "t = machine__find(new)_thread()" with a "thread__put(t)", and
"perf_event__preprocess_sample(&al)" with "addr_location__put(&al)".
The addr_location__put() one is because as we return references to
several data structures, we may end up adding more reference counting
for the other data structures and then we'll drop it at
addr_location__put() time.
Acked-by: David Ahern <dsahern@gmail.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Borislav Petkov <bp@suse.de>
Cc: Don Zickus <dzickus@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/n/tip-bs9rt4n0jw3hi9f3zxyy3xln@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2015-04-07 07:43:22 +08:00
|
|
|
thread__put(thread);
|
2010-05-01 14:41:20 +08:00
|
|
|
repipe:
|
2011-11-28 18:30:20 +08:00
|
|
|
perf_event__repipe(tool, event, sample, machine);
|
2023-06-09 07:28:03 +08:00
|
|
|
addr_location__exit(&al);
|
2010-05-03 06:46:36 +08:00
|
|
|
return 0;
|
2010-05-01 14:41:20 +08:00
|
|
|
}
|
|
|
|
|
2024-08-13 04:46:55 +08:00
|
|
|
static int perf_inject__sched_process_exit(const struct perf_tool *tool,
|
2012-08-07 20:56:04 +08:00
|
|
|
union perf_event *event __maybe_unused,
|
|
|
|
struct perf_sample *sample,
|
2019-07-21 19:23:51 +08:00
|
|
|
struct evsel *evsel __maybe_unused,
|
2012-08-07 20:56:04 +08:00
|
|
|
struct machine *machine __maybe_unused)
|
|
|
|
{
|
|
|
|
struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
|
|
|
|
struct event_entry *ent;
|
|
|
|
|
|
|
|
list_for_each_entry(ent, &inject->samples, node) {
|
|
|
|
if (sample->tid == ent->tid) {
|
|
|
|
list_del_init(&ent->node);
|
|
|
|
free(ent);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-08-13 04:46:55 +08:00
|
|
|
static int perf_inject__sched_switch(const struct perf_tool *tool,
|
2012-08-07 20:56:04 +08:00
|
|
|
union perf_event *event,
|
|
|
|
struct perf_sample *sample,
|
2019-07-21 19:23:51 +08:00
|
|
|
struct evsel *evsel,
|
2012-08-07 20:56:04 +08:00
|
|
|
struct machine *machine)
|
|
|
|
{
|
|
|
|
struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
|
|
|
|
struct event_entry *ent;
|
|
|
|
|
|
|
|
perf_inject__sched_process_exit(tool, event, sample, evsel, machine);
|
|
|
|
|
|
|
|
ent = malloc(event->header.size + sizeof(struct event_entry));
|
|
|
|
if (ent == NULL) {
|
|
|
|
color_fprintf(stderr, PERF_COLOR_RED,
|
|
|
|
"Not enough memory to process sched switch event!");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ent->tid = sample->tid;
|
|
|
|
memcpy(&ent->event, event, event->header.size);
|
|
|
|
list_add(&ent->node, &inject->samples);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
perf build: Use libtraceevent from the system
Remove the LIBTRACEEVENT_DYNAMIC and LIBTRACEFS_DYNAMIC make command
line variables.
If libtraceevent isn't installed or NO_LIBTRACEEVENT=1 is passed to the
build, don't compile in libtraceevent and libtracefs support.
This also disables CONFIG_TRACE that controls "perf trace".
CONFIG_LIBTRACEEVENT is used to control enablement in Build/Makefiles,
HAVE_LIBTRACEEVENT is used in C code.
Without HAVE_LIBTRACEEVENT tracepoints are disabled and as such the
commands kmem, kwork, lock, sched and timechart are removed. The
majority of commands continue to work including "perf test".
Committer notes:
Fixed up a tools/perf/util/Build reject and added:
#include <traceevent/event-parse.h>
to tools/perf/util/scripting-engines/trace-event-perl.c.
Committer testing:
$ rpm -qi libtraceevent-devel
Name : libtraceevent-devel
Version : 1.5.3
Release : 2.fc36
Architecture: x86_64
Install Date: Mon 25 Jul 2022 03:20:19 PM -03
Group : Unspecified
Size : 27728
License : LGPLv2+ and GPLv2+
Signature : RSA/SHA256, Fri 15 Apr 2022 02:11:58 PM -03, Key ID 999f7cbf38ab71f4
Source RPM : libtraceevent-1.5.3-2.fc36.src.rpm
Build Date : Fri 15 Apr 2022 10:57:01 AM -03
Build Host : buildvm-x86-05.iad2.fedoraproject.org
Packager : Fedora Project
Vendor : Fedora Project
URL : https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git/
Bug URL : https://bugz.fedoraproject.org/libtraceevent
Summary : Development headers of libtraceevent
Description :
Development headers of libtraceevent-libs
$
Default build:
$ ldd ~/bin/perf | grep tracee
libtraceevent.so.1 => /lib64/libtraceevent.so.1 (0x00007f1dcaf8f000)
$
# perf trace -e sched:* --max-events 10
0.000 migration/0/17 sched:sched_migrate_task(comm: "", pid: 1603763 (perf), prio: 120, dest_cpu: 1)
0.005 migration/0/17 sched:sched_wake_idle_without_ipi(cpu: 1)
0.011 migration/0/17 sched:sched_switch(prev_comm: "", prev_pid: 17 (migration/0), prev_state: 1, next_comm: "", next_prio: 120)
1.173 :0/0 sched:sched_wakeup(comm: "", pid: 3138 (gnome-terminal-), prio: 120)
1.180 :0/0 sched:sched_switch(prev_comm: "", prev_prio: 120, next_comm: "", next_pid: 3138 (gnome-terminal-), next_prio: 120)
0.156 migration/1/21 sched:sched_migrate_task(comm: "", pid: 1603763 (perf), prio: 120, orig_cpu: 1, dest_cpu: 2)
0.160 migration/1/21 sched:sched_wake_idle_without_ipi(cpu: 2)
0.166 migration/1/21 sched:sched_switch(prev_comm: "", prev_pid: 21 (migration/1), prev_state: 1, next_comm: "", next_prio: 120)
1.183 :0/0 sched:sched_wakeup(comm: "", pid: 1602985 (kworker/u16:0-f), prio: 120, target_cpu: 1)
1.186 :0/0 sched:sched_switch(prev_comm: "", prev_prio: 120, next_comm: "", next_pid: 1602985 (kworker/u16:0-f), next_prio: 120)
#
Had to tweak tools/perf/util/setup.py to make sure the python binding
shared object links with libtraceevent if -DHAVE_LIBTRACEEVENT is
present in CFLAGS.
Building with NO_LIBTRACEEVENT=1 uncovered some more build failures:
- Make building of data-convert-bt.c to CONFIG_LIBTRACEEVENT=y
- perf-$(CONFIG_LIBTRACEEVENT) += scripts/
- bpf_kwork.o needs also to be dependent on CONFIG_LIBTRACEEVENT=y
- The python binding needed some fixups and util/trace-event.c can't be
built and linked with the python binding shared object, so remove it
in tools/perf/util/setup.py and exclude it from the list of
dependencies in the python/perf.so Makefile.perf target.
Building without libtraceevent-devel installed uncovered more build
failures:
- The python binding tools/perf/util/python.c was assuming that
traceevent/parse-events.h was always available, which was the case
when we defaulted to using the in-kernel tools/lib/traceevent/ files,
now we need to enclose it under ifdef HAVE_LIBTRACEEVENT, just like
the other parts of it that deal with tracepoints.
- We have to ifdef the rules in the Build files with
CONFIG_LIBTRACEEVENT=y to build builtin-trace.c and
tools/perf/trace/beauty/ as we only ifdef setting CONFIG_TRACE=y when
setting NO_LIBTRACEEVENT=1 in the make command line, not when we don't
detect libtraceevent-devel installed in the system. Simplification here
to avoid these two ways of disabling builtin-trace.c and not having
CONFIG_TRACE=y when libtraceevent-devel isn't installed is the clean
way.
From Athira:
<quote>
tools/perf/arch/powerpc/util/Build
-perf-y += kvm-stat.o
+perf-$(CONFIG_LIBTRACEEVENT) += kvm-stat.o
</quote>
Then, ditto for arm64 and s390, detected by container cross build tests.
- s/390 uses test__checkevent_tracepoint() that is now only available if
HAVE_LIBTRACEEVENT is defined, enclose the callsite with ifder HAVE_LIBTRACEEVENT.
Also from Athira:
<quote>
With this change, I could successfully compile in these environment:
- Without libtraceevent-devel installed
- With libtraceevent-devel installed
- With “make NO_LIBTRACEEVENT=1”
</quote>
Then, finally rename CONFIG_TRACEEVENT to CONFIG_LIBTRACEEVENT for
consistency with other libraries detected in tools/perf/.
Signed-off-by: Ian Rogers <irogers@google.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Tested-by: Athira Rajeev <atrajeev@linux.vnet.ibm.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Nick Desaulniers <ndesaulniers@google.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: bpf@vger.kernel.org
Link: http://lore.kernel.org/lkml/20221205225940.3079667-3-irogers@google.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2022-12-06 06:59:39 +08:00
|
|
|
#ifdef HAVE_LIBTRACEEVENT
|
2024-08-13 04:46:55 +08:00
|
|
|
static int perf_inject__sched_stat(const struct perf_tool *tool,
|
2012-08-07 20:56:04 +08:00
|
|
|
union perf_event *event __maybe_unused,
|
|
|
|
struct perf_sample *sample,
|
2019-07-21 19:23:51 +08:00
|
|
|
struct evsel *evsel,
|
2012-08-07 20:56:04 +08:00
|
|
|
struct machine *machine)
|
|
|
|
{
|
|
|
|
struct event_entry *ent;
|
|
|
|
union perf_event *event_sw;
|
|
|
|
struct perf_sample sample_sw;
|
|
|
|
struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
|
2020-04-30 03:26:57 +08:00
|
|
|
u32 pid = evsel__intval(evsel, sample, "pid");
|
2012-08-07 20:56:04 +08:00
|
|
|
|
|
|
|
list_for_each_entry(ent, &inject->samples, node) {
|
|
|
|
if (pid == ent->tid)
|
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
found:
|
|
|
|
event_sw = &ent->event[0];
|
2020-04-30 22:03:49 +08:00
|
|
|
evsel__parse_sample(evsel, event_sw, &sample_sw);
|
2012-08-07 20:56:04 +08:00
|
|
|
|
|
|
|
sample_sw.period = sample->period;
|
|
|
|
sample_sw.time = sample->time;
|
2019-07-21 19:24:29 +08:00
|
|
|
perf_event__synthesize_sample(event_sw, evsel->core.attr.sample_type,
|
|
|
|
evsel->core.attr.read_format, &sample_sw);
|
2012-08-07 20:56:05 +08:00
|
|
|
build_id__mark_dso_hit(tool, event_sw, &sample_sw, evsel, machine);
|
2012-08-07 20:56:04 +08:00
|
|
|
return perf_event__repipe(tool, event_sw, &sample_sw, machine);
|
|
|
|
}
|
perf build: Use libtraceevent from the system
Remove the LIBTRACEEVENT_DYNAMIC and LIBTRACEFS_DYNAMIC make command
line variables.
If libtraceevent isn't installed or NO_LIBTRACEEVENT=1 is passed to the
build, don't compile in libtraceevent and libtracefs support.
This also disables CONFIG_TRACE that controls "perf trace".
CONFIG_LIBTRACEEVENT is used to control enablement in Build/Makefiles,
HAVE_LIBTRACEEVENT is used in C code.
Without HAVE_LIBTRACEEVENT tracepoints are disabled and as such the
commands kmem, kwork, lock, sched and timechart are removed. The
majority of commands continue to work including "perf test".
Committer notes:
Fixed up a tools/perf/util/Build reject and added:
#include <traceevent/event-parse.h>
to tools/perf/util/scripting-engines/trace-event-perl.c.
Committer testing:
$ rpm -qi libtraceevent-devel
Name : libtraceevent-devel
Version : 1.5.3
Release : 2.fc36
Architecture: x86_64
Install Date: Mon 25 Jul 2022 03:20:19 PM -03
Group : Unspecified
Size : 27728
License : LGPLv2+ and GPLv2+
Signature : RSA/SHA256, Fri 15 Apr 2022 02:11:58 PM -03, Key ID 999f7cbf38ab71f4
Source RPM : libtraceevent-1.5.3-2.fc36.src.rpm
Build Date : Fri 15 Apr 2022 10:57:01 AM -03
Build Host : buildvm-x86-05.iad2.fedoraproject.org
Packager : Fedora Project
Vendor : Fedora Project
URL : https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git/
Bug URL : https://bugz.fedoraproject.org/libtraceevent
Summary : Development headers of libtraceevent
Description :
Development headers of libtraceevent-libs
$
Default build:
$ ldd ~/bin/perf | grep tracee
libtraceevent.so.1 => /lib64/libtraceevent.so.1 (0x00007f1dcaf8f000)
$
# perf trace -e sched:* --max-events 10
0.000 migration/0/17 sched:sched_migrate_task(comm: "", pid: 1603763 (perf), prio: 120, dest_cpu: 1)
0.005 migration/0/17 sched:sched_wake_idle_without_ipi(cpu: 1)
0.011 migration/0/17 sched:sched_switch(prev_comm: "", prev_pid: 17 (migration/0), prev_state: 1, next_comm: "", next_prio: 120)
1.173 :0/0 sched:sched_wakeup(comm: "", pid: 3138 (gnome-terminal-), prio: 120)
1.180 :0/0 sched:sched_switch(prev_comm: "", prev_prio: 120, next_comm: "", next_pid: 3138 (gnome-terminal-), next_prio: 120)
0.156 migration/1/21 sched:sched_migrate_task(comm: "", pid: 1603763 (perf), prio: 120, orig_cpu: 1, dest_cpu: 2)
0.160 migration/1/21 sched:sched_wake_idle_without_ipi(cpu: 2)
0.166 migration/1/21 sched:sched_switch(prev_comm: "", prev_pid: 21 (migration/1), prev_state: 1, next_comm: "", next_prio: 120)
1.183 :0/0 sched:sched_wakeup(comm: "", pid: 1602985 (kworker/u16:0-f), prio: 120, target_cpu: 1)
1.186 :0/0 sched:sched_switch(prev_comm: "", prev_prio: 120, next_comm: "", next_pid: 1602985 (kworker/u16:0-f), next_prio: 120)
#
Had to tweak tools/perf/util/setup.py to make sure the python binding
shared object links with libtraceevent if -DHAVE_LIBTRACEEVENT is
present in CFLAGS.
Building with NO_LIBTRACEEVENT=1 uncovered some more build failures:
- Make building of data-convert-bt.c to CONFIG_LIBTRACEEVENT=y
- perf-$(CONFIG_LIBTRACEEVENT) += scripts/
- bpf_kwork.o needs also to be dependent on CONFIG_LIBTRACEEVENT=y
- The python binding needed some fixups and util/trace-event.c can't be
built and linked with the python binding shared object, so remove it
in tools/perf/util/setup.py and exclude it from the list of
dependencies in the python/perf.so Makefile.perf target.
Building without libtraceevent-devel installed uncovered more build
failures:
- The python binding tools/perf/util/python.c was assuming that
traceevent/parse-events.h was always available, which was the case
when we defaulted to using the in-kernel tools/lib/traceevent/ files,
now we need to enclose it under ifdef HAVE_LIBTRACEEVENT, just like
the other parts of it that deal with tracepoints.
- We have to ifdef the rules in the Build files with
CONFIG_LIBTRACEEVENT=y to build builtin-trace.c and
tools/perf/trace/beauty/ as we only ifdef setting CONFIG_TRACE=y when
setting NO_LIBTRACEEVENT=1 in the make command line, not when we don't
detect libtraceevent-devel installed in the system. Simplification here
to avoid these two ways of disabling builtin-trace.c and not having
CONFIG_TRACE=y when libtraceevent-devel isn't installed is the clean
way.
From Athira:
<quote>
tools/perf/arch/powerpc/util/Build
-perf-y += kvm-stat.o
+perf-$(CONFIG_LIBTRACEEVENT) += kvm-stat.o
</quote>
Then, ditto for arm64 and s390, detected by container cross build tests.
- s/390 uses test__checkevent_tracepoint() that is now only available if
HAVE_LIBTRACEEVENT is defined, enclose the callsite with ifder HAVE_LIBTRACEEVENT.
Also from Athira:
<quote>
With this change, I could successfully compile in these environment:
- Without libtraceevent-devel installed
- With libtraceevent-devel installed
- With “make NO_LIBTRACEEVENT=1”
</quote>
Then, finally rename CONFIG_TRACEEVENT to CONFIG_LIBTRACEEVENT for
consistency with other libraries detected in tools/perf/.
Signed-off-by: Ian Rogers <irogers@google.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Tested-by: Athira Rajeev <atrajeev@linux.vnet.ibm.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Nick Desaulniers <ndesaulniers@google.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: bpf@vger.kernel.org
Link: http://lore.kernel.org/lkml/20221205225940.3079667-3-irogers@google.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2022-12-06 06:59:39 +08:00
|
|
|
#endif
|
2012-08-07 20:56:04 +08:00
|
|
|
|
2022-07-11 17:32:07 +08:00
|
|
|
static struct guest_vcpu *guest_session__vcpu(struct guest_session *gs, u32 vcpu)
|
|
|
|
{
|
|
|
|
if (realloc_array_as_needed(gs->vcpu, gs->vcpu_cnt, vcpu, NULL))
|
|
|
|
return NULL;
|
|
|
|
return &gs->vcpu[vcpu];
|
|
|
|
}
|
|
|
|
|
|
|
|
static int guest_session__output_bytes(struct guest_session *gs, void *buf, size_t sz)
|
|
|
|
{
|
|
|
|
ssize_t ret = writen(gs->tmp_fd, buf, sz);
|
|
|
|
|
|
|
|
return ret < 0 ? ret : 0;
|
|
|
|
}
|
|
|
|
|
2024-08-13 04:46:55 +08:00
|
|
|
static int guest_session__repipe(const struct perf_tool *tool,
|
2022-07-11 17:32:07 +08:00
|
|
|
union perf_event *event,
|
|
|
|
struct perf_sample *sample __maybe_unused,
|
|
|
|
struct machine *machine __maybe_unused)
|
|
|
|
{
|
|
|
|
struct guest_session *gs = container_of(tool, struct guest_session, tool);
|
|
|
|
|
|
|
|
return guest_session__output_bytes(gs, event, event->header.size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int guest_session__map_tid(struct guest_session *gs, u32 tid, u32 vcpu)
|
|
|
|
{
|
|
|
|
struct guest_tid *guest_tid = zalloc(sizeof(*guest_tid));
|
|
|
|
int hash;
|
|
|
|
|
|
|
|
if (!guest_tid)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
guest_tid->tid = tid;
|
|
|
|
guest_tid->vcpu = vcpu;
|
|
|
|
hash = hash_32(guest_tid->tid, PERF_EVLIST__HLIST_BITS);
|
|
|
|
hlist_add_head(&guest_tid->node, &gs->tids[hash]);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int host_peek_vm_comms_cb(struct perf_session *session __maybe_unused,
|
|
|
|
union perf_event *event,
|
|
|
|
u64 offset __maybe_unused, void *data)
|
|
|
|
{
|
|
|
|
struct guest_session *gs = data;
|
|
|
|
unsigned int vcpu;
|
|
|
|
struct guest_vcpu *guest_vcpu;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (event->header.type != PERF_RECORD_COMM ||
|
|
|
|
event->comm.pid != gs->machine_pid)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* QEMU option -name debug-threads=on, causes thread names formatted as
|
|
|
|
* below, although it is not an ABI. Also libvirt seems to use this by
|
|
|
|
* default. Here we rely on it to tell us which thread is which VCPU.
|
|
|
|
*/
|
|
|
|
ret = sscanf(event->comm.comm, "CPU %u/KVM", &vcpu);
|
|
|
|
if (ret <= 0)
|
|
|
|
return ret;
|
|
|
|
pr_debug("Found VCPU: tid %u comm %s vcpu %u\n",
|
|
|
|
event->comm.tid, event->comm.comm, vcpu);
|
|
|
|
if (vcpu > INT_MAX) {
|
|
|
|
pr_err("Invalid VCPU %u\n", vcpu);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
guest_vcpu = guest_session__vcpu(gs, vcpu);
|
|
|
|
if (!guest_vcpu)
|
|
|
|
return -ENOMEM;
|
|
|
|
if (guest_vcpu->tid && guest_vcpu->tid != event->comm.tid) {
|
|
|
|
pr_err("Fatal error: Two threads found with the same VCPU\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
guest_vcpu->tid = event->comm.tid;
|
|
|
|
|
|
|
|
return guest_session__map_tid(gs, event->comm.tid, vcpu);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int host_peek_vm_comms(struct perf_session *session, struct guest_session *gs)
|
|
|
|
{
|
|
|
|
return perf_session__peek_events(session, session->header.data_offset,
|
|
|
|
session->header.data_size,
|
|
|
|
host_peek_vm_comms_cb, gs);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool evlist__is_id_used(struct evlist *evlist, u64 id)
|
|
|
|
{
|
|
|
|
return evlist__id2sid(evlist, id);
|
|
|
|
}
|
|
|
|
|
|
|
|
static u64 guest_session__allocate_new_id(struct guest_session *gs, struct evlist *host_evlist)
|
|
|
|
{
|
|
|
|
do {
|
|
|
|
gs->highest_id += 1;
|
|
|
|
} while (!gs->highest_id || evlist__is_id_used(host_evlist, gs->highest_id));
|
|
|
|
|
|
|
|
return gs->highest_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int guest_session__map_id(struct guest_session *gs, u64 id, u64 host_id, u32 vcpu)
|
|
|
|
{
|
|
|
|
struct guest_id *guest_id = zalloc(sizeof(*guest_id));
|
|
|
|
int hash;
|
|
|
|
|
|
|
|
if (!guest_id)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
guest_id->id = id;
|
|
|
|
guest_id->host_id = host_id;
|
|
|
|
guest_id->vcpu = vcpu;
|
|
|
|
hash = hash_64(guest_id->id, PERF_EVLIST__HLIST_BITS);
|
|
|
|
hlist_add_head(&guest_id->node, &gs->heads[hash]);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static u64 evlist__find_highest_id(struct evlist *evlist)
|
|
|
|
{
|
|
|
|
struct evsel *evsel;
|
|
|
|
u64 highest_id = 1;
|
|
|
|
|
|
|
|
evlist__for_each_entry(evlist, evsel) {
|
|
|
|
u32 j;
|
|
|
|
|
|
|
|
for (j = 0; j < evsel->core.ids; j++) {
|
|
|
|
u64 id = evsel->core.id[j];
|
|
|
|
|
|
|
|
if (id > highest_id)
|
|
|
|
highest_id = id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return highest_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int guest_session__map_ids(struct guest_session *gs, struct evlist *host_evlist)
|
|
|
|
{
|
|
|
|
struct evlist *evlist = gs->session->evlist;
|
|
|
|
struct evsel *evsel;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
evlist__for_each_entry(evlist, evsel) {
|
|
|
|
u32 j;
|
|
|
|
|
|
|
|
for (j = 0; j < evsel->core.ids; j++) {
|
|
|
|
struct perf_sample_id *sid;
|
|
|
|
u64 host_id;
|
|
|
|
u64 id;
|
|
|
|
|
|
|
|
id = evsel->core.id[j];
|
|
|
|
sid = evlist__id2sid(evlist, id);
|
|
|
|
if (!sid || sid->cpu.cpu == -1)
|
|
|
|
continue;
|
|
|
|
host_id = guest_session__allocate_new_id(gs, host_evlist);
|
|
|
|
ret = guest_session__map_id(gs, id, host_id, sid->cpu.cpu);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct guest_id *guest_session__lookup_id(struct guest_session *gs, u64 id)
|
|
|
|
{
|
|
|
|
struct hlist_head *head;
|
|
|
|
struct guest_id *guest_id;
|
|
|
|
int hash;
|
|
|
|
|
|
|
|
hash = hash_64(id, PERF_EVLIST__HLIST_BITS);
|
|
|
|
head = &gs->heads[hash];
|
|
|
|
|
|
|
|
hlist_for_each_entry(guest_id, head, node)
|
|
|
|
if (guest_id->id == id)
|
|
|
|
return guest_id;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2024-08-13 04:46:55 +08:00
|
|
|
static int process_attr(const struct perf_tool *tool, union perf_event *event,
|
2022-07-11 17:32:07 +08:00
|
|
|
struct perf_sample *sample __maybe_unused,
|
|
|
|
struct machine *machine __maybe_unused)
|
|
|
|
{
|
|
|
|
struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
|
|
|
|
|
|
|
|
return perf_event__process_attr(tool, event, &inject->session->evlist);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int guest_session__add_attr(struct guest_session *gs, struct evsel *evsel)
|
|
|
|
{
|
|
|
|
struct perf_inject *inject = container_of(gs, struct perf_inject, guest_session);
|
|
|
|
struct perf_event_attr attr = evsel->core.attr;
|
|
|
|
u64 *id_array;
|
|
|
|
u32 *vcpu_array;
|
|
|
|
int ret = -ENOMEM;
|
|
|
|
u32 i;
|
|
|
|
|
|
|
|
id_array = calloc(evsel->core.ids, sizeof(*id_array));
|
|
|
|
if (!id_array)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
vcpu_array = calloc(evsel->core.ids, sizeof(*vcpu_array));
|
|
|
|
if (!vcpu_array)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
for (i = 0; i < evsel->core.ids; i++) {
|
|
|
|
u64 id = evsel->core.id[i];
|
|
|
|
struct guest_id *guest_id = guest_session__lookup_id(gs, id);
|
|
|
|
|
|
|
|
if (!guest_id) {
|
|
|
|
pr_err("Failed to find guest id %"PRIu64"\n", id);
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
id_array[i] = guest_id->host_id;
|
|
|
|
vcpu_array[i] = guest_id->vcpu;
|
|
|
|
}
|
|
|
|
|
|
|
|
attr.sample_type |= PERF_SAMPLE_IDENTIFIER;
|
|
|
|
attr.exclude_host = 1;
|
|
|
|
attr.exclude_guest = 0;
|
|
|
|
|
|
|
|
ret = perf_event__synthesize_attr(&inject->tool, &attr, evsel->core.ids,
|
|
|
|
id_array, process_attr);
|
|
|
|
if (ret)
|
|
|
|
pr_err("Failed to add guest attr.\n");
|
|
|
|
|
|
|
|
for (i = 0; i < evsel->core.ids; i++) {
|
|
|
|
struct perf_sample_id *sid;
|
|
|
|
u32 vcpu = vcpu_array[i];
|
|
|
|
|
|
|
|
sid = evlist__id2sid(inject->session->evlist, id_array[i]);
|
|
|
|
/* Guest event is per-thread from the host point of view */
|
|
|
|
sid->cpu.cpu = -1;
|
|
|
|
sid->tid = gs->vcpu[vcpu].tid;
|
|
|
|
sid->machine_pid = gs->machine_pid;
|
|
|
|
sid->vcpu.cpu = vcpu;
|
|
|
|
}
|
|
|
|
out:
|
|
|
|
free(vcpu_array);
|
|
|
|
free(id_array);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int guest_session__add_attrs(struct guest_session *gs)
|
|
|
|
{
|
|
|
|
struct evlist *evlist = gs->session->evlist;
|
|
|
|
struct evsel *evsel;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
evlist__for_each_entry(evlist, evsel) {
|
|
|
|
ret = guest_session__add_attr(gs, evsel);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int synthesize_id_index(struct perf_inject *inject, size_t new_cnt)
|
|
|
|
{
|
|
|
|
struct perf_session *session = inject->session;
|
|
|
|
struct evlist *evlist = session->evlist;
|
|
|
|
struct machine *machine = &session->machines.host;
|
|
|
|
size_t from = evlist->core.nr_entries - new_cnt;
|
|
|
|
|
|
|
|
return __perf_event__synthesize_id_index(&inject->tool, perf_event__repipe,
|
|
|
|
evlist, machine, from);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct guest_tid *guest_session__lookup_tid(struct guest_session *gs, u32 tid)
|
|
|
|
{
|
|
|
|
struct hlist_head *head;
|
|
|
|
struct guest_tid *guest_tid;
|
|
|
|
int hash;
|
|
|
|
|
|
|
|
hash = hash_32(tid, PERF_EVLIST__HLIST_BITS);
|
|
|
|
head = &gs->tids[hash];
|
|
|
|
|
|
|
|
hlist_for_each_entry(guest_tid, head, node)
|
|
|
|
if (guest_tid->tid == tid)
|
|
|
|
return guest_tid;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool dso__is_in_kernel_space(struct dso *dso)
|
|
|
|
{
|
|
|
|
if (dso__is_vdso(dso))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return dso__is_kcore(dso) ||
|
2024-05-05 05:38:01 +08:00
|
|
|
dso__kernel(dso) ||
|
|
|
|
is_kernel_module(dso__long_name(dso), PERF_RECORD_MISC_CPUMODE_UNKNOWN);
|
2022-07-11 17:32:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static u64 evlist__first_id(struct evlist *evlist)
|
|
|
|
{
|
|
|
|
struct evsel *evsel;
|
|
|
|
|
|
|
|
evlist__for_each_entry(evlist, evsel) {
|
|
|
|
if (evsel->core.ids)
|
|
|
|
return evsel->core.id[0];
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-08-13 04:46:55 +08:00
|
|
|
static int process_build_id(const struct perf_tool *tool,
|
2022-07-11 17:32:07 +08:00
|
|
|
union perf_event *event,
|
|
|
|
struct perf_sample *sample __maybe_unused,
|
|
|
|
struct machine *machine __maybe_unused)
|
|
|
|
{
|
|
|
|
struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
|
|
|
|
|
|
|
|
return perf_event__process_build_id(inject->session, event);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int synthesize_build_id(struct perf_inject *inject, struct dso *dso, pid_t machine_pid)
|
|
|
|
{
|
|
|
|
struct machine *machine = perf_session__findnew_machine(inject->session, machine_pid);
|
2024-09-10 04:37:37 +08:00
|
|
|
struct perf_sample synth_sample = {
|
|
|
|
.pid = -1,
|
|
|
|
.tid = -1,
|
|
|
|
.time = -1,
|
|
|
|
.stream_id = -1,
|
|
|
|
.cpu = -1,
|
|
|
|
.period = 1,
|
|
|
|
.cpumode = dso__is_in_kernel_space(dso)
|
|
|
|
? PERF_RECORD_MISC_GUEST_KERNEL
|
|
|
|
: PERF_RECORD_MISC_GUEST_USER,
|
|
|
|
};
|
2022-07-11 17:32:07 +08:00
|
|
|
|
|
|
|
if (!machine)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2024-05-05 05:38:01 +08:00
|
|
|
dso__set_hit(dso);
|
2022-07-11 17:32:07 +08:00
|
|
|
|
2024-09-10 04:37:37 +08:00
|
|
|
return perf_event__synthesize_build_id(&inject->tool, &synth_sample, machine,
|
|
|
|
process_build_id, inject__mmap_evsel(inject),
|
|
|
|
/*misc=*/synth_sample.cpumode,
|
|
|
|
dso__bid(dso), dso__long_name(dso));
|
2022-07-11 17:32:07 +08:00
|
|
|
}
|
|
|
|
|
2024-04-10 14:42:05 +08:00
|
|
|
static int guest_session__add_build_ids_cb(struct dso *dso, void *data)
|
|
|
|
{
|
|
|
|
struct guest_session *gs = data;
|
|
|
|
struct perf_inject *inject = container_of(gs, struct perf_inject, guest_session);
|
|
|
|
|
2024-05-05 05:38:01 +08:00
|
|
|
if (!dso__has_build_id(dso))
|
2024-04-10 14:42:05 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return synthesize_build_id(inject, dso, gs->machine_pid);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-07-11 17:32:07 +08:00
|
|
|
static int guest_session__add_build_ids(struct guest_session *gs)
|
|
|
|
{
|
|
|
|
struct perf_inject *inject = container_of(gs, struct perf_inject, guest_session);
|
|
|
|
|
|
|
|
/* Build IDs will be put in the Build ID feature section */
|
|
|
|
perf_header__set_feat(&inject->session->header, HEADER_BUILD_ID);
|
|
|
|
|
2024-04-10 14:42:05 +08:00
|
|
|
return dsos__for_each_dso(&gs->session->machines.host.dsos,
|
|
|
|
guest_session__add_build_ids_cb,
|
|
|
|
gs);
|
2022-07-11 17:32:07 +08:00
|
|
|
}
|
|
|
|
|
2024-08-13 04:46:55 +08:00
|
|
|
static int guest_session__ksymbol_event(const struct perf_tool *tool,
|
2022-07-11 17:32:07 +08:00
|
|
|
union perf_event *event,
|
|
|
|
struct perf_sample *sample __maybe_unused,
|
|
|
|
struct machine *machine __maybe_unused)
|
|
|
|
{
|
|
|
|
struct guest_session *gs = container_of(tool, struct guest_session, tool);
|
|
|
|
|
|
|
|
/* Only support out-of-line i.e. no BPF support */
|
|
|
|
if (event->ksymbol.ksym_type != PERF_RECORD_KSYMBOL_TYPE_OOL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return guest_session__output_bytes(gs, event, event->header.size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int guest_session__start(struct guest_session *gs, const char *name, bool force)
|
|
|
|
{
|
|
|
|
char tmp_file_name[] = "/tmp/perf-inject-guest_session-XXXXXX";
|
|
|
|
struct perf_session *session;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* Only these events will be injected */
|
|
|
|
gs->tool.mmap = guest_session__repipe;
|
|
|
|
gs->tool.mmap2 = guest_session__repipe;
|
|
|
|
gs->tool.comm = guest_session__repipe;
|
|
|
|
gs->tool.fork = guest_session__repipe;
|
|
|
|
gs->tool.exit = guest_session__repipe;
|
|
|
|
gs->tool.lost = guest_session__repipe;
|
|
|
|
gs->tool.context_switch = guest_session__repipe;
|
|
|
|
gs->tool.ksymbol = guest_session__ksymbol_event;
|
|
|
|
gs->tool.text_poke = guest_session__repipe;
|
|
|
|
/*
|
|
|
|
* Processing a build ID creates a struct dso with that build ID. Later,
|
|
|
|
* all guest dsos are iterated and the build IDs processed into the host
|
|
|
|
* session where they will be output to the Build ID feature section
|
|
|
|
* when the perf.data file header is written.
|
|
|
|
*/
|
|
|
|
gs->tool.build_id = perf_event__process_build_id;
|
|
|
|
/* Process the id index to know what VCPU an ID belongs to */
|
|
|
|
gs->tool.id_index = perf_event__process_id_index;
|
|
|
|
|
|
|
|
gs->tool.ordered_events = true;
|
|
|
|
gs->tool.ordering_requires_timestamps = true;
|
|
|
|
|
|
|
|
gs->data.path = name;
|
|
|
|
gs->data.force = force;
|
|
|
|
gs->data.mode = PERF_DATA_MODE_READ;
|
|
|
|
|
|
|
|
session = perf_session__new(&gs->data, &gs->tool);
|
|
|
|
if (IS_ERR(session))
|
|
|
|
return PTR_ERR(session);
|
|
|
|
gs->session = session;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initial events have zero'd ID samples. Get default ID sample size
|
|
|
|
* used for removing them.
|
|
|
|
*/
|
|
|
|
gs->dflt_id_hdr_size = session->machines.host.id_hdr_size;
|
|
|
|
/* And default ID for adding back a host-compatible ID sample */
|
|
|
|
gs->dflt_id = evlist__first_id(session->evlist);
|
|
|
|
if (!gs->dflt_id) {
|
|
|
|
pr_err("Guest data has no sample IDs");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Temporary file for guest events */
|
|
|
|
gs->tmp_file_name = strdup(tmp_file_name);
|
|
|
|
if (!gs->tmp_file_name)
|
|
|
|
return -ENOMEM;
|
|
|
|
gs->tmp_fd = mkstemp(gs->tmp_file_name);
|
|
|
|
if (gs->tmp_fd < 0)
|
|
|
|
return -errno;
|
|
|
|
|
|
|
|
if (zstd_init(&gs->session->zstd_data, 0) < 0)
|
|
|
|
pr_warning("Guest session decompression initialization failed.\n");
|
|
|
|
|
|
|
|
/*
|
|
|
|
* perf does not support processing 2 sessions simultaneously, so output
|
|
|
|
* guest events to a temporary file.
|
|
|
|
*/
|
|
|
|
ret = perf_session__process_events(gs->session);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if (lseek(gs->tmp_fd, 0, SEEK_SET))
|
|
|
|
return -errno;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Free hlist nodes assuming hlist_node is the first member of hlist entries */
|
|
|
|
static void free_hlist(struct hlist_head *heads, size_t hlist_sz)
|
|
|
|
{
|
|
|
|
struct hlist_node *pos, *n;
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
for (i = 0; i < hlist_sz; ++i) {
|
|
|
|
hlist_for_each_safe(pos, n, &heads[i]) {
|
|
|
|
hlist_del(pos);
|
|
|
|
free(pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void guest_session__exit(struct guest_session *gs)
|
|
|
|
{
|
|
|
|
if (gs->session) {
|
|
|
|
perf_session__delete(gs->session);
|
|
|
|
free_hlist(gs->heads, PERF_EVLIST__HLIST_SIZE);
|
|
|
|
free_hlist(gs->tids, PERF_EVLIST__HLIST_SIZE);
|
|
|
|
}
|
|
|
|
if (gs->tmp_file_name) {
|
|
|
|
if (gs->tmp_fd >= 0)
|
|
|
|
close(gs->tmp_fd);
|
|
|
|
unlink(gs->tmp_file_name);
|
2023-04-12 20:50:08 +08:00
|
|
|
zfree(&gs->tmp_file_name);
|
2022-07-11 17:32:07 +08:00
|
|
|
}
|
2023-04-12 20:50:08 +08:00
|
|
|
zfree(&gs->vcpu);
|
|
|
|
zfree(&gs->perf_data_file);
|
2022-07-11 17:32:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void get_tsc_conv(struct perf_tsc_conversion *tc, struct perf_record_time_conv *time_conv)
|
|
|
|
{
|
|
|
|
tc->time_shift = time_conv->time_shift;
|
|
|
|
tc->time_mult = time_conv->time_mult;
|
|
|
|
tc->time_zero = time_conv->time_zero;
|
|
|
|
tc->time_cycles = time_conv->time_cycles;
|
|
|
|
tc->time_mask = time_conv->time_mask;
|
|
|
|
tc->cap_user_time_zero = time_conv->cap_user_time_zero;
|
|
|
|
tc->cap_user_time_short = time_conv->cap_user_time_short;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void guest_session__get_tc(struct guest_session *gs)
|
|
|
|
{
|
|
|
|
struct perf_inject *inject = container_of(gs, struct perf_inject, guest_session);
|
|
|
|
|
|
|
|
get_tsc_conv(&gs->host_tc, &inject->session->time_conv);
|
|
|
|
get_tsc_conv(&gs->guest_tc, &gs->session->time_conv);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void guest_session__convert_time(struct guest_session *gs, u64 guest_time, u64 *host_time)
|
|
|
|
{
|
|
|
|
u64 tsc;
|
|
|
|
|
|
|
|
if (!guest_time) {
|
|
|
|
*host_time = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gs->guest_tc.cap_user_time_zero)
|
|
|
|
tsc = perf_time_to_tsc(guest_time, &gs->guest_tc);
|
|
|
|
else
|
|
|
|
tsc = guest_time;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is the correct order of operations for x86 if the TSC Offset and
|
|
|
|
* Multiplier values are used.
|
|
|
|
*/
|
|
|
|
tsc -= gs->time_offset;
|
|
|
|
tsc /= gs->time_scale;
|
|
|
|
|
|
|
|
if (gs->host_tc.cap_user_time_zero)
|
|
|
|
*host_time = tsc_to_perf_time(tsc, &gs->host_tc);
|
|
|
|
else
|
|
|
|
*host_time = tsc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int guest_session__fetch(struct guest_session *gs)
|
|
|
|
{
|
2023-05-27 11:43:22 +08:00
|
|
|
void *buf;
|
|
|
|
struct perf_event_header *hdr;
|
2022-07-11 17:32:07 +08:00
|
|
|
size_t hdr_sz = sizeof(*hdr);
|
|
|
|
ssize_t ret;
|
|
|
|
|
2023-05-27 11:43:22 +08:00
|
|
|
buf = gs->ev.event_buf;
|
|
|
|
if (!buf) {
|
|
|
|
buf = malloc(PERF_SAMPLE_MAX_SIZE);
|
|
|
|
if (!buf)
|
|
|
|
return -ENOMEM;
|
|
|
|
gs->ev.event_buf = buf;
|
|
|
|
}
|
|
|
|
hdr = buf;
|
2022-07-11 17:32:07 +08:00
|
|
|
ret = readn(gs->tmp_fd, buf, hdr_sz);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if (!ret) {
|
|
|
|
/* Zero size means EOF */
|
|
|
|
hdr->size = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
buf += hdr_sz;
|
|
|
|
|
|
|
|
ret = readn(gs->tmp_fd, buf, hdr->size - hdr_sz);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
gs->ev.event = (union perf_event *)gs->ev.event_buf;
|
|
|
|
gs->ev.sample.time = 0;
|
|
|
|
|
|
|
|
if (hdr->type >= PERF_RECORD_USER_TYPE_START) {
|
|
|
|
pr_err("Unexpected type fetching guest event");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = evlist__parse_sample(gs->session->evlist, gs->ev.event, &gs->ev.sample);
|
|
|
|
if (ret) {
|
|
|
|
pr_err("Parse failed fetching guest event");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!gs->have_tc) {
|
|
|
|
guest_session__get_tc(gs);
|
|
|
|
gs->have_tc = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
guest_session__convert_time(gs, gs->ev.sample.time, &gs->ev.sample.time);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int evlist__append_id_sample(struct evlist *evlist, union perf_event *ev,
|
|
|
|
const struct perf_sample *sample)
|
|
|
|
{
|
|
|
|
struct evsel *evsel;
|
|
|
|
void *array;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
evsel = evlist__id2evsel(evlist, sample->id);
|
|
|
|
array = ev;
|
|
|
|
|
|
|
|
if (!evsel) {
|
|
|
|
pr_err("No evsel for id %"PRIu64"\n", sample->id);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
array += ev->header.size;
|
|
|
|
ret = perf_event__synthesize_id_sample(array, evsel->core.attr.sample_type, sample);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if (ret & 7) {
|
|
|
|
pr_err("Bad id sample size %d\n", ret);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ev->header.size += ret;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int guest_session__inject_events(struct guest_session *gs, u64 timestamp)
|
|
|
|
{
|
|
|
|
struct perf_inject *inject = container_of(gs, struct perf_inject, guest_session);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!gs->ready)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
struct perf_sample *sample;
|
|
|
|
struct guest_id *guest_id;
|
|
|
|
union perf_event *ev;
|
|
|
|
u16 id_hdr_size;
|
|
|
|
u8 cpumode;
|
|
|
|
u64 id;
|
|
|
|
|
|
|
|
if (!gs->fetched) {
|
|
|
|
ret = guest_session__fetch(gs);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
gs->fetched = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
ev = gs->ev.event;
|
|
|
|
sample = &gs->ev.sample;
|
|
|
|
|
|
|
|
if (!ev->header.size)
|
|
|
|
return 0; /* EOF */
|
|
|
|
|
|
|
|
if (sample->time > timestamp)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Change cpumode to guest */
|
|
|
|
cpumode = ev->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
|
|
|
|
if (cpumode & PERF_RECORD_MISC_USER)
|
|
|
|
cpumode = PERF_RECORD_MISC_GUEST_USER;
|
|
|
|
else
|
|
|
|
cpumode = PERF_RECORD_MISC_GUEST_KERNEL;
|
|
|
|
ev->header.misc &= ~PERF_RECORD_MISC_CPUMODE_MASK;
|
|
|
|
ev->header.misc |= cpumode;
|
|
|
|
|
|
|
|
id = sample->id;
|
|
|
|
if (!id) {
|
|
|
|
id = gs->dflt_id;
|
|
|
|
id_hdr_size = gs->dflt_id_hdr_size;
|
|
|
|
} else {
|
|
|
|
struct evsel *evsel = evlist__id2evsel(gs->session->evlist, id);
|
|
|
|
|
|
|
|
id_hdr_size = evsel__id_hdr_size(evsel);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (id_hdr_size & 7) {
|
|
|
|
pr_err("Bad id_hdr_size %u\n", id_hdr_size);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ev->header.size & 7) {
|
|
|
|
pr_err("Bad event size %u\n", ev->header.size);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Remove guest id sample */
|
|
|
|
ev->header.size -= id_hdr_size;
|
|
|
|
|
|
|
|
if (ev->header.size & 7) {
|
|
|
|
pr_err("Bad raw event size %u\n", ev->header.size);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
guest_id = guest_session__lookup_id(gs, id);
|
|
|
|
if (!guest_id) {
|
|
|
|
pr_err("Guest event with unknown id %llu\n",
|
|
|
|
(unsigned long long)id);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Change to host ID to avoid conflicting ID values */
|
|
|
|
sample->id = guest_id->host_id;
|
|
|
|
sample->stream_id = guest_id->host_id;
|
|
|
|
|
|
|
|
if (sample->cpu != (u32)-1) {
|
|
|
|
if (sample->cpu >= gs->vcpu_cnt) {
|
|
|
|
pr_err("Guest event with unknown VCPU %u\n",
|
|
|
|
sample->cpu);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
/* Change to host CPU instead of guest VCPU */
|
|
|
|
sample->cpu = gs->vcpu[sample->cpu].cpu;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* New id sample with new ID and CPU */
|
|
|
|
ret = evlist__append_id_sample(inject->session->evlist, ev, sample);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if (ev->header.size & 7) {
|
|
|
|
pr_err("Bad new event size %u\n", ev->header.size);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
gs->fetched = false;
|
|
|
|
|
|
|
|
ret = output_bytes(inject, ev, ev->header.size);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int guest_session__flush_events(struct guest_session *gs)
|
|
|
|
{
|
|
|
|
return guest_session__inject_events(gs, -1);
|
|
|
|
}
|
|
|
|
|
2024-08-13 04:46:55 +08:00
|
|
|
static int host__repipe(const struct perf_tool *tool,
|
2022-07-11 17:32:07 +08:00
|
|
|
union perf_event *event,
|
|
|
|
struct perf_sample *sample,
|
|
|
|
struct machine *machine)
|
|
|
|
{
|
|
|
|
struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = guest_session__inject_events(&inject->guest_session, sample->time);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return perf_event__repipe(tool, event, sample, machine);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int host__finished_init(struct perf_session *session, union perf_event *event)
|
|
|
|
{
|
|
|
|
struct perf_inject *inject = container_of(session->tool, struct perf_inject, tool);
|
|
|
|
struct guest_session *gs = &inject->guest_session;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Peek through host COMM events to find QEMU threads and the VCPU they
|
|
|
|
* are running.
|
|
|
|
*/
|
|
|
|
ret = host_peek_vm_comms(session, gs);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if (!gs->vcpu_cnt) {
|
2022-07-21 20:45:28 +08:00
|
|
|
pr_err("No VCPU threads found for pid %u\n", gs->machine_pid);
|
2022-07-11 17:32:07 +08:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate new (unused) host sample IDs and map them to the guest IDs.
|
|
|
|
*/
|
|
|
|
gs->highest_id = evlist__find_highest_id(session->evlist);
|
|
|
|
ret = guest_session__map_ids(gs, session->evlist);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = guest_session__add_attrs(gs);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = synthesize_id_index(inject, gs->session->evlist->core.nr_entries);
|
|
|
|
if (ret) {
|
|
|
|
pr_err("Failed to synthesize id_index\n");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = guest_session__add_build_ids(gs);
|
|
|
|
if (ret) {
|
|
|
|
pr_err("Failed to add guest build IDs\n");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
gs->ready = true;
|
|
|
|
|
|
|
|
ret = guest_session__inject_events(gs, 0);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return perf_event__repipe_op2_synth(session, event);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Obey finished-round ordering. The FINISHED_ROUND event is first processed
|
|
|
|
* which flushes host events to file up until the last flush time. Then inject
|
|
|
|
* guest events up to the same time. Finally write out the FINISHED_ROUND event
|
|
|
|
* itself.
|
|
|
|
*/
|
2024-08-13 04:46:55 +08:00
|
|
|
static int host__finished_round(const struct perf_tool *tool,
|
2022-07-11 17:32:07 +08:00
|
|
|
union perf_event *event,
|
|
|
|
struct ordered_events *oe)
|
|
|
|
{
|
|
|
|
struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
|
|
|
|
int ret = perf_event__process_finished_round(tool, event, oe);
|
|
|
|
u64 timestamp = ordered_events__last_flush_time(oe);
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = guest_session__inject_events(&inject->guest_session, timestamp);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return perf_event__repipe_oe_synth(tool, event, oe);
|
|
|
|
}
|
|
|
|
|
2024-08-13 04:46:55 +08:00
|
|
|
static int host__context_switch(const struct perf_tool *tool,
|
2022-07-11 17:32:07 +08:00
|
|
|
union perf_event *event,
|
|
|
|
struct perf_sample *sample,
|
|
|
|
struct machine *machine)
|
|
|
|
{
|
|
|
|
struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
|
|
|
|
bool out = event->header.misc & PERF_RECORD_MISC_SWITCH_OUT;
|
|
|
|
struct guest_session *gs = &inject->guest_session;
|
|
|
|
u32 pid = event->context_switch.next_prev_pid;
|
|
|
|
u32 tid = event->context_switch.next_prev_tid;
|
|
|
|
struct guest_tid *guest_tid;
|
|
|
|
u32 vcpu;
|
|
|
|
|
|
|
|
if (out || pid != gs->machine_pid)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
guest_tid = guest_session__lookup_tid(gs, tid);
|
|
|
|
if (!guest_tid)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (sample->cpu == (u32)-1) {
|
|
|
|
pr_err("Switch event does not have CPU\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
vcpu = guest_tid->vcpu;
|
|
|
|
if (vcpu >= gs->vcpu_cnt)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
/* Guest is switching in, record which CPU the VCPU is now running on */
|
|
|
|
gs->vcpu[vcpu].cpu = sample->cpu;
|
|
|
|
out:
|
|
|
|
return host__repipe(tool, event, sample, machine);
|
|
|
|
}
|
|
|
|
|
2012-09-11 06:15:03 +08:00
|
|
|
static void sig_handler(int sig __maybe_unused)
|
2010-05-01 14:41:20 +08:00
|
|
|
{
|
|
|
|
session_done = 1;
|
|
|
|
}
|
|
|
|
|
2020-05-05 00:57:44 +08:00
|
|
|
static int evsel__check_stype(struct evsel *evsel, u64 sample_type, const char *sample_msg)
|
2012-08-07 20:56:04 +08:00
|
|
|
{
|
2019-07-21 19:24:29 +08:00
|
|
|
struct perf_event_attr *attr = &evsel->core.attr;
|
2020-04-30 03:07:09 +08:00
|
|
|
const char *name = evsel__name(evsel);
|
2012-08-07 20:56:04 +08:00
|
|
|
|
|
|
|
if (!(attr->sample_type & sample_type)) {
|
|
|
|
pr_err("Samples for %s event do not have %s attribute set.",
|
|
|
|
name, sample_msg);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-08-13 04:46:55 +08:00
|
|
|
static int drop_sample(const struct perf_tool *tool __maybe_unused,
|
2015-09-25 21:15:55 +08:00
|
|
|
union perf_event *event __maybe_unused,
|
|
|
|
struct perf_sample *sample __maybe_unused,
|
2019-07-21 19:23:51 +08:00
|
|
|
struct evsel *evsel __maybe_unused,
|
2015-09-25 21:15:55 +08:00
|
|
|
struct machine *machine __maybe_unused)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void strip_init(struct perf_inject *inject)
|
|
|
|
{
|
2019-07-21 19:23:52 +08:00
|
|
|
struct evlist *evlist = inject->session->evlist;
|
2019-07-21 19:23:51 +08:00
|
|
|
struct evsel *evsel;
|
2015-09-25 21:15:55 +08:00
|
|
|
|
|
|
|
inject->tool.context_switch = perf_event__drop;
|
|
|
|
|
2016-06-23 22:26:15 +08:00
|
|
|
evlist__for_each_entry(evlist, evsel)
|
2015-09-25 21:15:55 +08:00
|
|
|
evsel->handler = drop_sample;
|
|
|
|
}
|
|
|
|
|
2021-04-30 15:03:02 +08:00
|
|
|
static int parse_vm_time_correlation(const struct option *opt, const char *str, int unset)
|
|
|
|
{
|
|
|
|
struct perf_inject *inject = opt->value;
|
|
|
|
const char *args;
|
|
|
|
char *dry_run;
|
|
|
|
|
|
|
|
if (unset)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
inject->itrace_synth_opts.set = true;
|
|
|
|
inject->itrace_synth_opts.vm_time_correlation = true;
|
|
|
|
inject->in_place_update = true;
|
|
|
|
|
|
|
|
if (!str)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
dry_run = skip_spaces(str);
|
|
|
|
if (!strncmp(dry_run, "dry-run", strlen("dry-run"))) {
|
|
|
|
inject->itrace_synth_opts.vm_tm_corr_dry_run = true;
|
|
|
|
inject->in_place_update_dry_run = true;
|
|
|
|
args = dry_run + strlen("dry-run");
|
|
|
|
} else {
|
|
|
|
args = str;
|
|
|
|
}
|
|
|
|
|
|
|
|
inject->itrace_synth_opts.vm_tm_corr_args = strdup(args);
|
|
|
|
|
|
|
|
return inject->itrace_synth_opts.vm_tm_corr_args ? 0 : -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2022-07-11 17:32:07 +08:00
|
|
|
static int parse_guest_data(const struct option *opt, const char *str, int unset)
|
|
|
|
{
|
|
|
|
struct perf_inject *inject = opt->value;
|
|
|
|
struct guest_session *gs = &inject->guest_session;
|
|
|
|
char *tok;
|
|
|
|
char *s;
|
|
|
|
|
|
|
|
if (unset)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!str)
|
|
|
|
goto bad_args;
|
|
|
|
|
|
|
|
s = strdup(str);
|
|
|
|
if (!s)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
gs->perf_data_file = strsep(&s, ",");
|
|
|
|
if (!gs->perf_data_file)
|
|
|
|
goto bad_args;
|
|
|
|
|
|
|
|
gs->copy_kcore_dir = has_kcore_dir(gs->perf_data_file);
|
|
|
|
if (gs->copy_kcore_dir)
|
|
|
|
inject->output.is_dir = true;
|
|
|
|
|
|
|
|
tok = strsep(&s, ",");
|
|
|
|
if (!tok)
|
|
|
|
goto bad_args;
|
|
|
|
gs->machine_pid = strtoul(tok, NULL, 0);
|
|
|
|
if (!inject->guest_session.machine_pid)
|
|
|
|
goto bad_args;
|
|
|
|
|
|
|
|
gs->time_scale = 1;
|
|
|
|
|
|
|
|
tok = strsep(&s, ",");
|
|
|
|
if (!tok)
|
|
|
|
goto out;
|
|
|
|
gs->time_offset = strtoull(tok, NULL, 0);
|
|
|
|
|
|
|
|
tok = strsep(&s, ",");
|
|
|
|
if (!tok)
|
|
|
|
goto out;
|
|
|
|
gs->time_scale = strtod(tok, NULL);
|
|
|
|
if (!gs->time_scale)
|
|
|
|
goto bad_args;
|
|
|
|
out:
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
bad_args:
|
|
|
|
pr_err("--guest-data option requires guest perf.data file name, "
|
|
|
|
"guest machine PID, and optionally guest timestamp offset, "
|
|
|
|
"and guest timestamp scale factor, separated by commas.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2022-05-20 21:24:02 +08:00
|
|
|
static int save_section_info_cb(struct perf_file_section *section,
|
|
|
|
struct perf_header *ph __maybe_unused,
|
|
|
|
int feat, int fd __maybe_unused, void *data)
|
|
|
|
{
|
|
|
|
struct perf_inject *inject = data;
|
|
|
|
|
|
|
|
inject->secs[feat] = *section;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int save_section_info(struct perf_inject *inject)
|
|
|
|
{
|
|
|
|
struct perf_header *header = &inject->session->header;
|
|
|
|
int fd = perf_data__fd(inject->session->data);
|
|
|
|
|
|
|
|
return perf_header__process_sections(header, fd, inject, save_section_info_cb);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool keep_feat(int feat)
|
|
|
|
{
|
|
|
|
switch (feat) {
|
|
|
|
/* Keep original information that describes the machine or software */
|
|
|
|
case HEADER_TRACING_DATA:
|
|
|
|
case HEADER_HOSTNAME:
|
|
|
|
case HEADER_OSRELEASE:
|
|
|
|
case HEADER_VERSION:
|
|
|
|
case HEADER_ARCH:
|
|
|
|
case HEADER_NRCPUS:
|
|
|
|
case HEADER_CPUDESC:
|
|
|
|
case HEADER_CPUID:
|
|
|
|
case HEADER_TOTAL_MEM:
|
|
|
|
case HEADER_CPU_TOPOLOGY:
|
|
|
|
case HEADER_NUMA_TOPOLOGY:
|
|
|
|
case HEADER_PMU_MAPPINGS:
|
|
|
|
case HEADER_CACHE:
|
|
|
|
case HEADER_MEM_TOPOLOGY:
|
|
|
|
case HEADER_CLOCKID:
|
|
|
|
case HEADER_BPF_PROG_INFO:
|
|
|
|
case HEADER_BPF_BTF:
|
|
|
|
case HEADER_CPU_PMU_CAPS:
|
|
|
|
case HEADER_CLOCK_DATA:
|
|
|
|
case HEADER_HYBRID_TOPOLOGY:
|
2022-06-04 12:45:16 +08:00
|
|
|
case HEADER_PMU_CAPS:
|
2022-05-20 21:24:02 +08:00
|
|
|
return true;
|
|
|
|
/* Information that can be updated */
|
|
|
|
case HEADER_BUILD_ID:
|
|
|
|
case HEADER_CMDLINE:
|
|
|
|
case HEADER_EVENT_DESC:
|
|
|
|
case HEADER_BRANCH_STACK:
|
|
|
|
case HEADER_GROUP_DESC:
|
|
|
|
case HEADER_AUXTRACE:
|
|
|
|
case HEADER_STAT:
|
|
|
|
case HEADER_SAMPLE_TIME:
|
|
|
|
case HEADER_DIR_FORMAT:
|
|
|
|
case HEADER_COMPRESSED:
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
static int read_file(int fd, u64 offs, void *buf, size_t sz)
|
|
|
|
{
|
|
|
|
ssize_t ret = preadn(fd, buf, sz, offs);
|
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
return -errno;
|
|
|
|
if ((size_t)ret != sz)
|
|
|
|
return -EINVAL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int feat_copy(struct perf_inject *inject, int feat, struct feat_writer *fw)
|
|
|
|
{
|
|
|
|
int fd = perf_data__fd(inject->session->data);
|
|
|
|
u64 offs = inject->secs[feat].offset;
|
|
|
|
size_t sz = inject->secs[feat].size;
|
|
|
|
void *buf = malloc(sz);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!buf)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
ret = read_file(fd, offs, buf, sz);
|
|
|
|
if (ret)
|
|
|
|
goto out_free;
|
|
|
|
|
|
|
|
ret = fw->write(fw, buf, sz);
|
|
|
|
out_free:
|
|
|
|
free(buf);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct inject_fc {
|
|
|
|
struct feat_copier fc;
|
|
|
|
struct perf_inject *inject;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int feat_copy_cb(struct feat_copier *fc, int feat, struct feat_writer *fw)
|
|
|
|
{
|
|
|
|
struct inject_fc *inj_fc = container_of(fc, struct inject_fc, fc);
|
|
|
|
struct perf_inject *inject = inj_fc->inject;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!inject->secs[feat].offset ||
|
|
|
|
!keep_feat(feat))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
ret = feat_copy(inject, feat, fw);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return 1; /* Feature section copied */
|
|
|
|
}
|
|
|
|
|
2022-05-20 21:24:04 +08:00
|
|
|
static int copy_kcore_dir(struct perf_inject *inject)
|
|
|
|
{
|
|
|
|
char *cmd;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = asprintf(&cmd, "cp -r -n %s/kcore_dir* %s >/dev/null 2>&1",
|
|
|
|
inject->input_name, inject->output.path);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
pr_debug("%s\n", cmd);
|
2022-06-20 18:39:04 +08:00
|
|
|
ret = system(cmd);
|
|
|
|
free(cmd);
|
|
|
|
return ret;
|
2022-05-20 21:24:04 +08:00
|
|
|
}
|
|
|
|
|
2022-07-11 17:32:07 +08:00
|
|
|
static int guest_session__copy_kcore_dir(struct guest_session *gs)
|
|
|
|
{
|
|
|
|
struct perf_inject *inject = container_of(gs, struct perf_inject, guest_session);
|
|
|
|
char *cmd;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = asprintf(&cmd, "cp -r -n %s/kcore_dir %s/kcore_dir__%u >/dev/null 2>&1",
|
|
|
|
gs->perf_data_file, inject->output.path, gs->machine_pid);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
pr_debug("%s\n", cmd);
|
|
|
|
ret = system(cmd);
|
|
|
|
free(cmd);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-12-13 16:48:29 +08:00
|
|
|
static int output_fd(struct perf_inject *inject)
|
|
|
|
{
|
|
|
|
return inject->in_place_update ? -1 : perf_data__fd(&inject->output);
|
|
|
|
}
|
|
|
|
|
2012-10-01 06:54:10 +08:00
|
|
|
static int __cmd_inject(struct perf_inject *inject)
|
2010-05-01 14:41:20 +08:00
|
|
|
{
|
|
|
|
int ret = -EINVAL;
|
2022-07-11 17:32:07 +08:00
|
|
|
struct guest_session *gs = &inject->guest_session;
|
2014-08-12 14:40:37 +08:00
|
|
|
struct perf_session *session = inject->session;
|
2021-12-13 16:48:29 +08:00
|
|
|
int fd = output_fd(inject);
|
2024-08-29 23:01:52 +08:00
|
|
|
u64 output_data_offset = perf_session__data_offset(session->evlist);
|
|
|
|
/*
|
|
|
|
* Pipe input hasn't loaded the attributes and will handle them as
|
|
|
|
* events. So that the attributes don't overlap the data, write the
|
|
|
|
* attributes after the data.
|
|
|
|
*/
|
|
|
|
bool write_attrs_after_data = !inject->output.is_pipe && inject->session->data->is_pipe;
|
2010-05-01 14:41:20 +08:00
|
|
|
|
|
|
|
signal(SIGINT, sig_handler);
|
|
|
|
|
2024-08-17 14:44:36 +08:00
|
|
|
if (inject->build_id_style != BID_RWS__NONE || inject->sched_stat ||
|
|
|
|
inject->itrace_synth_opts.set) {
|
2012-10-01 06:54:10 +08:00
|
|
|
inject->tool.mmap = perf_event__repipe_mmap;
|
2013-08-21 18:10:25 +08:00
|
|
|
inject->tool.mmap2 = perf_event__repipe_mmap2;
|
2012-10-07 02:44:59 +08:00
|
|
|
inject->tool.fork = perf_event__repipe_fork;
|
perf build: Use libtraceevent from the system
Remove the LIBTRACEEVENT_DYNAMIC and LIBTRACEFS_DYNAMIC make command
line variables.
If libtraceevent isn't installed or NO_LIBTRACEEVENT=1 is passed to the
build, don't compile in libtraceevent and libtracefs support.
This also disables CONFIG_TRACE that controls "perf trace".
CONFIG_LIBTRACEEVENT is used to control enablement in Build/Makefiles,
HAVE_LIBTRACEEVENT is used in C code.
Without HAVE_LIBTRACEEVENT tracepoints are disabled and as such the
commands kmem, kwork, lock, sched and timechart are removed. The
majority of commands continue to work including "perf test".
Committer notes:
Fixed up a tools/perf/util/Build reject and added:
#include <traceevent/event-parse.h>
to tools/perf/util/scripting-engines/trace-event-perl.c.
Committer testing:
$ rpm -qi libtraceevent-devel
Name : libtraceevent-devel
Version : 1.5.3
Release : 2.fc36
Architecture: x86_64
Install Date: Mon 25 Jul 2022 03:20:19 PM -03
Group : Unspecified
Size : 27728
License : LGPLv2+ and GPLv2+
Signature : RSA/SHA256, Fri 15 Apr 2022 02:11:58 PM -03, Key ID 999f7cbf38ab71f4
Source RPM : libtraceevent-1.5.3-2.fc36.src.rpm
Build Date : Fri 15 Apr 2022 10:57:01 AM -03
Build Host : buildvm-x86-05.iad2.fedoraproject.org
Packager : Fedora Project
Vendor : Fedora Project
URL : https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git/
Bug URL : https://bugz.fedoraproject.org/libtraceevent
Summary : Development headers of libtraceevent
Description :
Development headers of libtraceevent-libs
$
Default build:
$ ldd ~/bin/perf | grep tracee
libtraceevent.so.1 => /lib64/libtraceevent.so.1 (0x00007f1dcaf8f000)
$
# perf trace -e sched:* --max-events 10
0.000 migration/0/17 sched:sched_migrate_task(comm: "", pid: 1603763 (perf), prio: 120, dest_cpu: 1)
0.005 migration/0/17 sched:sched_wake_idle_without_ipi(cpu: 1)
0.011 migration/0/17 sched:sched_switch(prev_comm: "", prev_pid: 17 (migration/0), prev_state: 1, next_comm: "", next_prio: 120)
1.173 :0/0 sched:sched_wakeup(comm: "", pid: 3138 (gnome-terminal-), prio: 120)
1.180 :0/0 sched:sched_switch(prev_comm: "", prev_prio: 120, next_comm: "", next_pid: 3138 (gnome-terminal-), next_prio: 120)
0.156 migration/1/21 sched:sched_migrate_task(comm: "", pid: 1603763 (perf), prio: 120, orig_cpu: 1, dest_cpu: 2)
0.160 migration/1/21 sched:sched_wake_idle_without_ipi(cpu: 2)
0.166 migration/1/21 sched:sched_switch(prev_comm: "", prev_pid: 21 (migration/1), prev_state: 1, next_comm: "", next_prio: 120)
1.183 :0/0 sched:sched_wakeup(comm: "", pid: 1602985 (kworker/u16:0-f), prio: 120, target_cpu: 1)
1.186 :0/0 sched:sched_switch(prev_comm: "", prev_prio: 120, next_comm: "", next_pid: 1602985 (kworker/u16:0-f), next_prio: 120)
#
Had to tweak tools/perf/util/setup.py to make sure the python binding
shared object links with libtraceevent if -DHAVE_LIBTRACEEVENT is
present in CFLAGS.
Building with NO_LIBTRACEEVENT=1 uncovered some more build failures:
- Make building of data-convert-bt.c to CONFIG_LIBTRACEEVENT=y
- perf-$(CONFIG_LIBTRACEEVENT) += scripts/
- bpf_kwork.o needs also to be dependent on CONFIG_LIBTRACEEVENT=y
- The python binding needed some fixups and util/trace-event.c can't be
built and linked with the python binding shared object, so remove it
in tools/perf/util/setup.py and exclude it from the list of
dependencies in the python/perf.so Makefile.perf target.
Building without libtraceevent-devel installed uncovered more build
failures:
- The python binding tools/perf/util/python.c was assuming that
traceevent/parse-events.h was always available, which was the case
when we defaulted to using the in-kernel tools/lib/traceevent/ files,
now we need to enclose it under ifdef HAVE_LIBTRACEEVENT, just like
the other parts of it that deal with tracepoints.
- We have to ifdef the rules in the Build files with
CONFIG_LIBTRACEEVENT=y to build builtin-trace.c and
tools/perf/trace/beauty/ as we only ifdef setting CONFIG_TRACE=y when
setting NO_LIBTRACEEVENT=1 in the make command line, not when we don't
detect libtraceevent-devel installed in the system. Simplification here
to avoid these two ways of disabling builtin-trace.c and not having
CONFIG_TRACE=y when libtraceevent-devel isn't installed is the clean
way.
From Athira:
<quote>
tools/perf/arch/powerpc/util/Build
-perf-y += kvm-stat.o
+perf-$(CONFIG_LIBTRACEEVENT) += kvm-stat.o
</quote>
Then, ditto for arm64 and s390, detected by container cross build tests.
- s/390 uses test__checkevent_tracepoint() that is now only available if
HAVE_LIBTRACEEVENT is defined, enclose the callsite with ifder HAVE_LIBTRACEEVENT.
Also from Athira:
<quote>
With this change, I could successfully compile in these environment:
- Without libtraceevent-devel installed
- With libtraceevent-devel installed
- With “make NO_LIBTRACEEVENT=1”
</quote>
Then, finally rename CONFIG_TRACEEVENT to CONFIG_LIBTRACEEVENT for
consistency with other libraries detected in tools/perf/.
Signed-off-by: Ian Rogers <irogers@google.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Tested-by: Athira Rajeev <atrajeev@linux.vnet.ibm.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Nick Desaulniers <ndesaulniers@google.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: bpf@vger.kernel.org
Link: http://lore.kernel.org/lkml/20221205225940.3079667-3-irogers@google.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2022-12-06 06:59:39 +08:00
|
|
|
#ifdef HAVE_LIBTRACEEVENT
|
2012-10-01 06:54:10 +08:00
|
|
|
inject->tool.tracing_data = perf_event__repipe_tracing_data;
|
perf build: Use libtraceevent from the system
Remove the LIBTRACEEVENT_DYNAMIC and LIBTRACEFS_DYNAMIC make command
line variables.
If libtraceevent isn't installed or NO_LIBTRACEEVENT=1 is passed to the
build, don't compile in libtraceevent and libtracefs support.
This also disables CONFIG_TRACE that controls "perf trace".
CONFIG_LIBTRACEEVENT is used to control enablement in Build/Makefiles,
HAVE_LIBTRACEEVENT is used in C code.
Without HAVE_LIBTRACEEVENT tracepoints are disabled and as such the
commands kmem, kwork, lock, sched and timechart are removed. The
majority of commands continue to work including "perf test".
Committer notes:
Fixed up a tools/perf/util/Build reject and added:
#include <traceevent/event-parse.h>
to tools/perf/util/scripting-engines/trace-event-perl.c.
Committer testing:
$ rpm -qi libtraceevent-devel
Name : libtraceevent-devel
Version : 1.5.3
Release : 2.fc36
Architecture: x86_64
Install Date: Mon 25 Jul 2022 03:20:19 PM -03
Group : Unspecified
Size : 27728
License : LGPLv2+ and GPLv2+
Signature : RSA/SHA256, Fri 15 Apr 2022 02:11:58 PM -03, Key ID 999f7cbf38ab71f4
Source RPM : libtraceevent-1.5.3-2.fc36.src.rpm
Build Date : Fri 15 Apr 2022 10:57:01 AM -03
Build Host : buildvm-x86-05.iad2.fedoraproject.org
Packager : Fedora Project
Vendor : Fedora Project
URL : https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git/
Bug URL : https://bugz.fedoraproject.org/libtraceevent
Summary : Development headers of libtraceevent
Description :
Development headers of libtraceevent-libs
$
Default build:
$ ldd ~/bin/perf | grep tracee
libtraceevent.so.1 => /lib64/libtraceevent.so.1 (0x00007f1dcaf8f000)
$
# perf trace -e sched:* --max-events 10
0.000 migration/0/17 sched:sched_migrate_task(comm: "", pid: 1603763 (perf), prio: 120, dest_cpu: 1)
0.005 migration/0/17 sched:sched_wake_idle_without_ipi(cpu: 1)
0.011 migration/0/17 sched:sched_switch(prev_comm: "", prev_pid: 17 (migration/0), prev_state: 1, next_comm: "", next_prio: 120)
1.173 :0/0 sched:sched_wakeup(comm: "", pid: 3138 (gnome-terminal-), prio: 120)
1.180 :0/0 sched:sched_switch(prev_comm: "", prev_prio: 120, next_comm: "", next_pid: 3138 (gnome-terminal-), next_prio: 120)
0.156 migration/1/21 sched:sched_migrate_task(comm: "", pid: 1603763 (perf), prio: 120, orig_cpu: 1, dest_cpu: 2)
0.160 migration/1/21 sched:sched_wake_idle_without_ipi(cpu: 2)
0.166 migration/1/21 sched:sched_switch(prev_comm: "", prev_pid: 21 (migration/1), prev_state: 1, next_comm: "", next_prio: 120)
1.183 :0/0 sched:sched_wakeup(comm: "", pid: 1602985 (kworker/u16:0-f), prio: 120, target_cpu: 1)
1.186 :0/0 sched:sched_switch(prev_comm: "", prev_prio: 120, next_comm: "", next_pid: 1602985 (kworker/u16:0-f), next_prio: 120)
#
Had to tweak tools/perf/util/setup.py to make sure the python binding
shared object links with libtraceevent if -DHAVE_LIBTRACEEVENT is
present in CFLAGS.
Building with NO_LIBTRACEEVENT=1 uncovered some more build failures:
- Make building of data-convert-bt.c to CONFIG_LIBTRACEEVENT=y
- perf-$(CONFIG_LIBTRACEEVENT) += scripts/
- bpf_kwork.o needs also to be dependent on CONFIG_LIBTRACEEVENT=y
- The python binding needed some fixups and util/trace-event.c can't be
built and linked with the python binding shared object, so remove it
in tools/perf/util/setup.py and exclude it from the list of
dependencies in the python/perf.so Makefile.perf target.
Building without libtraceevent-devel installed uncovered more build
failures:
- The python binding tools/perf/util/python.c was assuming that
traceevent/parse-events.h was always available, which was the case
when we defaulted to using the in-kernel tools/lib/traceevent/ files,
now we need to enclose it under ifdef HAVE_LIBTRACEEVENT, just like
the other parts of it that deal with tracepoints.
- We have to ifdef the rules in the Build files with
CONFIG_LIBTRACEEVENT=y to build builtin-trace.c and
tools/perf/trace/beauty/ as we only ifdef setting CONFIG_TRACE=y when
setting NO_LIBTRACEEVENT=1 in the make command line, not when we don't
detect libtraceevent-devel installed in the system. Simplification here
to avoid these two ways of disabling builtin-trace.c and not having
CONFIG_TRACE=y when libtraceevent-devel isn't installed is the clean
way.
From Athira:
<quote>
tools/perf/arch/powerpc/util/Build
-perf-y += kvm-stat.o
+perf-$(CONFIG_LIBTRACEEVENT) += kvm-stat.o
</quote>
Then, ditto for arm64 and s390, detected by container cross build tests.
- s/390 uses test__checkevent_tracepoint() that is now only available if
HAVE_LIBTRACEEVENT is defined, enclose the callsite with ifder HAVE_LIBTRACEEVENT.
Also from Athira:
<quote>
With this change, I could successfully compile in these environment:
- Without libtraceevent-devel installed
- With libtraceevent-devel installed
- With “make NO_LIBTRACEEVENT=1”
</quote>
Then, finally rename CONFIG_TRACEEVENT to CONFIG_LIBTRACEEVENT for
consistency with other libraries detected in tools/perf/.
Signed-off-by: Ian Rogers <irogers@google.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Tested-by: Athira Rajeev <atrajeev@linux.vnet.ibm.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Nick Desaulniers <ndesaulniers@google.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: bpf@vger.kernel.org
Link: http://lore.kernel.org/lkml/20221205225940.3079667-3-irogers@google.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2022-12-06 06:59:39 +08:00
|
|
|
#endif
|
2010-05-01 14:41:20 +08:00
|
|
|
}
|
|
|
|
|
2024-09-10 04:37:39 +08:00
|
|
|
if (inject->build_id_style == BID_RWS__INJECT_HEADER_LAZY ||
|
|
|
|
inject->build_id_style == BID_RWS__MMAP2_BUILDID_LAZY) {
|
2012-08-07 20:56:05 +08:00
|
|
|
inject->tool.sample = perf_event__inject_buildid;
|
|
|
|
} else if (inject->sched_stat) {
|
2019-07-21 19:23:51 +08:00
|
|
|
struct evsel *evsel;
|
2012-08-07 20:56:04 +08:00
|
|
|
|
2016-06-23 22:26:15 +08:00
|
|
|
evlist__for_each_entry(session->evlist, evsel) {
|
2020-04-30 03:07:09 +08:00
|
|
|
const char *name = evsel__name(evsel);
|
2012-08-07 20:56:04 +08:00
|
|
|
|
|
|
|
if (!strcmp(name, "sched:sched_switch")) {
|
2020-05-05 00:57:44 +08:00
|
|
|
if (evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID"))
|
2012-08-07 20:56:04 +08:00
|
|
|
return -EINVAL;
|
|
|
|
|
2013-11-06 21:17:38 +08:00
|
|
|
evsel->handler = perf_inject__sched_switch;
|
2012-08-07 20:56:04 +08:00
|
|
|
} else if (!strcmp(name, "sched:sched_process_exit"))
|
2013-11-06 21:17:38 +08:00
|
|
|
evsel->handler = perf_inject__sched_process_exit;
|
perf build: Use libtraceevent from the system
Remove the LIBTRACEEVENT_DYNAMIC and LIBTRACEFS_DYNAMIC make command
line variables.
If libtraceevent isn't installed or NO_LIBTRACEEVENT=1 is passed to the
build, don't compile in libtraceevent and libtracefs support.
This also disables CONFIG_TRACE that controls "perf trace".
CONFIG_LIBTRACEEVENT is used to control enablement in Build/Makefiles,
HAVE_LIBTRACEEVENT is used in C code.
Without HAVE_LIBTRACEEVENT tracepoints are disabled and as such the
commands kmem, kwork, lock, sched and timechart are removed. The
majority of commands continue to work including "perf test".
Committer notes:
Fixed up a tools/perf/util/Build reject and added:
#include <traceevent/event-parse.h>
to tools/perf/util/scripting-engines/trace-event-perl.c.
Committer testing:
$ rpm -qi libtraceevent-devel
Name : libtraceevent-devel
Version : 1.5.3
Release : 2.fc36
Architecture: x86_64
Install Date: Mon 25 Jul 2022 03:20:19 PM -03
Group : Unspecified
Size : 27728
License : LGPLv2+ and GPLv2+
Signature : RSA/SHA256, Fri 15 Apr 2022 02:11:58 PM -03, Key ID 999f7cbf38ab71f4
Source RPM : libtraceevent-1.5.3-2.fc36.src.rpm
Build Date : Fri 15 Apr 2022 10:57:01 AM -03
Build Host : buildvm-x86-05.iad2.fedoraproject.org
Packager : Fedora Project
Vendor : Fedora Project
URL : https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git/
Bug URL : https://bugz.fedoraproject.org/libtraceevent
Summary : Development headers of libtraceevent
Description :
Development headers of libtraceevent-libs
$
Default build:
$ ldd ~/bin/perf | grep tracee
libtraceevent.so.1 => /lib64/libtraceevent.so.1 (0x00007f1dcaf8f000)
$
# perf trace -e sched:* --max-events 10
0.000 migration/0/17 sched:sched_migrate_task(comm: "", pid: 1603763 (perf), prio: 120, dest_cpu: 1)
0.005 migration/0/17 sched:sched_wake_idle_without_ipi(cpu: 1)
0.011 migration/0/17 sched:sched_switch(prev_comm: "", prev_pid: 17 (migration/0), prev_state: 1, next_comm: "", next_prio: 120)
1.173 :0/0 sched:sched_wakeup(comm: "", pid: 3138 (gnome-terminal-), prio: 120)
1.180 :0/0 sched:sched_switch(prev_comm: "", prev_prio: 120, next_comm: "", next_pid: 3138 (gnome-terminal-), next_prio: 120)
0.156 migration/1/21 sched:sched_migrate_task(comm: "", pid: 1603763 (perf), prio: 120, orig_cpu: 1, dest_cpu: 2)
0.160 migration/1/21 sched:sched_wake_idle_without_ipi(cpu: 2)
0.166 migration/1/21 sched:sched_switch(prev_comm: "", prev_pid: 21 (migration/1), prev_state: 1, next_comm: "", next_prio: 120)
1.183 :0/0 sched:sched_wakeup(comm: "", pid: 1602985 (kworker/u16:0-f), prio: 120, target_cpu: 1)
1.186 :0/0 sched:sched_switch(prev_comm: "", prev_prio: 120, next_comm: "", next_pid: 1602985 (kworker/u16:0-f), next_prio: 120)
#
Had to tweak tools/perf/util/setup.py to make sure the python binding
shared object links with libtraceevent if -DHAVE_LIBTRACEEVENT is
present in CFLAGS.
Building with NO_LIBTRACEEVENT=1 uncovered some more build failures:
- Make building of data-convert-bt.c to CONFIG_LIBTRACEEVENT=y
- perf-$(CONFIG_LIBTRACEEVENT) += scripts/
- bpf_kwork.o needs also to be dependent on CONFIG_LIBTRACEEVENT=y
- The python binding needed some fixups and util/trace-event.c can't be
built and linked with the python binding shared object, so remove it
in tools/perf/util/setup.py and exclude it from the list of
dependencies in the python/perf.so Makefile.perf target.
Building without libtraceevent-devel installed uncovered more build
failures:
- The python binding tools/perf/util/python.c was assuming that
traceevent/parse-events.h was always available, which was the case
when we defaulted to using the in-kernel tools/lib/traceevent/ files,
now we need to enclose it under ifdef HAVE_LIBTRACEEVENT, just like
the other parts of it that deal with tracepoints.
- We have to ifdef the rules in the Build files with
CONFIG_LIBTRACEEVENT=y to build builtin-trace.c and
tools/perf/trace/beauty/ as we only ifdef setting CONFIG_TRACE=y when
setting NO_LIBTRACEEVENT=1 in the make command line, not when we don't
detect libtraceevent-devel installed in the system. Simplification here
to avoid these two ways of disabling builtin-trace.c and not having
CONFIG_TRACE=y when libtraceevent-devel isn't installed is the clean
way.
From Athira:
<quote>
tools/perf/arch/powerpc/util/Build
-perf-y += kvm-stat.o
+perf-$(CONFIG_LIBTRACEEVENT) += kvm-stat.o
</quote>
Then, ditto for arm64 and s390, detected by container cross build tests.
- s/390 uses test__checkevent_tracepoint() that is now only available if
HAVE_LIBTRACEEVENT is defined, enclose the callsite with ifder HAVE_LIBTRACEEVENT.
Also from Athira:
<quote>
With this change, I could successfully compile in these environment:
- Without libtraceevent-devel installed
- With libtraceevent-devel installed
- With “make NO_LIBTRACEEVENT=1”
</quote>
Then, finally rename CONFIG_TRACEEVENT to CONFIG_LIBTRACEEVENT for
consistency with other libraries detected in tools/perf/.
Signed-off-by: Ian Rogers <irogers@google.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Tested-by: Athira Rajeev <atrajeev@linux.vnet.ibm.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Nick Desaulniers <ndesaulniers@google.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: bpf@vger.kernel.org
Link: http://lore.kernel.org/lkml/20221205225940.3079667-3-irogers@google.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2022-12-06 06:59:39 +08:00
|
|
|
#ifdef HAVE_LIBTRACEEVENT
|
2012-08-07 20:56:04 +08:00
|
|
|
else if (!strncmp(name, "sched:sched_stat_", 17))
|
2013-11-06 21:17:38 +08:00
|
|
|
evsel->handler = perf_inject__sched_stat;
|
perf build: Use libtraceevent from the system
Remove the LIBTRACEEVENT_DYNAMIC and LIBTRACEFS_DYNAMIC make command
line variables.
If libtraceevent isn't installed or NO_LIBTRACEEVENT=1 is passed to the
build, don't compile in libtraceevent and libtracefs support.
This also disables CONFIG_TRACE that controls "perf trace".
CONFIG_LIBTRACEEVENT is used to control enablement in Build/Makefiles,
HAVE_LIBTRACEEVENT is used in C code.
Without HAVE_LIBTRACEEVENT tracepoints are disabled and as such the
commands kmem, kwork, lock, sched and timechart are removed. The
majority of commands continue to work including "perf test".
Committer notes:
Fixed up a tools/perf/util/Build reject and added:
#include <traceevent/event-parse.h>
to tools/perf/util/scripting-engines/trace-event-perl.c.
Committer testing:
$ rpm -qi libtraceevent-devel
Name : libtraceevent-devel
Version : 1.5.3
Release : 2.fc36
Architecture: x86_64
Install Date: Mon 25 Jul 2022 03:20:19 PM -03
Group : Unspecified
Size : 27728
License : LGPLv2+ and GPLv2+
Signature : RSA/SHA256, Fri 15 Apr 2022 02:11:58 PM -03, Key ID 999f7cbf38ab71f4
Source RPM : libtraceevent-1.5.3-2.fc36.src.rpm
Build Date : Fri 15 Apr 2022 10:57:01 AM -03
Build Host : buildvm-x86-05.iad2.fedoraproject.org
Packager : Fedora Project
Vendor : Fedora Project
URL : https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git/
Bug URL : https://bugz.fedoraproject.org/libtraceevent
Summary : Development headers of libtraceevent
Description :
Development headers of libtraceevent-libs
$
Default build:
$ ldd ~/bin/perf | grep tracee
libtraceevent.so.1 => /lib64/libtraceevent.so.1 (0x00007f1dcaf8f000)
$
# perf trace -e sched:* --max-events 10
0.000 migration/0/17 sched:sched_migrate_task(comm: "", pid: 1603763 (perf), prio: 120, dest_cpu: 1)
0.005 migration/0/17 sched:sched_wake_idle_without_ipi(cpu: 1)
0.011 migration/0/17 sched:sched_switch(prev_comm: "", prev_pid: 17 (migration/0), prev_state: 1, next_comm: "", next_prio: 120)
1.173 :0/0 sched:sched_wakeup(comm: "", pid: 3138 (gnome-terminal-), prio: 120)
1.180 :0/0 sched:sched_switch(prev_comm: "", prev_prio: 120, next_comm: "", next_pid: 3138 (gnome-terminal-), next_prio: 120)
0.156 migration/1/21 sched:sched_migrate_task(comm: "", pid: 1603763 (perf), prio: 120, orig_cpu: 1, dest_cpu: 2)
0.160 migration/1/21 sched:sched_wake_idle_without_ipi(cpu: 2)
0.166 migration/1/21 sched:sched_switch(prev_comm: "", prev_pid: 21 (migration/1), prev_state: 1, next_comm: "", next_prio: 120)
1.183 :0/0 sched:sched_wakeup(comm: "", pid: 1602985 (kworker/u16:0-f), prio: 120, target_cpu: 1)
1.186 :0/0 sched:sched_switch(prev_comm: "", prev_prio: 120, next_comm: "", next_pid: 1602985 (kworker/u16:0-f), next_prio: 120)
#
Had to tweak tools/perf/util/setup.py to make sure the python binding
shared object links with libtraceevent if -DHAVE_LIBTRACEEVENT is
present in CFLAGS.
Building with NO_LIBTRACEEVENT=1 uncovered some more build failures:
- Make building of data-convert-bt.c to CONFIG_LIBTRACEEVENT=y
- perf-$(CONFIG_LIBTRACEEVENT) += scripts/
- bpf_kwork.o needs also to be dependent on CONFIG_LIBTRACEEVENT=y
- The python binding needed some fixups and util/trace-event.c can't be
built and linked with the python binding shared object, so remove it
in tools/perf/util/setup.py and exclude it from the list of
dependencies in the python/perf.so Makefile.perf target.
Building without libtraceevent-devel installed uncovered more build
failures:
- The python binding tools/perf/util/python.c was assuming that
traceevent/parse-events.h was always available, which was the case
when we defaulted to using the in-kernel tools/lib/traceevent/ files,
now we need to enclose it under ifdef HAVE_LIBTRACEEVENT, just like
the other parts of it that deal with tracepoints.
- We have to ifdef the rules in the Build files with
CONFIG_LIBTRACEEVENT=y to build builtin-trace.c and
tools/perf/trace/beauty/ as we only ifdef setting CONFIG_TRACE=y when
setting NO_LIBTRACEEVENT=1 in the make command line, not when we don't
detect libtraceevent-devel installed in the system. Simplification here
to avoid these two ways of disabling builtin-trace.c and not having
CONFIG_TRACE=y when libtraceevent-devel isn't installed is the clean
way.
From Athira:
<quote>
tools/perf/arch/powerpc/util/Build
-perf-y += kvm-stat.o
+perf-$(CONFIG_LIBTRACEEVENT) += kvm-stat.o
</quote>
Then, ditto for arm64 and s390, detected by container cross build tests.
- s/390 uses test__checkevent_tracepoint() that is now only available if
HAVE_LIBTRACEEVENT is defined, enclose the callsite with ifder HAVE_LIBTRACEEVENT.
Also from Athira:
<quote>
With this change, I could successfully compile in these environment:
- Without libtraceevent-devel installed
- With libtraceevent-devel installed
- With “make NO_LIBTRACEEVENT=1”
</quote>
Then, finally rename CONFIG_TRACEEVENT to CONFIG_LIBTRACEEVENT for
consistency with other libraries detected in tools/perf/.
Signed-off-by: Ian Rogers <irogers@google.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Tested-by: Athira Rajeev <atrajeev@linux.vnet.ibm.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Nick Desaulniers <ndesaulniers@google.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: bpf@vger.kernel.org
Link: http://lore.kernel.org/lkml/20221205225940.3079667-3-irogers@google.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2022-12-06 06:59:39 +08:00
|
|
|
#endif
|
2012-08-07 20:56:04 +08:00
|
|
|
}
|
2021-04-30 15:03:02 +08:00
|
|
|
} else if (inject->itrace_synth_opts.vm_time_correlation) {
|
|
|
|
session->itrace_synth_opts = &inject->itrace_synth_opts;
|
|
|
|
memset(&inject->tool, 0, sizeof(inject->tool));
|
|
|
|
inject->tool.id_index = perf_event__process_id_index;
|
|
|
|
inject->tool.auxtrace_info = perf_event__process_auxtrace_info;
|
|
|
|
inject->tool.auxtrace = perf_event__process_auxtrace;
|
|
|
|
inject->tool.auxtrace_error = perf_event__process_auxtrace_error;
|
|
|
|
inject->tool.ordered_events = true;
|
|
|
|
inject->tool.ordering_requires_timestamps = true;
|
2015-04-09 23:54:00 +08:00
|
|
|
} else if (inject->itrace_synth_opts.set) {
|
|
|
|
session->itrace_synth_opts = &inject->itrace_synth_opts;
|
|
|
|
inject->itrace_synth_opts.inject = true;
|
|
|
|
inject->tool.comm = perf_event__repipe_comm;
|
perf tools: Add PERF_RECORD_NAMESPACES to include namespaces related info
Introduce a new option to record PERF_RECORD_NAMESPACES events emitted
by the kernel when fork, clone, setns or unshare are invoked. And update
perf-record documentation with the new option to record namespace
events.
Committer notes:
Combined it with a later patch to allow printing it via 'perf report -D'
and be able to test the feature introduced in this patch. Had to move
here also perf_ns__name(), that was introduced in another later patch.
Also used PRIu64 and PRIx64 to fix the build in some enfironments wrt:
util/event.c:1129:39: error: format '%lx' expects argument of type 'long unsigned int', but argument 6 has type 'long long unsigned int' [-Werror=format=]
ret += fprintf(fp, "%u/%s: %lu/0x%lx%s", idx
^
Testing it:
# perf record --namespaces -a
^C[ perf record: Woken up 1 times to write data ]
[ perf record: Captured and wrote 1.083 MB perf.data (423 samples) ]
#
# perf report -D
<SNIP>
3 2028902078892 0x115140 [0xa0]: PERF_RECORD_NAMESPACES 14783/14783 - nr_namespaces: 7
[0/net: 3/0xf0000081, 1/uts: 3/0xeffffffe, 2/ipc: 3/0xefffffff, 3/pid: 3/0xeffffffc,
4/user: 3/0xeffffffd, 5/mnt: 3/0xf0000000, 6/cgroup: 3/0xeffffffb]
0x1151e0 [0x30]: event: 9
.
. ... raw event: size 48 bytes
. 0000: 09 00 00 00 02 00 30 00 c4 71 82 68 0c 7f 00 00 ......0..q.h....
. 0010: a9 39 00 00 a9 39 00 00 94 28 fe 63 d8 01 00 00 .9...9...(.c....
. 0020: 03 00 00 00 00 00 00 00 ce c4 02 00 00 00 00 00 ................
<SNIP>
NAMESPACES events: 1
<SNIP>
#
Signed-off-by: Hari Bathini <hbathini@linux.vnet.ibm.com>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Alexei Starovoitov <ast@fb.com>
Cc: Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
Cc: Aravinda Prasad <aravinda@linux.vnet.ibm.com>
Cc: Brendan Gregg <brendan.d.gregg@gmail.com>
Cc: Daniel Borkmann <daniel@iogearbox.net>
Cc: Eric Biederman <ebiederm@xmission.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Sargun Dhillon <sargun@sargun.me>
Cc: Steven Rostedt <rostedt@goodmis.org>
Link: http://lkml.kernel.org/r/148891930386.25309.18412039920746995488.stgit@hbathini.in.ibm.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2017-03-08 04:41:43 +08:00
|
|
|
inject->tool.namespaces = perf_event__repipe_namespaces;
|
2015-04-09 23:54:00 +08:00
|
|
|
inject->tool.exit = perf_event__repipe_exit;
|
2019-12-04 20:08:00 +08:00
|
|
|
inject->tool.id_index = perf_event__process_id_index;
|
2015-04-09 23:54:00 +08:00
|
|
|
inject->tool.auxtrace_info = perf_event__process_auxtrace_info;
|
|
|
|
inject->tool.auxtrace = perf_event__process_auxtrace;
|
2015-09-25 21:15:54 +08:00
|
|
|
inject->tool.aux = perf_event__drop_aux;
|
2021-09-08 00:39:02 +08:00
|
|
|
inject->tool.itrace_start = perf_event__drop_aux;
|
|
|
|
inject->tool.aux_output_hw_id = perf_event__drop_aux;
|
2015-04-09 23:54:00 +08:00
|
|
|
inject->tool.ordered_events = true;
|
|
|
|
inject->tool.ordering_requires_timestamps = true;
|
|
|
|
/* Allow space in the header for new attributes */
|
2021-11-25 15:14:57 +08:00
|
|
|
output_data_offset = roundup(8192 + session->header.data_offset, 4096);
|
2015-09-25 21:15:55 +08:00
|
|
|
if (inject->strip)
|
|
|
|
strip_init(inject);
|
2022-07-11 17:32:07 +08:00
|
|
|
} else if (gs->perf_data_file) {
|
|
|
|
char *name = gs->perf_data_file;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Not strictly necessary, but keep these events in order wrt
|
|
|
|
* guest events.
|
|
|
|
*/
|
|
|
|
inject->tool.mmap = host__repipe;
|
|
|
|
inject->tool.mmap2 = host__repipe;
|
|
|
|
inject->tool.comm = host__repipe;
|
|
|
|
inject->tool.fork = host__repipe;
|
|
|
|
inject->tool.exit = host__repipe;
|
|
|
|
inject->tool.lost = host__repipe;
|
|
|
|
inject->tool.context_switch = host__repipe;
|
|
|
|
inject->tool.ksymbol = host__repipe;
|
|
|
|
inject->tool.text_poke = host__repipe;
|
|
|
|
/*
|
|
|
|
* Once the host session has initialized, set up sample ID
|
|
|
|
* mapping and feed in guest attrs, build IDs and initial
|
|
|
|
* events.
|
|
|
|
*/
|
|
|
|
inject->tool.finished_init = host__finished_init;
|
|
|
|
/* Obey finished round ordering */
|
2024-07-16 15:53:47 +08:00
|
|
|
inject->tool.finished_round = host__finished_round;
|
2022-07-11 17:32:07 +08:00
|
|
|
/* Keep track of which CPU a VCPU is runnng on */
|
|
|
|
inject->tool.context_switch = host__context_switch;
|
|
|
|
/*
|
|
|
|
* Must order events to be able to obey finished round
|
|
|
|
* ordering.
|
|
|
|
*/
|
|
|
|
inject->tool.ordered_events = true;
|
|
|
|
inject->tool.ordering_requires_timestamps = true;
|
|
|
|
/* Set up a separate session to process guest perf.data file */
|
|
|
|
ret = guest_session__start(gs, name, session->data->force);
|
|
|
|
if (ret) {
|
|
|
|
pr_err("Failed to process %s, error %d\n", name, ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
/* Allow space in the header for guest attributes */
|
|
|
|
output_data_offset += gs->session->header.data_offset;
|
|
|
|
output_data_offset = roundup(output_data_offset, 4096);
|
2012-08-07 20:56:04 +08:00
|
|
|
}
|
|
|
|
|
2015-04-30 22:37:25 +08:00
|
|
|
if (!inject->itrace_synth_opts.set)
|
|
|
|
auxtrace_index__free(&session->auxtrace_index);
|
|
|
|
|
2024-08-29 23:01:52 +08:00
|
|
|
if (!inject->output.is_pipe && !inject->in_place_update)
|
2015-04-09 23:54:00 +08:00
|
|
|
lseek(fd, output_data_offset, SEEK_SET);
|
2012-08-07 20:56:02 +08:00
|
|
|
|
2015-03-03 22:58:45 +08:00
|
|
|
ret = perf_session__process_events(session);
|
2017-04-11 04:14:26 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2010-05-01 14:41:20 +08:00
|
|
|
|
2022-07-11 17:32:07 +08:00
|
|
|
if (gs->session) {
|
|
|
|
/*
|
|
|
|
* Remaining guest events have later timestamps. Flush them
|
|
|
|
* out to file.
|
|
|
|
*/
|
|
|
|
ret = guest_session__flush_events(gs);
|
|
|
|
if (ret) {
|
|
|
|
pr_err("Failed to flush guest events\n");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-29 23:01:52 +08:00
|
|
|
if (!inject->output.is_pipe && !inject->in_place_update) {
|
2022-05-20 21:24:02 +08:00
|
|
|
struct inject_fc inj_fc = {
|
|
|
|
.fc.copy = feat_copy_cb,
|
|
|
|
.inject = inject,
|
|
|
|
};
|
|
|
|
|
2024-08-17 14:44:36 +08:00
|
|
|
if (inject->build_id_style == BID_RWS__INJECT_HEADER_LAZY ||
|
|
|
|
inject->build_id_style == BID_RWS__INJECT_HEADER_ALL)
|
|
|
|
perf_header__set_feat(&session->header, HEADER_BUILD_ID);
|
2016-03-08 03:44:38 +08:00
|
|
|
/*
|
|
|
|
* Keep all buildids when there is unprocessed AUX data because
|
|
|
|
* it is not known which ones the AUX trace hits.
|
|
|
|
*/
|
|
|
|
if (perf_header__has_feat(&session->header, HEADER_BUILD_ID) &&
|
|
|
|
inject->have_auxtrace && !inject->itrace_synth_opts.set)
|
2024-04-10 14:42:03 +08:00
|
|
|
perf_session__dsos_hit_all(session);
|
2015-04-09 23:54:00 +08:00
|
|
|
/*
|
|
|
|
* The AUX areas have been removed and replaced with
|
perf inject: Fix file corruption due to event deletion
"perf inject" can create corrupt files when synthesizing sample events from AUX
data. This happens when in the input file, the first event (for the AUX data)
has a different sample_type from the second event (generally dummy).
Specifically, they differ in the bits that indicate the standard fields
appended to perf records in the mmap buffer. "perf inject" deletes the first
event and moves up the second event to first position.
The problem is with the synthetic PERF_RECORD_MMAP (etc.) events created
by "perf record".
Since these are synthetic versions of events which are normally produced
by the kernel, they have to have the standard fields appended as
described by sample_type.
"perf record" fills these in with zeroes, including the IDENTIFIER
field; perf readers interpret records with zero IDENTIFIER using the
descriptor for the first event in the file.
Since "perf inject" changes the first event, these synthetic records are
then processed with the wrong value of sample_type, and the perf reader
reads bad data, reports on incorrect length records etc.
Mismatching sample_types are seen with "perf record -e cs_etm//", where the AUX
event has TID|TIME|CPU|IDENTIFIER and the dummy event has TID|TIME|IDENTIFIER.
Perhaps they could be the same, but it isn't normally a problem if they aren't
- perf has no problems reading the file.
The sample_types have to agree on the position of IDENTIFIER, because
that's how perf finds the right event descriptor in the first place, but
they don't normally have to agree on other fields, and perf doesn't
check that they do.
The problem is specific to the way "perf inject" reorganizes the events
and the way synthetic MMAP events are recorded with a zero identifier. A
simple solution is to stop "perf inject" deleting the tracing event.
Committer testing
Removed the now unused 'evsel' variable, update the comment about the
evsel removal not being performed anymore, and apply the patch manually
as it failed with this warning:
warning: Patch sent with format=flowed; space at the end of lines might be lost.
Testing it with:
$ perf bench internals inject-build-id
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 8.543 msec (+- 0.130 msec)
Average time per event: 0.838 usec (+- 0.013 usec)
Average memory usage: 12717 KB (+- 9 KB)
Average build-id-all injection took: 5.710 msec (+- 0.058 msec)
Average time per event: 0.560 usec (+- 0.006 usec)
Average memory usage: 12079 KB (+- 7 KB)
$
Signed-off-by: Al Grant <al.grant@arm.com>
Acked-by: Adrian Hunter <adrian.hunter@intel.com>
Acked-by: Namhyung Kim <namhyung@kernel.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Peter Zijlstra <peterz@infradead.org>
LPU-Reference: b9cf5611-daae-2390-3439-6617f8f0a34b@foss.arm.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2020-11-14 04:38:26 +08:00
|
|
|
* synthesized hardware events, so clear the feature flag.
|
2015-04-09 23:54:00 +08:00
|
|
|
*/
|
2015-09-25 21:15:43 +08:00
|
|
|
if (inject->itrace_synth_opts.set) {
|
2015-04-09 23:54:00 +08:00
|
|
|
perf_header__clear_feat(&session->header,
|
|
|
|
HEADER_AUXTRACE);
|
2020-04-29 23:07:46 +08:00
|
|
|
if (inject->itrace_synth_opts.last_branch ||
|
|
|
|
inject->itrace_synth_opts.add_last_branch)
|
2015-09-25 21:15:43 +08:00
|
|
|
perf_header__set_feat(&session->header,
|
|
|
|
HEADER_BRANCH_STACK);
|
|
|
|
}
|
2015-04-09 23:54:00 +08:00
|
|
|
session->header.data_offset = output_data_offset;
|
2012-08-07 20:56:02 +08:00
|
|
|
session->header.data_size = inject->bytes_written;
|
2024-08-29 23:01:52 +08:00
|
|
|
perf_session__inject_header(session, session->evlist, fd, &inj_fc.fc,
|
|
|
|
write_attrs_after_data);
|
2022-05-20 21:24:04 +08:00
|
|
|
|
|
|
|
if (inject->copy_kcore_dir) {
|
|
|
|
ret = copy_kcore_dir(inject);
|
2022-07-11 17:32:07 +08:00
|
|
|
if (ret) {
|
|
|
|
pr_err("Failed to copy kcore\n");
|
2022-05-20 21:24:04 +08:00
|
|
|
return ret;
|
2022-07-11 17:32:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (gs->copy_kcore_dir) {
|
|
|
|
ret = guest_session__copy_kcore_dir(gs);
|
|
|
|
if (ret) {
|
|
|
|
pr_err("Failed to copy guest kcore\n");
|
|
|
|
return ret;
|
|
|
|
}
|
2022-05-20 21:24:04 +08:00
|
|
|
}
|
2012-08-07 20:56:02 +08:00
|
|
|
}
|
|
|
|
|
2010-05-01 14:41:20 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-03-27 22:47:20 +08:00
|
|
|
int cmd_inject(int argc, const char **argv)
|
2010-05-01 14:41:20 +08:00
|
|
|
{
|
2012-10-01 06:54:10 +08:00
|
|
|
struct perf_inject inject = {
|
2012-08-07 20:56:02 +08:00
|
|
|
.input_name = "-",
|
2012-08-07 20:56:04 +08:00
|
|
|
.samples = LIST_HEAD_INIT(inject.samples),
|
2013-10-30 02:04:57 +08:00
|
|
|
.output = {
|
2019-02-21 17:41:30 +08:00
|
|
|
.path = "-",
|
|
|
|
.mode = PERF_DATA_MODE_WRITE,
|
perf data: Allow to use stdio functions for pipe mode
When perf data is in a pipe, it reads each event separately using
read(2) syscall. This is a huge performance bottleneck when
processing large data like in perf inject. Also perf inject needs to
use write(2) syscall for the output.
So convert it to use buffer I/O functions in stdio library for pipe
data. This makes inject-build-id bench time drops from 20ms to 8ms.
$ perf bench internals inject-build-id
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 8.074 msec (+- 0.013 msec)
Average time per event: 0.792 usec (+- 0.001 usec)
Average memory usage: 8328 KB (+- 0 KB)
Average build-id-all injection took: 5.490 msec (+- 0.008 msec)
Average time per event: 0.538 usec (+- 0.001 usec)
Average memory usage: 7563 KB (+- 0 KB)
This patch enables it just for perf inject when used with pipe (it's a
default behavior). Maybe we could do it for perf record and/or report
later..
Committer testing:
Before:
$ perf stat -r 5 perf bench internals inject-build-id
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 13.605 msec (+- 0.064 msec)
Average time per event: 1.334 usec (+- 0.006 usec)
Average memory usage: 12220 KB (+- 7 KB)
Average build-id-all injection took: 11.458 msec (+- 0.058 msec)
Average time per event: 1.123 usec (+- 0.006 usec)
Average memory usage: 11546 KB (+- 8 KB)
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 13.673 msec (+- 0.057 msec)
Average time per event: 1.341 usec (+- 0.006 usec)
Average memory usage: 12508 KB (+- 8 KB)
Average build-id-all injection took: 11.437 msec (+- 0.046 msec)
Average time per event: 1.121 usec (+- 0.004 usec)
Average memory usage: 11812 KB (+- 7 KB)
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 13.641 msec (+- 0.069 msec)
Average time per event: 1.337 usec (+- 0.007 usec)
Average memory usage: 12302 KB (+- 8 KB)
Average build-id-all injection took: 10.820 msec (+- 0.106 msec)
Average time per event: 1.061 usec (+- 0.010 usec)
Average memory usage: 11616 KB (+- 7 KB)
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 13.379 msec (+- 0.074 msec)
Average time per event: 1.312 usec (+- 0.007 usec)
Average memory usage: 12334 KB (+- 8 KB)
Average build-id-all injection took: 11.288 msec (+- 0.071 msec)
Average time per event: 1.107 usec (+- 0.007 usec)
Average memory usage: 11657 KB (+- 8 KB)
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 13.534 msec (+- 0.058 msec)
Average time per event: 1.327 usec (+- 0.006 usec)
Average memory usage: 12264 KB (+- 8 KB)
Average build-id-all injection took: 11.557 msec (+- 0.076 msec)
Average time per event: 1.133 usec (+- 0.007 usec)
Average memory usage: 11593 KB (+- 8 KB)
Performance counter stats for 'perf bench internals inject-build-id' (5 runs):
4,060.05 msec task-clock:u # 1.566 CPUs utilized ( +- 0.65% )
0 context-switches:u # 0.000 K/sec
0 cpu-migrations:u # 0.000 K/sec
101,888 page-faults:u # 0.025 M/sec ( +- 0.12% )
3,745,833,163 cycles:u # 0.923 GHz ( +- 0.10% ) (83.22%)
194,346,613 stalled-cycles-frontend:u # 5.19% frontend cycles idle ( +- 0.57% ) (83.30%)
708,495,034 stalled-cycles-backend:u # 18.91% backend cycles idle ( +- 0.48% ) (83.48%)
5,629,328,628 instructions:u # 1.50 insn per cycle
# 0.13 stalled cycles per insn ( +- 0.21% ) (83.57%)
1,236,697,927 branches:u # 304.602 M/sec ( +- 0.16% ) (83.44%)
17,564,877 branch-misses:u # 1.42% of all branches ( +- 0.23% ) (82.99%)
2.5934 +- 0.0128 seconds time elapsed ( +- 0.49% )
$
After:
$ perf stat -r 5 perf bench internals inject-build-id
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 8.560 msec (+- 0.125 msec)
Average time per event: 0.839 usec (+- 0.012 usec)
Average memory usage: 12520 KB (+- 8 KB)
Average build-id-all injection took: 5.789 msec (+- 0.054 msec)
Average time per event: 0.568 usec (+- 0.005 usec)
Average memory usage: 11919 KB (+- 9 KB)
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 8.639 msec (+- 0.111 msec)
Average time per event: 0.847 usec (+- 0.011 usec)
Average memory usage: 12732 KB (+- 8 KB)
Average build-id-all injection took: 5.647 msec (+- 0.069 msec)
Average time per event: 0.554 usec (+- 0.007 usec)
Average memory usage: 12093 KB (+- 7 KB)
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 8.551 msec (+- 0.096 msec)
Average time per event: 0.838 usec (+- 0.009 usec)
Average memory usage: 12739 KB (+- 8 KB)
Average build-id-all injection took: 5.617 msec (+- 0.061 msec)
Average time per event: 0.551 usec (+- 0.006 usec)
Average memory usage: 12105 KB (+- 7 KB)
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 8.403 msec (+- 0.097 msec)
Average time per event: 0.824 usec (+- 0.010 usec)
Average memory usage: 12770 KB (+- 8 KB)
Average build-id-all injection took: 5.611 msec (+- 0.085 msec)
Average time per event: 0.550 usec (+- 0.008 usec)
Average memory usage: 12134 KB (+- 8 KB)
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 8.518 msec (+- 0.102 msec)
Average time per event: 0.835 usec (+- 0.010 usec)
Average memory usage: 12518 KB (+- 10 KB)
Average build-id-all injection took: 5.503 msec (+- 0.073 msec)
Average time per event: 0.540 usec (+- 0.007 usec)
Average memory usage: 11882 KB (+- 8 KB)
Performance counter stats for 'perf bench internals inject-build-id' (5 runs):
2,394.88 msec task-clock:u # 1.577 CPUs utilized ( +- 0.83% )
0 context-switches:u # 0.000 K/sec
0 cpu-migrations:u # 0.000 K/sec
103,181 page-faults:u # 0.043 M/sec ( +- 0.11% )
3,548,172,030 cycles:u # 1.482 GHz ( +- 0.30% ) (83.26%)
81,537,700 stalled-cycles-frontend:u # 2.30% frontend cycles idle ( +- 1.54% ) (83.24%)
876,631,544 stalled-cycles-backend:u # 24.71% backend cycles idle ( +- 1.14% ) (83.45%)
5,960,361,707 instructions:u # 1.68 insn per cycle
# 0.15 stalled cycles per insn ( +- 0.27% ) (83.26%)
1,269,413,491 branches:u # 530.054 M/sec ( +- 0.10% ) (83.48%)
11,372,453 branch-misses:u # 0.90% of all branches ( +- 0.52% ) (83.31%)
1.51874 +- 0.00642 seconds time elapsed ( +- 0.42% )
$
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Acked-by: Jiri Olsa <jolsa@redhat.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Ian Rogers <irogers@google.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lore.kernel.org/lkml/20201030054742.87740-1-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2020-10-30 13:47:42 +08:00
|
|
|
.use_stdio = true,
|
2013-10-30 02:04:57 +08:00
|
|
|
},
|
2012-10-01 06:54:10 +08:00
|
|
|
};
|
2017-01-24 05:07:59 +08:00
|
|
|
struct perf_data data = {
|
2014-08-12 14:40:37 +08:00
|
|
|
.mode = PERF_DATA_MODE_READ,
|
perf data: Allow to use stdio functions for pipe mode
When perf data is in a pipe, it reads each event separately using
read(2) syscall. This is a huge performance bottleneck when
processing large data like in perf inject. Also perf inject needs to
use write(2) syscall for the output.
So convert it to use buffer I/O functions in stdio library for pipe
data. This makes inject-build-id bench time drops from 20ms to 8ms.
$ perf bench internals inject-build-id
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 8.074 msec (+- 0.013 msec)
Average time per event: 0.792 usec (+- 0.001 usec)
Average memory usage: 8328 KB (+- 0 KB)
Average build-id-all injection took: 5.490 msec (+- 0.008 msec)
Average time per event: 0.538 usec (+- 0.001 usec)
Average memory usage: 7563 KB (+- 0 KB)
This patch enables it just for perf inject when used with pipe (it's a
default behavior). Maybe we could do it for perf record and/or report
later..
Committer testing:
Before:
$ perf stat -r 5 perf bench internals inject-build-id
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 13.605 msec (+- 0.064 msec)
Average time per event: 1.334 usec (+- 0.006 usec)
Average memory usage: 12220 KB (+- 7 KB)
Average build-id-all injection took: 11.458 msec (+- 0.058 msec)
Average time per event: 1.123 usec (+- 0.006 usec)
Average memory usage: 11546 KB (+- 8 KB)
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 13.673 msec (+- 0.057 msec)
Average time per event: 1.341 usec (+- 0.006 usec)
Average memory usage: 12508 KB (+- 8 KB)
Average build-id-all injection took: 11.437 msec (+- 0.046 msec)
Average time per event: 1.121 usec (+- 0.004 usec)
Average memory usage: 11812 KB (+- 7 KB)
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 13.641 msec (+- 0.069 msec)
Average time per event: 1.337 usec (+- 0.007 usec)
Average memory usage: 12302 KB (+- 8 KB)
Average build-id-all injection took: 10.820 msec (+- 0.106 msec)
Average time per event: 1.061 usec (+- 0.010 usec)
Average memory usage: 11616 KB (+- 7 KB)
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 13.379 msec (+- 0.074 msec)
Average time per event: 1.312 usec (+- 0.007 usec)
Average memory usage: 12334 KB (+- 8 KB)
Average build-id-all injection took: 11.288 msec (+- 0.071 msec)
Average time per event: 1.107 usec (+- 0.007 usec)
Average memory usage: 11657 KB (+- 8 KB)
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 13.534 msec (+- 0.058 msec)
Average time per event: 1.327 usec (+- 0.006 usec)
Average memory usage: 12264 KB (+- 8 KB)
Average build-id-all injection took: 11.557 msec (+- 0.076 msec)
Average time per event: 1.133 usec (+- 0.007 usec)
Average memory usage: 11593 KB (+- 8 KB)
Performance counter stats for 'perf bench internals inject-build-id' (5 runs):
4,060.05 msec task-clock:u # 1.566 CPUs utilized ( +- 0.65% )
0 context-switches:u # 0.000 K/sec
0 cpu-migrations:u # 0.000 K/sec
101,888 page-faults:u # 0.025 M/sec ( +- 0.12% )
3,745,833,163 cycles:u # 0.923 GHz ( +- 0.10% ) (83.22%)
194,346,613 stalled-cycles-frontend:u # 5.19% frontend cycles idle ( +- 0.57% ) (83.30%)
708,495,034 stalled-cycles-backend:u # 18.91% backend cycles idle ( +- 0.48% ) (83.48%)
5,629,328,628 instructions:u # 1.50 insn per cycle
# 0.13 stalled cycles per insn ( +- 0.21% ) (83.57%)
1,236,697,927 branches:u # 304.602 M/sec ( +- 0.16% ) (83.44%)
17,564,877 branch-misses:u # 1.42% of all branches ( +- 0.23% ) (82.99%)
2.5934 +- 0.0128 seconds time elapsed ( +- 0.49% )
$
After:
$ perf stat -r 5 perf bench internals inject-build-id
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 8.560 msec (+- 0.125 msec)
Average time per event: 0.839 usec (+- 0.012 usec)
Average memory usage: 12520 KB (+- 8 KB)
Average build-id-all injection took: 5.789 msec (+- 0.054 msec)
Average time per event: 0.568 usec (+- 0.005 usec)
Average memory usage: 11919 KB (+- 9 KB)
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 8.639 msec (+- 0.111 msec)
Average time per event: 0.847 usec (+- 0.011 usec)
Average memory usage: 12732 KB (+- 8 KB)
Average build-id-all injection took: 5.647 msec (+- 0.069 msec)
Average time per event: 0.554 usec (+- 0.007 usec)
Average memory usage: 12093 KB (+- 7 KB)
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 8.551 msec (+- 0.096 msec)
Average time per event: 0.838 usec (+- 0.009 usec)
Average memory usage: 12739 KB (+- 8 KB)
Average build-id-all injection took: 5.617 msec (+- 0.061 msec)
Average time per event: 0.551 usec (+- 0.006 usec)
Average memory usage: 12105 KB (+- 7 KB)
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 8.403 msec (+- 0.097 msec)
Average time per event: 0.824 usec (+- 0.010 usec)
Average memory usage: 12770 KB (+- 8 KB)
Average build-id-all injection took: 5.611 msec (+- 0.085 msec)
Average time per event: 0.550 usec (+- 0.008 usec)
Average memory usage: 12134 KB (+- 8 KB)
# Running 'internals/inject-build-id' benchmark:
Average build-id injection took: 8.518 msec (+- 0.102 msec)
Average time per event: 0.835 usec (+- 0.010 usec)
Average memory usage: 12518 KB (+- 10 KB)
Average build-id-all injection took: 5.503 msec (+- 0.073 msec)
Average time per event: 0.540 usec (+- 0.007 usec)
Average memory usage: 11882 KB (+- 8 KB)
Performance counter stats for 'perf bench internals inject-build-id' (5 runs):
2,394.88 msec task-clock:u # 1.577 CPUs utilized ( +- 0.83% )
0 context-switches:u # 0.000 K/sec
0 cpu-migrations:u # 0.000 K/sec
103,181 page-faults:u # 0.043 M/sec ( +- 0.11% )
3,548,172,030 cycles:u # 1.482 GHz ( +- 0.30% ) (83.26%)
81,537,700 stalled-cycles-frontend:u # 2.30% frontend cycles idle ( +- 1.54% ) (83.24%)
876,631,544 stalled-cycles-backend:u # 24.71% backend cycles idle ( +- 1.14% ) (83.45%)
5,960,361,707 instructions:u # 1.68 insn per cycle
# 0.15 stalled cycles per insn ( +- 0.27% ) (83.26%)
1,269,413,491 branches:u # 530.054 M/sec ( +- 0.10% ) (83.48%)
11,372,453 branch-misses:u # 0.90% of all branches ( +- 0.52% ) (83.31%)
1.51874 +- 0.00642 seconds time elapsed ( +- 0.42% )
$
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Acked-by: Jiri Olsa <jolsa@redhat.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Ian Rogers <irogers@google.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lore.kernel.org/lkml/20201030054742.87740-1-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2020-10-30 13:47:42 +08:00
|
|
|
.use_stdio = true,
|
2014-08-12 14:40:37 +08:00
|
|
|
};
|
|
|
|
int ret;
|
2022-08-16 06:59:22 +08:00
|
|
|
const char *known_build_ids = NULL;
|
2024-08-17 14:44:36 +08:00
|
|
|
bool build_ids;
|
|
|
|
bool build_id_all;
|
2024-09-10 04:37:39 +08:00
|
|
|
bool mmap2_build_ids;
|
2024-09-10 04:37:38 +08:00
|
|
|
bool mmap2_build_id_all;
|
2014-08-12 14:40:37 +08:00
|
|
|
|
2015-11-30 17:02:21 +08:00
|
|
|
struct option options[] = {
|
2024-08-17 14:44:36 +08:00
|
|
|
OPT_BOOLEAN('b', "build-ids", &build_ids,
|
2012-10-01 06:54:10 +08:00
|
|
|
"Inject build-ids into the output stream"),
|
2024-08-17 14:44:36 +08:00
|
|
|
OPT_BOOLEAN(0, "buildid-all", &build_id_all,
|
2020-10-12 15:02:13 +08:00
|
|
|
"Inject build-ids of all DSOs into the output stream"),
|
2024-09-10 04:37:39 +08:00
|
|
|
OPT_BOOLEAN('B', "mmap2-buildids", &mmap2_build_ids,
|
|
|
|
"Drop unused mmap events, make others mmap2 with build IDs"),
|
2024-09-10 04:37:38 +08:00
|
|
|
OPT_BOOLEAN(0, "mmap2-buildid-all", &mmap2_build_id_all,
|
|
|
|
"Rewrite all mmap events as mmap2 events with build IDs"),
|
2022-08-16 06:59:22 +08:00
|
|
|
OPT_STRING(0, "known-build-ids", &known_build_ids,
|
|
|
|
"buildid path [,buildid path...]",
|
|
|
|
"build-ids to use for given paths"),
|
2012-08-07 20:56:02 +08:00
|
|
|
OPT_STRING('i', "input", &inject.input_name, "file",
|
|
|
|
"input file name"),
|
2019-02-21 17:41:30 +08:00
|
|
|
OPT_STRING('o', "output", &inject.output.path, "file",
|
2012-08-07 20:56:02 +08:00
|
|
|
"output file name"),
|
2012-08-07 20:56:04 +08:00
|
|
|
OPT_BOOLEAN('s', "sched-stat", &inject.sched_stat,
|
|
|
|
"Merge sched-stat and sched-switch for getting events "
|
|
|
|
"where and how long tasks slept"),
|
2016-03-11 00:41:13 +08:00
|
|
|
#ifdef HAVE_JITDUMP
|
2015-11-30 17:02:21 +08:00
|
|
|
OPT_BOOLEAN('j', "jit", &inject.jit_mode, "merge jitdump files into perf.data file"),
|
2016-03-11 00:41:13 +08:00
|
|
|
#endif
|
2012-10-01 06:54:10 +08:00
|
|
|
OPT_INCR('v', "verbose", &verbose,
|
|
|
|
"be more verbose (show build ids, etc)"),
|
2021-10-18 21:48:43 +08:00
|
|
|
OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
|
|
|
|
"file", "vmlinux pathname"),
|
|
|
|
OPT_BOOLEAN(0, "ignore-vmlinux", &symbol_conf.ignore_vmlinux,
|
|
|
|
"don't load vmlinux even if found"),
|
2014-07-22 21:17:38 +08:00
|
|
|
OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, "file",
|
|
|
|
"kallsyms pathname"),
|
2017-01-24 05:07:59 +08:00
|
|
|
OPT_BOOLEAN('f', "force", &data.force, "don't complain, do it"),
|
2015-04-09 23:54:00 +08:00
|
|
|
OPT_CALLBACK_OPTARG(0, "itrace", &inject.itrace_synth_opts,
|
2018-09-14 11:10:31 +08:00
|
|
|
NULL, "opts", "Instruction Tracing options\n"
|
|
|
|
ITRACE_HELP,
|
2015-04-09 23:54:00 +08:00
|
|
|
itrace_parse_synth_opts),
|
2015-09-25 21:15:55 +08:00
|
|
|
OPT_BOOLEAN(0, "strip", &inject.strip,
|
|
|
|
"strip non-synthesized events (use with --itrace)"),
|
2021-04-30 15:03:02 +08:00
|
|
|
OPT_CALLBACK_OPTARG(0, "vm-time-correlation", &inject, NULL, "opts",
|
|
|
|
"correlate time between VM guests and the host",
|
|
|
|
parse_vm_time_correlation),
|
2022-07-11 17:32:07 +08:00
|
|
|
OPT_CALLBACK_OPTARG(0, "guest-data", &inject, NULL, "opts",
|
|
|
|
"inject events from a guest perf.data file",
|
|
|
|
parse_guest_data),
|
|
|
|
OPT_STRING(0, "guestmount", &symbol_conf.guestmount, "directory",
|
|
|
|
"guest mount directory under which every guest os"
|
|
|
|
" instance has a subdir"),
|
2012-10-01 06:54:10 +08:00
|
|
|
OPT_END()
|
|
|
|
};
|
2012-10-02 02:20:58 +08:00
|
|
|
const char * const inject_usage[] = {
|
|
|
|
"perf inject [<options>]",
|
|
|
|
NULL
|
|
|
|
};
|
2024-08-13 04:47:06 +08:00
|
|
|
bool ordered_events;
|
2023-11-03 01:56:44 +08:00
|
|
|
|
|
|
|
if (!inject.itrace_synth_opts.set) {
|
|
|
|
/* Disable eager loading of kernel symbols that adds overhead to perf inject. */
|
|
|
|
symbol_conf.lazy_load_kernel_maps = true;
|
|
|
|
}
|
|
|
|
|
2016-03-11 00:41:13 +08:00
|
|
|
#ifndef HAVE_JITDUMP
|
2015-11-30 17:02:21 +08:00
|
|
|
set_option_nobuild(options, 'j', "jit", "NO_LIBELF=1", true);
|
|
|
|
#endif
|
2012-10-02 02:20:58 +08:00
|
|
|
argc = parse_options(argc, argv, options, inject_usage, 0);
|
2010-05-01 14:41:20 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Any (unrecognized) arguments left?
|
|
|
|
*/
|
|
|
|
if (argc)
|
2012-10-02 02:20:58 +08:00
|
|
|
usage_with_options(inject_usage, options);
|
2010-05-01 14:41:20 +08:00
|
|
|
|
2015-09-25 21:15:55 +08:00
|
|
|
if (inject.strip && !inject.itrace_synth_opts.set) {
|
|
|
|
pr_err("--strip option requires --itrace option\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2021-10-18 21:48:43 +08:00
|
|
|
if (symbol__validate_sym_arguments())
|
|
|
|
return -1;
|
|
|
|
|
2021-04-30 15:03:01 +08:00
|
|
|
if (inject.in_place_update) {
|
|
|
|
if (!strcmp(inject.input_name, "-")) {
|
|
|
|
pr_err("Input file name required for in-place updating\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (strcmp(inject.output.path, "-")) {
|
|
|
|
pr_err("Output file name must not be specified for in-place updating\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (!data.force && !inject.in_place_update_dry_run) {
|
|
|
|
pr_err("The input file would be updated in place, "
|
|
|
|
"the --force option is required.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (!inject.in_place_update_dry_run)
|
|
|
|
data.in_place_update = true;
|
2022-05-20 21:24:04 +08:00
|
|
|
} else {
|
|
|
|
if (strcmp(inject.output.path, "-") && !inject.strip &&
|
|
|
|
has_kcore_dir(inject.input_name)) {
|
|
|
|
inject.output.is_dir = true;
|
|
|
|
inject.copy_kcore_dir = true;
|
|
|
|
}
|
|
|
|
if (perf_data__open(&inject.output)) {
|
|
|
|
perror("failed to create output file");
|
|
|
|
return -1;
|
|
|
|
}
|
2012-08-07 20:56:02 +08:00
|
|
|
}
|
2024-09-10 04:37:39 +08:00
|
|
|
if (mmap2_build_ids)
|
|
|
|
inject.build_id_style = BID_RWS__MMAP2_BUILDID_LAZY;
|
2024-09-10 04:37:38 +08:00
|
|
|
if (mmap2_build_id_all)
|
|
|
|
inject.build_id_style = BID_RWS__MMAP2_BUILDID_ALL;
|
2024-08-17 14:44:36 +08:00
|
|
|
if (build_ids)
|
|
|
|
inject.build_id_style = BID_RWS__INJECT_HEADER_LAZY;
|
|
|
|
if (build_id_all)
|
|
|
|
inject.build_id_style = BID_RWS__INJECT_HEADER_ALL;
|
2012-08-07 20:56:02 +08:00
|
|
|
|
2019-02-21 17:41:30 +08:00
|
|
|
data.path = inject.input_name;
|
2024-08-29 23:01:52 +08:00
|
|
|
|
2024-08-13 04:47:06 +08:00
|
|
|
ordered_events = inject.jit_mode || inject.sched_stat ||
|
2024-09-10 04:37:39 +08:00
|
|
|
inject.build_id_style == BID_RWS__INJECT_HEADER_LAZY ||
|
|
|
|
inject.build_id_style == BID_RWS__MMAP2_BUILDID_LAZY;
|
2024-08-13 04:47:06 +08:00
|
|
|
perf_tool__init(&inject.tool, ordered_events);
|
|
|
|
inject.tool.sample = perf_event__repipe_sample;
|
|
|
|
inject.tool.read = perf_event__repipe_sample;
|
|
|
|
inject.tool.mmap = perf_event__repipe;
|
|
|
|
inject.tool.mmap2 = perf_event__repipe;
|
|
|
|
inject.tool.comm = perf_event__repipe;
|
|
|
|
inject.tool.namespaces = perf_event__repipe;
|
|
|
|
inject.tool.cgroup = perf_event__repipe;
|
|
|
|
inject.tool.fork = perf_event__repipe;
|
|
|
|
inject.tool.exit = perf_event__repipe;
|
|
|
|
inject.tool.lost = perf_event__repipe;
|
|
|
|
inject.tool.lost_samples = perf_event__repipe;
|
|
|
|
inject.tool.aux = perf_event__repipe;
|
|
|
|
inject.tool.itrace_start = perf_event__repipe;
|
|
|
|
inject.tool.aux_output_hw_id = perf_event__repipe;
|
|
|
|
inject.tool.context_switch = perf_event__repipe;
|
|
|
|
inject.tool.throttle = perf_event__repipe;
|
|
|
|
inject.tool.unthrottle = perf_event__repipe;
|
|
|
|
inject.tool.ksymbol = perf_event__repipe;
|
|
|
|
inject.tool.bpf = perf_event__repipe;
|
|
|
|
inject.tool.text_poke = perf_event__repipe;
|
|
|
|
inject.tool.attr = perf_event__repipe_attr;
|
|
|
|
inject.tool.event_update = perf_event__repipe_event_update;
|
|
|
|
inject.tool.tracing_data = perf_event__repipe_op2_synth;
|
|
|
|
inject.tool.finished_round = perf_event__repipe_oe_synth;
|
|
|
|
inject.tool.build_id = perf_event__repipe_op2_synth;
|
|
|
|
inject.tool.id_index = perf_event__repipe_op2_synth;
|
|
|
|
inject.tool.auxtrace_info = perf_event__repipe_op2_synth;
|
|
|
|
inject.tool.auxtrace_error = perf_event__repipe_op2_synth;
|
|
|
|
inject.tool.time_conv = perf_event__repipe_op2_synth;
|
|
|
|
inject.tool.thread_map = perf_event__repipe_op2_synth;
|
|
|
|
inject.tool.cpu_map = perf_event__repipe_op2_synth;
|
|
|
|
inject.tool.stat_config = perf_event__repipe_op2_synth;
|
|
|
|
inject.tool.stat = perf_event__repipe_op2_synth;
|
|
|
|
inject.tool.stat_round = perf_event__repipe_op2_synth;
|
|
|
|
inject.tool.feature = perf_event__repipe_op2_synth;
|
|
|
|
inject.tool.finished_init = perf_event__repipe_op2_synth;
|
|
|
|
inject.tool.compressed = perf_event__repipe_op4_synth;
|
|
|
|
inject.tool.auxtrace = perf_event__repipe_auxtrace;
|
|
|
|
inject.tool.dont_split_sample_group = true;
|
2024-08-29 23:01:52 +08:00
|
|
|
inject.session = __perf_session__new(&data, &inject.tool,
|
|
|
|
/*trace_event_repipe=*/inject.output.is_pipe);
|
|
|
|
|
2021-07-16 00:07:15 +08:00
|
|
|
if (IS_ERR(inject.session)) {
|
|
|
|
ret = PTR_ERR(inject.session);
|
|
|
|
goto out_close_output;
|
|
|
|
}
|
2014-08-12 14:40:37 +08:00
|
|
|
|
2019-03-19 01:45:44 +08:00
|
|
|
if (zstd_init(&(inject.session->zstd_data), 0) < 0)
|
|
|
|
pr_warning("Decompression initialization failed.\n");
|
|
|
|
|
2022-05-20 21:24:02 +08:00
|
|
|
/* Save original section info before feature bits change */
|
|
|
|
ret = save_section_info(&inject);
|
|
|
|
if (ret)
|
|
|
|
goto out_delete;
|
|
|
|
|
2024-08-29 23:01:52 +08:00
|
|
|
if (inject.output.is_pipe) {
|
2021-07-20 06:31:52 +08:00
|
|
|
ret = perf_header__write_pipe(perf_data__fd(&inject.output));
|
|
|
|
if (ret < 0) {
|
|
|
|
pr_err("Couldn't write a new pipe header.\n");
|
|
|
|
goto out_delete;
|
|
|
|
}
|
|
|
|
|
2024-08-29 23:01:52 +08:00
|
|
|
/*
|
|
|
|
* If the input is already a pipe then the features and
|
|
|
|
* attributes don't need synthesizing, they will be present in
|
|
|
|
* the input.
|
|
|
|
*/
|
|
|
|
if (!data.is_pipe) {
|
|
|
|
ret = perf_event__synthesize_for_pipe(&inject.tool,
|
|
|
|
inject.session,
|
|
|
|
&inject.output,
|
|
|
|
perf_event__repipe);
|
|
|
|
if (ret < 0)
|
|
|
|
goto out_delete;
|
|
|
|
}
|
2021-07-20 06:31:52 +08:00
|
|
|
}
|
|
|
|
|
2024-09-10 04:37:39 +08:00
|
|
|
if (inject.build_id_style == BID_RWS__INJECT_HEADER_LAZY ||
|
|
|
|
inject.build_id_style == BID_RWS__MMAP2_BUILDID_LAZY) {
|
2016-01-23 05:41:00 +08:00
|
|
|
/*
|
|
|
|
* to make sure the mmap records are ordered correctly
|
|
|
|
* and so that the correct especially due to jitted code
|
|
|
|
* mmaps. We cannot generate the buildid hit list and
|
|
|
|
* inject the jit mmaps at the same time for now.
|
|
|
|
*/
|
|
|
|
inject.tool.ordering_requires_timestamps = true;
|
2024-08-17 14:44:36 +08:00
|
|
|
}
|
|
|
|
if (inject.build_id_style != BID_RWS__NONE && known_build_ids != NULL) {
|
|
|
|
inject.known_build_ids =
|
|
|
|
perf_inject__parse_known_build_ids(known_build_ids);
|
2022-08-16 06:59:22 +08:00
|
|
|
|
2024-08-17 14:44:36 +08:00
|
|
|
if (inject.known_build_ids == NULL) {
|
|
|
|
pr_err("Couldn't parse known build ids.\n");
|
|
|
|
goto out_delete;
|
2022-08-16 06:59:22 +08:00
|
|
|
}
|
2016-01-23 05:41:00 +08:00
|
|
|
}
|
2020-10-12 15:02:13 +08:00
|
|
|
|
2016-03-11 00:41:13 +08:00
|
|
|
#ifdef HAVE_JITDUMP
|
2015-11-30 17:02:21 +08:00
|
|
|
if (inject.jit_mode) {
|
2024-08-17 14:44:37 +08:00
|
|
|
inject.tool.mmap2 = perf_event__repipe_mmap2;
|
|
|
|
inject.tool.mmap = perf_event__repipe_mmap;
|
2015-11-30 17:02:21 +08:00
|
|
|
inject.tool.ordering_requires_timestamps = true;
|
|
|
|
/*
|
|
|
|
* JIT MMAP injection injects all MMAP events in one go, so it
|
|
|
|
* does not obey finished_round semantics.
|
|
|
|
*/
|
|
|
|
inject.tool.finished_round = perf_event__drop_oe;
|
|
|
|
}
|
|
|
|
#endif
|
2015-06-30 16:15:20 +08:00
|
|
|
ret = symbol__init(&inject.session->header.env);
|
|
|
|
if (ret < 0)
|
|
|
|
goto out_delete;
|
2010-05-01 14:41:20 +08:00
|
|
|
|
2014-08-12 14:40:37 +08:00
|
|
|
ret = __cmd_inject(&inject);
|
|
|
|
|
2022-07-11 17:32:07 +08:00
|
|
|
guest_session__exit(&inject.guest_session);
|
|
|
|
|
2015-06-30 16:15:20 +08:00
|
|
|
out_delete:
|
2022-08-16 06:59:22 +08:00
|
|
|
strlist__delete(inject.known_build_ids);
|
2019-03-19 01:45:44 +08:00
|
|
|
zstd_fini(&(inject.session->zstd_data));
|
2014-08-12 14:40:37 +08:00
|
|
|
perf_session__delete(inject.session);
|
2021-07-16 00:07:15 +08:00
|
|
|
out_close_output:
|
2021-12-13 16:48:28 +08:00
|
|
|
if (!inject.in_place_update)
|
|
|
|
perf_data__close(&inject.output);
|
2021-04-30 15:03:02 +08:00
|
|
|
free(inject.itrace_synth_opts.vm_tm_corr_args);
|
2023-05-27 11:43:21 +08:00
|
|
|
free(inject.event_copy);
|
2023-05-27 11:43:22 +08:00
|
|
|
free(inject.guest_session.ev.event_buf);
|
2014-08-12 14:40:37 +08:00
|
|
|
return ret;
|
2010-05-01 14:41:20 +08:00
|
|
|
}
|