Fix: kernel function event was listed as probe
[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 modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 */
17
18 #define _GNU_SOURCE
19 #include <inttypes.h>
20 #include <popt.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <assert.h>
25
26 #include "../command.h"
27
28 static int opt_userspace;
29 static int opt_kernel;
30 static char *opt_channel;
31 static int opt_domain;
32 static int opt_fields;
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 {"fields", 'f', POPT_ARG_VAL, &opt_fields, 1, 0, 0},
65 {"list-options", 0, POPT_ARG_NONE, NULL, OPT_LIST_OPTIONS, NULL, NULL},
66 {0, 0, 0, 0, 0, 0, 0}
67 };
68
69 /*
70 * usage
71 */
72 static void usage(FILE *ofp)
73 {
74 fprintf(ofp, "usage: lttng list [OPTIONS] [SESSION [<OPTIONS>]]\n");
75 fprintf(ofp, "\n");
76 fprintf(ofp, "With no arguments, list available tracing session(s)\n");
77 fprintf(ofp, "\n");
78 fprintf(ofp, "Without a session, -k lists available kernel events\n");
79 fprintf(ofp, "Without a session, -u lists available userspace events\n");
80 fprintf(ofp, "\n");
81 fprintf(ofp, " -h, --help Show this help\n");
82 fprintf(ofp, " --list-options Simple listing of options\n");
83 fprintf(ofp, " -k, --kernel Select kernel domain\n");
84 fprintf(ofp, " -u, --userspace Select user-space domain.\n");
85 fprintf(ofp, " -f, --fields List event fields.\n");
86 #if 0
87 fprintf(ofp, " -p, --pid PID List user-space events by PID\n");
88 #endif
89 fprintf(ofp, "\n");
90 fprintf(ofp, "Session Options:\n");
91 fprintf(ofp, " -c, --channel NAME List details of a channel\n");
92 fprintf(ofp, " -d, --domain List available domain(s)\n");
93 fprintf(ofp, "\n");
94 }
95
96 /*
97 * Get command line from /proc for a specific pid.
98 *
99 * On success, return an allocated string pointer to the proc cmdline.
100 * On error, return NULL.
101 */
102 static char *get_cmdline_by_pid(pid_t pid)
103 {
104 int ret;
105 FILE *fp;
106 char *cmdline = NULL;
107 char path[24]; /* Can't go bigger than /proc/65535/cmdline */
108
109 snprintf(path, sizeof(path), "/proc/%d/cmdline", pid);
110 fp = fopen(path, "r");
111 if (fp == NULL) {
112 goto end;
113 }
114
115 /* Caller must free() *cmdline */
116 cmdline = malloc(PATH_MAX);
117 ret = fread(cmdline, 1, PATH_MAX, fp);
118 if (ret < 0) {
119 perror("fread proc list");
120 }
121 fclose(fp);
122
123 end:
124 return cmdline;
125 }
126
127 static
128 const char *active_string(int value)
129 {
130 switch (value) {
131 case 0: return " [inactive]";
132 case 1: return " [active]";
133 case -1: return "";
134 default: return NULL;
135 }
136 }
137
138 static
139 const char *enabled_string(int value)
140 {
141 switch (value) {
142 case 0: return " [disabled]";
143 case 1: return " [enabled]";
144 case -1: return "";
145 default: return NULL;
146 }
147 }
148
149 static
150 const char *filter_string(int value)
151 {
152 switch (value) {
153 case 1: return " [with filter]";
154 default: return "";
155 }
156 }
157
158 static const char *loglevel_string(int value)
159 {
160 switch (value) {
161 case -1:
162 return "";
163 case LTTNG_LOGLEVEL_EMERG:
164 return "TRACE_EMERG";
165 case LTTNG_LOGLEVEL_ALERT:
166 return "TRACE_ALERT";
167 case LTTNG_LOGLEVEL_CRIT:
168 return "TRACE_CRIT";
169 case LTTNG_LOGLEVEL_ERR:
170 return "TRACE_ERR";
171 case LTTNG_LOGLEVEL_WARNING:
172 return "TRACE_WARNING";
173 case LTTNG_LOGLEVEL_NOTICE:
174 return "TRACE_NOTICE";
175 case LTTNG_LOGLEVEL_INFO:
176 return "TRACE_INFO";
177 case LTTNG_LOGLEVEL_DEBUG_SYSTEM:
178 return "TRACE_DEBUG_SYSTEM";
179 case LTTNG_LOGLEVEL_DEBUG_PROGRAM:
180 return "TRACE_DEBUG_PROGRAM";
181 case LTTNG_LOGLEVEL_DEBUG_PROCESS:
182 return "TRACE_DEBUG_PROCESS";
183 case LTTNG_LOGLEVEL_DEBUG_MODULE:
184 return "TRACE_DEBUG_MODULE";
185 case LTTNG_LOGLEVEL_DEBUG_UNIT:
186 return "TRACE_DEBUG_UNIT";
187 case LTTNG_LOGLEVEL_DEBUG_FUNCTION:
188 return "TRACE_DEBUG_FUNCTION";
189 case LTTNG_LOGLEVEL_DEBUG_LINE:
190 return "TRACE_DEBUG_LINE";
191 case LTTNG_LOGLEVEL_DEBUG:
192 return "TRACE_DEBUG";
193 default:
194 return "<<UNKNOWN>>";
195 }
196 }
197
198 /*
199 * Pretty print single event.
200 */
201 static void print_events(struct lttng_event *event)
202 {
203 switch (event->type) {
204 case LTTNG_EVENT_TRACEPOINT:
205 {
206 if (event->loglevel != -1) {
207 MSG("%s%s (loglevel: %s (%d)) (type: tracepoint)%s%s",
208 indent6,
209 event->name,
210 loglevel_string(event->loglevel),
211 event->loglevel,
212 enabled_string(event->enabled),
213 filter_string(event->filter));
214 } else {
215 MSG("%s%s (type: tracepoint)%s%s",
216 indent6,
217 event->name,
218 enabled_string(event->enabled),
219 filter_string(event->filter));
220 }
221 break;
222 }
223 case LTTNG_EVENT_FUNCTION:
224 MSG("%s%s (type: function)%s%s", indent6,
225 event->name, enabled_string(event->enabled),
226 filter_string(event->filter));
227 if (event->attr.probe.addr != 0) {
228 MSG("%saddr: 0x%" PRIx64, indent8, event->attr.probe.addr);
229 } else {
230 MSG("%soffset: 0x%" PRIx64, indent8, event->attr.probe.offset);
231 MSG("%ssymbol: %s", indent8, event->attr.probe.symbol_name);
232 }
233 break;
234 case LTTNG_EVENT_PROBE:
235 MSG("%s%s (type: probe)%s%s", indent6,
236 event->name, enabled_string(event->enabled),
237 filter_string(event->filter));
238 if (event->attr.probe.addr != 0) {
239 MSG("%saddr: 0x%" PRIx64, indent8, event->attr.probe.addr);
240 } else {
241 MSG("%soffset: 0x%" PRIx64, indent8, event->attr.probe.offset);
242 MSG("%ssymbol: %s", indent8, event->attr.probe.symbol_name);
243 }
244 break;
245 case LTTNG_EVENT_FUNCTION_ENTRY:
246 MSG("%s%s (type: function)%s%s", indent6,
247 event->name, enabled_string(event->enabled),
248 filter_string(event->filter));
249 MSG("%ssymbol: \"%s\"", indent8, event->attr.ftrace.symbol_name);
250 break;
251 case LTTNG_EVENT_SYSCALL:
252 MSG("%ssyscalls (type: syscall)%s%s", indent6,
253 enabled_string(event->enabled),
254 filter_string(event->filter));
255 break;
256 case LTTNG_EVENT_NOOP:
257 MSG("%s (type: noop)%s%s", indent6,
258 enabled_string(event->enabled),
259 filter_string(event->filter));
260 break;
261 case LTTNG_EVENT_ALL:
262 /* We should never have "all" events in list. */
263 assert(0);
264 break;
265 }
266 }
267
268 static const char *field_type(struct lttng_event_field *field)
269 {
270 switch(field->type) {
271 case LTTNG_EVENT_FIELD_INTEGER:
272 return "integer";
273 case LTTNG_EVENT_FIELD_ENUM:
274 return "enum";
275 case LTTNG_EVENT_FIELD_FLOAT:
276 return "float";
277 case LTTNG_EVENT_FIELD_STRING:
278 return "string";
279 case LTTNG_EVENT_FIELD_OTHER:
280 default: /* fall-through */
281 return "unknown";
282 }
283 }
284
285 /*
286 * Pretty print single event fields.
287 */
288 static void print_event_field(struct lttng_event_field *field)
289 {
290 if (!field->field_name[0]) {
291 return;
292 }
293 MSG("%sfield: %s (%s)%s", indent8, field->field_name,
294 field_type(field), field->nowrite ? " [no write]" : "");
295 }
296
297 /*
298 * Ask session daemon for all user space tracepoints available.
299 */
300 static int list_ust_events(void)
301 {
302 int i, size;
303 struct lttng_domain domain;
304 struct lttng_handle *handle;
305 struct lttng_event *event_list;
306 pid_t cur_pid = 0;
307 char *cmdline = NULL;
308
309 memset(&domain, 0, sizeof(domain));
310
311 DBG("Getting UST tracing events");
312
313 domain.type = LTTNG_DOMAIN_UST;
314
315 handle = lttng_create_handle(NULL, &domain);
316 if (handle == NULL) {
317 goto error;
318 }
319
320 size = lttng_list_tracepoints(handle, &event_list);
321 if (size < 0) {
322 ERR("Unable to list UST events");
323 lttng_destroy_handle(handle);
324 return size;
325 }
326
327 MSG("UST events:\n-------------");
328
329 if (size == 0) {
330 MSG("None");
331 }
332
333 for (i = 0; i < size; i++) {
334 if (cur_pid != event_list[i].pid) {
335 cur_pid = event_list[i].pid;
336 cmdline = get_cmdline_by_pid(cur_pid);
337 MSG("\nPID: %d - Name: %s", cur_pid, cmdline);
338 free(cmdline);
339 }
340 print_events(&event_list[i]);
341 }
342
343 MSG("");
344
345 free(event_list);
346 lttng_destroy_handle(handle);
347
348 return CMD_SUCCESS;
349
350 error:
351 lttng_destroy_handle(handle);
352 return -1;
353 }
354
355 /*
356 * Ask session daemon for all user space tracepoint fields available.
357 */
358 static int list_ust_event_fields(void)
359 {
360 int i, size;
361 struct lttng_domain domain;
362 struct lttng_handle *handle;
363 struct lttng_event_field *event_field_list;
364 pid_t cur_pid = 0;
365 char *cmdline = NULL;
366
367 struct lttng_event cur_event;
368
369 memset(&domain, 0, sizeof(domain));
370 memset(&cur_event, 0, sizeof(cur_event));
371
372 DBG("Getting UST tracing event fields");
373
374 domain.type = LTTNG_DOMAIN_UST;
375
376 handle = lttng_create_handle(NULL, &domain);
377 if (handle == NULL) {
378 goto error;
379 }
380
381 size = lttng_list_tracepoint_fields(handle, &event_field_list);
382 if (size < 0) {
383 ERR("Unable to list UST event fields");
384 lttng_destroy_handle(handle);
385 return size;
386 }
387
388 MSG("UST events:\n-------------");
389
390 if (size == 0) {
391 MSG("None");
392 }
393
394 for (i = 0; i < size; i++) {
395 if (cur_pid != event_field_list[i].event.pid) {
396 cur_pid = event_field_list[i].event.pid;
397 cmdline = get_cmdline_by_pid(cur_pid);
398 MSG("\nPID: %d - Name: %s", cur_pid, cmdline);
399 free(cmdline);
400 }
401 if (strcmp(cur_event.name, event_field_list[i].event.name) != 0) {
402 print_events(&event_field_list[i].event);
403 memcpy(&cur_event, &event_field_list[i].event,
404 sizeof(cur_event));
405 }
406 print_event_field(&event_field_list[i]);
407 }
408
409 MSG("");
410
411 free(event_field_list);
412 lttng_destroy_handle(handle);
413
414 return CMD_SUCCESS;
415
416 error:
417 lttng_destroy_handle(handle);
418 return -1;
419 }
420
421 /*
422 * Ask for all trace events in the kernel and pretty print them.
423 */
424 static int list_kernel_events(void)
425 {
426 int i, size;
427 struct lttng_domain domain;
428 struct lttng_handle *handle;
429 struct lttng_event *event_list;
430
431 memset(&domain, 0, sizeof(domain));
432
433 DBG("Getting kernel tracing events");
434
435 domain.type = LTTNG_DOMAIN_KERNEL;
436
437 handle = lttng_create_handle(NULL, &domain);
438 if (handle == NULL) {
439 goto error;
440 }
441
442 size = lttng_list_tracepoints(handle, &event_list);
443 if (size < 0) {
444 ERR("Unable to list kernel events");
445 lttng_destroy_handle(handle);
446 return size;
447 }
448
449 MSG("Kernel events:\n-------------");
450
451 for (i = 0; i < size; i++) {
452 print_events(&event_list[i]);
453 }
454
455 MSG("");
456
457 free(event_list);
458
459 lttng_destroy_handle(handle);
460 return CMD_SUCCESS;
461
462 error:
463 lttng_destroy_handle(handle);
464 return -1;
465 }
466
467 /*
468 * List events of channel of session and domain.
469 */
470 static int list_events(const char *channel_name)
471 {
472 int ret, count, i;
473 struct lttng_event *events = NULL;
474
475 count = lttng_list_events(handle, channel_name, &events);
476 if (count < 0) {
477 ret = count;
478 goto error;
479 }
480
481 MSG("\n%sEvents:", indent4);
482 if (count == 0) {
483 MSG("%sNone\n", indent6);
484 goto end;
485 }
486
487 for (i = 0; i < count; i++) {
488 print_events(&events[i]);
489 }
490
491 MSG("");
492
493 end:
494 free(events);
495 ret = CMD_SUCCESS;
496
497 error:
498 return ret;
499 }
500
501 /*
502 * Pretty print channel
503 */
504 static void print_channel(struct lttng_channel *channel)
505 {
506 MSG("- %s:%s\n", channel->name, enabled_string(channel->enabled));
507
508 MSG("%sAttributes:", indent4);
509 MSG("%soverwrite mode: %d", indent6, channel->attr.overwrite);
510 MSG("%ssubbufers size: %" PRIu64, indent6, channel->attr.subbuf_size);
511 MSG("%snumber of subbufers: %" PRIu64, indent6, channel->attr.num_subbuf);
512 MSG("%sswitch timer interval: %u", indent6, channel->attr.switch_timer_interval);
513 MSG("%sread timer interval: %u", indent6, channel->attr.read_timer_interval);
514 switch (channel->attr.output) {
515 case LTTNG_EVENT_SPLICE:
516 MSG("%soutput: splice()", indent6);
517 break;
518 case LTTNG_EVENT_MMAP:
519 MSG("%soutput: mmap()", indent6);
520 break;
521 }
522 }
523
524 /*
525 * List channel(s) of session and domain.
526 *
527 * If channel_name is NULL, all channels are listed.
528 */
529 static int list_channels(const char *channel_name)
530 {
531 int count, i, ret = CMD_SUCCESS;
532 unsigned int chan_found = 0;
533 struct lttng_channel *channels = NULL;
534
535 DBG("Listing channel(s) (%s)", channel_name ? : "<all>");
536
537 count = lttng_list_channels(handle, &channels);
538 if (count < 0) {
539 switch (-count) {
540 case LTTNG_ERR_KERN_CHAN_NOT_FOUND:
541 ret = CMD_SUCCESS;
542 WARN("No kernel channel");
543 break;
544 default:
545 /* We had a real error */
546 ret = count;
547 ERR("%s", lttng_strerror(ret));
548 }
549 goto error_channels;
550 }
551
552 if (channel_name == NULL) {
553 MSG("Channels:\n-------------");
554 }
555
556 for (i = 0; i < count; i++) {
557 if (channel_name != NULL) {
558 if (strncmp(channels[i].name, channel_name, NAME_MAX) == 0) {
559 chan_found = 1;
560 } else {
561 continue;
562 }
563 }
564 print_channel(&channels[i]);
565
566 /* Listing events per channel */
567 ret = list_events(channels[i].name);
568 if (ret < 0) {
569 MSG("%s", lttng_strerror(ret));
570 }
571
572 if (chan_found) {
573 break;
574 }
575 }
576
577 if (!chan_found && channel_name != NULL) {
578 ERR("Channel %s not found", channel_name);
579 goto error;
580 }
581
582 ret = CMD_SUCCESS;
583
584 error:
585 free(channels);
586
587 error_channels:
588 return ret;
589 }
590
591 /*
592 * List available tracing session. List only basic information.
593 *
594 * If session_name is NULL, all sessions are listed.
595 */
596 static int list_sessions(const char *session_name)
597 {
598 int ret, count, i;
599 unsigned int session_found = 0;
600 struct lttng_session *sessions;
601
602 count = lttng_list_sessions(&sessions);
603 DBG("Session count %d", count);
604 if (count < 0) {
605 ret = count;
606 ERR("%s", lttng_strerror(ret));
607 goto error;
608 } else if (count == 0) {
609 MSG("Currently no available tracing session");
610 goto end;
611 }
612
613 if (session_name == NULL) {
614 MSG("Available tracing sessions:");
615 }
616
617 for (i = 0; i < count; i++) {
618 if (session_name != NULL) {
619 if (strncmp(sessions[i].name, session_name, NAME_MAX) == 0) {
620 session_found = 1;
621 MSG("Tracing session %s:%s", session_name, active_string(sessions[i].enabled));
622 MSG("%sTrace path: %s\n", indent4, sessions[i].path);
623 break;
624 }
625 continue;
626 }
627
628 MSG(" %d) %s (%s)%s", i + 1, sessions[i].name, sessions[i].path,
629 active_string(sessions[i].enabled));
630
631 if (session_found) {
632 break;
633 }
634 }
635
636 free(sessions);
637
638 if (!session_found && session_name != NULL) {
639 ERR("Session '%s' not found", session_name);
640 ret = CMD_ERROR;
641 goto error;
642 }
643
644 if (session_name == NULL) {
645 MSG("\nUse lttng list <session_name> for more details");
646 }
647
648 end:
649 return CMD_SUCCESS;
650
651 error:
652 return ret;
653 }
654
655 /*
656 * List available domain(s) for a session.
657 */
658 static int list_domains(const char *session_name)
659 {
660 int i, count, ret = CMD_SUCCESS;
661 struct lttng_domain *domains = NULL;
662
663 MSG("Domains:\n-------------");
664
665 count = lttng_list_domains(session_name, &domains);
666 if (count < 0) {
667 ret = count;
668 goto error;
669 } else if (count == 0) {
670 MSG(" None");
671 goto end;
672 }
673
674 for (i = 0; i < count; i++) {
675 switch (domains[i].type) {
676 case LTTNG_DOMAIN_KERNEL:
677 MSG(" - Kernel");
678 break;
679 case LTTNG_DOMAIN_UST:
680 MSG(" - UST global");
681 break;
682 default:
683 break;
684 }
685 }
686
687 end:
688 free(domains);
689
690 error:
691 return ret;
692 }
693
694 /*
695 * The 'list <options>' first level command
696 */
697 int cmd_list(int argc, const char **argv)
698 {
699 int opt, ret = CMD_SUCCESS;
700 const char *session_name;
701 static poptContext pc;
702 struct lttng_domain domain;
703 struct lttng_domain *domains = NULL;
704
705 memset(&domain, 0, sizeof(domain));
706
707 if (argc < 1) {
708 usage(stderr);
709 ret = CMD_ERROR;
710 goto end;
711 }
712
713 pc = poptGetContext(NULL, argc, argv, long_options, 0);
714 poptReadDefaultConfig(pc, 0);
715
716 while ((opt = poptGetNextOpt(pc)) != -1) {
717 switch (opt) {
718 case OPT_HELP:
719 usage(stdout);
720 goto end;
721 case OPT_USERSPACE:
722 opt_userspace = 1;
723 break;
724 case OPT_LIST_OPTIONS:
725 list_cmd_options(stdout, long_options);
726 goto end;
727 default:
728 usage(stderr);
729 ret = CMD_UNDEFINED;
730 goto end;
731 }
732 }
733
734 /* Get session name (trailing argument) */
735 session_name = poptGetArg(pc);
736 DBG2("Session name: %s", session_name);
737
738 if (opt_kernel) {
739 domain.type = LTTNG_DOMAIN_KERNEL;
740 } else if (opt_userspace) {
741 DBG2("Listing userspace global domain");
742 domain.type = LTTNG_DOMAIN_UST;
743 }
744
745 if (opt_kernel || opt_userspace) {
746 handle = lttng_create_handle(session_name, &domain);
747 if (handle == NULL) {
748 ret = CMD_FATAL;
749 goto end;
750 }
751 }
752
753 if (session_name == NULL) {
754 if (!opt_kernel && !opt_userspace) {
755 ret = list_sessions(NULL);
756 if (ret != 0) {
757 goto end;
758 }
759 }
760 if (opt_kernel) {
761 ret = list_kernel_events();
762 if (ret < 0) {
763 ret = CMD_ERROR;
764 goto end;
765 }
766 }
767 if (opt_userspace) {
768 if (opt_fields) {
769 ret = list_ust_event_fields();
770 } else {
771 ret = list_ust_events();
772 }
773 if (ret < 0) {
774 ret = CMD_ERROR;
775 goto end;
776 }
777 }
778 } else {
779 /* List session attributes */
780 ret = list_sessions(session_name);
781 if (ret != 0) {
782 goto end;
783 }
784
785 /* Domain listing */
786 if (opt_domain) {
787 ret = list_domains(session_name);
788 goto end;
789 }
790
791 if (opt_kernel) {
792 /* Channel listing */
793 ret = list_channels(opt_channel);
794 if (ret < 0) {
795 goto end;
796 }
797 } else {
798 int i, nb_domain;
799
800 /* We want all domain(s) */
801 nb_domain = lttng_list_domains(session_name, &domains);
802 if (nb_domain < 0) {
803 ret = nb_domain;
804 goto end;
805 }
806
807 for (i = 0; i < nb_domain; i++) {
808 switch (domains[i].type) {
809 case LTTNG_DOMAIN_KERNEL:
810 MSG("=== Domain: Kernel ===\n");
811 break;
812 case LTTNG_DOMAIN_UST:
813 MSG("=== Domain: UST global ===\n");
814 break;
815 default:
816 MSG("=== Domain: Unimplemented ===\n");
817 break;
818 }
819
820 /* Clean handle before creating a new one */
821 if (handle) {
822 lttng_destroy_handle(handle);
823 }
824
825 handle = lttng_create_handle(session_name, &domains[i]);
826 if (handle == NULL) {
827 ret = CMD_FATAL;
828 goto end;
829 }
830
831 ret = list_channels(opt_channel);
832 if (ret < 0) {
833 goto end;
834 }
835 }
836 }
837 }
838
839 end:
840 free(domains);
841 if (handle) {
842 lttng_destroy_handle(handle);
843 }
844
845 poptFreeContext(pc);
846 return ret;
847 }
This page took 0.045837 seconds and 5 git commands to generate.