Cleanup: remove duplicate check for 0 num_subbuf and subbuf_size
[lttng-ust.git] / libringbuffer / ring_buffer_frontend.c
CommitLineData
852c2936
MD
1/*
2 * ring_buffer_frontend.c
3 *
4 * (C) Copyright 2005-2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
6 * Ring buffer wait-free buffer synchronization. Producer-consumer and flight
7 * recorder (overwrite) modes. See thesis:
8 *
9 * Desnoyers, Mathieu (2009), "Low-Impact Operating System Tracing", Ph.D.
10 * dissertation, Ecole Polytechnique de Montreal.
11 * http://www.lttng.org/pub/thesis/desnoyers-dissertation-2009-12.pdf
12 *
13 * - Algorithm presentation in Chapter 5:
14 * "Lockless Multi-Core High-Throughput Buffering".
15 * - Algorithm formal verification in Section 8.6:
16 * "Formal verification of LTTng"
17 *
18 * Author:
19 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
20 *
21 * Inspired from LTT and RelayFS:
22 * Karim Yaghmour <karim@opersys.com>
23 * Tom Zanussi <zanussi@us.ibm.com>
24 * Bob Wisniewski <bob@watson.ibm.com>
25 * And from K42 :
26 * Bob Wisniewski <bob@watson.ibm.com>
27 *
28 * Buffer reader semantic :
29 *
30 * - get_subbuf_size
31 * while buffer is not finalized and empty
32 * - get_subbuf
33 * - if return value != 0, continue
34 * - splice one subbuffer worth of data to a pipe
35 * - splice the data from pipe to disk/network
36 * - put_subbuf
37 *
38 * Dual LGPL v2.1/GPL v2 license.
39 */
40
5ad63a16 41#define _GNU_SOURCE
a6352fd4 42#include <sys/types.h>
431d5cf0
MD
43#include <sys/mman.h>
44#include <sys/stat.h>
45#include <fcntl.h>
14641deb 46#include <urcu/compiler.h>
a6352fd4 47#include <urcu/ref.h>
35897f8b 48#include <helper.h>
14641deb 49
a6352fd4 50#include "smp.h"
4318ae1b 51#include <lttng/ringbuffer-config.h>
2fed87ae 52#include "vatomic.h"
4931a13e
MD
53#include "backend.h"
54#include "frontend.h"
a6352fd4 55#include "shm.h"
f645cfa7 56#include "tlsfixup.h"
852c2936 57
431d5cf0
MD
58#ifndef max
59#define max(a, b) ((a) > (b) ? (a) : (b))
60#endif
61
64493e4f
MD
62/* Print DBG() messages about events lost only every 1048576 hits */
63#define DBG_PRINT_NR_LOST (1UL << 20)
64
2432c3c9
MD
65/*
66 * Use POSIX SHM: shm_open(3) and shm_unlink(3).
67 * close(2) to close the fd returned by shm_open.
68 * shm_unlink releases the shared memory object name.
69 * ftruncate(2) sets the size of the memory object.
70 * mmap/munmap maps the shared memory obj to a virtual address in the
71 * calling proceess (should be done both in libust and consumer).
72 * See shm_overview(7) for details.
73 * Pass file descriptor returned by shm_open(3) to ltt-sessiond through
74 * a UNIX socket.
75 *
76 * Since we don't need to access the object using its name, we can
77 * immediately shm_unlink(3) it, and only keep the handle with its file
78 * descriptor.
79 */
80
852c2936
MD
81/*
82 * Internal structure representing offsets to use at a sub-buffer switch.
83 */
84struct switch_offsets {
85 unsigned long begin, end, old;
86 size_t pre_header_padding, size;
87 unsigned int switch_new_start:1, switch_new_end:1, switch_old_start:1,
88 switch_old_end:1;
89};
90
a6352fd4 91__thread unsigned int lib_ring_buffer_nesting;
852c2936 92
45e9e699
MD
93/*
94 * TODO: this is unused. Errors are saved within the ring buffer.
95 * Eventually, allow consumerd to print these errors.
96 */
852c2936
MD
97static
98void lib_ring_buffer_print_errors(struct channel *chan,
4cfec15c 99 struct lttng_ust_lib_ring_buffer *buf, int cpu,
b68d3dc0
MD
100 struct lttng_ust_shm_handle *handle)
101 __attribute__((unused));
852c2936 102
852c2936
MD
103/**
104 * lib_ring_buffer_reset - Reset ring buffer to initial values.
105 * @buf: Ring buffer.
106 *
107 * Effectively empty the ring buffer. Should be called when the buffer is not
108 * used for writing. The ring buffer can be opened for reading, but the reader
109 * should not be using the iterator concurrently with reset. The previous
110 * current iterator record is reset.
111 */
4cfec15c 112void lib_ring_buffer_reset(struct lttng_ust_lib_ring_buffer *buf,
38fae1d3 113 struct lttng_ust_shm_handle *handle)
852c2936 114{
1d498196 115 struct channel *chan = shmp(handle, buf->backend.chan);
4cfec15c 116 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
117 unsigned int i;
118
119 /*
120 * Reset iterator first. It will put the subbuffer if it currently holds
121 * it.
122 */
852c2936
MD
123 v_set(config, &buf->offset, 0);
124 for (i = 0; i < chan->backend.num_subbuf; i++) {
4746ae29
MD
125 v_set(config, &shmp_index(handle, buf->commit_hot, i)->cc, 0);
126 v_set(config, &shmp_index(handle, buf->commit_hot, i)->seq, 0);
127 v_set(config, &shmp_index(handle, buf->commit_cold, i)->cc_sb, 0);
852c2936 128 }
a6352fd4
MD
129 uatomic_set(&buf->consumed, 0);
130 uatomic_set(&buf->record_disabled, 0);
852c2936 131 v_set(config, &buf->last_tsc, 0);
1d498196 132 lib_ring_buffer_backend_reset(&buf->backend, handle);
852c2936
MD
133 /* Don't reset number of active readers */
134 v_set(config, &buf->records_lost_full, 0);
135 v_set(config, &buf->records_lost_wrap, 0);
136 v_set(config, &buf->records_lost_big, 0);
137 v_set(config, &buf->records_count, 0);
138 v_set(config, &buf->records_overrun, 0);
139 buf->finalized = 0;
140}
852c2936
MD
141
142/**
143 * channel_reset - Reset channel to initial values.
144 * @chan: Channel.
145 *
146 * Effectively empty the channel. Should be called when the channel is not used
147 * for writing. The channel can be opened for reading, but the reader should not
148 * be using the iterator concurrently with reset. The previous current iterator
149 * record is reset.
150 */
151void channel_reset(struct channel *chan)
152{
153 /*
154 * Reset iterators first. Will put the subbuffer if held for reading.
155 */
a6352fd4 156 uatomic_set(&chan->record_disabled, 0);
852c2936
MD
157 /* Don't reset commit_count_mask, still valid */
158 channel_backend_reset(&chan->backend);
159 /* Don't reset switch/read timer interval */
160 /* Don't reset notifiers and notifier enable bits */
161 /* Don't reset reader reference count */
162}
852c2936
MD
163
164/*
165 * Must be called under cpu hotplug protection.
166 */
4cfec15c 167int lib_ring_buffer_create(struct lttng_ust_lib_ring_buffer *buf,
a6352fd4 168 struct channel_backend *chanb, int cpu,
38fae1d3 169 struct lttng_ust_shm_handle *handle,
1d498196 170 struct shm_object *shmobj)
852c2936 171{
4cfec15c 172 const struct lttng_ust_lib_ring_buffer_config *config = &chanb->config;
14641deb 173 struct channel *chan = caa_container_of(chanb, struct channel, backend);
a3f61e7f 174 void *priv = channel_get_private(chan);
852c2936 175 size_t subbuf_header_size;
2fed87ae 176 uint64_t tsc;
852c2936
MD
177 int ret;
178
179 /* Test for cpu hotplug */
180 if (buf->backend.allocated)
181 return 0;
182
a6352fd4 183 ret = lib_ring_buffer_backend_create(&buf->backend, &chan->backend,
1d498196 184 cpu, handle, shmobj);
852c2936
MD
185 if (ret)
186 return ret;
187
1d498196
MD
188 align_shm(shmobj, __alignof__(struct commit_counters_hot));
189 set_shmp(buf->commit_hot,
190 zalloc_shm(shmobj,
191 sizeof(struct commit_counters_hot) * chan->backend.num_subbuf));
192 if (!shmp(handle, buf->commit_hot)) {
852c2936
MD
193 ret = -ENOMEM;
194 goto free_chanbuf;
195 }
196
1d498196
MD
197 align_shm(shmobj, __alignof__(struct commit_counters_cold));
198 set_shmp(buf->commit_cold,
199 zalloc_shm(shmobj,
200 sizeof(struct commit_counters_cold) * chan->backend.num_subbuf));
201 if (!shmp(handle, buf->commit_cold)) {
852c2936
MD
202 ret = -ENOMEM;
203 goto free_commit;
204 }
205
852c2936
MD
206 /*
207 * Write the subbuffer header for first subbuffer so we know the total
208 * duration of data gathering.
209 */
210 subbuf_header_size = config->cb.subbuffer_header_size();
211 v_set(config, &buf->offset, subbuf_header_size);
4746ae29 212 subbuffer_id_clear_noref(config, &shmp_index(handle, buf->backend.buf_wsb, 0)->id);
1d498196
MD
213 tsc = config->cb.ring_buffer_clock_read(shmp(handle, buf->backend.chan));
214 config->cb.buffer_begin(buf, tsc, 0, handle);
4746ae29 215 v_add(config, subbuf_header_size, &shmp_index(handle, buf->commit_hot, 0)->cc);
852c2936
MD
216
217 if (config->cb.buffer_create) {
1d498196 218 ret = config->cb.buffer_create(buf, priv, cpu, chanb->name, handle);
852c2936
MD
219 if (ret)
220 goto free_init;
221 }
852c2936 222 buf->backend.allocated = 1;
852c2936
MD
223 return 0;
224
225 /* Error handling */
226free_init:
a6352fd4 227 /* commit_cold will be freed by shm teardown */
852c2936 228free_commit:
a6352fd4 229 /* commit_hot will be freed by shm teardown */
852c2936 230free_chanbuf:
852c2936
MD
231 return ret;
232}
233
1d498196 234#if 0
852c2936
MD
235static void switch_buffer_timer(unsigned long data)
236{
4cfec15c 237 struct lttng_ust_lib_ring_buffer *buf = (struct lttng_ust_lib_ring_buffer *)data;
1d498196 238 struct channel *chan = shmp(handle, buf->backend.chan);
4cfec15c 239 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
240
241 /*
242 * Only flush buffers periodically if readers are active.
243 */
824f40b8 244 if (uatomic_read(&buf->active_readers) || uatomic_read(&buf->active_shadow_readers))
1d498196 245 lib_ring_buffer_switch_slow(buf, SWITCH_ACTIVE, handle);
852c2936 246
a6352fd4
MD
247 //TODO timers
248 //if (config->alloc == RING_BUFFER_ALLOC_PER_CPU)
249 // mod_timer_pinned(&buf->switch_timer,
250 // jiffies + chan->switch_timer_interval);
251 //else
252 // mod_timer(&buf->switch_timer,
253 // jiffies + chan->switch_timer_interval);
852c2936 254}
1d498196 255#endif //0
852c2936 256
4cfec15c 257static void lib_ring_buffer_start_switch_timer(struct lttng_ust_lib_ring_buffer *buf,
38fae1d3 258 struct lttng_ust_shm_handle *handle)
852c2936 259{
1d498196 260 struct channel *chan = shmp(handle, buf->backend.chan);
4cfec15c 261 //const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
262
263 if (!chan->switch_timer_interval || buf->switch_timer_enabled)
264 return;
a6352fd4
MD
265 //TODO
266 //init_timer(&buf->switch_timer);
267 //buf->switch_timer.function = switch_buffer_timer;
268 //buf->switch_timer.expires = jiffies + chan->switch_timer_interval;
269 //buf->switch_timer.data = (unsigned long)buf;
270 //if (config->alloc == RING_BUFFER_ALLOC_PER_CPU)
271 // add_timer_on(&buf->switch_timer, buf->backend.cpu);
272 //else
273 // add_timer(&buf->switch_timer);
852c2936
MD
274 buf->switch_timer_enabled = 1;
275}
276
4cfec15c 277static void lib_ring_buffer_stop_switch_timer(struct lttng_ust_lib_ring_buffer *buf,
38fae1d3 278 struct lttng_ust_shm_handle *handle)
852c2936 279{
1d498196 280 struct channel *chan = shmp(handle, buf->backend.chan);
852c2936
MD
281
282 if (!chan->switch_timer_interval || !buf->switch_timer_enabled)
283 return;
284
a6352fd4
MD
285 //TODO
286 //del_timer_sync(&buf->switch_timer);
852c2936
MD
287 buf->switch_timer_enabled = 0;
288}
289
1d498196 290#if 0
852c2936
MD
291/*
292 * Polling timer to check the channels for data.
293 */
294static void read_buffer_timer(unsigned long data)
295{
4cfec15c 296 struct lttng_ust_lib_ring_buffer *buf = (struct lttng_ust_lib_ring_buffer *)data;
1d498196 297 struct channel *chan = shmp(handle, buf->backend.chan);
4cfec15c 298 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
299
300 CHAN_WARN_ON(chan, !buf->backend.allocated);
301
824f40b8 302 if (uatomic_read(&buf->active_readers) || uatomic_read(&buf->active_shadow_readers))
852c2936 303 && lib_ring_buffer_poll_deliver(config, buf, chan)) {
a6352fd4
MD
304 //TODO
305 //wake_up_interruptible(&buf->read_wait);
306 //wake_up_interruptible(&chan->read_wait);
852c2936
MD
307 }
308
a6352fd4
MD
309 //TODO
310 //if (config->alloc == RING_BUFFER_ALLOC_PER_CPU)
311 // mod_timer_pinned(&buf->read_timer,
312 // jiffies + chan->read_timer_interval);
313 //else
314 // mod_timer(&buf->read_timer,
315 // jiffies + chan->read_timer_interval);
852c2936 316}
1d498196 317#endif //0
852c2936 318
4cfec15c 319static void lib_ring_buffer_start_read_timer(struct lttng_ust_lib_ring_buffer *buf,
38fae1d3 320 struct lttng_ust_shm_handle *handle)
852c2936 321{
1d498196 322 struct channel *chan = shmp(handle, buf->backend.chan);
4cfec15c 323 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
324
325 if (config->wakeup != RING_BUFFER_WAKEUP_BY_TIMER
326 || !chan->read_timer_interval
327 || buf->read_timer_enabled)
328 return;
329
a6352fd4
MD
330 //TODO
331 //init_timer(&buf->read_timer);
332 //buf->read_timer.function = read_buffer_timer;
333 //buf->read_timer.expires = jiffies + chan->read_timer_interval;
334 //buf->read_timer.data = (unsigned long)buf;
852c2936 335
a6352fd4
MD
336 //if (config->alloc == RING_BUFFER_ALLOC_PER_CPU)
337 // add_timer_on(&buf->read_timer, buf->backend.cpu);
338 //else
339 // add_timer(&buf->read_timer);
852c2936
MD
340 buf->read_timer_enabled = 1;
341}
342
4cfec15c 343static void lib_ring_buffer_stop_read_timer(struct lttng_ust_lib_ring_buffer *buf,
38fae1d3 344 struct lttng_ust_shm_handle *handle)
852c2936 345{
1d498196 346 struct channel *chan = shmp(handle, buf->backend.chan);
4cfec15c 347 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
348
349 if (config->wakeup != RING_BUFFER_WAKEUP_BY_TIMER
350 || !chan->read_timer_interval
351 || !buf->read_timer_enabled)
352 return;
353
a6352fd4
MD
354 //TODO
355 //del_timer_sync(&buf->read_timer);
852c2936
MD
356 /*
357 * do one more check to catch data that has been written in the last
358 * timer period.
359 */
1d498196 360 if (lib_ring_buffer_poll_deliver(config, buf, chan, handle)) {
a6352fd4
MD
361 //TODO
362 //wake_up_interruptible(&buf->read_wait);
363 //wake_up_interruptible(&chan->read_wait);
852c2936
MD
364 }
365 buf->read_timer_enabled = 0;
366}
367
1d498196 368static void channel_unregister_notifiers(struct channel *chan,
38fae1d3 369 struct lttng_ust_shm_handle *handle)
852c2936 370{
4cfec15c 371 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
372 int cpu;
373
852c2936 374 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU) {
852c2936 375 for_each_possible_cpu(cpu) {
4cfec15c 376 struct lttng_ust_lib_ring_buffer *buf = shmp(handle, chan->backend.buf[cpu].shmp);
a6352fd4 377
1d498196
MD
378 lib_ring_buffer_stop_switch_timer(buf, handle);
379 lib_ring_buffer_stop_read_timer(buf, handle);
852c2936 380 }
852c2936 381 } else {
4cfec15c 382 struct lttng_ust_lib_ring_buffer *buf = shmp(handle, chan->backend.buf[0].shmp);
852c2936 383
1d498196
MD
384 lib_ring_buffer_stop_switch_timer(buf, handle);
385 lib_ring_buffer_stop_read_timer(buf, handle);
852c2936 386 }
8d8a24c8 387 //channel_backend_unregister_notifiers(&chan->backend);
852c2936
MD
388}
389
38fae1d3 390static void channel_free(struct channel *chan, struct lttng_ust_shm_handle *handle,
824f40b8 391 int shadow)
852c2936 392{
824f40b8
MD
393 if (!shadow)
394 channel_backend_free(&chan->backend, handle);
431d5cf0 395 /* chan is freed by shm teardown */
1d498196
MD
396 shm_object_table_destroy(handle->table);
397 free(handle);
852c2936
MD
398}
399
400/**
401 * channel_create - Create channel.
402 * @config: ring buffer instance configuration
403 * @name: name of the channel
a3f61e7f
MD
404 * @priv_data: ring buffer client private data area pointer (output)
405 * @priv_data_size: length, in bytes, of the private data area.
d028eddb 406 * @priv_data_init: initialization data for private data.
852c2936
MD
407 * @buf_addr: pointer the the beginning of the preallocated buffer contiguous
408 * address mapping. It is used only by RING_BUFFER_STATIC
409 * configuration. It can be set to NULL for other backends.
410 * @subbuf_size: subbuffer size
411 * @num_subbuf: number of subbuffers
412 * @switch_timer_interval: Time interval (in us) to fill sub-buffers with
413 * padding to let readers get those sub-buffers.
414 * Used for live streaming.
415 * @read_timer_interval: Time interval (in us) to wake up pending readers.
416 *
417 * Holds cpu hotplug.
418 * Returns NULL on failure.
419 */
4cfec15c 420struct lttng_ust_shm_handle *channel_create(const struct lttng_ust_lib_ring_buffer_config *config,
a3f61e7f
MD
421 const char *name,
422 void **priv_data,
423 size_t priv_data_align,
424 size_t priv_data_size,
d028eddb 425 void *priv_data_init,
a3f61e7f 426 void *buf_addr, size_t subbuf_size,
852c2936 427 size_t num_subbuf, unsigned int switch_timer_interval,
193183fb 428 unsigned int read_timer_interval,
ef9ff354 429 int **shm_fd, int **wait_fd, uint64_t **memory_map_size)
852c2936 430{
1d498196 431 int ret, cpu;
a3f61e7f 432 size_t shmsize, chansize;
852c2936 433 struct channel *chan;
38fae1d3 434 struct lttng_ust_shm_handle *handle;
1d498196 435 struct shm_object *shmobj;
193183fb 436 struct shm_ref *ref;
852c2936
MD
437
438 if (lib_ring_buffer_check_config(config, switch_timer_interval,
439 read_timer_interval))
440 return NULL;
441
38fae1d3 442 handle = zmalloc(sizeof(struct lttng_ust_shm_handle));
431d5cf0
MD
443 if (!handle)
444 return NULL;
445
1d498196
MD
446 /* Allocate table for channel + per-cpu buffers */
447 handle->table = shm_object_table_create(1 + num_possible_cpus());
448 if (!handle->table)
449 goto error_table_alloc;
852c2936 450
1d498196
MD
451 /* Calculate the shm allocation layout */
452 shmsize = sizeof(struct channel);
c1fca457 453 shmsize += offset_align(shmsize, __alignof__(struct lttng_ust_lib_ring_buffer_shmp));
1d498196 454 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU)
4cfec15c 455 shmsize += sizeof(struct lttng_ust_lib_ring_buffer_shmp) * num_possible_cpus();
1d498196 456 else
4cfec15c 457 shmsize += sizeof(struct lttng_ust_lib_ring_buffer_shmp);
a3f61e7f
MD
458 chansize = shmsize;
459 shmsize += offset_align(shmsize, priv_data_align);
460 shmsize += priv_data_size;
a6352fd4 461
1d498196 462 shmobj = shm_object_table_append(handle->table, shmsize);
b5a14697
MD
463 if (!shmobj)
464 goto error_append;
57773204 465 /* struct channel is at object 0, offset 0 (hardcoded) */
a3f61e7f 466 set_shmp(handle->chan, zalloc_shm(shmobj, chansize));
57773204
MD
467 assert(handle->chan._ref.index == 0);
468 assert(handle->chan._ref.offset == 0);
1d498196 469 chan = shmp(handle, handle->chan);
a6352fd4 470 if (!chan)
1d498196 471 goto error_append;
a6352fd4 472
a3f61e7f
MD
473 /* space for private data */
474 if (priv_data_size) {
475 DECLARE_SHMP(void, priv_data_alloc);
476
477 align_shm(shmobj, priv_data_align);
478 chan->priv_data_offset = shmobj->allocated_len;
479 set_shmp(priv_data_alloc, zalloc_shm(shmobj, priv_data_size));
480 if (!shmp(handle, priv_data_alloc))
481 goto error_append;
482 *priv_data = channel_get_private(chan);
d028eddb 483 memcpy(*priv_data, priv_data_init, priv_data_size);
a3f61e7f
MD
484 } else {
485 chan->priv_data_offset = -1;
486 *priv_data = NULL;
487 }
488
489 ret = channel_backend_init(&chan->backend, name, config,
1d498196 490 subbuf_size, num_subbuf, handle);
852c2936 491 if (ret)
1d498196 492 goto error_backend_init;
852c2936
MD
493
494 chan->commit_count_mask = (~0UL >> chan->backend.num_subbuf_order);
a6352fd4
MD
495 //TODO
496 //chan->switch_timer_interval = usecs_to_jiffies(switch_timer_interval);
497 //chan->read_timer_interval = usecs_to_jiffies(read_timer_interval);
a6352fd4
MD
498 //TODO
499 //init_waitqueue_head(&chan->read_wait);
500 //init_waitqueue_head(&chan->hp_wait);
852c2936
MD
501
502 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU) {
852c2936
MD
503 /*
504 * In case of non-hotplug cpu, if the ring-buffer is allocated
505 * in early initcall, it will not be notified of secondary cpus.
506 * In that off case, we need to allocate for all possible cpus.
507 */
852c2936 508 for_each_possible_cpu(cpu) {
4cfec15c 509 struct lttng_ust_lib_ring_buffer *buf = shmp(handle, chan->backend.buf[cpu].shmp);
1d498196
MD
510 lib_ring_buffer_start_switch_timer(buf, handle);
511 lib_ring_buffer_start_read_timer(buf, handle);
852c2936 512 }
852c2936 513 } else {
4cfec15c 514 struct lttng_ust_lib_ring_buffer *buf = shmp(handle, chan->backend.buf[0].shmp);
852c2936 515
1d498196
MD
516 lib_ring_buffer_start_switch_timer(buf, handle);
517 lib_ring_buffer_start_read_timer(buf, handle);
852c2936 518 }
193183fb
MD
519 ref = &handle->chan._ref;
520 shm_get_object_data(handle, ref, shm_fd, wait_fd, memory_map_size);
431d5cf0 521 return handle;
852c2936 522
1d498196
MD
523error_backend_init:
524error_append:
525 shm_object_table_destroy(handle->table);
526error_table_alloc:
431d5cf0 527 free(handle);
852c2936
MD
528 return NULL;
529}
852c2936 530
38fae1d3 531struct lttng_ust_shm_handle *channel_handle_create(int shm_fd, int wait_fd,
193183fb
MD
532 uint64_t memory_map_size)
533{
38fae1d3 534 struct lttng_ust_shm_handle *handle;
193183fb
MD
535 struct shm_object *object;
536
38fae1d3 537 handle = zmalloc(sizeof(struct lttng_ust_shm_handle));
193183fb
MD
538 if (!handle)
539 return NULL;
540
541 /* Allocate table for channel + per-cpu buffers */
542 handle->table = shm_object_table_create(1 + num_possible_cpus());
543 if (!handle->table)
544 goto error_table_alloc;
545 /* Add channel object */
546 object = shm_object_table_append_shadow(handle->table,
547 shm_fd, wait_fd, memory_map_size);
548 if (!object)
549 goto error_table_object;
57773204
MD
550 /* struct channel is at object 0, offset 0 (hardcoded) */
551 handle->chan._ref.index = 0;
552 handle->chan._ref.offset = 0;
193183fb
MD
553 return handle;
554
555error_table_object:
556 shm_object_table_destroy(handle->table);
557error_table_alloc:
558 free(handle);
559 return NULL;
560}
561
38fae1d3 562int channel_handle_add_stream(struct lttng_ust_shm_handle *handle,
193183fb
MD
563 int shm_fd, int wait_fd, uint64_t memory_map_size)
564{
565 struct shm_object *object;
566
567 /* Add stream object */
568 object = shm_object_table_append_shadow(handle->table,
569 shm_fd, wait_fd, memory_map_size);
570 if (!object)
571 return -1;
572 return 0;
573}
574
852c2936 575static
38fae1d3 576void channel_release(struct channel *chan, struct lttng_ust_shm_handle *handle,
824f40b8 577 int shadow)
852c2936 578{
824f40b8 579 channel_free(chan, handle, shadow);
852c2936
MD
580}
581
582/**
583 * channel_destroy - Finalize, wait for q.s. and destroy channel.
584 * @chan: channel to destroy
585 *
586 * Holds cpu hotplug.
431d5cf0
MD
587 * Call "destroy" callback, finalize channels, decrement the channel
588 * reference count. Note that when readers have completed data
589 * consumption of finalized channels, get_subbuf() will return -ENODATA.
a3f61e7f 590 * They should release their handle at that point.
852c2936 591 */
a3f61e7f 592void channel_destroy(struct channel *chan, struct lttng_ust_shm_handle *handle,
824f40b8 593 int shadow)
852c2936 594{
824f40b8
MD
595 if (shadow) {
596 channel_release(chan, handle, shadow);
a3f61e7f 597 return;
824f40b8
MD
598 }
599
1d498196 600 channel_unregister_notifiers(chan, handle);
852c2936 601
45e9e699
MD
602 /*
603 * Note: the consumer takes care of finalizing and switching the
604 * buffers.
605 */
852c2936 606
431d5cf0
MD
607 /*
608 * sessiond/consumer are keeping a reference on the shm file
609 * descriptor directly. No need to refcount.
610 */
824f40b8 611 channel_release(chan, handle, shadow);
a3f61e7f 612 return;
852c2936 613}
852c2936 614
4cfec15c
MD
615struct lttng_ust_lib_ring_buffer *channel_get_ring_buffer(
616 const struct lttng_ust_lib_ring_buffer_config *config,
1d498196 617 struct channel *chan, int cpu,
38fae1d3 618 struct lttng_ust_shm_handle *handle,
ef9ff354
MD
619 int **shm_fd, int **wait_fd,
620 uint64_t **memory_map_size)
852c2936 621{
381c0f1e
MD
622 struct shm_ref *ref;
623
624 if (config->alloc == RING_BUFFER_ALLOC_GLOBAL) {
625 ref = &chan->backend.buf[0].shmp._ref;
626 shm_get_object_data(handle, ref, shm_fd, wait_fd,
627 memory_map_size);
1d498196 628 return shmp(handle, chan->backend.buf[0].shmp);
381c0f1e 629 } else {
e095d803
MD
630 if (cpu >= num_possible_cpus())
631 return NULL;
381c0f1e
MD
632 ref = &chan->backend.buf[cpu].shmp._ref;
633 shm_get_object_data(handle, ref, shm_fd, wait_fd,
634 memory_map_size);
1d498196 635 return shmp(handle, chan->backend.buf[cpu].shmp);
381c0f1e 636 }
852c2936 637}
852c2936 638
4cfec15c 639int lib_ring_buffer_open_read(struct lttng_ust_lib_ring_buffer *buf,
38fae1d3 640 struct lttng_ust_shm_handle *handle,
824f40b8 641 int shadow)
852c2936 642{
824f40b8
MD
643 if (shadow) {
644 if (uatomic_cmpxchg(&buf->active_shadow_readers, 0, 1) != 0)
645 return -EBUSY;
646 cmm_smp_mb();
647 return 0;
648 }
a6352fd4 649 if (uatomic_cmpxchg(&buf->active_readers, 0, 1) != 0)
852c2936 650 return -EBUSY;
a6352fd4 651 cmm_smp_mb();
852c2936
MD
652 return 0;
653}
852c2936 654
4cfec15c 655void lib_ring_buffer_release_read(struct lttng_ust_lib_ring_buffer *buf,
38fae1d3 656 struct lttng_ust_shm_handle *handle,
824f40b8 657 int shadow)
852c2936 658{
1d498196 659 struct channel *chan = shmp(handle, buf->backend.chan);
852c2936 660
824f40b8
MD
661 if (shadow) {
662 CHAN_WARN_ON(chan, uatomic_read(&buf->active_shadow_readers) != 1);
663 cmm_smp_mb();
664 uatomic_dec(&buf->active_shadow_readers);
665 return;
666 }
a6352fd4
MD
667 CHAN_WARN_ON(chan, uatomic_read(&buf->active_readers) != 1);
668 cmm_smp_mb();
669 uatomic_dec(&buf->active_readers);
852c2936
MD
670}
671
672/**
673 * lib_ring_buffer_snapshot - save subbuffer position snapshot (for read)
674 * @buf: ring buffer
675 * @consumed: consumed count indicating the position where to read
676 * @produced: produced count, indicates position when to stop reading
677 *
678 * Returns -ENODATA if buffer is finalized, -EAGAIN if there is currently no
679 * data to read at consumed position, or 0 if the get operation succeeds.
852c2936
MD
680 */
681
4cfec15c 682int lib_ring_buffer_snapshot(struct lttng_ust_lib_ring_buffer *buf,
1d498196 683 unsigned long *consumed, unsigned long *produced,
38fae1d3 684 struct lttng_ust_shm_handle *handle)
852c2936 685{
1d498196 686 struct channel *chan = shmp(handle, buf->backend.chan);
4cfec15c 687 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
688 unsigned long consumed_cur, write_offset;
689 int finalized;
690
14641deb 691 finalized = CMM_ACCESS_ONCE(buf->finalized);
852c2936
MD
692 /*
693 * Read finalized before counters.
694 */
a6352fd4
MD
695 cmm_smp_rmb();
696 consumed_cur = uatomic_read(&buf->consumed);
852c2936
MD
697 /*
698 * No need to issue a memory barrier between consumed count read and
699 * write offset read, because consumed count can only change
700 * concurrently in overwrite mode, and we keep a sequence counter
701 * identifier derived from the write offset to check we are getting
702 * the same sub-buffer we are expecting (the sub-buffers are atomically
703 * "tagged" upon writes, tags are checked upon read).
704 */
705 write_offset = v_read(config, &buf->offset);
706
707 /*
708 * Check that we are not about to read the same subbuffer in
709 * which the writer head is.
710 */
711 if (subbuf_trunc(write_offset, chan) - subbuf_trunc(consumed_cur, chan)
712 == 0)
713 goto nodata;
714
715 *consumed = consumed_cur;
716 *produced = subbuf_trunc(write_offset, chan);
717
718 return 0;
719
720nodata:
721 /*
722 * The memory barriers __wait_event()/wake_up_interruptible() take care
723 * of "raw_spin_is_locked" memory ordering.
724 */
725 if (finalized)
726 return -ENODATA;
852c2936
MD
727 else
728 return -EAGAIN;
729}
852c2936
MD
730
731/**
732 * lib_ring_buffer_put_snapshot - move consumed counter forward
733 * @buf: ring buffer
734 * @consumed_new: new consumed count value
735 */
4cfec15c 736void lib_ring_buffer_move_consumer(struct lttng_ust_lib_ring_buffer *buf,
1d498196 737 unsigned long consumed_new,
38fae1d3 738 struct lttng_ust_shm_handle *handle)
852c2936 739{
4cfec15c 740 struct lttng_ust_lib_ring_buffer_backend *bufb = &buf->backend;
1d498196 741 struct channel *chan = shmp(handle, bufb->chan);
852c2936
MD
742 unsigned long consumed;
743
824f40b8
MD
744 CHAN_WARN_ON(chan, uatomic_read(&buf->active_readers) != 1
745 && uatomic_read(&buf->active_shadow_readers) != 1);
852c2936
MD
746
747 /*
748 * Only push the consumed value forward.
749 * If the consumed cmpxchg fails, this is because we have been pushed by
750 * the writer in flight recorder mode.
751 */
a6352fd4 752 consumed = uatomic_read(&buf->consumed);
852c2936 753 while ((long) consumed - (long) consumed_new < 0)
a6352fd4
MD
754 consumed = uatomic_cmpxchg(&buf->consumed, consumed,
755 consumed_new);
852c2936 756}
852c2936
MD
757
758/**
759 * lib_ring_buffer_get_subbuf - get exclusive access to subbuffer for reading
760 * @buf: ring buffer
761 * @consumed: consumed count indicating the position where to read
762 *
763 * Returns -ENODATA if buffer is finalized, -EAGAIN if there is currently no
764 * data to read at consumed position, or 0 if the get operation succeeds.
852c2936 765 */
4cfec15c 766int lib_ring_buffer_get_subbuf(struct lttng_ust_lib_ring_buffer *buf,
1d498196 767 unsigned long consumed,
38fae1d3 768 struct lttng_ust_shm_handle *handle)
852c2936 769{
1d498196 770 struct channel *chan = shmp(handle, buf->backend.chan);
4cfec15c 771 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
772 unsigned long consumed_cur, consumed_idx, commit_count, write_offset;
773 int ret;
774 int finalized;
775
776retry:
14641deb 777 finalized = CMM_ACCESS_ONCE(buf->finalized);
852c2936
MD
778 /*
779 * Read finalized before counters.
780 */
a6352fd4
MD
781 cmm_smp_rmb();
782 consumed_cur = uatomic_read(&buf->consumed);
852c2936 783 consumed_idx = subbuf_index(consumed, chan);
4746ae29 784 commit_count = v_read(config, &shmp_index(handle, buf->commit_cold, consumed_idx)->cc_sb);
852c2936
MD
785 /*
786 * Make sure we read the commit count before reading the buffer
787 * data and the write offset. Correct consumed offset ordering
788 * wrt commit count is insured by the use of cmpxchg to update
789 * the consumed offset.
852c2936 790 */
a6352fd4
MD
791 /*
792 * Local rmb to match the remote wmb to read the commit count
793 * before the buffer data and the write offset.
794 */
795 cmm_smp_rmb();
852c2936
MD
796
797 write_offset = v_read(config, &buf->offset);
798
799 /*
800 * Check that the buffer we are getting is after or at consumed_cur
801 * position.
802 */
803 if ((long) subbuf_trunc(consumed, chan)
804 - (long) subbuf_trunc(consumed_cur, chan) < 0)
805 goto nodata;
806
807 /*
808 * Check that the subbuffer we are trying to consume has been
809 * already fully committed.
810 */
811 if (((commit_count - chan->backend.subbuf_size)
812 & chan->commit_count_mask)
813 - (buf_trunc(consumed_cur, chan)
814 >> chan->backend.num_subbuf_order)
815 != 0)
816 goto nodata;
817
818 /*
819 * Check that we are not about to read the same subbuffer in
820 * which the writer head is.
821 */
822 if (subbuf_trunc(write_offset, chan) - subbuf_trunc(consumed_cur, chan)
823 == 0)
824 goto nodata;
825
826 /*
827 * Failure to get the subbuffer causes a busy-loop retry without going
828 * to a wait queue. These are caused by short-lived race windows where
829 * the writer is getting access to a subbuffer we were trying to get
830 * access to. Also checks that the "consumed" buffer count we are
831 * looking for matches the one contained in the subbuffer id.
832 */
833 ret = update_read_sb_index(config, &buf->backend, &chan->backend,
1d498196
MD
834 consumed_idx, buf_trunc_val(consumed, chan),
835 handle);
852c2936
MD
836 if (ret)
837 goto retry;
838 subbuffer_id_clear_noref(config, &buf->backend.buf_rsb.id);
839
840 buf->get_subbuf_consumed = consumed;
841 buf->get_subbuf = 1;
842
843 return 0;
844
845nodata:
846 /*
847 * The memory barriers __wait_event()/wake_up_interruptible() take care
848 * of "raw_spin_is_locked" memory ordering.
849 */
850 if (finalized)
851 return -ENODATA;
852c2936
MD
852 else
853 return -EAGAIN;
854}
852c2936
MD
855
856/**
857 * lib_ring_buffer_put_subbuf - release exclusive subbuffer access
858 * @buf: ring buffer
859 */
4cfec15c 860void lib_ring_buffer_put_subbuf(struct lttng_ust_lib_ring_buffer *buf,
38fae1d3 861 struct lttng_ust_shm_handle *handle)
852c2936 862{
4cfec15c 863 struct lttng_ust_lib_ring_buffer_backend *bufb = &buf->backend;
1d498196 864 struct channel *chan = shmp(handle, bufb->chan);
4cfec15c 865 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
866 unsigned long read_sb_bindex, consumed_idx, consumed;
867
824f40b8
MD
868 CHAN_WARN_ON(chan, uatomic_read(&buf->active_readers) != 1
869 && uatomic_read(&buf->active_shadow_readers) != 1);
852c2936
MD
870
871 if (!buf->get_subbuf) {
872 /*
873 * Reader puts a subbuffer it did not get.
874 */
875 CHAN_WARN_ON(chan, 1);
876 return;
877 }
878 consumed = buf->get_subbuf_consumed;
879 buf->get_subbuf = 0;
880
881 /*
882 * Clear the records_unread counter. (overruns counter)
883 * Can still be non-zero if a file reader simply grabbed the data
884 * without using iterators.
885 * Can be below zero if an iterator is used on a snapshot more than
886 * once.
887 */
888 read_sb_bindex = subbuffer_id_get_index(config, bufb->buf_rsb.id);
889 v_add(config, v_read(config,
4746ae29 890 &shmp(handle, shmp_index(handle, bufb->array, read_sb_bindex)->shmp)->records_unread),
852c2936 891 &bufb->records_read);
4746ae29 892 v_set(config, &shmp(handle, shmp_index(handle, bufb->array, read_sb_bindex)->shmp)->records_unread, 0);
852c2936
MD
893 CHAN_WARN_ON(chan, config->mode == RING_BUFFER_OVERWRITE
894 && subbuffer_id_is_noref(config, bufb->buf_rsb.id));
895 subbuffer_id_set_noref(config, &bufb->buf_rsb.id);
896
897 /*
898 * Exchange the reader subbuffer with the one we put in its place in the
899 * writer subbuffer table. Expect the original consumed count. If
900 * update_read_sb_index fails, this is because the writer updated the
901 * subbuffer concurrently. We should therefore keep the subbuffer we
902 * currently have: it has become invalid to try reading this sub-buffer
903 * consumed count value anyway.
904 */
905 consumed_idx = subbuf_index(consumed, chan);
906 update_read_sb_index(config, &buf->backend, &chan->backend,
1d498196
MD
907 consumed_idx, buf_trunc_val(consumed, chan),
908 handle);
852c2936
MD
909 /*
910 * update_read_sb_index return value ignored. Don't exchange sub-buffer
911 * if the writer concurrently updated it.
912 */
913}
852c2936
MD
914
915/*
916 * cons_offset is an iterator on all subbuffer offsets between the reader
917 * position and the writer position. (inclusive)
918 */
919static
4cfec15c 920void lib_ring_buffer_print_subbuffer_errors(struct lttng_ust_lib_ring_buffer *buf,
852c2936
MD
921 struct channel *chan,
922 unsigned long cons_offset,
1d498196 923 int cpu,
38fae1d3 924 struct lttng_ust_shm_handle *handle)
852c2936 925{
4cfec15c 926 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
927 unsigned long cons_idx, commit_count, commit_count_sb;
928
929 cons_idx = subbuf_index(cons_offset, chan);
4746ae29
MD
930 commit_count = v_read(config, &shmp_index(handle, buf->commit_hot, cons_idx)->cc);
931 commit_count_sb = v_read(config, &shmp_index(handle, buf->commit_cold, cons_idx)->cc_sb);
852c2936
MD
932
933 if (subbuf_offset(commit_count, chan) != 0)
4d3c9523 934 DBG("ring buffer %s, cpu %d: "
852c2936
MD
935 "commit count in subbuffer %lu,\n"
936 "expecting multiples of %lu bytes\n"
937 " [ %lu bytes committed, %lu bytes reader-visible ]\n",
938 chan->backend.name, cpu, cons_idx,
939 chan->backend.subbuf_size,
940 commit_count, commit_count_sb);
941
4d3c9523 942 DBG("ring buffer: %s, cpu %d: %lu bytes committed\n",
852c2936
MD
943 chan->backend.name, cpu, commit_count);
944}
945
946static
4cfec15c 947void lib_ring_buffer_print_buffer_errors(struct lttng_ust_lib_ring_buffer *buf,
852c2936 948 struct channel *chan,
1d498196 949 void *priv, int cpu,
38fae1d3 950 struct lttng_ust_shm_handle *handle)
852c2936 951{
4cfec15c 952 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
953 unsigned long write_offset, cons_offset;
954
852c2936
MD
955 /*
956 * No need to order commit_count, write_offset and cons_offset reads
957 * because we execute at teardown when no more writer nor reader
958 * references are left.
959 */
960 write_offset = v_read(config, &buf->offset);
a6352fd4 961 cons_offset = uatomic_read(&buf->consumed);
852c2936 962 if (write_offset != cons_offset)
4d3c9523 963 DBG("ring buffer %s, cpu %d: "
852c2936
MD
964 "non-consumed data\n"
965 " [ %lu bytes written, %lu bytes read ]\n",
966 chan->backend.name, cpu, write_offset, cons_offset);
967
a6352fd4 968 for (cons_offset = uatomic_read(&buf->consumed);
852c2936
MD
969 (long) (subbuf_trunc((unsigned long) v_read(config, &buf->offset),
970 chan)
971 - cons_offset) > 0;
972 cons_offset = subbuf_align(cons_offset, chan))
973 lib_ring_buffer_print_subbuffer_errors(buf, chan, cons_offset,
1d498196 974 cpu, handle);
852c2936
MD
975}
976
977static
978void lib_ring_buffer_print_errors(struct channel *chan,
4cfec15c 979 struct lttng_ust_lib_ring_buffer *buf, int cpu,
38fae1d3 980 struct lttng_ust_shm_handle *handle)
852c2936 981{
4cfec15c 982 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
a3f61e7f 983 void *priv = channel_get_private(chan);
852c2936 984
a1360615
MD
985 if (!strcmp(chan->backend.name, "relay-metadata-mmap")) {
986 DBG("ring buffer %s: %lu records written, "
987 "%lu records overrun\n",
988 chan->backend.name,
989 v_read(config, &buf->records_count),
990 v_read(config, &buf->records_overrun));
991 } else {
992 DBG("ring buffer %s, cpu %d: %lu records written, "
993 "%lu records overrun\n",
994 chan->backend.name, cpu,
995 v_read(config, &buf->records_count),
996 v_read(config, &buf->records_overrun));
997
998 if (v_read(config, &buf->records_lost_full)
999 || v_read(config, &buf->records_lost_wrap)
1000 || v_read(config, &buf->records_lost_big))
1001 DBG("ring buffer %s, cpu %d: records were lost. Caused by:\n"
1002 " [ %lu buffer full, %lu nest buffer wrap-around, "
1003 "%lu event too big ]\n",
1004 chan->backend.name, cpu,
1005 v_read(config, &buf->records_lost_full),
1006 v_read(config, &buf->records_lost_wrap),
1007 v_read(config, &buf->records_lost_big));
1008 }
1d498196 1009 lib_ring_buffer_print_buffer_errors(buf, chan, priv, cpu, handle);
852c2936
MD
1010}
1011
1012/*
1013 * lib_ring_buffer_switch_old_start: Populate old subbuffer header.
1014 *
1015 * Only executed when the buffer is finalized, in SWITCH_FLUSH.
1016 */
1017static
4cfec15c 1018void lib_ring_buffer_switch_old_start(struct lttng_ust_lib_ring_buffer *buf,
852c2936
MD
1019 struct channel *chan,
1020 struct switch_offsets *offsets,
2fed87ae 1021 uint64_t tsc,
38fae1d3 1022 struct lttng_ust_shm_handle *handle)
852c2936 1023{
4cfec15c 1024 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
1025 unsigned long oldidx = subbuf_index(offsets->old, chan);
1026 unsigned long commit_count;
1027
1d498196 1028 config->cb.buffer_begin(buf, tsc, oldidx, handle);
852c2936
MD
1029
1030 /*
1031 * Order all writes to buffer before the commit count update that will
1032 * determine that the subbuffer is full.
1033 */
a6352fd4 1034 cmm_smp_wmb();
852c2936 1035 v_add(config, config->cb.subbuffer_header_size(),
4746ae29
MD
1036 &shmp_index(handle, buf->commit_hot, oldidx)->cc);
1037 commit_count = v_read(config, &shmp_index(handle, buf->commit_hot, oldidx)->cc);
852c2936
MD
1038 /* Check if the written buffer has to be delivered */
1039 lib_ring_buffer_check_deliver(config, buf, chan, offsets->old,
1d498196 1040 commit_count, oldidx, handle);
852c2936
MD
1041 lib_ring_buffer_write_commit_counter(config, buf, chan, oldidx,
1042 offsets->old, commit_count,
1d498196
MD
1043 config->cb.subbuffer_header_size(),
1044 handle);
852c2936
MD
1045}
1046
1047/*
1048 * lib_ring_buffer_switch_old_end: switch old subbuffer
1049 *
1050 * Note : offset_old should never be 0 here. It is ok, because we never perform
1051 * buffer switch on an empty subbuffer in SWITCH_ACTIVE mode. The caller
1052 * increments the offset_old value when doing a SWITCH_FLUSH on an empty
1053 * subbuffer.
1054 */
1055static
4cfec15c 1056void lib_ring_buffer_switch_old_end(struct lttng_ust_lib_ring_buffer *buf,
852c2936
MD
1057 struct channel *chan,
1058 struct switch_offsets *offsets,
2fed87ae 1059 uint64_t tsc,
38fae1d3 1060 struct lttng_ust_shm_handle *handle)
852c2936 1061{
4cfec15c 1062 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
1063 unsigned long oldidx = subbuf_index(offsets->old - 1, chan);
1064 unsigned long commit_count, padding_size, data_size;
1065
1066 data_size = subbuf_offset(offsets->old - 1, chan) + 1;
1067 padding_size = chan->backend.subbuf_size - data_size;
1d498196
MD
1068 subbuffer_set_data_size(config, &buf->backend, oldidx, data_size,
1069 handle);
852c2936
MD
1070
1071 /*
1072 * Order all writes to buffer before the commit count update that will
1073 * determine that the subbuffer is full.
1074 */
a6352fd4 1075 cmm_smp_wmb();
4746ae29
MD
1076 v_add(config, padding_size, &shmp_index(handle, buf->commit_hot, oldidx)->cc);
1077 commit_count = v_read(config, &shmp_index(handle, buf->commit_hot, oldidx)->cc);
852c2936 1078 lib_ring_buffer_check_deliver(config, buf, chan, offsets->old - 1,
1d498196 1079 commit_count, oldidx, handle);
852c2936
MD
1080 lib_ring_buffer_write_commit_counter(config, buf, chan, oldidx,
1081 offsets->old, commit_count,
1d498196 1082 padding_size, handle);
852c2936
MD
1083}
1084
1085/*
1086 * lib_ring_buffer_switch_new_start: Populate new subbuffer.
1087 *
1088 * This code can be executed unordered : writers may already have written to the
1089 * sub-buffer before this code gets executed, caution. The commit makes sure
1090 * that this code is executed before the deliver of this sub-buffer.
1091 */
1092static
4cfec15c 1093void lib_ring_buffer_switch_new_start(struct lttng_ust_lib_ring_buffer *buf,
852c2936
MD
1094 struct channel *chan,
1095 struct switch_offsets *offsets,
2fed87ae 1096 uint64_t tsc,
38fae1d3 1097 struct lttng_ust_shm_handle *handle)
852c2936 1098{
4cfec15c 1099 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
1100 unsigned long beginidx = subbuf_index(offsets->begin, chan);
1101 unsigned long commit_count;
1102
1d498196 1103 config->cb.buffer_begin(buf, tsc, beginidx, handle);
852c2936
MD
1104
1105 /*
1106 * Order all writes to buffer before the commit count update that will
1107 * determine that the subbuffer is full.
1108 */
a6352fd4 1109 cmm_smp_wmb();
852c2936 1110 v_add(config, config->cb.subbuffer_header_size(),
4746ae29
MD
1111 &shmp_index(handle, buf->commit_hot, beginidx)->cc);
1112 commit_count = v_read(config, &shmp_index(handle, buf->commit_hot, beginidx)->cc);
852c2936
MD
1113 /* Check if the written buffer has to be delivered */
1114 lib_ring_buffer_check_deliver(config, buf, chan, offsets->begin,
1d498196 1115 commit_count, beginidx, handle);
852c2936
MD
1116 lib_ring_buffer_write_commit_counter(config, buf, chan, beginidx,
1117 offsets->begin, commit_count,
1d498196
MD
1118 config->cb.subbuffer_header_size(),
1119 handle);
852c2936
MD
1120}
1121
1122/*
1123 * lib_ring_buffer_switch_new_end: finish switching current subbuffer
1124 *
1125 * The only remaining threads could be the ones with pending commits. They will
1126 * have to do the deliver themselves.
1127 */
1128static
4cfec15c 1129void lib_ring_buffer_switch_new_end(struct lttng_ust_lib_ring_buffer *buf,
1d498196
MD
1130 struct channel *chan,
1131 struct switch_offsets *offsets,
2fed87ae 1132 uint64_t tsc,
38fae1d3 1133 struct lttng_ust_shm_handle *handle)
852c2936 1134{
4cfec15c 1135 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
1136 unsigned long endidx = subbuf_index(offsets->end - 1, chan);
1137 unsigned long commit_count, padding_size, data_size;
1138
1139 data_size = subbuf_offset(offsets->end - 1, chan) + 1;
1140 padding_size = chan->backend.subbuf_size - data_size;
1d498196
MD
1141 subbuffer_set_data_size(config, &buf->backend, endidx, data_size,
1142 handle);
852c2936
MD
1143
1144 /*
1145 * Order all writes to buffer before the commit count update that will
1146 * determine that the subbuffer is full.
1147 */
a6352fd4 1148 cmm_smp_wmb();
4746ae29
MD
1149 v_add(config, padding_size, &shmp_index(handle, buf->commit_hot, endidx)->cc);
1150 commit_count = v_read(config, &shmp_index(handle, buf->commit_hot, endidx)->cc);
852c2936 1151 lib_ring_buffer_check_deliver(config, buf, chan, offsets->end - 1,
1d498196 1152 commit_count, endidx, handle);
852c2936
MD
1153 lib_ring_buffer_write_commit_counter(config, buf, chan, endidx,
1154 offsets->end, commit_count,
1d498196 1155 padding_size, handle);
852c2936
MD
1156}
1157
1158/*
1159 * Returns :
1160 * 0 if ok
1161 * !0 if execution must be aborted.
1162 */
1163static
1164int lib_ring_buffer_try_switch_slow(enum switch_mode mode,
4cfec15c 1165 struct lttng_ust_lib_ring_buffer *buf,
852c2936
MD
1166 struct channel *chan,
1167 struct switch_offsets *offsets,
2fed87ae 1168 uint64_t *tsc)
852c2936 1169{
4cfec15c 1170 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
1171 unsigned long off;
1172
1173 offsets->begin = v_read(config, &buf->offset);
1174 offsets->old = offsets->begin;
1175 offsets->switch_old_start = 0;
1176 off = subbuf_offset(offsets->begin, chan);
1177
1178 *tsc = config->cb.ring_buffer_clock_read(chan);
1179
1180 /*
1181 * Ensure we flush the header of an empty subbuffer when doing the
1182 * finalize (SWITCH_FLUSH). This ensures that we end up knowing the
1183 * total data gathering duration even if there were no records saved
1184 * after the last buffer switch.
1185 * In SWITCH_ACTIVE mode, switch the buffer when it contains events.
1186 * SWITCH_ACTIVE only flushes the current subbuffer, dealing with end of
1187 * subbuffer header as appropriate.
1188 * The next record that reserves space will be responsible for
1189 * populating the following subbuffer header. We choose not to populate
1190 * the next subbuffer header here because we want to be able to use
a6352fd4
MD
1191 * SWITCH_ACTIVE for periodical buffer flush, which must
1192 * guarantee that all the buffer content (records and header
1193 * timestamps) are visible to the reader. This is required for
1194 * quiescence guarantees for the fusion merge.
852c2936
MD
1195 */
1196 if (mode == SWITCH_FLUSH || off > 0) {
b5a3dfa5 1197 if (caa_unlikely(off == 0)) {
852c2936
MD
1198 /*
1199 * The client does not save any header information.
1200 * Don't switch empty subbuffer on finalize, because it
1201 * is invalid to deliver a completely empty subbuffer.
1202 */
1203 if (!config->cb.subbuffer_header_size())
1204 return -1;
1205 /*
1206 * Need to write the subbuffer start header on finalize.
1207 */
1208 offsets->switch_old_start = 1;
1209 }
1210 offsets->begin = subbuf_align(offsets->begin, chan);
1211 } else
1212 return -1; /* we do not have to switch : buffer is empty */
1213 /* Note: old points to the next subbuf at offset 0 */
1214 offsets->end = offsets->begin;
1215 return 0;
1216}
1217
1218/*
1219 * Force a sub-buffer switch. This operation is completely reentrant : can be
1220 * called while tracing is active with absolutely no lock held.
1221 *
1222 * Note, however, that as a v_cmpxchg is used for some atomic
1223 * operations, this function must be called from the CPU which owns the buffer
1224 * for a ACTIVE flush.
1225 */
4cfec15c 1226void lib_ring_buffer_switch_slow(struct lttng_ust_lib_ring_buffer *buf, enum switch_mode mode,
38fae1d3 1227 struct lttng_ust_shm_handle *handle)
852c2936 1228{
1d498196 1229 struct channel *chan = shmp(handle, buf->backend.chan);
4cfec15c 1230 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
1231 struct switch_offsets offsets;
1232 unsigned long oldidx;
2fed87ae 1233 uint64_t tsc;
852c2936
MD
1234
1235 offsets.size = 0;
1236
1237 /*
1238 * Perform retryable operations.
1239 */
1240 do {
1241 if (lib_ring_buffer_try_switch_slow(mode, buf, chan, &offsets,
1242 &tsc))
1243 return; /* Switch not needed */
1244 } while (v_cmpxchg(config, &buf->offset, offsets.old, offsets.end)
1245 != offsets.old);
1246
1247 /*
1248 * Atomically update last_tsc. This update races against concurrent
1249 * atomic updates, but the race will always cause supplementary full TSC
1250 * records, never the opposite (missing a full TSC record when it would
1251 * be needed).
1252 */
1253 save_last_tsc(config, buf, tsc);
1254
1255 /*
1256 * Push the reader if necessary
1257 */
1258 lib_ring_buffer_reserve_push_reader(buf, chan, offsets.old);
1259
1260 oldidx = subbuf_index(offsets.old, chan);
1d498196 1261 lib_ring_buffer_clear_noref(config, &buf->backend, oldidx, handle);
852c2936
MD
1262
1263 /*
1264 * May need to populate header start on SWITCH_FLUSH.
1265 */
1266 if (offsets.switch_old_start) {
1d498196 1267 lib_ring_buffer_switch_old_start(buf, chan, &offsets, tsc, handle);
852c2936
MD
1268 offsets.old += config->cb.subbuffer_header_size();
1269 }
1270
1271 /*
1272 * Switch old subbuffer.
1273 */
1d498196 1274 lib_ring_buffer_switch_old_end(buf, chan, &offsets, tsc, handle);
852c2936 1275}
852c2936
MD
1276
1277/*
1278 * Returns :
1279 * 0 if ok
1280 * -ENOSPC if event size is too large for packet.
1281 * -ENOBUFS if there is currently not enough space in buffer for the event.
1282 * -EIO if data cannot be written into the buffer for any other reason.
1283 */
1284static
4cfec15c 1285int lib_ring_buffer_try_reserve_slow(struct lttng_ust_lib_ring_buffer *buf,
852c2936
MD
1286 struct channel *chan,
1287 struct switch_offsets *offsets,
4cfec15c 1288 struct lttng_ust_lib_ring_buffer_ctx *ctx)
852c2936 1289{
4cfec15c 1290 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
38fae1d3 1291 struct lttng_ust_shm_handle *handle = ctx->handle;
852c2936
MD
1292 unsigned long reserve_commit_diff;
1293
1294 offsets->begin = v_read(config, &buf->offset);
1295 offsets->old = offsets->begin;
1296 offsets->switch_new_start = 0;
1297 offsets->switch_new_end = 0;
1298 offsets->switch_old_end = 0;
1299 offsets->pre_header_padding = 0;
1300
1301 ctx->tsc = config->cb.ring_buffer_clock_read(chan);
1302 if ((int64_t) ctx->tsc == -EIO)
1303 return -EIO;
1304
1305 if (last_tsc_overflow(config, buf, ctx->tsc))
1306 ctx->rflags |= RING_BUFFER_RFLAG_FULL_TSC;
1307
b5a3dfa5 1308 if (caa_unlikely(subbuf_offset(offsets->begin, ctx->chan) == 0)) {
852c2936
MD
1309 offsets->switch_new_start = 1; /* For offsets->begin */
1310 } else {
1311 offsets->size = config->cb.record_header_size(config, chan,
1312 offsets->begin,
1313 &offsets->pre_header_padding,
1314 ctx);
1315 offsets->size +=
1316 lib_ring_buffer_align(offsets->begin + offsets->size,
1317 ctx->largest_align)
1318 + ctx->data_size;
b5a3dfa5 1319 if (caa_unlikely(subbuf_offset(offsets->begin, chan) +
852c2936
MD
1320 offsets->size > chan->backend.subbuf_size)) {
1321 offsets->switch_old_end = 1; /* For offsets->old */
1322 offsets->switch_new_start = 1; /* For offsets->begin */
1323 }
1324 }
b5a3dfa5 1325 if (caa_unlikely(offsets->switch_new_start)) {
852c2936
MD
1326 unsigned long sb_index;
1327
1328 /*
1329 * We are typically not filling the previous buffer completely.
1330 */
b5a3dfa5 1331 if (caa_likely(offsets->switch_old_end))
852c2936
MD
1332 offsets->begin = subbuf_align(offsets->begin, chan);
1333 offsets->begin = offsets->begin
1334 + config->cb.subbuffer_header_size();
1335 /* Test new buffer integrity */
1336 sb_index = subbuf_index(offsets->begin, chan);
1337 reserve_commit_diff =
1338 (buf_trunc(offsets->begin, chan)
1339 >> chan->backend.num_subbuf_order)
1340 - ((unsigned long) v_read(config,
4746ae29 1341 &shmp_index(handle, buf->commit_cold, sb_index)->cc_sb)
852c2936 1342 & chan->commit_count_mask);
b5a3dfa5 1343 if (caa_likely(reserve_commit_diff == 0)) {
852c2936 1344 /* Next subbuffer not being written to. */
b5a3dfa5 1345 if (caa_unlikely(config->mode != RING_BUFFER_OVERWRITE &&
852c2936
MD
1346 subbuf_trunc(offsets->begin, chan)
1347 - subbuf_trunc((unsigned long)
a6352fd4 1348 uatomic_read(&buf->consumed), chan)
852c2936 1349 >= chan->backend.buf_size)) {
64493e4f
MD
1350 unsigned long nr_lost;
1351
852c2936
MD
1352 /*
1353 * We do not overwrite non consumed buffers
1354 * and we are full : record is lost.
1355 */
64493e4f 1356 nr_lost = v_read(config, &buf->records_lost_full);
852c2936 1357 v_inc(config, &buf->records_lost_full);
64493e4f
MD
1358 if ((nr_lost & (DBG_PRINT_NR_LOST - 1)) == 0) {
1359 DBG("%lu or more records lost in (%s:%d) (buffer full)\n",
1360 nr_lost + 1, chan->backend.name,
1361 buf->backend.cpu);
1362 }
852c2936
MD
1363 return -ENOBUFS;
1364 } else {
1365 /*
1366 * Next subbuffer not being written to, and we
1367 * are either in overwrite mode or the buffer is
1368 * not full. It's safe to write in this new
1369 * subbuffer.
1370 */
1371 }
1372 } else {
64493e4f
MD
1373 unsigned long nr_lost;
1374
852c2936
MD
1375 /*
1376 * Next subbuffer reserve offset does not match the
1377 * commit offset. Drop record in producer-consumer and
1378 * overwrite mode. Caused by either a writer OOPS or too
1379 * many nested writes over a reserve/commit pair.
1380 */
64493e4f 1381 nr_lost = v_read(config, &buf->records_lost_wrap);
852c2936 1382 v_inc(config, &buf->records_lost_wrap);
64493e4f
MD
1383 if ((nr_lost & (DBG_PRINT_NR_LOST - 1)) == 0) {
1384 DBG("%lu or more records lost in (%s:%d) (wrap-around)\n",
1385 nr_lost + 1, chan->backend.name,
1386 buf->backend.cpu);
1387 }
852c2936
MD
1388 return -EIO;
1389 }
1390 offsets->size =
1391 config->cb.record_header_size(config, chan,
1392 offsets->begin,
1393 &offsets->pre_header_padding,
1394 ctx);
1395 offsets->size +=
1396 lib_ring_buffer_align(offsets->begin + offsets->size,
1397 ctx->largest_align)
1398 + ctx->data_size;
b5a3dfa5 1399 if (caa_unlikely(subbuf_offset(offsets->begin, chan)
852c2936 1400 + offsets->size > chan->backend.subbuf_size)) {
64493e4f
MD
1401 unsigned long nr_lost;
1402
852c2936
MD
1403 /*
1404 * Record too big for subbuffers, report error, don't
1405 * complete the sub-buffer switch.
1406 */
64493e4f 1407 nr_lost = v_read(config, &buf->records_lost_big);
852c2936 1408 v_inc(config, &buf->records_lost_big);
64493e4f
MD
1409 if ((nr_lost & (DBG_PRINT_NR_LOST - 1)) == 0) {
1410 DBG("%lu or more records lost in (%s:%d) record size "
1411 " of %zu bytes is too large for buffer\n",
1412 nr_lost + 1, chan->backend.name,
1413 buf->backend.cpu, offsets->size);
1414 }
852c2936
MD
1415 return -ENOSPC;
1416 } else {
1417 /*
1418 * We just made a successful buffer switch and the
1419 * record fits in the new subbuffer. Let's write.
1420 */
1421 }
1422 } else {
1423 /*
1424 * Record fits in the current buffer and we are not on a switch
1425 * boundary. It's safe to write.
1426 */
1427 }
1428 offsets->end = offsets->begin + offsets->size;
1429
b5a3dfa5 1430 if (caa_unlikely(subbuf_offset(offsets->end, chan) == 0)) {
852c2936
MD
1431 /*
1432 * The offset_end will fall at the very beginning of the next
1433 * subbuffer.
1434 */
1435 offsets->switch_new_end = 1; /* For offsets->begin */
1436 }
1437 return 0;
1438}
1439
1440/**
1441 * lib_ring_buffer_reserve_slow - Atomic slot reservation in a buffer.
1442 * @ctx: ring buffer context.
1443 *
1444 * Return : -NOBUFS if not enough space, -ENOSPC if event size too large,
1445 * -EIO for other errors, else returns 0.
1446 * It will take care of sub-buffer switching.
1447 */
4cfec15c 1448int lib_ring_buffer_reserve_slow(struct lttng_ust_lib_ring_buffer_ctx *ctx)
852c2936
MD
1449{
1450 struct channel *chan = ctx->chan;
38fae1d3 1451 struct lttng_ust_shm_handle *handle = ctx->handle;
4cfec15c
MD
1452 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
1453 struct lttng_ust_lib_ring_buffer *buf;
852c2936
MD
1454 struct switch_offsets offsets;
1455 int ret;
1456
1457 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU)
1d498196 1458 buf = shmp(handle, chan->backend.buf[ctx->cpu].shmp);
852c2936 1459 else
1d498196 1460 buf = shmp(handle, chan->backend.buf[0].shmp);
852c2936
MD
1461 ctx->buf = buf;
1462
1463 offsets.size = 0;
1464
1465 do {
1466 ret = lib_ring_buffer_try_reserve_slow(buf, chan, &offsets,
1467 ctx);
b5a3dfa5 1468 if (caa_unlikely(ret))
852c2936 1469 return ret;
b5a3dfa5 1470 } while (caa_unlikely(v_cmpxchg(config, &buf->offset, offsets.old,
852c2936
MD
1471 offsets.end)
1472 != offsets.old));
1473
1474 /*
1475 * Atomically update last_tsc. This update races against concurrent
1476 * atomic updates, but the race will always cause supplementary full TSC
1477 * records, never the opposite (missing a full TSC record when it would
1478 * be needed).
1479 */
1480 save_last_tsc(config, buf, ctx->tsc);
1481
1482 /*
1483 * Push the reader if necessary
1484 */
1485 lib_ring_buffer_reserve_push_reader(buf, chan, offsets.end - 1);
1486
1487 /*
1488 * Clear noref flag for this subbuffer.
1489 */
1490 lib_ring_buffer_clear_noref(config, &buf->backend,
1d498196
MD
1491 subbuf_index(offsets.end - 1, chan),
1492 handle);
852c2936
MD
1493
1494 /*
1495 * Switch old subbuffer if needed.
1496 */
b5a3dfa5 1497 if (caa_unlikely(offsets.switch_old_end)) {
852c2936 1498 lib_ring_buffer_clear_noref(config, &buf->backend,
1d498196
MD
1499 subbuf_index(offsets.old - 1, chan),
1500 handle);
1501 lib_ring_buffer_switch_old_end(buf, chan, &offsets, ctx->tsc, handle);
852c2936
MD
1502 }
1503
1504 /*
1505 * Populate new subbuffer.
1506 */
b5a3dfa5 1507 if (caa_unlikely(offsets.switch_new_start))
1d498196 1508 lib_ring_buffer_switch_new_start(buf, chan, &offsets, ctx->tsc, handle);
852c2936 1509
b5a3dfa5 1510 if (caa_unlikely(offsets.switch_new_end))
1d498196 1511 lib_ring_buffer_switch_new_end(buf, chan, &offsets, ctx->tsc, handle);
852c2936
MD
1512
1513 ctx->slot_size = offsets.size;
1514 ctx->pre_offset = offsets.begin;
1515 ctx->buf_offset = offsets.begin + offsets.pre_header_padding;
1516 return 0;
1517}
f645cfa7
MD
1518
1519/*
1520 * Force a read (imply TLS fixup for dlopen) of TLS variables.
1521 */
1522void lttng_fixup_ringbuffer_tls(void)
1523{
1524 asm volatile ("" : : "m" (lib_ring_buffer_nesting));
1525}
This page took 0.098472 seconds and 4 git commands to generate.