X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng%2Fcommands%2Fsnapshot.cpp;fp=src%2Fbin%2Flttng%2Fcommands%2Fsnapshot.cpp;h=8e19fa3d86f40f0bca00996793ed15cbab72081c;hb=48a4000561343808724f7cb5fa8c131877489ccd;hp=0000000000000000000000000000000000000000;hpb=81663f073dbfb4b61c06a0ceb8ca33c4fc41b1c5;p=lttng-tools.git diff --git a/src/bin/lttng/commands/snapshot.cpp b/src/bin/lttng/commands/snapshot.cpp new file mode 100644 index 000000000..8e19fa3d8 --- /dev/null +++ b/src/bin/lttng/commands/snapshot.cpp @@ -0,0 +1,694 @@ +/* + * Copyright (C) 2013 David Goulet + * + * SPDX-License-Identifier: GPL-2.0-only + * + */ + +#define _LGPL_SOURCE +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +#include "../command.h" + +static const char *opt_session_name; +static const char *opt_output_name; +static const char *opt_data_url; +static const char *opt_ctrl_url; +static const char *current_session_name; +static uint64_t opt_max_size; + +/* Stub for the cmd struct actions. */ +static int cmd_add_output(int argc, const char **argv); +static int cmd_del_output(int argc, const char **argv); +static int cmd_list_output(int argc, const char **argv); +static int cmd_record(int argc, const char **argv); + +static const char *indent4 = " "; + +#ifdef LTTNG_EMBED_HELP +static const char help_msg[] = +#include +; +#endif + +enum { + OPT_HELP = 1, + OPT_LIST_OPTIONS, + OPT_MAX_SIZE, + OPT_LIST_COMMANDS, +}; + +static struct mi_writer *writer; + +static struct poptOption snapshot_opts[] = { + /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */ + {"help", 'h', POPT_ARG_NONE, 0, OPT_HELP, 0, 0}, + {"session", 's', POPT_ARG_STRING, &opt_session_name, 0, 0, 0}, + {"ctrl-url", 'C', POPT_ARG_STRING, &opt_ctrl_url, 0, 0, 0}, + {"data-url", 'D', POPT_ARG_STRING, &opt_data_url, 0, 0, 0}, + {"name", 'n', POPT_ARG_STRING, &opt_output_name, 0, 0, 0}, + {"max-size", 'm', POPT_ARG_STRING, 0, OPT_MAX_SIZE, 0, 0}, + {"list-options", 0, POPT_ARG_NONE, NULL, OPT_LIST_OPTIONS, NULL, NULL}, + {"list-commands", 0, POPT_ARG_NONE, NULL, OPT_LIST_COMMANDS}, + {0, 0, 0, 0, 0, 0, 0} +}; + +static struct cmd_struct actions[] = { + { "add-output", cmd_add_output }, + { "del-output", cmd_del_output }, + { "list-output", cmd_list_output }, + { "record", cmd_record }, + { NULL, NULL } /* Array closure */ +}; + +/* + * Count and return the number of arguments in argv. + */ +static int count_arguments(const char **argv) +{ + int i = 0; + + LTTNG_ASSERT(argv); + + while (argv[i] != NULL) { + i++; + } + + return i; +} + +/* + * Create a snapshot output object from arguments using the given URL. + * + * Return a newly allocated object or NULL on error. + */ +static struct lttng_snapshot_output *create_output_from_args(const char *url) +{ + int ret = 0; + struct lttng_snapshot_output *output = NULL; + + output = lttng_snapshot_output_create(); + if (!output) { + goto error_create; + } + + if (url) { + ret = lttng_snapshot_output_set_ctrl_url(url, output); + if (ret < 0) { + goto error; + } + } else if (opt_ctrl_url) { + ret = lttng_snapshot_output_set_ctrl_url(opt_ctrl_url, output); + if (ret < 0) { + goto error; + } + } + + if (opt_data_url) { + ret = lttng_snapshot_output_set_data_url(opt_data_url, output); + if (ret < 0) { + goto error; + } + } + + if (opt_max_size) { + ret = lttng_snapshot_output_set_size(opt_max_size, output); + if (ret < 0) { + goto error; + } + } + + if (opt_output_name) { + ret = lttng_snapshot_output_set_name(opt_output_name, output); + if (ret < 0) { + goto error; + } + } + + return output; + +error: + lttng_snapshot_output_destroy(output); +error_create: + return NULL; +} + +static int list_output(void) +{ + int ret, output_seen = 0; + struct lttng_snapshot_output *s_iter; + struct lttng_snapshot_output_list *list; + + ret = lttng_snapshot_list_output(current_session_name, &list); + if (ret < 0) { + goto error; + } + + MSG("Snapshot output list for session %s", current_session_name); + + if (lttng_opt_mi) { + ret = mi_lttng_snapshot_output_session_name(writer, + current_session_name); + if (ret) { + ret = CMD_ERROR; + goto end; + } + } + + while ((s_iter = lttng_snapshot_output_list_get_next(list)) != NULL) { + if (lttng_snapshot_output_get_maxsize(s_iter)) { + MSG("%s[%" PRIu32 "] %s: %s (max size: %" PRIu64 " bytes)", indent4, + lttng_snapshot_output_get_id(s_iter), + lttng_snapshot_output_get_name(s_iter), + lttng_snapshot_output_get_ctrl_url(s_iter), + lttng_snapshot_output_get_maxsize(s_iter)); + } else { + MSG("%s[%" PRIu32 "] %s: %s", indent4, + lttng_snapshot_output_get_id(s_iter), + lttng_snapshot_output_get_name(s_iter), + lttng_snapshot_output_get_ctrl_url(s_iter)); + } + output_seen = 1; + if (lttng_opt_mi) { + ret = mi_lttng_snapshot_list_output(writer, s_iter); + if (ret) { + ret = CMD_ERROR; + goto end; + } + } + } + + if (lttng_opt_mi) { + /* Close snapshot snapshots element */ + ret = mi_lttng_writer_close_element(writer); + if (ret) { + ret = CMD_ERROR; + goto end; + } + + /* Close snapshot session element */ + ret = mi_lttng_writer_close_element(writer); + if (ret) { + ret = CMD_ERROR; + } + } +end: + lttng_snapshot_output_list_destroy(list); + + if (!output_seen) { + MSG("%sNone", indent4); + } + +error: + return ret; +} + +/* + * Delete output by ID. + */ +static int del_output(uint32_t id, const char *name) +{ + int ret; + struct lttng_snapshot_output *output = NULL; + + output = lttng_snapshot_output_create(); + if (!output) { + ret = CMD_FATAL; + goto error; + } + + if (name) { + ret = lttng_snapshot_output_set_name(name, output); + } else if (id != UINT32_MAX) { + ret = lttng_snapshot_output_set_id(id, output); + } else { + ret = CMD_ERROR; + goto error; + } + if (ret < 0) { + ret = CMD_FATAL; + goto error; + } + + ret = lttng_snapshot_del_output(current_session_name, output); + if (ret < 0) { + goto error; + } + + if (id != UINT32_MAX) { + MSG("Snapshot output id %" PRIu32 " successfully deleted for session %s", + id, current_session_name); + } else { + MSG("Snapshot output %s successfully deleted for session %s", + name, current_session_name); + } + + if (lttng_opt_mi) { + ret = mi_lttng_snapshot_del_output(writer, id, name, + current_session_name); + if (ret) { + ret = CMD_ERROR; + } + } + +error: + lttng_snapshot_output_destroy(output); + return ret; +} + +/* + * Add output from the user URL. + */ +static int add_output(const char *url) +{ + int ret; + struct lttng_snapshot_output *output = NULL; + char name[NAME_MAX]; + const char *n_ptr; + + if (!url && (!opt_data_url || !opt_ctrl_url)) { + ret = CMD_ERROR; + goto error; + } + + output = create_output_from_args(url); + if (!output) { + ret = CMD_FATAL; + goto error; + } + + /* This call, if successful, populates the id of the output object. */ + ret = lttng_snapshot_add_output(current_session_name, output); + if (ret < 0) { + goto error; + } + + n_ptr = lttng_snapshot_output_get_name(output); + if (*n_ptr == '\0') { + int pret; + pret = snprintf(name, sizeof(name), DEFAULT_SNAPSHOT_NAME "-%" PRIu32, + lttng_snapshot_output_get_id(output)); + if (pret < 0) { + PERROR("snprintf add output name"); + } + n_ptr = name; + } + + MSG("Snapshot output successfully added for session %s", + current_session_name); + if (opt_max_size) { + MSG(" [%" PRIu32 "] %s: %s (max size: %" PRIu64 " bytes)", + lttng_snapshot_output_get_id(output), n_ptr, + lttng_snapshot_output_get_ctrl_url(output), + lttng_snapshot_output_get_maxsize(output)); + } else { + MSG(" [%" PRIu32 "] %s: %s", + lttng_snapshot_output_get_id(output), n_ptr, + lttng_snapshot_output_get_ctrl_url(output)); + } + if (lttng_opt_mi) { + ret = mi_lttng_snapshot_add_output(writer, current_session_name, + n_ptr, output); + if (ret) { + ret = CMD_ERROR; + } + } +error: + lttng_snapshot_output_destroy(output); + return ret; +} + +static int cmd_add_output(int argc, const char **argv) +{ + int ret; + + if (argc < 2 && (!opt_data_url || !opt_ctrl_url)) { + ERR("An output destination must be specified to add a snapshot output."); + ret = CMD_ERROR; + goto end; + } + + ret = add_output(argv[1]); + if (ret < 0) { + switch (-ret) { + case LTTNG_ERR_SNAPSHOT_UNSUPPORTED: + ERR("Session \"%s\" contains a channel that is incompatible with the snapshot functionality.\nMake sure all channels are configured in 'mmap' output mode.", + current_session_name); + ret = CMD_ERROR; + break; + default: + break; + } + } + +end: + return ret; +} + +static int cmd_del_output(int argc, const char **argv) +{ + int ret; + char *name; + long id; + + if (argc < 2) { + ERR("A snapshot output name or id must be provided to delete a snapshot output."); + ret = CMD_ERROR; + goto end; + } + + errno = 0; + id = strtol(argv[1], &name, 10); + if (id == 0 && (errno == 0 || errno == EINVAL)) { + ret = del_output(UINT32_MAX, name); + } else if (errno == 0 && *name == '\0') { + ret = del_output(id, NULL); + } else { + ERR("Argument %s not recognized", argv[1]); + ret = -1; + goto end; + } + +end: + return ret; +} + +static int cmd_list_output(int argc, const char **argv) +{ + int ret; + + ret = list_output(); + + return ret; +} + +/* + * Do a snapshot record with the URL if one is given. + */ +static int record(const char *url) +{ + int ret; + struct lttng_snapshot_output *output = NULL; + + output = create_output_from_args(url); + if (!output) { + ret = CMD_FATAL; + goto error; + } + + ret = lttng_snapshot_record(current_session_name, output, 0); + if (ret < 0) { + if (ret == -LTTNG_ERR_MAX_SIZE_INVALID) { + ERR("Invalid snapshot size. Cannot fit at least one packet per stream."); + } + goto error; + } + + MSG("Snapshot recorded successfully for session %s", current_session_name); + + if (url) { + MSG("Snapshot written at: %s", url); + } else if (opt_ctrl_url) { + MSG("Snapshot written to ctrl: %s, data: %s", opt_ctrl_url, + opt_data_url); + } + + if (lttng_opt_mi) { + ret = mi_lttng_snapshot_record(writer, current_session_name, url, + opt_ctrl_url, opt_data_url); + if (ret) { + ret = CMD_ERROR; + } + } + +error: + lttng_snapshot_output_destroy(output); + return ret; +} + +static int cmd_record(int argc, const char **argv) +{ + int ret; + + if (argc == 2) { + ret = record(argv[1]); + } else { + ret = record(NULL); + } + + return ret; +} + +static enum cmd_error_code handle_command(const char **argv) +{ + int mi_ret, i = 0, argc; + enum cmd_error_code cmd_ret; + struct cmd_struct *cmd; + + if (!argv) { + ERR("No action specified for snapshot command."); + cmd_ret = CMD_ERROR; + goto end; + } + + if ((!opt_ctrl_url && opt_data_url) || + (opt_ctrl_url && !opt_data_url)) { + ERR("URLs must be specified for both data and control"); + cmd_ret = CMD_ERROR; + goto end; + } + + argc = count_arguments(argv); + /* popt should have passed NULL if no arguments are present. */ + LTTNG_ASSERT(argc > 0); + + cmd = &actions[i]; + while (cmd->func != NULL) { + /* Find command */ + if (strcmp(argv[0], cmd->name) == 0) { + int result; + + if (lttng_opt_mi) { + /* Action element */ + mi_ret = mi_lttng_writer_open_element(writer, + mi_lttng_element_command_action); + if (mi_ret) { + cmd_ret = CMD_ERROR; + goto end; + } + + /* Name of the action */ + mi_ret = mi_lttng_writer_write_element_string(writer, + config_element_name, argv[0]); + if (mi_ret) { + cmd_ret = CMD_ERROR; + goto end; + } + + /* Open output element */ + mi_ret = mi_lttng_writer_open_element(writer, + mi_lttng_element_command_output); + if (mi_ret) { + cmd_ret = CMD_ERROR; + goto end; + } + } + + result = cmd->func(argc, argv); + if (result) { + switch (result) { + case CMD_ERROR: + case CMD_UNDEFINED: + case CMD_FATAL: + case CMD_WARNING: + case CMD_UNSUPPORTED: + /* + * Sub-commands mix lttng_error_codes + * and cmd_error_codes. This should be + * cleaned-up, but in the meantime this + * hack works since the values of the + * two enums do not intersect. + */ + cmd_ret = (cmd_error_code) result; + break; + case -LTTNG_ERR_SNAPSHOT_NODATA: + WARN("%s", lttng_strerror(result)); + + /* A warning is fine since the user has no control on + * whether or not applications (or the kernel) have + * produced any event between the start of the tracing + * session and the recording of the snapshot. MI wise + * the command is not a success since nothing was + * recorded. + */ + cmd_ret = CMD_SUCCESS; + break; + default: + ERR("%s", lttng_strerror(result)); + cmd_ret = CMD_ERROR; + break; + } + } else { + cmd_ret = CMD_SUCCESS; + } + + + if (lttng_opt_mi) { + /* Close output and action element */ + mi_ret = mi_lttng_close_multi_element(writer, 2); + if (mi_ret) { + cmd_ret = CMD_ERROR; + goto end; + } + } + goto end; + } + i++; + cmd = &actions[i]; + } + + cmd_ret = CMD_UNDEFINED; + +end: + return cmd_ret; +} +/* + * The 'snapshot ' first level command + */ +int cmd_snapshot(int argc, const char **argv) +{ + int opt; + int mi_ret; + enum cmd_error_code cmd_ret = CMD_SUCCESS; + char *session_name = NULL; + static poptContext pc; + + pc = poptGetContext(NULL, argc, argv, snapshot_opts, 0); + poptReadDefaultConfig(pc, 0); + + /* Mi check */ + if (lttng_opt_mi) { + writer = mi_lttng_writer_create(fileno(stdout), lttng_opt_mi); + if (!writer) { + cmd_ret = CMD_ERROR; + goto end; + } + + /* Open command element */ + mi_ret = mi_lttng_writer_command_open(writer, + mi_lttng_element_command_snapshot); + if (mi_ret) { + cmd_ret = CMD_ERROR; + goto end; + } + + /* Open output element */ + mi_ret = mi_lttng_writer_open_element(writer, + mi_lttng_element_command_output); + if (mi_ret) { + cmd_ret = CMD_ERROR; + goto end; + } + } + + while ((opt = poptGetNextOpt(pc)) != -1) { + switch (opt) { + case OPT_HELP: + { + int ret; + + /* SHOW_HELP assigns to ret. */ + SHOW_HELP(); + cmd_ret = (cmd_error_code) ret; + goto end; + } + case OPT_LIST_OPTIONS: + list_cmd_options(stdout, snapshot_opts); + goto end; + case OPT_LIST_COMMANDS: + list_commands(actions, stdout); + goto end; + case OPT_MAX_SIZE: + { + uint64_t val; + const char *max_size_arg = poptGetOptArg(pc); + + if (utils_parse_size_suffix((char *) max_size_arg, &val) < 0) { + ERR("Unable to handle max-size value %s", + max_size_arg); + cmd_ret = CMD_ERROR; + goto end; + } + + opt_max_size = val; + + break; + } + default: + cmd_ret = CMD_UNDEFINED; + goto end; + } + } + + if (!opt_session_name) { + session_name = get_session_name(); + if (session_name == NULL) { + cmd_ret = CMD_ERROR; + goto end; + } + current_session_name = session_name; + } else { + current_session_name = opt_session_name; + } + + cmd_ret = handle_command(poptGetArgs(pc)); + + if (lttng_opt_mi) { + /* Close output element */ + mi_ret = mi_lttng_writer_close_element(writer); + if (mi_ret) { + cmd_ret = CMD_ERROR; + goto end; + } + + /* Success ? */ + mi_ret = mi_lttng_writer_write_element_bool(writer, + mi_lttng_element_command_success, + cmd_ret == CMD_SUCCESS); + if (mi_ret) { + cmd_ret = CMD_ERROR; + goto end; + } + + /* Command element close */ + mi_ret = mi_lttng_writer_command_close(writer); + if (mi_ret) { + cmd_ret = CMD_ERROR; + goto end; + } + } + +end: + /* Mi clean-up */ + if (writer && mi_lttng_writer_destroy(writer)) { + cmd_ret = CMD_ERROR; + } + + if (!opt_session_name) { + free(session_name); + } + + poptFreeContext(pc); + return cmd_ret; +}