mirror of
https://github.com/kdave/btrfs-progs
synced 2025-05-16 23:08:38 +00:00
btrfs-progs: add get_fsid_fd() for getting fsid using fd
Add a function get_fsid_fd() to use an open file fd to get the fsid of the mounted filesystem. Signed-off-by: Goldwyn Rodrigues <rgoldwyn@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
cc2dd28136
commit
b79713a33e
@ -1097,32 +1097,34 @@ out:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int get_fsid_fd(int fd, u8 *fsid)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
struct btrfs_ioctl_fs_info_args args;
|
||||||
|
|
||||||
|
ret = ioctl(fd, BTRFS_IOC_FS_INFO, &args);
|
||||||
|
if (ret < 0)
|
||||||
|
return -errno;
|
||||||
|
|
||||||
|
memcpy(fsid, args.fsid, BTRFS_FSID_SIZE);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
int get_fsid(const char *path, u8 *fsid, int silent)
|
int get_fsid(const char *path, u8 *fsid, int silent)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
int fd;
|
int fd;
|
||||||
struct btrfs_ioctl_fs_info_args args;
|
|
||||||
|
|
||||||
fd = open(path, O_RDONLY);
|
fd = open(path, O_RDONLY);
|
||||||
if (fd < 0) {
|
if (fd < 0) {
|
||||||
ret = -errno;
|
|
||||||
if (!silent)
|
if (!silent)
|
||||||
error("failed to open %s: %m", path);
|
error("failed to open %s: %m", path);
|
||||||
goto out;
|
return -errno;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = ioctl(fd, BTRFS_IOC_FS_INFO, &args);
|
ret = get_fsid_fd(fd, fsid);
|
||||||
if (ret < 0) {
|
close(fd);
|
||||||
ret = -errno;
|
|
||||||
goto out;
|
|
||||||
}
|
|
||||||
|
|
||||||
memcpy(fsid, args.fsid, BTRFS_FSID_SIZE);
|
|
||||||
ret = 0;
|
|
||||||
|
|
||||||
out:
|
|
||||||
if (fd != -1)
|
|
||||||
close(fd);
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -75,6 +75,7 @@ void close_file_or_dir(int fd, DIR *dirstream);
|
|||||||
int get_fs_info(const char *path, struct btrfs_ioctl_fs_info_args *fi_args,
|
int get_fs_info(const char *path, struct btrfs_ioctl_fs_info_args *fi_args,
|
||||||
struct btrfs_ioctl_dev_info_args **di_ret);
|
struct btrfs_ioctl_dev_info_args **di_ret);
|
||||||
int get_fsid(const char *path, u8 *fsid, int silent);
|
int get_fsid(const char *path, u8 *fsid, int silent);
|
||||||
|
int get_fsid_fd(int fd, u8 *fsid);
|
||||||
|
|
||||||
int get_label(const char *btrfs_dev, char *label);
|
int get_label(const char *btrfs_dev, char *label);
|
||||||
int set_label(const char *btrfs_dev, const char *label);
|
int set_label(const char *btrfs_dev, const char *label);
|
||||||
|
Loading…
Reference in New Issue
Block a user