blob: fc832676a7985f13c4ba7f419b380b7fa2425798 [file] [log] [blame]
Arnaldo Carvalho de Melo16958492017-10-06 10:31:47 -03001/*
2 * Copyright (C) 2011-2017, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
3 *
4 * Parts came from evlist.c builtin-{top,stat,record}.c, see those files for further
5 * copyright notes.
6 *
7 * Released under the GPL v2. (and only v2, not any later version)
8 */
9
10#include <sys/mman.h>
Arnaldo Carvalho de Melo73c17d82017-10-06 10:46:01 -030011#include <inttypes.h>
12#include <asm/bug.h>
13#include "debug.h"
Arnaldo Carvalho de Melo16958492017-10-06 10:31:47 -030014#include "event.h"
15#include "mmap.h"
16#include "util.h" /* page_size */
17
18size_t perf_mmap__mmap_len(struct perf_mmap *map)
19{
20 return map->mask + 1 + page_size;
21}
22
23/* When check_messup is true, 'end' must points to a good entry */
Wang Nan8eb7a1f2017-12-03 02:00:41 +000024static union perf_event *perf_mmap__read(struct perf_mmap *map,
Kan Liangb4b036b2018-01-18 13:26:21 -080025 u64 *startp, u64 end)
Arnaldo Carvalho de Melo16958492017-10-06 10:31:47 -030026{
27 unsigned char *data = map->base + page_size;
28 union perf_event *event = NULL;
Kan Liangb4b036b2018-01-18 13:26:21 -080029 int diff = end - *startp;
Arnaldo Carvalho de Melo16958492017-10-06 10:31:47 -030030
Arnaldo Carvalho de Melo16958492017-10-06 10:31:47 -030031 if (diff >= (int)sizeof(event->header)) {
32 size_t size;
33
Kan Liangb4b036b2018-01-18 13:26:21 -080034 event = (union perf_event *)&data[*startp & map->mask];
Arnaldo Carvalho de Melo16958492017-10-06 10:31:47 -030035 size = event->header.size;
36
Kan Liangb4b036b2018-01-18 13:26:21 -080037 if (size < sizeof(event->header) || diff < (int)size)
38 return NULL;
Arnaldo Carvalho de Melo16958492017-10-06 10:31:47 -030039
40 /*
41 * Event straddles the mmap boundary -- header should always
42 * be inside due to u64 alignment of output.
43 */
Kan Liangb4b036b2018-01-18 13:26:21 -080044 if ((*startp & map->mask) + size != ((*startp + size) & map->mask)) {
45 unsigned int offset = *startp;
Arnaldo Carvalho de Melo16958492017-10-06 10:31:47 -030046 unsigned int len = min(sizeof(*event), size), cpy;
47 void *dst = map->event_copy;
48
49 do {
50 cpy = min(map->mask + 1 - (offset & map->mask), len);
51 memcpy(dst, &data[offset & map->mask], cpy);
52 offset += cpy;
53 dst += cpy;
54 len -= cpy;
55 } while (len);
56
57 event = (union perf_event *)map->event_copy;
58 }
59
Kan Liangb4b036b2018-01-18 13:26:21 -080060 *startp += size;
Arnaldo Carvalho de Melo16958492017-10-06 10:31:47 -030061 }
62
Arnaldo Carvalho de Melo16958492017-10-06 10:31:47 -030063 return event;
64}
65
Kan Liang3effc2f2018-01-18 13:26:25 -080066/*
Kan Liang7bb45972018-01-18 13:26:23 -080067 * Read event from ring buffer one by one.
68 * Return one event for each call.
69 *
70 * Usage:
71 * perf_mmap__read_init()
72 * while(event = perf_mmap__read_event()) {
73 * //process the event
74 * perf_mmap__consume()
75 * }
76 * perf_mmap__read_done()
77 */
Kan Liang0019dc872018-03-06 10:36:06 -050078union perf_event *perf_mmap__read_event(struct perf_mmap *map)
Kan Liang7bb45972018-01-18 13:26:23 -080079{
80 union perf_event *event;
81
82 /*
83 * Check if event was unmapped due to a POLLHUP/POLLERR.
84 */
85 if (!refcount_read(&map->refcnt))
86 return NULL;
87
Kan Liang7bb45972018-01-18 13:26:23 -080088 /* non-overwirte doesn't pause the ringbuffer */
Kan Liangb9de0f62018-03-06 10:36:03 -050089 if (!map->overwrite)
90 map->end = perf_mmap__read_head(map);
Kan Liang7bb45972018-01-18 13:26:23 -080091
Kan Liangb9de0f62018-03-06 10:36:03 -050092 event = perf_mmap__read(map, &map->start, map->end);
Kan Liang7bb45972018-01-18 13:26:23 -080093
Kan Liangb9de0f62018-03-06 10:36:03 -050094 if (!map->overwrite)
95 map->prev = map->start;
Kan Liang7bb45972018-01-18 13:26:23 -080096
97 return event;
98}
99
Arnaldo Carvalho de Melo16958492017-10-06 10:31:47 -0300100static bool perf_mmap__empty(struct perf_mmap *map)
101{
102 return perf_mmap__read_head(map) == map->prev && !map->auxtrace_mmap.base;
103}
104
105void perf_mmap__get(struct perf_mmap *map)
106{
107 refcount_inc(&map->refcnt);
108}
109
110void perf_mmap__put(struct perf_mmap *map)
111{
112 BUG_ON(map->base && refcount_read(&map->refcnt) == 0);
113
114 if (refcount_dec_and_test(&map->refcnt))
115 perf_mmap__munmap(map);
116}
117
Kan Liangd6ace3d2018-03-06 10:36:05 -0500118void perf_mmap__consume(struct perf_mmap *map)
Arnaldo Carvalho de Melo16958492017-10-06 10:31:47 -0300119{
Kan Liangbdec8b22018-03-06 10:36:04 -0500120 if (!map->overwrite) {
Arnaldo Carvalho de Melo16958492017-10-06 10:31:47 -0300121 u64 old = map->prev;
122
123 perf_mmap__write_tail(map, old);
124 }
125
126 if (refcount_read(&map->refcnt) == 1 && perf_mmap__empty(map))
127 perf_mmap__put(map);
128}
129
130int __weak auxtrace_mmap__mmap(struct auxtrace_mmap *mm __maybe_unused,
131 struct auxtrace_mmap_params *mp __maybe_unused,
132 void *userpg __maybe_unused,
133 int fd __maybe_unused)
134{
135 return 0;
136}
137
138void __weak auxtrace_mmap__munmap(struct auxtrace_mmap *mm __maybe_unused)
139{
140}
141
142void __weak auxtrace_mmap_params__init(struct auxtrace_mmap_params *mp __maybe_unused,
143 off_t auxtrace_offset __maybe_unused,
144 unsigned int auxtrace_pages __maybe_unused,
145 bool auxtrace_overwrite __maybe_unused)
146{
147}
148
149void __weak auxtrace_mmap_params__set_idx(struct auxtrace_mmap_params *mp __maybe_unused,
150 struct perf_evlist *evlist __maybe_unused,
151 int idx __maybe_unused,
152 bool per_cpu __maybe_unused)
153{
154}
155
156void perf_mmap__munmap(struct perf_mmap *map)
157{
158 if (map->base != NULL) {
159 munmap(map->base, perf_mmap__mmap_len(map));
160 map->base = NULL;
161 map->fd = -1;
162 refcount_set(&map->refcnt, 0);
163 }
164 auxtrace_mmap__munmap(&map->auxtrace_mmap);
165}
166
167int perf_mmap__mmap(struct perf_mmap *map, struct mmap_params *mp, int fd)
168{
169 /*
Kan Liang6afad542018-03-01 18:09:11 -0500170 * The last one will be done at perf_mmap__consume(), so that we
Arnaldo Carvalho de Melo16958492017-10-06 10:31:47 -0300171 * make sure we don't prevent tools from consuming every last event in
172 * the ring buffer.
173 *
174 * I.e. we can get the POLLHUP meaning that the fd doesn't exist
175 * anymore, but the last events for it are still in the ring buffer,
176 * waiting to be consumed.
177 *
178 * Tools can chose to ignore this at their own discretion, but the
179 * evlist layer can't just drop it when filtering events in
180 * perf_evlist__filter_pollfd().
181 */
182 refcount_set(&map->refcnt, 2);
183 map->prev = 0;
184 map->mask = mp->mask;
185 map->base = mmap(NULL, perf_mmap__mmap_len(map), mp->prot,
186 MAP_SHARED, fd, 0);
187 if (map->base == MAP_FAILED) {
188 pr_debug2("failed to mmap perf event ring buffer, error %d\n",
189 errno);
190 map->base = NULL;
191 return -1;
192 }
193 map->fd = fd;
194
195 if (auxtrace_mmap__mmap(&map->auxtrace_mmap,
196 &mp->auxtrace_mp, map->base, fd))
197 return -1;
198
199 return 0;
200}
Arnaldo Carvalho de Melo73c17d82017-10-06 10:46:01 -0300201
Yisheng Xie699db112018-03-13 20:31:13 +0800202static int overwrite_rb_find_range(void *buf, int mask, u64 *start, u64 *end)
Arnaldo Carvalho de Melo73c17d82017-10-06 10:46:01 -0300203{
204 struct perf_event_header *pheader;
Yisheng Xie699db112018-03-13 20:31:13 +0800205 u64 evt_head = *start;
Arnaldo Carvalho de Melo73c17d82017-10-06 10:46:01 -0300206 int size = mask + 1;
207
Yisheng Xie699db112018-03-13 20:31:13 +0800208 pr_debug2("%s: buf=%p, start=%"PRIx64"\n", __func__, buf, *start);
209 pheader = (struct perf_event_header *)(buf + (*start & mask));
Arnaldo Carvalho de Melo73c17d82017-10-06 10:46:01 -0300210 while (true) {
Yisheng Xie699db112018-03-13 20:31:13 +0800211 if (evt_head - *start >= (unsigned int)size) {
Wang Nan0b72d692017-12-04 16:51:07 +0000212 pr_debug("Finished reading overwrite ring buffer: rewind\n");
Yisheng Xie699db112018-03-13 20:31:13 +0800213 if (evt_head - *start > (unsigned int)size)
Arnaldo Carvalho de Melo73c17d82017-10-06 10:46:01 -0300214 evt_head -= pheader->size;
215 *end = evt_head;
216 return 0;
217 }
218
219 pheader = (struct perf_event_header *)(buf + (evt_head & mask));
220
221 if (pheader->size == 0) {
Wang Nan0b72d692017-12-04 16:51:07 +0000222 pr_debug("Finished reading overwrite ring buffer: get start\n");
Arnaldo Carvalho de Melo73c17d82017-10-06 10:46:01 -0300223 *end = evt_head;
224 return 0;
225 }
226
227 evt_head += pheader->size;
228 pr_debug3("move evt_head: %"PRIx64"\n", evt_head);
229 }
230 WARN_ONCE(1, "Shouldn't get here\n");
231 return -1;
232}
233
Kan Liang88724812018-01-18 13:26:19 -0800234/*
235 * Report the start and end of the available data in ringbuffer
236 */
Arnaldo Carvalho de Melo895e3b02018-03-26 11:42:15 -0300237static int __perf_mmap__read_init(struct perf_mmap *md)
Arnaldo Carvalho de Melo73c17d82017-10-06 10:46:01 -0300238{
239 u64 head = perf_mmap__read_head(md);
240 u64 old = md->prev;
Arnaldo Carvalho de Melo73c17d82017-10-06 10:46:01 -0300241 unsigned char *data = md->base + page_size;
242 unsigned long size;
Arnaldo Carvalho de Melo73c17d82017-10-06 10:46:01 -0300243
Kan Liang4fda3452018-03-06 10:36:01 -0500244 md->start = md->overwrite ? head : old;
245 md->end = md->overwrite ? old : head;
Arnaldo Carvalho de Melo73c17d82017-10-06 10:46:01 -0300246
Kan Liang4fda3452018-03-06 10:36:01 -0500247 if (md->start == md->end)
Kan Liang189f2cc2018-01-18 13:26:20 -0800248 return -EAGAIN;
Arnaldo Carvalho de Melo73c17d82017-10-06 10:46:01 -0300249
Kan Liang4fda3452018-03-06 10:36:01 -0500250 size = md->end - md->start;
Arnaldo Carvalho de Melo73c17d82017-10-06 10:46:01 -0300251 if (size > (unsigned long)(md->mask) + 1) {
Kan Liang4fda3452018-03-06 10:36:01 -0500252 if (!md->overwrite) {
Wang Nan7fb4b402017-12-04 16:51:06 +0000253 WARN_ONCE(1, "failed to keep up with mmap data. (warn only once)\n");
Arnaldo Carvalho de Melo73c17d82017-10-06 10:46:01 -0300254
Wang Nan7fb4b402017-12-04 16:51:06 +0000255 md->prev = head;
Kan Liangd6ace3d2018-03-06 10:36:05 -0500256 perf_mmap__consume(md);
Kan Liang189f2cc2018-01-18 13:26:20 -0800257 return -EAGAIN;
Wang Nan7fb4b402017-12-04 16:51:06 +0000258 }
259
260 /*
261 * Backward ring buffer is full. We still have a chance to read
262 * most of data from it.
263 */
Yisheng Xie699db112018-03-13 20:31:13 +0800264 if (overwrite_rb_find_range(data, md->mask, &md->start, &md->end))
Kan Liang189f2cc2018-01-18 13:26:20 -0800265 return -EINVAL;
Arnaldo Carvalho de Melo73c17d82017-10-06 10:46:01 -0300266 }
267
Kan Liang189f2cc2018-01-18 13:26:20 -0800268 return 0;
Kan Liang88724812018-01-18 13:26:19 -0800269}
270
Arnaldo Carvalho de Melo895e3b02018-03-26 11:42:15 -0300271int perf_mmap__read_init(struct perf_mmap *map)
272{
273 /*
274 * Check if event was unmapped due to a POLLHUP/POLLERR.
275 */
276 if (!refcount_read(&map->refcnt))
277 return -ENOENT;
278
279 return __perf_mmap__read_init(map);
280}
281
Kan Liang07a94612018-03-06 10:36:02 -0500282int perf_mmap__push(struct perf_mmap *md, void *to,
283 int push(void *to, void *buf, size_t size))
Kan Liang88724812018-01-18 13:26:19 -0800284{
285 u64 head = perf_mmap__read_head(md);
Kan Liang88724812018-01-18 13:26:19 -0800286 unsigned char *data = md->base + page_size;
287 unsigned long size;
288 void *buf;
289 int rc = 0;
290
Kan Liangb9bae2c2018-03-06 10:36:07 -0500291 rc = perf_mmap__read_init(md);
Kan Liang189f2cc2018-01-18 13:26:20 -0800292 if (rc < 0)
293 return (rc == -EAGAIN) ? 0 : -1;
Kan Liang88724812018-01-18 13:26:19 -0800294
Kan Liang07a94612018-03-06 10:36:02 -0500295 size = md->end - md->start;
Kan Liangdc6c35c2018-01-18 13:26:17 -0800296
Kan Liang07a94612018-03-06 10:36:02 -0500297 if ((md->start & md->mask) + size != (md->end & md->mask)) {
298 buf = &data[md->start & md->mask];
299 size = md->mask + 1 - (md->start & md->mask);
300 md->start += size;
Arnaldo Carvalho de Melo73c17d82017-10-06 10:46:01 -0300301
302 if (push(to, buf, size) < 0) {
303 rc = -1;
304 goto out;
305 }
306 }
307
Kan Liang07a94612018-03-06 10:36:02 -0500308 buf = &data[md->start & md->mask];
309 size = md->end - md->start;
310 md->start += size;
Arnaldo Carvalho de Melo73c17d82017-10-06 10:46:01 -0300311
312 if (push(to, buf, size) < 0) {
313 rc = -1;
314 goto out;
315 }
316
317 md->prev = head;
Kan Liangd6ace3d2018-03-06 10:36:05 -0500318 perf_mmap__consume(md);
Arnaldo Carvalho de Melo73c17d82017-10-06 10:46:01 -0300319out:
320 return rc;
321}
Kan Liangee023de2018-01-18 13:26:22 -0800322
323/*
324 * Mandatory for overwrite mode
325 * The direction of overwrite mode is backward.
326 * The last perf_mmap__read() will set tail to map->prev.
327 * Need to correct the map->prev to head which is the end of next read.
328 */
329void perf_mmap__read_done(struct perf_mmap *map)
330{
Kan Liangf58385f2018-03-26 09:42:09 -0400331 /*
332 * Check if event was unmapped due to a POLLHUP/POLLERR.
333 */
334 if (!refcount_read(&map->refcnt))
335 return;
336
Kan Liangee023de2018-01-18 13:26:22 -0800337 map->prev = perf_mmap__read_head(map);
338}