3 * LTTng userspace tracer buffering system
5 * Copyright (C) 2009 - Pierre-Marc Fournier (pierre-marc dot fournier at polymtl dot ca)
6 * Copyright (C) 2008 - Mathieu Desnoyers (mathieu.desnoyers@polymtl.ca)
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
30 #include <ust/clock.h>
35 #include "tracercore.h"
38 struct ltt_reserve_switch_offsets
{
40 long begin_switch
, end_switch_current
, end_switch_old
;
41 size_t before_hdr_pad
, size
;
45 static DEFINE_MUTEX(ust_buffers_channels_mutex
);
46 static CDS_LIST_HEAD(ust_buffers_channels
);
48 static int get_n_cpus(void)
51 static int n_cpus
= 0;
54 /* On Linux, when some processors are offline
55 * _SC_NPROCESSORS_CONF counts the offline
56 * processors, whereas _SC_NPROCESSORS_ONLN
57 * does not. If we used _SC_NPROCESSORS_ONLN,
58 * getcpu() could return a value greater than
59 * this sysconf, in which case the arrays
60 * indexed by processor would overflow.
62 result
= sysconf(_SC_NPROCESSORS_CONF
);
74 * _ust_buffers_strncpy_fixup - Fix an incomplete string in a ltt_relay buffer.
76 * @offset : offset within the buffer
77 * @len : length to write
78 * @copied: string actually copied
79 * @terminated: does string end with \0
81 * Fills string with "X" if incomplete.
83 void _ust_buffers_strncpy_fixup(struct ust_buffer
*buf
, size_t offset
,
84 size_t len
, size_t copied
, int terminated
)
86 size_t buf_offset
, cpy
;
90 * Deal with non-terminated string.
94 buf_offset
= BUFFER_OFFSET(offset
, buf
->chan
);
96 * Underlying layer should never ask for writes across
100 < buf
->chan
->subbuf_size
*buf
->chan
->subbuf_cnt
);
101 ust_buffers_do_memset(buf
->buf_data
+ buf_offset
, '\0', 1);
106 * Deal with incomplete string.
107 * Overwrite string's \0 with X too.
113 buf_offset
= BUFFER_OFFSET(offset
, buf
->chan
);
116 * Underlying layer should never ask for writes across subbuffers.
119 < buf
->chan
->subbuf_size
*buf
->chan
->subbuf_cnt
);
121 ust_buffers_do_memset(buf
->buf_data
+ buf_offset
,
125 * Overwrite last 'X' with '\0'.
128 buf_offset
= BUFFER_OFFSET(offset
, buf
->chan
);
130 * Underlying layer should never ask for writes across subbuffers.
133 < buf
->chan
->subbuf_size
*buf
->chan
->subbuf_cnt
);
134 ust_buffers_do_memset(buf
->buf_data
+ buf_offset
, '\0', 1);
137 static void ltt_buffer_begin(struct ust_buffer
*buf
,
138 u64 tsc
, unsigned int subbuf_idx
)
140 struct ust_channel
*channel
= buf
->chan
;
141 struct ltt_subbuffer_header
*header
=
142 (struct ltt_subbuffer_header
*)
143 ust_buffers_offset_address(buf
,
144 subbuf_idx
* buf
->chan
->subbuf_size
);
146 header
->cycle_count_begin
= tsc
;
147 header
->data_size
= 0xFFFFFFFF; /* for recognizing crashed buffers */
148 header
->sb_size
= 0xFFFFFFFF; /* for recognizing crashed buffers */
149 /* FIXME: add memory barrier? */
150 ltt_write_trace_header(channel
->trace
, header
);
153 static int map_buf_data(struct ust_buffer
*buf
, size_t *size
)
158 *size
= PAGE_ALIGN(*size
);
160 result
= buf
->shmid
= shmget(getpid(), *size
, IPC_CREAT
| IPC_EXCL
| 0700);
161 if (result
< 0 && errno
== EINVAL
) {
162 ERR("shmget() returned EINVAL; maybe /proc/sys/kernel/shmmax should be increased.");
164 } else if (result
< 0) {
169 ptr
= shmat(buf
->shmid
, NULL
, 0);
170 if (ptr
== (void *) -1) {
175 /* Already mark the shared memory for destruction. This will occur only
176 * when all users have detached.
178 result
= shmctl(buf
->shmid
, IPC_RMID
, NULL
);
185 buf
->buf_size
= *size
;
190 result
= shmctl(buf
->shmid
, IPC_RMID
, NULL
);
198 static int open_buf(struct ust_channel
*chan
, int cpu
)
202 struct ust_trace
*trace
= chan
->trace
;
203 struct ust_buffer
*buf
= chan
->buf
[cpu
];
204 unsigned int n_subbufs
= chan
->subbuf_cnt
;
207 result
= map_buf_data(buf
, &chan
->alloc_size
);
212 zmalloc(sizeof(*buf
->commit_count
) * n_subbufs
);
213 if (!buf
->commit_count
)
219 goto free_commit_count
;
221 buf
->data_ready_fd_read
= fds
[0];
222 buf
->data_ready_fd_write
= fds
[1];
227 uatomic_set(&buf
->offset
, ltt_subbuffer_header_size());
228 uatomic_set(&buf
->consumed
, 0);
229 uatomic_set(&buf
->active_readers
, 0);
230 for (j
= 0; j
< n_subbufs
; j
++) {
231 uatomic_set(&buf
->commit_count
[j
].cc
, 0);
232 uatomic_set(&buf
->commit_count
[j
].cc_sb
, 0);
235 ltt_buffer_begin(buf
, trace
->start_tsc
, 0);
237 uatomic_add(&buf
->commit_count
[0].cc
, ltt_subbuffer_header_size());
239 uatomic_set(&buf
->events_lost
, 0);
240 uatomic_set(&buf
->corrupted_subbuffers
, 0);
242 memset(buf
->commit_seq
, 0, sizeof(buf
->commit_seq
[0]) * n_subbufs
);
247 free(buf
->commit_count
);
250 if (shmdt(buf
->buf_data
) < 0) {
251 PERROR("shmdt failed");
257 static void ltt_relay_print_buffer_errors(struct ust_channel
*chan
, int cpu
);
259 static void close_buf(struct ust_buffer
*buf
)
261 struct ust_channel
*chan
= buf
->chan
;
265 result
= shmdt(buf
->buf_data
);
270 free(buf
->commit_count
);
272 result
= close(buf
->data_ready_fd_read
);
277 result
= close(buf
->data_ready_fd_write
);
278 if (result
< 0 && errno
!= EBADF
) {
282 /* FIXME: This spews out errors, are they real?:
283 * ltt_relay_print_buffer_errors(chan, cpu); */
287 static int open_channel(struct ust_channel
*chan
, size_t subbuf_size
,
293 if(subbuf_size
== 0 || subbuf_cnt
== 0)
296 /* Check that the subbuffer size is larger than a page. */
297 WARN_ON_ONCE(subbuf_size
< PAGE_SIZE
);
300 * Make sure the number of subbuffers and subbuffer size are power of 2.
302 WARN_ON_ONCE(hweight32(subbuf_size
) != 1);
303 WARN_ON(hweight32(subbuf_cnt
) != 1);
305 chan
->version
= UST_CHANNEL_VERSION
;
306 chan
->subbuf_cnt
= subbuf_cnt
;
307 chan
->subbuf_size
= subbuf_size
;
308 chan
->subbuf_size_order
= get_count_order(subbuf_size
);
309 chan
->alloc_size
= subbuf_size
* subbuf_cnt
;
311 pthread_mutex_lock(&ust_buffers_channels_mutex
);
312 for (i
=0; i
< chan
->n_cpus
; i
++) {
313 result
= open_buf(chan
, i
);
317 cds_list_add(&chan
->list
, &ust_buffers_channels
);
318 pthread_mutex_unlock(&ust_buffers_channels_mutex
);
324 for(i
--; i
>= 0; i
--)
325 close_buf(chan
->buf
[i
]);
327 pthread_mutex_unlock(&ust_buffers_channels_mutex
);
331 static void close_channel(struct ust_channel
*chan
)
337 pthread_mutex_lock(&ust_buffers_channels_mutex
);
338 for(i
=0; i
<chan
->n_cpus
; i
++) {
339 /* FIXME: if we make it here, then all buffers were necessarily allocated. Moreover, we don't
340 * initialize to NULL so we cannot use this check. Should we? */
341 //ust// if (chan->buf[i])
342 close_buf(chan
->buf
[i
]);
345 cds_list_del(&chan
->list
);
347 pthread_mutex_unlock(&ust_buffers_channels_mutex
);
350 static void ltt_force_switch(struct ust_buffer
*buf
,
351 enum force_switch_mode mode
);
356 * offset is assumed to never be 0 here : never deliver a completely empty
357 * subbuffer. The lost size is between 0 and subbuf_size-1.
359 static notrace
void ltt_buffer_end(struct ust_buffer
*buf
,
360 u64 tsc
, unsigned int offset
, unsigned int subbuf_idx
)
362 struct ltt_subbuffer_header
*header
=
363 (struct ltt_subbuffer_header
*)
364 ust_buffers_offset_address(buf
,
365 subbuf_idx
* buf
->chan
->subbuf_size
);
366 u32 data_size
= SUBBUF_OFFSET(offset
- 1, buf
->chan
) + 1;
368 header
->data_size
= data_size
;
369 header
->sb_size
= PAGE_ALIGN(data_size
);
370 header
->cycle_count_end
= tsc
;
371 header
->events_lost
= uatomic_read(&buf
->events_lost
);
372 header
->subbuf_corrupt
= uatomic_read(&buf
->corrupted_subbuffers
);
373 if(unlikely(header
->events_lost
> 0)) {
374 DBG("Some events (%d) were lost in %s_%d", header
->events_lost
, buf
->chan
->channel_name
, buf
->cpu
);
379 * This function should not be called from NMI interrupt context
381 static notrace
void ltt_buf_unfull(struct ust_buffer
*buf
,
382 unsigned int subbuf_idx
,
388 * Promote compiler cmm_barrier to a smp_mb().
389 * For the specific LTTng case, this IPI call should be removed if the
390 * architecture does not reorder writes. This should eventually be provided by
391 * a separate architecture-specific infrastructure.
393 //ust// static void remote_mb(void *info)
398 int ust_buffers_get_subbuf(struct ust_buffer
*buf
, long *consumed
)
400 struct ust_channel
*channel
= buf
->chan
;
401 long consumed_old
, consumed_idx
, commit_count
, write_offset
;
404 consumed_old
= uatomic_read(&buf
->consumed
);
405 consumed_idx
= SUBBUF_INDEX(consumed_old
, buf
->chan
);
406 commit_count
= uatomic_read(&buf
->commit_count
[consumed_idx
].cc_sb
);
408 * Make sure we read the commit count before reading the buffer
409 * data and the write offset. Correct consumed offset ordering
410 * wrt commit count is insured by the use of cmpxchg to update
411 * the consumed offset.
412 * smp_call_function_single can fail if the remote CPU is offline,
413 * this is OK because then there is no wmb to execute there.
414 * If our thread is executing on the same CPU as the on the buffers
415 * belongs to, we don't have to synchronize it at all. If we are
416 * migrated, the scheduler will take care of the memory cmm_barriers.
417 * Normally, smp_call_function_single() should ensure program order when
418 * executing the remote function, which implies that it surrounds the
419 * function execution with :
430 * However, smp_call_function_single() does not seem to clearly execute
431 * such barriers. It depends on spinlock semantic to provide the barrier
432 * before executing the IPI and, when busy-looping, csd_lock_wait only
433 * executes smp_mb() when it has to wait for the other CPU.
435 * I don't trust this code. Therefore, let's add the smp_mb() sequence
436 * required ourself, even if duplicated. It has no performance impact
439 * smp_mb() is needed because cmm_smp_rmb() and cmm_smp_wmb() only order read vs
440 * read and write vs write. They do not ensure core synchronization. We
441 * really have to ensure total order between the 3 cmm_barriers running on
444 //ust// #ifdef LTT_NO_IPI_BARRIER
446 * Local rmb to match the remote wmb to read the commit count before the
447 * buffer data and the write offset.
451 //ust// if (raw_smp_processor_id() != buf->cpu) {
452 //ust// smp_mb(); /* Total order with IPI handler smp_mb() */
453 //ust// smp_call_function_single(buf->cpu, remote_mb, NULL, 1);
454 //ust// smp_mb(); /* Total order with IPI handler smp_mb() */
458 write_offset
= uatomic_read(&buf
->offset
);
460 * Check that the subbuffer we are trying to consume has been
461 * already fully committed.
463 if (((commit_count
- buf
->chan
->subbuf_size
)
464 & channel
->commit_count_mask
)
465 - (BUFFER_TRUNC(consumed_old
, buf
->chan
)
466 >> channel
->n_subbufs_order
)
471 * Check that we are not about to read the same subbuffer in
472 * which the writer head is.
474 if ((SUBBUF_TRUNC(write_offset
, buf
->chan
)
475 - SUBBUF_TRUNC(consumed_old
, buf
->chan
))
480 /* FIXME: is this ok to disable the reading feature? */
481 //ust// retval = update_read_sb_index(buf, consumed_idx);
483 //ust// return retval;
485 *consumed
= consumed_old
;
490 int ust_buffers_put_subbuf(struct ust_buffer
*buf
, unsigned long uconsumed_old
)
492 long consumed_new
, consumed_old
;
494 consumed_old
= uatomic_read(&buf
->consumed
);
495 consumed_old
= consumed_old
& (~0xFFFFFFFFL
);
496 consumed_old
= consumed_old
| uconsumed_old
;
497 consumed_new
= SUBBUF_ALIGN(consumed_old
, buf
->chan
);
499 //ust// spin_lock(<t_buf->full_lock);
500 if (uatomic_cmpxchg(&buf
->consumed
, consumed_old
,
503 /* We have been pushed by the writer : the last
504 * buffer read _is_ corrupted! It can also
505 * happen if this is a buffer we never got. */
506 //ust// spin_unlock(<t_buf->full_lock);
509 /* tell the client that buffer is now unfull */
512 index
= SUBBUF_INDEX(consumed_old
, buf
->chan
);
513 data
= BUFFER_OFFSET(consumed_old
, buf
->chan
);
514 ltt_buf_unfull(buf
, index
, data
);
515 //ust// spin_unlock(<t_buf->full_lock);
520 static void ltt_relay_print_subbuffer_errors(
521 struct ust_channel
*channel
,
522 long cons_off
, int cpu
)
524 struct ust_buffer
*ltt_buf
= channel
->buf
[cpu
];
525 long cons_idx
, commit_count
, commit_count_sb
, write_offset
;
527 cons_idx
= SUBBUF_INDEX(cons_off
, channel
);
528 commit_count
= uatomic_read(<t_buf
->commit_count
[cons_idx
].cc
);
529 commit_count_sb
= uatomic_read(<t_buf
->commit_count
[cons_idx
].cc_sb
);
532 * No need to order commit_count and write_offset reads because we
533 * execute after trace is stopped when there are no readers left.
535 write_offset
= uatomic_read(<t_buf
->offset
);
536 WARN( "LTT : unread channel %s offset is %ld "
537 "and cons_off : %ld (cpu %d)\n",
538 channel
->channel_name
, write_offset
, cons_off
, cpu
);
539 /* Check each sub-buffer for non filled commit count */
540 if (((commit_count
- channel
->subbuf_size
) & channel
->commit_count_mask
)
541 - (BUFFER_TRUNC(cons_off
, channel
) >> channel
->n_subbufs_order
) != 0) {
542 ERR("LTT : %s : subbuffer %lu has non filled "
543 "commit count [cc, cc_sb] [%lu,%lu].\n",
544 channel
->channel_name
, cons_idx
, commit_count
, commit_count_sb
);
546 ERR("LTT : %s : commit count : %lu, subbuf size %zd\n",
547 channel
->channel_name
, commit_count
,
548 channel
->subbuf_size
);
551 static void ltt_relay_print_errors(struct ust_trace
*trace
,
552 struct ust_channel
*channel
, int cpu
)
554 struct ust_buffer
*ltt_buf
= channel
->buf
[cpu
];
558 * Can be called in the error path of allocation when
559 * trans_channel_data is not yet set.
564 //ust// for (cons_off = 0; cons_off < rchan->alloc_size;
565 //ust// cons_off = SUBBUF_ALIGN(cons_off, rchan))
566 //ust// ust_buffers_print_written(ltt_chan, cons_off, cpu);
567 for (cons_off
= uatomic_read(<t_buf
->consumed
);
568 (SUBBUF_TRUNC(uatomic_read(<t_buf
->offset
),
571 cons_off
= SUBBUF_ALIGN(cons_off
, channel
))
572 ltt_relay_print_subbuffer_errors(channel
, cons_off
, cpu
);
575 static void ltt_relay_print_buffer_errors(struct ust_channel
*channel
, int cpu
)
577 struct ust_trace
*trace
= channel
->trace
;
578 struct ust_buffer
*ltt_buf
= channel
->buf
[cpu
];
580 if (uatomic_read(<t_buf
->events_lost
))
581 ERR("channel %s: %ld events lost (cpu %d)",
582 channel
->channel_name
,
583 uatomic_read(<t_buf
->events_lost
), cpu
);
584 if (uatomic_read(<t_buf
->corrupted_subbuffers
))
585 ERR("channel %s : %ld corrupted subbuffers (cpu %d)",
586 channel
->channel_name
,
587 uatomic_read(<t_buf
->corrupted_subbuffers
), cpu
);
589 ltt_relay_print_errors(trace
, channel
, cpu
);
592 static int map_buf_structs(struct ust_channel
*chan
)
599 size
= PAGE_ALIGN(1);
601 for(i
=0; i
<chan
->n_cpus
; i
++) {
603 result
= chan
->buf_struct_shmids
[i
] = shmget(getpid(), size
, IPC_CREAT
| IPC_EXCL
| 0700);
606 goto destroy_previous
;
609 ptr
= shmat(chan
->buf_struct_shmids
[i
], NULL
, 0);
610 if(ptr
== (void *) -1) {
615 /* Already mark the shared memory for destruction. This will occur only
616 * when all users have detached.
618 result
= shmctl(chan
->buf_struct_shmids
[i
], IPC_RMID
, NULL
);
621 goto destroy_previous
;
629 /* Jumping inside this loop occurs from within the other loop above with i as
630 * counter, so it unallocates the structures for the cpu = current_i down to
634 result
= shmctl(chan
->buf_struct_shmids
[i
], IPC_RMID
, NULL
);
646 static int unmap_buf_structs(struct ust_channel
*chan
)
650 for (i
=0; i
< chan
->n_cpus
; i
++) {
651 if (shmdt(chan
->buf
[i
]) < 0) {
661 static int create_channel(const char *trace_name
, struct ust_trace
*trace
,
662 const char *channel_name
, struct ust_channel
*chan
,
663 unsigned int subbuf_size
, unsigned int n_subbufs
, int overwrite
)
668 chan
->overwrite
= overwrite
;
669 chan
->n_subbufs_order
= get_count_order(n_subbufs
);
670 chan
->commit_count_mask
= (~0UL >> chan
->n_subbufs_order
);
671 chan
->n_cpus
= get_n_cpus();
673 /* These mappings should ideall be per-cpu, if somebody can do that
674 * from userspace, that would be cool!
676 chan
->buf
= (void *) zmalloc(chan
->n_cpus
* sizeof(void *));
677 if(chan
->buf
== NULL
) {
680 chan
->buf_struct_shmids
= (int *) zmalloc(chan
->n_cpus
* sizeof(int));
681 if(chan
->buf_struct_shmids
== NULL
)
684 result
= map_buf_structs(chan
);
686 goto free_buf_struct_shmids
;
689 result
= open_channel(chan
, subbuf_size
, n_subbufs
);
691 ERR("Cannot open channel for trace %s", trace_name
);
692 goto unmap_buf_structs
;
698 for (i
=0; i
< chan
->n_cpus
; i
++) {
699 if (shmdt(chan
->buf
[i
]) < 0) {
700 PERROR("shmdt bufstruct");
704 free_buf_struct_shmids
:
705 free(chan
->buf_struct_shmids
);
715 static void remove_channel(struct ust_channel
*chan
)
719 unmap_buf_structs(chan
);
721 free(chan
->buf_struct_shmids
);
727 static void ltt_relay_async_wakeup_chan(struct ust_channel
*ltt_channel
)
729 //ust// unsigned int i;
730 //ust// struct rchan *rchan = ltt_channel->trans_channel_data;
732 //ust// for_each_possible_cpu(i) {
733 //ust// struct ltt_channel_buf_struct *ltt_buf =
734 //ust// percpu_ptr(ltt_channel->buf, i);
736 //ust// if (uatomic_read(<t_buf->wakeup_readers) == 1) {
737 //ust// uatomic_set(<t_buf->wakeup_readers, 0);
738 //ust// wake_up_interruptible(&rchan->buf[i]->read_wait);
743 static void ltt_relay_finish_buffer(struct ust_channel
*channel
, unsigned int cpu
)
747 if (channel
->buf
[cpu
]) {
748 struct ust_buffer
*buf
= channel
->buf
[cpu
];
749 ltt_force_switch(buf
, FORCE_FLUSH
);
751 /* closing the pipe tells the consumer the buffer is finished */
752 close(buf
->data_ready_fd_write
);
757 static void finish_channel(struct ust_channel
*channel
)
761 for(i
=0; i
<channel
->n_cpus
; i
++) {
762 ltt_relay_finish_buffer(channel
, i
);
768 * ltt_reserve_switch_old_subbuf: switch old subbuffer
770 * Concurrency safe because we are the last and only thread to alter this
771 * sub-buffer. As long as it is not delivered and read, no other thread can
772 * alter the offset, alter the reserve_count or call the
773 * client_buffer_end_callback on this sub-buffer.
775 * The only remaining threads could be the ones with pending commits. They will
776 * have to do the deliver themselves. Not concurrency safe in overwrite mode.
777 * We detect corrupted subbuffers with commit and reserve counts. We keep a
778 * corrupted sub-buffers count and push the readers across these sub-buffers.
780 * Not concurrency safe if a writer is stalled in a subbuffer and another writer
781 * switches in, finding out it's corrupted. The result will be than the old
782 * (uncommited) subbuffer will be declared corrupted, and that the new subbuffer
783 * will be declared corrupted too because of the commit count adjustment.
785 * Note : offset_old should never be 0 here.
787 static void ltt_reserve_switch_old_subbuf(
788 struct ust_channel
*chan
, struct ust_buffer
*buf
,
789 struct ltt_reserve_switch_offsets
*offsets
, u64
*tsc
)
791 long oldidx
= SUBBUF_INDEX(offsets
->old
- 1, chan
);
792 long commit_count
, padding_size
;
794 padding_size
= chan
->subbuf_size
795 - (SUBBUF_OFFSET(offsets
->old
- 1, chan
) + 1);
796 ltt_buffer_end(buf
, *tsc
, offsets
->old
, oldidx
);
799 * Must write slot data before incrementing commit count.
800 * This compiler barrier is upgraded into a cmm_smp_wmb() by the IPI
801 * sent by get_subbuf() when it does its cmm_smp_rmb().
804 uatomic_add(&buf
->commit_count
[oldidx
].cc
, padding_size
);
805 commit_count
= uatomic_read(&buf
->commit_count
[oldidx
].cc
);
806 ltt_check_deliver(chan
, buf
, offsets
->old
- 1, commit_count
, oldidx
);
807 ltt_write_commit_counter(chan
, buf
, oldidx
,
808 offsets
->old
, commit_count
, padding_size
);
812 * ltt_reserve_switch_new_subbuf: Populate new subbuffer.
814 * This code can be executed unordered : writers may already have written to the
815 * sub-buffer before this code gets executed, caution. The commit makes sure
816 * that this code is executed before the deliver of this sub-buffer.
818 static void ltt_reserve_switch_new_subbuf(
819 struct ust_channel
*chan
, struct ust_buffer
*buf
,
820 struct ltt_reserve_switch_offsets
*offsets
, u64
*tsc
)
822 long beginidx
= SUBBUF_INDEX(offsets
->begin
, chan
);
825 ltt_buffer_begin(buf
, *tsc
, beginidx
);
828 * Must write slot data before incrementing commit count.
829 * This compiler barrier is upgraded into a cmm_smp_wmb() by the IPI
830 * sent by get_subbuf() when it does its cmm_smp_rmb().
833 uatomic_add(&buf
->commit_count
[beginidx
].cc
, ltt_subbuffer_header_size());
834 commit_count
= uatomic_read(&buf
->commit_count
[beginidx
].cc
);
835 /* Check if the written buffer has to be delivered */
836 ltt_check_deliver(chan
, buf
, offsets
->begin
, commit_count
, beginidx
);
837 ltt_write_commit_counter(chan
, buf
, beginidx
,
838 offsets
->begin
, commit_count
, ltt_subbuffer_header_size());
842 * ltt_reserve_end_switch_current: finish switching current subbuffer
844 * Concurrency safe because we are the last and only thread to alter this
845 * sub-buffer. As long as it is not delivered and read, no other thread can
846 * alter the offset, alter the reserve_count or call the
847 * client_buffer_end_callback on this sub-buffer.
849 * The only remaining threads could be the ones with pending commits. They will
850 * have to do the deliver themselves. Not concurrency safe in overwrite mode.
851 * We detect corrupted subbuffers with commit and reserve counts. We keep a
852 * corrupted sub-buffers count and push the readers across these sub-buffers.
854 * Not concurrency safe if a writer is stalled in a subbuffer and another writer
855 * switches in, finding out it's corrupted. The result will be than the old
856 * (uncommited) subbuffer will be declared corrupted, and that the new subbuffer
857 * will be declared corrupted too because of the commit count adjustment.
859 static void ltt_reserve_end_switch_current(
860 struct ust_channel
*chan
,
861 struct ust_buffer
*buf
,
862 struct ltt_reserve_switch_offsets
*offsets
, u64
*tsc
)
864 long endidx
= SUBBUF_INDEX(offsets
->end
- 1, chan
);
865 long commit_count
, padding_size
;
867 padding_size
= chan
->subbuf_size
868 - (SUBBUF_OFFSET(offsets
->end
- 1, chan
) + 1);
870 ltt_buffer_end(buf
, *tsc
, offsets
->end
, endidx
);
873 * Must write slot data before incrementing commit count.
874 * This compiler barrier is upgraded into a cmm_smp_wmb() by the IPI
875 * sent by get_subbuf() when it does its cmm_smp_rmb().
878 uatomic_add(&buf
->commit_count
[endidx
].cc
, padding_size
);
879 commit_count
= uatomic_read(&buf
->commit_count
[endidx
].cc
);
880 ltt_check_deliver(chan
, buf
,
881 offsets
->end
- 1, commit_count
, endidx
);
882 ltt_write_commit_counter(chan
, buf
, endidx
,
883 offsets
->end
, commit_count
, padding_size
);
889 * !0 if execution must be aborted.
891 static int ltt_relay_try_switch_slow(
892 enum force_switch_mode mode
,
893 struct ust_channel
*chan
,
894 struct ust_buffer
*buf
,
895 struct ltt_reserve_switch_offsets
*offsets
,
899 long reserve_commit_diff
;
901 offsets
->begin
= uatomic_read(&buf
->offset
);
902 offsets
->old
= offsets
->begin
;
903 offsets
->begin_switch
= 0;
904 offsets
->end_switch_old
= 0;
906 *tsc
= trace_clock_read64();
908 if (SUBBUF_OFFSET(offsets
->begin
, buf
->chan
) != 0) {
909 offsets
->begin
= SUBBUF_ALIGN(offsets
->begin
, buf
->chan
);
910 offsets
->end_switch_old
= 1;
912 /* we do not have to switch : buffer is empty */
915 if (mode
== FORCE_ACTIVE
)
916 offsets
->begin
+= ltt_subbuffer_header_size();
918 * Always begin_switch in FORCE_ACTIVE mode.
919 * Test new buffer integrity
921 subbuf_index
= SUBBUF_INDEX(offsets
->begin
, buf
->chan
);
922 reserve_commit_diff
=
923 (BUFFER_TRUNC(offsets
->begin
, buf
->chan
)
924 >> chan
->n_subbufs_order
)
925 - (uatomic_read(&buf
->commit_count
[subbuf_index
].cc_sb
)
926 & chan
->commit_count_mask
);
927 if (reserve_commit_diff
== 0) {
928 /* Next buffer not corrupted. */
929 if (mode
== FORCE_ACTIVE
931 && offsets
->begin
- uatomic_read(&buf
->consumed
)
932 >= chan
->alloc_size
) {
934 * We do not overwrite non consumed buffers and we are
935 * full : ignore switch while tracing is active.
941 * Next subbuffer corrupted. Force pushing reader even in normal
945 offsets
->end
= offsets
->begin
;
950 * Force a sub-buffer switch for a per-cpu buffer. This operation is
951 * completely reentrant : can be called while tracing is active with
952 * absolutely no lock held.
954 void ltt_force_switch_lockless_slow(struct ust_buffer
*buf
,
955 enum force_switch_mode mode
)
957 struct ust_channel
*chan
= buf
->chan
;
958 struct ltt_reserve_switch_offsets offsets
;
963 DBG("Switching (forced) %s_%d", chan
->channel_name
, buf
->cpu
);
965 * Perform retryable operations.
968 if (ltt_relay_try_switch_slow(mode
, chan
, buf
,
971 } while (uatomic_cmpxchg(&buf
->offset
, offsets
.old
,
972 offsets
.end
) != offsets
.old
);
975 * Atomically update last_tsc. This update races against concurrent
976 * atomic updates, but the race will always cause supplementary full TSC
977 * events, never the opposite (missing a full TSC event when it would be
980 save_last_tsc(buf
, tsc
);
983 * Push the reader if necessary
985 if (mode
== FORCE_ACTIVE
) {
986 ltt_reserve_push_reader(chan
, buf
, offsets
.end
- 1);
987 //ust// ltt_clear_noref_flag(chan, buf, SUBBUF_INDEX(offsets.end - 1, chan));
991 * Switch old subbuffer if needed.
993 if (offsets
.end_switch_old
) {
994 //ust// ltt_clear_noref_flag(rchan, buf, SUBBUF_INDEX(offsets.old - 1, rchan));
995 ltt_reserve_switch_old_subbuf(chan
, buf
, &offsets
, &tsc
);
999 * Populate new subbuffer.
1001 if (mode
== FORCE_ACTIVE
)
1002 ltt_reserve_switch_new_subbuf(chan
, buf
, &offsets
, &tsc
);
1008 * !0 if execution must be aborted.
1010 static int ltt_relay_try_reserve_slow(struct ust_channel
*chan
, struct ust_buffer
*buf
,
1011 struct ltt_reserve_switch_offsets
*offsets
, size_t data_size
,
1012 u64
*tsc
, unsigned int *rflags
, int largest_align
)
1014 long reserve_commit_diff
;
1016 offsets
->begin
= uatomic_read(&buf
->offset
);
1017 offsets
->old
= offsets
->begin
;
1018 offsets
->begin_switch
= 0;
1019 offsets
->end_switch_current
= 0;
1020 offsets
->end_switch_old
= 0;
1022 *tsc
= trace_clock_read64();
1023 if (last_tsc_overflow(buf
, *tsc
))
1024 *rflags
= LTT_RFLAG_ID_SIZE_TSC
;
1026 if (unlikely(SUBBUF_OFFSET(offsets
->begin
, buf
->chan
) == 0)) {
1027 offsets
->begin_switch
= 1; /* For offsets->begin */
1029 offsets
->size
= ust_get_header_size(chan
,
1030 offsets
->begin
, data_size
,
1031 &offsets
->before_hdr_pad
, *rflags
);
1032 offsets
->size
+= ltt_align(offsets
->begin
+ offsets
->size
,
1035 if (unlikely((SUBBUF_OFFSET(offsets
->begin
, buf
->chan
) +
1036 offsets
->size
) > buf
->chan
->subbuf_size
)) {
1037 offsets
->end_switch_old
= 1; /* For offsets->old */
1038 offsets
->begin_switch
= 1; /* For offsets->begin */
1041 if (unlikely(offsets
->begin_switch
)) {
1045 * We are typically not filling the previous buffer completely.
1047 if (likely(offsets
->end_switch_old
))
1048 offsets
->begin
= SUBBUF_ALIGN(offsets
->begin
,
1050 offsets
->begin
= offsets
->begin
+ ltt_subbuffer_header_size();
1051 /* Test new buffer integrity */
1052 subbuf_index
= SUBBUF_INDEX(offsets
->begin
, buf
->chan
);
1053 reserve_commit_diff
=
1054 (BUFFER_TRUNC(offsets
->begin
, buf
->chan
)
1055 >> chan
->n_subbufs_order
)
1056 - (uatomic_read(&buf
->commit_count
[subbuf_index
].cc_sb
)
1057 & chan
->commit_count_mask
);
1058 if (likely(reserve_commit_diff
== 0)) {
1059 /* Next buffer not corrupted. */
1060 if (unlikely(!chan
->overwrite
&&
1061 (SUBBUF_TRUNC(offsets
->begin
, buf
->chan
)
1062 - SUBBUF_TRUNC(uatomic_read(
1065 >= chan
->alloc_size
)) {
1067 * We do not overwrite non consumed buffers
1068 * and we are full : event is lost.
1070 uatomic_inc(&buf
->events_lost
);
1074 * next buffer not corrupted, we are either in
1075 * overwrite mode or the buffer is not full.
1076 * It's safe to write in this new subbuffer.
1081 * Next subbuffer corrupted. Drop event in normal and
1082 * overwrite mode. Caused by either a writer OOPS or
1083 * too many nested writes over a reserve/commit pair.
1085 uatomic_inc(&buf
->events_lost
);
1088 offsets
->size
= ust_get_header_size(chan
,
1089 offsets
->begin
, data_size
,
1090 &offsets
->before_hdr_pad
, *rflags
);
1091 offsets
->size
+= ltt_align(offsets
->begin
+ offsets
->size
,
1094 if (unlikely((SUBBUF_OFFSET(offsets
->begin
, buf
->chan
)
1095 + offsets
->size
) > buf
->chan
->subbuf_size
)) {
1097 * Event too big for subbuffers, report error, don't
1098 * complete the sub-buffer switch.
1100 uatomic_inc(&buf
->events_lost
);
1104 * We just made a successful buffer switch and the event
1105 * fits in the new subbuffer. Let's write.
1110 * Event fits in the current buffer and we are not on a switch
1111 * boundary. It's safe to write.
1114 offsets
->end
= offsets
->begin
+ offsets
->size
;
1116 if (unlikely((SUBBUF_OFFSET(offsets
->end
, buf
->chan
)) == 0)) {
1118 * The offset_end will fall at the very beginning of the next
1121 offsets
->end_switch_current
= 1; /* For offsets->begin */
1127 * ltt_relay_reserve_slot_lockless_slow - Atomic slot reservation in a buffer.
1128 * @trace: the trace structure to log to.
1129 * @ltt_channel: channel structure
1130 * @transport_data: data structure specific to ltt relay
1131 * @data_size: size of the variable length data to log.
1132 * @slot_size: pointer to total size of the slot (out)
1133 * @buf_offset : pointer to reserved buffer offset (out)
1134 * @tsc: pointer to the tsc at the slot reservation (out)
1137 * Return : -ENOSPC if not enough space, else returns 0.
1138 * It will take care of sub-buffer switching.
1140 int ltt_reserve_slot_lockless_slow(struct ust_channel
*chan
,
1141 struct ust_trace
*trace
, size_t data_size
,
1142 int largest_align
, int cpu
,
1143 struct ust_buffer
**ret_buf
,
1144 size_t *slot_size
, long *buf_offset
,
1145 u64
*tsc
, unsigned int *rflags
)
1147 struct ust_buffer
*buf
= *ret_buf
= chan
->buf
[cpu
];
1148 struct ltt_reserve_switch_offsets offsets
;
1153 if (unlikely(ltt_relay_try_reserve_slow(chan
, buf
, &offsets
,
1154 data_size
, tsc
, rflags
, largest_align
)))
1156 } while (unlikely(uatomic_cmpxchg(&buf
->offset
, offsets
.old
,
1157 offsets
.end
) != offsets
.old
));
1160 * Atomically update last_tsc. This update races against concurrent
1161 * atomic updates, but the race will always cause supplementary full TSC
1162 * events, never the opposite (missing a full TSC event when it would be
1165 save_last_tsc(buf
, *tsc
);
1168 * Push the reader if necessary
1170 ltt_reserve_push_reader(chan
, buf
, offsets
.end
- 1);
1173 * Clear noref flag for this subbuffer.
1175 //ust// ltt_clear_noref_flag(chan, buf, SUBBUF_INDEX(offsets.end - 1, chan));
1178 * Switch old subbuffer if needed.
1180 if (unlikely(offsets
.end_switch_old
)) {
1181 //ust// ltt_clear_noref_flag(chan, buf, SUBBUF_INDEX(offsets.old - 1, chan));
1182 ltt_reserve_switch_old_subbuf(chan
, buf
, &offsets
, tsc
);
1183 DBG("Switching %s_%d", chan
->channel_name
, cpu
);
1187 * Populate new subbuffer.
1189 if (unlikely(offsets
.begin_switch
))
1190 ltt_reserve_switch_new_subbuf(chan
, buf
, &offsets
, tsc
);
1192 if (unlikely(offsets
.end_switch_current
))
1193 ltt_reserve_end_switch_current(chan
, buf
, &offsets
, tsc
);
1195 *slot_size
= offsets
.size
;
1196 *buf_offset
= offsets
.begin
+ offsets
.before_hdr_pad
;
1200 static struct ltt_transport ust_relay_transport
= {
1203 .create_channel
= create_channel
,
1204 .finish_channel
= finish_channel
,
1205 .remove_channel
= remove_channel
,
1206 .wakeup_channel
= ltt_relay_async_wakeup_chan
,
1210 static char initialized
= 0;
1212 void __attribute__((constructor
)) init_ustrelay_transport(void)
1215 ltt_transport_register(&ust_relay_transport
);
1220 static void __attribute__((destructor
)) ust_buffers_exit(void)
1222 ltt_transport_unregister(&ust_relay_transport
);
1225 size_t ltt_write_event_header_slow(struct ust_channel
*channel
,
1226 struct ust_buffer
*buf
, long buf_offset
,
1227 u16 eID
, u32 event_size
,
1228 u64 tsc
, unsigned int rflags
)
1230 struct ltt_event_header header
;
1234 case LTT_RFLAG_ID_SIZE_TSC
:
1235 header
.id_time
= 29 << LTT_TSC_BITS
;
1237 case LTT_RFLAG_ID_SIZE
:
1238 header
.id_time
= 30 << LTT_TSC_BITS
;
1241 header
.id_time
= 31 << LTT_TSC_BITS
;
1249 header
.id_time
|= (u32
)tsc
& LTT_TSC_MASK
;
1250 ust_buffers_write(buf
, buf_offset
, &header
, sizeof(header
));
1251 buf_offset
+= sizeof(header
);
1254 case LTT_RFLAG_ID_SIZE_TSC
:
1255 small_size
= (u16
)min_t(u32
, event_size
, LTT_MAX_SMALL_SIZE
);
1256 ust_buffers_write(buf
, buf_offset
,
1258 buf_offset
+= sizeof(u16
);
1259 ust_buffers_write(buf
, buf_offset
,
1260 &small_size
, sizeof(u16
));
1261 buf_offset
+= sizeof(u16
);
1262 if (small_size
== LTT_MAX_SMALL_SIZE
) {
1263 ust_buffers_write(buf
, buf_offset
,
1264 &event_size
, sizeof(u32
));
1265 buf_offset
+= sizeof(u32
);
1267 buf_offset
+= ltt_align(buf_offset
, sizeof(u64
));
1268 ust_buffers_write(buf
, buf_offset
,
1270 buf_offset
+= sizeof(u64
);
1272 case LTT_RFLAG_ID_SIZE
:
1273 small_size
= (u16
)min_t(u32
, event_size
, LTT_MAX_SMALL_SIZE
);
1274 ust_buffers_write(buf
, buf_offset
,
1276 buf_offset
+= sizeof(u16
);
1277 ust_buffers_write(buf
, buf_offset
,
1278 &small_size
, sizeof(u16
));
1279 buf_offset
+= sizeof(u16
);
1280 if (small_size
== LTT_MAX_SMALL_SIZE
) {
1281 ust_buffers_write(buf
, buf_offset
,
1282 &event_size
, sizeof(u32
));
1283 buf_offset
+= sizeof(u32
);
1287 ust_buffers_write(buf
, buf_offset
,
1289 buf_offset
+= sizeof(u16
);