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 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
);
73 /* _ust_buffers_write()
75 * @buf: destination buffer
76 * @offset: offset in destination
78 * @len: length of source
79 * @cpy: already copied
82 void _ust_buffers_write(struct ust_buffer
*buf
, size_t offset
,
83 const void *src
, size_t len
, ssize_t cpy
)
90 WARN_ON(offset
>= buf
->buf_size
);
92 cpy
= min_t(size_t, len
, buf
->buf_size
- offset
);
93 ust_buffers_do_copy(buf
->buf_data
+ offset
, src
, cpy
);
94 } while (unlikely(len
!= cpy
));
97 static int ust_buffers_init_buffer(struct ust_trace
*trace
,
98 struct ust_channel
*ltt_chan
,
99 struct ust_buffer
*buf
,
100 unsigned int n_subbufs
);
102 static int ust_buffers_alloc_buf(struct ust_buffer
*buf
, size_t *size
)
107 *size
= PAGE_ALIGN(*size
);
109 result
= buf
->shmid
= shmget(getpid(), *size
, IPC_CREAT
| IPC_EXCL
| 0700);
110 if(result
== -1 && errno
== EINVAL
) {
111 ERR("shmget() returned EINVAL; maybe /proc/sys/kernel/shmmax should be increased.");
114 else if(result
== -1) {
119 /* FIXME: should have matching call to shmdt */
120 ptr
= shmat(buf
->shmid
, NULL
, 0);
121 if(ptr
== (void *) -1) {
126 /* Already mark the shared memory for destruction. This will occur only
127 * when all users have detached.
129 result
= shmctl(buf
->shmid
, IPC_RMID
, NULL
);
136 buf
->buf_size
= *size
;
141 result
= shmctl(buf
->shmid
, IPC_RMID
, NULL
);
149 int ust_buffers_create_buf(struct ust_channel
*channel
, int cpu
)
152 struct ust_buffer
*buf
= channel
->buf
[cpu
];
155 result
= ust_buffers_alloc_buf(buf
, &channel
->alloc_size
);
160 kref_get(&channel
->kref
);
164 static void ust_buffers_destroy_channel(struct kref
*kref
)
166 struct ust_channel
*chan
= container_of(kref
, struct ust_channel
, kref
);
170 static void ust_buffers_destroy_buf(struct ust_buffer
*buf
)
172 struct ust_channel
*chan
= buf
->chan
;
175 result
= munmap(buf
->buf_data
, buf
->buf_size
);
180 //ust// chan->buf[buf->cpu] = NULL;
182 kref_put(&chan
->kref
, ust_buffers_destroy_channel
);
185 /* called from kref_put */
186 static void ust_buffers_remove_buf(struct kref
*kref
)
188 struct ust_buffer
*buf
= container_of(kref
, struct ust_buffer
, kref
);
189 ust_buffers_destroy_buf(buf
);
192 int ust_buffers_open_buf(struct ust_channel
*chan
, int cpu
)
196 result
= ust_buffers_create_buf(chan
, cpu
);
200 kref_init(&chan
->buf
[cpu
]->kref
);
202 result
= ust_buffers_init_buffer(chan
->trace
, chan
, chan
->buf
[cpu
], chan
->subbuf_cnt
);
208 /* FIXME: decrementally destroy on error? */
212 * ust_buffers_close_buf - close a channel buffer
215 static void ust_buffers_close_buf(struct ust_buffer
*buf
)
217 kref_put(&buf
->kref
, ust_buffers_remove_buf
);
220 int ust_buffers_channel_open(struct ust_channel
*chan
, size_t subbuf_size
, size_t subbuf_cnt
)
225 if(subbuf_size
== 0 || subbuf_cnt
== 0)
228 /* Check that the subbuffer size is larger than a page. */
229 WARN_ON_ONCE(subbuf_size
< PAGE_SIZE
);
232 * Make sure the number of subbuffers and subbuffer size are power of 2.
234 WARN_ON_ONCE(hweight32(subbuf_size
) != 1);
235 WARN_ON(hweight32(subbuf_cnt
) != 1);
237 chan
->version
= UST_CHANNEL_VERSION
;
238 chan
->subbuf_cnt
= subbuf_cnt
;
239 chan
->subbuf_size
= subbuf_size
;
240 chan
->subbuf_size_order
= get_count_order(subbuf_size
);
241 chan
->alloc_size
= subbuf_size
* subbuf_cnt
;
243 kref_init(&chan
->kref
);
245 mutex_lock(&ust_buffers_channels_mutex
);
246 for(i
=0; i
<chan
->n_cpus
; i
++) {
247 result
= ust_buffers_open_buf(chan
, i
);
251 list_add(&chan
->list
, &ust_buffers_channels
);
252 mutex_unlock(&ust_buffers_channels_mutex
);
256 /* Jump directly inside the loop to close the buffers that were already
259 ust_buffers_close_buf(chan
->buf
[i
]);
264 kref_put(&chan
->kref
, ust_buffers_destroy_channel
);
265 mutex_unlock(&ust_buffers_channels_mutex
);
269 void ust_buffers_channel_close(struct ust_channel
*chan
)
275 mutex_lock(&ust_buffers_channels_mutex
);
276 for(i
=0; i
<chan
->n_cpus
; i
++) {
277 /* FIXME: if we make it here, then all buffers were necessarily allocated. Moreover, we don't
278 * initialize to NULL so we cannot use this check. Should we? */
279 //ust// if (chan->buf[i])
280 ust_buffers_close_buf(chan
->buf
[i
]);
283 list_del(&chan
->list
);
284 kref_put(&chan
->kref
, ust_buffers_destroy_channel
);
285 mutex_unlock(&ust_buffers_channels_mutex
);
292 static void ust_buffers_destroy_buffer(struct ust_channel
*ltt_chan
, int cpu
);
294 static void ltt_force_switch(struct ust_buffer
*buf
,
295 enum force_switch_mode mode
);
300 static void ltt_buffer_begin(struct ust_buffer
*buf
,
301 u64 tsc
, unsigned int subbuf_idx
)
303 struct ust_channel
*channel
= buf
->chan
;
304 struct ltt_subbuffer_header
*header
=
305 (struct ltt_subbuffer_header
*)
306 ust_buffers_offset_address(buf
,
307 subbuf_idx
* buf
->chan
->subbuf_size
);
309 header
->cycle_count_begin
= tsc
;
310 header
->data_size
= 0xFFFFFFFF; /* for recognizing crashed buffers */
311 header
->sb_size
= 0xFFFFFFFF; /* for recognizing crashed buffers */
312 /* FIXME: add memory barrier? */
313 ltt_write_trace_header(channel
->trace
, header
);
317 * offset is assumed to never be 0 here : never deliver a completely empty
318 * subbuffer. The lost size is between 0 and subbuf_size-1.
320 static notrace
void ltt_buffer_end(struct ust_buffer
*buf
,
321 u64 tsc
, unsigned int offset
, unsigned int subbuf_idx
)
323 struct ltt_subbuffer_header
*header
=
324 (struct ltt_subbuffer_header
*)
325 ust_buffers_offset_address(buf
,
326 subbuf_idx
* buf
->chan
->subbuf_size
);
327 u32 data_size
= SUBBUF_OFFSET(offset
- 1, buf
->chan
) + 1;
329 header
->data_size
= data_size
;
330 header
->sb_size
= PAGE_ALIGN(data_size
);
331 header
->cycle_count_end
= tsc
;
332 header
->events_lost
= uatomic_read(&buf
->events_lost
);
333 header
->subbuf_corrupt
= uatomic_read(&buf
->corrupted_subbuffers
);
334 if(unlikely(header
->events_lost
> 0)) {
335 DBG("Some events (%d) were lost in %s_%d", header
->events_lost
, buf
->chan
->channel_name
, buf
->cpu
);
340 * This function should not be called from NMI interrupt context
342 static notrace
void ltt_buf_unfull(struct ust_buffer
*buf
,
343 unsigned int subbuf_idx
,
349 * Promote compiler barrier to a smp_mb().
350 * For the specific LTTng case, this IPI call should be removed if the
351 * architecture does not reorder writes. This should eventually be provided by
352 * a separate architecture-specific infrastructure.
354 //ust// static void remote_mb(void *info)
359 int ust_buffers_get_subbuf(struct ust_buffer
*buf
, long *consumed
)
361 struct ust_channel
*channel
= buf
->chan
;
362 long consumed_old
, consumed_idx
, commit_count
, write_offset
;
365 consumed_old
= uatomic_read(&buf
->consumed
);
366 consumed_idx
= SUBBUF_INDEX(consumed_old
, buf
->chan
);
367 commit_count
= uatomic_read(&buf
->commit_count
[consumed_idx
].cc_sb
);
369 * Make sure we read the commit count before reading the buffer
370 * data and the write offset. Correct consumed offset ordering
371 * wrt commit count is insured by the use of cmpxchg to update
372 * the consumed offset.
373 * smp_call_function_single can fail if the remote CPU is offline,
374 * this is OK because then there is no wmb to execute there.
375 * If our thread is executing on the same CPU as the on the buffers
376 * belongs to, we don't have to synchronize it at all. If we are
377 * migrated, the scheduler will take care of the memory barriers.
378 * Normally, smp_call_function_single() should ensure program order when
379 * executing the remote function, which implies that it surrounds the
380 * function execution with :
391 * However, smp_call_function_single() does not seem to clearly execute
392 * such barriers. It depends on spinlock semantic to provide the barrier
393 * before executing the IPI and, when busy-looping, csd_lock_wait only
394 * executes smp_mb() when it has to wait for the other CPU.
396 * I don't trust this code. Therefore, let's add the smp_mb() sequence
397 * required ourself, even if duplicated. It has no performance impact
400 * smp_mb() is needed because smp_rmb() and smp_wmb() only order read vs
401 * read and write vs write. They do not ensure core synchronization. We
402 * really have to ensure total order between the 3 barriers running on
405 //ust// #ifdef LTT_NO_IPI_BARRIER
407 * Local rmb to match the remote wmb to read the commit count before the
408 * buffer data and the write offset.
412 //ust// if (raw_smp_processor_id() != buf->cpu) {
413 //ust// smp_mb(); /* Total order with IPI handler smp_mb() */
414 //ust// smp_call_function_single(buf->cpu, remote_mb, NULL, 1);
415 //ust// smp_mb(); /* Total order with IPI handler smp_mb() */
419 write_offset
= uatomic_read(&buf
->offset
);
421 * Check that the subbuffer we are trying to consume has been
422 * already fully committed.
424 if (((commit_count
- buf
->chan
->subbuf_size
)
425 & channel
->commit_count_mask
)
426 - (BUFFER_TRUNC(consumed_old
, buf
->chan
)
427 >> channel
->n_subbufs_order
)
432 * Check that we are not about to read the same subbuffer in
433 * which the writer head is.
435 if ((SUBBUF_TRUNC(write_offset
, buf
->chan
)
436 - SUBBUF_TRUNC(consumed_old
, buf
->chan
))
441 /* FIXME: is this ok to disable the reading feature? */
442 //ust// retval = update_read_sb_index(buf, consumed_idx);
444 //ust// return retval;
446 *consumed
= consumed_old
;
451 int ust_buffers_put_subbuf(struct ust_buffer
*buf
, unsigned long uconsumed_old
)
453 long consumed_new
, consumed_old
;
455 consumed_old
= uatomic_read(&buf
->consumed
);
456 consumed_old
= consumed_old
& (~0xFFFFFFFFL
);
457 consumed_old
= consumed_old
| uconsumed_old
;
458 consumed_new
= SUBBUF_ALIGN(consumed_old
, buf
->chan
);
460 //ust// spin_lock(<t_buf->full_lock);
461 if (uatomic_cmpxchg(&buf
->consumed
, consumed_old
,
464 /* We have been pushed by the writer : the last
465 * buffer read _is_ corrupted! It can also
466 * happen if this is a buffer we never got. */
467 //ust// spin_unlock(<t_buf->full_lock);
470 /* tell the client that buffer is now unfull */
473 index
= SUBBUF_INDEX(consumed_old
, buf
->chan
);
474 data
= BUFFER_OFFSET(consumed_old
, buf
->chan
);
475 ltt_buf_unfull(buf
, index
, data
);
476 //ust// spin_unlock(<t_buf->full_lock);
481 static void ltt_relay_print_subbuffer_errors(
482 struct ust_channel
*channel
,
483 long cons_off
, int cpu
)
485 struct ust_buffer
*ltt_buf
= channel
->buf
[cpu
];
486 long cons_idx
, commit_count
, commit_count_sb
, write_offset
;
488 cons_idx
= SUBBUF_INDEX(cons_off
, channel
);
489 commit_count
= uatomic_read(<t_buf
->commit_count
[cons_idx
].cc
);
490 commit_count_sb
= uatomic_read(<t_buf
->commit_count
[cons_idx
].cc_sb
);
493 * No need to order commit_count and write_offset reads because we
494 * execute after trace is stopped when there are no readers left.
496 write_offset
= uatomic_read(<t_buf
->offset
);
497 WARN( "LTT : unread channel %s offset is %ld "
498 "and cons_off : %ld (cpu %d)\n",
499 channel
->channel_name
, write_offset
, cons_off
, cpu
);
500 /* Check each sub-buffer for non filled commit count */
501 if (((commit_count
- channel
->subbuf_size
) & channel
->commit_count_mask
)
502 - (BUFFER_TRUNC(cons_off
, channel
) >> channel
->n_subbufs_order
) != 0) {
503 ERR("LTT : %s : subbuffer %lu has non filled "
504 "commit count [cc, cc_sb] [%lu,%lu].\n",
505 channel
->channel_name
, cons_idx
, commit_count
, commit_count_sb
);
507 ERR("LTT : %s : commit count : %lu, subbuf size %zd\n",
508 channel
->channel_name
, commit_count
,
509 channel
->subbuf_size
);
512 static void ltt_relay_print_errors(struct ust_trace
*trace
,
513 struct ust_channel
*channel
, int cpu
)
515 struct ust_buffer
*ltt_buf
= channel
->buf
[cpu
];
519 * Can be called in the error path of allocation when
520 * trans_channel_data is not yet set.
525 //ust// for (cons_off = 0; cons_off < rchan->alloc_size;
526 //ust// cons_off = SUBBUF_ALIGN(cons_off, rchan))
527 //ust// ust_buffers_print_written(ltt_chan, cons_off, cpu);
528 for (cons_off
= uatomic_read(<t_buf
->consumed
);
529 (SUBBUF_TRUNC(uatomic_read(<t_buf
->offset
),
532 cons_off
= SUBBUF_ALIGN(cons_off
, channel
))
533 ltt_relay_print_subbuffer_errors(channel
, cons_off
, cpu
);
536 static void ltt_relay_print_buffer_errors(struct ust_channel
*channel
, int cpu
)
538 struct ust_trace
*trace
= channel
->trace
;
539 struct ust_buffer
*ltt_buf
= channel
->buf
[cpu
];
541 if (uatomic_read(<t_buf
->events_lost
))
542 ERR("channel %s: %ld events lost (cpu %d)",
543 channel
->channel_name
,
544 uatomic_read(<t_buf
->events_lost
), cpu
);
545 if (uatomic_read(<t_buf
->corrupted_subbuffers
))
546 ERR("channel %s : %ld corrupted subbuffers (cpu %d)",
547 channel
->channel_name
,
548 uatomic_read(<t_buf
->corrupted_subbuffers
), cpu
);
550 ltt_relay_print_errors(trace
, channel
, cpu
);
553 static void ltt_relay_release_channel(struct kref
*kref
)
555 struct ust_channel
*ltt_chan
= container_of(kref
,
556 struct ust_channel
, kref
);
563 //ust// static int ltt_relay_create_buffer(struct ust_trace *trace,
564 //ust// struct ltt_channel_struct *ltt_chan, struct rchan_buf *buf,
565 //ust// unsigned int cpu, unsigned int n_subbufs)
567 //ust// struct ltt_channel_buf_struct *ltt_buf =
568 //ust// percpu_ptr(ltt_chan->buf, cpu);
569 //ust// unsigned int j;
571 //ust// ltt_buf->commit_count =
572 //ust// kzalloc_node(sizeof(ltt_buf->commit_count) * n_subbufs,
573 //ust// GFP_KERNEL, cpu_to_node(cpu));
574 //ust// if (!ltt_buf->commit_count)
575 //ust// return -ENOMEM;
576 //ust// kref_get(&trace->kref);
577 //ust// kref_get(&trace->ltt_transport_kref);
578 //ust// kref_get(<t_chan->kref);
579 //ust// uatomic_set(<t_buf->offset, ltt_subbuffer_header_size());
580 //ust// uatomic_set(<t_buf->consumed, 0);
581 //ust// uatomic_set(<t_buf->active_readers, 0);
582 //ust// for (j = 0; j < n_subbufs; j++)
583 //ust// uatomic_set(<t_buf->commit_count[j], 0);
584 //ust// init_waitqueue_head(<t_buf->write_wait);
585 //ust// uatomic_set(<t_buf->wakeup_readers, 0);
586 //ust// spin_lock_init(<t_buf->full_lock);
588 //ust// ltt_buffer_begin_callback(buf, trace->start_tsc, 0);
589 //ust// /* atomic_add made on local variable on data that belongs to
590 //ust// * various CPUs : ok because tracing not started (for this cpu). */
591 //ust// uatomic_add(<t_buf->commit_count[0], ltt_subbuffer_header_size());
593 //ust// uatomic_set(<t_buf->events_lost, 0);
594 //ust// uatomic_set(<t_buf->corrupted_subbuffers, 0);
599 static int ust_buffers_init_buffer(struct ust_trace
*trace
,
600 struct ust_channel
*ltt_chan
, struct ust_buffer
*buf
,
601 unsigned int n_subbufs
)
608 zmalloc(sizeof(*buf
->commit_count
) * n_subbufs
);
609 if (!buf
->commit_count
)
611 kref_get(&trace
->kref
);
612 kref_get(&trace
->ltt_transport_kref
);
613 kref_get(<t_chan
->kref
);
614 uatomic_set(&buf
->offset
, ltt_subbuffer_header_size());
615 uatomic_set(&buf
->consumed
, 0);
616 uatomic_set(&buf
->active_readers
, 0);
617 for (j
= 0; j
< n_subbufs
; j
++) {
618 uatomic_set(&buf
->commit_count
[j
].cc
, 0);
619 uatomic_set(&buf
->commit_count
[j
].cc_sb
, 0);
621 //ust// init_waitqueue_head(&buf->write_wait);
622 //ust// uatomic_set(&buf->wakeup_readers, 0);
623 //ust// spin_lock_init(&buf->full_lock);
625 ltt_buffer_begin(buf
, trace
->start_tsc
, 0);
627 uatomic_add(&buf
->commit_count
[0].cc
, ltt_subbuffer_header_size());
629 uatomic_set(&buf
->events_lost
, 0);
630 uatomic_set(&buf
->corrupted_subbuffers
, 0);
637 buf
->data_ready_fd_read
= fds
[0];
638 buf
->data_ready_fd_write
= fds
[1];
640 //ust// buf->commit_seq = malloc(sizeof(buf->commit_seq) * n_subbufs);
641 //ust// if(!ltt_buf->commit_seq) {
644 memset(buf
->commit_seq
, 0, sizeof(buf
->commit_seq
[0]) * n_subbufs
);
646 /* FIXME: decrementally destroy on error */
651 /* FIXME: use this function */
652 static void ust_buffers_destroy_buffer(struct ust_channel
*ltt_chan
, int cpu
)
654 struct ust_trace
*trace
= ltt_chan
->trace
;
655 struct ust_buffer
*ltt_buf
= ltt_chan
->buf
[cpu
];
657 kref_put(<t_chan
->trace
->ltt_transport_kref
,
658 ltt_release_transport
);
659 ltt_relay_print_buffer_errors(ltt_chan
, cpu
);
660 //ust// free(ltt_buf->commit_seq);
661 free(ltt_buf
->commit_count
);
662 ltt_buf
->commit_count
= NULL
;
663 kref_put(<t_chan
->kref
, ltt_relay_release_channel
);
664 kref_put(&trace
->kref
, ltt_release_trace
);
665 //ust// wake_up_interruptible(&trace->kref_wq);
668 static int ust_buffers_alloc_channel_buf_structs(struct ust_channel
*chan
)
675 size
= PAGE_ALIGN(1);
677 for(i
=0; i
<chan
->n_cpus
; i
++) {
679 result
= chan
->buf_struct_shmids
[i
] = shmget(getpid(), size
, IPC_CREAT
| IPC_EXCL
| 0700);
682 goto destroy_previous
;
685 /* FIXME: should have matching call to shmdt */
686 ptr
= shmat(chan
->buf_struct_shmids
[i
], NULL
, 0);
687 if(ptr
== (void *) -1) {
692 /* Already mark the shared memory for destruction. This will occur only
693 * when all users have detached.
695 result
= shmctl(chan
->buf_struct_shmids
[i
], IPC_RMID
, NULL
);
698 goto destroy_previous
;
706 /* Jumping inside this loop occurs from within the other loop above with i as
707 * counter, so it unallocates the structures for the cpu = current_i down to
711 result
= shmctl(chan
->buf_struct_shmids
[i
], IPC_RMID
, NULL
);
726 static int ust_buffers_create_channel(const char *trace_name
, struct ust_trace
*trace
,
727 const char *channel_name
, struct ust_channel
*ltt_chan
,
728 unsigned int subbuf_size
, unsigned int n_subbufs
, int overwrite
)
732 kref_init(<t_chan
->kref
);
734 ltt_chan
->trace
= trace
;
735 ltt_chan
->overwrite
= overwrite
;
736 ltt_chan
->n_subbufs_order
= get_count_order(n_subbufs
);
737 ltt_chan
->commit_count_mask
= (~0UL >> ltt_chan
->n_subbufs_order
);
738 ltt_chan
->n_cpus
= get_n_cpus();
739 //ust// ltt_chan->buf = percpu_alloc_mask(sizeof(struct ltt_channel_buf_struct), GFP_KERNEL, cpu_possible_map);
740 ltt_chan
->buf
= (void *) malloc(ltt_chan
->n_cpus
* sizeof(void *));
741 if(ltt_chan
->buf
== NULL
) {
744 ltt_chan
->buf_struct_shmids
= (int *) malloc(ltt_chan
->n_cpus
* sizeof(int));
745 if(ltt_chan
->buf_struct_shmids
== NULL
)
748 result
= ust_buffers_alloc_channel_buf_structs(ltt_chan
);
750 goto free_buf_struct_shmids
;
753 result
= ust_buffers_channel_open(ltt_chan
, subbuf_size
, n_subbufs
);
755 ERR("Cannot open channel for trace %s", trace_name
);
756 goto unalloc_buf_structs
;
762 /* FIXME: put a call here to unalloc the buf structs! */
764 free_buf_struct_shmids
:
765 free(ltt_chan
->buf_struct_shmids
);
775 * LTTng channel flush function.
777 * Must be called when no tracing is active in the channel, because of
778 * accesses across CPUs.
780 static notrace
void ltt_relay_buffer_flush(struct ust_buffer
*buf
)
784 //ust// buf->finalized = 1;
785 ltt_force_switch(buf
, FORCE_FLUSH
);
787 result
= write(buf
->data_ready_fd_write
, "1", 1);
789 PERROR("write (in ltt_relay_buffer_flush)");
790 ERR("this should never happen!");
794 static void ltt_relay_async_wakeup_chan(struct ust_channel
*ltt_channel
)
796 //ust// unsigned int i;
797 //ust// struct rchan *rchan = ltt_channel->trans_channel_data;
799 //ust// for_each_possible_cpu(i) {
800 //ust// struct ltt_channel_buf_struct *ltt_buf =
801 //ust// percpu_ptr(ltt_channel->buf, i);
803 //ust// if (uatomic_read(<t_buf->wakeup_readers) == 1) {
804 //ust// uatomic_set(<t_buf->wakeup_readers, 0);
805 //ust// wake_up_interruptible(&rchan->buf[i]->read_wait);
810 static void ltt_relay_finish_buffer(struct ust_channel
*channel
, unsigned int cpu
)
814 if (channel
->buf
[cpu
]) {
815 struct ust_buffer
*buf
= channel
->buf
[cpu
];
816 ltt_relay_buffer_flush(buf
);
817 //ust// ltt_relay_wake_writers(ltt_buf);
818 /* closing the pipe tells the consumer the buffer is finished */
820 //result = write(ltt_buf->data_ready_fd_write, "D", 1);
822 // PERROR("write (in ltt_relay_finish_buffer)");
823 // ERR("this should never happen!");
825 close(buf
->data_ready_fd_write
);
830 static void ltt_relay_finish_channel(struct ust_channel
*channel
)
834 for(i
=0; i
<channel
->n_cpus
; i
++) {
835 ltt_relay_finish_buffer(channel
, i
);
839 static void ltt_relay_remove_channel(struct ust_channel
*channel
)
841 ust_buffers_channel_close(channel
);
842 kref_put(&channel
->kref
, ltt_relay_release_channel
);
846 * ltt_reserve_switch_old_subbuf: switch old subbuffer
848 * Concurrency safe because we are the last and only thread to alter this
849 * sub-buffer. As long as it is not delivered and read, no other thread can
850 * alter the offset, alter the reserve_count or call the
851 * client_buffer_end_callback on this sub-buffer.
853 * The only remaining threads could be the ones with pending commits. They will
854 * have to do the deliver themselves. Not concurrency safe in overwrite mode.
855 * We detect corrupted subbuffers with commit and reserve counts. We keep a
856 * corrupted sub-buffers count and push the readers across these sub-buffers.
858 * Not concurrency safe if a writer is stalled in a subbuffer and another writer
859 * switches in, finding out it's corrupted. The result will be than the old
860 * (uncommited) subbuffer will be declared corrupted, and that the new subbuffer
861 * will be declared corrupted too because of the commit count adjustment.
863 * Note : offset_old should never be 0 here.
865 static void ltt_reserve_switch_old_subbuf(
866 struct ust_channel
*chan
, struct ust_buffer
*buf
,
867 struct ltt_reserve_switch_offsets
*offsets
, u64
*tsc
)
869 long oldidx
= SUBBUF_INDEX(offsets
->old
- 1, chan
);
870 long commit_count
, padding_size
;
872 padding_size
= chan
->subbuf_size
873 - (SUBBUF_OFFSET(offsets
->old
- 1, chan
) + 1);
874 ltt_buffer_end(buf
, *tsc
, offsets
->old
, oldidx
);
877 * Must write slot data before incrementing commit count.
878 * This compiler barrier is upgraded into a smp_wmb() by the IPI
879 * sent by get_subbuf() when it does its smp_rmb().
882 uatomic_add(&buf
->commit_count
[oldidx
].cc
, padding_size
);
883 commit_count
= uatomic_read(&buf
->commit_count
[oldidx
].cc
);
884 ltt_check_deliver(chan
, buf
, offsets
->old
- 1, commit_count
, oldidx
);
885 ltt_write_commit_counter(chan
, buf
, oldidx
,
886 offsets
->old
, commit_count
, padding_size
);
890 * ltt_reserve_switch_new_subbuf: Populate new subbuffer.
892 * This code can be executed unordered : writers may already have written to the
893 * sub-buffer before this code gets executed, caution. The commit makes sure
894 * that this code is executed before the deliver of this sub-buffer.
896 static void ltt_reserve_switch_new_subbuf(
897 struct ust_channel
*chan
, struct ust_buffer
*buf
,
898 struct ltt_reserve_switch_offsets
*offsets
, u64
*tsc
)
900 long beginidx
= SUBBUF_INDEX(offsets
->begin
, chan
);
903 ltt_buffer_begin(buf
, *tsc
, beginidx
);
906 * Must write slot data before incrementing commit count.
907 * This compiler barrier is upgraded into a smp_wmb() by the IPI
908 * sent by get_subbuf() when it does its smp_rmb().
911 uatomic_add(&buf
->commit_count
[beginidx
].cc
, ltt_subbuffer_header_size());
912 commit_count
= uatomic_read(&buf
->commit_count
[beginidx
].cc
);
913 /* Check if the written buffer has to be delivered */
914 ltt_check_deliver(chan
, buf
, offsets
->begin
, commit_count
, beginidx
);
915 ltt_write_commit_counter(chan
, buf
, beginidx
,
916 offsets
->begin
, commit_count
, ltt_subbuffer_header_size());
920 * ltt_reserve_end_switch_current: finish switching current subbuffer
922 * Concurrency safe because we are the last and only thread to alter this
923 * sub-buffer. As long as it is not delivered and read, no other thread can
924 * alter the offset, alter the reserve_count or call the
925 * client_buffer_end_callback on this sub-buffer.
927 * The only remaining threads could be the ones with pending commits. They will
928 * have to do the deliver themselves. Not concurrency safe in overwrite mode.
929 * We detect corrupted subbuffers with commit and reserve counts. We keep a
930 * corrupted sub-buffers count and push the readers across these sub-buffers.
932 * Not concurrency safe if a writer is stalled in a subbuffer and another writer
933 * switches in, finding out it's corrupted. The result will be than the old
934 * (uncommited) subbuffer will be declared corrupted, and that the new subbuffer
935 * will be declared corrupted too because of the commit count adjustment.
937 static void ltt_reserve_end_switch_current(
938 struct ust_channel
*chan
,
939 struct ust_buffer
*buf
,
940 struct ltt_reserve_switch_offsets
*offsets
, u64
*tsc
)
942 long endidx
= SUBBUF_INDEX(offsets
->end
- 1, chan
);
943 long commit_count
, padding_size
;
945 padding_size
= chan
->subbuf_size
946 - (SUBBUF_OFFSET(offsets
->end
- 1, chan
) + 1);
948 ltt_buffer_end(buf
, *tsc
, offsets
->end
, endidx
);
951 * Must write slot data before incrementing commit count.
952 * This compiler barrier is upgraded into a smp_wmb() by the IPI
953 * sent by get_subbuf() when it does its smp_rmb().
956 uatomic_add(&buf
->commit_count
[endidx
].cc
, padding_size
);
957 commit_count
= uatomic_read(&buf
->commit_count
[endidx
].cc
);
958 ltt_check_deliver(chan
, buf
,
959 offsets
->end
- 1, commit_count
, endidx
);
960 ltt_write_commit_counter(chan
, buf
, endidx
,
961 offsets
->end
, commit_count
, padding_size
);
967 * !0 if execution must be aborted.
969 static int ltt_relay_try_switch_slow(
970 enum force_switch_mode mode
,
971 struct ust_channel
*chan
,
972 struct ust_buffer
*buf
,
973 struct ltt_reserve_switch_offsets
*offsets
,
977 long reserve_commit_diff
;
979 offsets
->begin
= uatomic_read(&buf
->offset
);
980 offsets
->old
= offsets
->begin
;
981 offsets
->begin_switch
= 0;
982 offsets
->end_switch_old
= 0;
984 *tsc
= trace_clock_read64();
986 if (SUBBUF_OFFSET(offsets
->begin
, buf
->chan
) != 0) {
987 offsets
->begin
= SUBBUF_ALIGN(offsets
->begin
, buf
->chan
);
988 offsets
->end_switch_old
= 1;
990 /* we do not have to switch : buffer is empty */
993 if (mode
== FORCE_ACTIVE
)
994 offsets
->begin
+= ltt_subbuffer_header_size();
996 * Always begin_switch in FORCE_ACTIVE mode.
997 * Test new buffer integrity
999 subbuf_index
= SUBBUF_INDEX(offsets
->begin
, buf
->chan
);
1000 reserve_commit_diff
=
1001 (BUFFER_TRUNC(offsets
->begin
, buf
->chan
)
1002 >> chan
->n_subbufs_order
)
1003 - (uatomic_read(&buf
->commit_count
[subbuf_index
].cc_sb
)
1004 & chan
->commit_count_mask
);
1005 if (reserve_commit_diff
== 0) {
1006 /* Next buffer not corrupted. */
1007 if (mode
== FORCE_ACTIVE
1009 && offsets
->begin
- uatomic_read(&buf
->consumed
)
1010 >= chan
->alloc_size
) {
1012 * We do not overwrite non consumed buffers and we are
1013 * full : ignore switch while tracing is active.
1019 * Next subbuffer corrupted. Force pushing reader even in normal
1023 offsets
->end
= offsets
->begin
;
1028 * Force a sub-buffer switch for a per-cpu buffer. This operation is
1029 * completely reentrant : can be called while tracing is active with
1030 * absolutely no lock held.
1032 void ltt_force_switch_lockless_slow(struct ust_buffer
*buf
,
1033 enum force_switch_mode mode
)
1035 struct ust_channel
*chan
= buf
->chan
;
1036 struct ltt_reserve_switch_offsets offsets
;
1041 DBG("Switching (forced) %s_%d", chan
->channel_name
, buf
->cpu
);
1043 * Perform retryable operations.
1046 if (ltt_relay_try_switch_slow(mode
, chan
, buf
,
1049 } while (uatomic_cmpxchg(&buf
->offset
, offsets
.old
,
1050 offsets
.end
) != offsets
.old
);
1053 * Atomically update last_tsc. This update races against concurrent
1054 * atomic updates, but the race will always cause supplementary full TSC
1055 * events, never the opposite (missing a full TSC event when it would be
1058 save_last_tsc(buf
, tsc
);
1061 * Push the reader if necessary
1063 if (mode
== FORCE_ACTIVE
) {
1064 ltt_reserve_push_reader(chan
, buf
, offsets
.end
- 1);
1065 //ust// ltt_clear_noref_flag(chan, buf, SUBBUF_INDEX(offsets.end - 1, chan));
1069 * Switch old subbuffer if needed.
1071 if (offsets
.end_switch_old
) {
1072 //ust// ltt_clear_noref_flag(rchan, buf, SUBBUF_INDEX(offsets.old - 1, rchan));
1073 ltt_reserve_switch_old_subbuf(chan
, buf
, &offsets
, &tsc
);
1077 * Populate new subbuffer.
1079 if (mode
== FORCE_ACTIVE
)
1080 ltt_reserve_switch_new_subbuf(chan
, buf
, &offsets
, &tsc
);
1086 * !0 if execution must be aborted.
1088 static int ltt_relay_try_reserve_slow(struct ust_channel
*chan
, struct ust_buffer
*buf
,
1089 struct ltt_reserve_switch_offsets
*offsets
, size_t data_size
,
1090 u64
*tsc
, unsigned int *rflags
, int largest_align
)
1092 long reserve_commit_diff
;
1094 offsets
->begin
= uatomic_read(&buf
->offset
);
1095 offsets
->old
= offsets
->begin
;
1096 offsets
->begin_switch
= 0;
1097 offsets
->end_switch_current
= 0;
1098 offsets
->end_switch_old
= 0;
1100 *tsc
= trace_clock_read64();
1101 if (last_tsc_overflow(buf
, *tsc
))
1102 *rflags
= LTT_RFLAG_ID_SIZE_TSC
;
1104 if (unlikely(SUBBUF_OFFSET(offsets
->begin
, buf
->chan
) == 0)) {
1105 offsets
->begin_switch
= 1; /* For offsets->begin */
1107 offsets
->size
= ust_get_header_size(chan
,
1108 offsets
->begin
, data_size
,
1109 &offsets
->before_hdr_pad
, *rflags
);
1110 offsets
->size
+= ltt_align(offsets
->begin
+ offsets
->size
,
1113 if (unlikely((SUBBUF_OFFSET(offsets
->begin
, buf
->chan
) +
1114 offsets
->size
) > buf
->chan
->subbuf_size
)) {
1115 offsets
->end_switch_old
= 1; /* For offsets->old */
1116 offsets
->begin_switch
= 1; /* For offsets->begin */
1119 if (unlikely(offsets
->begin_switch
)) {
1123 * We are typically not filling the previous buffer completely.
1125 if (likely(offsets
->end_switch_old
))
1126 offsets
->begin
= SUBBUF_ALIGN(offsets
->begin
,
1128 offsets
->begin
= offsets
->begin
+ ltt_subbuffer_header_size();
1129 /* Test new buffer integrity */
1130 subbuf_index
= SUBBUF_INDEX(offsets
->begin
, buf
->chan
);
1131 reserve_commit_diff
=
1132 (BUFFER_TRUNC(offsets
->begin
, buf
->chan
)
1133 >> chan
->n_subbufs_order
)
1134 - (uatomic_read(&buf
->commit_count
[subbuf_index
].cc_sb
)
1135 & chan
->commit_count_mask
);
1136 if (likely(reserve_commit_diff
== 0)) {
1137 /* Next buffer not corrupted. */
1138 if (unlikely(!chan
->overwrite
&&
1139 (SUBBUF_TRUNC(offsets
->begin
, buf
->chan
)
1140 - SUBBUF_TRUNC(uatomic_read(
1143 >= chan
->alloc_size
)) {
1145 * We do not overwrite non consumed buffers
1146 * and we are full : event is lost.
1148 uatomic_inc(&buf
->events_lost
);
1152 * next buffer not corrupted, we are either in
1153 * overwrite mode or the buffer is not full.
1154 * It's safe to write in this new subbuffer.
1159 * Next subbuffer corrupted. Drop event in normal and
1160 * overwrite mode. Caused by either a writer OOPS or
1161 * too many nested writes over a reserve/commit pair.
1163 uatomic_inc(&buf
->events_lost
);
1166 offsets
->size
= ust_get_header_size(chan
,
1167 offsets
->begin
, data_size
,
1168 &offsets
->before_hdr_pad
, *rflags
);
1169 offsets
->size
+= ltt_align(offsets
->begin
+ offsets
->size
,
1172 if (unlikely((SUBBUF_OFFSET(offsets
->begin
, buf
->chan
)
1173 + offsets
->size
) > buf
->chan
->subbuf_size
)) {
1175 * Event too big for subbuffers, report error, don't
1176 * complete the sub-buffer switch.
1178 uatomic_inc(&buf
->events_lost
);
1182 * We just made a successful buffer switch and the event
1183 * fits in the new subbuffer. Let's write.
1188 * Event fits in the current buffer and we are not on a switch
1189 * boundary. It's safe to write.
1192 offsets
->end
= offsets
->begin
+ offsets
->size
;
1194 if (unlikely((SUBBUF_OFFSET(offsets
->end
, buf
->chan
)) == 0)) {
1196 * The offset_end will fall at the very beginning of the next
1199 offsets
->end_switch_current
= 1; /* For offsets->begin */
1205 * ltt_relay_reserve_slot_lockless_slow - Atomic slot reservation in a buffer.
1206 * @trace: the trace structure to log to.
1207 * @ltt_channel: channel structure
1208 * @transport_data: data structure specific to ltt relay
1209 * @data_size: size of the variable length data to log.
1210 * @slot_size: pointer to total size of the slot (out)
1211 * @buf_offset : pointer to reserved buffer offset (out)
1212 * @tsc: pointer to the tsc at the slot reservation (out)
1215 * Return : -ENOSPC if not enough space, else returns 0.
1216 * It will take care of sub-buffer switching.
1218 int ltt_reserve_slot_lockless_slow(struct ust_channel
*chan
,
1219 struct ust_trace
*trace
, size_t data_size
,
1220 int largest_align
, int cpu
,
1221 struct ust_buffer
**ret_buf
,
1222 size_t *slot_size
, long *buf_offset
,
1223 u64
*tsc
, unsigned int *rflags
)
1225 struct ust_buffer
*buf
= *ret_buf
= chan
->buf
[cpu
];
1226 struct ltt_reserve_switch_offsets offsets
;
1231 if (unlikely(ltt_relay_try_reserve_slow(chan
, buf
, &offsets
,
1232 data_size
, tsc
, rflags
, largest_align
)))
1234 } while (unlikely(uatomic_cmpxchg(&buf
->offset
, offsets
.old
,
1235 offsets
.end
) != offsets
.old
));
1238 * Atomically update last_tsc. This update races against concurrent
1239 * atomic updates, but the race will always cause supplementary full TSC
1240 * events, never the opposite (missing a full TSC event when it would be
1243 save_last_tsc(buf
, *tsc
);
1246 * Push the reader if necessary
1248 ltt_reserve_push_reader(chan
, buf
, offsets
.end
- 1);
1251 * Clear noref flag for this subbuffer.
1253 //ust// ltt_clear_noref_flag(chan, buf, SUBBUF_INDEX(offsets.end - 1, chan));
1256 * Switch old subbuffer if needed.
1258 if (unlikely(offsets
.end_switch_old
)) {
1259 //ust// ltt_clear_noref_flag(chan, buf, SUBBUF_INDEX(offsets.old - 1, chan));
1260 ltt_reserve_switch_old_subbuf(chan
, buf
, &offsets
, tsc
);
1261 DBG("Switching %s_%d", chan
->channel_name
, cpu
);
1265 * Populate new subbuffer.
1267 if (unlikely(offsets
.begin_switch
))
1268 ltt_reserve_switch_new_subbuf(chan
, buf
, &offsets
, tsc
);
1270 if (unlikely(offsets
.end_switch_current
))
1271 ltt_reserve_end_switch_current(chan
, buf
, &offsets
, tsc
);
1273 *slot_size
= offsets
.size
;
1274 *buf_offset
= offsets
.begin
+ offsets
.before_hdr_pad
;
1278 static struct ltt_transport ust_relay_transport
= {
1281 .create_channel
= ust_buffers_create_channel
,
1282 .finish_channel
= ltt_relay_finish_channel
,
1283 .remove_channel
= ltt_relay_remove_channel
,
1284 .wakeup_channel
= ltt_relay_async_wakeup_chan
,
1288 static char initialized
= 0;
1290 void __attribute__((constructor
)) init_ustrelay_transport(void)
1293 ltt_transport_register(&ust_relay_transport
);
1298 static void __attribute__((destructor
)) ust_buffers_exit(void)
1300 ltt_transport_unregister(&ust_relay_transport
);
1303 size_t ltt_write_event_header_slow(struct ust_channel
*channel
,
1304 struct ust_buffer
*buf
, long buf_offset
,
1305 u16 eID
, u32 event_size
,
1306 u64 tsc
, unsigned int rflags
)
1308 struct ltt_event_header header
;
1312 case LTT_RFLAG_ID_SIZE_TSC
:
1313 header
.id_time
= 29 << LTT_TSC_BITS
;
1315 case LTT_RFLAG_ID_SIZE
:
1316 header
.id_time
= 30 << LTT_TSC_BITS
;
1319 header
.id_time
= 31 << LTT_TSC_BITS
;
1323 header
.id_time
|= (u32
)tsc
& LTT_TSC_MASK
;
1324 ust_buffers_write(buf
, buf_offset
, &header
, sizeof(header
));
1325 buf_offset
+= sizeof(header
);
1328 case LTT_RFLAG_ID_SIZE_TSC
:
1329 small_size
= (u16
)min_t(u32
, event_size
, LTT_MAX_SMALL_SIZE
);
1330 ust_buffers_write(buf
, buf_offset
,
1332 buf_offset
+= sizeof(u16
);
1333 ust_buffers_write(buf
, buf_offset
,
1334 &small_size
, sizeof(u16
));
1335 buf_offset
+= sizeof(u16
);
1336 if (small_size
== LTT_MAX_SMALL_SIZE
) {
1337 ust_buffers_write(buf
, buf_offset
,
1338 &event_size
, sizeof(u32
));
1339 buf_offset
+= sizeof(u32
);
1341 buf_offset
+= ltt_align(buf_offset
, sizeof(u64
));
1342 ust_buffers_write(buf
, buf_offset
,
1344 buf_offset
+= sizeof(u64
);
1346 case LTT_RFLAG_ID_SIZE
:
1347 small_size
= (u16
)min_t(u32
, event_size
, LTT_MAX_SMALL_SIZE
);
1348 ust_buffers_write(buf
, buf_offset
,
1350 buf_offset
+= sizeof(u16
);
1351 ust_buffers_write(buf
, buf_offset
,
1352 &small_size
, sizeof(u16
));
1353 buf_offset
+= sizeof(u16
);
1354 if (small_size
== LTT_MAX_SMALL_SIZE
) {
1355 ust_buffers_write(buf
, buf_offset
,
1356 &event_size
, sizeof(u32
));
1357 buf_offset
+= sizeof(u32
);
1361 ust_buffers_write(buf
, buf_offset
,
1363 buf_offset
+= sizeof(u16
);