blob: 5357b430ba4651bae25ea29637141ed0a5c73f19 [file] [log] [blame]
// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright (C) 2018 Oracle. All Rights Reserved.
* Author: Darrick J. Wong <darrick.wong@oracle.com>
*/
#include "libxfs.h"
#include "xfrog.h"
#include "command.h"
#include "init.h"
#include "path.h"
#include "space.h"
#include "fsgeom.h"
static void
info_help(void)
{
printf(_(
"\n"
" Pretty-prints the filesystem geometry as derived from the superblock.\n"
" The output has the same format as mkfs.xfs, xfs_info, and other utilities.\n"
" The opened file must be an XFS mount point.\n"
"\n"
));
}
static int
info_f(
int argc,
char **argv)
{
struct xfs_fsop_geom geo;
int error;
if (fs_table_lookup_mount(file->name) == NULL) {
fprintf(stderr, _("%s: Not a XFS mount point.\n"), file->name);
return 1;
}
/* get the current filesystem size & geometry */
error = xfrog_geometry(file->fd, &geo);
if (error < 0) {
fprintf(stderr, _(
"%s: cannot determine geometry of filesystem"
" mounted at %s: %s\n"),
progname, file->name, strerror(errno));
exitcode = 1;
return 0;
}
xfs_report_geom(&geo, file->fs_path.fs_name, file->fs_path.fs_log,
file->fs_path.fs_rt);
return 0;
}
static const struct cmdinfo info_cmd = {
.name = "info",
.altname = "i",
.cfunc = info_f,
.argmin = 0,
.argmax = 0,
.canpush = 0,
.args = NULL,
.flags = CMD_FLAG_ONESHOT,
.oneline = N_("pretty-print superblock geometry info"),
.help = info_help,
};
void
info_init(void)
{
add_command(&info_cmd);
}