Fix: use transport name as channel name
[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
4d3c9523 985 DBG("ring buffer %s, cpu %d: %lu records written, "
852c2936
MD
986 "%lu records overrun\n",
987 chan->backend.name, cpu,
988 v_read(config, &buf->records_count),
989 v_read(config, &buf->records_overrun));
990
991 if (v_read(config, &buf->records_lost_full)
992 || v_read(config, &buf->records_lost_wrap)
993 || v_read(config, &buf->records_lost_big))
4d3c9523 994 DBG("ring buffer %s, cpu %d: records were lost. Caused by:\n"
852c2936
MD
995 " [ %lu buffer full, %lu nest buffer wrap-around, "
996 "%lu event too big ]\n",
997 chan->backend.name, cpu,
998 v_read(config, &buf->records_lost_full),
999 v_read(config, &buf->records_lost_wrap),
1000 v_read(config, &buf->records_lost_big));
1001
1d498196 1002 lib_ring_buffer_print_buffer_errors(buf, chan, priv, cpu, handle);
852c2936
MD
1003}
1004
1005/*
1006 * lib_ring_buffer_switch_old_start: Populate old subbuffer header.
1007 *
1008 * Only executed when the buffer is finalized, in SWITCH_FLUSH.
1009 */
1010static
4cfec15c 1011void lib_ring_buffer_switch_old_start(struct lttng_ust_lib_ring_buffer *buf,
852c2936
MD
1012 struct channel *chan,
1013 struct switch_offsets *offsets,
2fed87ae 1014 uint64_t tsc,
38fae1d3 1015 struct lttng_ust_shm_handle *handle)
852c2936 1016{
4cfec15c 1017 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
1018 unsigned long oldidx = subbuf_index(offsets->old, chan);
1019 unsigned long commit_count;
1020
1d498196 1021 config->cb.buffer_begin(buf, tsc, oldidx, handle);
852c2936
MD
1022
1023 /*
1024 * Order all writes to buffer before the commit count update that will
1025 * determine that the subbuffer is full.
1026 */
a6352fd4 1027 cmm_smp_wmb();
852c2936 1028 v_add(config, config->cb.subbuffer_header_size(),
4746ae29
MD
1029 &shmp_index(handle, buf->commit_hot, oldidx)->cc);
1030 commit_count = v_read(config, &shmp_index(handle, buf->commit_hot, oldidx)->cc);
852c2936
MD
1031 /* Check if the written buffer has to be delivered */
1032 lib_ring_buffer_check_deliver(config, buf, chan, offsets->old,
1d498196 1033 commit_count, oldidx, handle);
852c2936
MD
1034 lib_ring_buffer_write_commit_counter(config, buf, chan, oldidx,
1035 offsets->old, commit_count,
1d498196
MD
1036 config->cb.subbuffer_header_size(),
1037 handle);
852c2936
MD
1038}
1039
1040/*
1041 * lib_ring_buffer_switch_old_end: switch old subbuffer
1042 *
1043 * Note : offset_old should never be 0 here. It is ok, because we never perform
1044 * buffer switch on an empty subbuffer in SWITCH_ACTIVE mode. The caller
1045 * increments the offset_old value when doing a SWITCH_FLUSH on an empty
1046 * subbuffer.
1047 */
1048static
4cfec15c 1049void lib_ring_buffer_switch_old_end(struct lttng_ust_lib_ring_buffer *buf,
852c2936
MD
1050 struct channel *chan,
1051 struct switch_offsets *offsets,
2fed87ae 1052 uint64_t tsc,
38fae1d3 1053 struct lttng_ust_shm_handle *handle)
852c2936 1054{
4cfec15c 1055 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
1056 unsigned long oldidx = subbuf_index(offsets->old - 1, chan);
1057 unsigned long commit_count, padding_size, data_size;
1058
1059 data_size = subbuf_offset(offsets->old - 1, chan) + 1;
1060 padding_size = chan->backend.subbuf_size - data_size;
1d498196
MD
1061 subbuffer_set_data_size(config, &buf->backend, oldidx, data_size,
1062 handle);
852c2936
MD
1063
1064 /*
1065 * Order all writes to buffer before the commit count update that will
1066 * determine that the subbuffer is full.
1067 */
a6352fd4 1068 cmm_smp_wmb();
4746ae29
MD
1069 v_add(config, padding_size, &shmp_index(handle, buf->commit_hot, oldidx)->cc);
1070 commit_count = v_read(config, &shmp_index(handle, buf->commit_hot, oldidx)->cc);
852c2936 1071 lib_ring_buffer_check_deliver(config, buf, chan, offsets->old - 1,
1d498196 1072 commit_count, oldidx, handle);
852c2936
MD
1073 lib_ring_buffer_write_commit_counter(config, buf, chan, oldidx,
1074 offsets->old, commit_count,
1d498196 1075 padding_size, handle);
852c2936
MD
1076}
1077
1078/*
1079 * lib_ring_buffer_switch_new_start: Populate new subbuffer.
1080 *
1081 * This code can be executed unordered : writers may already have written to the
1082 * sub-buffer before this code gets executed, caution. The commit makes sure
1083 * that this code is executed before the deliver of this sub-buffer.
1084 */
1085static
4cfec15c 1086void lib_ring_buffer_switch_new_start(struct lttng_ust_lib_ring_buffer *buf,
852c2936
MD
1087 struct channel *chan,
1088 struct switch_offsets *offsets,
2fed87ae 1089 uint64_t tsc,
38fae1d3 1090 struct lttng_ust_shm_handle *handle)
852c2936 1091{
4cfec15c 1092 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
1093 unsigned long beginidx = subbuf_index(offsets->begin, chan);
1094 unsigned long commit_count;
1095
1d498196 1096 config->cb.buffer_begin(buf, tsc, beginidx, handle);
852c2936
MD
1097
1098 /*
1099 * Order all writes to buffer before the commit count update that will
1100 * determine that the subbuffer is full.
1101 */
a6352fd4 1102 cmm_smp_wmb();
852c2936 1103 v_add(config, config->cb.subbuffer_header_size(),
4746ae29
MD
1104 &shmp_index(handle, buf->commit_hot, beginidx)->cc);
1105 commit_count = v_read(config, &shmp_index(handle, buf->commit_hot, beginidx)->cc);
852c2936
MD
1106 /* Check if the written buffer has to be delivered */
1107 lib_ring_buffer_check_deliver(config, buf, chan, offsets->begin,
1d498196 1108 commit_count, beginidx, handle);
852c2936
MD
1109 lib_ring_buffer_write_commit_counter(config, buf, chan, beginidx,
1110 offsets->begin, commit_count,
1d498196
MD
1111 config->cb.subbuffer_header_size(),
1112 handle);
852c2936
MD
1113}
1114
1115/*
1116 * lib_ring_buffer_switch_new_end: finish switching current subbuffer
1117 *
1118 * The only remaining threads could be the ones with pending commits. They will
1119 * have to do the deliver themselves.
1120 */
1121static
4cfec15c 1122void lib_ring_buffer_switch_new_end(struct lttng_ust_lib_ring_buffer *buf,
1d498196
MD
1123 struct channel *chan,
1124 struct switch_offsets *offsets,
2fed87ae 1125 uint64_t tsc,
38fae1d3 1126 struct lttng_ust_shm_handle *handle)
852c2936 1127{
4cfec15c 1128 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
1129 unsigned long endidx = subbuf_index(offsets->end - 1, chan);
1130 unsigned long commit_count, padding_size, data_size;
1131
1132 data_size = subbuf_offset(offsets->end - 1, chan) + 1;
1133 padding_size = chan->backend.subbuf_size - data_size;
1d498196
MD
1134 subbuffer_set_data_size(config, &buf->backend, endidx, data_size,
1135 handle);
852c2936
MD
1136
1137 /*
1138 * Order all writes to buffer before the commit count update that will
1139 * determine that the subbuffer is full.
1140 */
a6352fd4 1141 cmm_smp_wmb();
4746ae29
MD
1142 v_add(config, padding_size, &shmp_index(handle, buf->commit_hot, endidx)->cc);
1143 commit_count = v_read(config, &shmp_index(handle, buf->commit_hot, endidx)->cc);
852c2936 1144 lib_ring_buffer_check_deliver(config, buf, chan, offsets->end - 1,
1d498196 1145 commit_count, endidx, handle);
852c2936
MD
1146 lib_ring_buffer_write_commit_counter(config, buf, chan, endidx,
1147 offsets->end, commit_count,
1d498196 1148 padding_size, handle);
852c2936
MD
1149}
1150
1151/*
1152 * Returns :
1153 * 0 if ok
1154 * !0 if execution must be aborted.
1155 */
1156static
1157int lib_ring_buffer_try_switch_slow(enum switch_mode mode,
4cfec15c 1158 struct lttng_ust_lib_ring_buffer *buf,
852c2936
MD
1159 struct channel *chan,
1160 struct switch_offsets *offsets,
2fed87ae 1161 uint64_t *tsc)
852c2936 1162{
4cfec15c 1163 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
1164 unsigned long off;
1165
1166 offsets->begin = v_read(config, &buf->offset);
1167 offsets->old = offsets->begin;
1168 offsets->switch_old_start = 0;
1169 off = subbuf_offset(offsets->begin, chan);
1170
1171 *tsc = config->cb.ring_buffer_clock_read(chan);
1172
1173 /*
1174 * Ensure we flush the header of an empty subbuffer when doing the
1175 * finalize (SWITCH_FLUSH). This ensures that we end up knowing the
1176 * total data gathering duration even if there were no records saved
1177 * after the last buffer switch.
1178 * In SWITCH_ACTIVE mode, switch the buffer when it contains events.
1179 * SWITCH_ACTIVE only flushes the current subbuffer, dealing with end of
1180 * subbuffer header as appropriate.
1181 * The next record that reserves space will be responsible for
1182 * populating the following subbuffer header. We choose not to populate
1183 * the next subbuffer header here because we want to be able to use
a6352fd4
MD
1184 * SWITCH_ACTIVE for periodical buffer flush, which must
1185 * guarantee that all the buffer content (records and header
1186 * timestamps) are visible to the reader. This is required for
1187 * quiescence guarantees for the fusion merge.
852c2936
MD
1188 */
1189 if (mode == SWITCH_FLUSH || off > 0) {
b5a3dfa5 1190 if (caa_unlikely(off == 0)) {
852c2936
MD
1191 /*
1192 * The client does not save any header information.
1193 * Don't switch empty subbuffer on finalize, because it
1194 * is invalid to deliver a completely empty subbuffer.
1195 */
1196 if (!config->cb.subbuffer_header_size())
1197 return -1;
1198 /*
1199 * Need to write the subbuffer start header on finalize.
1200 */
1201 offsets->switch_old_start = 1;
1202 }
1203 offsets->begin = subbuf_align(offsets->begin, chan);
1204 } else
1205 return -1; /* we do not have to switch : buffer is empty */
1206 /* Note: old points to the next subbuf at offset 0 */
1207 offsets->end = offsets->begin;
1208 return 0;
1209}
1210
1211/*
1212 * Force a sub-buffer switch. This operation is completely reentrant : can be
1213 * called while tracing is active with absolutely no lock held.
1214 *
1215 * Note, however, that as a v_cmpxchg is used for some atomic
1216 * operations, this function must be called from the CPU which owns the buffer
1217 * for a ACTIVE flush.
1218 */
4cfec15c 1219void lib_ring_buffer_switch_slow(struct lttng_ust_lib_ring_buffer *buf, enum switch_mode mode,
38fae1d3 1220 struct lttng_ust_shm_handle *handle)
852c2936 1221{
1d498196 1222 struct channel *chan = shmp(handle, buf->backend.chan);
4cfec15c 1223 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
1224 struct switch_offsets offsets;
1225 unsigned long oldidx;
2fed87ae 1226 uint64_t tsc;
852c2936
MD
1227
1228 offsets.size = 0;
1229
1230 /*
1231 * Perform retryable operations.
1232 */
1233 do {
1234 if (lib_ring_buffer_try_switch_slow(mode, buf, chan, &offsets,
1235 &tsc))
1236 return; /* Switch not needed */
1237 } while (v_cmpxchg(config, &buf->offset, offsets.old, offsets.end)
1238 != offsets.old);
1239
1240 /*
1241 * Atomically update last_tsc. This update races against concurrent
1242 * atomic updates, but the race will always cause supplementary full TSC
1243 * records, never the opposite (missing a full TSC record when it would
1244 * be needed).
1245 */
1246 save_last_tsc(config, buf, tsc);
1247
1248 /*
1249 * Push the reader if necessary
1250 */
1251 lib_ring_buffer_reserve_push_reader(buf, chan, offsets.old);
1252
1253 oldidx = subbuf_index(offsets.old, chan);
1d498196 1254 lib_ring_buffer_clear_noref(config, &buf->backend, oldidx, handle);
852c2936
MD
1255
1256 /*
1257 * May need to populate header start on SWITCH_FLUSH.
1258 */
1259 if (offsets.switch_old_start) {
1d498196 1260 lib_ring_buffer_switch_old_start(buf, chan, &offsets, tsc, handle);
852c2936
MD
1261 offsets.old += config->cb.subbuffer_header_size();
1262 }
1263
1264 /*
1265 * Switch old subbuffer.
1266 */
1d498196 1267 lib_ring_buffer_switch_old_end(buf, chan, &offsets, tsc, handle);
852c2936 1268}
852c2936
MD
1269
1270/*
1271 * Returns :
1272 * 0 if ok
1273 * -ENOSPC if event size is too large for packet.
1274 * -ENOBUFS if there is currently not enough space in buffer for the event.
1275 * -EIO if data cannot be written into the buffer for any other reason.
1276 */
1277static
4cfec15c 1278int lib_ring_buffer_try_reserve_slow(struct lttng_ust_lib_ring_buffer *buf,
852c2936
MD
1279 struct channel *chan,
1280 struct switch_offsets *offsets,
4cfec15c 1281 struct lttng_ust_lib_ring_buffer_ctx *ctx)
852c2936 1282{
4cfec15c 1283 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
38fae1d3 1284 struct lttng_ust_shm_handle *handle = ctx->handle;
852c2936
MD
1285 unsigned long reserve_commit_diff;
1286
1287 offsets->begin = v_read(config, &buf->offset);
1288 offsets->old = offsets->begin;
1289 offsets->switch_new_start = 0;
1290 offsets->switch_new_end = 0;
1291 offsets->switch_old_end = 0;
1292 offsets->pre_header_padding = 0;
1293
1294 ctx->tsc = config->cb.ring_buffer_clock_read(chan);
1295 if ((int64_t) ctx->tsc == -EIO)
1296 return -EIO;
1297
1298 if (last_tsc_overflow(config, buf, ctx->tsc))
1299 ctx->rflags |= RING_BUFFER_RFLAG_FULL_TSC;
1300
b5a3dfa5 1301 if (caa_unlikely(subbuf_offset(offsets->begin, ctx->chan) == 0)) {
852c2936
MD
1302 offsets->switch_new_start = 1; /* For offsets->begin */
1303 } else {
1304 offsets->size = config->cb.record_header_size(config, chan,
1305 offsets->begin,
1306 &offsets->pre_header_padding,
1307 ctx);
1308 offsets->size +=
1309 lib_ring_buffer_align(offsets->begin + offsets->size,
1310 ctx->largest_align)
1311 + ctx->data_size;
b5a3dfa5 1312 if (caa_unlikely(subbuf_offset(offsets->begin, chan) +
852c2936
MD
1313 offsets->size > chan->backend.subbuf_size)) {
1314 offsets->switch_old_end = 1; /* For offsets->old */
1315 offsets->switch_new_start = 1; /* For offsets->begin */
1316 }
1317 }
b5a3dfa5 1318 if (caa_unlikely(offsets->switch_new_start)) {
852c2936
MD
1319 unsigned long sb_index;
1320
1321 /*
1322 * We are typically not filling the previous buffer completely.
1323 */
b5a3dfa5 1324 if (caa_likely(offsets->switch_old_end))
852c2936
MD
1325 offsets->begin = subbuf_align(offsets->begin, chan);
1326 offsets->begin = offsets->begin
1327 + config->cb.subbuffer_header_size();
1328 /* Test new buffer integrity */
1329 sb_index = subbuf_index(offsets->begin, chan);
1330 reserve_commit_diff =
1331 (buf_trunc(offsets->begin, chan)
1332 >> chan->backend.num_subbuf_order)
1333 - ((unsigned long) v_read(config,
4746ae29 1334 &shmp_index(handle, buf->commit_cold, sb_index)->cc_sb)
852c2936 1335 & chan->commit_count_mask);
b5a3dfa5 1336 if (caa_likely(reserve_commit_diff == 0)) {
852c2936 1337 /* Next subbuffer not being written to. */
b5a3dfa5 1338 if (caa_unlikely(config->mode != RING_BUFFER_OVERWRITE &&
852c2936
MD
1339 subbuf_trunc(offsets->begin, chan)
1340 - subbuf_trunc((unsigned long)
a6352fd4 1341 uatomic_read(&buf->consumed), chan)
852c2936 1342 >= chan->backend.buf_size)) {
64493e4f
MD
1343 unsigned long nr_lost;
1344
852c2936
MD
1345 /*
1346 * We do not overwrite non consumed buffers
1347 * and we are full : record is lost.
1348 */
64493e4f 1349 nr_lost = v_read(config, &buf->records_lost_full);
852c2936 1350 v_inc(config, &buf->records_lost_full);
64493e4f
MD
1351 if ((nr_lost & (DBG_PRINT_NR_LOST - 1)) == 0) {
1352 DBG("%lu or more records lost in (%s:%d) (buffer full)\n",
1353 nr_lost + 1, chan->backend.name,
1354 buf->backend.cpu);
1355 }
852c2936
MD
1356 return -ENOBUFS;
1357 } else {
1358 /*
1359 * Next subbuffer not being written to, and we
1360 * are either in overwrite mode or the buffer is
1361 * not full. It's safe to write in this new
1362 * subbuffer.
1363 */
1364 }
1365 } else {
64493e4f
MD
1366 unsigned long nr_lost;
1367
852c2936
MD
1368 /*
1369 * Next subbuffer reserve offset does not match the
1370 * commit offset. Drop record in producer-consumer and
1371 * overwrite mode. Caused by either a writer OOPS or too
1372 * many nested writes over a reserve/commit pair.
1373 */
64493e4f 1374 nr_lost = v_read(config, &buf->records_lost_wrap);
852c2936 1375 v_inc(config, &buf->records_lost_wrap);
64493e4f
MD
1376 if ((nr_lost & (DBG_PRINT_NR_LOST - 1)) == 0) {
1377 DBG("%lu or more records lost in (%s:%d) (wrap-around)\n",
1378 nr_lost + 1, chan->backend.name,
1379 buf->backend.cpu);
1380 }
852c2936
MD
1381 return -EIO;
1382 }
1383 offsets->size =
1384 config->cb.record_header_size(config, chan,
1385 offsets->begin,
1386 &offsets->pre_header_padding,
1387 ctx);
1388 offsets->size +=
1389 lib_ring_buffer_align(offsets->begin + offsets->size,
1390 ctx->largest_align)
1391 + ctx->data_size;
b5a3dfa5 1392 if (caa_unlikely(subbuf_offset(offsets->begin, chan)
852c2936 1393 + offsets->size > chan->backend.subbuf_size)) {
64493e4f
MD
1394 unsigned long nr_lost;
1395
852c2936
MD
1396 /*
1397 * Record too big for subbuffers, report error, don't
1398 * complete the sub-buffer switch.
1399 */
64493e4f 1400 nr_lost = v_read(config, &buf->records_lost_big);
852c2936 1401 v_inc(config, &buf->records_lost_big);
64493e4f
MD
1402 if ((nr_lost & (DBG_PRINT_NR_LOST - 1)) == 0) {
1403 DBG("%lu or more records lost in (%s:%d) record size "
1404 " of %zu bytes is too large for buffer\n",
1405 nr_lost + 1, chan->backend.name,
1406 buf->backend.cpu, offsets->size);
1407 }
852c2936
MD
1408 return -ENOSPC;
1409 } else {
1410 /*
1411 * We just made a successful buffer switch and the
1412 * record fits in the new subbuffer. Let's write.
1413 */
1414 }
1415 } else {
1416 /*
1417 * Record fits in the current buffer and we are not on a switch
1418 * boundary. It's safe to write.
1419 */
1420 }
1421 offsets->end = offsets->begin + offsets->size;
1422
b5a3dfa5 1423 if (caa_unlikely(subbuf_offset(offsets->end, chan) == 0)) {
852c2936
MD
1424 /*
1425 * The offset_end will fall at the very beginning of the next
1426 * subbuffer.
1427 */
1428 offsets->switch_new_end = 1; /* For offsets->begin */
1429 }
1430 return 0;
1431}
1432
1433/**
1434 * lib_ring_buffer_reserve_slow - Atomic slot reservation in a buffer.
1435 * @ctx: ring buffer context.
1436 *
1437 * Return : -NOBUFS if not enough space, -ENOSPC if event size too large,
1438 * -EIO for other errors, else returns 0.
1439 * It will take care of sub-buffer switching.
1440 */
4cfec15c 1441int lib_ring_buffer_reserve_slow(struct lttng_ust_lib_ring_buffer_ctx *ctx)
852c2936
MD
1442{
1443 struct channel *chan = ctx->chan;
38fae1d3 1444 struct lttng_ust_shm_handle *handle = ctx->handle;
4cfec15c
MD
1445 const struct lttng_ust_lib_ring_buffer_config *config = &chan->backend.config;
1446 struct lttng_ust_lib_ring_buffer *buf;
852c2936
MD
1447 struct switch_offsets offsets;
1448 int ret;
1449
1450 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU)
1d498196 1451 buf = shmp(handle, chan->backend.buf[ctx->cpu].shmp);
852c2936 1452 else
1d498196 1453 buf = shmp(handle, chan->backend.buf[0].shmp);
852c2936
MD
1454 ctx->buf = buf;
1455
1456 offsets.size = 0;
1457
1458 do {
1459 ret = lib_ring_buffer_try_reserve_slow(buf, chan, &offsets,
1460 ctx);
b5a3dfa5 1461 if (caa_unlikely(ret))
852c2936 1462 return ret;
b5a3dfa5 1463 } while (caa_unlikely(v_cmpxchg(config, &buf->offset, offsets.old,
852c2936
MD
1464 offsets.end)
1465 != offsets.old));
1466
1467 /*
1468 * Atomically update last_tsc. This update races against concurrent
1469 * atomic updates, but the race will always cause supplementary full TSC
1470 * records, never the opposite (missing a full TSC record when it would
1471 * be needed).
1472 */
1473 save_last_tsc(config, buf, ctx->tsc);
1474
1475 /*
1476 * Push the reader if necessary
1477 */
1478 lib_ring_buffer_reserve_push_reader(buf, chan, offsets.end - 1);
1479
1480 /*
1481 * Clear noref flag for this subbuffer.
1482 */
1483 lib_ring_buffer_clear_noref(config, &buf->backend,
1d498196
MD
1484 subbuf_index(offsets.end - 1, chan),
1485 handle);
852c2936
MD
1486
1487 /*
1488 * Switch old subbuffer if needed.
1489 */
b5a3dfa5 1490 if (caa_unlikely(offsets.switch_old_end)) {
852c2936 1491 lib_ring_buffer_clear_noref(config, &buf->backend,
1d498196
MD
1492 subbuf_index(offsets.old - 1, chan),
1493 handle);
1494 lib_ring_buffer_switch_old_end(buf, chan, &offsets, ctx->tsc, handle);
852c2936
MD
1495 }
1496
1497 /*
1498 * Populate new subbuffer.
1499 */
b5a3dfa5 1500 if (caa_unlikely(offsets.switch_new_start))
1d498196 1501 lib_ring_buffer_switch_new_start(buf, chan, &offsets, ctx->tsc, handle);
852c2936 1502
b5a3dfa5 1503 if (caa_unlikely(offsets.switch_new_end))
1d498196 1504 lib_ring_buffer_switch_new_end(buf, chan, &offsets, ctx->tsc, handle);
852c2936
MD
1505
1506 ctx->slot_size = offsets.size;
1507 ctx->pre_offset = offsets.begin;
1508 ctx->buf_offset = offsets.begin + offsets.pre_header_padding;
1509 return 0;
1510}
f645cfa7
MD
1511
1512/*
1513 * Force a read (imply TLS fixup for dlopen) of TLS variables.
1514 */
1515void lttng_fixup_ringbuffer_tls(void)
1516{
1517 asm volatile ("" : : "m" (lib_ring_buffer_nesting));
1518}
This page took 0.097373 seconds and 4 git commands to generate.