mirror of
https://github.com/kdave/btrfs-progs
synced 2025-03-25 04:16:32 +00:00
btrfs-progs: mkfs: allow UUID specification at mkfs time
Allow the specification of the filesystem UUID at mkfs time. Non-unique unique IDs are rejected. This includes attempting to re-mkfs with the same UUID; if you really want to do that, you can mkfs with a new UUID, then re-mkfs with the one you wanted. (Implemented only for mkfs.btrfs, not btrfs-convert). Signed-off-by: Eric Sandeen <sandeen@redhat.com> [converted help to asciidoc] Signed-off-by: David Sterba <dsterba@suse.cz>
This commit is contained in:
parent
e2a157f380
commit
85691ebeac
@ -21,6 +21,7 @@ $$[-s|--sectorsize <sectorsize>]$$
|
|||||||
$$[-r|--rootdir <rootdir>]$$
|
$$[-r|--rootdir <rootdir>]$$
|
||||||
$$[-K|--nodiscard]$$
|
$$[-K|--nodiscard]$$
|
||||||
$$[-O|--features <feature1>[,<feature2>...]]$$
|
$$[-O|--features <feature1>[,<feature2>...]]$$
|
||||||
|
$$[-U|--uuid <UUID>]$$
|
||||||
$$[-h]$$
|
$$[-h]$$
|
||||||
$$[-V|--version]$$
|
$$[-V|--version]$$
|
||||||
$$<device> [<device>...]$$
|
$$<device> [<device>...]$$
|
||||||
@ -112,6 +113,10 @@ supported by old kernels.
|
|||||||
To see all features run::::
|
To see all features run::::
|
||||||
mkfs.btrfs -O list-all
|
mkfs.btrfs -O list-all
|
||||||
|
|
||||||
|
-U|--uuid <UUID>::
|
||||||
|
Create the filesystem with the specified UUID, which must not already exist on
|
||||||
|
the system.
|
||||||
|
|
||||||
-V|--version::
|
-V|--version::
|
||||||
Print the *mkfs.btrfs* version and exit.
|
Print the *mkfs.btrfs* version and exit.
|
||||||
|
|
||||||
|
@ -2240,7 +2240,7 @@ static int do_convert(const char *devname, int datacsum, int packing,
|
|||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
ret = make_btrfs(fd, devname, ext2_fs->super->s_volume_name,
|
ret = make_btrfs(fd, devname, ext2_fs->super->s_volume_name,
|
||||||
blocks, total_bytes, blocksize, blocksize,
|
NULL, blocks, total_bytes, blocksize, blocksize,
|
||||||
blocksize, blocksize, 0);
|
blocksize, blocksize, 0);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
fprintf(stderr, "unable to create initial ctree: %s\n",
|
fprintf(stderr, "unable to create initial ctree: %s\n",
|
||||||
|
24
mkfs.c
24
mkfs.c
@ -288,6 +288,7 @@ static void print_usage(void)
|
|||||||
fprintf(stderr, "\t -r --rootdir the source directory\n");
|
fprintf(stderr, "\t -r --rootdir the source directory\n");
|
||||||
fprintf(stderr, "\t -K --nodiscard do not perform whole device TRIM\n");
|
fprintf(stderr, "\t -K --nodiscard do not perform whole device TRIM\n");
|
||||||
fprintf(stderr, "\t -O --features comma separated list of filesystem features\n");
|
fprintf(stderr, "\t -O --features comma separated list of filesystem features\n");
|
||||||
|
fprintf(stderr, "\t -U --uuid specify the filesystem UUID\n");
|
||||||
fprintf(stderr, "\t -V --version print the mkfs.btrfs version and exit\n");
|
fprintf(stderr, "\t -V --version print the mkfs.btrfs version and exit\n");
|
||||||
fprintf(stderr, "%s\n", BTRFS_BUILD_VERSION);
|
fprintf(stderr, "%s\n", BTRFS_BUILD_VERSION);
|
||||||
exit(1);
|
exit(1);
|
||||||
@ -351,6 +352,7 @@ static struct option long_options[] = {
|
|||||||
{ "rootdir", 1, NULL, 'r' },
|
{ "rootdir", 1, NULL, 'r' },
|
||||||
{ "nodiscard", 0, NULL, 'K' },
|
{ "nodiscard", 0, NULL, 'K' },
|
||||||
{ "features", 1, NULL, 'O' },
|
{ "features", 1, NULL, 'O' },
|
||||||
|
{ "uuid", 0, NULL, 'U' },
|
||||||
{ NULL, 0, NULL, 0}
|
{ NULL, 0, NULL, 0}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -1273,11 +1275,12 @@ int main(int ac, char **av)
|
|||||||
int dev_cnt = 0;
|
int dev_cnt = 0;
|
||||||
int saved_optind;
|
int saved_optind;
|
||||||
char estr[100];
|
char estr[100];
|
||||||
|
char *fs_uuid = NULL;
|
||||||
u64 features = DEFAULT_MKFS_FEATURES;
|
u64 features = DEFAULT_MKFS_FEATURES;
|
||||||
|
|
||||||
while(1) {
|
while(1) {
|
||||||
int c;
|
int c;
|
||||||
c = getopt_long(ac, av, "A:b:fl:n:s:m:d:L:O:r:VMK",
|
c = getopt_long(ac, av, "A:b:fl:n:s:m:d:L:O:r:U:VMK",
|
||||||
long_options, &option_index);
|
long_options, &option_index);
|
||||||
if (c < 0)
|
if (c < 0)
|
||||||
break;
|
break;
|
||||||
@ -1346,6 +1349,9 @@ int main(int ac, char **av)
|
|||||||
source_dir = optarg;
|
source_dir = optarg;
|
||||||
source_dir_set = 1;
|
source_dir_set = 1;
|
||||||
break;
|
break;
|
||||||
|
case 'U':
|
||||||
|
fs_uuid = optarg;
|
||||||
|
break;
|
||||||
case 'K':
|
case 'K':
|
||||||
discard = 0;
|
discard = 0;
|
||||||
break;
|
break;
|
||||||
@ -1368,6 +1374,20 @@ int main(int ac, char **av)
|
|||||||
"The -r option is limited to a single device\n");
|
"The -r option is limited to a single device\n");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (fs_uuid) {
|
||||||
|
uuid_t dummy_uuid;
|
||||||
|
|
||||||
|
if (uuid_parse(fs_uuid, dummy_uuid) != 0) {
|
||||||
|
fprintf(stderr, "could not parse UUID: %s\n", fs_uuid);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
if (!test_uuid_unique(fs_uuid)) {
|
||||||
|
fprintf(stderr, "non-unique UUID: %s\n", fs_uuid);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
while (dev_cnt-- > 0) {
|
while (dev_cnt-- > 0) {
|
||||||
file = av[optind++];
|
file = av[optind++];
|
||||||
if (is_block_device(file))
|
if (is_block_device(file))
|
||||||
@ -1514,7 +1534,7 @@ int main(int ac, char **av)
|
|||||||
|
|
||||||
process_fs_features(features);
|
process_fs_features(features);
|
||||||
|
|
||||||
ret = make_btrfs(fd, file, label, blocks, dev_block_count,
|
ret = make_btrfs(fd, file, label, fs_uuid, blocks, dev_block_count,
|
||||||
nodesize, leafsize,
|
nodesize, leafsize,
|
||||||
sectorsize, stripesize, features);
|
sectorsize, stripesize, features);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
|
48
utils.c
48
utils.c
@ -93,12 +93,41 @@ static u64 reference_root_table[] = {
|
|||||||
[6] = BTRFS_CSUM_TREE_OBJECTID,
|
[6] = BTRFS_CSUM_TREE_OBJECTID,
|
||||||
};
|
};
|
||||||
|
|
||||||
int make_btrfs(int fd, const char *device, const char *label,
|
int test_uuid_unique(char *fs_uuid)
|
||||||
|
{
|
||||||
|
int unique = 1;
|
||||||
|
blkid_dev_iterate iter = NULL;
|
||||||
|
blkid_dev dev = NULL;
|
||||||
|
blkid_cache cache = NULL;
|
||||||
|
|
||||||
|
if (blkid_get_cache(&cache, 0) < 0) {
|
||||||
|
printf("ERROR: lblkid cache get failed\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
blkid_probe_all(cache);
|
||||||
|
iter = blkid_dev_iterate_begin(cache);
|
||||||
|
blkid_dev_set_search(iter, "UUID", fs_uuid);
|
||||||
|
|
||||||
|
while (blkid_dev_next(iter, &dev) == 0) {
|
||||||
|
dev = blkid_verify(cache, dev);
|
||||||
|
if (dev) {
|
||||||
|
unique = 0;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
blkid_dev_iterate_end(iter);
|
||||||
|
blkid_put_cache(cache);
|
||||||
|
|
||||||
|
return unique;
|
||||||
|
}
|
||||||
|
|
||||||
|
int make_btrfs(int fd, const char *device, const char *label, char *fs_uuid,
|
||||||
u64 blocks[7], u64 num_bytes, u32 nodesize,
|
u64 blocks[7], u64 num_bytes, u32 nodesize,
|
||||||
u32 leafsize, u32 sectorsize, u32 stripesize, u64 features)
|
u32 leafsize, u32 sectorsize, u32 stripesize, u64 features)
|
||||||
{
|
{
|
||||||
struct btrfs_super_block super;
|
struct btrfs_super_block super;
|
||||||
struct extent_buffer *buf;
|
struct extent_buffer *buf = NULL;
|
||||||
struct btrfs_root_item root_item;
|
struct btrfs_root_item root_item;
|
||||||
struct btrfs_disk_key disk_key;
|
struct btrfs_disk_key disk_key;
|
||||||
struct btrfs_extent_item *extent_item;
|
struct btrfs_extent_item *extent_item;
|
||||||
@ -125,7 +154,20 @@ int make_btrfs(int fd, const char *device, const char *label,
|
|||||||
memset(&super, 0, sizeof(super));
|
memset(&super, 0, sizeof(super));
|
||||||
|
|
||||||
num_bytes = (num_bytes / sectorsize) * sectorsize;
|
num_bytes = (num_bytes / sectorsize) * sectorsize;
|
||||||
uuid_generate(super.fsid);
|
if (fs_uuid) {
|
||||||
|
if (uuid_parse(fs_uuid, super.fsid) != 0) {
|
||||||
|
fprintf(stderr, "could not parse UUID: %s\n", fs_uuid);
|
||||||
|
ret = -EINVAL;
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
if (!test_uuid_unique(fs_uuid)) {
|
||||||
|
fprintf(stderr, "non-unique UUID: %s\n", fs_uuid);
|
||||||
|
ret = -EBUSY;
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
uuid_generate(super.fsid);
|
||||||
|
}
|
||||||
uuid_generate(super.dev_item.uuid);
|
uuid_generate(super.dev_item.uuid);
|
||||||
uuid_generate(chunk_tree_uuid);
|
uuid_generate(chunk_tree_uuid);
|
||||||
|
|
||||||
|
3
utils.h
3
utils.h
@ -40,7 +40,7 @@
|
|||||||
#define BTRFS_UUID_UNPARSED_SIZE 37
|
#define BTRFS_UUID_UNPARSED_SIZE 37
|
||||||
|
|
||||||
int make_btrfs(int fd, const char *device, const char *label,
|
int make_btrfs(int fd, const char *device, const char *label,
|
||||||
u64 blocks[6], u64 num_bytes, u32 nodesize,
|
char *fs_uuid, u64 blocks[6], u64 num_bytes, u32 nodesize,
|
||||||
u32 leafsize, u32 sectorsize, u32 stripesize, u64 features);
|
u32 leafsize, u32 sectorsize, u32 stripesize, u64 features);
|
||||||
int btrfs_make_root_dir(struct btrfs_trans_handle *trans,
|
int btrfs_make_root_dir(struct btrfs_trans_handle *trans,
|
||||||
struct btrfs_root *root, u64 objectid);
|
struct btrfs_root *root, u64 objectid);
|
||||||
@ -101,5 +101,6 @@ int get_btrfs_mount(const char *dev, char *mp, size_t mp_size);
|
|||||||
int find_mount_root(const char *path, char **mount_root);
|
int find_mount_root(const char *path, char **mount_root);
|
||||||
int get_device_info(int fd, u64 devid,
|
int get_device_info(int fd, u64 devid,
|
||||||
struct btrfs_ioctl_dev_info_args *di_args);
|
struct btrfs_ioctl_dev_info_args *di_args);
|
||||||
|
int test_uuid_unique(char *fs_uuid);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user