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>
29 #include <lttng/lttng.h>
30 #include <common/error.h>
31 #include <common/compat/getenv.h>
32 #include <common/utils.h>
37 static const char *help_msg
=
38 #ifdef LTTNG_EMBED_HELP
46 static char *progname
;
48 char *opt_sessiond_path
;
50 char *opt_relayd_path
;
59 /* Getopt options. No first level command. */
60 static struct option long_options
[] = {
61 {"version", 0, NULL
, 'V'},
62 {"help", 0, NULL
, 'h'},
63 {"group", 1, NULL
, 'g'},
64 {"verbose", 0, NULL
, 'v'},
65 {"quiet", 0, NULL
, 'q'},
67 {"no-sessiond", 0, NULL
, 'n'},
68 {"sessiond-path", 1, NULL
, OPT_SESSION_PATH
},
69 {"relayd-path", 1, NULL
, OPT_RELAYD_PATH
},
70 {"list-options", 0, NULL
, OPT_DUMP_OPTIONS
},
71 {"list-commands", 0, NULL
, OPT_DUMP_COMMANDS
},
75 /* First level command */
76 static struct cmd_struct commands
[] = {
77 { "add-context", cmd_add_context
},
78 { "create", cmd_create
},
79 { "destroy", cmd_destroy
},
80 { "disable-channel", cmd_disable_channels
},
81 { "disable-event", cmd_disable_events
},
82 { "enable-channel", cmd_enable_channels
},
83 { "enable-event", cmd_enable_events
},
87 { "metadata", cmd_metadata
},
88 { "regenerate", cmd_regenerate
},
89 { "rotate", cmd_rotate
},
90 { "enable-rotation", cmd_enable_rotation
},
91 { "disable-rotation", cmd_disable_rotation
},
93 { "set-session", cmd_set_session
},
94 { "snapshot", cmd_snapshot
},
95 { "start", cmd_start
},
96 { "status", cmd_status
},
98 { "track", cmd_track
},
99 { "untrack", cmd_untrack
},
100 { "version", cmd_version
},
102 { NULL
, NULL
} /* Array closure */
105 static void version(FILE *ofp
)
107 fprintf(ofp
, "%s (LTTng Trace Control) " VERSION
" - " VERSION_NAME
"%s%s\n",
109 GIT_VERSION
[0] == '\0' ? "" : " - " GIT_VERSION
,
110 EXTRA_VERSION_NAME
[0] == '\0' ? "" : " - " EXTRA_VERSION_NAME
);
114 * Find the MI output type enum from a string. This function is for the support
115 * of machine interface output.
117 static int mi_output_type(const char *output_type
)
121 if (!strncasecmp("xml", output_type
, 3)) {
124 /* Invalid output format */
125 ERR("MI output format not supported");
126 ret
= -LTTNG_ERR_MI_OUTPUT_TYPE
;
135 * List options line by line. This is mostly for bash auto completion and to
136 * avoid difficult parsing.
138 static void list_options(FILE *ofp
)
141 struct option
*option
= NULL
;
143 option
= &long_options
[i
];
144 while (option
->name
!= NULL
) {
145 fprintf(ofp
, "--%s\n", option
->name
);
147 if (isprint(option
->val
)) {
148 fprintf(ofp
, "-%c\n", option
->val
);
152 option
= &long_options
[i
];
159 static void clean_exit(int code
)
168 * Signal handler for the daemon
170 static void sighandler(int sig
)
174 DBG("SIGTERM caught");
175 clean_exit(EXIT_FAILURE
);
178 DBG("Unknown signal %d caught", sig
);
188 * Setup signal handler for SIGCHLD and SIGTERM.
190 static int set_signal_handler(void)
196 if ((ret
= sigemptyset(&sigset
)) < 0) {
197 PERROR("sigemptyset");
201 sa
.sa_handler
= sighandler
;
205 if ((ret
= sigaction(SIGTERM
, &sa
, NULL
)) < 0) {
217 * Handle the full argv list of a first level command. Will find the command
218 * in the global commands array and call the function callback associated.
220 * If command not found, return -1
221 * else, return function command error code.
223 static int handle_command(int argc
, char **argv
)
226 struct cmd_struct
*cmd
;
233 /* Special case for help command which needs the commands array */
234 if (strcmp(argv
[0], "help") == 0) {
235 ret
= cmd_help(argc
, (const char**) argv
, commands
);
240 while (cmd
->name
!= NULL
) {
242 if (strcmp(argv
[0], cmd
->name
) == 0) {
243 ret
= cmd
->func(argc
, (const char**) argv
);
250 /* Command not found */
257 static bool command_exists(const char *command
)
259 const struct cmd_struct
*cmd
= commands
;
262 while (cmd
->name
!= NULL
) {
263 if (!strcmp(command
, cmd
->name
)) {
274 static void show_basic_help(void)
276 puts("Usage: lttng [--group=GROUP] [--mi=TYPE] [--no-sessiond | --sessiond-path=PATH]");
277 puts(" [--quiet | -v | -vv | -vvv] COMMAND [COMMAND OPTIONS]");
279 puts("Available commands:");
281 puts("Tracing sessions:");
282 puts(" create " CONFIG_CMD_DESCR_CREATE
);
283 puts(" destroy " CONFIG_CMD_DESCR_DESTROY
);
284 puts(" load " CONFIG_CMD_DESCR_LOAD
);
285 puts(" regenerate " CONFIG_CMD_DESCR_REGENERATE
);
286 puts(" save " CONFIG_CMD_DESCR_SAVE
);
287 puts(" set-session " CONFIG_CMD_DESCR_SET_SESSION
);
290 puts(" add-context " CONFIG_CMD_DESCR_ADD_CONTEXT
);
291 puts(" disable-channel " CONFIG_CMD_DESCR_DISABLE_CHANNEL
);
292 puts(" enable-channel " CONFIG_CMD_DESCR_ENABLE_CHANNEL
);
294 puts("Event rules:");
295 puts(" disable-event " CONFIG_CMD_DESCR_DISABLE_EVENT
);
296 puts(" enable-event " CONFIG_CMD_DESCR_ENABLE_EVENT
);
299 puts(" list " CONFIG_CMD_DESCR_LIST
);
300 puts(" status " CONFIG_CMD_DESCR_STATUS
);
303 puts(" snapshot " CONFIG_CMD_DESCR_SNAPSHOT
);
304 puts(" start " CONFIG_CMD_DESCR_START
);
305 puts(" stop " CONFIG_CMD_DESCR_STOP
);
307 puts("Tracing session rotation:");
308 puts(" disable-rotation " CONFIG_CMD_DESCR_DISABLE_ROTATION
);
309 puts(" enable-rotation " CONFIG_CMD_DESCR_ENABLE_ROTATION
);
310 puts(" rotate " CONFIG_CMD_DESCR_ROTATE
);
312 puts("Resource tracking:");
313 puts(" track " CONFIG_CMD_DESCR_TRACK
);
314 puts(" untrack " CONFIG_CMD_DESCR_UNTRACK
);
316 puts("Miscellaneous:");
317 puts(" help " CONFIG_CMD_DESCR_HELP
);
318 puts(" version " CONFIG_CMD_DESCR_VERSION
);
319 puts(" view " CONFIG_CMD_DESCR_VIEW
);
321 puts("Run `lttng help COMMAND` or `lttng COMMAND --help` to get help with");
322 puts("command COMMAND.");
324 puts("See `man lttng` for more help with the lttng command.");
328 * Parse command line arguments.
330 * Return 0 if OK, else -1
332 static int parse_args(int argc
, char **argv
)
336 if (lttng_is_setuid_setgid()) {
337 ERR("'%s' is not allowed to be executed as a setuid/setgid binary for security reasons. Aborting.", argv
[0]);
338 clean_exit(EXIT_FAILURE
);
343 clean_exit(EXIT_FAILURE
);
346 while ((opt
= getopt_long(argc
, argv
, "+Vhnvqg:m:", long_options
, NULL
)) != -1) {
353 ret
= utils_show_help(1, "lttng", help_msg
);
355 ERR("Cannot show --help for `lttng`");
360 /* There is only 3 possible level of verbosity. (-vvv) */
361 if (lttng_opt_verbose
< 3) {
362 lttng_opt_verbose
+= 1;
369 lttng_opt_mi
= mi_output_type(optarg
);
370 if (lttng_opt_mi
< 0) {
376 lttng_set_tracing_group(optarg
);
381 case OPT_SESSION_PATH
:
382 free(opt_sessiond_path
);
383 opt_sessiond_path
= strdup(optarg
);
384 if (!opt_sessiond_path
) {
389 case OPT_RELAYD_PATH
:
390 free(opt_relayd_path
);
391 opt_relayd_path
= strdup(optarg
);
392 if (!opt_relayd_path
) {
397 case OPT_DUMP_OPTIONS
:
398 list_options(stdout
);
401 case OPT_DUMP_COMMANDS
:
402 list_commands(commands
, stdout
);
411 /* If both options are specified, quiet wins */
412 if (lttng_opt_verbose
&& lttng_opt_quiet
) {
413 lttng_opt_verbose
= 0;
416 /* No leftovers, quit */
417 if ((argc
- optind
) == 0) {
423 * Handle leftovers which is a first level command with the trailing
426 ret
= handle_command(argc
- optind
, argv
+ optind
);
432 if (!command_exists(*(argv
+ optind
))) {
433 MSG("lttng: %s is not an lttng command. See 'lttng --help'.",
436 ERR("Unrecognized argument used with \'%s\' command",
441 case CMD_UNSUPPORTED
:
464 int main(int argc
, char *argv
[])
468 progname
= argv
[0] ? argv
[0] : "lttng";
470 ret
= set_signal_handler();
475 ret
= parse_args(argc
, argv
);