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 <sys/sysinfo.h>
28 #include <uuid/uuid.h>
33 #include <linux/loop.h>
34 #include <linux/major.h>
35 #include <linux/kdev_t.h>
37 #include <blkid/blkid.h>
39 #include <sys/statfs.h>
40 #include <linux/magic.h>
43 #include "kerncompat.h"
44 #include "radix-tree.h"
47 #include "transaction.h"
53 #include "mkfs/common.h"
56 #define BLKDISCARD _IO(0x12,119)
59 static int btrfs_scan_done = 0;
61 static int rand_seed_initlized = 0;
62 static unsigned short rand_seed[3];
64 struct btrfs_config bconf;
67 * Discard the given range in one go
69 static int discard_range(int fd, u64 start, u64 len)
71 u64 range[2] = { start, len };
73 if (ioctl(fd, BLKDISCARD, &range) < 0)
79 * Discard blocks in the given range in 1G chunks, the process is interruptible
81 static int discard_blocks(int fd, u64 start, u64 len)
85 u64 chunk_size = min_t(u64, len, SZ_1G);
88 ret = discard_range(fd, start, chunk_size);
98 int test_uuid_unique(char *fs_uuid)
101 blkid_dev_iterate iter = NULL;
102 blkid_dev dev = NULL;
103 blkid_cache cache = NULL;
105 if (blkid_get_cache(&cache, NULL) < 0) {
106 printf("ERROR: lblkid cache get failed\n");
109 blkid_probe_all(cache);
110 iter = blkid_dev_iterate_begin(cache);
111 blkid_dev_set_search(iter, "UUID", fs_uuid);
113 while (blkid_dev_next(iter, &dev) == 0) {
114 dev = blkid_verify(cache, dev);
121 blkid_dev_iterate_end(iter);
122 blkid_put_cache(cache);
127 u64 btrfs_device_size(int fd, struct stat *st)
130 if (S_ISREG(st->st_mode)) {
133 if (!S_ISBLK(st->st_mode)) {
136 if (ioctl(fd, BLKGETSIZE64, &size) >= 0) {
142 static int zero_blocks(int fd, off_t start, size_t len)
144 char *buf = malloc(len);
151 written = pwrite(fd, buf, len, start);
158 #define ZERO_DEV_BYTES SZ_2M
160 /* don't write outside the device by clamping the region to the device size */
161 static int zero_dev_clamped(int fd, off_t start, ssize_t len, u64 dev_size)
163 off_t end = max(start, start + len);
166 /* and don't overwrite the disk labels on sparc */
167 start = max(start, 1024);
168 end = max(end, 1024);
171 start = min_t(u64, start, dev_size);
172 end = min_t(u64, end, dev_size);
174 return zero_blocks(fd, start, end - start);
177 int btrfs_add_to_fsid(struct btrfs_trans_handle *trans,
178 struct btrfs_root *root, int fd, const char *path,
179 u64 device_total_bytes, u32 io_width, u32 io_align,
182 struct btrfs_super_block *disk_super;
183 struct btrfs_fs_info *fs_info = root->fs_info;
184 struct btrfs_super_block *super = fs_info->super_copy;
185 struct btrfs_device *device;
186 struct btrfs_dev_item *dev_item;
192 device_total_bytes = (device_total_bytes / sectorsize) * sectorsize;
194 device = calloc(1, sizeof(*device));
199 buf = calloc(1, sectorsize);
205 disk_super = (struct btrfs_super_block *)buf;
206 dev_item = &disk_super->dev_item;
208 uuid_generate(device->uuid);
211 device->io_width = io_width;
212 device->io_align = io_align;
213 device->sector_size = sectorsize;
215 device->writeable = 1;
216 device->total_bytes = device_total_bytes;
217 device->bytes_used = 0;
218 device->total_ios = 0;
219 device->dev_root = fs_info->dev_root;
220 device->name = strdup(path);
226 INIT_LIST_HEAD(&device->dev_list);
227 ret = btrfs_add_device(trans, fs_info, device);
231 fs_total_bytes = btrfs_super_total_bytes(super) + device_total_bytes;
232 btrfs_set_super_total_bytes(super, fs_total_bytes);
234 num_devs = btrfs_super_num_devices(super) + 1;
235 btrfs_set_super_num_devices(super, num_devs);
237 memcpy(disk_super, super, sizeof(*disk_super));
239 btrfs_set_super_bytenr(disk_super, BTRFS_SUPER_INFO_OFFSET);
240 btrfs_set_stack_device_id(dev_item, device->devid);
241 btrfs_set_stack_device_type(dev_item, device->type);
242 btrfs_set_stack_device_io_align(dev_item, device->io_align);
243 btrfs_set_stack_device_io_width(dev_item, device->io_width);
244 btrfs_set_stack_device_sector_size(dev_item, device->sector_size);
245 btrfs_set_stack_device_total_bytes(dev_item, device->total_bytes);
246 btrfs_set_stack_device_bytes_used(dev_item, device->bytes_used);
247 memcpy(&dev_item->uuid, device->uuid, BTRFS_UUID_SIZE);
249 ret = pwrite(fd, buf, sectorsize, BTRFS_SUPER_INFO_OFFSET);
250 BUG_ON(ret != sectorsize);
253 list_add(&device->dev_list, &fs_info->fs_devices->devices);
254 device->fs_devices = fs_info->fs_devices;
263 static int btrfs_wipe_existing_sb(int fd)
265 const char *off = NULL;
270 blkid_probe pr = NULL;
272 pr = blkid_new_probe();
276 if (blkid_probe_set_device(pr, fd, 0, 0)) {
281 ret = blkid_probe_lookup_value(pr, "SBMAGIC_OFFSET", &off, NULL);
283 ret = blkid_probe_lookup_value(pr, "SBMAGIC", NULL, &len);
285 if (ret || len == 0 || off == NULL) {
287 * If lookup fails, the probe did not find any values, eg. for
288 * a file image or a loop device. Soft error.
294 offset = strtoll(off, NULL, 10);
295 if (len > sizeof(buf))
299 ret = pwrite(fd, buf, len, offset);
301 error("cannot wipe existing superblock: %s", strerror(errno));
303 } else if (ret != len) {
304 error("cannot wipe existing superblock: wrote %d of %zd", ret, len);
310 blkid_free_probe(pr);
314 int btrfs_prepare_device(int fd, const char *file, u64 *block_count_ret,
315 u64 max_block_count, unsigned opflags)
321 ret = fstat(fd, &st);
323 error("unable to stat %s: %s", file, strerror(errno));
327 block_count = btrfs_device_size(fd, &st);
328 if (block_count == 0) {
329 error("unable to determine size of %s", file);
333 block_count = min(block_count, max_block_count);
335 if (opflags & PREP_DEVICE_DISCARD) {
337 * We intentionally ignore errors from the discard ioctl. It
338 * is not necessary for the mkfs functionality but just an
341 if (discard_range(fd, 0, 0) == 0) {
342 if (opflags & PREP_DEVICE_VERBOSE)
343 printf("Performing full device TRIM %s (%s) ...\n",
344 file, pretty_size(block_count));
345 discard_blocks(fd, 0, block_count);
349 ret = zero_dev_clamped(fd, 0, ZERO_DEV_BYTES, block_count);
350 for (i = 0 ; !ret && i < BTRFS_SUPER_MIRROR_MAX; i++)
351 ret = zero_dev_clamped(fd, btrfs_sb_offset(i),
352 BTRFS_SUPER_INFO_SIZE, block_count);
353 if (!ret && (opflags & PREP_DEVICE_ZERO_END))
354 ret = zero_dev_clamped(fd, block_count - ZERO_DEV_BYTES,
355 ZERO_DEV_BYTES, block_count);
358 error("failed to zero device '%s': %s", file, strerror(-ret));
362 ret = btrfs_wipe_existing_sb(fd);
364 error("cannot wipe superblocks on %s", file);
368 *block_count_ret = block_count;
372 int btrfs_make_root_dir(struct btrfs_trans_handle *trans,
373 struct btrfs_root *root, u64 objectid)
376 struct btrfs_inode_item inode_item;
377 time_t now = time(NULL);
379 memset(&inode_item, 0, sizeof(inode_item));
380 btrfs_set_stack_inode_generation(&inode_item, trans->transid);
381 btrfs_set_stack_inode_size(&inode_item, 0);
382 btrfs_set_stack_inode_nlink(&inode_item, 1);
383 btrfs_set_stack_inode_nbytes(&inode_item, root->fs_info->nodesize);
384 btrfs_set_stack_inode_mode(&inode_item, S_IFDIR | 0755);
385 btrfs_set_stack_timespec_sec(&inode_item.atime, now);
386 btrfs_set_stack_timespec_nsec(&inode_item.atime, 0);
387 btrfs_set_stack_timespec_sec(&inode_item.ctime, now);
388 btrfs_set_stack_timespec_nsec(&inode_item.ctime, 0);
389 btrfs_set_stack_timespec_sec(&inode_item.mtime, now);
390 btrfs_set_stack_timespec_nsec(&inode_item.mtime, 0);
391 btrfs_set_stack_timespec_sec(&inode_item.otime, now);
392 btrfs_set_stack_timespec_nsec(&inode_item.otime, 0);
394 if (root->fs_info->tree_root == root)
395 btrfs_set_super_root_dir(root->fs_info->super_copy, objectid);
397 ret = btrfs_insert_inode(trans, root, objectid, &inode_item);
401 ret = btrfs_insert_inode_ref(trans, root, "..", 2, objectid, objectid, 0);
405 btrfs_set_root_dirid(&root->root_item, objectid);
412 * checks if a path is a block device node
413 * Returns negative errno on failure, otherwise
414 * returns 1 for blockdev, 0 for not-blockdev
416 int is_block_device(const char *path)
420 if (stat(path, &statbuf) < 0)
423 return !!S_ISBLK(statbuf.st_mode);
427 * check if given path is a mount point
428 * return 1 if yes. 0 if no. -1 for error
430 int is_mount_point(const char *path)
436 f = setmntent("/proc/self/mounts", "r");
440 while ((mnt = getmntent(f)) != NULL) {
441 if (strcmp(mnt->mnt_dir, path))
450 static int is_reg_file(const char *path)
454 if (stat(path, &statbuf) < 0)
456 return S_ISREG(statbuf.st_mode);
460 * This function checks if the given input parameter is
462 * return <0 : some error in the given input
463 * return BTRFS_ARG_UNKNOWN: unknown input
464 * return BTRFS_ARG_UUID: given input is uuid
465 * return BTRFS_ARG_MNTPOINT: given input is path
466 * return BTRFS_ARG_REG: given input is regular file
467 * return BTRFS_ARG_BLKDEV: given input is block device
469 int check_arg_type(const char *input)
477 if (realpath(input, path)) {
478 if (is_block_device(path) == 1)
479 return BTRFS_ARG_BLKDEV;
481 if (is_mount_point(path) == 1)
482 return BTRFS_ARG_MNTPOINT;
484 if (is_reg_file(path))
485 return BTRFS_ARG_REG;
487 return BTRFS_ARG_UNKNOWN;
490 if (strlen(input) == (BTRFS_UUID_UNPARSED_SIZE - 1) &&
491 !uuid_parse(input, uuid))
492 return BTRFS_ARG_UUID;
494 return BTRFS_ARG_UNKNOWN;
498 * Find the mount point for a mounted device.
499 * On success, returns 0 with mountpoint in *mp.
500 * On failure, returns -errno (not mounted yields -EINVAL)
501 * Is noisy on failures, expects to be given a mounted device.
503 int get_btrfs_mount(const char *dev, char *mp, size_t mp_size)
508 ret = is_block_device(dev);
511 error("not a block device: %s", dev);
514 error("cannot check %s: %s", dev, strerror(-ret));
519 fd = open(dev, O_RDONLY);
522 error("cannot open %s: %s", dev, strerror(errno));
526 ret = check_mounted_where(fd, dev, mp, mp_size, NULL);
529 } else { /* mounted, all good */
539 * Given a pathname, return a filehandle to:
540 * the original pathname or,
541 * if the pathname is a mounted btrfs device, to its mountpoint.
543 * On error, return -1, errno should be set.
545 int open_path_or_dev_mnt(const char *path, DIR **dirstream, int verbose)
550 if (is_block_device(path)) {
551 ret = get_btrfs_mount(path, mp, sizeof(mp));
553 /* not a mounted btrfs dev */
554 error_on(verbose, "'%s' is not a mounted btrfs device",
559 ret = open_file_or_dir(mp, dirstream);
560 error_on(verbose && ret < 0, "can't access '%s': %s",
561 path, strerror(errno));
563 ret = btrfs_open_dir(path, dirstream, 1);
570 * Do the following checks before calling open_file_or_dir():
571 * 1: path is in a btrfs filesystem
572 * 2: path is a directory if dir_only is 1
574 int btrfs_open(const char *path, DIR **dirstream, int verbose, int dir_only)
580 if (statfs(path, &stfs) != 0) {
581 error_on(verbose, "cannot access '%s': %s", path,
586 if (stfs.f_type != BTRFS_SUPER_MAGIC) {
587 error_on(verbose, "not a btrfs filesystem: %s", path);
591 if (stat(path, &st) != 0) {
592 error_on(verbose, "cannot access '%s': %s", path,
597 if (dir_only && !S_ISDIR(st.st_mode)) {
598 error_on(verbose, "not a directory: %s", path);
602 ret = open_file_or_dir(path, dirstream);
604 error_on(verbose, "cannot access '%s': %s", path,
611 int btrfs_open_dir(const char *path, DIR **dirstream, int verbose)
613 return btrfs_open(path, dirstream, verbose, 1);
616 int btrfs_open_file_or_dir(const char *path, DIR **dirstream, int verbose)
618 return btrfs_open(path, dirstream, verbose, 0);
621 /* checks if a device is a loop device */
622 static int is_loop_device (const char* device) {
625 if(stat(device, &statbuf) < 0)
628 return (S_ISBLK(statbuf.st_mode) &&
629 MAJOR(statbuf.st_rdev) == LOOP_MAJOR);
633 * Takes a loop device path (e.g. /dev/loop0) and returns
634 * the associated file (e.g. /images/my_btrfs.img) using
637 static int resolve_loop_device_with_loopdev(const char* loop_dev, char* loop_file)
641 struct loop_info64 lo64;
643 fd = open(loop_dev, O_RDONLY | O_NONBLOCK);
646 ret = ioctl(fd, LOOP_GET_STATUS64, &lo64);
652 memcpy(loop_file, lo64.lo_file_name, sizeof(lo64.lo_file_name));
653 loop_file[sizeof(lo64.lo_file_name)] = 0;
661 /* Takes a loop device path (e.g. /dev/loop0) and returns
662 * the associated file (e.g. /images/my_btrfs.img) */
663 static int resolve_loop_device(const char* loop_dev, char* loop_file,
670 char real_loop_dev[PATH_MAX];
672 if (!realpath(loop_dev, real_loop_dev))
674 snprintf(p, PATH_MAX, "/sys/block/%s/loop/backing_file", strrchr(real_loop_dev, '/'));
675 if (!(f = fopen(p, "r"))) {
678 * It's possibly a partitioned loop device, which is
679 * resolvable with loopdev API.
681 return resolve_loop_device_with_loopdev(loop_dev, loop_file);
685 snprintf(fmt, 20, "%%%i[^\n]", max_len-1);
686 ret = fscanf(f, fmt, loop_file);
695 * Checks whether a and b are identical or device
696 * files associated with the same block device
698 static int is_same_blk_file(const char* a, const char* b)
700 struct stat st_buf_a, st_buf_b;
701 char real_a[PATH_MAX];
702 char real_b[PATH_MAX];
704 if (!realpath(a, real_a))
705 strncpy_null(real_a, a);
707 if (!realpath(b, real_b))
708 strncpy_null(real_b, b);
710 /* Identical path? */
711 if (strcmp(real_a, real_b) == 0)
714 if (stat(a, &st_buf_a) < 0 || stat(b, &st_buf_b) < 0) {
720 /* Same blockdevice? */
721 if (S_ISBLK(st_buf_a.st_mode) && S_ISBLK(st_buf_b.st_mode) &&
722 st_buf_a.st_rdev == st_buf_b.st_rdev) {
727 if (st_buf_a.st_dev == st_buf_b.st_dev &&
728 st_buf_a.st_ino == st_buf_b.st_ino) {
735 /* checks if a and b are identical or device
736 * files associated with the same block device or
737 * if one file is a loop device that uses the other
740 static int is_same_loop_file(const char* a, const char* b)
742 char res_a[PATH_MAX];
743 char res_b[PATH_MAX];
744 const char* final_a = NULL;
745 const char* final_b = NULL;
748 /* Resolve a if it is a loop device */
749 if((ret = is_loop_device(a)) < 0) {
754 ret = resolve_loop_device(a, res_a, sizeof(res_a));
765 /* Resolve b if it is a loop device */
766 if ((ret = is_loop_device(b)) < 0) {
771 ret = resolve_loop_device(b, res_b, sizeof(res_b));
782 return is_same_blk_file(final_a, final_b);
785 /* Checks if a file exists and is a block or regular file*/
786 static int is_existing_blk_or_reg_file(const char* filename)
790 if(stat(filename, &st_buf) < 0) {
797 return (S_ISBLK(st_buf.st_mode) || S_ISREG(st_buf.st_mode));
800 /* Checks if a file is used (directly or indirectly via a loop device)
801 * by a device in fs_devices
803 static int blk_file_in_dev_list(struct btrfs_fs_devices* fs_devices,
807 struct list_head *head;
808 struct list_head *cur;
809 struct btrfs_device *device;
811 head = &fs_devices->devices;
812 list_for_each(cur, head) {
813 device = list_entry(cur, struct btrfs_device, dev_list);
815 if((ret = is_same_loop_file(device->name, file)))
823 * Resolve a pathname to a device mapper node to /dev/mapper/<name>
824 * Returns NULL on invalid input or malloc failure; Other failures
825 * will be handled by the caller using the input pathame.
827 char *canonicalize_dm_name(const char *ptname)
831 char path[PATH_MAX], name[PATH_MAX], *res = NULL;
833 if (!ptname || !*ptname)
836 snprintf(path, sizeof(path), "/sys/block/%s/dm/name", ptname);
837 if (!(f = fopen(path, "r")))
840 /* read <name>\n from sysfs */
841 if (fgets(name, sizeof(name), f) && (sz = strlen(name)) > 1) {
843 snprintf(path, sizeof(path), "/dev/mapper/%s", name);
845 if (access(path, F_OK) == 0)
853 * Resolve a pathname to a canonical device node, e.g. /dev/sda1 or
854 * to a device mapper pathname.
855 * Returns NULL on invalid input or malloc failure; Other failures
856 * will be handled by the caller using the input pathame.
858 char *canonicalize_path(const char *path)
865 canonical = realpath(path, NULL);
868 p = strrchr(canonical, '/');
869 if (p && strncmp(p, "/dm-", 4) == 0 && isdigit(*(p + 4))) {
870 char *dm = canonicalize_dm_name(p + 1);
881 * returns 1 if the device was mounted, < 0 on error or 0 if everything
882 * is safe to continue.
884 int check_mounted(const char* file)
889 fd = open(file, O_RDONLY);
891 error("mount check: cannot open %s: %s", file,
896 ret = check_mounted_where(fd, file, NULL, 0, NULL);
902 int check_mounted_where(int fd, const char *file, char *where, int size,
903 struct btrfs_fs_devices **fs_dev_ret)
908 struct btrfs_fs_devices *fs_devices_mnt = NULL;
912 /* scan the initial device */
913 ret = btrfs_scan_one_device(fd, file, &fs_devices_mnt,
914 &total_devs, BTRFS_SUPER_INFO_OFFSET, SBREAD_DEFAULT);
915 is_btrfs = (ret >= 0);
917 /* scan other devices */
918 if (is_btrfs && total_devs > 1) {
919 ret = btrfs_scan_devices();
924 /* iterate over the list of currently mounted filesystems */
925 if ((f = setmntent ("/proc/self/mounts", "r")) == NULL)
928 while ((mnt = getmntent (f)) != NULL) {
930 if(strcmp(mnt->mnt_type, "btrfs") != 0)
933 ret = blk_file_in_dev_list(fs_devices_mnt, mnt->mnt_fsname);
935 /* ignore entries in the mount table that are not
936 associated with a file*/
937 if((ret = is_existing_blk_or_reg_file(mnt->mnt_fsname)) < 0)
938 goto out_mntloop_err;
942 ret = is_same_loop_file(file, mnt->mnt_fsname);
946 goto out_mntloop_err;
951 /* Did we find an entry in mnt table? */
952 if (mnt && size && where) {
953 strncpy(where, mnt->mnt_dir, size);
957 *fs_dev_ret = fs_devices_mnt;
968 struct list_head list;
972 int btrfs_register_one_device(const char *fname)
974 struct btrfs_ioctl_vol_args args;
978 fd = open("/dev/btrfs-control", O_RDWR);
981 "failed to open /dev/btrfs-control, skipping device registration: %s",
985 memset(&args, 0, sizeof(args));
986 strncpy_null(args.name, fname);
987 ret = ioctl(fd, BTRFS_IOC_SCAN_DEV, &args);
989 error("device scan failed on '%s': %s", fname,
998 * Register all devices in the fs_uuid list created in the user
999 * space. Ensure btrfs_scan_devices() is called before this func.
1001 int btrfs_register_all_devices(void)
1005 struct btrfs_fs_devices *fs_devices;
1006 struct btrfs_device *device;
1007 struct list_head *all_uuids;
1009 all_uuids = btrfs_scanned_uuids();
1011 list_for_each_entry(fs_devices, all_uuids, list) {
1012 list_for_each_entry(device, &fs_devices->devices, dev_list) {
1014 err = btrfs_register_one_device(device->name);
1024 int btrfs_device_already_in_root(struct btrfs_root *root, int fd,
1027 struct btrfs_super_block *disk_super;
1031 buf = malloc(BTRFS_SUPER_INFO_SIZE);
1036 ret = pread(fd, buf, BTRFS_SUPER_INFO_SIZE, super_offset);
1037 if (ret != BTRFS_SUPER_INFO_SIZE)
1041 disk_super = (struct btrfs_super_block *)buf;
1043 * Accept devices from the same filesystem, allow partially created
1046 if (btrfs_super_magic(disk_super) != BTRFS_MAGIC &&
1047 btrfs_super_magic(disk_super) != BTRFS_MAGIC_PARTIAL)
1050 if (!memcmp(disk_super->fsid, root->fs_info->super_copy->fsid,
1060 * Note: this function uses a static per-thread buffer. Do not call this
1061 * function more than 10 times within one argument list!
1063 const char *pretty_size_mode(u64 size, unsigned mode)
1065 static __thread int ps_index = 0;
1066 static __thread char ps_array[10][32];
1069 ret = ps_array[ps_index];
1072 (void)pretty_size_snprintf(size, ret, 32, mode);
1077 static const char* unit_suffix_binary[] =
1078 { "B", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB"};
1079 static const char* unit_suffix_decimal[] =
1080 { "B", "kB", "MB", "GB", "TB", "PB", "EB"};
1082 int pretty_size_snprintf(u64 size, char *str, size_t str_size, unsigned unit_mode)
1088 const char** suffix = NULL;
1095 negative = !!(unit_mode & UNITS_NEGATIVE);
1096 unit_mode &= ~UNITS_NEGATIVE;
1098 if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_RAW) {
1100 snprintf(str, str_size, "%lld", size);
1102 snprintf(str, str_size, "%llu", size);
1106 if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_BINARY) {
1109 suffix = unit_suffix_binary;
1110 } else if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_DECIMAL) {
1113 suffix = unit_suffix_decimal;
1118 fprintf(stderr, "INTERNAL ERROR: unknown unit base, mode %d\n",
1126 switch (unit_mode & UNITS_MODE_MASK) {
1127 case UNITS_TBYTES: base *= mult; num_divs++;
1128 case UNITS_GBYTES: base *= mult; num_divs++;
1129 case UNITS_MBYTES: base *= mult; num_divs++;
1130 case UNITS_KBYTES: num_divs++;
1138 s64 ssize = (s64)size;
1139 s64 last_ssize = ssize;
1141 while ((ssize < 0 ? -ssize : ssize) >= mult) {
1146 last_size = (u64)last_ssize;
1148 while (size >= mult) {
1155 * If the value is smaller than base, we didn't do any
1156 * division, in that case, base should be 1, not original
1157 * base, or the unit will be wrong
1163 if (num_divs >= ARRAY_SIZE(unit_suffix_binary)) {
1165 printf("INTERNAL ERROR: unsupported unit suffix, index %d\n",
1172 fraction = (float)(s64)last_size / base;
1174 fraction = (float)last_size / base;
1177 return snprintf(str, str_size, "%.2f%s", fraction, suffix[num_divs]);
1181 * __strncpy_null - strncpy with null termination
1182 * @dest: the target array
1183 * @src: the source string
1184 * @n: maximum bytes to copy (size of *dest)
1186 * Like strncpy, but ensures destination is null-terminated.
1188 * Copies the string pointed to by src, including the terminating null
1189 * byte ('\0'), to the buffer pointed to by dest, up to a maximum
1190 * of n bytes. Then ensure that dest is null-terminated.
1192 char *__strncpy_null(char *dest, const char *src, size_t n)
1194 strncpy(dest, src, n);
1201 * Checks to make sure that the label matches our requirements.
1203 0 if everything is safe and usable
1204 -1 if the label is too long
1206 static int check_label(const char *input)
1208 int len = strlen(input);
1210 if (len > BTRFS_LABEL_SIZE - 1) {
1211 error("label %s is too long (max %d)", input,
1212 BTRFS_LABEL_SIZE - 1);
1219 static int set_label_unmounted(const char *dev, const char *label)
1221 struct btrfs_trans_handle *trans;
1222 struct btrfs_root *root;
1225 ret = check_mounted(dev);
1227 error("checking mount status of %s failed: %d", dev, ret);
1231 error("device %s is mounted, use mount point", dev);
1235 /* Open the super_block at the default location
1236 * and as read-write.
1238 root = open_ctree(dev, 0, OPEN_CTREE_WRITES);
1239 if (!root) /* errors are printed by open_ctree() */
1242 trans = btrfs_start_transaction(root, 1);
1243 BUG_ON(IS_ERR(trans));
1244 __strncpy_null(root->fs_info->super_copy->label, label, BTRFS_LABEL_SIZE - 1);
1246 btrfs_commit_transaction(trans, root);
1248 /* Now we close it since we are done. */
1253 static int set_label_mounted(const char *mount_path, const char *labelp)
1256 char label[BTRFS_LABEL_SIZE];
1258 fd = open(mount_path, O_RDONLY | O_NOATIME);
1260 error("unable to access %s: %s", mount_path, strerror(errno));
1264 memset(label, 0, sizeof(label));
1265 __strncpy_null(label, labelp, BTRFS_LABEL_SIZE - 1);
1266 if (ioctl(fd, BTRFS_IOC_SET_FSLABEL, label) < 0) {
1267 error("unable to set label of %s: %s", mount_path,
1277 int get_label_unmounted(const char *dev, char *label)
1279 struct btrfs_root *root;
1282 ret = check_mounted(dev);
1284 error("checking mount status of %s failed: %d", dev, ret);
1288 /* Open the super_block at the default location
1291 root = open_ctree(dev, 0, 0);
1295 __strncpy_null(label, root->fs_info->super_copy->label,
1296 BTRFS_LABEL_SIZE - 1);
1298 /* Now we close it since we are done. */
1304 * If a partition is mounted, try to get the filesystem label via its
1305 * mounted path rather than device. Return the corresponding error
1306 * the user specified the device path.
1308 int get_label_mounted(const char *mount_path, char *labelp)
1310 char label[BTRFS_LABEL_SIZE];
1314 fd = open(mount_path, O_RDONLY | O_NOATIME);
1316 error("unable to access %s: %s", mount_path, strerror(errno));
1320 memset(label, '\0', sizeof(label));
1321 ret = ioctl(fd, BTRFS_IOC_GET_FSLABEL, label);
1323 if (errno != ENOTTY)
1324 error("unable to get label of %s: %s", mount_path,
1331 __strncpy_null(labelp, label, BTRFS_LABEL_SIZE - 1);
1336 int get_label(const char *btrfs_dev, char *label)
1340 ret = is_existing_blk_or_reg_file(btrfs_dev);
1342 ret = get_label_mounted(btrfs_dev, label);
1344 ret = get_label_unmounted(btrfs_dev, label);
1349 int set_label(const char *btrfs_dev, const char *label)
1353 if (check_label(label))
1356 ret = is_existing_blk_or_reg_file(btrfs_dev);
1358 ret = set_label_mounted(btrfs_dev, label);
1360 ret = set_label_unmounted(btrfs_dev, label);
1366 * A not-so-good version fls64. No fascinating optimization since
1367 * no one except parse_size use it
1369 static int fls64(u64 x)
1373 for (i = 0; i <64; i++)
1374 if (x << i & (1ULL << 63))
1379 u64 parse_size(char *s)
1387 error("size value is empty");
1391 error("size value '%s' is less equal than 0", s);
1394 ret = strtoull(s, &endptr, 10);
1396 error("size value '%s' is invalid", s);
1399 if (endptr[0] && endptr[1]) {
1400 error("illegal suffix contains character '%c' in wrong position",
1405 * strtoll returns LLONG_MAX when overflow, if this happens,
1406 * need to call strtoull to get the real size
1408 if (errno == ERANGE && ret == ULLONG_MAX) {
1409 error("size value '%s' is too large for u64", s);
1413 c = tolower(endptr[0]);
1436 error("unknown size descriptor '%c'", c);
1440 /* Check whether ret * mult overflow */
1441 if (fls64(ret) + fls64(mult) - 1 > 64) {
1442 error("size value '%s' is too large for u64", s);
1449 u64 parse_qgroupid(const char *p)
1451 char *s = strchr(p, '/');
1452 const char *ptr_src_end = p + strlen(p);
1453 char *ptr_parse_end = NULL;
1462 /* Numeric format like '0/257' is the primary case */
1464 id = strtoull(p, &ptr_parse_end, 10);
1465 if (ptr_parse_end != ptr_src_end)
1469 level = strtoull(p, &ptr_parse_end, 10);
1470 if (ptr_parse_end != s)
1473 id = strtoull(s + 1, &ptr_parse_end, 10);
1474 if (ptr_parse_end != ptr_src_end)
1477 return (level << BTRFS_QGROUP_LEVEL_SHIFT) | id;
1480 /* Path format like subv at 'my_subvol' is the fallback case */
1481 ret = test_issubvolume(p);
1482 if (ret < 0 || !ret)
1484 fd = open(p, O_RDONLY);
1487 ret = lookup_path_rootid(fd, &id);
1489 error("failed to lookup root id: %s", strerror(-ret));
1496 error("invalid qgroupid or subvolume path: %s", p);
1500 int open_file_or_dir3(const char *fname, DIR **dirstream, int open_flags)
1506 ret = stat(fname, &st);
1510 if (S_ISDIR(st.st_mode)) {
1511 *dirstream = opendir(fname);
1514 fd = dirfd(*dirstream);
1515 } else if (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode)) {
1516 fd = open(fname, open_flags);
1519 * we set this on purpose, in case the caller output
1520 * strerror(errno) as success
1528 closedir(*dirstream);
1535 int open_file_or_dir(const char *fname, DIR **dirstream)
1537 return open_file_or_dir3(fname, dirstream, O_RDWR);
1540 void close_file_or_dir(int fd, DIR *dirstream)
1543 closedir(dirstream);
1548 int get_device_info(int fd, u64 devid,
1549 struct btrfs_ioctl_dev_info_args *di_args)
1553 di_args->devid = devid;
1554 memset(&di_args->uuid, '\0', sizeof(di_args->uuid));
1556 ret = ioctl(fd, BTRFS_IOC_DEV_INFO, di_args);
1557 return ret < 0 ? -errno : 0;
1560 static u64 find_max_device_id(struct btrfs_ioctl_search_args *search_args,
1563 struct btrfs_dev_item *dev_item;
1564 char *buf = search_args->buf;
1566 buf += (nr_items - 1) * (sizeof(struct btrfs_ioctl_search_header)
1567 + sizeof(struct btrfs_dev_item));
1568 buf += sizeof(struct btrfs_ioctl_search_header);
1570 dev_item = (struct btrfs_dev_item *)buf;
1572 return btrfs_stack_device_id(dev_item);
1575 static int search_chunk_tree_for_fs_info(int fd,
1576 struct btrfs_ioctl_fs_info_args *fi_args)
1580 u64 start_devid = 1;
1581 struct btrfs_ioctl_search_args search_args;
1582 struct btrfs_ioctl_search_key *search_key = &search_args.key;
1584 fi_args->num_devices = 0;
1586 max_items = BTRFS_SEARCH_ARGS_BUFSIZE
1587 / (sizeof(struct btrfs_ioctl_search_header)
1588 + sizeof(struct btrfs_dev_item));
1590 search_key->tree_id = BTRFS_CHUNK_TREE_OBJECTID;
1591 search_key->min_objectid = BTRFS_DEV_ITEMS_OBJECTID;
1592 search_key->max_objectid = BTRFS_DEV_ITEMS_OBJECTID;
1593 search_key->min_type = BTRFS_DEV_ITEM_KEY;
1594 search_key->max_type = BTRFS_DEV_ITEM_KEY;
1595 search_key->min_transid = 0;
1596 search_key->max_transid = (u64)-1;
1597 search_key->nr_items = max_items;
1598 search_key->max_offset = (u64)-1;
1601 search_key->min_offset = start_devid;
1603 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &search_args);
1607 fi_args->num_devices += (u64)search_key->nr_items;
1609 if (search_key->nr_items == max_items) {
1610 start_devid = find_max_device_id(&search_args,
1611 search_key->nr_items) + 1;
1615 /* get the lastest max_id to stay consistent with the num_devices */
1616 if (search_key->nr_items == 0)
1618 * last tree_search returns an empty buf, use the devid of
1619 * the last dev_item of the previous tree_search
1621 fi_args->max_id = start_devid - 1;
1623 fi_args->max_id = find_max_device_id(&search_args,
1624 search_key->nr_items);
1630 * For a given path, fill in the ioctl fs_ and info_ args.
1631 * If the path is a btrfs mountpoint, fill info for all devices.
1632 * If the path is a btrfs device, fill in only that device.
1634 * The path provided must be either on a mounted btrfs fs,
1635 * or be a mounted btrfs device.
1637 * Returns 0 on success, or a negative errno.
1639 int get_fs_info(const char *path, struct btrfs_ioctl_fs_info_args *fi_args,
1640 struct btrfs_ioctl_dev_info_args **di_ret)
1647 struct btrfs_fs_devices *fs_devices_mnt = NULL;
1648 struct btrfs_ioctl_dev_info_args *di_args;
1649 struct btrfs_ioctl_dev_info_args tmp;
1651 DIR *dirstream = NULL;
1653 memset(fi_args, 0, sizeof(*fi_args));
1655 if (is_block_device(path) == 1) {
1656 struct btrfs_super_block *disk_super;
1657 char buf[BTRFS_SUPER_INFO_SIZE];
1659 /* Ensure it's mounted, then set path to the mountpoint */
1660 fd = open(path, O_RDONLY);
1663 error("cannot open %s: %s", path, strerror(errno));
1666 ret = check_mounted_where(fd, path, mp, sizeof(mp),
1675 /* Only fill in this one device */
1676 fi_args->num_devices = 1;
1678 disk_super = (struct btrfs_super_block *)buf;
1679 ret = btrfs_read_dev_super(fd, disk_super,
1680 BTRFS_SUPER_INFO_OFFSET, 0);
1685 last_devid = btrfs_stack_device_id(&disk_super->dev_item);
1686 fi_args->max_id = last_devid;
1688 memcpy(fi_args->fsid, fs_devices_mnt->fsid, BTRFS_FSID_SIZE);
1692 /* at this point path must not be for a block device */
1693 fd = open_file_or_dir(path, &dirstream);
1699 /* fill in fi_args if not just a single device */
1700 if (fi_args->num_devices != 1) {
1701 ret = ioctl(fd, BTRFS_IOC_FS_INFO, fi_args);
1708 * The fs_args->num_devices does not include seed devices
1710 ret = search_chunk_tree_for_fs_info(fd, fi_args);
1715 * search_chunk_tree_for_fs_info() will lacks the devid 0
1716 * so manual probe for it here.
1718 ret = get_device_info(fd, 0, &tmp);
1720 fi_args->num_devices++;
1723 if (last_devid == 0)
1728 if (!fi_args->num_devices)
1731 di_args = *di_ret = malloc((fi_args->num_devices) * sizeof(*di_args));
1738 memcpy(di_args, &tmp, sizeof(tmp));
1739 for (; last_devid <= fi_args->max_id; last_devid++) {
1740 ret = get_device_info(fd, last_devid, &di_args[ndevs]);
1749 * only when the only dev we wanted to find is not there then
1750 * let any error be returned
1752 if (fi_args->num_devices != 1) {
1758 close_file_or_dir(fd, dirstream);
1762 int get_fsid(const char *path, u8 *fsid, int silent)
1766 struct btrfs_ioctl_fs_info_args args;
1768 fd = open(path, O_RDONLY);
1772 error("failed to open %s: %s", path,
1777 ret = ioctl(fd, BTRFS_IOC_FS_INFO, &args);
1783 memcpy(fsid, args.fsid, BTRFS_FSID_SIZE);
1792 int is_seen_fsid(u8 *fsid, struct seen_fsid *seen_fsid_hash[])
1795 int slot = hash % SEEN_FSID_HASH_SIZE;
1796 struct seen_fsid *seen = seen_fsid_hash[slot];
1799 if (memcmp(seen->fsid, fsid, BTRFS_FSID_SIZE) == 0)
1808 int add_seen_fsid(u8 *fsid, struct seen_fsid *seen_fsid_hash[],
1809 int fd, DIR *dirstream)
1812 int slot = hash % SEEN_FSID_HASH_SIZE;
1813 struct seen_fsid *seen = seen_fsid_hash[slot];
1814 struct seen_fsid *alloc;
1820 if (memcmp(seen->fsid, fsid, BTRFS_FSID_SIZE) == 0)
1830 alloc = malloc(sizeof(*alloc));
1835 memcpy(alloc->fsid, fsid, BTRFS_FSID_SIZE);
1837 alloc->dirstream = dirstream;
1842 seen_fsid_hash[slot] = alloc;
1847 void free_seen_fsid(struct seen_fsid *seen_fsid_hash[])
1850 struct seen_fsid *seen;
1851 struct seen_fsid *next;
1853 for (slot = 0; slot < SEEN_FSID_HASH_SIZE; slot++) {
1854 seen = seen_fsid_hash[slot];
1857 close_file_or_dir(seen->fd, seen->dirstream);
1861 seen_fsid_hash[slot] = NULL;
1865 static int group_profile_devs_min(u64 flag)
1867 switch (flag & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
1868 case 0: /* single */
1869 case BTRFS_BLOCK_GROUP_DUP:
1871 case BTRFS_BLOCK_GROUP_RAID0:
1872 case BTRFS_BLOCK_GROUP_RAID1:
1873 case BTRFS_BLOCK_GROUP_RAID5:
1875 case BTRFS_BLOCK_GROUP_RAID6:
1877 case BTRFS_BLOCK_GROUP_RAID10:
1884 int test_num_disk_vs_raid(u64 metadata_profile, u64 data_profile,
1885 u64 dev_cnt, int mixed, int ssd)
1888 u64 profile = metadata_profile | data_profile;
1893 allowed |= BTRFS_BLOCK_GROUP_RAID10;
1895 allowed |= BTRFS_BLOCK_GROUP_RAID6;
1897 allowed |= BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1 |
1898 BTRFS_BLOCK_GROUP_RAID5;
1900 allowed |= BTRFS_BLOCK_GROUP_DUP;
1903 if (dev_cnt > 1 && profile & BTRFS_BLOCK_GROUP_DUP) {
1904 warning("DUP is not recommended on filesystem with multiple devices");
1906 if (metadata_profile & ~allowed) {
1908 "ERROR: unable to create FS with metadata profile %s "
1909 "(have %llu devices but %d devices are required)\n",
1910 btrfs_group_profile_str(metadata_profile), dev_cnt,
1911 group_profile_devs_min(metadata_profile));
1914 if (data_profile & ~allowed) {
1916 "ERROR: unable to create FS with data profile %s "
1917 "(have %llu devices but %d devices are required)\n",
1918 btrfs_group_profile_str(data_profile), dev_cnt,
1919 group_profile_devs_min(data_profile));
1923 if (dev_cnt == 3 && profile & BTRFS_BLOCK_GROUP_RAID6) {
1924 warning("RAID6 is not recommended on filesystem with 3 devices only");
1926 if (dev_cnt == 2 && profile & BTRFS_BLOCK_GROUP_RAID5) {
1927 warning("RAID5 is not recommended on filesystem with 2 devices only");
1929 warning_on(!mixed && (data_profile & BTRFS_BLOCK_GROUP_DUP) && ssd,
1930 "DUP may not actually lead to 2 copies on the device, see manual page");
1935 int group_profile_max_safe_loss(u64 flags)
1937 switch (flags & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
1938 case 0: /* single */
1939 case BTRFS_BLOCK_GROUP_DUP:
1940 case BTRFS_BLOCK_GROUP_RAID0:
1942 case BTRFS_BLOCK_GROUP_RAID1:
1943 case BTRFS_BLOCK_GROUP_RAID5:
1944 case BTRFS_BLOCK_GROUP_RAID10:
1946 case BTRFS_BLOCK_GROUP_RAID6:
1953 int btrfs_scan_devices(void)
1958 struct btrfs_fs_devices *tmp_devices;
1959 blkid_dev_iterate iter = NULL;
1960 blkid_dev dev = NULL;
1961 blkid_cache cache = NULL;
1962 char path[PATH_MAX];
1964 if (btrfs_scan_done)
1967 if (blkid_get_cache(&cache, NULL) < 0) {
1968 error("blkid cache get failed");
1971 blkid_probe_all(cache);
1972 iter = blkid_dev_iterate_begin(cache);
1973 blkid_dev_set_search(iter, "TYPE", "btrfs");
1974 while (blkid_dev_next(iter, &dev) == 0) {
1975 dev = blkid_verify(cache, dev);
1978 /* if we are here its definitely a btrfs disk*/
1979 strncpy_null(path, blkid_dev_devname(dev));
1981 fd = open(path, O_RDONLY);
1983 error("cannot open %s: %s", path, strerror(errno));
1986 ret = btrfs_scan_one_device(fd, path, &tmp_devices,
1987 &num_devices, BTRFS_SUPER_INFO_OFFSET,
1990 error("cannot scan %s: %s", path, strerror(-ret));
1997 blkid_dev_iterate_end(iter);
1998 blkid_put_cache(cache);
2000 btrfs_scan_done = 1;
2006 * This reads a line from the stdin and only returns non-zero if the
2007 * first whitespace delimited token is a case insensitive match with yes
2010 int ask_user(const char *question)
2012 char buf[30] = {0,};
2013 char *saveptr = NULL;
2016 printf("%s [y/N]: ", question);
2018 return fgets(buf, sizeof(buf) - 1, stdin) &&
2019 (answer = strtok_r(buf, " \t\n\r", &saveptr)) &&
2020 (!strcasecmp(answer, "yes") || !strcasecmp(answer, "y"));
2024 * return 0 if a btrfs mount point is found
2025 * return 1 if a mount point is found but not btrfs
2026 * return <0 if something goes wrong
2028 int find_mount_root(const char *path, char **mount_root)
2036 int longest_matchlen = 0;
2037 char *longest_match = NULL;
2039 fd = open(path, O_RDONLY | O_NOATIME);
2044 mnttab = setmntent("/proc/self/mounts", "r");
2048 while ((ent = getmntent(mnttab))) {
2049 len = strlen(ent->mnt_dir);
2050 if (strncmp(ent->mnt_dir, path, len) == 0) {
2051 /* match found and use the latest match */
2052 if (longest_matchlen <= len) {
2053 free(longest_match);
2054 longest_matchlen = len;
2055 longest_match = strdup(ent->mnt_dir);
2056 not_btrfs = strcmp(ent->mnt_type, "btrfs");
2065 free(longest_match);
2070 *mount_root = realpath(longest_match, NULL);
2074 free(longest_match);
2079 * Test if path is a directory
2081 * 0 - path exists but it is not a directory
2082 * 1 - path exists and it is a directory
2085 int test_isdir(const char *path)
2090 ret = stat(path, &st);
2094 return !!S_ISDIR(st.st_mode);
2097 void units_set_mode(unsigned *units, unsigned mode)
2099 unsigned base = *units & UNITS_MODE_MASK;
2101 *units = base | mode;
2104 void units_set_base(unsigned *units, unsigned base)
2106 unsigned mode = *units & ~UNITS_MODE_MASK;
2108 *units = base | mode;
2111 int find_next_key(struct btrfs_path *path, struct btrfs_key *key)
2115 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
2116 if (!path->nodes[level])
2118 if (path->slots[level] + 1 >=
2119 btrfs_header_nritems(path->nodes[level]))
2122 btrfs_item_key_to_cpu(path->nodes[level], key,
2123 path->slots[level] + 1);
2125 btrfs_node_key_to_cpu(path->nodes[level], key,
2126 path->slots[level] + 1);
2132 const char* btrfs_group_type_str(u64 flag)
2134 u64 mask = BTRFS_BLOCK_GROUP_TYPE_MASK |
2135 BTRFS_SPACE_INFO_GLOBAL_RSV;
2137 switch (flag & mask) {
2138 case BTRFS_BLOCK_GROUP_DATA:
2140 case BTRFS_BLOCK_GROUP_SYSTEM:
2142 case BTRFS_BLOCK_GROUP_METADATA:
2144 case BTRFS_BLOCK_GROUP_DATA|BTRFS_BLOCK_GROUP_METADATA:
2145 return "Data+Metadata";
2146 case BTRFS_SPACE_INFO_GLOBAL_RSV:
2147 return "GlobalReserve";
2153 const char* btrfs_group_profile_str(u64 flag)
2155 switch (flag & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
2158 case BTRFS_BLOCK_GROUP_RAID0:
2160 case BTRFS_BLOCK_GROUP_RAID1:
2162 case BTRFS_BLOCK_GROUP_RAID5:
2164 case BTRFS_BLOCK_GROUP_RAID6:
2166 case BTRFS_BLOCK_GROUP_DUP:
2168 case BTRFS_BLOCK_GROUP_RAID10:
2175 u64 disk_size(const char *path)
2179 if (statfs(path, &sfs) < 0)
2182 return sfs.f_bsize * sfs.f_blocks;
2185 u64 get_partition_size(const char *dev)
2188 int fd = open(dev, O_RDONLY);
2192 if (ioctl(fd, BLKGETSIZE64, &result) < 0) {
2202 * Check if the BTRFS_IOC_TREE_SEARCH_V2 ioctl is supported on a given
2203 * filesystem, opened at fd
2205 int btrfs_tree_search2_ioctl_supported(int fd)
2207 struct btrfs_ioctl_search_args_v2 *args2;
2208 struct btrfs_ioctl_search_key *sk;
2209 int args2_size = 1024;
2210 char args2_buf[args2_size];
2213 args2 = (struct btrfs_ioctl_search_args_v2 *)args2_buf;
2217 * Search for the extent tree item in the root tree.
2219 sk->tree_id = BTRFS_ROOT_TREE_OBJECTID;
2220 sk->min_objectid = BTRFS_EXTENT_TREE_OBJECTID;
2221 sk->max_objectid = BTRFS_EXTENT_TREE_OBJECTID;
2222 sk->min_type = BTRFS_ROOT_ITEM_KEY;
2223 sk->max_type = BTRFS_ROOT_ITEM_KEY;
2225 sk->max_offset = (u64)-1;
2226 sk->min_transid = 0;
2227 sk->max_transid = (u64)-1;
2229 args2->buf_size = args2_size - sizeof(struct btrfs_ioctl_search_args_v2);
2230 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH_V2, args2);
2231 if (ret == -EOPNOTSUPP)
2238 int btrfs_check_nodesize(u32 nodesize, u32 sectorsize, u64 features)
2240 if (nodesize < sectorsize) {
2241 error("illegal nodesize %u (smaller than %u)",
2242 nodesize, sectorsize);
2244 } else if (nodesize > BTRFS_MAX_METADATA_BLOCKSIZE) {
2245 error("illegal nodesize %u (larger than %u)",
2246 nodesize, BTRFS_MAX_METADATA_BLOCKSIZE);
2248 } else if (nodesize & (sectorsize - 1)) {
2249 error("illegal nodesize %u (not aligned to %u)",
2250 nodesize, sectorsize);
2252 } else if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS &&
2253 nodesize != sectorsize) {
2254 error("illegal nodesize %u (not equal to %u for mixed block group)",
2255 nodesize, sectorsize);
2262 * Copy a path argument from SRC to DEST and check the SRC length if it's at
2263 * most PATH_MAX and fits into DEST. DESTLEN is supposed to be exact size of
2265 * The destination buffer is zero terminated.
2266 * Return < 0 for error, 0 otherwise.
2268 int arg_copy_path(char *dest, const char *src, int destlen)
2270 size_t len = strlen(src);
2272 if (len >= PATH_MAX || len >= destlen)
2273 return -ENAMETOOLONG;
2275 __strncpy_null(dest, src, destlen);
2280 unsigned int get_unit_mode_from_arg(int *argc, char *argv[], int df_mode)
2282 unsigned int unit_mode = UNITS_DEFAULT;
2286 for (arg_i = 0; arg_i < *argc; arg_i++) {
2287 if (!strcmp(argv[arg_i], "--"))
2290 if (!strcmp(argv[arg_i], "--raw")) {
2291 unit_mode = UNITS_RAW;
2295 if (!strcmp(argv[arg_i], "--human-readable")) {
2296 unit_mode = UNITS_HUMAN_BINARY;
2301 if (!strcmp(argv[arg_i], "--iec")) {
2302 units_set_mode(&unit_mode, UNITS_BINARY);
2306 if (!strcmp(argv[arg_i], "--si")) {
2307 units_set_mode(&unit_mode, UNITS_DECIMAL);
2312 if (!strcmp(argv[arg_i], "--kbytes")) {
2313 units_set_base(&unit_mode, UNITS_KBYTES);
2317 if (!strcmp(argv[arg_i], "--mbytes")) {
2318 units_set_base(&unit_mode, UNITS_MBYTES);
2322 if (!strcmp(argv[arg_i], "--gbytes")) {
2323 units_set_base(&unit_mode, UNITS_GBYTES);
2327 if (!strcmp(argv[arg_i], "--tbytes")) {
2328 units_set_base(&unit_mode, UNITS_TBYTES);
2336 if (!strcmp(argv[arg_i], "-b")) {
2337 unit_mode = UNITS_RAW;
2341 if (!strcmp(argv[arg_i], "-h")) {
2342 unit_mode = UNITS_HUMAN_BINARY;
2346 if (!strcmp(argv[arg_i], "-H")) {
2347 unit_mode = UNITS_HUMAN_DECIMAL;
2351 if (!strcmp(argv[arg_i], "-k")) {
2352 units_set_base(&unit_mode, UNITS_KBYTES);
2356 if (!strcmp(argv[arg_i], "-m")) {
2357 units_set_base(&unit_mode, UNITS_MBYTES);
2361 if (!strcmp(argv[arg_i], "-g")) {
2362 units_set_base(&unit_mode, UNITS_GBYTES);
2366 if (!strcmp(argv[arg_i], "-t")) {
2367 units_set_base(&unit_mode, UNITS_TBYTES);
2373 for (arg_i = 0, arg_end = 0; arg_i < *argc; arg_i++) {
2376 argv[arg_end] = argv[arg_i];
2385 u64 div_factor(u64 num, int factor)
2394 * Get the length of the string converted from a u64 number.
2396 * Result is equal to log10(num) + 1, but without the use of math library.
2398 int count_digits(u64 num)
2411 int string_is_numerical(const char *str)
2415 if (!(*str >= '0' && *str <= '9'))
2417 while (*str >= '0' && *str <= '9')
2424 int prefixcmp(const char *str, const char *prefix)
2426 for (; ; str++, prefix++)
2429 else if (*str != *prefix)
2430 return (unsigned char)*prefix - (unsigned char)*str;
2433 /* Subvolume helper functions */
2435 * test if name is a correct subvolume name
2436 * this function return
2437 * 0-> name is not a correct subvolume name
2438 * 1-> name is a correct subvolume name
2440 int test_issubvolname(const char *name)
2442 return name[0] != '\0' && !strchr(name, '/') &&
2443 strcmp(name, ".") && strcmp(name, "..");
2447 * Test if path is a subvolume
2449 * 0 - path exists but it is not a subvolume
2450 * 1 - path exists and it is a subvolume
2453 int test_issubvolume(const char *path)
2459 res = stat(path, &st);
2463 if (st.st_ino != BTRFS_FIRST_FREE_OBJECTID || !S_ISDIR(st.st_mode))
2466 res = statfs(path, &stfs);
2470 return (int)stfs.f_type == BTRFS_SUPER_MAGIC;
2473 const char *subvol_strip_mountpoint(const char *mnt, const char *full_path)
2475 int len = strlen(mnt);
2479 if (mnt[len - 1] != '/')
2482 return full_path + len;
2489 * 1: Error; and error info printed to the terminal. Fixme.
2490 * 2: If the fullpath is root tree instead of subvol tree
2492 int get_subvol_info(const char *fullpath, struct root_info *get_ri)
2499 const char *svpath = NULL;
2500 DIR *dirstream1 = NULL;
2501 DIR *dirstream2 = NULL;
2503 ret = test_issubvolume(fullpath);
2507 error("not a subvolume: %s", fullpath);
2511 ret = find_mount_root(fullpath, &mnt);
2515 error("%s doesn't belong to btrfs mount point", fullpath);
2519 svpath = subvol_strip_mountpoint(mnt, fullpath);
2521 fd = btrfs_open_dir(fullpath, &dirstream1, 1);
2525 ret = btrfs_list_get_path_rootid(fd, &sv_id);
2529 mntfd = btrfs_open_dir(mnt, &dirstream2, 1);
2533 memset(get_ri, 0, sizeof(*get_ri));
2534 get_ri->root_id = sv_id;
2536 if (sv_id == BTRFS_FS_TREE_OBJECTID)
2537 ret = btrfs_get_toplevel_subvol(mntfd, get_ri);
2539 ret = btrfs_get_subvol(mntfd, get_ri);
2541 error("can't find '%s': %d", svpath, ret);
2544 close_file_or_dir(mntfd, dirstream2);
2545 close_file_or_dir(fd, dirstream1);
2551 int get_subvol_info_by_rootid(const char *mnt, struct root_info *get_ri, u64 r_id)
2555 DIR *dirstream = NULL;
2557 fd = btrfs_open_dir(mnt, &dirstream, 1);
2561 memset(get_ri, 0, sizeof(*get_ri));
2562 get_ri->root_id = r_id;
2564 if (r_id == BTRFS_FS_TREE_OBJECTID)
2565 ret = btrfs_get_toplevel_subvol(fd, get_ri);
2567 ret = btrfs_get_subvol(fd, get_ri);
2570 error("can't find rootid '%llu' on '%s': %d", r_id, mnt, ret);
2572 close_file_or_dir(fd, dirstream);
2577 int get_subvol_info_by_uuid(const char *mnt, struct root_info *get_ri, u8 *uuid_arg)
2581 DIR *dirstream = NULL;
2583 fd = btrfs_open_dir(mnt, &dirstream, 1);
2587 memset(get_ri, 0, sizeof(*get_ri));
2588 uuid_copy(get_ri->uuid, uuid_arg);
2590 ret = btrfs_get_subvol(fd, get_ri);
2592 char uuid_parsed[BTRFS_UUID_UNPARSED_SIZE];
2593 uuid_unparse(uuid_arg, uuid_parsed);
2594 error("can't find uuid '%s' on '%s': %d",
2595 uuid_parsed, mnt, ret);
2598 close_file_or_dir(fd, dirstream);
2603 /* Set the seed manually */
2604 void init_rand_seed(u64 seed)
2608 /* only use the last 48 bits */
2609 for (i = 0; i < 3; i++) {
2610 rand_seed[i] = (unsigned short)(seed ^ (unsigned short)(-1));
2613 rand_seed_initlized = 1;
2616 static void __init_seed(void)
2622 if(rand_seed_initlized)
2624 /* Use urandom as primary seed source. */
2625 fd = open("/dev/urandom", O_RDONLY);
2627 ret = read(fd, rand_seed, sizeof(rand_seed));
2629 if (ret < sizeof(rand_seed))
2633 /* Use time and pid as fallback seed */
2634 warning("failed to read /dev/urandom, use time and pid as random seed");
2635 gettimeofday(&tv, 0);
2636 rand_seed[0] = getpid() ^ (tv.tv_sec & 0xFFFF);
2637 rand_seed[1] = getppid() ^ (tv.tv_usec & 0xFFFF);
2638 rand_seed[2] = (tv.tv_sec ^ tv.tv_usec) >> 16;
2640 rand_seed_initlized = 1;
2647 * Don't use nrand48, its range is [0,2^31) The highest bit will alwasy
2648 * be 0. Use jrand48 to include the highest bit.
2650 return (u32)jrand48(rand_seed);
2653 /* Return random number in range [0, upper) */
2654 unsigned int rand_range(unsigned int upper)
2658 * Use the full 48bits to mod, which would be more uniformly
2661 return (unsigned int)(jrand48(rand_seed) % upper);
2666 return (int)(rand_u32());
2681 return (u16)(rand_u32());
2686 return (u8)(rand_u32());
2689 void btrfs_config_init(void)
2693 /* Returns total size of main memory in bytes, -1UL if error. */
2694 unsigned long total_memory(void)
2698 if (sysinfo(&si) < 0) {
2699 error("can't determine memory size");
2702 return si.totalram * si.mem_unit; /* bytes */