2 * Copyright (C) 2007 Oracle. All rights reserved.
3 * Copyright (C) 2008 Morey Roof. All rights reserved.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public
7 * License v2 as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public
15 * License along with this program; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 021110-1307, USA.
23 #include <sys/ioctl.h>
24 #include <sys/mount.h>
25 #include <sys/types.h>
27 #include <uuid/uuid.h>
32 #include <linux/loop.h>
33 #include <linux/major.h>
34 #include <linux/kdev_t.h>
36 #include <blkid/blkid.h>
38 #include <sys/statfs.h>
39 #include <linux/magic.h>
42 #include "kerncompat.h"
43 #include "radix-tree.h"
46 #include "transaction.h"
54 #define BLKDISCARD _IO(0x12,119)
57 static int btrfs_scan_done = 0;
59 static char argv0_buf[ARGV0_BUF_SIZE] = "btrfs";
61 static int rand_seed_initlized = 0;
62 static unsigned short rand_seed[3];
64 const char *get_argv0_buf(void)
69 void fixup_argv0(char **argv, const char *token)
71 int len = strlen(argv0_buf);
73 snprintf(argv0_buf + len, sizeof(argv0_buf) - len, " %s", token);
77 void set_argv0(char **argv)
79 strncpy(argv0_buf, argv[0], sizeof(argv0_buf));
80 argv0_buf[sizeof(argv0_buf) - 1] = 0;
83 int check_argc_exact(int nargs, int expected)
86 fprintf(stderr, "%s: too few arguments\n", argv0_buf);
88 fprintf(stderr, "%s: too many arguments\n", argv0_buf);
90 return nargs != expected;
93 int check_argc_min(int nargs, int expected)
95 if (nargs < expected) {
96 fprintf(stderr, "%s: too few arguments\n", argv0_buf);
103 int check_argc_max(int nargs, int expected)
105 if (nargs > expected) {
106 fprintf(stderr, "%s: too many arguments\n", argv0_buf);
115 * Discard the given range in one go
117 static int discard_range(int fd, u64 start, u64 len)
119 u64 range[2] = { start, len };
121 if (ioctl(fd, BLKDISCARD, &range) < 0)
127 * Discard blocks in the given range in 1G chunks, the process is interruptible
129 static int discard_blocks(int fd, u64 start, u64 len)
133 u64 chunk_size = min_t(u64, len, 1*1024*1024*1024);
136 ret = discard_range(fd, start, chunk_size);
146 static u64 reference_root_table[] = {
147 [1] = BTRFS_ROOT_TREE_OBJECTID,
148 [2] = BTRFS_EXTENT_TREE_OBJECTID,
149 [3] = BTRFS_CHUNK_TREE_OBJECTID,
150 [4] = BTRFS_DEV_TREE_OBJECTID,
151 [5] = BTRFS_FS_TREE_OBJECTID,
152 [6] = BTRFS_CSUM_TREE_OBJECTID,
155 int test_uuid_unique(char *fs_uuid)
158 blkid_dev_iterate iter = NULL;
159 blkid_dev dev = NULL;
160 blkid_cache cache = NULL;
162 if (blkid_get_cache(&cache, NULL) < 0) {
163 printf("ERROR: lblkid cache get failed\n");
166 blkid_probe_all(cache);
167 iter = blkid_dev_iterate_begin(cache);
168 blkid_dev_set_search(iter, "UUID", fs_uuid);
170 while (blkid_dev_next(iter, &dev) == 0) {
171 dev = blkid_verify(cache, dev);
178 blkid_dev_iterate_end(iter);
179 blkid_put_cache(cache);
185 * Reserve space from free_tree.
186 * The algorithm is very simple, find the first cache_extent with enough space
187 * and allocate from its beginning.
189 static int reserve_free_space(struct cache_tree *free_tree, u64 len,
192 struct cache_extent *cache;
195 ASSERT(ret_start != NULL);
196 cache = first_cache_extent(free_tree);
198 if (cache->size > len) {
200 *ret_start = cache->start;
203 if (cache->size == 0) {
204 remove_cache_extent(free_tree, cache);
211 cache = next_cache_extent(cache);
218 static inline int write_temp_super(int fd, struct btrfs_super_block *sb,
224 crc = btrfs_csum_data(NULL, (char *)sb + BTRFS_CSUM_SIZE, crc,
225 BTRFS_SUPER_INFO_SIZE - BTRFS_CSUM_SIZE);
226 btrfs_csum_final(crc, (char *)&sb->csum[0]);
227 ret = pwrite(fd, sb, BTRFS_SUPER_INFO_SIZE, sb_bytenr);
228 if (ret < BTRFS_SUPER_INFO_SIZE)
229 ret = (ret < 0 ? -errno : -EIO);
236 * Setup temporary superblock at cfg->super_bynter
237 * Needed info are extracted from cfg, and root_bytenr, chunk_bytenr
239 * For now sys chunk array will be empty and dev_item is empty too.
240 * They will be re-initialized at temp chunk tree setup.
242 * The superblock signature is not valid, denotes a partially created
243 * filesystem, needs to be finalized.
245 static int setup_temp_super(int fd, struct btrfs_mkfs_config *cfg,
246 u64 root_bytenr, u64 chunk_bytenr)
248 unsigned char chunk_uuid[BTRFS_UUID_SIZE];
249 char super_buf[BTRFS_SUPER_INFO_SIZE];
250 struct btrfs_super_block *super = (struct btrfs_super_block *)super_buf;
253 memset(super_buf, 0, BTRFS_SUPER_INFO_SIZE);
254 cfg->num_bytes = round_down(cfg->num_bytes, cfg->sectorsize);
257 if (uuid_parse(cfg->fs_uuid, super->fsid) != 0) {
258 error("cound not parse UUID: %s", cfg->fs_uuid);
262 if (!test_uuid_unique(cfg->fs_uuid)) {
263 error("non-unique UUID: %s", cfg->fs_uuid);
268 uuid_generate(super->fsid);
269 uuid_unparse(super->fsid, cfg->fs_uuid);
271 uuid_generate(chunk_uuid);
272 uuid_unparse(chunk_uuid, cfg->chunk_uuid);
274 btrfs_set_super_bytenr(super, cfg->super_bytenr);
275 btrfs_set_super_num_devices(super, 1);
276 btrfs_set_super_magic(super, BTRFS_MAGIC_PARTIAL);
277 btrfs_set_super_generation(super, 1);
278 btrfs_set_super_root(super, root_bytenr);
279 btrfs_set_super_chunk_root(super, chunk_bytenr);
280 btrfs_set_super_total_bytes(super, cfg->num_bytes);
282 * Temporary filesystem will only have 6 tree roots:
283 * chunk tree, root tree, extent_tree, device tree, fs tree
286 btrfs_set_super_bytes_used(super, 6 * cfg->nodesize);
287 btrfs_set_super_sectorsize(super, cfg->sectorsize);
288 btrfs_set_super_leafsize(super, cfg->nodesize);
289 btrfs_set_super_nodesize(super, cfg->nodesize);
290 btrfs_set_super_stripesize(super, cfg->stripesize);
291 btrfs_set_super_csum_type(super, BTRFS_CSUM_TYPE_CRC32);
292 btrfs_set_super_chunk_root(super, chunk_bytenr);
293 btrfs_set_super_cache_generation(super, -1);
294 btrfs_set_super_incompat_flags(super, cfg->features);
296 __strncpy_null(super->label, cfg->label, BTRFS_LABEL_SIZE - 1);
298 /* Sys chunk array will be re-initialized at chunk tree init time */
299 super->sys_chunk_array_size = 0;
301 ret = write_temp_super(fd, super, cfg->super_bytenr);
307 * Setup an extent buffer for tree block.
309 static int setup_temp_extent_buffer(struct extent_buffer *buf,
310 struct btrfs_mkfs_config *cfg,
311 u64 bytenr, u64 owner)
313 unsigned char fsid[BTRFS_FSID_SIZE];
314 unsigned char chunk_uuid[BTRFS_UUID_SIZE];
317 ret = uuid_parse(cfg->fs_uuid, fsid);
320 ret = uuid_parse(cfg->chunk_uuid, chunk_uuid);
324 memset(buf->data, 0, cfg->nodesize);
325 buf->len = cfg->nodesize;
326 btrfs_set_header_bytenr(buf, bytenr);
327 btrfs_set_header_generation(buf, 1);
328 btrfs_set_header_backref_rev(buf, BTRFS_MIXED_BACKREF_REV);
329 btrfs_set_header_owner(buf, owner);
330 btrfs_set_header_flags(buf, BTRFS_HEADER_FLAG_WRITTEN);
331 write_extent_buffer(buf, chunk_uuid, btrfs_header_chunk_tree_uuid(buf),
333 write_extent_buffer(buf, fsid, btrfs_header_fsid(), BTRFS_FSID_SIZE);
337 static inline int write_temp_extent_buffer(int fd, struct extent_buffer *buf,
342 csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
344 /* Temporary extent buffer is always mapped 1:1 on disk */
345 ret = pwrite(fd, buf->data, buf->len, bytenr);
347 ret = (ret < 0 ? ret : -EIO);
354 * Insert a root item for temporary tree root
356 * Only used in make_btrfs_v2().
358 static void insert_temp_root_item(struct extent_buffer *buf,
359 struct btrfs_mkfs_config *cfg,
360 int *slot, u32 *itemoff, u64 objectid,
363 struct btrfs_root_item root_item;
364 struct btrfs_inode_item *inode_item;
365 struct btrfs_disk_key disk_key;
367 btrfs_set_header_nritems(buf, *slot + 1);
368 (*itemoff) -= sizeof(root_item);
369 memset(&root_item, 0, sizeof(root_item));
370 inode_item = &root_item.inode;
371 btrfs_set_stack_inode_generation(inode_item, 1);
372 btrfs_set_stack_inode_size(inode_item, 3);
373 btrfs_set_stack_inode_nlink(inode_item, 1);
374 btrfs_set_stack_inode_nbytes(inode_item, cfg->nodesize);
375 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
376 btrfs_set_root_refs(&root_item, 1);
377 btrfs_set_root_used(&root_item, cfg->nodesize);
378 btrfs_set_root_generation(&root_item, 1);
379 btrfs_set_root_bytenr(&root_item, bytenr);
381 memset(&disk_key, 0, sizeof(disk_key));
382 btrfs_set_disk_key_type(&disk_key, BTRFS_ROOT_ITEM_KEY);
383 btrfs_set_disk_key_objectid(&disk_key, objectid);
384 btrfs_set_disk_key_offset(&disk_key, 0);
386 btrfs_set_item_key(buf, &disk_key, *slot);
387 btrfs_set_item_offset(buf, btrfs_item_nr(*slot), *itemoff);
388 btrfs_set_item_size(buf, btrfs_item_nr(*slot), sizeof(root_item));
389 write_extent_buffer(buf, &root_item,
390 btrfs_item_ptr_offset(buf, *slot),
395 static int setup_temp_root_tree(int fd, struct btrfs_mkfs_config *cfg,
396 u64 root_bytenr, u64 extent_bytenr,
397 u64 dev_bytenr, u64 fs_bytenr, u64 csum_bytenr)
399 struct extent_buffer *buf = NULL;
400 u32 itemoff = __BTRFS_LEAF_DATA_SIZE(cfg->nodesize);
405 * Provided bytenr must in ascending order, or tree root will have a
408 if (!(root_bytenr < extent_bytenr && extent_bytenr < dev_bytenr &&
409 dev_bytenr < fs_bytenr && fs_bytenr < csum_bytenr)) {
410 error("bad tree bytenr order: "
411 "root < extent %llu < %llu, "
412 "extent < dev %llu < %llu, "
413 "dev < fs %llu < %llu, "
414 "fs < csum %llu < %llu",
415 (unsigned long long)root_bytenr,
416 (unsigned long long)extent_bytenr,
417 (unsigned long long)extent_bytenr,
418 (unsigned long long)dev_bytenr,
419 (unsigned long long)dev_bytenr,
420 (unsigned long long)fs_bytenr,
421 (unsigned long long)fs_bytenr,
422 (unsigned long long)csum_bytenr);
425 buf = malloc(sizeof(*buf) + cfg->nodesize);
429 ret = setup_temp_extent_buffer(buf, cfg, root_bytenr,
430 BTRFS_ROOT_TREE_OBJECTID);
434 insert_temp_root_item(buf, cfg, &slot, &itemoff,
435 BTRFS_EXTENT_TREE_OBJECTID, extent_bytenr);
436 insert_temp_root_item(buf, cfg, &slot, &itemoff,
437 BTRFS_DEV_TREE_OBJECTID, dev_bytenr);
438 insert_temp_root_item(buf, cfg, &slot, &itemoff,
439 BTRFS_FS_TREE_OBJECTID, fs_bytenr);
440 insert_temp_root_item(buf, cfg, &slot, &itemoff,
441 BTRFS_CSUM_TREE_OBJECTID, csum_bytenr);
443 ret = write_temp_extent_buffer(fd, buf, root_bytenr);
449 static int insert_temp_dev_item(int fd, struct extent_buffer *buf,
450 struct btrfs_mkfs_config *cfg,
451 int *slot, u32 *itemoff)
453 struct btrfs_disk_key disk_key;
454 struct btrfs_dev_item *dev_item;
455 char super_buf[BTRFS_SUPER_INFO_SIZE];
456 unsigned char dev_uuid[BTRFS_UUID_SIZE];
457 unsigned char fsid[BTRFS_FSID_SIZE];
458 struct btrfs_super_block *super = (struct btrfs_super_block *)super_buf;
461 ret = pread(fd, super_buf, BTRFS_SUPER_INFO_SIZE, cfg->super_bytenr);
462 if (ret < BTRFS_SUPER_INFO_SIZE) {
463 ret = (ret < 0 ? -errno : -EIO);
467 btrfs_set_header_nritems(buf, *slot + 1);
468 (*itemoff) -= sizeof(*dev_item);
469 /* setup device item 1, 0 is for replace case */
470 btrfs_set_disk_key_type(&disk_key, BTRFS_DEV_ITEM_KEY);
471 btrfs_set_disk_key_objectid(&disk_key, BTRFS_DEV_ITEMS_OBJECTID);
472 btrfs_set_disk_key_offset(&disk_key, 1);
473 btrfs_set_item_key(buf, &disk_key, *slot);
474 btrfs_set_item_offset(buf, btrfs_item_nr(*slot), *itemoff);
475 btrfs_set_item_size(buf, btrfs_item_nr(*slot), sizeof(*dev_item));
477 dev_item = btrfs_item_ptr(buf, *slot, struct btrfs_dev_item);
478 /* Generate device uuid */
479 uuid_generate(dev_uuid);
480 write_extent_buffer(buf, dev_uuid,
481 (unsigned long)btrfs_device_uuid(dev_item),
483 uuid_parse(cfg->fs_uuid, fsid);
484 write_extent_buffer(buf, fsid,
485 (unsigned long)btrfs_device_fsid(dev_item),
487 btrfs_set_device_id(buf, dev_item, 1);
488 btrfs_set_device_generation(buf, dev_item, 0);
489 btrfs_set_device_total_bytes(buf, dev_item, cfg->num_bytes);
491 * The number must match the initial SYSTEM and META chunk size
493 btrfs_set_device_bytes_used(buf, dev_item,
494 BTRFS_MKFS_SYSTEM_GROUP_SIZE +
495 BTRFS_CONVERT_META_GROUP_SIZE);
496 btrfs_set_device_io_align(buf, dev_item, cfg->sectorsize);
497 btrfs_set_device_io_width(buf, dev_item, cfg->sectorsize);
498 btrfs_set_device_sector_size(buf, dev_item, cfg->sectorsize);
499 btrfs_set_device_type(buf, dev_item, 0);
501 /* Super dev_item is not complete, copy the complete one to sb */
502 read_extent_buffer(buf, &super->dev_item, (unsigned long)dev_item,
504 ret = write_temp_super(fd, super, cfg->super_bytenr);
510 static int insert_temp_chunk_item(int fd, struct extent_buffer *buf,
511 struct btrfs_mkfs_config *cfg,
512 int *slot, u32 *itemoff, u64 start, u64 len,
515 struct btrfs_chunk *chunk;
516 struct btrfs_disk_key disk_key;
517 char super_buf[BTRFS_SUPER_INFO_SIZE];
518 struct btrfs_super_block *sb = (struct btrfs_super_block *)super_buf;
521 ret = pread(fd, super_buf, BTRFS_SUPER_INFO_SIZE,
523 if (ret < BTRFS_SUPER_INFO_SIZE) {
524 ret = (ret < 0 ? ret : -EIO);
528 btrfs_set_header_nritems(buf, *slot + 1);
529 (*itemoff) -= btrfs_chunk_item_size(1);
530 btrfs_set_disk_key_type(&disk_key, BTRFS_CHUNK_ITEM_KEY);
531 btrfs_set_disk_key_objectid(&disk_key, BTRFS_FIRST_CHUNK_TREE_OBJECTID);
532 btrfs_set_disk_key_offset(&disk_key, start);
533 btrfs_set_item_key(buf, &disk_key, *slot);
534 btrfs_set_item_offset(buf, btrfs_item_nr(*slot), *itemoff);
535 btrfs_set_item_size(buf, btrfs_item_nr(*slot),
536 btrfs_chunk_item_size(1));
538 chunk = btrfs_item_ptr(buf, *slot, struct btrfs_chunk);
539 btrfs_set_chunk_length(buf, chunk, len);
540 btrfs_set_chunk_owner(buf, chunk, BTRFS_EXTENT_TREE_OBJECTID);
541 btrfs_set_chunk_stripe_len(buf, chunk, 64 * 1024);
542 btrfs_set_chunk_type(buf, chunk, type);
543 btrfs_set_chunk_io_align(buf, chunk, cfg->sectorsize);
544 btrfs_set_chunk_io_width(buf, chunk, cfg->sectorsize);
545 btrfs_set_chunk_sector_size(buf, chunk, cfg->sectorsize);
546 btrfs_set_chunk_num_stripes(buf, chunk, 1);
547 /* TODO: Support DUP profile for system chunk */
548 btrfs_set_stripe_devid_nr(buf, chunk, 0, 1);
549 /* We are doing 1:1 mapping, so start is its dev offset */
550 btrfs_set_stripe_offset_nr(buf, chunk, 0, start);
551 write_extent_buffer(buf, &sb->dev_item.uuid,
552 (unsigned long)btrfs_stripe_dev_uuid_nr(chunk, 0),
557 * If it's system chunk, also copy it to super block.
559 if (type & BTRFS_BLOCK_GROUP_SYSTEM) {
562 cur = (char *)sb->sys_chunk_array + sb->sys_chunk_array_size;
563 memcpy(cur, &disk_key, sizeof(disk_key));
564 cur += sizeof(disk_key);
565 read_extent_buffer(buf, cur, (unsigned long int)chunk,
566 btrfs_chunk_item_size(1));
567 sb->sys_chunk_array_size += btrfs_chunk_item_size(1) +
570 ret = write_temp_super(fd, sb, cfg->super_bytenr);
575 static int setup_temp_chunk_tree(int fd, struct btrfs_mkfs_config *cfg,
576 u64 sys_chunk_start, u64 meta_chunk_start,
579 struct extent_buffer *buf = NULL;
580 u32 itemoff = __BTRFS_LEAF_DATA_SIZE(cfg->nodesize);
584 /* Must ensure SYS chunk starts before META chunk */
585 if (meta_chunk_start < sys_chunk_start) {
586 error("wrong chunk order: meta < system %llu < %llu",
587 (unsigned long long)meta_chunk_start,
588 (unsigned long long)sys_chunk_start);
591 buf = malloc(sizeof(*buf) + cfg->nodesize);
594 ret = setup_temp_extent_buffer(buf, cfg, chunk_bytenr,
595 BTRFS_CHUNK_TREE_OBJECTID);
599 ret = insert_temp_dev_item(fd, buf, cfg, &slot, &itemoff);
602 ret = insert_temp_chunk_item(fd, buf, cfg, &slot, &itemoff,
604 BTRFS_MKFS_SYSTEM_GROUP_SIZE,
605 BTRFS_BLOCK_GROUP_SYSTEM);
608 ret = insert_temp_chunk_item(fd, buf, cfg, &slot, &itemoff,
610 BTRFS_CONVERT_META_GROUP_SIZE,
611 BTRFS_BLOCK_GROUP_METADATA);
614 ret = write_temp_extent_buffer(fd, buf, chunk_bytenr);
621 static void insert_temp_dev_extent(struct extent_buffer *buf,
622 int *slot, u32 *itemoff, u64 start, u64 len)
624 struct btrfs_dev_extent *dev_extent;
625 struct btrfs_disk_key disk_key;
627 btrfs_set_header_nritems(buf, *slot + 1);
628 (*itemoff) -= sizeof(*dev_extent);
629 btrfs_set_disk_key_type(&disk_key, BTRFS_DEV_EXTENT_KEY);
630 btrfs_set_disk_key_objectid(&disk_key, 1);
631 btrfs_set_disk_key_offset(&disk_key, start);
632 btrfs_set_item_key(buf, &disk_key, *slot);
633 btrfs_set_item_offset(buf, btrfs_item_nr(*slot), *itemoff);
634 btrfs_set_item_size(buf, btrfs_item_nr(*slot), sizeof(*dev_extent));
636 dev_extent = btrfs_item_ptr(buf, *slot, struct btrfs_dev_extent);
637 btrfs_set_dev_extent_chunk_objectid(buf, dev_extent,
638 BTRFS_FIRST_CHUNK_TREE_OBJECTID);
639 btrfs_set_dev_extent_length(buf, dev_extent, len);
640 btrfs_set_dev_extent_chunk_offset(buf, dev_extent, start);
641 btrfs_set_dev_extent_chunk_tree(buf, dev_extent,
642 BTRFS_CHUNK_TREE_OBJECTID);
646 static int setup_temp_dev_tree(int fd, struct btrfs_mkfs_config *cfg,
647 u64 sys_chunk_start, u64 meta_chunk_start,
650 struct extent_buffer *buf = NULL;
651 u32 itemoff = __BTRFS_LEAF_DATA_SIZE(cfg->nodesize);
655 /* Must ensure SYS chunk starts before META chunk */
656 if (meta_chunk_start < sys_chunk_start) {
657 error("wrong chunk order: meta < system %llu < %llu",
658 (unsigned long long)meta_chunk_start,
659 (unsigned long long)sys_chunk_start);
662 buf = malloc(sizeof(*buf) + cfg->nodesize);
665 ret = setup_temp_extent_buffer(buf, cfg, dev_bytenr,
666 BTRFS_DEV_TREE_OBJECTID);
669 insert_temp_dev_extent(buf, &slot, &itemoff, sys_chunk_start,
670 BTRFS_MKFS_SYSTEM_GROUP_SIZE);
671 insert_temp_dev_extent(buf, &slot, &itemoff, meta_chunk_start,
672 BTRFS_CONVERT_META_GROUP_SIZE);
673 ret = write_temp_extent_buffer(fd, buf, dev_bytenr);
679 static int setup_temp_fs_tree(int fd, struct btrfs_mkfs_config *cfg,
682 struct extent_buffer *buf = NULL;
685 buf = malloc(sizeof(*buf) + cfg->nodesize);
688 ret = setup_temp_extent_buffer(buf, cfg, fs_bytenr,
689 BTRFS_FS_TREE_OBJECTID);
693 * Temporary fs tree is completely empty.
695 ret = write_temp_extent_buffer(fd, buf, fs_bytenr);
701 static int setup_temp_csum_tree(int fd, struct btrfs_mkfs_config *cfg,
704 struct extent_buffer *buf = NULL;
707 buf = malloc(sizeof(*buf) + cfg->nodesize);
710 ret = setup_temp_extent_buffer(buf, cfg, csum_bytenr,
711 BTRFS_CSUM_TREE_OBJECTID);
715 * Temporary csum tree is completely empty.
717 ret = write_temp_extent_buffer(fd, buf, csum_bytenr);
724 * Insert one temporary extent item.
726 * NOTE: if skinny_metadata is not enabled, this function must be called
727 * after all other trees are initialized.
728 * Or fs without skinny-metadata will be screwed up.
730 static int insert_temp_extent_item(int fd, struct extent_buffer *buf,
731 struct btrfs_mkfs_config *cfg,
732 int *slot, u32 *itemoff, u64 bytenr,
735 struct extent_buffer *tmp;
736 struct btrfs_extent_item *ei;
737 struct btrfs_extent_inline_ref *iref;
738 struct btrfs_disk_key disk_key;
739 struct btrfs_disk_key tree_info_key;
740 struct btrfs_tree_block_info *info;
742 int skinny_metadata = cfg->features &
743 BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA;
747 itemsize = sizeof(*ei) + sizeof(*iref);
749 itemsize = sizeof(*ei) + sizeof(*iref) +
750 sizeof(struct btrfs_tree_block_info);
752 btrfs_set_header_nritems(buf, *slot + 1);
753 *(itemoff) -= itemsize;
755 if (skinny_metadata) {
756 btrfs_set_disk_key_type(&disk_key, BTRFS_METADATA_ITEM_KEY);
757 btrfs_set_disk_key_offset(&disk_key, 0);
759 btrfs_set_disk_key_type(&disk_key, BTRFS_EXTENT_ITEM_KEY);
760 btrfs_set_disk_key_offset(&disk_key, cfg->nodesize);
762 btrfs_set_disk_key_objectid(&disk_key, bytenr);
764 btrfs_set_item_key(buf, &disk_key, *slot);
765 btrfs_set_item_offset(buf, btrfs_item_nr(*slot), *itemoff);
766 btrfs_set_item_size(buf, btrfs_item_nr(*slot), itemsize);
768 ei = btrfs_item_ptr(buf, *slot, struct btrfs_extent_item);
769 btrfs_set_extent_refs(buf, ei, 1);
770 btrfs_set_extent_generation(buf, ei, 1);
771 btrfs_set_extent_flags(buf, ei, BTRFS_EXTENT_FLAG_TREE_BLOCK);
773 if (skinny_metadata) {
774 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
776 info = (struct btrfs_tree_block_info *)(ei + 1);
777 iref = (struct btrfs_extent_inline_ref *)(info + 1);
779 btrfs_set_extent_inline_ref_type(buf, iref,
780 BTRFS_TREE_BLOCK_REF_KEY);
781 btrfs_set_extent_inline_ref_offset(buf, iref, ref_root);
788 * Lastly, check the tree block key by read the tree block
789 * Since we do 1:1 mapping for convert case, we can directly
790 * read the bytenr from disk
792 tmp = malloc(sizeof(*tmp) + cfg->nodesize);
795 ret = setup_temp_extent_buffer(tmp, cfg, bytenr, ref_root);
798 ret = pread(fd, tmp->data, cfg->nodesize, bytenr);
799 if (ret < cfg->nodesize) {
800 ret = (ret < 0 ? -errno : -EIO);
803 if (btrfs_header_nritems(tmp) == 0) {
804 btrfs_set_disk_key_type(&tree_info_key, 0);
805 btrfs_set_disk_key_objectid(&tree_info_key, 0);
806 btrfs_set_disk_key_offset(&tree_info_key, 0);
808 btrfs_item_key(tmp, &tree_info_key, 0);
810 btrfs_set_tree_block_key(buf, info, &tree_info_key);
817 static void insert_temp_block_group(struct extent_buffer *buf,
818 struct btrfs_mkfs_config *cfg,
819 int *slot, u32 *itemoff,
820 u64 bytenr, u64 len, u64 used, u64 flag)
822 struct btrfs_block_group_item bgi;
823 struct btrfs_disk_key disk_key;
825 btrfs_set_header_nritems(buf, *slot + 1);
826 (*itemoff) -= sizeof(bgi);
827 btrfs_set_disk_key_type(&disk_key, BTRFS_BLOCK_GROUP_ITEM_KEY);
828 btrfs_set_disk_key_objectid(&disk_key, bytenr);
829 btrfs_set_disk_key_offset(&disk_key, len);
830 btrfs_set_item_key(buf, &disk_key, *slot);
831 btrfs_set_item_offset(buf, btrfs_item_nr(*slot), *itemoff);
832 btrfs_set_item_size(buf, btrfs_item_nr(*slot), sizeof(bgi));
834 btrfs_set_block_group_flags(&bgi, flag);
835 btrfs_set_block_group_used(&bgi, used);
836 btrfs_set_block_group_chunk_objectid(&bgi,
837 BTRFS_FIRST_CHUNK_TREE_OBJECTID);
838 write_extent_buffer(buf, &bgi, btrfs_item_ptr_offset(buf, *slot),
843 static int setup_temp_extent_tree(int fd, struct btrfs_mkfs_config *cfg,
844 u64 chunk_bytenr, u64 root_bytenr,
845 u64 extent_bytenr, u64 dev_bytenr,
846 u64 fs_bytenr, u64 csum_bytenr)
848 struct extent_buffer *buf = NULL;
849 u32 itemoff = __BTRFS_LEAF_DATA_SIZE(cfg->nodesize);
854 * We must ensure provided bytenr are in ascending order,
855 * or extent tree key order will be broken.
857 if (!(chunk_bytenr < root_bytenr && root_bytenr < extent_bytenr &&
858 extent_bytenr < dev_bytenr && dev_bytenr < fs_bytenr &&
859 fs_bytenr < csum_bytenr)) {
860 error("bad tree bytenr order: "
861 "chunk < root %llu < %llu, "
862 "root < extent %llu < %llu, "
863 "extent < dev %llu < %llu, "
864 "dev < fs %llu < %llu, "
865 "fs < csum %llu < %llu",
866 (unsigned long long)chunk_bytenr,
867 (unsigned long long)root_bytenr,
868 (unsigned long long)root_bytenr,
869 (unsigned long long)extent_bytenr,
870 (unsigned long long)extent_bytenr,
871 (unsigned long long)dev_bytenr,
872 (unsigned long long)dev_bytenr,
873 (unsigned long long)fs_bytenr,
874 (unsigned long long)fs_bytenr,
875 (unsigned long long)csum_bytenr);
878 buf = malloc(sizeof(*buf) + cfg->nodesize);
882 ret = setup_temp_extent_buffer(buf, cfg, extent_bytenr,
883 BTRFS_EXTENT_TREE_OBJECTID);
887 ret = insert_temp_extent_item(fd, buf, cfg, &slot, &itemoff,
888 chunk_bytenr, BTRFS_CHUNK_TREE_OBJECTID);
892 insert_temp_block_group(buf, cfg, &slot, &itemoff, chunk_bytenr,
893 BTRFS_MKFS_SYSTEM_GROUP_SIZE, cfg->nodesize,
894 BTRFS_BLOCK_GROUP_SYSTEM);
896 ret = insert_temp_extent_item(fd, buf, cfg, &slot, &itemoff,
897 root_bytenr, BTRFS_ROOT_TREE_OBJECTID);
901 /* 5 tree block used, root, extent, dev, fs and csum*/
902 insert_temp_block_group(buf, cfg, &slot, &itemoff, root_bytenr,
903 BTRFS_CONVERT_META_GROUP_SIZE, cfg->nodesize * 5,
904 BTRFS_BLOCK_GROUP_METADATA);
906 ret = insert_temp_extent_item(fd, buf, cfg, &slot, &itemoff,
907 extent_bytenr, BTRFS_EXTENT_TREE_OBJECTID);
910 ret = insert_temp_extent_item(fd, buf, cfg, &slot, &itemoff,
911 dev_bytenr, BTRFS_DEV_TREE_OBJECTID);
914 ret = insert_temp_extent_item(fd, buf, cfg, &slot, &itemoff,
915 fs_bytenr, BTRFS_FS_TREE_OBJECTID);
918 ret = insert_temp_extent_item(fd, buf, cfg, &slot, &itemoff,
919 csum_bytenr, BTRFS_CSUM_TREE_OBJECTID);
923 ret = write_temp_extent_buffer(fd, buf, extent_bytenr);
930 * Improved version of make_btrfs().
933 * 1) Do chunk allocation to avoid used data
934 * And after this function, extent type matches chunk type
935 * 2) Better structured code
936 * No super long hand written codes to initialized all tree blocks
937 * Split into small blocks and reuse codes.
938 * TODO: Reuse tree operation facilities by introducing new flags
940 static int make_convert_btrfs(int fd, struct btrfs_mkfs_config *cfg,
941 struct btrfs_convert_context *cctx)
943 struct cache_tree *free = &cctx->free;
944 struct cache_tree *used = &cctx->used;
946 u64 meta_chunk_start;
947 /* chunk tree bytenr, in system chunk */
949 /* metadata trees bytenr, in metadata chunk */
957 /* Shouldn't happen */
958 BUG_ON(cache_tree_empty(used));
961 * reserve space for temporary superblock first
962 * Here we allocate a little larger space, to keep later
963 * free space will be STRIPE_LEN aligned
965 ret = reserve_free_space(free, BTRFS_STRIPE_LEN,
971 * Then reserve system chunk space
972 * TODO: Change system group size depending on cctx->total_bytes.
973 * If using current 4M, it can only handle less than one TB for
974 * worst case and then run out of sys space.
976 ret = reserve_free_space(free, BTRFS_MKFS_SYSTEM_GROUP_SIZE,
980 ret = reserve_free_space(free, BTRFS_CONVERT_META_GROUP_SIZE,
986 * Allocated meta/sys chunks will be mapped 1:1 with device offset.
988 * Inside the allocated metadata chunk, the layout will be:
989 * | offset | contents |
990 * -------------------------------------
992 * | +nodesize | extent root |
993 * | +nodesize * 2 | device root |
994 * | +nodesize * 3 | fs tree |
995 * | +nodesize * 4 | csum tree |
996 * -------------------------------------
997 * Inside the allocated system chunk, the layout will be:
998 * | offset | contents |
999 * -------------------------------------
1000 * | +0 | chunk root |
1001 * -------------------------------------
1003 chunk_bytenr = sys_chunk_start;
1004 root_bytenr = meta_chunk_start;
1005 extent_bytenr = meta_chunk_start + cfg->nodesize;
1006 dev_bytenr = meta_chunk_start + cfg->nodesize * 2;
1007 fs_bytenr = meta_chunk_start + cfg->nodesize * 3;
1008 csum_bytenr = meta_chunk_start + cfg->nodesize * 4;
1010 ret = setup_temp_super(fd, cfg, root_bytenr, chunk_bytenr);
1014 ret = setup_temp_root_tree(fd, cfg, root_bytenr, extent_bytenr,
1015 dev_bytenr, fs_bytenr, csum_bytenr);
1018 ret = setup_temp_chunk_tree(fd, cfg, sys_chunk_start, meta_chunk_start,
1022 ret = setup_temp_dev_tree(fd, cfg, sys_chunk_start, meta_chunk_start,
1026 ret = setup_temp_fs_tree(fd, cfg, fs_bytenr);
1029 ret = setup_temp_csum_tree(fd, cfg, csum_bytenr);
1033 * Setup extent tree last, since it may need to read tree block key
1034 * for non-skinny metadata case.
1036 ret = setup_temp_extent_tree(fd, cfg, chunk_bytenr, root_bytenr,
1037 extent_bytenr, dev_bytenr, fs_bytenr,
1044 * @fs_uuid - if NULL, generates a UUID, returns back the new filesystem UUID
1046 * The superblock signature is not valid, denotes a partially created
1047 * filesystem, needs to be finalized.
1049 int make_btrfs(int fd, struct btrfs_mkfs_config *cfg,
1050 struct btrfs_convert_context *cctx)
1052 struct btrfs_super_block super;
1053 struct extent_buffer *buf;
1054 struct btrfs_root_item root_item;
1055 struct btrfs_disk_key disk_key;
1056 struct btrfs_extent_item *extent_item;
1057 struct btrfs_inode_item *inode_item;
1058 struct btrfs_chunk *chunk;
1059 struct btrfs_dev_item *dev_item;
1060 struct btrfs_dev_extent *dev_extent;
1061 u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
1071 int skinny_metadata = !!(cfg->features &
1072 BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA);
1076 return make_convert_btrfs(fd, cfg, cctx);
1077 buf = malloc(sizeof(*buf) + max(cfg->sectorsize, cfg->nodesize));
1081 first_free = BTRFS_SUPER_INFO_OFFSET + cfg->sectorsize * 2 - 1;
1082 first_free &= ~((u64)cfg->sectorsize - 1);
1084 memset(&super, 0, sizeof(super));
1086 num_bytes = (cfg->num_bytes / cfg->sectorsize) * cfg->sectorsize;
1087 if (*cfg->fs_uuid) {
1088 if (uuid_parse(cfg->fs_uuid, super.fsid) != 0) {
1089 error("cannot not parse UUID: %s", cfg->fs_uuid);
1093 if (!test_uuid_unique(cfg->fs_uuid)) {
1094 error("non-unique UUID: %s", cfg->fs_uuid);
1099 uuid_generate(super.fsid);
1101 uuid_unparse(super.fsid, cfg->fs_uuid);
1103 uuid_generate(super.dev_item.uuid);
1104 uuid_generate(chunk_tree_uuid);
1106 btrfs_set_super_bytenr(&super, cfg->blocks[0]);
1107 btrfs_set_super_num_devices(&super, 1);
1108 btrfs_set_super_magic(&super, BTRFS_MAGIC_PARTIAL);
1109 btrfs_set_super_generation(&super, 1);
1110 btrfs_set_super_root(&super, cfg->blocks[1]);
1111 btrfs_set_super_chunk_root(&super, cfg->blocks[3]);
1112 btrfs_set_super_total_bytes(&super, num_bytes);
1113 btrfs_set_super_bytes_used(&super, 6 * cfg->nodesize);
1114 btrfs_set_super_sectorsize(&super, cfg->sectorsize);
1115 btrfs_set_super_leafsize(&super, cfg->nodesize);
1116 btrfs_set_super_nodesize(&super, cfg->nodesize);
1117 btrfs_set_super_stripesize(&super, cfg->stripesize);
1118 btrfs_set_super_csum_type(&super, BTRFS_CSUM_TYPE_CRC32);
1119 btrfs_set_super_chunk_root_generation(&super, 1);
1120 btrfs_set_super_cache_generation(&super, -1);
1121 btrfs_set_super_incompat_flags(&super, cfg->features);
1123 __strncpy_null(super.label, cfg->label, BTRFS_LABEL_SIZE - 1);
1125 /* create the tree of root objects */
1126 memset(buf->data, 0, cfg->nodesize);
1127 buf->len = cfg->nodesize;
1128 btrfs_set_header_bytenr(buf, cfg->blocks[1]);
1129 btrfs_set_header_nritems(buf, 4);
1130 btrfs_set_header_generation(buf, 1);
1131 btrfs_set_header_backref_rev(buf, BTRFS_MIXED_BACKREF_REV);
1132 btrfs_set_header_owner(buf, BTRFS_ROOT_TREE_OBJECTID);
1133 write_extent_buffer(buf, super.fsid, btrfs_header_fsid(),
1136 write_extent_buffer(buf, chunk_tree_uuid,
1137 btrfs_header_chunk_tree_uuid(buf),
1140 /* create the items for the root tree */
1141 memset(&root_item, 0, sizeof(root_item));
1142 inode_item = &root_item.inode;
1143 btrfs_set_stack_inode_generation(inode_item, 1);
1144 btrfs_set_stack_inode_size(inode_item, 3);
1145 btrfs_set_stack_inode_nlink(inode_item, 1);
1146 btrfs_set_stack_inode_nbytes(inode_item, cfg->nodesize);
1147 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
1148 btrfs_set_root_refs(&root_item, 1);
1149 btrfs_set_root_used(&root_item, cfg->nodesize);
1150 btrfs_set_root_generation(&root_item, 1);
1152 memset(&disk_key, 0, sizeof(disk_key));
1153 btrfs_set_disk_key_type(&disk_key, BTRFS_ROOT_ITEM_KEY);
1154 btrfs_set_disk_key_offset(&disk_key, 0);
1157 itemoff = __BTRFS_LEAF_DATA_SIZE(cfg->nodesize) - sizeof(root_item);
1158 btrfs_set_root_bytenr(&root_item, cfg->blocks[2]);
1159 btrfs_set_disk_key_objectid(&disk_key, BTRFS_EXTENT_TREE_OBJECTID);
1160 btrfs_set_item_key(buf, &disk_key, nritems);
1161 btrfs_set_item_offset(buf, btrfs_item_nr(nritems), itemoff);
1162 btrfs_set_item_size(buf, btrfs_item_nr(nritems),
1164 write_extent_buffer(buf, &root_item, btrfs_item_ptr_offset(buf,
1165 nritems), sizeof(root_item));
1168 itemoff = itemoff - sizeof(root_item);
1169 btrfs_set_root_bytenr(&root_item, cfg->blocks[4]);
1170 btrfs_set_disk_key_objectid(&disk_key, BTRFS_DEV_TREE_OBJECTID);
1171 btrfs_set_item_key(buf, &disk_key, nritems);
1172 btrfs_set_item_offset(buf, btrfs_item_nr(nritems), itemoff);
1173 btrfs_set_item_size(buf, btrfs_item_nr(nritems),
1175 write_extent_buffer(buf, &root_item,
1176 btrfs_item_ptr_offset(buf, nritems),
1180 itemoff = itemoff - sizeof(root_item);
1181 btrfs_set_root_bytenr(&root_item, cfg->blocks[5]);
1182 btrfs_set_disk_key_objectid(&disk_key, BTRFS_FS_TREE_OBJECTID);
1183 btrfs_set_item_key(buf, &disk_key, nritems);
1184 btrfs_set_item_offset(buf, btrfs_item_nr(nritems), itemoff);
1185 btrfs_set_item_size(buf, btrfs_item_nr(nritems),
1187 write_extent_buffer(buf, &root_item,
1188 btrfs_item_ptr_offset(buf, nritems),
1192 itemoff = itemoff - sizeof(root_item);
1193 btrfs_set_root_bytenr(&root_item, cfg->blocks[6]);
1194 btrfs_set_disk_key_objectid(&disk_key, BTRFS_CSUM_TREE_OBJECTID);
1195 btrfs_set_item_key(buf, &disk_key, nritems);
1196 btrfs_set_item_offset(buf, btrfs_item_nr(nritems), itemoff);
1197 btrfs_set_item_size(buf, btrfs_item_nr(nritems),
1199 write_extent_buffer(buf, &root_item,
1200 btrfs_item_ptr_offset(buf, nritems),
1205 csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
1206 ret = pwrite(fd, buf->data, cfg->nodesize, cfg->blocks[1]);
1207 if (ret != cfg->nodesize) {
1208 ret = (ret < 0 ? -errno : -EIO);
1212 /* create the items for the extent tree */
1213 memset(buf->data + sizeof(struct btrfs_header), 0,
1214 cfg->nodesize - sizeof(struct btrfs_header));
1216 itemoff = __BTRFS_LEAF_DATA_SIZE(cfg->nodesize);
1217 for (i = 1; i < 7; i++) {
1218 item_size = sizeof(struct btrfs_extent_item);
1219 if (!skinny_metadata)
1220 item_size += sizeof(struct btrfs_tree_block_info);
1222 if (cfg->blocks[i] < first_free) {
1223 error("block[%d] below first free: %llu < %llu",
1224 i, (unsigned long long)cfg->blocks[i],
1225 (unsigned long long)first_free);
1229 if (cfg->blocks[i] < cfg->blocks[i - 1]) {
1230 error("blocks %d and %d in reverse order: %llu < %llu",
1232 (unsigned long long)cfg->blocks[i],
1233 (unsigned long long)cfg->blocks[i - 1]);
1238 /* create extent item */
1239 itemoff -= item_size;
1240 btrfs_set_disk_key_objectid(&disk_key, cfg->blocks[i]);
1241 if (skinny_metadata) {
1242 btrfs_set_disk_key_type(&disk_key,
1243 BTRFS_METADATA_ITEM_KEY);
1244 btrfs_set_disk_key_offset(&disk_key, 0);
1246 btrfs_set_disk_key_type(&disk_key,
1247 BTRFS_EXTENT_ITEM_KEY);
1248 btrfs_set_disk_key_offset(&disk_key, cfg->nodesize);
1250 btrfs_set_item_key(buf, &disk_key, nritems);
1251 btrfs_set_item_offset(buf, btrfs_item_nr(nritems),
1253 btrfs_set_item_size(buf, btrfs_item_nr(nritems),
1255 extent_item = btrfs_item_ptr(buf, nritems,
1256 struct btrfs_extent_item);
1257 btrfs_set_extent_refs(buf, extent_item, 1);
1258 btrfs_set_extent_generation(buf, extent_item, 1);
1259 btrfs_set_extent_flags(buf, extent_item,
1260 BTRFS_EXTENT_FLAG_TREE_BLOCK);
1263 /* create extent ref */
1264 ref_root = reference_root_table[i];
1265 btrfs_set_disk_key_objectid(&disk_key, cfg->blocks[i]);
1266 btrfs_set_disk_key_offset(&disk_key, ref_root);
1267 btrfs_set_disk_key_type(&disk_key, BTRFS_TREE_BLOCK_REF_KEY);
1268 btrfs_set_item_key(buf, &disk_key, nritems);
1269 btrfs_set_item_offset(buf, btrfs_item_nr(nritems),
1271 btrfs_set_item_size(buf, btrfs_item_nr(nritems), 0);
1274 btrfs_set_header_bytenr(buf, cfg->blocks[2]);
1275 btrfs_set_header_owner(buf, BTRFS_EXTENT_TREE_OBJECTID);
1276 btrfs_set_header_nritems(buf, nritems);
1277 csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
1278 ret = pwrite(fd, buf->data, cfg->nodesize, cfg->blocks[2]);
1279 if (ret != cfg->nodesize) {
1280 ret = (ret < 0 ? -errno : -EIO);
1284 /* create the chunk tree */
1285 memset(buf->data + sizeof(struct btrfs_header), 0,
1286 cfg->nodesize - sizeof(struct btrfs_header));
1288 item_size = sizeof(*dev_item);
1289 itemoff = __BTRFS_LEAF_DATA_SIZE(cfg->nodesize) - item_size;
1291 /* first device 1 (there is no device 0) */
1292 btrfs_set_disk_key_objectid(&disk_key, BTRFS_DEV_ITEMS_OBJECTID);
1293 btrfs_set_disk_key_offset(&disk_key, 1);
1294 btrfs_set_disk_key_type(&disk_key, BTRFS_DEV_ITEM_KEY);
1295 btrfs_set_item_key(buf, &disk_key, nritems);
1296 btrfs_set_item_offset(buf, btrfs_item_nr(nritems), itemoff);
1297 btrfs_set_item_size(buf, btrfs_item_nr(nritems), item_size);
1299 dev_item = btrfs_item_ptr(buf, nritems, struct btrfs_dev_item);
1300 btrfs_set_device_id(buf, dev_item, 1);
1301 btrfs_set_device_generation(buf, dev_item, 0);
1302 btrfs_set_device_total_bytes(buf, dev_item, num_bytes);
1303 btrfs_set_device_bytes_used(buf, dev_item,
1304 BTRFS_MKFS_SYSTEM_GROUP_SIZE);
1305 btrfs_set_device_io_align(buf, dev_item, cfg->sectorsize);
1306 btrfs_set_device_io_width(buf, dev_item, cfg->sectorsize);
1307 btrfs_set_device_sector_size(buf, dev_item, cfg->sectorsize);
1308 btrfs_set_device_type(buf, dev_item, 0);
1310 write_extent_buffer(buf, super.dev_item.uuid,
1311 (unsigned long)btrfs_device_uuid(dev_item),
1313 write_extent_buffer(buf, super.fsid,
1314 (unsigned long)btrfs_device_fsid(dev_item),
1316 read_extent_buffer(buf, &super.dev_item, (unsigned long)dev_item,
1320 item_size = btrfs_chunk_item_size(1);
1321 itemoff = itemoff - item_size;
1323 /* then we have chunk 0 */
1324 btrfs_set_disk_key_objectid(&disk_key, BTRFS_FIRST_CHUNK_TREE_OBJECTID);
1325 btrfs_set_disk_key_offset(&disk_key, 0);
1326 btrfs_set_disk_key_type(&disk_key, BTRFS_CHUNK_ITEM_KEY);
1327 btrfs_set_item_key(buf, &disk_key, nritems);
1328 btrfs_set_item_offset(buf, btrfs_item_nr(nritems), itemoff);
1329 btrfs_set_item_size(buf, btrfs_item_nr(nritems), item_size);
1331 chunk = btrfs_item_ptr(buf, nritems, struct btrfs_chunk);
1332 btrfs_set_chunk_length(buf, chunk, BTRFS_MKFS_SYSTEM_GROUP_SIZE);
1333 btrfs_set_chunk_owner(buf, chunk, BTRFS_EXTENT_TREE_OBJECTID);
1334 btrfs_set_chunk_stripe_len(buf, chunk, 64 * 1024);
1335 btrfs_set_chunk_type(buf, chunk, BTRFS_BLOCK_GROUP_SYSTEM);
1336 btrfs_set_chunk_io_align(buf, chunk, cfg->sectorsize);
1337 btrfs_set_chunk_io_width(buf, chunk, cfg->sectorsize);
1338 btrfs_set_chunk_sector_size(buf, chunk, cfg->sectorsize);
1339 btrfs_set_chunk_num_stripes(buf, chunk, 1);
1340 btrfs_set_stripe_devid_nr(buf, chunk, 0, 1);
1341 btrfs_set_stripe_offset_nr(buf, chunk, 0, 0);
1344 write_extent_buffer(buf, super.dev_item.uuid,
1345 (unsigned long)btrfs_stripe_dev_uuid(&chunk->stripe),
1348 /* copy the key for the chunk to the system array */
1349 ptr = super.sys_chunk_array;
1350 array_size = sizeof(disk_key);
1352 memcpy(ptr, &disk_key, sizeof(disk_key));
1353 ptr += sizeof(disk_key);
1355 /* copy the chunk to the system array */
1356 read_extent_buffer(buf, ptr, (unsigned long)chunk, item_size);
1357 array_size += item_size;
1359 btrfs_set_super_sys_array_size(&super, array_size);
1361 btrfs_set_header_bytenr(buf, cfg->blocks[3]);
1362 btrfs_set_header_owner(buf, BTRFS_CHUNK_TREE_OBJECTID);
1363 btrfs_set_header_nritems(buf, nritems);
1364 csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
1365 ret = pwrite(fd, buf->data, cfg->nodesize, cfg->blocks[3]);
1366 if (ret != cfg->nodesize) {
1367 ret = (ret < 0 ? -errno : -EIO);
1371 /* create the device tree */
1372 memset(buf->data + sizeof(struct btrfs_header), 0,
1373 cfg->nodesize - sizeof(struct btrfs_header));
1375 itemoff = __BTRFS_LEAF_DATA_SIZE(cfg->nodesize) -
1376 sizeof(struct btrfs_dev_extent);
1378 btrfs_set_disk_key_objectid(&disk_key, 1);
1379 btrfs_set_disk_key_offset(&disk_key, 0);
1380 btrfs_set_disk_key_type(&disk_key, BTRFS_DEV_EXTENT_KEY);
1381 btrfs_set_item_key(buf, &disk_key, nritems);
1382 btrfs_set_item_offset(buf, btrfs_item_nr(nritems), itemoff);
1383 btrfs_set_item_size(buf, btrfs_item_nr(nritems),
1384 sizeof(struct btrfs_dev_extent));
1385 dev_extent = btrfs_item_ptr(buf, nritems, struct btrfs_dev_extent);
1386 btrfs_set_dev_extent_chunk_tree(buf, dev_extent,
1387 BTRFS_CHUNK_TREE_OBJECTID);
1388 btrfs_set_dev_extent_chunk_objectid(buf, dev_extent,
1389 BTRFS_FIRST_CHUNK_TREE_OBJECTID);
1390 btrfs_set_dev_extent_chunk_offset(buf, dev_extent, 0);
1392 write_extent_buffer(buf, chunk_tree_uuid,
1393 (unsigned long)btrfs_dev_extent_chunk_tree_uuid(dev_extent),
1396 btrfs_set_dev_extent_length(buf, dev_extent,
1397 BTRFS_MKFS_SYSTEM_GROUP_SIZE);
1400 btrfs_set_header_bytenr(buf, cfg->blocks[4]);
1401 btrfs_set_header_owner(buf, BTRFS_DEV_TREE_OBJECTID);
1402 btrfs_set_header_nritems(buf, nritems);
1403 csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
1404 ret = pwrite(fd, buf->data, cfg->nodesize, cfg->blocks[4]);
1405 if (ret != cfg->nodesize) {
1406 ret = (ret < 0 ? -errno : -EIO);
1410 /* create the FS root */
1411 memset(buf->data + sizeof(struct btrfs_header), 0,
1412 cfg->nodesize - sizeof(struct btrfs_header));
1413 btrfs_set_header_bytenr(buf, cfg->blocks[5]);
1414 btrfs_set_header_owner(buf, BTRFS_FS_TREE_OBJECTID);
1415 btrfs_set_header_nritems(buf, 0);
1416 csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
1417 ret = pwrite(fd, buf->data, cfg->nodesize, cfg->blocks[5]);
1418 if (ret != cfg->nodesize) {
1419 ret = (ret < 0 ? -errno : -EIO);
1422 /* finally create the csum root */
1423 memset(buf->data + sizeof(struct btrfs_header), 0,
1424 cfg->nodesize - sizeof(struct btrfs_header));
1425 btrfs_set_header_bytenr(buf, cfg->blocks[6]);
1426 btrfs_set_header_owner(buf, BTRFS_CSUM_TREE_OBJECTID);
1427 btrfs_set_header_nritems(buf, 0);
1428 csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
1429 ret = pwrite(fd, buf->data, cfg->nodesize, cfg->blocks[6]);
1430 if (ret != cfg->nodesize) {
1431 ret = (ret < 0 ? -errno : -EIO);
1435 /* and write out the super block */
1436 memset(buf->data, 0, BTRFS_SUPER_INFO_SIZE);
1437 memcpy(buf->data, &super, sizeof(super));
1438 buf->len = BTRFS_SUPER_INFO_SIZE;
1439 csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
1440 ret = pwrite(fd, buf->data, BTRFS_SUPER_INFO_SIZE, cfg->blocks[0]);
1441 if (ret != BTRFS_SUPER_INFO_SIZE) {
1442 ret = (ret < 0 ? -errno : -EIO);
1453 static const struct btrfs_fs_feature {
1457 } mkfs_features[] = {
1458 { "mixed-bg", BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS,
1459 "mixed data and metadata block groups" },
1460 { "extref", BTRFS_FEATURE_INCOMPAT_EXTENDED_IREF,
1461 "increased hardlink limit per file to 65536" },
1462 { "raid56", BTRFS_FEATURE_INCOMPAT_RAID56,
1463 "raid56 extended format" },
1464 { "skinny-metadata", BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA,
1465 "reduced-size metadata extent refs" },
1466 { "no-holes", BTRFS_FEATURE_INCOMPAT_NO_HOLES,
1467 "no explicit hole extents for files" },
1468 /* Keep this one last */
1469 { "list-all", BTRFS_FEATURE_LIST_ALL, NULL }
1472 static int parse_one_fs_feature(const char *name, u64 *flags)
1477 for (i = 0; i < ARRAY_SIZE(mkfs_features); i++) {
1478 if (name[0] == '^' &&
1479 !strcmp(mkfs_features[i].name, name + 1)) {
1480 *flags &= ~ mkfs_features[i].flag;
1482 } else if (!strcmp(mkfs_features[i].name, name)) {
1483 *flags |= mkfs_features[i].flag;
1491 void btrfs_parse_features_to_string(char *buf, u64 flags)
1497 for (i = 0; i < ARRAY_SIZE(mkfs_features); i++) {
1498 if (flags & mkfs_features[i].flag) {
1501 strcat(buf, mkfs_features[i].name);
1506 void btrfs_process_fs_features(u64 flags)
1510 for (i = 0; i < ARRAY_SIZE(mkfs_features); i++) {
1511 if (flags & mkfs_features[i].flag) {
1512 printf("Turning ON incompat feature '%s': %s\n",
1513 mkfs_features[i].name,
1514 mkfs_features[i].desc);
1519 void btrfs_list_all_fs_features(u64 mask_disallowed)
1523 fprintf(stderr, "Filesystem features available:\n");
1524 for (i = 0; i < ARRAY_SIZE(mkfs_features) - 1; i++) {
1525 char *is_default = "";
1527 if (mkfs_features[i].flag & mask_disallowed)
1529 if (mkfs_features[i].flag & BTRFS_MKFS_DEFAULT_FEATURES)
1530 is_default = ", default";
1531 fprintf(stderr, "%-20s- %s (0x%llx%s)\n",
1532 mkfs_features[i].name,
1533 mkfs_features[i].desc,
1534 mkfs_features[i].flag,
1540 * Return NULL if all features were parsed fine, otherwise return the name of
1541 * the first unparsed.
1543 char* btrfs_parse_fs_features(char *namelist, u64 *flags)
1546 char *save_ptr = NULL; /* Satisfy static checkers */
1548 for (this_char = strtok_r(namelist, ",", &save_ptr);
1550 this_char = strtok_r(NULL, ",", &save_ptr)) {
1551 if (parse_one_fs_feature(this_char, flags))
1558 u64 btrfs_device_size(int fd, struct stat *st)
1561 if (S_ISREG(st->st_mode)) {
1564 if (!S_ISBLK(st->st_mode)) {
1567 if (ioctl(fd, BLKGETSIZE64, &size) >= 0) {
1573 static int zero_blocks(int fd, off_t start, size_t len)
1575 char *buf = malloc(len);
1581 memset(buf, 0, len);
1582 written = pwrite(fd, buf, len, start);
1589 #define ZERO_DEV_BYTES (2 * 1024 * 1024)
1591 /* don't write outside the device by clamping the region to the device size */
1592 static int zero_dev_clamped(int fd, off_t start, ssize_t len, u64 dev_size)
1594 off_t end = max(start, start + len);
1597 /* and don't overwrite the disk labels on sparc */
1598 start = max(start, 1024);
1599 end = max(end, 1024);
1602 start = min_t(u64, start, dev_size);
1603 end = min_t(u64, end, dev_size);
1605 return zero_blocks(fd, start, end - start);
1608 int btrfs_add_to_fsid(struct btrfs_trans_handle *trans,
1609 struct btrfs_root *root, int fd, char *path,
1610 u64 device_total_bytes, u32 io_width, u32 io_align,
1613 struct btrfs_super_block *disk_super;
1614 struct btrfs_super_block *super = root->fs_info->super_copy;
1615 struct btrfs_device *device;
1616 struct btrfs_dev_item *dev_item;
1622 device_total_bytes = (device_total_bytes / sectorsize) * sectorsize;
1624 device = kzalloc(sizeof(*device), GFP_NOFS);
1629 buf = kzalloc(sectorsize, GFP_NOFS);
1635 disk_super = (struct btrfs_super_block *)buf;
1636 dev_item = &disk_super->dev_item;
1638 uuid_generate(device->uuid);
1641 device->io_width = io_width;
1642 device->io_align = io_align;
1643 device->sector_size = sectorsize;
1645 device->writeable = 1;
1646 device->total_bytes = device_total_bytes;
1647 device->bytes_used = 0;
1648 device->total_ios = 0;
1649 device->dev_root = root->fs_info->dev_root;
1650 device->name = strdup(path);
1651 if (!device->name) {
1656 INIT_LIST_HEAD(&device->dev_list);
1657 ret = btrfs_add_device(trans, root, device);
1661 fs_total_bytes = btrfs_super_total_bytes(super) + device_total_bytes;
1662 btrfs_set_super_total_bytes(super, fs_total_bytes);
1664 num_devs = btrfs_super_num_devices(super) + 1;
1665 btrfs_set_super_num_devices(super, num_devs);
1667 memcpy(disk_super, super, sizeof(*disk_super));
1669 btrfs_set_super_bytenr(disk_super, BTRFS_SUPER_INFO_OFFSET);
1670 btrfs_set_stack_device_id(dev_item, device->devid);
1671 btrfs_set_stack_device_type(dev_item, device->type);
1672 btrfs_set_stack_device_io_align(dev_item, device->io_align);
1673 btrfs_set_stack_device_io_width(dev_item, device->io_width);
1674 btrfs_set_stack_device_sector_size(dev_item, device->sector_size);
1675 btrfs_set_stack_device_total_bytes(dev_item, device->total_bytes);
1676 btrfs_set_stack_device_bytes_used(dev_item, device->bytes_used);
1677 memcpy(&dev_item->uuid, device->uuid, BTRFS_UUID_SIZE);
1679 ret = pwrite(fd, buf, sectorsize, BTRFS_SUPER_INFO_OFFSET);
1680 BUG_ON(ret != sectorsize);
1683 list_add(&device->dev_list, &root->fs_info->fs_devices->devices);
1684 device->fs_devices = root->fs_info->fs_devices;
1693 static int btrfs_wipe_existing_sb(int fd)
1695 const char *off = NULL;
1700 blkid_probe pr = NULL;
1702 pr = blkid_new_probe();
1706 if (blkid_probe_set_device(pr, fd, 0, 0)) {
1711 ret = blkid_probe_lookup_value(pr, "SBMAGIC_OFFSET", &off, NULL);
1713 ret = blkid_probe_lookup_value(pr, "SBMAGIC", NULL, &len);
1715 if (ret || len == 0 || off == NULL) {
1717 * If lookup fails, the probe did not find any values, eg. for
1718 * a file image or a loop device. Soft error.
1724 offset = strtoll(off, NULL, 10);
1725 if (len > sizeof(buf))
1728 memset(buf, 0, len);
1729 ret = pwrite(fd, buf, len, offset);
1731 error("cannot wipe existing superblock: %s", strerror(errno));
1733 } else if (ret != len) {
1734 error("cannot wipe existing superblock: wrote %d of %zd", ret, len);
1740 blkid_free_probe(pr);
1744 int btrfs_prepare_device(int fd, const char *file, u64 *block_count_ret,
1745 u64 max_block_count, unsigned opflags)
1751 ret = fstat(fd, &st);
1753 error("unable to stat %s: %s", file, strerror(errno));
1757 block_count = btrfs_device_size(fd, &st);
1758 if (block_count == 0) {
1759 error("unable to determine size of %s", file);
1762 if (max_block_count)
1763 block_count = min(block_count, max_block_count);
1765 if (opflags & PREP_DEVICE_DISCARD) {
1767 * We intentionally ignore errors from the discard ioctl. It
1768 * is not necessary for the mkfs functionality but just an
1771 if (discard_range(fd, 0, 0) == 0) {
1772 if (opflags & PREP_DEVICE_VERBOSE)
1773 printf("Performing full device TRIM (%s) ...\n",
1774 pretty_size(block_count));
1775 discard_blocks(fd, 0, block_count);
1779 ret = zero_dev_clamped(fd, 0, ZERO_DEV_BYTES, block_count);
1780 for (i = 0 ; !ret && i < BTRFS_SUPER_MIRROR_MAX; i++)
1781 ret = zero_dev_clamped(fd, btrfs_sb_offset(i),
1782 BTRFS_SUPER_INFO_SIZE, block_count);
1783 if (!ret && (opflags & PREP_DEVICE_ZERO_END))
1784 ret = zero_dev_clamped(fd, block_count - ZERO_DEV_BYTES,
1785 ZERO_DEV_BYTES, block_count);
1788 error("failed to zero device '%s': %s", file, strerror(-ret));
1792 ret = btrfs_wipe_existing_sb(fd);
1794 error("cannot wipe superblocks on %s", file);
1798 *block_count_ret = block_count;
1802 int btrfs_make_root_dir(struct btrfs_trans_handle *trans,
1803 struct btrfs_root *root, u64 objectid)
1806 struct btrfs_inode_item inode_item;
1807 time_t now = time(NULL);
1809 memset(&inode_item, 0, sizeof(inode_item));
1810 btrfs_set_stack_inode_generation(&inode_item, trans->transid);
1811 btrfs_set_stack_inode_size(&inode_item, 0);
1812 btrfs_set_stack_inode_nlink(&inode_item, 1);
1813 btrfs_set_stack_inode_nbytes(&inode_item, root->nodesize);
1814 btrfs_set_stack_inode_mode(&inode_item, S_IFDIR | 0755);
1815 btrfs_set_stack_timespec_sec(&inode_item.atime, now);
1816 btrfs_set_stack_timespec_nsec(&inode_item.atime, 0);
1817 btrfs_set_stack_timespec_sec(&inode_item.ctime, now);
1818 btrfs_set_stack_timespec_nsec(&inode_item.ctime, 0);
1819 btrfs_set_stack_timespec_sec(&inode_item.mtime, now);
1820 btrfs_set_stack_timespec_nsec(&inode_item.mtime, 0);
1821 btrfs_set_stack_timespec_sec(&inode_item.otime, 0);
1822 btrfs_set_stack_timespec_nsec(&inode_item.otime, 0);
1824 if (root->fs_info->tree_root == root)
1825 btrfs_set_super_root_dir(root->fs_info->super_copy, objectid);
1827 ret = btrfs_insert_inode(trans, root, objectid, &inode_item);
1831 ret = btrfs_insert_inode_ref(trans, root, "..", 2, objectid, objectid, 0);
1835 btrfs_set_root_dirid(&root->root_item, objectid);
1842 * checks if a path is a block device node
1843 * Returns negative errno on failure, otherwise
1844 * returns 1 for blockdev, 0 for not-blockdev
1846 int is_block_device(const char *path)
1848 struct stat statbuf;
1850 if (stat(path, &statbuf) < 0)
1853 return !!S_ISBLK(statbuf.st_mode);
1857 * check if given path is a mount point
1858 * return 1 if yes. 0 if no. -1 for error
1860 int is_mount_point(const char *path)
1866 f = setmntent("/proc/self/mounts", "r");
1870 while ((mnt = getmntent(f)) != NULL) {
1871 if (strcmp(mnt->mnt_dir, path))
1880 static int is_reg_file(const char *path)
1882 struct stat statbuf;
1884 if (stat(path, &statbuf) < 0)
1886 return S_ISREG(statbuf.st_mode);
1890 * This function checks if the given input parameter is
1892 * return <0 : some error in the given input
1893 * return BTRFS_ARG_UNKNOWN: unknown input
1894 * return BTRFS_ARG_UUID: given input is uuid
1895 * return BTRFS_ARG_MNTPOINT: given input is path
1896 * return BTRFS_ARG_REG: given input is regular file
1897 * return BTRFS_ARG_BLKDEV: given input is block device
1899 int check_arg_type(const char *input)
1902 char path[PATH_MAX];
1907 if (realpath(input, path)) {
1908 if (is_block_device(path) == 1)
1909 return BTRFS_ARG_BLKDEV;
1911 if (is_mount_point(path) == 1)
1912 return BTRFS_ARG_MNTPOINT;
1914 if (is_reg_file(path))
1915 return BTRFS_ARG_REG;
1917 return BTRFS_ARG_UNKNOWN;
1920 if (strlen(input) == (BTRFS_UUID_UNPARSED_SIZE - 1) &&
1921 !uuid_parse(input, uuid))
1922 return BTRFS_ARG_UUID;
1924 return BTRFS_ARG_UNKNOWN;
1928 * Find the mount point for a mounted device.
1929 * On success, returns 0 with mountpoint in *mp.
1930 * On failure, returns -errno (not mounted yields -EINVAL)
1931 * Is noisy on failures, expects to be given a mounted device.
1933 int get_btrfs_mount(const char *dev, char *mp, size_t mp_size)
1938 ret = is_block_device(dev);
1941 error("not a block device: %s", dev);
1944 error("cannot check %s: %s", dev, strerror(-ret));
1949 fd = open(dev, O_RDONLY);
1952 error("cannot open %s: %s", dev, strerror(errno));
1956 ret = check_mounted_where(fd, dev, mp, mp_size, NULL);
1959 } else { /* mounted, all good */
1969 * Given a pathname, return a filehandle to:
1970 * the original pathname or,
1971 * if the pathname is a mounted btrfs device, to its mountpoint.
1973 * On error, return -1, errno should be set.
1975 int open_path_or_dev_mnt(const char *path, DIR **dirstream, int verbose)
1980 if (is_block_device(path)) {
1981 ret = get_btrfs_mount(path, mp, sizeof(mp));
1983 /* not a mounted btrfs dev */
1984 error_on(verbose, "'%s' is not a mounted btrfs device",
1989 ret = open_file_or_dir(mp, dirstream);
1990 error_on(verbose && ret < 0, "can't access '%s': %s",
1991 path, strerror(errno));
1993 ret = btrfs_open_dir(path, dirstream, 1);
2000 * Do the following checks before calling open_file_or_dir():
2001 * 1: path is in a btrfs filesystem
2002 * 2: path is a directory
2004 int btrfs_open_dir(const char *path, DIR **dirstream, int verbose)
2010 if (statfs(path, &stfs) != 0) {
2011 error_on(verbose, "cannot access '%s': %s", path,
2016 if (stfs.f_type != BTRFS_SUPER_MAGIC) {
2017 error_on(verbose, "not a btrfs filesystem: %s", path);
2021 if (stat(path, &st) != 0) {
2022 error_on(verbose, "cannot access '%s': %s", path,
2027 if (!S_ISDIR(st.st_mode)) {
2028 error_on(verbose, "not a directory: %s", path);
2032 ret = open_file_or_dir(path, dirstream);
2034 error_on(verbose, "cannot access '%s': %s", path,
2041 /* checks if a device is a loop device */
2042 static int is_loop_device (const char* device) {
2043 struct stat statbuf;
2045 if(stat(device, &statbuf) < 0)
2048 return (S_ISBLK(statbuf.st_mode) &&
2049 MAJOR(statbuf.st_rdev) == LOOP_MAJOR);
2053 * Takes a loop device path (e.g. /dev/loop0) and returns
2054 * the associated file (e.g. /images/my_btrfs.img) using
2057 static int resolve_loop_device_with_loopdev(const char* loop_dev, char* loop_file)
2061 struct loop_info64 lo64;
2063 fd = open(loop_dev, O_RDONLY | O_NONBLOCK);
2066 ret = ioctl(fd, LOOP_GET_STATUS64, &lo64);
2072 memcpy(loop_file, lo64.lo_file_name, sizeof(lo64.lo_file_name));
2073 loop_file[sizeof(lo64.lo_file_name)] = 0;
2081 /* Takes a loop device path (e.g. /dev/loop0) and returns
2082 * the associated file (e.g. /images/my_btrfs.img) */
2083 static int resolve_loop_device(const char* loop_dev, char* loop_file,
2090 char real_loop_dev[PATH_MAX];
2092 if (!realpath(loop_dev, real_loop_dev))
2094 snprintf(p, PATH_MAX, "/sys/block/%s/loop/backing_file", strrchr(real_loop_dev, '/'));
2095 if (!(f = fopen(p, "r"))) {
2096 if (errno == ENOENT)
2098 * It's possibly a partitioned loop device, which is
2099 * resolvable with loopdev API.
2101 return resolve_loop_device_with_loopdev(loop_dev, loop_file);
2105 snprintf(fmt, 20, "%%%i[^\n]", max_len-1);
2106 ret = fscanf(f, fmt, loop_file);
2115 * Checks whether a and b are identical or device
2116 * files associated with the same block device
2118 static int is_same_blk_file(const char* a, const char* b)
2120 struct stat st_buf_a, st_buf_b;
2121 char real_a[PATH_MAX];
2122 char real_b[PATH_MAX];
2124 if (!realpath(a, real_a))
2125 strncpy_null(real_a, a);
2127 if (!realpath(b, real_b))
2128 strncpy_null(real_b, b);
2130 /* Identical path? */
2131 if (strcmp(real_a, real_b) == 0)
2134 if (stat(a, &st_buf_a) < 0 || stat(b, &st_buf_b) < 0) {
2135 if (errno == ENOENT)
2140 /* Same blockdevice? */
2141 if (S_ISBLK(st_buf_a.st_mode) && S_ISBLK(st_buf_b.st_mode) &&
2142 st_buf_a.st_rdev == st_buf_b.st_rdev) {
2147 if (st_buf_a.st_dev == st_buf_b.st_dev &&
2148 st_buf_a.st_ino == st_buf_b.st_ino) {
2155 /* checks if a and b are identical or device
2156 * files associated with the same block device or
2157 * if one file is a loop device that uses the other
2160 static int is_same_loop_file(const char* a, const char* b)
2162 char res_a[PATH_MAX];
2163 char res_b[PATH_MAX];
2164 const char* final_a = NULL;
2165 const char* final_b = NULL;
2168 /* Resolve a if it is a loop device */
2169 if((ret = is_loop_device(a)) < 0) {
2174 ret = resolve_loop_device(a, res_a, sizeof(res_a));
2185 /* Resolve b if it is a loop device */
2186 if ((ret = is_loop_device(b)) < 0) {
2191 ret = resolve_loop_device(b, res_b, sizeof(res_b));
2202 return is_same_blk_file(final_a, final_b);
2205 /* Checks if a file exists and is a block or regular file*/
2206 static int is_existing_blk_or_reg_file(const char* filename)
2210 if(stat(filename, &st_buf) < 0) {
2217 return (S_ISBLK(st_buf.st_mode) || S_ISREG(st_buf.st_mode));
2220 /* Checks if a file is used (directly or indirectly via a loop device)
2221 * by a device in fs_devices
2223 static int blk_file_in_dev_list(struct btrfs_fs_devices* fs_devices,
2227 struct list_head *head;
2228 struct list_head *cur;
2229 struct btrfs_device *device;
2231 head = &fs_devices->devices;
2232 list_for_each(cur, head) {
2233 device = list_entry(cur, struct btrfs_device, dev_list);
2235 if((ret = is_same_loop_file(device->name, file)))
2243 * Resolve a pathname to a device mapper node to /dev/mapper/<name>
2244 * Returns NULL on invalid input or malloc failure; Other failures
2245 * will be handled by the caller using the input pathame.
2247 char *canonicalize_dm_name(const char *ptname)
2251 char path[PATH_MAX], name[PATH_MAX], *res = NULL;
2253 if (!ptname || !*ptname)
2256 snprintf(path, sizeof(path), "/sys/block/%s/dm/name", ptname);
2257 if (!(f = fopen(path, "r")))
2260 /* read <name>\n from sysfs */
2261 if (fgets(name, sizeof(name), f) && (sz = strlen(name)) > 1) {
2262 name[sz - 1] = '\0';
2263 snprintf(path, sizeof(path), "/dev/mapper/%s", name);
2265 if (access(path, F_OK) == 0)
2273 * Resolve a pathname to a canonical device node, e.g. /dev/sda1 or
2274 * to a device mapper pathname.
2275 * Returns NULL on invalid input or malloc failure; Other failures
2276 * will be handled by the caller using the input pathame.
2278 char *canonicalize_path(const char *path)
2280 char *canonical, *p;
2282 if (!path || !*path)
2285 canonical = realpath(path, NULL);
2287 return strdup(path);
2288 p = strrchr(canonical, '/');
2289 if (p && strncmp(p, "/dm-", 4) == 0 && isdigit(*(p + 4))) {
2290 char *dm = canonicalize_dm_name(p + 1);
2301 * returns 1 if the device was mounted, < 0 on error or 0 if everything
2302 * is safe to continue.
2304 int check_mounted(const char* file)
2309 fd = open(file, O_RDONLY);
2311 error("mount check: cannot open %s: %s", file,
2316 ret = check_mounted_where(fd, file, NULL, 0, NULL);
2322 int check_mounted_where(int fd, const char *file, char *where, int size,
2323 struct btrfs_fs_devices **fs_dev_ret)
2328 struct btrfs_fs_devices *fs_devices_mnt = NULL;
2332 /* scan the initial device */
2333 ret = btrfs_scan_one_device(fd, file, &fs_devices_mnt,
2334 &total_devs, BTRFS_SUPER_INFO_OFFSET, SBREAD_DEFAULT);
2335 is_btrfs = (ret >= 0);
2337 /* scan other devices */
2338 if (is_btrfs && total_devs > 1) {
2339 ret = btrfs_scan_lblkid();
2344 /* iterate over the list of currently mounted filesystems */
2345 if ((f = setmntent ("/proc/self/mounts", "r")) == NULL)
2348 while ((mnt = getmntent (f)) != NULL) {
2350 if(strcmp(mnt->mnt_type, "btrfs") != 0)
2353 ret = blk_file_in_dev_list(fs_devices_mnt, mnt->mnt_fsname);
2355 /* ignore entries in the mount table that are not
2356 associated with a file*/
2357 if((ret = is_existing_blk_or_reg_file(mnt->mnt_fsname)) < 0)
2358 goto out_mntloop_err;
2362 ret = is_same_loop_file(file, mnt->mnt_fsname);
2366 goto out_mntloop_err;
2371 /* Did we find an entry in mnt table? */
2372 if (mnt && size && where) {
2373 strncpy(where, mnt->mnt_dir, size);
2377 *fs_dev_ret = fs_devices_mnt;
2379 ret = (mnt != NULL);
2387 struct pending_dir {
2388 struct list_head list;
2389 char name[PATH_MAX];
2392 int btrfs_register_one_device(const char *fname)
2394 struct btrfs_ioctl_vol_args args;
2398 fd = open("/dev/btrfs-control", O_RDWR);
2401 "failed to open /dev/btrfs-control, skipping device registration: %s",
2405 memset(&args, 0, sizeof(args));
2406 strncpy_null(args.name, fname);
2407 ret = ioctl(fd, BTRFS_IOC_SCAN_DEV, &args);
2409 error("device scan failed on '%s': %s", fname,
2418 * Register all devices in the fs_uuid list created in the user
2419 * space. Ensure btrfs_scan_lblkid() is called before this func.
2421 int btrfs_register_all_devices(void)
2425 struct btrfs_fs_devices *fs_devices;
2426 struct btrfs_device *device;
2427 struct list_head *all_uuids;
2429 all_uuids = btrfs_scanned_uuids();
2431 list_for_each_entry(fs_devices, all_uuids, list) {
2432 list_for_each_entry(device, &fs_devices->devices, dev_list) {
2434 err = btrfs_register_one_device(device->name);
2444 int btrfs_device_already_in_root(struct btrfs_root *root, int fd,
2447 struct btrfs_super_block *disk_super;
2451 buf = malloc(BTRFS_SUPER_INFO_SIZE);
2456 ret = pread(fd, buf, BTRFS_SUPER_INFO_SIZE, super_offset);
2457 if (ret != BTRFS_SUPER_INFO_SIZE)
2461 disk_super = (struct btrfs_super_block *)buf;
2463 * Accept devices from the same filesystem, allow partially created
2466 if (btrfs_super_magic(disk_super) != BTRFS_MAGIC &&
2467 btrfs_super_magic(disk_super) != BTRFS_MAGIC_PARTIAL)
2470 if (!memcmp(disk_super->fsid, root->fs_info->super_copy->fsid,
2480 * Note: this function uses a static per-thread buffer. Do not call this
2481 * function more than 10 times within one argument list!
2483 const char *pretty_size_mode(u64 size, unsigned mode)
2485 static __thread int ps_index = 0;
2486 static __thread char ps_array[10][32];
2489 ret = ps_array[ps_index];
2492 (void)pretty_size_snprintf(size, ret, 32, mode);
2497 static const char* unit_suffix_binary[] =
2498 { "B", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB"};
2499 static const char* unit_suffix_decimal[] =
2500 { "B", "kB", "MB", "GB", "TB", "PB", "EB"};
2502 int pretty_size_snprintf(u64 size, char *str, size_t str_size, unsigned unit_mode)
2508 const char** suffix = NULL;
2514 if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_RAW) {
2515 snprintf(str, str_size, "%llu", size);
2519 if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_BINARY) {
2522 suffix = unit_suffix_binary;
2523 } else if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_DECIMAL) {
2526 suffix = unit_suffix_decimal;
2531 fprintf(stderr, "INTERNAL ERROR: unknown unit base, mode %d\n",
2539 switch (unit_mode & UNITS_MODE_MASK) {
2540 case UNITS_TBYTES: base *= mult; num_divs++;
2541 case UNITS_GBYTES: base *= mult; num_divs++;
2542 case UNITS_MBYTES: base *= mult; num_divs++;
2543 case UNITS_KBYTES: num_divs++;
2550 while (size >= mult) {
2556 * If the value is smaller than base, we didn't do any
2557 * division, in that case, base should be 1, not original
2558 * base, or the unit will be wrong
2564 if (num_divs >= ARRAY_SIZE(unit_suffix_binary)) {
2566 printf("INTERNAL ERROR: unsupported unit suffix, index %d\n",
2571 fraction = (float)last_size / base;
2573 return snprintf(str, str_size, "%.2f%s", fraction, suffix[num_divs]);
2577 * __strncpy_null - strncpy with null termination
2578 * @dest: the target array
2579 * @src: the source string
2580 * @n: maximum bytes to copy (size of *dest)
2582 * Like strncpy, but ensures destination is null-terminated.
2584 * Copies the string pointed to by src, including the terminating null
2585 * byte ('\0'), to the buffer pointed to by dest, up to a maximum
2586 * of n bytes. Then ensure that dest is null-terminated.
2588 char *__strncpy_null(char *dest, const char *src, size_t n)
2590 strncpy(dest, src, n);
2597 * Checks to make sure that the label matches our requirements.
2599 0 if everything is safe and usable
2600 -1 if the label is too long
2602 static int check_label(const char *input)
2604 int len = strlen(input);
2606 if (len > BTRFS_LABEL_SIZE - 1) {
2607 error("label %s is too long (max %d)", input,
2608 BTRFS_LABEL_SIZE - 1);
2615 static int set_label_unmounted(const char *dev, const char *label)
2617 struct btrfs_trans_handle *trans;
2618 struct btrfs_root *root;
2621 ret = check_mounted(dev);
2623 error("checking mount status of %s failed: %d", dev, ret);
2627 error("device %s is mounted, use mount point", dev);
2631 /* Open the super_block at the default location
2632 * and as read-write.
2634 root = open_ctree(dev, 0, OPEN_CTREE_WRITES);
2635 if (!root) /* errors are printed by open_ctree() */
2638 trans = btrfs_start_transaction(root, 1);
2639 __strncpy_null(root->fs_info->super_copy->label, label, BTRFS_LABEL_SIZE - 1);
2641 btrfs_commit_transaction(trans, root);
2643 /* Now we close it since we are done. */
2648 static int set_label_mounted(const char *mount_path, const char *labelp)
2651 char label[BTRFS_LABEL_SIZE];
2653 fd = open(mount_path, O_RDONLY | O_NOATIME);
2655 error("unable to access %s: %s", mount_path, strerror(errno));
2659 memset(label, 0, sizeof(label));
2660 __strncpy_null(label, labelp, BTRFS_LABEL_SIZE - 1);
2661 if (ioctl(fd, BTRFS_IOC_SET_FSLABEL, label) < 0) {
2662 error("unable to set label of %s: %s", mount_path,
2672 int get_label_unmounted(const char *dev, char *label)
2674 struct btrfs_root *root;
2677 ret = check_mounted(dev);
2679 error("checking mount status of %s failed: %d", dev, ret);
2683 /* Open the super_block at the default location
2686 root = open_ctree(dev, 0, 0);
2690 __strncpy_null(label, root->fs_info->super_copy->label,
2691 BTRFS_LABEL_SIZE - 1);
2693 /* Now we close it since we are done. */
2699 * If a partition is mounted, try to get the filesystem label via its
2700 * mounted path rather than device. Return the corresponding error
2701 * the user specified the device path.
2703 int get_label_mounted(const char *mount_path, char *labelp)
2705 char label[BTRFS_LABEL_SIZE];
2709 fd = open(mount_path, O_RDONLY | O_NOATIME);
2711 error("unable to access %s: %s", mount_path, strerror(errno));
2715 memset(label, '\0', sizeof(label));
2716 ret = ioctl(fd, BTRFS_IOC_GET_FSLABEL, label);
2718 if (errno != ENOTTY)
2719 error("unable to get label of %s: %s", mount_path,
2726 __strncpy_null(labelp, label, BTRFS_LABEL_SIZE - 1);
2731 int get_label(const char *btrfs_dev, char *label)
2735 ret = is_existing_blk_or_reg_file(btrfs_dev);
2737 ret = get_label_mounted(btrfs_dev, label);
2739 ret = get_label_unmounted(btrfs_dev, label);
2744 int set_label(const char *btrfs_dev, const char *label)
2748 if (check_label(label))
2751 ret = is_existing_blk_or_reg_file(btrfs_dev);
2753 ret = set_label_mounted(btrfs_dev, label);
2755 ret = set_label_unmounted(btrfs_dev, label);
2761 * A not-so-good version fls64. No fascinating optimization since
2762 * no one except parse_size use it
2764 static int fls64(u64 x)
2768 for (i = 0; i <64; i++)
2769 if (x << i & (1ULL << 63))
2774 u64 parse_size(char *s)
2782 error("size value is empty");
2786 error("size value '%s' is less equal than 0", s);
2789 ret = strtoull(s, &endptr, 10);
2791 error("size value '%s' is invalid", s);
2794 if (endptr[0] && endptr[1]) {
2795 error("illegal suffix contains character '%c' in wrong position",
2800 * strtoll returns LLONG_MAX when overflow, if this happens,
2801 * need to call strtoull to get the real size
2803 if (errno == ERANGE && ret == ULLONG_MAX) {
2804 error("size value '%s' is too large for u64", s);
2808 c = tolower(endptr[0]);
2831 error("unknown size descriptor '%c'", c);
2835 /* Check whether ret * mult overflow */
2836 if (fls64(ret) + fls64(mult) - 1 > 64) {
2837 error("size value '%s' is too large for u64", s);
2844 u64 parse_qgroupid(const char *p)
2846 char *s = strchr(p, '/');
2847 const char *ptr_src_end = p + strlen(p);
2848 char *ptr_parse_end = NULL;
2857 /* Numeric format like '0/257' is the primary case */
2859 id = strtoull(p, &ptr_parse_end, 10);
2860 if (ptr_parse_end != ptr_src_end)
2864 level = strtoull(p, &ptr_parse_end, 10);
2865 if (ptr_parse_end != s)
2868 id = strtoull(s + 1, &ptr_parse_end, 10);
2869 if (ptr_parse_end != ptr_src_end)
2872 return (level << BTRFS_QGROUP_LEVEL_SHIFT) | id;
2875 /* Path format like subv at 'my_subvol' is the fallback case */
2876 ret = test_issubvolume(p);
2877 if (ret < 0 || !ret)
2879 fd = open(p, O_RDONLY);
2882 ret = lookup_ino_rootid(fd, &id);
2884 error("failed to lookup root id: %s", strerror(-ret));
2891 error("invalid qgroupid or subvolume path: %s", p);
2895 int open_file_or_dir3(const char *fname, DIR **dirstream, int open_flags)
2901 ret = stat(fname, &st);
2905 if (S_ISDIR(st.st_mode)) {
2906 *dirstream = opendir(fname);
2909 fd = dirfd(*dirstream);
2910 } else if (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode)) {
2911 fd = open(fname, open_flags);
2914 * we set this on purpose, in case the caller output
2915 * strerror(errno) as success
2923 closedir(*dirstream);
2930 int open_file_or_dir(const char *fname, DIR **dirstream)
2932 return open_file_or_dir3(fname, dirstream, O_RDWR);
2935 void close_file_or_dir(int fd, DIR *dirstream)
2938 closedir(dirstream);
2943 int get_device_info(int fd, u64 devid,
2944 struct btrfs_ioctl_dev_info_args *di_args)
2948 di_args->devid = devid;
2949 memset(&di_args->uuid, '\0', sizeof(di_args->uuid));
2951 ret = ioctl(fd, BTRFS_IOC_DEV_INFO, di_args);
2952 return ret < 0 ? -errno : 0;
2955 static u64 find_max_device_id(struct btrfs_ioctl_search_args *search_args,
2958 struct btrfs_dev_item *dev_item;
2959 char *buf = search_args->buf;
2961 buf += (nr_items - 1) * (sizeof(struct btrfs_ioctl_search_header)
2962 + sizeof(struct btrfs_dev_item));
2963 buf += sizeof(struct btrfs_ioctl_search_header);
2965 dev_item = (struct btrfs_dev_item *)buf;
2967 return btrfs_stack_device_id(dev_item);
2970 static int search_chunk_tree_for_fs_info(int fd,
2971 struct btrfs_ioctl_fs_info_args *fi_args)
2975 u64 start_devid = 1;
2976 struct btrfs_ioctl_search_args search_args;
2977 struct btrfs_ioctl_search_key *search_key = &search_args.key;
2979 fi_args->num_devices = 0;
2981 max_items = BTRFS_SEARCH_ARGS_BUFSIZE
2982 / (sizeof(struct btrfs_ioctl_search_header)
2983 + sizeof(struct btrfs_dev_item));
2985 search_key->tree_id = BTRFS_CHUNK_TREE_OBJECTID;
2986 search_key->min_objectid = BTRFS_DEV_ITEMS_OBJECTID;
2987 search_key->max_objectid = BTRFS_DEV_ITEMS_OBJECTID;
2988 search_key->min_type = BTRFS_DEV_ITEM_KEY;
2989 search_key->max_type = BTRFS_DEV_ITEM_KEY;
2990 search_key->min_transid = 0;
2991 search_key->max_transid = (u64)-1;
2992 search_key->nr_items = max_items;
2993 search_key->max_offset = (u64)-1;
2996 search_key->min_offset = start_devid;
2998 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &search_args);
3002 fi_args->num_devices += (u64)search_key->nr_items;
3004 if (search_key->nr_items == max_items) {
3005 start_devid = find_max_device_id(&search_args,
3006 search_key->nr_items) + 1;
3010 /* get the lastest max_id to stay consistent with the num_devices */
3011 if (search_key->nr_items == 0)
3013 * last tree_search returns an empty buf, use the devid of
3014 * the last dev_item of the previous tree_search
3016 fi_args->max_id = start_devid - 1;
3018 fi_args->max_id = find_max_device_id(&search_args,
3019 search_key->nr_items);
3025 * For a given path, fill in the ioctl fs_ and info_ args.
3026 * If the path is a btrfs mountpoint, fill info for all devices.
3027 * If the path is a btrfs device, fill in only that device.
3029 * The path provided must be either on a mounted btrfs fs,
3030 * or be a mounted btrfs device.
3032 * Returns 0 on success, or a negative errno.
3034 int get_fs_info(char *path, struct btrfs_ioctl_fs_info_args *fi_args,
3035 struct btrfs_ioctl_dev_info_args **di_ret)
3042 struct btrfs_fs_devices *fs_devices_mnt = NULL;
3043 struct btrfs_ioctl_dev_info_args *di_args;
3044 struct btrfs_ioctl_dev_info_args tmp;
3046 DIR *dirstream = NULL;
3048 memset(fi_args, 0, sizeof(*fi_args));
3050 if (is_block_device(path) == 1) {
3051 struct btrfs_super_block *disk_super;
3052 char buf[BTRFS_SUPER_INFO_SIZE];
3055 /* Ensure it's mounted, then set path to the mountpoint */
3056 fd = open(path, O_RDONLY);
3059 error("cannot open %s: %s", path, strerror(errno));
3062 ret = check_mounted_where(fd, path, mp, sizeof(mp),
3071 /* Only fill in this one device */
3072 fi_args->num_devices = 1;
3074 disk_super = (struct btrfs_super_block *)buf;
3075 ret = btrfs_read_dev_super(fd, disk_super,
3076 BTRFS_SUPER_INFO_OFFSET, 0);
3081 devid = btrfs_stack_device_id(&disk_super->dev_item);
3083 fi_args->max_id = devid;
3086 memcpy(fi_args->fsid, fs_devices_mnt->fsid, BTRFS_FSID_SIZE);
3090 /* at this point path must not be for a block device */
3091 fd = open_file_or_dir(path, &dirstream);
3097 /* fill in fi_args if not just a single device */
3098 if (fi_args->num_devices != 1) {
3099 ret = ioctl(fd, BTRFS_IOC_FS_INFO, fi_args);
3106 * The fs_args->num_devices does not include seed devices
3108 ret = search_chunk_tree_for_fs_info(fd, fi_args);
3113 * search_chunk_tree_for_fs_info() will lacks the devid 0
3114 * so manual probe for it here.
3116 ret = get_device_info(fd, 0, &tmp);
3118 fi_args->num_devices++;
3126 if (!fi_args->num_devices)
3129 di_args = *di_ret = malloc((fi_args->num_devices) * sizeof(*di_args));
3136 memcpy(di_args, &tmp, sizeof(tmp));
3137 for (; i <= fi_args->max_id; ++i) {
3138 ret = get_device_info(fd, i, &di_args[ndevs]);
3147 * only when the only dev we wanted to find is not there then
3148 * let any error be returned
3150 if (fi_args->num_devices != 1) {
3156 close_file_or_dir(fd, dirstream);
3160 #define isoctal(c) (((c) & ~7) == '0')
3162 static inline void translate(char *f, char *t)
3164 while (*f != '\0') {
3166 isoctal(f[1]) && isoctal(f[2]) && isoctal(f[3])) {
3167 *t++ = 64*(f[1] & 7) + 8*(f[2] & 7) + (f[3] & 7);
3177 * Checks if the swap device.
3178 * Returns 1 if swap device, < 0 on error or 0 if not swap device.
3180 static int is_swap_device(const char *file)
3191 if (stat(file, &st_buf) < 0)
3193 if (S_ISBLK(st_buf.st_mode))
3194 dev = st_buf.st_rdev;
3195 else if (S_ISREG(st_buf.st_mode)) {
3196 dev = st_buf.st_dev;
3197 ino = st_buf.st_ino;
3201 if ((f = fopen("/proc/swaps", "r")) == NULL)
3204 /* skip the first line */
3205 if (fgets(tmp, sizeof(tmp), f) == NULL)
3208 while (fgets(tmp, sizeof(tmp), f) != NULL) {
3209 if ((cp = strchr(tmp, ' ')) != NULL)
3211 if ((cp = strchr(tmp, '\t')) != NULL)
3213 translate(tmp, buf);
3214 if (stat(buf, &st_buf) != 0)
3216 if (S_ISBLK(st_buf.st_mode)) {
3217 if (dev == st_buf.st_rdev) {
3221 } else if (S_ISREG(st_buf.st_mode)) {
3222 if (dev == st_buf.st_dev && ino == st_buf.st_ino) {
3236 * Check for existing filesystem or partition table on device.
3238 * 1 for existing fs or partition
3239 * 0 for nothing found
3240 * -1 for internal error
3242 static int check_overwrite(const char *device)
3245 blkid_probe pr = NULL;
3249 if (!device || !*device)
3252 ret = -1; /* will reset on success of all setup calls */
3254 pr = blkid_new_probe_from_filename(device);
3258 size = blkid_probe_get_size(pr);
3262 /* nothing to overwrite on a 0-length device */
3268 ret = blkid_probe_enable_partitions(pr, 1);
3272 ret = blkid_do_fullprobe(pr);
3277 * Blkid returns 1 for nothing found and 0 when it finds a signature,
3278 * but we want the exact opposite, so reverse the return value here.
3280 * In addition print some useful diagnostics about what actually is
3288 if (!blkid_probe_lookup_value(pr, "TYPE", &type, NULL)) {
3290 "%s appears to contain an existing "
3291 "filesystem (%s).\n", device, type);
3292 } else if (!blkid_probe_lookup_value(pr, "PTTYPE", &type, NULL)) {
3294 "%s appears to contain a partition "
3295 "table (%s).\n", device, type);
3298 "%s appears to contain something weird "
3299 "according to blkid\n", device);
3305 blkid_free_probe(pr);
3308 "probe of %s failed, cannot detect "
3309 "existing filesystem.\n", device);
3313 static int group_profile_devs_min(u64 flag)
3315 switch (flag & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
3316 case 0: /* single */
3317 case BTRFS_BLOCK_GROUP_DUP:
3319 case BTRFS_BLOCK_GROUP_RAID0:
3320 case BTRFS_BLOCK_GROUP_RAID1:
3321 case BTRFS_BLOCK_GROUP_RAID5:
3323 case BTRFS_BLOCK_GROUP_RAID6:
3325 case BTRFS_BLOCK_GROUP_RAID10:
3332 int test_num_disk_vs_raid(u64 metadata_profile, u64 data_profile,
3333 u64 dev_cnt, int mixed, int ssd)
3336 u64 profile = metadata_profile | data_profile;
3341 allowed |= BTRFS_BLOCK_GROUP_RAID10;
3343 allowed |= BTRFS_BLOCK_GROUP_RAID6;
3345 allowed |= BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1 |
3346 BTRFS_BLOCK_GROUP_RAID5;
3348 allowed |= BTRFS_BLOCK_GROUP_DUP;
3351 if (dev_cnt > 1 && profile & BTRFS_BLOCK_GROUP_DUP) {
3352 warning("DUP is not recommended on filesystem with multiple devices");
3354 if (metadata_profile & ~allowed) {
3356 "ERROR: unable to create FS with metadata profile %s "
3357 "(have %llu devices but %d devices are required)\n",
3358 btrfs_group_profile_str(metadata_profile), dev_cnt,
3359 group_profile_devs_min(metadata_profile));
3362 if (data_profile & ~allowed) {
3364 "ERROR: unable to create FS with data profile %s "
3365 "(have %llu devices but %d devices are required)\n",
3366 btrfs_group_profile_str(data_profile), dev_cnt,
3367 group_profile_devs_min(data_profile));
3371 if (dev_cnt == 3 && profile & BTRFS_BLOCK_GROUP_RAID6) {
3372 warning("RAID6 is not recommended on filesystem with 3 devices only");
3374 if (dev_cnt == 2 && profile & BTRFS_BLOCK_GROUP_RAID5) {
3375 warning("RAID5 is not recommended on filesystem with 2 devices only");
3377 warning_on(!mixed && (data_profile & BTRFS_BLOCK_GROUP_DUP) && ssd,
3378 "DUP may not actually lead to 2 copies on the device, see manual page");
3383 int group_profile_max_safe_loss(u64 flags)
3385 switch (flags & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
3386 case 0: /* single */
3387 case BTRFS_BLOCK_GROUP_DUP:
3388 case BTRFS_BLOCK_GROUP_RAID0:
3390 case BTRFS_BLOCK_GROUP_RAID1:
3391 case BTRFS_BLOCK_GROUP_RAID5:
3392 case BTRFS_BLOCK_GROUP_RAID10:
3394 case BTRFS_BLOCK_GROUP_RAID6:
3402 * Check if a device is suitable for btrfs
3404 * 1: something is wrong, an error is printed
3407 int test_dev_for_mkfs(const char *file, int force_overwrite)
3412 ret = is_swap_device(file);
3414 error("checking status of %s: %s", file, strerror(-ret));
3418 error("%s is a swap device", file);
3421 if (!force_overwrite) {
3422 if (check_overwrite(file)) {
3423 error("use the -f option to force overwrite of %s",
3428 ret = check_mounted(file);
3430 error("cannot check mount status of %s: %s", file,
3435 error("%s is mounted", file);
3438 /* check if the device is busy */
3439 fd = open(file, O_RDWR|O_EXCL);
3441 error("unable to open %s: %s", file, strerror(errno));
3444 if (fstat(fd, &st)) {
3445 error("unable to stat %s: %s", file, strerror(errno));
3449 if (!S_ISBLK(st.st_mode)) {
3450 error("%s is not a block device", file);
3458 int btrfs_scan_lblkid(void)
3463 struct btrfs_fs_devices *tmp_devices;
3464 blkid_dev_iterate iter = NULL;
3465 blkid_dev dev = NULL;
3466 blkid_cache cache = NULL;
3467 char path[PATH_MAX];
3469 if (btrfs_scan_done)
3472 if (blkid_get_cache(&cache, NULL) < 0) {
3473 error("blkid cache get failed");
3476 blkid_probe_all(cache);
3477 iter = blkid_dev_iterate_begin(cache);
3478 blkid_dev_set_search(iter, "TYPE", "btrfs");
3479 while (blkid_dev_next(iter, &dev) == 0) {
3480 dev = blkid_verify(cache, dev);
3483 /* if we are here its definitely a btrfs disk*/
3484 strncpy_null(path, blkid_dev_devname(dev));
3486 fd = open(path, O_RDONLY);
3488 error("cannot open %s: %s", path, strerror(errno));
3491 ret = btrfs_scan_one_device(fd, path, &tmp_devices,
3492 &num_devices, BTRFS_SUPER_INFO_OFFSET,
3495 error("cannot scan %s: %s", path, strerror(-ret));
3502 blkid_dev_iterate_end(iter);
3503 blkid_put_cache(cache);
3505 btrfs_scan_done = 1;
3510 int is_vol_small(const char *file)
3517 fd = open(file, O_RDONLY);
3520 if (fstat(fd, &st) < 0) {
3525 size = btrfs_device_size(fd, &st);
3530 if (size < BTRFS_MKFS_SMALL_VOLUME_SIZE) {
3540 * This reads a line from the stdin and only returns non-zero if the
3541 * first whitespace delimited token is a case insensitive match with yes
3544 int ask_user(const char *question)
3546 char buf[30] = {0,};
3547 char *saveptr = NULL;
3550 printf("%s [y/N]: ", question);
3552 return fgets(buf, sizeof(buf) - 1, stdin) &&
3553 (answer = strtok_r(buf, " \t\n\r", &saveptr)) &&
3554 (!strcasecmp(answer, "yes") || !strcasecmp(answer, "y"));
3559 * - file or directory return the containing tree root id
3560 * - subvolume return its own tree id
3561 * - BTRFS_EMPTY_SUBVOL_DIR_OBJECTID (directory with ino == 2) the result is
3562 * undefined and function returns -1
3564 int lookup_ino_rootid(int fd, u64 *rootid)
3566 struct btrfs_ioctl_ino_lookup_args args;
3569 memset(&args, 0, sizeof(args));
3571 args.objectid = BTRFS_FIRST_FREE_OBJECTID;
3573 ret = ioctl(fd, BTRFS_IOC_INO_LOOKUP, &args);
3577 *rootid = args.treeid;
3583 * return 0 if a btrfs mount point is found
3584 * return 1 if a mount point is found but not btrfs
3585 * return <0 if something goes wrong
3587 int find_mount_root(const char *path, char **mount_root)
3595 int longest_matchlen = 0;
3596 char *longest_match = NULL;
3598 fd = open(path, O_RDONLY | O_NOATIME);
3603 mnttab = setmntent("/proc/self/mounts", "r");
3607 while ((ent = getmntent(mnttab))) {
3608 len = strlen(ent->mnt_dir);
3609 if (strncmp(ent->mnt_dir, path, len) == 0) {
3610 /* match found and use the latest match */
3611 if (longest_matchlen <= len) {
3612 free(longest_match);
3613 longest_matchlen = len;
3614 longest_match = strdup(ent->mnt_dir);
3615 not_btrfs = strcmp(ent->mnt_type, "btrfs");
3624 free(longest_match);
3629 *mount_root = realpath(longest_match, NULL);
3633 free(longest_match);
3637 int test_minimum_size(const char *file, u32 nodesize)
3640 struct stat statbuf;
3642 fd = open(file, O_RDONLY);
3645 if (stat(file, &statbuf) < 0) {
3649 if (btrfs_device_size(fd, &statbuf) < btrfs_min_dev_size(nodesize)) {
3659 * Test if path is a directory
3661 * 0 - path exists but it is not a directory
3662 * 1 - path exists and it is a directory
3665 int test_isdir(const char *path)
3670 ret = stat(path, &st);
3674 return !!S_ISDIR(st.st_mode);
3677 void units_set_mode(unsigned *units, unsigned mode)
3679 unsigned base = *units & UNITS_MODE_MASK;
3681 *units = base | mode;
3684 void units_set_base(unsigned *units, unsigned base)
3686 unsigned mode = *units & ~UNITS_MODE_MASK;
3688 *units = base | mode;
3691 int find_next_key(struct btrfs_path *path, struct btrfs_key *key)
3695 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
3696 if (!path->nodes[level])
3698 if (path->slots[level] + 1 >=
3699 btrfs_header_nritems(path->nodes[level]))
3702 btrfs_item_key_to_cpu(path->nodes[level], key,
3703 path->slots[level] + 1);
3705 btrfs_node_key_to_cpu(path->nodes[level], key,
3706 path->slots[level] + 1);
3712 const char* btrfs_group_type_str(u64 flag)
3714 u64 mask = BTRFS_BLOCK_GROUP_TYPE_MASK |
3715 BTRFS_SPACE_INFO_GLOBAL_RSV;
3717 switch (flag & mask) {
3718 case BTRFS_BLOCK_GROUP_DATA:
3720 case BTRFS_BLOCK_GROUP_SYSTEM:
3722 case BTRFS_BLOCK_GROUP_METADATA:
3724 case BTRFS_BLOCK_GROUP_DATA|BTRFS_BLOCK_GROUP_METADATA:
3725 return "Data+Metadata";
3726 case BTRFS_SPACE_INFO_GLOBAL_RSV:
3727 return "GlobalReserve";
3733 const char* btrfs_group_profile_str(u64 flag)
3735 switch (flag & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
3738 case BTRFS_BLOCK_GROUP_RAID0:
3740 case BTRFS_BLOCK_GROUP_RAID1:
3742 case BTRFS_BLOCK_GROUP_RAID5:
3744 case BTRFS_BLOCK_GROUP_RAID6:
3746 case BTRFS_BLOCK_GROUP_DUP:
3748 case BTRFS_BLOCK_GROUP_RAID10:
3755 u64 disk_size(const char *path)
3759 if (statfs(path, &sfs) < 0)
3762 return sfs.f_bsize * sfs.f_blocks;
3765 u64 get_partition_size(const char *dev)
3768 int fd = open(dev, O_RDONLY);
3772 if (ioctl(fd, BLKGETSIZE64, &result) < 0) {
3781 int btrfs_tree_search2_ioctl_supported(int fd)
3783 struct btrfs_ioctl_search_args_v2 *args2;
3784 struct btrfs_ioctl_search_key *sk;
3785 int args2_size = 1024;
3786 char args2_buf[args2_size];
3788 static int v2_supported = -1;
3790 if (v2_supported != -1)
3791 return v2_supported;
3793 args2 = (struct btrfs_ioctl_search_args_v2 *)args2_buf;
3797 * Search for the extent tree item in the root tree.
3799 sk->tree_id = BTRFS_ROOT_TREE_OBJECTID;
3800 sk->min_objectid = BTRFS_EXTENT_TREE_OBJECTID;
3801 sk->max_objectid = BTRFS_EXTENT_TREE_OBJECTID;
3802 sk->min_type = BTRFS_ROOT_ITEM_KEY;
3803 sk->max_type = BTRFS_ROOT_ITEM_KEY;
3805 sk->max_offset = (u64)-1;
3806 sk->min_transid = 0;
3807 sk->max_transid = (u64)-1;
3809 args2->buf_size = args2_size - sizeof(struct btrfs_ioctl_search_args_v2);
3810 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH_V2, args2);
3811 if (ret == -EOPNOTSUPP)
3818 return v2_supported;
3821 int btrfs_check_nodesize(u32 nodesize, u32 sectorsize, u64 features)
3823 if (nodesize < sectorsize) {
3824 error("illegal nodesize %u (smaller than %u)",
3825 nodesize, sectorsize);
3827 } else if (nodesize > BTRFS_MAX_METADATA_BLOCKSIZE) {
3828 error("illegal nodesize %u (larger than %u)",
3829 nodesize, BTRFS_MAX_METADATA_BLOCKSIZE);
3831 } else if (nodesize & (sectorsize - 1)) {
3832 error("illegal nodesize %u (not aligned to %u)",
3833 nodesize, sectorsize);
3835 } else if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS &&
3836 nodesize != sectorsize) {
3837 error("illegal nodesize %u (not equal to %u for mixed block group)",
3838 nodesize, sectorsize);
3845 * Copy a path argument from SRC to DEST and check the SRC length if it's at
3846 * most PATH_MAX and fits into DEST. DESTLEN is supposed to be exact size of
3848 * The destination buffer is zero terminated.
3849 * Return < 0 for error, 0 otherwise.
3851 int arg_copy_path(char *dest, const char *src, int destlen)
3853 size_t len = strlen(src);
3855 if (len >= PATH_MAX || len >= destlen)
3856 return -ENAMETOOLONG;
3858 __strncpy_null(dest, src, destlen);
3863 unsigned int get_unit_mode_from_arg(int *argc, char *argv[], int df_mode)
3865 unsigned int unit_mode = UNITS_DEFAULT;
3869 for (arg_i = 0; arg_i < *argc; arg_i++) {
3870 if (!strcmp(argv[arg_i], "--"))
3873 if (!strcmp(argv[arg_i], "--raw")) {
3874 unit_mode = UNITS_RAW;
3878 if (!strcmp(argv[arg_i], "--human-readable")) {
3879 unit_mode = UNITS_HUMAN_BINARY;
3884 if (!strcmp(argv[arg_i], "--iec")) {
3885 units_set_mode(&unit_mode, UNITS_BINARY);
3889 if (!strcmp(argv[arg_i], "--si")) {
3890 units_set_mode(&unit_mode, UNITS_DECIMAL);
3895 if (!strcmp(argv[arg_i], "--kbytes")) {
3896 units_set_base(&unit_mode, UNITS_KBYTES);
3900 if (!strcmp(argv[arg_i], "--mbytes")) {
3901 units_set_base(&unit_mode, UNITS_MBYTES);
3905 if (!strcmp(argv[arg_i], "--gbytes")) {
3906 units_set_base(&unit_mode, UNITS_GBYTES);
3910 if (!strcmp(argv[arg_i], "--tbytes")) {
3911 units_set_base(&unit_mode, UNITS_TBYTES);
3919 if (!strcmp(argv[arg_i], "-b")) {
3920 unit_mode = UNITS_RAW;
3924 if (!strcmp(argv[arg_i], "-h")) {
3925 unit_mode = UNITS_HUMAN_BINARY;
3929 if (!strcmp(argv[arg_i], "-H")) {
3930 unit_mode = UNITS_HUMAN_DECIMAL;
3934 if (!strcmp(argv[arg_i], "-k")) {
3935 units_set_base(&unit_mode, UNITS_KBYTES);
3939 if (!strcmp(argv[arg_i], "-m")) {
3940 units_set_base(&unit_mode, UNITS_MBYTES);
3944 if (!strcmp(argv[arg_i], "-g")) {
3945 units_set_base(&unit_mode, UNITS_GBYTES);
3949 if (!strcmp(argv[arg_i], "-t")) {
3950 units_set_base(&unit_mode, UNITS_TBYTES);
3956 for (arg_i = 0, arg_end = 0; arg_i < *argc; arg_i++) {
3959 argv[arg_end] = argv[arg_i];
3968 int string_is_numerical(const char *str)
3970 if (!(*str >= '0' && *str <= '9'))
3972 while (*str >= '0' && *str <= '9')
3980 * Preprocess @argv with getopt_long to reorder options and consume the "--"
3982 * Unknown short and long options are reported, optionally the @usage is printed
3985 void clean_args_no_options(int argc, char *argv[], const char * const *usagestr)
3987 static const struct option long_options[] = {
3992 int c = getopt_long(argc, argv, "", long_options, NULL);
4006 * Same as clean_args_no_options but pass through arguments that could look
4007 * like short options. Eg. reisze which takes a negative resize argument like
4010 * This accepts only two forms:
4011 * - "-- option1 option2 ..."
4012 * - "option1 option2 ..."
4014 void clean_args_no_options_relaxed(int argc, char *argv[], const char * const *usagestr)
4019 if (strcmp(argv[1], "--") == 0)
4023 /* Subvolume helper functions */
4025 * test if name is a correct subvolume name
4026 * this function return
4027 * 0-> name is not a correct subvolume name
4028 * 1-> name is a correct subvolume name
4030 int test_issubvolname(const char *name)
4032 return name[0] != '\0' && !strchr(name, '/') &&
4033 strcmp(name, ".") && strcmp(name, "..");
4037 * Test if path is a subvolume
4039 * 0 - path exists but it is not a subvolume
4040 * 1 - path exists and it is a subvolume
4043 int test_issubvolume(const char *path)
4049 res = stat(path, &st);
4053 if (st.st_ino != BTRFS_FIRST_FREE_OBJECTID || !S_ISDIR(st.st_mode))
4056 res = statfs(path, &stfs);
4060 return (int)stfs.f_type == BTRFS_SUPER_MAGIC;
4063 const char *subvol_strip_mountpoint(const char *mnt, const char *full_path)
4065 int len = strlen(mnt);
4069 if (mnt[len - 1] != '/')
4072 return full_path + len;
4079 * 1: Error; and error info printed to the terminal. Fixme.
4080 * 2: If the fullpath is root tree instead of subvol tree
4082 int get_subvol_info(const char *fullpath, struct root_info *get_ri)
4089 const char *svpath = NULL;
4090 DIR *dirstream1 = NULL;
4091 DIR *dirstream2 = NULL;
4093 ret = test_issubvolume(fullpath);
4097 error("not a subvolume: %s", fullpath);
4101 ret = find_mount_root(fullpath, &mnt);
4105 error("%s doesn't belong to btrfs mount point", fullpath);
4109 svpath = subvol_strip_mountpoint(mnt, fullpath);
4111 fd = btrfs_open_dir(fullpath, &dirstream1, 1);
4115 ret = btrfs_list_get_path_rootid(fd, &sv_id);
4117 error("can't get rootid for '%s'", fullpath);
4121 mntfd = btrfs_open_dir(mnt, &dirstream2, 1);
4125 if (sv_id == BTRFS_FS_TREE_OBJECTID) {
4128 * So that caller may decide if thats an error or just fine.
4133 memset(get_ri, 0, sizeof(*get_ri));
4134 get_ri->root_id = sv_id;
4136 ret = btrfs_get_subvol(mntfd, get_ri);
4138 error("can't find '%s': %d", svpath, ret);
4141 close_file_or_dir(mntfd, dirstream2);
4142 close_file_or_dir(fd, dirstream1);
4148 void init_rand_seed(u64 seed)
4152 /* only use the last 48 bits */
4153 for (i = 0; i < 3; i++) {
4154 rand_seed[i] = (unsigned short)(seed ^ (unsigned short)(-1));
4157 rand_seed_initlized = 1;
4160 static void __init_seed(void)
4166 if(rand_seed_initlized)
4168 /* Use urandom as primary seed source. */
4169 fd = open("/dev/urandom", O_RDONLY);
4171 ret = read(fd, rand_seed, sizeof(rand_seed));
4173 if (ret < sizeof(rand_seed))
4177 /* Use time and pid as fallback seed */
4178 warning("failed to read /dev/urandom, use time and pid as random seed");
4179 gettimeofday(&tv, 0);
4180 rand_seed[0] = getpid() ^ (tv.tv_sec & 0xFFFF);
4181 rand_seed[1] = getppid() ^ (tv.tv_usec & 0xFFFF);
4182 rand_seed[2] = (tv.tv_sec ^ tv.tv_usec) >> 16;
4184 rand_seed_initlized = 1;
4191 * Don't use nrand48, its range is [0,2^31) The highest bit will alwasy
4192 * be 0. Use jrand48 to include the highest bit.
4194 return (u32)jrand48(rand_seed);
4197 unsigned int rand_range(unsigned int upper)
4201 * Use the full 48bits to mod, which would be more uniformly
4204 return (unsigned int)(jrand48(rand_seed) % upper);