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.
26 #include <sys/types.h>
32 #include <common/mi-lttng.h>
34 #include "../command.h"
37 #include <common/defaults.h>
38 #include <common/sessiond-comm/sessiond-comm.h>
39 #include <common/uri.h>
40 #include <common/utils.h>
41 #include <lttng/snapshot.h>
43 static char *opt_output_path
;
44 static char *opt_session_name
;
46 static char *opt_ctrl_url
;
47 static char *opt_data_url
;
48 static char *opt_shm_path
;
49 static int opt_no_consumer
;
50 static int opt_no_output
;
51 static int opt_snapshot
;
52 static unsigned int opt_live_timer
;
60 static struct mi_writer
*writer
;
62 static struct poptOption long_options
[] = {
63 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
64 {"help", 'h', POPT_ARG_NONE
, NULL
, OPT_HELP
, NULL
, NULL
},
65 {"output", 'o', POPT_ARG_STRING
, &opt_output_path
, 0, NULL
, NULL
},
66 {"list-options", 0, POPT_ARG_NONE
, NULL
, OPT_LIST_OPTIONS
, NULL
, NULL
},
67 {"set-url", 'U', POPT_ARG_STRING
, &opt_url
, 0, 0, 0},
68 {"ctrl-url", 'C', POPT_ARG_STRING
, &opt_ctrl_url
, 0, 0, 0},
69 {"data-url", 'D', POPT_ARG_STRING
, &opt_data_url
, 0, 0, 0},
70 {"no-output", 0, POPT_ARG_VAL
, &opt_no_output
, 1, 0, 0},
71 {"no-consumer", 0, POPT_ARG_VAL
, &opt_no_consumer
, 1, 0, 0},
72 {"snapshot", 0, POPT_ARG_VAL
, &opt_snapshot
, 1, 0, 0},
73 {"live", 0, POPT_ARG_INT
| POPT_ARGFLAG_OPTIONAL
, 0, OPT_LIVE_TIMER
, 0, 0},
74 {"shm-path", 0, POPT_ARG_STRING
, &opt_shm_path
, 0, 0, 0},
79 * Please have a look at src/lib/lttng-ctl/lttng-ctl.c for more information on
80 * why this declaration exists and used ONLY in for this command.
82 extern int _lttng_create_session_ext(const char *name
, const char *url
,
83 const char *datetime
);
86 * Retrieve the created session and mi output it based on provided argument
87 * This is currently a summary of what was pretty printed and is subject to
90 static int mi_created_session(const char *session_name
)
92 int ret
, i
, count
, found
;
93 struct lttng_session
*sessions
;
95 /* session_name should not be null */
99 count
= lttng_list_sessions(&sessions
);
102 ERR("%s", lttng_strerror(ret
));
107 ERR("Error session creation failed: session %s not found", session_name
);
108 ret
= -LTTNG_ERR_SESS_NOT_FOUND
;
113 for (i
= 0; i
< count
; i
++) {
114 if (strncmp(sessions
[i
].name
, session_name
, NAME_MAX
) == 0) {
116 ret
= mi_lttng_session(writer
, &sessions
[i
], 0);
125 ret
= -LTTNG_ERR_SESS_NOT_FOUND
;
137 * For a session name, set the consumer URLs.
139 static int set_consumer_url(const char *session_name
, const char *ctrl_url
,
140 const char *data_url
)
143 struct lttng_handle
*handle
;
145 assert(session_name
);
148 * Set handle with the session_name, but no domain. This implies that
149 * the actions taken with this handle apply on the tracing session
150 * rather then the domain-specific session.
152 handle
= lttng_create_handle(session_name
, NULL
);
153 if (handle
== NULL
) {
158 ret
= lttng_set_consumer_url(handle
, ctrl_url
, data_url
);
164 MSG("Control URL %s set for session %s", ctrl_url
, session_name
);
168 MSG("Data URL %s set for session %s", data_url
, session_name
);
172 lttng_destroy_handle(handle
);
176 static int add_snapshot_output(const char *session_name
, const char *ctrl_url
,
177 const char *data_url
)
180 struct lttng_snapshot_output
*output
= NULL
;
182 assert(session_name
);
184 output
= lttng_snapshot_output_create();
191 ret
= lttng_snapshot_output_set_ctrl_url(ctrl_url
, output
);
198 ret
= lttng_snapshot_output_set_data_url(data_url
, output
);
204 /* This call, if successful, populates the id of the output object. */
205 ret
= lttng_snapshot_add_output(session_name
, output
);
211 lttng_snapshot_output_destroy(output
);
217 * Create a tracing session.
218 * If no name is specified, a default name is generated.
220 * Returns one of the CMD_* result constants.
222 static int create_session(void)
225 char *session_name
= NULL
, *traces_path
= NULL
, *alloc_path
= NULL
;
226 char *alloc_url
= NULL
, *url
= NULL
, datetime
[16];
227 char session_name_date
[NAME_MAX
+ 17], *print_str_url
= NULL
;
230 char shm_path
[PATH_MAX
] = "";
232 /* Get date and time for automatic session name/path */
234 timeinfo
= localtime(&rawtime
);
235 strftime(datetime
, sizeof(datetime
), "%Y%m%d-%H%M%S", timeinfo
);
237 /* Auto session name creation */
238 if (opt_session_name
== NULL
) {
239 ret
= snprintf(session_name_date
, sizeof(session_name_date
),
240 DEFAULT_SESSION_NAME
"-%s", datetime
);
242 PERROR("snprintf session name");
245 session_name
= session_name_date
;
246 DBG("Auto session name set to %s", session_name_date
);
248 if (strlen(opt_session_name
) > NAME_MAX
) {
249 ERR("Session name too long. Length must be lower or equal to %d",
251 ret
= LTTNG_ERR_SESSION_FAIL
;
255 * Check if the session name begins with "auto-" or is exactly "auto".
256 * Both are reserved for the default session name. See bug #449 to
257 * understand why we need to check both here.
259 if ((strncmp(opt_session_name
, DEFAULT_SESSION_NAME
"-",
260 strlen(DEFAULT_SESSION_NAME
) + 1) == 0) ||
261 (strncmp(opt_session_name
, DEFAULT_SESSION_NAME
,
262 strlen(DEFAULT_SESSION_NAME
)) == 0 &&
263 strlen(opt_session_name
) == strlen(DEFAULT_SESSION_NAME
))) {
264 ERR("%s is a reserved keyword for default session(s)",
265 DEFAULT_SESSION_NAME
);
269 session_name
= opt_session_name
;
270 ret
= snprintf(session_name_date
, sizeof(session_name_date
),
271 "%s-%s", session_name
, datetime
);
273 PERROR("snprintf session name");
278 if ((!opt_ctrl_url
&& opt_data_url
) || (opt_ctrl_url
&& !opt_data_url
)) {
279 ERR("You need both control and data URL.");
284 if (opt_output_path
!= NULL
) {
285 traces_path
= utils_expand_path(opt_output_path
);
286 if (traces_path
== NULL
) {
291 /* Create URL string from the local file system path */
292 ret
= asprintf(&alloc_url
, "file://%s", traces_path
);
294 PERROR("asprintf url path");
298 /* URL to use in the lttng_create_session() call */
300 print_str_url
= traces_path
;
301 } else if (opt_url
) { /* Handling URL (-U opt) */
304 } else if (opt_data_url
&& opt_ctrl_url
) {
306 * With both control and data, we'll be setting the consumer URL after
307 * session creation thus use no URL.
310 } else if (!opt_no_output
) {
313 /* Auto output path */
314 tmp_path
= utils_get_home_dir();
315 if (tmp_path
== NULL
) {
316 ERR("HOME path not found.\n \
317 Please specify an output path using -o, --output PATH");
321 alloc_path
= strdup(tmp_path
);
323 PERROR("allocating alloc_path");
327 ret
= asprintf(&alloc_url
,
328 "file://%s/" DEFAULT_TRACE_DIR_NAME
"/%s",
329 alloc_path
, session_name_date
);
331 PERROR("asprintf trace dir name");
337 print_str_url
= alloc_url
+ strlen("file://");
339 /* No output means --no-output or --snapshot mode. */
343 /* Use default live URL if NO url is/are found. */
344 if ((opt_live_timer
&& !opt_url
) && (opt_live_timer
&& !opt_data_url
)) {
345 ret
= asprintf(&alloc_url
, "net://127.0.0.1");
347 PERROR("asprintf default live URL");
355 if (opt_snapshot
&& opt_live_timer
) {
356 ERR("Snapshot and live modes are mutually exclusive.");
362 /* No output by default. */
363 const char *snapshot_url
= NULL
;
367 } else if (!opt_data_url
&& !opt_ctrl_url
) {
368 /* This is the session path that we need to use as output. */
371 ret
= lttng_create_session_snapshot(session_name
, snapshot_url
);
372 } else if (opt_live_timer
) {
373 const char *pathname
;
375 if (opt_relayd_path
) {
376 pathname
= opt_relayd_path
;
378 pathname
= INSTALL_BIN_PATH
"/lttng-relayd";
380 if (!opt_url
&& !opt_data_url
&& !check_relayd() &&
381 spawn_relayd(pathname
, 0) < 0) {
384 ret
= lttng_create_session_live(session_name
, url
, opt_live_timer
);
386 ret
= _lttng_create_session_ext(session_name
, url
, datetime
);
389 /* Don't set ret so lttng can interpret the sessiond error. */
391 case LTTNG_ERR_EXIST_SESS
:
392 WARN("Session %s already exists", session_name
);
400 if (opt_ctrl_url
&& opt_data_url
) {
402 ret
= add_snapshot_output(session_name
, opt_ctrl_url
,
405 /* Setting up control URI (-C or/and -D opt) */
406 ret
= set_consumer_url(session_name
, opt_ctrl_url
, opt_data_url
);
409 /* Destroy created session because the URL are not valid. */
410 lttng_destroy_session(session_name
);
416 ret
= snprintf(shm_path
, sizeof(shm_path
),
417 "%s/%s", opt_shm_path
, session_name_date
);
419 PERROR("snprintf shm_path");
423 ret
= lttng_set_session_shm_path(session_name
, shm_path
);
425 lttng_destroy_session(session_name
);
430 MSG("Session %s created.", session_name
);
431 if (print_str_url
&& !opt_snapshot
) {
432 MSG("Traces will be written in %s", print_str_url
);
434 if (opt_live_timer
) {
435 MSG("Live timer set to %u usec", opt_live_timer
);
437 } else if (opt_snapshot
) {
439 MSG("Default snapshot output set to: %s", print_str_url
);
441 MSG("Snapshot mode set. Every channel enabled for that session will "
442 "be set in overwrite mode and mmap output.");
445 MSG("Session %s set to shm_path: %s.", session_name
,
451 ret
= mi_created_session(session_name
);
458 /* Init lttng session config */
459 ret
= config_init(session_name
);
473 ERR("%s", lttng_strerror(ret
));
481 * Spawn a session daemon by forking and execv.
483 static int spawn_sessiond(char *pathname
)
488 MSG("Spawning a session daemon");
492 * Spawn session daemon in daemon mode.
494 execlp(pathname
, "lttng-sessiond",
495 "--daemonize", NULL
);
496 /* execlp only returns if error happened */
497 if (errno
== ENOENT
) {
498 ERR("No session daemon found. Use --sessiond-path.");
502 kill(getppid(), SIGTERM
); /* wake parent */
504 } else if (pid
> 0) {
506 * In daemon mode (--daemonize), sessiond only exits when
507 * it's ready to accept commands.
511 pid_t wait_pid_ret
= waitpid(pid
, &status
, 0);
513 if (wait_pid_ret
< 0) {
514 if (errno
== EINTR
) {
522 if (WIFSIGNALED(status
)) {
523 ERR("Session daemon was killed by signal %d",
527 } else if (WIFEXITED(status
)) {
528 DBG("Session daemon terminated normally (exit status: %d)",
529 WEXITSTATUS(status
));
531 if (WEXITSTATUS(status
) != 0) {
532 ERR("Session daemon terminated with an error (exit status: %d)",
533 WEXITSTATUS(status
));
555 * Check if the session daemon is available using
556 * the liblttngctl API for the check. If not, try to
559 static int launch_sessiond(void)
562 char *pathname
= NULL
;
564 ret
= lttng_session_daemon_alive();
566 /* Sessiond is alive, not an error */
571 /* Try command line option path */
572 pathname
= opt_sessiond_path
;
574 /* Try LTTNG_SESSIOND_PATH env variable */
575 if (pathname
== NULL
) {
576 pathname
= getenv(DEFAULT_SESSIOND_PATH_ENV
);
579 /* Try with configured path */
580 if (pathname
== NULL
) {
581 if (CONFIG_SESSIOND_BIN
[0] != '\0') {
582 pathname
= CONFIG_SESSIOND_BIN
;
586 /* Try the default path */
587 if (pathname
== NULL
) {
588 pathname
= INSTALL_BIN_PATH
"/lttng-sessiond";
591 DBG("Session daemon binary path: %s", pathname
);
593 /* Check existence and permissions */
594 ret
= access(pathname
, F_OK
| X_OK
);
596 ERR("No such file or access denied: %s", pathname
);
600 ret
= spawn_sessiond(pathname
);
603 ERR("Problem occurred while launching session daemon (%s)",
610 * The 'create <options>' first level command
612 * Returns one of the CMD_* result constants.
614 int cmd_create(int argc
, const char **argv
)
616 int opt
, ret
= CMD_SUCCESS
, command_ret
= CMD_SUCCESS
, success
= 1;
617 char *opt_arg
= NULL
;
618 static poptContext pc
;
620 pc
= poptGetContext(NULL
, argc
, argv
, long_options
, 0);
621 poptReadDefaultConfig(pc
, 0);
623 while ((opt
= poptGetNextOpt(pc
)) != -1) {
628 case OPT_LIST_OPTIONS
:
629 list_cmd_options(stdout
, long_options
);
636 opt_arg
= poptGetOptArg(pc
);
638 /* Set up default values. */
639 opt_live_timer
= (uint32_t) DEFAULT_LTTNG_LIVE_TIMER
;
640 DBG("Session live timer interval set to default value %d",
645 v
= strtoul(opt_arg
, NULL
, 0);
646 if (errno
!= 0 || !isdigit(opt_arg
[0])) {
647 ERR("Wrong value in --live parameter: %s", opt_arg
);
651 if (v
!= (uint32_t) v
) {
652 ERR("32-bit overflow in --live parameter: %s", opt_arg
);
657 ERR("Live timer interval must be greater than zero");
661 opt_live_timer
= (uint32_t) v
;
662 DBG("Session live timer interval set to %d", opt_live_timer
);
671 if (opt_no_consumer
) {
672 MSG("The option --no-consumer is obsolete. Use --no-output now.");
677 /* Spawn a session daemon if needed */
678 if (!opt_no_sessiond
) {
679 ret
= launch_sessiond();
686 /* MI initialization */
688 writer
= mi_lttng_writer_create(fileno(stdout
), lttng_opt_mi
);
690 ret
= -LTTNG_ERR_NOMEM
;
694 /* Open command element */
695 ret
= mi_lttng_writer_command_open(writer
,
696 mi_lttng_element_command_create
);
702 /* Open output element */
703 ret
= mi_lttng_writer_open_element(writer
,
704 mi_lttng_element_command_output
);
710 opt_session_name
= (char*) poptGetArg(pc
);
712 command_ret
= create_session();
718 /* Close output element */
719 ret
= mi_lttng_writer_close_element(writer
);
726 ret
= mi_lttng_writer_write_element_bool(writer
,
727 mi_lttng_element_command_success
, success
);
733 /* Command element close */
734 ret
= mi_lttng_writer_command_close(writer
);
743 if (writer
&& mi_lttng_writer_destroy(writer
)) {
744 /* Preserve original error code */
745 ret
= ret
? ret
: -LTTNG_ERR_MI_IO_FAIL
;
748 /* Overwrite ret if an error occurred in create_session() */
749 ret
= command_ret
? command_ret
: ret
;