Fix missing strncmp return value comparison
[lttng-tools.git] / src / bin / lttng / commands / list.c
1 /*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; only version 2
7 * of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 */
18
19 #define _GNU_SOURCE
20 #include <inttypes.h>
21 #include <popt.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <assert.h>
26
27 #include "../command.h"
28
29 static int opt_userspace;
30 static int opt_kernel;
31 static char *opt_channel;
32 static int opt_domain;
33 #if 0
34 /* Not implemented yet */
35 static char *opt_cmd_name;
36 static pid_t opt_pid;
37 #endif
38
39 const char *indent4 = " ";
40 const char *indent6 = " ";
41 const char *indent8 = " ";
42
43 enum {
44 OPT_HELP = 1,
45 OPT_USERSPACE,
46 OPT_LIST_OPTIONS,
47 };
48
49 static struct lttng_handle *handle;
50
51 static struct poptOption long_options[] = {
52 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
53 {"help", 'h', POPT_ARG_NONE, 0, OPT_HELP, 0, 0},
54 {"kernel", 'k', POPT_ARG_VAL, &opt_kernel, 1, 0, 0},
55 #if 0
56 /* Not implemented yet */
57 {"userspace", 'u', POPT_ARG_STRING | POPT_ARGFLAG_OPTIONAL, &opt_cmd_name, OPT_USERSPACE, 0, 0},
58 {"pid", 'p', POPT_ARG_INT, &opt_pid, 0, 0, 0},
59 #else
60 {"userspace", 'u', POPT_ARG_NONE, 0, OPT_USERSPACE, 0, 0},
61 #endif
62 {"channel", 'c', POPT_ARG_STRING, &opt_channel, 0, 0, 0},
63 {"domain", 'd', POPT_ARG_VAL, &opt_domain, 1, 0, 0},
64 {"list-options", 0, POPT_ARG_NONE, NULL, OPT_LIST_OPTIONS, NULL, NULL},
65 {0, 0, 0, 0, 0, 0, 0}
66 };
67
68 /*
69 * usage
70 */
71 static void usage(FILE *ofp)
72 {
73 fprintf(ofp, "usage: lttng list [OPTIONS] [SESSION [<OPTIONS>]]\n");
74 fprintf(ofp, "\n");
75 fprintf(ofp, "With no arguments, list available tracing session(s)\n");
76 fprintf(ofp, "\n");
77 fprintf(ofp, "Without a session, -k lists available kernel events\n");
78 fprintf(ofp, "Without a session, -u lists available userspace events\n");
79 fprintf(ofp, "\n");
80 fprintf(ofp, " -h, --help Show this help\n");
81 fprintf(ofp, " --list-options Simple listing of options\n");
82 fprintf(ofp, " -k, --kernel Select kernel domain\n");
83 fprintf(ofp, " -u, --userspace Select user-space domain.\n");
84 #if 0
85 fprintf(ofp, " -p, --pid PID List user-space events by PID\n");
86 #endif
87 fprintf(ofp, "\n");
88 fprintf(ofp, "Session Options:\n");
89 fprintf(ofp, " -c, --channel NAME List details of a channel\n");
90 fprintf(ofp, " -d, --domain List available domain(s)\n");
91 fprintf(ofp, "\n");
92 }
93
94 /*
95 * Get command line from /proc for a specific pid.
96 *
97 * On success, return an allocated string pointer to the proc cmdline.
98 * On error, return NULL.
99 */
100 static char *get_cmdline_by_pid(pid_t pid)
101 {
102 int ret;
103 FILE *fp;
104 char *cmdline = NULL;
105 char path[24]; /* Can't go bigger than /proc/65535/cmdline */
106
107 snprintf(path, sizeof(path), "/proc/%d/cmdline", pid);
108 fp = fopen(path, "r");
109 if (fp == NULL) {
110 goto end;
111 }
112
113 /* Caller must free() *cmdline */
114 cmdline = malloc(PATH_MAX);
115 ret = fread(cmdline, 1, PATH_MAX, fp);
116 if (ret < 0) {
117 perror("fread proc list");
118 }
119 fclose(fp);
120
121 end:
122 return cmdline;
123 }
124
125 static
126 const char *active_string(int value)
127 {
128 switch (value) {
129 case 0: return " [inactive]";
130 case 1: return " [active]";
131 case -1: return "";
132 default: return NULL;
133 }
134 }
135
136 static
137 const char *enabled_string(int value)
138 {
139 switch (value) {
140 case 0: return " [disabled]";
141 case 1: return " [enabled]";
142 case -1: return "";
143 default: return NULL;
144 }
145 }
146
147 static
148 const char *loglevel_string_pre(int loglevel)
149 {
150 if (loglevel == -1) {
151 return "";
152 } else {
153 return " (loglevel: ";
154 }
155 }
156
157 static
158 const char *loglevel_string_post(int loglevel)
159 {
160 if (loglevel == -1) {
161 return "";
162 } else {
163 return ")";
164 }
165 }
166
167 static const char *loglevel_string(int value)
168 {
169 switch (value) {
170 case -1: return "";
171 case 0: return "TRACE_EMERG";
172 case 1: return "TRACE_ALERT";
173 case 2: return "TRACE_CRIT";
174 case 3: return "TRACE_ERR";
175 case 4: return "TRACE_WARNING";
176 case 5: return "TRACE_NOTICE";
177 case 6: return "TRACE_INFO";
178 case 7: return "TRACE_SYSTEM";
179 case 8: return "TRACE_PROCESS";
180 case 9: return "TRACE_MODULE";
181 case 10: return "TRACE_UNIT";
182 case 11: return "TRACE_CLASS";
183 case 12: return "TRACE_OBJECT";
184 case 13: return "TRACE_FUNCTION";
185 case 14: return "TRACE_PRINTF";
186 case 15: return "TRACE_DEBUG";
187 default: return "<<UNKNOWN>>";
188 }
189 }
190
191 /*
192 * Pretty print single event.
193 */
194 static void print_events(struct lttng_event *event)
195 {
196 switch (event->type) {
197 case LTTNG_EVENT_TRACEPOINT:
198 {
199 MSG("%s%s%s%s%d%s (type: tracepoint)%s", indent6,
200 event->name,
201 loglevel_string_pre(event->loglevel),
202 loglevel_string(event->loglevel),
203 event->loglevel,
204 loglevel_string_post(event->loglevel),
205 enabled_string(event->enabled));
206 break;
207 }
208 case LTTNG_EVENT_PROBE:
209 MSG("%s%s (type: probe)%s", indent6,
210 event->name, enabled_string(event->enabled));
211 if (event->attr.probe.addr != 0) {
212 MSG("%saddr: 0x%" PRIx64, indent8, event->attr.probe.addr);
213 } else {
214 MSG("%soffset: 0x%" PRIx64, indent8, event->attr.probe.offset);
215 MSG("%ssymbol: %s", indent8, event->attr.probe.symbol_name);
216 }
217 break;
218 case LTTNG_EVENT_FUNCTION:
219 case LTTNG_EVENT_FUNCTION_ENTRY:
220 MSG("%s%s (type: function)%s", indent6,
221 event->name, enabled_string(event->enabled));
222 MSG("%ssymbol: \"%s\"", indent8, event->attr.ftrace.symbol_name);
223 break;
224 case LTTNG_EVENT_SYSCALL:
225 MSG("%s (type: syscall)%s", indent6,
226 enabled_string(event->enabled));
227 break;
228 case LTTNG_EVENT_NOOP:
229 MSG("%s (type: noop)%s", indent6,
230 enabled_string(event->enabled));
231 break;
232 case LTTNG_EVENT_ALL:
233 /* We should never have "all" events in list. */
234 assert(0);
235 break;
236 }
237 }
238
239 /*
240 * Ask session daemon for all user space tracepoints available.
241 */
242 static int list_ust_events(void)
243 {
244 int i, size;
245 struct lttng_domain domain;
246 struct lttng_handle *handle;
247 struct lttng_event *event_list;
248 pid_t cur_pid = 0;
249
250 DBG("Getting UST tracing events");
251
252 domain.type = LTTNG_DOMAIN_UST;
253
254 handle = lttng_create_handle(NULL, &domain);
255 if (handle == NULL) {
256 goto error;
257 }
258
259 size = lttng_list_tracepoints(handle, &event_list);
260 if (size < 0) {
261 ERR("Unable to list UST events");
262 return size;
263 }
264
265 MSG("UST events:\n-------------");
266
267 if (size == 0) {
268 MSG("None");
269 }
270
271 for (i = 0; i < size; i++) {
272 if (cur_pid != event_list[i].pid) {
273 cur_pid = event_list[i].pid;
274 MSG("\nPID: %d - Name: %s", cur_pid, get_cmdline_by_pid(cur_pid));
275 }
276 print_events(&event_list[i]);
277 }
278
279 MSG("");
280
281 free(event_list);
282
283 return CMD_SUCCESS;
284
285 error:
286 return -1;
287 }
288
289 /*
290 * Ask for all trace events in the kernel and pretty print them.
291 */
292 static int list_kernel_events(void)
293 {
294 int i, size;
295 struct lttng_domain domain;
296 struct lttng_handle *handle;
297 struct lttng_event *event_list;
298
299 DBG("Getting kernel tracing events");
300
301 domain.type = LTTNG_DOMAIN_KERNEL;
302
303 handle = lttng_create_handle(NULL, &domain);
304 if (handle == NULL) {
305 goto error;
306 }
307
308 size = lttng_list_tracepoints(handle, &event_list);
309 if (size < 0) {
310 ERR("Unable to list kernel events");
311 return size;
312 }
313
314 MSG("Kernel events:\n-------------");
315
316 for (i = 0; i < size; i++) {
317 print_events(&event_list[i]);
318 }
319
320 MSG("");
321
322 free(event_list);
323
324 return CMD_SUCCESS;
325
326 error:
327 return -1;
328 }
329
330 /*
331 * List events of channel of session and domain.
332 */
333 static int list_events(const char *channel_name)
334 {
335 int ret, count, i;
336 struct lttng_event *events = NULL;
337
338 count = lttng_list_events(handle, channel_name, &events);
339 if (count < 0) {
340 ret = count;
341 goto error;
342 }
343
344 MSG("\n%sEvents:", indent4);
345 if (count == 0) {
346 MSG("%sNone\n", indent6);
347 goto end;
348 }
349
350 for (i = 0; i < count; i++) {
351 print_events(&events[i]);
352 }
353
354 MSG("");
355
356 end:
357 if (events) {
358 free(events);
359 }
360 ret = CMD_SUCCESS;
361
362 error:
363 return ret;
364 }
365
366 /*
367 * Pretty print channel
368 */
369 static void print_channel(struct lttng_channel *channel)
370 {
371 MSG("- %s:%s\n", channel->name, enabled_string(channel->enabled));
372
373 MSG("%sAttributes:", indent4);
374 MSG("%soverwrite mode: %d", indent6, channel->attr.overwrite);
375 MSG("%ssubbufers size: %" PRIu64, indent6, channel->attr.subbuf_size);
376 MSG("%snumber of subbufers: %" PRIu64, indent6, channel->attr.num_subbuf);
377 MSG("%sswitch timer interval: %u", indent6, channel->attr.switch_timer_interval);
378 MSG("%sread timer interval: %u", indent6, channel->attr.read_timer_interval);
379 switch (channel->attr.output) {
380 case LTTNG_EVENT_SPLICE:
381 MSG("%soutput: splice()", indent6);
382 break;
383 case LTTNG_EVENT_MMAP:
384 MSG("%soutput: mmap()", indent6);
385 break;
386 }
387 }
388
389 /*
390 * List channel(s) of session and domain.
391 *
392 * If channel_name is NULL, all channels are listed.
393 */
394 static int list_channels(const char *channel_name)
395 {
396 int count, i, ret = CMD_SUCCESS;
397 unsigned int chan_found = 0;
398 struct lttng_channel *channels = NULL;
399
400 DBG("Listing channel(s) (%s)", channel_name ? : "<all>");
401
402 count = lttng_list_channels(handle, &channels);
403 if (count < 0) {
404 ret = count;
405 goto error_channels;
406 } else if (count == 0) {
407 ERR("Channel %s not found", channel_name);
408 goto error;
409 }
410
411 if (channel_name == NULL) {
412 MSG("Channels:\n-------------");
413 }
414
415 for (i = 0; i < count; i++) {
416 if (channel_name != NULL) {
417 if (strncmp(channels[i].name, channel_name, NAME_MAX) == 0) {
418 chan_found = 1;
419 } else {
420 continue;
421 }
422 }
423 print_channel(&channels[i]);
424
425 /* Listing events per channel */
426 ret = list_events(channels[i].name);
427 if (ret < 0) {
428 MSG("%s", lttng_strerror(ret));
429 }
430
431 if (chan_found) {
432 break;
433 }
434 }
435
436 if (!chan_found && channel_name != NULL) {
437 ERR("Channel %s not found", channel_name);
438 goto error;
439 }
440
441 ret = CMD_SUCCESS;
442
443 error:
444 free(channels);
445
446 error_channels:
447 return ret;
448 }
449
450 /*
451 * List available tracing session. List only basic information.
452 *
453 * If session_name is NULL, all sessions are listed.
454 */
455 static int list_sessions(const char *session_name)
456 {
457 int ret, count, i;
458 unsigned int session_found = 0;
459 struct lttng_session *sessions;
460
461 count = lttng_list_sessions(&sessions);
462 DBG("Session count %d", count);
463 if (count < 0) {
464 ret = count;
465 goto error;
466 }
467
468 if (session_name == NULL) {
469 MSG("Available tracing sessions:");
470 }
471
472 for (i = 0; i < count; i++) {
473 if (session_name != NULL) {
474 if (strncmp(sessions[i].name, session_name, NAME_MAX) == 0) {
475 session_found = 1;
476 MSG("Tracing session %s:%s", session_name, active_string(sessions[i].enabled));
477 MSG("%sTrace path: %s\n", indent4, sessions[i].path);
478 break;
479 }
480 continue;
481 }
482
483 MSG(" %d) %s (%s)%s", i + 1, sessions[i].name, sessions[i].path, active_string(sessions[i].enabled));
484
485 if (session_found) {
486 break;
487 }
488 }
489
490 free(sessions);
491
492 if (!session_found && session_name != NULL) {
493 ERR("Session %s not found", session_name);
494 }
495
496 if (session_name == NULL) {
497 MSG("\nUse lttng list <session_name> for more details");
498 }
499
500 return CMD_SUCCESS;
501
502 error:
503 return ret;
504 }
505
506 /*
507 * List available domain(s) for a session.
508 */
509 static int list_domains(const char *session_name)
510 {
511 int i, count, ret = CMD_SUCCESS;
512 struct lttng_domain *domains = NULL;
513
514 MSG("Domains:\n-------------");
515
516 count = lttng_list_domains(session_name, &domains);
517 if (count < 0) {
518 ret = count;
519 goto error;
520 } else if (count == 0) {
521 MSG(" None");
522 goto end;
523 }
524
525 for (i = 0; i < count; i++) {
526 switch (domains[i].type) {
527 case LTTNG_DOMAIN_KERNEL:
528 MSG(" - Kernel");
529 break;
530 case LTTNG_DOMAIN_UST:
531 MSG(" - UST global");
532 break;
533 default:
534 break;
535 }
536 }
537
538 end:
539 free(domains);
540
541 error:
542 return ret;
543 }
544
545 /*
546 * The 'list <options>' first level command
547 */
548 int cmd_list(int argc, const char **argv)
549 {
550 int opt, i, ret = CMD_SUCCESS;
551 int nb_domain;
552 const char *session_name;
553 static poptContext pc;
554 struct lttng_domain domain;
555 struct lttng_domain *domains = NULL;
556
557 if (argc < 1) {
558 usage(stderr);
559 ret = CMD_ERROR;
560 goto end;
561 }
562
563 pc = poptGetContext(NULL, argc, argv, long_options, 0);
564 poptReadDefaultConfig(pc, 0);
565
566 while ((opt = poptGetNextOpt(pc)) != -1) {
567 switch (opt) {
568 case OPT_HELP:
569 usage(stdout);
570 goto end;
571 case OPT_USERSPACE:
572 opt_userspace = 1;
573 break;
574 case OPT_LIST_OPTIONS:
575 list_cmd_options(stdout, long_options);
576 goto end;
577 default:
578 usage(stderr);
579 ret = CMD_UNDEFINED;
580 goto end;
581 }
582 }
583
584 /* Get session name (trailing argument) */
585 session_name = poptGetArg(pc);
586 DBG2("Session name: %s", session_name);
587
588 if (opt_kernel) {
589 domain.type = LTTNG_DOMAIN_KERNEL;
590 } else if (opt_userspace) {
591 DBG2("Listing userspace global domain");
592 domain.type = LTTNG_DOMAIN_UST;
593 }
594
595 handle = lttng_create_handle(session_name, &domain);
596 if (handle == NULL) {
597 ret = CMD_FATAL;
598 goto end;
599 }
600
601 if (session_name == NULL) {
602 if (!opt_kernel && !opt_userspace) {
603 ret = list_sessions(NULL);
604 if (ret < 0) {
605 goto end;
606 }
607 }
608 if (opt_kernel) {
609 ret = list_kernel_events();
610 if (ret < 0) {
611 ret = CMD_ERROR;
612 goto end;
613 }
614 }
615 if (opt_userspace) {
616 ret = list_ust_events();
617 if (ret < 0) {
618 ret = CMD_ERROR;
619 goto end;
620 }
621 }
622 } else {
623 /* List session attributes */
624 ret = list_sessions(session_name);
625 if (ret < 0) {
626 goto end;
627 }
628
629 /* Domain listing */
630 if (opt_domain) {
631 ret = list_domains(session_name);
632 if (ret < 0) {
633 ret = CMD_ERROR;
634 }
635 goto end;
636 }
637
638 if (opt_kernel) {
639 /* Channel listing */
640 ret = list_channels(opt_channel);
641 if (ret < 0) {
642 ret = CMD_ERROR;
643 goto end;
644 }
645 } else {
646 /* We want all domain(s) */
647 nb_domain = lttng_list_domains(session_name, &domains);
648 if (nb_domain < 0) {
649 ret = CMD_ERROR;
650 goto end;
651 }
652
653 for (i = 0; i < nb_domain; i++) {
654 switch (domains[i].type) {
655 case LTTNG_DOMAIN_KERNEL:
656 MSG("=== Domain: Kernel ===\n");
657 break;
658 case LTTNG_DOMAIN_UST:
659 MSG("=== Domain: UST global ===\n");
660 break;
661 default:
662 MSG("=== Domain: Unimplemented ===\n");
663 break;
664 }
665
666 /* Clean handle before creating a new one */
667 lttng_destroy_handle(handle);
668
669 handle = lttng_create_handle(session_name, &domains[i]);
670 if (handle == NULL) {
671 ret = CMD_FATAL;
672 goto end;
673 }
674
675 ret = list_channels(opt_channel);
676 if (ret < 0) {
677 ret = CMD_ERROR;
678 goto end;
679 }
680 }
681 }
682 }
683
684 end:
685 if (domains) {
686 free(domains);
687 }
688 lttng_destroy_handle(handle);
689
690 poptFreeContext(pc);
691 return ret;
692 }
This page took 0.042283 seconds and 4 git commands to generate.