btrfs-progs: filesystem show of specified mounted disk should work

Originally, thinking was user will use mount point if the disk
is mounted. But thats not really true, actually user don't
(or shouldn't) care to check if disk mounted, so whether disk
is mounted/unmounted when disk path is specified it should work.

Signed-off-by: Anand Jain <anand.jain@oracle.com>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
master
Anand Jain 2013-10-22 13:53:22 +08:00 committed by Chris Mason
parent 811e993db4
commit d33b2a4842
3 changed files with 56 additions and 9 deletions

View File

@ -310,8 +310,15 @@ static int check_arg_type(char *input)
if (!input)
return BTRFS_ARG_UNKNOWN;
if (realpath(input, path))
return BTRFS_ARG_PATH;
if (realpath(input, path)) {
if (is_block_device(input) == 1)
return BTRFS_ARG_BLKDEV;
if (is_mount_point(input) == 1)
return BTRFS_ARG_MNTPOINT;
return BTRFS_ARG_UNKNOWN;
}
if (!uuid_parse(input, out))
return BTRFS_ARG_UUID;
@ -335,6 +342,8 @@ static int btrfs_scan_kernel(void *search)
return 1;
type = check_arg_type(search);
if (type == BTRFS_ARG_BLKDEV)
return 1;
while ((mnt = getmntent(f)) != NULL) {
if (strcmp(mnt->mnt_type, "btrfs"))
@ -352,11 +361,11 @@ static int btrfs_scan_kernel(void *search)
if (uuid_compare(fs_info_arg.fsid, uuid))
continue;
break;
case BTRFS_ARG_PATH:
case BTRFS_ARG_MNTPOINT:
if (strcmp(search, mnt->mnt_dir))
continue;
break;
default:
case BTRFS_ARG_UNKNOWN:
break;
}
@ -375,7 +384,7 @@ static int btrfs_scan_kernel(void *search)
}
static const char * const cmd_show_usage[] = {
"btrfs filesystem show [options] [<path>|<uuid>]",
"btrfs filesystem show [options|<path>|<uuid>]",
"Show the structure of a filesystem",
"-d|--all-devices show only disks under /dev containing btrfs filesystem",
"-m|--mounted show only mounted btrfs",
@ -392,6 +401,7 @@ static int cmd_show(int argc, char **argv)
int ret;
int where = BTRFS_SCAN_LBLKID;
int type = 0;
char mp[BTRFS_PATH_NAME_MAX + 1];
while (1) {
int long_index;
@ -416,8 +426,13 @@ static int cmd_show(int argc, char **argv)
}
}
if (check_argc_max(argc, optind + 1))
usage(cmd_show_usage);
if (where == BTRFS_SCAN_LBLKID) {
if (check_argc_max(argc, optind + 1))
usage(cmd_show_usage);
} else {
if (check_argc_max(argc, optind))
usage(cmd_show_usage);
}
if (argc > optind) {
search = argv[optind];
type = check_arg_type(search);
@ -425,6 +440,11 @@ static int cmd_show(int argc, char **argv)
fprintf(stderr, "ERROR: arg type unknown\n");
usage(cmd_show_usage);
}
if (type == BTRFS_ARG_BLKDEV) {
ret = get_btrfs_mount(search, mp, sizeof(mp));
if (ret == 0)
search = mp;
}
}
if (where == BTRFS_SCAN_DEV)

27
utils.c
View File

@ -677,7 +677,8 @@ error:
* Returns negative errno on failure, otherwise
* returns 1 for blockdev, 0 for not-blockdev
*/
int is_block_device(const char *path) {
int is_block_device(const char *path)
{
struct stat statbuf;
if (stat(path, &statbuf) < 0)
@ -686,6 +687,30 @@ int is_block_device(const char *path) {
return S_ISBLK(statbuf.st_mode);
}
/*
* check if given path is a mount point
* return 1 if yes. 0 if no. -1 for error
*/
int is_mount_point(const char *path)
{
FILE *f;
struct mntent *mnt;
int ret = 0;
f = setmntent("/proc/self/mounts", "r");
if (f == NULL)
return -1;
while ((mnt = getmntent(f)) != NULL) {
if (strcmp(mnt->mnt_dir, path))
continue;
ret = 1;
break;
}
endmntent(f);
return ret;
}
/*
* Find the mount point for a mounted device.
* On success, returns 0 with mountpoint in *mp.

View File

@ -33,8 +33,9 @@
#define BTRFS_UPDATE_KERNEL 1
#define BTRFS_ARG_UNKNOWN 0
#define BTRFS_ARG_PATH 1
#define BTRFS_ARG_MNTPOINT 1
#define BTRFS_ARG_UUID 2
#define BTRFS_ARG_BLKDEV 3
int make_btrfs(int fd, const char *device, const char *label,
u64 blocks[6], u64 num_bytes, u32 nodesize,
@ -76,6 +77,7 @@ int set_label(const char *btrfs_dev, const char *label);
char *__strncpy__null(char *dest, const char *src, size_t n);
int is_block_device(const char *file);
int is_mount_point(const char *file);
int open_path_or_dev_mnt(const char *path, DIR **dirstream);
u64 btrfs_device_size(int fd, struct stat *st);
/* Helper to always get proper size of the destination string */