Fix: memory management in create.c
[lttng-tools.git] / src / bin / lttng / commands / create.c
CommitLineData
f3ed775e
DG
1/*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 *
d14d33bf
AM
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.
f3ed775e
DG
7 *
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.
12 *
d14d33bf
AM
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.
f3ed775e
DG
16 */
17
6c1c0768 18#define _LGPL_SOURCE
a4b92340 19#include <assert.h>
ecc48a90 20#include <ctype.h>
f3ed775e
DG
21#include <popt.h>
22#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
25#include <sys/stat.h>
26#include <sys/types.h>
27#include <time.h>
28#include <unistd.h>
92360082 29#include <signal.h>
bbd44cae 30#include <sys/wait.h>
f3ed775e 31
37d03ff7 32#include <common/mi-lttng.h>
4a102b75 33#include <common/config/session-config.h>
37d03ff7 34
c399183f 35#include "../command.h"
679b4943 36#include "../utils.h"
f3ed775e 37
00e2e675 38#include <common/defaults.h>
42224349 39#include <common/sessiond-comm/sessiond-comm.h>
00e2e675 40#include <common/uri.h>
81b86775 41#include <common/utils.h>
16f6f820 42#include <lttng/snapshot.h>
42224349 43
f3ed775e
DG
44static char *opt_output_path;
45static char *opt_session_name;
a4b92340
DG
46static char *opt_url;
47static char *opt_ctrl_url;
48static char *opt_data_url;
d7ba1388 49static char *opt_shm_path;
4a102b75 50static char *opt_template_path;
a4b92340 51static int opt_no_consumer;
96fe6b8d 52static int opt_no_output;
16f6f820 53static int opt_snapshot;
ecc48a90 54static unsigned int opt_live_timer;
f3ed775e
DG
55
56enum {
57 OPT_HELP = 1,
679b4943 58 OPT_LIST_OPTIONS,
ecc48a90 59 OPT_LIVE_TIMER,
f3ed775e
DG
60};
61
05ca94c0 62enum output_type {
101fa438 63 OUTPUT_UNKNOWN = -1,
227bc702
JR
64 OUTPUT_NONE,
65 OUTPUT_LOCAL,
66 OUTPUT_NET,
67};
05ca94c0 68enum session_type {
101fa438 69 SESSION_UNKNOWN = -1,
227bc702
JR
70 SESSION_NORMAL,
71 SESSION_LIVE,
72 SESSION_SNAPSHOT,
73};
74
75
37d03ff7
JRJ
76static struct mi_writer *writer;
77
f3ed775e
DG
78static struct poptOption long_options[] = {
79 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
679b4943
SM
80 {"help", 'h', POPT_ARG_NONE, NULL, OPT_HELP, NULL, NULL},
81 {"output", 'o', POPT_ARG_STRING, &opt_output_path, 0, NULL, NULL},
82 {"list-options", 0, POPT_ARG_NONE, NULL, OPT_LIST_OPTIONS, NULL, NULL},
23d14dff
DG
83 {"set-url", 'U', POPT_ARG_STRING, &opt_url, 0, 0, 0},
84 {"ctrl-url", 'C', POPT_ARG_STRING, &opt_ctrl_url, 0, 0, 0},
85 {"data-url", 'D', POPT_ARG_STRING, &opt_data_url, 0, 0, 0},
96fe6b8d 86 {"no-output", 0, POPT_ARG_VAL, &opt_no_output, 1, 0, 0},
2bba9e53 87 {"no-consumer", 0, POPT_ARG_VAL, &opt_no_consumer, 1, 0, 0},
16f6f820 88 {"snapshot", 0, POPT_ARG_VAL, &opt_snapshot, 1, 0, 0},
d73c5802 89 {"live", 0, POPT_ARG_INT | POPT_ARGFLAG_OPTIONAL, 0, OPT_LIVE_TIMER, 0, 0},
d7ba1388 90 {"shm-path", 0, POPT_ARG_STRING, &opt_shm_path, 0, 0, 0},
4a102b75 91 {"template-path", 0, POPT_ARG_STRING, &opt_template_path, 0, 0, 0},
f3ed775e
DG
92 {0, 0, 0, 0, 0, 0, 0}
93};
94
16de1a24
DG
95/*
96 * Please have a look at src/lib/lttng-ctl/lttng-ctl.c for more information on
97 * why this declaration exists and used ONLY in for this command.
98 */
07424f16 99extern int _lttng_create_session_ext(const char *name, const char *url,
d1edd8a8 100 const char *datetime);
07424f16 101
37d03ff7 102/*
485ca16f 103 * Retrieve the created session and mi output it based on provided argument
37d03ff7
JRJ
104 * This is currently a summary of what was pretty printed and is subject to
105 * enhancements.
37d03ff7
JRJ
106 */
107static int mi_created_session(const char *session_name)
108{
109 int ret, i, count, found;
110 struct lttng_session *sessions;
111
112 /* session_name should not be null */
113 assert(session_name);
114 assert(writer);
115
116 count = lttng_list_sessions(&sessions);
117 if (count < 0) {
118 ret = count;
119 ERR("%s", lttng_strerror(ret));
120 goto error;
121 }
122
123 if (count == 0) {
124 ERR("Error session creation failed: session %s not found", session_name);
125 ret = -LTTNG_ERR_SESS_NOT_FOUND;
126 goto end;
127 }
128
129 found = 0;
130 for (i = 0; i < count; i++) {
131 if (strncmp(sessions[i].name, session_name, NAME_MAX) == 0) {
132 found = 1;
133 ret = mi_lttng_session(writer, &sessions[i], 0);
134 if (ret) {
135 goto error;
136 }
137 break;
138 }
139 }
140
141 if (!found) {
142 ret = -LTTNG_ERR_SESS_NOT_FOUND;
143 } else {
144 ret = CMD_SUCCESS;
145 }
146
147error:
148 free(sessions);
149end:
150 return ret;
151}
152
00e2e675 153/*
a4b92340 154 * For a session name, set the consumer URLs.
00e2e675 155 */
a4b92340
DG
156static int set_consumer_url(const char *session_name, const char *ctrl_url,
157 const char *data_url)
00e2e675 158{
a4b92340
DG
159 int ret;
160 struct lttng_handle *handle;
a4b92340
DG
161
162 assert(session_name);
163
164 /*
95681498
JG
165 * Set handle with the session_name, but no domain. This implies that
166 * the actions taken with this handle apply on the tracing session
167 * rather then the domain-specific session.
a4b92340 168 */
95681498 169 handle = lttng_create_handle(session_name, NULL);
a4b92340
DG
170 if (handle == NULL) {
171 ret = CMD_FATAL;
172 goto error;
173 }
00e2e675 174
a4b92340
DG
175 ret = lttng_set_consumer_url(handle, ctrl_url, data_url);
176 if (ret < 0) {
177 goto error;
00e2e675
DG
178 }
179
a4b92340
DG
180error:
181 lttng_destroy_handle(handle);
182 return ret;
183}
184
16f6f820
DG
185static int add_snapshot_output(const char *session_name, const char *ctrl_url,
186 const char *data_url)
187{
188 int ret;
189 struct lttng_snapshot_output *output = NULL;
190
191 assert(session_name);
192
193 output = lttng_snapshot_output_create();
194 if (!output) {
195 ret = CMD_FATAL;
196 goto error_create;
197 }
198
199 if (ctrl_url) {
200 ret = lttng_snapshot_output_set_ctrl_url(ctrl_url, output);
201 if (ret < 0) {
202 goto error;
203 }
204 }
205
206 if (data_url) {
207 ret = lttng_snapshot_output_set_data_url(data_url, output);
208 if (ret < 0) {
209 goto error;
210 }
211 }
212
213 /* This call, if successful, populates the id of the output object. */
214 ret = lttng_snapshot_add_output(session_name, output);
215 if (ret < 0) {
216 goto error;
217 }
218
219error:
220 lttng_snapshot_output_destroy(output);
221error_create:
222 return ret;
223}
224
227bc702
JR
225/*
226 * Validate the combinations of passed options
227 *
228 * CMD_ERROR on error
229 * CMD_SUCCESS on success
230 */
05ca94c0 231static int validate_command_options(enum session_type type)
227bc702
JR
232{
233 int ret = CMD_SUCCESS;
dd4b646b 234
227bc702
JR
235 if (opt_snapshot && opt_live_timer) {
236 ERR("Snapshot and live modes are mutually exclusive.");
237 ret = CMD_ERROR;
238 goto error;
239 }
240
241 if ((!opt_ctrl_url && opt_data_url) || (opt_ctrl_url && !opt_data_url)) {
dd4b646b 242 ERR("Control and data URLs must both be set.");
227bc702
JR
243 ret = CMD_ERROR;
244 goto error;
245 }
246
4a102b75
JR
247 if (opt_template_path) {
248 /* Restriction on flags exist when using template */
249 /* Session type flags are not permitted */
250 /* --live & --snapshot */
05ca94c0
JR
251 if ((opt_live_timer && type != SESSION_LIVE) ||
252 (opt_snapshot && type != SESSION_SNAPSHOT)) {
4a102b75
JR
253 ERR("It is not possible to change the session type of a template");
254 ret = CMD_ERROR;
255 goto error;
256 }
257 }
258
227bc702
JR
259error:
260 return ret;
261}
262
263/*
d49b7031 264 * Create a session using direct calls to liblttng-ctl.
227bc702
JR
265 *
266 * Return CMD_SUCCESS on success, negative value on internal lttng errors and positive
267 * value on command errors.
268 */
269static int create_session_basic (const char *session_name,
05ca94c0 270 enum session_type session_type,
227bc702 271 int live_timer,
05ca94c0 272 enum output_type output_type,
227bc702
JR
273 const char* url,
274 const char* ctrl_url,
275 const char* data_url,
276 const char* shm_path,
277 const char* datetime)
278{
279 /* Create session based on session creation */
280 int ret = CMD_SUCCESS;
281 const char *pathname;
282
283 assert(datetime);
284
285 if (opt_relayd_path) {
286 pathname = opt_relayd_path;
287 } else {
288 pathname = INSTALL_BIN_PATH "/lttng-relayd";
289 }
290
291 switch (session_type) {
292 case SESSION_NORMAL:
293 ret = _lttng_create_session_ext(session_name, url, datetime);
294 break;
295 case SESSION_SNAPSHOT:
296 if (output_type == OUTPUT_NONE) {
297 ERR("--no-output on a snapshot session is invalid");
298 ret = CMD_UNSUPPORTED;
299 goto error;
300 }
301 ret = lttng_create_session_snapshot(session_name, url);
302 break;
303 case SESSION_LIVE:
304 if (output_type == OUTPUT_NONE) {
305 ERR("--no-output on a live session is invalid");
306 ret = CMD_UNSUPPORTED;
307 goto error;
308 }
309
310 if (output_type == OUTPUT_LOCAL) {
311 ERR("Local file output on a live session is invalid");
312 ret = CMD_UNSUPPORTED;
313 goto error;
314 }
315 if (output_type != OUTPUT_NET && !check_relayd() &&
316 spawn_relayd(pathname, 0) < 0) {
317 ret = CMD_FATAL;
318 goto error;
319 }
320 ret = lttng_create_session_live(session_name, url, live_timer);
321 break;
322 default:
323 ERR("Unknown session type");
324 ret = CMD_UNDEFINED;
325 goto error;
326 }
327
328 if (ret < 0) {
8ad05258 329 /* Don't set ret so the sessiond error is propagated. */
227bc702
JR
330 switch (-ret) {
331 case LTTNG_ERR_EXIST_SESS:
332 WARN("Session %s already exists", session_name);
333 break;
334 default:
335 break;
336 }
337 goto error;
338 }
339
340 /* Configure the session based on the output type */
341 switch (output_type) {
342 case OUTPUT_LOCAL:
343 break;
344 case OUTPUT_NET:
19ed6174
JR
345 if (!ctrl_url || !data_url) {
346 break;
347 }
348
227bc702
JR
349 if (session_type == SESSION_SNAPSHOT) {
350 ret = add_snapshot_output(session_name, ctrl_url,
351 data_url);
19ed6174 352 } else {
227bc702
JR
353 /*
354 * Normal sessions and live sessions behave the same way
355 * regarding consumer url.
356 */
357 ret = set_consumer_url(session_name, ctrl_url, data_url);
358 }
359 if (ret < 0) {
360 /* Destroy created session on errors */
361 lttng_destroy_session(session_name);
362 goto error;
363 }
364 break;
365 case OUTPUT_NONE:
366 break;
367 default:
368 ERR("Unknown output type");
369 ret = CMD_UNDEFINED;
370 goto error;
371 }
372
373 /*
374 * Set the session shared memory path
375 */
376 if (shm_path) {
377 ret = lttng_set_session_shm_path(session_name, shm_path);
378 if (ret < 0) {
379 lttng_destroy_session(session_name);
380 goto error;
381 }
382 }
383error:
384 return ret;
385}
386
387static int generate_output(const char *session_name,
05ca94c0 388 enum session_type session_type,
227bc702 389 int live_timer,
05ca94c0 390 enum output_type output_type,
227bc702
JR
391 const char* url,
392 const char* ctrl_url,
393 const char* data_url,
394 const char* shm_path)
395{
396 int ret = CMD_SUCCESS;
397
398 /*
399 * TODO move this to after session name
400 * for now we only emulate previous behaviour.
401 */
402 if (session_type != SESSION_SNAPSHOT) {
403 if (ctrl_url) {
404 MSG("Control URL %s set for session %s", ctrl_url, session_name);
405 }
406
407 if (data_url) {
408 MSG("Data URL %s set for session %s", data_url, session_name);
409 }
410 }
411
412 if (url && output_type == OUTPUT_LOCAL) {
413 /* Remove the file:// */
414 if (strlen(url) > strlen("file://")){
415 url = url + strlen("file://");
416 }
417 }
418
419 MSG("Session %s created.", session_name);
420 if (url && session_type != SESSION_SNAPSHOT) {
421 MSG("Traces will be written in %s", url);
422
423 if (live_timer) {
424 MSG("Live timer set to %u usec", live_timer);
425 }
426 } else if (session_type == SESSION_SNAPSHOT) {
427 if (url) {
428 MSG("Default snapshot output set to: %s", url);
429 }
430 MSG("Snapshot mode set. Every channel enabled for that session will "
431 "be set to mmap output, and default to overwrite mode.");
432 }
433
434 if (shm_path) {
435 MSG("Session %s set to shm_path: %s.", session_name,
436 shm_path);
437 }
438
439 /* Mi output */
440 if (lttng_opt_mi) {
441 ret = mi_created_session(session_name);
442 if (ret) {
443 ret = CMD_ERROR;
444 goto error;
445 }
446 }
447error:
448 return ret;
449}
450
4a102b75
JR
451static int parse_template (struct config_document *template,
452 char **session_name,
05ca94c0 453 enum session_type *session_type,
4a102b75 454 int *live_timer,
05ca94c0 455 enum output_type *output_type,
4a102b75
JR
456 char **url,
457 char **ctrl_url,
458 char **data_url,
459 char **shm_path)
460{
461 int ret = 0;
af7f3c88 462 int printed_byte;
4a102b75
JR
463 char *raw_value = NULL;
464
465 assert(template);
466
467 /* Session name */
468 *session_name = config_document_get_element_value(template,"/sessions/session/name");
469
470 /* Check the type of session we have in the template */
471 if(config_document_element_exist(template, "/sessions/session/attributes/snapshot_mode")) {
472 *session_type = SESSION_SNAPSHOT;
473 } else if (config_document_element_exist(template, "/sessions/session/attributes/live_timer_interval")) {
474 *session_type = SESSION_LIVE;
475 raw_value = config_document_get_element_value(template,"/sessions/session/attributes/live_timer_interval");
476 *live_timer = config_parse_value(raw_value);
477 free(raw_value);
478 raw_value = NULL;
479 } else {
480 *session_type = SESSION_NORMAL;
481 }
482
483 /* Output */
484 switch (*session_type) {
485 case SESSION_NORMAL:
486 case SESSION_LIVE:
487 if (!config_document_element_exist(template, "/sessions/session/output/consumer_output/destination")){
488 break;
489 }
490 if (config_document_element_exist(template, "/sessions/session/output/consumer_output/destination/path")){
491 raw_value = config_document_get_element_value(template, "/sessions/session/output/consumer_output/destination/path");
492 if (!raw_value) {
493 ret = -1;
494 goto error;
495 }
496
497 if (strlen(raw_value) > 0) {
498 *output_type = OUTPUT_LOCAL;
af7f3c88
JR
499 printed_byte = asprintf(url, "file://%s", raw_value);
500 if (printed_byte < 0) {
4a102b75
JR
501 ret = -1;
502 goto error;
503 }
504 } else {
505 *output_type = OUTPUT_NONE;
506 }
507
508 free(raw_value);
509 raw_value = NULL;
510 break;
511 } else if(config_document_element_exist(template, "/sessions/session/output/consumer_output/destination/net_output")) {
512 *ctrl_url = config_document_get_element_value(template, "/sessions/session/output/consumer_output/destination/net_output/control_uri");
513 *data_url = config_document_get_element_value(template, "/sessions/session/output/consumer_output/destination/net_output/data_uri");
514 if (!*ctrl_url || ! *data_url) {
515 ret = -1;
516 goto error;
517 }
518 *output_type = OUTPUT_NET;
519 } else {
520 /* There is no output definition */
521 }
522 break;
523 case SESSION_SNAPSHOT:
524 if (!config_document_element_exist(template, "/sessions/session/output/snapshot_outputs/output/consumer_output/destination")){
525 break;
526 }
527 if (config_document_element_exist(template, "/sessions/session/output/snapshot_outputs/output/consumer_output/destination/path")){
528 raw_value = config_document_get_element_value(template, "/sessions/session/output/snapshot_outputs/output/consumer_output/destination/path");
529 if (!raw_value) {
530 ret = -1;
531 goto error;
532 }
533
534 if (strlen(raw_value) > 0) {
535 *output_type = OUTPUT_LOCAL;
af7f3c88
JR
536 printed_byte = asprintf(url, "file://%s", raw_value);
537 if (printed_byte < 0) {
4a102b75
JR
538 ret = -1;
539 goto error;
540 }
541 } else {
542 *output_type = OUTPUT_NONE;
543 }
544
545 free(raw_value);
546 raw_value = NULL;
547 break;
548 } else if(config_document_element_exist(template, "/sessions/session/output/snapshot_outputs/output/consumer_output/destination/net_output")) {
549 *ctrl_url = config_document_get_element_value(template, "/sessions/session/output/snapshot_outputs/output/consumer_output/destination/net_output/control_uri");
550 *data_url = config_document_get_element_value(template, "/sessions/session/output/snapshot_outputs/output/consumer_output/destination/net_output/data_uri");
551 if (!*ctrl_url || ! *data_url) {
552 ret = -1;
553 goto error;
554 }
555 *output_type = OUTPUT_NET;
556 } else {
557 /* There is no output definition */
558 }
559 break;
05ca94c0
JR
560 case SESSION_UNKNOWN:
561 ret = -1;
562 goto error;
4a102b75
JR
563 }
564
565
566 /* shared memory path */
567 *shm_path = config_document_get_element_value(template,"/sessions/session/shared_memory_path");
568
569error:
570 free(raw_value);
571 return ret;
572
573}
574static int create_session_from_template(struct config_document *template,
575 const char *session_name,
05ca94c0 576 enum session_type session_type,
4a102b75 577 int live_timer,
05ca94c0 578 enum output_type output_type,
4a102b75
JR
579 const char *url,
580 const char *ctrl_url,
581 const char *data_url,
582 const char *shm_path,
583 const char *datetime)
584{
585 int ret = CMD_SUCCESS;
af7f3c88 586 int printed_byte;
4a102b75
JR
587 struct config_element *temp_element = NULL;
588 struct config_element *temp_element_child = NULL;
589 char tmp_ctrl_uri[PATH_MAX];
590 char tmp_data_uri[PATH_MAX];
591 struct lttng_uri *uris = NULL;
592 ssize_t uri_array_size = 0;
593 char *tmp_string = NULL;
594
595 assert(template);
596 assert(session_name);
597
598 memset(tmp_ctrl_uri, 0, sizeof(tmp_ctrl_uri));
599 memset(tmp_data_uri, 0, sizeof(tmp_data_uri));
600
601 /* Session name */
602 if (config_document_element_exist(template, "/sessions/session/name")) {
603 /* Replace the node value */
604 config_document_replace_element_value(template, "/sessions/session/name", session_name);
605 } else {
606 /* insert the node */
607 temp_element = config_element_create("name", session_name);
608 if (!temp_element) {
609 ERR("Could not create session name node configuration");
610 ret = CMD_ERROR;
611 goto error;
612 }
613 ret = config_document_insert_element(template, "/sessions/session", temp_element);
614 if (ret) {
615 ERR("Could not insert session name node configuration");
616 ret = CMD_ERROR;
617 goto error;
618 }
619 config_element_free(temp_element);
620 }
621
622 /*
623 * Live timer
624 */
625 if (session_type == SESSION_LIVE) {
626 if (config_document_element_exist(template, "/sessions/session/attributes/live_timer_interval")) {
af7f3c88
JR
627 printed_byte = asprintf(&tmp_string, "%d", live_timer);
628 if (printed_byte < 0) {
629 ERR("Asprintf failed for live timer");
630 ret = CMD_ERROR;
631 goto error;
632 }
633 ret = config_document_replace_element_value(template, "/sessions/session/attributes/live_timer_interval", tmp_string);
634
635 if (ret) {
636 printf("error: %d\n", ret);
637 ERR("Replacement of live_timer_interval failed");
638 ret = CMD_ERROR;
639 goto error;
640 }
641
4a102b75
JR
642 free(tmp_string);
643 tmp_string = NULL;
644 } else {
645 ERR("Invalid live timer template. Missing live timer node");
646 ret = CMD_ERROR;
647 goto error;
648 }
649
650 }
651
652 /*
653 * Generate the output node
654 */
655
656 /* Get output from urls */
657 if (url) {
658 /* Get lttng uris from single url */
659 uri_array_size = uri_parse_str_urls(url, NULL, &uris);
660 if (uri_array_size < 0) {
661 ret = CMD_ERROR;
662 goto error;
663 }
664 } else if (ctrl_url && data_url) {
665 uri_array_size = uri_parse_str_urls(ctrl_url, data_url, &uris);
666 if (uri_array_size < 0) {
667 ret = CMD_ERROR;
668 goto error;
669 }
670 } else {
671 /* --no-output */
672 uri_array_size = 0;
673 }
674
675 /* Validate if the session output type still match the passed data */
676 if ( (uri_array_size == 0 && output_type != OUTPUT_NONE) ||
677 (uri_array_size == 1 && output_type != OUTPUT_LOCAL) ||
678 (uri_array_size == 2 && output_type != OUTPUT_NET)) {
679 ERR("Overwriting value for output do not match the base output type");
680 ret = CMD_ERROR;
681 goto error;
682 }
683
684 switch (output_type) {
685 case OUTPUT_NONE:
686 temp_element_child = config_element_create("path", "");
687 if (!temp_element_child) {
688 ERR("Could not create empty path node configuration");
689 ret = CMD_ERROR;
690 goto error;
691 }
692 break;
693 case OUTPUT_LOCAL:
694 temp_element_child = config_element_create("path", uris[0].dst.path);
695 if (!temp_element_child) {
696 ERR("Could not create local path node configuration");
697 ret = CMD_ERROR;
698 goto error;
699 }
700 break;
701 case OUTPUT_NET:
702 uri_to_str_url(&uris[0], tmp_ctrl_uri, sizeof(tmp_ctrl_uri));
703 uri_to_str_url(&uris[1], tmp_data_uri, sizeof(tmp_data_uri));
704
705 temp_element_child = config_element_create("net_output", NULL);
706 if (!temp_element_child) {
707 ERR("Could not create net_output node configuration");
708 ret = CMD_ERROR;
709 goto error;
710 }
711
712 temp_element = config_element_create("control_uri", tmp_ctrl_uri);
713 if (!temp_element_child) {
714 ERR("Could not create ctrl uri node configuration");
715 ret = CMD_ERROR;
716 goto error;
717 }
718
719 ret = config_element_add_child(temp_element_child, temp_element);
720 if (ret) {
721 ERR("Could not append control uri to the net_output node configuration");
722 ret = CMD_ERROR;
723 goto error;
724 }
2f0e04ab 725
4a102b75 726 config_element_free(temp_element);
2f0e04ab 727 temp_element = NULL;
4a102b75
JR
728
729 temp_element = config_element_create("data_uri", tmp_data_uri);
730
731 if (!temp_element_child) {
732 ERR("Could not create data_uri configuration");
733 ret = CMD_ERROR;
734 goto error;
735 }
736
737 ret = config_element_add_child(temp_element_child, temp_element);
738 if (ret) {
739 ERR("Could not append data uri to the net_output node configuration");
740 ret = CMD_ERROR;
741 goto error;
742 }
743 config_element_free(temp_element);
2f0e04ab 744 temp_element = NULL;
4a102b75
JR
745 break;
746 default:
747 ret = CMD_ERROR;
748 goto error;
749 }
750
751 temp_element = config_element_create("destination", NULL);
752 if (!temp_element) {
753 ERR("Could not create destination node configuration");
754 ret = CMD_ERROR;
755 goto error;
756 }
757
758 ret = config_element_add_child(temp_element, temp_element_child);
759 if (ret) {
760 ERR("Could not append output data to the destination node configuration");
761 ret = CMD_ERROR;
762 goto error;
763 }
764
2f0e04ab
JR
765 config_element_free(temp_element_child);
766 temp_element_child = NULL;
767
768
4a102b75
JR
769 /*
770 * validate and replace the destination node for each session type
771 * TODO: export string as const and simply assign a base path for the
772 * destination node based on the session type
773 **/
774 switch (session_type) {
775 case SESSION_NORMAL:
776 case SESSION_LIVE:
777 if (!config_document_element_exist(template, "/sessions/session/output/consumer_output/destination")) {
778 ERR("Invalid template no destination node configuration present");
779 ret = CMD_ERROR;
780 goto error;
781 }
782
783 ret = config_document_replace_element(template, "/sessions/session/output/consumer_output/destination", temp_element);
784 break;
785 case SESSION_SNAPSHOT:
786 if (!config_document_element_exist(template, "/sessions/session/output/snapshot_outputs/output/consumer_output/destination")) {
787 ERR("Invalid template no destination node configuration present");
788 ret = CMD_ERROR;
789 goto error;
790 }
791
792 ret = config_document_replace_element(template, "/sessions/session/output/snapshot_outputs/output/consumer_output/destination", temp_element);
793 break;
794 default:
795 ERR("Invalid session type");
796 ret = CMD_UNDEFINED;
797 goto error;
798 }
799
2f0e04ab
JR
800 config_element_free(temp_element);
801 temp_element = NULL;
4a102b75 802
0709e00e
JR
803 if (ret) {
804 ERR("%s", lttng_strerror(ret));
805 ret = CMD_ERROR;
806 goto error;
807 }
808
4a102b75
JR
809
810 /* Shm path */
811 if (shm_path && config_document_element_exist(template, "/sessions/session/shared_memory_path")) {
812 /* Replace the node value */
813 config_document_replace_element_value(template, "/sessions/session/shared_memory_path", shm_path);
814 } else if (shm_path) {
815 /* insert the node */
816 temp_element = config_element_create("shared_memory_path", shm_path);
817 if (!temp_element) {
818 ERR("Could not create shared_memory_path node configuration");
819 ret = CMD_ERROR;
820 goto error;
821 }
822 ret = config_document_insert_element(template, "/sessions/session", temp_element);
823 if (ret) {
824 ERR("Could not insert shared_memory_path node configuration");
825 ret = CMD_ERROR;
826 goto error;
827 }
2f0e04ab
JR
828
829 config_element_free(temp_element);
830 temp_element = NULL;
4a102b75
JR
831 }
832
833 ret = config_load_configuration_sessions(template, session_name, 0);
834
835
836error:
837 config_element_free(temp_element);
838 config_element_free(temp_element_child);
839 free(tmp_string);
840 free(uris);
841 return ret;
842
843}
844
f3ed775e 845/*
1c8d13c8
TD
846 * Create a tracing session.
847 * If no name is specified, a default name is generated.
f3ed775e 848 *
1c8d13c8 849 * Returns one of the CMD_* result constants.
f3ed775e 850 */
a4b92340 851static int create_session(void)
f3ed775e 852{
a4b92340 853 int ret;
af7f3c88 854 int printed_byte;
227bc702 855
4a102b75
JR
856
857 /* Template */
858 struct config_document *template = NULL;
859
227bc702 860 /* Base data */
05ca94c0
JR
861 enum session_type base_session_type = SESSION_UNKNOWN;
862 enum output_type base_output_type = OUTPUT_UNKNOWN;
227bc702
JR
863 char *base_session_name = NULL;
864 char *base_url = NULL;
865 char *base_ctrl_url = NULL;
866 char *base_data_url = NULL;
867 char *base_shm_path = NULL;
868 int base_live_timer = 0;
869
870 /* Time data */
871 char datetime[16];
f3ed775e 872 time_t rawtime;
227bc702
JR
873 struct tm *timeinfo = NULL;
874
875 /* Temporary variables */
876 char *traces_path = NULL;
877 char *temp_url = NULL;
878 char *session_name_date = NULL;
879 char *tmp_url = NULL;
880 char *tmp_home_path = NULL;
881 struct lttng_uri *uris = NULL;
882 ssize_t uri_array_size = 0;
883
f3ed775e 884
d6175221
DG
885 /* Get date and time for automatic session name/path */
886 time(&rawtime);
887 timeinfo = localtime(&rawtime);
888 strftime(datetime, sizeof(datetime), "%Y%m%d-%H%M%S", timeinfo);
889
4a102b75
JR
890 if (opt_template_path) {
891 /* Restriction on flags exist when using template */
892 /* Session type flags are not permitted */
893 /* --live & --snapshot */
894 template = config_document_get(opt_template_path);
895 if (!template) {
896 ERR("Template could not be parsed");
897 ret = CMD_ERROR;
898 goto error;
899 }
900 /* Load info from template if any */
901 /* TODO: might want to use a struct in the end for the session... */
902 ret = parse_template(template, &base_session_name,
903 &base_session_type,
904 &base_live_timer,
905 &base_output_type,
906 &base_url,
907 &base_ctrl_url,
908 &base_data_url,
909 &base_shm_path);
8e4afd43
JR
910 if (ret) {
911 goto error;
912 }
4a102b75
JR
913 }
914
915 /* Option validation */
916 if (validate_command_options(base_session_type) != CMD_SUCCESS) {
917 ret = CMD_ERROR;
918 goto error;
919 }
920
227bc702
JR
921 /* Find the session type based on options */
922 if(base_session_type == SESSION_UNKNOWN) {
923 if (opt_snapshot) {
924 base_session_type = SESSION_SNAPSHOT;
925 } else if (opt_live_timer) {
926 base_session_type = SESSION_LIVE;
927 } else {
928 base_session_type = SESSION_NORMAL;
07424f16 929 }
227bc702
JR
930 }
931
932 /*
933 * Session name handling
934 */
935 if (opt_session_name) {
936 /* Override the session name */
487b253b
DG
937 if (strlen(opt_session_name) > NAME_MAX) {
938 ERR("Session name too long. Length must be lower or equal to %d",
939 NAME_MAX);
940 ret = LTTNG_ERR_SESSION_FAIL;
227bc702 941 free(session_name_date);
487b253b
DG
942 goto error;
943 }
4b861950
DG
944 /*
945 * Check if the session name begins with "auto-" or is exactly "auto".
946 * Both are reserved for the default session name. See bug #449 to
947 * understand why we need to check both here.
948 */
949 if ((strncmp(opt_session_name, DEFAULT_SESSION_NAME "-",
227bc702
JR
950 strlen(DEFAULT_SESSION_NAME) + 1) == 0) ||
951 (strncmp(opt_session_name, DEFAULT_SESSION_NAME,
952 strlen(DEFAULT_SESSION_NAME)) == 0 &&
67238b20 953 strlen(opt_session_name) == strlen(DEFAULT_SESSION_NAME))) {
61b35a5a
DG
954 ERR("%s is a reserved keyword for default session(s)",
955 DEFAULT_SESSION_NAME);
227bc702
JR
956
957 ret = CMD_ERROR;
958 goto error;
959 }
960
961 base_session_name = strndup(opt_session_name, NAME_MAX);
962 if (!base_session_name) {
963 PERROR("Strdup session name");
61b35a5a
DG
964 ret = CMD_ERROR;
965 goto error;
966 }
227bc702 967
af7f3c88
JR
968 printed_byte = asprintf(&session_name_date, "%s-%s", base_session_name, datetime);
969 if (printed_byte < 0) {
227bc702 970 PERROR("Asprintf session name");
af7f3c88 971 ret = CMD_ERROR;
227bc702
JR
972 goto error;
973 }
974 DBG("Session name from command option set to %s", base_session_name);
975 } else if (base_session_name) {
af7f3c88
JR
976 printed_byte = asprintf(&session_name_date, "%s-%s", base_session_name, datetime);
977 if (printed_byte < 0) {
227bc702 978 PERROR("Asprintf session name");
af7f3c88 979 ret = CMD_ERROR;
227bc702
JR
980 goto error;
981 }
982 } else {
983 /* Generate a name */
af7f3c88
JR
984 printed_byte = asprintf(&base_session_name, DEFAULT_SESSION_NAME "-%s", datetime);
985 if (printed_byte < 0) {
6af1d7e6 986 PERROR("Asprintf session name");
af7f3c88 987 ret = CMD_ERROR;
07424f16
DG
988 goto error;
989 }
227bc702
JR
990 session_name_date = strdup(base_session_name);
991 DBG("Auto session name set to %s", base_session_name);
f3ed775e
DG
992 }
993
227bc702
JR
994
995 /*
996 * Output handling
997 */
998
999 /*
1000 * If any of those options are present clear all output related data.
1001 */
1002 if (opt_output_path || opt_url || (opt_ctrl_url && opt_data_url) || opt_no_output) {
1003 /* Overwrite output */
1004 free(base_url);
1005 free(base_ctrl_url);
1006 free(base_data_url);
1007 base_url = NULL;
1008 base_ctrl_url = NULL;
1009 base_data_url = NULL;
1a241656
DG
1010 }
1011
227bc702
JR
1012 if (opt_output_path) {
1013
81b86775 1014 traces_path = utils_expand_path(opt_output_path);
227bc702 1015 if (!traces_path) {
00e2e675
DG
1016 ret = CMD_ERROR;
1017 goto error;
1018 }
1019
37d03ff7 1020 /* Create URL string from the local file system path */
af7f3c88
JR
1021 printed_byte = asprintf(&temp_url, "file://%s", traces_path);
1022 if (printed_byte < 0) {
a4b92340 1023 PERROR("asprintf url path");
00e2e675
DG
1024 ret = CMD_FATAL;
1025 goto error;
1026 }
227bc702
JR
1027
1028 base_url = temp_url;
a4b92340 1029 } else if (opt_url) { /* Handling URL (-U opt) */
227bc702 1030 base_url = strdup(opt_url);
1a241656
DG
1031 } else if (opt_data_url && opt_ctrl_url) {
1032 /*
227bc702
JR
1033 * With both control and data, we'll be setting the consumer URL
1034 * after session creation thus use no URL.
1a241656 1035 */
227bc702
JR
1036 base_ctrl_url = strdup(opt_ctrl_url);
1037 base_data_url = strdup(opt_data_url);
1038 } else if (!(opt_no_output || base_output_type == OUTPUT_NONE ||
1039 base_url || base_ctrl_url || base_data_url)) {
1040 /* Generate default output depending on the session type */
1041 switch (base_session_type) {
1042 case SESSION_NORMAL:
1043 /* fallthrough */
1044 case SESSION_SNAPSHOT:
1045 /* Default to a local path */
1046 tmp_home_path = utils_get_home_dir();
1047 if (tmp_home_path == NULL) {
1048 ERR("HOME path not found.\n \
1049 Please specify an output path using -o, --output PATH");
1050 ret = CMD_FATAL;
1051 goto error;
1052 }
ecc48a90 1053
af7f3c88 1054 printed_byte = asprintf(&tmp_url,
227bc702
JR
1055 "file://%s/" DEFAULT_TRACE_DIR_NAME "/%s",
1056 tmp_home_path, session_name_date);
16f6f820 1057
af7f3c88 1058 if (printed_byte < 0) {
227bc702
JR
1059 PERROR("asprintf trace dir name");
1060 ret = CMD_FATAL;
1061 goto error;
1062 }
8960e9cd 1063
227bc702 1064 base_url = tmp_url ;
42224349 1065 break;
227bc702
JR
1066 case SESSION_LIVE:
1067 /* Default to a net output */
af7f3c88
JR
1068 printed_byte = asprintf(&tmp_url, "net://127.0.0.1");
1069 if (printed_byte < 0) {
227bc702
JR
1070 PERROR("asprintf default live URL");
1071 ret = CMD_FATAL;
1072 goto error;
1073 }
1074 base_url = tmp_url ;
60e835ca 1075 break;
227bc702
JR
1076 default:
1077 ERR("Unknown session type");
1078 ret = CMD_FATAL;
a4b92340
DG
1079 goto error;
1080 }
4f50c803
DG
1081 }
1082
227bc702
JR
1083 /*
1084 * Shared memory path handling
1085 */
d7ba1388 1086 if (opt_shm_path) {
af7f3c88
JR
1087 /* Overwrite shm_path so clear any previously defined one */
1088 free(base_shm_path);
1089 printed_byte = asprintf(&base_shm_path, "%s/%s", opt_shm_path, session_name_date);
1090 if (printed_byte < 0) {
227bc702 1091 PERROR("asprintf shm_path");
af7f3c88 1092 ret = CMD_FATAL;
d7ba1388
MD
1093 goto error;
1094 }
1095 }
1096
227bc702
JR
1097 /*
1098 * Live timer handling
1099 */
1100 if (opt_live_timer) {
1101 base_live_timer = opt_live_timer;
1102 }
d73c5802 1103
227bc702
JR
1104 /* Get output type from urls */
1105 if (base_url) {
1106 /* Get lttng uris from single url */
1107 uri_array_size = uri_parse_str_urls(base_url, NULL, &uris);
1108 if (uri_array_size < 0) {
1109 ret = CMD_ERROR;
1110 goto error;
d73c5802 1111 }
227bc702
JR
1112 } else if (base_ctrl_url && base_data_url) {
1113 uri_array_size = uri_parse_str_urls(base_ctrl_url, base_data_url, &uris);
1114 if (uri_array_size < 0) {
1115 ret = CMD_ERROR;
1116 goto error;
16f6f820 1117 }
227bc702
JR
1118 } else {
1119 /* --no-output */
1120 uri_array_size = 0;
1121 }
1122
1123 switch (uri_array_size) {
1124 case 0:
1125 base_output_type = OUTPUT_NONE;
1126 break;
1127 case 1:
1128 base_output_type = OUTPUT_LOCAL;
1129 break;
1130 case 2:
1131 base_output_type = OUTPUT_NET;
1132 break;
1133 default:
1134 ret = CMD_ERROR;
1135 goto error;
a4b92340 1136 }
227bc702 1137
4a102b75
JR
1138 if (template) {
1139 ret = create_session_from_template(template,
1140 base_session_name,
1141 base_session_type,
1142 base_live_timer,
1143 base_output_type,
1144 base_url,
1145 base_ctrl_url,
1146 base_data_url,
1147 base_shm_path,
1148 datetime);
1149 } else {
1150 ret = create_session_basic (base_session_name,
1151 base_session_type,
1152 base_live_timer,
1153 base_output_type,
1154 base_url,
1155 base_ctrl_url,
1156 base_data_url,
1157 base_shm_path,
1158 datetime);
1159 }
227bc702
JR
1160 if (ret) {
1161 goto error;
d7ba1388 1162 }
a4b92340 1163
227bc702
JR
1164 ret = generate_output (base_session_name,
1165 base_session_type,
1166 base_live_timer,
1167 base_output_type,
1168 base_url,
1169 base_ctrl_url,
1170 base_data_url,
1171 base_shm_path);
1172 if (ret) {
1173 goto error;
37d03ff7
JRJ
1174 }
1175
58a97671 1176 /* Init lttng session config */
227bc702 1177 ret = config_init(base_session_name);
f3ed775e 1178 if (ret < 0) {
27089920 1179 ret = CMD_ERROR;
f3ed775e
DG
1180 goto error;
1181 }
1182
f3ed775e
DG
1183 ret = CMD_SUCCESS;
1184
1185error:
227bc702 1186 /* Session temp stuff */
2f0e04ab 1187 config_document_free(template);
227bc702 1188 free(session_name_date);
227bc702 1189 free(uris);
2f0e04ab 1190 free(traces_path);
a4b92340
DG
1191
1192 if (ret < 0) {
1193 ERR("%s", lttng_strerror(ret));
1194 }
67238b20 1195
227bc702
JR
1196 free(base_session_name);
1197 free(base_url);
1198 free(base_ctrl_url);
1199 free(base_data_url);
1200 free(base_shm_path);
f3ed775e
DG
1201 return ret;
1202}
1203
92360082
JG
1204/*
1205 * spawn_sessiond
1206 *
1207 * Spawn a session daemon by forking and execv.
1208 */
1209static int spawn_sessiond(char *pathname)
1210{
1211 int ret = 0;
1212 pid_t pid;
1213
1214 MSG("Spawning a session daemon");
92360082
JG
1215 pid = fork();
1216 if (pid == 0) {
1217 /*
bbd44cae 1218 * Spawn session daemon in daemon mode.
92360082 1219 */
bbd44cae
PP
1220 execlp(pathname, "lttng-sessiond",
1221 "--daemonize", NULL);
92360082
JG
1222 /* execlp only returns if error happened */
1223 if (errno == ENOENT) {
1224 ERR("No session daemon found. Use --sessiond-path.");
1225 } else {
1226 PERROR("execlp");
1227 }
1228 kill(getppid(), SIGTERM); /* wake parent */
1229 exit(EXIT_FAILURE);
1230 } else if (pid > 0) {
92360082 1231 /*
bbd44cae
PP
1232 * In daemon mode (--daemonize), sessiond only exits when
1233 * it's ready to accept commands.
92360082 1234 */
bbd44cae 1235 for (;;) {
81527d36
JG
1236 int status;
1237 pid_t wait_pid_ret = waitpid(pid, &status, 0);
1238
1239 if (wait_pid_ret < 0) {
1240 if (errno == EINTR) {
1241 continue;
1242 }
1243 PERROR("waitpid");
1244 ret = -errno;
1245 goto end;
1246 }
bbd44cae
PP
1247
1248 if (WIFSIGNALED(status)) {
1249 ERR("Session daemon was killed by signal %d",
1250 WTERMSIG(status));
1251 ret = -1;
1252 goto end;
1253 } else if (WIFEXITED(status)) {
1254 DBG("Session daemon terminated normally (exit status: %d)",
1255 WEXITSTATUS(status));
1256
1257 if (WEXITSTATUS(status) != 0) {
1258 ERR("Session daemon terminated with an error (exit status: %d)",
1259 WEXITSTATUS(status));
1260 ret = -1;
1261 goto end;
1262 }
1263 break;
1264 }
92360082 1265 }
bbd44cae 1266
92360082
JG
1267 goto end;
1268 } else {
1269 PERROR("fork");
1270 ret = -1;
1271 goto end;
1272 }
1273
1274end:
1275 return ret;
1276}
1277
1278/*
1279 * launch_sessiond
1280 *
1281 * Check if the session daemon is available using
1282 * the liblttngctl API for the check. If not, try to
1283 * spawn a daemon.
1284 */
1285static int launch_sessiond(void)
1286{
1287 int ret;
1288 char *pathname = NULL;
1289
1290 ret = lttng_session_daemon_alive();
1291 if (ret) {
1292 /* Sessiond is alive, not an error */
1293 ret = 0;
1294 goto end;
1295 }
1296
1297 /* Try command line option path */
1298 pathname = opt_sessiond_path;
1299
1300 /* Try LTTNG_SESSIOND_PATH env variable */
1301 if (pathname == NULL) {
1302 pathname = getenv(DEFAULT_SESSIOND_PATH_ENV);
1303 }
1304
1305 /* Try with configured path */
1306 if (pathname == NULL) {
1307 if (CONFIG_SESSIOND_BIN[0] != '\0') {
1308 pathname = CONFIG_SESSIOND_BIN;
1309 }
1310 }
1311
1312 /* Try the default path */
1313 if (pathname == NULL) {
1314 pathname = INSTALL_BIN_PATH "/lttng-sessiond";
1315 }
1316
1317 DBG("Session daemon binary path: %s", pathname);
1318
1319 /* Check existence and permissions */
1320 ret = access(pathname, F_OK | X_OK);
1321 if (ret < 0) {
1322 ERR("No such file or access denied: %s", pathname);
1323 goto end;
1324 }
1325
1326 ret = spawn_sessiond(pathname);
92360082 1327end:
0f4fa0d2
JG
1328 if (ret) {
1329 ERR("Problem occurred while launching session daemon (%s)",
1330 pathname);
1331 }
92360082
JG
1332 return ret;
1333}
1334
f3ed775e 1335/*
74cc1d0f 1336 * The 'create <options>' first level command
1c8d13c8
TD
1337 *
1338 * Returns one of the CMD_* result constants.
f3ed775e
DG
1339 */
1340int cmd_create(int argc, const char **argv)
1341{
37d03ff7 1342 int opt, ret = CMD_SUCCESS, command_ret = CMD_SUCCESS, success = 1;
ecc48a90 1343 char *opt_arg = NULL;
f3ed775e
DG
1344 static poptContext pc;
1345
1346 pc = poptGetContext(NULL, argc, argv, long_options, 0);
1347 poptReadDefaultConfig(pc, 0);
1348
1349 while ((opt = poptGetNextOpt(pc)) != -1) {
1350 switch (opt) {
1351 case OPT_HELP:
4ba92f18 1352 SHOW_HELP();
f3ed775e 1353 goto end;
679b4943
SM
1354 case OPT_LIST_OPTIONS:
1355 list_cmd_options(stdout, long_options);
679b4943 1356 goto end;
ecc48a90
JD
1357 case OPT_LIVE_TIMER:
1358 {
1359 unsigned long v;
1360
1361 errno = 0;
1362 opt_arg = poptGetOptArg(pc);
d73c5802
DG
1363 if (!opt_arg) {
1364 /* Set up default values. */
1365 opt_live_timer = (uint32_t) DEFAULT_LTTNG_LIVE_TIMER;
1366 DBG("Session live timer interval set to default value %d",
1367 opt_live_timer);
1368 break;
1369 }
1370
ecc48a90
JD
1371 v = strtoul(opt_arg, NULL, 0);
1372 if (errno != 0 || !isdigit(opt_arg[0])) {
1373 ERR("Wrong value in --live parameter: %s", opt_arg);
1374 ret = CMD_ERROR;
1375 goto end;
1376 }
1377 if (v != (uint32_t) v) {
1378 ERR("32-bit overflow in --live parameter: %s", opt_arg);
1379 ret = CMD_ERROR;
1380 goto end;
1381 }
0ed9e0be
JG
1382 if (v == 0) {
1383 ERR("Live timer interval must be greater than zero");
1384 ret = CMD_ERROR;
1385 goto end;
1386 }
ecc48a90
JD
1387 opt_live_timer = (uint32_t) v;
1388 DBG("Session live timer interval set to %d", opt_live_timer);
1389 break;
1390 }
f3ed775e 1391 default:
f3ed775e
DG
1392 ret = CMD_UNDEFINED;
1393 goto end;
1394 }
1395 }
1396
785d2d0d 1397 if (opt_no_consumer) {
96fe6b8d 1398 MSG("The option --no-consumer is obsolete. Use --no-output now.");
785d2d0d
DG
1399 ret = CMD_WARNING;
1400 goto end;
1401 }
1402
92360082
JG
1403 /* Spawn a session daemon if needed */
1404 if (!opt_no_sessiond) {
1405 ret = launch_sessiond();
1406 if (ret) {
1407 ret = CMD_ERROR;
1408 goto end;
1409 }
1410 }
1411
acc09215 1412 /* MI initialization */
37d03ff7
JRJ
1413 if (lttng_opt_mi) {
1414 writer = mi_lttng_writer_create(fileno(stdout), lttng_opt_mi);
1415 if (!writer) {
1416 ret = -LTTNG_ERR_NOMEM;
1417 goto end;
1418 }
1419
1420 /* Open command element */
1421 ret = mi_lttng_writer_command_open(writer,
1422 mi_lttng_element_command_create);
1423 if (ret) {
1424 ret = CMD_ERROR;
1425 goto end;
1426 }
1427
1428 /* Open output element */
1429 ret = mi_lttng_writer_open_element(writer,
1430 mi_lttng_element_command_output);
1431 if (ret) {
1432 ret = CMD_ERROR;
1433 goto end;
1434 }
1435 }
f3ed775e
DG
1436 opt_session_name = (char*) poptGetArg(pc);
1437
37d03ff7 1438 command_ret = create_session();
227bc702 1439
37d03ff7
JRJ
1440 if (command_ret) {
1441 success = 0;
1442 }
1443
1444 if (lttng_opt_mi) {
1445 /* Close output element */
1446 ret = mi_lttng_writer_close_element(writer);
1447 if (ret) {
1448 ret = CMD_ERROR;
1449 goto end;
1450 }
1451
1452 /* Success ? */
1453 ret = mi_lttng_writer_write_element_bool(writer,
1454 mi_lttng_element_command_success, success);
1455 if (ret) {
1456 ret = CMD_ERROR;
1457 goto end;
1458 }
1459
1460 /* Command element close */
1461 ret = mi_lttng_writer_command_close(writer);
1462 if (ret) {
1463 ret = CMD_ERROR;
1464 goto end;
1465 }
1466 }
f3ed775e
DG
1467
1468end:
37d03ff7
JRJ
1469 /* Mi clean-up */
1470 if (writer && mi_lttng_writer_destroy(writer)) {
1471 /* Preserve original error code */
1472 ret = ret ? ret : -LTTNG_ERR_MI_IO_FAIL;
1473 }
1474
acc09215 1475 /* Overwrite ret if an error occurred in create_session() */
37d03ff7
JRJ
1476 ret = command_ret ? command_ret : ret;
1477
ca1c3607 1478 poptFreeContext(pc);
f3ed775e
DG
1479 return ret;
1480}
This page took 0.125427 seconds and 5 git commands to generate.