2 * Copyright (c) 2011 David Goulet <david.goulet@polymtl.ca>
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.
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.
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.
24 #include <sys/types.h>
30 #include <lttng/lttng.h>
31 #include <common/error.h>
36 static char *progname
;
37 static int opt_no_sessiond
;
38 static char *opt_sessiond_path
;
39 static pid_t sessiond_pid
;
40 static volatile int recv_child_signal
;
48 /* Getopt options. No first level command. */
49 static struct option long_options
[] = {
50 {"help", 0, NULL
, 'h'},
51 {"group", 1, NULL
, 'g'},
52 {"verbose", 0, NULL
, 'v'},
53 {"quiet", 0, NULL
, 'q'},
54 {"no-sessiond", 0, NULL
, 'n'},
55 {"sessiond-path", 1, NULL
, OPT_SESSION_PATH
},
56 {"list-options", 0, NULL
, OPT_DUMP_OPTIONS
},
57 {"list-commands", 0, NULL
, OPT_DUMP_COMMANDS
},
61 /* First level command */
62 static struct cmd_struct commands
[] = {
64 { "create", cmd_create
},
65 { "destroy", cmd_destroy
},
66 { "start", cmd_start
},
68 { "enable-event", cmd_enable_events
},
69 { "disable-event", cmd_disable_events
},
70 { "enable-channel", cmd_enable_channels
},
71 { "disable-channel", cmd_disable_channels
},
72 { "add-context", cmd_add_context
},
73 { "set-session", cmd_set_session
},
74 { "version", cmd_version
},
75 { "calibrate", cmd_calibrate
},
77 { "enable-consumer", cmd_enable_consumer
}, /* OBSELETE */
78 { "disable-consumer", cmd_disable_consumer
}, /*OBSELETE */
79 { NULL
, NULL
} /* Array closure */
82 static void usage(FILE *ofp
)
84 fprintf(ofp
, "LTTng Trace Control " VERSION
" - " VERSION_NAME
"\n\n");
85 fprintf(ofp
, "usage: lttng [OPTIONS] <COMMAND> [<ARGS>]\n");
87 fprintf(ofp
, "Options:\n");
88 fprintf(ofp
, " -h, --help Show this help\n");
89 fprintf(ofp
, " --list-options Simple listing of lttng options\n");
90 fprintf(ofp
, " --list-commands Simple listing of lttng commands\n");
91 fprintf(ofp
, " -v, --verbose Increase verbosity\n");
92 fprintf(ofp
, " -q, --quiet Quiet mode\n");
93 fprintf(ofp
, " -g, --group NAME Unix tracing group name. (default: tracing)\n");
94 fprintf(ofp
, " -n, --no-sessiond Don't spawn a session daemon\n");
95 fprintf(ofp
, " --sessiond-path PATH Session daemon full path\n");
97 fprintf(ofp
, "Commands:\n");
98 fprintf(ofp
, " add-context Add context to event and/or channel\n");
99 fprintf(ofp
, " calibrate Quantify LTTng overhead\n");
100 fprintf(ofp
, " create Create tracing session\n");
101 fprintf(ofp
, " destroy Tear down tracing session\n");
102 fprintf(ofp
, " enable-channel Enable tracing channel\n");
103 fprintf(ofp
, " enable-event Enable tracing event\n");
104 fprintf(ofp
, " disable-channel Disable tracing channel\n");
105 fprintf(ofp
, " disable-event Disable tracing event\n");
106 fprintf(ofp
, " list List possible tracing options\n");
107 fprintf(ofp
, " set-session Set current session name\n");
108 fprintf(ofp
, " start Start tracing\n");
109 fprintf(ofp
, " stop Stop tracing\n");
110 fprintf(ofp
, " version Show version information\n");
111 fprintf(ofp
, " view Start trace viewer\n");
113 fprintf(ofp
, "Each command also has its own -h, --help option.\n");
115 fprintf(ofp
, "Please see the lttng(1) man page for full documentation.\n");
116 fprintf(ofp
, "See http://lttng.org for updates, bug reports and news.\n");
122 * List options line by line. This is mostly for bash auto completion and to
123 * avoid difficult parsing.
125 static void list_options(FILE *ofp
)
128 struct option
*option
= NULL
;
130 option
= &long_options
[i
];
131 while (option
->name
!= NULL
) {
132 fprintf(ofp
, "--%s\n", option
->name
);
134 if (isprint(option
->val
)) {
135 fprintf(ofp
, "-%c\n", option
->val
);
139 option
= &long_options
[i
];
146 * List commands line by line. This is mostly for bash auto completion and to
147 * avoid difficult parsing.
149 static void list_commands(FILE *ofp
)
152 struct cmd_struct
*cmd
= NULL
;
155 while (cmd
->name
!= NULL
) {
156 fprintf(ofp
, "%s\n", cmd
->name
);
165 static void clean_exit(int code
)
174 * Signal handler for the daemon
176 static void sighandler(int sig
)
182 DBG("SIGTERM caught");
183 clean_exit(EXIT_FAILURE
);
186 DBG("SIGCHLD caught");
187 waitpid(sessiond_pid
, &status
, 0);
188 recv_child_signal
= 1;
189 /* Indicate that the session daemon died */
191 ERR("Session daemon died (exit status %d)", WEXITSTATUS(status
));
195 recv_child_signal
= 1;
196 DBG("SIGUSR1 caught");
199 DBG("Unknown signal %d caught", sig
);
209 * Setup signal handler for SIGCHLD and SIGTERM.
211 static int set_signal_handler(void)
217 if ((ret
= sigemptyset(&sigset
)) < 0) {
218 perror("sigemptyset");
222 sa
.sa_handler
= sighandler
;
225 if ((ret
= sigaction(SIGUSR1
, &sa
, NULL
)) < 0) {
230 if ((ret
= sigaction(SIGTERM
, &sa
, NULL
)) < 0) {
235 if ((ret
= sigaction(SIGCHLD
, &sa
, NULL
)) < 0) {
247 * Handle the full argv list of a first level command. Will find the command
248 * in the global commands array and call the function callback associated.
250 * If command not found, return -1
251 * else, return function command error code.
253 static int handle_command(int argc
, char **argv
)
256 struct cmd_struct
*cmd
;
264 while (cmd
->func
!= NULL
) {
266 if (strcmp(argv
[0], cmd
->name
) == 0) {
267 ret
= cmd
->func(argc
, (const char**) argv
);
274 /* Command not found */
284 * Spawn a session daemon by forking and execv.
286 static int spawn_sessiond(char *pathname
)
291 MSG("Spawning a session daemon");
292 recv_child_signal
= 0;
296 * Spawn session daemon and tell
297 * it to signal us when ready.
299 execlp(pathname
, "lttng-sessiond", "--sig-parent", "--quiet", NULL
);
300 /* execlp only returns if error happened */
301 if (errno
== ENOENT
) {
302 ERR("No session daemon found. Use --sessiond-path.");
306 kill(getppid(), SIGTERM
); /* wake parent */
308 } else if (pid
> 0) {
311 * Wait for lttng-sessiond to start. We need to use a flag to check if
312 * the signal has been sent to us, because the child can be scheduled
313 * before the parent, and thus send the signal before this check. In
314 * the signal handler, we set the recv_child_signal flag, so anytime we
315 * check it after the fork is fine. Note that sleep() is interrupted
316 * before the 1 second delay as soon as the signal is received, so it
317 * will not cause visible delay for the user.
319 while (!recv_child_signal
) {
323 * The signal handler will nullify sessiond_pid on SIGCHLD
342 * Check if the session daemon is available using
343 * the liblttngctl API for the check. If not, try to
346 static int check_sessiond(void)
349 char *pathname
= NULL
, *alloc_pathname
= NULL
;
351 ret
= lttng_session_daemon_alive();
352 if (ret
== 0) { /* not alive */
353 /* Try command line option path */
354 if (opt_sessiond_path
!= NULL
) {
355 ret
= access(opt_sessiond_path
, F_OK
| X_OK
);
357 ERR("No such file or access denied: %s", opt_sessiond_path
);
360 pathname
= opt_sessiond_path
;
362 /* Try LTTNG_SESSIOND_PATH env variable */
363 pathname
= getenv(DEFAULT_SESSIOND_PATH_ENV
);
366 /* Let's rock and roll */
367 if (pathname
== NULL
) {
368 ret
= asprintf(&alloc_pathname
, INSTALL_BIN_PATH
"/lttng-sessiond");
370 perror("asprintf spawn sessiond");
373 pathname
= alloc_pathname
;
376 ret
= spawn_sessiond(pathname
);
377 free(alloc_pathname
);
379 ERR("Problem occurred when starting %s", pathname
);
389 * Check args for specific options that *must* not trigger a session daemon
392 * Return 1 if match else 0.
394 static int check_args_no_sessiond(int argc
, char **argv
)
398 for (i
= 0; i
< argc
; i
++) {
399 if ((strncmp(argv
[i
], "-h", sizeof("-h")) == 0) ||
400 strncmp(argv
[i
], "--h", sizeof("--h")) == 0 ||
401 strncmp(argv
[i
], "--list-options", sizeof("--list-options")) == 0 ||
402 strncmp(argv
[i
], "--list-commands", sizeof("--list-commands")) == 0 ||
403 strncmp(argv
[i
], "version", sizeof("version")) == 0 ||
404 strncmp(argv
[i
], "view", sizeof("view")) == 0) {
413 * Parse command line arguments.
415 * Return 0 if OK, else -1
417 static int parse_args(int argc
, char **argv
)
423 clean_exit(EXIT_FAILURE
);
426 while ((opt
= getopt_long(argc
, argv
, "+hnvqg:", long_options
, NULL
)) != -1) {
433 lttng_opt_verbose
+= 1;
439 lttng_set_tracing_group(optarg
);
444 case OPT_SESSION_PATH
:
445 opt_sessiond_path
= strdup(optarg
);
447 case OPT_DUMP_OPTIONS
:
448 list_options(stdout
);
451 case OPT_DUMP_COMMANDS
:
452 list_commands(stdout
);
462 /* If both options are specified, quiet wins */
463 if (lttng_opt_verbose
&& lttng_opt_quiet
) {
464 lttng_opt_verbose
= 0;
467 /* Spawn session daemon if needed */
468 if (opt_no_sessiond
== 0 && check_args_no_sessiond(argc
, argv
) == 0 &&
469 (check_sessiond() < 0)) {
474 /* No leftovers, print usage and quit */
475 if ((argc
- optind
) == 0) {
482 * Handle leftovers which is a first level command with the trailing
485 ret
= handle_command(argc
- optind
, argv
+ optind
);
488 WARN("Some command(s) went wrong");
491 ERR("Command error");
494 ERR("Undefined command");
521 int main(int argc
, char *argv
[])
526 progname
= argv
[0] ? argv
[0] : "lttng";
528 /* For Mathieu Desnoyers a.k.a. Dr. Tracing */
529 user
= getenv("USER");
530 if (user
!= NULL
&& ((strncmp(progname
, "drtrace", 7) == 0 ||
531 strncmp("compudj", user
, 7) == 0))) {
532 MSG("%c[%d;%dmWelcome back Dr Tracing!%c[%dm\n", 27,1,33,27,0);
536 ret
= set_signal_handler();
541 ret
= parse_args(argc
, argv
);