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