Import lib ring buffer into LTTng modules
[lttng-modules.git] / lib / ringbuffer / config.h
1 #ifndef _LINUX_RING_BUFFER_CONFIG_H
2 #define _LINUX_RING_BUFFER_CONFIG_H
3
4 /*
5 * linux/ringbuffer/config.h
6 *
7 * Copyright (C) 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 *
9 * Ring buffer configuration header. Note: after declaring the standard inline
10 * functions, clients should also include linux/ringbuffer/api.h.
11 *
12 * Dual LGPL v2.1/GPL v2 license.
13 */
14
15 #include <linux/types.h>
16 #include <linux/percpu.h>
17
18 struct lib_ring_buffer;
19 struct channel;
20 struct lib_ring_buffer_config;
21 struct lib_ring_buffer_ctx;
22
23 /*
24 * Ring buffer client callbacks. Only used by slow path, never on fast path.
25 * For the fast path, record_header_size(), ring_buffer_clock_read() should be
26 * provided as inline functions too. These may simply return 0 if not used by
27 * the client.
28 */
29 struct lib_ring_buffer_client_cb {
30 /* Mandatory callbacks */
31
32 /* A static inline version is also required for fast path */
33 u64 (*ring_buffer_clock_read) (struct channel *chan);
34 size_t (*record_header_size) (const struct lib_ring_buffer_config *config,
35 struct channel *chan, size_t offset,
36 size_t data_size,
37 size_t *pre_header_padding,
38 unsigned int rflags,
39 struct lib_ring_buffer_ctx *ctx);
40
41 /* Slow path only, at subbuffer switch */
42 size_t (*subbuffer_header_size) (void);
43 void (*buffer_begin) (struct lib_ring_buffer *buf, u64 tsc,
44 unsigned int subbuf_idx);
45 void (*buffer_end) (struct lib_ring_buffer *buf, u64 tsc,
46 unsigned int subbuf_idx, unsigned long data_size);
47
48 /* Optional callbacks (can be set to NULL) */
49
50 /* Called at buffer creation/finalize */
51 int (*buffer_create) (struct lib_ring_buffer *buf, void *priv,
52 int cpu, const char *name);
53 /*
54 * Clients should guarantee that no new reader handle can be opened
55 * after finalize.
56 */
57 void (*buffer_finalize) (struct lib_ring_buffer *buf, void *priv, int cpu);
58
59 /*
60 * Extract header length, payload length and timestamp from event
61 * record. Used by buffer iterators. Timestamp is only used by channel
62 * iterator.
63 */
64 void (*record_get) (const struct lib_ring_buffer_config *config,
65 struct channel *chan, struct lib_ring_buffer *buf,
66 size_t offset, size_t *header_len,
67 size_t *payload_len, u64 *timestamp);
68 };
69
70 /*
71 * Ring buffer instance configuration.
72 *
73 * Declare as "static const" within the client object to ensure the inline fast
74 * paths can be optimized.
75 *
76 * alloc/sync pairs:
77 *
78 * RING_BUFFER_ALLOC_PER_CPU and RING_BUFFER_SYNC_PER_CPU :
79 * Per-cpu buffers with per-cpu synchronization. Tracing must be performed
80 * with preemption disabled (lib_ring_buffer_get_cpu() and
81 * lib_ring_buffer_put_cpu()).
82 *
83 * RING_BUFFER_ALLOC_PER_CPU and RING_BUFFER_SYNC_GLOBAL :
84 * Per-cpu buffer with global synchronization. Tracing can be performed with
85 * preemption enabled, statistically stays on the local buffers.
86 *
87 * RING_BUFFER_ALLOC_GLOBAL and RING_BUFFER_SYNC_PER_CPU :
88 * Should only be used for buffers belonging to a single thread or protected
89 * by mutual exclusion by the client. Note that periodical sub-buffer switch
90 * should be disabled in this kind of configuration.
91 *
92 * RING_BUFFER_ALLOC_GLOBAL and RING_BUFFER_SYNC_GLOBAL :
93 * Global shared buffer with global synchronization.
94 *
95 * wakeup:
96 *
97 * RING_BUFFER_WAKEUP_BY_TIMER uses per-cpu deferrable timers to poll the
98 * buffers and wake up readers if data is ready. Mainly useful for tracers which
99 * don't want to call into the wakeup code on the tracing path. Use in
100 * combination with "read_timer_interval" channel_create() argument.
101 *
102 * RING_BUFFER_WAKEUP_BY_WRITER directly wakes up readers when a subbuffer is
103 * ready to read. Lower latencies before the reader is woken up. Mainly suitable
104 * for drivers.
105 *
106 * RING_BUFFER_WAKEUP_NONE does not perform any wakeup whatsoever. The client
107 * has the responsibility to perform wakeups.
108 */
109 struct lib_ring_buffer_config {
110 enum {
111 RING_BUFFER_ALLOC_PER_CPU,
112 RING_BUFFER_ALLOC_GLOBAL,
113 } alloc;
114 enum {
115 RING_BUFFER_SYNC_PER_CPU, /* Wait-free */
116 RING_BUFFER_SYNC_GLOBAL, /* Lock-free */
117 } sync;
118 enum {
119 RING_BUFFER_OVERWRITE, /* Overwrite when buffer full */
120 RING_BUFFER_DISCARD, /* Discard when buffer full */
121 } mode;
122 enum {
123 RING_BUFFER_SPLICE,
124 RING_BUFFER_MMAP,
125 RING_BUFFER_READ, /* TODO */
126 RING_BUFFER_ITERATOR,
127 RING_BUFFER_NONE,
128 } output;
129 enum {
130 RING_BUFFER_PAGE,
131 RING_BUFFER_VMAP, /* TODO */
132 RING_BUFFER_STATIC, /* TODO */
133 } backend;
134 enum {
135 RING_BUFFER_NO_OOPS_CONSISTENCY,
136 RING_BUFFER_OOPS_CONSISTENCY,
137 } oops;
138 enum {
139 RING_BUFFER_IPI_BARRIER,
140 RING_BUFFER_NO_IPI_BARRIER,
141 } ipi;
142 enum {
143 RING_BUFFER_WAKEUP_BY_TIMER, /* wake up performed by timer */
144 RING_BUFFER_WAKEUP_BY_WRITER, /*
145 * writer wakes up reader,
146 * not lock-free
147 * (takes spinlock).
148 */
149 } wakeup;
150 /*
151 * tsc_bits: timestamp bits saved at each record.
152 * 0 and 64 disable the timestamp compression scheme.
153 */
154 unsigned int tsc_bits;
155 struct lib_ring_buffer_client_cb cb;
156 };
157
158 /*
159 * ring buffer context
160 *
161 * Context passed to lib_ring_buffer_reserve(), lib_ring_buffer_commit(),
162 * lib_ring_buffer_try_discard_reserve(), lib_ring_buffer_align_ctx() and
163 * lib_ring_buffer_write().
164 */
165 struct lib_ring_buffer_ctx {
166 /* input received by lib_ring_buffer_reserve(), saved here. */
167 struct channel *chan; /* channel */
168 void *priv; /* client private data */
169 size_t data_size; /* size of payload */
170 int largest_align; /*
171 * alignment of the largest element
172 * in the payload
173 */
174 int cpu; /* processor id */
175
176 /* output from lib_ring_buffer_reserve() */
177 struct lib_ring_buffer *buf; /*
178 * buffer corresponding to processor id
179 * for this channel
180 */
181 size_t slot_size; /* size of the reserved slot */
182 unsigned long buf_offset; /* offset following the record header */
183 unsigned long pre_offset; /*
184 * Initial offset position _before_
185 * the record is written. Positioned
186 * prior to record header alignment
187 * padding.
188 */
189 u64 tsc; /* time-stamp counter value */
190 unsigned int rflags; /* reservation flags */
191 };
192
193 /**
194 * lib_ring_buffer_ctx_init - initialize ring buffer context
195 * @ctx: ring buffer context to initialize
196 * @chan: channel
197 * @priv: client private data
198 * @data_size: size of record data payload
199 * @largest_align: largest alignment within data payload types
200 * @cpu: processor id
201 */
202 static inline
203 void lib_ring_buffer_ctx_init(struct lib_ring_buffer_ctx *ctx,
204 struct channel *chan, void *priv,
205 size_t data_size, int largest_align,
206 int cpu)
207 {
208 ctx->chan = chan;
209 ctx->priv = priv;
210 ctx->data_size = data_size;
211 ctx->largest_align = largest_align;
212 ctx->cpu = cpu;
213 }
214
215 /*
216 * Reservation flags.
217 *
218 * RING_BUFFER_RFLAG_FULL_TSC
219 *
220 * This flag is passed to record_header_size() and to the primitive used to
221 * write the record header. It indicates that the full 64-bit time value is
222 * needed in the record header. If this flag is not set, the record header needs
223 * only to contain "tsc_bits" bit of time value.
224 *
225 * Reservation flags can be added by the client, starting from
226 * "(RING_BUFFER_FLAGS_END << 0)". It can be used to pass information from
227 * record_header_size() to lib_ring_buffer_write_record_header().
228 */
229 #define RING_BUFFER_RFLAG_FULL_TSC (1U << 0)
230 #define RING_BUFFER_RFLAG_END (1U << 1)
231
232 /*
233 * We need to define RING_BUFFER_ALIGN_ATTR so it is known early at
234 * compile-time. We have to duplicate the "config->align" information and the
235 * definition here because config->align is used both in the slow and fast
236 * paths, but RING_BUFFER_ALIGN_ATTR is only available for the client code.
237 */
238 #ifdef RING_BUFFER_ALIGN
239
240 # define RING_BUFFER_ALIGN_ATTR /* Default arch alignment */
241
242 /*
243 * Calculate the offset needed to align the type.
244 * size_of_type must be non-zero.
245 */
246 static inline
247 unsigned int lib_ring_buffer_align(size_t align_drift, size_t size_of_type)
248 {
249 return offset_align(align_drift, size_of_type);
250 }
251
252 #else
253
254 # define RING_BUFFER_ALIGN_ATTR __attribute__((packed))
255
256 /*
257 * Calculate the offset needed to align the type.
258 * size_of_type must be non-zero.
259 */
260 static inline
261 unsigned int lib_ring_buffer_align(size_t align_drift, size_t size_of_type)
262 {
263 return 0;
264 }
265
266 #endif
267
268 /**
269 * lib_ring_buffer_align_ctx - Align context offset on "alignment"
270 * @ctx: ring buffer context.
271 */
272 static inline
273 void lib_ring_buffer_align_ctx(struct lib_ring_buffer_ctx *ctx,
274 size_t alignment)
275 {
276 ctx->buf_offset += lib_ring_buffer_align(ctx->buf_offset,
277 alignment);
278 }
279
280 /*
281 * lib_ring_buffer_check_config() returns 0 on success.
282 * Used internally to check for valid configurations at channel creation.
283 */
284 static inline
285 int lib_ring_buffer_check_config(const struct lib_ring_buffer_config *config,
286 unsigned int switch_timer_interval,
287 unsigned int read_timer_interval)
288 {
289 if (config->alloc == RING_BUFFER_ALLOC_GLOBAL
290 && config->sync == RING_BUFFER_SYNC_PER_CPU
291 && switch_timer_interval)
292 return -EINVAL;
293 return 0;
294 }
295
296 #include "../../wrapper/ringbuffer/vatomic.h"
297
298 #endif /* _LINUX_RING_BUFFER_CONFIG_H */
This page took 0.034891 seconds and 5 git commands to generate.