1 // SPDX-License-Identifier: GPL-2.0
6 #include <linux/bitops.h>
7 #include <linux/kernel.h>
8 #include <linux/types.h>
10 #include "map_symbol.h"
15 #include "util/synthetic-events.h"
16 #include "util/util.h"
20 #define COMP(m) do { \
21 if (s1->m != s2->m) { \
22 pr_debug("Samples differ at '"#m"'\n"); \
27 #define MCOMP(m) do { \
28 if (memcmp(&s1->m, &s2->m, sizeof(s1->m))) { \
29 pr_debug("Samples differ at '"#m"'\n"); \
35 * Hardcode the expected values for branch_entry flags.
36 * These are based on the input value (213) specified
37 * in branch_stack variable.
39 #define BS_EXPECTED_BE 0xa000d00000000000
40 #define BS_EXPECTED_LE 0x1aa00000000
41 #define FLAG(s) s->branch_stack->entries[i].flags
43 static bool samples_same(const struct perf_sample
*s1
,
44 const struct perf_sample
*s2
,
45 u64 type
, u64 read_format
, bool needs_swap
)
49 if (type
& PERF_SAMPLE_IDENTIFIER
)
52 if (type
& PERF_SAMPLE_IP
)
55 if (type
& PERF_SAMPLE_TID
) {
60 if (type
& PERF_SAMPLE_TIME
)
63 if (type
& PERF_SAMPLE_ADDR
)
66 if (type
& PERF_SAMPLE_ID
)
69 if (type
& PERF_SAMPLE_STREAM_ID
)
72 if (type
& PERF_SAMPLE_CPU
)
75 if (type
& PERF_SAMPLE_PERIOD
)
78 if (type
& PERF_SAMPLE_READ
) {
79 if (read_format
& PERF_FORMAT_GROUP
)
83 if (read_format
& PERF_FORMAT_TOTAL_TIME_ENABLED
)
84 COMP(read
.time_enabled
);
85 if (read_format
& PERF_FORMAT_TOTAL_TIME_RUNNING
)
86 COMP(read
.time_running
);
87 /* PERF_FORMAT_ID is forced for PERF_SAMPLE_READ */
88 if (read_format
& PERF_FORMAT_GROUP
) {
89 for (i
= 0; i
< s1
->read
.group
.nr
; i
++) {
90 /* FIXME: check values without LOST */
91 if (read_format
& PERF_FORMAT_LOST
)
92 MCOMP(read
.group
.values
[i
]);
96 if (read_format
& PERF_FORMAT_LOST
)
101 if (type
& PERF_SAMPLE_CALLCHAIN
) {
103 for (i
= 0; i
< s1
->callchain
->nr
; i
++)
104 COMP(callchain
->ips
[i
]);
107 if (type
& PERF_SAMPLE_RAW
) {
109 if (memcmp(s1
->raw_data
, s2
->raw_data
, s1
->raw_size
)) {
110 pr_debug("Samples differ at 'raw_data'\n");
115 if (type
& PERF_SAMPLE_BRANCH_STACK
) {
116 COMP(branch_stack
->nr
);
117 COMP(branch_stack
->hw_idx
);
118 for (i
= 0; i
< s1
->branch_stack
->nr
; i
++) {
120 return ((host_is_bigendian()) ?
121 (FLAG(s2
).value
== BS_EXPECTED_BE
) :
122 (FLAG(s2
).value
== BS_EXPECTED_LE
));
124 MCOMP(branch_stack
->entries
[i
]);
128 if (type
& PERF_SAMPLE_REGS_USER
) {
129 size_t sz
= hweight_long(s1
->user_regs
.mask
) * sizeof(u64
);
131 COMP(user_regs
.mask
);
133 if (s1
->user_regs
.abi
&&
134 (!s1
->user_regs
.regs
|| !s2
->user_regs
.regs
||
135 memcmp(s1
->user_regs
.regs
, s2
->user_regs
.regs
, sz
))) {
136 pr_debug("Samples differ at 'user_regs'\n");
141 if (type
& PERF_SAMPLE_STACK_USER
) {
142 COMP(user_stack
.size
);
143 if (memcmp(s1
->user_stack
.data
, s2
->user_stack
.data
,
144 s1
->user_stack
.size
)) {
145 pr_debug("Samples differ at 'user_stack'\n");
150 if (type
& PERF_SAMPLE_WEIGHT
)
153 if (type
& PERF_SAMPLE_DATA_SRC
)
156 if (type
& PERF_SAMPLE_TRANSACTION
)
159 if (type
& PERF_SAMPLE_REGS_INTR
) {
160 size_t sz
= hweight_long(s1
->intr_regs
.mask
) * sizeof(u64
);
162 COMP(intr_regs
.mask
);
164 if (s1
->intr_regs
.abi
&&
165 (!s1
->intr_regs
.regs
|| !s2
->intr_regs
.regs
||
166 memcmp(s1
->intr_regs
.regs
, s2
->intr_regs
.regs
, sz
))) {
167 pr_debug("Samples differ at 'intr_regs'\n");
172 if (type
& PERF_SAMPLE_PHYS_ADDR
)
175 if (type
& PERF_SAMPLE_CGROUP
)
178 if (type
& PERF_SAMPLE_DATA_PAGE_SIZE
)
179 COMP(data_page_size
);
181 if (type
& PERF_SAMPLE_CODE_PAGE_SIZE
)
182 COMP(code_page_size
);
184 if (type
& PERF_SAMPLE_AUX
) {
185 COMP(aux_sample
.size
);
186 if (memcmp(s1
->aux_sample
.data
, s2
->aux_sample
.data
,
187 s1
->aux_sample
.size
)) {
188 pr_debug("Samples differ at 'aux_sample'\n");
196 static int do_test(u64 sample_type
, u64 sample_regs
, u64 read_format
)
198 struct evsel evsel
= {
202 .sample_type
= sample_type
,
203 .read_format
= read_format
,
207 union perf_event
*event
;
209 struct ip_callchain callchain
;
213 .data
= {3, 201, 202, 203},
216 struct branch_stack branch_stack
;
220 .data
= {1, -1ULL, 211, 212, 213},
223 const u32 raw_data
[] = {0x12345678, 0x0a0b0c0d, 0x11020304, 0x05060708, 0 };
224 const u64 data
[] = {0x2211443366558877ULL
, 0, 0xaabbccddeeff4321ULL
};
225 const u64 aux_data
[] = {0xa55a, 0, 0xeeddee, 0x0282028202820282};
226 struct perf_sample sample
= {
237 .raw_size
= sizeof(raw_data
),
240 .raw_data
= (void *)raw_data
,
241 .callchain
= &callchain
.callchain
,
243 .branch_stack
= &branch_stack
.branch_stack
,
245 .abi
= PERF_SAMPLE_REGS_ABI_64
,
250 .size
= sizeof(data
),
251 .data
= (void *)data
,
254 .time_enabled
= 0x030a59d664fca7deULL
,
255 .time_running
= 0x011b6ae553eb98edULL
,
258 .abi
= PERF_SAMPLE_REGS_ABI_64
,
264 .data_page_size
= 115,
265 .code_page_size
= 116,
267 .size
= sizeof(aux_data
),
268 .data
= (void *)aux_data
,
271 struct sample_read_value values
[] = {{1, 5, 0}, {9, 3, 0}, {2, 7, 0}, {6, 4, 1},};
272 struct perf_sample sample_out
, sample_out_endian
;
276 if (sample_type
& PERF_SAMPLE_REGS_USER
)
277 evsel
.core
.attr
.sample_regs_user
= sample_regs
;
279 if (sample_type
& PERF_SAMPLE_REGS_INTR
)
280 evsel
.core
.attr
.sample_regs_intr
= sample_regs
;
282 if (sample_type
& PERF_SAMPLE_BRANCH_STACK
)
283 evsel
.core
.attr
.branch_sample_type
|= PERF_SAMPLE_BRANCH_HW_INDEX
;
285 for (i
= 0; i
< sizeof(regs
); i
++)
286 *(i
+ (u8
*)regs
) = i
& 0xfe;
288 if (read_format
& PERF_FORMAT_GROUP
) {
289 sample
.read
.group
.nr
= 4;
290 sample
.read
.group
.values
= values
;
292 sample
.read
.one
.value
= 0x08789faeb786aa87ULL
;
293 sample
.read
.one
.id
= 99;
294 sample
.read
.one
.lost
= 1;
297 sz
= perf_event__sample_event_size(&sample
, sample_type
, read_format
);
298 bufsz
= sz
+ 4096; /* Add a bit for overrun checking */
299 event
= malloc(bufsz
);
301 pr_debug("malloc failed\n");
305 memset(event
, 0xff, bufsz
);
306 event
->header
.type
= PERF_RECORD_SAMPLE
;
307 event
->header
.misc
= 0;
308 event
->header
.size
= sz
;
310 err
= perf_event__synthesize_sample(event
, sample_type
, read_format
,
313 pr_debug("%s failed for sample_type %#"PRIx64
", error %d\n",
314 "perf_event__synthesize_sample", sample_type
, err
);
318 /* The data does not contain 0xff so we use that to check the size */
319 for (i
= bufsz
; i
> 0; i
--) {
320 if (*(i
- 1 + (u8
*)event
) != 0xff)
324 pr_debug("Event size mismatch: actual %zu vs expected %zu\n",
329 evsel
.sample_size
= __evsel__sample_size(sample_type
);
331 err
= evsel__parse_sample(&evsel
, event
, &sample_out
);
333 pr_debug("%s failed for sample_type %#"PRIx64
", error %d\n",
334 "evsel__parse_sample", sample_type
, err
);
338 if (!samples_same(&sample
, &sample_out
, sample_type
, read_format
, evsel
.needs_swap
)) {
339 pr_debug("parsing failed for sample_type %#"PRIx64
"\n",
344 if (sample_type
== PERF_SAMPLE_BRANCH_STACK
) {
345 evsel
.needs_swap
= true;
346 evsel
.sample_size
= __evsel__sample_size(sample_type
);
347 err
= evsel__parse_sample(&evsel
, event
, &sample_out_endian
);
349 pr_debug("%s failed for sample_type %#"PRIx64
", error %d\n",
350 "evsel__parse_sample", sample_type
, err
);
354 if (!samples_same(&sample
, &sample_out_endian
, sample_type
, read_format
, evsel
.needs_swap
)) {
355 pr_debug("parsing failed for sample_type %#"PRIx64
"\n",
364 if (ret
&& read_format
)
365 pr_debug("read_format %#"PRIx64
"\n", read_format
);
370 * test__sample_parsing - test sample parsing.
372 * This function implements a test that synthesizes a sample event, parses it
373 * and then checks that the parsed sample matches the original sample. The test
374 * checks sample format bits separately and together. If the test passes %0 is
375 * returned, otherwise %-1 is returned.
377 static int test__sample_parsing(struct test_suite
*test __maybe_unused
, int subtest __maybe_unused
)
379 const u64 rf
[] = {4, 5, 6, 7, 12, 13, 14, 15, 20, 21, 22, 28, 29, 30, 31};
386 * Fail the test if it has not been updated when new sample format bits
387 * were added. Please actually update the test rather than just change
388 * the condition below.
390 if (PERF_SAMPLE_MAX
> PERF_SAMPLE_WEIGHT_STRUCT
<< 1) {
391 pr_debug("sample format has changed, some new PERF_SAMPLE_ bit was introduced - test needs updating\n");
395 /* Test each sample format bit separately */
396 for (sample_type
= 1; sample_type
!= PERF_SAMPLE_MAX
;
398 /* Test read_format variations */
399 if (sample_type
== PERF_SAMPLE_READ
) {
400 for (i
= 0; i
< ARRAY_SIZE(rf
); i
++) {
401 err
= do_test(sample_type
, 0, rf
[i
]);
409 if (sample_type
== PERF_SAMPLE_REGS_USER
)
410 sample_regs
= 0x3fff;
412 if (sample_type
== PERF_SAMPLE_REGS_INTR
)
413 sample_regs
= 0xff0fff;
415 err
= do_test(sample_type
, sample_regs
, 0);
421 * Test all sample format bits together
422 * Note: PERF_SAMPLE_WEIGHT and PERF_SAMPLE_WEIGHT_STRUCT cannot
423 * be set simultaneously.
425 sample_type
= (PERF_SAMPLE_MAX
- 1) & ~PERF_SAMPLE_WEIGHT
;
426 sample_regs
= 0x3fff; /* shared yb intr and user regs */
427 for (i
= 0; i
< ARRAY_SIZE(rf
); i
++) {
428 err
= do_test(sample_type
, sample_regs
, rf
[i
]);
436 DEFINE_SUITE("Sample parsing", sample_parsing
);