5f52a57f6dcd4973faad510c66461bb65c6c0d01
[lttng-tools.git] / src / bin / lttng / commands / list.cpp
1 /*
2 * Copyright (C) 2011 EfficiOS Inc.
3 * Copyright (C) 2020 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 *
5 * SPDX-License-Identifier: GPL-2.0-only
6 *
7 */
8
9 #include <stdint.h>
10 #define _LGPL_SOURCE
11 #include <inttypes.h>
12 #include <popt.h>
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <string.h>
16
17 #include <common/mi-lttng.hpp>
18 #include <common/time.hpp>
19 #include <common/tracker.hpp>
20 #include <lttng/domain-internal.hpp>
21 #include <lttng/lttng.h>
22
23 #include "../command.hpp"
24
25 static int opt_userspace;
26 static int opt_kernel;
27 static int opt_jul;
28 static int opt_log4j;
29 static int opt_python;
30 static char *opt_channel;
31 static int opt_domain;
32 static int opt_fields;
33 static int opt_syscall;
34
35 const char *indent4 = " ";
36 const char *indent6 = " ";
37 const char *indent8 = " ";
38
39 #ifdef LTTNG_EMBED_HELP
40 static const char help_msg[] =
41 #include <lttng-list.1.h>
42 ;
43 #endif
44
45 enum {
46 OPT_HELP = 1,
47 OPT_USERSPACE,
48 OPT_LIST_OPTIONS,
49 };
50
51 static struct lttng_handle *the_handle;
52 static struct mi_writer *the_writer;
53
54 /* Only set when listing a single session. */
55 static struct lttng_session the_listed_session;
56
57 static struct poptOption long_options[] = {
58 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
59 {"help", 'h', POPT_ARG_NONE, 0, OPT_HELP, 0, 0},
60 {"kernel", 'k', POPT_ARG_VAL, &opt_kernel, 1, 0, 0},
61 {"jul", 'j', POPT_ARG_VAL, &opt_jul, 1, 0, 0},
62 {"log4j", 'l', POPT_ARG_VAL, &opt_log4j, 1, 0, 0},
63 {"python", 'p', POPT_ARG_VAL, &opt_python, 1, 0, 0},
64 {"userspace", 'u', POPT_ARG_NONE, 0, OPT_USERSPACE, 0, 0},
65 {"channel", 'c', POPT_ARG_STRING, &opt_channel, 0, 0, 0},
66 {"domain", 'd', POPT_ARG_VAL, &opt_domain, 1, 0, 0},
67 {"fields", 'f', POPT_ARG_VAL, &opt_fields, 1, 0, 0},
68 {"syscall", 'S', POPT_ARG_VAL, &opt_syscall, 1, 0, 0},
69 {"list-options", 0, POPT_ARG_NONE, NULL, OPT_LIST_OPTIONS, NULL, NULL},
70 {0, 0, 0, 0, 0, 0, 0}
71 };
72
73 /*
74 * Get command line from /proc for a specific pid.
75 *
76 * On success, return an allocated string pointer to the proc cmdline.
77 * On error, return NULL.
78 */
79 static char *get_cmdline_by_pid(pid_t pid)
80 {
81 int ret;
82 FILE *fp = NULL;
83 char *cmdline = NULL;
84 /* Can't go bigger than /proc/LTTNG_MAX_PID/cmdline */
85 char path[sizeof("/proc//cmdline") + sizeof(LTTNG_MAX_PID_STR) - 1];
86
87 snprintf(path, sizeof(path), "/proc/%d/cmdline", pid);
88 fp = fopen(path, "r");
89 if (fp == NULL) {
90 goto end;
91 }
92
93 /* Caller must free() *cmdline */
94 cmdline = zmalloc<char>(PATH_MAX);
95 if (!cmdline) {
96 PERROR("malloc cmdline");
97 goto end;
98 }
99
100 ret = fread(cmdline, 1, PATH_MAX, fp);
101 if (ret < 0) {
102 PERROR("fread proc list");
103 }
104
105 end:
106 if (fp) {
107 fclose(fp);
108 }
109 return cmdline;
110 }
111
112 static
113 const char *active_string(int value)
114 {
115 switch (value) {
116 case 0: return "inactive";
117 case 1: return "active";
118 case -1: return "";
119 default: return NULL;
120 }
121 }
122
123 static const char *snapshot_string(int value)
124 {
125 switch (value) {
126 case 1:
127 return " snapshot";
128 default:
129 return "";
130 }
131 }
132
133 static
134 const char *enabled_string(int value)
135 {
136 switch (value) {
137 case 0: return " [disabled]";
138 case 1: return " [enabled]";
139 case -1: return "";
140 default: return NULL;
141 }
142 }
143
144 static
145 const char *safe_string(const char *str)
146 {
147 return str ? str : "";
148 }
149
150 static const char *logleveltype_string(enum lttng_loglevel_type value)
151 {
152 switch (value) {
153 case LTTNG_EVENT_LOGLEVEL_ALL:
154 return ":";
155 case LTTNG_EVENT_LOGLEVEL_RANGE:
156 return " <=";
157 case LTTNG_EVENT_LOGLEVEL_SINGLE:
158 return " ==";
159 default:
160 return " <<TYPE UNKN>>";
161 }
162 }
163
164 static const char *bitness_event(enum lttng_event_flag flags)
165 {
166 if (flags & LTTNG_EVENT_FLAG_SYSCALL_32) {
167 if (flags & LTTNG_EVENT_FLAG_SYSCALL_64) {
168 return " [32/64-bit]";
169 } else {
170 return " [32-bit]";
171 }
172 } else if (flags & LTTNG_EVENT_FLAG_SYSCALL_64) {
173 return " [64-bit]";
174 } else {
175 return "";
176 }
177 }
178
179 /*
180 * Get exclusion names message for a single event.
181 *
182 * Returned pointer must be freed by caller. Returns NULL on error.
183 */
184 static char *get_exclusion_names_msg(struct lttng_event *event)
185 {
186 int ret;
187 int exclusion_count;
188 char *exclusion_msg = NULL;
189 char *at;
190 size_t i;
191 const char * const exclusion_fmt = " [exclusions: ";
192 const size_t exclusion_fmt_len = strlen(exclusion_fmt);
193
194 exclusion_count = lttng_event_get_exclusion_name_count(event);
195 if (exclusion_count < 0) {
196 goto end;
197 } else if (exclusion_count == 0) {
198 /*
199 * No exclusions: return copy of empty string so that
200 * it can be freed by caller.
201 */
202 exclusion_msg = strdup("");
203 goto end;
204 }
205
206 /*
207 * exclusion_msg's size is bounded by the exclusion_fmt string,
208 * a comma per entry, the entry count (fixed-size), a closing
209 * bracket, and a trailing \0.
210 */
211 exclusion_msg = (char *) malloc(exclusion_count +
212 exclusion_count * LTTNG_SYMBOL_NAME_LEN +
213 exclusion_fmt_len + 1);
214 if (!exclusion_msg) {
215 goto end;
216 }
217
218 at = strcpy(exclusion_msg, exclusion_fmt) + exclusion_fmt_len;
219 for (i = 0; i < exclusion_count; ++i) {
220 const char *name;
221
222 /* Append comma between exclusion names */
223 if (i > 0) {
224 *at = ',';
225 at++;
226 }
227
228 ret = lttng_event_get_exclusion_name(event, i, &name);
229 if (ret) {
230 /* Prints '?' on local error; should never happen */
231 *at = '?';
232 at++;
233 continue;
234 }
235
236 /* Append exclusion name */
237 at += sprintf(at, "%s", name);
238 }
239
240 /* This also puts a final '\0' at the end of exclusion_msg */
241 strcpy(at, "]");
242
243 end:
244 return exclusion_msg;
245 }
246
247 static void print_userspace_probe_location(struct lttng_event *event)
248 {
249 const struct lttng_userspace_probe_location *location;
250 const struct lttng_userspace_probe_location_lookup_method *lookup_method;
251 enum lttng_userspace_probe_location_lookup_method_type lookup_type;
252
253 location = lttng_event_get_userspace_probe_location(event);
254 if (!location) {
255 MSG("Event has no userspace probe location");
256 return;
257 }
258
259 lookup_method = lttng_userspace_probe_location_get_lookup_method(location);
260 if (!lookup_method) {
261 MSG("Event has no userspace probe location lookup method");
262 return;
263 }
264
265 MSG("%s%s (type: userspace-probe)%s", indent6, event->name, enabled_string(event->enabled));
266
267 lookup_type = lttng_userspace_probe_location_lookup_method_get_type(lookup_method);
268
269 switch (lttng_userspace_probe_location_get_type(location)) {
270 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_UNKNOWN:
271 MSG("%sType: Unknown", indent8);
272 break;
273 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION:
274 {
275 const char *function_name;
276 char *binary_path;
277
278 MSG("%sType: Function", indent8);
279 function_name = lttng_userspace_probe_location_function_get_function_name(location);
280 binary_path = realpath(lttng_userspace_probe_location_function_get_binary_path(location), NULL);
281
282 MSG("%sBinary path: %s", indent8, binary_path ? binary_path : "NULL");
283 MSG("%sFunction: %s()", indent8, function_name ? function_name : "NULL");
284 switch (lookup_type) {
285 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_ELF:
286 MSG("%sLookup method: ELF", indent8);
287 break;
288 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_DEFAULT:
289 MSG("%sLookup method: default", indent8);
290 break;
291 default:
292 MSG("%sLookup method: INVALID LOOKUP TYPE ENCOUNTERED", indent8);
293 break;
294 }
295
296 free(binary_path);
297 break;
298 }
299 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT:
300 {
301 const char *probe_name, *provider_name;
302 char *binary_path;
303
304 MSG("%sType: Tracepoint", indent8);
305 probe_name = lttng_userspace_probe_location_tracepoint_get_probe_name(location);
306 provider_name = lttng_userspace_probe_location_tracepoint_get_provider_name(location);
307 binary_path = realpath(lttng_userspace_probe_location_tracepoint_get_binary_path(location), NULL);
308 MSG("%sBinary path: %s", indent8, binary_path ? binary_path : "NULL");
309 MSG("%sTracepoint: %s:%s", indent8, provider_name ? provider_name : "NULL", probe_name ? probe_name : "NULL");
310 switch (lookup_type) {
311 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_TRACEPOINT_SDT:
312 MSG("%sLookup method: SDT", indent8);
313 break;
314 default:
315 MSG("%sLookup method: INVALID LOOKUP TYPE ENCOUNTERED", indent8);
316 break;
317 }
318
319 free(binary_path);
320 break;
321 }
322 default:
323 ERR("Invalid probe type encountered");
324 }
325 }
326
327 /*
328 * Pretty print single event.
329 */
330 static void print_events(struct lttng_event *event)
331 {
332 int ret;
333 const char *filter_str;
334 char *filter_msg = NULL;
335 char *exclusion_msg = NULL;
336
337 ret = lttng_event_get_filter_expression(event, &filter_str);
338
339 if (ret) {
340 filter_msg = strdup(" [failed to retrieve filter]");
341 } else if (filter_str) {
342 if (asprintf(&filter_msg, " [filter: '%s']", filter_str) == -1) {
343 filter_msg = NULL;
344 }
345 }
346
347 exclusion_msg = get_exclusion_names_msg(event);
348 if (!exclusion_msg) {
349 exclusion_msg = strdup(" [failed to retrieve exclusions]");
350 }
351
352 switch (event->type) {
353 case LTTNG_EVENT_TRACEPOINT:
354 {
355 if (event->loglevel != -1) {
356 MSG("%s%s (loglevel%s %s (%d)) (type: tracepoint)%s%s%s",
357 indent6, event->name,
358 logleveltype_string(
359 event->loglevel_type),
360 mi_lttng_loglevel_string(
361 event->loglevel,
362 the_handle->domain.type),
363 event->loglevel,
364 enabled_string(event->enabled),
365 safe_string(exclusion_msg),
366 safe_string(filter_msg));
367 } else {
368 MSG("%s%s (type: tracepoint)%s%s%s",
369 indent6,
370 event->name,
371 enabled_string(event->enabled),
372 safe_string(exclusion_msg),
373 safe_string(filter_msg));
374 }
375 break;
376 }
377 case LTTNG_EVENT_FUNCTION:
378 MSG("%s%s (type: function)%s%s", indent6,
379 event->name, enabled_string(event->enabled),
380 safe_string(filter_msg));
381 if (event->attr.probe.addr != 0) {
382 MSG("%saddr: 0x%" PRIx64, indent8, event->attr.probe.addr);
383 } else {
384 MSG("%soffset: 0x%" PRIx64, indent8, event->attr.probe.offset);
385 MSG("%ssymbol: %s", indent8, event->attr.probe.symbol_name);
386 }
387 break;
388 case LTTNG_EVENT_PROBE:
389 MSG("%s%s (type: probe)%s%s", indent6,
390 event->name, enabled_string(event->enabled),
391 safe_string(filter_msg));
392 if (event->attr.probe.addr != 0) {
393 MSG("%saddr: 0x%" PRIx64, indent8, event->attr.probe.addr);
394 } else {
395 MSG("%soffset: 0x%" PRIx64, indent8, event->attr.probe.offset);
396 MSG("%ssymbol: %s", indent8, event->attr.probe.symbol_name);
397 }
398 break;
399 case LTTNG_EVENT_USERSPACE_PROBE:
400 print_userspace_probe_location(event);
401 break;
402 case LTTNG_EVENT_FUNCTION_ENTRY:
403 MSG("%s%s (type: function)%s%s", indent6,
404 event->name, enabled_string(event->enabled),
405 safe_string(filter_msg));
406 MSG("%ssymbol: \"%s\"", indent8, event->attr.ftrace.symbol_name);
407 break;
408 case LTTNG_EVENT_SYSCALL:
409 MSG("%s%s%s%s%s%s", indent6, event->name,
410 (opt_syscall ? "" : " (type:syscall)"),
411 enabled_string(event->enabled),
412 bitness_event(event->flags),
413 safe_string(filter_msg));
414 break;
415 case LTTNG_EVENT_NOOP:
416 MSG("%s (type: noop)%s%s", indent6,
417 enabled_string(event->enabled),
418 safe_string(filter_msg));
419 break;
420 case LTTNG_EVENT_ALL:
421 /* Fall-through. */
422 default:
423 /* We should never have "all" events in list. */
424 abort();
425 break;
426 }
427
428 free(filter_msg);
429 free(exclusion_msg);
430 }
431
432 static const char *field_type(struct lttng_event_field *field)
433 {
434 switch(field->type) {
435 case LTTNG_EVENT_FIELD_INTEGER:
436 return "integer";
437 case LTTNG_EVENT_FIELD_ENUM:
438 return "enum";
439 case LTTNG_EVENT_FIELD_FLOAT:
440 return "float";
441 case LTTNG_EVENT_FIELD_STRING:
442 return "string";
443 case LTTNG_EVENT_FIELD_OTHER:
444 default: /* fall-through */
445 return "unknown";
446 }
447 }
448
449 /*
450 * Pretty print single event fields.
451 */
452 static void print_event_field(struct lttng_event_field *field)
453 {
454 if (!field->field_name[0]) {
455 return;
456 }
457 MSG("%sfield: %s (%s)%s", indent8, field->field_name,
458 field_type(field), field->nowrite ? " [no write]" : "");
459 }
460
461 /*
462 * Machine interface
463 * Jul and ust event listing
464 */
465 static int mi_list_agent_ust_events(struct lttng_event *events, int count,
466 struct lttng_domain *domain)
467 {
468 int ret, i;
469 pid_t cur_pid = 0;
470 char *cmdline = NULL;
471 int pid_element_open = 0;
472
473 /* Open domains element */
474 ret = mi_lttng_domains_open(the_writer);
475 if (ret) {
476 goto end;
477 }
478
479 /* Write domain */
480 ret = mi_lttng_domain(the_writer, domain, 1);
481 if (ret) {
482 goto end;
483 }
484
485 /* Open pids element element */
486 ret = mi_lttng_pids_open(the_writer);
487 if (ret) {
488 goto end;
489 }
490
491 for (i = 0; i < count; i++) {
492 if (cur_pid != events[i].pid) {
493 if (pid_element_open) {
494 /* Close the previous events and pid element */
495 ret = mi_lttng_close_multi_element(
496 the_writer, 2);
497 if (ret) {
498 goto end;
499 }
500 pid_element_open = 0;
501 }
502
503 cur_pid = events[i].pid;
504 cmdline = get_cmdline_by_pid(cur_pid);
505 if (!cmdline) {
506 ret = CMD_ERROR;
507 goto end;
508 }
509
510 if (!pid_element_open) {
511 /* Open and write a pid element */
512 ret = mi_lttng_pid(the_writer, cur_pid, cmdline,
513 1);
514 if (ret) {
515 goto error;
516 }
517
518 /* Open events element */
519 ret = mi_lttng_events_open(the_writer);
520 if (ret) {
521 goto error;
522 }
523
524 pid_element_open = 1;
525 }
526 free(cmdline);
527 }
528
529 /* Write an event */
530 ret = mi_lttng_event(the_writer, &events[i], 0,
531 the_handle->domain.type);
532 if (ret) {
533 goto end;
534 }
535 }
536
537 /* Close pids */
538 ret = mi_lttng_writer_close_element(the_writer);
539 if (ret) {
540 goto end;
541 }
542
543 /* Close domain, domains */
544 ret = mi_lttng_close_multi_element(the_writer, 2);
545 end:
546 return ret;
547 error:
548 free(cmdline);
549 return ret;
550 }
551
552 static int list_agent_events(void)
553 {
554 int i, size, ret = CMD_SUCCESS;
555 struct lttng_domain domain;
556 struct lttng_handle *handle = NULL;
557 struct lttng_event *event_list = NULL;
558 pid_t cur_pid = 0;
559 char *cmdline = NULL;
560 const char *agent_domain_str;
561
562 memset(&domain, 0, sizeof(domain));
563 if (opt_jul) {
564 domain.type = LTTNG_DOMAIN_JUL;
565 } else if (opt_log4j) {
566 domain.type = LTTNG_DOMAIN_LOG4J;
567 } else if (opt_python) {
568 domain.type = LTTNG_DOMAIN_PYTHON;
569 } else {
570 ERR("Invalid agent domain selected.");
571 ret = CMD_ERROR;
572 goto error;
573 }
574
575 agent_domain_str = lttng_domain_type_str(domain.type);
576
577 DBG("Getting %s tracing events", agent_domain_str);
578
579 handle = lttng_create_handle(NULL, &domain);
580 if (handle == NULL) {
581 ret = CMD_ERROR;
582 goto end;
583 }
584
585 size = lttng_list_tracepoints(handle, &event_list);
586 if (size < 0) {
587 ERR("Unable to list %s events: %s", agent_domain_str,
588 lttng_strerror(size));
589 ret = CMD_ERROR;
590 goto end;
591 }
592
593 if (lttng_opt_mi) {
594 /* Mi print */
595 ret = mi_list_agent_ust_events(event_list, size, &domain);
596 if (ret) {
597 ret = CMD_ERROR;
598 goto error;
599 }
600 } else {
601 /* Pretty print */
602 MSG("%s events (Logger name):\n-------------------------",
603 agent_domain_str);
604
605 if (size == 0) {
606 MSG("None");
607 }
608
609 for (i = 0; i < size; i++) {
610 if (cur_pid != event_list[i].pid) {
611 cur_pid = event_list[i].pid;
612 cmdline = get_cmdline_by_pid(cur_pid);
613 if (cmdline == NULL) {
614 ret = CMD_ERROR;
615 goto error;
616 }
617 MSG("\nPID: %d - Name: %s", cur_pid, cmdline);
618 free(cmdline);
619 }
620 MSG("%s- %s", indent6, event_list[i].name);
621 }
622
623 MSG("");
624 }
625
626 error:
627 free(event_list);
628 end:
629 lttng_destroy_handle(handle);
630 return ret;
631 }
632
633 /*
634 * Ask session daemon for all user space tracepoints available.
635 */
636 static int list_ust_events(void)
637 {
638 int i, size, ret = CMD_SUCCESS;
639 struct lttng_domain domain;
640 struct lttng_handle *handle;
641 struct lttng_event *event_list = NULL;
642 pid_t cur_pid = 0;
643 char *cmdline = NULL;
644
645 memset(&domain, 0, sizeof(domain));
646
647 DBG("Getting UST tracing events");
648
649 domain.type = LTTNG_DOMAIN_UST;
650
651 handle = lttng_create_handle(NULL, &domain);
652 if (handle == NULL) {
653 ret = CMD_ERROR;
654 goto end;
655 }
656
657 size = lttng_list_tracepoints(handle, &event_list);
658 if (size < 0) {
659 ERR("Unable to list UST events: %s", lttng_strerror(size));
660 ret = CMD_ERROR;
661 goto error;
662 }
663
664 if (lttng_opt_mi) {
665 /* Mi print */
666 ret = mi_list_agent_ust_events(event_list, size, &domain);
667 } else {
668 /* Pretty print */
669 MSG("UST events:\n-------------");
670
671 if (size == 0) {
672 MSG("None");
673 }
674
675 for (i = 0; i < size; i++) {
676 if (cur_pid != event_list[i].pid) {
677 cur_pid = event_list[i].pid;
678 cmdline = get_cmdline_by_pid(cur_pid);
679 if (cmdline == NULL) {
680 ret = CMD_ERROR;
681 goto error;
682 }
683 MSG("\nPID: %d - Name: %s", cur_pid, cmdline);
684 free(cmdline);
685 }
686 print_events(&event_list[i]);
687 }
688
689 MSG("");
690 }
691
692 error:
693 free(event_list);
694 end:
695 lttng_destroy_handle(handle);
696 return ret;
697 }
698
699 /*
700 * Machine interface
701 * List all ust event with their fields
702 */
703 static int mi_list_ust_event_fields(struct lttng_event_field *fields, int count,
704 struct lttng_domain *domain)
705 {
706 int ret, i;
707 pid_t cur_pid = 0;
708 char *cmdline = NULL;
709 int pid_element_open = 0;
710 int event_element_open = 0;
711 struct lttng_event cur_event;
712
713 memset(&cur_event, 0, sizeof(cur_event));
714
715 /* Open domains element */
716 ret = mi_lttng_domains_open(the_writer);
717 if (ret) {
718 goto end;
719 }
720
721 /* Write domain */
722 ret = mi_lttng_domain(the_writer, domain, 1);
723 if (ret) {
724 goto end;
725 }
726
727 /* Open pids element */
728 ret = mi_lttng_pids_open(the_writer);
729 if (ret) {
730 goto end;
731 }
732
733 for (i = 0; i < count; i++) {
734 if (cur_pid != fields[i].event.pid) {
735 if (pid_element_open) {
736 if (event_element_open) {
737 /* Close the previous field element and event. */
738 ret = mi_lttng_close_multi_element(
739 the_writer, 2);
740 if (ret) {
741 goto end;
742 }
743 event_element_open = 0;
744 }
745 /* Close the previous events, pid element */
746 ret = mi_lttng_close_multi_element(
747 the_writer, 2);
748 if (ret) {
749 goto end;
750 }
751 pid_element_open = 0;
752 }
753
754 cur_pid = fields[i].event.pid;
755 cmdline = get_cmdline_by_pid(cur_pid);
756 if (!pid_element_open) {
757 /* Open and write a pid element */
758 ret = mi_lttng_pid(the_writer, cur_pid, cmdline,
759 1);
760 if (ret) {
761 goto error;
762 }
763
764 /* Open events element */
765 ret = mi_lttng_events_open(the_writer);
766 if (ret) {
767 goto error;
768 }
769 pid_element_open = 1;
770 }
771 free(cmdline);
772 /* Wipe current event since we are about to print a new PID. */
773 memset(&cur_event, 0, sizeof(cur_event));
774 }
775
776 if (strcmp(cur_event.name, fields[i].event.name) != 0) {
777 if (event_element_open) {
778 /* Close the previous fields element and the previous event */
779 ret = mi_lttng_close_multi_element(
780 the_writer, 2);
781 if (ret) {
782 goto end;
783 }
784 event_element_open = 0;
785 }
786
787 memcpy(&cur_event, &fields[i].event,
788 sizeof(cur_event));
789
790 if (!event_element_open) {
791 /* Open and write the event */
792 ret = mi_lttng_event(the_writer, &cur_event, 1,
793 the_handle->domain.type);
794 if (ret) {
795 goto end;
796 }
797
798 /* Open a fields element */
799 ret = mi_lttng_event_fields_open(the_writer);
800 if (ret) {
801 goto end;
802 }
803 event_element_open = 1;
804 }
805 }
806
807 /* Print the event_field */
808 ret = mi_lttng_event_field(the_writer, &fields[i]);
809 if (ret) {
810 goto end;
811 }
812 }
813
814 /* Close pids, domain, domains */
815 ret = mi_lttng_close_multi_element(the_writer, 3);
816 end:
817 return ret;
818 error:
819 free(cmdline);
820 return ret;
821 }
822
823 /*
824 * Ask session daemon for all user space tracepoint fields available.
825 */
826 static int list_ust_event_fields(void)
827 {
828 int i, size, ret = CMD_SUCCESS;
829 struct lttng_domain domain;
830 struct lttng_handle *handle;
831 struct lttng_event_field *event_field_list;
832 pid_t cur_pid = 0;
833 char *cmdline = NULL;
834
835 struct lttng_event cur_event;
836
837 memset(&domain, 0, sizeof(domain));
838 memset(&cur_event, 0, sizeof(cur_event));
839
840 DBG("Getting UST tracing event fields");
841
842 domain.type = LTTNG_DOMAIN_UST;
843
844 handle = lttng_create_handle(NULL, &domain);
845 if (handle == NULL) {
846 ret = CMD_ERROR;
847 goto end;
848 }
849
850 size = lttng_list_tracepoint_fields(handle, &event_field_list);
851 if (size < 0) {
852 ERR("Unable to list UST event fields: %s", lttng_strerror(size));
853 ret = CMD_ERROR;
854 goto end;
855 }
856
857 if (lttng_opt_mi) {
858 /* Mi print */
859 ret = mi_list_ust_event_fields(event_field_list, size, &domain);
860 if (ret) {
861 ret = CMD_ERROR;
862 goto error;
863 }
864 } else {
865 /* Pretty print */
866 MSG("UST events:\n-------------");
867
868 if (size == 0) {
869 MSG("None");
870 }
871
872 for (i = 0; i < size; i++) {
873 if (cur_pid != event_field_list[i].event.pid) {
874 cur_pid = event_field_list[i].event.pid;
875 cmdline = get_cmdline_by_pid(cur_pid);
876 if (cmdline == NULL) {
877 ret = CMD_ERROR;
878 goto error;
879 }
880 MSG("\nPID: %d - Name: %s", cur_pid, cmdline);
881 free(cmdline);
882 /* Wipe current event since we are about to print a new PID. */
883 memset(&cur_event, 0, sizeof(cur_event));
884 }
885 if (strcmp(cur_event.name, event_field_list[i].event.name) != 0) {
886 print_events(&event_field_list[i].event);
887 memcpy(&cur_event, &event_field_list[i].event,
888 sizeof(cur_event));
889 }
890 print_event_field(&event_field_list[i]);
891 }
892
893 MSG("");
894 }
895
896 error:
897 free(event_field_list);
898 end:
899 lttng_destroy_handle(handle);
900 return ret;
901 }
902
903 /*
904 * Machine interface
905 * Print a list of kernel events
906 */
907 static int mi_list_kernel_events(struct lttng_event *events, int count,
908 struct lttng_domain *domain)
909 {
910 int ret, i;
911
912 /* Open domains element */
913 ret = mi_lttng_domains_open(the_writer);
914 if (ret) {
915 goto end;
916 }
917
918 /* Write domain */
919 ret = mi_lttng_domain(the_writer, domain, 1);
920 if (ret) {
921 goto end;
922 }
923
924 /* Open events */
925 ret = mi_lttng_events_open(the_writer);
926 if (ret) {
927 goto end;
928 }
929
930 for (i = 0; i < count; i++) {
931 ret = mi_lttng_event(the_writer, &events[i], 0,
932 the_handle->domain.type);
933 if (ret) {
934 goto end;
935 }
936 }
937
938 /* close events, domain and domains */
939 ret = mi_lttng_close_multi_element(the_writer, 3);
940 if (ret) {
941 goto end;
942 }
943
944 end:
945 return ret;
946 }
947
948 /*
949 * Ask for all trace events in the kernel
950 */
951 static int list_kernel_events(void)
952 {
953 int i, size, ret = CMD_SUCCESS;
954 struct lttng_domain domain;
955 struct lttng_handle *handle;
956 struct lttng_event *event_list;
957
958 memset(&domain, 0, sizeof(domain));
959
960 DBG("Getting kernel tracing events");
961
962 domain.type = LTTNG_DOMAIN_KERNEL;
963
964 handle = lttng_create_handle(NULL, &domain);
965 if (handle == NULL) {
966 ret = CMD_ERROR;
967 goto error;
968 }
969
970 size = lttng_list_tracepoints(handle, &event_list);
971 if (size < 0) {
972 ERR("Unable to list kernel events: %s", lttng_strerror(size));
973 lttng_destroy_handle(handle);
974 return CMD_ERROR;
975 }
976
977 if (lttng_opt_mi) {
978 /* Mi print */
979 ret = mi_list_kernel_events(event_list, size, &domain);
980 if (ret) {
981 ret = CMD_ERROR;
982 goto end;
983 }
984 } else {
985 MSG("Kernel events:\n-------------");
986
987 for (i = 0; i < size; i++) {
988 print_events(&event_list[i]);
989 }
990
991 MSG("");
992 }
993
994 end:
995 free(event_list);
996
997 lttng_destroy_handle(handle);
998 return ret;
999
1000 error:
1001 lttng_destroy_handle(handle);
1002 return ret;
1003 }
1004
1005 /*
1006 * Machine interface
1007 * Print a list of system calls.
1008 */
1009 static int mi_list_syscalls(struct lttng_event *events, int count)
1010 {
1011 int ret, i;
1012
1013 /* Open events */
1014 ret = mi_lttng_events_open(the_writer);
1015 if (ret) {
1016 goto end;
1017 }
1018
1019 for (i = 0; i < count; i++) {
1020 ret = mi_lttng_event(the_writer, &events[i], 0,
1021 the_handle->domain.type);
1022 if (ret) {
1023 goto end;
1024 }
1025 }
1026
1027 /* Close events. */
1028 ret = mi_lttng_writer_close_element(the_writer);
1029 if (ret) {
1030 goto end;
1031 }
1032
1033 end:
1034 return ret;
1035 }
1036
1037 /*
1038 * Ask for kernel system calls.
1039 */
1040 static int list_syscalls(void)
1041 {
1042 int i, size, ret = CMD_SUCCESS;
1043 struct lttng_event *event_list;
1044
1045 DBG("Getting kernel system call events");
1046
1047 size = lttng_list_syscalls(&event_list);
1048 if (size < 0) {
1049 ERR("Unable to list system calls: %s", lttng_strerror(size));
1050 ret = CMD_ERROR;
1051 goto error;
1052 }
1053
1054 if (lttng_opt_mi) {
1055 /* Mi print */
1056 ret = mi_list_syscalls(event_list, size);
1057 if (ret) {
1058 ret = CMD_ERROR;
1059 goto end;
1060 }
1061 } else {
1062 MSG("System calls:\n-------------");
1063
1064 for (i = 0; i < size; i++) {
1065 print_events(&event_list[i]);
1066 }
1067
1068 MSG("");
1069 }
1070
1071 end:
1072 free(event_list);
1073 return ret;
1074
1075 error:
1076 return ret;
1077 }
1078
1079 /*
1080 * Machine Interface
1081 * Print a list of agent events
1082 */
1083 static int mi_list_session_agent_events(struct lttng_event *events, int count)
1084 {
1085 int ret, i;
1086
1087 /* Open events element */
1088 ret = mi_lttng_events_open(the_writer);
1089 if (ret) {
1090 goto end;
1091 }
1092
1093 for (i = 0; i < count; i++) {
1094 ret = mi_lttng_event(the_writer, &events[i], 0,
1095 the_handle->domain.type);
1096 if (ret) {
1097 goto end;
1098 }
1099 }
1100
1101 /* Close events element */
1102 ret = mi_lttng_writer_close_element(the_writer);
1103
1104 end:
1105 return ret;
1106 }
1107
1108 /*
1109 * List agent events for a specific session using the handle.
1110 *
1111 * Return CMD_SUCCESS on success else a negative value.
1112 */
1113 static int list_session_agent_events(void)
1114 {
1115 int ret = CMD_SUCCESS, count, i;
1116 struct lttng_event *events = NULL;
1117
1118 count = lttng_list_events(the_handle, "", &events);
1119 if (count < 0) {
1120 ret = CMD_ERROR;
1121 ERR("%s", lttng_strerror(count));
1122 goto error;
1123 }
1124
1125 if (lttng_opt_mi) {
1126 /* Mi print */
1127 ret = mi_list_session_agent_events(events, count);
1128 if (ret) {
1129 ret = CMD_ERROR;
1130 goto end;
1131 }
1132 } else {
1133 /* Pretty print */
1134 MSG("Events (Logger name):\n---------------------");
1135 if (count == 0) {
1136 MSG("%sNone\n", indent6);
1137 goto end;
1138 }
1139
1140 for (i = 0; i < count; i++) {
1141 const char *filter_str;
1142 char *filter_msg = NULL;
1143 struct lttng_event *event = &events[i];
1144
1145 ret = lttng_event_get_filter_expression(event,
1146 &filter_str);
1147 if (ret) {
1148 filter_msg = strdup(" [failed to retrieve filter]");
1149 } else if (filter_str) {
1150 if (asprintf(&filter_msg, " [filter: '%s']", filter_str) == -1) {
1151 filter_msg = NULL;
1152 }
1153 }
1154
1155 if (event->loglevel_type !=
1156 LTTNG_EVENT_LOGLEVEL_ALL) {
1157 MSG("%s- %s%s (loglevel%s %s)%s", indent4,
1158 event->name,
1159 enabled_string(event->enabled),
1160 logleveltype_string(
1161 event->loglevel_type),
1162 mi_lttng_loglevel_string(
1163 event->loglevel,
1164 the_handle->domain
1165 .type),
1166 safe_string(filter_msg));
1167 } else {
1168 MSG("%s- %s%s%s", indent4, event->name,
1169 enabled_string(event->enabled),
1170 safe_string(filter_msg));
1171 }
1172 free(filter_msg);
1173 }
1174
1175 MSG("");
1176 }
1177
1178 end:
1179 free(events);
1180 error:
1181 return ret;
1182 }
1183
1184 /*
1185 * Machine interface
1186 * print a list of event
1187 */
1188 static int mi_list_events(struct lttng_event *events, int count)
1189 {
1190 int ret, i;
1191
1192 /* Open events element */
1193 ret = mi_lttng_events_open(the_writer);
1194 if (ret) {
1195 goto end;
1196 }
1197
1198 for (i = 0; i < count; i++) {
1199 ret = mi_lttng_event(the_writer, &events[i], 0,
1200 the_handle->domain.type);
1201 if (ret) {
1202 goto end;
1203 }
1204 }
1205
1206 /* Close events element */
1207 ret = mi_lttng_writer_close_element(the_writer);
1208
1209 end:
1210 return ret;
1211 }
1212
1213 /*
1214 * List events of channel of session and domain.
1215 */
1216 static int list_events(const char *channel_name)
1217 {
1218 int ret = CMD_SUCCESS, count, i;
1219 struct lttng_event *events = NULL;
1220
1221 count = lttng_list_events(the_handle, channel_name, &events);
1222 if (count < 0) {
1223 ret = CMD_ERROR;
1224 ERR("%s", lttng_strerror(count));
1225 goto error;
1226 }
1227
1228 if (lttng_opt_mi) {
1229 /* Mi print */
1230 ret = mi_list_events(events, count);
1231 if (ret) {
1232 ret = CMD_ERROR;
1233 goto end;
1234 }
1235 } else {
1236 /* Pretty print */
1237 MSG("\n%sRecording event rules:", indent4);
1238 if (count == 0) {
1239 MSG("%sNone\n", indent6);
1240 goto end;
1241 }
1242
1243 for (i = 0; i < count; i++) {
1244 print_events(&events[i]);
1245 }
1246
1247 MSG("");
1248 }
1249 end:
1250 free(events);
1251 error:
1252 return ret;
1253 }
1254
1255 static
1256 void print_timer(const char *timer_name, uint32_t space_count, int64_t value)
1257 {
1258 uint32_t i;
1259
1260 _MSG("%s%s:", indent6, timer_name);
1261 for (i = 0; i < space_count; i++) {
1262 _MSG(" ");
1263 }
1264
1265 if (value) {
1266 MSG("%" PRId64 " %s", value, USEC_UNIT);
1267 } else {
1268 MSG("inactive");
1269 }
1270 }
1271
1272 /*
1273 * Pretty print channel
1274 */
1275 static void print_channel(struct lttng_channel *channel)
1276 {
1277 int ret;
1278 uint64_t discarded_events, lost_packets, monitor_timer_interval;
1279 int64_t blocking_timeout;
1280
1281 ret = lttng_channel_get_discarded_event_count(channel,
1282 &discarded_events);
1283 if (ret) {
1284 ERR("Failed to retrieve discarded event count of channel");
1285 return;
1286 }
1287
1288 ret = lttng_channel_get_lost_packet_count(channel,
1289 &lost_packets);
1290 if (ret) {
1291 ERR("Failed to retrieve lost packet count of channel");
1292 return;
1293 }
1294
1295 ret = lttng_channel_get_monitor_timer_interval(channel,
1296 &monitor_timer_interval);
1297 if (ret) {
1298 ERR("Failed to retrieve monitor interval of channel");
1299 return;
1300 }
1301
1302 ret = lttng_channel_get_blocking_timeout(channel,
1303 &blocking_timeout);
1304 if (ret) {
1305 ERR("Failed to retrieve blocking timeout of channel");
1306 return;
1307 }
1308
1309 MSG("- %s:%s\n", channel->name, enabled_string(channel->enabled));
1310 MSG("%sAttributes:", indent4);
1311 MSG("%sEvent-loss mode: %s", indent6, channel->attr.overwrite ? "overwrite" : "discard");
1312 MSG("%sSub-buffer size: %" PRIu64 " bytes", indent6, channel->attr.subbuf_size);
1313 MSG("%sSub-buffer count: %" PRIu64, indent6, channel->attr.num_subbuf);
1314
1315 print_timer("Switch timer", 5, channel->attr.switch_timer_interval);
1316 print_timer("Read timer", 7, channel->attr.read_timer_interval);
1317 print_timer("Monitor timer", 4, monitor_timer_interval);
1318
1319 if (!channel->attr.overwrite) {
1320 if (blocking_timeout == -1) {
1321 MSG("%sBlocking timeout: infinite", indent6);
1322 } else {
1323 MSG("%sBlocking timeout: %" PRId64 " %s", indent6,
1324 blocking_timeout, USEC_UNIT);
1325 }
1326 }
1327
1328 MSG("%sTrace file count: %" PRIu64 " per stream", indent6,
1329 channel->attr.tracefile_count == 0 ?
1330 1 : channel->attr.tracefile_count);
1331 if (channel->attr.tracefile_size != 0 ) {
1332 MSG("%sTrace file size: %" PRIu64 " bytes", indent6,
1333 channel->attr.tracefile_size);
1334 } else {
1335 MSG("%sTrace file size: %s", indent6, "unlimited");
1336 }
1337 switch (channel->attr.output) {
1338 case LTTNG_EVENT_SPLICE:
1339 MSG("%sOutput mode: splice", indent6);
1340 break;
1341 case LTTNG_EVENT_MMAP:
1342 MSG("%sOutput mode: mmap", indent6);
1343 break;
1344 }
1345
1346 MSG("\n%sStatistics:", indent4);
1347 if (the_listed_session.snapshot_mode) {
1348 /*
1349 * The lost packet count is omitted for sessions in snapshot
1350 * mode as it is misleading: it would indicate the number of
1351 * packets that the consumer could not extract during the
1352 * course of recording the snapshot. It does not have the
1353 * same meaning as the "regular" lost packet count that
1354 * would result from the consumer not keeping up with
1355 * event production in an overwrite-mode channel.
1356 *
1357 * A more interesting statistic would be the number of
1358 * packets lost between the first and last extracted
1359 * packets of a given snapshot (which prevents most analyses).
1360 */
1361 MSG("%sNone", indent6);
1362 goto skip_stats_printing;
1363 }
1364
1365 if (!channel->attr.overwrite) {
1366 MSG("%sDiscarded events: %" PRIu64, indent6, discarded_events);
1367 } else {
1368 MSG("%sLost packets: %" PRIu64, indent6, lost_packets);
1369 }
1370 skip_stats_printing:
1371 return;
1372 }
1373
1374 /*
1375 * Machine interface
1376 * Print a list of channel
1377 *
1378 */
1379 static int mi_list_channels(struct lttng_channel *channels, int count,
1380 const char *channel_name)
1381 {
1382 int i, ret;
1383 unsigned int chan_found = 0;
1384
1385 /* Open channels element */
1386 ret = mi_lttng_channels_open(the_writer);
1387 if (ret) {
1388 goto error;
1389 }
1390
1391 for (i = 0; i < count; i++) {
1392 if (channel_name != NULL) {
1393 if (strncmp(channels[i].name, channel_name, NAME_MAX) == 0) {
1394 chan_found = 1;
1395 } else {
1396 continue;
1397 }
1398 }
1399
1400 /* Write channel element and leave it open */
1401 ret = mi_lttng_channel(the_writer, &channels[i], 1);
1402 if (ret) {
1403 goto error;
1404 }
1405
1406 /* Listing events per channel */
1407 ret = list_events(channels[i].name);
1408 if (ret) {
1409 goto error;
1410 }
1411
1412 /* Closing the channel element we opened earlier */
1413 ret = mi_lttng_writer_close_element(the_writer);
1414 if (ret) {
1415 goto error;
1416 }
1417
1418 if (chan_found) {
1419 break;
1420 }
1421 }
1422
1423 /* Close channels element */
1424 ret = mi_lttng_writer_close_element(the_writer);
1425 if (ret) {
1426 goto error;
1427 }
1428
1429 error:
1430 return ret;
1431 }
1432
1433 /*
1434 * List channel(s) of session and domain.
1435 *
1436 * If channel_name is NULL, all channels are listed.
1437 */
1438 static int list_channels(const char *channel_name)
1439 {
1440 int count, i, ret = CMD_SUCCESS;
1441 unsigned int chan_found = 0;
1442 struct lttng_channel *channels = NULL;
1443
1444 DBG("Listing channel(s) (%s)", channel_name ? : "<all>");
1445
1446 count = lttng_list_channels(the_handle, &channels);
1447 if (count < 0) {
1448 switch (-count) {
1449 case LTTNG_ERR_KERN_CHAN_NOT_FOUND:
1450 if (lttng_opt_mi) {
1451 /* When printing mi this is not an error
1452 * but an empty channels element */
1453 count = 0;
1454 } else {
1455 ret = CMD_SUCCESS;
1456 goto error_channels;
1457 }
1458 break;
1459 default:
1460 /* We had a real error */
1461 ret = CMD_ERROR;
1462 ERR("%s", lttng_strerror(count));
1463 goto error_channels;
1464 break;
1465 }
1466 }
1467
1468 if (lttng_opt_mi) {
1469 /* Mi print */
1470 ret = mi_list_channels(channels, count, channel_name);
1471 if (ret) {
1472 ret = CMD_ERROR;
1473 goto error;
1474 }
1475 } else {
1476 /* Pretty print */
1477 if (count) {
1478 MSG("Channels:\n-------------");
1479 }
1480
1481 for (i = 0; i < count; i++) {
1482 if (channel_name != NULL) {
1483 if (strncmp(channels[i].name, channel_name, NAME_MAX) == 0) {
1484 chan_found = 1;
1485 } else {
1486 continue;
1487 }
1488 }
1489 print_channel(&channels[i]);
1490
1491 /* Listing events per channel */
1492 ret = list_events(channels[i].name);
1493 if (ret) {
1494 goto error;
1495 }
1496
1497 if (chan_found) {
1498 break;
1499 }
1500 }
1501
1502 if (!chan_found && channel_name != NULL) {
1503 ret = CMD_ERROR;
1504 ERR("Channel %s not found", channel_name);
1505 goto error;
1506 }
1507 }
1508 error:
1509 free(channels);
1510
1511 error_channels:
1512 return ret;
1513 }
1514
1515 static const char *get_capitalized_process_attr_str(enum lttng_process_attr process_attr)
1516 {
1517 switch (process_attr) {
1518 case LTTNG_PROCESS_ATTR_PROCESS_ID:
1519 return "Process ID";
1520 case LTTNG_PROCESS_ATTR_VIRTUAL_PROCESS_ID:
1521 return "Virtual process ID";
1522 case LTTNG_PROCESS_ATTR_USER_ID:
1523 return "User ID";
1524 case LTTNG_PROCESS_ATTR_VIRTUAL_USER_ID:
1525 return "Virtual user ID";
1526 case LTTNG_PROCESS_ATTR_GROUP_ID:
1527 return "Group ID";
1528 case LTTNG_PROCESS_ATTR_VIRTUAL_GROUP_ID:
1529 return "Virtual group ID";
1530 default:
1531 return "Unknown";
1532 }
1533 return NULL;
1534 }
1535
1536 static int handle_process_attr_status(enum lttng_process_attr process_attr,
1537 enum lttng_process_attr_tracker_handle_status status)
1538 {
1539 int ret = CMD_SUCCESS;
1540
1541 switch (status) {
1542 case LTTNG_PROCESS_ATTR_TRACKER_HANDLE_STATUS_INVALID_TRACKING_POLICY:
1543 case LTTNG_PROCESS_ATTR_TRACKER_HANDLE_STATUS_OK:
1544 /* Carry on. */
1545 break;
1546 case LTTNG_PROCESS_ATTR_TRACKER_HANDLE_STATUS_COMMUNICATION_ERROR:
1547 ERR("Communication occurred while fetching %s tracker",
1548 lttng_process_attr_to_string(process_attr));
1549 ret = CMD_ERROR;
1550 break;
1551 case LTTNG_PROCESS_ATTR_TRACKER_HANDLE_STATUS_SESSION_DOES_NOT_EXIST:
1552 ERR("Failed to get the inclusion set of the %s tracker: session `%s` no longer exists",
1553 lttng_process_attr_to_string(process_attr),
1554 the_handle->session_name);
1555 ret = CMD_ERROR;
1556 break;
1557 default:
1558 ERR("Unknown error occurred while fetching the inclusion set of the %s tracker",
1559 lttng_process_attr_to_string(process_attr));
1560 ret = CMD_ERROR;
1561 break;
1562 }
1563
1564 return ret;
1565 }
1566
1567 static int mi_output_empty_tracker(enum lttng_process_attr process_attr)
1568 {
1569 int ret;
1570
1571 ret = mi_lttng_process_attribute_tracker_open(the_writer, process_attr);
1572 if (ret) {
1573 goto end;
1574 }
1575
1576 ret = mi_lttng_close_multi_element(the_writer, 2);
1577 end:
1578 return ret;
1579 }
1580
1581 static inline bool is_value_type_name(
1582 enum lttng_process_attr_value_type value_type)
1583 {
1584 return value_type == LTTNG_PROCESS_ATTR_VALUE_TYPE_USER_NAME ||
1585 value_type == LTTNG_PROCESS_ATTR_VALUE_TYPE_GROUP_NAME;
1586 }
1587
1588 /*
1589 * List a process attribute tracker for a session and domain tuple.
1590 */
1591 static int list_process_attr_tracker(enum lttng_process_attr process_attr)
1592 {
1593 int ret = 0;
1594 unsigned int count, i;
1595 enum lttng_tracking_policy policy;
1596 enum lttng_error_code ret_code;
1597 enum lttng_process_attr_tracker_handle_status handle_status;
1598 enum lttng_process_attr_values_status values_status;
1599 const struct lttng_process_attr_values *values;
1600 struct lttng_process_attr_tracker_handle *tracker_handle = NULL;
1601
1602 ret_code = lttng_session_get_tracker_handle(the_handle->session_name,
1603 the_handle->domain.type, process_attr, &tracker_handle);
1604 if (ret_code != LTTNG_OK) {
1605 ERR("Failed to get process attribute tracker handle: %s",
1606 lttng_strerror(ret_code));
1607 ret = CMD_ERROR;
1608 goto end;
1609 }
1610
1611 handle_status = lttng_process_attr_tracker_handle_get_inclusion_set(
1612 tracker_handle, &values);
1613 ret = handle_process_attr_status(process_attr, handle_status);
1614 if (ret != CMD_SUCCESS) {
1615 goto end;
1616 }
1617
1618 handle_status = lttng_process_attr_tracker_handle_get_tracking_policy(
1619 tracker_handle, &policy);
1620 ret = handle_process_attr_status(process_attr, handle_status);
1621 if (ret != CMD_SUCCESS) {
1622 goto end;
1623 }
1624
1625 {
1626 char *process_attr_name;
1627 const int print_ret = asprintf(&process_attr_name, "%ss:",
1628 get_capitalized_process_attr_str(process_attr));
1629
1630 if (print_ret == -1) {
1631 ret = CMD_FATAL;
1632 goto end;
1633 }
1634 _MSG(" %-22s", process_attr_name);
1635 free(process_attr_name);
1636 }
1637 switch (policy) {
1638 case LTTNG_TRACKING_POLICY_INCLUDE_SET:
1639 break;
1640 case LTTNG_TRACKING_POLICY_EXCLUDE_ALL:
1641 if (the_writer) {
1642 mi_output_empty_tracker(process_attr);
1643 }
1644 MSG("none");
1645 ret = CMD_SUCCESS;
1646 goto end;
1647 case LTTNG_TRACKING_POLICY_INCLUDE_ALL:
1648 MSG("all");
1649 ret = CMD_SUCCESS;
1650 goto end;
1651 default:
1652 ERR("Unknown tracking policy encoutered while listing the %s process attribute tracker of session `%s`",
1653 lttng_process_attr_to_string(process_attr),
1654 the_handle->session_name);
1655 ret = CMD_FATAL;
1656 goto end;
1657 }
1658
1659 values_status = lttng_process_attr_values_get_count(values, &count);
1660 if (values_status != LTTNG_PROCESS_ATTR_VALUES_STATUS_OK) {
1661 ERR("Failed to get the count of values in the inclusion set of the %s process attribute tracker of session `%s`",
1662 lttng_process_attr_to_string(process_attr),
1663 the_handle->session_name);
1664 ret = CMD_FATAL;
1665 goto end;
1666 }
1667
1668 if (count == 0) {
1669 /* Functionally equivalent to the 'exclude all' policy. */
1670 if (the_writer) {
1671 mi_output_empty_tracker(process_attr);
1672 }
1673 MSG("none");
1674 ret = CMD_SUCCESS;
1675 goto end;
1676 }
1677
1678 /* Mi tracker_id element */
1679 if (the_writer) {
1680 /* Open tracker_id and targets elements */
1681 ret = mi_lttng_process_attribute_tracker_open(
1682 the_writer, process_attr);
1683 if (ret) {
1684 goto end;
1685 }
1686 }
1687
1688 for (i = 0; i < count; i++) {
1689 const enum lttng_process_attr_value_type value_type =
1690 lttng_process_attr_values_get_type_at_index(
1691 values, i);
1692 int64_t integral_value = INT64_MAX;
1693 const char *name = "error";
1694
1695 if (i >= 1) {
1696 _MSG(", ");
1697 }
1698 switch (value_type) {
1699 case LTTNG_PROCESS_ATTR_VALUE_TYPE_PID:
1700 {
1701 pid_t pid;
1702
1703 values_status = lttng_process_attr_values_get_pid_at_index(
1704 values, i, &pid);
1705 integral_value = (int64_t) pid;
1706 break;
1707 }
1708 case LTTNG_PROCESS_ATTR_VALUE_TYPE_UID:
1709 {
1710 uid_t uid;
1711
1712 values_status = lttng_process_attr_values_get_uid_at_index(
1713 values, i, &uid);
1714 integral_value = (int64_t) uid;
1715 break;
1716 }
1717 case LTTNG_PROCESS_ATTR_VALUE_TYPE_GID:
1718 {
1719 gid_t gid;
1720
1721 values_status = lttng_process_attr_values_get_gid_at_index(
1722 values, i, &gid);
1723 integral_value = (int64_t) gid;
1724 break;
1725 }
1726 case LTTNG_PROCESS_ATTR_VALUE_TYPE_USER_NAME:
1727 values_status = lttng_process_attr_values_get_user_name_at_index(
1728 values, i, &name);
1729 break;
1730 case LTTNG_PROCESS_ATTR_VALUE_TYPE_GROUP_NAME:
1731 values_status = lttng_process_attr_values_get_group_name_at_index(
1732 values, i, &name);
1733 break;
1734 default:
1735 ret = CMD_ERROR;
1736 goto end;
1737 }
1738
1739 if (values_status != LTTNG_PROCESS_ATTR_VALUES_STATUS_OK) {
1740 /*
1741 * Not possible given the current liblttng-ctl
1742 * implementation.
1743 */
1744 ERR("Unknown error occurred while fetching process attribute value in inclusion list");
1745 ret = CMD_FATAL;
1746 goto end;
1747 }
1748
1749 if (is_value_type_name(value_type)) {
1750 _MSG("`%s`", name);
1751 } else {
1752 _MSG("%" PRIi64, integral_value);
1753 }
1754
1755 /* Mi */
1756 if (the_writer) {
1757 ret = is_value_type_name(value_type) ?
1758 mi_lttng_string_process_attribute_value(
1759 the_writer,
1760 process_attr, name,
1761 false) :
1762 mi_lttng_integral_process_attribute_value(
1763 the_writer,
1764 process_attr,
1765 integral_value, false);
1766 if (ret) {
1767 goto end;
1768 }
1769 }
1770 }
1771 MSG("");
1772
1773 /* Mi close tracker_id and targets */
1774 if (the_writer) {
1775 ret = mi_lttng_close_multi_element(the_writer, 2);
1776 if (ret) {
1777 goto end;
1778 }
1779 }
1780 end:
1781 lttng_process_attr_tracker_handle_destroy(tracker_handle);
1782 return ret;
1783 }
1784
1785 /*
1786 * List all trackers of a domain
1787 */
1788 static int list_trackers(const struct lttng_domain *domain)
1789 {
1790 int ret = 0;
1791
1792 MSG("Tracked process attributes");
1793 /* Trackers listing */
1794 if (lttng_opt_mi) {
1795 ret = mi_lttng_trackers_open(the_writer);
1796 if (ret) {
1797 goto end;
1798 }
1799 }
1800
1801 switch (domain->type) {
1802 case LTTNG_DOMAIN_KERNEL:
1803 /* pid tracker */
1804 ret = list_process_attr_tracker(LTTNG_PROCESS_ATTR_PROCESS_ID);
1805 if (ret) {
1806 goto end;
1807 }
1808 /* vpid tracker */
1809 ret = list_process_attr_tracker(
1810 LTTNG_PROCESS_ATTR_VIRTUAL_PROCESS_ID);
1811 if (ret) {
1812 goto end;
1813 }
1814 /* uid tracker */
1815 ret = list_process_attr_tracker(LTTNG_PROCESS_ATTR_USER_ID);
1816 if (ret) {
1817 goto end;
1818 }
1819 /* vuid tracker */
1820 ret = list_process_attr_tracker(
1821 LTTNG_PROCESS_ATTR_VIRTUAL_USER_ID);
1822 if (ret) {
1823 goto end;
1824 }
1825 /* gid tracker */
1826 ret = list_process_attr_tracker(LTTNG_PROCESS_ATTR_GROUP_ID);
1827 if (ret) {
1828 goto end;
1829 }
1830 /* vgid tracker */
1831 ret = list_process_attr_tracker(
1832 LTTNG_PROCESS_ATTR_VIRTUAL_GROUP_ID);
1833 if (ret) {
1834 goto end;
1835 }
1836 break;
1837 case LTTNG_DOMAIN_UST:
1838 /* vpid tracker */
1839 ret = list_process_attr_tracker(
1840 LTTNG_PROCESS_ATTR_VIRTUAL_PROCESS_ID);
1841 if (ret) {
1842 goto end;
1843 }
1844 /* vuid tracker */
1845 ret = list_process_attr_tracker(
1846 LTTNG_PROCESS_ATTR_VIRTUAL_USER_ID);
1847 if (ret) {
1848 goto end;
1849 }
1850 /* vgid tracker */
1851 ret = list_process_attr_tracker(
1852 LTTNG_PROCESS_ATTR_VIRTUAL_GROUP_ID);
1853 if (ret) {
1854 goto end;
1855 }
1856 break;
1857 default:
1858 break;
1859 }
1860 MSG();
1861 if (lttng_opt_mi) {
1862 /* Close trackers element */
1863 ret = mi_lttng_writer_close_element(the_writer);
1864 if (ret) {
1865 goto end;
1866 }
1867 }
1868
1869 end:
1870 return ret;
1871 }
1872
1873 static enum cmd_error_code print_periodic_rotation_schedule(
1874 const struct lttng_rotation_schedule *schedule)
1875 {
1876 enum cmd_error_code ret;
1877 enum lttng_rotation_status status;
1878 uint64_t value;
1879
1880 status = lttng_rotation_schedule_periodic_get_period(schedule,
1881 &value);
1882 if (status != LTTNG_ROTATION_STATUS_OK) {
1883 ERR("Failed to retrieve period parameter from periodic rotation schedule.");
1884 ret = CMD_ERROR;
1885 goto end;
1886 }
1887
1888 MSG(" timer period: %" PRIu64" %s", value, USEC_UNIT);
1889 ret = CMD_SUCCESS;
1890 end:
1891 return ret;
1892 }
1893
1894 static enum cmd_error_code print_size_threshold_rotation_schedule(
1895 const struct lttng_rotation_schedule *schedule)
1896 {
1897 enum cmd_error_code ret;
1898 enum lttng_rotation_status status;
1899 uint64_t value;
1900
1901 status = lttng_rotation_schedule_size_threshold_get_threshold(schedule,
1902 &value);
1903 if (status != LTTNG_ROTATION_STATUS_OK) {
1904 ERR("Failed to retrieve size parameter from size-based rotation schedule.");
1905 ret = CMD_ERROR;
1906 goto end;
1907 }
1908
1909 MSG(" size threshold: %" PRIu64" bytes", value);
1910 ret = CMD_SUCCESS;
1911 end:
1912 return ret;
1913 }
1914
1915 static enum cmd_error_code print_rotation_schedule(
1916 const struct lttng_rotation_schedule *schedule)
1917 {
1918 enum cmd_error_code ret;
1919
1920 switch (lttng_rotation_schedule_get_type(schedule)) {
1921 case LTTNG_ROTATION_SCHEDULE_TYPE_SIZE_THRESHOLD:
1922 ret = print_size_threshold_rotation_schedule(schedule);
1923 break;
1924 case LTTNG_ROTATION_SCHEDULE_TYPE_PERIODIC:
1925 ret = print_periodic_rotation_schedule(schedule);
1926 break;
1927 default:
1928 ret = CMD_ERROR;
1929 }
1930 return ret;
1931 }
1932
1933 /*
1934 * List the automatic rotation settings.
1935 */
1936 static enum cmd_error_code list_rotate_settings(const char *session_name)
1937 {
1938 int ret;
1939 enum cmd_error_code cmd_ret = CMD_SUCCESS;
1940 unsigned int count, i;
1941 struct lttng_rotation_schedules *schedules = NULL;
1942 enum lttng_rotation_status status;
1943
1944 ret = lttng_session_list_rotation_schedules(session_name, &schedules);
1945 if (ret != LTTNG_OK) {
1946 ERR("Failed to list session rotation schedules: %s", lttng_strerror(ret));
1947 cmd_ret = CMD_ERROR;
1948 goto end;
1949 }
1950
1951 status = lttng_rotation_schedules_get_count(schedules, &count);
1952 if (status != LTTNG_ROTATION_STATUS_OK) {
1953 ERR("Failed to retrieve the number of session rotation schedules.");
1954 cmd_ret = CMD_ERROR;
1955 goto end;
1956 }
1957
1958 if (count == 0) {
1959 cmd_ret = CMD_SUCCESS;
1960 goto end;
1961 }
1962
1963 MSG("Automatic rotation schedules:");
1964 if (lttng_opt_mi) {
1965 ret = mi_lttng_writer_open_element(the_writer,
1966 mi_lttng_element_rotation_schedules);
1967 if (ret) {
1968 cmd_ret = CMD_ERROR;
1969 goto end;
1970 }
1971 }
1972
1973 for (i = 0; i < count; i++) {
1974 enum cmd_error_code tmp_ret = CMD_SUCCESS;
1975 const struct lttng_rotation_schedule *schedule;
1976
1977 schedule = lttng_rotation_schedules_get_at_index(schedules, i);
1978 if (!schedule) {
1979 ERR("Failed to retrieve session rotation schedule.");
1980 cmd_ret = CMD_ERROR;
1981 goto end;
1982 }
1983
1984 if (lttng_opt_mi) {
1985 ret = mi_lttng_rotation_schedule(the_writer, schedule);
1986 if (ret) {
1987 tmp_ret = CMD_ERROR;
1988 }
1989 } else {
1990 tmp_ret = print_rotation_schedule(schedule);
1991 }
1992
1993 /*
1994 * Report an error if the serialization of any of the
1995 * descriptors failed.
1996 */
1997 cmd_ret = cmd_ret ? cmd_ret : tmp_ret;
1998 }
1999
2000 _MSG("\n");
2001 if (lttng_opt_mi) {
2002 /* Close the rotation_schedules element. */
2003 ret = mi_lttng_writer_close_element(the_writer);
2004 if (ret) {
2005 cmd_ret = CMD_ERROR;
2006 goto end;
2007 }
2008 }
2009 end:
2010 lttng_rotation_schedules_destroy(schedules);
2011 return cmd_ret;
2012 }
2013
2014 /*
2015 * Machine interface
2016 * Find the session with session_name as name
2017 * and print his informations.
2018 */
2019 static int mi_list_session(const char *session_name,
2020 struct lttng_session *sessions, int count)
2021 {
2022 int ret, i;
2023 unsigned int session_found = 0;
2024
2025 if (session_name == NULL) {
2026 ret = -LTTNG_ERR_SESS_NOT_FOUND;
2027 goto end;
2028 }
2029
2030 for (i = 0; i < count; i++) {
2031 if (strncmp(sessions[i].name, session_name, NAME_MAX) == 0) {
2032 /* We need to leave it open to append other informations
2033 * like domain, channel, events etc.*/
2034 session_found = 1;
2035 ret = mi_lttng_session(the_writer, &sessions[i], 1);
2036 if (ret) {
2037 goto end;
2038 }
2039 break;
2040 }
2041 }
2042
2043 if (!session_found) {
2044 ERR("Session '%s' not found", session_name);
2045 ret = -LTTNG_ERR_SESS_NOT_FOUND;
2046 goto end;
2047 }
2048
2049 end:
2050 return ret;
2051 }
2052
2053 /*
2054 * Machine interface
2055 * List all availables session
2056 */
2057 static int mi_list_sessions(struct lttng_session *sessions, int count)
2058 {
2059 int ret, i;
2060
2061 /* Opening sessions element */
2062 ret = mi_lttng_sessions_open(the_writer);
2063 if (ret) {
2064 goto end;
2065 }
2066
2067 /* Listing sessions */
2068 for (i = 0; i < count; i++) {
2069 ret = mi_lttng_session(the_writer, &sessions[i], 0);
2070 if (ret) {
2071 goto end;
2072 }
2073 }
2074
2075 /* Closing sessions element */
2076 ret = mi_lttng_writer_close_element(the_writer);
2077 if (ret) {
2078 goto end;
2079 }
2080
2081 end:
2082 return ret;
2083 }
2084
2085 /*
2086 * List available tracing session. List only basic information.
2087 *
2088 * If session_name is NULL, all sessions are listed.
2089 */
2090 static int list_sessions(const char *session_name)
2091 {
2092 int ret = CMD_SUCCESS;
2093 int count, i;
2094 unsigned int session_found = 0;
2095 struct lttng_session *sessions = NULL;
2096
2097 count = lttng_list_sessions(&sessions);
2098 DBG("Session count %d", count);
2099 if (count < 0) {
2100 ret = CMD_ERROR;
2101 ERR("%s", lttng_strerror(count));
2102 goto end;
2103 }
2104
2105 if (lttng_opt_mi) {
2106 /* Mi */
2107 if (session_name == NULL) {
2108 /* List all sessions */
2109 ret = mi_list_sessions(sessions, count);
2110 } else {
2111 /* Note : this return an open session element */
2112 ret = mi_list_session(session_name, sessions, count);
2113 }
2114 if (ret) {
2115 ret = CMD_ERROR;
2116 goto end;
2117 }
2118 } else {
2119 /* Pretty print */
2120 if (count == 0) {
2121 MSG("Currently no available recording session");
2122 goto end;
2123 }
2124
2125 if (session_name == NULL) {
2126 MSG("Available recording sessions:");
2127 }
2128
2129 for (i = 0; i < count; i++) {
2130 if (session_name != NULL) {
2131 if (strncmp(sessions[i].name, session_name, NAME_MAX) == 0) {
2132 session_found = 1;
2133 MSG("Recording session %s: [%s%s]", session_name,
2134 active_string(sessions[i].enabled),
2135 snapshot_string(sessions[i].snapshot_mode));
2136 if (*sessions[i].path) {
2137 MSG("%sTrace output: %s\n", indent4, sessions[i].path);
2138 }
2139 memcpy(&the_listed_session,
2140 &sessions[i],
2141 sizeof(the_listed_session));
2142 break;
2143 }
2144 } else {
2145 MSG(" %d) %s [%s%s]", i + 1,
2146 sessions[i].name,
2147 active_string(sessions[i].enabled),
2148 snapshot_string(sessions[i].snapshot_mode));
2149 if (*sessions[i].path) {
2150 MSG("%sTrace output: %s", indent4, sessions[i].path);
2151 }
2152 if (sessions[i].live_timer_interval != 0) {
2153 MSG("%sLive timer interval: %u %s", indent4,
2154 sessions[i].live_timer_interval,
2155 USEC_UNIT);
2156 }
2157 MSG("");
2158 }
2159 }
2160
2161 if (!session_found && session_name != NULL) {
2162 ERR("Session '%s' not found", session_name);
2163 ret = CMD_ERROR;
2164 goto end;
2165 }
2166
2167 if (session_name == NULL) {
2168 MSG("\nUse lttng list <session_name> for more details");
2169 }
2170 }
2171
2172 end:
2173 free(sessions);
2174 return ret;
2175 }
2176
2177
2178 /*
2179 * Machine Interface
2180 * list available domain(s) for a session.
2181 */
2182 static int mi_list_domains(struct lttng_domain *domains, int count)
2183 {
2184 int i, ret;
2185 /* Open domains element */
2186 ret = mi_lttng_domains_open(the_writer);
2187 if (ret) {
2188 goto end;
2189 }
2190
2191 for (i = 0; i < count; i++) {
2192 ret = mi_lttng_domain(the_writer, &domains[i], 0);
2193 if (ret) {
2194 goto end;
2195 }
2196 }
2197
2198 /* Closing domains element */
2199 ret = mi_lttng_writer_close_element(the_writer);
2200 if (ret) {
2201 goto end;
2202 }
2203 end:
2204 return ret;
2205 }
2206
2207 /*
2208 * List available domain(s) for a session.
2209 */
2210 static int list_domains(const char *session_name)
2211 {
2212 int i, count, ret = CMD_SUCCESS;
2213 struct lttng_domain *domains = NULL;
2214
2215
2216 count = lttng_list_domains(session_name, &domains);
2217 if (count < 0) {
2218 ret = CMD_ERROR;
2219 ERR("%s", lttng_strerror(count));
2220 goto end;
2221 }
2222
2223 if (lttng_opt_mi) {
2224 /* Mi output */
2225 ret = mi_list_domains(domains, count);
2226 if (ret) {
2227 ret = CMD_ERROR;
2228 goto error;
2229 }
2230 } else {
2231 /* Pretty print */
2232 MSG("Domains:\n-------------");
2233 if (count == 0) {
2234 MSG(" None");
2235 goto end;
2236 }
2237
2238 for (i = 0; i < count; i++) {
2239 switch (domains[i].type) {
2240 case LTTNG_DOMAIN_KERNEL:
2241 MSG(" - Kernel");
2242 break;
2243 case LTTNG_DOMAIN_UST:
2244 MSG(" - UST global");
2245 break;
2246 case LTTNG_DOMAIN_JUL:
2247 MSG(" - JUL (Java Util Logging)");
2248 break;
2249 case LTTNG_DOMAIN_LOG4J:
2250 MSG(" - LOG4j (Logging for Java)");
2251 break;
2252 case LTTNG_DOMAIN_PYTHON:
2253 MSG(" - Python (logging)");
2254 break;
2255 default:
2256 break;
2257 }
2258 }
2259 }
2260
2261 error:
2262 free(domains);
2263
2264 end:
2265 return ret;
2266 }
2267
2268 /*
2269 * The 'list <options>' first level command
2270 */
2271 int cmd_list(int argc, const char **argv)
2272 {
2273 int opt, ret = CMD_SUCCESS;
2274 const char *arg_session_name, *leftover = NULL;
2275 static poptContext pc;
2276 struct lttng_domain domain;
2277 struct lttng_domain *domains = NULL;
2278
2279 memset(&domain, 0, sizeof(domain));
2280
2281 if (argc < 1) {
2282 ret = CMD_ERROR;
2283 goto end;
2284 }
2285
2286 pc = poptGetContext(NULL, argc, argv, long_options, 0);
2287 poptReadDefaultConfig(pc, 0);
2288
2289 while ((opt = poptGetNextOpt(pc)) != -1) {
2290 switch (opt) {
2291 case OPT_HELP:
2292 SHOW_HELP();
2293 goto end;
2294 case OPT_USERSPACE:
2295 opt_userspace = 1;
2296 break;
2297 case OPT_LIST_OPTIONS:
2298 list_cmd_options(stdout, long_options);
2299 goto end;
2300 default:
2301 ret = CMD_UNDEFINED;
2302 goto end;
2303 }
2304 }
2305
2306 /* Mi check */
2307 if (lttng_opt_mi) {
2308 the_writer = mi_lttng_writer_create(
2309 fileno(stdout), lttng_opt_mi);
2310 if (!the_writer) {
2311 ret = CMD_ERROR;
2312 goto end;
2313 }
2314
2315 /* Open command element */
2316 ret = mi_lttng_writer_command_open(
2317 the_writer, mi_lttng_element_command_list);
2318 if (ret) {
2319 ret = CMD_ERROR;
2320 goto end;
2321 }
2322
2323 /* Open output element */
2324 ret = mi_lttng_writer_open_element(
2325 the_writer, mi_lttng_element_command_output);
2326 if (ret) {
2327 ret = CMD_ERROR;
2328 goto end;
2329 }
2330 }
2331
2332 /* Get session name (trailing argument) */
2333 arg_session_name = poptGetArg(pc);
2334 DBG2("Session name: %s", arg_session_name);
2335
2336 leftover = poptGetArg(pc);
2337 if (leftover) {
2338 ERR("Unknown argument: %s", leftover);
2339 ret = CMD_ERROR;
2340 goto end;
2341 }
2342
2343 if (opt_kernel) {
2344 domain.type = LTTNG_DOMAIN_KERNEL;
2345 } else if (opt_userspace) {
2346 DBG2("Listing userspace global domain");
2347 domain.type = LTTNG_DOMAIN_UST;
2348 } else if (opt_jul) {
2349 DBG2("Listing JUL domain");
2350 domain.type = LTTNG_DOMAIN_JUL;
2351 } else if (opt_log4j) {
2352 domain.type = LTTNG_DOMAIN_LOG4J;
2353 } else if (opt_python) {
2354 domain.type = LTTNG_DOMAIN_PYTHON;
2355 }
2356
2357 if (!opt_kernel && opt_syscall) {
2358 WARN("--syscall will only work with the Kernel domain (-k)");
2359 ret = CMD_ERROR;
2360 goto end;
2361 }
2362
2363 if (opt_kernel || opt_userspace || opt_jul || opt_log4j || opt_python) {
2364 the_handle = lttng_create_handle(arg_session_name, &domain);
2365 if (the_handle == NULL) {
2366 ret = CMD_FATAL;
2367 goto end;
2368 }
2369 }
2370
2371 if (arg_session_name == NULL) {
2372 if (!opt_kernel && !opt_userspace && !opt_jul && !opt_log4j
2373 && !opt_python) {
2374 ret = list_sessions(NULL);
2375 if (ret) {
2376 goto end;
2377 }
2378 }
2379 if (opt_kernel) {
2380 if (opt_syscall) {
2381 ret = list_syscalls();
2382 if (ret) {
2383 goto end;
2384 }
2385 } else {
2386 ret = list_kernel_events();
2387 if (ret) {
2388 goto end;
2389 }
2390 }
2391 }
2392 if (opt_userspace) {
2393 if (opt_fields) {
2394 ret = list_ust_event_fields();
2395 } else {
2396 ret = list_ust_events();
2397 }
2398 if (ret) {
2399 goto end;
2400 }
2401 }
2402 if (opt_jul || opt_log4j || opt_python) {
2403 ret = list_agent_events();
2404 if (ret) {
2405 goto end;
2406 }
2407 }
2408 } else {
2409 /* List session attributes */
2410 if (lttng_opt_mi) {
2411 /* Open element sessions
2412 * Present for xml consistency */
2413 ret = mi_lttng_sessions_open(the_writer);
2414 if (ret) {
2415 goto end;
2416 }
2417 }
2418 /* MI: the ouptut of list_sessions is an unclosed session element */
2419 ret = list_sessions(arg_session_name);
2420 if (ret) {
2421 goto end;
2422 }
2423
2424 ret = list_rotate_settings(arg_session_name);
2425 if (ret) {
2426 goto end;
2427 }
2428
2429 /* Domain listing */
2430 if (opt_domain) {
2431 ret = list_domains(arg_session_name);
2432 goto end;
2433 }
2434
2435 /* Channel listing */
2436 if (opt_kernel || opt_userspace) {
2437 if (lttng_opt_mi) {
2438 /* Add of domains and domain element for xml
2439 * consistency and validation
2440 */
2441 ret = mi_lttng_domains_open(the_writer);
2442 if (ret) {
2443 goto end;
2444 }
2445
2446 /* Open domain and leave it open for
2447 * nested channels printing */
2448 ret = mi_lttng_domain(the_writer, &domain, 1);
2449 if (ret) {
2450 goto end;
2451 }
2452
2453 }
2454
2455
2456 /* Trackers */
2457 ret = list_trackers(&domain);
2458 if (ret) {
2459 goto end;
2460 }
2461
2462 /* Channels */
2463 ret = list_channels(opt_channel);
2464 if (ret) {
2465 goto end;
2466 }
2467
2468 if (lttng_opt_mi) {
2469 /* Close domain and domain element */
2470 ret = mi_lttng_close_multi_element(
2471 the_writer, 2);
2472 }
2473 if (ret) {
2474 goto end;
2475 }
2476
2477
2478 } else {
2479 int i, nb_domain;
2480
2481 /* We want all domain(s) */
2482 nb_domain = lttng_list_domains(arg_session_name, &domains);
2483 if (nb_domain < 0) {
2484 ret = CMD_ERROR;
2485 ERR("%s", lttng_strerror(nb_domain));
2486 goto end;
2487 }
2488
2489 if (lttng_opt_mi) {
2490 ret = mi_lttng_domains_open(the_writer);
2491 if (ret) {
2492 ret = CMD_ERROR;
2493 goto end;
2494 }
2495 }
2496
2497 for (i = 0; i < nb_domain; i++) {
2498 switch (domains[i].type) {
2499 case LTTNG_DOMAIN_KERNEL:
2500 MSG("=== Domain: Linux kernel ===\n");
2501 break;
2502 case LTTNG_DOMAIN_UST:
2503 MSG("=== Domain: User space ===\n");
2504 MSG("Buffering scheme: %s\n",
2505 domains[i].buf_type ==
2506 LTTNG_BUFFER_PER_PID ? "per-process" : "per-user");
2507 break;
2508 case LTTNG_DOMAIN_JUL:
2509 MSG("=== Domain: java.util.logging (JUL) ===\n");
2510 break;
2511 case LTTNG_DOMAIN_LOG4J:
2512 MSG("=== Domain: log4j ===\n");
2513 break;
2514 case LTTNG_DOMAIN_PYTHON:
2515 MSG("=== Domain: Python logging ===\n");
2516 break;
2517 default:
2518 MSG("=== Domain: Unimplemented ===\n");
2519 break;
2520 }
2521
2522 if (lttng_opt_mi) {
2523 ret = mi_lttng_domain(the_writer,
2524 &domains[i], 1);
2525 if (ret) {
2526 ret = CMD_ERROR;
2527 goto end;
2528 }
2529 }
2530
2531 /* Clean handle before creating a new one */
2532 if (the_handle) {
2533 lttng_destroy_handle(the_handle);
2534 }
2535
2536 the_handle = lttng_create_handle(
2537 arg_session_name, &domains[i]);
2538 if (the_handle == NULL) {
2539 ret = CMD_FATAL;
2540 goto end;
2541 }
2542
2543 if (domains[i].type == LTTNG_DOMAIN_JUL ||
2544 domains[i].type == LTTNG_DOMAIN_LOG4J ||
2545 domains[i].type == LTTNG_DOMAIN_PYTHON) {
2546 ret = list_session_agent_events();
2547 if (ret) {
2548 goto end;
2549 }
2550
2551 goto next_domain;
2552 }
2553
2554 switch (domains[i].type) {
2555 case LTTNG_DOMAIN_KERNEL:
2556 case LTTNG_DOMAIN_UST:
2557 ret = list_trackers(&domains[i]);
2558 if (ret) {
2559 goto end;
2560 }
2561 break;
2562 default:
2563 break;
2564 }
2565
2566 ret = list_channels(opt_channel);
2567 if (ret) {
2568 goto end;
2569 }
2570
2571 next_domain:
2572 if (lttng_opt_mi) {
2573 /* Close domain element */
2574 ret = mi_lttng_writer_close_element(
2575 the_writer);
2576 if (ret) {
2577 ret = CMD_ERROR;
2578 goto end;
2579 }
2580 }
2581
2582 }
2583 if (lttng_opt_mi) {
2584 /* Close the domains, session and sessions element */
2585 ret = mi_lttng_close_multi_element(
2586 the_writer, 3);
2587 if (ret) {
2588 ret = CMD_ERROR;
2589 goto end;
2590 }
2591 }
2592 }
2593 }
2594
2595 /* Mi closing */
2596 if (lttng_opt_mi) {
2597 /* Close output element */
2598 ret = mi_lttng_writer_close_element(the_writer);
2599 if (ret) {
2600 ret = CMD_ERROR;
2601 goto end;
2602 }
2603
2604 /* Command element close */
2605 ret = mi_lttng_writer_command_close(the_writer);
2606 if (ret) {
2607 ret = CMD_ERROR;
2608 goto end;
2609 }
2610 }
2611 end:
2612 /* Mi clean-up */
2613 if (the_writer && mi_lttng_writer_destroy(the_writer)) {
2614 /* Preserve original error code */
2615 ret = ret ? ret : -LTTNG_ERR_MI_IO_FAIL;
2616 }
2617
2618 free(domains);
2619 if (the_handle) {
2620 lttng_destroy_handle(the_handle);
2621 }
2622
2623 poptFreeContext(pc);
2624 return ret;
2625 }
This page took 0.372136 seconds and 4 git commands to generate.