Add short option for no sessiond feature
[lttng-tools.git] / lttng / lttng.c
CommitLineData
826d496d
MD
1/*
2 * Copyright (c) 2011 David Goulet <david.goulet@polymtl.ca>
fac6795d
DG
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 as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
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.
13 *
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.
fac6795d
DG
17 */
18
19#define _GNU_SOURCE
fac6795d 20#include <getopt.h>
f3ed775e 21#include <signal.h>
fac6795d
DG
22#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
fac6795d
DG
25#include <unistd.h>
26
5b97ec60 27#include <lttng/lttng.h>
fac6795d 28
f3ed775e 29#include "cmd.h"
beb8c75a 30#include "conf.h"
fac6795d
DG
31#include "lttngerr.h"
32
33/* Variables */
34static char *progname;
fac6795d 35
f3ed775e
DG
36int opt_quiet;
37int opt_verbose;
38static int opt_no_sessiond;
39static char *opt_sessiond_path;
40
41enum {
f3ed775e 42 OPT_SESSION_PATH,
865abf65
SM
43 OPT_DUMP_OPTIONS,
44 OPT_DUMP_COMMANDS,
f3ed775e
DG
45};
46
47/* Getopt options. No first level command. */
48static struct option long_options[] = {
49 {"help", 0, NULL, 'h'},
50 {"group", 1, NULL, 'g'},
51 {"verbose", 0, NULL, 'v'},
52 {"quiet", 0, NULL, 'q'},
8490ae7b 53 {"no-sessiond", 0, NULL, 'n'},
f3ed775e 54 {"sessiond-path", 1, NULL, OPT_SESSION_PATH},
865abf65
SM
55 {"list-options", 0, NULL, OPT_DUMP_OPTIONS},
56 {"list-commands", 0, NULL, OPT_DUMP_COMMANDS},
f3ed775e
DG
57 {NULL, 0, NULL, 0}
58};
59
60/* First level command */
61static struct cmd_struct commands[] = {
62 { "list", cmd_list},
63 { "create", cmd_create},
64 { "destroy", cmd_destroy},
65 { "add-channel", cmd_add_channel},
66 { "start", cmd_start},
67 { "stop", cmd_stop},
68 { "enable-event", cmd_enable_events},
e953ef25 69 { "disable-event", cmd_disable_events},
d36b8583 70 { "enable-channel", cmd_enable_channels},
26cc6b4e 71 { "disable-channel", cmd_disable_channels},
d65106b1 72 { "add-context", cmd_add_context},
3087ef18 73 { "set-session", cmd_set_session},
eb9cb8b7 74 { "version", cmd_version},
f3ed775e
DG
75 { NULL, NULL} /* Array closure */
76};
77
78static void usage(FILE *ofp)
8c0faa1d 79{
f3ed775e
DG
80 fprintf(ofp, "LTTng Trace Control " VERSION"\n\n");
81 fprintf(ofp, "usage: lttng [options] <command>\n");
82 fprintf(ofp, "\n");
83 fprintf(ofp, "Options:\n");
84 fprintf(ofp, " -h, --help Show this help\n");
85 fprintf(ofp, " -g, --group NAME Unix tracing group name. (default: tracing)\n");
86 fprintf(ofp, " -v, --verbose Verbose mode\n");
87 fprintf(ofp, " -q, --quiet Quiet mode\n");
8490ae7b 88 fprintf(ofp, " -n, --no-sessiond Don't spawn a session daemon\n");
f3ed775e 89 fprintf(ofp, " --sessiond-path Session daemon full path\n");
865abf65
SM
90 fprintf(ofp, " --list-options Simple listing of lttng options\n");
91 fprintf(ofp, " --list-commands Simple listing of lttng commands\n");
f3ed775e
DG
92 fprintf(ofp, "\n");
93 fprintf(ofp, "Commands:\n");
94 fprintf(ofp, " add-channel Add channel to tracer\n");
d65106b1 95 fprintf(ofp, " add-context Add context to event or/and channel\n");
f3ed775e
DG
96 fprintf(ofp, " create Create tracing session\n");
97 fprintf(ofp, " destroy Teardown tracing session\n");
d36b8583 98 fprintf(ofp, " enable-channel Enable tracing channel\n");
26cc6b4e
DG
99 fprintf(ofp, " enable-event Enable tracing event\n");
100 fprintf(ofp, " disable-channel Disable tracing channel\n");
f3ed775e
DG
101 fprintf(ofp, " disable-event Disable tracing event\n");
102 fprintf(ofp, " list List possible tracing options\n");
3087ef18 103 fprintf(ofp, " set-session Set current session name\n");
f3ed775e
DG
104 fprintf(ofp, " start Start tracing\n");
105 fprintf(ofp, " stop Stop tracing\n");
106 fprintf(ofp, " version Show version information\n");
107 fprintf(ofp, "\n");
108 fprintf(ofp, "Please see the lttng(1) man page for full documentation.\n");
109 fprintf(ofp, "See http://lttng.org for updates, bug reports and news.\n");
8c0faa1d
DG
110}
111
865abf65
SM
112/*
113 * list_options
114 *
115 * List options line by line. This is mostly for bash auto completion and to
116 * avoid difficult parsing.
117 */
118static void list_options(FILE *ofp)
119{
120 int i = 0;
121 struct option *option = NULL;
122
123 option = &long_options[i];
124 while (option->name != NULL) {
125 fprintf(ofp, "--%s\n", option->name);
126
127 if (isprint(option->val)) {
128 fprintf(ofp, "-%c\n", option->val);
129 }
130
131 i++;
132 option = &long_options[i];
133 }
134}
135
136/*
137 * list_commands
138 *
139 * List commands line by line. This is mostly for bash auto completion and to
140 * avoid difficult parsing.
141 */
142static void list_commands(FILE *ofp)
143{
144 int i = 0;
145 struct cmd_struct *cmd = NULL;
146
147 cmd = &commands[i];
148 while (cmd->name != NULL) {
149 fprintf(ofp, "%s\n", cmd->name);
150 i++;
151 cmd = &commands[i];
152 }
153}
154
7442b2ba 155/*
f3ed775e 156 * clean_exit
96243366 157 */
f3ed775e 158static void clean_exit(int code)
96243366 159{
f3ed775e
DG
160 DBG("Clean exit");
161 exit(code);
894be886 162}
96243366 163
894be886 164/*
f3ed775e 165 * sighandler
2ef84c95 166 *
f3ed775e 167 * Signal handler for the daemon
2ef84c95 168 */
f3ed775e 169static void sighandler(int sig)
2ef84c95 170{
f3ed775e
DG
171 switch (sig) {
172 case SIGTERM:
173 DBG("SIGTERM catched");
174 clean_exit(EXIT_FAILURE);
175 break;
176 case SIGCHLD:
177 /* Notify is done */
178 DBG("SIGCHLD catched");
179 break;
180 default:
181 DBG("Unknown signal %d catched", sig);
182 break;
2ef84c95
DG
183 }
184
f3ed775e 185 return;
2ef84c95
DG
186}
187
188/*
f3ed775e 189 * set_signal_handler
894be886 190 *
f3ed775e 191 * Setup signal handler for SIGCHLD and SIGTERM.
894be886 192 */
f3ed775e 193static int set_signal_handler(void)
894be886 194{
f3ed775e
DG
195 int ret = 0;
196 struct sigaction sa;
197 sigset_t sigset;
33a2b854 198
f3ed775e
DG
199 if ((ret = sigemptyset(&sigset)) < 0) {
200 perror("sigemptyset");
33a2b854
DG
201 goto end;
202 }
203
f3ed775e
DG
204 sa.sa_handler = sighandler;
205 sa.sa_mask = sigset;
206 sa.sa_flags = 0;
207 if ((ret = sigaction(SIGCHLD, &sa, NULL)) < 0) {
208 perror("sigaction");
96243366
DG
209 goto end;
210 }
211
f3ed775e
DG
212 if ((ret = sigaction(SIGTERM, &sa, NULL)) < 0) {
213 perror("sigaction");
214 goto end;
894be886
DG
215 }
216
96243366 217end:
57167058
DG
218 return ret;
219}
220
fac6795d 221/*
f3ed775e 222 * handle_command
fac6795d 223 *
f3ed775e
DG
224 * Handle the full argv list of a first level command. Will find the command
225 * in the global commands array and call the function callback associated.
1c9f7941 226 *
f3ed775e
DG
227 * If command not found, return -1
228 * else, return function command error code.
1c9f7941 229 */
f3ed775e 230static int handle_command(int argc, char **argv)
1c9f7941 231{
f3ed775e
DG
232 int i = 0, ret;
233 struct cmd_struct *cmd;
1c9f7941 234
f3ed775e
DG
235 if (*argv == NULL) {
236 ret = CMD_SUCCESS;
47b74d63 237 goto end;
1c9f7941
DG
238 }
239
f3ed775e
DG
240 cmd = &commands[i];
241 while (cmd->func != NULL) {
242 /* Find command */
243 if (strcmp(argv[0], cmd->name) == 0) {
244 ret = cmd->func(argc, (const char**) argv);
245 switch (ret) {
246 case CMD_ERROR:
247 ERR("Command error");
248 break;
249 case CMD_NOT_IMPLEMENTED:
250 ERR("Options not implemented");
251 break;
252 case CMD_UNDEFINED:
253 ERR("Undefined command");
254 break;
255 case CMD_FATAL:
256 ERR("Fatal error");
257 break;
258 }
259 goto end;
894be886 260 }
f3ed775e
DG
261 i++;
262 cmd = &commands[i];
894be886
DG
263 }
264
f3ed775e
DG
265 /* Command not found */
266 ret = -1;
894be886
DG
267
268end:
f3ed775e 269 return ret;
8548ff30
DG
270}
271
5b8719f5
DG
272/*
273 * spawn_sessiond
274 *
275 * Spawn a session daemon by forking and execv.
276 */
277static int spawn_sessiond(char *pathname)
278{
279 int ret = 0;
280 pid_t pid;
281
f3ed775e 282 MSG("Spawning a session daemon");
5b8719f5
DG
283 pid = fork();
284 if (pid == 0) {
5e16da05
MD
285 /*
286 * Spawn session daemon and tell
5b8719f5
DG
287 * it to signal us when ready.
288 */
5e16da05
MD
289 execlp(pathname, "ltt-sessiond", "--sig-parent", "--quiet", NULL);
290 /* execlp only returns if error happened */
291 if (errno == ENOENT) {
292 ERR("No session daemon found. Use --sessiond-path.");
293 } else {
294 perror("execlp");
5b8719f5 295 }
5e16da05
MD
296 kill(getppid(), SIGTERM); /* unpause parent */
297 exit(EXIT_FAILURE);
5b8719f5
DG
298 } else if (pid > 0) {
299 /* Wait for ltt-sessiond to start */
300 pause();
301 goto end;
302 } else {
303 perror("fork");
304 ret = -1;
305 goto end;
306 }
307
308end:
309 return ret;
310}
311
fac6795d 312/*
f3ed775e 313 * check_sessiond
fac6795d
DG
314 *
315 * Check if the session daemon is available using
5b8719f5
DG
316 * the liblttngctl API for the check. If not, try to
317 * spawn a daemon.
fac6795d 318 */
f3ed775e 319static int check_sessiond(void)
fac6795d
DG
320{
321 int ret;
5e16da05 322 char *pathname = NULL, *alloc_pathname = NULL;
fac6795d 323
947308c4
DG
324 ret = lttng_session_daemon_alive();
325 if (ret == 0) { /* not alive */
5b8719f5
DG
326 /* Try command line option path */
327 if (opt_sessiond_path != NULL) {
328 ret = access(opt_sessiond_path, F_OK | X_OK);
329 if (ret < 0) {
330 ERR("No such file: %s", opt_sessiond_path);
331 goto end;
332 }
333 pathname = opt_sessiond_path;
334 } else {
335 /* Try LTTNG_SESSIOND_PATH env variable */
e8f07c63 336 pathname = getenv(LTTNG_SESSIOND_PATH_ENV);
5b8719f5
DG
337 }
338
339 /* Let's rock and roll */
340 if (pathname == NULL) {
5e16da05 341 ret = asprintf(&alloc_pathname, "ltt-sessiond");
5b8719f5
DG
342 if (ret < 0) {
343 goto end;
344 }
5e16da05 345 pathname = alloc_pathname;
5b8719f5
DG
346 }
347
348 ret = spawn_sessiond(pathname);
5e16da05 349 free(alloc_pathname);
5b8719f5
DG
350 if (ret < 0) {
351 ERR("Problem occurs when starting %s", pathname);
352 goto end;
353 }
fac6795d
DG
354 }
355
5b8719f5 356end:
fac6795d
DG
357 return ret;
358}
359
5b8719f5 360/*
f3ed775e 361 * parse_args
5b8719f5 362 *
f3ed775e
DG
363 * Parse command line arguments.
364 * Return 0 if OK, else -1
5b8719f5 365 */
f3ed775e 366static int parse_args(int argc, char **argv)
5b8719f5 367{
f3ed775e 368 int opt, ret;
5b8719f5 369
f3ed775e
DG
370 if (argc < 2) {
371 usage(stderr);
372 clean_exit(EXIT_FAILURE);
5b8719f5
DG
373 }
374
8490ae7b 375 while ((opt = getopt_long(argc, argv, "+hnvqg:", long_options, NULL)) != -1) {
f3ed775e
DG
376 switch (opt) {
377 case 'h':
378 usage(stderr);
379 goto error;
380 case 'v':
381 opt_verbose = 1;
382 break;
383 case 'q':
384 opt_quiet = 1;
385 break;
386 case 'g':
387 lttng_set_tracing_group(optarg);
388 break;
8490ae7b 389 case 'n':
f3ed775e
DG
390 opt_no_sessiond = 1;
391 break;
392 case OPT_SESSION_PATH:
393 opt_sessiond_path = strdup(optarg);
394 break;
865abf65
SM
395 case OPT_DUMP_OPTIONS:
396 list_options(stdout);
397 ret = 0;
398 goto error;
399 case OPT_DUMP_COMMANDS:
400 list_commands(stdout);
401 ret = 0;
402 goto error;
f3ed775e
DG
403 default:
404 usage(stderr);
405 goto error;
406 }
5b8719f5 407 }
fac6795d 408
f3ed775e
DG
409 /* If both options are specified, quiet wins */
410 if (opt_verbose && opt_quiet) {
411 opt_verbose = 0;
5b8719f5
DG
412 }
413
f3ed775e
DG
414 /* Spawn session daemon if needed */
415 if (opt_no_sessiond == 0 && (check_sessiond() < 0)) {
416 goto error;
5b8719f5
DG
417 }
418
f3ed775e
DG
419 /* No leftovers, print usage and quit */
420 if ((argc - optind) == 0) {
421 usage(stderr);
422 goto error;
423 }
7442b2ba 424
f3ed775e
DG
425 /*
426 * Handle leftovers which is a first level command with the trailing
427 * options.
428 */
429 ret = handle_command(argc - optind, argv + optind);
430 if (ret < 0) {
431 if (ret == -1) {
432 usage(stderr);
f3ed775e
DG
433 } else {
434 ERR("%s", lttng_get_readable_code(ret));
435 }
1fff1faa 436 goto error;
96243366
DG
437 }
438
1fff1faa 439 return 0;
f3ed775e
DG
440
441error:
442 return -1;
fac6795d
DG
443}
444
f3ed775e 445
fac6795d 446/*
5b8719f5 447 * main
fac6795d
DG
448 */
449int main(int argc, char *argv[])
450{
451 int ret;
452
453 progname = argv[0] ? argv[0] : "lttng";
454
455 /* For Mathieu Desnoyers aka Dr Tracing */
456 if (strncmp(progname, "drtrace", 7) == 0) {
457 MSG("%c[%d;%dmWelcome back Dr Tracing!%c[%dm\n\n", 27,1,33,27,0);
458 }
459
5b8719f5
DG
460 ret = set_signal_handler();
461 if (ret < 0) {
87378cf5 462 clean_exit(ret);
5b8719f5
DG
463 }
464
f3ed775e 465 ret = parse_args(argc, argv);
1fff1faa
DG
466 if (ret < 0) {
467 clean_exit(EXIT_FAILURE);
468 }
87378cf5 469
fac6795d
DG
470 return 0;
471}
This page took 0.045591 seconds and 4 git commands to generate.