blob: 15cea518f5add2df0c108f8e3081dc103c8ac7e6 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Test backward bit in event attribute, read ring buffer from end to
4 * beginning
5 */
6
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00007#include <evlist.h>
8#include <sys/prctl.h>
David Brazdil0f672f62019-12-10 10:32:29 +00009#include "record.h"
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000010#include "tests.h"
11#include "debug.h"
David Brazdil0f672f62019-12-10 10:32:29 +000012#include "parse-events.h"
13#include "util/mmap.h"
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000014#include <errno.h>
David Brazdil0f672f62019-12-10 10:32:29 +000015#include <linux/string.h>
Olivier Deprez157378f2022-04-04 15:47:50 +020016#include <perf/mmap.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000017
18#define NR_ITERS 111
19
20static void testcase(void)
21{
22 int i;
23
24 for (i = 0; i < NR_ITERS; i++) {
David Brazdil0f672f62019-12-10 10:32:29 +000025 char proc_name[15];
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000026
27 snprintf(proc_name, sizeof(proc_name), "p:%d\n", i);
28 prctl(PR_SET_NAME, proc_name);
29 }
30}
31
David Brazdil0f672f62019-12-10 10:32:29 +000032static int count_samples(struct evlist *evlist, int *sample_count,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000033 int *comm_count)
34{
35 int i;
36
David Brazdil0f672f62019-12-10 10:32:29 +000037 for (i = 0; i < evlist->core.nr_mmaps; i++) {
38 struct mmap *map = &evlist->overwrite_mmap[i];
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000039 union perf_event *event;
40
Olivier Deprez157378f2022-04-04 15:47:50 +020041 perf_mmap__read_init(&map->core);
42 while ((event = perf_mmap__read_event(&map->core)) != NULL) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000043 const u32 type = event->header.type;
44
45 switch (type) {
46 case PERF_RECORD_SAMPLE:
47 (*sample_count)++;
48 break;
49 case PERF_RECORD_COMM:
50 (*comm_count)++;
51 break;
52 default:
53 pr_err("Unexpected record of type %d\n", type);
54 return TEST_FAIL;
55 }
56 }
Olivier Deprez157378f2022-04-04 15:47:50 +020057 perf_mmap__read_done(&map->core);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000058 }
59 return TEST_OK;
60}
61
David Brazdil0f672f62019-12-10 10:32:29 +000062static int do_test(struct evlist *evlist, int mmap_pages,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000063 int *sample_count, int *comm_count)
64{
65 int err;
66 char sbuf[STRERR_BUFSIZE];
67
David Brazdil0f672f62019-12-10 10:32:29 +000068 err = evlist__mmap(evlist, mmap_pages);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000069 if (err < 0) {
David Brazdil0f672f62019-12-10 10:32:29 +000070 pr_debug("evlist__mmap: %s\n",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000071 str_error_r(errno, sbuf, sizeof(sbuf)));
72 return TEST_FAIL;
73 }
74
David Brazdil0f672f62019-12-10 10:32:29 +000075 evlist__enable(evlist);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000076 testcase();
David Brazdil0f672f62019-12-10 10:32:29 +000077 evlist__disable(evlist);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000078
79 err = count_samples(evlist, sample_count, comm_count);
David Brazdil0f672f62019-12-10 10:32:29 +000080 evlist__munmap(evlist);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000081 return err;
82}
83
84
85int test__backward_ring_buffer(struct test *test __maybe_unused, int subtest __maybe_unused)
86{
87 int ret = TEST_SKIP, err, sample_count = 0, comm_count = 0;
88 char pid[16], sbuf[STRERR_BUFSIZE];
David Brazdil0f672f62019-12-10 10:32:29 +000089 struct evlist *evlist;
90 struct evsel *evsel __maybe_unused;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000091 struct parse_events_error parse_error;
92 struct record_opts opts = {
93 .target = {
94 .uid = UINT_MAX,
95 .uses_mmap = true,
96 },
97 .freq = 0,
98 .mmap_pages = 256,
99 .default_interval = 1,
100 };
101
102 snprintf(pid, sizeof(pid), "%d", getpid());
103 pid[sizeof(pid) - 1] = '\0';
104 opts.target.tid = opts.target.pid = pid;
105
David Brazdil0f672f62019-12-10 10:32:29 +0000106 evlist = evlist__new();
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000107 if (!evlist) {
108 pr_debug("Not enough memory to create evlist\n");
109 return TEST_FAIL;
110 }
111
112 err = perf_evlist__create_maps(evlist, &opts.target);
113 if (err < 0) {
114 pr_debug("Not enough memory to create thread/cpu maps\n");
115 goto out_delete_evlist;
116 }
117
118 bzero(&parse_error, sizeof(parse_error));
119 /*
120 * Set backward bit, ring buffer should be writing from end. Record
121 * it in aux evlist
122 */
123 err = parse_events(evlist, "syscalls:sys_enter_prctl/overwrite/", &parse_error);
124 if (err) {
125 pr_debug("Failed to parse tracepoint event, try use root\n");
126 ret = TEST_SKIP;
127 goto out_delete_evlist;
128 }
129
130 perf_evlist__config(evlist, &opts, NULL);
131
David Brazdil0f672f62019-12-10 10:32:29 +0000132 err = evlist__open(evlist);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000133 if (err < 0) {
134 pr_debug("perf_evlist__open: %s\n",
135 str_error_r(errno, sbuf, sizeof(sbuf)));
136 goto out_delete_evlist;
137 }
138
139 ret = TEST_FAIL;
140 err = do_test(evlist, opts.mmap_pages, &sample_count,
141 &comm_count);
142 if (err != TEST_OK)
143 goto out_delete_evlist;
144
145 if ((sample_count != NR_ITERS) || (comm_count != NR_ITERS)) {
146 pr_err("Unexpected counter: sample_count=%d, comm_count=%d\n",
147 sample_count, comm_count);
148 goto out_delete_evlist;
149 }
150
Olivier Deprez0e641232021-09-23 10:07:05 +0200151 evlist__close(evlist);
152
153 err = evlist__open(evlist);
154 if (err < 0) {
155 pr_debug("perf_evlist__open: %s\n",
156 str_error_r(errno, sbuf, sizeof(sbuf)));
157 goto out_delete_evlist;
158 }
159
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000160 err = do_test(evlist, 1, &sample_count, &comm_count);
161 if (err != TEST_OK)
162 goto out_delete_evlist;
163
164 ret = TEST_OK;
165out_delete_evlist:
David Brazdil0f672f62019-12-10 10:32:29 +0000166 evlist__delete(evlist);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000167 return ret;
168}