2 * Copyright (C) 2011-2012 Julien Desfossez
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License Version 2 as
6 * published by the Free Software Foundation;
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include <babeltrace/babeltrace.h>
23 #include <babeltrace/ctf/events.h>
24 #include <babeltrace/ctf/callbacks.h>
25 #include <babeltrace/ctf/iterator.h>
37 #include <sys/types.h>
41 #include <lttng/lttng.h>
42 #include <lttng/lttngtop-helper.h>
43 #include <babeltrace/lttngtopmmappacketseek.h>
45 #include "lttngtoptypes.h"
47 #include "iostreamtop.h"
48 #include "cursesdisplay.h"
51 #define DEFAULT_FILE_ARRAY_SIZE 1
53 const char *opt_input_path
;
58 struct lttngtop
*copy
;
59 pthread_t display_thread
;
60 pthread_t timer_thread
;
62 unsigned long refresh_display
= 1 * NSEC_PER_SEC
;
63 unsigned long last_display_update
= 0;
65 /* list of FDs available for being read with snapshots */
66 struct mmap_stream_list mmap_list
;
67 GPtrArray
*lttng_consumer_stream_array
;
68 int sessiond_metadata
, consumerd_metadata
;
69 struct lttng_consumer_local_data
*ctx
= NULL
;
70 /* list of snapshots currently not consumed */
71 GPtrArray
*available_snapshots
;
72 sem_t metadata_available
;
81 static struct poptOption long_options
[] = {
82 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
83 { "help", 'h', POPT_ARG_NONE
, NULL
, OPT_HELP
, NULL
, NULL
},
84 { "textdump", 't', POPT_ARG_NONE
, NULL
, OPT_TEXTDUMP
, NULL
, NULL
},
85 { NULL
, 0, 0, NULL
, 0, NULL
, NULL
},
88 void *refresh_thread(void *p
)
90 struct mmap_stream
*mmap_info
;
96 sem_post(&end_trace_sem
);
97 sem_post(&goodtodisplay
);
98 sem_post(&goodtoupdate
);
101 if (!opt_input_path
) {
102 bt_list_for_each_entry(mmap_info
, &mmap_list
.head
, list
)
103 helper_kernctl_buffer_flush(mmap_info
->fd
);
105 sem_wait(&pause_sem
);
106 sem_post(&pause_sem
);
108 sleep(refresh_display
/NSEC_PER_SEC
);
112 void *ncurses_display(void *p
)
114 unsigned int current_display_index
= 0;
116 sem_wait(&bootstrap
);
118 * Prevent the 1 second delay when we hit ESC
125 sem_wait(&goodtodisplay
);
126 sem_wait(&pause_sem
);
129 sem_post(&pause_sem
);
135 copy
= g_ptr_array_index(copies
, current_display_index
);
137 display(current_display_index
++);
139 sem_post(&goodtoupdate
);
140 sem_post(&pause_sem
);
145 * hook on each event to check the timestamp and refresh the display if
148 enum bt_cb_ret
print_timestamp(struct bt_ctf_event
*call_data
, void *private_data
)
150 unsigned long timestamp
;
152 uint64_t ts_nsec_start
;
154 timestamp
= bt_ctf_get_timestamp(call_data
);
156 start
= format_timestamp(timestamp
);
157 ts_nsec_start
= timestamp
% NSEC_PER_SEC
;
159 printf("%02d:%02d:%02d.%09" PRIu64
" %s\n", start
.tm_hour
,
160 start
.tm_min
, start
.tm_sec
, ts_nsec_start
,
161 bt_ctf_event_name(call_data
));
167 * hook on each event to check the timestamp and refresh the display if
170 enum bt_cb_ret
check_timestamp(struct bt_ctf_event
*call_data
, void *private_data
)
172 unsigned long timestamp
;
174 timestamp
= bt_ctf_get_timestamp(call_data
);
175 if (timestamp
== -1ULL)
178 if (last_display_update
== 0)
179 last_display_update
= timestamp
;
181 if (timestamp
- last_display_update
>= refresh_display
) {
182 sem_wait(&goodtoupdate
);
183 g_ptr_array_add(copies
, get_copy_lttngtop(last_display_update
,
185 sem_post(&goodtodisplay
);
186 sem_post(&bootstrap
);
187 last_display_update
= timestamp
;
192 fprintf(stderr
, "check_timestamp callback error\n");
193 return BT_CB_ERROR_STOP
;
197 * get_perf_counter : get or create and return a perf_counter struct for
198 * either a process or a cpu (only one of the 2 parameters mandatory)
200 struct perfcounter
*get_perf_counter(const char *name
, struct processtop
*proc
,
203 struct perfcounter
*ret
;
213 ret
= g_hash_table_lookup(table
, (gpointer
) name
);
217 ret
= g_new0(struct perfcounter
, 1);
218 /* by default, make it visible in the UI */
220 g_hash_table_insert(table
, (gpointer
) strdup(name
), ret
);
229 void update_perf_value(struct processtop
*proc
, struct cputime
*cpu
,
230 const char *name
, int value
)
232 struct perfcounter
*cpu_perf
, *process_perf
;
234 cpu_perf
= get_perf_counter(name
, NULL
, cpu
);
235 if (cpu_perf
->count
< value
) {
236 process_perf
= get_perf_counter(name
, proc
, NULL
);
237 process_perf
->count
+= value
- cpu_perf
->count
;
238 cpu_perf
->count
= value
;
242 void extract_perf_counter_scope(const struct bt_ctf_event
*event
,
243 const struct bt_definition
*scope
,
244 struct processtop
*proc
,
247 struct bt_definition
const * const *list
= NULL
;
248 const struct bt_definition
*field
;
250 struct perfcounter
*perfcounter
;
258 ret
= bt_ctf_get_field_list(event
, scope
, &list
, &count
);
265 g_hash_table_iter_init(&iter
, global_perf_liszt
);
266 while (g_hash_table_iter_next (&iter
, &key
, (gpointer
) &perfcounter
)) {
267 field
= bt_ctf_get_field(event
, scope
, (char *) key
);
269 int value
= bt_ctf_get_uint64(field
);
270 if (bt_ctf_field_get_error())
272 update_perf_value(proc
, cpu
, (char *) key
, value
);
280 void update_perf_counter(struct processtop
*proc
, const struct bt_ctf_event
*event
)
283 const struct bt_definition
*scope
;
285 cpu
= get_cpu(get_cpu_id(event
));
287 scope
= bt_ctf_get_top_level_scope(event
, BT_STREAM_EVENT_CONTEXT
);
288 extract_perf_counter_scope(event
, scope
, proc
, cpu
);
290 scope
= bt_ctf_get_top_level_scope(event
, BT_STREAM_PACKET_CONTEXT
);
291 extract_perf_counter_scope(event
, scope
, proc
, cpu
);
293 scope
= bt_ctf_get_top_level_scope(event
, BT_EVENT_CONTEXT
);
294 extract_perf_counter_scope(event
, scope
, proc
, cpu
);
297 enum bt_cb_ret
fix_process_table(struct bt_ctf_event
*call_data
,
300 int pid
, tid
, ppid
, vpid
, vtid
, vppid
;
302 struct processtop
*parent
, *child
;
303 unsigned long timestamp
;
305 timestamp
= bt_ctf_get_timestamp(call_data
);
306 if (timestamp
== -1ULL)
309 pid
= get_context_pid(call_data
);
313 tid
= get_context_tid(call_data
);
317 ppid
= get_context_ppid(call_data
);
321 vpid
= get_context_vpid(call_data
);
325 vtid
= get_context_vtid(call_data
);
329 vppid
= get_context_vppid(call_data
);
333 comm
= get_context_comm(call_data
);
338 /* find or create the current process */
339 child
= find_process_tid(<tngtop
, tid
, comm
);
341 child
= add_proc(<tngtop
, tid
, comm
, timestamp
);
342 update_proc(child
, pid
, tid
, ppid
, vpid
, vtid
, vppid
, comm
);
345 /* find or create the parent */
346 parent
= find_process_tid(<tngtop
, pid
, comm
);
348 parent
= add_proc(<tngtop
, pid
, comm
, timestamp
);
352 /* attach the parent to the current process */
353 child
->threadparent
= parent
;
354 add_thread(parent
, child
);
357 update_perf_counter(child
, call_data
);
362 return BT_CB_ERROR_STOP
;
367 copies
= g_ptr_array_new();
368 global_perf_liszt
= g_hash_table_new(g_str_hash
, g_str_equal
);
370 sem_init(&goodtodisplay
, 0, 0);
371 sem_init(&goodtoupdate
, 0, 1);
372 sem_init(&timer
, 0, 1);
373 sem_init(&bootstrap
, 0, 0);
374 sem_init(&pause_sem
, 0, 1);
375 sem_init(&end_trace_sem
, 0, 0);
377 reset_global_counters();
379 lttngtop
.nbthreads
= 0;
380 lttngtop
.nbfiles
= 0;
382 lttngtop
.process_hash_table
= g_hash_table_new(g_direct_hash
,
384 lttngtop
.process_table
= g_ptr_array_new();
385 lttngtop
.files_table
= g_ptr_array_new();
386 lttngtop
.cpu_table
= g_ptr_array_new();
391 fprintf(fp
, "LTTngTop %s\n\n", VERSION
);
392 fprintf(fp
, "Usage : lttngtop /path/to/trace\n");
396 * Return 0 if caller should continue, < 0 if caller should return
397 * error, > 0 if caller should exit without reporting error.
399 static int parse_options(int argc
, char **argv
)
404 pc
= poptGetContext(NULL
, argc
, (const char **) argv
, long_options
, 0);
405 poptReadDefaultConfig(pc
, 0);
407 while ((opt
= poptGetNextOpt(pc
)) != -1) {
411 ret
= 1; /* exit cleanly */
422 opt_input_path
= poptGetArg(pc
);
431 void iter_trace(struct bt_context
*bt_ctx
)
433 struct bt_ctf_iter
*iter
;
434 struct bt_iter_pos begin_pos
;
435 const struct bt_ctf_event
*event
;
438 begin_pos
.type
= BT_SEEK_BEGIN
;
439 iter
= bt_ctf_iter_create(bt_ctx
, &begin_pos
, NULL
);
442 bt_ctf_iter_add_callback(iter
, 0, NULL
, 0,
446 /* at each event check if we need to refresh */
447 bt_ctf_iter_add_callback(iter
, 0, NULL
, 0,
450 /* at each event, verify the status of the process table */
451 bt_ctf_iter_add_callback(iter
, 0, NULL
, 0,
454 /* to handle the scheduling events */
455 bt_ctf_iter_add_callback(iter
,
456 g_quark_from_static_string("sched_switch"),
457 NULL
, 0, handle_sched_switch
, NULL
, NULL
, NULL
);
458 /* to clean up the process table */
459 bt_ctf_iter_add_callback(iter
,
460 g_quark_from_static_string("sched_process_free"),
461 NULL
, 0, handle_sched_process_free
, NULL
, NULL
, NULL
);
462 /* to get all the process from the statedumps */
463 bt_ctf_iter_add_callback(iter
,
464 g_quark_from_static_string(
465 "lttng_statedump_process_state"),
466 NULL
, 0, handle_statedump_process_state
,
470 bt_ctf_iter_add_callback(iter
,
471 g_quark_from_static_string("exit_syscall"),
472 NULL
, 0, handle_exit_syscall
, NULL
, NULL
, NULL
);
473 bt_ctf_iter_add_callback(iter
,
474 g_quark_from_static_string("sys_write"),
475 NULL
, 0, handle_sys_write
, NULL
, NULL
, NULL
);
476 bt_ctf_iter_add_callback(iter
,
477 g_quark_from_static_string("sys_read"),
478 NULL
, 0, handle_sys_read
, NULL
, NULL
, NULL
);
479 bt_ctf_iter_add_callback(iter
,
480 g_quark_from_static_string("sys_open"),
481 NULL
, 0, handle_sys_open
, NULL
, NULL
, NULL
);
482 bt_ctf_iter_add_callback(iter
,
483 g_quark_from_static_string("sys_close"),
484 NULL
, 0, handle_sys_close
, NULL
, NULL
, NULL
);
485 bt_ctf_iter_add_callback(iter
,
486 g_quark_from_static_string(
487 "lttng_statedump_file_descriptor"),
488 NULL
, 0, handle_statedump_file_descriptor
,
492 while ((event
= bt_ctf_iter_read_event(iter
)) != NULL
) {
493 if (quit
|| reload_trace
)
495 ret
= bt_iter_next(bt_ctf_get_iter(iter
));
500 /* block until quit, we reached the end of the trace */
501 sem_wait(&end_trace_sem
);
504 bt_ctf_iter_destroy(iter
);
508 * bt_context_add_traces_recursive: Open a trace recursively
509 * (copied from BSD code in converter/babeltrace.c)
511 * Find each trace present in the subdirectory starting from the given
512 * path, and add them to the context. The packet_seek parameter can be
513 * NULL: this specify to use the default format packet_seek.
515 * Return: 0 on success, nonzero on failure.
516 * Unable to open toplevel: failure.
517 * Unable to open some subdirectory or file: warn and continue;
519 int bt_context_add_traces_recursive(struct bt_context
*ctx
, const char *path
,
520 const char *format_str
,
521 void (*packet_seek
)(struct bt_stream_pos
*pos
,
522 size_t offset
, int whence
))
527 char lpath
[PATH_MAX
];
528 char * const paths
[2] = { lpath
, NULL
};
532 * Need to copy path, because fts_open can change it.
533 * It is the pointer array, not the strings, that are constant.
535 strncpy(lpath
, path
, PATH_MAX
);
536 lpath
[PATH_MAX
- 1] = '\0';
538 tree
= fts_open(paths
, FTS_NOCHDIR
| FTS_LOGICAL
, 0);
540 fprintf(stderr
, "[error] [Context] Cannot traverse \"%s\" for reading.\n",
545 trace_ids
= g_array_new(FALSE
, TRUE
, sizeof(int));
547 while ((node
= fts_read(tree
))) {
550 if (!(node
->fts_info
& FTS_D
))
553 dirfd
= open(node
->fts_accpath
, 0);
555 fprintf(stderr
, "[error] [Context] Unable to open trace "
556 "directory file descriptor.\n");
560 metafd
= openat(dirfd
, "metadata", O_RDONLY
);
579 trace_id
= bt_context_add_trace(ctx
,
580 node
->fts_accpath
, format_str
,
581 packet_seek
, NULL
, NULL
);
583 fprintf(stderr
, "[warning] [Context] opening trace \"%s\" from %s "
584 "for reading.\n", node
->fts_accpath
, path
);
585 /* Allow to skip erroneous traces. */
588 g_array_append_val(trace_ids
, trace_id
);
592 g_array_free(trace_ids
, TRUE
);
599 static int check_field_requirements(const struct bt_ctf_field_decl
*const * field_list
,
600 int field_cnt
, int *tid_check
, int *pid_check
,
601 int *procname_check
, int *ppid_check
)
604 struct perfcounter
*global
;
607 for (j
= 0; j
< field_cnt
; j
++) {
608 name
= bt_ctf_get_decl_field_name(field_list
[j
]);
609 if (*tid_check
== 0) {
610 if (strncmp(name
, "tid", 3) == 0)
613 if (*pid_check
== 0) {
614 if (strncmp(name
, "pid", 3) == 0)
617 if (*ppid_check
== 0) {
618 if (strncmp(name
, "ppid", 4) == 0)
621 if (*procname_check
== 0) {
622 if (strncmp(name
, "procname", 8) == 0)
625 if (strncmp(name
, "perf_", 5) == 0) {
626 global
= g_hash_table_lookup(global_perf_liszt
, (gpointer
) name
);
628 global
= g_new0(struct perfcounter
, 1);
629 /* by default, sort on the first perf context */
630 if (g_hash_table_size(global_perf_liszt
) == 0)
633 g_hash_table_insert(global_perf_liszt
, (gpointer
) strdup(name
), global
);
638 if (*tid_check
== 1 && *pid_check
== 1 && *ppid_check
== 1 &&
639 *procname_check
== 1)
646 * check_requirements: check if the required context informations are available
648 * If each mandatory context information is available for at least in one
649 * event, return 0 otherwise return -1.
651 int check_requirements(struct bt_context
*ctx
)
653 unsigned int i
, evt_cnt
, field_cnt
;
654 struct bt_ctf_event_decl
*const * evt_list
;
655 const struct bt_ctf_field_decl
*const * field_list
;
658 int procname_check
= 0;
662 bt_ctf_get_event_decl_list(0, ctx
, &evt_list
, &evt_cnt
);
663 for (i
= 0; i
< evt_cnt
; i
++) {
664 bt_ctf_get_decl_fields(evt_list
[i
], BT_STREAM_EVENT_CONTEXT
,
665 &field_list
, &field_cnt
);
666 ret
= check_field_requirements(field_list
, field_cnt
,
667 &tid_check
, &pid_check
, &procname_check
,
670 bt_ctf_get_decl_fields(evt_list
[i
], BT_EVENT_CONTEXT
,
671 &field_list
, &field_cnt
);
672 ret
= check_field_requirements(field_list
, field_cnt
,
673 &tid_check
, &pid_check
, &procname_check
,
676 bt_ctf_get_decl_fields(evt_list
[i
], BT_STREAM_PACKET_CONTEXT
,
677 &field_list
, &field_cnt
);
678 ret
= check_field_requirements(field_list
, field_cnt
,
679 &tid_check
, &pid_check
, &procname_check
,
683 if (tid_check
== 0) {
685 fprintf(stderr
, "[error] missing tid context information\n");
687 if (pid_check
== 0) {
689 fprintf(stderr
, "[error] missing pid context information\n");
691 if (ppid_check
== 0) {
693 fprintf(stderr
, "[error] missing ppid context information\n");
695 if (procname_check
== 0) {
697 fprintf(stderr
, "[error] missing procname context information\n");
703 ssize_t
read_subbuffer(struct lttng_consumer_stream
*kconsumerd_fd
,
704 struct lttng_consumer_local_data
*ctx
)
709 int infd
= helper_get_lttng_consumer_stream_wait_fd(kconsumerd_fd
);
711 if (helper_get_lttng_consumer_stream_output(kconsumerd_fd
) == LTTNG_EVENT_SPLICE
) {
712 /* Get the next subbuffer */
713 err
= helper_kernctl_get_next_subbuf(infd
);
716 perror("Reserving sub buffer failed (everything is normal, "
717 "it is due to concurrency)");
720 /* read the whole subbuffer */
721 err
= helper_kernctl_get_padded_subbuf_size(infd
, &len
);
724 perror("Getting sub-buffer len failed.");
728 /* splice the subbuffer to the tracefile */
729 ret
= helper_lttng_consumer_on_read_subbuffer_splice(ctx
, kconsumerd_fd
, len
);
732 * display the error but continue processing to try
733 * to release the subbuffer
735 fprintf(stderr
,"Error splicing to tracefile\n");
737 err
= helper_kernctl_put_next_subbuf(infd
);
740 perror("Reserving sub buffer failed (everything is normal, "
741 "it is due to concurrency)");
744 sem_post(&metadata_available
);
751 int on_update_fd(int key
, uint32_t state
)
753 /* let the lib handle the metadata FD */
754 if (key
== sessiond_metadata
)
759 int on_recv_fd(struct lttng_consumer_stream
*kconsumerd_fd
)
762 struct mmap_stream
*new_mmap_stream
;
764 /* Opening the tracefile in write mode */
765 if (helper_get_lttng_consumer_stream_path_name(kconsumerd_fd
) != NULL
) {
766 ret
= open(helper_get_lttng_consumer_stream_path_name(kconsumerd_fd
),
767 O_WRONLY
|O_CREAT
|O_TRUNC
, S_IRWXU
|S_IRWXG
|S_IRWXO
);
772 helper_set_lttng_consumer_stream_out_fd(kconsumerd_fd
, ret
);
775 if (helper_get_lttng_consumer_stream_output(kconsumerd_fd
) == LTTNG_EVENT_MMAP
) {
776 new_mmap_stream
= malloc(sizeof(struct mmap_stream
));
777 new_mmap_stream
->fd
= helper_get_lttng_consumer_stream_wait_fd(
779 bt_list_add(&new_mmap_stream
->list
, &mmap_list
.head
);
781 g_ptr_array_add(lttng_consumer_stream_array
, kconsumerd_fd
);
782 /* keep mmap FDs internally */
785 consumerd_metadata
= helper_get_lttng_consumer_stream_wait_fd(kconsumerd_fd
);
786 sessiond_metadata
= helper_get_lttng_consumer_stream_key(kconsumerd_fd
);
796 void live_consume(struct bt_context
**bt_ctx
)
801 sem_wait(&metadata_available
);
802 if (access("/tmp/livesession/kernel/metadata", F_OK
) != 0) {
803 fprintf(stderr
,"no metadata\n");
806 metadata_fp
= fopen("/tmp/livesession/kernel/metadata", "r");
808 *bt_ctx
= bt_context_create();
809 ret
= bt_context_add_trace(*bt_ctx
, NULL
, "ctf",
810 lttngtop_ctf_packet_seek
, &mmap_list
, metadata_fp
);
812 printf("Error adding trace\n");
820 int setup_consumer(char *command_sock_path
, pthread_t
*threads
,
821 struct lttng_consumer_local_data
*ctx
)
825 ctx
= helper_lttng_consumer_create(HELPER_LTTNG_CONSUMER_KERNEL
,
826 read_subbuffer
, NULL
, on_recv_fd
, on_update_fd
);
830 unlink(command_sock_path
);
831 helper_lttng_consumer_set_command_sock_path(ctx
, command_sock_path
);
832 helper_lttng_consumer_init();
834 /* Create the thread to manage the receive of fd */
835 ret
= pthread_create(&threads
[0], NULL
, helper_lttng_consumer_thread_receive_fds
,
838 perror("pthread_create receive fd");
841 /* Create thread to manage the polling/writing of traces */
842 ret
= pthread_create(&threads
[1], NULL
, helper_lttng_consumer_thread_poll_fds
,
845 perror("pthread_create poll fd");
853 int setup_live_tracing()
855 struct lttng_domain dom
;
856 struct lttng_channel chan
;
857 char *channel_name
= "mmapchan";
858 struct lttng_event ev
;
860 char *command_sock_path
= "/tmp/consumerd_sock";
861 static pthread_t threads
[2]; /* recv_fd, poll */
862 struct lttng_event_context kctxpid
, kctxcomm
, kctxppid
, kctxtid
;
864 struct lttng_handle
*handle
;
866 BT_INIT_LIST_HEAD(&mmap_list
.head
);
868 lttng_consumer_stream_array
= g_ptr_array_new();
870 if ((ret
= setup_consumer(command_sock_path
, threads
, ctx
)) < 0) {
871 fprintf(stderr
,"error setting up consumer\n");
875 available_snapshots
= g_ptr_array_new();
877 /* setup the session */
878 dom
.type
= LTTNG_DOMAIN_KERNEL
;
880 ret
= unlink("/tmp/livesession");
882 lttng_destroy_session("test");
883 if ((ret
= lttng_create_session("test", "/tmp/livesession")) < 0) {
884 fprintf(stderr
,"error creating the session : %s\n",
885 helper_lttcomm_get_readable_code(ret
));
889 if ((handle
= lttng_create_handle("test", &dom
)) == NULL
) {
890 fprintf(stderr
,"error creating handle\n");
895 * FIXME : need to let the
896 * helper_lttng_consumer_thread_receive_fds create the
900 while (access(command_sock_path
, F_OK
)) {
904 if ((ret
= lttng_register_consumer(handle
, command_sock_path
)) < 0) {
905 fprintf(stderr
,"error registering consumer : %s\n",
906 helper_lttcomm_get_readable_code(ret
));
910 strcpy(chan
.name
, channel_name
);
911 chan
.attr
.overwrite
= 0;
912 // chan.attr.subbuf_size = 32768;
913 chan
.attr
.subbuf_size
= 1048576; /* 1MB */
914 chan
.attr
.num_subbuf
= 4;
915 chan
.attr
.switch_timer_interval
= 0;
916 chan
.attr
.read_timer_interval
= 200;
917 chan
.attr
.output
= LTTNG_EVENT_MMAP
;
919 if ((ret
= lttng_enable_channel(handle
, &chan
)) < 0) {
920 fprintf(stderr
,"error creating channel : %s\n",
921 helper_lttcomm_get_readable_code(ret
));
925 memset(&ev
, '\0', sizeof(struct lttng_event
));
926 //sprintf(ev.name, "sched_switch");
927 ev
.type
= LTTNG_EVENT_TRACEPOINT
;
928 if ((ret
= lttng_enable_event(handle
, &ev
, channel_name
)) < 0) {
929 fprintf(stderr
,"error enabling event : %s\n",
930 helper_lttcomm_get_readable_code(ret
));
934 ev
.type
= LTTNG_EVENT_SYSCALL
;
935 if ((ret
= lttng_enable_event(handle
, &ev
, channel_name
)) < 0) {
936 fprintf(stderr
,"error enabling syscalls : %s\n",
937 helper_lttcomm_get_readable_code(ret
));
941 kctxpid
.ctx
= LTTNG_EVENT_CONTEXT_PID
;
942 lttng_add_context(handle
, &kctxpid
, NULL
, NULL
);
943 kctxppid
.ctx
= LTTNG_EVENT_CONTEXT_PPID
;
944 lttng_add_context(handle
, &kctxppid
, NULL
, NULL
);
945 kctxcomm
.ctx
= LTTNG_EVENT_CONTEXT_PROCNAME
;
946 lttng_add_context(handle
, &kctxcomm
, NULL
, NULL
);
947 kctxtid
.ctx
= LTTNG_EVENT_CONTEXT_TID
;
948 lttng_add_context(handle
, &kctxtid
, NULL
, NULL
);
949 kctxpid
.ctx
= LTTNG_EVENT_CONTEXT_VPID
;
950 lttng_add_context(handle
, &kctxpid
, NULL
, NULL
);
951 kctxtid
.ctx
= LTTNG_EVENT_CONTEXT_VTID
;
952 lttng_add_context(handle
, &kctxtid
, NULL
, NULL
);
954 if ((ret
= lttng_start_tracing("test")) < 0) {
955 fprintf(stderr
,"error starting tracing : %s\n",
956 helper_lttcomm_get_readable_code(ret
));
960 helper_kernctl_buffer_flush(consumerd_metadata
);
962 /* block until metadata is ready */
963 sem_init(&metadata_available
, 0, 0);
968 lttng_destroy_session("test");
973 int main(int argc
, char **argv
)
976 struct bt_context
*bt_ctx
= NULL
;
977 struct mmap_stream
*mmap_info
;
978 unsigned long mmap_len
;
980 ret
= parse_options(argc
, argv
);
982 fprintf(stdout
, "Error parsing options.\n\n");
985 } else if (ret
> 0) {
989 if (!opt_input_path
) {
990 ret
= setup_live_tracing();
996 pthread_create(&display_thread
, NULL
, ncurses_display
, (void *) NULL
);
997 pthread_create(&timer_thread
, NULL
, refresh_thread
, (void *) NULL
);
1001 live_consume(&bt_ctx
);
1003 ret
= bt_context_remove_trace(bt_ctx
, 0);
1005 fprintf(stderr
, "error removing trace\n");
1007 bt_context_put(bt_ctx
);
1011 * since we receive all FDs every time there is an
1012 * update and the FD number is different every time,
1013 * we don't know which one are valid.
1014 * so we check if all FDs are usable with a simple
1017 bt_list_for_each_entry(mmap_info
, &mmap_list
.head
, list
) {
1018 ret
= helper_kernctl_get_mmap_len(mmap_info
->fd
, &mmap_len
);
1020 bt_list_del(&mmap_info
->list
);
1023 sem_post(&metadata_available
);
1026 pthread_join(timer_thread
, NULL
);
1028 pthread_join(display_thread
, NULL
);
1030 lttng_stop_tracing("test");
1031 lttng_destroy_session("test");
1037 bt_ctx
= bt_context_create();
1038 ret
= bt_context_add_traces_recursive(bt_ctx
, opt_input_path
, "ctf", NULL
);
1040 fprintf(stderr
, "[error] Opening the trace\n");
1044 ret
= check_requirements(bt_ctx
);
1046 fprintf(stderr
, "[error] some mandatory contexts were missing, exiting.\n");
1049 pthread_create(&display_thread
, NULL
, ncurses_display
, (void *) NULL
);
1050 pthread_create(&timer_thread
, NULL
, refresh_thread
, (void *) NULL
);
1054 pthread_join(display_thread
, NULL
);
1056 pthread_join(timer_thread
, NULL
);
1061 bt_context_put(bt_ctx
);