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