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 as published by
6 * as published by the Free Software Foundation; only version 2
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 #include <sys/types.h>
30 #include <lttng/lttng.h>
31 #include <common/error.h>
36 static char *progname
;
40 static int opt_no_sessiond
;
41 static char *opt_sessiond_path
;
42 static pid_t sessiond_pid
;
43 static volatile int recv_child_signal
;
51 /* Getopt options. No first level command. */
52 static struct option long_options
[] = {
53 {"help", 0, NULL
, 'h'},
54 {"group", 1, NULL
, 'g'},
55 {"verbose", 0, NULL
, 'v'},
56 {"quiet", 0, NULL
, 'q'},
57 {"no-sessiond", 0, NULL
, 'n'},
58 {"sessiond-path", 1, NULL
, OPT_SESSION_PATH
},
59 {"list-options", 0, NULL
, OPT_DUMP_OPTIONS
},
60 {"list-commands", 0, NULL
, OPT_DUMP_COMMANDS
},
64 /* First level command */
65 static struct cmd_struct commands
[] = {
67 { "create", cmd_create
},
68 { "destroy", cmd_destroy
},
69 { "start", cmd_start
},
71 { "enable-event", cmd_enable_events
},
72 { "disable-event", cmd_disable_events
},
73 { "enable-channel", cmd_enable_channels
},
74 { "disable-channel", cmd_disable_channels
},
75 { "add-context", cmd_add_context
},
76 { "set-session", cmd_set_session
},
77 { "version", cmd_version
},
78 { "calibrate", cmd_calibrate
},
79 { NULL
, NULL
} /* Array closure */
82 static void usage(FILE *ofp
)
84 fprintf(ofp
, "LTTng Trace Control " VERSION
"\n\n");
85 fprintf(ofp
, "usage: lttng [OPTIONS] <COMMAND>\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 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");
112 fprintf(ofp
, "Please see the lttng(1) man page for full documentation.\n");
113 fprintf(ofp
, "See http://lttng.org for updates, bug reports and news.\n");
119 * List options line by line. This is mostly for bash auto completion and to
120 * avoid difficult parsing.
122 static void list_options(FILE *ofp
)
125 struct option
*option
= NULL
;
127 option
= &long_options
[i
];
128 while (option
->name
!= NULL
) {
129 fprintf(ofp
, "--%s\n", option
->name
);
131 if (isprint(option
->val
)) {
132 fprintf(ofp
, "-%c\n", option
->val
);
136 option
= &long_options
[i
];
143 * List commands line by line. This is mostly for bash auto completion and to
144 * avoid difficult parsing.
146 static void list_commands(FILE *ofp
)
149 struct cmd_struct
*cmd
= NULL
;
152 while (cmd
->name
!= NULL
) {
153 fprintf(ofp
, "%s\n", cmd
->name
);
162 static void clean_exit(int code
)
171 * Signal handler for the daemon
173 static void sighandler(int sig
)
179 DBG("SIGTERM caugth");
180 clean_exit(EXIT_FAILURE
);
183 DBG("SIGCHLD caugth");
184 waitpid(sessiond_pid
, &status
, 0);
185 recv_child_signal
= 1;
186 /* Indicate that the session daemon died */
188 ERR("Session daemon died (exit status %d)", WEXITSTATUS(status
));
192 recv_child_signal
= 1;
193 DBG("SIGUSR1 caugth");
196 DBG("Unknown signal %d caugth", sig
);
206 * Setup signal handler for SIGCHLD and SIGTERM.
208 static int set_signal_handler(void)
214 if ((ret
= sigemptyset(&sigset
)) < 0) {
215 perror("sigemptyset");
219 sa
.sa_handler
= sighandler
;
222 if ((ret
= sigaction(SIGUSR1
, &sa
, NULL
)) < 0) {
227 if ((ret
= sigaction(SIGTERM
, &sa
, NULL
)) < 0) {
232 if ((ret
= sigaction(SIGCHLD
, &sa
, NULL
)) < 0) {
244 * Handle the full argv list of a first level command. Will find the command
245 * in the global commands array and call the function callback associated.
247 * If command not found, return -1
248 * else, return function command error code.
250 static int handle_command(int argc
, char **argv
)
253 struct cmd_struct
*cmd
;
261 while (cmd
->func
!= NULL
) {
263 if (strcmp(argv
[0], cmd
->name
) == 0) {
264 ret
= cmd
->func(argc
, (const char**) argv
);
267 WARN("Some command(s) went wrong");
270 ERR("Command error");
273 ERR("Undefined command");
285 /* Command not found */
295 * Spawn a session daemon by forking and execv.
297 static int spawn_sessiond(char *pathname
)
302 MSG("Spawning a session daemon");
303 recv_child_signal
= 0;
307 * Spawn session daemon and tell
308 * it to signal us when ready.
310 execlp(pathname
, "lttng-sessiond", "--sig-parent", "--quiet", NULL
);
311 /* execlp only returns if error happened */
312 if (errno
== ENOENT
) {
313 ERR("No session daemon found. Use --sessiond-path.");
317 kill(getppid(), SIGTERM
); /* wake parent */
319 } else if (pid
> 0) {
322 * Wait for lttng-sessiond to start. We need to use a flag to check if
323 * the signal has been sent to us, because the child can be scheduled
324 * before the parent, and thus send the signal before this check. In
325 * the signal handler, we set the recv_child_signal flag, so anytime we
326 * check it after the fork is fine. Note that sleep() is interrupted
327 * before the 1 second delay as soon as the signal is received, so it
328 * will not cause visible delay for the user.
330 while (!recv_child_signal
) {
334 * The signal handler will nullify sessiond_pid on SIGCHLD
353 * Check if the session daemon is available using
354 * the liblttngctl API for the check. If not, try to
357 static int check_sessiond(void)
360 char *pathname
= NULL
, *alloc_pathname
= NULL
;
362 ret
= lttng_session_daemon_alive();
363 if (ret
== 0) { /* not alive */
364 /* Try command line option path */
365 if (opt_sessiond_path
!= NULL
) {
366 ret
= access(opt_sessiond_path
, F_OK
| X_OK
);
368 ERR("No such file or access denied: %s", opt_sessiond_path
);
371 pathname
= opt_sessiond_path
;
373 /* Try LTTNG_SESSIOND_PATH env variable */
374 pathname
= getenv(DEFAULT_SESSIOND_PATH_ENV
);
377 /* Let's rock and roll */
378 if (pathname
== NULL
) {
379 ret
= asprintf(&alloc_pathname
, INSTALL_BIN_PATH
"/lttng-sessiond");
381 perror("asprintf spawn sessiond");
384 pathname
= alloc_pathname
;
387 ret
= spawn_sessiond(pathname
);
388 free(alloc_pathname
);
390 ERR("Problem occurred when starting %s", pathname
);
400 * Check args for specific options that *must* not trigger a session daemon
403 * Return 1 if match else 0.
405 static int check_args_no_sessiond(int argc
, char **argv
)
409 for (i
= 0; i
< argc
; i
++) {
410 if ((strncmp(argv
[i
], "-h", sizeof("-h")) == 0) ||
411 strncmp(argv
[i
], "--h", sizeof("--h")) == 0 ||
412 strncmp(argv
[i
], "--list-options", sizeof("--list-options")) == 0 ||
413 strncmp(argv
[i
], "--list-commands", sizeof("--list-commands")) == 0) {
422 * Parse command line arguments.
424 * Return 0 if OK, else -1
426 static int parse_args(int argc
, char **argv
)
432 clean_exit(EXIT_FAILURE
);
435 while ((opt
= getopt_long(argc
, argv
, "+hnvqg:", long_options
, NULL
)) != -1) {
447 lttng_set_tracing_group(optarg
);
452 case OPT_SESSION_PATH
:
453 opt_sessiond_path
= strdup(optarg
);
455 case OPT_DUMP_OPTIONS
:
456 list_options(stdout
);
459 case OPT_DUMP_COMMANDS
:
460 list_commands(stdout
);
469 /* If both options are specified, quiet wins */
470 if (opt_verbose
&& opt_quiet
) {
474 /* Spawn session daemon if needed */
475 if (opt_no_sessiond
== 0 && check_args_no_sessiond(argc
, argv
) == 0 &&
476 (check_sessiond() < 0)) {
480 /* No leftovers, print usage and quit */
481 if ((argc
- optind
) == 0) {
487 * Handle leftovers which is a first level command with the trailing
490 ret
= handle_command(argc
- optind
, argv
+ optind
);
495 ERR("%s", lttng_strerror(ret
));
511 int main(int argc
, char *argv
[])
515 progname
= argv
[0] ? argv
[0] : "lttng";
517 /* For Mathieu Desnoyers aka Dr Tracing */
518 if (strncmp(progname
, "drtrace", 7) == 0 ||
519 strncmp("compudj", getenv("USER"), 7) == 0) {
520 MSG("%c[%d;%dmWelcome back Dr Tracing!%c[%dm\n", 27,1,33,27,0);
523 ret
= set_signal_handler();
528 ret
= parse_args(argc
, argv
);
530 clean_exit(EXIT_FAILURE
);