Move the getcpu plugin implementation to liblttn-ust-common
[lttng-ust.git] / src / common / ringbuffer / frontend_api.h
1 /*
2 * SPDX-License-Identifier: LGPL-2.1-only
3 *
4 * Copyright (C) 2005-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
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.
9 */
10
11 #ifndef _LTTNG_RING_BUFFER_FRONTEND_API_H
12 #define _LTTNG_RING_BUFFER_FRONTEND_API_H
13
14 #include <stddef.h>
15
16 #include <urcu/compiler.h>
17
18 #include "common/getcpu.h"
19 #include "frontend.h"
20
21 /**
22 * lib_ring_buffer_nesting_inc - Ring buffer recursive use protection.
23 *
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
27 * count too high).
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 */
35 static inline
36 int lib_ring_buffer_nesting_inc(
37 const struct lttng_ust_ring_buffer_config *config __attribute__((unused)))
38 {
39 int nesting;
40
41 nesting = ++URCU_TLS(lib_ring_buffer_nesting);
42 cmm_barrier();
43 if (caa_unlikely(nesting >= LIB_RING_BUFFER_MAX_NESTING)) {
44 WARN_ON_ONCE(1);
45 URCU_TLS(lib_ring_buffer_nesting)--;
46 return -EPERM;
47 }
48 return nesting - 1;
49 }
50
51 static inline
52 int lib_ring_buffer_nesting_count(
53 const struct lttng_ust_ring_buffer_config *config __attribute__((unused)))
54 {
55 return URCU_TLS(lib_ring_buffer_nesting);
56 }
57
58 static inline
59 void lib_ring_buffer_nesting_dec(
60 const struct lttng_ust_ring_buffer_config *config __attribute__((unused)))
61 {
62 cmm_barrier();
63 URCU_TLS(lib_ring_buffer_nesting)--; /* TLS */
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 */
72 static inline
73 int lib_ring_buffer_try_reserve(const struct lttng_ust_ring_buffer_config *config,
74 struct lttng_ust_ring_buffer_ctx *ctx,
75 void *client_ctx,
76 unsigned long *o_begin, unsigned long *o_end,
77 unsigned long *o_old, size_t *before_hdr_pad)
78 {
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);
83 *o_old = *o_begin;
84
85 ctx_private->tsc = lib_ring_buffer_clock_read(chan);
86 if ((int64_t) ctx_private->tsc == -EIO)
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 */
94 //prefetch(&buf->commit_hot[subbuf_index(*o_begin, chan)]);
95
96 if (last_tsc_overflow(config, buf, ctx_private->tsc))
97 ctx_private->rflags |= RING_BUFFER_RFLAG_FULL_TSC;
98
99 if (caa_unlikely(subbuf_offset(*o_begin, chan) == 0))
100 return 1;
101
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))
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 */
115 *o_end = *o_begin + ctx_private->slot_size;
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
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
143 static inline
144 int lib_ring_buffer_reserve(const struct lttng_ust_ring_buffer_config *config,
145 struct lttng_ust_ring_buffer_ctx *ctx,
146 void *client_ctx)
147 {
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;
154
155 if (caa_unlikely(uatomic_read(&chan->record_disabled)))
156 return -EAGAIN;
157
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);
161 } else {
162 buf = shmp(handle, chan->backend.buf[0].shmp);
163 }
164 if (caa_unlikely(!buf))
165 return -EIO;
166 if (caa_unlikely(uatomic_read(&buf->record_disabled)))
167 return -EAGAIN;
168 ctx_private->buf = buf;
169
170 /*
171 * Perform retryable operations.
172 */
173 if (caa_unlikely(lib_ring_buffer_try_reserve(config, ctx, client_ctx, &o_begin,
174 &o_end, &o_old, &before_hdr_pad)))
175 goto slow_path;
176
177 if (caa_unlikely(v_cmpxchg(config, &buf->offset, o_old, o_end)
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 */
187 save_last_tsc(config, buf, ctx_private->tsc);
188
189 /*
190 * Push the reader if necessary
191 */
192 lib_ring_buffer_reserve_push_reader(buf, chan, o_end - 1);
193
194 /*
195 * Clear noref flag for this subbuffer.
196 */
197 lib_ring_buffer_clear_noref(config, &buf->backend,
198 subbuf_index(o_end - 1, chan), handle);
199
200 ctx_private->pre_offset = o_begin;
201 ctx_private->buf_offset = o_begin + before_hdr_pad;
202 return 0;
203 slow_path:
204 return lib_ring_buffer_reserve_slow(ctx, client_ctx);
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 */
221 static inline
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)
226 {
227 lib_ring_buffer_switch_slow(buf, mode, handle);
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 */
240 static inline
241 void lib_ring_buffer_commit(const struct lttng_ust_ring_buffer_config *config,
242 const struct lttng_ust_ring_buffer_ctx *ctx)
243 {
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);
253
254 if (caa_unlikely(!cc_hot))
255 return;
256
257 /*
258 * Must count record before incrementing the commit count.
259 */
260 subbuffer_count_record(config, ctx, &buf->backend, endidx, handle);
261
262 /*
263 * Order all writes to buffer before the commit count update that will
264 * determine that the subbuffer is full.
265 */
266 cmm_smp_wmb();
267
268 v_add(config, ctx_private->slot_size, &cc_hot->cc);
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 */
288 commit_count = v_read(config, &cc_hot->cc);
289
290 lib_ring_buffer_check_deliver(config, buf, chan, offset_end - 1,
291 commit_count, endidx, handle, ctx_private->tsc);
292 /*
293 * Update used size at each commit. It's needed only for extracting
294 * ring_buffer buffers from vmcore, after crash.
295 */
296 lib_ring_buffer_write_commit_counter(config, buf, chan,
297 offset_end, commit_count, handle, cc_hot);
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 */
310 static inline
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)
313 {
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;
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
332 if (caa_likely(v_cmpxchg(config, &buf->offset, end_offset, ctx_private->pre_offset)
333 != end_offset))
334 return -EPERM;
335 else
336 return 0;
337 }
338
339 static inline
340 void channel_record_disable(
341 const struct lttng_ust_ring_buffer_config *config __attribute__((unused)),
342 struct lttng_ust_ring_buffer_channel *chan)
343 {
344 uatomic_inc(&chan->record_disabled);
345 }
346
347 static inline
348 void channel_record_enable(
349 const struct lttng_ust_ring_buffer_config *config __attribute__((unused)),
350 struct lttng_ust_ring_buffer_channel *chan)
351 {
352 uatomic_dec(&chan->record_disabled);
353 }
354
355 static inline
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)
359 {
360 uatomic_inc(&buf->record_disabled);
361 }
362
363 static inline
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)
367 {
368 uatomic_dec(&buf->record_disabled);
369 }
370
371 #endif /* _LTTNG_RING_BUFFER_FRONTEND_API_H */
This page took 0.036491 seconds and 4 git commands to generate.