print syscall origin on exit_syscall
[lttngtop.git] / src / lttngtop.c
... / ...
CommitLineData
1/*
2 * Copyright (C) 2013 Julien Desfossez
3 *
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;
7 *
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.
12 *
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.
16 */
17
18#define _GNU_SOURCE
19#include <config.h>
20#include <stdio.h>
21#include <stdint.h>
22#include <babeltrace/babeltrace.h>
23#include <babeltrace/ctf/events.h>
24#include <babeltrace/ctf/callbacks.h>
25#include <babeltrace/ctf/iterator.h>
26#include <fcntl.h>
27#include <pthread.h>
28#include <popt.h>
29#include <stdlib.h>
30#include <ftw.h>
31#include <dirent.h>
32#include <ctype.h>
33#include <sys/stat.h>
34#include <unistd.h>
35#include <string.h>
36#include <errno.h>
37#include <sys/types.h>
38#include <fts.h>
39#include <assert.h>
40#include <sys/mman.h>
41#include <lttng/lttng.h>
42#ifdef LTTNGTOP_MMAP_LIVE
43#include <lttng/lttngtop-helper.h>
44#include <babeltrace/lttngtopmmappacketseek.h>
45#include "mmap-live.h"
46#endif /* LTTNGTOP_MMAP_LIVE */
47
48#include "lttngtoptypes.h"
49#include "cputop.h"
50#include "iostreamtop.h"
51#include "cursesdisplay.h"
52#include "common.h"
53#include "network-live.h"
54
55#define NET_URL_PREFIX "net://"
56#define NET4_URL_PREFIX "net4://"
57#define NET6_URL_PREFIX "net6://"
58
59#define DEFAULT_FILE_ARRAY_SIZE 1
60
61const char *opt_input_path;
62int opt_textdump;
63int opt_child;
64int opt_begin;
65
66int quit = 0;
67
68struct lttngtop *copy;
69pthread_t display_thread;
70pthread_t timer_thread;
71
72unsigned long refresh_display = 1 * NSEC_PER_SEC;
73unsigned long last_display_update = 0;
74unsigned long last_event_ts = 0;
75
76/* list of FDs available for being read with snapshots */
77struct bt_mmap_stream_list mmap_list;
78GPtrArray *lttng_consumer_stream_array;
79int sessiond_metadata, consumerd_metadata;
80struct lttng_consumer_local_data *ctx = NULL;
81/* list of snapshots currently not consumed */
82GPtrArray *available_snapshots;
83sem_t metadata_available;
84int reload_trace = 0;
85
86uint64_t prev_ts = 0;
87
88enum {
89 OPT_NONE = 0,
90 OPT_HELP,
91 OPT_TEXTDUMP,
92 OPT_PID,
93 OPT_CHILD,
94 OPT_HOSTNAME,
95 OPT_RELAY_HOSTNAME,
96 OPT_KPROBES,
97 OPT_BEGIN,
98};
99
100static struct poptOption long_options[] = {
101 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
102 { "help", 'h', POPT_ARG_NONE, NULL, OPT_HELP, NULL, NULL },
103 { "textdump", 't', POPT_ARG_NONE, NULL, OPT_TEXTDUMP, NULL, NULL },
104 { "child", 'f', POPT_ARG_NONE, NULL, OPT_CHILD, NULL, NULL },
105 { "begin", 'b', POPT_ARG_NONE, NULL, OPT_BEGIN, NULL, NULL },
106 { "pid", 'p', POPT_ARG_STRING, &opt_tid, OPT_PID, NULL, NULL },
107 { "hostname", 'n', POPT_ARG_STRING, &opt_hostname, OPT_HOSTNAME, NULL, NULL },
108 { "relay-hostname", 'r', POPT_ARG_STRING, &opt_relay_hostname,
109 OPT_RELAY_HOSTNAME, NULL, NULL },
110 { "kprobes", 'k', POPT_ARG_STRING, &opt_kprobes, OPT_KPROBES, NULL, NULL },
111 { NULL, 0, 0, NULL, 0, NULL, NULL },
112};
113
114#ifdef LTTNGTOP_MMAP_LIVE
115static void handle_textdump_sigterm(int signal)
116{
117 quit = 1;
118 lttng_destroy_session("test");
119}
120#endif
121
122void *refresh_thread(void *p)
123{
124 while (1) {
125 if (quit) {
126 sem_post(&pause_sem);
127 sem_post(&timer);
128 sem_post(&end_trace_sem);
129 sem_post(&goodtodisplay);
130 sem_post(&goodtoupdate);
131 pthread_exit(0);
132 }
133 if (!opt_input_path) {
134#ifdef LTTNGTOP_MMAP_LIVE
135 mmap_live_flush(mmap_list);
136#endif
137 }
138 sem_wait(&pause_sem);
139 sem_post(&pause_sem);
140 sem_post(&timer);
141 sleep(refresh_display/NSEC_PER_SEC);
142 }
143}
144
145void *ncurses_display(void *p)
146{
147 unsigned int current_display_index = 0;
148
149 sem_wait(&bootstrap);
150 /*
151 * Prevent the 1 second delay when we hit ESC
152 */
153 ESCDELAY = 0;
154 init_ncurses();
155
156 while (1) {
157 sem_wait(&timer);
158 sem_wait(&goodtodisplay);
159 sem_wait(&pause_sem);
160
161 if (quit) {
162 sem_post(&pause_sem);
163 sem_post(&timer);
164 reset_ncurses();
165 pthread_exit(0);
166 }
167
168 copy = g_ptr_array_index(copies, current_display_index);
169 assert(copy);
170 display(current_display_index++);
171
172 sem_post(&goodtoupdate);
173 sem_post(&pause_sem);
174 }
175}
176
177void print_fields(struct bt_ctf_event *event)
178{
179 unsigned int cnt, i;
180 const struct bt_definition *const * list;
181 const struct bt_declaration *l;
182 const struct bt_definition *scope;
183 enum ctf_type_id type;
184 const char *str;
185
186 scope = bt_ctf_get_top_level_scope(event, BT_EVENT_FIELDS);
187
188 bt_ctf_get_field_list(event, scope, &list, &cnt);
189 for (i = 0; i < cnt; i++) {
190 if (i != 0)
191 printf(", ");
192 printf("%s = ", bt_ctf_field_name(list[i]));
193 l = bt_ctf_get_decl_from_def(list[i]);
194 type = bt_ctf_field_type(l);
195 if (type == CTF_TYPE_INTEGER) {
196 if (bt_ctf_get_int_signedness(l) == 0)
197 printf("%" PRIu64 "", bt_ctf_get_uint64(list[i]));
198 else
199 printf("%" PRId64 "", bt_ctf_get_int64(list[i]));
200 } else if (type == CTF_TYPE_STRING) {
201 printf("%s", bt_ctf_get_string(list[i]));
202 } else if (type == CTF_TYPE_ARRAY) {
203 str = bt_ctf_get_char_array(list[i]);
204 if (!bt_ctf_field_get_error() && str)
205 printf("%s", str);
206 }
207 }
208}
209
210/*
211 * hook on each event to check the timestamp and refresh the display if
212 * necessary
213 */
214enum bt_cb_ret print_timestamp(struct bt_ctf_event *call_data, void *private_data)
215{
216 unsigned long timestamp;
217 uint64_t delta;
218 struct tm start;
219 uint64_t ts_nsec_start;
220 int pid, cpu_id, tid;
221 const struct bt_definition *scope;
222 const char *hostname, *procname;
223 struct cputime *cpu;
224 char *from_syscall = NULL;
225
226 timestamp = bt_ctf_get_timestamp(call_data);
227
228 /* can happen in network live when tracing is idle */
229 if (timestamp < last_event_ts)
230 goto end_stop;
231
232 last_event_ts = timestamp;
233
234 start = format_timestamp(timestamp);
235 ts_nsec_start = timestamp % NSEC_PER_SEC;
236
237 pid = get_context_pid(call_data);
238 if (pid == -1ULL && opt_tid) {
239 goto error;
240 }
241
242 tid = get_context_tid(call_data);
243
244 hostname = get_context_hostname(call_data);
245 if (opt_tid || opt_hostname) {
246 if (!lookup_filter_tid_list(pid)) {
247 /* To display when a process of ours in getting scheduled in */
248 if (strcmp(bt_ctf_event_name(call_data), "sched_switch") == 0) {
249 int next_tid;
250
251 scope = bt_ctf_get_top_level_scope(call_data,
252 BT_EVENT_FIELDS);
253 next_tid = bt_ctf_get_int64(bt_ctf_get_field(call_data,
254 scope, "_next_tid"));
255 if (bt_ctf_field_get_error()) {
256 fprintf(stderr, "Missing next_tid field\n");
257 goto error;
258 }
259 if (!lookup_filter_tid_list(next_tid)) {
260 goto end;
261 }
262 } else {
263 goto end;
264 }
265 }
266 }
267
268 cpu_id = get_cpu_id(call_data);
269 procname = get_context_comm(call_data);
270 if (strncmp(bt_ctf_event_name(call_data), "sys_", 4) == 0) {
271 cpu = get_cpu(cpu_id);
272 cpu->current_syscall = g_new0(struct syscall, 1);
273 cpu->current_syscall->name = strdup(bt_ctf_event_name(call_data));
274 cpu->current_syscall->ts_start = timestamp;
275 } else if ((strncmp(bt_ctf_event_name(call_data), "exit_syscall", 12)) == 0) {
276 struct tm start_ts;
277
278 cpu = get_cpu(cpu_id);
279 if (cpu->current_syscall) {
280 delta = timestamp - cpu->current_syscall->ts_start;
281 start_ts = format_timestamp(cpu->current_syscall->ts_start);
282 asprintf(&from_syscall, " [from %02d:%02d:%02d.%09" PRIu64
283 " (+%" PRIu64 ".%09" PRIu64 ") (cpu %d) %s]\n",
284 start_ts.tm_hour, start_ts.tm_min, start_ts.tm_sec,
285 cpu->current_syscall->ts_start % NSEC_PER_SEC,
286 delta / NSEC_PER_SEC, delta % NSEC_PER_SEC,
287 cpu_id, cpu->current_syscall->name);
288 free(cpu->current_syscall->name);
289 g_free(cpu->current_syscall);
290 cpu->current_syscall = NULL;
291 }
292 }
293
294 if (prev_ts == 0)
295 prev_ts = timestamp;
296 delta = timestamp - prev_ts;
297 prev_ts = timestamp;
298
299 printf("%02d:%02d:%02d.%09" PRIu64 " (+%" PRIu64 ".%09" PRIu64 ") %s%s"
300 "(cpu %d) [%s (%d/%d)] %s (",
301 start.tm_hour, start.tm_min, start.tm_sec,
302 ts_nsec_start, delta / NSEC_PER_SEC,
303 delta % NSEC_PER_SEC, (hostname) ? hostname : "",
304 (hostname) ? " ": "", cpu_id, procname, pid, tid,
305 bt_ctf_event_name(call_data));
306 print_fields(call_data);
307 printf(")%s", (from_syscall) ? from_syscall : "\n");
308
309 free(from_syscall);
310
311end:
312 return BT_CB_OK;
313error:
314 return BT_CB_ERROR_STOP;
315end_stop:
316 return BT_CB_OK_STOP;
317}
318
319enum bt_cb_ret handle_kprobes(struct bt_ctf_event *call_data, void *private_data)
320{
321 int i;
322 struct kprobes *kprobe;
323
324 /* for kprobes */
325 for (i = 0; i < lttngtop.kprobes_table->len; i++) {
326 kprobe = g_ptr_array_index(lttngtop.kprobes_table, i);
327 if (strcmp(bt_ctf_event_name(call_data), kprobe->probe_name) == 0) {
328 kprobe->count++;
329 }
330 }
331
332 return BT_CB_OK;
333}
334
335/*
336 * hook on each event to check the timestamp and refresh the display if
337 * necessary
338 */
339enum bt_cb_ret check_timestamp(struct bt_ctf_event *call_data, void *private_data)
340{
341 unsigned long timestamp;
342
343 timestamp = bt_ctf_get_timestamp(call_data);
344 if (timestamp == -1ULL)
345 goto error;
346
347 /* can happen in network live when tracing is idle */
348 if (timestamp < last_event_ts)
349 goto end_stop;
350
351 last_event_ts = timestamp;
352
353 if (last_display_update == 0)
354 last_display_update = timestamp;
355
356 if (timestamp - last_display_update >= refresh_display) {
357 sem_wait(&goodtoupdate);
358 g_ptr_array_add(copies, get_copy_lttngtop(last_display_update,
359 timestamp));
360 sem_post(&goodtodisplay);
361 sem_post(&bootstrap);
362 last_display_update = timestamp;
363 }
364 return BT_CB_OK;
365
366error:
367 fprintf(stderr, "check_timestamp callback error\n");
368 return BT_CB_ERROR_STOP;
369
370end_stop:
371 return BT_CB_OK_STOP;
372}
373
374/*
375 * get_perf_counter : get or create and return a perf_counter struct for
376 * either a process or a cpu (only one of the 2 parameters mandatory)
377 */
378struct perfcounter *get_perf_counter(const char *name, struct processtop *proc,
379 struct cputime *cpu)
380{
381 struct perfcounter *ret;
382 GHashTable *table;
383
384 if (proc)
385 table = proc->perf;
386 else if (cpu)
387 table = cpu->perf;
388 else
389 goto error;
390
391 ret = g_hash_table_lookup(table, (gpointer) name);
392 if (ret)
393 goto end;
394
395 ret = g_new0(struct perfcounter, 1);
396 /* by default, make it visible in the UI */
397 ret->visible = 1;
398 g_hash_table_insert(table, (gpointer) strdup(name), ret);
399
400end:
401 return ret;
402
403error:
404 return NULL;
405}
406
407void update_perf_value(struct processtop *proc, struct cputime *cpu,
408 const char *name, int value)
409{
410 struct perfcounter *cpu_perf, *process_perf;
411
412 cpu_perf = get_perf_counter(name, NULL, cpu);
413 if (cpu_perf->count < value) {
414 process_perf = get_perf_counter(name, proc, NULL);
415 process_perf->count += value - cpu_perf->count;
416 cpu_perf->count = value;
417 }
418}
419
420void extract_perf_counter_scope(const struct bt_ctf_event *event,
421 const struct bt_definition *scope,
422 struct processtop *proc,
423 struct cputime *cpu)
424{
425 struct bt_definition const * const *list = NULL;
426 const struct bt_definition *field;
427 unsigned int count;
428 struct perfcounter *perfcounter;
429 GHashTableIter iter;
430 gpointer key;
431 int ret;
432
433 if (!scope)
434 goto end;
435
436 ret = bt_ctf_get_field_list(event, scope, &list, &count);
437 if (ret < 0)
438 goto end;
439
440 if (count == 0)
441 goto end;
442
443 g_hash_table_iter_init(&iter, global_perf_liszt);
444 while (g_hash_table_iter_next (&iter, &key, (gpointer) &perfcounter)) {
445 field = bt_ctf_get_field(event, scope, (char *) key);
446 if (field) {
447 int value = bt_ctf_get_uint64(field);
448 if (bt_ctf_field_get_error())
449 continue;
450 update_perf_value(proc, cpu, (char *) key, value);
451 }
452 }
453
454end:
455 return;
456}
457
458void update_perf_counter(struct processtop *proc, const struct bt_ctf_event *event)
459{
460 struct cputime *cpu;
461 const struct bt_definition *scope;
462
463 cpu = get_cpu(get_cpu_id(event));
464
465 scope = bt_ctf_get_top_level_scope(event, BT_STREAM_EVENT_CONTEXT);
466 extract_perf_counter_scope(event, scope, proc, cpu);
467
468 scope = bt_ctf_get_top_level_scope(event, BT_STREAM_PACKET_CONTEXT);
469 extract_perf_counter_scope(event, scope, proc, cpu);
470
471 scope = bt_ctf_get_top_level_scope(event, BT_EVENT_CONTEXT);
472 extract_perf_counter_scope(event, scope, proc, cpu);
473}
474
475enum bt_cb_ret fix_process_table(struct bt_ctf_event *call_data,
476 void *private_data)
477{
478 int pid, tid, ppid, vpid, vtid, vppid;
479 char *comm, *hostname;
480 struct processtop *parent, *child;
481 unsigned long timestamp;
482
483 timestamp = bt_ctf_get_timestamp(call_data);
484 if (timestamp == -1ULL)
485 goto error;
486
487 pid = get_context_pid(call_data);
488 if (pid == -1ULL) {
489 goto error;
490 }
491
492 tid = get_context_tid(call_data);
493 if (tid == -1ULL) {
494 goto error;
495 }
496 ppid = get_context_ppid(call_data);
497 if (ppid == -1ULL) {
498 goto error;
499 }
500 vpid = get_context_vpid(call_data);
501 if (pid == -1ULL) {
502 vpid = -1;
503 }
504 vtid = get_context_vtid(call_data);
505 if (tid == -1ULL) {
506 vtid = -1;
507 }
508 vppid = get_context_vppid(call_data);
509 if (ppid == -1ULL) {
510 vppid = -1;
511 }
512 comm = get_context_comm(call_data);
513 if (!comm) {
514 goto error;
515 }
516 /* optional */
517 hostname = get_context_hostname(call_data);
518
519 /* find or create the current process */
520 child = find_process_tid(&lttngtop, tid, comm);
521 if (!child)
522 child = add_proc(&lttngtop, tid, comm, timestamp, hostname);
523 if (!child)
524 goto end;
525 update_proc(child, pid, tid, ppid, vpid, vtid, vppid, comm, hostname);
526
527 if (pid != tid) {
528 /* find or create the parent */
529 parent = find_process_tid(&lttngtop, pid, comm);
530 if (!parent) {
531 parent = add_proc(&lttngtop, pid, comm, timestamp, hostname);
532 if (parent)
533 parent->pid = pid;
534 }
535
536 /* attach the parent to the current process */
537 child->threadparent = parent;
538 add_thread(parent, child);
539 }
540
541 update_perf_counter(child, call_data);
542
543end:
544 return BT_CB_OK;
545
546error:
547 return BT_CB_ERROR_STOP;
548}
549
550void init_lttngtop()
551{
552 copies = g_ptr_array_new();
553 global_perf_liszt = g_hash_table_new(g_str_hash, g_str_equal);
554 global_filter_list = g_hash_table_new(g_str_hash, g_str_equal);
555 global_host_list = g_hash_table_new(g_str_hash, g_str_equal);
556
557 sem_init(&goodtodisplay, 0, 0);
558 sem_init(&goodtoupdate, 0, 1);
559 sem_init(&timer, 0, 1);
560 sem_init(&bootstrap, 0, 0);
561 sem_init(&pause_sem, 0, 1);
562 sem_init(&end_trace_sem, 0, 0);
563
564 reset_global_counters();
565 lttngtop.nbproc = 0;
566 lttngtop.nbthreads = 0;
567 lttngtop.nbfiles = 0;
568
569 lttngtop.process_hash_table = g_hash_table_new(g_direct_hash,
570 g_direct_equal);
571 lttngtop.process_table = g_ptr_array_new();
572 lttngtop.files_table = g_ptr_array_new();
573 lttngtop.cpu_table = g_ptr_array_new();
574
575 toggle_filter = -1;
576}
577
578void usage(FILE *fp)
579{
580 fprintf(fp, "LTTngTop %s\n\n", VERSION);
581 fprintf(fp, "Usage : lttngtop [OPTIONS] TRACE\n");
582 fprintf(fp, " TRACE Path to the trace to analyse (-r for network live tracing, nothing for mmap live streaming)\n");
583 fprintf(fp, " -h, --help This help message\n");
584 fprintf(fp, " -t, --textdump Display live events in text-only\n");
585 fprintf(fp, " -p, --pid Comma-separated list of PIDs to display\n");
586 fprintf(fp, " -f, --child Follow threads associated with selected PIDs\n");
587 fprintf(fp, " -n, --hostname Comma-separated list of hostnames to display (require hostname context in trace)\n");
588 fprintf(fp, " -k, --kprobes Comma-separated list of kprobes to insert (same format as lttng enable-event)\n");
589 fprintf(fp, " -r, --relay-hostname Network live streaming : hostname of the lttng-relayd (default port)\n");
590 fprintf(fp, " -b, --begin Network live streaming : read the trace for the beginning of the recording\n");
591}
592
593/*
594 * Parse probe options.
595 * Shamelessly stolen from lttng-tools :
596 * src/bin/lttng/commands/enable_events.c
597 */
598static struct kprobes *parse_probe_opts(char *opt)
599{
600 char s_hex[19];
601 char name[LTTNG_SYMBOL_NAME_LEN];
602 struct kprobes *kprobe;
603 int ret;
604
605 /*
606 kprobe->probe_addr = 0;
607 kprobe->probe_offset = 0;
608 asprintf(&kprobe->probe_name, "probe_sys_open");
609 asprintf(&kprobe->symbol_name, "sys_open");
610 */
611
612 if (opt == NULL) {
613 kprobe = NULL;
614 goto end;
615 }
616
617 kprobe = g_new0(struct kprobes, 1);
618
619 /* Check for symbol+offset */
620 ret = sscanf(opt, "%[^'+']+%s", name, s_hex);
621 if (ret == 2) {
622 ret = asprintf(&kprobe->probe_name, "probe_%s", name);
623 ret = asprintf(&kprobe->symbol_name, "%s", name);
624
625 if (strlen(s_hex) == 0) {
626 fprintf(stderr, "Invalid probe offset %s", s_hex);
627 ret = -1;
628 goto end;
629 }
630 kprobe->probe_offset = strtoul(s_hex, NULL, 0);
631 kprobe->probe_addr = 0;
632 goto end;
633 }
634
635 /* Check for symbol */
636 if (isalpha(name[0])) {
637 ret = sscanf(opt, "%s", name);
638 if (ret == 1) {
639 ret = asprintf(&kprobe->probe_name, "probe_%s", name);
640 ret = asprintf(&kprobe->symbol_name, "%s", name);
641 kprobe->probe_offset = 0;
642 kprobe->probe_addr = 0;
643 goto end;
644 }
645 }
646
647 /* Check for address */
648 ret = sscanf(opt, "%s", s_hex);
649 if (ret > 0) {
650 if (strlen(s_hex) == 0) {
651 fprintf(stderr, "Invalid probe address %s", s_hex);
652 ret = -1;
653 goto end;
654 }
655 ret = asprintf(&kprobe->probe_name, "probe_%s", s_hex);
656 kprobe->probe_offset = 0;
657 kprobe->probe_addr = strtoul(s_hex, NULL, 0);
658 goto end;
659 }
660
661 /* No match */
662 kprobe = NULL;
663
664end:
665 return kprobe;
666}
667
668/*
669 * Return 0 if caller should continue, < 0 if caller should return
670 * error, > 0 if caller should exit without reporting error.
671 */
672static int parse_options(int argc, char **argv)
673{
674 poptContext pc;
675 int opt, ret = 0;
676 char *tmp_str;
677 int *tid;
678
679 remote_live = 0;
680
681 pc = poptGetContext(NULL, argc, (const char **) argv, long_options, 0);
682 poptReadDefaultConfig(pc, 0);
683
684 while ((opt = poptGetNextOpt(pc)) != -1) {
685 switch (opt) {
686 case OPT_HELP:
687 usage(stdout);
688 ret = 1; /* exit cleanly */
689 goto end;
690 case OPT_TEXTDUMP:
691 opt_textdump = 1;
692 break;
693 case OPT_CHILD:
694 opt_child = 1;
695 break;
696 case OPT_PID:
697 toggle_filter = 1;
698 tid_filter_list = g_hash_table_new(g_str_hash,
699 g_str_equal);
700 tmp_str = strtok(opt_tid, ",");
701 while (tmp_str) {
702 tid = malloc(sizeof(int));
703 *tid = atoi(tmp_str);
704 g_hash_table_insert(tid_filter_list,
705 (gpointer) tid, tid);
706 tmp_str = strtok(NULL, ",");
707 }
708 break;
709 case OPT_BEGIN:
710 /* start reading the live trace from the beginning */
711 opt_begin = 1;
712 break;
713 case OPT_HOSTNAME:
714 toggle_filter = 1;
715 tmp_str = strtok(opt_hostname, ",");
716 while (tmp_str) {
717 add_hostname_list(tmp_str, 1);
718 tmp_str = strtok(NULL, ",");
719 }
720 break;
721 case OPT_RELAY_HOSTNAME:
722 remote_live = 1;
723 break;
724 case OPT_KPROBES:
725 lttngtop.kprobes_table = g_ptr_array_new();
726 tmp_str = strtok(opt_kprobes, ",");
727 while (tmp_str) {
728 struct kprobes *kprobe;
729
730 kprobe = parse_probe_opts(tmp_str);
731 if (kprobe) {
732 g_ptr_array_add(
733 lttngtop.kprobes_table,
734 kprobe);
735 } else {
736 ret = -EINVAL;
737 goto end;
738 }
739 tmp_str = strtok(NULL, ",");
740 }
741 break;
742 default:
743 ret = -EINVAL;
744 goto end;
745 }
746 }
747
748 opt_input_path = poptGetArg(pc);
749
750end:
751 if (pc) {
752 poptFreeContext(pc);
753 }
754 return ret;
755}
756
757void iter_trace(struct bt_context *bt_ctx)
758{
759 struct bt_ctf_iter *iter;
760 struct bt_iter_pos begin_pos;
761 struct kprobes *kprobe;
762 const struct bt_ctf_event *event;
763 int i;
764 int ret = 0;
765
766 begin_pos.type = BT_SEEK_BEGIN;
767 iter = bt_ctf_iter_create(bt_ctx, &begin_pos, NULL);
768
769 /* at each event, verify the status of the process table */
770 bt_ctf_iter_add_callback(iter, 0, NULL, 0,
771 fix_process_table,
772 NULL, NULL, NULL);
773 /* to handle the follow child option */
774 bt_ctf_iter_add_callback(iter,
775 g_quark_from_static_string("sched_process_fork"),
776 NULL, 0, handle_sched_process_fork, NULL, NULL, NULL);
777 if (opt_textdump) {
778 bt_ctf_iter_add_callback(iter, 0, NULL, 0,
779 print_timestamp,
780 NULL, NULL, NULL);
781 } else {
782 /* at each event check if we need to refresh */
783 bt_ctf_iter_add_callback(iter, 0, NULL, 0,
784 check_timestamp,
785 NULL, NULL, NULL);
786 /* to handle the scheduling events */
787 bt_ctf_iter_add_callback(iter,
788 g_quark_from_static_string("sched_switch"),
789 NULL, 0, handle_sched_switch, NULL, NULL, NULL);
790 /* to clean up the process table */
791 bt_ctf_iter_add_callback(iter,
792 g_quark_from_static_string("sched_process_free"),
793 NULL, 0, handle_sched_process_free, NULL, NULL, NULL);
794 /* to get all the process from the statedumps */
795 bt_ctf_iter_add_callback(iter,
796 g_quark_from_static_string(
797 "lttng_statedump_process_state"),
798 NULL, 0, handle_statedump_process_state,
799 NULL, NULL, NULL);
800
801 /* for IO top */
802 bt_ctf_iter_add_callback(iter,
803 g_quark_from_static_string("exit_syscall"),
804 NULL, 0, handle_exit_syscall, NULL, NULL, NULL);
805 bt_ctf_iter_add_callback(iter,
806 g_quark_from_static_string("sys_write"),
807 NULL, 0, handle_sys_write, NULL, NULL, NULL);
808 bt_ctf_iter_add_callback(iter,
809 g_quark_from_static_string("sys_read"),
810 NULL, 0, handle_sys_read, NULL, NULL, NULL);
811 bt_ctf_iter_add_callback(iter,
812 g_quark_from_static_string("sys_open"),
813 NULL, 0, handle_sys_open, NULL, NULL, NULL);
814 bt_ctf_iter_add_callback(iter,
815 g_quark_from_static_string("sys_close"),
816 NULL, 0, handle_sys_close, NULL, NULL, NULL);
817 bt_ctf_iter_add_callback(iter,
818 g_quark_from_static_string(
819 "lttng_statedump_file_descriptor"),
820 NULL, 0, handle_statedump_file_descriptor,
821 NULL, NULL, NULL);
822
823 /* for kprobes */
824 if (lttngtop.kprobes_table) {
825 for (i = 0; i < lttngtop.kprobes_table->len; i++) {
826 kprobe = g_ptr_array_index(lttngtop.kprobes_table, i);
827 bt_ctf_iter_add_callback(iter,
828 g_quark_from_static_string(
829 kprobe->probe_name),
830 NULL, 0, handle_kprobes,
831 NULL, NULL, NULL);
832 }
833 }
834 }
835
836 while ((event = bt_ctf_iter_read_event(iter)) != NULL) {
837 if (quit || reload_trace)
838 goto end_iter;
839 ret = bt_iter_next(bt_ctf_get_iter(iter));
840 if (ret < 0)
841 goto end_iter;
842 }
843
844 /* block until quit, we reached the end of the trace */
845 sem_wait(&end_trace_sem);
846
847end_iter:
848 bt_ctf_iter_destroy(iter);
849}
850
851/*
852 * bt_context_add_traces_recursive: Open a trace recursively
853 * (copied from BSD code in converter/babeltrace.c)
854 *
855 * Find each trace present in the subdirectory starting from the given
856 * path, and add them to the context. The packet_seek parameter can be
857 * NULL: this specify to use the default format packet_seek.
858 *
859 * Return: 0 on success, nonzero on failure.
860 * Unable to open toplevel: failure.
861 * Unable to open some subdirectory or file: warn and continue;
862 */
863int bt_context_add_traces_recursive(struct bt_context *ctx, const char *path,
864 const char *format_str,
865 void (*packet_seek)(struct bt_stream_pos *pos,
866 size_t offset, int whence))
867{
868 FTS *tree;
869 FTSENT *node;
870 GArray *trace_ids;
871 char lpath[PATH_MAX];
872 char * const paths[2] = { lpath, NULL };
873 int ret = -1;
874
875 if ((strncmp(path, NET4_URL_PREFIX, sizeof(NET4_URL_PREFIX) - 1)) == 0 ||
876 (strncmp(path, NET6_URL_PREFIX, sizeof(NET6_URL_PREFIX) - 1)) == 0 ||
877 (strncmp(path, NET_URL_PREFIX, sizeof(NET_URL_PREFIX) - 1)) == 0) {
878 ret = bt_context_add_trace(ctx,
879 path, format_str, packet_seek, NULL, NULL);
880 if (ret < 0) {
881 fprintf(stderr, "[warning] [Context] cannot open trace \"%s\" "
882 "for reading.\n", path);
883 /* Allow to skip erroneous traces. */
884 ret = 1; /* partial error */
885 }
886 return ret;
887 }
888 /*
889 * Need to copy path, because fts_open can change it.
890 * It is the pointer array, not the strings, that are constant.
891 */
892 strncpy(lpath, path, PATH_MAX);
893 lpath[PATH_MAX - 1] = '\0';
894
895 tree = fts_open(paths, FTS_NOCHDIR | FTS_LOGICAL, 0);
896 if (tree == NULL) {
897 fprintf(stderr, "[error] [Context] Cannot traverse \"%s\" for reading.\n",
898 path);
899 return -EINVAL;
900 }
901
902 trace_ids = g_array_new(FALSE, TRUE, sizeof(int));
903
904 while ((node = fts_read(tree))) {
905 int dirfd, metafd;
906
907 if (!(node->fts_info & FTS_D))
908 continue;
909
910 dirfd = open(node->fts_accpath, 0);
911 if (dirfd < 0) {
912 fprintf(stderr, "[error] [Context] Unable to open trace "
913 "directory file descriptor.\n");
914 ret = dirfd;
915 goto error;
916 }
917 metafd = openat(dirfd, "metadata", O_RDONLY);
918 if (metafd < 0) {
919 close(dirfd);
920 continue;
921 } else {
922 int trace_id;
923
924 ret = close(metafd);
925 if (ret < 0) {
926 perror("close");
927 goto error;
928 }
929 ret = close(dirfd);
930 if (ret < 0) {
931 perror("close");
932 goto error;
933 }
934
935 trace_id = bt_context_add_trace(ctx,
936 node->fts_accpath, format_str,
937 packet_seek, NULL, NULL);
938 if (trace_id < 0) {
939 fprintf(stderr, "[warning] [Context] opening trace \"%s\" from %s "
940 "for reading.\n", node->fts_accpath, path);
941 /* Allow to skip erroneous traces. */
942 continue;
943 }
944 g_array_append_val(trace_ids, trace_id);
945 }
946 }
947
948 g_array_free(trace_ids, TRUE);
949 return ret;
950
951error:
952 return ret;
953}
954
955static int check_field_requirements(const struct bt_ctf_field_decl *const * field_list,
956 int field_cnt, int *tid_check, int *pid_check,
957 int *procname_check, int *ppid_check)
958{
959 int j;
960 struct perfcounter *global;
961 const char *name;
962
963 for (j = 0; j < field_cnt; j++) {
964 name = bt_ctf_get_decl_field_name(field_list[j]);
965 if (*tid_check == 0) {
966 if (strncmp(name, "tid", 3) == 0)
967 (*tid_check)++;
968 }
969 if (*pid_check == 0) {
970 if (strncmp(name, "pid", 3) == 0)
971 (*pid_check)++;
972 }
973 if (*ppid_check == 0) {
974 if (strncmp(name, "ppid", 4) == 0)
975 (*ppid_check)++;
976 }
977 if (*procname_check == 0) {
978 if (strncmp(name, "procname", 8) == 0)
979 (*procname_check)++;
980 }
981 if (strncmp(name, "perf_", 5) == 0) {
982 global = g_hash_table_lookup(global_perf_liszt, (gpointer) name);
983 if (!global) {
984 global = g_new0(struct perfcounter, 1);
985 /* by default, sort on the first perf context */
986 if (g_hash_table_size(global_perf_liszt) == 0)
987 global->sort = 1;
988 global->visible = 1;
989 g_hash_table_insert(global_perf_liszt, (gpointer) strdup(name), global);
990 }
991 }
992 }
993
994 if (*tid_check == 1 && *pid_check == 1 && *ppid_check == 1 &&
995 *procname_check == 1)
996 return 0;
997
998 return -1;
999}
1000
1001/*
1002 * check_requirements: check if the required context informations are available
1003 *
1004 * If each mandatory context information is available for at least in one
1005 * event, return 0 otherwise return -1.
1006 */
1007int check_requirements(struct bt_context *ctx)
1008{
1009 unsigned int i, evt_cnt, field_cnt;
1010 struct bt_ctf_event_decl *const * evt_list;
1011 const struct bt_ctf_field_decl *const * field_list;
1012 int tid_check = 0;
1013 int pid_check = 0;
1014 int procname_check = 0;
1015 int ppid_check = 0;
1016 int ret = 0;
1017
1018 ret = bt_ctf_get_event_decl_list(0, ctx, &evt_list, &evt_cnt);
1019 if (ret < 0) {
1020 goto end;
1021 }
1022
1023 for (i = 0; i < evt_cnt; i++) {
1024 bt_ctf_get_decl_fields(evt_list[i], BT_STREAM_EVENT_CONTEXT,
1025 &field_list, &field_cnt);
1026 ret = check_field_requirements(field_list, field_cnt,
1027 &tid_check, &pid_check, &procname_check,
1028 &ppid_check);
1029
1030 bt_ctf_get_decl_fields(evt_list[i], BT_EVENT_CONTEXT,
1031 &field_list, &field_cnt);
1032 ret = check_field_requirements(field_list, field_cnt,
1033 &tid_check, &pid_check, &procname_check,
1034 &ppid_check);
1035
1036 bt_ctf_get_decl_fields(evt_list[i], BT_STREAM_PACKET_CONTEXT,
1037 &field_list, &field_cnt);
1038 ret = check_field_requirements(field_list, field_cnt,
1039 &tid_check, &pid_check, &procname_check,
1040 &ppid_check);
1041 }
1042
1043 if (tid_check == 0) {
1044 ret = -1;
1045 fprintf(stderr, "[error] missing tid context information\n");
1046 }
1047 if (pid_check == 0) {
1048 ret = -1;
1049 fprintf(stderr, "[error] missing pid context information\n");
1050 }
1051 if (ppid_check == 0) {
1052 ret = -1;
1053 fprintf(stderr, "[error] missing ppid context information\n");
1054 }
1055 if (procname_check == 0) {
1056 ret = -1;
1057 fprintf(stderr, "[error] missing procname context information\n");
1058 }
1059
1060end:
1061 return ret;
1062}
1063
1064int main(int argc, char **argv)
1065{
1066 int ret;
1067 struct bt_context *bt_ctx = NULL;
1068
1069 init_lttngtop();
1070 ret = parse_options(argc, argv);
1071 if (ret < 0) {
1072 fprintf(stdout, "Error parsing options.\n\n");
1073 usage(stdout);
1074 exit(EXIT_FAILURE);
1075 } else if (ret > 0) {
1076 exit(EXIT_SUCCESS);
1077 }
1078
1079 if (!opt_input_path && !remote_live) {
1080 /* mmap live */
1081#ifdef LTTNGTOP_MMAP_LIVE
1082 if (opt_textdump) {
1083 signal(SIGTERM, handle_textdump_sigterm);
1084 signal(SIGINT, handle_textdump_sigterm);
1085 }
1086 mmap_live_loop(bt_ctx);
1087 pthread_join(timer_thread, NULL);
1088 quit = 1;
1089 pthread_join(display_thread, NULL);
1090
1091 lttng_stop_tracing("test");
1092 lttng_destroy_session("test");
1093
1094 goto end;
1095#else
1096 fprintf(stderr, "[ERROR] Mmap live support not compiled, specify a "
1097 "trace directory or -r <relayd hostname/IP>\n");
1098 usage(stdout);
1099 ret = -1;
1100 goto end;
1101#endif /* LTTNGTOP_MMAP_LIVE */
1102 } else if (!opt_input_path && remote_live) {
1103 /* network live */
1104#if 0
1105 ret = setup_network_live(opt_relay_hostname, opt_begin);
1106 if (ret < 0) {
1107 goto end;
1108 }
1109
1110 ret = open_trace(&bt_ctx);
1111 if (ret < 0) {
1112 goto end;
1113 }
1114#endif
1115
1116 bt_ctx = bt_context_create();
1117 ret = bt_context_add_traces_recursive(bt_ctx, opt_relay_hostname,
1118 "lttng-live", NULL);
1119 if (ret < 0) {
1120 fprintf(stderr, "[error] Opening the trace\n");
1121 goto end;
1122 }
1123 } else {
1124 //init_lttngtop();
1125
1126 bt_ctx = bt_context_create();
1127 ret = bt_context_add_traces_recursive(bt_ctx, opt_input_path, "ctf", NULL);
1128 if (ret < 0) {
1129 fprintf(stderr, "[error] Opening the trace\n");
1130 goto end;
1131 }
1132
1133 ret = check_requirements(bt_ctx);
1134 if (ret < 0) {
1135 fprintf(stderr, "[error] some mandatory contexts "
1136 "were missing, exiting.\n");
1137 goto end;
1138 }
1139
1140 if (!opt_textdump) {
1141 pthread_create(&display_thread, NULL, ncurses_display,
1142 (void *) NULL);
1143 pthread_create(&timer_thread, NULL, refresh_thread,
1144 (void *) NULL);
1145 }
1146
1147 iter_trace(bt_ctx);
1148 }
1149
1150
1151 pthread_join(display_thread, NULL);
1152 quit = 1;
1153 pthread_join(timer_thread, NULL);
1154
1155 ret = 0;
1156
1157end:
1158 if (bt_ctx)
1159 bt_context_put(bt_ctx);
1160
1161 return ret;
1162}
This page took 0.025718 seconds and 4 git commands to generate.