blob: 06e864a334bba16789df45fb0c627721d0d65155 [file] [log] [blame]
Steven Rostedt (VMware)bcea3f92018-08-16 11:23:53 -04001// SPDX-License-Identifier: GPL-2.0
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002/*
3 * Generic ring buffer
4 *
5 * Copyright (C) 2008 Steven Rostedt <srostedt@redhat.com>
6 */
Steven Rostedt (Red Hat)af658dc2015-04-29 14:36:05 -04007#include <linux/trace_events.h>
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04008#include <linux/ring_buffer.h>
Ingo Molnar14131f22009-02-26 18:47:11 +01009#include <linux/trace_clock.h>
Ingo Molnare6017572017-02-01 16:36:40 +010010#include <linux/sched/clock.h>
Steven Rostedt0b074362013-01-22 16:58:30 -050011#include <linux/trace_seq.h>
Steven Rostedt7a8e76a2008-09-29 23:02:38 -040012#include <linux/spinlock.h>
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -050013#include <linux/irq_work.h>
Steven Rostedt7a8e76a2008-09-29 23:02:38 -040014#include <linux/uaccess.h>
Steven Rostedta81bd802009-02-06 01:45:16 -050015#include <linux/hardirq.h>
Steven Rostedt (Red Hat)6c43e552013-03-15 11:32:53 -040016#include <linux/kthread.h> /* for self test */
Steven Rostedt7a8e76a2008-09-29 23:02:38 -040017#include <linux/module.h>
18#include <linux/percpu.h>
19#include <linux/mutex.h>
Steven Rostedt (Red Hat)6c43e552013-03-15 11:32:53 -040020#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Steven Rostedt7a8e76a2008-09-29 23:02:38 -040022#include <linux/init.h>
23#include <linux/hash.h>
24#include <linux/list.h>
Steven Rostedt554f7862009-03-11 22:00:13 -040025#include <linux/cpu.h>
Steven Rostedt (VMware)927e56d2018-04-04 11:29:57 -040026#include <linux/oom.h>
Steven Rostedt7a8e76a2008-09-29 23:02:38 -040027
Christoph Lameter79615762010-01-05 15:34:50 +090028#include <asm/local.h>
Steven Rostedt182e9f52008-11-03 23:15:56 -050029
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -070030static void update_pages_handler(struct work_struct *work);
31
Steven Rostedt033601a2008-11-21 12:41:55 -050032/*
Steven Rostedtd1b182a2009-04-15 16:53:47 -040033 * The ring buffer header is special. We must manually up keep it.
34 */
35int ring_buffer_print_entry_header(struct trace_seq *s)
36{
Steven Rostedt (Red Hat)c0cd93a2014-11-12 11:49:00 -050037 trace_seq_puts(s, "# compressed entry header\n");
38 trace_seq_puts(s, "\ttype_len : 5 bits\n");
39 trace_seq_puts(s, "\ttime_delta : 27 bits\n");
40 trace_seq_puts(s, "\tarray : 32 bits\n");
41 trace_seq_putc(s, '\n');
42 trace_seq_printf(s, "\tpadding : type == %d\n",
43 RINGBUF_TYPE_PADDING);
44 trace_seq_printf(s, "\ttime_extend : type == %d\n",
45 RINGBUF_TYPE_TIME_EXTEND);
Tom Zanussidc4e2802018-01-15 20:51:40 -060046 trace_seq_printf(s, "\ttime_stamp : type == %d\n",
47 RINGBUF_TYPE_TIME_STAMP);
Steven Rostedt (Red Hat)c0cd93a2014-11-12 11:49:00 -050048 trace_seq_printf(s, "\tdata max type_len == %d\n",
49 RINGBUF_TYPE_DATA_TYPE_LEN_MAX);
Steven Rostedtd1b182a2009-04-15 16:53:47 -040050
Steven Rostedt (Red Hat)c0cd93a2014-11-12 11:49:00 -050051 return !trace_seq_has_overflowed(s);
Steven Rostedtd1b182a2009-04-15 16:53:47 -040052}
53
54/*
Steven Rostedt5cc98542009-03-12 22:24:17 -040055 * The ring buffer is made up of a list of pages. A separate list of pages is
56 * allocated for each CPU. A writer may only write to a buffer that is
57 * associated with the CPU it is currently executing on. A reader may read
58 * from any per cpu buffer.
59 *
60 * The reader is special. For each per cpu buffer, the reader has its own
61 * reader page. When a reader has read the entire reader page, this reader
62 * page is swapped with another page in the ring buffer.
63 *
64 * Now, as long as the writer is off the reader page, the reader can do what
65 * ever it wants with that page. The writer will never write to that page
66 * again (as long as it is out of the ring buffer).
67 *
68 * Here's some silly ASCII art.
69 *
70 * +------+
71 * |reader| RING BUFFER
72 * |page |
73 * +------+ +---+ +---+ +---+
74 * | |-->| |-->| |
75 * +---+ +---+ +---+
76 * ^ |
77 * | |
78 * +---------------+
79 *
80 *
81 * +------+
82 * |reader| RING BUFFER
83 * |page |------------------v
84 * +------+ +---+ +---+ +---+
85 * | |-->| |-->| |
86 * +---+ +---+ +---+
87 * ^ |
88 * | |
89 * +---------------+
90 *
91 *
92 * +------+
93 * |reader| RING BUFFER
94 * |page |------------------v
95 * +------+ +---+ +---+ +---+
96 * ^ | |-->| |-->| |
97 * | +---+ +---+ +---+
98 * | |
99 * | |
100 * +------------------------------+
101 *
102 *
103 * +------+
104 * |buffer| RING BUFFER
105 * |page |------------------v
106 * +------+ +---+ +---+ +---+
107 * ^ | | | |-->| |
108 * | New +---+ +---+ +---+
109 * | Reader------^ |
110 * | page |
111 * +------------------------------+
112 *
113 *
114 * After we make this swap, the reader can hand this page off to the splice
115 * code and be done with it. It can even allocate a new page if it needs to
116 * and swap that into the ring buffer.
117 *
118 * We will be using cmpxchg soon to make all this lockless.
119 *
120 */
121
Steven Rostedt499e5472012-02-22 15:50:28 -0500122/* Used for individual buffers (after the counter) */
123#define RB_BUFFER_OFF (1 << 20)
124
Steven Rostedt474d32b2009-03-03 19:51:40 -0500125#define BUF_PAGE_HDR_SIZE offsetof(struct buffer_data_page, data)
126
Steven Rostedte3d6bf02009-03-03 13:53:07 -0500127#define RB_EVNT_HDR_SIZE (offsetof(struct ring_buffer_event, array))
Andrew Morton67d34722009-01-09 12:27:09 -0800128#define RB_ALIGNMENT 4U
Lai Jiangshan334d4162009-04-24 11:27:05 +0800129#define RB_MAX_SMALL_DATA (RB_ALIGNMENT * RINGBUF_TYPE_DATA_TYPE_LEN_MAX)
Steven Rostedtc7b09302009-06-11 11:12:00 -0400130#define RB_EVNT_MIN_SIZE 8U /* two 32bit words */
Lai Jiangshan334d4162009-04-24 11:27:05 +0800131
James Hogan649508f2012-05-30 12:11:19 +0100132#ifndef CONFIG_HAVE_64BIT_ALIGNED_ACCESS
Steven Rostedt22710482010-03-18 17:54:19 -0400133# define RB_FORCE_8BYTE_ALIGNMENT 0
134# define RB_ARCH_ALIGNMENT RB_ALIGNMENT
135#else
136# define RB_FORCE_8BYTE_ALIGNMENT 1
137# define RB_ARCH_ALIGNMENT 8U
138#endif
139
James Hogan649508f2012-05-30 12:11:19 +0100140#define RB_ALIGN_DATA __aligned(RB_ARCH_ALIGNMENT)
141
Lai Jiangshan334d4162009-04-24 11:27:05 +0800142/* define RINGBUF_TYPE_DATA for 'case RINGBUF_TYPE_DATA:' */
143#define RINGBUF_TYPE_DATA 0 ... RINGBUF_TYPE_DATA_TYPE_LEN_MAX
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400144
145enum {
146 RB_LEN_TIME_EXTEND = 8,
Tom Zanussidc4e2802018-01-15 20:51:40 -0600147 RB_LEN_TIME_STAMP = 8,
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400148};
149
Steven Rostedt69d1b832010-10-07 18:18:05 -0400150#define skip_time_extend(event) \
151 ((struct ring_buffer_event *)((char *)event + RB_LEN_TIME_EXTEND))
152
Tom Zanussidc4e2802018-01-15 20:51:40 -0600153#define extended_time(event) \
154 (event->type_len >= RINGBUF_TYPE_TIME_EXTEND)
155
Tom Zanussi2d622712009-03-22 03:30:49 -0500156static inline int rb_null_event(struct ring_buffer_event *event)
157{
Steven Rostedta1863c22009-09-03 10:23:58 -0400158 return event->type_len == RINGBUF_TYPE_PADDING && !event->time_delta;
Tom Zanussi2d622712009-03-22 03:30:49 -0500159}
160
161static void rb_event_set_padding(struct ring_buffer_event *event)
162{
Steven Rostedta1863c22009-09-03 10:23:58 -0400163 /* padding has a NULL time_delta */
Lai Jiangshan334d4162009-04-24 11:27:05 +0800164 event->type_len = RINGBUF_TYPE_PADDING;
Tom Zanussi2d622712009-03-22 03:30:49 -0500165 event->time_delta = 0;
166}
167
Tom Zanussi2d622712009-03-22 03:30:49 -0500168static unsigned
169rb_event_data_length(struct ring_buffer_event *event)
170{
171 unsigned length;
172
Lai Jiangshan334d4162009-04-24 11:27:05 +0800173 if (event->type_len)
174 length = event->type_len * RB_ALIGNMENT;
Tom Zanussi2d622712009-03-22 03:30:49 -0500175 else
176 length = event->array[0];
177 return length + RB_EVNT_HDR_SIZE;
178}
179
Steven Rostedt69d1b832010-10-07 18:18:05 -0400180/*
181 * Return the length of the given event. Will return
182 * the length of the time extend if the event is a
183 * time extend.
184 */
185static inline unsigned
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400186rb_event_length(struct ring_buffer_event *event)
187{
Lai Jiangshan334d4162009-04-24 11:27:05 +0800188 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400189 case RINGBUF_TYPE_PADDING:
Tom Zanussi2d622712009-03-22 03:30:49 -0500190 if (rb_null_event(event))
191 /* undefined */
192 return -1;
Lai Jiangshan334d4162009-04-24 11:27:05 +0800193 return event->array[0] + RB_EVNT_HDR_SIZE;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400194
195 case RINGBUF_TYPE_TIME_EXTEND:
196 return RB_LEN_TIME_EXTEND;
197
198 case RINGBUF_TYPE_TIME_STAMP:
199 return RB_LEN_TIME_STAMP;
200
201 case RINGBUF_TYPE_DATA:
Tom Zanussi2d622712009-03-22 03:30:49 -0500202 return rb_event_data_length(event);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400203 default:
204 BUG();
205 }
206 /* not hit */
207 return 0;
208}
209
Steven Rostedt69d1b832010-10-07 18:18:05 -0400210/*
211 * Return total length of time extend and data,
212 * or just the event length for all other events.
213 */
214static inline unsigned
215rb_event_ts_length(struct ring_buffer_event *event)
216{
217 unsigned len = 0;
218
Tom Zanussidc4e2802018-01-15 20:51:40 -0600219 if (extended_time(event)) {
Steven Rostedt69d1b832010-10-07 18:18:05 -0400220 /* time extends include the data event after it */
221 len = RB_LEN_TIME_EXTEND;
222 event = skip_time_extend(event);
223 }
224 return len + rb_event_length(event);
225}
226
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400227/**
228 * ring_buffer_event_length - return the length of the event
229 * @event: the event to get the length of
Steven Rostedt69d1b832010-10-07 18:18:05 -0400230 *
231 * Returns the size of the data load of a data event.
232 * If the event is something other than a data event, it
233 * returns the size of the event itself. With the exception
234 * of a TIME EXTEND, where it still returns the size of the
235 * data load of the data event after it.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400236 */
237unsigned ring_buffer_event_length(struct ring_buffer_event *event)
238{
Steven Rostedt69d1b832010-10-07 18:18:05 -0400239 unsigned length;
240
Tom Zanussidc4e2802018-01-15 20:51:40 -0600241 if (extended_time(event))
Steven Rostedt69d1b832010-10-07 18:18:05 -0400242 event = skip_time_extend(event);
243
244 length = rb_event_length(event);
Lai Jiangshan334d4162009-04-24 11:27:05 +0800245 if (event->type_len > RINGBUF_TYPE_DATA_TYPE_LEN_MAX)
Robert Richter465634a2009-01-07 15:32:11 +0100246 return length;
247 length -= RB_EVNT_HDR_SIZE;
248 if (length > RB_MAX_SMALL_DATA + sizeof(event->array[0]))
249 length -= sizeof(event->array[0]);
250 return length;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400251}
Robert Richterc4f50182008-12-11 16:49:22 +0100252EXPORT_SYMBOL_GPL(ring_buffer_event_length);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400253
254/* inline for ring buffer fast paths */
Steven Rostedt (Red Hat)929ddbf2016-11-23 11:40:34 -0500255static __always_inline void *
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400256rb_event_data(struct ring_buffer_event *event)
257{
Tom Zanussidc4e2802018-01-15 20:51:40 -0600258 if (extended_time(event))
Steven Rostedt69d1b832010-10-07 18:18:05 -0400259 event = skip_time_extend(event);
Lai Jiangshan334d4162009-04-24 11:27:05 +0800260 BUG_ON(event->type_len > RINGBUF_TYPE_DATA_TYPE_LEN_MAX);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400261 /* If length is in len field, then array[0] has the data */
Lai Jiangshan334d4162009-04-24 11:27:05 +0800262 if (event->type_len)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400263 return (void *)&event->array[0];
264 /* Otherwise length is in array[0] and array[1] has the data */
265 return (void *)&event->array[1];
266}
267
268/**
269 * ring_buffer_event_data - return the data of the event
270 * @event: the event to get the data from
271 */
272void *ring_buffer_event_data(struct ring_buffer_event *event)
273{
274 return rb_event_data(event);
275}
Robert Richterc4f50182008-12-11 16:49:22 +0100276EXPORT_SYMBOL_GPL(ring_buffer_event_data);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400277
278#define for_each_buffer_cpu(buffer, cpu) \
Rusty Russell9e01c1b2009-01-01 10:12:22 +1030279 for_each_cpu(cpu, buffer->cpumask)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400280
281#define TS_SHIFT 27
282#define TS_MASK ((1ULL << TS_SHIFT) - 1)
283#define TS_DELTA_TEST (~TS_MASK)
284
Tom Zanussidc4e2802018-01-15 20:51:40 -0600285/**
286 * ring_buffer_event_time_stamp - return the event's extended timestamp
287 * @event: the event to get the timestamp of
288 *
289 * Returns the extended timestamp associated with a data event.
290 * An extended time_stamp is a 64-bit timestamp represented
291 * internally in a special way that makes the best use of space
292 * contained within a ring buffer event. This function decodes
293 * it and maps it to a straight u64 value.
294 */
295u64 ring_buffer_event_time_stamp(struct ring_buffer_event *event)
296{
297 u64 ts;
298
299 ts = event->array[0];
300 ts <<= TS_SHIFT;
301 ts += event->time_delta;
302
303 return ts;
304}
305
Steven Rostedt66a8cb92010-03-31 13:21:56 -0400306/* Flag when events were overwritten */
307#define RB_MISSED_EVENTS (1 << 31)
Steven Rostedtff0ff842010-03-31 22:11:42 -0400308/* Missed count stored at end */
309#define RB_MISSED_STORED (1 << 30)
Steven Rostedt66a8cb92010-03-31 13:21:56 -0400310
Steven Rostedt (VMware)45d8b802017-12-22 20:32:35 -0500311#define RB_MISSED_FLAGS (RB_MISSED_EVENTS|RB_MISSED_STORED)
312
Steven Rostedtabc9b562008-12-02 15:34:06 -0500313struct buffer_data_page {
Steven Rostedte4c2ce82008-10-01 11:14:54 -0400314 u64 time_stamp; /* page time stamp */
Wenji Huangc3706f02009-02-10 01:03:18 -0500315 local_t commit; /* write committed index */
James Hogan649508f2012-05-30 12:11:19 +0100316 unsigned char data[] RB_ALIGN_DATA; /* data of buffer page */
Steven Rostedtabc9b562008-12-02 15:34:06 -0500317};
318
Steven Rostedt77ae3652009-03-27 11:00:29 -0400319/*
320 * Note, the buffer_page list must be first. The buffer pages
321 * are allocated in cache lines, which means that each buffer
322 * page will be at the beginning of a cache line, and thus
323 * the least significant bits will be zero. We use this to
324 * add flags in the list struct pointers, to make the ring buffer
325 * lockless.
326 */
Steven Rostedtabc9b562008-12-02 15:34:06 -0500327struct buffer_page {
Steven Rostedt778c55d2009-05-01 18:44:45 -0400328 struct list_head list; /* list of buffer pages */
Steven Rostedtabc9b562008-12-02 15:34:06 -0500329 local_t write; /* index for next write */
Steven Rostedt6f807ac2008-10-04 02:00:58 -0400330 unsigned read; /* index for next read */
Steven Rostedt778c55d2009-05-01 18:44:45 -0400331 local_t entries; /* entries on this page */
Steven Rostedtff0ff842010-03-31 22:11:42 -0400332 unsigned long real_end; /* real end of data */
Steven Rostedtabc9b562008-12-02 15:34:06 -0500333 struct buffer_data_page *page; /* Actual data page */
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400334};
335
Steven Rostedt77ae3652009-03-27 11:00:29 -0400336/*
337 * The buffer page counters, write and entries, must be reset
338 * atomically when crossing page boundaries. To synchronize this
339 * update, two counters are inserted into the number. One is
340 * the actual counter for the write position or count on the page.
341 *
342 * The other is a counter of updaters. Before an update happens
343 * the update partition of the counter is incremented. This will
344 * allow the updater to update the counter atomically.
345 *
346 * The counter is 20 bits, and the state data is 12.
347 */
348#define RB_WRITE_MASK 0xfffff
349#define RB_WRITE_INTCNT (1 << 20)
350
Steven Rostedt044fa782008-12-02 23:50:03 -0500351static void rb_init_page(struct buffer_data_page *bpage)
Steven Rostedtabc9b562008-12-02 15:34:06 -0500352{
Steven Rostedt044fa782008-12-02 23:50:03 -0500353 local_set(&bpage->commit, 0);
Steven Rostedtabc9b562008-12-02 15:34:06 -0500354}
355
Steven Rostedt474d32b2009-03-03 19:51:40 -0500356/**
357 * ring_buffer_page_len - the size of data on the page.
358 * @page: The page to read
359 *
360 * Returns the amount of data on the page, including buffer page header.
361 */
Steven Rostedtef7a4a12009-03-03 00:27:49 -0500362size_t ring_buffer_page_len(void *page)
363{
Steven Rostedt (VMware)45d8b802017-12-22 20:32:35 -0500364 struct buffer_data_page *bpage = page;
365
366 return (local_read(&bpage->commit) & ~RB_MISSED_FLAGS)
Steven Rostedt474d32b2009-03-03 19:51:40 -0500367 + BUF_PAGE_HDR_SIZE;
Steven Rostedtef7a4a12009-03-03 00:27:49 -0500368}
369
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400370/*
Steven Rostedted568292008-09-29 23:02:40 -0400371 * Also stolen from mm/slob.c. Thanks to Mathieu Desnoyers for pointing
372 * this issue out.
373 */
Andrew Morton34a148b2009-01-09 12:27:09 -0800374static void free_buffer_page(struct buffer_page *bpage)
Steven Rostedted568292008-09-29 23:02:40 -0400375{
Andrew Morton34a148b2009-01-09 12:27:09 -0800376 free_page((unsigned long)bpage->page);
Steven Rostedte4c2ce82008-10-01 11:14:54 -0400377 kfree(bpage);
Steven Rostedted568292008-09-29 23:02:40 -0400378}
379
380/*
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400381 * We need to fit the time_stamp delta into 27 bits.
382 */
383static inline int test_time_stamp(u64 delta)
384{
385 if (delta & TS_DELTA_TEST)
386 return 1;
387 return 0;
388}
389
Steven Rostedt474d32b2009-03-03 19:51:40 -0500390#define BUF_PAGE_SIZE (PAGE_SIZE - BUF_PAGE_HDR_SIZE)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400391
Steven Rostedtbe957c42009-05-11 14:42:53 -0400392/* Max payload is BUF_PAGE_SIZE - header (8bytes) */
393#define BUF_MAX_DATA_SIZE (BUF_PAGE_SIZE - (sizeof(u32) * 2))
394
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400395int ring_buffer_print_page_header(struct trace_seq *s)
396{
397 struct buffer_data_page field;
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400398
Steven Rostedt (Red Hat)c0cd93a2014-11-12 11:49:00 -0500399 trace_seq_printf(s, "\tfield: u64 timestamp;\t"
400 "offset:0;\tsize:%u;\tsigned:%u;\n",
401 (unsigned int)sizeof(field.time_stamp),
402 (unsigned int)is_signed_type(u64));
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400403
Steven Rostedt (Red Hat)c0cd93a2014-11-12 11:49:00 -0500404 trace_seq_printf(s, "\tfield: local_t commit;\t"
405 "offset:%u;\tsize:%u;\tsigned:%u;\n",
406 (unsigned int)offsetof(typeof(field), commit),
407 (unsigned int)sizeof(field.commit),
408 (unsigned int)is_signed_type(long));
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400409
Steven Rostedt (Red Hat)c0cd93a2014-11-12 11:49:00 -0500410 trace_seq_printf(s, "\tfield: int overwrite;\t"
411 "offset:%u;\tsize:%u;\tsigned:%u;\n",
412 (unsigned int)offsetof(typeof(field), commit),
413 1,
414 (unsigned int)is_signed_type(long));
Steven Rostedt66a8cb92010-03-31 13:21:56 -0400415
Steven Rostedt (Red Hat)c0cd93a2014-11-12 11:49:00 -0500416 trace_seq_printf(s, "\tfield: char data;\t"
417 "offset:%u;\tsize:%u;\tsigned:%u;\n",
418 (unsigned int)offsetof(typeof(field), data),
419 (unsigned int)BUF_PAGE_SIZE,
420 (unsigned int)is_signed_type(char));
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400421
Steven Rostedt (Red Hat)c0cd93a2014-11-12 11:49:00 -0500422 return !trace_seq_has_overflowed(s);
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400423}
424
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500425struct rb_irq_work {
426 struct irq_work work;
427 wait_queue_head_t waiters;
Steven Rostedt (Red Hat)1e0d6712015-02-10 22:14:53 -0500428 wait_queue_head_t full_waiters;
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500429 bool waiters_pending;
Steven Rostedt (Red Hat)1e0d6712015-02-10 22:14:53 -0500430 bool full_waiters_pending;
431 bool wakeup_full;
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500432};
433
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400434/*
Steven Rostedt (Red Hat)fcc742e2015-05-28 17:13:14 -0400435 * Structure to hold event state and handle nested events.
436 */
437struct rb_event_info {
438 u64 ts;
439 u64 delta;
440 unsigned long length;
441 struct buffer_page *tail_page;
442 int add_timestamp;
443};
444
445/*
Steven Rostedt (Red Hat)a497adb2015-05-29 10:32:28 -0400446 * Used for which event context the event is in.
447 * NMI = 0
448 * IRQ = 1
449 * SOFTIRQ = 2
450 * NORMAL = 3
451 *
452 * See trace_recursive_lock() comment below for more details.
453 */
454enum {
455 RB_CTX_NMI,
456 RB_CTX_IRQ,
457 RB_CTX_SOFTIRQ,
458 RB_CTX_NORMAL,
459 RB_CTX_MAX
460};
461
462/*
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400463 * head_page == tail_page && head == tail then buffer is empty.
464 */
465struct ring_buffer_per_cpu {
466 int cpu;
Richard Kennedy985023d2010-03-25 11:27:36 +0000467 atomic_t record_disabled;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400468 struct ring_buffer *buffer;
Thomas Gleixner5389f6f2009-07-25 17:13:33 +0200469 raw_spinlock_t reader_lock; /* serialize readers */
Thomas Gleixner445c8952009-12-02 19:49:50 +0100470 arch_spinlock_t lock;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400471 struct lock_class_key lock_key;
Steven Rostedt (VMware)73a757e2017-05-01 09:35:09 -0400472 struct buffer_data_page *free_page;
Steven Rostedt (Red Hat)9b94a8f2016-05-12 11:01:24 -0400473 unsigned long nr_pages;
Steven Rostedt (Red Hat)58a09ec2015-05-27 10:27:47 -0400474 unsigned int current_context;
Steven Rostedt3adc54f2009-03-30 15:32:01 -0400475 struct list_head *pages;
Steven Rostedt6f807ac2008-10-04 02:00:58 -0400476 struct buffer_page *head_page; /* read from head */
477 struct buffer_page *tail_page; /* write to tail */
Wenji Huangc3706f02009-02-10 01:03:18 -0500478 struct buffer_page *commit_page; /* committed pages */
Steven Rostedtd7690412008-10-01 00:29:53 -0400479 struct buffer_page *reader_page;
Steven Rostedt66a8cb92010-03-31 13:21:56 -0400480 unsigned long lost_events;
481 unsigned long last_overrun;
Steven Rostedt (VMware)8e012062018-02-07 17:26:32 -0500482 unsigned long nest;
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -0700483 local_t entries_bytes;
Steven Rostedte4906ef2009-04-30 20:49:44 -0400484 local_t entries;
Slava Pestov884bfe82011-07-15 14:23:58 -0700485 local_t overrun;
486 local_t commit_overrun;
487 local_t dropped_events;
Steven Rostedtfa743952009-06-16 12:37:57 -0400488 local_t committing;
489 local_t commits;
Steven Rostedt (VMware)2c2b0a72018-11-29 20:32:26 -0500490 local_t pages_touched;
491 local_t pages_read;
Steven Rostedt (VMware)03329f92018-11-29 21:38:42 -0500492 long last_pages_touch;
Steven Rostedt (VMware)2c2b0a72018-11-29 20:32:26 -0500493 size_t shortest_full;
Steven Rostedt77ae3652009-03-27 11:00:29 -0400494 unsigned long read;
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -0700495 unsigned long read_bytes;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400496 u64 write_stamp;
497 u64 read_stamp;
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -0800498 /* ring buffer pages to update, > 0 to add, < 0 to remove */
Steven Rostedt (Red Hat)9b94a8f2016-05-12 11:01:24 -0400499 long nr_pages_to_update;
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -0800500 struct list_head new_pages; /* new pages to add */
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -0700501 struct work_struct update_pages_work;
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -0700502 struct completion update_done;
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500503
504 struct rb_irq_work irq_work;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400505};
506
507struct ring_buffer {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400508 unsigned flags;
509 int cpus;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400510 atomic_t record_disabled;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -0700511 atomic_t resize_disabled;
Arnaldo Carvalho de Melo00f62f62009-02-09 17:04:06 -0200512 cpumask_var_t cpumask;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400513
Peter Zijlstra1f8a6a12009-06-08 18:18:39 +0200514 struct lock_class_key *reader_lock_key;
515
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400516 struct mutex mutex;
517
518 struct ring_buffer_per_cpu **buffers;
Steven Rostedt554f7862009-03-11 22:00:13 -0400519
Sebastian Andrzej Siewiorb32614c2016-11-27 00:13:34 +0100520 struct hlist_node node;
Steven Rostedt37886f62009-03-17 17:22:06 -0400521 u64 (*clock)(void);
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500522
523 struct rb_irq_work irq_work;
Tom Zanussi00b41452018-01-15 20:51:39 -0600524 bool time_stamp_abs;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400525};
526
527struct ring_buffer_iter {
528 struct ring_buffer_per_cpu *cpu_buffer;
529 unsigned long head;
530 struct buffer_page *head_page;
Steven Rostedt492a74f2010-01-25 15:17:47 -0500531 struct buffer_page *cache_reader_page;
532 unsigned long cache_read;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400533 u64 read_stamp;
534};
535
Steven Rostedt (VMware)2c2b0a72018-11-29 20:32:26 -0500536/**
537 * ring_buffer_nr_pages - get the number of buffer pages in the ring buffer
538 * @buffer: The ring_buffer to get the number of pages from
539 * @cpu: The cpu of the ring_buffer to get the number of pages from
540 *
541 * Returns the number of pages used by a per_cpu buffer of the ring buffer.
542 */
543size_t ring_buffer_nr_pages(struct ring_buffer *buffer, int cpu)
544{
545 return buffer->buffers[cpu]->nr_pages;
546}
547
548/**
549 * ring_buffer_nr_pages_dirty - get the number of used pages in the ring buffer
550 * @buffer: The ring_buffer to get the number of pages from
551 * @cpu: The cpu of the ring_buffer to get the number of pages from
552 *
553 * Returns the number of pages that have content in the ring buffer.
554 */
555size_t ring_buffer_nr_dirty_pages(struct ring_buffer *buffer, int cpu)
556{
557 size_t read;
558 size_t cnt;
559
560 read = local_read(&buffer->buffers[cpu]->pages_read);
561 cnt = local_read(&buffer->buffers[cpu]->pages_touched);
562 /* The reader can read an empty page, but not more than that */
563 if (cnt < read) {
564 WARN_ON_ONCE(read > cnt + 1);
565 return 0;
566 }
567
568 return cnt - read;
569}
570
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500571/*
572 * rb_wake_up_waiters - wake up tasks waiting for ring buffer input
573 *
574 * Schedules a delayed work to wake up any task that is blocked on the
575 * ring buffer waiters queue.
576 */
577static void rb_wake_up_waiters(struct irq_work *work)
578{
579 struct rb_irq_work *rbwork = container_of(work, struct rb_irq_work, work);
580
581 wake_up_all(&rbwork->waiters);
Steven Rostedt (Red Hat)1e0d6712015-02-10 22:14:53 -0500582 if (rbwork->wakeup_full) {
583 rbwork->wakeup_full = false;
584 wake_up_all(&rbwork->full_waiters);
585 }
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500586}
587
588/**
589 * ring_buffer_wait - wait for input to the ring buffer
590 * @buffer: buffer to wait on
591 * @cpu: the cpu buffer to wait on
Rabin Vincente30f53a2014-11-10 19:46:34 +0100592 * @full: wait until a full page is available, if @cpu != RING_BUFFER_ALL_CPUS
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500593 *
594 * If @cpu == RING_BUFFER_ALL_CPUS then the task will wake up as soon
595 * as data is added to any of the @buffer's cpu buffers. Otherwise
596 * it will wait for data to be added to a specific cpu buffer.
597 */
Steven Rostedt (VMware)2c2b0a72018-11-29 20:32:26 -0500598int ring_buffer_wait(struct ring_buffer *buffer, int cpu, int full)
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500599{
Rabin Vincente30f53a2014-11-10 19:46:34 +0100600 struct ring_buffer_per_cpu *uninitialized_var(cpu_buffer);
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500601 DEFINE_WAIT(wait);
602 struct rb_irq_work *work;
Rabin Vincente30f53a2014-11-10 19:46:34 +0100603 int ret = 0;
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500604
605 /*
606 * Depending on what the caller is waiting for, either any
607 * data in any cpu buffer, or a specific buffer, put the
608 * caller on the appropriate wait queue.
609 */
Steven Rostedt (Red Hat)1e0d6712015-02-10 22:14:53 -0500610 if (cpu == RING_BUFFER_ALL_CPUS) {
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500611 work = &buffer->irq_work;
Steven Rostedt (Red Hat)1e0d6712015-02-10 22:14:53 -0500612 /* Full only makes sense on per cpu reads */
Steven Rostedt (VMware)2c2b0a72018-11-29 20:32:26 -0500613 full = 0;
Steven Rostedt (Red Hat)1e0d6712015-02-10 22:14:53 -0500614 } else {
Steven Rostedt (Red Hat)8b8b3682014-06-10 09:46:00 -0400615 if (!cpumask_test_cpu(cpu, buffer->cpumask))
616 return -ENODEV;
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500617 cpu_buffer = buffer->buffers[cpu];
618 work = &cpu_buffer->irq_work;
619 }
620
621
Rabin Vincente30f53a2014-11-10 19:46:34 +0100622 while (true) {
Steven Rostedt (Red Hat)1e0d6712015-02-10 22:14:53 -0500623 if (full)
624 prepare_to_wait(&work->full_waiters, &wait, TASK_INTERRUPTIBLE);
625 else
626 prepare_to_wait(&work->waiters, &wait, TASK_INTERRUPTIBLE);
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500627
Rabin Vincente30f53a2014-11-10 19:46:34 +0100628 /*
629 * The events can happen in critical sections where
630 * checking a work queue can cause deadlocks.
631 * After adding a task to the queue, this flag is set
632 * only to notify events to try to wake up the queue
633 * using irq_work.
634 *
635 * We don't clear it even if the buffer is no longer
636 * empty. The flag only causes the next event to run
637 * irq_work to do the work queue wake up. The worse
638 * that can happen if we race with !trace_empty() is that
639 * an event will cause an irq_work to try to wake up
640 * an empty queue.
641 *
642 * There's no reason to protect this flag either, as
643 * the work queue and irq_work logic will do the necessary
644 * synchronization for the wake ups. The only thing
645 * that is necessary is that the wake up happens after
646 * a task has been queued. It's OK for spurious wake ups.
647 */
Steven Rostedt (Red Hat)1e0d6712015-02-10 22:14:53 -0500648 if (full)
649 work->full_waiters_pending = true;
650 else
651 work->waiters_pending = true;
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500652
Rabin Vincente30f53a2014-11-10 19:46:34 +0100653 if (signal_pending(current)) {
654 ret = -EINTR;
655 break;
656 }
657
658 if (cpu == RING_BUFFER_ALL_CPUS && !ring_buffer_empty(buffer))
659 break;
660
661 if (cpu != RING_BUFFER_ALL_CPUS &&
662 !ring_buffer_empty_cpu(buffer, cpu)) {
663 unsigned long flags;
664 bool pagebusy;
Steven Rostedt (VMware)2c2b0a72018-11-29 20:32:26 -0500665 size_t nr_pages;
666 size_t dirty;
Rabin Vincente30f53a2014-11-10 19:46:34 +0100667
668 if (!full)
669 break;
670
671 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
672 pagebusy = cpu_buffer->reader_page == cpu_buffer->commit_page;
Steven Rostedt (VMware)2c2b0a72018-11-29 20:32:26 -0500673 nr_pages = cpu_buffer->nr_pages;
674 dirty = ring_buffer_nr_dirty_pages(buffer, cpu);
675 if (!cpu_buffer->shortest_full ||
676 cpu_buffer->shortest_full < full)
677 cpu_buffer->shortest_full = full;
Rabin Vincente30f53a2014-11-10 19:46:34 +0100678 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt (VMware)2c2b0a72018-11-29 20:32:26 -0500679 if (!pagebusy &&
680 (!nr_pages || (dirty * 100) > full * nr_pages))
Rabin Vincente30f53a2014-11-10 19:46:34 +0100681 break;
682 }
683
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500684 schedule();
Rabin Vincente30f53a2014-11-10 19:46:34 +0100685 }
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500686
Steven Rostedt (Red Hat)1e0d6712015-02-10 22:14:53 -0500687 if (full)
688 finish_wait(&work->full_waiters, &wait);
689 else
690 finish_wait(&work->waiters, &wait);
Rabin Vincente30f53a2014-11-10 19:46:34 +0100691
692 return ret;
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500693}
694
695/**
696 * ring_buffer_poll_wait - poll on buffer input
697 * @buffer: buffer to wait on
698 * @cpu: the cpu buffer to wait on
699 * @filp: the file descriptor
700 * @poll_table: The poll descriptor
701 *
702 * If @cpu == RING_BUFFER_ALL_CPUS then the task will wake up as soon
703 * as data is added to any of the @buffer's cpu buffers. Otherwise
704 * it will wait for data to be added to a specific cpu buffer.
705 *
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800706 * Returns EPOLLIN | EPOLLRDNORM if data exists in the buffers,
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500707 * zero otherwise.
708 */
Al Viroecf92702017-07-16 22:11:54 -0400709__poll_t ring_buffer_poll_wait(struct ring_buffer *buffer, int cpu,
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500710 struct file *filp, poll_table *poll_table)
711{
712 struct ring_buffer_per_cpu *cpu_buffer;
713 struct rb_irq_work *work;
714
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500715 if (cpu == RING_BUFFER_ALL_CPUS)
716 work = &buffer->irq_work;
717 else {
Steven Rostedt (Red Hat)6721cb62013-05-23 14:21:36 -0400718 if (!cpumask_test_cpu(cpu, buffer->cpumask))
719 return -EINVAL;
720
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500721 cpu_buffer = buffer->buffers[cpu];
722 work = &cpu_buffer->irq_work;
723 }
724
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500725 poll_wait(filp, &work->waiters, poll_table);
Josef Bacik4ce97db2014-08-25 13:59:41 -0400726 work->waiters_pending = true;
727 /*
728 * There's a tight race between setting the waiters_pending and
729 * checking if the ring buffer is empty. Once the waiters_pending bit
730 * is set, the next event will wake the task up, but we can get stuck
731 * if there's only a single event in.
732 *
733 * FIXME: Ideally, we need a memory barrier on the writer side as well,
734 * but adding a memory barrier to all events will cause too much of a
735 * performance hit in the fast path. We only need a memory barrier when
736 * the buffer goes from empty to having content. But as this race is
737 * extremely small, and it's not a problem if another event comes in, we
738 * will fix it later.
739 */
740 smp_mb();
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500741
742 if ((cpu == RING_BUFFER_ALL_CPUS && !ring_buffer_empty(buffer)) ||
743 (cpu != RING_BUFFER_ALL_CPUS && !ring_buffer_empty_cpu(buffer, cpu)))
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800744 return EPOLLIN | EPOLLRDNORM;
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500745 return 0;
746}
747
Steven Rostedtf536aaf2008-11-10 23:07:30 -0500748/* buffer may be either ring_buffer or ring_buffer_per_cpu */
Steven Rostedt077c5402009-09-03 19:53:46 -0400749#define RB_WARN_ON(b, cond) \
750 ({ \
751 int _____ret = unlikely(cond); \
752 if (_____ret) { \
753 if (__same_type(*(b), struct ring_buffer_per_cpu)) { \
754 struct ring_buffer_per_cpu *__b = \
755 (void *)b; \
756 atomic_inc(&__b->buffer->record_disabled); \
757 } else \
758 atomic_inc(&b->record_disabled); \
759 WARN_ON(1); \
760 } \
761 _____ret; \
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -0500762 })
Steven Rostedtf536aaf2008-11-10 23:07:30 -0500763
Steven Rostedt37886f62009-03-17 17:22:06 -0400764/* Up this if you want to test the TIME_EXTENTS and normalization */
765#define DEBUG_SHIFT 0
766
Jiri Olsa6d3f1e12009-10-23 19:36:19 -0400767static inline u64 rb_time_stamp(struct ring_buffer *buffer)
Steven Rostedt88eb0122009-05-11 16:28:23 -0400768{
769 /* shift to debug/test normalization and TIME_EXTENTS */
770 return buffer->clock() << DEBUG_SHIFT;
771}
772
Steven Rostedt37886f62009-03-17 17:22:06 -0400773u64 ring_buffer_time_stamp(struct ring_buffer *buffer, int cpu)
774{
775 u64 time;
776
777 preempt_disable_notrace();
Jiri Olsa6d3f1e12009-10-23 19:36:19 -0400778 time = rb_time_stamp(buffer);
Steven Rostedt37886f62009-03-17 17:22:06 -0400779 preempt_enable_no_resched_notrace();
780
781 return time;
782}
783EXPORT_SYMBOL_GPL(ring_buffer_time_stamp);
784
785void ring_buffer_normalize_time_stamp(struct ring_buffer *buffer,
786 int cpu, u64 *ts)
787{
788 /* Just stupid testing the normalize function and deltas */
789 *ts >>= DEBUG_SHIFT;
790}
791EXPORT_SYMBOL_GPL(ring_buffer_normalize_time_stamp);
792
Steven Rostedt77ae3652009-03-27 11:00:29 -0400793/*
794 * Making the ring buffer lockless makes things tricky.
795 * Although writes only happen on the CPU that they are on,
796 * and they only need to worry about interrupts. Reads can
797 * happen on any CPU.
798 *
799 * The reader page is always off the ring buffer, but when the
800 * reader finishes with a page, it needs to swap its page with
801 * a new one from the buffer. The reader needs to take from
802 * the head (writes go to the tail). But if a writer is in overwrite
803 * mode and wraps, it must push the head page forward.
804 *
805 * Here lies the problem.
806 *
807 * The reader must be careful to replace only the head page, and
808 * not another one. As described at the top of the file in the
809 * ASCII art, the reader sets its old page to point to the next
810 * page after head. It then sets the page after head to point to
811 * the old reader page. But if the writer moves the head page
812 * during this operation, the reader could end up with the tail.
813 *
814 * We use cmpxchg to help prevent this race. We also do something
815 * special with the page before head. We set the LSB to 1.
816 *
817 * When the writer must push the page forward, it will clear the
818 * bit that points to the head page, move the head, and then set
819 * the bit that points to the new head page.
820 *
821 * We also don't want an interrupt coming in and moving the head
822 * page on another writer. Thus we use the second LSB to catch
823 * that too. Thus:
824 *
825 * head->list->prev->next bit 1 bit 0
826 * ------- -------
827 * Normal page 0 0
828 * Points to head page 0 1
829 * New head page 1 0
830 *
831 * Note we can not trust the prev pointer of the head page, because:
832 *
833 * +----+ +-----+ +-----+
834 * | |------>| T |---X--->| N |
835 * | |<------| | | |
836 * +----+ +-----+ +-----+
837 * ^ ^ |
838 * | +-----+ | |
839 * +----------| R |----------+ |
840 * | |<-----------+
841 * +-----+
842 *
843 * Key: ---X--> HEAD flag set in pointer
844 * T Tail page
845 * R Reader page
846 * N Next page
847 *
848 * (see __rb_reserve_next() to see where this happens)
849 *
850 * What the above shows is that the reader just swapped out
851 * the reader page with a page in the buffer, but before it
852 * could make the new header point back to the new page added
853 * it was preempted by a writer. The writer moved forward onto
854 * the new page added by the reader and is about to move forward
855 * again.
856 *
857 * You can see, it is legitimate for the previous pointer of
858 * the head (or any page) not to point back to itself. But only
Steven Rostedt (VMware)6167c202018-05-16 11:17:06 -0400859 * temporarily.
Steven Rostedt77ae3652009-03-27 11:00:29 -0400860 */
861
862#define RB_PAGE_NORMAL 0UL
863#define RB_PAGE_HEAD 1UL
864#define RB_PAGE_UPDATE 2UL
865
866
867#define RB_FLAG_MASK 3UL
868
869/* PAGE_MOVED is not part of the mask */
870#define RB_PAGE_MOVED 4UL
871
872/*
873 * rb_list_head - remove any bit
874 */
875static struct list_head *rb_list_head(struct list_head *list)
876{
877 unsigned long val = (unsigned long)list;
878
879 return (struct list_head *)(val & ~RB_FLAG_MASK);
880}
881
882/*
Jiri Olsa6d3f1e12009-10-23 19:36:19 -0400883 * rb_is_head_page - test if the given page is the head page
Steven Rostedt77ae3652009-03-27 11:00:29 -0400884 *
885 * Because the reader may move the head_page pointer, we can
886 * not trust what the head page is (it may be pointing to
887 * the reader page). But if the next page is a header page,
888 * its flags will be non zero.
889 */
Jesper Juhl42b16b32011-01-17 00:09:38 +0100890static inline int
Steven Rostedt77ae3652009-03-27 11:00:29 -0400891rb_is_head_page(struct ring_buffer_per_cpu *cpu_buffer,
892 struct buffer_page *page, struct list_head *list)
893{
894 unsigned long val;
895
896 val = (unsigned long)list->next;
897
898 if ((val & ~RB_FLAG_MASK) != (unsigned long)&page->list)
899 return RB_PAGE_MOVED;
900
901 return val & RB_FLAG_MASK;
902}
903
904/*
905 * rb_is_reader_page
906 *
907 * The unique thing about the reader page, is that, if the
908 * writer is ever on it, the previous pointer never points
909 * back to the reader page.
910 */
Yaowei Bai06ca3202015-09-29 22:43:31 +0800911static bool rb_is_reader_page(struct buffer_page *page)
Steven Rostedt77ae3652009-03-27 11:00:29 -0400912{
913 struct list_head *list = page->list.prev;
914
915 return rb_list_head(list->next) != &page->list;
916}
917
918/*
919 * rb_set_list_to_head - set a list_head to be pointing to head.
920 */
921static void rb_set_list_to_head(struct ring_buffer_per_cpu *cpu_buffer,
922 struct list_head *list)
923{
924 unsigned long *ptr;
925
926 ptr = (unsigned long *)&list->next;
927 *ptr |= RB_PAGE_HEAD;
928 *ptr &= ~RB_PAGE_UPDATE;
929}
930
931/*
932 * rb_head_page_activate - sets up head page
933 */
934static void rb_head_page_activate(struct ring_buffer_per_cpu *cpu_buffer)
935{
936 struct buffer_page *head;
937
938 head = cpu_buffer->head_page;
939 if (!head)
940 return;
941
942 /*
943 * Set the previous list pointer to have the HEAD flag.
944 */
945 rb_set_list_to_head(cpu_buffer, head->list.prev);
946}
947
948static void rb_list_head_clear(struct list_head *list)
949{
950 unsigned long *ptr = (unsigned long *)&list->next;
951
952 *ptr &= ~RB_FLAG_MASK;
953}
954
955/*
Steven Rostedt (VMware)6167c202018-05-16 11:17:06 -0400956 * rb_head_page_deactivate - clears head page ptr (for free list)
Steven Rostedt77ae3652009-03-27 11:00:29 -0400957 */
958static void
959rb_head_page_deactivate(struct ring_buffer_per_cpu *cpu_buffer)
960{
961 struct list_head *hd;
962
963 /* Go through the whole list and clear any pointers found. */
964 rb_list_head_clear(cpu_buffer->pages);
965
966 list_for_each(hd, cpu_buffer->pages)
967 rb_list_head_clear(hd);
968}
969
970static int rb_head_page_set(struct ring_buffer_per_cpu *cpu_buffer,
971 struct buffer_page *head,
972 struct buffer_page *prev,
973 int old_flag, int new_flag)
974{
975 struct list_head *list;
976 unsigned long val = (unsigned long)&head->list;
977 unsigned long ret;
978
979 list = &prev->list;
980
981 val &= ~RB_FLAG_MASK;
982
Steven Rostedt08a40812009-09-14 09:31:35 -0400983 ret = cmpxchg((unsigned long *)&list->next,
984 val | old_flag, val | new_flag);
Steven Rostedt77ae3652009-03-27 11:00:29 -0400985
986 /* check if the reader took the page */
987 if ((ret & ~RB_FLAG_MASK) != val)
988 return RB_PAGE_MOVED;
989
990 return ret & RB_FLAG_MASK;
991}
992
993static int rb_head_page_set_update(struct ring_buffer_per_cpu *cpu_buffer,
994 struct buffer_page *head,
995 struct buffer_page *prev,
996 int old_flag)
997{
998 return rb_head_page_set(cpu_buffer, head, prev,
999 old_flag, RB_PAGE_UPDATE);
1000}
1001
1002static int rb_head_page_set_head(struct ring_buffer_per_cpu *cpu_buffer,
1003 struct buffer_page *head,
1004 struct buffer_page *prev,
1005 int old_flag)
1006{
1007 return rb_head_page_set(cpu_buffer, head, prev,
1008 old_flag, RB_PAGE_HEAD);
1009}
1010
1011static int rb_head_page_set_normal(struct ring_buffer_per_cpu *cpu_buffer,
1012 struct buffer_page *head,
1013 struct buffer_page *prev,
1014 int old_flag)
1015{
1016 return rb_head_page_set(cpu_buffer, head, prev,
1017 old_flag, RB_PAGE_NORMAL);
1018}
1019
1020static inline void rb_inc_page(struct ring_buffer_per_cpu *cpu_buffer,
1021 struct buffer_page **bpage)
1022{
1023 struct list_head *p = rb_list_head((*bpage)->list.next);
1024
1025 *bpage = list_entry(p, struct buffer_page, list);
1026}
1027
1028static struct buffer_page *
1029rb_set_head_page(struct ring_buffer_per_cpu *cpu_buffer)
1030{
1031 struct buffer_page *head;
1032 struct buffer_page *page;
1033 struct list_head *list;
1034 int i;
1035
1036 if (RB_WARN_ON(cpu_buffer, !cpu_buffer->head_page))
1037 return NULL;
1038
1039 /* sanity check */
1040 list = cpu_buffer->pages;
1041 if (RB_WARN_ON(cpu_buffer, rb_list_head(list->prev->next) != list))
1042 return NULL;
1043
1044 page = head = cpu_buffer->head_page;
1045 /*
1046 * It is possible that the writer moves the header behind
1047 * where we started, and we miss in one loop.
1048 * A second loop should grab the header, but we'll do
1049 * three loops just because I'm paranoid.
1050 */
1051 for (i = 0; i < 3; i++) {
1052 do {
1053 if (rb_is_head_page(cpu_buffer, page, page->list.prev)) {
1054 cpu_buffer->head_page = page;
1055 return page;
1056 }
1057 rb_inc_page(cpu_buffer, &page);
1058 } while (page != head);
1059 }
1060
1061 RB_WARN_ON(cpu_buffer, 1);
1062
1063 return NULL;
1064}
1065
1066static int rb_head_page_replace(struct buffer_page *old,
1067 struct buffer_page *new)
1068{
1069 unsigned long *ptr = (unsigned long *)&old->list.prev->next;
1070 unsigned long val;
1071 unsigned long ret;
1072
1073 val = *ptr & ~RB_FLAG_MASK;
1074 val |= RB_PAGE_HEAD;
1075
Steven Rostedt08a40812009-09-14 09:31:35 -04001076 ret = cmpxchg(ptr, val, (unsigned long)&new->list);
Steven Rostedt77ae3652009-03-27 11:00:29 -04001077
1078 return ret == val;
1079}
1080
1081/*
1082 * rb_tail_page_update - move the tail page forward
Steven Rostedt77ae3652009-03-27 11:00:29 -04001083 */
Steven Rostedt (Red Hat)70004982015-11-17 15:15:19 -05001084static void rb_tail_page_update(struct ring_buffer_per_cpu *cpu_buffer,
Steven Rostedt77ae3652009-03-27 11:00:29 -04001085 struct buffer_page *tail_page,
1086 struct buffer_page *next_page)
1087{
Steven Rostedt77ae3652009-03-27 11:00:29 -04001088 unsigned long old_entries;
1089 unsigned long old_write;
Steven Rostedt77ae3652009-03-27 11:00:29 -04001090
1091 /*
1092 * The tail page now needs to be moved forward.
1093 *
1094 * We need to reset the tail page, but without messing
1095 * with possible erasing of data brought in by interrupts
1096 * that have moved the tail page and are currently on it.
1097 *
1098 * We add a counter to the write field to denote this.
1099 */
1100 old_write = local_add_return(RB_WRITE_INTCNT, &next_page->write);
1101 old_entries = local_add_return(RB_WRITE_INTCNT, &next_page->entries);
1102
Steven Rostedt (VMware)2c2b0a72018-11-29 20:32:26 -05001103 local_inc(&cpu_buffer->pages_touched);
Steven Rostedt77ae3652009-03-27 11:00:29 -04001104 /*
1105 * Just make sure we have seen our old_write and synchronize
1106 * with any interrupts that come in.
1107 */
1108 barrier();
1109
1110 /*
1111 * If the tail page is still the same as what we think
1112 * it is, then it is up to us to update the tail
1113 * pointer.
1114 */
Steven Rostedt (Red Hat)85736362015-11-17 14:03:11 -05001115 if (tail_page == READ_ONCE(cpu_buffer->tail_page)) {
Steven Rostedt77ae3652009-03-27 11:00:29 -04001116 /* Zero the write counter */
1117 unsigned long val = old_write & ~RB_WRITE_MASK;
1118 unsigned long eval = old_entries & ~RB_WRITE_MASK;
1119
1120 /*
1121 * This will only succeed if an interrupt did
1122 * not come in and change it. In which case, we
1123 * do not want to modify it.
Lai Jiangshanda706d82009-07-15 16:27:30 +08001124 *
1125 * We add (void) to let the compiler know that we do not care
1126 * about the return value of these functions. We use the
1127 * cmpxchg to only update if an interrupt did not already
1128 * do it for us. If the cmpxchg fails, we don't care.
Steven Rostedt77ae3652009-03-27 11:00:29 -04001129 */
Lai Jiangshanda706d82009-07-15 16:27:30 +08001130 (void)local_cmpxchg(&next_page->write, old_write, val);
1131 (void)local_cmpxchg(&next_page->entries, old_entries, eval);
Steven Rostedt77ae3652009-03-27 11:00:29 -04001132
1133 /*
1134 * No need to worry about races with clearing out the commit.
1135 * it only can increment when a commit takes place. But that
1136 * only happens in the outer most nested commit.
1137 */
1138 local_set(&next_page->page->commit, 0);
1139
Steven Rostedt (Red Hat)70004982015-11-17 15:15:19 -05001140 /* Again, either we update tail_page or an interrupt does */
1141 (void)cmpxchg(&cpu_buffer->tail_page, tail_page, next_page);
Steven Rostedt77ae3652009-03-27 11:00:29 -04001142 }
Steven Rostedt77ae3652009-03-27 11:00:29 -04001143}
1144
1145static int rb_check_bpage(struct ring_buffer_per_cpu *cpu_buffer,
1146 struct buffer_page *bpage)
1147{
1148 unsigned long val = (unsigned long)bpage;
1149
1150 if (RB_WARN_ON(cpu_buffer, val & RB_FLAG_MASK))
1151 return 1;
1152
1153 return 0;
1154}
1155
1156/**
1157 * rb_check_list - make sure a pointer to a list has the last bits zero
1158 */
1159static int rb_check_list(struct ring_buffer_per_cpu *cpu_buffer,
1160 struct list_head *list)
1161{
1162 if (RB_WARN_ON(cpu_buffer, rb_list_head(list->prev) != list->prev))
1163 return 1;
1164 if (RB_WARN_ON(cpu_buffer, rb_list_head(list->next) != list->next))
1165 return 1;
1166 return 0;
1167}
1168
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001169/**
zhangwei(Jovi)d6118512013-07-15 16:32:50 +08001170 * rb_check_pages - integrity check of buffer pages
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001171 * @cpu_buffer: CPU buffer with pages to test
1172 *
Wenji Huangc3706f02009-02-10 01:03:18 -05001173 * As a safety measure we check to make sure the data pages have not
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001174 * been corrupted.
1175 */
1176static int rb_check_pages(struct ring_buffer_per_cpu *cpu_buffer)
1177{
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001178 struct list_head *head = cpu_buffer->pages;
Steven Rostedt044fa782008-12-02 23:50:03 -05001179 struct buffer_page *bpage, *tmp;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001180
Steven Rostedt308f7ee2012-05-16 19:46:32 -04001181 /* Reset the head page if it exists */
1182 if (cpu_buffer->head_page)
1183 rb_set_head_page(cpu_buffer);
1184
Steven Rostedt77ae3652009-03-27 11:00:29 -04001185 rb_head_page_deactivate(cpu_buffer);
1186
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05001187 if (RB_WARN_ON(cpu_buffer, head->next->prev != head))
1188 return -1;
1189 if (RB_WARN_ON(cpu_buffer, head->prev->next != head))
1190 return -1;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001191
Steven Rostedt77ae3652009-03-27 11:00:29 -04001192 if (rb_check_list(cpu_buffer, head))
1193 return -1;
1194
Steven Rostedt044fa782008-12-02 23:50:03 -05001195 list_for_each_entry_safe(bpage, tmp, head, list) {
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05001196 if (RB_WARN_ON(cpu_buffer,
Steven Rostedt044fa782008-12-02 23:50:03 -05001197 bpage->list.next->prev != &bpage->list))
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05001198 return -1;
1199 if (RB_WARN_ON(cpu_buffer,
Steven Rostedt044fa782008-12-02 23:50:03 -05001200 bpage->list.prev->next != &bpage->list))
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05001201 return -1;
Steven Rostedt77ae3652009-03-27 11:00:29 -04001202 if (rb_check_list(cpu_buffer, &bpage->list))
1203 return -1;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001204 }
1205
Steven Rostedt77ae3652009-03-27 11:00:29 -04001206 rb_head_page_activate(cpu_buffer);
1207
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001208 return 0;
1209}
1210
Steven Rostedt (Red Hat)9b94a8f2016-05-12 11:01:24 -04001211static int __rb_allocate_pages(long nr_pages, struct list_head *pages, int cpu)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001212{
Steven Rostedt044fa782008-12-02 23:50:03 -05001213 struct buffer_page *bpage, *tmp;
Steven Rostedt (VMware)927e56d2018-04-04 11:29:57 -04001214 bool user_thread = current->mm != NULL;
1215 gfp_t mflags;
Steven Rostedt (Red Hat)9b94a8f2016-05-12 11:01:24 -04001216 long i;
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001217
Steven Rostedt (VMware)927e56d2018-04-04 11:29:57 -04001218 /*
1219 * Check if the available memory is there first.
1220 * Note, si_mem_available() only gives us a rough estimate of available
1221 * memory. It may not be accurate. But we don't care, we just want
1222 * to prevent doing any allocation when it is obvious that it is
1223 * not going to succeed.
1224 */
Steven Rostedt (VMware)2a872fa2018-04-02 10:33:56 -04001225 i = si_mem_available();
1226 if (i < nr_pages)
1227 return -ENOMEM;
1228
Steven Rostedt (VMware)927e56d2018-04-04 11:29:57 -04001229 /*
1230 * __GFP_RETRY_MAYFAIL flag makes sure that the allocation fails
1231 * gracefully without invoking oom-killer and the system is not
1232 * destabilized.
1233 */
1234 mflags = GFP_KERNEL | __GFP_RETRY_MAYFAIL;
1235
1236 /*
1237 * If a user thread allocates too much, and si_mem_available()
1238 * reports there's enough memory, even though there is not.
1239 * Make sure the OOM killer kills this thread. This can happen
1240 * even with RETRY_MAYFAIL because another task may be doing
1241 * an allocation after this task has taken all memory.
1242 * This is the task the OOM killer needs to take out during this
1243 * loop, even if it was triggered by an allocation somewhere else.
1244 */
1245 if (user_thread)
1246 set_current_oom_origin();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001247 for (i = 0; i < nr_pages; i++) {
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07001248 struct page *page;
Steven Rostedt (VMware)927e56d2018-04-04 11:29:57 -04001249
Steven Rostedt044fa782008-12-02 23:50:03 -05001250 bpage = kzalloc_node(ALIGN(sizeof(*bpage), cache_line_size()),
Steven Rostedt (VMware)927e56d2018-04-04 11:29:57 -04001251 mflags, cpu_to_node(cpu));
Steven Rostedt044fa782008-12-02 23:50:03 -05001252 if (!bpage)
Steven Rostedte4c2ce82008-10-01 11:14:54 -04001253 goto free_pages;
Steven Rostedt77ae3652009-03-27 11:00:29 -04001254
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001255 list_add(&bpage->list, pages);
Steven Rostedt77ae3652009-03-27 11:00:29 -04001256
Steven Rostedt (VMware)927e56d2018-04-04 11:29:57 -04001257 page = alloc_pages_node(cpu_to_node(cpu), mflags, 0);
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07001258 if (!page)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001259 goto free_pages;
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07001260 bpage->page = page_address(page);
Steven Rostedt044fa782008-12-02 23:50:03 -05001261 rb_init_page(bpage->page);
Steven Rostedt (VMware)927e56d2018-04-04 11:29:57 -04001262
1263 if (user_thread && fatal_signal_pending(current))
1264 goto free_pages;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001265 }
Steven Rostedt (VMware)927e56d2018-04-04 11:29:57 -04001266 if (user_thread)
1267 clear_current_oom_origin();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001268
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001269 return 0;
1270
1271free_pages:
1272 list_for_each_entry_safe(bpage, tmp, pages, list) {
1273 list_del_init(&bpage->list);
1274 free_buffer_page(bpage);
1275 }
Steven Rostedt (VMware)927e56d2018-04-04 11:29:57 -04001276 if (user_thread)
1277 clear_current_oom_origin();
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001278
1279 return -ENOMEM;
1280}
1281
1282static int rb_allocate_pages(struct ring_buffer_per_cpu *cpu_buffer,
Steven Rostedt (Red Hat)9b94a8f2016-05-12 11:01:24 -04001283 unsigned long nr_pages)
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001284{
1285 LIST_HEAD(pages);
1286
1287 WARN_ON(!nr_pages);
1288
1289 if (__rb_allocate_pages(nr_pages, &pages, cpu_buffer->cpu))
1290 return -ENOMEM;
1291
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001292 /*
1293 * The ring buffer page list is a circular list that does not
1294 * start and end with a list head. All page list items point to
1295 * other pages.
1296 */
1297 cpu_buffer->pages = pages.next;
1298 list_del(&pages);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001299
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001300 cpu_buffer->nr_pages = nr_pages;
1301
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001302 rb_check_pages(cpu_buffer);
1303
1304 return 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001305}
1306
1307static struct ring_buffer_per_cpu *
Steven Rostedt (Red Hat)9b94a8f2016-05-12 11:01:24 -04001308rb_allocate_cpu_buffer(struct ring_buffer *buffer, long nr_pages, int cpu)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001309{
1310 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt044fa782008-12-02 23:50:03 -05001311 struct buffer_page *bpage;
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07001312 struct page *page;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001313 int ret;
1314
1315 cpu_buffer = kzalloc_node(ALIGN(sizeof(*cpu_buffer), cache_line_size()),
1316 GFP_KERNEL, cpu_to_node(cpu));
1317 if (!cpu_buffer)
1318 return NULL;
1319
1320 cpu_buffer->cpu = cpu;
1321 cpu_buffer->buffer = buffer;
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02001322 raw_spin_lock_init(&cpu_buffer->reader_lock);
Peter Zijlstra1f8a6a12009-06-08 18:18:39 +02001323 lockdep_set_class(&cpu_buffer->reader_lock, buffer->reader_lock_key);
Thomas Gleixneredc35bd2009-12-03 12:38:57 +01001324 cpu_buffer->lock = (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001325 INIT_WORK(&cpu_buffer->update_pages_work, update_pages_handler);
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001326 init_completion(&cpu_buffer->update_done);
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -05001327 init_irq_work(&cpu_buffer->irq_work.work, rb_wake_up_waiters);
Steven Rostedt (Red Hat)f1dc6722013-03-04 17:33:05 -05001328 init_waitqueue_head(&cpu_buffer->irq_work.waiters);
Steven Rostedt (Red Hat)1e0d6712015-02-10 22:14:53 -05001329 init_waitqueue_head(&cpu_buffer->irq_work.full_waiters);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001330
Steven Rostedt044fa782008-12-02 23:50:03 -05001331 bpage = kzalloc_node(ALIGN(sizeof(*bpage), cache_line_size()),
Steven Rostedte4c2ce82008-10-01 11:14:54 -04001332 GFP_KERNEL, cpu_to_node(cpu));
Steven Rostedt044fa782008-12-02 23:50:03 -05001333 if (!bpage)
Steven Rostedte4c2ce82008-10-01 11:14:54 -04001334 goto fail_free_buffer;
1335
Steven Rostedt77ae3652009-03-27 11:00:29 -04001336 rb_check_bpage(cpu_buffer, bpage);
1337
Steven Rostedt044fa782008-12-02 23:50:03 -05001338 cpu_buffer->reader_page = bpage;
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07001339 page = alloc_pages_node(cpu_to_node(cpu), GFP_KERNEL, 0);
1340 if (!page)
Steven Rostedte4c2ce82008-10-01 11:14:54 -04001341 goto fail_free_reader;
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07001342 bpage->page = page_address(page);
Steven Rostedt044fa782008-12-02 23:50:03 -05001343 rb_init_page(bpage->page);
Steven Rostedte4c2ce82008-10-01 11:14:54 -04001344
Steven Rostedtd7690412008-10-01 00:29:53 -04001345 INIT_LIST_HEAD(&cpu_buffer->reader_page->list);
Vaibhav Nagarnaik44b99462012-06-22 11:50:05 -07001346 INIT_LIST_HEAD(&cpu_buffer->new_pages);
Steven Rostedtd7690412008-10-01 00:29:53 -04001347
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001348 ret = rb_allocate_pages(cpu_buffer, nr_pages);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001349 if (ret < 0)
Steven Rostedtd7690412008-10-01 00:29:53 -04001350 goto fail_free_reader;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001351
1352 cpu_buffer->head_page
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001353 = list_entry(cpu_buffer->pages, struct buffer_page, list);
Steven Rostedtbf41a152008-10-04 02:00:59 -04001354 cpu_buffer->tail_page = cpu_buffer->commit_page = cpu_buffer->head_page;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001355
Steven Rostedt77ae3652009-03-27 11:00:29 -04001356 rb_head_page_activate(cpu_buffer);
1357
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001358 return cpu_buffer;
1359
Steven Rostedtd7690412008-10-01 00:29:53 -04001360 fail_free_reader:
1361 free_buffer_page(cpu_buffer->reader_page);
1362
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001363 fail_free_buffer:
1364 kfree(cpu_buffer);
1365 return NULL;
1366}
1367
1368static void rb_free_cpu_buffer(struct ring_buffer_per_cpu *cpu_buffer)
1369{
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001370 struct list_head *head = cpu_buffer->pages;
Steven Rostedt044fa782008-12-02 23:50:03 -05001371 struct buffer_page *bpage, *tmp;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001372
Steven Rostedtd7690412008-10-01 00:29:53 -04001373 free_buffer_page(cpu_buffer->reader_page);
1374
Steven Rostedt77ae3652009-03-27 11:00:29 -04001375 rb_head_page_deactivate(cpu_buffer);
1376
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001377 if (head) {
1378 list_for_each_entry_safe(bpage, tmp, head, list) {
1379 list_del_init(&bpage->list);
1380 free_buffer_page(bpage);
1381 }
1382 bpage = list_entry(head, struct buffer_page, list);
Steven Rostedt044fa782008-12-02 23:50:03 -05001383 free_buffer_page(bpage);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001384 }
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001385
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001386 kfree(cpu_buffer);
1387}
1388
1389/**
zhangwei(Jovi)d6118512013-07-15 16:32:50 +08001390 * __ring_buffer_alloc - allocate a new ring_buffer
Robert Richter68814b52008-11-24 12:24:12 +01001391 * @size: the size in bytes per cpu that is needed.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001392 * @flags: attributes to set for the ring buffer.
1393 *
1394 * Currently the only flag that is available is the RB_FL_OVERWRITE
1395 * flag. This flag means that the buffer will overwrite old data
1396 * when the buffer wraps. If this flag is not set, the buffer will
1397 * drop data when the tail hits the head.
1398 */
Peter Zijlstra1f8a6a12009-06-08 18:18:39 +02001399struct ring_buffer *__ring_buffer_alloc(unsigned long size, unsigned flags,
1400 struct lock_class_key *key)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001401{
1402 struct ring_buffer *buffer;
Steven Rostedt (Red Hat)9b94a8f2016-05-12 11:01:24 -04001403 long nr_pages;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001404 int bsize;
Steven Rostedt (Red Hat)9b94a8f2016-05-12 11:01:24 -04001405 int cpu;
Sebastian Andrzej Siewiorb32614c2016-11-27 00:13:34 +01001406 int ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001407
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001408 /* keep it in its own cache line */
1409 buffer = kzalloc(ALIGN(sizeof(*buffer), cache_line_size()),
1410 GFP_KERNEL);
1411 if (!buffer)
1412 return NULL;
1413
Sebastian Andrzej Siewiorb18cc3d2016-12-07 14:31:33 +01001414 if (!zalloc_cpumask_var(&buffer->cpumask, GFP_KERNEL))
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301415 goto fail_free_buffer;
1416
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001417 nr_pages = DIV_ROUND_UP(size, BUF_PAGE_SIZE);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001418 buffer->flags = flags;
Steven Rostedt37886f62009-03-17 17:22:06 -04001419 buffer->clock = trace_clock_local;
Peter Zijlstra1f8a6a12009-06-08 18:18:39 +02001420 buffer->reader_lock_key = key;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001421
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -05001422 init_irq_work(&buffer->irq_work.work, rb_wake_up_waiters);
Steven Rostedt (Red Hat)f1dc6722013-03-04 17:33:05 -05001423 init_waitqueue_head(&buffer->irq_work.waiters);
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -05001424
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001425 /* need at least two pages */
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001426 if (nr_pages < 2)
1427 nr_pages = 2;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001428
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001429 buffer->cpus = nr_cpu_ids;
1430
1431 bsize = sizeof(void *) * nr_cpu_ids;
1432 buffer->buffers = kzalloc(ALIGN(bsize, cache_line_size()),
1433 GFP_KERNEL);
1434 if (!buffer->buffers)
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301435 goto fail_free_cpumask;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001436
Sebastian Andrzej Siewiorb32614c2016-11-27 00:13:34 +01001437 cpu = raw_smp_processor_id();
1438 cpumask_set_cpu(cpu, buffer->cpumask);
1439 buffer->buffers[cpu] = rb_allocate_cpu_buffer(buffer, nr_pages, cpu);
1440 if (!buffer->buffers[cpu])
1441 goto fail_free_buffers;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001442
Sebastian Andrzej Siewiorb32614c2016-11-27 00:13:34 +01001443 ret = cpuhp_state_add_instance(CPUHP_TRACE_RB_PREPARE, &buffer->node);
1444 if (ret < 0)
1445 goto fail_free_buffers;
Steven Rostedt554f7862009-03-11 22:00:13 -04001446
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001447 mutex_init(&buffer->mutex);
1448
1449 return buffer;
1450
1451 fail_free_buffers:
1452 for_each_buffer_cpu(buffer, cpu) {
1453 if (buffer->buffers[cpu])
1454 rb_free_cpu_buffer(buffer->buffers[cpu]);
1455 }
1456 kfree(buffer->buffers);
1457
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301458 fail_free_cpumask:
1459 free_cpumask_var(buffer->cpumask);
1460
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001461 fail_free_buffer:
1462 kfree(buffer);
1463 return NULL;
1464}
Peter Zijlstra1f8a6a12009-06-08 18:18:39 +02001465EXPORT_SYMBOL_GPL(__ring_buffer_alloc);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001466
1467/**
1468 * ring_buffer_free - free a ring buffer.
1469 * @buffer: the buffer to free.
1470 */
1471void
1472ring_buffer_free(struct ring_buffer *buffer)
1473{
1474 int cpu;
1475
Sebastian Andrzej Siewiorb32614c2016-11-27 00:13:34 +01001476 cpuhp_state_remove_instance(CPUHP_TRACE_RB_PREPARE, &buffer->node);
Steven Rostedt554f7862009-03-11 22:00:13 -04001477
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001478 for_each_buffer_cpu(buffer, cpu)
1479 rb_free_cpu_buffer(buffer->buffers[cpu]);
1480
Eric Dumazetbd3f0222009-08-07 12:49:29 +02001481 kfree(buffer->buffers);
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301482 free_cpumask_var(buffer->cpumask);
1483
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001484 kfree(buffer);
1485}
Robert Richterc4f50182008-12-11 16:49:22 +01001486EXPORT_SYMBOL_GPL(ring_buffer_free);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001487
Steven Rostedt37886f62009-03-17 17:22:06 -04001488void ring_buffer_set_clock(struct ring_buffer *buffer,
1489 u64 (*clock)(void))
1490{
1491 buffer->clock = clock;
1492}
1493
Tom Zanussi00b41452018-01-15 20:51:39 -06001494void ring_buffer_set_time_stamp_abs(struct ring_buffer *buffer, bool abs)
1495{
1496 buffer->time_stamp_abs = abs;
1497}
1498
1499bool ring_buffer_time_stamp_abs(struct ring_buffer *buffer)
1500{
1501 return buffer->time_stamp_abs;
1502}
1503
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001504static void rb_reset_cpu(struct ring_buffer_per_cpu *cpu_buffer);
1505
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001506static inline unsigned long rb_page_entries(struct buffer_page *bpage)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001507{
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001508 return local_read(&bpage->entries) & RB_WRITE_MASK;
1509}
1510
1511static inline unsigned long rb_page_write(struct buffer_page *bpage)
1512{
1513 return local_read(&bpage->write) & RB_WRITE_MASK;
1514}
1515
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001516static int
Steven Rostedt (Red Hat)9b94a8f2016-05-12 11:01:24 -04001517rb_remove_pages(struct ring_buffer_per_cpu *cpu_buffer, unsigned long nr_pages)
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001518{
1519 struct list_head *tail_page, *to_remove, *next_page;
1520 struct buffer_page *to_remove_page, *tmp_iter_page;
1521 struct buffer_page *last_page, *first_page;
Steven Rostedt (Red Hat)9b94a8f2016-05-12 11:01:24 -04001522 unsigned long nr_removed;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001523 unsigned long head_bit;
1524 int page_entries;
1525
1526 head_bit = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001527
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02001528 raw_spin_lock_irq(&cpu_buffer->reader_lock);
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001529 atomic_inc(&cpu_buffer->record_disabled);
1530 /*
1531 * We don't race with the readers since we have acquired the reader
1532 * lock. We also don't race with writers after disabling recording.
1533 * This makes it easy to figure out the first and the last page to be
1534 * removed from the list. We unlink all the pages in between including
1535 * the first and last pages. This is done in a busy loop so that we
1536 * lose the least number of traces.
1537 * The pages are freed after we restart recording and unlock readers.
1538 */
1539 tail_page = &cpu_buffer->tail_page->list;
Steven Rostedt77ae3652009-03-27 11:00:29 -04001540
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001541 /*
1542 * tail page might be on reader page, we remove the next page
1543 * from the ring buffer
1544 */
1545 if (cpu_buffer->tail_page == cpu_buffer->reader_page)
1546 tail_page = rb_list_head(tail_page->next);
1547 to_remove = tail_page;
1548
1549 /* start of pages to remove */
1550 first_page = list_entry(rb_list_head(to_remove->next),
1551 struct buffer_page, list);
1552
1553 for (nr_removed = 0; nr_removed < nr_pages; nr_removed++) {
1554 to_remove = rb_list_head(to_remove)->next;
1555 head_bit |= (unsigned long)to_remove & RB_PAGE_HEAD;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001556 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001557
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001558 next_page = rb_list_head(to_remove)->next;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001559
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001560 /*
1561 * Now we remove all pages between tail_page and next_page.
1562 * Make sure that we have head_bit value preserved for the
1563 * next page
1564 */
1565 tail_page->next = (struct list_head *)((unsigned long)next_page |
1566 head_bit);
1567 next_page = rb_list_head(next_page);
1568 next_page->prev = tail_page;
1569
1570 /* make sure pages points to a valid page in the ring buffer */
1571 cpu_buffer->pages = next_page;
1572
1573 /* update head page */
1574 if (head_bit)
1575 cpu_buffer->head_page = list_entry(next_page,
1576 struct buffer_page, list);
1577
1578 /*
1579 * change read pointer to make sure any read iterators reset
1580 * themselves
1581 */
1582 cpu_buffer->read = 0;
1583
1584 /* pages are removed, resume tracing and then free the pages */
1585 atomic_dec(&cpu_buffer->record_disabled);
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02001586 raw_spin_unlock_irq(&cpu_buffer->reader_lock);
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001587
1588 RB_WARN_ON(cpu_buffer, list_empty(cpu_buffer->pages));
1589
1590 /* last buffer page to remove */
1591 last_page = list_entry(rb_list_head(to_remove), struct buffer_page,
1592 list);
1593 tmp_iter_page = first_page;
1594
1595 do {
Vaibhav Nagarnaik83f36552018-09-07 15:31:29 -07001596 cond_resched();
1597
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001598 to_remove_page = tmp_iter_page;
1599 rb_inc_page(cpu_buffer, &tmp_iter_page);
1600
1601 /* update the counters */
1602 page_entries = rb_page_entries(to_remove_page);
1603 if (page_entries) {
1604 /*
1605 * If something was added to this page, it was full
1606 * since it is not the tail page. So we deduct the
1607 * bytes consumed in ring buffer from here.
Vaibhav Nagarnaik48fdc722012-06-29 12:31:41 -07001608 * Increment overrun to account for the lost events.
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001609 */
Vaibhav Nagarnaik48fdc722012-06-29 12:31:41 -07001610 local_add(page_entries, &cpu_buffer->overrun);
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001611 local_sub(BUF_PAGE_SIZE, &cpu_buffer->entries_bytes);
1612 }
1613
1614 /*
1615 * We have already removed references to this list item, just
1616 * free up the buffer_page and its page
1617 */
1618 free_buffer_page(to_remove_page);
1619 nr_removed--;
1620
1621 } while (to_remove_page != last_page);
1622
1623 RB_WARN_ON(cpu_buffer, nr_removed);
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001624
1625 return nr_removed == 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001626}
1627
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001628static int
1629rb_insert_pages(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001630{
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001631 struct list_head *pages = &cpu_buffer->new_pages;
1632 int retries, success;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001633
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02001634 raw_spin_lock_irq(&cpu_buffer->reader_lock);
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001635 /*
1636 * We are holding the reader lock, so the reader page won't be swapped
1637 * in the ring buffer. Now we are racing with the writer trying to
1638 * move head page and the tail page.
1639 * We are going to adapt the reader page update process where:
1640 * 1. We first splice the start and end of list of new pages between
1641 * the head page and its previous page.
1642 * 2. We cmpxchg the prev_page->next to point from head page to the
1643 * start of new pages list.
1644 * 3. Finally, we update the head->prev to the end of new list.
1645 *
1646 * We will try this process 10 times, to make sure that we don't keep
1647 * spinning.
1648 */
1649 retries = 10;
1650 success = 0;
1651 while (retries--) {
1652 struct list_head *head_page, *prev_page, *r;
1653 struct list_head *last_page, *first_page;
1654 struct list_head *head_page_with_bit;
Steven Rostedt77ae3652009-03-27 11:00:29 -04001655
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001656 head_page = &rb_set_head_page(cpu_buffer)->list;
Steven Rostedt54f7be52012-11-29 22:27:22 -05001657 if (!head_page)
1658 break;
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001659 prev_page = head_page->prev;
1660
1661 first_page = pages->next;
1662 last_page = pages->prev;
1663
1664 head_page_with_bit = (struct list_head *)
1665 ((unsigned long)head_page | RB_PAGE_HEAD);
1666
1667 last_page->next = head_page_with_bit;
1668 first_page->prev = prev_page;
1669
1670 r = cmpxchg(&prev_page->next, head_page_with_bit, first_page);
1671
1672 if (r == head_page_with_bit) {
1673 /*
1674 * yay, we replaced the page pointer to our new list,
1675 * now, we just have to update to head page's prev
1676 * pointer to point to end of list
1677 */
1678 head_page->prev = last_page;
1679 success = 1;
1680 break;
1681 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001682 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001683
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001684 if (success)
1685 INIT_LIST_HEAD(pages);
1686 /*
1687 * If we weren't successful in adding in new pages, warn and stop
1688 * tracing
1689 */
1690 RB_WARN_ON(cpu_buffer, !success);
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02001691 raw_spin_unlock_irq(&cpu_buffer->reader_lock);
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001692
1693 /* free pages if they weren't inserted */
1694 if (!success) {
1695 struct buffer_page *bpage, *tmp;
1696 list_for_each_entry_safe(bpage, tmp, &cpu_buffer->new_pages,
1697 list) {
1698 list_del_init(&bpage->list);
1699 free_buffer_page(bpage);
1700 }
1701 }
1702 return success;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001703}
1704
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001705static void rb_update_pages(struct ring_buffer_per_cpu *cpu_buffer)
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001706{
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001707 int success;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001708
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001709 if (cpu_buffer->nr_pages_to_update > 0)
1710 success = rb_insert_pages(cpu_buffer);
1711 else
1712 success = rb_remove_pages(cpu_buffer,
1713 -cpu_buffer->nr_pages_to_update);
1714
1715 if (success)
1716 cpu_buffer->nr_pages += cpu_buffer->nr_pages_to_update;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001717}
1718
1719static void update_pages_handler(struct work_struct *work)
1720{
1721 struct ring_buffer_per_cpu *cpu_buffer = container_of(work,
1722 struct ring_buffer_per_cpu, update_pages_work);
1723 rb_update_pages(cpu_buffer);
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001724 complete(&cpu_buffer->update_done);
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001725}
1726
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001727/**
1728 * ring_buffer_resize - resize the ring buffer
1729 * @buffer: the buffer to resize.
1730 * @size: the new size.
zhangwei(Jovi)d6118512013-07-15 16:32:50 +08001731 * @cpu_id: the cpu buffer to resize
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001732 *
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001733 * Minimum size is 2 * BUF_PAGE_SIZE.
1734 *
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001735 * Returns 0 on success and < 0 on failure.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001736 */
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001737int ring_buffer_resize(struct ring_buffer *buffer, unsigned long size,
1738 int cpu_id)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001739{
1740 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt (Red Hat)9b94a8f2016-05-12 11:01:24 -04001741 unsigned long nr_pages;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001742 int cpu, err = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001743
Ingo Molnaree51a1d2008-11-13 14:58:31 +01001744 /*
1745 * Always succeed at resizing a non-existent buffer:
1746 */
1747 if (!buffer)
1748 return size;
1749
Steven Rostedt6a31e1f2012-05-23 15:35:17 -04001750 /* Make sure the requested buffer exists */
1751 if (cpu_id != RING_BUFFER_ALL_CPUS &&
1752 !cpumask_test_cpu(cpu_id, buffer->cpumask))
1753 return size;
1754
Steven Rostedt (Red Hat)59643d12016-05-13 09:34:12 -04001755 nr_pages = DIV_ROUND_UP(size, BUF_PAGE_SIZE);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001756
1757 /* we need a minimum of two pages */
Steven Rostedt (Red Hat)59643d12016-05-13 09:34:12 -04001758 if (nr_pages < 2)
1759 nr_pages = 2;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001760
Steven Rostedt (Red Hat)59643d12016-05-13 09:34:12 -04001761 size = nr_pages * BUF_PAGE_SIZE;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001762
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001763 /*
1764 * Don't succeed if resizing is disabled, as a reader might be
1765 * manipulating the ring buffer and is expecting a sane state while
1766 * this is true.
1767 */
1768 if (atomic_read(&buffer->resize_disabled))
1769 return -EBUSY;
1770
1771 /* prevent another thread from changing buffer sizes */
1772 mutex_lock(&buffer->mutex);
1773
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001774 if (cpu_id == RING_BUFFER_ALL_CPUS) {
1775 /* calculate the pages to update */
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001776 for_each_buffer_cpu(buffer, cpu) {
1777 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001778
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001779 cpu_buffer->nr_pages_to_update = nr_pages -
1780 cpu_buffer->nr_pages;
Vaibhav Nagarnaikd7ec4bf2011-06-07 17:01:42 -07001781 /*
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001782 * nothing more to do for removing pages or no update
Vaibhav Nagarnaikd7ec4bf2011-06-07 17:01:42 -07001783 */
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001784 if (cpu_buffer->nr_pages_to_update <= 0)
1785 continue;
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001786 /*
1787 * to add pages, make sure all new pages can be
1788 * allocated without receiving ENOMEM
1789 */
1790 INIT_LIST_HEAD(&cpu_buffer->new_pages);
1791 if (__rb_allocate_pages(cpu_buffer->nr_pages_to_update,
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001792 &cpu_buffer->new_pages, cpu)) {
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001793 /* not enough memory for new pages */
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001794 err = -ENOMEM;
1795 goto out_err;
1796 }
1797 }
1798
1799 get_online_cpus();
1800 /*
1801 * Fire off all the required work handlers
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001802 * We can't schedule on offline CPUs, but it's not necessary
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001803 * since we can change their buffer sizes without any race.
1804 */
1805 for_each_buffer_cpu(buffer, cpu) {
1806 cpu_buffer = buffer->buffers[cpu];
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001807 if (!cpu_buffer->nr_pages_to_update)
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001808 continue;
1809
Corey Minyard021c5b32014-07-16 14:07:13 -05001810 /* Can't run something on an offline CPU. */
1811 if (!cpu_online(cpu)) {
Steven Rostedt (Red Hat)f5eb5582013-03-07 09:27:42 -05001812 rb_update_pages(cpu_buffer);
1813 cpu_buffer->nr_pages_to_update = 0;
1814 } else {
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001815 schedule_work_on(cpu,
1816 &cpu_buffer->update_pages_work);
Steven Rostedt (Red Hat)f5eb5582013-03-07 09:27:42 -05001817 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001818 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001819
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001820 /* wait for all the updates to complete */
1821 for_each_buffer_cpu(buffer, cpu) {
1822 cpu_buffer = buffer->buffers[cpu];
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001823 if (!cpu_buffer->nr_pages_to_update)
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001824 continue;
1825
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001826 if (cpu_online(cpu))
1827 wait_for_completion(&cpu_buffer->update_done);
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001828 cpu_buffer->nr_pages_to_update = 0;
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001829 }
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001830
1831 put_online_cpus();
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001832 } else {
Steven Rostedt (VMware)6167c202018-05-16 11:17:06 -04001833 /* Make sure this CPU has been initialized */
Vaibhav Nagarnaik8e49f412012-10-10 16:40:27 -07001834 if (!cpumask_test_cpu(cpu_id, buffer->cpumask))
1835 goto out;
1836
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001837 cpu_buffer = buffer->buffers[cpu_id];
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001838
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001839 if (nr_pages == cpu_buffer->nr_pages)
1840 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001841
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001842 cpu_buffer->nr_pages_to_update = nr_pages -
1843 cpu_buffer->nr_pages;
1844
1845 INIT_LIST_HEAD(&cpu_buffer->new_pages);
1846 if (cpu_buffer->nr_pages_to_update > 0 &&
1847 __rb_allocate_pages(cpu_buffer->nr_pages_to_update,
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001848 &cpu_buffer->new_pages, cpu_id)) {
1849 err = -ENOMEM;
1850 goto out_err;
1851 }
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001852
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001853 get_online_cpus();
1854
Corey Minyard021c5b32014-07-16 14:07:13 -05001855 /* Can't run something on an offline CPU. */
1856 if (!cpu_online(cpu_id))
Steven Rostedt (Red Hat)f5eb5582013-03-07 09:27:42 -05001857 rb_update_pages(cpu_buffer);
1858 else {
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001859 schedule_work_on(cpu_id,
1860 &cpu_buffer->update_pages_work);
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001861 wait_for_completion(&cpu_buffer->update_done);
Steven Rostedt (Red Hat)f5eb5582013-03-07 09:27:42 -05001862 }
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001863
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001864 cpu_buffer->nr_pages_to_update = 0;
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001865 put_online_cpus();
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001866 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001867
1868 out:
Steven Rostedt659f4512012-05-14 17:02:33 -04001869 /*
1870 * The ring buffer resize can happen with the ring buffer
1871 * enabled, so that the update disturbs the tracing as little
1872 * as possible. But if the buffer is disabled, we do not need
1873 * to worry about that, and we can take the time to verify
1874 * that the buffer is not corrupt.
1875 */
1876 if (atomic_read(&buffer->record_disabled)) {
1877 atomic_inc(&buffer->record_disabled);
1878 /*
1879 * Even though the buffer was disabled, we must make sure
1880 * that it is truly disabled before calling rb_check_pages.
1881 * There could have been a race between checking
1882 * record_disable and incrementing it.
1883 */
Paul E. McKenney74401722018-11-06 18:44:52 -08001884 synchronize_rcu();
Steven Rostedt659f4512012-05-14 17:02:33 -04001885 for_each_buffer_cpu(buffer, cpu) {
1886 cpu_buffer = buffer->buffers[cpu];
1887 rb_check_pages(cpu_buffer);
1888 }
1889 atomic_dec(&buffer->record_disabled);
1890 }
1891
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001892 mutex_unlock(&buffer->mutex);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001893 return size;
1894
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001895 out_err:
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001896 for_each_buffer_cpu(buffer, cpu) {
1897 struct buffer_page *bpage, *tmp;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001898
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001899 cpu_buffer = buffer->buffers[cpu];
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001900 cpu_buffer->nr_pages_to_update = 0;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001901
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001902 if (list_empty(&cpu_buffer->new_pages))
1903 continue;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001904
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001905 list_for_each_entry_safe(bpage, tmp, &cpu_buffer->new_pages,
1906 list) {
1907 list_del_init(&bpage->list);
1908 free_buffer_page(bpage);
1909 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001910 }
Vegard Nossum641d2f62008-11-18 19:22:13 +01001911 mutex_unlock(&buffer->mutex);
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001912 return err;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001913}
Robert Richterc4f50182008-12-11 16:49:22 +01001914EXPORT_SYMBOL_GPL(ring_buffer_resize);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001915
David Sharp750912f2010-12-08 13:46:47 -08001916void ring_buffer_change_overwrite(struct ring_buffer *buffer, int val)
1917{
1918 mutex_lock(&buffer->mutex);
1919 if (val)
1920 buffer->flags |= RB_FL_OVERWRITE;
1921 else
1922 buffer->flags &= ~RB_FL_OVERWRITE;
1923 mutex_unlock(&buffer->mutex);
1924}
1925EXPORT_SYMBOL_GPL(ring_buffer_change_overwrite);
1926
Steven Rostedt (Red Hat)2289d562016-11-23 20:35:32 -05001927static __always_inline void *__rb_page_index(struct buffer_page *bpage, unsigned index)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001928{
Steven Rostedt044fa782008-12-02 23:50:03 -05001929 return bpage->page->data + index;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001930}
1931
Steven Rostedt (Red Hat)2289d562016-11-23 20:35:32 -05001932static __always_inline struct ring_buffer_event *
Steven Rostedtd7690412008-10-01 00:29:53 -04001933rb_reader_event(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001934{
Steven Rostedt6f807ac2008-10-04 02:00:58 -04001935 return __rb_page_index(cpu_buffer->reader_page,
1936 cpu_buffer->reader_page->read);
1937}
1938
Steven Rostedt (Red Hat)2289d562016-11-23 20:35:32 -05001939static __always_inline struct ring_buffer_event *
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001940rb_iter_head_event(struct ring_buffer_iter *iter)
1941{
Steven Rostedt6f807ac2008-10-04 02:00:58 -04001942 return __rb_page_index(iter->head_page, iter->head);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001943}
1944
Steven Rostedt (Red Hat)2289d562016-11-23 20:35:32 -05001945static __always_inline unsigned rb_page_commit(struct buffer_page *bpage)
Steven Rostedtbf41a152008-10-04 02:00:59 -04001946{
Steven Rostedtabc9b562008-12-02 15:34:06 -05001947 return local_read(&bpage->page->commit);
Steven Rostedtbf41a152008-10-04 02:00:59 -04001948}
1949
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001950/* Size is determined by what has been committed */
Steven Rostedt (Red Hat)2289d562016-11-23 20:35:32 -05001951static __always_inline unsigned rb_page_size(struct buffer_page *bpage)
Steven Rostedtbf41a152008-10-04 02:00:59 -04001952{
1953 return rb_page_commit(bpage);
1954}
1955
Steven Rostedt (Red Hat)2289d562016-11-23 20:35:32 -05001956static __always_inline unsigned
Steven Rostedtbf41a152008-10-04 02:00:59 -04001957rb_commit_index(struct ring_buffer_per_cpu *cpu_buffer)
1958{
1959 return rb_page_commit(cpu_buffer->commit_page);
1960}
1961
Steven Rostedt (Red Hat)2289d562016-11-23 20:35:32 -05001962static __always_inline unsigned
Steven Rostedtbf41a152008-10-04 02:00:59 -04001963rb_event_index(struct ring_buffer_event *event)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001964{
Steven Rostedtbf41a152008-10-04 02:00:59 -04001965 unsigned long addr = (unsigned long)event;
1966
Steven Rostedt22f470f2009-06-11 09:29:58 -04001967 return (addr & ~PAGE_MASK) - BUF_PAGE_HDR_SIZE;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001968}
1969
Andrew Morton34a148b2009-01-09 12:27:09 -08001970static void rb_inc_iter(struct ring_buffer_iter *iter)
Steven Rostedtd7690412008-10-01 00:29:53 -04001971{
1972 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
1973
1974 /*
1975 * The iterator could be on the reader page (it starts there).
1976 * But the head could have moved, since the reader was
1977 * found. Check for this case and assign the iterator
1978 * to the head page instead of next.
1979 */
1980 if (iter->head_page == cpu_buffer->reader_page)
Steven Rostedt77ae3652009-03-27 11:00:29 -04001981 iter->head_page = rb_set_head_page(cpu_buffer);
Steven Rostedtd7690412008-10-01 00:29:53 -04001982 else
1983 rb_inc_page(cpu_buffer, &iter->head_page);
1984
Steven Rostedtabc9b562008-12-02 15:34:06 -05001985 iter->read_stamp = iter->head_page->page->time_stamp;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001986 iter->head = 0;
1987}
1988
Steven Rostedt77ae3652009-03-27 11:00:29 -04001989/*
1990 * rb_handle_head_page - writer hit the head page
1991 *
1992 * Returns: +1 to retry page
1993 * 0 to continue
1994 * -1 on error
1995 */
1996static int
1997rb_handle_head_page(struct ring_buffer_per_cpu *cpu_buffer,
1998 struct buffer_page *tail_page,
1999 struct buffer_page *next_page)
2000{
2001 struct buffer_page *new_head;
2002 int entries;
2003 int type;
2004 int ret;
2005
2006 entries = rb_page_entries(next_page);
2007
2008 /*
2009 * The hard part is here. We need to move the head
2010 * forward, and protect against both readers on
2011 * other CPUs and writers coming in via interrupts.
2012 */
2013 type = rb_head_page_set_update(cpu_buffer, next_page, tail_page,
2014 RB_PAGE_HEAD);
2015
2016 /*
2017 * type can be one of four:
2018 * NORMAL - an interrupt already moved it for us
2019 * HEAD - we are the first to get here.
2020 * UPDATE - we are the interrupt interrupting
2021 * a current move.
2022 * MOVED - a reader on another CPU moved the next
2023 * pointer to its reader page. Give up
2024 * and try again.
2025 */
2026
2027 switch (type) {
2028 case RB_PAGE_HEAD:
2029 /*
2030 * We changed the head to UPDATE, thus
2031 * it is our responsibility to update
2032 * the counters.
2033 */
2034 local_add(entries, &cpu_buffer->overrun);
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07002035 local_sub(BUF_PAGE_SIZE, &cpu_buffer->entries_bytes);
Steven Rostedt77ae3652009-03-27 11:00:29 -04002036
2037 /*
2038 * The entries will be zeroed out when we move the
2039 * tail page.
2040 */
2041
2042 /* still more to do */
2043 break;
2044
2045 case RB_PAGE_UPDATE:
2046 /*
2047 * This is an interrupt that interrupt the
2048 * previous update. Still more to do.
2049 */
2050 break;
2051 case RB_PAGE_NORMAL:
2052 /*
2053 * An interrupt came in before the update
2054 * and processed this for us.
2055 * Nothing left to do.
2056 */
2057 return 1;
2058 case RB_PAGE_MOVED:
2059 /*
2060 * The reader is on another CPU and just did
2061 * a swap with our next_page.
2062 * Try again.
2063 */
2064 return 1;
2065 default:
2066 RB_WARN_ON(cpu_buffer, 1); /* WTF??? */
2067 return -1;
2068 }
2069
2070 /*
2071 * Now that we are here, the old head pointer is
2072 * set to UPDATE. This will keep the reader from
2073 * swapping the head page with the reader page.
2074 * The reader (on another CPU) will spin till
2075 * we are finished.
2076 *
2077 * We just need to protect against interrupts
2078 * doing the job. We will set the next pointer
2079 * to HEAD. After that, we set the old pointer
2080 * to NORMAL, but only if it was HEAD before.
2081 * otherwise we are an interrupt, and only
2082 * want the outer most commit to reset it.
2083 */
2084 new_head = next_page;
2085 rb_inc_page(cpu_buffer, &new_head);
2086
2087 ret = rb_head_page_set_head(cpu_buffer, new_head, next_page,
2088 RB_PAGE_NORMAL);
2089
2090 /*
2091 * Valid returns are:
2092 * HEAD - an interrupt came in and already set it.
2093 * NORMAL - One of two things:
2094 * 1) We really set it.
2095 * 2) A bunch of interrupts came in and moved
2096 * the page forward again.
2097 */
2098 switch (ret) {
2099 case RB_PAGE_HEAD:
2100 case RB_PAGE_NORMAL:
2101 /* OK */
2102 break;
2103 default:
2104 RB_WARN_ON(cpu_buffer, 1);
2105 return -1;
2106 }
2107
2108 /*
2109 * It is possible that an interrupt came in,
2110 * set the head up, then more interrupts came in
2111 * and moved it again. When we get back here,
2112 * the page would have been set to NORMAL but we
2113 * just set it back to HEAD.
2114 *
2115 * How do you detect this? Well, if that happened
2116 * the tail page would have moved.
2117 */
2118 if (ret == RB_PAGE_NORMAL) {
Steven Rostedt (Red Hat)85736362015-11-17 14:03:11 -05002119 struct buffer_page *buffer_tail_page;
2120
2121 buffer_tail_page = READ_ONCE(cpu_buffer->tail_page);
Steven Rostedt77ae3652009-03-27 11:00:29 -04002122 /*
2123 * If the tail had moved passed next, then we need
2124 * to reset the pointer.
2125 */
Steven Rostedt (Red Hat)85736362015-11-17 14:03:11 -05002126 if (buffer_tail_page != tail_page &&
2127 buffer_tail_page != next_page)
Steven Rostedt77ae3652009-03-27 11:00:29 -04002128 rb_head_page_set_normal(cpu_buffer, new_head,
2129 next_page,
2130 RB_PAGE_HEAD);
2131 }
2132
2133 /*
2134 * If this was the outer most commit (the one that
2135 * changed the original pointer from HEAD to UPDATE),
2136 * then it is up to us to reset it to NORMAL.
2137 */
2138 if (type == RB_PAGE_HEAD) {
2139 ret = rb_head_page_set_normal(cpu_buffer, next_page,
2140 tail_page,
2141 RB_PAGE_UPDATE);
2142 if (RB_WARN_ON(cpu_buffer,
2143 ret != RB_PAGE_UPDATE))
2144 return -1;
2145 }
2146
2147 return 0;
2148}
2149
Steven Rostedtc7b09302009-06-11 11:12:00 -04002150static inline void
2151rb_reset_tail(struct ring_buffer_per_cpu *cpu_buffer,
Steven Rostedt (Red Hat)fcc742e2015-05-28 17:13:14 -04002152 unsigned long tail, struct rb_event_info *info)
Steven Rostedtc7b09302009-06-11 11:12:00 -04002153{
Steven Rostedt (Red Hat)fcc742e2015-05-28 17:13:14 -04002154 struct buffer_page *tail_page = info->tail_page;
Steven Rostedtc7b09302009-06-11 11:12:00 -04002155 struct ring_buffer_event *event;
Steven Rostedt (Red Hat)fcc742e2015-05-28 17:13:14 -04002156 unsigned long length = info->length;
Steven Rostedtc7b09302009-06-11 11:12:00 -04002157
2158 /*
2159 * Only the event that crossed the page boundary
2160 * must fill the old tail_page with padding.
2161 */
2162 if (tail >= BUF_PAGE_SIZE) {
Steven Rostedtb3230c82010-05-21 11:55:21 -04002163 /*
2164 * If the page was filled, then we still need
2165 * to update the real_end. Reset it to zero
2166 * and the reader will ignore it.
2167 */
2168 if (tail == BUF_PAGE_SIZE)
2169 tail_page->real_end = 0;
2170
Steven Rostedtc7b09302009-06-11 11:12:00 -04002171 local_sub(length, &tail_page->write);
2172 return;
2173 }
2174
2175 event = __rb_page_index(tail_page, tail);
2176
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07002177 /* account for padding bytes */
2178 local_add(BUF_PAGE_SIZE - tail, &cpu_buffer->entries_bytes);
2179
Steven Rostedtc7b09302009-06-11 11:12:00 -04002180 /*
Steven Rostedtff0ff842010-03-31 22:11:42 -04002181 * Save the original length to the meta data.
2182 * This will be used by the reader to add lost event
2183 * counter.
2184 */
2185 tail_page->real_end = tail;
2186
2187 /*
Steven Rostedtc7b09302009-06-11 11:12:00 -04002188 * If this event is bigger than the minimum size, then
2189 * we need to be careful that we don't subtract the
2190 * write counter enough to allow another writer to slip
2191 * in on this page.
2192 * We put in a discarded commit instead, to make sure
2193 * that this space is not used again.
2194 *
2195 * If we are less than the minimum size, we don't need to
2196 * worry about it.
2197 */
2198 if (tail > (BUF_PAGE_SIZE - RB_EVNT_MIN_SIZE)) {
2199 /* No room for any events */
2200
2201 /* Mark the rest of the page with padding */
2202 rb_event_set_padding(event);
2203
2204 /* Set the write back to the previous setting */
2205 local_sub(length, &tail_page->write);
2206 return;
2207 }
2208
2209 /* Put in a discarded event */
2210 event->array[0] = (BUF_PAGE_SIZE - tail) - RB_EVNT_HDR_SIZE;
2211 event->type_len = RINGBUF_TYPE_PADDING;
2212 /* time delta must be non zero */
2213 event->time_delta = 1;
Steven Rostedtc7b09302009-06-11 11:12:00 -04002214
2215 /* Set write to end of buffer */
2216 length = (tail + length) - BUF_PAGE_SIZE;
2217 local_sub(length, &tail_page->write);
2218}
Steven Rostedt6634ff22009-05-06 15:30:07 -04002219
Steven Rostedt (Red Hat)4239c382015-11-17 16:36:06 -05002220static inline void rb_end_commit(struct ring_buffer_per_cpu *cpu_buffer);
2221
Steven Rostedt747e94a2010-10-08 13:51:48 -04002222/*
2223 * This is the slow path, force gcc not to inline it.
2224 */
2225static noinline struct ring_buffer_event *
Steven Rostedt6634ff22009-05-06 15:30:07 -04002226rb_move_tail(struct ring_buffer_per_cpu *cpu_buffer,
Steven Rostedt (Red Hat)fcc742e2015-05-28 17:13:14 -04002227 unsigned long tail, struct rb_event_info *info)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002228{
Steven Rostedt (Red Hat)fcc742e2015-05-28 17:13:14 -04002229 struct buffer_page *tail_page = info->tail_page;
Steven Rostedt5a50e332009-11-17 08:43:01 -05002230 struct buffer_page *commit_page = cpu_buffer->commit_page;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002231 struct ring_buffer *buffer = cpu_buffer->buffer;
Steven Rostedt77ae3652009-03-27 11:00:29 -04002232 struct buffer_page *next_page;
2233 int ret;
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002234
2235 next_page = tail_page;
2236
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002237 rb_inc_page(cpu_buffer, &next_page);
2238
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002239 /*
2240 * If for some reason, we had an interrupt storm that made
2241 * it all the way around the buffer, bail, and warn
2242 * about it.
2243 */
2244 if (unlikely(next_page == commit_page)) {
Steven Rostedt77ae3652009-03-27 11:00:29 -04002245 local_inc(&cpu_buffer->commit_overrun);
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002246 goto out_reset;
2247 }
2248
Steven Rostedt77ae3652009-03-27 11:00:29 -04002249 /*
2250 * This is where the fun begins!
2251 *
2252 * We are fighting against races between a reader that
2253 * could be on another CPU trying to swap its reader
2254 * page with the buffer head.
2255 *
2256 * We are also fighting against interrupts coming in and
2257 * moving the head or tail on us as well.
2258 *
2259 * If the next page is the head page then we have filled
2260 * the buffer, unless the commit page is still on the
2261 * reader page.
2262 */
2263 if (rb_is_head_page(cpu_buffer, next_page, &tail_page->list)) {
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002264
Steven Rostedt77ae3652009-03-27 11:00:29 -04002265 /*
2266 * If the commit is not on the reader page, then
2267 * move the header page.
2268 */
2269 if (!rb_is_reader_page(cpu_buffer->commit_page)) {
2270 /*
2271 * If we are not in overwrite mode,
2272 * this is easy, just stop here.
2273 */
Slava Pestov884bfe82011-07-15 14:23:58 -07002274 if (!(buffer->flags & RB_FL_OVERWRITE)) {
2275 local_inc(&cpu_buffer->dropped_events);
Steven Rostedt77ae3652009-03-27 11:00:29 -04002276 goto out_reset;
Slava Pestov884bfe82011-07-15 14:23:58 -07002277 }
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002278
Steven Rostedt77ae3652009-03-27 11:00:29 -04002279 ret = rb_handle_head_page(cpu_buffer,
2280 tail_page,
2281 next_page);
2282 if (ret < 0)
2283 goto out_reset;
2284 if (ret)
2285 goto out_again;
2286 } else {
2287 /*
2288 * We need to be careful here too. The
2289 * commit page could still be on the reader
2290 * page. We could have a small buffer, and
2291 * have filled up the buffer with events
2292 * from interrupts and such, and wrapped.
2293 *
2294 * Note, if the tail page is also the on the
2295 * reader_page, we let it move out.
2296 */
2297 if (unlikely((cpu_buffer->commit_page !=
2298 cpu_buffer->tail_page) &&
2299 (cpu_buffer->commit_page ==
2300 cpu_buffer->reader_page))) {
2301 local_inc(&cpu_buffer->commit_overrun);
2302 goto out_reset;
2303 }
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002304 }
2305 }
2306
Steven Rostedt (Red Hat)70004982015-11-17 15:15:19 -05002307 rb_tail_page_update(cpu_buffer, tail_page, next_page);
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002308
Steven Rostedt77ae3652009-03-27 11:00:29 -04002309 out_again:
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002310
Steven Rostedt (Red Hat)fcc742e2015-05-28 17:13:14 -04002311 rb_reset_tail(cpu_buffer, tail, info);
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002312
Steven Rostedt (Red Hat)4239c382015-11-17 16:36:06 -05002313 /* Commit what we have for now. */
2314 rb_end_commit(cpu_buffer);
2315 /* rb_end_commit() decs committing */
2316 local_inc(&cpu_buffer->committing);
2317
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002318 /* fail and let the caller try again */
2319 return ERR_PTR(-EAGAIN);
2320
Steven Rostedt45141d42009-02-12 13:19:48 -05002321 out_reset:
Lai Jiangshan6f3b3442009-01-12 11:06:18 +08002322 /* reset write */
Steven Rostedt (Red Hat)fcc742e2015-05-28 17:13:14 -04002323 rb_reset_tail(cpu_buffer, tail, info);
Lai Jiangshan6f3b3442009-01-12 11:06:18 +08002324
Steven Rostedtbf41a152008-10-04 02:00:59 -04002325 return NULL;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002326}
2327
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002328/* Slow path, do not inline */
2329static noinline struct ring_buffer_event *
Tom Zanussidc4e2802018-01-15 20:51:40 -06002330rb_add_time_stamp(struct ring_buffer_event *event, u64 delta, bool abs)
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002331{
Tom Zanussidc4e2802018-01-15 20:51:40 -06002332 if (abs)
2333 event->type_len = RINGBUF_TYPE_TIME_STAMP;
2334 else
2335 event->type_len = RINGBUF_TYPE_TIME_EXTEND;
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002336
Tom Zanussidc4e2802018-01-15 20:51:40 -06002337 /* Not the first event on the page, or not delta? */
2338 if (abs || rb_event_index(event)) {
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002339 event->time_delta = delta & TS_MASK;
2340 event->array[0] = delta >> TS_SHIFT;
2341 } else {
2342 /* nope, just zero it */
2343 event->time_delta = 0;
2344 event->array[0] = 0;
2345 }
2346
2347 return skip_time_extend(event);
2348}
2349
Yaowei Baicdb2a0a92015-09-29 22:43:34 +08002350static inline bool rb_event_is_commit(struct ring_buffer_per_cpu *cpu_buffer,
Steven Rostedt (Red Hat)b7dc42f2015-09-03 08:57:12 -04002351 struct ring_buffer_event *event);
2352
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002353/**
2354 * rb_update_event - update event type and data
2355 * @event: the event to update
2356 * @type: the type of event
2357 * @length: the size of the event field in the ring buffer
2358 *
2359 * Update the type and data fields of the event. The length
2360 * is the actual size that is written to the ring buffer,
2361 * and with this, we can determine what to place into the
2362 * data field.
2363 */
Steven Rostedt (Red Hat)b7dc42f2015-09-03 08:57:12 -04002364static void
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002365rb_update_event(struct ring_buffer_per_cpu *cpu_buffer,
2366 struct ring_buffer_event *event,
2367 struct rb_event_info *info)
2368{
2369 unsigned length = info->length;
2370 u64 delta = info->delta;
2371
Steven Rostedt (Red Hat)b7dc42f2015-09-03 08:57:12 -04002372 /* Only a commit updates the timestamp */
2373 if (unlikely(!rb_event_is_commit(cpu_buffer, event)))
2374 delta = 0;
2375
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002376 /*
2377 * If we need to add a timestamp, then we
Steven Rostedt (VMware)6167c202018-05-16 11:17:06 -04002378 * add it to the start of the reserved space.
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002379 */
2380 if (unlikely(info->add_timestamp)) {
Tom Zanussidc4e2802018-01-15 20:51:40 -06002381 bool abs = ring_buffer_time_stamp_abs(cpu_buffer->buffer);
2382
2383 event = rb_add_time_stamp(event, info->delta, abs);
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002384 length -= RB_LEN_TIME_EXTEND;
2385 delta = 0;
2386 }
2387
2388 event->time_delta = delta;
2389 length -= RB_EVNT_HDR_SIZE;
2390 if (length > RB_MAX_SMALL_DATA || RB_FORCE_8BYTE_ALIGNMENT) {
2391 event->type_len = 0;
2392 event->array[0] = length;
2393 } else
2394 event->type_len = DIV_ROUND_UP(length, RB_ALIGNMENT);
2395}
2396
2397static unsigned rb_calculate_event_length(unsigned length)
2398{
2399 struct ring_buffer_event event; /* Used only for sizeof array */
2400
2401 /* zero length can cause confusions */
2402 if (!length)
2403 length++;
2404
2405 if (length > RB_MAX_SMALL_DATA || RB_FORCE_8BYTE_ALIGNMENT)
2406 length += sizeof(event.array[0]);
2407
2408 length += RB_EVNT_HDR_SIZE;
2409 length = ALIGN(length, RB_ARCH_ALIGNMENT);
2410
2411 /*
2412 * In case the time delta is larger than the 27 bits for it
2413 * in the header, we need to add a timestamp. If another
2414 * event comes in when trying to discard this one to increase
2415 * the length, then the timestamp will be added in the allocated
2416 * space of this event. If length is bigger than the size needed
2417 * for the TIME_EXTEND, then padding has to be used. The events
2418 * length must be either RB_LEN_TIME_EXTEND, or greater than or equal
2419 * to RB_LEN_TIME_EXTEND + 8, as 8 is the minimum size for padding.
2420 * As length is a multiple of 4, we only need to worry if it
2421 * is 12 (RB_LEN_TIME_EXTEND + 4).
2422 */
2423 if (length == RB_LEN_TIME_EXTEND + RB_ALIGNMENT)
2424 length += RB_ALIGNMENT;
2425
2426 return length;
2427}
2428
Steven Rostedt (Red Hat)9826b272015-05-28 17:36:45 -04002429#ifndef CONFIG_HAVE_UNSTABLE_SCHED_CLOCK
2430static inline bool sched_clock_stable(void)
2431{
2432 return true;
2433}
2434#endif
2435
Steven Rostedt (Red Hat)a4543a22015-05-29 09:40:18 -04002436static inline int
2437rb_try_to_discard(struct ring_buffer_per_cpu *cpu_buffer,
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002438 struct ring_buffer_event *event)
2439{
2440 unsigned long new_index, old_index;
2441 struct buffer_page *bpage;
2442 unsigned long index;
2443 unsigned long addr;
2444
2445 new_index = rb_event_index(event);
2446 old_index = new_index + rb_event_ts_length(event);
2447 addr = (unsigned long)event;
2448 addr &= PAGE_MASK;
2449
Steven Rostedt (Red Hat)85736362015-11-17 14:03:11 -05002450 bpage = READ_ONCE(cpu_buffer->tail_page);
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002451
2452 if (bpage->page == (void *)addr && rb_page_write(bpage) == old_index) {
2453 unsigned long write_mask =
2454 local_read(&bpage->write) & ~RB_WRITE_MASK;
2455 unsigned long event_length = rb_event_length(event);
2456 /*
2457 * This is on the tail page. It is possible that
2458 * a write could come in and move the tail page
2459 * and write to the next page. That is fine
2460 * because we just shorten what is on this page.
2461 */
2462 old_index += write_mask;
2463 new_index += write_mask;
2464 index = local_cmpxchg(&bpage->write, old_index, new_index);
2465 if (index == old_index) {
2466 /* update counters */
2467 local_sub(event_length, &cpu_buffer->entries_bytes);
2468 return 1;
2469 }
2470 }
2471
2472 /* could not discard */
2473 return 0;
2474}
2475
2476static void rb_start_commit(struct ring_buffer_per_cpu *cpu_buffer)
2477{
2478 local_inc(&cpu_buffer->committing);
2479 local_inc(&cpu_buffer->commits);
2480}
2481
Steven Rostedt (Red Hat)38e11df2016-11-23 20:42:31 -05002482static __always_inline void
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002483rb_set_commit_to_write(struct ring_buffer_per_cpu *cpu_buffer)
2484{
2485 unsigned long max_count;
2486
2487 /*
2488 * We only race with interrupts and NMIs on this CPU.
2489 * If we own the commit event, then we can commit
2490 * all others that interrupted us, since the interruptions
2491 * are in stack format (they finish before they come
2492 * back to us). This allows us to do a simple loop to
2493 * assign the commit to the tail.
2494 */
2495 again:
2496 max_count = cpu_buffer->nr_pages * 100;
2497
Steven Rostedt (Red Hat)85736362015-11-17 14:03:11 -05002498 while (cpu_buffer->commit_page != READ_ONCE(cpu_buffer->tail_page)) {
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002499 if (RB_WARN_ON(cpu_buffer, !(--max_count)))
2500 return;
2501 if (RB_WARN_ON(cpu_buffer,
2502 rb_is_reader_page(cpu_buffer->tail_page)))
2503 return;
2504 local_set(&cpu_buffer->commit_page->page->commit,
2505 rb_page_write(cpu_buffer->commit_page));
2506 rb_inc_page(cpu_buffer, &cpu_buffer->commit_page);
Steven Rostedt (Red Hat)70004982015-11-17 15:15:19 -05002507 /* Only update the write stamp if the page has an event */
2508 if (rb_page_write(cpu_buffer->commit_page))
2509 cpu_buffer->write_stamp =
2510 cpu_buffer->commit_page->page->time_stamp;
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002511 /* add barrier to keep gcc from optimizing too much */
2512 barrier();
2513 }
2514 while (rb_commit_index(cpu_buffer) !=
2515 rb_page_write(cpu_buffer->commit_page)) {
2516
2517 local_set(&cpu_buffer->commit_page->page->commit,
2518 rb_page_write(cpu_buffer->commit_page));
2519 RB_WARN_ON(cpu_buffer,
2520 local_read(&cpu_buffer->commit_page->page->commit) &
2521 ~RB_WRITE_MASK);
2522 barrier();
2523 }
2524
2525 /* again, keep gcc from optimizing */
2526 barrier();
2527
2528 /*
2529 * If an interrupt came in just after the first while loop
2530 * and pushed the tail page forward, we will be left with
2531 * a dangling commit that will never go forward.
2532 */
Steven Rostedt (Red Hat)85736362015-11-17 14:03:11 -05002533 if (unlikely(cpu_buffer->commit_page != READ_ONCE(cpu_buffer->tail_page)))
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002534 goto again;
2535}
2536
Steven Rostedt (Red Hat)38e11df2016-11-23 20:42:31 -05002537static __always_inline void rb_end_commit(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002538{
2539 unsigned long commits;
2540
2541 if (RB_WARN_ON(cpu_buffer,
2542 !local_read(&cpu_buffer->committing)))
2543 return;
2544
2545 again:
2546 commits = local_read(&cpu_buffer->commits);
2547 /* synchronize with interrupts */
2548 barrier();
2549 if (local_read(&cpu_buffer->committing) == 1)
2550 rb_set_commit_to_write(cpu_buffer);
2551
2552 local_dec(&cpu_buffer->committing);
2553
2554 /* synchronize with interrupts */
2555 barrier();
2556
2557 /*
2558 * Need to account for interrupts coming in between the
2559 * updating of the commit page and the clearing of the
2560 * committing counter.
2561 */
2562 if (unlikely(local_read(&cpu_buffer->commits) != commits) &&
2563 !local_read(&cpu_buffer->committing)) {
2564 local_inc(&cpu_buffer->committing);
2565 goto again;
2566 }
2567}
2568
2569static inline void rb_event_discard(struct ring_buffer_event *event)
2570{
Tom Zanussidc4e2802018-01-15 20:51:40 -06002571 if (extended_time(event))
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002572 event = skip_time_extend(event);
2573
2574 /* array[0] holds the actual length for the discarded event */
2575 event->array[0] = rb_event_data_length(event) - RB_EVNT_HDR_SIZE;
2576 event->type_len = RINGBUF_TYPE_PADDING;
2577 /* time delta must be non zero */
2578 if (!event->time_delta)
2579 event->time_delta = 1;
2580}
2581
Steven Rostedt (Red Hat)babe3fc2016-11-23 20:38:39 -05002582static __always_inline bool
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002583rb_event_is_commit(struct ring_buffer_per_cpu *cpu_buffer,
2584 struct ring_buffer_event *event)
2585{
2586 unsigned long addr = (unsigned long)event;
2587 unsigned long index;
2588
2589 index = rb_event_index(event);
2590 addr &= PAGE_MASK;
2591
2592 return cpu_buffer->commit_page->page == (void *)addr &&
2593 rb_commit_index(cpu_buffer) == index;
2594}
2595
Steven Rostedt (Red Hat)babe3fc2016-11-23 20:38:39 -05002596static __always_inline void
Steven Rostedt (Red Hat)a4543a22015-05-29 09:40:18 -04002597rb_update_write_stamp(struct ring_buffer_per_cpu *cpu_buffer,
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002598 struct ring_buffer_event *event)
2599{
2600 u64 delta;
2601
2602 /*
2603 * The event first in the commit queue updates the
2604 * time stamp.
2605 */
2606 if (rb_event_is_commit(cpu_buffer, event)) {
2607 /*
2608 * A commit event that is first on a page
2609 * updates the write timestamp with the page stamp
2610 */
2611 if (!rb_event_index(event))
2612 cpu_buffer->write_stamp =
2613 cpu_buffer->commit_page->page->time_stamp;
2614 else if (event->type_len == RINGBUF_TYPE_TIME_EXTEND) {
Tom Zanussidc4e2802018-01-15 20:51:40 -06002615 delta = ring_buffer_event_time_stamp(event);
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002616 cpu_buffer->write_stamp += delta;
Tom Zanussidc4e2802018-01-15 20:51:40 -06002617 } else if (event->type_len == RINGBUF_TYPE_TIME_STAMP) {
2618 delta = ring_buffer_event_time_stamp(event);
2619 cpu_buffer->write_stamp = delta;
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002620 } else
2621 cpu_buffer->write_stamp += event->time_delta;
2622 }
2623}
2624
2625static void rb_commit(struct ring_buffer_per_cpu *cpu_buffer,
2626 struct ring_buffer_event *event)
2627{
2628 local_inc(&cpu_buffer->entries);
2629 rb_update_write_stamp(cpu_buffer, event);
2630 rb_end_commit(cpu_buffer);
2631}
2632
2633static __always_inline void
2634rb_wakeups(struct ring_buffer *buffer, struct ring_buffer_per_cpu *cpu_buffer)
2635{
Steven Rostedt (VMware)03329f92018-11-29 21:38:42 -05002636 size_t nr_pages;
2637 size_t dirty;
2638 size_t full;
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002639
2640 if (buffer->irq_work.waiters_pending) {
2641 buffer->irq_work.waiters_pending = false;
2642 /* irq_work_queue() supplies it's own memory barriers */
2643 irq_work_queue(&buffer->irq_work.work);
2644 }
2645
2646 if (cpu_buffer->irq_work.waiters_pending) {
2647 cpu_buffer->irq_work.waiters_pending = false;
2648 /* irq_work_queue() supplies it's own memory barriers */
2649 irq_work_queue(&cpu_buffer->irq_work.work);
2650 }
2651
Steven Rostedt (VMware)03329f92018-11-29 21:38:42 -05002652 if (cpu_buffer->last_pages_touch == local_read(&cpu_buffer->pages_touched))
2653 return;
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002654
Steven Rostedt (VMware)03329f92018-11-29 21:38:42 -05002655 if (cpu_buffer->reader_page == cpu_buffer->commit_page)
2656 return;
Steven Rostedt (VMware)2c2b0a72018-11-29 20:32:26 -05002657
Steven Rostedt (VMware)03329f92018-11-29 21:38:42 -05002658 if (!cpu_buffer->irq_work.full_waiters_pending)
2659 return;
Steven Rostedt (VMware)2c2b0a72018-11-29 20:32:26 -05002660
Steven Rostedt (VMware)03329f92018-11-29 21:38:42 -05002661 cpu_buffer->last_pages_touch = local_read(&cpu_buffer->pages_touched);
2662
2663 full = cpu_buffer->shortest_full;
2664 nr_pages = cpu_buffer->nr_pages;
2665 dirty = ring_buffer_nr_dirty_pages(buffer, cpu_buffer->cpu);
2666 if (full && nr_pages && (dirty * 100) <= full * nr_pages)
2667 return;
2668
2669 cpu_buffer->irq_work.wakeup_full = true;
2670 cpu_buffer->irq_work.full_waiters_pending = false;
2671 /* irq_work_queue() supplies it's own memory barriers */
2672 irq_work_queue(&cpu_buffer->irq_work.work);
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002673}
2674
2675/*
2676 * The lock and unlock are done within a preempt disable section.
2677 * The current_context per_cpu variable can only be modified
2678 * by the current task between lock and unlock. But it can
Steven Rostedt (VMware)a0e3a182018-01-15 10:47:09 -05002679 * be modified more than once via an interrupt. To pass this
2680 * information from the lock to the unlock without having to
2681 * access the 'in_interrupt()' functions again (which do show
2682 * a bit of overhead in something as critical as function tracing,
2683 * we use a bitmask trick.
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002684 *
Steven Rostedt (VMware)a0e3a182018-01-15 10:47:09 -05002685 * bit 0 = NMI context
2686 * bit 1 = IRQ context
2687 * bit 2 = SoftIRQ context
2688 * bit 3 = normal context.
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002689 *
Steven Rostedt (VMware)a0e3a182018-01-15 10:47:09 -05002690 * This works because this is the order of contexts that can
2691 * preempt other contexts. A SoftIRQ never preempts an IRQ
2692 * context.
2693 *
2694 * When the context is determined, the corresponding bit is
2695 * checked and set (if it was set, then a recursion of that context
2696 * happened).
2697 *
2698 * On unlock, we need to clear this bit. To do so, just subtract
2699 * 1 from the current_context and AND it to itself.
2700 *
2701 * (binary)
2702 * 101 - 1 = 100
2703 * 101 & 100 = 100 (clearing bit zero)
2704 *
2705 * 1010 - 1 = 1001
2706 * 1010 & 1001 = 1000 (clearing bit 1)
2707 *
2708 * The least significant bit can be cleared this way, and it
2709 * just so happens that it is the same bit corresponding to
2710 * the current context.
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002711 */
2712
2713static __always_inline int
2714trace_recursive_lock(struct ring_buffer_per_cpu *cpu_buffer)
2715{
Steven Rostedt (VMware)a0e3a182018-01-15 10:47:09 -05002716 unsigned int val = cpu_buffer->current_context;
2717 unsigned long pc = preempt_count();
2718 int bit;
2719
2720 if (!(pc & (NMI_MASK | HARDIRQ_MASK | SOFTIRQ_OFFSET)))
2721 bit = RB_CTX_NORMAL;
2722 else
2723 bit = pc & NMI_MASK ? RB_CTX_NMI :
Steven Rostedt (VMware)0164e0d2018-01-18 15:42:09 -05002724 pc & HARDIRQ_MASK ? RB_CTX_IRQ : RB_CTX_SOFTIRQ;
Steven Rostedt (VMware)a0e3a182018-01-15 10:47:09 -05002725
Steven Rostedt (VMware)8e012062018-02-07 17:26:32 -05002726 if (unlikely(val & (1 << (bit + cpu_buffer->nest))))
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002727 return 1;
2728
Steven Rostedt (VMware)8e012062018-02-07 17:26:32 -05002729 val |= (1 << (bit + cpu_buffer->nest));
Steven Rostedt (VMware)a0e3a182018-01-15 10:47:09 -05002730 cpu_buffer->current_context = val;
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002731
2732 return 0;
2733}
2734
2735static __always_inline void
2736trace_recursive_unlock(struct ring_buffer_per_cpu *cpu_buffer)
2737{
Steven Rostedt (VMware)8e012062018-02-07 17:26:32 -05002738 cpu_buffer->current_context &=
2739 cpu_buffer->current_context - (1 << cpu_buffer->nest);
2740}
2741
2742/* The recursive locking above uses 4 bits */
2743#define NESTED_BITS 4
2744
2745/**
2746 * ring_buffer_nest_start - Allow to trace while nested
2747 * @buffer: The ring buffer to modify
2748 *
Steven Rostedt (VMware)6167c202018-05-16 11:17:06 -04002749 * The ring buffer has a safety mechanism to prevent recursion.
Steven Rostedt (VMware)8e012062018-02-07 17:26:32 -05002750 * But there may be a case where a trace needs to be done while
2751 * tracing something else. In this case, calling this function
2752 * will allow this function to nest within a currently active
2753 * ring_buffer_lock_reserve().
2754 *
2755 * Call this function before calling another ring_buffer_lock_reserve() and
2756 * call ring_buffer_nest_end() after the nested ring_buffer_unlock_commit().
2757 */
2758void ring_buffer_nest_start(struct ring_buffer *buffer)
2759{
2760 struct ring_buffer_per_cpu *cpu_buffer;
2761 int cpu;
2762
2763 /* Enabled by ring_buffer_nest_end() */
2764 preempt_disable_notrace();
2765 cpu = raw_smp_processor_id();
2766 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt (VMware)6167c202018-05-16 11:17:06 -04002767 /* This is the shift value for the above recursive locking */
Steven Rostedt (VMware)8e012062018-02-07 17:26:32 -05002768 cpu_buffer->nest += NESTED_BITS;
2769}
2770
2771/**
2772 * ring_buffer_nest_end - Allow to trace while nested
2773 * @buffer: The ring buffer to modify
2774 *
2775 * Must be called after ring_buffer_nest_start() and after the
2776 * ring_buffer_unlock_commit().
2777 */
2778void ring_buffer_nest_end(struct ring_buffer *buffer)
2779{
2780 struct ring_buffer_per_cpu *cpu_buffer;
2781 int cpu;
2782
2783 /* disabled by ring_buffer_nest_start() */
2784 cpu = raw_smp_processor_id();
2785 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt (VMware)6167c202018-05-16 11:17:06 -04002786 /* This is the shift value for the above recursive locking */
Steven Rostedt (VMware)8e012062018-02-07 17:26:32 -05002787 cpu_buffer->nest -= NESTED_BITS;
2788 preempt_enable_notrace();
Steven Rostedt (Red Hat)d90fd772015-05-29 12:12:27 -04002789}
2790
2791/**
2792 * ring_buffer_unlock_commit - commit a reserved
2793 * @buffer: The buffer to commit to
2794 * @event: The event pointer to commit.
2795 *
2796 * This commits the data to the ring buffer, and releases any locks held.
2797 *
2798 * Must be paired with ring_buffer_lock_reserve.
2799 */
2800int ring_buffer_unlock_commit(struct ring_buffer *buffer,
2801 struct ring_buffer_event *event)
2802{
2803 struct ring_buffer_per_cpu *cpu_buffer;
2804 int cpu = raw_smp_processor_id();
2805
2806 cpu_buffer = buffer->buffers[cpu];
2807
2808 rb_commit(cpu_buffer, event);
2809
2810 rb_wakeups(buffer, cpu_buffer);
2811
2812 trace_recursive_unlock(cpu_buffer);
2813
2814 preempt_enable_notrace();
2815
2816 return 0;
2817}
2818EXPORT_SYMBOL_GPL(ring_buffer_unlock_commit);
Steven Rostedt (Red Hat)a4543a22015-05-29 09:40:18 -04002819
Steven Rostedt (Red Hat)9826b272015-05-28 17:36:45 -04002820static noinline void
2821rb_handle_timestamp(struct ring_buffer_per_cpu *cpu_buffer,
2822 struct rb_event_info *info)
2823{
2824 WARN_ONCE(info->delta > (1ULL << 59),
2825 KERN_WARNING "Delta way too big! %llu ts=%llu write stamp = %llu\n%s",
2826 (unsigned long long)info->delta,
2827 (unsigned long long)info->ts,
2828 (unsigned long long)cpu_buffer->write_stamp,
2829 sched_clock_stable() ? "" :
2830 "If you just came from a suspend/resume,\n"
2831 "please switch to the trace global clock:\n"
Chris Wilson913ea4d2018-03-30 16:01:32 +01002832 " echo global > /sys/kernel/debug/tracing/trace_clock\n"
2833 "or add trace_clock=global to the kernel command line\n");
Steven Rostedt (Red Hat)b7dc42f2015-09-03 08:57:12 -04002834 info->add_timestamp = 1;
Steven Rostedt (Red Hat)9826b272015-05-28 17:36:45 -04002835}
2836
Steven Rostedt6634ff22009-05-06 15:30:07 -04002837static struct ring_buffer_event *
2838__rb_reserve_next(struct ring_buffer_per_cpu *cpu_buffer,
Steven Rostedt (Red Hat)fcc742e2015-05-28 17:13:14 -04002839 struct rb_event_info *info)
Steven Rostedt6634ff22009-05-06 15:30:07 -04002840{
Steven Rostedt6634ff22009-05-06 15:30:07 -04002841 struct ring_buffer_event *event;
Steven Rostedt (Red Hat)fcc742e2015-05-28 17:13:14 -04002842 struct buffer_page *tail_page;
Steven Rostedt6634ff22009-05-06 15:30:07 -04002843 unsigned long tail, write;
Steven Rostedt (Red Hat)b7dc42f2015-09-03 08:57:12 -04002844
2845 /*
2846 * If the time delta since the last event is too big to
2847 * hold in the time field of the event, then we append a
2848 * TIME EXTEND event ahead of the data event.
2849 */
2850 if (unlikely(info->add_timestamp))
2851 info->length += RB_LEN_TIME_EXTEND;
Steven Rostedt69d1b832010-10-07 18:18:05 -04002852
Steven Rostedt (Red Hat)85736362015-11-17 14:03:11 -05002853 /* Don't let the compiler play games with cpu_buffer->tail_page */
2854 tail_page = info->tail_page = READ_ONCE(cpu_buffer->tail_page);
Steven Rostedt (Red Hat)fcc742e2015-05-28 17:13:14 -04002855 write = local_add_return(info->length, &tail_page->write);
Steven Rostedt77ae3652009-03-27 11:00:29 -04002856
2857 /* set write to only the index of the write */
2858 write &= RB_WRITE_MASK;
Steven Rostedt (Red Hat)fcc742e2015-05-28 17:13:14 -04002859 tail = write - info->length;
Steven Rostedt6634ff22009-05-06 15:30:07 -04002860
Steven Rostedt (Red Hat)b7dc42f2015-09-03 08:57:12 -04002861 /*
2862 * If this is the first commit on the page, then it has the same
2863 * timestamp as the page itself.
2864 */
Tom Zanussidc4e2802018-01-15 20:51:40 -06002865 if (!tail && !ring_buffer_time_stamp_abs(cpu_buffer->buffer))
Steven Rostedt (Red Hat)b7dc42f2015-09-03 08:57:12 -04002866 info->delta = 0;
2867
Steven Rostedt6634ff22009-05-06 15:30:07 -04002868 /* See if we shot pass the end of this buffer page */
Steven Rostedt747e94a2010-10-08 13:51:48 -04002869 if (unlikely(write > BUF_PAGE_SIZE))
Steven Rostedt (Red Hat)fcc742e2015-05-28 17:13:14 -04002870 return rb_move_tail(cpu_buffer, tail, info);
Steven Rostedt6634ff22009-05-06 15:30:07 -04002871
2872 /* We reserved something on the buffer */
Steven Rostedt (Red Hat)b7dc42f2015-09-03 08:57:12 -04002873
Steven Rostedt6634ff22009-05-06 15:30:07 -04002874 event = __rb_page_index(tail_page, tail);
Steven Rostedt (Red Hat)fcc742e2015-05-28 17:13:14 -04002875 rb_update_event(cpu_buffer, event, info);
Steven Rostedt6634ff22009-05-06 15:30:07 -04002876
Steven Rostedt69d1b832010-10-07 18:18:05 -04002877 local_inc(&tail_page->entries);
Steven Rostedt6634ff22009-05-06 15:30:07 -04002878
Steven Rostedt (Red Hat)b7dc42f2015-09-03 08:57:12 -04002879 /*
2880 * If this is the first commit on the page, then update
2881 * its timestamp.
2882 */
2883 if (!tail)
2884 tail_page->page->time_stamp = info->ts;
2885
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07002886 /* account for these added bytes */
Steven Rostedt (Red Hat)fcc742e2015-05-28 17:13:14 -04002887 local_add(info->length, &cpu_buffer->entries_bytes);
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07002888
Steven Rostedt6634ff22009-05-06 15:30:07 -04002889 return event;
2890}
2891
Steven Rostedt (Red Hat)fa7ffb32016-11-23 11:36:30 -05002892static __always_inline struct ring_buffer_event *
Steven Rostedt62f0b3e2009-09-04 14:11:34 -04002893rb_reserve_next_event(struct ring_buffer *buffer,
2894 struct ring_buffer_per_cpu *cpu_buffer,
Steven Rostedt1cd8d732009-05-11 14:08:09 -04002895 unsigned long length)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002896{
2897 struct ring_buffer_event *event;
Steven Rostedt (Red Hat)fcc742e2015-05-28 17:13:14 -04002898 struct rb_event_info info;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002899 int nr_loops = 0;
Steven Rostedt (Red Hat)b7dc42f2015-09-03 08:57:12 -04002900 u64 diff;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002901
Steven Rostedtfa743952009-06-16 12:37:57 -04002902 rb_start_commit(cpu_buffer);
2903
Steven Rostedt85bac322009-09-04 14:24:40 -04002904#ifdef CONFIG_RING_BUFFER_ALLOW_SWAP
Steven Rostedt62f0b3e2009-09-04 14:11:34 -04002905 /*
2906 * Due to the ability to swap a cpu buffer from a buffer
2907 * it is possible it was swapped before we committed.
2908 * (committing stops a swap). We check for it here and
2909 * if it happened, we have to fail the write.
2910 */
2911 barrier();
Mark Rutland6aa7de02017-10-23 14:07:29 -07002912 if (unlikely(READ_ONCE(cpu_buffer->buffer) != buffer)) {
Steven Rostedt62f0b3e2009-09-04 14:11:34 -04002913 local_dec(&cpu_buffer->committing);
2914 local_dec(&cpu_buffer->commits);
2915 return NULL;
2916 }
Steven Rostedt85bac322009-09-04 14:24:40 -04002917#endif
Steven Rostedt (Red Hat)b7dc42f2015-09-03 08:57:12 -04002918
Steven Rostedt (Red Hat)fcc742e2015-05-28 17:13:14 -04002919 info.length = rb_calculate_event_length(length);
Steven Rostedt (Red Hat)a4543a22015-05-29 09:40:18 -04002920 again:
Steven Rostedt (Red Hat)b7dc42f2015-09-03 08:57:12 -04002921 info.add_timestamp = 0;
2922 info.delta = 0;
2923
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002924 /*
2925 * We allow for interrupts to reenter here and do a trace.
2926 * If one does, it will cause this original code to loop
2927 * back here. Even with heavy interrupts happening, this
2928 * should only happen a few times in a row. If this happens
2929 * 1000 times in a row, there must be either an interrupt
2930 * storm or we have something buggy.
2931 * Bail!
2932 */
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05002933 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 1000))
Steven Rostedtfa743952009-06-16 12:37:57 -04002934 goto out_fail;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002935
Steven Rostedt (Red Hat)b7dc42f2015-09-03 08:57:12 -04002936 info.ts = rb_time_stamp(cpu_buffer->buffer);
2937 diff = info.ts - cpu_buffer->write_stamp;
2938
2939 /* make sure this diff is calculated here */
2940 barrier();
2941
Tom Zanussidc4e2802018-01-15 20:51:40 -06002942 if (ring_buffer_time_stamp_abs(buffer)) {
2943 info.delta = info.ts;
2944 rb_handle_timestamp(cpu_buffer, &info);
2945 } else /* Did the write stamp get updated already? */
2946 if (likely(info.ts >= cpu_buffer->write_stamp)) {
Steven Rostedt (Red Hat)b7dc42f2015-09-03 08:57:12 -04002947 info.delta = diff;
2948 if (unlikely(test_time_stamp(info.delta)))
2949 rb_handle_timestamp(cpu_buffer, &info);
2950 }
2951
Steven Rostedt (Red Hat)fcc742e2015-05-28 17:13:14 -04002952 event = __rb_reserve_next(cpu_buffer, &info);
2953
Steven Rostedt (Red Hat)bd1b7cd2015-11-23 17:35:24 -05002954 if (unlikely(PTR_ERR(event) == -EAGAIN)) {
2955 if (info.add_timestamp)
2956 info.length -= RB_LEN_TIME_EXTEND;
Steven Rostedtbf41a152008-10-04 02:00:59 -04002957 goto again;
Steven Rostedt (Red Hat)bd1b7cd2015-11-23 17:35:24 -05002958 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002959
Steven Rostedtfa743952009-06-16 12:37:57 -04002960 if (!event)
2961 goto out_fail;
Steven Rostedtbf41a152008-10-04 02:00:59 -04002962
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002963 return event;
Steven Rostedtfa743952009-06-16 12:37:57 -04002964
2965 out_fail:
2966 rb_end_commit(cpu_buffer);
2967 return NULL;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002968}
2969
2970/**
2971 * ring_buffer_lock_reserve - reserve a part of the buffer
2972 * @buffer: the ring buffer to reserve from
2973 * @length: the length of the data to reserve (excluding event header)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002974 *
Steven Rostedt (VMware)6167c202018-05-16 11:17:06 -04002975 * Returns a reserved event on the ring buffer to copy directly to.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002976 * The user of this interface will need to get the body to write into
2977 * and can use the ring_buffer_event_data() interface.
2978 *
2979 * The length is the length of the data needed, not the event length
2980 * which also includes the event header.
2981 *
2982 * Must be paired with ring_buffer_unlock_commit, unless NULL is returned.
2983 * If NULL is returned, then nothing has been allocated or locked.
2984 */
2985struct ring_buffer_event *
Arnaldo Carvalho de Melo0a987752009-02-05 16:12:56 -02002986ring_buffer_lock_reserve(struct ring_buffer *buffer, unsigned long length)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002987{
2988 struct ring_buffer_per_cpu *cpu_buffer;
2989 struct ring_buffer_event *event;
Steven Rostedt5168ae52010-06-03 09:36:50 -04002990 int cpu;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002991
Steven Rostedtbf41a152008-10-04 02:00:59 -04002992 /* If we are tracing schedule, we don't want to recurse */
Steven Rostedt5168ae52010-06-03 09:36:50 -04002993 preempt_disable_notrace();
Steven Rostedtbf41a152008-10-04 02:00:59 -04002994
Steven Rostedt (Red Hat)3205f802015-05-21 17:39:29 -04002995 if (unlikely(atomic_read(&buffer->record_disabled)))
Steven Rostedt (Red Hat)58a09ec2015-05-27 10:27:47 -04002996 goto out;
Steven Rostedt261842b2009-04-16 21:41:52 -04002997
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002998 cpu = raw_smp_processor_id();
2999
Steven Rostedt (Red Hat)3205f802015-05-21 17:39:29 -04003000 if (unlikely(!cpumask_test_cpu(cpu, buffer->cpumask)))
Steven Rostedtd7690412008-10-01 00:29:53 -04003001 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003002
3003 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003004
Steven Rostedt (Red Hat)3205f802015-05-21 17:39:29 -04003005 if (unlikely(atomic_read(&cpu_buffer->record_disabled)))
Steven Rostedtd7690412008-10-01 00:29:53 -04003006 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003007
Steven Rostedt (Red Hat)3205f802015-05-21 17:39:29 -04003008 if (unlikely(length > BUF_MAX_DATA_SIZE))
Steven Rostedtbf41a152008-10-04 02:00:59 -04003009 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003010
Steven Rostedt (Red Hat)58a09ec2015-05-27 10:27:47 -04003011 if (unlikely(trace_recursive_lock(cpu_buffer)))
3012 goto out;
3013
Steven Rostedt62f0b3e2009-09-04 14:11:34 -04003014 event = rb_reserve_next_event(buffer, cpu_buffer, length);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003015 if (!event)
Steven Rostedt (Red Hat)58a09ec2015-05-27 10:27:47 -04003016 goto out_unlock;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003017
3018 return event;
3019
Steven Rostedt (Red Hat)58a09ec2015-05-27 10:27:47 -04003020 out_unlock:
3021 trace_recursive_unlock(cpu_buffer);
Steven Rostedtd7690412008-10-01 00:29:53 -04003022 out:
Steven Rostedt5168ae52010-06-03 09:36:50 -04003023 preempt_enable_notrace();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003024 return NULL;
3025}
Robert Richterc4f50182008-12-11 16:49:22 +01003026EXPORT_SYMBOL_GPL(ring_buffer_lock_reserve);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003027
Steven Rostedta1863c22009-09-03 10:23:58 -04003028/*
3029 * Decrement the entries to the page that an event is on.
3030 * The event does not even need to exist, only the pointer
3031 * to the page it is on. This may only be called before the commit
3032 * takes place.
3033 */
3034static inline void
3035rb_decrement_entry(struct ring_buffer_per_cpu *cpu_buffer,
3036 struct ring_buffer_event *event)
3037{
3038 unsigned long addr = (unsigned long)event;
3039 struct buffer_page *bpage = cpu_buffer->commit_page;
3040 struct buffer_page *start;
3041
3042 addr &= PAGE_MASK;
3043
3044 /* Do the likely case first */
3045 if (likely(bpage->page == (void *)addr)) {
3046 local_dec(&bpage->entries);
3047 return;
3048 }
3049
3050 /*
3051 * Because the commit page may be on the reader page we
3052 * start with the next page and check the end loop there.
3053 */
3054 rb_inc_page(cpu_buffer, &bpage);
3055 start = bpage;
3056 do {
3057 if (bpage->page == (void *)addr) {
3058 local_dec(&bpage->entries);
3059 return;
3060 }
3061 rb_inc_page(cpu_buffer, &bpage);
3062 } while (bpage != start);
3063
3064 /* commit not part of this buffer?? */
3065 RB_WARN_ON(cpu_buffer, 1);
3066}
3067
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003068/**
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04003069 * ring_buffer_commit_discard - discard an event that has not been committed
3070 * @buffer: the ring buffer
3071 * @event: non committed event to discard
3072 *
Steven Rostedtdc892f72009-09-03 15:33:41 -04003073 * Sometimes an event that is in the ring buffer needs to be ignored.
3074 * This function lets the user discard an event in the ring buffer
3075 * and then that event will not be read later.
3076 *
Steven Rostedt (VMware)6167c202018-05-16 11:17:06 -04003077 * This function only works if it is called before the item has been
Steven Rostedtdc892f72009-09-03 15:33:41 -04003078 * committed. It will try to free the event from the ring buffer
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04003079 * if another event has not been added behind it.
3080 *
3081 * If another event has been added behind it, it will set the event
3082 * up as discarded, and perform the commit.
3083 *
3084 * If this function is called, do not call ring_buffer_unlock_commit on
3085 * the event.
3086 */
3087void ring_buffer_discard_commit(struct ring_buffer *buffer,
3088 struct ring_buffer_event *event)
3089{
3090 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04003091 int cpu;
3092
3093 /* The event is discarded regardless */
Frederic Weisbeckerf3b9aae2009-04-19 23:39:33 +02003094 rb_event_discard(event);
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04003095
Steven Rostedtfa743952009-06-16 12:37:57 -04003096 cpu = smp_processor_id();
3097 cpu_buffer = buffer->buffers[cpu];
3098
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04003099 /*
3100 * This must only be called if the event has not been
3101 * committed yet. Thus we can assume that preemption
3102 * is still disabled.
3103 */
Steven Rostedtfa743952009-06-16 12:37:57 -04003104 RB_WARN_ON(buffer, !local_read(&cpu_buffer->committing));
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04003105
Steven Rostedta1863c22009-09-03 10:23:58 -04003106 rb_decrement_entry(cpu_buffer, event);
Steven Rostedt0f2541d2009-08-05 12:02:48 -04003107 if (rb_try_to_discard(cpu_buffer, event))
Steven Rostedtedd813bf2009-06-02 23:00:53 -04003108 goto out;
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04003109
3110 /*
3111 * The commit is still visible by the reader, so we
Steven Rostedta1863c22009-09-03 10:23:58 -04003112 * must still update the timestamp.
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04003113 */
Steven Rostedta1863c22009-09-03 10:23:58 -04003114 rb_update_write_stamp(cpu_buffer, event);
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04003115 out:
Steven Rostedtfa743952009-06-16 12:37:57 -04003116 rb_end_commit(cpu_buffer);
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04003117
Steven Rostedt (Red Hat)58a09ec2015-05-27 10:27:47 -04003118 trace_recursive_unlock(cpu_buffer);
Frederic Weisbeckerf3b9aae2009-04-19 23:39:33 +02003119
Steven Rostedt5168ae52010-06-03 09:36:50 -04003120 preempt_enable_notrace();
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04003121
3122}
3123EXPORT_SYMBOL_GPL(ring_buffer_discard_commit);
3124
3125/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003126 * ring_buffer_write - write data to the buffer without reserving
3127 * @buffer: The ring buffer to write to.
3128 * @length: The length of the data being written (excluding the event header)
3129 * @data: The data to write to the buffer.
3130 *
3131 * This is like ring_buffer_lock_reserve and ring_buffer_unlock_commit as
3132 * one function. If you already have the data to write to the buffer, it
3133 * may be easier to simply call this function.
3134 *
3135 * Note, like ring_buffer_lock_reserve, the length is the length of the data
3136 * and not the length of the event which would hold the header.
3137 */
3138int ring_buffer_write(struct ring_buffer *buffer,
David Sharp01e3e712012-06-07 16:46:24 -07003139 unsigned long length,
3140 void *data)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003141{
3142 struct ring_buffer_per_cpu *cpu_buffer;
3143 struct ring_buffer_event *event;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003144 void *body;
3145 int ret = -EBUSY;
Steven Rostedt5168ae52010-06-03 09:36:50 -04003146 int cpu;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003147
Steven Rostedt5168ae52010-06-03 09:36:50 -04003148 preempt_disable_notrace();
Steven Rostedtbf41a152008-10-04 02:00:59 -04003149
Lai Jiangshan52fbe9c2010-03-08 14:50:43 +08003150 if (atomic_read(&buffer->record_disabled))
3151 goto out;
3152
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003153 cpu = raw_smp_processor_id();
3154
Rusty Russell9e01c1b2009-01-01 10:12:22 +10303155 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedtd7690412008-10-01 00:29:53 -04003156 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003157
3158 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003159
3160 if (atomic_read(&cpu_buffer->record_disabled))
3161 goto out;
3162
Steven Rostedtbe957c42009-05-11 14:42:53 -04003163 if (length > BUF_MAX_DATA_SIZE)
3164 goto out;
3165
Steven Rostedt (Red Hat)985e8712015-05-27 10:48:56 -04003166 if (unlikely(trace_recursive_lock(cpu_buffer)))
3167 goto out;
3168
Steven Rostedt62f0b3e2009-09-04 14:11:34 -04003169 event = rb_reserve_next_event(buffer, cpu_buffer, length);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003170 if (!event)
Steven Rostedt (Red Hat)985e8712015-05-27 10:48:56 -04003171 goto out_unlock;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003172
3173 body = rb_event_data(event);
3174
3175 memcpy(body, data, length);
3176
3177 rb_commit(cpu_buffer, event);
3178
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -05003179 rb_wakeups(buffer, cpu_buffer);
3180
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003181 ret = 0;
Steven Rostedt (Red Hat)985e8712015-05-27 10:48:56 -04003182
3183 out_unlock:
3184 trace_recursive_unlock(cpu_buffer);
3185
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003186 out:
Steven Rostedt5168ae52010-06-03 09:36:50 -04003187 preempt_enable_notrace();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003188
3189 return ret;
3190}
Robert Richterc4f50182008-12-11 16:49:22 +01003191EXPORT_SYMBOL_GPL(ring_buffer_write);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003192
Yaowei Baida588342015-09-29 22:43:33 +08003193static bool rb_per_cpu_empty(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedtbf41a152008-10-04 02:00:59 -04003194{
3195 struct buffer_page *reader = cpu_buffer->reader_page;
Steven Rostedt77ae3652009-03-27 11:00:29 -04003196 struct buffer_page *head = rb_set_head_page(cpu_buffer);
Steven Rostedtbf41a152008-10-04 02:00:59 -04003197 struct buffer_page *commit = cpu_buffer->commit_page;
3198
Steven Rostedt77ae3652009-03-27 11:00:29 -04003199 /* In case of error, head will be NULL */
3200 if (unlikely(!head))
Yaowei Baida588342015-09-29 22:43:33 +08003201 return true;
Steven Rostedt77ae3652009-03-27 11:00:29 -04003202
Steven Rostedtbf41a152008-10-04 02:00:59 -04003203 return reader->read == rb_page_commit(reader) &&
3204 (commit == reader ||
3205 (commit == head &&
3206 head->read == rb_page_commit(commit)));
3207}
3208
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003209/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003210 * ring_buffer_record_disable - stop all writes into the buffer
3211 * @buffer: The ring buffer to stop writes to.
3212 *
3213 * This prevents all writes to the buffer. Any attempt to write
3214 * to the buffer after this will fail and return NULL.
3215 *
Paul E. McKenney74401722018-11-06 18:44:52 -08003216 * The caller should call synchronize_rcu() after this.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003217 */
3218void ring_buffer_record_disable(struct ring_buffer *buffer)
3219{
3220 atomic_inc(&buffer->record_disabled);
3221}
Robert Richterc4f50182008-12-11 16:49:22 +01003222EXPORT_SYMBOL_GPL(ring_buffer_record_disable);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003223
3224/**
3225 * ring_buffer_record_enable - enable writes to the buffer
3226 * @buffer: The ring buffer to enable writes
3227 *
3228 * Note, multiple disables will need the same number of enables
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05003229 * to truly enable the writing (much like preempt_disable).
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003230 */
3231void ring_buffer_record_enable(struct ring_buffer *buffer)
3232{
3233 atomic_dec(&buffer->record_disabled);
3234}
Robert Richterc4f50182008-12-11 16:49:22 +01003235EXPORT_SYMBOL_GPL(ring_buffer_record_enable);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003236
3237/**
Steven Rostedt499e5472012-02-22 15:50:28 -05003238 * ring_buffer_record_off - stop all writes into the buffer
3239 * @buffer: The ring buffer to stop writes to.
3240 *
3241 * This prevents all writes to the buffer. Any attempt to write
3242 * to the buffer after this will fail and return NULL.
3243 *
3244 * This is different than ring_buffer_record_disable() as
Wang Tianhong87abb3b2012-08-02 14:02:00 +08003245 * it works like an on/off switch, where as the disable() version
Steven Rostedt499e5472012-02-22 15:50:28 -05003246 * must be paired with a enable().
3247 */
3248void ring_buffer_record_off(struct ring_buffer *buffer)
3249{
3250 unsigned int rd;
3251 unsigned int new_rd;
3252
3253 do {
3254 rd = atomic_read(&buffer->record_disabled);
3255 new_rd = rd | RB_BUFFER_OFF;
3256 } while (atomic_cmpxchg(&buffer->record_disabled, rd, new_rd) != rd);
3257}
3258EXPORT_SYMBOL_GPL(ring_buffer_record_off);
3259
3260/**
3261 * ring_buffer_record_on - restart writes into the buffer
3262 * @buffer: The ring buffer to start writes to.
3263 *
3264 * This enables all writes to the buffer that was disabled by
3265 * ring_buffer_record_off().
3266 *
3267 * This is different than ring_buffer_record_enable() as
Wang Tianhong87abb3b2012-08-02 14:02:00 +08003268 * it works like an on/off switch, where as the enable() version
Steven Rostedt499e5472012-02-22 15:50:28 -05003269 * must be paired with a disable().
3270 */
3271void ring_buffer_record_on(struct ring_buffer *buffer)
3272{
3273 unsigned int rd;
3274 unsigned int new_rd;
3275
3276 do {
3277 rd = atomic_read(&buffer->record_disabled);
3278 new_rd = rd & ~RB_BUFFER_OFF;
3279 } while (atomic_cmpxchg(&buffer->record_disabled, rd, new_rd) != rd);
3280}
3281EXPORT_SYMBOL_GPL(ring_buffer_record_on);
3282
3283/**
3284 * ring_buffer_record_is_on - return true if the ring buffer can write
3285 * @buffer: The ring buffer to see if write is enabled
3286 *
3287 * Returns true if the ring buffer is in a state that it accepts writes.
3288 */
Steven Rostedt (VMware)3ebea2802018-08-01 21:08:30 -04003289bool ring_buffer_record_is_on(struct ring_buffer *buffer)
Steven Rostedt499e5472012-02-22 15:50:28 -05003290{
3291 return !atomic_read(&buffer->record_disabled);
3292}
3293
3294/**
Masami Hiramatsu73c8d892018-07-14 01:28:15 +09003295 * ring_buffer_record_is_set_on - return true if the ring buffer is set writable
3296 * @buffer: The ring buffer to see if write is set enabled
3297 *
3298 * Returns true if the ring buffer is set writable by ring_buffer_record_on().
3299 * Note that this does NOT mean it is in a writable state.
3300 *
3301 * It may return true when the ring buffer has been disabled by
3302 * ring_buffer_record_disable(), as that is a temporary disabling of
3303 * the ring buffer.
3304 */
Steven Rostedt (VMware)d7224c02018-08-01 21:09:50 -04003305bool ring_buffer_record_is_set_on(struct ring_buffer *buffer)
Masami Hiramatsu73c8d892018-07-14 01:28:15 +09003306{
3307 return !(atomic_read(&buffer->record_disabled) & RB_BUFFER_OFF);
3308}
3309
3310/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003311 * ring_buffer_record_disable_cpu - stop all writes into the cpu_buffer
3312 * @buffer: The ring buffer to stop writes to.
3313 * @cpu: The CPU buffer to stop
3314 *
3315 * This prevents all writes to the buffer. Any attempt to write
3316 * to the buffer after this will fail and return NULL.
3317 *
Paul E. McKenney74401722018-11-06 18:44:52 -08003318 * The caller should call synchronize_rcu() after this.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003319 */
3320void ring_buffer_record_disable_cpu(struct ring_buffer *buffer, int cpu)
3321{
3322 struct ring_buffer_per_cpu *cpu_buffer;
3323
Rusty Russell9e01c1b2009-01-01 10:12:22 +10303324 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04003325 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003326
3327 cpu_buffer = buffer->buffers[cpu];
3328 atomic_inc(&cpu_buffer->record_disabled);
3329}
Robert Richterc4f50182008-12-11 16:49:22 +01003330EXPORT_SYMBOL_GPL(ring_buffer_record_disable_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003331
3332/**
3333 * ring_buffer_record_enable_cpu - enable writes to the buffer
3334 * @buffer: The ring buffer to enable writes
3335 * @cpu: The CPU to enable.
3336 *
3337 * Note, multiple disables will need the same number of enables
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05003338 * to truly enable the writing (much like preempt_disable).
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003339 */
3340void ring_buffer_record_enable_cpu(struct ring_buffer *buffer, int cpu)
3341{
3342 struct ring_buffer_per_cpu *cpu_buffer;
3343
Rusty Russell9e01c1b2009-01-01 10:12:22 +10303344 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04003345 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003346
3347 cpu_buffer = buffer->buffers[cpu];
3348 atomic_dec(&cpu_buffer->record_disabled);
3349}
Robert Richterc4f50182008-12-11 16:49:22 +01003350EXPORT_SYMBOL_GPL(ring_buffer_record_enable_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003351
Steven Rostedtf6195aa2010-09-01 12:23:12 -04003352/*
3353 * The total entries in the ring buffer is the running counter
3354 * of entries entered into the ring buffer, minus the sum of
3355 * the entries read from the ring buffer and the number of
3356 * entries that were overwritten.
3357 */
3358static inline unsigned long
3359rb_num_of_entries(struct ring_buffer_per_cpu *cpu_buffer)
3360{
3361 return local_read(&cpu_buffer->entries) -
3362 (local_read(&cpu_buffer->overrun) + cpu_buffer->read);
3363}
3364
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003365/**
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07003366 * ring_buffer_oldest_event_ts - get the oldest event timestamp from the buffer
3367 * @buffer: The ring buffer
3368 * @cpu: The per CPU buffer to read from.
3369 */
Yoshihiro YUNOMAE50ecf2c2012-10-11 16:27:54 -07003370u64 ring_buffer_oldest_event_ts(struct ring_buffer *buffer, int cpu)
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07003371{
3372 unsigned long flags;
3373 struct ring_buffer_per_cpu *cpu_buffer;
3374 struct buffer_page *bpage;
Linus Torvaldsda830e52012-12-11 18:18:58 -08003375 u64 ret = 0;
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07003376
3377 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3378 return 0;
3379
3380 cpu_buffer = buffer->buffers[cpu];
Linus Torvalds7115e3f2011-10-26 17:03:38 +02003381 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07003382 /*
3383 * if the tail is on reader_page, oldest time stamp is on the reader
3384 * page
3385 */
3386 if (cpu_buffer->tail_page == cpu_buffer->reader_page)
3387 bpage = cpu_buffer->reader_page;
3388 else
3389 bpage = rb_set_head_page(cpu_buffer);
Steven Rostedt54f7be52012-11-29 22:27:22 -05003390 if (bpage)
3391 ret = bpage->page->time_stamp;
Linus Torvalds7115e3f2011-10-26 17:03:38 +02003392 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07003393
3394 return ret;
3395}
3396EXPORT_SYMBOL_GPL(ring_buffer_oldest_event_ts);
3397
3398/**
3399 * ring_buffer_bytes_cpu - get the number of bytes consumed in a cpu buffer
3400 * @buffer: The ring buffer
3401 * @cpu: The per CPU buffer to read from.
3402 */
3403unsigned long ring_buffer_bytes_cpu(struct ring_buffer *buffer, int cpu)
3404{
3405 struct ring_buffer_per_cpu *cpu_buffer;
3406 unsigned long ret;
3407
3408 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3409 return 0;
3410
3411 cpu_buffer = buffer->buffers[cpu];
3412 ret = local_read(&cpu_buffer->entries_bytes) - cpu_buffer->read_bytes;
3413
3414 return ret;
3415}
3416EXPORT_SYMBOL_GPL(ring_buffer_bytes_cpu);
3417
3418/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003419 * ring_buffer_entries_cpu - get the number of entries in a cpu buffer
3420 * @buffer: The ring buffer
3421 * @cpu: The per CPU buffer to get the entries from.
3422 */
3423unsigned long ring_buffer_entries_cpu(struct ring_buffer *buffer, int cpu)
3424{
3425 struct ring_buffer_per_cpu *cpu_buffer;
3426
Rusty Russell9e01c1b2009-01-01 10:12:22 +10303427 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04003428 return 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003429
3430 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt554f7862009-03-11 22:00:13 -04003431
Steven Rostedtf6195aa2010-09-01 12:23:12 -04003432 return rb_num_of_entries(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003433}
Robert Richterc4f50182008-12-11 16:49:22 +01003434EXPORT_SYMBOL_GPL(ring_buffer_entries_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003435
3436/**
Slava Pestov884bfe82011-07-15 14:23:58 -07003437 * ring_buffer_overrun_cpu - get the number of overruns caused by the ring
3438 * buffer wrapping around (only if RB_FL_OVERWRITE is on).
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003439 * @buffer: The ring buffer
3440 * @cpu: The per CPU buffer to get the number of overruns from
3441 */
3442unsigned long ring_buffer_overrun_cpu(struct ring_buffer *buffer, int cpu)
3443{
3444 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt8aabee52009-03-12 13:13:49 -04003445 unsigned long ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003446
Rusty Russell9e01c1b2009-01-01 10:12:22 +10303447 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04003448 return 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003449
3450 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt77ae3652009-03-27 11:00:29 -04003451 ret = local_read(&cpu_buffer->overrun);
Steven Rostedt554f7862009-03-11 22:00:13 -04003452
3453 return ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003454}
Robert Richterc4f50182008-12-11 16:49:22 +01003455EXPORT_SYMBOL_GPL(ring_buffer_overrun_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003456
3457/**
Slava Pestov884bfe82011-07-15 14:23:58 -07003458 * ring_buffer_commit_overrun_cpu - get the number of overruns caused by
3459 * commits failing due to the buffer wrapping around while there are uncommitted
3460 * events, such as during an interrupt storm.
Steven Rostedtf0d2c682009-04-29 13:43:37 -04003461 * @buffer: The ring buffer
3462 * @cpu: The per CPU buffer to get the number of overruns from
3463 */
3464unsigned long
3465ring_buffer_commit_overrun_cpu(struct ring_buffer *buffer, int cpu)
3466{
3467 struct ring_buffer_per_cpu *cpu_buffer;
3468 unsigned long ret;
3469
3470 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3471 return 0;
3472
3473 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt77ae3652009-03-27 11:00:29 -04003474 ret = local_read(&cpu_buffer->commit_overrun);
Steven Rostedtf0d2c682009-04-29 13:43:37 -04003475
3476 return ret;
3477}
3478EXPORT_SYMBOL_GPL(ring_buffer_commit_overrun_cpu);
3479
3480/**
Slava Pestov884bfe82011-07-15 14:23:58 -07003481 * ring_buffer_dropped_events_cpu - get the number of dropped events caused by
3482 * the ring buffer filling up (only if RB_FL_OVERWRITE is off).
3483 * @buffer: The ring buffer
3484 * @cpu: The per CPU buffer to get the number of overruns from
3485 */
3486unsigned long
3487ring_buffer_dropped_events_cpu(struct ring_buffer *buffer, int cpu)
3488{
3489 struct ring_buffer_per_cpu *cpu_buffer;
3490 unsigned long ret;
3491
3492 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3493 return 0;
3494
3495 cpu_buffer = buffer->buffers[cpu];
3496 ret = local_read(&cpu_buffer->dropped_events);
3497
3498 return ret;
3499}
3500EXPORT_SYMBOL_GPL(ring_buffer_dropped_events_cpu);
3501
3502/**
Steven Rostedt (Red Hat)ad964702013-01-29 17:45:49 -05003503 * ring_buffer_read_events_cpu - get the number of events successfully read
3504 * @buffer: The ring buffer
3505 * @cpu: The per CPU buffer to get the number of events read
3506 */
3507unsigned long
3508ring_buffer_read_events_cpu(struct ring_buffer *buffer, int cpu)
3509{
3510 struct ring_buffer_per_cpu *cpu_buffer;
3511
3512 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3513 return 0;
3514
3515 cpu_buffer = buffer->buffers[cpu];
3516 return cpu_buffer->read;
3517}
3518EXPORT_SYMBOL_GPL(ring_buffer_read_events_cpu);
3519
3520/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003521 * ring_buffer_entries - get the number of entries in a buffer
3522 * @buffer: The ring buffer
3523 *
3524 * Returns the total number of entries in the ring buffer
3525 * (all CPU entries)
3526 */
3527unsigned long ring_buffer_entries(struct ring_buffer *buffer)
3528{
3529 struct ring_buffer_per_cpu *cpu_buffer;
3530 unsigned long entries = 0;
3531 int cpu;
3532
3533 /* if you care about this being correct, lock the buffer */
3534 for_each_buffer_cpu(buffer, cpu) {
3535 cpu_buffer = buffer->buffers[cpu];
Steven Rostedtf6195aa2010-09-01 12:23:12 -04003536 entries += rb_num_of_entries(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003537 }
3538
3539 return entries;
3540}
Robert Richterc4f50182008-12-11 16:49:22 +01003541EXPORT_SYMBOL_GPL(ring_buffer_entries);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003542
3543/**
Jiri Olsa67b394f2009-10-23 19:36:18 -04003544 * ring_buffer_overruns - get the number of overruns in buffer
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003545 * @buffer: The ring buffer
3546 *
3547 * Returns the total number of overruns in the ring buffer
3548 * (all CPU entries)
3549 */
3550unsigned long ring_buffer_overruns(struct ring_buffer *buffer)
3551{
3552 struct ring_buffer_per_cpu *cpu_buffer;
3553 unsigned long overruns = 0;
3554 int cpu;
3555
3556 /* if you care about this being correct, lock the buffer */
3557 for_each_buffer_cpu(buffer, cpu) {
3558 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt77ae3652009-03-27 11:00:29 -04003559 overruns += local_read(&cpu_buffer->overrun);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003560 }
3561
3562 return overruns;
3563}
Robert Richterc4f50182008-12-11 16:49:22 +01003564EXPORT_SYMBOL_GPL(ring_buffer_overruns);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003565
Steven Rostedt642edba2008-11-12 00:01:26 -05003566static void rb_iter_reset(struct ring_buffer_iter *iter)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003567{
3568 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
3569
Steven Rostedtd7690412008-10-01 00:29:53 -04003570 /* Iterator usage is expected to have record disabled */
Steven Rostedt (Red Hat)651e22f2014-08-06 14:11:33 -04003571 iter->head_page = cpu_buffer->reader_page;
3572 iter->head = cpu_buffer->reader_page->read;
3573
3574 iter->cache_reader_page = iter->head_page;
Steven Rostedt (Red Hat)24607f12014-10-02 16:51:18 -04003575 iter->cache_read = cpu_buffer->read;
Steven Rostedt (Red Hat)651e22f2014-08-06 14:11:33 -04003576
Steven Rostedtd7690412008-10-01 00:29:53 -04003577 if (iter->head)
3578 iter->read_stamp = cpu_buffer->read_stamp;
3579 else
Steven Rostedtabc9b562008-12-02 15:34:06 -05003580 iter->read_stamp = iter->head_page->page->time_stamp;
Steven Rostedt642edba2008-11-12 00:01:26 -05003581}
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003582
Steven Rostedt642edba2008-11-12 00:01:26 -05003583/**
3584 * ring_buffer_iter_reset - reset an iterator
3585 * @iter: The iterator to reset
3586 *
3587 * Resets the iterator, so that it will start from the beginning
3588 * again.
3589 */
3590void ring_buffer_iter_reset(struct ring_buffer_iter *iter)
3591{
Steven Rostedt554f7862009-03-11 22:00:13 -04003592 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt642edba2008-11-12 00:01:26 -05003593 unsigned long flags;
3594
Steven Rostedt554f7862009-03-11 22:00:13 -04003595 if (!iter)
3596 return;
3597
3598 cpu_buffer = iter->cpu_buffer;
3599
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02003600 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Steven Rostedt642edba2008-11-12 00:01:26 -05003601 rb_iter_reset(iter);
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02003602 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003603}
Robert Richterc4f50182008-12-11 16:49:22 +01003604EXPORT_SYMBOL_GPL(ring_buffer_iter_reset);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003605
3606/**
3607 * ring_buffer_iter_empty - check if an iterator has no more to read
3608 * @iter: The iterator to check
3609 */
3610int ring_buffer_iter_empty(struct ring_buffer_iter *iter)
3611{
3612 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt (VMware)78f7a452017-04-19 14:29:46 -04003613 struct buffer_page *reader;
3614 struct buffer_page *head_page;
3615 struct buffer_page *commit_page;
3616 unsigned commit;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003617
3618 cpu_buffer = iter->cpu_buffer;
3619
Steven Rostedt (VMware)78f7a452017-04-19 14:29:46 -04003620 /* Remember, trace recording is off when iterator is in use */
3621 reader = cpu_buffer->reader_page;
3622 head_page = cpu_buffer->head_page;
3623 commit_page = cpu_buffer->commit_page;
3624 commit = rb_page_commit(commit_page);
3625
3626 return ((iter->head_page == commit_page && iter->head == commit) ||
3627 (iter->head_page == reader && commit_page == head_page &&
3628 head_page->read == commit &&
3629 iter->head == rb_page_commit(cpu_buffer->reader_page)));
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003630}
Robert Richterc4f50182008-12-11 16:49:22 +01003631EXPORT_SYMBOL_GPL(ring_buffer_iter_empty);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003632
3633static void
3634rb_update_read_stamp(struct ring_buffer_per_cpu *cpu_buffer,
3635 struct ring_buffer_event *event)
3636{
3637 u64 delta;
3638
Lai Jiangshan334d4162009-04-24 11:27:05 +08003639 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003640 case RINGBUF_TYPE_PADDING:
3641 return;
3642
3643 case RINGBUF_TYPE_TIME_EXTEND:
Tom Zanussidc4e2802018-01-15 20:51:40 -06003644 delta = ring_buffer_event_time_stamp(event);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003645 cpu_buffer->read_stamp += delta;
3646 return;
3647
3648 case RINGBUF_TYPE_TIME_STAMP:
Tom Zanussidc4e2802018-01-15 20:51:40 -06003649 delta = ring_buffer_event_time_stamp(event);
3650 cpu_buffer->read_stamp = delta;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003651 return;
3652
3653 case RINGBUF_TYPE_DATA:
3654 cpu_buffer->read_stamp += event->time_delta;
3655 return;
3656
3657 default:
3658 BUG();
3659 }
3660 return;
3661}
3662
3663static void
3664rb_update_iter_read_stamp(struct ring_buffer_iter *iter,
3665 struct ring_buffer_event *event)
3666{
3667 u64 delta;
3668
Lai Jiangshan334d4162009-04-24 11:27:05 +08003669 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003670 case RINGBUF_TYPE_PADDING:
3671 return;
3672
3673 case RINGBUF_TYPE_TIME_EXTEND:
Tom Zanussidc4e2802018-01-15 20:51:40 -06003674 delta = ring_buffer_event_time_stamp(event);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003675 iter->read_stamp += delta;
3676 return;
3677
3678 case RINGBUF_TYPE_TIME_STAMP:
Tom Zanussidc4e2802018-01-15 20:51:40 -06003679 delta = ring_buffer_event_time_stamp(event);
3680 iter->read_stamp = delta;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003681 return;
3682
3683 case RINGBUF_TYPE_DATA:
3684 iter->read_stamp += event->time_delta;
3685 return;
3686
3687 default:
3688 BUG();
3689 }
3690 return;
3691}
3692
Steven Rostedtd7690412008-10-01 00:29:53 -04003693static struct buffer_page *
3694rb_get_reader_page(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003695{
Steven Rostedtd7690412008-10-01 00:29:53 -04003696 struct buffer_page *reader = NULL;
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003697 unsigned long overwrite;
Steven Rostedtd7690412008-10-01 00:29:53 -04003698 unsigned long flags;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003699 int nr_loops = 0;
Steven Rostedt77ae3652009-03-27 11:00:29 -04003700 int ret;
Steven Rostedtd7690412008-10-01 00:29:53 -04003701
Steven Rostedt3e03fb72008-11-06 00:09:43 -05003702 local_irq_save(flags);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01003703 arch_spin_lock(&cpu_buffer->lock);
Steven Rostedtd7690412008-10-01 00:29:53 -04003704
3705 again:
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003706 /*
3707 * This should normally only loop twice. But because the
3708 * start of the reader inserts an empty page, it causes
3709 * a case where we will loop three times. There should be no
3710 * reason to loop four times (that I know of).
3711 */
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05003712 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 3)) {
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003713 reader = NULL;
3714 goto out;
3715 }
3716
Steven Rostedtd7690412008-10-01 00:29:53 -04003717 reader = cpu_buffer->reader_page;
3718
3719 /* If there's more to read, return this page */
Steven Rostedtbf41a152008-10-04 02:00:59 -04003720 if (cpu_buffer->reader_page->read < rb_page_size(reader))
Steven Rostedtd7690412008-10-01 00:29:53 -04003721 goto out;
3722
3723 /* Never should we have an index greater than the size */
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05003724 if (RB_WARN_ON(cpu_buffer,
3725 cpu_buffer->reader_page->read > rb_page_size(reader)))
3726 goto out;
Steven Rostedtd7690412008-10-01 00:29:53 -04003727
3728 /* check if we caught up to the tail */
3729 reader = NULL;
Steven Rostedtbf41a152008-10-04 02:00:59 -04003730 if (cpu_buffer->commit_page == cpu_buffer->reader_page)
Steven Rostedtd7690412008-10-01 00:29:53 -04003731 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003732
Steven Rostedta5fb8332012-06-28 13:35:04 -04003733 /* Don't bother swapping if the ring buffer is empty */
3734 if (rb_num_of_entries(cpu_buffer) == 0)
3735 goto out;
3736
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003737 /*
Steven Rostedtd7690412008-10-01 00:29:53 -04003738 * Reset the reader page to size zero.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003739 */
Steven Rostedt77ae3652009-03-27 11:00:29 -04003740 local_set(&cpu_buffer->reader_page->write, 0);
3741 local_set(&cpu_buffer->reader_page->entries, 0);
3742 local_set(&cpu_buffer->reader_page->page->commit, 0);
Steven Rostedtff0ff842010-03-31 22:11:42 -04003743 cpu_buffer->reader_page->real_end = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003744
Steven Rostedt77ae3652009-03-27 11:00:29 -04003745 spin:
3746 /*
3747 * Splice the empty reader page into the list around the head.
3748 */
3749 reader = rb_set_head_page(cpu_buffer);
Steven Rostedt54f7be52012-11-29 22:27:22 -05003750 if (!reader)
3751 goto out;
Steven Rostedt0e1ff5d2010-01-06 20:40:44 -05003752 cpu_buffer->reader_page->list.next = rb_list_head(reader->list.next);
Steven Rostedtd7690412008-10-01 00:29:53 -04003753 cpu_buffer->reader_page->list.prev = reader->list.prev;
Steven Rostedtbf41a152008-10-04 02:00:59 -04003754
Steven Rostedt3adc54f2009-03-30 15:32:01 -04003755 /*
3756 * cpu_buffer->pages just needs to point to the buffer, it
3757 * has no specific buffer page to point to. Lets move it out
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003758 * of our way so we don't accidentally swap it.
Steven Rostedt3adc54f2009-03-30 15:32:01 -04003759 */
3760 cpu_buffer->pages = reader->list.prev;
3761
Steven Rostedt77ae3652009-03-27 11:00:29 -04003762 /* The reader page will be pointing to the new head */
3763 rb_set_list_to_head(cpu_buffer, &cpu_buffer->reader_page->list);
Steven Rostedtd7690412008-10-01 00:29:53 -04003764
3765 /*
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003766 * We want to make sure we read the overruns after we set up our
3767 * pointers to the next object. The writer side does a
3768 * cmpxchg to cross pages which acts as the mb on the writer
3769 * side. Note, the reader will constantly fail the swap
3770 * while the writer is updating the pointers, so this
3771 * guarantees that the overwrite recorded here is the one we
3772 * want to compare with the last_overrun.
3773 */
3774 smp_mb();
3775 overwrite = local_read(&(cpu_buffer->overrun));
3776
3777 /*
Steven Rostedt77ae3652009-03-27 11:00:29 -04003778 * Here's the tricky part.
3779 *
3780 * We need to move the pointer past the header page.
3781 * But we can only do that if a writer is not currently
3782 * moving it. The page before the header page has the
3783 * flag bit '1' set if it is pointing to the page we want.
3784 * but if the writer is in the process of moving it
3785 * than it will be '2' or already moved '0'.
Steven Rostedtd7690412008-10-01 00:29:53 -04003786 */
Steven Rostedtd7690412008-10-01 00:29:53 -04003787
Steven Rostedt77ae3652009-03-27 11:00:29 -04003788 ret = rb_head_page_replace(reader, cpu_buffer->reader_page);
3789
3790 /*
3791 * If we did not convert it, then we must try again.
3792 */
3793 if (!ret)
3794 goto spin;
3795
3796 /*
Steven Rostedt (VMware)2c2b0a72018-11-29 20:32:26 -05003797 * Yay! We succeeded in replacing the page.
Steven Rostedt77ae3652009-03-27 11:00:29 -04003798 *
3799 * Now make the new head point back to the reader page.
3800 */
David Sharp5ded3dc62010-01-06 17:12:07 -08003801 rb_list_head(reader->list.next)->prev = &cpu_buffer->reader_page->list;
Steven Rostedt77ae3652009-03-27 11:00:29 -04003802 rb_inc_page(cpu_buffer, &cpu_buffer->head_page);
Steven Rostedtd7690412008-10-01 00:29:53 -04003803
Steven Rostedt (VMware)2c2b0a72018-11-29 20:32:26 -05003804 local_inc(&cpu_buffer->pages_read);
3805
Steven Rostedtd7690412008-10-01 00:29:53 -04003806 /* Finally update the reader page to the new head */
3807 cpu_buffer->reader_page = reader;
Steven Rostedt (Red Hat)b81f4722015-11-23 10:35:36 -05003808 cpu_buffer->reader_page->read = 0;
Steven Rostedtd7690412008-10-01 00:29:53 -04003809
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003810 if (overwrite != cpu_buffer->last_overrun) {
3811 cpu_buffer->lost_events = overwrite - cpu_buffer->last_overrun;
3812 cpu_buffer->last_overrun = overwrite;
3813 }
3814
Steven Rostedtd7690412008-10-01 00:29:53 -04003815 goto again;
3816
3817 out:
Steven Rostedt (Red Hat)b81f4722015-11-23 10:35:36 -05003818 /* Update the read_stamp on the first event */
3819 if (reader && reader->read == 0)
3820 cpu_buffer->read_stamp = reader->page->time_stamp;
3821
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01003822 arch_spin_unlock(&cpu_buffer->lock);
Steven Rostedt3e03fb72008-11-06 00:09:43 -05003823 local_irq_restore(flags);
Steven Rostedtd7690412008-10-01 00:29:53 -04003824
3825 return reader;
3826}
3827
3828static void rb_advance_reader(struct ring_buffer_per_cpu *cpu_buffer)
3829{
3830 struct ring_buffer_event *event;
3831 struct buffer_page *reader;
3832 unsigned length;
3833
3834 reader = rb_get_reader_page(cpu_buffer);
3835
3836 /* This function should not be called when buffer is empty */
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05003837 if (RB_WARN_ON(cpu_buffer, !reader))
3838 return;
Steven Rostedtd7690412008-10-01 00:29:53 -04003839
3840 event = rb_reader_event(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003841
Steven Rostedta1863c22009-09-03 10:23:58 -04003842 if (event->type_len <= RINGBUF_TYPE_DATA_TYPE_LEN_MAX)
Steven Rostedte4906ef2009-04-30 20:49:44 -04003843 cpu_buffer->read++;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003844
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003845 rb_update_read_stamp(cpu_buffer, event);
3846
Steven Rostedtd7690412008-10-01 00:29:53 -04003847 length = rb_event_length(event);
Steven Rostedt6f807ac2008-10-04 02:00:58 -04003848 cpu_buffer->reader_page->read += length;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003849}
3850
3851static void rb_advance_iter(struct ring_buffer_iter *iter)
3852{
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003853 struct ring_buffer_per_cpu *cpu_buffer;
3854 struct ring_buffer_event *event;
3855 unsigned length;
3856
3857 cpu_buffer = iter->cpu_buffer;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003858
3859 /*
3860 * Check if we are at the end of the buffer.
3861 */
Steven Rostedtbf41a152008-10-04 02:00:59 -04003862 if (iter->head >= rb_page_size(iter->head_page)) {
Steven Rostedtea05b572009-06-03 09:30:10 -04003863 /* discarded commits can make the page empty */
3864 if (iter->head_page == cpu_buffer->commit_page)
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05003865 return;
Steven Rostedtd7690412008-10-01 00:29:53 -04003866 rb_inc_iter(iter);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003867 return;
3868 }
3869
3870 event = rb_iter_head_event(iter);
3871
3872 length = rb_event_length(event);
3873
3874 /*
3875 * This should not be called to advance the header if we are
3876 * at the tail of the buffer.
3877 */
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05003878 if (RB_WARN_ON(cpu_buffer,
Steven Rostedtf536aaf2008-11-10 23:07:30 -05003879 (iter->head_page == cpu_buffer->commit_page) &&
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05003880 (iter->head + length > rb_commit_index(cpu_buffer))))
3881 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003882
3883 rb_update_iter_read_stamp(iter, event);
3884
3885 iter->head += length;
3886
3887 /* check for end of page padding */
Steven Rostedtbf41a152008-10-04 02:00:59 -04003888 if ((iter->head >= rb_page_size(iter->head_page)) &&
3889 (iter->head_page != cpu_buffer->commit_page))
Steven Rostedt771e0382012-11-30 10:41:57 -05003890 rb_inc_iter(iter);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003891}
3892
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003893static int rb_lost_events(struct ring_buffer_per_cpu *cpu_buffer)
3894{
3895 return cpu_buffer->lost_events;
3896}
3897
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003898static struct ring_buffer_event *
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003899rb_buffer_peek(struct ring_buffer_per_cpu *cpu_buffer, u64 *ts,
3900 unsigned long *lost_events)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003901{
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003902 struct ring_buffer_event *event;
Steven Rostedtd7690412008-10-01 00:29:53 -04003903 struct buffer_page *reader;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003904 int nr_loops = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003905
Tom Zanussidc4e2802018-01-15 20:51:40 -06003906 if (ts)
3907 *ts = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003908 again:
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003909 /*
Steven Rostedt69d1b832010-10-07 18:18:05 -04003910 * We repeat when a time extend is encountered.
3911 * Since the time extend is always attached to a data event,
3912 * we should never loop more than once.
3913 * (We never hit the following condition more than twice).
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003914 */
Steven Rostedt69d1b832010-10-07 18:18:05 -04003915 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 2))
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003916 return NULL;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003917
Steven Rostedtd7690412008-10-01 00:29:53 -04003918 reader = rb_get_reader_page(cpu_buffer);
3919 if (!reader)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003920 return NULL;
3921
Steven Rostedtd7690412008-10-01 00:29:53 -04003922 event = rb_reader_event(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003923
Lai Jiangshan334d4162009-04-24 11:27:05 +08003924 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003925 case RINGBUF_TYPE_PADDING:
Tom Zanussi2d622712009-03-22 03:30:49 -05003926 if (rb_null_event(event))
3927 RB_WARN_ON(cpu_buffer, 1);
3928 /*
3929 * Because the writer could be discarding every
3930 * event it creates (which would probably be bad)
3931 * if we were to go back to "again" then we may never
3932 * catch up, and will trigger the warn on, or lock
3933 * the box. Return the padding, and we will release
3934 * the current locks, and try again.
3935 */
Tom Zanussi2d622712009-03-22 03:30:49 -05003936 return event;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003937
3938 case RINGBUF_TYPE_TIME_EXTEND:
3939 /* Internal data, OK to advance */
Steven Rostedtd7690412008-10-01 00:29:53 -04003940 rb_advance_reader(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003941 goto again;
3942
3943 case RINGBUF_TYPE_TIME_STAMP:
Tom Zanussidc4e2802018-01-15 20:51:40 -06003944 if (ts) {
3945 *ts = ring_buffer_event_time_stamp(event);
3946 ring_buffer_normalize_time_stamp(cpu_buffer->buffer,
3947 cpu_buffer->cpu, ts);
3948 }
3949 /* Internal data, OK to advance */
Steven Rostedtd7690412008-10-01 00:29:53 -04003950 rb_advance_reader(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003951 goto again;
3952
3953 case RINGBUF_TYPE_DATA:
Tom Zanussidc4e2802018-01-15 20:51:40 -06003954 if (ts && !(*ts)) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003955 *ts = cpu_buffer->read_stamp + event->time_delta;
Robert Richterd8eeb2d2009-07-31 14:58:04 +02003956 ring_buffer_normalize_time_stamp(cpu_buffer->buffer,
Steven Rostedt37886f62009-03-17 17:22:06 -04003957 cpu_buffer->cpu, ts);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003958 }
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003959 if (lost_events)
3960 *lost_events = rb_lost_events(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003961 return event;
3962
3963 default:
3964 BUG();
3965 }
3966
3967 return NULL;
3968}
Robert Richterc4f50182008-12-11 16:49:22 +01003969EXPORT_SYMBOL_GPL(ring_buffer_peek);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003970
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003971static struct ring_buffer_event *
3972rb_iter_peek(struct ring_buffer_iter *iter, u64 *ts)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003973{
3974 struct ring_buffer *buffer;
3975 struct ring_buffer_per_cpu *cpu_buffer;
3976 struct ring_buffer_event *event;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003977 int nr_loops = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003978
Tom Zanussidc4e2802018-01-15 20:51:40 -06003979 if (ts)
3980 *ts = 0;
3981
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003982 cpu_buffer = iter->cpu_buffer;
3983 buffer = cpu_buffer->buffer;
3984
Steven Rostedt492a74f2010-01-25 15:17:47 -05003985 /*
3986 * Check if someone performed a consuming read to
3987 * the buffer. A consuming read invalidates the iterator
3988 * and we need to reset the iterator in this case.
3989 */
3990 if (unlikely(iter->cache_read != cpu_buffer->read ||
3991 iter->cache_reader_page != cpu_buffer->reader_page))
3992 rb_iter_reset(iter);
3993
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003994 again:
Steven Rostedt3c05d742010-01-26 16:14:08 -05003995 if (ring_buffer_iter_empty(iter))
3996 return NULL;
3997
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003998 /*
Steven Rostedt (Red Hat)021de3d2014-08-06 15:36:31 -04003999 * We repeat when a time extend is encountered or we hit
4000 * the end of the page. Since the time extend is always attached
4001 * to a data event, we should never loop more than three times.
4002 * Once for going to next page, once on time extend, and
4003 * finally once to get the event.
4004 * (We never hit the following condition more than thrice).
Steven Rostedt818e3dd2008-10-31 09:58:35 -04004005 */
Steven Rostedt (Red Hat)021de3d2014-08-06 15:36:31 -04004006 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 3))
Steven Rostedt818e3dd2008-10-31 09:58:35 -04004007 return NULL;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04004008
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004009 if (rb_per_cpu_empty(cpu_buffer))
4010 return NULL;
4011
Steven Rostedt (Red Hat)10e83fd2014-07-23 19:45:12 -04004012 if (iter->head >= rb_page_size(iter->head_page)) {
Steven Rostedt3c05d742010-01-26 16:14:08 -05004013 rb_inc_iter(iter);
4014 goto again;
4015 }
4016
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004017 event = rb_iter_head_event(iter);
4018
Lai Jiangshan334d4162009-04-24 11:27:05 +08004019 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004020 case RINGBUF_TYPE_PADDING:
Tom Zanussi2d622712009-03-22 03:30:49 -05004021 if (rb_null_event(event)) {
4022 rb_inc_iter(iter);
4023 goto again;
4024 }
4025 rb_advance_iter(iter);
4026 return event;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004027
4028 case RINGBUF_TYPE_TIME_EXTEND:
4029 /* Internal data, OK to advance */
4030 rb_advance_iter(iter);
4031 goto again;
4032
4033 case RINGBUF_TYPE_TIME_STAMP:
Tom Zanussidc4e2802018-01-15 20:51:40 -06004034 if (ts) {
4035 *ts = ring_buffer_event_time_stamp(event);
4036 ring_buffer_normalize_time_stamp(cpu_buffer->buffer,
4037 cpu_buffer->cpu, ts);
4038 }
4039 /* Internal data, OK to advance */
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004040 rb_advance_iter(iter);
4041 goto again;
4042
4043 case RINGBUF_TYPE_DATA:
Tom Zanussidc4e2802018-01-15 20:51:40 -06004044 if (ts && !(*ts)) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004045 *ts = iter->read_stamp + event->time_delta;
Steven Rostedt37886f62009-03-17 17:22:06 -04004046 ring_buffer_normalize_time_stamp(buffer,
4047 cpu_buffer->cpu, ts);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004048 }
4049 return event;
4050
4051 default:
4052 BUG();
4053 }
4054
4055 return NULL;
4056}
Robert Richterc4f50182008-12-11 16:49:22 +01004057EXPORT_SYMBOL_GPL(ring_buffer_iter_peek);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004058
Steven Rostedt (Red Hat)289a5a22015-05-28 13:14:51 -04004059static inline bool rb_reader_lock(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedt8d707e82009-06-16 21:22:48 -04004060{
Steven Rostedt (Red Hat)289a5a22015-05-28 13:14:51 -04004061 if (likely(!in_nmi())) {
4062 raw_spin_lock(&cpu_buffer->reader_lock);
4063 return true;
4064 }
4065
Steven Rostedt8d707e82009-06-16 21:22:48 -04004066 /*
4067 * If an NMI die dumps out the content of the ring buffer
Steven Rostedt (Red Hat)289a5a22015-05-28 13:14:51 -04004068 * trylock must be used to prevent a deadlock if the NMI
4069 * preempted a task that holds the ring buffer locks. If
4070 * we get the lock then all is fine, if not, then continue
4071 * to do the read, but this can corrupt the ring buffer,
4072 * so it must be permanently disabled from future writes.
4073 * Reading from NMI is a oneshot deal.
Steven Rostedt8d707e82009-06-16 21:22:48 -04004074 */
Steven Rostedt (Red Hat)289a5a22015-05-28 13:14:51 -04004075 if (raw_spin_trylock(&cpu_buffer->reader_lock))
4076 return true;
Steven Rostedt8d707e82009-06-16 21:22:48 -04004077
Steven Rostedt (Red Hat)289a5a22015-05-28 13:14:51 -04004078 /* Continue without locking, but disable the ring buffer */
4079 atomic_inc(&cpu_buffer->record_disabled);
4080 return false;
4081}
4082
4083static inline void
4084rb_reader_unlock(struct ring_buffer_per_cpu *cpu_buffer, bool locked)
4085{
4086 if (likely(locked))
4087 raw_spin_unlock(&cpu_buffer->reader_lock);
4088 return;
Steven Rostedt8d707e82009-06-16 21:22:48 -04004089}
4090
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004091/**
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004092 * ring_buffer_peek - peek at the next event to be read
4093 * @buffer: The ring buffer to read
4094 * @cpu: The cpu to peak at
4095 * @ts: The timestamp counter of this event.
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004096 * @lost_events: a variable to store if events were lost (may be NULL)
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004097 *
4098 * This will return the event that will be read next, but does
4099 * not consume the data.
4100 */
4101struct ring_buffer_event *
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004102ring_buffer_peek(struct ring_buffer *buffer, int cpu, u64 *ts,
4103 unsigned long *lost_events)
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004104{
4105 struct ring_buffer_per_cpu *cpu_buffer = buffer->buffers[cpu];
Steven Rostedt8aabee52009-03-12 13:13:49 -04004106 struct ring_buffer_event *event;
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004107 unsigned long flags;
Steven Rostedt (Red Hat)289a5a22015-05-28 13:14:51 -04004108 bool dolock;
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004109
Steven Rostedt554f7862009-03-11 22:00:13 -04004110 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04004111 return NULL;
Steven Rostedt554f7862009-03-11 22:00:13 -04004112
Tom Zanussi2d622712009-03-22 03:30:49 -05004113 again:
Steven Rostedt8d707e82009-06-16 21:22:48 -04004114 local_irq_save(flags);
Steven Rostedt (Red Hat)289a5a22015-05-28 13:14:51 -04004115 dolock = rb_reader_lock(cpu_buffer);
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004116 event = rb_buffer_peek(cpu_buffer, ts, lost_events);
Robert Richter469535a2009-07-30 19:19:18 +02004117 if (event && event->type_len == RINGBUF_TYPE_PADDING)
4118 rb_advance_reader(cpu_buffer);
Steven Rostedt (Red Hat)289a5a22015-05-28 13:14:51 -04004119 rb_reader_unlock(cpu_buffer, dolock);
Steven Rostedt8d707e82009-06-16 21:22:48 -04004120 local_irq_restore(flags);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004121
Steven Rostedt1b959e12009-09-03 10:12:13 -04004122 if (event && event->type_len == RINGBUF_TYPE_PADDING)
Tom Zanussi2d622712009-03-22 03:30:49 -05004123 goto again;
Tom Zanussi2d622712009-03-22 03:30:49 -05004124
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004125 return event;
4126}
4127
4128/**
4129 * ring_buffer_iter_peek - peek at the next event to be read
4130 * @iter: The ring buffer iterator
4131 * @ts: The timestamp counter of this event.
4132 *
4133 * This will return the event that will be read next, but does
4134 * not increment the iterator.
4135 */
4136struct ring_buffer_event *
4137ring_buffer_iter_peek(struct ring_buffer_iter *iter, u64 *ts)
4138{
4139 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
4140 struct ring_buffer_event *event;
4141 unsigned long flags;
4142
Tom Zanussi2d622712009-03-22 03:30:49 -05004143 again:
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004144 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004145 event = rb_iter_peek(iter, ts);
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004146 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004147
Steven Rostedt1b959e12009-09-03 10:12:13 -04004148 if (event && event->type_len == RINGBUF_TYPE_PADDING)
Tom Zanussi2d622712009-03-22 03:30:49 -05004149 goto again;
Tom Zanussi2d622712009-03-22 03:30:49 -05004150
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004151 return event;
4152}
4153
4154/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004155 * ring_buffer_consume - return an event and consume it
4156 * @buffer: The ring buffer to get the next event from
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004157 * @cpu: the cpu to read the buffer from
4158 * @ts: a variable to store the timestamp (may be NULL)
4159 * @lost_events: a variable to store if events were lost (may be NULL)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004160 *
4161 * Returns the next event in the ring buffer, and that event is consumed.
4162 * Meaning, that sequential reads will keep returning a different event,
4163 * and eventually empty the ring buffer if the producer is slower.
4164 */
4165struct ring_buffer_event *
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004166ring_buffer_consume(struct ring_buffer *buffer, int cpu, u64 *ts,
4167 unsigned long *lost_events)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004168{
Steven Rostedt554f7862009-03-11 22:00:13 -04004169 struct ring_buffer_per_cpu *cpu_buffer;
4170 struct ring_buffer_event *event = NULL;
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004171 unsigned long flags;
Steven Rostedt (Red Hat)289a5a22015-05-28 13:14:51 -04004172 bool dolock;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004173
Tom Zanussi2d622712009-03-22 03:30:49 -05004174 again:
Steven Rostedt554f7862009-03-11 22:00:13 -04004175 /* might be called in atomic */
4176 preempt_disable();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004177
Steven Rostedt554f7862009-03-11 22:00:13 -04004178 if (!cpumask_test_cpu(cpu, buffer->cpumask))
4179 goto out;
4180
4181 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt8d707e82009-06-16 21:22:48 -04004182 local_irq_save(flags);
Steven Rostedt (Red Hat)289a5a22015-05-28 13:14:51 -04004183 dolock = rb_reader_lock(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004184
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004185 event = rb_buffer_peek(cpu_buffer, ts, lost_events);
4186 if (event) {
4187 cpu_buffer->lost_events = 0;
Robert Richter469535a2009-07-30 19:19:18 +02004188 rb_advance_reader(cpu_buffer);
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004189 }
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004190
Steven Rostedt (Red Hat)289a5a22015-05-28 13:14:51 -04004191 rb_reader_unlock(cpu_buffer, dolock);
Steven Rostedt8d707e82009-06-16 21:22:48 -04004192 local_irq_restore(flags);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004193
Steven Rostedt554f7862009-03-11 22:00:13 -04004194 out:
4195 preempt_enable();
4196
Steven Rostedt1b959e12009-09-03 10:12:13 -04004197 if (event && event->type_len == RINGBUF_TYPE_PADDING)
Tom Zanussi2d622712009-03-22 03:30:49 -05004198 goto again;
Tom Zanussi2d622712009-03-22 03:30:49 -05004199
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004200 return event;
4201}
Robert Richterc4f50182008-12-11 16:49:22 +01004202EXPORT_SYMBOL_GPL(ring_buffer_consume);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004203
4204/**
David Miller72c9ddf2010-04-20 15:47:11 -07004205 * ring_buffer_read_prepare - Prepare for a non consuming read of the buffer
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004206 * @buffer: The ring buffer to read from
4207 * @cpu: The cpu buffer to iterate over
4208 *
David Miller72c9ddf2010-04-20 15:47:11 -07004209 * This performs the initial preparations necessary to iterate
4210 * through the buffer. Memory is allocated, buffer recording
4211 * is disabled, and the iterator pointer is returned to the caller.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004212 *
Steven Rostedt (VMware)6167c202018-05-16 11:17:06 -04004213 * Disabling buffer recording prevents the reading from being
David Miller72c9ddf2010-04-20 15:47:11 -07004214 * corrupted. This is not a consuming read, so a producer is not
4215 * expected.
4216 *
4217 * After a sequence of ring_buffer_read_prepare calls, the user is
zhangwei(Jovi)d6118512013-07-15 16:32:50 +08004218 * expected to make at least one call to ring_buffer_read_prepare_sync.
David Miller72c9ddf2010-04-20 15:47:11 -07004219 * Afterwards, ring_buffer_read_start is invoked to get things going
4220 * for real.
4221 *
zhangwei(Jovi)d6118512013-07-15 16:32:50 +08004222 * This overall must be paired with ring_buffer_read_finish.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004223 */
4224struct ring_buffer_iter *
David Miller72c9ddf2010-04-20 15:47:11 -07004225ring_buffer_read_prepare(struct ring_buffer *buffer, int cpu)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004226{
4227 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt8aabee52009-03-12 13:13:49 -04004228 struct ring_buffer_iter *iter;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004229
Rusty Russell9e01c1b2009-01-01 10:12:22 +10304230 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04004231 return NULL;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004232
4233 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
4234 if (!iter)
Steven Rostedt8aabee52009-03-12 13:13:49 -04004235 return NULL;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004236
4237 cpu_buffer = buffer->buffers[cpu];
4238
4239 iter->cpu_buffer = cpu_buffer;
4240
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07004241 atomic_inc(&buffer->resize_disabled);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004242 atomic_inc(&cpu_buffer->record_disabled);
David Miller72c9ddf2010-04-20 15:47:11 -07004243
4244 return iter;
4245}
4246EXPORT_SYMBOL_GPL(ring_buffer_read_prepare);
4247
4248/**
4249 * ring_buffer_read_prepare_sync - Synchronize a set of prepare calls
4250 *
4251 * All previously invoked ring_buffer_read_prepare calls to prepare
4252 * iterators will be synchronized. Afterwards, read_buffer_read_start
4253 * calls on those iterators are allowed.
4254 */
4255void
4256ring_buffer_read_prepare_sync(void)
4257{
Paul E. McKenney74401722018-11-06 18:44:52 -08004258 synchronize_rcu();
David Miller72c9ddf2010-04-20 15:47:11 -07004259}
4260EXPORT_SYMBOL_GPL(ring_buffer_read_prepare_sync);
4261
4262/**
4263 * ring_buffer_read_start - start a non consuming read of the buffer
4264 * @iter: The iterator returned by ring_buffer_read_prepare
4265 *
4266 * This finalizes the startup of an iteration through the buffer.
4267 * The iterator comes from a call to ring_buffer_read_prepare and
4268 * an intervening ring_buffer_read_prepare_sync must have been
4269 * performed.
4270 *
zhangwei(Jovi)d6118512013-07-15 16:32:50 +08004271 * Must be paired with ring_buffer_read_finish.
David Miller72c9ddf2010-04-20 15:47:11 -07004272 */
4273void
4274ring_buffer_read_start(struct ring_buffer_iter *iter)
4275{
4276 struct ring_buffer_per_cpu *cpu_buffer;
4277 unsigned long flags;
4278
4279 if (!iter)
4280 return;
4281
4282 cpu_buffer = iter->cpu_buffer;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004283
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004284 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01004285 arch_spin_lock(&cpu_buffer->lock);
Steven Rostedt642edba2008-11-12 00:01:26 -05004286 rb_iter_reset(iter);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01004287 arch_spin_unlock(&cpu_buffer->lock);
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004288 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004289}
Robert Richterc4f50182008-12-11 16:49:22 +01004290EXPORT_SYMBOL_GPL(ring_buffer_read_start);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004291
4292/**
zhangwei(Jovi)d6118512013-07-15 16:32:50 +08004293 * ring_buffer_read_finish - finish reading the iterator of the buffer
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004294 * @iter: The iterator retrieved by ring_buffer_start
4295 *
4296 * This re-enables the recording to the buffer, and frees the
4297 * iterator.
4298 */
4299void
4300ring_buffer_read_finish(struct ring_buffer_iter *iter)
4301{
4302 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
Steven Rostedt9366c1b2012-11-29 22:31:16 -05004303 unsigned long flags;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004304
Steven Rostedt659f4512012-05-14 17:02:33 -04004305 /*
4306 * Ring buffer is disabled from recording, here's a good place
Steven Rostedt9366c1b2012-11-29 22:31:16 -05004307 * to check the integrity of the ring buffer.
4308 * Must prevent readers from trying to read, as the check
4309 * clears the HEAD page and readers require it.
Steven Rostedt659f4512012-05-14 17:02:33 -04004310 */
Steven Rostedt9366c1b2012-11-29 22:31:16 -05004311 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Steven Rostedt659f4512012-05-14 17:02:33 -04004312 rb_check_pages(cpu_buffer);
Steven Rostedt9366c1b2012-11-29 22:31:16 -05004313 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt659f4512012-05-14 17:02:33 -04004314
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004315 atomic_dec(&cpu_buffer->record_disabled);
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07004316 atomic_dec(&cpu_buffer->buffer->resize_disabled);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004317 kfree(iter);
4318}
Robert Richterc4f50182008-12-11 16:49:22 +01004319EXPORT_SYMBOL_GPL(ring_buffer_read_finish);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004320
4321/**
4322 * ring_buffer_read - read the next item in the ring buffer by the iterator
4323 * @iter: The ring buffer iterator
4324 * @ts: The time stamp of the event read.
4325 *
4326 * This reads the next event in the ring buffer and increments the iterator.
4327 */
4328struct ring_buffer_event *
4329ring_buffer_read(struct ring_buffer_iter *iter, u64 *ts)
4330{
4331 struct ring_buffer_event *event;
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004332 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
4333 unsigned long flags;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004334
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004335 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Steven Rostedt7e9391c2009-09-03 10:02:09 -04004336 again:
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004337 event = rb_iter_peek(iter, ts);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004338 if (!event)
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004339 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004340
Steven Rostedt7e9391c2009-09-03 10:02:09 -04004341 if (event->type_len == RINGBUF_TYPE_PADDING)
4342 goto again;
4343
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004344 rb_advance_iter(iter);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004345 out:
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004346 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004347
4348 return event;
4349}
Robert Richterc4f50182008-12-11 16:49:22 +01004350EXPORT_SYMBOL_GPL(ring_buffer_read);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004351
4352/**
4353 * ring_buffer_size - return the size of the ring buffer (in bytes)
4354 * @buffer: The ring buffer.
4355 */
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08004356unsigned long ring_buffer_size(struct ring_buffer *buffer, int cpu)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004357{
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08004358 /*
4359 * Earlier, this method returned
4360 * BUF_PAGE_SIZE * buffer->nr_pages
4361 * Since the nr_pages field is now removed, we have converted this to
4362 * return the per cpu buffer value.
4363 */
4364 if (!cpumask_test_cpu(cpu, buffer->cpumask))
4365 return 0;
4366
4367 return BUF_PAGE_SIZE * buffer->buffers[cpu]->nr_pages;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004368}
Robert Richterc4f50182008-12-11 16:49:22 +01004369EXPORT_SYMBOL_GPL(ring_buffer_size);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004370
4371static void
4372rb_reset_cpu(struct ring_buffer_per_cpu *cpu_buffer)
4373{
Steven Rostedt77ae3652009-03-27 11:00:29 -04004374 rb_head_page_deactivate(cpu_buffer);
4375
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004376 cpu_buffer->head_page
Steven Rostedt3adc54f2009-03-30 15:32:01 -04004377 = list_entry(cpu_buffer->pages, struct buffer_page, list);
Steven Rostedtbf41a152008-10-04 02:00:59 -04004378 local_set(&cpu_buffer->head_page->write, 0);
Steven Rostedt778c55d2009-05-01 18:44:45 -04004379 local_set(&cpu_buffer->head_page->entries, 0);
Steven Rostedtabc9b562008-12-02 15:34:06 -05004380 local_set(&cpu_buffer->head_page->page->commit, 0);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004381
Steven Rostedt6f807ac2008-10-04 02:00:58 -04004382 cpu_buffer->head_page->read = 0;
Steven Rostedtbf41a152008-10-04 02:00:59 -04004383
4384 cpu_buffer->tail_page = cpu_buffer->head_page;
4385 cpu_buffer->commit_page = cpu_buffer->head_page;
4386
4387 INIT_LIST_HEAD(&cpu_buffer->reader_page->list);
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07004388 INIT_LIST_HEAD(&cpu_buffer->new_pages);
Steven Rostedtbf41a152008-10-04 02:00:59 -04004389 local_set(&cpu_buffer->reader_page->write, 0);
Steven Rostedt778c55d2009-05-01 18:44:45 -04004390 local_set(&cpu_buffer->reader_page->entries, 0);
Steven Rostedtabc9b562008-12-02 15:34:06 -05004391 local_set(&cpu_buffer->reader_page->page->commit, 0);
Steven Rostedt6f807ac2008-10-04 02:00:58 -04004392 cpu_buffer->reader_page->read = 0;
Steven Rostedtd7690412008-10-01 00:29:53 -04004393
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07004394 local_set(&cpu_buffer->entries_bytes, 0);
Steven Rostedt77ae3652009-03-27 11:00:29 -04004395 local_set(&cpu_buffer->overrun, 0);
Slava Pestov884bfe82011-07-15 14:23:58 -07004396 local_set(&cpu_buffer->commit_overrun, 0);
4397 local_set(&cpu_buffer->dropped_events, 0);
Steven Rostedte4906ef2009-04-30 20:49:44 -04004398 local_set(&cpu_buffer->entries, 0);
Steven Rostedtfa743952009-06-16 12:37:57 -04004399 local_set(&cpu_buffer->committing, 0);
4400 local_set(&cpu_buffer->commits, 0);
Steven Rostedt (VMware)2c2b0a72018-11-29 20:32:26 -05004401 local_set(&cpu_buffer->pages_touched, 0);
4402 local_set(&cpu_buffer->pages_read, 0);
Steven Rostedt (VMware)03329f92018-11-29 21:38:42 -05004403 cpu_buffer->last_pages_touch = 0;
Steven Rostedt (VMware)2c2b0a72018-11-29 20:32:26 -05004404 cpu_buffer->shortest_full = 0;
Steven Rostedt77ae3652009-03-27 11:00:29 -04004405 cpu_buffer->read = 0;
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07004406 cpu_buffer->read_bytes = 0;
Steven Rostedt69507c02009-01-21 18:45:57 -05004407
4408 cpu_buffer->write_stamp = 0;
4409 cpu_buffer->read_stamp = 0;
Steven Rostedt77ae3652009-03-27 11:00:29 -04004410
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004411 cpu_buffer->lost_events = 0;
4412 cpu_buffer->last_overrun = 0;
4413
Steven Rostedt77ae3652009-03-27 11:00:29 -04004414 rb_head_page_activate(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004415}
4416
4417/**
4418 * ring_buffer_reset_cpu - reset a ring buffer per CPU buffer
4419 * @buffer: The ring buffer to reset a per cpu buffer of
4420 * @cpu: The CPU buffer to be reset
4421 */
4422void ring_buffer_reset_cpu(struct ring_buffer *buffer, int cpu)
4423{
4424 struct ring_buffer_per_cpu *cpu_buffer = buffer->buffers[cpu];
4425 unsigned long flags;
4426
Rusty Russell9e01c1b2009-01-01 10:12:22 +10304427 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04004428 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004429
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07004430 atomic_inc(&buffer->resize_disabled);
Steven Rostedt41ede232009-05-01 20:26:54 -04004431 atomic_inc(&cpu_buffer->record_disabled);
4432
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07004433 /* Make sure all commits have finished */
Paul E. McKenney74401722018-11-06 18:44:52 -08004434 synchronize_rcu();
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07004435
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004436 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004437
Steven Rostedt41b6a952009-09-02 09:59:48 -04004438 if (RB_WARN_ON(cpu_buffer, local_read(&cpu_buffer->committing)))
4439 goto out;
4440
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01004441 arch_spin_lock(&cpu_buffer->lock);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004442
4443 rb_reset_cpu(cpu_buffer);
4444
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01004445 arch_spin_unlock(&cpu_buffer->lock);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004446
Steven Rostedt41b6a952009-09-02 09:59:48 -04004447 out:
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004448 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt41ede232009-05-01 20:26:54 -04004449
4450 atomic_dec(&cpu_buffer->record_disabled);
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07004451 atomic_dec(&buffer->resize_disabled);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004452}
Robert Richterc4f50182008-12-11 16:49:22 +01004453EXPORT_SYMBOL_GPL(ring_buffer_reset_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004454
4455/**
4456 * ring_buffer_reset - reset a ring buffer
4457 * @buffer: The ring buffer to reset all cpu buffers
4458 */
4459void ring_buffer_reset(struct ring_buffer *buffer)
4460{
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004461 int cpu;
4462
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004463 for_each_buffer_cpu(buffer, cpu)
Steven Rostedtd7690412008-10-01 00:29:53 -04004464 ring_buffer_reset_cpu(buffer, cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004465}
Robert Richterc4f50182008-12-11 16:49:22 +01004466EXPORT_SYMBOL_GPL(ring_buffer_reset);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004467
4468/**
4469 * rind_buffer_empty - is the ring buffer empty?
4470 * @buffer: The ring buffer to test
4471 */
Yaowei Bai3d4e2042015-09-29 22:43:32 +08004472bool ring_buffer_empty(struct ring_buffer *buffer)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004473{
4474 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedtd4788202009-06-17 00:39:43 -04004475 unsigned long flags;
Steven Rostedt (Red Hat)289a5a22015-05-28 13:14:51 -04004476 bool dolock;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004477 int cpu;
Steven Rostedtd4788202009-06-17 00:39:43 -04004478 int ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004479
4480 /* yes this is racy, but if you don't like the race, lock the buffer */
4481 for_each_buffer_cpu(buffer, cpu) {
4482 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt8d707e82009-06-16 21:22:48 -04004483 local_irq_save(flags);
Steven Rostedt (Red Hat)289a5a22015-05-28 13:14:51 -04004484 dolock = rb_reader_lock(cpu_buffer);
Steven Rostedtd4788202009-06-17 00:39:43 -04004485 ret = rb_per_cpu_empty(cpu_buffer);
Steven Rostedt (Red Hat)289a5a22015-05-28 13:14:51 -04004486 rb_reader_unlock(cpu_buffer, dolock);
Steven Rostedt8d707e82009-06-16 21:22:48 -04004487 local_irq_restore(flags);
4488
Steven Rostedtd4788202009-06-17 00:39:43 -04004489 if (!ret)
Yaowei Bai3d4e2042015-09-29 22:43:32 +08004490 return false;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004491 }
Steven Rostedt554f7862009-03-11 22:00:13 -04004492
Yaowei Bai3d4e2042015-09-29 22:43:32 +08004493 return true;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004494}
Robert Richterc4f50182008-12-11 16:49:22 +01004495EXPORT_SYMBOL_GPL(ring_buffer_empty);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004496
4497/**
4498 * ring_buffer_empty_cpu - is a cpu buffer of a ring buffer empty?
4499 * @buffer: The ring buffer
4500 * @cpu: The CPU buffer to test
4501 */
Yaowei Bai3d4e2042015-09-29 22:43:32 +08004502bool ring_buffer_empty_cpu(struct ring_buffer *buffer, int cpu)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004503{
4504 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedtd4788202009-06-17 00:39:43 -04004505 unsigned long flags;
Steven Rostedt (Red Hat)289a5a22015-05-28 13:14:51 -04004506 bool dolock;
Steven Rostedt8aabee52009-03-12 13:13:49 -04004507 int ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004508
Rusty Russell9e01c1b2009-01-01 10:12:22 +10304509 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Yaowei Bai3d4e2042015-09-29 22:43:32 +08004510 return true;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004511
4512 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt8d707e82009-06-16 21:22:48 -04004513 local_irq_save(flags);
Steven Rostedt (Red Hat)289a5a22015-05-28 13:14:51 -04004514 dolock = rb_reader_lock(cpu_buffer);
Steven Rostedt554f7862009-03-11 22:00:13 -04004515 ret = rb_per_cpu_empty(cpu_buffer);
Steven Rostedt (Red Hat)289a5a22015-05-28 13:14:51 -04004516 rb_reader_unlock(cpu_buffer, dolock);
Steven Rostedt8d707e82009-06-16 21:22:48 -04004517 local_irq_restore(flags);
Steven Rostedt554f7862009-03-11 22:00:13 -04004518
4519 return ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004520}
Robert Richterc4f50182008-12-11 16:49:22 +01004521EXPORT_SYMBOL_GPL(ring_buffer_empty_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004522
Steven Rostedt85bac322009-09-04 14:24:40 -04004523#ifdef CONFIG_RING_BUFFER_ALLOW_SWAP
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004524/**
4525 * ring_buffer_swap_cpu - swap a CPU buffer between two ring buffers
4526 * @buffer_a: One buffer to swap with
4527 * @buffer_b: The other buffer to swap with
4528 *
4529 * This function is useful for tracers that want to take a "snapshot"
4530 * of a CPU buffer and has another back up buffer lying around.
4531 * it is expected that the tracer handles the cpu buffer not being
4532 * used at the moment.
4533 */
4534int ring_buffer_swap_cpu(struct ring_buffer *buffer_a,
4535 struct ring_buffer *buffer_b, int cpu)
4536{
4537 struct ring_buffer_per_cpu *cpu_buffer_a;
4538 struct ring_buffer_per_cpu *cpu_buffer_b;
Steven Rostedt554f7862009-03-11 22:00:13 -04004539 int ret = -EINVAL;
4540
Rusty Russell9e01c1b2009-01-01 10:12:22 +10304541 if (!cpumask_test_cpu(cpu, buffer_a->cpumask) ||
4542 !cpumask_test_cpu(cpu, buffer_b->cpumask))
Steven Rostedt554f7862009-03-11 22:00:13 -04004543 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004544
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08004545 cpu_buffer_a = buffer_a->buffers[cpu];
4546 cpu_buffer_b = buffer_b->buffers[cpu];
4547
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004548 /* At least make sure the two buffers are somewhat the same */
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08004549 if (cpu_buffer_a->nr_pages != cpu_buffer_b->nr_pages)
Steven Rostedt554f7862009-03-11 22:00:13 -04004550 goto out;
4551
4552 ret = -EAGAIN;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004553
Steven Rostedt97b17ef2009-01-21 15:24:56 -05004554 if (atomic_read(&buffer_a->record_disabled))
Steven Rostedt554f7862009-03-11 22:00:13 -04004555 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05004556
4557 if (atomic_read(&buffer_b->record_disabled))
Steven Rostedt554f7862009-03-11 22:00:13 -04004558 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05004559
Steven Rostedt97b17ef2009-01-21 15:24:56 -05004560 if (atomic_read(&cpu_buffer_a->record_disabled))
Steven Rostedt554f7862009-03-11 22:00:13 -04004561 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05004562
4563 if (atomic_read(&cpu_buffer_b->record_disabled))
Steven Rostedt554f7862009-03-11 22:00:13 -04004564 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05004565
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004566 /*
Paul E. McKenney74401722018-11-06 18:44:52 -08004567 * We can't do a synchronize_rcu here because this
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004568 * function can be called in atomic context.
4569 * Normally this will be called from the same CPU as cpu.
4570 * If not it's up to the caller to protect this.
4571 */
4572 atomic_inc(&cpu_buffer_a->record_disabled);
4573 atomic_inc(&cpu_buffer_b->record_disabled);
4574
Steven Rostedt98277992009-09-02 10:56:15 -04004575 ret = -EBUSY;
4576 if (local_read(&cpu_buffer_a->committing))
4577 goto out_dec;
4578 if (local_read(&cpu_buffer_b->committing))
4579 goto out_dec;
4580
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004581 buffer_a->buffers[cpu] = cpu_buffer_b;
4582 buffer_b->buffers[cpu] = cpu_buffer_a;
4583
4584 cpu_buffer_b->buffer = buffer_a;
4585 cpu_buffer_a->buffer = buffer_b;
4586
Steven Rostedt98277992009-09-02 10:56:15 -04004587 ret = 0;
4588
4589out_dec:
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004590 atomic_dec(&cpu_buffer_a->record_disabled);
4591 atomic_dec(&cpu_buffer_b->record_disabled);
Steven Rostedt554f7862009-03-11 22:00:13 -04004592out:
Steven Rostedt554f7862009-03-11 22:00:13 -04004593 return ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004594}
Robert Richterc4f50182008-12-11 16:49:22 +01004595EXPORT_SYMBOL_GPL(ring_buffer_swap_cpu);
Steven Rostedt85bac322009-09-04 14:24:40 -04004596#endif /* CONFIG_RING_BUFFER_ALLOW_SWAP */
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004597
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004598/**
4599 * ring_buffer_alloc_read_page - allocate a page to read from buffer
4600 * @buffer: the buffer to allocate for.
zhangwei(Jovi)d6118512013-07-15 16:32:50 +08004601 * @cpu: the cpu buffer to allocate.
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004602 *
4603 * This function is used in conjunction with ring_buffer_read_page.
4604 * When reading a full page from the ring buffer, these functions
4605 * can be used to speed up the process. The calling function should
4606 * allocate a few pages first with this function. Then when it
4607 * needs to get pages from the ring buffer, it passes the result
4608 * of this function into ring_buffer_read_page, which will swap
4609 * the page that was allocated, with the read page of the buffer.
4610 *
4611 * Returns:
Steven Rostedt (VMware)a7e52ad2017-08-02 14:20:54 -04004612 * The page allocated, or ERR_PTR
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004613 */
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07004614void *ring_buffer_alloc_read_page(struct ring_buffer *buffer, int cpu)
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004615{
Steven Rostedt (VMware)a7e52ad2017-08-02 14:20:54 -04004616 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt (VMware)73a757e2017-05-01 09:35:09 -04004617 struct buffer_data_page *bpage = NULL;
4618 unsigned long flags;
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07004619 struct page *page;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004620
Steven Rostedt (VMware)a7e52ad2017-08-02 14:20:54 -04004621 if (!cpumask_test_cpu(cpu, buffer->cpumask))
4622 return ERR_PTR(-ENODEV);
4623
4624 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt (VMware)73a757e2017-05-01 09:35:09 -04004625 local_irq_save(flags);
4626 arch_spin_lock(&cpu_buffer->lock);
4627
4628 if (cpu_buffer->free_page) {
4629 bpage = cpu_buffer->free_page;
4630 cpu_buffer->free_page = NULL;
4631 }
4632
4633 arch_spin_unlock(&cpu_buffer->lock);
4634 local_irq_restore(flags);
4635
4636 if (bpage)
4637 goto out;
4638
Vaibhav Nagarnaikd7ec4bf2011-06-07 17:01:42 -07004639 page = alloc_pages_node(cpu_to_node(cpu),
4640 GFP_KERNEL | __GFP_NORETRY, 0);
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07004641 if (!page)
Steven Rostedt (VMware)a7e52ad2017-08-02 14:20:54 -04004642 return ERR_PTR(-ENOMEM);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004643
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07004644 bpage = page_address(page);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004645
Steven Rostedt (VMware)73a757e2017-05-01 09:35:09 -04004646 out:
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004647 rb_init_page(bpage);
4648
Steven Rostedt044fa782008-12-02 23:50:03 -05004649 return bpage;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004650}
Steven Rostedtd6ce96d2009-05-05 01:15:24 -04004651EXPORT_SYMBOL_GPL(ring_buffer_alloc_read_page);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004652
4653/**
4654 * ring_buffer_free_read_page - free an allocated read page
4655 * @buffer: the buffer the page was allocate for
Steven Rostedt (VMware)73a757e2017-05-01 09:35:09 -04004656 * @cpu: the cpu buffer the page came from
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004657 * @data: the page to free
4658 *
4659 * Free a page allocated from ring_buffer_alloc_read_page.
4660 */
Steven Rostedt (VMware)73a757e2017-05-01 09:35:09 -04004661void ring_buffer_free_read_page(struct ring_buffer *buffer, int cpu, void *data)
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004662{
Steven Rostedt (VMware)73a757e2017-05-01 09:35:09 -04004663 struct ring_buffer_per_cpu *cpu_buffer = buffer->buffers[cpu];
4664 struct buffer_data_page *bpage = data;
Steven Rostedt (VMware)ae415fa2017-12-22 21:19:29 -05004665 struct page *page = virt_to_page(bpage);
Steven Rostedt (VMware)73a757e2017-05-01 09:35:09 -04004666 unsigned long flags;
4667
Steven Rostedt (VMware)ae415fa2017-12-22 21:19:29 -05004668 /* If the page is still in use someplace else, we can't reuse it */
4669 if (page_ref_count(page) > 1)
4670 goto out;
4671
Steven Rostedt (VMware)73a757e2017-05-01 09:35:09 -04004672 local_irq_save(flags);
4673 arch_spin_lock(&cpu_buffer->lock);
4674
4675 if (!cpu_buffer->free_page) {
4676 cpu_buffer->free_page = bpage;
4677 bpage = NULL;
4678 }
4679
4680 arch_spin_unlock(&cpu_buffer->lock);
4681 local_irq_restore(flags);
4682
Steven Rostedt (VMware)ae415fa2017-12-22 21:19:29 -05004683 out:
Steven Rostedt (VMware)73a757e2017-05-01 09:35:09 -04004684 free_page((unsigned long)bpage);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004685}
Steven Rostedtd6ce96d2009-05-05 01:15:24 -04004686EXPORT_SYMBOL_GPL(ring_buffer_free_read_page);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004687
4688/**
4689 * ring_buffer_read_page - extract a page from the ring buffer
4690 * @buffer: buffer to extract from
4691 * @data_page: the page to use allocated from ring_buffer_alloc_read_page
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004692 * @len: amount to extract
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004693 * @cpu: the cpu of the buffer to extract
4694 * @full: should the extraction only happen when the page is full.
4695 *
4696 * This function will pull out a page from the ring buffer and consume it.
4697 * @data_page must be the address of the variable that was returned
4698 * from ring_buffer_alloc_read_page. This is because the page might be used
4699 * to swap with a page in the ring buffer.
4700 *
4701 * for example:
zhangwei(Jovi)d6118512013-07-15 16:32:50 +08004702 * rpage = ring_buffer_alloc_read_page(buffer, cpu);
Steven Rostedt (VMware)a7e52ad2017-08-02 14:20:54 -04004703 * if (IS_ERR(rpage))
4704 * return PTR_ERR(rpage);
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004705 * ret = ring_buffer_read_page(buffer, &rpage, len, cpu, 0);
Lai Jiangshan667d2412009-02-09 14:21:17 +08004706 * if (ret >= 0)
4707 * process_page(rpage, ret);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004708 *
4709 * When @full is set, the function will not return true unless
4710 * the writer is off the reader page.
4711 *
4712 * Note: it is up to the calling functions to handle sleeps and wakeups.
4713 * The ring buffer can be used anywhere in the kernel and can not
4714 * blindly call wake_up. The layer that uses the ring buffer must be
4715 * responsible for that.
4716 *
4717 * Returns:
Lai Jiangshan667d2412009-02-09 14:21:17 +08004718 * >=0 if data has been transferred, returns the offset of consumed data.
4719 * <0 if no data has been transferred.
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004720 */
4721int ring_buffer_read_page(struct ring_buffer *buffer,
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004722 void **data_page, size_t len, int cpu, int full)
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004723{
4724 struct ring_buffer_per_cpu *cpu_buffer = buffer->buffers[cpu];
4725 struct ring_buffer_event *event;
Steven Rostedt044fa782008-12-02 23:50:03 -05004726 struct buffer_data_page *bpage;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004727 struct buffer_page *reader;
Steven Rostedtff0ff842010-03-31 22:11:42 -04004728 unsigned long missed_events;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004729 unsigned long flags;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004730 unsigned int commit;
Lai Jiangshan667d2412009-02-09 14:21:17 +08004731 unsigned int read;
Steven Rostedt4f3640f2009-03-03 23:52:42 -05004732 u64 save_timestamp;
Lai Jiangshan667d2412009-02-09 14:21:17 +08004733 int ret = -1;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004734
Steven Rostedt554f7862009-03-11 22:00:13 -04004735 if (!cpumask_test_cpu(cpu, buffer->cpumask))
4736 goto out;
4737
Steven Rostedt474d32b2009-03-03 19:51:40 -05004738 /*
4739 * If len is not big enough to hold the page header, then
4740 * we can not copy anything.
4741 */
4742 if (len <= BUF_PAGE_HDR_SIZE)
Steven Rostedt554f7862009-03-11 22:00:13 -04004743 goto out;
Steven Rostedt474d32b2009-03-03 19:51:40 -05004744
4745 len -= BUF_PAGE_HDR_SIZE;
4746
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004747 if (!data_page)
Steven Rostedt554f7862009-03-11 22:00:13 -04004748 goto out;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004749
Steven Rostedt044fa782008-12-02 23:50:03 -05004750 bpage = *data_page;
4751 if (!bpage)
Steven Rostedt554f7862009-03-11 22:00:13 -04004752 goto out;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004753
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004754 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004755
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004756 reader = rb_get_reader_page(cpu_buffer);
4757 if (!reader)
Steven Rostedt554f7862009-03-11 22:00:13 -04004758 goto out_unlock;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004759
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004760 event = rb_reader_event(cpu_buffer);
Lai Jiangshan667d2412009-02-09 14:21:17 +08004761
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004762 read = reader->read;
4763 commit = rb_page_commit(reader);
4764
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004765 /* Check if any events were dropped */
Steven Rostedtff0ff842010-03-31 22:11:42 -04004766 missed_events = cpu_buffer->lost_events;
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004767
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004768 /*
Steven Rostedt474d32b2009-03-03 19:51:40 -05004769 * If this page has been partially read or
4770 * if len is not big enough to read the rest of the page or
4771 * a writer is still on the page, then
4772 * we must copy the data from the page to the buffer.
4773 * Otherwise, we can simply swap the page with the one passed in.
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004774 */
Steven Rostedt474d32b2009-03-03 19:51:40 -05004775 if (read || (len < (commit - read)) ||
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004776 cpu_buffer->reader_page == cpu_buffer->commit_page) {
Lai Jiangshan667d2412009-02-09 14:21:17 +08004777 struct buffer_data_page *rpage = cpu_buffer->reader_page->page;
Steven Rostedt474d32b2009-03-03 19:51:40 -05004778 unsigned int rpos = read;
4779 unsigned int pos = 0;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004780 unsigned int size;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004781
4782 if (full)
Steven Rostedt554f7862009-03-11 22:00:13 -04004783 goto out_unlock;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004784
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004785 if (len > (commit - read))
4786 len = (commit - read);
4787
Steven Rostedt69d1b832010-10-07 18:18:05 -04004788 /* Always keep the time extend and data together */
4789 size = rb_event_ts_length(event);
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004790
4791 if (len < size)
Steven Rostedt554f7862009-03-11 22:00:13 -04004792 goto out_unlock;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004793
Steven Rostedt4f3640f2009-03-03 23:52:42 -05004794 /* save the current timestamp, since the user will need it */
4795 save_timestamp = cpu_buffer->read_stamp;
4796
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004797 /* Need to copy one event at a time */
4798 do {
David Sharpe1e35922010-12-22 16:38:24 -08004799 /* We need the size of one event, because
4800 * rb_advance_reader only advances by one event,
4801 * whereas rb_event_ts_length may include the size of
4802 * one or two events.
4803 * We have already ensured there's enough space if this
4804 * is a time extend. */
4805 size = rb_event_length(event);
Steven Rostedt474d32b2009-03-03 19:51:40 -05004806 memcpy(bpage->data + pos, rpage->data + rpos, size);
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004807
4808 len -= size;
4809
4810 rb_advance_reader(cpu_buffer);
Steven Rostedt474d32b2009-03-03 19:51:40 -05004811 rpos = reader->read;
4812 pos += size;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004813
Huang Ying18fab912010-07-28 14:14:01 +08004814 if (rpos >= commit)
4815 break;
4816
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004817 event = rb_reader_event(cpu_buffer);
Steven Rostedt69d1b832010-10-07 18:18:05 -04004818 /* Always keep the time extend and data together */
4819 size = rb_event_ts_length(event);
David Sharpe1e35922010-12-22 16:38:24 -08004820 } while (len >= size);
Lai Jiangshan667d2412009-02-09 14:21:17 +08004821
4822 /* update bpage */
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004823 local_set(&bpage->commit, pos);
Steven Rostedt4f3640f2009-03-03 23:52:42 -05004824 bpage->time_stamp = save_timestamp;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004825
Steven Rostedt474d32b2009-03-03 19:51:40 -05004826 /* we copied everything to the beginning */
4827 read = 0;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004828 } else {
Steven Rostedtafbab762009-05-01 19:40:05 -04004829 /* update the entry counter */
Steven Rostedt77ae3652009-03-27 11:00:29 -04004830 cpu_buffer->read += rb_page_entries(reader);
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07004831 cpu_buffer->read_bytes += BUF_PAGE_SIZE;
Steven Rostedtafbab762009-05-01 19:40:05 -04004832
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004833 /* swap the pages */
Steven Rostedt044fa782008-12-02 23:50:03 -05004834 rb_init_page(bpage);
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004835 bpage = reader->page;
4836 reader->page = *data_page;
4837 local_set(&reader->write, 0);
Steven Rostedt778c55d2009-05-01 18:44:45 -04004838 local_set(&reader->entries, 0);
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004839 reader->read = 0;
Steven Rostedt044fa782008-12-02 23:50:03 -05004840 *data_page = bpage;
Steven Rostedtff0ff842010-03-31 22:11:42 -04004841
4842 /*
4843 * Use the real_end for the data size,
4844 * This gives us a chance to store the lost events
4845 * on the page.
4846 */
4847 if (reader->real_end)
4848 local_set(&bpage->commit, reader->real_end);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004849 }
Lai Jiangshan667d2412009-02-09 14:21:17 +08004850 ret = read;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004851
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004852 cpu_buffer->lost_events = 0;
Steven Rostedt2711ca22010-05-21 13:32:26 -04004853
4854 commit = local_read(&bpage->commit);
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004855 /*
4856 * Set a flag in the commit field if we lost events
4857 */
Steven Rostedtff0ff842010-03-31 22:11:42 -04004858 if (missed_events) {
Steven Rostedtff0ff842010-03-31 22:11:42 -04004859 /* If there is room at the end of the page to save the
4860 * missed events, then record it there.
4861 */
4862 if (BUF_PAGE_SIZE - commit >= sizeof(missed_events)) {
4863 memcpy(&bpage->data[commit], &missed_events,
4864 sizeof(missed_events));
4865 local_add(RB_MISSED_STORED, &bpage->commit);
Steven Rostedt2711ca22010-05-21 13:32:26 -04004866 commit += sizeof(missed_events);
Steven Rostedtff0ff842010-03-31 22:11:42 -04004867 }
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004868 local_add(RB_MISSED_EVENTS, &bpage->commit);
Steven Rostedtff0ff842010-03-31 22:11:42 -04004869 }
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004870
Steven Rostedt2711ca22010-05-21 13:32:26 -04004871 /*
4872 * This page may be off to user land. Zero it out here.
4873 */
4874 if (commit < BUF_PAGE_SIZE)
4875 memset(&bpage->data[commit], 0, BUF_PAGE_SIZE - commit);
4876
Steven Rostedt554f7862009-03-11 22:00:13 -04004877 out_unlock:
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004878 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004879
Steven Rostedt554f7862009-03-11 22:00:13 -04004880 out:
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004881 return ret;
4882}
Steven Rostedtd6ce96d2009-05-05 01:15:24 -04004883EXPORT_SYMBOL_GPL(ring_buffer_read_page);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004884
Sebastian Andrzej Siewiorb32614c2016-11-27 00:13:34 +01004885/*
4886 * We only allocate new buffers, never free them if the CPU goes down.
4887 * If we were to free the buffer, then the user would lose any trace that was in
4888 * the buffer.
4889 */
4890int trace_rb_cpu_prepare(unsigned int cpu, struct hlist_node *node)
Steven Rostedt554f7862009-03-11 22:00:13 -04004891{
Sebastian Andrzej Siewiorb32614c2016-11-27 00:13:34 +01004892 struct ring_buffer *buffer;
Steven Rostedt (Red Hat)9b94a8f2016-05-12 11:01:24 -04004893 long nr_pages_same;
4894 int cpu_i;
4895 unsigned long nr_pages;
Steven Rostedt554f7862009-03-11 22:00:13 -04004896
Sebastian Andrzej Siewiorb32614c2016-11-27 00:13:34 +01004897 buffer = container_of(node, struct ring_buffer, node);
4898 if (cpumask_test_cpu(cpu, buffer->cpumask))
4899 return 0;
Steven Rostedt554f7862009-03-11 22:00:13 -04004900
Sebastian Andrzej Siewiorb32614c2016-11-27 00:13:34 +01004901 nr_pages = 0;
4902 nr_pages_same = 1;
4903 /* check if all cpu sizes are same */
4904 for_each_buffer_cpu(buffer, cpu_i) {
4905 /* fill in the size from first enabled cpu */
4906 if (nr_pages == 0)
4907 nr_pages = buffer->buffers[cpu_i]->nr_pages;
4908 if (nr_pages != buffer->buffers[cpu_i]->nr_pages) {
4909 nr_pages_same = 0;
4910 break;
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08004911 }
Steven Rostedt554f7862009-03-11 22:00:13 -04004912 }
Sebastian Andrzej Siewiorb32614c2016-11-27 00:13:34 +01004913 /* allocate minimum pages, user can later expand it */
4914 if (!nr_pages_same)
4915 nr_pages = 2;
4916 buffer->buffers[cpu] =
4917 rb_allocate_cpu_buffer(buffer, nr_pages, cpu);
4918 if (!buffer->buffers[cpu]) {
4919 WARN(1, "failed to allocate ring buffer on CPU %u\n",
4920 cpu);
4921 return -ENOMEM;
4922 }
4923 smp_wmb();
4924 cpumask_set_cpu(cpu, buffer->cpumask);
4925 return 0;
Steven Rostedt554f7862009-03-11 22:00:13 -04004926}
Steven Rostedt (Red Hat)6c43e552013-03-15 11:32:53 -04004927
4928#ifdef CONFIG_RING_BUFFER_STARTUP_TEST
4929/*
4930 * This is a basic integrity check of the ring buffer.
4931 * Late in the boot cycle this test will run when configured in.
4932 * It will kick off a thread per CPU that will go into a loop
4933 * writing to the per cpu ring buffer various sizes of data.
4934 * Some of the data will be large items, some small.
4935 *
4936 * Another thread is created that goes into a spin, sending out
4937 * IPIs to the other CPUs to also write into the ring buffer.
4938 * this is to test the nesting ability of the buffer.
4939 *
4940 * Basic stats are recorded and reported. If something in the
4941 * ring buffer should happen that's not expected, a big warning
4942 * is displayed and all ring buffers are disabled.
4943 */
4944static struct task_struct *rb_threads[NR_CPUS] __initdata;
4945
4946struct rb_test_data {
4947 struct ring_buffer *buffer;
4948 unsigned long events;
4949 unsigned long bytes_written;
4950 unsigned long bytes_alloc;
4951 unsigned long bytes_dropped;
4952 unsigned long events_nested;
4953 unsigned long bytes_written_nested;
4954 unsigned long bytes_alloc_nested;
4955 unsigned long bytes_dropped_nested;
4956 int min_size_nested;
4957 int max_size_nested;
4958 int max_size;
4959 int min_size;
4960 int cpu;
4961 int cnt;
4962};
4963
4964static struct rb_test_data rb_data[NR_CPUS] __initdata;
4965
4966/* 1 meg per cpu */
4967#define RB_TEST_BUFFER_SIZE 1048576
4968
4969static char rb_string[] __initdata =
4970 "abcdefghijklmnopqrstuvwxyz1234567890!@#$%^&*()?+\\"
4971 "?+|:';\",.<>/?abcdefghijklmnopqrstuvwxyz1234567890"
4972 "!@#$%^&*()?+\\?+|:';\",.<>/?abcdefghijklmnopqrstuv";
4973
4974static bool rb_test_started __initdata;
4975
4976struct rb_item {
4977 int size;
4978 char str[];
4979};
4980
4981static __init int rb_write_something(struct rb_test_data *data, bool nested)
4982{
4983 struct ring_buffer_event *event;
4984 struct rb_item *item;
4985 bool started;
4986 int event_len;
4987 int size;
4988 int len;
4989 int cnt;
4990
4991 /* Have nested writes different that what is written */
4992 cnt = data->cnt + (nested ? 27 : 0);
4993
4994 /* Multiply cnt by ~e, to make some unique increment */
4995 size = (data->cnt * 68 / 25) % (sizeof(rb_string) - 1);
4996
4997 len = size + sizeof(struct rb_item);
4998
4999 started = rb_test_started;
5000 /* read rb_test_started before checking buffer enabled */
5001 smp_rmb();
5002
5003 event = ring_buffer_lock_reserve(data->buffer, len);
5004 if (!event) {
5005 /* Ignore dropped events before test starts. */
5006 if (started) {
5007 if (nested)
5008 data->bytes_dropped += len;
5009 else
5010 data->bytes_dropped_nested += len;
5011 }
5012 return len;
5013 }
5014
5015 event_len = ring_buffer_event_length(event);
5016
5017 if (RB_WARN_ON(data->buffer, event_len < len))
5018 goto out;
5019
5020 item = ring_buffer_event_data(event);
5021 item->size = size;
5022 memcpy(item->str, rb_string, size);
5023
5024 if (nested) {
5025 data->bytes_alloc_nested += event_len;
5026 data->bytes_written_nested += len;
5027 data->events_nested++;
5028 if (!data->min_size_nested || len < data->min_size_nested)
5029 data->min_size_nested = len;
5030 if (len > data->max_size_nested)
5031 data->max_size_nested = len;
5032 } else {
5033 data->bytes_alloc += event_len;
5034 data->bytes_written += len;
5035 data->events++;
5036 if (!data->min_size || len < data->min_size)
5037 data->max_size = len;
5038 if (len > data->max_size)
5039 data->max_size = len;
5040 }
5041
5042 out:
5043 ring_buffer_unlock_commit(data->buffer, event);
5044
5045 return 0;
5046}
5047
5048static __init int rb_test(void *arg)
5049{
5050 struct rb_test_data *data = arg;
5051
5052 while (!kthread_should_stop()) {
5053 rb_write_something(data, false);
5054 data->cnt++;
5055
5056 set_current_state(TASK_INTERRUPTIBLE);
5057 /* Now sleep between a min of 100-300us and a max of 1ms */
5058 usleep_range(((data->cnt % 3) + 1) * 100, 1000);
5059 }
5060
5061 return 0;
5062}
5063
5064static __init void rb_ipi(void *ignore)
5065{
5066 struct rb_test_data *data;
5067 int cpu = smp_processor_id();
5068
5069 data = &rb_data[cpu];
5070 rb_write_something(data, true);
5071}
5072
5073static __init int rb_hammer_test(void *arg)
5074{
5075 while (!kthread_should_stop()) {
5076
5077 /* Send an IPI to all cpus to write data! */
5078 smp_call_function(rb_ipi, NULL, 1);
5079 /* No sleep, but for non preempt, let others run */
5080 schedule();
5081 }
5082
5083 return 0;
5084}
5085
5086static __init int test_ringbuffer(void)
5087{
5088 struct task_struct *rb_hammer;
5089 struct ring_buffer *buffer;
5090 int cpu;
5091 int ret = 0;
5092
5093 pr_info("Running ring buffer tests...\n");
5094
5095 buffer = ring_buffer_alloc(RB_TEST_BUFFER_SIZE, RB_FL_OVERWRITE);
5096 if (WARN_ON(!buffer))
5097 return 0;
5098
5099 /* Disable buffer so that threads can't write to it yet */
5100 ring_buffer_record_off(buffer);
5101
5102 for_each_online_cpu(cpu) {
5103 rb_data[cpu].buffer = buffer;
5104 rb_data[cpu].cpu = cpu;
5105 rb_data[cpu].cnt = cpu;
5106 rb_threads[cpu] = kthread_create(rb_test, &rb_data[cpu],
5107 "rbtester/%d", cpu);
Wei Yongjun62277de2016-06-17 17:33:59 +00005108 if (WARN_ON(IS_ERR(rb_threads[cpu]))) {
Steven Rostedt (Red Hat)6c43e552013-03-15 11:32:53 -04005109 pr_cont("FAILED\n");
Wei Yongjun62277de2016-06-17 17:33:59 +00005110 ret = PTR_ERR(rb_threads[cpu]);
Steven Rostedt (Red Hat)6c43e552013-03-15 11:32:53 -04005111 goto out_free;
5112 }
5113
5114 kthread_bind(rb_threads[cpu], cpu);
5115 wake_up_process(rb_threads[cpu]);
5116 }
5117
5118 /* Now create the rb hammer! */
5119 rb_hammer = kthread_run(rb_hammer_test, NULL, "rbhammer");
Wei Yongjun62277de2016-06-17 17:33:59 +00005120 if (WARN_ON(IS_ERR(rb_hammer))) {
Steven Rostedt (Red Hat)6c43e552013-03-15 11:32:53 -04005121 pr_cont("FAILED\n");
Wei Yongjun62277de2016-06-17 17:33:59 +00005122 ret = PTR_ERR(rb_hammer);
Steven Rostedt (Red Hat)6c43e552013-03-15 11:32:53 -04005123 goto out_free;
5124 }
5125
5126 ring_buffer_record_on(buffer);
5127 /*
5128 * Show buffer is enabled before setting rb_test_started.
5129 * Yes there's a small race window where events could be
5130 * dropped and the thread wont catch it. But when a ring
5131 * buffer gets enabled, there will always be some kind of
5132 * delay before other CPUs see it. Thus, we don't care about
5133 * those dropped events. We care about events dropped after
5134 * the threads see that the buffer is active.
5135 */
5136 smp_wmb();
5137 rb_test_started = true;
5138
5139 set_current_state(TASK_INTERRUPTIBLE);
5140 /* Just run for 10 seconds */;
5141 schedule_timeout(10 * HZ);
5142
5143 kthread_stop(rb_hammer);
5144
5145 out_free:
5146 for_each_online_cpu(cpu) {
5147 if (!rb_threads[cpu])
5148 break;
5149 kthread_stop(rb_threads[cpu]);
5150 }
5151 if (ret) {
5152 ring_buffer_free(buffer);
5153 return ret;
5154 }
5155
5156 /* Report! */
5157 pr_info("finished\n");
5158 for_each_online_cpu(cpu) {
5159 struct ring_buffer_event *event;
5160 struct rb_test_data *data = &rb_data[cpu];
5161 struct rb_item *item;
5162 unsigned long total_events;
5163 unsigned long total_dropped;
5164 unsigned long total_written;
5165 unsigned long total_alloc;
5166 unsigned long total_read = 0;
5167 unsigned long total_size = 0;
5168 unsigned long total_len = 0;
5169 unsigned long total_lost = 0;
5170 unsigned long lost;
5171 int big_event_size;
5172 int small_event_size;
5173
5174 ret = -1;
5175
5176 total_events = data->events + data->events_nested;
5177 total_written = data->bytes_written + data->bytes_written_nested;
5178 total_alloc = data->bytes_alloc + data->bytes_alloc_nested;
5179 total_dropped = data->bytes_dropped + data->bytes_dropped_nested;
5180
5181 big_event_size = data->max_size + data->max_size_nested;
5182 small_event_size = data->min_size + data->min_size_nested;
5183
5184 pr_info("CPU %d:\n", cpu);
5185 pr_info(" events: %ld\n", total_events);
5186 pr_info(" dropped bytes: %ld\n", total_dropped);
5187 pr_info(" alloced bytes: %ld\n", total_alloc);
5188 pr_info(" written bytes: %ld\n", total_written);
5189 pr_info(" biggest event: %d\n", big_event_size);
5190 pr_info(" smallest event: %d\n", small_event_size);
5191
5192 if (RB_WARN_ON(buffer, total_dropped))
5193 break;
5194
5195 ret = 0;
5196
5197 while ((event = ring_buffer_consume(buffer, cpu, NULL, &lost))) {
5198 total_lost += lost;
5199 item = ring_buffer_event_data(event);
5200 total_len += ring_buffer_event_length(event);
5201 total_size += item->size + sizeof(struct rb_item);
5202 if (memcmp(&item->str[0], rb_string, item->size) != 0) {
5203 pr_info("FAILED!\n");
5204 pr_info("buffer had: %.*s\n", item->size, item->str);
5205 pr_info("expected: %.*s\n", item->size, rb_string);
5206 RB_WARN_ON(buffer, 1);
5207 ret = -1;
5208 break;
5209 }
5210 total_read++;
5211 }
5212 if (ret)
5213 break;
5214
5215 ret = -1;
5216
5217 pr_info(" read events: %ld\n", total_read);
5218 pr_info(" lost events: %ld\n", total_lost);
5219 pr_info(" total events: %ld\n", total_lost + total_read);
5220 pr_info(" recorded len bytes: %ld\n", total_len);
5221 pr_info(" recorded size bytes: %ld\n", total_size);
5222 if (total_lost)
5223 pr_info(" With dropped events, record len and size may not match\n"
5224 " alloced and written from above\n");
5225 if (!total_lost) {
5226 if (RB_WARN_ON(buffer, total_len != total_alloc ||
5227 total_size != total_written))
5228 break;
5229 }
5230 if (RB_WARN_ON(buffer, total_lost + total_read != total_events))
5231 break;
5232
5233 ret = 0;
5234 }
5235 if (!ret)
5236 pr_info("Ring buffer PASSED!\n");
5237
5238 ring_buffer_free(buffer);
5239 return 0;
5240}
5241
5242late_initcall(test_ringbuffer);
5243#endif /* CONFIG_RING_BUFFER_STARTUP_TEST */