2 * SPDX-License-Identifier: LGPL-2.1-only
4 * Copyright (C) 2005-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6 * See ring_buffer_frontend.c for more information on wait-free
8 * See frontend.h for channel allocation and read-side API.
11 #ifndef _LTTNG_RING_BUFFER_FRONTEND_API_H
12 #define _LTTNG_RING_BUFFER_FRONTEND_API_H
16 #include <urcu/compiler.h>
18 #include "lib/lttng-ust/getcpu.h"
22 * lib_ring_buffer_nesting_inc - Ring buffer recursive use protection.
24 * The rint buffer buffer nesting count is a safety net to ensure tracer
25 * client code will never trigger an endless recursion.
26 * Returns a nesting level >= 0 on success, -EPERM on failure (nesting
29 * asm volatile and "memory" clobber prevent the compiler from moving
30 * instructions out of the ring buffer nesting count. This is required to ensure
31 * that probe side-effects which can cause recursion (e.g. unforeseen traps,
32 * divisions by 0, ...) are triggered within the incremented nesting count
36 int lib_ring_buffer_nesting_inc(
37 const struct lttng_ust_ring_buffer_config
*config
__attribute__((unused
)))
41 nesting
= ++URCU_TLS(lib_ring_buffer_nesting
);
43 if (caa_unlikely(nesting
>= LIB_RING_BUFFER_MAX_NESTING
)) {
45 URCU_TLS(lib_ring_buffer_nesting
)--;
52 int lib_ring_buffer_nesting_count(
53 const struct lttng_ust_ring_buffer_config
*config
__attribute__((unused
)))
55 return URCU_TLS(lib_ring_buffer_nesting
);
59 void lib_ring_buffer_nesting_dec(
60 const struct lttng_ust_ring_buffer_config
*config
__attribute__((unused
)))
63 URCU_TLS(lib_ring_buffer_nesting
)--; /* TLS */
67 * lib_ring_buffer_try_reserve is called by lib_ring_buffer_reserve(). It is not
68 * part of the API per se.
70 * returns 0 if reserve ok, or 1 if the slow path must be taken.
73 int lib_ring_buffer_try_reserve(const struct lttng_ust_ring_buffer_config
*config
,
74 struct lttng_ust_ring_buffer_ctx
*ctx
,
76 unsigned long *o_begin
, unsigned long *o_end
,
77 unsigned long *o_old
, size_t *before_hdr_pad
)
79 struct lttng_ust_ring_buffer_ctx_private
*ctx_private
= ctx
->priv
;
80 struct lttng_ust_ring_buffer_channel
*chan
= ctx_private
->chan
;
81 struct lttng_ust_ring_buffer
*buf
= ctx_private
->buf
;
82 *o_begin
= v_read(config
, &buf
->offset
);
85 ctx_private
->tsc
= lib_ring_buffer_clock_read(chan
);
86 if ((int64_t) ctx_private
->tsc
== -EIO
)
90 * Prefetch cacheline for read because we have to read the previous
91 * commit counter to increment it and commit seq value to compare it to
94 //prefetch(&buf->commit_hot[subbuf_index(*o_begin, chan)]);
96 if (last_tsc_overflow(config
, buf
, ctx_private
->tsc
))
97 ctx_private
->rflags
|= RING_BUFFER_RFLAG_FULL_TSC
;
99 if (caa_unlikely(subbuf_offset(*o_begin
, chan
) == 0))
102 ctx_private
->slot_size
= record_header_size(config
, chan
, *o_begin
,
103 before_hdr_pad
, ctx
, client_ctx
);
104 ctx_private
->slot_size
+=
105 lttng_ust_ring_buffer_align(*o_begin
+ ctx_private
->slot_size
,
106 ctx
->largest_align
) + ctx
->data_size
;
107 if (caa_unlikely((subbuf_offset(*o_begin
, chan
) + ctx_private
->slot_size
)
108 > chan
->backend
.subbuf_size
))
112 * Record fits in the current buffer and we are not on a switch
113 * boundary. It's safe to write.
115 *o_end
= *o_begin
+ ctx_private
->slot_size
;
117 if (caa_unlikely((subbuf_offset(*o_end
, chan
)) == 0))
119 * The offset_end will fall at the very beginning of the next
128 * lib_ring_buffer_reserve - Reserve space in a ring buffer.
129 * @config: ring buffer instance configuration.
130 * @ctx: ring buffer context. (input and output) Must be already initialized.
132 * Atomic wait-free slot reservation. The reserved space starts at the context
133 * "pre_offset". Its length is "slot_size". The associated time-stamp is "tsc".
137 * -EAGAIN if channel is disabled.
138 * -ENOSPC if event size is too large for packet.
139 * -ENOBUFS if there is currently not enough space in buffer for the event.
140 * -EIO if data cannot be written into the buffer for any other reason.
144 int lib_ring_buffer_reserve(const struct lttng_ust_ring_buffer_config
*config
,
145 struct lttng_ust_ring_buffer_ctx
*ctx
,
148 struct lttng_ust_ring_buffer_ctx_private
*ctx_private
= ctx
->priv
;
149 struct lttng_ust_ring_buffer_channel
*chan
= ctx_private
->chan
;
150 struct lttng_ust_shm_handle
*handle
= chan
->handle
;
151 struct lttng_ust_ring_buffer
*buf
;
152 unsigned long o_begin
, o_end
, o_old
;
153 size_t before_hdr_pad
= 0;
155 if (caa_unlikely(uatomic_read(&chan
->record_disabled
)))
158 if (config
->alloc
== RING_BUFFER_ALLOC_PER_CPU
) {
159 ctx_private
->reserve_cpu
= lttng_ust_get_cpu();
160 buf
= shmp(handle
, chan
->backend
.buf
[ctx_private
->reserve_cpu
].shmp
);
162 buf
= shmp(handle
, chan
->backend
.buf
[0].shmp
);
164 if (caa_unlikely(!buf
))
166 if (caa_unlikely(uatomic_read(&buf
->record_disabled
)))
168 ctx_private
->buf
= buf
;
171 * Perform retryable operations.
173 if (caa_unlikely(lib_ring_buffer_try_reserve(config
, ctx
, client_ctx
, &o_begin
,
174 &o_end
, &o_old
, &before_hdr_pad
)))
177 if (caa_unlikely(v_cmpxchg(config
, &buf
->offset
, o_old
, o_end
)
182 * Atomically update last_tsc. This update races against concurrent
183 * atomic updates, but the race will always cause supplementary full TSC
184 * record headers, never the opposite (missing a full TSC record header
185 * when it would be needed).
187 save_last_tsc(config
, buf
, ctx_private
->tsc
);
190 * Push the reader if necessary
192 lib_ring_buffer_reserve_push_reader(buf
, chan
, o_end
- 1);
195 * Clear noref flag for this subbuffer.
197 lib_ring_buffer_clear_noref(config
, &buf
->backend
,
198 subbuf_index(o_end
- 1, chan
), handle
);
200 ctx_private
->pre_offset
= o_begin
;
201 ctx_private
->buf_offset
= o_begin
+ before_hdr_pad
;
204 return lib_ring_buffer_reserve_slow(ctx
, client_ctx
);
208 * lib_ring_buffer_switch - Perform a sub-buffer switch for a per-cpu buffer.
209 * @config: ring buffer instance configuration.
211 * @mode: buffer switch mode (SWITCH_ACTIVE or SWITCH_FLUSH)
213 * This operation is completely reentrant : can be called while tracing is
214 * active with absolutely no lock held.
216 * Note, however, that as a v_cmpxchg is used for some atomic operations and
217 * requires to be executed locally for per-CPU buffers, this function must be
218 * called from the CPU which owns the buffer for a ACTIVE flush, with preemption
219 * disabled, for RING_BUFFER_SYNC_PER_CPU configuration.
222 void lib_ring_buffer_switch(
223 const struct lttng_ust_ring_buffer_config
*config
__attribute__((unused
)),
224 struct lttng_ust_ring_buffer
*buf
, enum switch_mode mode
,
225 struct lttng_ust_shm_handle
*handle
)
227 lib_ring_buffer_switch_slow(buf
, mode
, handle
);
230 /* See ring_buffer_frontend_api.h for lib_ring_buffer_reserve(). */
233 * lib_ring_buffer_commit - Commit an record.
234 * @config: ring buffer instance configuration.
235 * @ctx: ring buffer context. (input arguments only)
237 * Atomic unordered slot commit. Increments the commit count in the
238 * specified sub-buffer, and delivers it if necessary.
241 void lib_ring_buffer_commit(const struct lttng_ust_ring_buffer_config
*config
,
242 const struct lttng_ust_ring_buffer_ctx
*ctx
)
244 struct lttng_ust_ring_buffer_ctx_private
*ctx_private
= ctx
->priv
;
245 struct lttng_ust_ring_buffer_channel
*chan
= ctx_private
->chan
;
246 struct lttng_ust_shm_handle
*handle
= chan
->handle
;
247 struct lttng_ust_ring_buffer
*buf
= ctx_private
->buf
;
248 unsigned long offset_end
= ctx_private
->buf_offset
;
249 unsigned long endidx
= subbuf_index(offset_end
- 1, chan
);
250 unsigned long commit_count
;
251 struct commit_counters_hot
*cc_hot
= shmp_index(handle
,
252 buf
->commit_hot
, endidx
);
254 if (caa_unlikely(!cc_hot
))
258 * Must count record before incrementing the commit count.
260 subbuffer_count_record(config
, ctx
, &buf
->backend
, endidx
, handle
);
263 * Order all writes to buffer before the commit count update that will
264 * determine that the subbuffer is full.
268 v_add(config
, ctx_private
->slot_size
, &cc_hot
->cc
);
271 * commit count read can race with concurrent OOO commit count updates.
272 * This is only needed for lib_ring_buffer_check_deliver (for
273 * non-polling delivery only) and for
274 * lib_ring_buffer_write_commit_counter. The race can only cause the
275 * counter to be read with the same value more than once, which could
277 * - Multiple delivery for the same sub-buffer (which is handled
278 * gracefully by the reader code) if the value is for a full
279 * sub-buffer. It's important that we can never miss a sub-buffer
280 * delivery. Re-reading the value after the v_add ensures this.
281 * - Reading a commit_count with a higher value that what was actually
282 * added to it for the lib_ring_buffer_write_commit_counter call
283 * (again caused by a concurrent committer). It does not matter,
284 * because this function is interested in the fact that the commit
285 * count reaches back the reserve offset for a specific sub-buffer,
286 * which is completely independent of the order.
288 commit_count
= v_read(config
, &cc_hot
->cc
);
290 lib_ring_buffer_check_deliver(config
, buf
, chan
, offset_end
- 1,
291 commit_count
, endidx
, handle
, ctx_private
->tsc
);
293 * Update used size at each commit. It's needed only for extracting
294 * ring_buffer buffers from vmcore, after crash.
296 lib_ring_buffer_write_commit_counter(config
, buf
, chan
,
297 offset_end
, commit_count
, handle
, cc_hot
);
301 * lib_ring_buffer_try_discard_reserve - Try discarding a record.
302 * @config: ring buffer instance configuration.
303 * @ctx: ring buffer context. (input arguments only)
305 * Only succeeds if no other record has been written after the record to
306 * discard. If discard fails, the record must be committed to the buffer.
308 * Returns 0 upon success, -EPERM if the record cannot be discarded.
311 int lib_ring_buffer_try_discard_reserve(const struct lttng_ust_ring_buffer_config
*config
,
312 const struct lttng_ust_ring_buffer_ctx
*ctx
)
314 struct lttng_ust_ring_buffer_ctx_private
*ctx_private
= ctx
->priv
;
315 struct lttng_ust_ring_buffer
*buf
= ctx_private
->buf
;
316 unsigned long end_offset
= ctx_private
->pre_offset
+ ctx_private
->slot_size
;
319 * We need to ensure that if the cmpxchg succeeds and discards the
320 * record, the next record will record a full TSC, because it cannot
321 * rely on the last_tsc associated with the discarded record to detect
322 * overflows. The only way to ensure this is to set the last_tsc to 0
323 * (assuming no 64-bit TSC overflow), which forces to write a 64-bit
324 * timestamp in the next record.
326 * Note: if discard fails, we must leave the TSC in the record header.
327 * It is needed to keep track of TSC overflows for the following
330 save_last_tsc(config
, buf
, 0ULL);
332 if (caa_likely(v_cmpxchg(config
, &buf
->offset
, end_offset
, ctx_private
->pre_offset
)
340 void channel_record_disable(
341 const struct lttng_ust_ring_buffer_config
*config
__attribute__((unused
)),
342 struct lttng_ust_ring_buffer_channel
*chan
)
344 uatomic_inc(&chan
->record_disabled
);
348 void channel_record_enable(
349 const struct lttng_ust_ring_buffer_config
*config
__attribute__((unused
)),
350 struct lttng_ust_ring_buffer_channel
*chan
)
352 uatomic_dec(&chan
->record_disabled
);
356 void lib_ring_buffer_record_disable(
357 const struct lttng_ust_ring_buffer_config
*config
__attribute__((unused
)),
358 struct lttng_ust_ring_buffer
*buf
)
360 uatomic_inc(&buf
->record_disabled
);
364 void lib_ring_buffer_record_enable(
365 const struct lttng_ust_ring_buffer_config
*config
__attribute__((unused
)),
366 struct lttng_ust_ring_buffer
*buf
)
368 uatomic_dec(&buf
->record_disabled
);
371 #endif /* _LTTNG_RING_BUFFER_FRONTEND_API_H */