mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git
synced 2024-11-15 08:14:21 +08:00
4db925911c
Use the safe version of strncpy that makes sure the string is terminated. To be noted: - the conversion in scrub path handling was skipped - sizes of device paths in some ioctl related structures is BTRFS_DEVICE_PATH_NAME_MAX + 1 Recently gcc 13.3 started to detect problems with our use of strncpy potentially lacking the null terminator, warnings like: cmds/inspect.c: In function ‘cmd_inspect_logical_resolve’: cmds/inspect.c:294:33: warning: ‘__builtin_strncpy’ specified bound 4096 equals destination size [-Wstringop-truncation] 294 | strncpy(mount_path, mounted, PATH_MAX); | ^ Signed-off-by: David Sterba <dsterba@suse.com>
538 lines
12 KiB
C
538 lines
12 KiB
C
/*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public
|
|
* License v2 as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public
|
|
* License along with this program; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 021110-1307, USA.
|
|
*/
|
|
|
|
#include "kerncompat.h"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <getopt.h>
|
|
#include <unistd.h>
|
|
#include "common/help.h"
|
|
#include "common/string-utils.h"
|
|
#include "cmds/commands.h"
|
|
|
|
#define USAGE_SHORT 1U
|
|
#define USAGE_LONG 2U
|
|
#define USAGE_OPTIONS 4U
|
|
#define USAGE_LISTING 8U
|
|
#define USAGE_FORMAT 16U
|
|
|
|
const struct format_desc output_formats[2] = {
|
|
{ .value = CMD_FORMAT_TEXT, .name = "text" },
|
|
{ .value = CMD_FORMAT_JSON, .name = "json" },
|
|
};
|
|
|
|
static char argv0_buf[ARGV0_BUF_SIZE] = "btrfs";
|
|
|
|
void fixup_argv0(char **argv, const char *token)
|
|
{
|
|
int len = strlen(argv0_buf);
|
|
|
|
snprintf(argv0_buf + len, sizeof(argv0_buf) - len, " %s", token);
|
|
argv[0] = argv0_buf;
|
|
}
|
|
|
|
void set_argv0(char **argv)
|
|
{
|
|
strncpy_null(argv0_buf, argv[0], sizeof(argv0_buf));
|
|
}
|
|
|
|
int check_argc_exact(int nargs, int expected)
|
|
{
|
|
if (nargs != expected)
|
|
fprintf(stderr, "%s: exactly %d argument%s expected, %d given\n",
|
|
argv0_buf, expected,
|
|
expected > 1 ? "s" : "", nargs);
|
|
|
|
return nargs != expected;
|
|
}
|
|
|
|
int check_argc_min(int nargs, int expected)
|
|
{
|
|
if (nargs < expected) {
|
|
fprintf(stderr,
|
|
"%s: not enough arguments: %d but at least %d expected\n",
|
|
argv0_buf, nargs, expected);
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int check_argc_max(int nargs, int expected)
|
|
{
|
|
if (nargs > expected) {
|
|
fprintf(stderr,
|
|
"%s: too many arguments: %d but at most %d expected\n",
|
|
argv0_buf, nargs, expected);
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Preprocess @argv with getopt_long to reorder options and consume the "--"
|
|
* option separator.
|
|
* Unknown short and long options are reported, optionally the @usage is printed
|
|
* before exit.
|
|
*/
|
|
void clean_args_no_options(const struct cmd_struct *cmd, int argc, char *argv[])
|
|
{
|
|
static const struct option long_options[] = {
|
|
{NULL, 0, NULL, 0}
|
|
};
|
|
|
|
while (1) {
|
|
int c = getopt_long(argc, argv, "", long_options, NULL);
|
|
|
|
if (c < 0)
|
|
break;
|
|
|
|
switch (c) {
|
|
default:
|
|
if (cmd->usagestr)
|
|
usage(cmd, 1);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Same as clean_args_no_options but pass through arguments that could look
|
|
* like short options. Eg. resize which takes a negative resize argument like
|
|
* '-123M' .
|
|
*
|
|
* This accepts only two forms:
|
|
* - "-- option1 option2 ..."
|
|
* - "option1 option2 ..."
|
|
*/
|
|
void clean_args_no_options_relaxed(const struct cmd_struct *cmd,
|
|
int argc, char *argv[])
|
|
{
|
|
if (argc <= 1)
|
|
return;
|
|
|
|
if (strcmp(argv[1], "--") == 0)
|
|
optind = 2;
|
|
}
|
|
|
|
const char *output_format_name(unsigned int value)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(output_formats); i++) {
|
|
if (output_formats[i].value == value)
|
|
return output_formats[i].name;
|
|
}
|
|
|
|
return "UNKNOWN";
|
|
}
|
|
|
|
static void hpad(int len, FILE *outf)
|
|
{
|
|
while (len-- > 0)
|
|
fputc(' ', outf);
|
|
}
|
|
|
|
static void format_text(const char *line, FILE *outf)
|
|
{
|
|
int i;
|
|
|
|
i = 0;
|
|
while (*line) {
|
|
while (*line && *line == ' ')
|
|
line++;
|
|
while (*line && *line != ' ') {
|
|
if (*line == '\n')
|
|
break;
|
|
fputc(*line, outf);
|
|
line++;
|
|
i++;
|
|
}
|
|
if (i > HELPINFO_DESC_WIDTH || (*line == '\n')) {
|
|
if (*line) {
|
|
fputc('\n', outf);
|
|
line++;
|
|
hpad(HELPINFO_DESC_PREFIX, outf);
|
|
}
|
|
i = 0;
|
|
} else {
|
|
hpad(1, outf);
|
|
}
|
|
}
|
|
}
|
|
|
|
static int do_usage_one_command(const char * const *usagestr,
|
|
unsigned int flags, unsigned int cmd_flags,
|
|
FILE *outf)
|
|
{
|
|
int pad = HELPINFO_PREFIX_WIDTH;
|
|
|
|
if (!usagestr || !*usagestr)
|
|
return -1;
|
|
|
|
if (flags & USAGE_LISTING)
|
|
hpad(HELPINFO_PREFIX_WIDTH, outf);
|
|
else
|
|
fputs("usage: ", outf);
|
|
|
|
if (strchr(*usagestr, '\n') == NULL) {
|
|
fputs(*usagestr, outf);
|
|
} else {
|
|
const char *c = *usagestr;
|
|
|
|
for (c = *usagestr; *c; c++) {
|
|
fputc(*c, outf);
|
|
if (*c == '\n') {
|
|
if (flags & USAGE_LISTING)
|
|
hpad(HELPINFO_PREFIX_WIDTH, outf);
|
|
else
|
|
hpad(HELPINFO_LISTING_WIDTH, outf);
|
|
}
|
|
}
|
|
}
|
|
usagestr++;
|
|
|
|
/* a short one-line description (mandatory) */
|
|
if ((flags & USAGE_SHORT) == 0)
|
|
return 0;
|
|
else if (!*usagestr)
|
|
return -2;
|
|
fputc('\n', outf);
|
|
|
|
if (flags & USAGE_LISTING)
|
|
pad = HELPINFO_LISTING_WIDTH;
|
|
else
|
|
fputc('\n', outf);
|
|
|
|
hpad(pad, outf);
|
|
fprintf(outf, "%s\n", *usagestr++);
|
|
|
|
/* a long (possibly multi-line) description (optional) */
|
|
if (!*usagestr || ((flags & USAGE_LONG) == 0))
|
|
return 0;
|
|
|
|
if (**usagestr)
|
|
fputc('\n', outf);
|
|
while (*usagestr && **usagestr) {
|
|
hpad(pad, outf);
|
|
fprintf(outf, "%s\n", *usagestr++);
|
|
}
|
|
|
|
/* options (optional) */
|
|
if (!*usagestr || ((flags & USAGE_OPTIONS) == 0))
|
|
return 0;
|
|
|
|
/*
|
|
* options (if present) should always (even if there is no long
|
|
* description) be prepended with an empty line, skip it
|
|
*/
|
|
usagestr++;
|
|
fputc('\n', outf);
|
|
|
|
while (*usagestr) {
|
|
if (strcmp(*usagestr, HELPINFO_INSERT_FORMAT) == 0) {
|
|
int i;
|
|
|
|
/*
|
|
* We always support text, that's on by default for all
|
|
* commands
|
|
*/
|
|
hpad(pad, outf);
|
|
fprintf(outf, "%-*s where TYPE is: %s",
|
|
HELPINFO_OPTION_WIDTH,
|
|
"--format TYPE",
|
|
output_formats[0].name);
|
|
for (i = 1; i < ARRAY_SIZE(output_formats); i++) {
|
|
if (cmd_flags & output_formats[i].value)
|
|
fprintf(outf, ", %s",
|
|
output_formats[i].name);
|
|
}
|
|
fputc('\n', outf);
|
|
} else if (*usagestr[0] == HELPINFO_OPTION[0]) {
|
|
const char *tmp = *usagestr + 1;
|
|
const char *text_marker = strchr(*usagestr, HELPINFO_DESC[0]);
|
|
const char *text = text_marker + 1;
|
|
int optlen = (int)(text_marker - tmp - 1);
|
|
|
|
hpad(HELPINFO_PREFIX_WIDTH, outf);
|
|
while (tmp < text_marker)
|
|
fputc(*tmp++, outf);
|
|
|
|
if (optlen > HELPINFO_OPTION_WIDTH) {
|
|
fputc('\n', outf);
|
|
hpad(HELPINFO_DESC_PREFIX, outf);
|
|
} else {
|
|
hpad(HELPINFO_OPTION_WIDTH + HELPINFO_OPTION_MARGIN - optlen - 1,
|
|
outf);
|
|
}
|
|
format_text(text, outf);
|
|
fputc('\n', outf);
|
|
} else {
|
|
hpad(pad, outf);
|
|
fprintf(outf, "%s\n", *usagestr);
|
|
}
|
|
usagestr++;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int usage_command_internal(const char * const *usagestr,
|
|
const char *token, unsigned cmd_flags,
|
|
bool full,
|
|
bool lst, bool alias, FILE *outf)
|
|
{
|
|
unsigned int flags = 0;
|
|
int ret;
|
|
|
|
if (!alias)
|
|
flags |= USAGE_SHORT;
|
|
if (full)
|
|
flags |= USAGE_LONG | USAGE_OPTIONS | USAGE_FORMAT;
|
|
if (lst)
|
|
flags |= USAGE_LISTING;
|
|
|
|
ret = do_usage_one_command(usagestr, flags, cmd_flags, outf);
|
|
switch (ret) {
|
|
case -1:
|
|
fprintf(outf, "No usage for '%s'\n", token);
|
|
break;
|
|
case -2:
|
|
fprintf(outf, "No short description for '%s'\n", token);
|
|
break;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
static void usage_command_usagestr(const char * const *usagestr,
|
|
const char *token, unsigned int flags,
|
|
bool full, bool err)
|
|
{
|
|
FILE *outf = err ? stderr : stdout;
|
|
int ret;
|
|
|
|
ret = usage_command_internal(usagestr, token, flags,
|
|
full, false, false, outf);
|
|
if (!ret)
|
|
fputc('\n', outf);
|
|
}
|
|
|
|
void usage_command(const struct cmd_struct *cmd, bool full, bool err)
|
|
{
|
|
usage_command_usagestr(cmd->usagestr, cmd->token,
|
|
cmd->flags, full, err);
|
|
}
|
|
|
|
__attribute__((noreturn))
|
|
void usage_unknown_option(const struct cmd_struct *cmd, char **argv)
|
|
{
|
|
int i;
|
|
int c;
|
|
int prev = 0;
|
|
|
|
/*
|
|
* Guess the command prefix, until the first option or argument
|
|
* specifier
|
|
*/
|
|
i = 0;
|
|
do {
|
|
c = cmd->usagestr[0][i];
|
|
if (c == '<' || c == '[' || (prev == ' ' && c == '-')) {
|
|
i--;
|
|
break;
|
|
}
|
|
prev = c;
|
|
i++;
|
|
} while (c);
|
|
|
|
/*
|
|
* Example:
|
|
*
|
|
* $ btrfs device add --unknown device path
|
|
* btrfs device add: unrecognized option '--unknown'
|
|
* Try 'btrfs device add --help' for more information
|
|
*/
|
|
|
|
fprintf(stderr, "%.*s: ", i, cmd->usagestr[0]);
|
|
if (!optopt) {
|
|
/*
|
|
* There's no better way to get the exact unrecognized token
|
|
* from getopt
|
|
*/
|
|
fprintf(stderr, "unrecognized option '%s'\n", argv[optind - 1]);
|
|
} else {
|
|
fprintf(stderr, "invalid option '%c'\n", optopt);
|
|
}
|
|
fprintf(stderr, "Try '%.*s --help' for more information\n", i,
|
|
cmd->usagestr[0]);
|
|
exit(1);
|
|
}
|
|
|
|
__attribute__((noreturn))
|
|
void usage(const struct cmd_struct *cmd, int error)
|
|
{
|
|
usage_command_usagestr(cmd->usagestr, NULL, 0, true, true);
|
|
exit(error);
|
|
}
|
|
|
|
static void usage_command_group_internal(const struct cmd_group *grp, bool full,
|
|
FILE *outf)
|
|
{
|
|
int i;
|
|
int do_sep = 0;
|
|
|
|
for (i = 0; grp->commands[i]; i++) {
|
|
const struct cmd_struct *cmd = grp->commands[i];
|
|
if (cmd->flags & CMD_HIDDEN)
|
|
continue;
|
|
|
|
if (full && i)
|
|
fputc('\n', outf);
|
|
|
|
if (!cmd->next) {
|
|
if (do_sep) {
|
|
fputc('\n', outf);
|
|
do_sep = 0;
|
|
}
|
|
|
|
usage_command_internal(cmd->usagestr, cmd->token,
|
|
cmd->flags, full,
|
|
true, cmd->flags & CMD_ALIAS,
|
|
outf);
|
|
if (cmd->flags & CMD_ALIAS)
|
|
putchar('\n');
|
|
continue;
|
|
}
|
|
|
|
/* this is an entry point to a nested command group */
|
|
|
|
if (!full && i)
|
|
fputc('\n', outf);
|
|
|
|
usage_command_group_internal(cmd->next, full, outf);
|
|
|
|
if (!full)
|
|
do_sep = 1;
|
|
}
|
|
}
|
|
|
|
void usage_command_group_short(const struct cmd_group *grp)
|
|
{
|
|
const char * const *usagestr = grp->usagestr;
|
|
FILE *outf = stdout;
|
|
const struct cmd_struct *cmd;
|
|
int i;
|
|
|
|
if (usagestr && *usagestr) {
|
|
fprintf(outf, "usage: %s\n", *usagestr++);
|
|
while (*usagestr)
|
|
fprintf(outf, " or: %s\n", *usagestr++);
|
|
}
|
|
|
|
fputc('\n', outf);
|
|
|
|
fprintf(outf, "Command groups:\n");
|
|
for (i = 0; grp->commands[i]; i++) {
|
|
cmd = grp->commands[i];
|
|
if (cmd->flags & CMD_HIDDEN)
|
|
continue;
|
|
|
|
if (!cmd->next)
|
|
continue;
|
|
|
|
fprintf(outf, " %-16s %s\n", cmd->token, cmd->next->infostr);
|
|
}
|
|
|
|
fprintf(outf, "\nCommands:\n");
|
|
for (i = 0; grp->commands[i]; i++) {
|
|
cmd = grp->commands[i];
|
|
if (cmd->flags & CMD_HIDDEN)
|
|
continue;
|
|
|
|
if (cmd->next)
|
|
continue;
|
|
|
|
fprintf(outf, " %-16s %s\n", cmd->token, cmd->usagestr[1]);
|
|
}
|
|
|
|
fputc('\n', outf);
|
|
fprintf(stderr, "For an overview of a given command use 'btrfs command --help'\n");
|
|
fprintf(stderr, "or 'btrfs [command...] --help --full' to print all available options.\n");
|
|
fprintf(stderr, "Any command name can be shortened as far as it stays unambiguous,\n");
|
|
fprintf(stderr, "however it is recommended to use full command names in scripts.\n");
|
|
fprintf(stderr, "All command groups have their manual page named 'btrfs-<group>'.\n");
|
|
}
|
|
|
|
void usage_command_group(const struct cmd_group *grp, bool full, bool err)
|
|
{
|
|
const char * const *usagestr = grp->usagestr;
|
|
FILE *outf = err ? stderr : stdout;
|
|
|
|
if (usagestr && *usagestr) {
|
|
fprintf(outf, "usage: %s\n", *usagestr++);
|
|
while (*usagestr)
|
|
fprintf(outf, " or: %s\n", *usagestr++);
|
|
}
|
|
|
|
fputc('\n', outf);
|
|
usage_command_group_internal(grp, full, outf);
|
|
fputc('\n', outf);
|
|
|
|
if (grp->infostr)
|
|
fprintf(outf, "%s\n", grp->infostr);
|
|
}
|
|
|
|
__attribute__((noreturn))
|
|
void help_unknown_token(const char *arg, const struct cmd_group *grp)
|
|
{
|
|
fprintf(stderr, "%s: unknown token '%s'\n", argv0_buf, arg);
|
|
usage_command_group(grp, false, true);
|
|
exit(1);
|
|
}
|
|
|
|
__attribute__((noreturn))
|
|
void help_ambiguous_token(const char *arg, const struct cmd_group *grp)
|
|
{
|
|
int i;
|
|
|
|
fprintf(stderr, "%s: ambiguous token '%s'\n", argv0_buf, arg);
|
|
fprintf(stderr, "\nDid you mean one of these ?\n");
|
|
|
|
for (i = 0; grp->commands[i]; i++) {
|
|
const struct cmd_struct *cmd = grp->commands[i];
|
|
if (!string_has_prefix(cmd->token, arg))
|
|
fprintf(stderr, "\t%s\n", cmd->token);
|
|
}
|
|
|
|
exit(1);
|
|
}
|
|
|
|
void help_command_group(const struct cmd_group *grp, int argc, char **argv)
|
|
{
|
|
bool full = false;
|
|
|
|
if (argc > 1) {
|
|
if (!strcmp(argv[1], "--full"))
|
|
full = 1;
|
|
/* The option --box is handled in the caller */
|
|
}
|
|
|
|
usage_command_group(grp, full, false);
|
|
}
|
|
|