Force usage of assert() condition when NDEBUG is defined
[lttng-tools.git] / src / bin / lttng / commands / snapshot.c
1 /*
2 * Copyright (C) 2013 David Goulet <dgoulet@efficios.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 */
7
8 #define _LGPL_SOURCE
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
18 #include <common/utils.h>
19 #include <common/mi-lttng.h>
20 #include <lttng/lttng.h>
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
39 #ifdef LTTNG_EMBED_HELP
40 static const char help_msg[] =
41 #include <lttng-snapshot.1.h>
42 ;
43 #endif
44
45 enum {
46 OPT_HELP = 1,
47 OPT_LIST_OPTIONS,
48 OPT_MAX_SIZE,
49 OPT_LIST_COMMANDS,
50 };
51
52 static struct mi_writer *writer;
53
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},
61 {"max-size", 'm', POPT_ARG_STRING, 0, OPT_MAX_SIZE, 0, 0},
62 {"list-options", 0, POPT_ARG_NONE, NULL, OPT_LIST_OPTIONS, NULL, NULL},
63 {"list-commands", 0, POPT_ARG_NONE, NULL, OPT_LIST_COMMANDS},
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
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
82 LTTNG_ASSERT(argv);
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
147 static int list_output(void)
148 {
149 int ret, output_seen = 0;
150 struct lttng_snapshot_output *s_iter;
151 struct lttng_snapshot_output_list *list;
152
153 ret = lttng_snapshot_list_output(current_session_name, &list);
154 if (ret < 0) {
155 goto error;
156 }
157
158 MSG("Snapshot output list for session %s", current_session_name);
159
160 if (lttng_opt_mi) {
161 ret = mi_lttng_snapshot_output_session_name(writer,
162 current_session_name);
163 if (ret) {
164 ret = CMD_ERROR;
165 goto end;
166 }
167 }
168
169 while ((s_iter = lttng_snapshot_output_list_get_next(list)) != NULL) {
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 }
182 output_seen = 1;
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 }
190 }
191
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:
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 */
220 static int del_output(uint32_t id, const char *name)
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
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 }
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
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 }
256
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
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;
277 char name[NAME_MAX];
278 const char *n_ptr;
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
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
308 MSG("Snapshot output successfully added for session %s",
309 current_session_name);
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 }
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 }
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 {
334 int ret;
335
336 if (argc < 2 && (!opt_data_url || !opt_ctrl_url)) {
337 ERR("An output destination must be specified to add a snapshot output.");
338 ret = CMD_ERROR;
339 goto end;
340 }
341
342 ret = add_output(argv[1]);
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 }
354
355 end:
356 return ret;
357 }
358
359 static int cmd_del_output(int argc, const char **argv)
360 {
361 int ret;
362 char *name;
363 long id;
364
365 if (argc < 2) {
366 ERR("A snapshot output name or id must be provided to delete a snapshot output.");
367 ret = CMD_ERROR;
368 goto end;
369 }
370
371 errno = 0;
372 id = strtol(argv[1], &name, 10);
373 if (id == 0 && (errno == 0 || errno == EINVAL)) {
374 ret = del_output(UINT32_MAX, name);
375 } else if (errno == 0 && *name == '\0') {
376 ret = del_output(id, NULL);
377 } else {
378 ERR("Argument %s not recognized", argv[1]);
379 ret = -1;
380 goto end;
381 }
382
383 end:
384 return ret;
385 }
386
387 static int cmd_list_output(int argc, const char **argv)
388 {
389 int ret;
390
391 ret = list_output();
392
393 return ret;
394 }
395
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
404 output = create_output_from_args(url);
405 if (!output) {
406 ret = CMD_FATAL;
407 goto error;
408 }
409
410 ret = lttng_snapshot_record(current_session_name, output, 0);
411 if (ret < 0) {
412 if (ret == -LTTNG_ERR_MAX_SIZE_INVALID) {
413 ERR("Invalid snapshot size. Cannot fit at least one packet per stream.");
414 }
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);
425 }
426
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
435 error:
436 lttng_snapshot_output_destroy(output);
437 return ret;
438 }
439
440 static int cmd_record(int argc, const char **argv)
441 {
442 int ret;
443
444 if (argc == 2) {
445 ret = record(argv[1]);
446 } else {
447 ret = record(NULL);
448 }
449
450 return ret;
451 }
452
453 static enum cmd_error_code handle_command(const char **argv)
454 {
455 int mi_ret, i = 0, argc;
456 enum cmd_error_code cmd_ret;
457 struct cmd_struct *cmd;
458
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) ||
466 (opt_ctrl_url && !opt_data_url)) {
467 ERR("URLs must be specified for both data and control");
468 cmd_ret = CMD_ERROR;
469 goto end;
470 }
471
472 argc = count_arguments(argv);
473 /* popt should have passed NULL if no arguments are present. */
474 LTTNG_ASSERT(argc > 0);
475
476 cmd = &actions[i];
477 while (cmd->func != NULL) {
478 /* Find command */
479 if (strcmp(argv[0], cmd->name) == 0) {
480 int result;
481
482 if (lttng_opt_mi) {
483 /* Action element */
484 mi_ret = mi_lttng_writer_open_element(writer,
485 mi_lttng_element_command_action);
486 if (mi_ret) {
487 cmd_ret = CMD_ERROR;
488 goto end;
489 }
490
491 /* Name of the action */
492 mi_ret = mi_lttng_writer_write_element_string(writer,
493 config_element_name, argv[0]);
494 if (mi_ret) {
495 cmd_ret = CMD_ERROR;
496 goto end;
497 }
498
499 /* Open output element */
500 mi_ret = mi_lttng_writer_open_element(writer,
501 mi_lttng_element_command_output);
502 if (mi_ret) {
503 cmd_ret = CMD_ERROR;
504 goto end;
505 }
506 }
507
508 result = cmd->func(argc, argv);
509 if (result) {
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 */
523 cmd_ret = result;
524 break;
525 case -LTTNG_ERR_SNAPSHOT_NODATA:
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
546
547 if (lttng_opt_mi) {
548 /* Close output and action element */
549 mi_ret = mi_lttng_close_multi_element(writer, 2);
550 if (mi_ret) {
551 cmd_ret = CMD_ERROR;
552 goto end;
553 }
554 }
555 goto end;
556 }
557 i++;
558 cmd = &actions[i];
559 }
560
561 cmd_ret = CMD_UNDEFINED;
562
563 end:
564 return cmd_ret;
565 }
566 /*
567 * The 'snapshot <cmd> <options>' first level command
568 */
569 int cmd_snapshot(int argc, const char **argv)
570 {
571 int opt;
572 int mi_ret;
573 enum cmd_error_code cmd_ret = CMD_SUCCESS;
574 char *session_name = NULL;
575 static poptContext pc;
576
577 pc = poptGetContext(NULL, argc, argv, snapshot_opts, 0);
578 poptReadDefaultConfig(pc, 0);
579
580 /* Mi check */
581 if (lttng_opt_mi) {
582 writer = mi_lttng_writer_create(fileno(stdout), lttng_opt_mi);
583 if (!writer) {
584 cmd_ret = CMD_ERROR;
585 goto end;
586 }
587
588 /* Open command element */
589 mi_ret = mi_lttng_writer_command_open(writer,
590 mi_lttng_element_command_snapshot);
591 if (mi_ret) {
592 cmd_ret = CMD_ERROR;
593 goto end;
594 }
595
596 /* Open output element */
597 mi_ret = mi_lttng_writer_open_element(writer,
598 mi_lttng_element_command_output);
599 if (mi_ret) {
600 cmd_ret = CMD_ERROR;
601 goto end;
602 }
603 }
604
605 while ((opt = poptGetNextOpt(pc)) != -1) {
606 switch (opt) {
607 case OPT_HELP:
608 {
609 int ret;
610
611 /* SHOW_HELP assigns to ret. */
612 SHOW_HELP();
613 cmd_ret = ret;
614 goto end;
615 }
616 case OPT_LIST_OPTIONS:
617 list_cmd_options(stdout, snapshot_opts);
618 goto end;
619 case OPT_LIST_COMMANDS:
620 list_commands(actions, stdout);
621 goto end;
622 case OPT_MAX_SIZE:
623 {
624 uint64_t val;
625 const char *max_size_arg = poptGetOptArg(pc);
626
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);
630 cmd_ret = CMD_ERROR;
631 goto end;
632 }
633
634 opt_max_size = val;
635
636 break;
637 }
638 default:
639 cmd_ret = CMD_UNDEFINED;
640 goto end;
641 }
642 }
643
644 if (!opt_session_name) {
645 session_name = get_session_name();
646 if (session_name == NULL) {
647 cmd_ret = CMD_ERROR;
648 goto end;
649 }
650 current_session_name = session_name;
651 } else {
652 current_session_name = opt_session_name;
653 }
654
655 cmd_ret = handle_command(poptGetArgs(pc));
656
657 if (lttng_opt_mi) {
658 /* Close output element */
659 mi_ret = mi_lttng_writer_close_element(writer);
660 if (mi_ret) {
661 cmd_ret = CMD_ERROR;
662 goto end;
663 }
664
665 /* Success ? */
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;
671 goto end;
672 }
673
674 /* Command element close */
675 mi_ret = mi_lttng_writer_command_close(writer);
676 if (mi_ret) {
677 cmd_ret = CMD_ERROR;
678 goto end;
679 }
680 }
681
682 end:
683 /* Mi clean-up */
684 if (writer && mi_lttng_writer_destroy(writer)) {
685 cmd_ret = CMD_ERROR;
686 }
687
688 if (!opt_session_name) {
689 free(session_name);
690 }
691
692 poptFreeContext(pc);
693 return cmd_ret;
694 }
This page took 0.042608 seconds and 4 git commands to generate.