Commit | Line | Data |
---|---|---|
57f272ed DG |
1 | /* |
2 | * Copyright (C) 2013 - David Goulet <dgoulet@efficios.com> | |
3 | * | |
4 | * This program is free software; you can redistribute it and/or modify it | |
5 | * under the terms of the GNU General Public License, version 2 only, as | |
6 | * published by the Free Software Foundation. | |
7 | * | |
8 | * This program is distributed in the hope that it will be useful, but WITHOUT | |
9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | |
11 | * more details. | |
12 | * | |
13 | * You should have received a copy of the GNU General Public License along with | |
14 | * this program; if not, write to the Free Software Foundation, Inc., 51 | |
15 | * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
16 | */ | |
17 | ||
6c1c0768 | 18 | #define _LGPL_SOURCE |
57f272ed DG |
19 | #include <assert.h> |
20 | #include <inttypes.h> | |
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 <unistd.h> | |
50534d6f | 28 | #include <assert.h> |
57f272ed | 29 | |
a8f307d8 | 30 | #include <common/utils.h> |
50534d6f | 31 | #include <common/mi-lttng.h> |
57f272ed DG |
32 | #include <lttng/snapshot.h> |
33 | ||
34 | #include "../command.h" | |
35 | ||
36 | static const char *opt_session_name; | |
37 | static const char *opt_output_name; | |
38 | static const char *opt_data_url; | |
39 | static const char *opt_ctrl_url; | |
40 | static const char *current_session_name; | |
41 | static uint64_t opt_max_size; | |
42 | ||
43 | /* Stub for the cmd struct actions. */ | |
44 | static int cmd_add_output(int argc, const char **argv); | |
45 | static int cmd_del_output(int argc, const char **argv); | |
46 | static int cmd_list_output(int argc, const char **argv); | |
47 | static int cmd_record(int argc, const char **argv); | |
48 | ||
49 | static const char *indent4 = " "; | |
50 | ||
4fc83d94 PP |
51 | #ifdef LTTNG_EMBED_HELP |
52 | static const char help_msg[] = | |
53 | #include <lttng-snapshot.1.h> | |
54 | ; | |
55 | #endif | |
56 | ||
57f272ed DG |
57 | enum { |
58 | OPT_HELP = 1, | |
59 | OPT_LIST_OPTIONS, | |
60 | OPT_MAX_SIZE, | |
3c9bd23c | 61 | OPT_LIST_COMMANDS, |
57f272ed DG |
62 | }; |
63 | ||
50534d6f JRJ |
64 | static struct mi_writer *writer; |
65 | ||
57f272ed DG |
66 | static struct poptOption snapshot_opts[] = { |
67 | /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */ | |
68 | {"help", 'h', POPT_ARG_NONE, 0, OPT_HELP, 0, 0}, | |
69 | {"session", 's', POPT_ARG_STRING, &opt_session_name, 0, 0, 0}, | |
70 | {"ctrl-url", 'C', POPT_ARG_STRING, &opt_ctrl_url, 0, 0, 0}, | |
71 | {"data-url", 'D', POPT_ARG_STRING, &opt_data_url, 0, 0, 0}, | |
72 | {"name", 'n', POPT_ARG_STRING, &opt_output_name, 0, 0, 0}, | |
a8f307d8 | 73 | {"max-size", 'm', POPT_ARG_STRING, 0, OPT_MAX_SIZE, 0, 0}, |
57f272ed | 74 | {"list-options", 0, POPT_ARG_NONE, NULL, OPT_LIST_OPTIONS, NULL, NULL}, |
3c9bd23c | 75 | {"list-commands", 0, POPT_ARG_NONE, NULL, OPT_LIST_COMMANDS}, |
57f272ed DG |
76 | {0, 0, 0, 0, 0, 0, 0} |
77 | }; | |
78 | ||
79 | static struct cmd_struct actions[] = { | |
80 | { "add-output", cmd_add_output }, | |
81 | { "del-output", cmd_del_output }, | |
82 | { "list-output", cmd_list_output }, | |
83 | { "record", cmd_record }, | |
84 | { NULL, NULL } /* Array closure */ | |
85 | }; | |
86 | ||
57f272ed DG |
87 | /* |
88 | * Count and return the number of arguments in argv. | |
89 | */ | |
90 | static int count_arguments(const char **argv) | |
91 | { | |
92 | int i = 0; | |
93 | ||
94 | assert(argv); | |
95 | ||
96 | while (argv[i] != NULL) { | |
97 | i++; | |
98 | } | |
99 | ||
100 | return i; | |
101 | } | |
102 | ||
103 | /* | |
104 | * Create a snapshot output object from arguments using the given URL. | |
105 | * | |
106 | * Return a newly allocated object or NULL on error. | |
107 | */ | |
108 | static struct lttng_snapshot_output *create_output_from_args(const char *url) | |
109 | { | |
110 | int ret = 0; | |
111 | struct lttng_snapshot_output *output = NULL; | |
112 | ||
113 | output = lttng_snapshot_output_create(); | |
114 | if (!output) { | |
115 | goto error_create; | |
116 | } | |
117 | ||
118 | if (url) { | |
119 | ret = lttng_snapshot_output_set_ctrl_url(url, output); | |
120 | if (ret < 0) { | |
121 | goto error; | |
122 | } | |
123 | } else if (opt_ctrl_url) { | |
124 | ret = lttng_snapshot_output_set_ctrl_url(opt_ctrl_url, output); | |
125 | if (ret < 0) { | |
126 | goto error; | |
127 | } | |
128 | } | |
129 | ||
130 | if (opt_data_url) { | |
131 | ret = lttng_snapshot_output_set_data_url(opt_data_url, output); | |
132 | if (ret < 0) { | |
133 | goto error; | |
134 | } | |
135 | } | |
136 | ||
137 | if (opt_max_size) { | |
138 | ret = lttng_snapshot_output_set_size(opt_max_size, output); | |
139 | if (ret < 0) { | |
140 | goto error; | |
141 | } | |
142 | } | |
143 | ||
144 | if (opt_output_name) { | |
145 | ret = lttng_snapshot_output_set_name(opt_output_name, output); | |
146 | if (ret < 0) { | |
147 | goto error; | |
148 | } | |
149 | } | |
150 | ||
151 | return output; | |
152 | ||
153 | error: | |
154 | lttng_snapshot_output_destroy(output); | |
155 | error_create: | |
156 | return NULL; | |
157 | } | |
158 | ||
8e610b42 | 159 | static int list_output(void) |
50534d6f | 160 | { |
8e610b42 | 161 | int ret, output_seen = 0; |
50534d6f JRJ |
162 | struct lttng_snapshot_output *s_iter; |
163 | struct lttng_snapshot_output_list *list; | |
164 | ||
50534d6f JRJ |
165 | ret = lttng_snapshot_list_output(current_session_name, &list); |
166 | if (ret < 0) { | |
167 | goto error; | |
168 | } | |
169 | ||
8e610b42 | 170 | MSG("Snapshot output list for session %s", current_session_name); |
50534d6f | 171 | |
8e610b42 JR |
172 | if (lttng_opt_mi) { |
173 | ret = mi_lttng_snapshot_output_session_name(writer, | |
174 | current_session_name); | |
50534d6f JRJ |
175 | if (ret) { |
176 | ret = CMD_ERROR; | |
177 | goto end; | |
178 | } | |
179 | } | |
180 | ||
57f272ed | 181 | while ((s_iter = lttng_snapshot_output_list_get_next(list)) != NULL) { |
c3024823 | 182 | MSG("%s[%" PRIu32 "] %s: %s (max-size: %" PRId64 ")", indent4, |
57f272ed DG |
183 | lttng_snapshot_output_get_id(s_iter), |
184 | lttng_snapshot_output_get_name(s_iter), | |
c3024823 DG |
185 | lttng_snapshot_output_get_ctrl_url(s_iter), |
186 | lttng_snapshot_output_get_maxsize(s_iter)); | |
57f272ed | 187 | output_seen = 1; |
8e610b42 JR |
188 | if (lttng_opt_mi) { |
189 | ret = mi_lttng_snapshot_list_output(writer, s_iter); | |
190 | if (ret) { | |
191 | ret = CMD_ERROR; | |
192 | goto end; | |
193 | } | |
194 | } | |
57f272ed DG |
195 | } |
196 | ||
8e610b42 JR |
197 | if (lttng_opt_mi) { |
198 | /* Close snapshot snapshots element */ | |
199 | ret = mi_lttng_writer_close_element(writer); | |
200 | if (ret) { | |
201 | ret = CMD_ERROR; | |
202 | goto end; | |
203 | } | |
204 | ||
205 | /* Close snapshot session element */ | |
206 | ret = mi_lttng_writer_close_element(writer); | |
207 | if (ret) { | |
208 | ret = CMD_ERROR; | |
209 | } | |
210 | } | |
211 | end: | |
57f272ed DG |
212 | lttng_snapshot_output_list_destroy(list); |
213 | ||
214 | if (!output_seen) { | |
215 | MSG("%sNone", indent4); | |
216 | } | |
217 | ||
218 | error: | |
219 | return ret; | |
220 | } | |
221 | ||
222 | /* | |
223 | * Delete output by ID. | |
224 | */ | |
eb240553 | 225 | static int del_output(uint32_t id, const char *name) |
57f272ed DG |
226 | { |
227 | int ret; | |
228 | struct lttng_snapshot_output *output = NULL; | |
229 | ||
230 | output = lttng_snapshot_output_create(); | |
231 | if (!output) { | |
232 | ret = CMD_FATAL; | |
233 | goto error; | |
234 | } | |
235 | ||
eb240553 DG |
236 | if (name) { |
237 | ret = lttng_snapshot_output_set_name(name, output); | |
238 | } else if (id != UINT32_MAX) { | |
239 | ret = lttng_snapshot_output_set_id(id, output); | |
240 | } else { | |
241 | ret = CMD_ERROR; | |
242 | goto error; | |
243 | } | |
57f272ed DG |
244 | if (ret < 0) { |
245 | ret = CMD_FATAL; | |
246 | goto error; | |
247 | } | |
248 | ||
249 | ret = lttng_snapshot_del_output(current_session_name, output); | |
250 | if (ret < 0) { | |
251 | goto error; | |
252 | } | |
253 | ||
eb240553 DG |
254 | if (id != UINT32_MAX) { |
255 | MSG("Snapshot output id %" PRIu32 " successfully deleted for session %s", | |
256 | id, current_session_name); | |
257 | } else { | |
258 | MSG("Snapshot output %s successfully deleted for session %s", | |
259 | name, current_session_name); | |
260 | } | |
57f272ed | 261 | |
6546176b JR |
262 | if (lttng_opt_mi) { |
263 | ret = mi_lttng_snapshot_del_output(writer, id, name, | |
264 | current_session_name); | |
265 | if (ret) { | |
266 | ret = CMD_ERROR; | |
267 | } | |
268 | } | |
269 | ||
57f272ed DG |
270 | error: |
271 | lttng_snapshot_output_destroy(output); | |
272 | return ret; | |
273 | } | |
274 | ||
275 | /* | |
276 | * Add output from the user URL. | |
277 | */ | |
278 | static int add_output(const char *url) | |
279 | { | |
280 | int ret; | |
281 | struct lttng_snapshot_output *output = NULL; | |
6efe784e DG |
282 | char name[NAME_MAX]; |
283 | const char *n_ptr; | |
57f272ed DG |
284 | |
285 | if (!url && (!opt_data_url || !opt_ctrl_url)) { | |
286 | ret = CMD_ERROR; | |
287 | goto error; | |
288 | } | |
289 | ||
290 | output = create_output_from_args(url); | |
291 | if (!output) { | |
292 | ret = CMD_FATAL; | |
293 | goto error; | |
294 | } | |
295 | ||
296 | /* This call, if successful, populates the id of the output object. */ | |
297 | ret = lttng_snapshot_add_output(current_session_name, output); | |
298 | if (ret < 0) { | |
299 | goto error; | |
300 | } | |
301 | ||
6efe784e DG |
302 | n_ptr = lttng_snapshot_output_get_name(output); |
303 | if (*n_ptr == '\0') { | |
304 | int pret; | |
305 | pret = snprintf(name, sizeof(name), DEFAULT_SNAPSHOT_NAME "-%" PRIu32, | |
306 | lttng_snapshot_output_get_id(output)); | |
307 | if (pret < 0) { | |
308 | PERROR("snprintf add output name"); | |
309 | } | |
310 | n_ptr = name; | |
311 | } | |
312 | ||
57f272ed DG |
313 | MSG("Snapshot output successfully added for session %s", |
314 | current_session_name); | |
315 | MSG(" [%" PRIu32 "] %s: %s (max-size: %" PRId64 ")", | |
6efe784e | 316 | lttng_snapshot_output_get_id(output), n_ptr, |
57f272ed DG |
317 | lttng_snapshot_output_get_ctrl_url(output), |
318 | lttng_snapshot_output_get_maxsize(output)); | |
779f455d JR |
319 | if (lttng_opt_mi) { |
320 | ret = mi_lttng_snapshot_add_output(writer, current_session_name, | |
321 | n_ptr, output); | |
322 | if (ret) { | |
323 | ret = CMD_ERROR; | |
324 | } | |
325 | } | |
57f272ed DG |
326 | error: |
327 | lttng_snapshot_output_destroy(output); | |
328 | return ret; | |
329 | } | |
330 | ||
331 | static int cmd_add_output(int argc, const char **argv) | |
332 | { | |
50534d6f | 333 | int ret; |
57f272ed DG |
334 | |
335 | if (argc < 2 && (!opt_data_url || !opt_ctrl_url)) { | |
57f272ed DG |
336 | ret = CMD_ERROR; |
337 | goto end; | |
338 | } | |
339 | ||
779f455d | 340 | ret = add_output(argv[1]); |
57f272ed DG |
341 | |
342 | end: | |
343 | return ret; | |
344 | } | |
345 | ||
346 | static int cmd_del_output(int argc, const char **argv) | |
347 | { | |
50534d6f | 348 | int ret; |
eb240553 DG |
349 | char *name; |
350 | long id; | |
57f272ed DG |
351 | |
352 | if (argc < 2) { | |
57f272ed DG |
353 | ret = CMD_ERROR; |
354 | goto end; | |
355 | } | |
356 | ||
eb240553 DG |
357 | errno = 0; |
358 | id = strtol(argv[1], &name, 10); | |
07f50237 | 359 | if (id == 0 && (errno == 0 || errno == EINVAL)) { |
6546176b | 360 | ret = del_output(UINT32_MAX, name); |
eb240553 | 361 | } else if (errno == 0 && *name == '\0') { |
6546176b | 362 | ret = del_output(id, NULL); |
eb240553 DG |
363 | } else { |
364 | ERR("Argument %s not recognized", argv[1]); | |
365 | ret = -1; | |
366 | goto end; | |
367 | } | |
57f272ed DG |
368 | |
369 | end: | |
370 | return ret; | |
371 | } | |
372 | ||
373 | static int cmd_list_output(int argc, const char **argv) | |
374 | { | |
50534d6f JRJ |
375 | int ret; |
376 | ||
8e610b42 | 377 | ret = list_output(); |
50534d6f JRJ |
378 | |
379 | return ret; | |
380 | } | |
381 | ||
57f272ed DG |
382 | /* |
383 | * Do a snapshot record with the URL if one is given. | |
384 | */ | |
385 | static int record(const char *url) | |
386 | { | |
387 | int ret; | |
388 | struct lttng_snapshot_output *output = NULL; | |
389 | ||
e1986656 DG |
390 | output = create_output_from_args(url); |
391 | if (!output) { | |
392 | ret = CMD_FATAL; | |
393 | goto error; | |
57f272ed DG |
394 | } |
395 | ||
396 | ret = lttng_snapshot_record(current_session_name, output, 0); | |
397 | if (ret < 0) { | |
68808f4e | 398 | if (ret == -LTTNG_ERR_MAX_SIZE_INVALID) { |
d07ceecd | 399 | ERR("Invalid snapshot size. Cannot fit at least one packet per stream."); |
68808f4e | 400 | } |
57f272ed DG |
401 | goto error; |
402 | } | |
403 | ||
404 | MSG("Snapshot recorded successfully for session %s", current_session_name); | |
405 | ||
406 | if (url) { | |
407 | MSG("Snapshot written at: %s", url); | |
408 | } else if (opt_ctrl_url) { | |
409 | MSG("Snapshot written to ctrl: %s, data: %s", opt_ctrl_url, | |
410 | opt_data_url); | |
57f272ed DG |
411 | } |
412 | ||
1862dfe0 JR |
413 | if (lttng_opt_mi) { |
414 | ret = mi_lttng_snapshot_record(writer, current_session_name, url, | |
415 | opt_ctrl_url, opt_data_url); | |
416 | if (ret) { | |
417 | ret = CMD_ERROR; | |
418 | } | |
419 | } | |
420 | ||
57f272ed | 421 | error: |
cdcdb9dd | 422 | lttng_snapshot_output_destroy(output); |
57f272ed DG |
423 | return ret; |
424 | } | |
425 | ||
426 | static int cmd_record(int argc, const char **argv) | |
427 | { | |
428 | int ret; | |
429 | ||
430 | if (argc == 2) { | |
1862dfe0 | 431 | ret = record(argv[1]); |
57f272ed | 432 | } else { |
1862dfe0 | 433 | ret = record(NULL); |
57f272ed DG |
434 | } |
435 | ||
436 | return ret; | |
437 | } | |
438 | ||
439 | static int handle_command(const char **argv) | |
440 | { | |
50534d6f | 441 | int ret = CMD_SUCCESS, i = 0, argc, command_ret = CMD_SUCCESS; |
57f272ed DG |
442 | struct cmd_struct *cmd; |
443 | ||
444 | if (argv == NULL || (!opt_ctrl_url && opt_data_url) || | |
445 | (opt_ctrl_url && !opt_data_url)) { | |
50534d6f | 446 | command_ret = CMD_ERROR; |
57f272ed DG |
447 | goto end; |
448 | } | |
449 | ||
450 | argc = count_arguments(argv); | |
451 | ||
452 | cmd = &actions[i]; | |
453 | while (cmd->func != NULL) { | |
454 | /* Find command */ | |
455 | if (strcmp(argv[0], cmd->name) == 0) { | |
50534d6f JRJ |
456 | if (lttng_opt_mi) { |
457 | /* Action element */ | |
458 | ret = mi_lttng_writer_open_element(writer, | |
459 | mi_lttng_element_command_action); | |
460 | if (ret) { | |
461 | ret = CMD_ERROR; | |
462 | goto end; | |
463 | } | |
464 | ||
465 | /* Name of the action */ | |
466 | ret = mi_lttng_writer_write_element_string(writer, | |
467 | config_element_name, argv[0]); | |
468 | if (ret) { | |
469 | ret = CMD_ERROR; | |
470 | goto end; | |
471 | } | |
472 | ||
473 | /* Open output element */ | |
474 | ret = mi_lttng_writer_open_element(writer, | |
475 | mi_lttng_element_command_output); | |
476 | if (ret) { | |
477 | ret = CMD_ERROR; | |
478 | goto end; | |
479 | } | |
480 | } | |
481 | ||
482 | command_ret = cmd->func(argc, argv); | |
483 | ||
484 | if (lttng_opt_mi) { | |
485 | /* Close output and action element */ | |
486 | ret = mi_lttng_close_multi_element(writer, 2); | |
487 | if (ret) { | |
488 | ret = CMD_ERROR; | |
489 | goto end; | |
490 | } | |
491 | } | |
57f272ed DG |
492 | goto end; |
493 | } | |
494 | i++; | |
495 | cmd = &actions[i]; | |
496 | } | |
497 | ||
1ec06ed3 | 498 | ret = CMD_UNDEFINED; |
57f272ed DG |
499 | |
500 | end: | |
1ec06ed3 | 501 | /* Overwrite ret if an error occurred in cmd->func() */ |
50534d6f | 502 | ret = command_ret ? command_ret : ret; |
57f272ed DG |
503 | return ret; |
504 | } | |
57f272ed DG |
505 | /* |
506 | * The 'snapshot <cmd> <options>' first level command | |
507 | */ | |
508 | int cmd_snapshot(int argc, const char **argv) | |
509 | { | |
50534d6f | 510 | int opt, ret = CMD_SUCCESS, command_ret = CMD_SUCCESS, success = 1; |
57f272ed DG |
511 | char *session_name = NULL; |
512 | static poptContext pc; | |
513 | ||
514 | pc = poptGetContext(NULL, argc, argv, snapshot_opts, 0); | |
515 | poptReadDefaultConfig(pc, 0); | |
516 | ||
50534d6f | 517 | /* Mi check */ |
c7e35b03 | 518 | if (lttng_opt_mi) { |
50534d6f JRJ |
519 | writer = mi_lttng_writer_create(fileno(stdout), lttng_opt_mi); |
520 | if (!writer) { | |
521 | ret = -LTTNG_ERR_NOMEM; | |
522 | goto end; | |
523 | } | |
524 | ||
525 | /* Open command element */ | |
526 | ret = mi_lttng_writer_command_open(writer, | |
527 | mi_lttng_element_command_snapshot); | |
528 | if (ret) { | |
529 | ret = CMD_ERROR; | |
530 | goto end; | |
531 | } | |
532 | ||
533 | /* Open output element */ | |
534 | ret = mi_lttng_writer_open_element(writer, | |
535 | mi_lttng_element_command_output); | |
536 | if (ret) { | |
537 | ret = CMD_ERROR; | |
538 | goto end; | |
539 | } | |
c7e35b03 JR |
540 | } |
541 | ||
57f272ed DG |
542 | while ((opt = poptGetNextOpt(pc)) != -1) { |
543 | switch (opt) { | |
544 | case OPT_HELP: | |
4ba92f18 | 545 | SHOW_HELP(); |
57f272ed DG |
546 | goto end; |
547 | case OPT_LIST_OPTIONS: | |
548 | list_cmd_options(stdout, snapshot_opts); | |
549 | goto end; | |
3c9bd23c SM |
550 | case OPT_LIST_COMMANDS: |
551 | list_commands(actions, stdout); | |
552 | goto end; | |
57f272ed DG |
553 | case OPT_MAX_SIZE: |
554 | { | |
a8f307d8 | 555 | uint64_t val; |
57f272ed DG |
556 | const char *opt = poptGetOptArg(pc); |
557 | ||
a8f307d8 | 558 | if (utils_parse_size_suffix((char *) opt, &val) < 0) { |
57f272ed DG |
559 | ERR("Unable to handle max-size value %s", opt); |
560 | ret = CMD_ERROR; | |
561 | goto end; | |
562 | } | |
563 | ||
57f272ed DG |
564 | opt_max_size = val; |
565 | ||
566 | break; | |
567 | } | |
568 | default: | |
57f272ed DG |
569 | ret = CMD_UNDEFINED; |
570 | goto end; | |
571 | } | |
572 | } | |
573 | ||
574 | if (!opt_session_name) { | |
575 | session_name = get_session_name(); | |
576 | if (session_name == NULL) { | |
577 | ret = CMD_ERROR; | |
578 | goto end; | |
579 | } | |
580 | current_session_name = session_name; | |
581 | } else { | |
582 | current_session_name = opt_session_name; | |
583 | } | |
584 | ||
50534d6f | 585 | command_ret = handle_command(poptGetArgs(pc)); |
1ec06ed3 | 586 | if (command_ret) { |
50534d6f | 587 | switch (-command_ret) { |
7badf927 | 588 | case LTTNG_ERR_SNAPSHOT_NODATA: |
50534d6f | 589 | WARN("%s", lttng_strerror(command_ret)); |
dad01b0a JR |
590 | |
591 | /* A warning is fine since the user has no control on | |
592 | * whether or not applications (or the kernel) have | |
593 | * produced any event between the start of the tracing | |
594 | * session and the recording of the snapshot. MI wise | |
595 | * the command is not a success since nothing was | |
596 | * recorded. | |
597 | */ | |
598 | command_ret = 0; | |
7badf927 DG |
599 | break; |
600 | default: | |
50534d6f | 601 | ERR("%s", lttng_strerror(command_ret)); |
7badf927 | 602 | break; |
6dc3064a | 603 | } |
50534d6f JRJ |
604 | success = 0; |
605 | } | |
606 | ||
607 | if (lttng_opt_mi) { | |
608 | /* Close output element */ | |
609 | ret = mi_lttng_writer_close_element(writer); | |
610 | if (ret) { | |
611 | ret = CMD_ERROR; | |
612 | goto end; | |
613 | } | |
614 | ||
615 | /* Success ? */ | |
616 | ret = mi_lttng_writer_write_element_bool(writer, | |
617 | mi_lttng_element_command_success, success); | |
618 | if (ret) { | |
619 | ret = CMD_ERROR; | |
620 | goto end; | |
621 | } | |
622 | ||
623 | /* Command element close */ | |
624 | ret = mi_lttng_writer_command_close(writer); | |
625 | if (ret) { | |
626 | ret = CMD_ERROR; | |
627 | goto end; | |
628 | } | |
57f272ed DG |
629 | } |
630 | ||
631 | end: | |
50534d6f JRJ |
632 | /* Mi clean-up */ |
633 | if (writer && mi_lttng_writer_destroy(writer)) { | |
634 | /* Preserve original error code */ | |
635 | ret = ret ? ret : -LTTNG_ERR_MI_IO_FAIL; | |
636 | } | |
637 | ||
57f272ed DG |
638 | if (!opt_session_name) { |
639 | free(session_name); | |
640 | } | |
50534d6f | 641 | |
83f4233d | 642 | /* Overwrite ret if an error occurred during handle_command */ |
50534d6f | 643 | ret = command_ret ? command_ret : ret; |
57f272ed DG |
644 | poptFreeContext(pc); |
645 | return ret; | |
646 | } |