Fix: handle writes of length 0
[lttng-modules.git] / lib / ringbuffer / frontend_api.h
CommitLineData
886d51a3
MD
1#ifndef _LIB_RING_BUFFER_FRONTEND_API_H
2#define _LIB_RING_BUFFER_FRONTEND_API_H
f3bc08c5
MD
3
4/*
886d51a3 5 * lib/ringbuffer/frontend_api.h
f3bc08c5
MD
6 *
7 * Ring Buffer Library Synchronization Header (buffer write API).
8 *
886d51a3
MD
9 * Copyright (C) 2005-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10 *
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; only
14 * version 2.1 of the License.
15 *
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
20 *
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 *
f3bc08c5
MD
25 * Author:
26 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
27 *
28 * See ring_buffer_frontend.c for more information on wait-free algorithms.
29 * See linux/ringbuffer/frontend.h for channel allocation and read-side API.
f3bc08c5
MD
30 */
31
32#include "../../wrapper/ringbuffer/frontend.h"
33#include <linux/errno.h>
dfbc2ec7 34#include <linux/prefetch.h>
f3bc08c5
MD
35
36/**
37 * lib_ring_buffer_get_cpu - Precedes ring buffer reserve/commit.
38 *
39 * Disables preemption (acts as a RCU read-side critical section) and keeps a
40 * ring buffer nesting count as supplementary safety net to ensure tracer client
41 * code will never trigger an endless recursion. Returns the processor ID on
42 * success, -EPERM on failure (nesting count too high).
43 *
44 * asm volatile and "memory" clobber prevent the compiler from moving
45 * instructions out of the ring buffer nesting count. This is required to ensure
46 * that probe side-effects which can cause recursion (e.g. unforeseen traps,
47 * divisions by 0, ...) are triggered within the incremented nesting count
48 * section.
49 */
50static inline
51int lib_ring_buffer_get_cpu(const struct lib_ring_buffer_config *config)
52{
53 int cpu, nesting;
54
55 rcu_read_lock_sched_notrace();
56 cpu = smp_processor_id();
57 nesting = ++per_cpu(lib_ring_buffer_nesting, cpu);
58 barrier();
59
60 if (unlikely(nesting > 4)) {
61 WARN_ON_ONCE(1);
62 per_cpu(lib_ring_buffer_nesting, cpu)--;
63 rcu_read_unlock_sched_notrace();
64 return -EPERM;
65 } else
66 return cpu;
67}
68
69/**
70 * lib_ring_buffer_put_cpu - Follows ring buffer reserve/commit.
71 */
72static inline
73void lib_ring_buffer_put_cpu(const struct lib_ring_buffer_config *config)
74{
75 barrier();
76 __get_cpu_var(lib_ring_buffer_nesting)--;
77 rcu_read_unlock_sched_notrace();
78}
79
80/*
81 * lib_ring_buffer_try_reserve is called by lib_ring_buffer_reserve(). It is not
82 * part of the API per se.
83 *
84 * returns 0 if reserve ok, or 1 if the slow path must be taken.
85 */
86static inline
87int lib_ring_buffer_try_reserve(const struct lib_ring_buffer_config *config,
88 struct lib_ring_buffer_ctx *ctx,
89 unsigned long *o_begin, unsigned long *o_end,
90 unsigned long *o_old, size_t *before_hdr_pad)
91{
92 struct channel *chan = ctx->chan;
93 struct lib_ring_buffer *buf = ctx->buf;
94 *o_begin = v_read(config, &buf->offset);
95 *o_old = *o_begin;
96
97 ctx->tsc = lib_ring_buffer_clock_read(chan);
97ca2c54
MD
98 if ((int64_t) ctx->tsc == -EIO)
99 return 1;
f3bc08c5
MD
100
101 /*
102 * Prefetch cacheline for read because we have to read the previous
103 * commit counter to increment it and commit seq value to compare it to
104 * the commit counter.
105 */
106 prefetch(&buf->commit_hot[subbuf_index(*o_begin, chan)]);
107
108 if (last_tsc_overflow(config, buf, ctx->tsc))
64c796d8 109 ctx->rflags |= RING_BUFFER_RFLAG_FULL_TSC;
f3bc08c5
MD
110
111 if (unlikely(subbuf_offset(*o_begin, chan) == 0))
112 return 1;
113
114 ctx->slot_size = record_header_size(config, chan, *o_begin,
64c796d8 115 before_hdr_pad, ctx);
f3bc08c5
MD
116 ctx->slot_size +=
117 lib_ring_buffer_align(*o_begin + ctx->slot_size,
118 ctx->largest_align) + ctx->data_size;
119 if (unlikely((subbuf_offset(*o_begin, chan) + ctx->slot_size)
120 > chan->backend.subbuf_size))
121 return 1;
122
123 /*
124 * Record fits in the current buffer and we are not on a switch
125 * boundary. It's safe to write.
126 */
127 *o_end = *o_begin + ctx->slot_size;
f3bc08c5
MD
128 return 0;
129}
130
131/**
132 * lib_ring_buffer_reserve - Reserve space in a ring buffer.
133 * @config: ring buffer instance configuration.
134 * @ctx: ring buffer context. (input and output) Must be already initialized.
135 *
136 * Atomic wait-free slot reservation. The reserved space starts at the context
137 * "pre_offset". Its length is "slot_size". The associated time-stamp is "tsc".
138 *
97ca2c54
MD
139 * Return :
140 * 0 on success.
141 * -EAGAIN if channel is disabled.
142 * -ENOSPC if event size is too large for packet.
143 * -ENOBUFS if there is currently not enough space in buffer for the event.
144 * -EIO if data cannot be written into the buffer for any other reason.
f3bc08c5
MD
145 */
146
147static inline
148int lib_ring_buffer_reserve(const struct lib_ring_buffer_config *config,
149 struct lib_ring_buffer_ctx *ctx)
150{
151 struct channel *chan = ctx->chan;
152 struct lib_ring_buffer *buf;
153 unsigned long o_begin, o_end, o_old;
154 size_t before_hdr_pad = 0;
155
156 if (atomic_read(&chan->record_disabled))
157 return -EAGAIN;
158
159 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU)
160 buf = per_cpu_ptr(chan->backend.buf, ctx->cpu);
161 else
162 buf = chan->backend.buf;
163 if (atomic_read(&buf->record_disabled))
164 return -EAGAIN;
165 ctx->buf = buf;
166
167 /*
168 * Perform retryable operations.
169 */
170 if (unlikely(lib_ring_buffer_try_reserve(config, ctx, &o_begin,
171 &o_end, &o_old, &before_hdr_pad)))
172 goto slow_path;
173
174 if (unlikely(v_cmpxchg(config, &ctx->buf->offset, o_old, o_end)
175 != o_old))
176 goto slow_path;
177
178 /*
179 * Atomically update last_tsc. This update races against concurrent
180 * atomic updates, but the race will always cause supplementary full TSC
181 * record headers, never the opposite (missing a full TSC record header
182 * when it would be needed).
183 */
184 save_last_tsc(config, ctx->buf, ctx->tsc);
185
186 /*
187 * Push the reader if necessary
188 */
189 lib_ring_buffer_reserve_push_reader(ctx->buf, chan, o_end - 1);
190
191 /*
192 * Clear noref flag for this subbuffer.
193 */
194 lib_ring_buffer_clear_noref(config, &ctx->buf->backend,
195 subbuf_index(o_end - 1, chan));
196
197 ctx->pre_offset = o_begin;
198 ctx->buf_offset = o_begin + before_hdr_pad;
199 return 0;
200slow_path:
201 return lib_ring_buffer_reserve_slow(ctx);
202}
203
204/**
205 * lib_ring_buffer_switch - Perform a sub-buffer switch for a per-cpu buffer.
206 * @config: ring buffer instance configuration.
207 * @buf: buffer
208 * @mode: buffer switch mode (SWITCH_ACTIVE or SWITCH_FLUSH)
209 *
210 * This operation is completely reentrant : can be called while tracing is
211 * active with absolutely no lock held.
212 *
213 * Note, however, that as a v_cmpxchg is used for some atomic operations and
214 * requires to be executed locally for per-CPU buffers, this function must be
215 * called from the CPU which owns the buffer for a ACTIVE flush, with preemption
216 * disabled, for RING_BUFFER_SYNC_PER_CPU configuration.
217 */
218static inline
219void lib_ring_buffer_switch(const struct lib_ring_buffer_config *config,
220 struct lib_ring_buffer *buf, enum switch_mode mode)
221{
222 lib_ring_buffer_switch_slow(buf, mode);
223}
224
225/* See ring_buffer_frontend_api.h for lib_ring_buffer_reserve(). */
226
227/**
228 * lib_ring_buffer_commit - Commit an record.
229 * @config: ring buffer instance configuration.
230 * @ctx: ring buffer context. (input arguments only)
231 *
232 * Atomic unordered slot commit. Increments the commit count in the
233 * specified sub-buffer, and delivers it if necessary.
234 */
235static inline
236void lib_ring_buffer_commit(const struct lib_ring_buffer_config *config,
237 const struct lib_ring_buffer_ctx *ctx)
238{
239 struct channel *chan = ctx->chan;
240 struct lib_ring_buffer *buf = ctx->buf;
241 unsigned long offset_end = ctx->buf_offset;
242 unsigned long endidx = subbuf_index(offset_end - 1, chan);
243 unsigned long commit_count;
244
245 /*
246 * Must count record before incrementing the commit count.
247 */
248 subbuffer_count_record(config, &buf->backend, endidx);
249
250 /*
251 * Order all writes to buffer before the commit count update that will
252 * determine that the subbuffer is full.
253 */
254 if (config->ipi == RING_BUFFER_IPI_BARRIER) {
255 /*
256 * Must write slot data before incrementing commit count. This
257 * compiler barrier is upgraded into a smp_mb() by the IPI sent
258 * by get_subbuf().
259 */
260 barrier();
261 } else
262 smp_wmb();
263
264 v_add(config, ctx->slot_size, &buf->commit_hot[endidx].cc);
265
266 /*
267 * commit count read can race with concurrent OOO commit count updates.
268 * This is only needed for lib_ring_buffer_check_deliver (for
269 * non-polling delivery only) and for
270 * lib_ring_buffer_write_commit_counter. The race can only cause the
271 * counter to be read with the same value more than once, which could
272 * cause :
273 * - Multiple delivery for the same sub-buffer (which is handled
274 * gracefully by the reader code) if the value is for a full
275 * sub-buffer. It's important that we can never miss a sub-buffer
276 * delivery. Re-reading the value after the v_add ensures this.
277 * - Reading a commit_count with a higher value that what was actually
278 * added to it for the lib_ring_buffer_write_commit_counter call
279 * (again caused by a concurrent committer). It does not matter,
280 * because this function is interested in the fact that the commit
281 * count reaches back the reserve offset for a specific sub-buffer,
282 * which is completely independent of the order.
283 */
284 commit_count = v_read(config, &buf->commit_hot[endidx].cc);
285
286 lib_ring_buffer_check_deliver(config, buf, chan, offset_end - 1,
287 commit_count, endidx);
288 /*
289 * Update used size at each commit. It's needed only for extracting
290 * ring_buffer buffers from vmcore, after crash.
291 */
292 lib_ring_buffer_write_commit_counter(config, buf, chan, endidx,
293 ctx->buf_offset, commit_count,
294 ctx->slot_size);
295}
296
297/**
298 * lib_ring_buffer_try_discard_reserve - Try discarding a record.
299 * @config: ring buffer instance configuration.
300 * @ctx: ring buffer context. (input arguments only)
301 *
302 * Only succeeds if no other record has been written after the record to
303 * discard. If discard fails, the record must be committed to the buffer.
304 *
305 * Returns 0 upon success, -EPERM if the record cannot be discarded.
306 */
307static inline
308int lib_ring_buffer_try_discard_reserve(const struct lib_ring_buffer_config *config,
309 const struct lib_ring_buffer_ctx *ctx)
310{
311 struct lib_ring_buffer *buf = ctx->buf;
312 unsigned long end_offset = ctx->pre_offset + ctx->slot_size;
313
314 /*
315 * We need to ensure that if the cmpxchg succeeds and discards the
316 * record, the next record will record a full TSC, because it cannot
317 * rely on the last_tsc associated with the discarded record to detect
318 * overflows. The only way to ensure this is to set the last_tsc to 0
319 * (assuming no 64-bit TSC overflow), which forces to write a 64-bit
320 * timestamp in the next record.
321 *
322 * Note: if discard fails, we must leave the TSC in the record header.
323 * It is needed to keep track of TSC overflows for the following
324 * records.
325 */
326 save_last_tsc(config, buf, 0ULL);
327
328 if (likely(v_cmpxchg(config, &buf->offset, end_offset, ctx->pre_offset)
329 != end_offset))
330 return -EPERM;
331 else
332 return 0;
333}
334
335static inline
336void channel_record_disable(const struct lib_ring_buffer_config *config,
337 struct channel *chan)
338{
339 atomic_inc(&chan->record_disabled);
340}
341
342static inline
343void channel_record_enable(const struct lib_ring_buffer_config *config,
344 struct channel *chan)
345{
346 atomic_dec(&chan->record_disabled);
347}
348
349static inline
350void lib_ring_buffer_record_disable(const struct lib_ring_buffer_config *config,
351 struct lib_ring_buffer *buf)
352{
353 atomic_inc(&buf->record_disabled);
354}
355
356static inline
357void lib_ring_buffer_record_enable(const struct lib_ring_buffer_config *config,
358 struct lib_ring_buffer *buf)
359{
360 atomic_dec(&buf->record_disabled);
361}
362
886d51a3 363#endif /* _LIB_RING_BUFFER_FRONTEND_API_H */
This page took 0.038455 seconds and 4 git commands to generate.