1 // SPDX-License-Identifier: GPL-2.0
5 #include <linux/bitops.h>
6 #include <linux/kernel.h>
7 #include <linux/types.h>
17 #define COMP(m) do { \
18 if (s1->m != s2->m) { \
19 pr_debug("Samples differ at '"#m"'\n"); \
24 #define MCOMP(m) do { \
25 if (memcmp(&s1->m, &s2->m, sizeof(s1->m))) { \
26 pr_debug("Samples differ at '"#m"'\n"); \
31 static bool samples_same(const struct perf_sample
*s1
,
32 const struct perf_sample
*s2
,
33 u64 type
, u64 read_format
)
37 if (type
& PERF_SAMPLE_IDENTIFIER
)
40 if (type
& PERF_SAMPLE_IP
)
43 if (type
& PERF_SAMPLE_TID
) {
48 if (type
& PERF_SAMPLE_TIME
)
51 if (type
& PERF_SAMPLE_ADDR
)
54 if (type
& PERF_SAMPLE_ID
)
57 if (type
& PERF_SAMPLE_STREAM_ID
)
60 if (type
& PERF_SAMPLE_CPU
)
63 if (type
& PERF_SAMPLE_PERIOD
)
66 if (type
& PERF_SAMPLE_READ
) {
67 if (read_format
& PERF_FORMAT_GROUP
)
71 if (read_format
& PERF_FORMAT_TOTAL_TIME_ENABLED
)
72 COMP(read
.time_enabled
);
73 if (read_format
& PERF_FORMAT_TOTAL_TIME_RUNNING
)
74 COMP(read
.time_running
);
75 /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */
76 if (read_format
& PERF_FORMAT_GROUP
) {
77 for (i
= 0; i
< s1
->read
.group
.nr
; i
++)
78 MCOMP(read
.group
.values
[i
]);
84 if (type
& PERF_SAMPLE_CALLCHAIN
) {
86 for (i
= 0; i
< s1
->callchain
->nr
; i
++)
87 COMP(callchain
->ips
[i
]);
90 if (type
& PERF_SAMPLE_RAW
) {
92 if (memcmp(s1
->raw_data
, s2
->raw_data
, s1
->raw_size
)) {
93 pr_debug("Samples differ at 'raw_data'\n");
98 if (type
& PERF_SAMPLE_BRANCH_STACK
) {
99 COMP(branch_stack
->nr
);
100 for (i
= 0; i
< s1
->branch_stack
->nr
; i
++)
101 MCOMP(branch_stack
->entries
[i
]);
104 if (type
& PERF_SAMPLE_REGS_USER
) {
105 size_t sz
= hweight_long(s1
->user_regs
.mask
) * sizeof(u64
);
107 COMP(user_regs
.mask
);
109 if (s1
->user_regs
.abi
&&
110 (!s1
->user_regs
.regs
|| !s2
->user_regs
.regs
||
111 memcmp(s1
->user_regs
.regs
, s2
->user_regs
.regs
, sz
))) {
112 pr_debug("Samples differ at 'user_regs'\n");
117 if (type
& PERF_SAMPLE_STACK_USER
) {
118 COMP(user_stack
.size
);
119 if (memcmp(s1
->user_stack
.data
, s2
->user_stack
.data
,
120 s1
->user_stack
.size
)) {
121 pr_debug("Samples differ at 'user_stack'\n");
126 if (type
& PERF_SAMPLE_WEIGHT
)
129 if (type
& PERF_SAMPLE_DATA_SRC
)
132 if (type
& PERF_SAMPLE_TRANSACTION
)
135 if (type
& PERF_SAMPLE_REGS_INTR
) {
136 size_t sz
= hweight_long(s1
->intr_regs
.mask
) * sizeof(u64
);
138 COMP(intr_regs
.mask
);
140 if (s1
->intr_regs
.abi
&&
141 (!s1
->intr_regs
.regs
|| !s2
->intr_regs
.regs
||
142 memcmp(s1
->intr_regs
.regs
, s2
->intr_regs
.regs
, sz
))) {
143 pr_debug("Samples differ at 'intr_regs'\n");
148 if (type
& PERF_SAMPLE_PHYS_ADDR
)
154 static int do_test(u64 sample_type
, u64 sample_regs
, u64 read_format
)
156 struct perf_evsel evsel
= {
159 .sample_type
= sample_type
,
160 .read_format
= read_format
,
163 union perf_event
*event
;
165 struct ip_callchain callchain
;
169 .data
= {3, 201, 202, 203},
172 struct branch_stack branch_stack
;
176 .data
= {1, 211, 212, 213},
179 const u64 raw_data
[] = {0x123456780a0b0c0dULL
, 0x1102030405060708ULL
};
180 const u64 data
[] = {0x2211443366558877ULL
, 0, 0xaabbccddeeff4321ULL
};
181 struct perf_sample sample
= {
192 .raw_size
= sizeof(raw_data
),
195 .raw_data
= (void *)raw_data
,
196 .callchain
= &callchain
.callchain
,
197 .branch_stack
= &branch_stack
.branch_stack
,
199 .abi
= PERF_SAMPLE_REGS_ABI_64
,
204 .size
= sizeof(data
),
205 .data
= (void *)data
,
208 .time_enabled
= 0x030a59d664fca7deULL
,
209 .time_running
= 0x011b6ae553eb98edULL
,
212 .abi
= PERF_SAMPLE_REGS_ABI_64
,
218 struct sample_read_value values
[] = {{1, 5}, {9, 3}, {2, 7}, {6, 4},};
219 struct perf_sample sample_out
;
223 if (sample_type
& PERF_SAMPLE_REGS_USER
)
224 evsel
.attr
.sample_regs_user
= sample_regs
;
226 if (sample_type
& PERF_SAMPLE_REGS_INTR
)
227 evsel
.attr
.sample_regs_intr
= sample_regs
;
229 for (i
= 0; i
< sizeof(regs
); i
++)
230 *(i
+ (u8
*)regs
) = i
& 0xfe;
232 if (read_format
& PERF_FORMAT_GROUP
) {
233 sample
.read
.group
.nr
= 4;
234 sample
.read
.group
.values
= values
;
236 sample
.read
.one
.value
= 0x08789faeb786aa87ULL
;
237 sample
.read
.one
.id
= 99;
240 sz
= perf_event__sample_event_size(&sample
, sample_type
, read_format
);
241 bufsz
= sz
+ 4096; /* Add a bit for overrun checking */
242 event
= malloc(bufsz
);
244 pr_debug("malloc failed\n");
248 memset(event
, 0xff, bufsz
);
249 event
->header
.type
= PERF_RECORD_SAMPLE
;
250 event
->header
.misc
= 0;
251 event
->header
.size
= sz
;
253 err
= perf_event__synthesize_sample(event
, sample_type
, read_format
,
256 pr_debug("%s failed for sample_type %#"PRIx64
", error %d\n",
257 "perf_event__synthesize_sample", sample_type
, err
);
261 /* The data does not contain 0xff so we use that to check the size */
262 for (i
= bufsz
; i
> 0; i
--) {
263 if (*(i
- 1 + (u8
*)event
) != 0xff)
267 pr_debug("Event size mismatch: actual %zu vs expected %zu\n",
272 evsel
.sample_size
= __perf_evsel__sample_size(sample_type
);
274 err
= perf_evsel__parse_sample(&evsel
, event
, &sample_out
);
276 pr_debug("%s failed for sample_type %#"PRIx64
", error %d\n",
277 "perf_evsel__parse_sample", sample_type
, err
);
281 if (!samples_same(&sample
, &sample_out
, sample_type
, read_format
)) {
282 pr_debug("parsing failed for sample_type %#"PRIx64
"\n",
290 if (ret
&& read_format
)
291 pr_debug("read_format %#"PRIx64
"\n", read_format
);
296 * test__sample_parsing - test sample parsing.
298 * This function implements a test that synthesizes a sample event, parses it
299 * and then checks that the parsed sample matches the original sample. The test
300 * checks sample format bits separately and together. If the test passes %0 is
301 * returned, otherwise %-1 is returned.
303 int test__sample_parsing(struct test
*test __maybe_unused
, int subtest __maybe_unused
)
305 const u64 rf
[] = {4, 5, 6, 7, 12, 13, 14, 15};
312 * Fail the test if it has not been updated when new sample format bits
313 * were added. Please actually update the test rather than just change
314 * the condition below.
316 if (PERF_SAMPLE_MAX
> PERF_SAMPLE_PHYS_ADDR
<< 1) {
317 pr_debug("sample format has changed, some new PERF_SAMPLE_ bit was introduced - test needs updating\n");
321 /* Test each sample format bit separately */
322 for (sample_type
= 1; sample_type
!= PERF_SAMPLE_MAX
;
324 /* Test read_format variations */
325 if (sample_type
== PERF_SAMPLE_READ
) {
326 for (i
= 0; i
< ARRAY_SIZE(rf
); i
++) {
327 err
= do_test(sample_type
, 0, rf
[i
]);
335 if (sample_type
== PERF_SAMPLE_REGS_USER
)
336 sample_regs
= 0x3fff;
338 if (sample_type
== PERF_SAMPLE_REGS_INTR
)
339 sample_regs
= 0xff0fff;
341 err
= do_test(sample_type
, sample_regs
, 0);
346 /* Test all sample format bits together */
347 sample_type
= PERF_SAMPLE_MAX
- 1;
348 sample_regs
= 0x3fff; /* shared yb intr and user regs */
349 for (i
= 0; i
< ARRAY_SIZE(rf
); i
++) {
350 err
= do_test(sample_type
, sample_regs
, rf
[i
]);