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