Hide symbols that shouldn't be part of the ABI
[lttng-ust.git] / src / common / ringbuffer / ring_buffer_frontend.c
CommitLineData
852c2936 1/*
c0c0989a 2 * SPDX-License-Identifier: LGPL-2.1-only
852c2936 3 *
e92f3e28
MD
4 * Copyright (C) 2005-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
852c2936
MD
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
852c2936
MD
37 */
38
3fbec7dc 39#define _LGPL_SOURCE
a6352fd4 40#include <sys/types.h>
431d5cf0
MD
41#include <sys/mman.h>
42#include <sys/stat.h>
03d2d293 43#include <unistd.h>
431d5cf0 44#include <fcntl.h>
03d2d293
MD
45#include <signal.h>
46#include <time.h>
932b85fa 47#include <stdbool.h>
fb31eb73 48#include <stdint.h>
14641deb 49#include <urcu/compiler.h>
a6352fd4 50#include <urcu/ref.h>
8c90a710 51#include <urcu/tls-compat.h>
327d9447 52#include <poll.h>
9d315d6d 53#include "common/macros.h"
14641deb 54
eae3c729 55#include <lttng/ust-utils.h>
0b4b8811 56#include <lttng/ust-ringbuffer-context.h>
3d3a2bb8 57
74cc1f59 58#include "common/smp.h"
0466ac28 59#include "ringbuffer-config.h"
2fed87ae 60#include "vatomic.h"
4931a13e
MD
61#include "backend.h"
62#include "frontend.h"
a6352fd4 63#include "shm.h"
6f97f9c2 64#include "rb-init.h"
27b98e6c 65#include "common/compat/errno.h" /* For ENODATA */
852c2936 66
64493e4f
MD
67/* Print DBG() messages about events lost only every 1048576 hits */
68#define DBG_PRINT_NR_LOST (1UL << 20)
69
34a91bdb
MD
70#define LTTNG_UST_RB_SIG_FLUSH SIGRTMIN
71#define LTTNG_UST_RB_SIG_READ SIGRTMIN + 1
72#define LTTNG_UST_RB_SIG_TEARDOWN SIGRTMIN + 2
03d2d293 73#define CLOCKID CLOCK_MONOTONIC
dddba398
MD
74#define LTTNG_UST_RING_BUFFER_GET_RETRY 10
75#define LTTNG_UST_RING_BUFFER_RETRY_DELAY_MS 10
6f97f9c2 76#define RETRY_DELAY_MS 100 /* 100 ms. */
03d2d293 77
a9ff648c
MD
78/*
79 * Non-static to ensure the compiler does not optimize away the xor.
80 */
95fa2ba4
MJ
81uint8_t lttng_crash_magic_xor[]
82 __attribute__((visibility("hidden")));
a9ff648c
MD
83uint8_t lttng_crash_magic_xor[] = RB_CRASH_DUMP_ABI_MAGIC_XOR;
84
2432c3c9
MD
85/*
86 * Use POSIX SHM: shm_open(3) and shm_unlink(3).
87 * close(2) to close the fd returned by shm_open.
88 * shm_unlink releases the shared memory object name.
89 * ftruncate(2) sets the size of the memory object.
90 * mmap/munmap maps the shared memory obj to a virtual address in the
91 * calling proceess (should be done both in libust and consumer).
92 * See shm_overview(7) for details.
93 * Pass file descriptor returned by shm_open(3) to ltt-sessiond through
94 * a UNIX socket.
95 *
96 * Since we don't need to access the object using its name, we can
97 * immediately shm_unlink(3) it, and only keep the handle with its file
98 * descriptor.
99 */
100
852c2936
MD
101/*
102 * Internal structure representing offsets to use at a sub-buffer switch.
103 */
104struct switch_offsets {
105 unsigned long begin, end, old;
106 size_t pre_header_padding, size;
1ad21f70
MD
107 unsigned int switch_new_start:1, switch_new_end:1, switch_old_start:1,
108 switch_old_end:1;
852c2936
MD
109};
110
16adecf1 111DEFINE_URCU_TLS(unsigned int, lib_ring_buffer_nesting);
852c2936 112
cb7378b3
MD
113/*
114 * wakeup_fd_mutex protects wakeup fd use by timer from concurrent
115 * close.
116 */
117static pthread_mutex_t wakeup_fd_mutex = PTHREAD_MUTEX_INITIALIZER;
118
852c2936 119static
b5457df5
MD
120void lib_ring_buffer_print_errors(struct lttng_ust_ring_buffer_channel *chan,
121 struct lttng_ust_ring_buffer *buf, int cpu,
009769ca 122 struct lttng_ust_shm_handle *handle);
852c2936 123
03d2d293
MD
124/*
125 * Handle timer teardown race wrt memory free of private data by
126 * ring buffer signals are handled by a single thread, which permits
127 * a synchronization point between handling of each signal.
64bf51a6 128 * Protected by the lock within the structure.
03d2d293
MD
129 */
130struct timer_signal_data {
131 pthread_t tid; /* thread id managing signals */
132 int setup_done;
133 int qs_done;
64bf51a6 134 pthread_mutex_t lock;
03d2d293
MD
135};
136
64bf51a6
MD
137static struct timer_signal_data timer_signal = {
138 .tid = 0,
139 .setup_done = 0,
140 .qs_done = 0,
141 .lock = PTHREAD_MUTEX_INITIALIZER,
142};
03d2d293 143
b2c5f61a 144static bool lttng_ust_allow_blocking;
6f97f9c2 145
b2c5f61a 146void lttng_ust_ringbuffer_set_allow_blocking(void)
6f97f9c2 147{
b2c5f61a
MD
148 lttng_ust_allow_blocking = true;
149}
150
151/* Get blocking timeout, in ms */
b5457df5 152static int lttng_ust_ringbuffer_get_timeout(struct lttng_ust_ring_buffer_channel *chan)
b2c5f61a
MD
153{
154 if (!lttng_ust_allow_blocking)
155 return 0;
156 return chan->u.s.blocking_timeout_ms;
6f97f9c2
MD
157}
158
852c2936
MD
159/**
160 * lib_ring_buffer_reset - Reset ring buffer to initial values.
161 * @buf: Ring buffer.
162 *
163 * Effectively empty the ring buffer. Should be called when the buffer is not
164 * used for writing. The ring buffer can be opened for reading, but the reader
165 * should not be using the iterator concurrently with reset. The previous
166 * current iterator record is reset.
167 */
b5457df5 168void lib_ring_buffer_reset(struct lttng_ust_ring_buffer *buf,
38fae1d3 169 struct lttng_ust_shm_handle *handle)
852c2936 170{
b5457df5
MD
171 struct lttng_ust_ring_buffer_channel *chan;
172 const struct lttng_ust_ring_buffer_config *config;
852c2936
MD
173 unsigned int i;
174
34daae3e
MD
175 chan = shmp(handle, buf->backend.chan);
176 if (!chan)
15500a1b 177 return;
34daae3e 178 config = &chan->backend.config;
852c2936
MD
179 /*
180 * Reset iterator first. It will put the subbuffer if it currently holds
181 * it.
182 */
852c2936
MD
183 v_set(config, &buf->offset, 0);
184 for (i = 0; i < chan->backend.num_subbuf; i++) {
15500a1b
MD
185 struct commit_counters_hot *cc_hot;
186 struct commit_counters_cold *cc_cold;
6c737d05 187 uint64_t *ts_end;
15500a1b
MD
188
189 cc_hot = shmp_index(handle, buf->commit_hot, i);
190 if (!cc_hot)
191 return;
192 cc_cold = shmp_index(handle, buf->commit_cold, i);
193 if (!cc_cold)
194 return;
6c737d05
MD
195 ts_end = shmp_index(handle, buf->ts_end, i);
196 if (!ts_end)
197 return;
15500a1b
MD
198 v_set(config, &cc_hot->cc, 0);
199 v_set(config, &cc_hot->seq, 0);
200 v_set(config, &cc_cold->cc_sb, 0);
6c737d05 201 *ts_end = 0;
852c2936 202 }
a6352fd4
MD
203 uatomic_set(&buf->consumed, 0);
204 uatomic_set(&buf->record_disabled, 0);
852c2936 205 v_set(config, &buf->last_tsc, 0);
1d498196 206 lib_ring_buffer_backend_reset(&buf->backend, handle);
852c2936
MD
207 /* Don't reset number of active readers */
208 v_set(config, &buf->records_lost_full, 0);
209 v_set(config, &buf->records_lost_wrap, 0);
210 v_set(config, &buf->records_lost_big, 0);
211 v_set(config, &buf->records_count, 0);
212 v_set(config, &buf->records_overrun, 0);
213 buf->finalized = 0;
214}
852c2936
MD
215
216/**
217 * channel_reset - Reset channel to initial values.
218 * @chan: Channel.
219 *
220 * Effectively empty the channel. Should be called when the channel is not used
221 * for writing. The channel can be opened for reading, but the reader should not
222 * be using the iterator concurrently with reset. The previous current iterator
223 * record is reset.
224 */
b5457df5 225void channel_reset(struct lttng_ust_ring_buffer_channel *chan)
852c2936
MD
226{
227 /*
228 * Reset iterators first. Will put the subbuffer if held for reading.
229 */
a6352fd4 230 uatomic_set(&chan->record_disabled, 0);
852c2936
MD
231 /* Don't reset commit_count_mask, still valid */
232 channel_backend_reset(&chan->backend);
233 /* Don't reset switch/read timer interval */
234 /* Don't reset notifiers and notifier enable bits */
235 /* Don't reset reader reference count */
236}
852c2936 237
a9ff648c 238static
b5457df5 239void init_crash_abi(const struct lttng_ust_ring_buffer_config *config,
a9ff648c 240 struct lttng_crash_abi *crash_abi,
b5457df5 241 struct lttng_ust_ring_buffer *buf,
a9ff648c
MD
242 struct channel_backend *chanb,
243 struct shm_object *shmobj,
244 struct lttng_ust_shm_handle *handle)
245{
246 int i;
247
248 for (i = 0; i < RB_CRASH_DUMP_ABI_MAGIC_LEN; i++)
249 crash_abi->magic[i] = lttng_crash_magic_xor[i] ^ 0xFF;
250 crash_abi->mmap_length = shmobj->memory_map_size;
251 crash_abi->endian = RB_CRASH_ENDIAN;
252 crash_abi->major = RB_CRASH_DUMP_ABI_MAJOR;
253 crash_abi->minor = RB_CRASH_DUMP_ABI_MINOR;
254 crash_abi->word_size = sizeof(unsigned long);
255 crash_abi->layout_type = LTTNG_CRASH_TYPE_UST;
256
257 /* Offset of fields */
258 crash_abi->offset.prod_offset =
259 (uint32_t) ((char *) &buf->offset - (char *) buf);
260 crash_abi->offset.consumed_offset =
261 (uint32_t) ((char *) &buf->consumed - (char *) buf);
262 crash_abi->offset.commit_hot_array =
263 (uint32_t) ((char *) shmp(handle, buf->commit_hot) - (char *) buf);
264 crash_abi->offset.commit_hot_seq =
265 offsetof(struct commit_counters_hot, seq);
266 crash_abi->offset.buf_wsb_array =
267 (uint32_t) ((char *) shmp(handle, buf->backend.buf_wsb) - (char *) buf);
268 crash_abi->offset.buf_wsb_id =
b5457df5 269 offsetof(struct lttng_ust_ring_buffer_backend_subbuffer, id);
a9ff648c
MD
270 crash_abi->offset.sb_array =
271 (uint32_t) ((char *) shmp(handle, buf->backend.array) - (char *) buf);
272 crash_abi->offset.sb_array_shmp_offset =
b5457df5 273 offsetof(struct lttng_ust_ring_buffer_backend_pages_shmp,
a9ff648c
MD
274 shmp._ref.offset);
275 crash_abi->offset.sb_backend_p_offset =
b5457df5 276 offsetof(struct lttng_ust_ring_buffer_backend_pages,
a9ff648c
MD
277 p._ref.offset);
278
279 /* Field length */
280 crash_abi->length.prod_offset = sizeof(buf->offset);
281 crash_abi->length.consumed_offset = sizeof(buf->consumed);
282 crash_abi->length.commit_hot_seq =
283 sizeof(((struct commit_counters_hot *) NULL)->seq);
284 crash_abi->length.buf_wsb_id =
b5457df5 285 sizeof(((struct lttng_ust_ring_buffer_backend_subbuffer *) NULL)->id);
a9ff648c 286 crash_abi->length.sb_array_shmp_offset =
b5457df5 287 sizeof(((struct lttng_ust_ring_buffer_backend_pages_shmp *) NULL)->shmp._ref.offset);
a9ff648c 288 crash_abi->length.sb_backend_p_offset =
b5457df5 289 sizeof(((struct lttng_ust_ring_buffer_backend_pages *) NULL)->p._ref.offset);
a9ff648c
MD
290
291 /* Array stride */
292 crash_abi->stride.commit_hot_array =
293 sizeof(struct commit_counters_hot);
294 crash_abi->stride.buf_wsb_array =
b5457df5 295 sizeof(struct lttng_ust_ring_buffer_backend_subbuffer);
a9ff648c 296 crash_abi->stride.sb_array =
b5457df5 297 sizeof(struct lttng_ust_ring_buffer_backend_pages_shmp);
a9ff648c
MD
298
299 /* Buffer constants */
300 crash_abi->buf_size = chanb->buf_size;
301 crash_abi->subbuf_size = chanb->subbuf_size;
302 crash_abi->num_subbuf = chanb->num_subbuf;
303 crash_abi->mode = (uint32_t) chanb->config.mode;
304
305 if (config->cb.content_size_field) {
306 size_t offset, length;
307
308 config->cb.content_size_field(config, &offset, &length);
309 crash_abi->offset.content_size = offset;
310 crash_abi->length.content_size = length;
311 } else {
312 crash_abi->offset.content_size = 0;
313 crash_abi->length.content_size = 0;
314 }
315 if (config->cb.packet_size_field) {
316 size_t offset, length;
317
318 config->cb.packet_size_field(config, &offset, &length);
319 crash_abi->offset.packet_size = offset;
320 crash_abi->length.packet_size = length;
321 } else {
322 crash_abi->offset.packet_size = 0;
323 crash_abi->length.packet_size = 0;
324 }
325}
326
852c2936
MD
327/*
328 * Must be called under cpu hotplug protection.
329 */
b5457df5 330int lib_ring_buffer_create(struct lttng_ust_ring_buffer *buf,
a6352fd4 331 struct channel_backend *chanb, int cpu,
38fae1d3 332 struct lttng_ust_shm_handle *handle,
1d498196 333 struct shm_object *shmobj)
852c2936 334{
b5457df5
MD
335 const struct lttng_ust_ring_buffer_config *config = &chanb->config;
336 struct lttng_ust_ring_buffer_channel *chan = caa_container_of(chanb,
337 struct lttng_ust_ring_buffer_channel, backend);
338 struct lttng_ust_ring_buffer_backend_subbuffer *wsb;
339 struct lttng_ust_ring_buffer_channel *shmp_chan;
15500a1b 340 struct commit_counters_hot *cc_hot;
f0fde1c3 341 void *priv = channel_get_private_config(chan);
852c2936 342 size_t subbuf_header_size;
2fed87ae 343 uint64_t tsc;
852c2936
MD
344 int ret;
345
346 /* Test for cpu hotplug */
347 if (buf->backend.allocated)
348 return 0;
349
1d498196
MD
350 align_shm(shmobj, __alignof__(struct commit_counters_hot));
351 set_shmp(buf->commit_hot,
352 zalloc_shm(shmobj,
353 sizeof(struct commit_counters_hot) * chan->backend.num_subbuf));
354 if (!shmp(handle, buf->commit_hot)) {
a9ff648c 355 return -ENOMEM;
852c2936
MD
356 }
357
1d498196
MD
358 align_shm(shmobj, __alignof__(struct commit_counters_cold));
359 set_shmp(buf->commit_cold,
360 zalloc_shm(shmobj,
361 sizeof(struct commit_counters_cold) * chan->backend.num_subbuf));
362 if (!shmp(handle, buf->commit_cold)) {
852c2936
MD
363 ret = -ENOMEM;
364 goto free_commit;
365 }
366
6c737d05
MD
367 align_shm(shmobj, __alignof__(uint64_t));
368 set_shmp(buf->ts_end,
369 zalloc_shm(shmobj,
370 sizeof(uint64_t) * chan->backend.num_subbuf));
371 if (!shmp(handle, buf->ts_end)) {
372 ret = -ENOMEM;
373 goto free_commit_cold;
374 }
375
376
a9ff648c
MD
377 ret = lib_ring_buffer_backend_create(&buf->backend, &chan->backend,
378 cpu, handle, shmobj);
379 if (ret) {
380 goto free_init;
381 }
382
852c2936
MD
383 /*
384 * Write the subbuffer header for first subbuffer so we know the total
385 * duration of data gathering.
386 */
387 subbuf_header_size = config->cb.subbuffer_header_size();
388 v_set(config, &buf->offset, subbuf_header_size);
15500a1b
MD
389 wsb = shmp_index(handle, buf->backend.buf_wsb, 0);
390 if (!wsb) {
391 ret = -EPERM;
392 goto free_chanbuf;
393 }
394 subbuffer_id_clear_noref(config, &wsb->id);
395 shmp_chan = shmp(handle, buf->backend.chan);
396 if (!shmp_chan) {
397 ret = -EPERM;
398 goto free_chanbuf;
399 }
400 tsc = config->cb.ring_buffer_clock_read(shmp_chan);
1d498196 401 config->cb.buffer_begin(buf, tsc, 0, handle);
15500a1b
MD
402 cc_hot = shmp_index(handle, buf->commit_hot, 0);
403 if (!cc_hot) {
404 ret = -EPERM;
405 goto free_chanbuf;
406 }
407 v_add(config, subbuf_header_size, &cc_hot->cc);
408 v_add(config, subbuf_header_size, &cc_hot->seq);
852c2936
MD
409
410 if (config->cb.buffer_create) {
1d498196 411 ret = config->cb.buffer_create(buf, priv, cpu, chanb->name, handle);
852c2936 412 if (ret)
a9ff648c 413 goto free_chanbuf;
852c2936 414 }
a9ff648c
MD
415
416 init_crash_abi(config, &buf->crash_abi, buf, chanb, shmobj, handle);
417
852c2936 418 buf->backend.allocated = 1;
852c2936
MD
419 return 0;
420
421 /* Error handling */
422free_init:
6c737d05
MD
423 /* ts_end will be freed by shm teardown */
424free_commit_cold:
a6352fd4 425 /* commit_cold will be freed by shm teardown */
852c2936 426free_commit:
a6352fd4 427 /* commit_hot will be freed by shm teardown */
852c2936 428free_chanbuf:
852c2936
MD
429 return ret;
430}
431
03d2d293 432static
2208d8b5
MJ
433void lib_ring_buffer_channel_switch_timer(int sig __attribute__((unused)),
434 siginfo_t *si, void *uc __attribute__((unused)))
852c2936 435{
b5457df5 436 const struct lttng_ust_ring_buffer_config *config;
03d2d293 437 struct lttng_ust_shm_handle *handle;
b5457df5 438 struct lttng_ust_ring_buffer_channel *chan;
03d2d293
MD
439 int cpu;
440
441 assert(CMM_LOAD_SHARED(timer_signal.tid) == pthread_self());
442
443 chan = si->si_value.sival_ptr;
444 handle = chan->handle;
445 config = &chan->backend.config;
852c2936 446
34a91bdb 447 DBG("Switch timer for channel %p\n", chan);
03d2d293 448
4dcd7e80
MD
449 /*
450 * Only flush buffers periodically if readers are active.
451 */
cb7378b3 452 pthread_mutex_lock(&wakeup_fd_mutex);
03d2d293
MD
453 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU) {
454 for_each_possible_cpu(cpu) {
b5457df5 455 struct lttng_ust_ring_buffer *buf =
03d2d293 456 shmp(handle, chan->backend.buf[cpu].shmp);
34daae3e
MD
457
458 if (!buf)
15500a1b 459 goto end;
4dcd7e80
MD
460 if (uatomic_read(&buf->active_readers))
461 lib_ring_buffer_switch_slow(buf, SWITCH_ACTIVE,
462 chan->handle);
03d2d293
MD
463 }
464 } else {
b5457df5 465 struct lttng_ust_ring_buffer *buf =
03d2d293
MD
466 shmp(handle, chan->backend.buf[0].shmp);
467
34daae3e 468 if (!buf)
15500a1b 469 goto end;
34a91bdb
MD
470 if (uatomic_read(&buf->active_readers))
471 lib_ring_buffer_switch_slow(buf, SWITCH_ACTIVE,
472 chan->handle);
473 }
15500a1b 474end:
34a91bdb
MD
475 pthread_mutex_unlock(&wakeup_fd_mutex);
476 return;
477}
478
b07cd987 479static
b5457df5
MD
480int lib_ring_buffer_poll_deliver(const struct lttng_ust_ring_buffer_config *config,
481 struct lttng_ust_ring_buffer *buf,
482 struct lttng_ust_ring_buffer_channel *chan,
b07cd987
MD
483 struct lttng_ust_shm_handle *handle)
484{
485 unsigned long consumed_old, consumed_idx, commit_count, write_offset;
15500a1b 486 struct commit_counters_cold *cc_cold;
b07cd987
MD
487
488 consumed_old = uatomic_read(&buf->consumed);
489 consumed_idx = subbuf_index(consumed_old, chan);
15500a1b
MD
490 cc_cold = shmp_index(handle, buf->commit_cold, consumed_idx);
491 if (!cc_cold)
492 return 0;
493 commit_count = v_read(config, &cc_cold->cc_sb);
b07cd987
MD
494 /*
495 * No memory barrier here, since we are only interested
496 * in a statistically correct polling result. The next poll will
497 * get the data is we are racing. The mb() that ensures correct
498 * memory order is in get_subbuf.
499 */
500 write_offset = v_read(config, &buf->offset);
501
502 /*
503 * Check that the subbuffer we are trying to consume has been
504 * already fully committed.
505 */
506
507 if (((commit_count - chan->backend.subbuf_size)
508 & chan->commit_count_mask)
509 - (buf_trunc(consumed_old, chan)
510 >> chan->backend.num_subbuf_order)
511 != 0)
512 return 0;
513
514 /*
515 * Check that we are not about to read the same subbuffer in
516 * which the writer head is.
517 */
518 if (subbuf_trunc(write_offset, chan) - subbuf_trunc(consumed_old, chan)
519 == 0)
520 return 0;
521
522 return 1;
523}
524
525static
b5457df5 526void lib_ring_buffer_wakeup(struct lttng_ust_ring_buffer *buf,
b07cd987
MD
527 struct lttng_ust_shm_handle *handle)
528{
529 int wakeup_fd = shm_get_wakeup_fd(handle, &buf->self._ref);
530 sigset_t sigpipe_set, pending_set, old_set;
531 int ret, sigpipe_was_pending = 0;
532
533 if (wakeup_fd < 0)
534 return;
535
536 /*
537 * Wake-up the other end by writing a null byte in the pipe
538 * (non-blocking). Important note: Because writing into the
539 * pipe is non-blocking (and therefore we allow dropping wakeup
540 * data, as long as there is wakeup data present in the pipe
541 * buffer to wake up the consumer), the consumer should perform
542 * the following sequence for waiting:
543 * 1) empty the pipe (reads).
544 * 2) check if there is data in the buffer.
545 * 3) wait on the pipe (poll).
546 *
547 * Discard the SIGPIPE from write(), not disturbing any SIGPIPE
548 * that might be already pending. If a bogus SIGPIPE is sent to
549 * the entire process concurrently by a malicious user, it may
550 * be simply discarded.
551 */
552 ret = sigemptyset(&pending_set);
553 assert(!ret);
554 /*
555 * sigpending returns the mask of signals that are _both_
556 * blocked for the thread _and_ pending for either the thread or
557 * the entire process.
558 */
559 ret = sigpending(&pending_set);
560 assert(!ret);
561 sigpipe_was_pending = sigismember(&pending_set, SIGPIPE);
562 /*
563 * If sigpipe was pending, it means it was already blocked, so
564 * no need to block it.
565 */
566 if (!sigpipe_was_pending) {
567 ret = sigemptyset(&sigpipe_set);
568 assert(!ret);
569 ret = sigaddset(&sigpipe_set, SIGPIPE);
570 assert(!ret);
571 ret = pthread_sigmask(SIG_BLOCK, &sigpipe_set, &old_set);
572 assert(!ret);
573 }
574 do {
575 ret = write(wakeup_fd, "", 1);
576 } while (ret == -1L && errno == EINTR);
577 if (ret == -1L && errno == EPIPE && !sigpipe_was_pending) {
578 struct timespec timeout = { 0, 0 };
579 do {
580 ret = sigtimedwait(&sigpipe_set, NULL,
581 &timeout);
582 } while (ret == -1L && errno == EINTR);
583 }
584 if (!sigpipe_was_pending) {
585 ret = pthread_sigmask(SIG_SETMASK, &old_set, NULL);
586 assert(!ret);
587 }
588}
589
34a91bdb 590static
b5457df5 591void lib_ring_buffer_channel_do_read(struct lttng_ust_ring_buffer_channel *chan)
34a91bdb 592{
b5457df5 593 const struct lttng_ust_ring_buffer_config *config;
34a91bdb
MD
594 struct lttng_ust_shm_handle *handle;
595 int cpu;
596
597 handle = chan->handle;
598 config = &chan->backend.config;
599
600 /*
601 * Only flush buffers periodically if readers are active.
602 */
603 pthread_mutex_lock(&wakeup_fd_mutex);
604 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU) {
605 for_each_possible_cpu(cpu) {
b5457df5 606 struct lttng_ust_ring_buffer *buf =
34a91bdb
MD
607 shmp(handle, chan->backend.buf[cpu].shmp);
608
34daae3e 609 if (!buf)
15500a1b 610 goto end;
34a91bdb
MD
611 if (uatomic_read(&buf->active_readers)
612 && lib_ring_buffer_poll_deliver(config, buf,
613 chan, handle)) {
614 lib_ring_buffer_wakeup(buf, handle);
615 }
616 }
617 } else {
b5457df5 618 struct lttng_ust_ring_buffer *buf =
34a91bdb
MD
619 shmp(handle, chan->backend.buf[0].shmp);
620
34daae3e 621 if (!buf)
15500a1b 622 goto end;
34a91bdb
MD
623 if (uatomic_read(&buf->active_readers)
624 && lib_ring_buffer_poll_deliver(config, buf,
625 chan, handle)) {
626 lib_ring_buffer_wakeup(buf, handle);
627 }
03d2d293 628 }
15500a1b 629end:
cb7378b3 630 pthread_mutex_unlock(&wakeup_fd_mutex);
34a91bdb
MD
631}
632
633static
2208d8b5
MJ
634void lib_ring_buffer_channel_read_timer(int sig __attribute__((unused)),
635 siginfo_t *si, void *uc __attribute__((unused)))
34a91bdb 636{
b5457df5 637 struct lttng_ust_ring_buffer_channel *chan;
34a91bdb
MD
638
639 assert(CMM_LOAD_SHARED(timer_signal.tid) == pthread_self());
640 chan = si->si_value.sival_ptr;
641 DBG("Read timer for channel %p\n", chan);
642 lib_ring_buffer_channel_do_read(chan);
03d2d293
MD
643 return;
644}
645
646static
647void rb_setmask(sigset_t *mask)
648{
649 int ret;
650
651 ret = sigemptyset(mask);
652 if (ret) {
653 PERROR("sigemptyset");
654 }
34a91bdb
MD
655 ret = sigaddset(mask, LTTNG_UST_RB_SIG_FLUSH);
656 if (ret) {
657 PERROR("sigaddset");
658 }
659 ret = sigaddset(mask, LTTNG_UST_RB_SIG_READ);
03d2d293
MD
660 if (ret) {
661 PERROR("sigaddset");
662 }
663 ret = sigaddset(mask, LTTNG_UST_RB_SIG_TEARDOWN);
664 if (ret) {
665 PERROR("sigaddset");
666 }
667}
668
669static
2208d8b5 670void *sig_thread(void *arg __attribute__((unused)))
03d2d293
MD
671{
672 sigset_t mask;
673 siginfo_t info;
674 int signr;
675
676 /* Only self thread will receive signal mask. */
677 rb_setmask(&mask);
678 CMM_STORE_SHARED(timer_signal.tid, pthread_self());
679
680 for (;;) {
681 signr = sigwaitinfo(&mask, &info);
682 if (signr == -1) {
34a91bdb
MD
683 if (errno != EINTR)
684 PERROR("sigwaitinfo");
03d2d293
MD
685 continue;
686 }
34a91bdb 687 if (signr == LTTNG_UST_RB_SIG_FLUSH) {
03d2d293
MD
688 lib_ring_buffer_channel_switch_timer(info.si_signo,
689 &info, NULL);
34a91bdb
MD
690 } else if (signr == LTTNG_UST_RB_SIG_READ) {
691 lib_ring_buffer_channel_read_timer(info.si_signo,
692 &info, NULL);
03d2d293
MD
693 } else if (signr == LTTNG_UST_RB_SIG_TEARDOWN) {
694 cmm_smp_mb();
695 CMM_STORE_SHARED(timer_signal.qs_done, 1);
696 cmm_smp_mb();
697 } else {
698 ERR("Unexptected signal %d\n", info.si_signo);
699 }
700 }
701 return NULL;
702}
703
704/*
03d2d293
MD
705 * Ensure only a single thread listens on the timer signal.
706 */
707static
708void lib_ring_buffer_setup_timer_thread(void)
709{
710 pthread_t thread;
711 int ret;
712
64bf51a6 713 pthread_mutex_lock(&timer_signal.lock);
03d2d293 714 if (timer_signal.setup_done)
64bf51a6 715 goto end;
03d2d293
MD
716
717 ret = pthread_create(&thread, NULL, &sig_thread, NULL);
718 if (ret) {
719 errno = ret;
720 PERROR("pthread_create");
721 }
722 ret = pthread_detach(thread);
723 if (ret) {
724 errno = ret;
725 PERROR("pthread_detach");
726 }
727 timer_signal.setup_done = 1;
64bf51a6
MD
728end:
729 pthread_mutex_unlock(&timer_signal.lock);
852c2936
MD
730}
731
03d2d293 732/*
64bf51a6 733 * Wait for signal-handling thread quiescent state.
03d2d293 734 */
64bf51a6
MD
735static
736void lib_ring_buffer_wait_signal_thread_qs(unsigned int signr)
737{
738 sigset_t pending_set;
739 int ret;
740
741 /*
742 * We need to be the only thread interacting with the thread
743 * that manages signals for teardown synchronization.
744 */
745 pthread_mutex_lock(&timer_signal.lock);
746
747 /*
748 * Ensure we don't have any signal queued for this channel.
749 */
750 for (;;) {
751 ret = sigemptyset(&pending_set);
752 if (ret == -1) {
753 PERROR("sigemptyset");
754 }
755 ret = sigpending(&pending_set);
756 if (ret == -1) {
757 PERROR("sigpending");
758 }
759 if (!sigismember(&pending_set, signr))
760 break;
761 caa_cpu_relax();
762 }
763
764 /*
765 * From this point, no new signal handler will be fired that
766 * would try to access "chan". However, we still need to wait
767 * for any currently executing handler to complete.
768 */
769 cmm_smp_mb();
770 CMM_STORE_SHARED(timer_signal.qs_done, 0);
771 cmm_smp_mb();
772
773 /*
774 * Kill with LTTNG_UST_RB_SIG_TEARDOWN, so signal management
775 * thread wakes up.
776 */
777 kill(getpid(), LTTNG_UST_RB_SIG_TEARDOWN);
778
779 while (!CMM_LOAD_SHARED(timer_signal.qs_done))
780 caa_cpu_relax();
781 cmm_smp_mb();
782
783 pthread_mutex_unlock(&timer_signal.lock);
784}
785
03d2d293 786static
b5457df5 787void lib_ring_buffer_channel_switch_timer_start(struct lttng_ust_ring_buffer_channel *chan)
852c2936 788{
03d2d293
MD
789 struct sigevent sev;
790 struct itimerspec its;
791 int ret;
852c2936 792
03d2d293 793 if (!chan->switch_timer_interval || chan->switch_timer_enabled)
852c2936
MD
794 return;
795
03d2d293
MD
796 chan->switch_timer_enabled = 1;
797
798 lib_ring_buffer_setup_timer_thread();
799
ba702529 800 memset(&sev, 0, sizeof(sev));
03d2d293 801 sev.sigev_notify = SIGEV_SIGNAL;
34a91bdb 802 sev.sigev_signo = LTTNG_UST_RB_SIG_FLUSH;
03d2d293
MD
803 sev.sigev_value.sival_ptr = chan;
804 ret = timer_create(CLOCKID, &sev, &chan->switch_timer);
805 if (ret == -1) {
806 PERROR("timer_create");
807 }
808
809 its.it_value.tv_sec = chan->switch_timer_interval / 1000000;
f8921d33 810 its.it_value.tv_nsec = (chan->switch_timer_interval % 1000000) * 1000;
03d2d293
MD
811 its.it_interval.tv_sec = its.it_value.tv_sec;
812 its.it_interval.tv_nsec = its.it_value.tv_nsec;
813
814 ret = timer_settime(chan->switch_timer, 0, &its, NULL);
815 if (ret == -1) {
816 PERROR("timer_settime");
817 }
818}
819
03d2d293 820static
b5457df5 821void lib_ring_buffer_channel_switch_timer_stop(struct lttng_ust_ring_buffer_channel *chan)
03d2d293 822{
34a91bdb 823 int ret;
03d2d293
MD
824
825 if (!chan->switch_timer_interval || !chan->switch_timer_enabled)
826 return;
827
828 ret = timer_delete(chan->switch_timer);
829 if (ret == -1) {
830 PERROR("timer_delete");
831 }
832
64bf51a6 833 lib_ring_buffer_wait_signal_thread_qs(LTTNG_UST_RB_SIG_FLUSH);
03d2d293
MD
834
835 chan->switch_timer = 0;
836 chan->switch_timer_enabled = 0;
852c2936
MD
837}
838
34a91bdb 839static
b5457df5 840void lib_ring_buffer_channel_read_timer_start(struct lttng_ust_ring_buffer_channel *chan)
852c2936 841{
b5457df5 842 const struct lttng_ust_ring_buffer_config *config = &chan->backend.config;
34a91bdb
MD
843 struct sigevent sev;
844 struct itimerspec its;
845 int ret;
852c2936 846
34a91bdb
MD
847 if (config->wakeup != RING_BUFFER_WAKEUP_BY_TIMER
848 || !chan->read_timer_interval || chan->read_timer_enabled)
849 return;
852c2936 850
34a91bdb 851 chan->read_timer_enabled = 1;
852c2936 852
34a91bdb 853 lib_ring_buffer_setup_timer_thread();
852c2936 854
34a91bdb
MD
855 sev.sigev_notify = SIGEV_SIGNAL;
856 sev.sigev_signo = LTTNG_UST_RB_SIG_READ;
857 sev.sigev_value.sival_ptr = chan;
858 ret = timer_create(CLOCKID, &sev, &chan->read_timer);
859 if (ret == -1) {
860 PERROR("timer_create");
861 }
852c2936 862
34a91bdb 863 its.it_value.tv_sec = chan->read_timer_interval / 1000000;
f8921d33 864 its.it_value.tv_nsec = (chan->read_timer_interval % 1000000) * 1000;
34a91bdb
MD
865 its.it_interval.tv_sec = its.it_value.tv_sec;
866 its.it_interval.tv_nsec = its.it_value.tv_nsec;
852c2936 867
34a91bdb
MD
868 ret = timer_settime(chan->read_timer, 0, &its, NULL);
869 if (ret == -1) {
870 PERROR("timer_settime");
871 }
852c2936
MD
872}
873
34a91bdb 874static
b5457df5 875void lib_ring_buffer_channel_read_timer_stop(struct lttng_ust_ring_buffer_channel *chan)
852c2936 876{
b5457df5 877 const struct lttng_ust_ring_buffer_config *config = &chan->backend.config;
34a91bdb 878 int ret;
852c2936
MD
879
880 if (config->wakeup != RING_BUFFER_WAKEUP_BY_TIMER
34a91bdb 881 || !chan->read_timer_interval || !chan->read_timer_enabled)
852c2936
MD
882 return;
883
34a91bdb
MD
884 ret = timer_delete(chan->read_timer);
885 if (ret == -1) {
886 PERROR("timer_delete");
887 }
888
852c2936
MD
889 /*
890 * do one more check to catch data that has been written in the last
891 * timer period.
892 */
34a91bdb
MD
893 lib_ring_buffer_channel_do_read(chan);
894
64bf51a6 895 lib_ring_buffer_wait_signal_thread_qs(LTTNG_UST_RB_SIG_READ);
34a91bdb
MD
896
897 chan->read_timer = 0;
898 chan->read_timer_enabled = 0;
852c2936
MD
899}
900
b5457df5 901static void channel_unregister_notifiers(struct lttng_ust_ring_buffer_channel *chan,
2208d8b5 902 struct lttng_ust_shm_handle *handle __attribute__((unused)))
852c2936 903{
03d2d293 904 lib_ring_buffer_channel_switch_timer_stop(chan);
34a91bdb 905 lib_ring_buffer_channel_read_timer_stop(chan);
852c2936
MD
906}
907
b5457df5 908static void channel_print_errors(struct lttng_ust_ring_buffer_channel *chan,
009769ca
MD
909 struct lttng_ust_shm_handle *handle)
910{
b5457df5 911 const struct lttng_ust_ring_buffer_config *config =
009769ca
MD
912 &chan->backend.config;
913 int cpu;
914
915 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU) {
916 for_each_possible_cpu(cpu) {
b5457df5 917 struct lttng_ust_ring_buffer *buf =
009769ca 918 shmp(handle, chan->backend.buf[cpu].shmp);
15500a1b
MD
919 if (buf)
920 lib_ring_buffer_print_errors(chan, buf, cpu, handle);
009769ca
MD
921 }
922 } else {
b5457df5 923 struct lttng_ust_ring_buffer *buf =
009769ca
MD
924 shmp(handle, chan->backend.buf[0].shmp);
925
15500a1b
MD
926 if (buf)
927 lib_ring_buffer_print_errors(chan, buf, -1, handle);
009769ca
MD
928 }
929}
930
b5457df5 931static void channel_free(struct lttng_ust_ring_buffer_channel *chan,
6548fca4
MD
932 struct lttng_ust_shm_handle *handle,
933 int consumer)
852c2936 934{
74d81a6c 935 channel_backend_free(&chan->backend, handle);
431d5cf0 936 /* chan is freed by shm teardown */
6548fca4 937 shm_object_table_destroy(handle->table, consumer);
1d498196 938 free(handle);
852c2936
MD
939}
940
941/**
942 * channel_create - Create channel.
943 * @config: ring buffer instance configuration
944 * @name: name of the channel
f0fde1c3
MD
945 * @priv_data_align: alignment, in bytes, of the private data area. (config)
946 * @priv_data_size: length, in bytes, of the private data area. (config)
947 * @priv_data_init: initialization data for private data. (config)
948 * @priv: local private data (memory owner by caller)
852c2936
MD
949 * @buf_addr: pointer the the beginning of the preallocated buffer contiguous
950 * address mapping. It is used only by RING_BUFFER_STATIC
951 * configuration. It can be set to NULL for other backends.
952 * @subbuf_size: subbuffer size
953 * @num_subbuf: number of subbuffers
954 * @switch_timer_interval: Time interval (in us) to fill sub-buffers with
955 * padding to let readers get those sub-buffers.
956 * Used for live streaming.
957 * @read_timer_interval: Time interval (in us) to wake up pending readers.
5ea386c3
MD
958 * @stream_fds: array of stream file descriptors.
959 * @nr_stream_fds: number of file descriptors in array.
852c2936
MD
960 *
961 * Holds cpu hotplug.
962 * Returns NULL on failure.
963 */
b5457df5 964struct lttng_ust_shm_handle *channel_create(const struct lttng_ust_ring_buffer_config *config,
a3f61e7f 965 const char *name,
a3f61e7f
MD
966 size_t priv_data_align,
967 size_t priv_data_size,
d028eddb 968 void *priv_data_init,
f0fde1c3 969 void *priv,
2208d8b5 970 void *buf_addr __attribute__((unused)), size_t subbuf_size,
852c2936 971 size_t num_subbuf, unsigned int switch_timer_interval,
a9ff648c 972 unsigned int read_timer_interval,
b2c5f61a
MD
973 const int *stream_fds, int nr_stream_fds,
974 int64_t blocking_timeout)
852c2936 975{
24622edc 976 int ret;
a3f61e7f 977 size_t shmsize, chansize;
b5457df5 978 struct lttng_ust_ring_buffer_channel *chan;
38fae1d3 979 struct lttng_ust_shm_handle *handle;
1d498196 980 struct shm_object *shmobj;
74d81a6c 981 unsigned int nr_streams;
b2c5f61a 982 int64_t blocking_timeout_ms;
74d81a6c
MD
983
984 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU)
985 nr_streams = num_possible_cpus();
986 else
987 nr_streams = 1;
852c2936 988
5ea386c3
MD
989 if (nr_stream_fds != nr_streams)
990 return NULL;
991
b2c5f61a
MD
992 if (blocking_timeout < -1) {
993 return NULL;
994 }
995 /* usec to msec */
996 if (blocking_timeout == -1) {
997 blocking_timeout_ms = -1;
998 } else {
999 blocking_timeout_ms = blocking_timeout / 1000;
1000 if (blocking_timeout_ms != (int32_t) blocking_timeout_ms) {
1001 return NULL;
1002 }
1003 }
1004
852c2936
MD
1005 if (lib_ring_buffer_check_config(config, switch_timer_interval,
1006 read_timer_interval))
1007 return NULL;
1008
38fae1d3 1009 handle = zmalloc(sizeof(struct lttng_ust_shm_handle));
431d5cf0
MD
1010 if (!handle)
1011 return NULL;
1012
1d498196
MD
1013 /* Allocate table for channel + per-cpu buffers */
1014 handle->table = shm_object_table_create(1 + num_possible_cpus());
1015 if (!handle->table)
1016 goto error_table_alloc;
852c2936 1017
1d498196 1018 /* Calculate the shm allocation layout */
b5457df5
MD
1019 shmsize = sizeof(struct lttng_ust_ring_buffer_channel);
1020 shmsize += lttng_ust_offset_align(shmsize, __alignof__(struct lttng_ust_ring_buffer_shmp));
1021 shmsize += sizeof(struct lttng_ust_ring_buffer_shmp) * nr_streams;
a3f61e7f 1022 chansize = shmsize;
74d81a6c 1023 if (priv_data_align)
b72687b8 1024 shmsize += lttng_ust_offset_align(shmsize, priv_data_align);
a3f61e7f 1025 shmsize += priv_data_size;
a6352fd4 1026
74d81a6c 1027 /* Allocate normal memory for channel (not shared) */
a9ff648c 1028 shmobj = shm_object_table_alloc(handle->table, shmsize, SHM_OBJECT_MEM,
4b68c31f 1029 -1, -1);
b5a14697
MD
1030 if (!shmobj)
1031 goto error_append;
b5457df5 1032 /* struct lttng_ust_ring_buffer_channel is at object 0, offset 0 (hardcoded) */
a3f61e7f 1033 set_shmp(handle->chan, zalloc_shm(shmobj, chansize));
57773204
MD
1034 assert(handle->chan._ref.index == 0);
1035 assert(handle->chan._ref.offset == 0);
1d498196 1036 chan = shmp(handle, handle->chan);
a6352fd4 1037 if (!chan)
1d498196 1038 goto error_append;
74d81a6c 1039 chan->nr_streams = nr_streams;
a6352fd4 1040
a3f61e7f
MD
1041 /* space for private data */
1042 if (priv_data_size) {
f0fde1c3
MD
1043 void *priv_config;
1044
a3f61e7f
MD
1045 DECLARE_SHMP(void, priv_data_alloc);
1046
1047 align_shm(shmobj, priv_data_align);
1048 chan->priv_data_offset = shmobj->allocated_len;
1049 set_shmp(priv_data_alloc, zalloc_shm(shmobj, priv_data_size));
1050 if (!shmp(handle, priv_data_alloc))
1051 goto error_append;
f0fde1c3
MD
1052 priv_config = channel_get_private_config(chan);
1053 memcpy(priv_config, priv_data_init, priv_data_size);
a3f61e7f
MD
1054 } else {
1055 chan->priv_data_offset = -1;
a3f61e7f
MD
1056 }
1057
b2c5f61a
MD
1058 chan->u.s.blocking_timeout_ms = (int32_t) blocking_timeout_ms;
1059
f0fde1c3
MD
1060 channel_set_private(chan, priv);
1061
a3f61e7f 1062 ret = channel_backend_init(&chan->backend, name, config,
a9ff648c 1063 subbuf_size, num_subbuf, handle,
5ea386c3 1064 stream_fds);
852c2936 1065 if (ret)
1d498196 1066 goto error_backend_init;
852c2936 1067
03d2d293 1068 chan->handle = handle;
852c2936 1069 chan->commit_count_mask = (~0UL >> chan->backend.num_subbuf_order);
852c2936 1070
34a91bdb
MD
1071 chan->switch_timer_interval = switch_timer_interval;
1072 chan->read_timer_interval = read_timer_interval;
03d2d293 1073 lib_ring_buffer_channel_switch_timer_start(chan);
34a91bdb 1074 lib_ring_buffer_channel_read_timer_start(chan);
852c2936 1075
431d5cf0 1076 return handle;
852c2936 1077
1d498196
MD
1078error_backend_init:
1079error_append:
6548fca4 1080 shm_object_table_destroy(handle->table, 1);
1d498196 1081error_table_alloc:
431d5cf0 1082 free(handle);
852c2936
MD
1083 return NULL;
1084}
852c2936 1085
74d81a6c 1086struct lttng_ust_shm_handle *channel_handle_create(void *data,
ff0f5728
MD
1087 uint64_t memory_map_size,
1088 int wakeup_fd)
193183fb 1089{
38fae1d3 1090 struct lttng_ust_shm_handle *handle;
193183fb
MD
1091 struct shm_object *object;
1092
38fae1d3 1093 handle = zmalloc(sizeof(struct lttng_ust_shm_handle));
193183fb
MD
1094 if (!handle)
1095 return NULL;
1096
1097 /* Allocate table for channel + per-cpu buffers */
1098 handle->table = shm_object_table_create(1 + num_possible_cpus());
1099 if (!handle->table)
1100 goto error_table_alloc;
1101 /* Add channel object */
74d81a6c 1102 object = shm_object_table_append_mem(handle->table, data,
ff0f5728 1103 memory_map_size, wakeup_fd);
193183fb
MD
1104 if (!object)
1105 goto error_table_object;
b5457df5 1106 /* struct lttng_ust_ring_buffer_channel is at object 0, offset 0 (hardcoded) */
57773204
MD
1107 handle->chan._ref.index = 0;
1108 handle->chan._ref.offset = 0;
193183fb
MD
1109 return handle;
1110
1111error_table_object:
6548fca4 1112 shm_object_table_destroy(handle->table, 0);
193183fb
MD
1113error_table_alloc:
1114 free(handle);
1115 return NULL;
1116}
1117
38fae1d3 1118int channel_handle_add_stream(struct lttng_ust_shm_handle *handle,
74d81a6c
MD
1119 int shm_fd, int wakeup_fd, uint32_t stream_nr,
1120 uint64_t memory_map_size)
193183fb
MD
1121{
1122 struct shm_object *object;
1123
1124 /* Add stream object */
74d81a6c
MD
1125 object = shm_object_table_append_shm(handle->table,
1126 shm_fd, wakeup_fd, stream_nr,
1127 memory_map_size);
193183fb 1128 if (!object)
74d81a6c 1129 return -EINVAL;
193183fb
MD
1130 return 0;
1131}
1132
74d81a6c
MD
1133unsigned int channel_handle_get_nr_streams(struct lttng_ust_shm_handle *handle)
1134{
1135 assert(handle->table);
1136 return handle->table->allocated_len - 1;
1137}
1138
852c2936 1139static
b5457df5 1140void channel_release(struct lttng_ust_ring_buffer_channel *chan, struct lttng_ust_shm_handle *handle,
6548fca4 1141 int consumer)
852c2936 1142{
6548fca4 1143 channel_free(chan, handle, consumer);
852c2936
MD
1144}
1145
1146/**
1147 * channel_destroy - Finalize, wait for q.s. and destroy channel.
1148 * @chan: channel to destroy
1149 *
1150 * Holds cpu hotplug.
431d5cf0
MD
1151 * Call "destroy" callback, finalize channels, decrement the channel
1152 * reference count. Note that when readers have completed data
1153 * consumption of finalized channels, get_subbuf() will return -ENODATA.
a60af3a5 1154 * They should release their handle at that point.
852c2936 1155 */
b5457df5 1156void channel_destroy(struct lttng_ust_ring_buffer_channel *chan, struct lttng_ust_shm_handle *handle,
74d81a6c 1157 int consumer)
852c2936 1158{
74d81a6c
MD
1159 if (consumer) {
1160 /*
1161 * Note: the consumer takes care of finalizing and
1162 * switching the buffers.
1163 */
1164 channel_unregister_notifiers(chan, handle);
3d0ef9f6
MD
1165 /*
1166 * The consumer prints errors.
1167 */
1168 channel_print_errors(chan, handle);
824f40b8
MD
1169 }
1170
431d5cf0
MD
1171 /*
1172 * sessiond/consumer are keeping a reference on the shm file
1173 * descriptor directly. No need to refcount.
1174 */
6548fca4 1175 channel_release(chan, handle, consumer);
a3f61e7f 1176 return;
852c2936 1177}
852c2936 1178
b5457df5
MD
1179struct lttng_ust_ring_buffer *channel_get_ring_buffer(
1180 const struct lttng_ust_ring_buffer_config *config,
1181 struct lttng_ust_ring_buffer_channel *chan, int cpu,
38fae1d3 1182 struct lttng_ust_shm_handle *handle,
74d81a6c
MD
1183 int *shm_fd, int *wait_fd,
1184 int *wakeup_fd,
1185 uint64_t *memory_map_size)
852c2936 1186{
381c0f1e
MD
1187 struct shm_ref *ref;
1188
1189 if (config->alloc == RING_BUFFER_ALLOC_GLOBAL) {
74d81a6c 1190 cpu = 0;
381c0f1e 1191 } else {
e095d803
MD
1192 if (cpu >= num_possible_cpus())
1193 return NULL;
381c0f1e 1194 }
74d81a6c
MD
1195 ref = &chan->backend.buf[cpu].shmp._ref;
1196 *shm_fd = shm_get_shm_fd(handle, ref);
1197 *wait_fd = shm_get_wait_fd(handle, ref);
1198 *wakeup_fd = shm_get_wakeup_fd(handle, ref);
1199 if (shm_get_shm_size(handle, ref, memory_map_size))
1200 return NULL;
1201 return shmp(handle, chan->backend.buf[cpu].shmp);
852c2936 1202}
852c2936 1203
2208d8b5 1204int ring_buffer_channel_close_wait_fd(
b5457df5
MD
1205 const struct lttng_ust_ring_buffer_config *config __attribute__((unused)),
1206 struct lttng_ust_ring_buffer_channel *chan __attribute__((unused)),
2208d8b5 1207 struct lttng_ust_shm_handle *handle)
ff0f5728
MD
1208{
1209 struct shm_ref *ref;
1210
1211 ref = &handle->chan._ref;
1212 return shm_close_wait_fd(handle, ref);
1213}
1214
2208d8b5 1215int ring_buffer_channel_close_wakeup_fd(
b5457df5
MD
1216 const struct lttng_ust_ring_buffer_config *config __attribute__((unused)),
1217 struct lttng_ust_ring_buffer_channel *chan __attribute__((unused)),
2208d8b5 1218 struct lttng_ust_shm_handle *handle)
ff0f5728
MD
1219{
1220 struct shm_ref *ref;
1221
1222 ref = &handle->chan._ref;
1223 return shm_close_wakeup_fd(handle, ref);
1224}
1225
b5457df5
MD
1226int ring_buffer_stream_close_wait_fd(const struct lttng_ust_ring_buffer_config *config,
1227 struct lttng_ust_ring_buffer_channel *chan,
74d81a6c
MD
1228 struct lttng_ust_shm_handle *handle,
1229 int cpu)
852c2936 1230{
74d81a6c
MD
1231 struct shm_ref *ref;
1232
1233 if (config->alloc == RING_BUFFER_ALLOC_GLOBAL) {
1234 cpu = 0;
1235 } else {
1236 if (cpu >= num_possible_cpus())
1237 return -EINVAL;
824f40b8 1238 }
74d81a6c
MD
1239 ref = &chan->backend.buf[cpu].shmp._ref;
1240 return shm_close_wait_fd(handle, ref);
1241}
1242
b5457df5
MD
1243int ring_buffer_stream_close_wakeup_fd(const struct lttng_ust_ring_buffer_config *config,
1244 struct lttng_ust_ring_buffer_channel *chan,
74d81a6c
MD
1245 struct lttng_ust_shm_handle *handle,
1246 int cpu)
1247{
1248 struct shm_ref *ref;
cb7378b3 1249 int ret;
74d81a6c
MD
1250
1251 if (config->alloc == RING_BUFFER_ALLOC_GLOBAL) {
1252 cpu = 0;
1253 } else {
1254 if (cpu >= num_possible_cpus())
1255 return -EINVAL;
1256 }
1257 ref = &chan->backend.buf[cpu].shmp._ref;
cb7378b3
MD
1258 pthread_mutex_lock(&wakeup_fd_mutex);
1259 ret = shm_close_wakeup_fd(handle, ref);
1260 pthread_mutex_unlock(&wakeup_fd_mutex);
1261 return ret;
74d81a6c
MD
1262}
1263
b5457df5 1264int lib_ring_buffer_open_read(struct lttng_ust_ring_buffer *buf,
2208d8b5 1265 struct lttng_ust_shm_handle *handle __attribute__((unused)))
74d81a6c 1266{
a6352fd4 1267 if (uatomic_cmpxchg(&buf->active_readers, 0, 1) != 0)
852c2936 1268 return -EBUSY;
a6352fd4 1269 cmm_smp_mb();
852c2936
MD
1270 return 0;
1271}
852c2936 1272
b5457df5 1273void lib_ring_buffer_release_read(struct lttng_ust_ring_buffer *buf,
74d81a6c 1274 struct lttng_ust_shm_handle *handle)
852c2936 1275{
b5457df5 1276 struct lttng_ust_ring_buffer_channel *chan = shmp(handle, buf->backend.chan);
852c2936 1277
15500a1b
MD
1278 if (!chan)
1279 return;
a6352fd4
MD
1280 CHAN_WARN_ON(chan, uatomic_read(&buf->active_readers) != 1);
1281 cmm_smp_mb();
1282 uatomic_dec(&buf->active_readers);
852c2936
MD
1283}
1284
1285/**
1286 * lib_ring_buffer_snapshot - save subbuffer position snapshot (for read)
1287 * @buf: ring buffer
1288 * @consumed: consumed count indicating the position where to read
1289 * @produced: produced count, indicates position when to stop reading
1290 *
1291 * Returns -ENODATA if buffer is finalized, -EAGAIN if there is currently no
1292 * data to read at consumed position, or 0 if the get operation succeeds.
852c2936
MD
1293 */
1294
b5457df5 1295int lib_ring_buffer_snapshot(struct lttng_ust_ring_buffer *buf,
1d498196 1296 unsigned long *consumed, unsigned long *produced,
38fae1d3 1297 struct lttng_ust_shm_handle *handle)
852c2936 1298{
b5457df5
MD
1299 struct lttng_ust_ring_buffer_channel *chan;
1300 const struct lttng_ust_ring_buffer_config *config;
852c2936
MD
1301 unsigned long consumed_cur, write_offset;
1302 int finalized;
1303
15500a1b
MD
1304 chan = shmp(handle, buf->backend.chan);
1305 if (!chan)
1306 return -EPERM;
1307 config = &chan->backend.config;
14641deb 1308 finalized = CMM_ACCESS_ONCE(buf->finalized);
852c2936
MD
1309 /*
1310 * Read finalized before counters.
1311 */
a6352fd4
MD
1312 cmm_smp_rmb();
1313 consumed_cur = uatomic_read(&buf->consumed);
852c2936
MD
1314 /*
1315 * No need to issue a memory barrier between consumed count read and
1316 * write offset read, because consumed count can only change
1317 * concurrently in overwrite mode, and we keep a sequence counter
1318 * identifier derived from the write offset to check we are getting
1319 * the same sub-buffer we are expecting (the sub-buffers are atomically
1320 * "tagged" upon writes, tags are checked upon read).
1321 */
1322 write_offset = v_read(config, &buf->offset);
1323
1324 /*
1325 * Check that we are not about to read the same subbuffer in
1326 * which the writer head is.
1327 */
1328 if (subbuf_trunc(write_offset, chan) - subbuf_trunc(consumed_cur, chan)
1329 == 0)
1330 goto nodata;
1331
1332 *consumed = consumed_cur;
1333 *produced = subbuf_trunc(write_offset, chan);
1334
1335 return 0;
1336
1337nodata:
1338 /*
1339 * The memory barriers __wait_event()/wake_up_interruptible() take care
1340 * of "raw_spin_is_locked" memory ordering.
1341 */
1342 if (finalized)
1343 return -ENODATA;
852c2936
MD
1344 else
1345 return -EAGAIN;
1346}
852c2936 1347
f45930b7
JG
1348/**
1349 * Performs the same function as lib_ring_buffer_snapshot(), but the positions
1350 * are saved regardless of whether the consumed and produced positions are
1351 * in the same subbuffer.
1352 * @buf: ring buffer
1353 * @consumed: consumed byte count indicating the last position read
1354 * @produced: produced byte count indicating the last position written
1355 *
1356 * This function is meant to provide information on the exact producer and
1357 * consumer positions without regard for the "snapshot" feature.
1358 */
1359int lib_ring_buffer_snapshot_sample_positions(
b5457df5 1360 struct lttng_ust_ring_buffer *buf,
f45930b7
JG
1361 unsigned long *consumed, unsigned long *produced,
1362 struct lttng_ust_shm_handle *handle)
1363{
b5457df5
MD
1364 struct lttng_ust_ring_buffer_channel *chan;
1365 const struct lttng_ust_ring_buffer_config *config;
f45930b7
JG
1366
1367 chan = shmp(handle, buf->backend.chan);
1368 if (!chan)
1369 return -EPERM;
1370 config = &chan->backend.config;
1371 cmm_smp_rmb();
1372 *consumed = uatomic_read(&buf->consumed);
1373 /*
1374 * No need to issue a memory barrier between consumed count read and
1375 * write offset read, because consumed count can only change
1376 * concurrently in overwrite mode, and we keep a sequence counter
1377 * identifier derived from the write offset to check we are getting
1378 * the same sub-buffer we are expecting (the sub-buffers are atomically
1379 * "tagged" upon writes, tags are checked upon read).
1380 */
1381 *produced = v_read(config, &buf->offset);
1382 return 0;
1383}
1384
852c2936 1385/**
d1a996f5 1386 * lib_ring_buffer_move_consumer - move consumed counter forward
852c2936
MD
1387 * @buf: ring buffer
1388 * @consumed_new: new consumed count value
1389 */
b5457df5 1390void lib_ring_buffer_move_consumer(struct lttng_ust_ring_buffer *buf,
1d498196 1391 unsigned long consumed_new,
38fae1d3 1392 struct lttng_ust_shm_handle *handle)
852c2936 1393{
b5457df5
MD
1394 struct lttng_ust_ring_buffer_backend *bufb = &buf->backend;
1395 struct lttng_ust_ring_buffer_channel *chan;
852c2936
MD
1396 unsigned long consumed;
1397
15500a1b
MD
1398 chan = shmp(handle, bufb->chan);
1399 if (!chan)
1400 return;
74d81a6c 1401 CHAN_WARN_ON(chan, uatomic_read(&buf->active_readers) != 1);
852c2936
MD
1402
1403 /*
1404 * Only push the consumed value forward.
1405 * If the consumed cmpxchg fails, this is because we have been pushed by
1406 * the writer in flight recorder mode.
1407 */
a6352fd4 1408 consumed = uatomic_read(&buf->consumed);
852c2936 1409 while ((long) consumed - (long) consumed_new < 0)
a6352fd4
MD
1410 consumed = uatomic_cmpxchg(&buf->consumed, consumed,
1411 consumed_new);
852c2936 1412}
852c2936
MD
1413
1414/**
1415 * lib_ring_buffer_get_subbuf - get exclusive access to subbuffer for reading
1416 * @buf: ring buffer
1417 * @consumed: consumed count indicating the position where to read
1418 *
1419 * Returns -ENODATA if buffer is finalized, -EAGAIN if there is currently no
1420 * data to read at consumed position, or 0 if the get operation succeeds.
852c2936 1421 */
b5457df5 1422int lib_ring_buffer_get_subbuf(struct lttng_ust_ring_buffer *buf,
1d498196 1423 unsigned long consumed,
38fae1d3 1424 struct lttng_ust_shm_handle *handle)
852c2936 1425{
b5457df5
MD
1426 struct lttng_ust_ring_buffer_channel *chan;
1427 const struct lttng_ust_ring_buffer_config *config;
852c2936 1428 unsigned long consumed_cur, consumed_idx, commit_count, write_offset;
dddba398 1429 int ret, finalized, nr_retry = LTTNG_UST_RING_BUFFER_GET_RETRY;
15500a1b 1430 struct commit_counters_cold *cc_cold;
852c2936 1431
15500a1b
MD
1432 chan = shmp(handle, buf->backend.chan);
1433 if (!chan)
1434 return -EPERM;
1435 config = &chan->backend.config;
852c2936 1436retry:
14641deb 1437 finalized = CMM_ACCESS_ONCE(buf->finalized);
852c2936
MD
1438 /*
1439 * Read finalized before counters.
1440 */
a6352fd4
MD
1441 cmm_smp_rmb();
1442 consumed_cur = uatomic_read(&buf->consumed);
852c2936 1443 consumed_idx = subbuf_index(consumed, chan);
15500a1b
MD
1444 cc_cold = shmp_index(handle, buf->commit_cold, consumed_idx);
1445 if (!cc_cold)
1446 return -EPERM;
1447 commit_count = v_read(config, &cc_cold->cc_sb);
852c2936
MD
1448 /*
1449 * Make sure we read the commit count before reading the buffer
1450 * data and the write offset. Correct consumed offset ordering
1451 * wrt commit count is insured by the use of cmpxchg to update
1452 * the consumed offset.
852c2936 1453 */
a6352fd4
MD
1454 /*
1455 * Local rmb to match the remote wmb to read the commit count
1456 * before the buffer data and the write offset.
1457 */
1458 cmm_smp_rmb();
852c2936
MD
1459
1460 write_offset = v_read(config, &buf->offset);
1461
1462 /*
1463 * Check that the buffer we are getting is after or at consumed_cur
1464 * position.
1465 */
1466 if ((long) subbuf_trunc(consumed, chan)
1467 - (long) subbuf_trunc(consumed_cur, chan) < 0)
1468 goto nodata;
1469
1470 /*
1471 * Check that the subbuffer we are trying to consume has been
dddba398
MD
1472 * already fully committed. There are a few causes that can make
1473 * this unavailability situation occur:
1474 *
1475 * Temporary (short-term) situation:
1476 * - Application is running on a different CPU, between reserve
1477 * and commit ring buffer operations,
1478 * - Application is preempted between reserve and commit ring
1479 * buffer operations,
1480 *
1481 * Long-term situation:
1482 * - Application is stopped (SIGSTOP) between reserve and commit
1483 * ring buffer operations. Could eventually be resumed by
1484 * SIGCONT.
1485 * - Application is killed (SIGTERM, SIGINT, SIGKILL) between
1486 * reserve and commit ring buffer operation.
1487 *
1488 * From a consumer perspective, handling short-term
1489 * unavailability situations is performed by retrying a few
1490 * times after a delay. Handling long-term unavailability
1491 * situations is handled by failing to get the sub-buffer.
1492 *
1493 * In all of those situations, if the application is taking a
1494 * long time to perform its commit after ring buffer space
1495 * reservation, we can end up in a situation where the producer
1496 * will fill the ring buffer and try to write into the same
1497 * sub-buffer again (which has a missing commit). This is
1498 * handled by the producer in the sub-buffer switch handling
1499 * code of the reserve routine by detecting unbalanced
1500 * reserve/commit counters and discarding all further events
1501 * until the situation is resolved in those situations. Two
1502 * scenarios can occur:
1503 *
1504 * 1) The application causing the reserve/commit counters to be
1505 * unbalanced has been terminated. In this situation, all
1506 * further events will be discarded in the buffers, and no
1507 * further buffer data will be readable by the consumer
1508 * daemon. Tearing down the UST tracing session and starting
1509 * anew is a work-around for those situations. Note that this
1510 * only affects per-UID tracing. In per-PID tracing, the
1511 * application vanishes with the termination, and therefore
1512 * no more data needs to be written to the buffers.
1513 * 2) The application causing the unbalance has been delayed for
1514 * a long time, but will eventually try to increment the
1515 * commit counter after eventually writing to the sub-buffer.
1516 * This situation can cause events to be discarded until the
1517 * application resumes its operations.
852c2936
MD
1518 */
1519 if (((commit_count - chan->backend.subbuf_size)
1520 & chan->commit_count_mask)
0bade047 1521 - (buf_trunc(consumed, chan)
852c2936 1522 >> chan->backend.num_subbuf_order)
dddba398
MD
1523 != 0) {
1524 if (nr_retry-- > 0) {
1525 if (nr_retry <= (LTTNG_UST_RING_BUFFER_GET_RETRY >> 1))
1526 (void) poll(NULL, 0, LTTNG_UST_RING_BUFFER_RETRY_DELAY_MS);
1527 goto retry;
1528 } else {
1529 goto nodata;
1530 }
1531 }
852c2936
MD
1532
1533 /*
1534 * Check that we are not about to read the same subbuffer in
1535 * which the writer head is.
1536 */
0bade047 1537 if (subbuf_trunc(write_offset, chan) - subbuf_trunc(consumed, chan)
852c2936
MD
1538 == 0)
1539 goto nodata;
1540
1541 /*
1542 * Failure to get the subbuffer causes a busy-loop retry without going
1543 * to a wait queue. These are caused by short-lived race windows where
1544 * the writer is getting access to a subbuffer we were trying to get
1545 * access to. Also checks that the "consumed" buffer count we are
1546 * looking for matches the one contained in the subbuffer id.
dddba398
MD
1547 *
1548 * The short-lived race window described here can be affected by
1549 * application signals and preemption, thus requiring to bound
1550 * the loop to a maximum number of retry.
852c2936
MD
1551 */
1552 ret = update_read_sb_index(config, &buf->backend, &chan->backend,
1d498196
MD
1553 consumed_idx, buf_trunc_val(consumed, chan),
1554 handle);
dddba398
MD
1555 if (ret) {
1556 if (nr_retry-- > 0) {
1557 if (nr_retry <= (LTTNG_UST_RING_BUFFER_GET_RETRY >> 1))
1558 (void) poll(NULL, 0, LTTNG_UST_RING_BUFFER_RETRY_DELAY_MS);
1559 goto retry;
1560 } else {
1561 goto nodata;
1562 }
1563 }
852c2936
MD
1564 subbuffer_id_clear_noref(config, &buf->backend.buf_rsb.id);
1565
1566 buf->get_subbuf_consumed = consumed;
1567 buf->get_subbuf = 1;
1568
1569 return 0;
1570
1571nodata:
1572 /*
1573 * The memory barriers __wait_event()/wake_up_interruptible() take care
1574 * of "raw_spin_is_locked" memory ordering.
1575 */
1576 if (finalized)
1577 return -ENODATA;
852c2936
MD
1578 else
1579 return -EAGAIN;
1580}
852c2936
MD
1581
1582/**
1583 * lib_ring_buffer_put_subbuf - release exclusive subbuffer access
1584 * @buf: ring buffer
1585 */
b5457df5 1586void lib_ring_buffer_put_subbuf(struct lttng_ust_ring_buffer *buf,
38fae1d3 1587 struct lttng_ust_shm_handle *handle)
852c2936 1588{
b5457df5
MD
1589 struct lttng_ust_ring_buffer_backend *bufb = &buf->backend;
1590 struct lttng_ust_ring_buffer_channel *chan;
1591 const struct lttng_ust_ring_buffer_config *config;
15500a1b 1592 unsigned long sb_bindex, consumed_idx, consumed;
b5457df5
MD
1593 struct lttng_ust_ring_buffer_backend_pages_shmp *rpages;
1594 struct lttng_ust_ring_buffer_backend_pages *backend_pages;
852c2936 1595
15500a1b
MD
1596 chan = shmp(handle, bufb->chan);
1597 if (!chan)
1598 return;
1599 config = &chan->backend.config;
74d81a6c 1600 CHAN_WARN_ON(chan, uatomic_read(&buf->active_readers) != 1);
852c2936
MD
1601
1602 if (!buf->get_subbuf) {
1603 /*
1604 * Reader puts a subbuffer it did not get.
1605 */
1606 CHAN_WARN_ON(chan, 1);
1607 return;
1608 }
1609 consumed = buf->get_subbuf_consumed;
1610 buf->get_subbuf = 0;
1611
1612 /*
1613 * Clear the records_unread counter. (overruns counter)
1614 * Can still be non-zero if a file reader simply grabbed the data
1615 * without using iterators.
1616 * Can be below zero if an iterator is used on a snapshot more than
1617 * once.
1618 */
15500a1b
MD
1619 sb_bindex = subbuffer_id_get_index(config, bufb->buf_rsb.id);
1620 rpages = shmp_index(handle, bufb->array, sb_bindex);
1621 if (!rpages)
1622 return;
1623 backend_pages = shmp(handle, rpages->shmp);
1624 if (!backend_pages)
1625 return;
1626 v_add(config, v_read(config, &backend_pages->records_unread),
1627 &bufb->records_read);
1628 v_set(config, &backend_pages->records_unread, 0);
852c2936
MD
1629 CHAN_WARN_ON(chan, config->mode == RING_BUFFER_OVERWRITE
1630 && subbuffer_id_is_noref(config, bufb->buf_rsb.id));
1631 subbuffer_id_set_noref(config, &bufb->buf_rsb.id);
1632
1633 /*
1634 * Exchange the reader subbuffer with the one we put in its place in the
1635 * writer subbuffer table. Expect the original consumed count. If
1636 * update_read_sb_index fails, this is because the writer updated the
1637 * subbuffer concurrently. We should therefore keep the subbuffer we
1638 * currently have: it has become invalid to try reading this sub-buffer
1639 * consumed count value anyway.
1640 */
1641 consumed_idx = subbuf_index(consumed, chan);
1642 update_read_sb_index(config, &buf->backend, &chan->backend,
1d498196
MD
1643 consumed_idx, buf_trunc_val(consumed, chan),
1644 handle);
852c2936
MD
1645 /*
1646 * update_read_sb_index return value ignored. Don't exchange sub-buffer
1647 * if the writer concurrently updated it.
1648 */
1649}
852c2936
MD
1650
1651/*
1652 * cons_offset is an iterator on all subbuffer offsets between the reader
1653 * position and the writer position. (inclusive)
1654 */
1655static
b5457df5
MD
1656void lib_ring_buffer_print_subbuffer_errors(struct lttng_ust_ring_buffer *buf,
1657 struct lttng_ust_ring_buffer_channel *chan,
852c2936 1658 unsigned long cons_offset,
1d498196 1659 int cpu,
38fae1d3 1660 struct lttng_ust_shm_handle *handle)
852c2936 1661{
b5457df5 1662 const struct lttng_ust_ring_buffer_config *config = &chan->backend.config;
852c2936 1663 unsigned long cons_idx, commit_count, commit_count_sb;
15500a1b
MD
1664 struct commit_counters_hot *cc_hot;
1665 struct commit_counters_cold *cc_cold;
852c2936
MD
1666
1667 cons_idx = subbuf_index(cons_offset, chan);
15500a1b
MD
1668 cc_hot = shmp_index(handle, buf->commit_hot, cons_idx);
1669 if (!cc_hot)
1670 return;
1671 cc_cold = shmp_index(handle, buf->commit_cold, cons_idx);
1672 if (!cc_cold)
1673 return;
1674 commit_count = v_read(config, &cc_hot->cc);
1675 commit_count_sb = v_read(config, &cc_cold->cc_sb);
852c2936
MD
1676
1677 if (subbuf_offset(commit_count, chan) != 0)
4d3c9523 1678 DBG("ring buffer %s, cpu %d: "
852c2936
MD
1679 "commit count in subbuffer %lu,\n"
1680 "expecting multiples of %lu bytes\n"
1681 " [ %lu bytes committed, %lu bytes reader-visible ]\n",
1682 chan->backend.name, cpu, cons_idx,
1683 chan->backend.subbuf_size,
1684 commit_count, commit_count_sb);
1685
4d3c9523 1686 DBG("ring buffer: %s, cpu %d: %lu bytes committed\n",
852c2936
MD
1687 chan->backend.name, cpu, commit_count);
1688}
1689
1690static
b5457df5
MD
1691void lib_ring_buffer_print_buffer_errors(struct lttng_ust_ring_buffer *buf,
1692 struct lttng_ust_ring_buffer_channel *chan,
f0fde1c3 1693 int cpu, struct lttng_ust_shm_handle *handle)
852c2936 1694{
b5457df5 1695 const struct lttng_ust_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
1696 unsigned long write_offset, cons_offset;
1697
852c2936
MD
1698 /*
1699 * No need to order commit_count, write_offset and cons_offset reads
1700 * because we execute at teardown when no more writer nor reader
1701 * references are left.
1702 */
1703 write_offset = v_read(config, &buf->offset);
a6352fd4 1704 cons_offset = uatomic_read(&buf->consumed);
852c2936 1705 if (write_offset != cons_offset)
4d3c9523 1706 DBG("ring buffer %s, cpu %d: "
852c2936
MD
1707 "non-consumed data\n"
1708 " [ %lu bytes written, %lu bytes read ]\n",
1709 chan->backend.name, cpu, write_offset, cons_offset);
1710
a6352fd4 1711 for (cons_offset = uatomic_read(&buf->consumed);
852c2936
MD
1712 (long) (subbuf_trunc((unsigned long) v_read(config, &buf->offset),
1713 chan)
1714 - cons_offset) > 0;
1715 cons_offset = subbuf_align(cons_offset, chan))
1716 lib_ring_buffer_print_subbuffer_errors(buf, chan, cons_offset,
1d498196 1717 cpu, handle);
852c2936
MD
1718}
1719
1720static
b5457df5
MD
1721void lib_ring_buffer_print_errors(struct lttng_ust_ring_buffer_channel *chan,
1722 struct lttng_ust_ring_buffer *buf, int cpu,
009769ca 1723 struct lttng_ust_shm_handle *handle)
852c2936 1724{
b5457df5 1725 const struct lttng_ust_ring_buffer_config *config = &chan->backend.config;
852c2936 1726
a1360615
MD
1727 if (!strcmp(chan->backend.name, "relay-metadata-mmap")) {
1728 DBG("ring buffer %s: %lu records written, "
1729 "%lu records overrun\n",
1730 chan->backend.name,
1731 v_read(config, &buf->records_count),
1732 v_read(config, &buf->records_overrun));
1733 } else {
1734 DBG("ring buffer %s, cpu %d: %lu records written, "
1735 "%lu records overrun\n",
1736 chan->backend.name, cpu,
1737 v_read(config, &buf->records_count),
1738 v_read(config, &buf->records_overrun));
1739
1740 if (v_read(config, &buf->records_lost_full)
1741 || v_read(config, &buf->records_lost_wrap)
1742 || v_read(config, &buf->records_lost_big))
1743 DBG("ring buffer %s, cpu %d: records were lost. Caused by:\n"
1744 " [ %lu buffer full, %lu nest buffer wrap-around, "
1745 "%lu event too big ]\n",
1746 chan->backend.name, cpu,
1747 v_read(config, &buf->records_lost_full),
1748 v_read(config, &buf->records_lost_wrap),
1749 v_read(config, &buf->records_lost_big));
1750 }
f0fde1c3 1751 lib_ring_buffer_print_buffer_errors(buf, chan, cpu, handle);
852c2936
MD
1752}
1753
1754/*
1755 * lib_ring_buffer_switch_old_start: Populate old subbuffer header.
1756 *
48f22436
MD
1757 * Only executed by SWITCH_FLUSH, which can be issued while tracing is
1758 * active or at buffer finalization (destroy).
852c2936
MD
1759 */
1760static
b5457df5
MD
1761void lib_ring_buffer_switch_old_start(struct lttng_ust_ring_buffer *buf,
1762 struct lttng_ust_ring_buffer_channel *chan,
852c2936 1763 struct switch_offsets *offsets,
2fed87ae 1764 uint64_t tsc,
38fae1d3 1765 struct lttng_ust_shm_handle *handle)
852c2936 1766{
b5457df5 1767 const struct lttng_ust_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
1768 unsigned long oldidx = subbuf_index(offsets->old, chan);
1769 unsigned long commit_count;
3d3c3833 1770 struct commit_counters_hot *cc_hot;
852c2936 1771
1d498196 1772 config->cb.buffer_begin(buf, tsc, oldidx, handle);
852c2936
MD
1773
1774 /*
1775 * Order all writes to buffer before the commit count update that will
1776 * determine that the subbuffer is full.
1777 */
a6352fd4 1778 cmm_smp_wmb();
3d3c3833 1779 cc_hot = shmp_index(handle, buf->commit_hot, oldidx);
15500a1b
MD
1780 if (!cc_hot)
1781 return;
852c2936 1782 v_add(config, config->cb.subbuffer_header_size(),
3d3c3833
MD
1783 &cc_hot->cc);
1784 commit_count = v_read(config, &cc_hot->cc);
852c2936
MD
1785 /* Check if the written buffer has to be delivered */
1786 lib_ring_buffer_check_deliver(config, buf, chan, offsets->old,
1b7b0501 1787 commit_count, oldidx, handle, tsc);
d2fe4771 1788 lib_ring_buffer_write_commit_counter(config, buf, chan,
80249235 1789 offsets->old + config->cb.subbuffer_header_size(),
3d3c3833 1790 commit_count, handle, cc_hot);
852c2936
MD
1791}
1792
1793/*
1794 * lib_ring_buffer_switch_old_end: switch old subbuffer
1795 *
1796 * Note : offset_old should never be 0 here. It is ok, because we never perform
1797 * buffer switch on an empty subbuffer in SWITCH_ACTIVE mode. The caller
1798 * increments the offset_old value when doing a SWITCH_FLUSH on an empty
1799 * subbuffer.
1800 */
1801static
b5457df5
MD
1802void lib_ring_buffer_switch_old_end(struct lttng_ust_ring_buffer *buf,
1803 struct lttng_ust_ring_buffer_channel *chan,
852c2936 1804 struct switch_offsets *offsets,
2fed87ae 1805 uint64_t tsc,
38fae1d3 1806 struct lttng_ust_shm_handle *handle)
852c2936 1807{
b5457df5 1808 const struct lttng_ust_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
1809 unsigned long oldidx = subbuf_index(offsets->old - 1, chan);
1810 unsigned long commit_count, padding_size, data_size;
3d3c3833 1811 struct commit_counters_hot *cc_hot;
6c737d05 1812 uint64_t *ts_end;
852c2936
MD
1813
1814 data_size = subbuf_offset(offsets->old - 1, chan) + 1;
1815 padding_size = chan->backend.subbuf_size - data_size;
1d498196
MD
1816 subbuffer_set_data_size(config, &buf->backend, oldidx, data_size,
1817 handle);
852c2936 1818
6c737d05
MD
1819 ts_end = shmp_index(handle, buf->ts_end, oldidx);
1820 if (!ts_end)
1821 return;
852c2936 1822 /*
6c737d05
MD
1823 * This is the last space reservation in that sub-buffer before
1824 * it gets delivered. This provides exclusive access to write to
1825 * this sub-buffer's ts_end. There are also no concurrent
1826 * readers of that ts_end because delivery of that sub-buffer is
1827 * postponed until the commit counter is incremented for the
1828 * current space reservation.
1829 */
1830 *ts_end = tsc;
1831
1832 /*
1833 * Order all writes to buffer and store to ts_end before the commit
1834 * count update that will determine that the subbuffer is full.
852c2936 1835 */
a6352fd4 1836 cmm_smp_wmb();
3d3c3833 1837 cc_hot = shmp_index(handle, buf->commit_hot, oldidx);
15500a1b
MD
1838 if (!cc_hot)
1839 return;
3d3c3833
MD
1840 v_add(config, padding_size, &cc_hot->cc);
1841 commit_count = v_read(config, &cc_hot->cc);
852c2936 1842 lib_ring_buffer_check_deliver(config, buf, chan, offsets->old - 1,
1b7b0501 1843 commit_count, oldidx, handle, tsc);
d2fe4771
MD
1844 lib_ring_buffer_write_commit_counter(config, buf, chan,
1845 offsets->old + padding_size, commit_count, handle,
3d3c3833 1846 cc_hot);
852c2936
MD
1847}
1848
1849/*
1850 * lib_ring_buffer_switch_new_start: Populate new subbuffer.
1851 *
1852 * This code can be executed unordered : writers may already have written to the
1853 * sub-buffer before this code gets executed, caution. The commit makes sure
1854 * that this code is executed before the deliver of this sub-buffer.
1855 */
1856static
b5457df5
MD
1857void lib_ring_buffer_switch_new_start(struct lttng_ust_ring_buffer *buf,
1858 struct lttng_ust_ring_buffer_channel *chan,
852c2936 1859 struct switch_offsets *offsets,
2fed87ae 1860 uint64_t tsc,
38fae1d3 1861 struct lttng_ust_shm_handle *handle)
852c2936 1862{
b5457df5 1863 const struct lttng_ust_ring_buffer_config *config = &chan->backend.config;
852c2936
MD
1864 unsigned long beginidx = subbuf_index(offsets->begin, chan);
1865 unsigned long commit_count;
3d3c3833 1866 struct commit_counters_hot *cc_hot;
852c2936 1867
1d498196 1868 config->cb.buffer_begin(buf, tsc, beginidx, handle);
852c2936
MD
1869
1870 /*
1871 * Order all writes to buffer before the commit count update that will
1872 * determine that the subbuffer is full.
1873 */
a6352fd4 1874 cmm_smp_wmb();
3d3c3833 1875 cc_hot = shmp_index(handle, buf->commit_hot, beginidx);
15500a1b
MD
1876 if (!cc_hot)
1877 return;
1878 v_add(config, config->cb.subbuffer_header_size(), &cc_hot->cc);
3d3c3833 1879 commit_count = v_read(config, &cc_hot->cc);
852c2936
MD
1880 /* Check if the written buffer has to be delivered */
1881 lib_ring_buffer_check_deliver(config, buf, chan, offsets->begin,
1b7b0501 1882 commit_count, beginidx, handle, tsc);
d2fe4771 1883 lib_ring_buffer_write_commit_counter(config, buf, chan,
80249235 1884 offsets->begin + config->cb.subbuffer_header_size(),
3d3c3833 1885 commit_count, handle, cc_hot);
852c2936
MD
1886}
1887
1ad21f70
MD
1888/*
1889 * lib_ring_buffer_switch_new_end: finish switching current subbuffer
1890 *
3962118d
MD
1891 * Calls subbuffer_set_data_size() to set the data size of the current
1892 * sub-buffer. We do not need to perform check_deliver nor commit here,
1893 * since this task will be done by the "commit" of the event for which
1894 * we are currently doing the space reservation.
1ad21f70
MD
1895 */
1896static
b5457df5
MD
1897void lib_ring_buffer_switch_new_end(struct lttng_ust_ring_buffer *buf,
1898 struct lttng_ust_ring_buffer_channel *chan,
1ad21f70
MD
1899 struct switch_offsets *offsets,
1900 uint64_t tsc,
1901 struct lttng_ust_shm_handle *handle)
1902{
b5457df5 1903 const struct lttng_ust_ring_buffer_config *config = &chan->backend.config;
3962118d 1904 unsigned long endidx, data_size;
6c737d05 1905 uint64_t *ts_end;
1ad21f70 1906
3962118d 1907 endidx = subbuf_index(offsets->end - 1, chan);
1ad21f70 1908 data_size = subbuf_offset(offsets->end - 1, chan) + 1;
1ad21f70
MD
1909 subbuffer_set_data_size(config, &buf->backend, endidx, data_size,
1910 handle);
6c737d05
MD
1911 ts_end = shmp_index(handle, buf->ts_end, endidx);
1912 if (!ts_end)
1913 return;
1914 /*
1915 * This is the last space reservation in that sub-buffer before
1916 * it gets delivered. This provides exclusive access to write to
1917 * this sub-buffer's ts_end. There are also no concurrent
1918 * readers of that ts_end because delivery of that sub-buffer is
1919 * postponed until the commit counter is incremented for the
1920 * current space reservation.
1921 */
1922 *ts_end = tsc;
1ad21f70
MD
1923}
1924
852c2936
MD
1925/*
1926 * Returns :
1927 * 0 if ok
1928 * !0 if execution must be aborted.
1929 */
1930static
1931int lib_ring_buffer_try_switch_slow(enum switch_mode mode,
b5457df5
MD
1932 struct lttng_ust_ring_buffer *buf,
1933 struct lttng_ust_ring_buffer_channel *chan,
852c2936 1934 struct switch_offsets *offsets,
2dac206d
MD
1935 uint64_t *tsc,
1936 struct lttng_ust_shm_handle *handle)
852c2936 1937{
b5457df5 1938 const struct lttng_ust_ring_buffer_config *config = &chan->backend.config;
2dac206d 1939 unsigned long off, reserve_commit_diff;
852c2936
MD
1940
1941 offsets->begin = v_read(config, &buf->offset);
1942 offsets->old = offsets->begin;
1943 offsets->switch_old_start = 0;
1944 off = subbuf_offset(offsets->begin, chan);
1945
1946 *tsc = config->cb.ring_buffer_clock_read(chan);
1947
1948 /*
1949 * Ensure we flush the header of an empty subbuffer when doing the
1950 * finalize (SWITCH_FLUSH). This ensures that we end up knowing the
1951 * total data gathering duration even if there were no records saved
1952 * after the last buffer switch.
1953 * In SWITCH_ACTIVE mode, switch the buffer when it contains events.
1954 * SWITCH_ACTIVE only flushes the current subbuffer, dealing with end of
1955 * subbuffer header as appropriate.
1956 * The next record that reserves space will be responsible for
1957 * populating the following subbuffer header. We choose not to populate
1958 * the next subbuffer header here because we want to be able to use
a6352fd4
MD
1959 * SWITCH_ACTIVE for periodical buffer flush, which must
1960 * guarantee that all the buffer content (records and header
1961 * timestamps) are visible to the reader. This is required for
1962 * quiescence guarantees for the fusion merge.
852c2936 1963 */
2dac206d
MD
1964 if (mode != SWITCH_FLUSH && !off)
1965 return -1; /* we do not have to switch : buffer is empty */
1966
1967 if (caa_unlikely(off == 0)) {
1968 unsigned long sb_index, commit_count;
15500a1b 1969 struct commit_counters_cold *cc_cold;
2dac206d
MD
1970
1971 /*
48f22436
MD
1972 * We are performing a SWITCH_FLUSH. There may be concurrent
1973 * writes into the buffer if e.g. invoked while performing a
1974 * snapshot on an active trace.
2dac206d 1975 *
48f22436
MD
1976 * If the client does not save any header information
1977 * (sub-buffer header size == 0), don't switch empty subbuffer
1978 * on finalize, because it is invalid to deliver a completely
1979 * empty subbuffer.
2dac206d
MD
1980 */
1981 if (!config->cb.subbuffer_header_size())
1982 return -1;
1983
1984 /* Test new buffer integrity */
1985 sb_index = subbuf_index(offsets->begin, chan);
15500a1b
MD
1986 cc_cold = shmp_index(handle, buf->commit_cold, sb_index);
1987 if (!cc_cold)
1988 return -1;
1989 commit_count = v_read(config, &cc_cold->cc_sb);
2dac206d
MD
1990 reserve_commit_diff =
1991 (buf_trunc(offsets->begin, chan)
1992 >> chan->backend.num_subbuf_order)
1993 - (commit_count & chan->commit_count_mask);
1994 if (caa_likely(reserve_commit_diff == 0)) {
1995 /* Next subbuffer not being written to. */
1996 if (caa_unlikely(config->mode != RING_BUFFER_OVERWRITE &&
1997 subbuf_trunc(offsets->begin, chan)
1998 - subbuf_trunc((unsigned long)
1999 uatomic_read(&buf->consumed), chan)
2000 >= chan->backend.buf_size)) {
2001 /*
2002 * We do not overwrite non consumed buffers
2003 * and we are full : don't switch.
2004 */
852c2936 2005 return -1;
2dac206d
MD
2006 } else {
2007 /*
2008 * Next subbuffer not being written to, and we
2009 * are either in overwrite mode or the buffer is
2010 * not full. It's safe to write in this new
2011 * subbuffer.
2012 */
2013 }
2014 } else {
852c2936 2015 /*
2dac206d
MD
2016 * Next subbuffer reserve offset does not match the
2017 * commit offset. Don't perform switch in
2018 * producer-consumer and overwrite mode. Caused by
2019 * either a writer OOPS or too many nested writes over a
2020 * reserve/commit pair.
852c2936 2021 */
2dac206d 2022 return -1;
852c2936 2023 }
2dac206d
MD
2024
2025 /*
2026 * Need to write the subbuffer start header on finalize.
2027 */
2028 offsets->switch_old_start = 1;
2029 }
2030 offsets->begin = subbuf_align(offsets->begin, chan);
852c2936
MD
2031 /* Note: old points to the next subbuf at offset 0 */
2032 offsets->end = offsets->begin;
2033 return 0;
2034}
2035
2036/*
2037 * Force a sub-buffer switch. This operation is completely reentrant : can be
2038 * called while tracing is active with absolutely no lock held.
2039 *
ef1a13e0
MD
2040 * For RING_BUFFER_SYNC_PER_CPU ring buffers, as a v_cmpxchg is used for
2041 * some atomic operations, this function must be called from the CPU
2042 * which owns the buffer for a ACTIVE flush. However, for
2043 * RING_BUFFER_SYNC_GLOBAL ring buffers, this function can be called
2044 * from any CPU.
852c2936 2045 */
b5457df5 2046void lib_ring_buffer_switch_slow(struct lttng_ust_ring_buffer *buf, enum switch_mode mode,
38fae1d3 2047 struct lttng_ust_shm_handle *handle)
852c2936 2048{
b5457df5
MD
2049 struct lttng_ust_ring_buffer_channel *chan;
2050 const struct lttng_ust_ring_buffer_config *config;
852c2936
MD
2051 struct switch_offsets offsets;
2052 unsigned long oldidx;
2fed87ae 2053 uint64_t tsc;
852c2936 2054
15500a1b
MD
2055 chan = shmp(handle, buf->backend.chan);
2056 if (!chan)
2057 return;
2058 config = &chan->backend.config;
2059
852c2936
MD
2060 offsets.size = 0;
2061
2062 /*
2063 * Perform retryable operations.
2064 */
2065 do {
2066 if (lib_ring_buffer_try_switch_slow(mode, buf, chan, &offsets,
2dac206d 2067 &tsc, handle))
852c2936
MD
2068 return; /* Switch not needed */
2069 } while (v_cmpxchg(config, &buf->offset, offsets.old, offsets.end)
2070 != offsets.old);
2071
2072 /*
2073 * Atomically update last_tsc. This update races against concurrent
2074 * atomic updates, but the race will always cause supplementary full TSC
2075 * records, never the opposite (missing a full TSC record when it would
2076 * be needed).
2077 */
2078 save_last_tsc(config, buf, tsc);
2079
2080 /*
2081 * Push the reader if necessary
2082 */
2083 lib_ring_buffer_reserve_push_reader(buf, chan, offsets.old);
2084
2085 oldidx = subbuf_index(offsets.old, chan);
1d498196 2086 lib_ring_buffer_clear_noref(config, &buf->backend, oldidx, handle);
852c2936
MD
2087
2088 /*
2089 * May need to populate header start on SWITCH_FLUSH.
2090 */
2091 if (offsets.switch_old_start) {
1d498196 2092 lib_ring_buffer_switch_old_start(buf, chan, &offsets, tsc, handle);
852c2936
MD
2093 offsets.old += config->cb.subbuffer_header_size();
2094 }
2095
2096 /*
2097 * Switch old subbuffer.
2098 */
1d498196 2099 lib_ring_buffer_switch_old_end(buf, chan, &offsets, tsc, handle);
852c2936 2100}
852c2936 2101
6f97f9c2
MD
2102static
2103bool handle_blocking_retry(int *timeout_left_ms)
2104{
2105 int timeout = *timeout_left_ms, delay;
2106
2107 if (caa_likely(!timeout))
2108 return false; /* Do not retry, discard event. */
2109 if (timeout < 0) /* Wait forever. */
2110 delay = RETRY_DELAY_MS;
2111 else
2112 delay = min_t(int, timeout, RETRY_DELAY_MS);
2113 (void) poll(NULL, 0, delay);
2114 if (timeout > 0)
2115 *timeout_left_ms -= delay;
2116 return true; /* Retry. */
2117}
2118
852c2936
MD
2119/*
2120 * Returns :
2121 * 0 if ok
2122 * -ENOSPC if event size is too large for packet.
2123 * -ENOBUFS if there is currently not enough space in buffer for the event.
2124 * -EIO if data cannot be written into the buffer for any other reason.
2125 */
2126static
b5457df5
MD
2127int lib_ring_buffer_try_reserve_slow(struct lttng_ust_ring_buffer *buf,
2128 struct lttng_ust_ring_buffer_channel *chan,
852c2936 2129 struct switch_offsets *offsets,
b5457df5 2130 struct lttng_ust_ring_buffer_ctx *ctx,
e56bb47c 2131 void *client_ctx)
852c2936 2132{
b5457df5
MD
2133 struct lttng_ust_ring_buffer_ctx_private *ctx_private = ctx->priv;
2134 const struct lttng_ust_ring_buffer_config *config = &chan->backend.config;
8936b6c0 2135 struct lttng_ust_shm_handle *handle = chan->handle;
e185cf4b 2136 unsigned long reserve_commit_diff, offset_cmp;
b2c5f61a 2137 int timeout_left_ms = lttng_ust_ringbuffer_get_timeout(chan);
852c2936 2138
e185cf4b
MD
2139retry:
2140 offsets->begin = offset_cmp = v_read(config, &buf->offset);
852c2936
MD
2141 offsets->old = offsets->begin;
2142 offsets->switch_new_start = 0;
1ad21f70 2143 offsets->switch_new_end = 0;
852c2936
MD
2144 offsets->switch_old_end = 0;
2145 offsets->pre_header_padding = 0;
2146
8936b6c0
MD
2147 ctx_private->tsc = config->cb.ring_buffer_clock_read(chan);
2148 if ((int64_t) ctx_private->tsc == -EIO)
852c2936
MD
2149 return -EIO;
2150
8936b6c0
MD
2151 if (last_tsc_overflow(config, buf, ctx_private->tsc))
2152 ctx_private->rflags |= RING_BUFFER_RFLAG_FULL_TSC;
852c2936 2153
8936b6c0 2154 if (caa_unlikely(subbuf_offset(offsets->begin, chan) == 0)) {
852c2936
MD
2155 offsets->switch_new_start = 1; /* For offsets->begin */
2156 } else {
2157 offsets->size = config->cb.record_header_size(config, chan,
2158 offsets->begin,
2159 &offsets->pre_header_padding,
e56bb47c 2160 ctx, client_ctx);
852c2936 2161 offsets->size +=
b5457df5 2162 lttng_ust_ring_buffer_align(offsets->begin + offsets->size,
8936b6c0 2163 ctx->largest_align)
852c2936 2164 + ctx->data_size;
b5a3dfa5 2165 if (caa_unlikely(subbuf_offset(offsets->begin, chan) +
852c2936
MD
2166 offsets->size > chan->backend.subbuf_size)) {
2167 offsets->switch_old_end = 1; /* For offsets->old */
2168 offsets->switch_new_start = 1; /* For offsets->begin */
2169 }
2170 }
b5a3dfa5 2171 if (caa_unlikely(offsets->switch_new_start)) {
e185cf4b 2172 unsigned long sb_index, commit_count;
15500a1b 2173 struct commit_counters_cold *cc_cold;
852c2936
MD
2174
2175 /*
2176 * We are typically not filling the previous buffer completely.
2177 */
b5a3dfa5 2178 if (caa_likely(offsets->switch_old_end))
852c2936
MD
2179 offsets->begin = subbuf_align(offsets->begin, chan);
2180 offsets->begin = offsets->begin
2181 + config->cb.subbuffer_header_size();
2182 /* Test new buffer integrity */
2183 sb_index = subbuf_index(offsets->begin, chan);
e185cf4b
MD
2184 /*
2185 * Read buf->offset before buf->commit_cold[sb_index].cc_sb.
2186 * lib_ring_buffer_check_deliver() has the matching
2187 * memory barriers required around commit_cold cc_sb
2188 * updates to ensure reserve and commit counter updates
2189 * are not seen reordered when updated by another CPU.
2190 */
2191 cmm_smp_rmb();
15500a1b
MD
2192 cc_cold = shmp_index(handle, buf->commit_cold, sb_index);
2193 if (!cc_cold)
2194 return -1;
2195 commit_count = v_read(config, &cc_cold->cc_sb);
e185cf4b
MD
2196 /* Read buf->commit_cold[sb_index].cc_sb before buf->offset. */
2197 cmm_smp_rmb();
2198 if (caa_unlikely(offset_cmp != v_read(config, &buf->offset))) {
2199 /*
2200 * The reserve counter have been concurrently updated
2201 * while we read the commit counter. This means the
2202 * commit counter we read might not match buf->offset
2203 * due to concurrent update. We therefore need to retry.
2204 */
2205 goto retry;
2206 }
852c2936
MD
2207 reserve_commit_diff =
2208 (buf_trunc(offsets->begin, chan)
2209 >> chan->backend.num_subbuf_order)
e185cf4b 2210 - (commit_count & chan->commit_count_mask);
b5a3dfa5 2211 if (caa_likely(reserve_commit_diff == 0)) {
852c2936 2212 /* Next subbuffer not being written to. */
b5a3dfa5 2213 if (caa_unlikely(config->mode != RING_BUFFER_OVERWRITE &&
852c2936
MD
2214 subbuf_trunc(offsets->begin, chan)
2215 - subbuf_trunc((unsigned long)
a6352fd4 2216 uatomic_read(&buf->consumed), chan)
852c2936 2217 >= chan->backend.buf_size)) {
64493e4f
MD
2218 unsigned long nr_lost;
2219
6f97f9c2
MD
2220 if (handle_blocking_retry(&timeout_left_ms))
2221 goto retry;
2222
852c2936
MD
2223 /*
2224 * We do not overwrite non consumed buffers
2225 * and we are full : record is lost.
2226 */
64493e4f 2227 nr_lost = v_read(config, &buf->records_lost_full);
852c2936 2228 v_inc(config, &buf->records_lost_full);
64493e4f
MD
2229 if ((nr_lost & (DBG_PRINT_NR_LOST - 1)) == 0) {
2230 DBG("%lu or more records lost in (%s:%d) (buffer full)\n",
2231 nr_lost + 1, chan->backend.name,
2232 buf->backend.cpu);
2233 }
852c2936
MD
2234 return -ENOBUFS;
2235 } else {
2236 /*
2237 * Next subbuffer not being written to, and we
2238 * are either in overwrite mode or the buffer is
2239 * not full. It's safe to write in this new
2240 * subbuffer.
2241 */
2242 }
2243 } else {
64493e4f
MD
2244 unsigned long nr_lost;
2245
852c2936
MD
2246 /*
2247 * Next subbuffer reserve offset does not match the
e185cf4b
MD
2248 * commit offset, and this did not involve update to the
2249 * reserve counter. Drop record in producer-consumer and
852c2936
MD
2250 * overwrite mode. Caused by either a writer OOPS or too
2251 * many nested writes over a reserve/commit pair.
2252 */
64493e4f 2253 nr_lost = v_read(config, &buf->records_lost_wrap);
852c2936 2254 v_inc(config, &buf->records_lost_wrap);
64493e4f
MD
2255 if ((nr_lost & (DBG_PRINT_NR_LOST - 1)) == 0) {
2256 DBG("%lu or more records lost in (%s:%d) (wrap-around)\n",
2257 nr_lost + 1, chan->backend.name,
2258 buf->backend.cpu);
2259 }
852c2936
MD
2260 return -EIO;
2261 }
2262 offsets->size =
2263 config->cb.record_header_size(config, chan,
2264 offsets->begin,
2265 &offsets->pre_header_padding,
e56bb47c 2266 ctx, client_ctx);
852c2936 2267 offsets->size +=
b5457df5 2268 lttng_ust_ring_buffer_align(offsets->begin + offsets->size,
852c2936
MD
2269 ctx->largest_align)
2270 + ctx->data_size;
b5a3dfa5 2271 if (caa_unlikely(subbuf_offset(offsets->begin, chan)
852c2936 2272 + offsets->size > chan->backend.subbuf_size)) {
64493e4f
MD
2273 unsigned long nr_lost;
2274
852c2936
MD
2275 /*
2276 * Record too big for subbuffers, report error, don't
2277 * complete the sub-buffer switch.
2278 */
64493e4f 2279 nr_lost = v_read(config, &buf->records_lost_big);
852c2936 2280 v_inc(config, &buf->records_lost_big);
64493e4f
MD
2281 if ((nr_lost & (DBG_PRINT_NR_LOST - 1)) == 0) {
2282 DBG("%lu or more records lost in (%s:%d) record size "
2283 " of %zu bytes is too large for buffer\n",
2284 nr_lost + 1, chan->backend.name,
2285 buf->backend.cpu, offsets->size);
2286 }
852c2936
MD
2287 return -ENOSPC;
2288 } else {
2289 /*
2290 * We just made a successful buffer switch and the
2291 * record fits in the new subbuffer. Let's write.
2292 */
2293 }
2294 } else {
2295 /*
2296 * Record fits in the current buffer and we are not on a switch
2297 * boundary. It's safe to write.
2298 */
2299 }
2300 offsets->end = offsets->begin + offsets->size;
1ad21f70
MD
2301
2302 if (caa_unlikely(subbuf_offset(offsets->end, chan) == 0)) {
2303 /*
2304 * The offset_end will fall at the very beginning of the next
2305 * subbuffer.
2306 */
2307 offsets->switch_new_end = 1; /* For offsets->begin */
2308 }
852c2936
MD
2309 return 0;
2310}
2311
2312/**
2313 * lib_ring_buffer_reserve_slow - Atomic slot reservation in a buffer.
2314 * @ctx: ring buffer context.
2315 *
2316 * Return : -NOBUFS if not enough space, -ENOSPC if event size too large,
2317 * -EIO for other errors, else returns 0.
2318 * It will take care of sub-buffer switching.
2319 */
b5457df5 2320int lib_ring_buffer_reserve_slow(struct lttng_ust_ring_buffer_ctx *ctx,
e56bb47c 2321 void *client_ctx)
852c2936 2322{
b5457df5
MD
2323 struct lttng_ust_ring_buffer_ctx_private *ctx_private = ctx->priv;
2324 struct lttng_ust_ring_buffer_channel *chan = ctx_private->chan;
8936b6c0 2325 struct lttng_ust_shm_handle *handle = chan->handle;
b5457df5
MD
2326 const struct lttng_ust_ring_buffer_config *config = &chan->backend.config;
2327 struct lttng_ust_ring_buffer *buf;
852c2936
MD
2328 struct switch_offsets offsets;
2329 int ret;
2330
2331 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU)
8936b6c0 2332 buf = shmp(handle, chan->backend.buf[ctx_private->reserve_cpu].shmp);
852c2936 2333 else
1d498196 2334 buf = shmp(handle, chan->backend.buf[0].shmp);
15500a1b
MD
2335 if (!buf)
2336 return -EIO;
8936b6c0 2337 ctx_private->buf = buf;
852c2936
MD
2338
2339 offsets.size = 0;
2340
2341 do {
2342 ret = lib_ring_buffer_try_reserve_slow(buf, chan, &offsets,
e56bb47c 2343 ctx, client_ctx);
b5a3dfa5 2344 if (caa_unlikely(ret))
852c2936 2345 return ret;
b5a3dfa5 2346 } while (caa_unlikely(v_cmpxchg(config, &buf->offset, offsets.old,
852c2936
MD
2347 offsets.end)
2348 != offsets.old));
2349
2350 /*
2351 * Atomically update last_tsc. This update races against concurrent
2352 * atomic updates, but the race will always cause supplementary full TSC
2353 * records, never the opposite (missing a full TSC record when it would
2354 * be needed).
2355 */
8936b6c0 2356 save_last_tsc(config, buf, ctx_private->tsc);
852c2936
MD
2357
2358 /*
2359 * Push the reader if necessary
2360 */
2361 lib_ring_buffer_reserve_push_reader(buf, chan, offsets.end - 1);
2362
2363 /*
2364 * Clear noref flag for this subbuffer.
2365 */
2366 lib_ring_buffer_clear_noref(config, &buf->backend,
1d498196
MD
2367 subbuf_index(offsets.end - 1, chan),
2368 handle);
852c2936
MD
2369
2370 /*
2371 * Switch old subbuffer if needed.
2372 */
b5a3dfa5 2373 if (caa_unlikely(offsets.switch_old_end)) {
852c2936 2374 lib_ring_buffer_clear_noref(config, &buf->backend,
1d498196
MD
2375 subbuf_index(offsets.old - 1, chan),
2376 handle);
8936b6c0 2377 lib_ring_buffer_switch_old_end(buf, chan, &offsets, ctx_private->tsc, handle);
852c2936
MD
2378 }
2379
2380 /*
2381 * Populate new subbuffer.
2382 */
b5a3dfa5 2383 if (caa_unlikely(offsets.switch_new_start))
8936b6c0 2384 lib_ring_buffer_switch_new_start(buf, chan, &offsets, ctx_private->tsc, handle);
852c2936 2385
1ad21f70 2386 if (caa_unlikely(offsets.switch_new_end))
8936b6c0 2387 lib_ring_buffer_switch_new_end(buf, chan, &offsets, ctx_private->tsc, handle);
1ad21f70 2388
8936b6c0
MD
2389 ctx_private->slot_size = offsets.size;
2390 ctx_private->pre_offset = offsets.begin;
2391 ctx_private->buf_offset = offsets.begin + offsets.pre_header_padding;
852c2936
MD
2392 return 0;
2393}
f645cfa7 2394
b07cd987 2395static
b5457df5
MD
2396void lib_ring_buffer_vmcore_check_deliver(const struct lttng_ust_ring_buffer_config *config,
2397 struct lttng_ust_ring_buffer *buf,
b07cd987
MD
2398 unsigned long commit_count,
2399 unsigned long idx,
2400 struct lttng_ust_shm_handle *handle)
2401{
15500a1b
MD
2402 struct commit_counters_hot *cc_hot;
2403
2404 if (config->oops != RING_BUFFER_OOPS_CONSISTENCY)
2405 return;
2406 cc_hot = shmp_index(handle, buf->commit_hot, idx);
2407 if (!cc_hot)
2408 return;
2409 v_set(config, &cc_hot->seq, commit_count);
b07cd987
MD
2410}
2411
9c995331
MD
2412/*
2413 * The ring buffer can count events recorded and overwritten per buffer,
2414 * but it is disabled by default due to its performance overhead.
2415 */
2416#ifdef LTTNG_RING_BUFFER_COUNT_EVENTS
2417static
b5457df5
MD
2418void deliver_count_events(const struct lttng_ust_ring_buffer_config *config,
2419 struct lttng_ust_ring_buffer *buf,
9c995331
MD
2420 unsigned long idx,
2421 struct lttng_ust_shm_handle *handle)
2422{
2423 v_add(config, subbuffer_get_records_count(config,
2424 &buf->backend, idx, handle),
2425 &buf->records_count);
2426 v_add(config, subbuffer_count_records_overrun(config,
2427 &buf->backend, idx, handle),
2428 &buf->records_overrun);
2429}
2430#else /* LTTNG_RING_BUFFER_COUNT_EVENTS */
2431static
2208d8b5 2432void deliver_count_events(
b5457df5
MD
2433 const struct lttng_ust_ring_buffer_config *config __attribute__((unused)),
2434 struct lttng_ust_ring_buffer *buf __attribute__((unused)),
2208d8b5
MJ
2435 unsigned long idx __attribute__((unused)),
2436 struct lttng_ust_shm_handle *handle __attribute__((unused)))
9c995331
MD
2437{
2438}
2439#endif /* #else LTTNG_RING_BUFFER_COUNT_EVENTS */
2440
b5457df5
MD
2441void lib_ring_buffer_check_deliver_slow(const struct lttng_ust_ring_buffer_config *config,
2442 struct lttng_ust_ring_buffer *buf,
2443 struct lttng_ust_ring_buffer_channel *chan,
b07cd987
MD
2444 unsigned long offset,
2445 unsigned long commit_count,
2446 unsigned long idx,
2447 struct lttng_ust_shm_handle *handle,
2208d8b5 2448 uint64_t tsc __attribute__((unused)))
b07cd987
MD
2449{
2450 unsigned long old_commit_count = commit_count
2451 - chan->backend.subbuf_size;
15500a1b 2452 struct commit_counters_cold *cc_cold;
b07cd987
MD
2453
2454 /*
2455 * If we succeeded at updating cc_sb below, we are the subbuffer
2456 * writer delivering the subbuffer. Deals with concurrent
2457 * updates of the "cc" value without adding a add_return atomic
2458 * operation to the fast path.
2459 *
2460 * We are doing the delivery in two steps:
2461 * - First, we cmpxchg() cc_sb to the new value
2462 * old_commit_count + 1. This ensures that we are the only
2463 * subbuffer user successfully filling the subbuffer, but we
2464 * do _not_ set the cc_sb value to "commit_count" yet.
2465 * Therefore, other writers that would wrap around the ring
2466 * buffer and try to start writing to our subbuffer would
2467 * have to drop records, because it would appear as
2468 * non-filled.
2469 * We therefore have exclusive access to the subbuffer control
2470 * structures. This mutual exclusion with other writers is
2471 * crucially important to perform record overruns count in
2472 * flight recorder mode locklessly.
2473 * - When we are ready to release the subbuffer (either for
2474 * reading or for overrun by other writers), we simply set the
2475 * cc_sb value to "commit_count" and perform delivery.
2476 *
2477 * The subbuffer size is least 2 bytes (minimum size: 1 page).
2478 * This guarantees that old_commit_count + 1 != commit_count.
2479 */
2480
2481 /*
2482 * Order prior updates to reserve count prior to the
2483 * commit_cold cc_sb update.
2484 */
2485 cmm_smp_wmb();
15500a1b
MD
2486 cc_cold = shmp_index(handle, buf->commit_cold, idx);
2487 if (!cc_cold)
2488 return;
2489 if (caa_likely(v_cmpxchg(config, &cc_cold->cc_sb,
b07cd987
MD
2490 old_commit_count, old_commit_count + 1)
2491 == old_commit_count)) {
6c737d05
MD
2492 uint64_t *ts_end;
2493
b07cd987
MD
2494 /*
2495 * Start of exclusive subbuffer access. We are
2496 * guaranteed to be the last writer in this subbuffer
2497 * and any other writer trying to access this subbuffer
2498 * in this state is required to drop records.
6c737d05
MD
2499 *
2500 * We can read the ts_end for the current sub-buffer
2501 * which has been saved by the very last space
2502 * reservation for the current sub-buffer.
2503 *
2504 * Order increment of commit counter before reading ts_end.
b07cd987 2505 */
6c737d05
MD
2506 cmm_smp_mb();
2507 ts_end = shmp_index(handle, buf->ts_end, idx);
2508 if (!ts_end)
2509 return;
9c995331 2510 deliver_count_events(config, buf, idx, handle);
6c737d05 2511 config->cb.buffer_end(buf, *ts_end, idx,
b07cd987
MD
2512 lib_ring_buffer_get_data_size(config,
2513 buf,
2514 idx,
2515 handle),
2516 handle);
2517
2518 /*
2519 * Increment the packet counter while we have exclusive
2520 * access.
2521 */
2522 subbuffer_inc_packet_count(config, &buf->backend, idx, handle);
2523
2524 /*
2525 * Set noref flag and offset for this subbuffer id.
2526 * Contains a memory barrier that ensures counter stores
2527 * are ordered before set noref and offset.
2528 */
2529 lib_ring_buffer_set_noref_offset(config, &buf->backend, idx,
2530 buf_trunc_val(offset, chan), handle);
2531
2532 /*
2533 * Order set_noref and record counter updates before the
2534 * end of subbuffer exclusive access. Orders with
2535 * respect to writers coming into the subbuffer after
2536 * wrap around, and also order wrt concurrent readers.
2537 */
2538 cmm_smp_mb();
2539 /* End of exclusive subbuffer access */
15500a1b 2540 v_set(config, &cc_cold->cc_sb, commit_count);
b07cd987
MD
2541 /*
2542 * Order later updates to reserve count after
2543 * the commit cold cc_sb update.
2544 */
2545 cmm_smp_wmb();
2546 lib_ring_buffer_vmcore_check_deliver(config, buf,
2547 commit_count, idx, handle);
2548
2549 /*
2550 * RING_BUFFER_WAKEUP_BY_WRITER wakeup is not lock-free.
2551 */
2552 if (config->wakeup == RING_BUFFER_WAKEUP_BY_WRITER
2553 && uatomic_read(&buf->active_readers)
2554 && lib_ring_buffer_poll_deliver(config, buf, chan, handle)) {
2555 lib_ring_buffer_wakeup(buf, handle);
2556 }
2557 }
2558}
2559
f645cfa7
MD
2560/*
2561 * Force a read (imply TLS fixup for dlopen) of TLS variables.
2562 */
2563void lttng_fixup_ringbuffer_tls(void)
2564{
8c90a710 2565 asm volatile ("" : : "m" (URCU_TLS(lib_ring_buffer_nesting)));
f645cfa7 2566}
03d2d293
MD
2567
2568void lib_ringbuffer_signal_init(void)
2569{
2570 sigset_t mask;
2571 int ret;
2572
2573 /*
2574 * Block signal for entire process, so only our thread processes
2575 * it.
2576 */
2577 rb_setmask(&mask);
2578 ret = pthread_sigmask(SIG_BLOCK, &mask, NULL);
2579 if (ret) {
2580 errno = ret;
2581 PERROR("pthread_sigmask");
2582 }
2583}
This page took 0.168386 seconds and 4 git commands to generate.