Move the getcpu plugin implementation to liblttn-ust-common
[lttng-ust.git] / src / common / ringbuffer / frontend_api.h
CommitLineData
852c2936 1/*
c0c0989a 2 * SPDX-License-Identifier: LGPL-2.1-only
852c2936 3 *
e92f3e28
MD
4 * Copyright (C) 2005-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
e92f3e28
MD
6 * See ring_buffer_frontend.c for more information on wait-free
7 * algorithms.
8 * See frontend.h for channel allocation and read-side API.
852c2936
MD
9 */
10
c0c0989a
MJ
11#ifndef _LTTNG_RING_BUFFER_FRONTEND_API_H
12#define _LTTNG_RING_BUFFER_FRONTEND_API_H
13
b4051ad8
FD
14#include <stddef.h>
15
9f3fdbc6 16#include <urcu/compiler.h>
852c2936 17
f73bcf5e 18#include "common/getcpu.h"
b4051ad8
FD
19#include "frontend.h"
20
852c2936 21/**
7489fcb4 22 * lib_ring_buffer_nesting_inc - Ring buffer recursive use protection.
852c2936 23 *
7489fcb4
MD
24 * The rint buffer buffer nesting count is a safety net to ensure tracer
25 * client code will never trigger an endless recursion.
8936b6c0
MD
26 * Returns a nesting level >= 0 on success, -EPERM on failure (nesting
27 * count too high).
852c2936
MD
28 *
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
33 * section.
34 */
35static inline
2208d8b5 36int lib_ring_buffer_nesting_inc(
b5457df5 37 const struct lttng_ust_ring_buffer_config *config __attribute__((unused)))
852c2936 38{
7489fcb4 39 int nesting;
852c2936 40
8c90a710 41 nesting = ++URCU_TLS(lib_ring_buffer_nesting);
9f3fdbc6 42 cmm_barrier();
8936b6c0 43 if (caa_unlikely(nesting >= LIB_RING_BUFFER_MAX_NESTING)) {
852c2936 44 WARN_ON_ONCE(1);
8c90a710 45 URCU_TLS(lib_ring_buffer_nesting)--;
852c2936 46 return -EPERM;
7489fcb4 47 }
8936b6c0
MD
48 return nesting - 1;
49}
50
51static inline
2208d8b5 52int lib_ring_buffer_nesting_count(
b5457df5 53 const struct lttng_ust_ring_buffer_config *config __attribute__((unused)))
8936b6c0
MD
54{
55 return URCU_TLS(lib_ring_buffer_nesting);
852c2936
MD
56}
57
852c2936 58static inline
2208d8b5 59void lib_ring_buffer_nesting_dec(
b5457df5 60 const struct lttng_ust_ring_buffer_config *config __attribute__((unused)))
852c2936 61{
9f3fdbc6 62 cmm_barrier();
8c90a710 63 URCU_TLS(lib_ring_buffer_nesting)--; /* TLS */
852c2936
MD
64}
65
66/*
67 * lib_ring_buffer_try_reserve is called by lib_ring_buffer_reserve(). It is not
68 * part of the API per se.
69 *
70 * returns 0 if reserve ok, or 1 if the slow path must be taken.
71 */
72static inline
b5457df5
MD
73int lib_ring_buffer_try_reserve(const struct lttng_ust_ring_buffer_config *config,
74 struct lttng_ust_ring_buffer_ctx *ctx,
e56bb47c 75 void *client_ctx,
852c2936
MD
76 unsigned long *o_begin, unsigned long *o_end,
77 unsigned long *o_old, size_t *before_hdr_pad)
78{
b5457df5
MD
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;
852c2936
MD
82 *o_begin = v_read(config, &buf->offset);
83 *o_old = *o_begin;
84
8936b6c0
MD
85 ctx_private->tsc = lib_ring_buffer_clock_read(chan);
86 if ((int64_t) ctx_private->tsc == -EIO)
852c2936
MD
87 return 1;
88
89 /*
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
92 * the commit counter.
93 */
9f3fdbc6 94 //prefetch(&buf->commit_hot[subbuf_index(*o_begin, chan)]);
852c2936 95
8936b6c0
MD
96 if (last_tsc_overflow(config, buf, ctx_private->tsc))
97 ctx_private->rflags |= RING_BUFFER_RFLAG_FULL_TSC;
852c2936 98
b5a3dfa5 99 if (caa_unlikely(subbuf_offset(*o_begin, chan) == 0))
852c2936
MD
100 return 1;
101
8936b6c0 102 ctx_private->slot_size = record_header_size(config, chan, *o_begin,
e56bb47c 103 before_hdr_pad, ctx, client_ctx);
8936b6c0 104 ctx_private->slot_size +=
b5457df5 105 lttng_ust_ring_buffer_align(*o_begin + ctx_private->slot_size,
852c2936 106 ctx->largest_align) + ctx->data_size;
8936b6c0 107 if (caa_unlikely((subbuf_offset(*o_begin, chan) + ctx_private->slot_size)
852c2936
MD
108 > chan->backend.subbuf_size))
109 return 1;
110
111 /*
112 * Record fits in the current buffer and we are not on a switch
113 * boundary. It's safe to write.
114 */
8936b6c0 115 *o_end = *o_begin + ctx_private->slot_size;
1ad21f70
MD
116
117 if (caa_unlikely((subbuf_offset(*o_end, chan)) == 0))
118 /*
119 * The offset_end will fall at the very beginning of the next
120 * subbuffer.
121 */
122 return 1;
123
852c2936
MD
124 return 0;
125}
126
127/**
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.
131 *
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".
134 *
135 * Return :
136 * 0 on success.
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.
141 */
142
143static inline
b5457df5
MD
144int lib_ring_buffer_reserve(const struct lttng_ust_ring_buffer_config *config,
145 struct lttng_ust_ring_buffer_ctx *ctx,
e56bb47c 146 void *client_ctx)
852c2936 147{
b5457df5
MD
148 struct lttng_ust_ring_buffer_ctx_private *ctx_private = ctx->priv;
149 struct lttng_ust_ring_buffer_channel *chan = ctx_private->chan;
8936b6c0 150 struct lttng_ust_shm_handle *handle = chan->handle;
b5457df5 151 struct lttng_ust_ring_buffer *buf;
852c2936
MD
152 unsigned long o_begin, o_end, o_old;
153 size_t before_hdr_pad = 0;
154
f52a5702 155 if (caa_unlikely(uatomic_read(&chan->record_disabled)))
852c2936
MD
156 return -EAGAIN;
157
7489fcb4 158 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU) {
8936b6c0
MD
159 ctx_private->reserve_cpu = lttng_ust_get_cpu();
160 buf = shmp(handle, chan->backend.buf[ctx_private->reserve_cpu].shmp);
7489fcb4 161 } else {
1d498196 162 buf = shmp(handle, chan->backend.buf[0].shmp);
7489fcb4 163 }
15500a1b
MD
164 if (caa_unlikely(!buf))
165 return -EIO;
f52a5702 166 if (caa_unlikely(uatomic_read(&buf->record_disabled)))
852c2936 167 return -EAGAIN;
8936b6c0 168 ctx_private->buf = buf;
852c2936
MD
169
170 /*
171 * Perform retryable operations.
172 */
e56bb47c 173 if (caa_unlikely(lib_ring_buffer_try_reserve(config, ctx, client_ctx, &o_begin,
852c2936
MD
174 &o_end, &o_old, &before_hdr_pad)))
175 goto slow_path;
176
8936b6c0 177 if (caa_unlikely(v_cmpxchg(config, &buf->offset, o_old, o_end)
852c2936
MD
178 != o_old))
179 goto slow_path;
180
181 /*
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).
186 */
8936b6c0 187 save_last_tsc(config, buf, ctx_private->tsc);
852c2936
MD
188
189 /*
190 * Push the reader if necessary
191 */
8936b6c0 192 lib_ring_buffer_reserve_push_reader(buf, chan, o_end - 1);
852c2936
MD
193
194 /*
195 * Clear noref flag for this subbuffer.
196 */
8936b6c0 197 lib_ring_buffer_clear_noref(config, &buf->backend,
1d498196 198 subbuf_index(o_end - 1, chan), handle);
852c2936 199
8936b6c0
MD
200 ctx_private->pre_offset = o_begin;
201 ctx_private->buf_offset = o_begin + before_hdr_pad;
852c2936
MD
202 return 0;
203slow_path:
e56bb47c 204 return lib_ring_buffer_reserve_slow(ctx, client_ctx);
852c2936
MD
205}
206
207/**
208 * lib_ring_buffer_switch - Perform a sub-buffer switch for a per-cpu buffer.
209 * @config: ring buffer instance configuration.
210 * @buf: buffer
211 * @mode: buffer switch mode (SWITCH_ACTIVE or SWITCH_FLUSH)
212 *
213 * This operation is completely reentrant : can be called while tracing is
214 * active with absolutely no lock held.
215 *
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.
220 */
221static inline
2208d8b5 222void lib_ring_buffer_switch(
b5457df5
MD
223 const struct lttng_ust_ring_buffer_config *config __attribute__((unused)),
224 struct lttng_ust_ring_buffer *buf, enum switch_mode mode,
2208d8b5 225 struct lttng_ust_shm_handle *handle)
852c2936 226{
1d498196 227 lib_ring_buffer_switch_slow(buf, mode, handle);
852c2936
MD
228}
229
230/* See ring_buffer_frontend_api.h for lib_ring_buffer_reserve(). */
231
232/**
233 * lib_ring_buffer_commit - Commit an record.
234 * @config: ring buffer instance configuration.
235 * @ctx: ring buffer context. (input arguments only)
236 *
237 * Atomic unordered slot commit. Increments the commit count in the
238 * specified sub-buffer, and delivers it if necessary.
239 */
240static inline
b5457df5
MD
241void lib_ring_buffer_commit(const struct lttng_ust_ring_buffer_config *config,
242 const struct lttng_ust_ring_buffer_ctx *ctx)
852c2936 243{
b5457df5
MD
244 struct lttng_ust_ring_buffer_ctx_private *ctx_private = ctx->priv;
245 struct lttng_ust_ring_buffer_channel *chan = ctx_private->chan;
8936b6c0 246 struct lttng_ust_shm_handle *handle = chan->handle;
b5457df5 247 struct lttng_ust_ring_buffer *buf = ctx_private->buf;
8936b6c0 248 unsigned long offset_end = ctx_private->buf_offset;
852c2936
MD
249 unsigned long endidx = subbuf_index(offset_end - 1, chan);
250 unsigned long commit_count;
d2fe4771
MD
251 struct commit_counters_hot *cc_hot = shmp_index(handle,
252 buf->commit_hot, endidx);
852c2936 253
15500a1b
MD
254 if (caa_unlikely(!cc_hot))
255 return;
256
852c2936
MD
257 /*
258 * Must count record before incrementing the commit count.
259 */
15500a1b 260 subbuffer_count_record(config, ctx, &buf->backend, endidx, handle);
852c2936
MD
261
262 /*
263 * Order all writes to buffer before the commit count update that will
264 * determine that the subbuffer is full.
265 */
9f3fdbc6 266 cmm_smp_wmb();
852c2936 267
8936b6c0 268 v_add(config, ctx_private->slot_size, &cc_hot->cc);
852c2936
MD
269
270 /*
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
276 * cause :
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.
287 */
d2fe4771 288 commit_count = v_read(config, &cc_hot->cc);
852c2936
MD
289
290 lib_ring_buffer_check_deliver(config, buf, chan, offset_end - 1,
8936b6c0 291 commit_count, endidx, handle, ctx_private->tsc);
852c2936
MD
292 /*
293 * Update used size at each commit. It's needed only for extracting
294 * ring_buffer buffers from vmcore, after crash.
295 */
d2fe4771
MD
296 lib_ring_buffer_write_commit_counter(config, buf, chan,
297 offset_end, commit_count, handle, cc_hot);
852c2936
MD
298}
299
300/**
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)
304 *
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.
307 *
308 * Returns 0 upon success, -EPERM if the record cannot be discarded.
309 */
310static inline
b5457df5
MD
311int lib_ring_buffer_try_discard_reserve(const struct lttng_ust_ring_buffer_config *config,
312 const struct lttng_ust_ring_buffer_ctx *ctx)
852c2936 313{
b5457df5
MD
314 struct lttng_ust_ring_buffer_ctx_private *ctx_private = ctx->priv;
315 struct lttng_ust_ring_buffer *buf = ctx_private->buf;
8936b6c0 316 unsigned long end_offset = ctx_private->pre_offset + ctx_private->slot_size;
852c2936
MD
317
318 /*
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.
325 *
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
328 * records.
329 */
330 save_last_tsc(config, buf, 0ULL);
331
8936b6c0 332 if (caa_likely(v_cmpxchg(config, &buf->offset, end_offset, ctx_private->pre_offset)
852c2936
MD
333 != end_offset))
334 return -EPERM;
335 else
336 return 0;
337}
338
339static inline
2208d8b5 340void channel_record_disable(
b5457df5
MD
341 const struct lttng_ust_ring_buffer_config *config __attribute__((unused)),
342 struct lttng_ust_ring_buffer_channel *chan)
852c2936 343{
9f3fdbc6 344 uatomic_inc(&chan->record_disabled);
852c2936
MD
345}
346
347static inline
2208d8b5 348void channel_record_enable(
b5457df5
MD
349 const struct lttng_ust_ring_buffer_config *config __attribute__((unused)),
350 struct lttng_ust_ring_buffer_channel *chan)
852c2936 351{
9f3fdbc6 352 uatomic_dec(&chan->record_disabled);
852c2936
MD
353}
354
355static inline
2208d8b5 356void lib_ring_buffer_record_disable(
b5457df5
MD
357 const struct lttng_ust_ring_buffer_config *config __attribute__((unused)),
358 struct lttng_ust_ring_buffer *buf)
852c2936 359{
9f3fdbc6 360 uatomic_inc(&buf->record_disabled);
852c2936
MD
361}
362
363static inline
2208d8b5 364void lib_ring_buffer_record_enable(
b5457df5
MD
365 const struct lttng_ust_ring_buffer_config *config __attribute__((unused)),
366 struct lttng_ust_ring_buffer *buf)
852c2936 367{
9f3fdbc6 368 uatomic_dec(&buf->record_disabled);
852c2936
MD
369}
370
e92f3e28 371#endif /* _LTTNG_RING_BUFFER_FRONTEND_API_H */
This page took 0.050236 seconds and 4 git commands to generate.