btrfs-progs: Factor out common print_device_info
[platform/upstream/btrfs-progs.git] / utils.c
1 /*
2  * Copyright (C) 2007 Oracle.  All rights reserved.
3  * Copyright (C) 2008 Morey Roof.  All rights reserved.
4  *
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.
8  *
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.
13  *
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.
18  */
19
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <sys/ioctl.h>
24 #include <sys/mount.h>
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #include <sys/sysinfo.h>
28 #include <uuid/uuid.h>
29 #include <fcntl.h>
30 #include <unistd.h>
31 #include <mntent.h>
32 #include <ctype.h>
33 #include <linux/loop.h>
34 #include <linux/major.h>
35 #include <linux/kdev_t.h>
36 #include <limits.h>
37 #include <blkid/blkid.h>
38 #include <sys/vfs.h>
39 #include <sys/statfs.h>
40 #include <linux/magic.h>
41 #include <getopt.h>
42
43 #include "kerncompat.h"
44 #include "radix-tree.h"
45 #include "ctree.h"
46 #include "disk-io.h"
47 #include "transaction.h"
48 #include "crc32c.h"
49 #include "utils.h"
50 #include "volumes.h"
51 #include "ioctl.h"
52 #include "commands.h"
53 #include "mkfs/common.h"
54
55 #ifndef BLKDISCARD
56 #define BLKDISCARD      _IO(0x12,119)
57 #endif
58
59 static int btrfs_scan_done = 0;
60
61 static int rand_seed_initlized = 0;
62 static unsigned short rand_seed[3];
63
64 struct btrfs_config bconf;
65
66 /*
67  * Discard the given range in one go
68  */
69 static int discard_range(int fd, u64 start, u64 len)
70 {
71         u64 range[2] = { start, len };
72
73         if (ioctl(fd, BLKDISCARD, &range) < 0)
74                 return errno;
75         return 0;
76 }
77
78 /*
79  * Discard blocks in the given range in 1G chunks, the process is interruptible
80  */
81 static int discard_blocks(int fd, u64 start, u64 len)
82 {
83         while (len > 0) {
84                 /* 1G granularity */
85                 u64 chunk_size = min_t(u64, len, SZ_1G);
86                 int ret;
87
88                 ret = discard_range(fd, start, chunk_size);
89                 if (ret)
90                         return ret;
91                 len -= chunk_size;
92                 start += chunk_size;
93         }
94
95         return 0;
96 }
97
98 int test_uuid_unique(char *fs_uuid)
99 {
100         int unique = 1;
101         blkid_dev_iterate iter = NULL;
102         blkid_dev dev = NULL;
103         blkid_cache cache = NULL;
104
105         if (blkid_get_cache(&cache, NULL) < 0) {
106                 printf("ERROR: lblkid cache get failed\n");
107                 return 1;
108         }
109         blkid_probe_all(cache);
110         iter = blkid_dev_iterate_begin(cache);
111         blkid_dev_set_search(iter, "UUID", fs_uuid);
112
113         while (blkid_dev_next(iter, &dev) == 0) {
114                 dev = blkid_verify(cache, dev);
115                 if (dev) {
116                         unique = 0;
117                         break;
118                 }
119         }
120
121         blkid_dev_iterate_end(iter);
122         blkid_put_cache(cache);
123
124         return unique;
125 }
126
127 u64 btrfs_device_size(int fd, struct stat *st)
128 {
129         u64 size;
130         if (S_ISREG(st->st_mode)) {
131                 return st->st_size;
132         }
133         if (!S_ISBLK(st->st_mode)) {
134                 return 0;
135         }
136         if (ioctl(fd, BLKGETSIZE64, &size) >= 0) {
137                 return size;
138         }
139         return 0;
140 }
141
142 static int zero_blocks(int fd, off_t start, size_t len)
143 {
144         char *buf = malloc(len);
145         int ret = 0;
146         ssize_t written;
147
148         if (!buf)
149                 return -ENOMEM;
150         memset(buf, 0, len);
151         written = pwrite(fd, buf, len, start);
152         if (written != len)
153                 ret = -EIO;
154         free(buf);
155         return ret;
156 }
157
158 #define ZERO_DEV_BYTES SZ_2M
159
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)
162 {
163         off_t end = max(start, start + len);
164
165 #ifdef __sparc__
166         /* and don't overwrite the disk labels on sparc */
167         start = max(start, 1024);
168         end = max(end, 1024);
169 #endif
170
171         start = min_t(u64, start, dev_size);
172         end = min_t(u64, end, dev_size);
173
174         return zero_blocks(fd, start, end - start);
175 }
176
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,
180                       u32 sectorsize)
181 {
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;
187         char *buf = NULL;
188         u64 fs_total_bytes;
189         u64 num_devs;
190         int ret;
191
192         device_total_bytes = (device_total_bytes / sectorsize) * sectorsize;
193
194         device = calloc(1, sizeof(*device));
195         if (!device) {
196                 ret = -ENOMEM;
197                 goto out;
198         }
199         buf = calloc(1, sectorsize);
200         if (!buf) {
201                 ret = -ENOMEM;
202                 goto out;
203         }
204
205         disk_super = (struct btrfs_super_block *)buf;
206         dev_item = &disk_super->dev_item;
207
208         uuid_generate(device->uuid);
209         device->devid = 0;
210         device->type = 0;
211         device->io_width = io_width;
212         device->io_align = io_align;
213         device->sector_size = sectorsize;
214         device->fd = fd;
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);
221         if (!device->name) {
222                 ret = -ENOMEM;
223                 goto out;
224         }
225
226         INIT_LIST_HEAD(&device->dev_list);
227         ret = btrfs_add_device(trans, fs_info, device);
228         if (ret)
229                 goto out;
230
231         fs_total_bytes = btrfs_super_total_bytes(super) + device_total_bytes;
232         btrfs_set_super_total_bytes(super, fs_total_bytes);
233
234         num_devs = btrfs_super_num_devices(super) + 1;
235         btrfs_set_super_num_devices(super, num_devs);
236
237         memcpy(disk_super, super, sizeof(*disk_super));
238
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);
248
249         ret = pwrite(fd, buf, sectorsize, BTRFS_SUPER_INFO_OFFSET);
250         BUG_ON(ret != sectorsize);
251
252         free(buf);
253         list_add(&device->dev_list, &fs_info->fs_devices->devices);
254         device->fs_devices = fs_info->fs_devices;
255         return 0;
256
257 out:
258         free(device);
259         free(buf);
260         return ret;
261 }
262
263 static int btrfs_wipe_existing_sb(int fd)
264 {
265         const char *off = NULL;
266         size_t len = 0;
267         loff_t offset;
268         char buf[BUFSIZ];
269         int ret = 0;
270         blkid_probe pr = NULL;
271
272         pr = blkid_new_probe();
273         if (!pr)
274                 return -1;
275
276         if (blkid_probe_set_device(pr, fd, 0, 0)) {
277                 ret = -1;
278                 goto out;
279         }
280
281         ret = blkid_probe_lookup_value(pr, "SBMAGIC_OFFSET", &off, NULL);
282         if (!ret)
283                 ret = blkid_probe_lookup_value(pr, "SBMAGIC", NULL, &len);
284
285         if (ret || len == 0 || off == NULL) {
286                 /*
287                  * If lookup fails, the probe did not find any values, eg. for
288                  * a file image or a loop device. Soft error.
289                  */
290                 ret = 1;
291                 goto out;
292         }
293
294         offset = strtoll(off, NULL, 10);
295         if (len > sizeof(buf))
296                 len = sizeof(buf);
297
298         memset(buf, 0, len);
299         ret = pwrite(fd, buf, len, offset);
300         if (ret < 0) {
301                 error("cannot wipe existing superblock: %s", strerror(errno));
302                 ret = -1;
303         } else if (ret != len) {
304                 error("cannot wipe existing superblock: wrote %d of %zd", ret, len);
305                 ret = -1;
306         }
307         fsync(fd);
308
309 out:
310         blkid_free_probe(pr);
311         return ret;
312 }
313
314 int btrfs_prepare_device(int fd, const char *file, u64 *block_count_ret,
315                 u64 max_block_count, unsigned opflags)
316 {
317         u64 block_count;
318         struct stat st;
319         int i, ret;
320
321         ret = fstat(fd, &st);
322         if (ret < 0) {
323                 error("unable to stat %s: %s", file, strerror(errno));
324                 return 1;
325         }
326
327         block_count = btrfs_device_size(fd, &st);
328         if (block_count == 0) {
329                 error("unable to determine size of %s", file);
330                 return 1;
331         }
332         if (max_block_count)
333                 block_count = min(block_count, max_block_count);
334
335         if (opflags & PREP_DEVICE_DISCARD) {
336                 /*
337                  * We intentionally ignore errors from the discard ioctl.  It
338                  * is not necessary for the mkfs functionality but just an
339                  * optimization.
340                  */
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);
346                 }
347         }
348
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);
356
357         if (ret < 0) {
358                 error("failed to zero device '%s': %s", file, strerror(-ret));
359                 return 1;
360         }
361
362         ret = btrfs_wipe_existing_sb(fd);
363         if (ret < 0) {
364                 error("cannot wipe superblocks on %s", file);
365                 return 1;
366         }
367
368         *block_count_ret = block_count;
369         return 0;
370 }
371
372 int btrfs_make_root_dir(struct btrfs_trans_handle *trans,
373                         struct btrfs_root *root, u64 objectid)
374 {
375         int ret;
376         struct btrfs_inode_item inode_item;
377         time_t now = time(NULL);
378
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);
393
394         if (root->fs_info->tree_root == root)
395                 btrfs_set_super_root_dir(root->fs_info->super_copy, objectid);
396
397         ret = btrfs_insert_inode(trans, root, objectid, &inode_item);
398         if (ret)
399                 goto error;
400
401         ret = btrfs_insert_inode_ref(trans, root, "..", 2, objectid, objectid, 0);
402         if (ret)
403                 goto error;
404
405         btrfs_set_root_dirid(&root->root_item, objectid);
406         ret = 0;
407 error:
408         return ret;
409 }
410
411 /*
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
415  */
416 int is_block_device(const char *path)
417 {
418         struct stat statbuf;
419
420         if (stat(path, &statbuf) < 0)
421                 return -errno;
422
423         return !!S_ISBLK(statbuf.st_mode);
424 }
425
426 /*
427  * check if given path is a mount point
428  * return 1 if yes. 0 if no. -1 for error
429  */
430 int is_mount_point(const char *path)
431 {
432         FILE *f;
433         struct mntent *mnt;
434         int ret = 0;
435
436         f = setmntent("/proc/self/mounts", "r");
437         if (f == NULL)
438                 return -1;
439
440         while ((mnt = getmntent(f)) != NULL) {
441                 if (strcmp(mnt->mnt_dir, path))
442                         continue;
443                 ret = 1;
444                 break;
445         }
446         endmntent(f);
447         return ret;
448 }
449
450 int is_reg_file(const char *path)
451 {
452         struct stat statbuf;
453
454         if (stat(path, &statbuf) < 0)
455                 return -errno;
456         return S_ISREG(statbuf.st_mode);
457 }
458
459 int is_path_exist(const char *path)
460 {
461         struct stat statbuf;
462         int ret;
463
464         ret = stat(path, &statbuf);
465         if (ret < 0) {
466                 if (errno == ENOENT)
467                         return 0;
468                 else
469                         return -errno;
470         }
471         return 1;
472 }
473
474 /*
475  * This function checks if the given input parameter is
476  * an uuid or a path
477  * return <0 : some error in the given input
478  * return BTRFS_ARG_UNKNOWN:    unknown input
479  * return BTRFS_ARG_UUID:       given input is uuid
480  * return BTRFS_ARG_MNTPOINT:   given input is path
481  * return BTRFS_ARG_REG:        given input is regular file
482  * return BTRFS_ARG_BLKDEV:     given input is block device
483  */
484 int check_arg_type(const char *input)
485 {
486         uuid_t uuid;
487         char path[PATH_MAX];
488
489         if (!input)
490                 return -EINVAL;
491
492         if (realpath(input, path)) {
493                 if (is_block_device(path) == 1)
494                         return BTRFS_ARG_BLKDEV;
495
496                 if (is_mount_point(path) == 1)
497                         return BTRFS_ARG_MNTPOINT;
498
499                 if (is_reg_file(path))
500                         return BTRFS_ARG_REG;
501
502                 return BTRFS_ARG_UNKNOWN;
503         }
504
505         if (strlen(input) == (BTRFS_UUID_UNPARSED_SIZE - 1) &&
506                 !uuid_parse(input, uuid))
507                 return BTRFS_ARG_UUID;
508
509         return BTRFS_ARG_UNKNOWN;
510 }
511
512 /*
513  * Find the mount point for a mounted device.
514  * On success, returns 0 with mountpoint in *mp.
515  * On failure, returns -errno (not mounted yields -EINVAL)
516  * Is noisy on failures, expects to be given a mounted device.
517  */
518 int get_btrfs_mount(const char *dev, char *mp, size_t mp_size)
519 {
520         int ret;
521         int fd = -1;
522
523         ret = is_block_device(dev);
524         if (ret <= 0) {
525                 if (!ret) {
526                         error("not a block device: %s", dev);
527                         ret = -EINVAL;
528                 } else {
529                         error("cannot check %s: %s", dev, strerror(-ret));
530                 }
531                 goto out;
532         }
533
534         fd = open(dev, O_RDONLY);
535         if (fd < 0) {
536                 ret = -errno;
537                 error("cannot open %s: %s", dev, strerror(errno));
538                 goto out;
539         }
540
541         ret = check_mounted_where(fd, dev, mp, mp_size, NULL);
542         if (!ret) {
543                 ret = -EINVAL;
544         } else { /* mounted, all good */
545                 ret = 0;
546         }
547 out:
548         if (fd != -1)
549                 close(fd);
550         return ret;
551 }
552
553 /*
554  * Given a pathname, return a filehandle to:
555  *      the original pathname or,
556  *      if the pathname is a mounted btrfs device, to its mountpoint.
557  *
558  * On error, return -1, errno should be set.
559  */
560 int open_path_or_dev_mnt(const char *path, DIR **dirstream, int verbose)
561 {
562         char mp[PATH_MAX];
563         int ret;
564
565         if (is_block_device(path)) {
566                 ret = get_btrfs_mount(path, mp, sizeof(mp));
567                 if (ret < 0) {
568                         /* not a mounted btrfs dev */
569                         error_on(verbose, "'%s' is not a mounted btrfs device",
570                                  path);
571                         errno = EINVAL;
572                         return -1;
573                 }
574                 ret = open_file_or_dir(mp, dirstream);
575                 error_on(verbose && ret < 0, "can't access '%s': %s",
576                          path, strerror(errno));
577         } else {
578                 ret = btrfs_open_dir(path, dirstream, 1);
579         }
580
581         return ret;
582 }
583
584 /*
585  * Do the following checks before calling open_file_or_dir():
586  * 1: path is in a btrfs filesystem
587  * 2: path is a directory if dir_only is 1
588  */
589 int btrfs_open(const char *path, DIR **dirstream, int verbose, int dir_only)
590 {
591         struct statfs stfs;
592         struct stat st;
593         int ret;
594
595         if (statfs(path, &stfs) != 0) {
596                 error_on(verbose, "cannot access '%s': %s", path,
597                                 strerror(errno));
598                 return -1;
599         }
600
601         if (stfs.f_type != BTRFS_SUPER_MAGIC) {
602                 error_on(verbose, "not a btrfs filesystem: %s", path);
603                 return -2;
604         }
605
606         if (stat(path, &st) != 0) {
607                 error_on(verbose, "cannot access '%s': %s", path,
608                                 strerror(errno));
609                 return -1;
610         }
611
612         if (dir_only && !S_ISDIR(st.st_mode)) {
613                 error_on(verbose, "not a directory: %s", path);
614                 return -3;
615         }
616
617         ret = open_file_or_dir(path, dirstream);
618         if (ret < 0) {
619                 error_on(verbose, "cannot access '%s': %s", path,
620                                 strerror(errno));
621         }
622
623         return ret;
624 }
625
626 int btrfs_open_dir(const char *path, DIR **dirstream, int verbose)
627 {
628         return btrfs_open(path, dirstream, verbose, 1);
629 }
630
631 int btrfs_open_file_or_dir(const char *path, DIR **dirstream, int verbose)
632 {
633         return btrfs_open(path, dirstream, verbose, 0);
634 }
635
636 /* checks if a device is a loop device */
637 static int is_loop_device (const char* device) {
638         struct stat statbuf;
639
640         if(stat(device, &statbuf) < 0)
641                 return -errno;
642
643         return (S_ISBLK(statbuf.st_mode) &&
644                 MAJOR(statbuf.st_rdev) == LOOP_MAJOR);
645 }
646
647 /*
648  * Takes a loop device path (e.g. /dev/loop0) and returns
649  * the associated file (e.g. /images/my_btrfs.img) using
650  * loopdev API
651  */
652 static int resolve_loop_device_with_loopdev(const char* loop_dev, char* loop_file)
653 {
654         int fd;
655         int ret;
656         struct loop_info64 lo64;
657
658         fd = open(loop_dev, O_RDONLY | O_NONBLOCK);
659         if (fd < 0)
660                 return -errno;
661         ret = ioctl(fd, LOOP_GET_STATUS64, &lo64);
662         if (ret < 0) {
663                 ret = -errno;
664                 goto out;
665         }
666
667         memcpy(loop_file, lo64.lo_file_name, sizeof(lo64.lo_file_name));
668         loop_file[sizeof(lo64.lo_file_name)] = 0;
669
670 out:
671         close(fd);
672
673         return ret;
674 }
675
676 /* Takes a loop device path (e.g. /dev/loop0) and returns
677  * the associated file (e.g. /images/my_btrfs.img) */
678 static int resolve_loop_device(const char* loop_dev, char* loop_file,
679                 int max_len)
680 {
681         int ret;
682         FILE *f;
683         char fmt[20];
684         char p[PATH_MAX];
685         char real_loop_dev[PATH_MAX];
686
687         if (!realpath(loop_dev, real_loop_dev))
688                 return -errno;
689         snprintf(p, PATH_MAX, "/sys/block/%s/loop/backing_file", strrchr(real_loop_dev, '/'));
690         if (!(f = fopen(p, "r"))) {
691                 if (errno == ENOENT)
692                         /*
693                          * It's possibly a partitioned loop device, which is
694                          * resolvable with loopdev API.
695                          */
696                         return resolve_loop_device_with_loopdev(loop_dev, loop_file);
697                 return -errno;
698         }
699
700         snprintf(fmt, 20, "%%%i[^\n]", max_len-1);
701         ret = fscanf(f, fmt, loop_file);
702         fclose(f);
703         if (ret == EOF)
704                 return -errno;
705
706         return 0;
707 }
708
709 /*
710  * Checks whether a and b are identical or device
711  * files associated with the same block device
712  */
713 static int is_same_blk_file(const char* a, const char* b)
714 {
715         struct stat st_buf_a, st_buf_b;
716         char real_a[PATH_MAX];
717         char real_b[PATH_MAX];
718
719         if (!realpath(a, real_a))
720                 strncpy_null(real_a, a);
721
722         if (!realpath(b, real_b))
723                 strncpy_null(real_b, b);
724
725         /* Identical path? */
726         if (strcmp(real_a, real_b) == 0)
727                 return 1;
728
729         if (stat(a, &st_buf_a) < 0 || stat(b, &st_buf_b) < 0) {
730                 if (errno == ENOENT)
731                         return 0;
732                 return -errno;
733         }
734
735         /* Same blockdevice? */
736         if (S_ISBLK(st_buf_a.st_mode) && S_ISBLK(st_buf_b.st_mode) &&
737             st_buf_a.st_rdev == st_buf_b.st_rdev) {
738                 return 1;
739         }
740
741         /* Hardlink? */
742         if (st_buf_a.st_dev == st_buf_b.st_dev &&
743             st_buf_a.st_ino == st_buf_b.st_ino) {
744                 return 1;
745         }
746
747         return 0;
748 }
749
750 /* checks if a and b are identical or device
751  * files associated with the same block device or
752  * if one file is a loop device that uses the other
753  * file.
754  */
755 static int is_same_loop_file(const char* a, const char* b)
756 {
757         char res_a[PATH_MAX];
758         char res_b[PATH_MAX];
759         const char* final_a = NULL;
760         const char* final_b = NULL;
761         int ret;
762
763         /* Resolve a if it is a loop device */
764         if((ret = is_loop_device(a)) < 0) {
765                 if (ret == -ENOENT)
766                         return 0;
767                 return ret;
768         } else if (ret) {
769                 ret = resolve_loop_device(a, res_a, sizeof(res_a));
770                 if (ret < 0) {
771                         if (errno != EPERM)
772                                 return ret;
773                 } else {
774                         final_a = res_a;
775                 }
776         } else {
777                 final_a = a;
778         }
779
780         /* Resolve b if it is a loop device */
781         if ((ret = is_loop_device(b)) < 0) {
782                 if (ret == -ENOENT)
783                         return 0;
784                 return ret;
785         } else if (ret) {
786                 ret = resolve_loop_device(b, res_b, sizeof(res_b));
787                 if (ret < 0) {
788                         if (errno != EPERM)
789                                 return ret;
790                 } else {
791                         final_b = res_b;
792                 }
793         } else {
794                 final_b = b;
795         }
796
797         return is_same_blk_file(final_a, final_b);
798 }
799
800 /* Checks if a file exists and is a block or regular file*/
801 static int is_existing_blk_or_reg_file(const char* filename)
802 {
803         struct stat st_buf;
804
805         if(stat(filename, &st_buf) < 0) {
806                 if(errno == ENOENT)
807                         return 0;
808                 else
809                         return -errno;
810         }
811
812         return (S_ISBLK(st_buf.st_mode) || S_ISREG(st_buf.st_mode));
813 }
814
815 /* Checks if a file is used (directly or indirectly via a loop device)
816  * by a device in fs_devices
817  */
818 static int blk_file_in_dev_list(struct btrfs_fs_devices* fs_devices,
819                 const char* file)
820 {
821         int ret;
822         struct list_head *head;
823         struct list_head *cur;
824         struct btrfs_device *device;
825
826         head = &fs_devices->devices;
827         list_for_each(cur, head) {
828                 device = list_entry(cur, struct btrfs_device, dev_list);
829
830                 if((ret = is_same_loop_file(device->name, file)))
831                         return ret;
832         }
833
834         return 0;
835 }
836
837 /*
838  * Resolve a pathname to a device mapper node to /dev/mapper/<name>
839  * Returns NULL on invalid input or malloc failure; Other failures
840  * will be handled by the caller using the input pathame.
841  */
842 char *canonicalize_dm_name(const char *ptname)
843 {
844         FILE    *f;
845         size_t  sz;
846         char    path[PATH_MAX], name[PATH_MAX], *res = NULL;
847
848         if (!ptname || !*ptname)
849                 return NULL;
850
851         snprintf(path, sizeof(path), "/sys/block/%s/dm/name", ptname);
852         if (!(f = fopen(path, "r")))
853                 return NULL;
854
855         /* read <name>\n from sysfs */
856         if (fgets(name, sizeof(name), f) && (sz = strlen(name)) > 1) {
857                 name[sz - 1] = '\0';
858                 snprintf(path, sizeof(path), "/dev/mapper/%s", name);
859
860                 if (access(path, F_OK) == 0)
861                         res = strdup(path);
862         }
863         fclose(f);
864         return res;
865 }
866
867 /*
868  * Resolve a pathname to a canonical device node, e.g. /dev/sda1 or
869  * to a device mapper pathname.
870  * Returns NULL on invalid input or malloc failure; Other failures
871  * will be handled by the caller using the input pathame.
872  */
873 char *canonicalize_path(const char *path)
874 {
875         char *canonical, *p;
876
877         if (!path || !*path)
878                 return NULL;
879
880         canonical = realpath(path, NULL);
881         if (!canonical)
882                 return strdup(path);
883         p = strrchr(canonical, '/');
884         if (p && strncmp(p, "/dm-", 4) == 0 && isdigit(*(p + 4))) {
885                 char *dm = canonicalize_dm_name(p + 1);
886
887                 if (dm) {
888                         free(canonical);
889                         return dm;
890                 }
891         }
892         return canonical;
893 }
894
895 /*
896  * returns 1 if the device was mounted, < 0 on error or 0 if everything
897  * is safe to continue.
898  */
899 int check_mounted(const char* file)
900 {
901         int fd;
902         int ret;
903
904         fd = open(file, O_RDONLY);
905         if (fd < 0) {
906                 error("mount check: cannot open %s: %s", file,
907                                 strerror(errno));
908                 return -errno;
909         }
910
911         ret =  check_mounted_where(fd, file, NULL, 0, NULL);
912         close(fd);
913
914         return ret;
915 }
916
917 int check_mounted_where(int fd, const char *file, char *where, int size,
918                         struct btrfs_fs_devices **fs_dev_ret)
919 {
920         int ret;
921         u64 total_devs = 1;
922         int is_btrfs;
923         struct btrfs_fs_devices *fs_devices_mnt = NULL;
924         FILE *f;
925         struct mntent *mnt;
926
927         /* scan the initial device */
928         ret = btrfs_scan_one_device(fd, file, &fs_devices_mnt,
929                     &total_devs, BTRFS_SUPER_INFO_OFFSET, SBREAD_DEFAULT);
930         is_btrfs = (ret >= 0);
931
932         /* scan other devices */
933         if (is_btrfs && total_devs > 1) {
934                 ret = btrfs_scan_devices();
935                 if (ret)
936                         return ret;
937         }
938
939         /* iterate over the list of currently mounted filesystems */
940         if ((f = setmntent ("/proc/self/mounts", "r")) == NULL)
941                 return -errno;
942
943         while ((mnt = getmntent (f)) != NULL) {
944                 if(is_btrfs) {
945                         if(strcmp(mnt->mnt_type, "btrfs") != 0)
946                                 continue;
947
948                         ret = blk_file_in_dev_list(fs_devices_mnt, mnt->mnt_fsname);
949                 } else {
950                         /* ignore entries in the mount table that are not
951                            associated with a file*/
952                         if((ret = is_existing_blk_or_reg_file(mnt->mnt_fsname)) < 0)
953                                 goto out_mntloop_err;
954                         else if(!ret)
955                                 continue;
956
957                         ret = is_same_loop_file(file, mnt->mnt_fsname);
958                 }
959
960                 if(ret < 0)
961                         goto out_mntloop_err;
962                 else if(ret)
963                         break;
964         }
965
966         /* Did we find an entry in mnt table? */
967         if (mnt && size && where) {
968                 strncpy(where, mnt->mnt_dir, size);
969                 where[size-1] = 0;
970         }
971         if (fs_dev_ret)
972                 *fs_dev_ret = fs_devices_mnt;
973
974         ret = (mnt != NULL);
975
976 out_mntloop_err:
977         endmntent (f);
978
979         return ret;
980 }
981
982 struct pending_dir {
983         struct list_head list;
984         char name[PATH_MAX];
985 };
986
987 int btrfs_register_one_device(const char *fname)
988 {
989         struct btrfs_ioctl_vol_args args;
990         int fd;
991         int ret;
992
993         fd = open("/dev/btrfs-control", O_RDWR);
994         if (fd < 0) {
995                 warning(
996         "failed to open /dev/btrfs-control, skipping device registration: %s",
997                         strerror(errno));
998                 return -errno;
999         }
1000         memset(&args, 0, sizeof(args));
1001         strncpy_null(args.name, fname);
1002         ret = ioctl(fd, BTRFS_IOC_SCAN_DEV, &args);
1003         if (ret < 0) {
1004                 error("device scan failed on '%s': %s", fname,
1005                                 strerror(errno));
1006                 ret = -errno;
1007         }
1008         close(fd);
1009         return ret;
1010 }
1011
1012 /*
1013  * Register all devices in the fs_uuid list created in the user
1014  * space. Ensure btrfs_scan_devices() is called before this func.
1015  */
1016 int btrfs_register_all_devices(void)
1017 {
1018         int err = 0;
1019         int ret = 0;
1020         struct btrfs_fs_devices *fs_devices;
1021         struct btrfs_device *device;
1022         struct list_head *all_uuids;
1023
1024         all_uuids = btrfs_scanned_uuids();
1025
1026         list_for_each_entry(fs_devices, all_uuids, list) {
1027                 list_for_each_entry(device, &fs_devices->devices, dev_list) {
1028                         if (*device->name)
1029                                 err = btrfs_register_one_device(device->name);
1030
1031                         if (err)
1032                                 ret++;
1033                 }
1034         }
1035
1036         return ret;
1037 }
1038
1039 int btrfs_device_already_in_root(struct btrfs_root *root, int fd,
1040                                  int super_offset)
1041 {
1042         struct btrfs_super_block *disk_super;
1043         char *buf;
1044         int ret = 0;
1045
1046         buf = malloc(BTRFS_SUPER_INFO_SIZE);
1047         if (!buf) {
1048                 ret = -ENOMEM;
1049                 goto out;
1050         }
1051         ret = pread(fd, buf, BTRFS_SUPER_INFO_SIZE, super_offset);
1052         if (ret != BTRFS_SUPER_INFO_SIZE)
1053                 goto brelse;
1054
1055         ret = 0;
1056         disk_super = (struct btrfs_super_block *)buf;
1057         /*
1058          * Accept devices from the same filesystem, allow partially created
1059          * structures.
1060          */
1061         if (btrfs_super_magic(disk_super) != BTRFS_MAGIC &&
1062                         btrfs_super_magic(disk_super) != BTRFS_MAGIC_PARTIAL)
1063                 goto brelse;
1064
1065         if (!memcmp(disk_super->fsid, root->fs_info->super_copy->fsid,
1066                     BTRFS_FSID_SIZE))
1067                 ret = 1;
1068 brelse:
1069         free(buf);
1070 out:
1071         return ret;
1072 }
1073
1074 /*
1075  * Note: this function uses a static per-thread buffer. Do not call this
1076  * function more than 10 times within one argument list!
1077  */
1078 const char *pretty_size_mode(u64 size, unsigned mode)
1079 {
1080         static __thread int ps_index = 0;
1081         static __thread char ps_array[10][32];
1082         char *ret;
1083
1084         ret = ps_array[ps_index];
1085         ps_index++;
1086         ps_index %= 10;
1087         (void)pretty_size_snprintf(size, ret, 32, mode);
1088
1089         return ret;
1090 }
1091
1092 static const char* unit_suffix_binary[] =
1093         { "B", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB"};
1094 static const char* unit_suffix_decimal[] =
1095         { "B", "kB", "MB", "GB", "TB", "PB", "EB"};
1096
1097 int pretty_size_snprintf(u64 size, char *str, size_t str_size, unsigned unit_mode)
1098 {
1099         int num_divs;
1100         float fraction;
1101         u64 base = 0;
1102         int mult = 0;
1103         const char** suffix = NULL;
1104         u64 last_size;
1105         int negative;
1106
1107         if (str_size == 0)
1108                 return 0;
1109
1110         negative = !!(unit_mode & UNITS_NEGATIVE);
1111         unit_mode &= ~UNITS_NEGATIVE;
1112
1113         if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_RAW) {
1114                 if (negative)
1115                         snprintf(str, str_size, "%lld", size);
1116                 else
1117                         snprintf(str, str_size, "%llu", size);
1118                 return 0;
1119         }
1120
1121         if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_BINARY) {
1122                 base = 1024;
1123                 mult = 1024;
1124                 suffix = unit_suffix_binary;
1125         } else if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_DECIMAL) {
1126                 base = 1000;
1127                 mult = 1000;
1128                 suffix = unit_suffix_decimal;
1129         }
1130
1131         /* Unknown mode */
1132         if (!base) {
1133                 fprintf(stderr, "INTERNAL ERROR: unknown unit base, mode %d\n",
1134                                 unit_mode);
1135                 assert(0);
1136                 return -1;
1137         }
1138
1139         num_divs = 0;
1140         last_size = size;
1141         switch (unit_mode & UNITS_MODE_MASK) {
1142         case UNITS_TBYTES: base *= mult; num_divs++;
1143         case UNITS_GBYTES: base *= mult; num_divs++;
1144         case UNITS_MBYTES: base *= mult; num_divs++;
1145         case UNITS_KBYTES: num_divs++;
1146                            break;
1147         case UNITS_BYTES:
1148                            base = 1;
1149                            num_divs = 0;
1150                            break;
1151         default:
1152                 if (negative) {
1153                         s64 ssize = (s64)size;
1154                         s64 last_ssize = ssize;
1155
1156                         while ((ssize < 0 ? -ssize : ssize) >= mult) {
1157                                 last_ssize = ssize;
1158                                 ssize /= mult;
1159                                 num_divs++;
1160                         }
1161                         last_size = (u64)last_ssize;
1162                 } else {
1163                         while (size >= mult) {
1164                                 last_size = size;
1165                                 size /= mult;
1166                                 num_divs++;
1167                         }
1168                 }
1169                 /*
1170                  * If the value is smaller than base, we didn't do any
1171                  * division, in that case, base should be 1, not original
1172                  * base, or the unit will be wrong
1173                  */
1174                 if (num_divs == 0)
1175                         base = 1;
1176         }
1177
1178         if (num_divs >= ARRAY_SIZE(unit_suffix_binary)) {
1179                 str[0] = '\0';
1180                 printf("INTERNAL ERROR: unsupported unit suffix, index %d\n",
1181                                 num_divs);
1182                 assert(0);
1183                 return -1;
1184         }
1185
1186         if (negative) {
1187                 fraction = (float)(s64)last_size / base;
1188         } else {
1189                 fraction = (float)last_size / base;
1190         }
1191
1192         return snprintf(str, str_size, "%.2f%s", fraction, suffix[num_divs]);
1193 }
1194
1195 /*
1196  * __strncpy_null - strncpy with null termination
1197  * @dest:       the target array
1198  * @src:        the source string
1199  * @n:          maximum bytes to copy (size of *dest)
1200  *
1201  * Like strncpy, but ensures destination is null-terminated.
1202  *
1203  * Copies the string pointed to by src, including the terminating null
1204  * byte ('\0'), to the buffer pointed to by dest, up to a maximum
1205  * of n bytes.  Then ensure that dest is null-terminated.
1206  */
1207 char *__strncpy_null(char *dest, const char *src, size_t n)
1208 {
1209         strncpy(dest, src, n);
1210         if (n > 0)
1211                 dest[n - 1] = '\0';
1212         return dest;
1213 }
1214
1215 /*
1216  * Checks to make sure that the label matches our requirements.
1217  * Returns:
1218        0    if everything is safe and usable
1219       -1    if the label is too long
1220  */
1221 static int check_label(const char *input)
1222 {
1223        int len = strlen(input);
1224
1225        if (len > BTRFS_LABEL_SIZE - 1) {
1226                 error("label %s is too long (max %d)", input,
1227                                 BTRFS_LABEL_SIZE - 1);
1228                return -1;
1229        }
1230
1231        return 0;
1232 }
1233
1234 static int set_label_unmounted(const char *dev, const char *label)
1235 {
1236         struct btrfs_trans_handle *trans;
1237         struct btrfs_root *root;
1238         int ret;
1239
1240         ret = check_mounted(dev);
1241         if (ret < 0) {
1242                error("checking mount status of %s failed: %d", dev, ret);
1243                return -1;
1244         }
1245         if (ret > 0) {
1246                 error("device %s is mounted, use mount point", dev);
1247                 return -1;
1248         }
1249
1250         /* Open the super_block at the default location
1251          * and as read-write.
1252          */
1253         root = open_ctree(dev, 0, OPEN_CTREE_WRITES);
1254         if (!root) /* errors are printed by open_ctree() */
1255                 return -1;
1256
1257         trans = btrfs_start_transaction(root, 1);
1258         BUG_ON(IS_ERR(trans));
1259         __strncpy_null(root->fs_info->super_copy->label, label, BTRFS_LABEL_SIZE - 1);
1260
1261         btrfs_commit_transaction(trans, root);
1262
1263         /* Now we close it since we are done. */
1264         close_ctree(root);
1265         return 0;
1266 }
1267
1268 static int set_label_mounted(const char *mount_path, const char *labelp)
1269 {
1270         int fd;
1271         char label[BTRFS_LABEL_SIZE];
1272
1273         fd = open(mount_path, O_RDONLY | O_NOATIME);
1274         if (fd < 0) {
1275                 error("unable to access %s: %s", mount_path, strerror(errno));
1276                 return -1;
1277         }
1278
1279         memset(label, 0, sizeof(label));
1280         __strncpy_null(label, labelp, BTRFS_LABEL_SIZE - 1);
1281         if (ioctl(fd, BTRFS_IOC_SET_FSLABEL, label) < 0) {
1282                 error("unable to set label of %s: %s", mount_path,
1283                                 strerror(errno));
1284                 close(fd);
1285                 return -1;
1286         }
1287
1288         close(fd);
1289         return 0;
1290 }
1291
1292 int get_label_unmounted(const char *dev, char *label)
1293 {
1294         struct btrfs_root *root;
1295         int ret;
1296
1297         ret = check_mounted(dev);
1298         if (ret < 0) {
1299                error("checking mount status of %s failed: %d", dev, ret);
1300                return -1;
1301         }
1302
1303         /* Open the super_block at the default location
1304          * and as read-only.
1305          */
1306         root = open_ctree(dev, 0, 0);
1307         if(!root)
1308                 return -1;
1309
1310         __strncpy_null(label, root->fs_info->super_copy->label,
1311                         BTRFS_LABEL_SIZE - 1);
1312
1313         /* Now we close it since we are done. */
1314         close_ctree(root);
1315         return 0;
1316 }
1317
1318 /*
1319  * If a partition is mounted, try to get the filesystem label via its
1320  * mounted path rather than device.  Return the corresponding error
1321  * the user specified the device path.
1322  */
1323 int get_label_mounted(const char *mount_path, char *labelp)
1324 {
1325         char label[BTRFS_LABEL_SIZE];
1326         int fd;
1327         int ret;
1328
1329         fd = open(mount_path, O_RDONLY | O_NOATIME);
1330         if (fd < 0) {
1331                 error("unable to access %s: %s", mount_path, strerror(errno));
1332                 return -1;
1333         }
1334
1335         memset(label, '\0', sizeof(label));
1336         ret = ioctl(fd, BTRFS_IOC_GET_FSLABEL, label);
1337         if (ret < 0) {
1338                 if (errno != ENOTTY)
1339                         error("unable to get label of %s: %s", mount_path,
1340                                         strerror(errno));
1341                 ret = -errno;
1342                 close(fd);
1343                 return ret;
1344         }
1345
1346         __strncpy_null(labelp, label, BTRFS_LABEL_SIZE - 1);
1347         close(fd);
1348         return 0;
1349 }
1350
1351 int get_label(const char *btrfs_dev, char *label)
1352 {
1353         int ret;
1354
1355         ret = is_existing_blk_or_reg_file(btrfs_dev);
1356         if (!ret)
1357                 ret = get_label_mounted(btrfs_dev, label);
1358         else if (ret > 0)
1359                 ret = get_label_unmounted(btrfs_dev, label);
1360
1361         return ret;
1362 }
1363
1364 int set_label(const char *btrfs_dev, const char *label)
1365 {
1366         int ret;
1367
1368         if (check_label(label))
1369                 return -1;
1370
1371         ret = is_existing_blk_or_reg_file(btrfs_dev);
1372         if (!ret)
1373                 ret = set_label_mounted(btrfs_dev, label);
1374         else if (ret > 0)
1375                 ret = set_label_unmounted(btrfs_dev, label);
1376
1377         return ret;
1378 }
1379
1380 /*
1381  * A not-so-good version fls64. No fascinating optimization since
1382  * no one except parse_size use it
1383  */
1384 static int fls64(u64 x)
1385 {
1386         int i;
1387
1388         for (i = 0; i <64; i++)
1389                 if (x << i & (1ULL << 63))
1390                         return 64 - i;
1391         return 64 - i;
1392 }
1393
1394 u64 parse_size(char *s)
1395 {
1396         char c;
1397         char *endptr;
1398         u64 mult = 1;
1399         u64 ret;
1400
1401         if (!s) {
1402                 error("size value is empty");
1403                 exit(1);
1404         }
1405         if (s[0] == '-') {
1406                 error("size value '%s' is less equal than 0", s);
1407                 exit(1);
1408         }
1409         ret = strtoull(s, &endptr, 10);
1410         if (endptr == s) {
1411                 error("size value '%s' is invalid", s);
1412                 exit(1);
1413         }
1414         if (endptr[0] && endptr[1]) {
1415                 error("illegal suffix contains character '%c' in wrong position",
1416                         endptr[1]);
1417                 exit(1);
1418         }
1419         /*
1420          * strtoll returns LLONG_MAX when overflow, if this happens,
1421          * need to call strtoull to get the real size
1422          */
1423         if (errno == ERANGE && ret == ULLONG_MAX) {
1424                 error("size value '%s' is too large for u64", s);
1425                 exit(1);
1426         }
1427         if (endptr[0]) {
1428                 c = tolower(endptr[0]);
1429                 switch (c) {
1430                 case 'e':
1431                         mult *= 1024;
1432                         /* fallthrough */
1433                 case 'p':
1434                         mult *= 1024;
1435                         /* fallthrough */
1436                 case 't':
1437                         mult *= 1024;
1438                         /* fallthrough */
1439                 case 'g':
1440                         mult *= 1024;
1441                         /* fallthrough */
1442                 case 'm':
1443                         mult *= 1024;
1444                         /* fallthrough */
1445                 case 'k':
1446                         mult *= 1024;
1447                         /* fallthrough */
1448                 case 'b':
1449                         break;
1450                 default:
1451                         error("unknown size descriptor '%c'", c);
1452                         exit(1);
1453                 }
1454         }
1455         /* Check whether ret * mult overflow */
1456         if (fls64(ret) + fls64(mult) - 1 > 64) {
1457                 error("size value '%s' is too large for u64", s);
1458                 exit(1);
1459         }
1460         ret *= mult;
1461         return ret;
1462 }
1463
1464 u64 parse_qgroupid(const char *p)
1465 {
1466         char *s = strchr(p, '/');
1467         const char *ptr_src_end = p + strlen(p);
1468         char *ptr_parse_end = NULL;
1469         u64 level;
1470         u64 id;
1471         int fd;
1472         int ret = 0;
1473
1474         if (p[0] == '/')
1475                 goto path;
1476
1477         /* Numeric format like '0/257' is the primary case */
1478         if (!s) {
1479                 id = strtoull(p, &ptr_parse_end, 10);
1480                 if (ptr_parse_end != ptr_src_end)
1481                         goto path;
1482                 return id;
1483         }
1484         level = strtoull(p, &ptr_parse_end, 10);
1485         if (ptr_parse_end != s)
1486                 goto path;
1487
1488         id = strtoull(s + 1, &ptr_parse_end, 10);
1489         if (ptr_parse_end != ptr_src_end)
1490                 goto  path;
1491
1492         return (level << BTRFS_QGROUP_LEVEL_SHIFT) | id;
1493
1494 path:
1495         /* Path format like subv at 'my_subvol' is the fallback case */
1496         ret = test_issubvolume(p);
1497         if (ret < 0 || !ret)
1498                 goto err;
1499         fd = open(p, O_RDONLY);
1500         if (fd < 0)
1501                 goto err;
1502         ret = lookup_path_rootid(fd, &id);
1503         if (ret)
1504                 error("failed to lookup root id: %s", strerror(-ret));
1505         close(fd);
1506         if (ret < 0)
1507                 goto err;
1508         return id;
1509
1510 err:
1511         error("invalid qgroupid or subvolume path: %s", p);
1512         exit(-1);
1513 }
1514
1515 int open_file_or_dir3(const char *fname, DIR **dirstream, int open_flags)
1516 {
1517         int ret;
1518         struct stat st;
1519         int fd;
1520
1521         ret = stat(fname, &st);
1522         if (ret < 0) {
1523                 return -1;
1524         }
1525         if (S_ISDIR(st.st_mode)) {
1526                 *dirstream = opendir(fname);
1527                 if (!*dirstream)
1528                         return -1;
1529                 fd = dirfd(*dirstream);
1530         } else if (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode)) {
1531                 fd = open(fname, open_flags);
1532         } else {
1533                 /*
1534                  * we set this on purpose, in case the caller output
1535                  * strerror(errno) as success
1536                  */
1537                 errno = EINVAL;
1538                 return -1;
1539         }
1540         if (fd < 0) {
1541                 fd = -1;
1542                 if (*dirstream) {
1543                         closedir(*dirstream);
1544                         *dirstream = NULL;
1545                 }
1546         }
1547         return fd;
1548 }
1549
1550 int open_file_or_dir(const char *fname, DIR **dirstream)
1551 {
1552         return open_file_or_dir3(fname, dirstream, O_RDWR);
1553 }
1554
1555 void close_file_or_dir(int fd, DIR *dirstream)
1556 {
1557         if (dirstream)
1558                 closedir(dirstream);
1559         else if (fd >= 0)
1560                 close(fd);
1561 }
1562
1563 int get_device_info(int fd, u64 devid,
1564                 struct btrfs_ioctl_dev_info_args *di_args)
1565 {
1566         int ret;
1567
1568         di_args->devid = devid;
1569         memset(&di_args->uuid, '\0', sizeof(di_args->uuid));
1570
1571         ret = ioctl(fd, BTRFS_IOC_DEV_INFO, di_args);
1572         return ret < 0 ? -errno : 0;
1573 }
1574
1575 static u64 find_max_device_id(struct btrfs_ioctl_search_args *search_args,
1576                               int nr_items)
1577 {
1578         struct btrfs_dev_item *dev_item;
1579         char *buf = search_args->buf;
1580
1581         buf += (nr_items - 1) * (sizeof(struct btrfs_ioctl_search_header)
1582                                        + sizeof(struct btrfs_dev_item));
1583         buf += sizeof(struct btrfs_ioctl_search_header);
1584
1585         dev_item = (struct btrfs_dev_item *)buf;
1586
1587         return btrfs_stack_device_id(dev_item);
1588 }
1589
1590 static int search_chunk_tree_for_fs_info(int fd,
1591                                 struct btrfs_ioctl_fs_info_args *fi_args)
1592 {
1593         int ret;
1594         int max_items;
1595         u64 start_devid = 1;
1596         struct btrfs_ioctl_search_args search_args;
1597         struct btrfs_ioctl_search_key *search_key = &search_args.key;
1598
1599         fi_args->num_devices = 0;
1600
1601         max_items = BTRFS_SEARCH_ARGS_BUFSIZE
1602                / (sizeof(struct btrfs_ioctl_search_header)
1603                                + sizeof(struct btrfs_dev_item));
1604
1605         search_key->tree_id = BTRFS_CHUNK_TREE_OBJECTID;
1606         search_key->min_objectid = BTRFS_DEV_ITEMS_OBJECTID;
1607         search_key->max_objectid = BTRFS_DEV_ITEMS_OBJECTID;
1608         search_key->min_type = BTRFS_DEV_ITEM_KEY;
1609         search_key->max_type = BTRFS_DEV_ITEM_KEY;
1610         search_key->min_transid = 0;
1611         search_key->max_transid = (u64)-1;
1612         search_key->nr_items = max_items;
1613         search_key->max_offset = (u64)-1;
1614
1615 again:
1616         search_key->min_offset = start_devid;
1617
1618         ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &search_args);
1619         if (ret < 0)
1620                 return -errno;
1621
1622         fi_args->num_devices += (u64)search_key->nr_items;
1623
1624         if (search_key->nr_items == max_items) {
1625                 start_devid = find_max_device_id(&search_args,
1626                                         search_key->nr_items) + 1;
1627                 goto again;
1628         }
1629
1630         /* get the lastest max_id to stay consistent with the num_devices */
1631         if (search_key->nr_items == 0)
1632                 /*
1633                  * last tree_search returns an empty buf, use the devid of
1634                  * the last dev_item of the previous tree_search
1635                  */
1636                 fi_args->max_id = start_devid - 1;
1637         else
1638                 fi_args->max_id = find_max_device_id(&search_args,
1639                                                 search_key->nr_items);
1640
1641         return 0;
1642 }
1643
1644 /*
1645  * For a given path, fill in the ioctl fs_ and info_ args.
1646  * If the path is a btrfs mountpoint, fill info for all devices.
1647  * If the path is a btrfs device, fill in only that device.
1648  *
1649  * The path provided must be either on a mounted btrfs fs,
1650  * or be a mounted btrfs device.
1651  *
1652  * Returns 0 on success, or a negative errno.
1653  */
1654 int get_fs_info(const char *path, struct btrfs_ioctl_fs_info_args *fi_args,
1655                 struct btrfs_ioctl_dev_info_args **di_ret)
1656 {
1657         int fd = -1;
1658         int ret = 0;
1659         int ndevs = 0;
1660         u64 last_devid = 0;
1661         int replacing = 0;
1662         struct btrfs_fs_devices *fs_devices_mnt = NULL;
1663         struct btrfs_ioctl_dev_info_args *di_args;
1664         struct btrfs_ioctl_dev_info_args tmp;
1665         char mp[PATH_MAX];
1666         DIR *dirstream = NULL;
1667
1668         memset(fi_args, 0, sizeof(*fi_args));
1669
1670         if (is_block_device(path) == 1) {
1671                 struct btrfs_super_block *disk_super;
1672                 char buf[BTRFS_SUPER_INFO_SIZE];
1673
1674                 /* Ensure it's mounted, then set path to the mountpoint */
1675                 fd = open(path, O_RDONLY);
1676                 if (fd < 0) {
1677                         ret = -errno;
1678                         error("cannot open %s: %s", path, strerror(errno));
1679                         goto out;
1680                 }
1681                 ret = check_mounted_where(fd, path, mp, sizeof(mp),
1682                                           &fs_devices_mnt);
1683                 if (!ret) {
1684                         ret = -EINVAL;
1685                         goto out;
1686                 }
1687                 if (ret < 0)
1688                         goto out;
1689                 path = mp;
1690                 /* Only fill in this one device */
1691                 fi_args->num_devices = 1;
1692
1693                 disk_super = (struct btrfs_super_block *)buf;
1694                 ret = btrfs_read_dev_super(fd, disk_super,
1695                                            BTRFS_SUPER_INFO_OFFSET, 0);
1696                 if (ret < 0) {
1697                         ret = -EIO;
1698                         goto out;
1699                 }
1700                 last_devid = btrfs_stack_device_id(&disk_super->dev_item);
1701                 fi_args->max_id = last_devid;
1702
1703                 memcpy(fi_args->fsid, fs_devices_mnt->fsid, BTRFS_FSID_SIZE);
1704                 close(fd);
1705         }
1706
1707         /* at this point path must not be for a block device */
1708         fd = open_file_or_dir(path, &dirstream);
1709         if (fd < 0) {
1710                 ret = -errno;
1711                 goto out;
1712         }
1713
1714         /* fill in fi_args if not just a single device */
1715         if (fi_args->num_devices != 1) {
1716                 ret = ioctl(fd, BTRFS_IOC_FS_INFO, fi_args);
1717                 if (ret < 0) {
1718                         ret = -errno;
1719                         goto out;
1720                 }
1721
1722                 /*
1723                  * The fs_args->num_devices does not include seed devices
1724                  */
1725                 ret = search_chunk_tree_for_fs_info(fd, fi_args);
1726                 if (ret)
1727                         goto out;
1728
1729                 /*
1730                  * search_chunk_tree_for_fs_info() will lacks the devid 0
1731                  * so manual probe for it here.
1732                  */
1733                 ret = get_device_info(fd, 0, &tmp);
1734                 if (!ret) {
1735                         fi_args->num_devices++;
1736                         ndevs++;
1737                         replacing = 1;
1738                         if (last_devid == 0)
1739                                 last_devid++;
1740                 }
1741         }
1742
1743         if (!fi_args->num_devices)
1744                 goto out;
1745
1746         di_args = *di_ret = malloc((fi_args->num_devices) * sizeof(*di_args));
1747         if (!di_args) {
1748                 ret = -errno;
1749                 goto out;
1750         }
1751
1752         if (replacing)
1753                 memcpy(di_args, &tmp, sizeof(tmp));
1754         for (; last_devid <= fi_args->max_id; last_devid++) {
1755                 ret = get_device_info(fd, last_devid, &di_args[ndevs]);
1756                 if (ret == -ENODEV)
1757                         continue;
1758                 if (ret)
1759                         goto out;
1760                 ndevs++;
1761         }
1762
1763         /*
1764         * only when the only dev we wanted to find is not there then
1765         * let any error be returned
1766         */
1767         if (fi_args->num_devices != 1) {
1768                 BUG_ON(ndevs == 0);
1769                 ret = 0;
1770         }
1771
1772 out:
1773         close_file_or_dir(fd, dirstream);
1774         return ret;
1775 }
1776
1777 int get_fsid(const char *path, u8 *fsid, int silent)
1778 {
1779         int ret;
1780         int fd;
1781         struct btrfs_ioctl_fs_info_args args;
1782
1783         fd = open(path, O_RDONLY);
1784         if (fd < 0) {
1785                 ret = -errno;
1786                 if (!silent)
1787                         error("failed to open %s: %s", path,
1788                                 strerror(-ret));
1789                 goto out;
1790         }
1791
1792         ret = ioctl(fd, BTRFS_IOC_FS_INFO, &args);
1793         if (ret < 0) {
1794                 ret = -errno;
1795                 goto out;
1796         }
1797
1798         memcpy(fsid, args.fsid, BTRFS_FSID_SIZE);
1799         ret = 0;
1800
1801 out:
1802         if (fd != -1)
1803                 close(fd);
1804         return ret;
1805 }
1806
1807 int is_seen_fsid(u8 *fsid, struct seen_fsid *seen_fsid_hash[])
1808 {
1809         u8 hash = fsid[0];
1810         int slot = hash % SEEN_FSID_HASH_SIZE;
1811         struct seen_fsid *seen = seen_fsid_hash[slot];
1812
1813         while (seen) {
1814                 if (memcmp(seen->fsid, fsid, BTRFS_FSID_SIZE) == 0)
1815                         return 1;
1816
1817                 seen = seen->next;
1818         }
1819
1820         return 0;
1821 }
1822
1823 int add_seen_fsid(u8 *fsid, struct seen_fsid *seen_fsid_hash[],
1824                 int fd, DIR *dirstream)
1825 {
1826         u8 hash = fsid[0];
1827         int slot = hash % SEEN_FSID_HASH_SIZE;
1828         struct seen_fsid *seen = seen_fsid_hash[slot];
1829         struct seen_fsid *alloc;
1830
1831         if (!seen)
1832                 goto insert;
1833
1834         while (1) {
1835                 if (memcmp(seen->fsid, fsid, BTRFS_FSID_SIZE) == 0)
1836                         return -EEXIST;
1837
1838                 if (!seen->next)
1839                         break;
1840
1841                 seen = seen->next;
1842         }
1843
1844 insert:
1845         alloc = malloc(sizeof(*alloc));
1846         if (!alloc)
1847                 return -ENOMEM;
1848
1849         alloc->next = NULL;
1850         memcpy(alloc->fsid, fsid, BTRFS_FSID_SIZE);
1851         alloc->fd = fd;
1852         alloc->dirstream = dirstream;
1853
1854         if (seen)
1855                 seen->next = alloc;
1856         else
1857                 seen_fsid_hash[slot] = alloc;
1858
1859         return 0;
1860 }
1861
1862 void free_seen_fsid(struct seen_fsid *seen_fsid_hash[])
1863 {
1864         int slot;
1865         struct seen_fsid *seen;
1866         struct seen_fsid *next;
1867
1868         for (slot = 0; slot < SEEN_FSID_HASH_SIZE; slot++) {
1869                 seen = seen_fsid_hash[slot];
1870                 while (seen) {
1871                         next = seen->next;
1872                         close_file_or_dir(seen->fd, seen->dirstream);
1873                         free(seen);
1874                         seen = next;
1875                 }
1876                 seen_fsid_hash[slot] = NULL;
1877         }
1878 }
1879
1880 static int group_profile_devs_min(u64 flag)
1881 {
1882         switch (flag & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
1883         case 0: /* single */
1884         case BTRFS_BLOCK_GROUP_DUP:
1885                 return 1;
1886         case BTRFS_BLOCK_GROUP_RAID0:
1887         case BTRFS_BLOCK_GROUP_RAID1:
1888         case BTRFS_BLOCK_GROUP_RAID5:
1889                 return 2;
1890         case BTRFS_BLOCK_GROUP_RAID6:
1891                 return 3;
1892         case BTRFS_BLOCK_GROUP_RAID10:
1893                 return 4;
1894         default:
1895                 return -1;
1896         }
1897 }
1898
1899 int test_num_disk_vs_raid(u64 metadata_profile, u64 data_profile,
1900         u64 dev_cnt, int mixed, int ssd)
1901 {
1902         u64 allowed = 0;
1903         u64 profile = metadata_profile | data_profile;
1904
1905         switch (dev_cnt) {
1906         default:
1907         case 4:
1908                 allowed |= BTRFS_BLOCK_GROUP_RAID10;
1909         case 3:
1910                 allowed |= BTRFS_BLOCK_GROUP_RAID6;
1911         case 2:
1912                 allowed |= BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1 |
1913                         BTRFS_BLOCK_GROUP_RAID5;
1914         case 1:
1915                 allowed |= BTRFS_BLOCK_GROUP_DUP;
1916         }
1917
1918         if (dev_cnt > 1 && profile & BTRFS_BLOCK_GROUP_DUP) {
1919                 warning("DUP is not recommended on filesystem with multiple devices");
1920         }
1921         if (metadata_profile & ~allowed) {
1922                 fprintf(stderr,
1923                         "ERROR: unable to create FS with metadata profile %s "
1924                         "(have %llu devices but %d devices are required)\n",
1925                         btrfs_group_profile_str(metadata_profile), dev_cnt,
1926                         group_profile_devs_min(metadata_profile));
1927                 return 1;
1928         }
1929         if (data_profile & ~allowed) {
1930                 fprintf(stderr,
1931                         "ERROR: unable to create FS with data profile %s "
1932                         "(have %llu devices but %d devices are required)\n",
1933                         btrfs_group_profile_str(data_profile), dev_cnt,
1934                         group_profile_devs_min(data_profile));
1935                 return 1;
1936         }
1937
1938         if (dev_cnt == 3 && profile & BTRFS_BLOCK_GROUP_RAID6) {
1939                 warning("RAID6 is not recommended on filesystem with 3 devices only");
1940         }
1941         if (dev_cnt == 2 && profile & BTRFS_BLOCK_GROUP_RAID5) {
1942                 warning("RAID5 is not recommended on filesystem with 2 devices only");
1943         }
1944         warning_on(!mixed && (data_profile & BTRFS_BLOCK_GROUP_DUP) && ssd,
1945                    "DUP may not actually lead to 2 copies on the device, see manual page");
1946
1947         return 0;
1948 }
1949
1950 int group_profile_max_safe_loss(u64 flags)
1951 {
1952         switch (flags & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
1953         case 0: /* single */
1954         case BTRFS_BLOCK_GROUP_DUP:
1955         case BTRFS_BLOCK_GROUP_RAID0:
1956                 return 0;
1957         case BTRFS_BLOCK_GROUP_RAID1:
1958         case BTRFS_BLOCK_GROUP_RAID5:
1959         case BTRFS_BLOCK_GROUP_RAID10:
1960                 return 1;
1961         case BTRFS_BLOCK_GROUP_RAID6:
1962                 return 2;
1963         default:
1964                 return -1;
1965         }
1966 }
1967
1968 int btrfs_scan_devices(void)
1969 {
1970         int fd = -1;
1971         int ret;
1972         u64 num_devices;
1973         struct btrfs_fs_devices *tmp_devices;
1974         blkid_dev_iterate iter = NULL;
1975         blkid_dev dev = NULL;
1976         blkid_cache cache = NULL;
1977         char path[PATH_MAX];
1978
1979         if (btrfs_scan_done)
1980                 return 0;
1981
1982         if (blkid_get_cache(&cache, NULL) < 0) {
1983                 error("blkid cache get failed");
1984                 return 1;
1985         }
1986         blkid_probe_all(cache);
1987         iter = blkid_dev_iterate_begin(cache);
1988         blkid_dev_set_search(iter, "TYPE", "btrfs");
1989         while (blkid_dev_next(iter, &dev) == 0) {
1990                 dev = blkid_verify(cache, dev);
1991                 if (!dev)
1992                         continue;
1993                 /* if we are here its definitely a btrfs disk*/
1994                 strncpy_null(path, blkid_dev_devname(dev));
1995
1996                 fd = open(path, O_RDONLY);
1997                 if (fd < 0) {
1998                         error("cannot open %s: %s", path, strerror(errno));
1999                         continue;
2000                 }
2001                 ret = btrfs_scan_one_device(fd, path, &tmp_devices,
2002                                 &num_devices, BTRFS_SUPER_INFO_OFFSET,
2003                                 SBREAD_DEFAULT);
2004                 if (ret) {
2005                         error("cannot scan %s: %s", path, strerror(-ret));
2006                         close (fd);
2007                         continue;
2008                 }
2009
2010                 close(fd);
2011         }
2012         blkid_dev_iterate_end(iter);
2013         blkid_put_cache(cache);
2014
2015         btrfs_scan_done = 1;
2016
2017         return 0;
2018 }
2019
2020 /*
2021  * This reads a line from the stdin and only returns non-zero if the
2022  * first whitespace delimited token is a case insensitive match with yes
2023  * or y.
2024  */
2025 int ask_user(const char *question)
2026 {
2027         char buf[30] = {0,};
2028         char *saveptr = NULL;
2029         char *answer;
2030
2031         printf("%s [y/N]: ", question);
2032
2033         return fgets(buf, sizeof(buf) - 1, stdin) &&
2034                (answer = strtok_r(buf, " \t\n\r", &saveptr)) &&
2035                (!strcasecmp(answer, "yes") || !strcasecmp(answer, "y"));
2036 }
2037
2038 /*
2039  * return 0 if a btrfs mount point is found
2040  * return 1 if a mount point is found but not btrfs
2041  * return <0 if something goes wrong
2042  */
2043 int find_mount_root(const char *path, char **mount_root)
2044 {
2045         FILE *mnttab;
2046         int fd;
2047         struct mntent *ent;
2048         int len;
2049         int ret;
2050         int not_btrfs = 1;
2051         int longest_matchlen = 0;
2052         char *longest_match = NULL;
2053
2054         fd = open(path, O_RDONLY | O_NOATIME);
2055         if (fd < 0)
2056                 return -errno;
2057         close(fd);
2058
2059         mnttab = setmntent("/proc/self/mounts", "r");
2060         if (!mnttab)
2061                 return -errno;
2062
2063         while ((ent = getmntent(mnttab))) {
2064                 len = strlen(ent->mnt_dir);
2065                 if (strncmp(ent->mnt_dir, path, len) == 0) {
2066                         /* match found and use the latest match */
2067                         if (longest_matchlen <= len) {
2068                                 free(longest_match);
2069                                 longest_matchlen = len;
2070                                 longest_match = strdup(ent->mnt_dir);
2071                                 not_btrfs = strcmp(ent->mnt_type, "btrfs");
2072                         }
2073                 }
2074         }
2075         endmntent(mnttab);
2076
2077         if (!longest_match)
2078                 return -ENOENT;
2079         if (not_btrfs) {
2080                 free(longest_match);
2081                 return 1;
2082         }
2083
2084         ret = 0;
2085         *mount_root = realpath(longest_match, NULL);
2086         if (!*mount_root)
2087                 ret = -errno;
2088
2089         free(longest_match);
2090         return ret;
2091 }
2092
2093 /*
2094  * Test if path is a directory
2095  * Returns:
2096  *   0 - path exists but it is not a directory
2097  *   1 - path exists and it is a directory
2098  * < 0 - error
2099  */
2100 int test_isdir(const char *path)
2101 {
2102         struct stat st;
2103         int ret;
2104
2105         ret = stat(path, &st);
2106         if (ret < 0)
2107                 return -errno;
2108
2109         return !!S_ISDIR(st.st_mode);
2110 }
2111
2112 void units_set_mode(unsigned *units, unsigned mode)
2113 {
2114         unsigned base = *units & UNITS_MODE_MASK;
2115
2116         *units = base | mode;
2117 }
2118
2119 void units_set_base(unsigned *units, unsigned base)
2120 {
2121         unsigned mode = *units & ~UNITS_MODE_MASK;
2122
2123         *units = base | mode;
2124 }
2125
2126 int find_next_key(struct btrfs_path *path, struct btrfs_key *key)
2127 {
2128         int level;
2129
2130         for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
2131                 if (!path->nodes[level])
2132                         break;
2133                 if (path->slots[level] + 1 >=
2134                     btrfs_header_nritems(path->nodes[level]))
2135                         continue;
2136                 if (level == 0)
2137                         btrfs_item_key_to_cpu(path->nodes[level], key,
2138                                               path->slots[level] + 1);
2139                 else
2140                         btrfs_node_key_to_cpu(path->nodes[level], key,
2141                                               path->slots[level] + 1);
2142                 return 0;
2143         }
2144         return 1;
2145 }
2146
2147 const char* btrfs_group_type_str(u64 flag)
2148 {
2149         u64 mask = BTRFS_BLOCK_GROUP_TYPE_MASK |
2150                 BTRFS_SPACE_INFO_GLOBAL_RSV;
2151
2152         switch (flag & mask) {
2153         case BTRFS_BLOCK_GROUP_DATA:
2154                 return "Data";
2155         case BTRFS_BLOCK_GROUP_SYSTEM:
2156                 return "System";
2157         case BTRFS_BLOCK_GROUP_METADATA:
2158                 return "Metadata";
2159         case BTRFS_BLOCK_GROUP_DATA|BTRFS_BLOCK_GROUP_METADATA:
2160                 return "Data+Metadata";
2161         case BTRFS_SPACE_INFO_GLOBAL_RSV:
2162                 return "GlobalReserve";
2163         default:
2164                 return "unknown";
2165         }
2166 }
2167
2168 const char* btrfs_group_profile_str(u64 flag)
2169 {
2170         switch (flag & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
2171         case 0:
2172                 return "single";
2173         case BTRFS_BLOCK_GROUP_RAID0:
2174                 return "RAID0";
2175         case BTRFS_BLOCK_GROUP_RAID1:
2176                 return "RAID1";
2177         case BTRFS_BLOCK_GROUP_RAID5:
2178                 return "RAID5";
2179         case BTRFS_BLOCK_GROUP_RAID6:
2180                 return "RAID6";
2181         case BTRFS_BLOCK_GROUP_DUP:
2182                 return "DUP";
2183         case BTRFS_BLOCK_GROUP_RAID10:
2184                 return "RAID10";
2185         default:
2186                 return "unknown";
2187         }
2188 }
2189
2190 u64 disk_size(const char *path)
2191 {
2192         struct statfs sfs;
2193
2194         if (statfs(path, &sfs) < 0)
2195                 return 0;
2196         else
2197                 return sfs.f_bsize * sfs.f_blocks;
2198 }
2199
2200 u64 get_partition_size(const char *dev)
2201 {
2202         u64 result;
2203         int fd = open(dev, O_RDONLY);
2204
2205         if (fd < 0)
2206                 return 0;
2207         if (ioctl(fd, BLKGETSIZE64, &result) < 0) {
2208                 close(fd);
2209                 return 0;
2210         }
2211         close(fd);
2212
2213         return result;
2214 }
2215
2216 /*
2217  * Check if the BTRFS_IOC_TREE_SEARCH_V2 ioctl is supported on a given
2218  * filesystem, opened at fd
2219  */
2220 int btrfs_tree_search2_ioctl_supported(int fd)
2221 {
2222         struct btrfs_ioctl_search_args_v2 *args2;
2223         struct btrfs_ioctl_search_key *sk;
2224         int args2_size = 1024;
2225         char args2_buf[args2_size];
2226         int ret;
2227
2228         args2 = (struct btrfs_ioctl_search_args_v2 *)args2_buf;
2229         sk = &(args2->key);
2230
2231         /*
2232          * Search for the extent tree item in the root tree.
2233          */
2234         sk->tree_id = BTRFS_ROOT_TREE_OBJECTID;
2235         sk->min_objectid = BTRFS_EXTENT_TREE_OBJECTID;
2236         sk->max_objectid = BTRFS_EXTENT_TREE_OBJECTID;
2237         sk->min_type = BTRFS_ROOT_ITEM_KEY;
2238         sk->max_type = BTRFS_ROOT_ITEM_KEY;
2239         sk->min_offset = 0;
2240         sk->max_offset = (u64)-1;
2241         sk->min_transid = 0;
2242         sk->max_transid = (u64)-1;
2243         sk->nr_items = 1;
2244         args2->buf_size = args2_size - sizeof(struct btrfs_ioctl_search_args_v2);
2245         ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH_V2, args2);
2246         if (ret == -EOPNOTSUPP)
2247                 return 0;
2248         else if (ret == 0)
2249                 return 1;
2250         return ret;
2251 }
2252
2253 int btrfs_check_nodesize(u32 nodesize, u32 sectorsize, u64 features)
2254 {
2255         if (nodesize < sectorsize) {
2256                 error("illegal nodesize %u (smaller than %u)",
2257                                 nodesize, sectorsize);
2258                 return -1;
2259         } else if (nodesize > BTRFS_MAX_METADATA_BLOCKSIZE) {
2260                 error("illegal nodesize %u (larger than %u)",
2261                         nodesize, BTRFS_MAX_METADATA_BLOCKSIZE);
2262                 return -1;
2263         } else if (nodesize & (sectorsize - 1)) {
2264                 error("illegal nodesize %u (not aligned to %u)",
2265                         nodesize, sectorsize);
2266                 return -1;
2267         } else if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS &&
2268                    nodesize != sectorsize) {
2269                 error("illegal nodesize %u (not equal to %u for mixed block group)",
2270                         nodesize, sectorsize);
2271                 return -1;
2272         }
2273         return 0;
2274 }
2275
2276 /*
2277  * Copy a path argument from SRC to DEST and check the SRC length if it's at
2278  * most PATH_MAX and fits into DEST. DESTLEN is supposed to be exact size of
2279  * the buffer.
2280  * The destination buffer is zero terminated.
2281  * Return < 0 for error, 0 otherwise.
2282  */
2283 int arg_copy_path(char *dest, const char *src, int destlen)
2284 {
2285         size_t len = strlen(src);
2286
2287         if (len >= PATH_MAX || len >= destlen)
2288                 return -ENAMETOOLONG;
2289
2290         __strncpy_null(dest, src, destlen);
2291
2292         return 0;
2293 }
2294
2295 unsigned int get_unit_mode_from_arg(int *argc, char *argv[], int df_mode)
2296 {
2297         unsigned int unit_mode = UNITS_DEFAULT;
2298         int arg_i;
2299         int arg_end;
2300
2301         for (arg_i = 0; arg_i < *argc; arg_i++) {
2302                 if (!strcmp(argv[arg_i], "--"))
2303                         break;
2304
2305                 if (!strcmp(argv[arg_i], "--raw")) {
2306                         unit_mode = UNITS_RAW;
2307                         argv[arg_i] = NULL;
2308                         continue;
2309                 }
2310                 if (!strcmp(argv[arg_i], "--human-readable")) {
2311                         unit_mode = UNITS_HUMAN_BINARY;
2312                         argv[arg_i] = NULL;
2313                         continue;
2314                 }
2315
2316                 if (!strcmp(argv[arg_i], "--iec")) {
2317                         units_set_mode(&unit_mode, UNITS_BINARY);
2318                         argv[arg_i] = NULL;
2319                         continue;
2320                 }
2321                 if (!strcmp(argv[arg_i], "--si")) {
2322                         units_set_mode(&unit_mode, UNITS_DECIMAL);
2323                         argv[arg_i] = NULL;
2324                         continue;
2325                 }
2326
2327                 if (!strcmp(argv[arg_i], "--kbytes")) {
2328                         units_set_base(&unit_mode, UNITS_KBYTES);
2329                         argv[arg_i] = NULL;
2330                         continue;
2331                 }
2332                 if (!strcmp(argv[arg_i], "--mbytes")) {
2333                         units_set_base(&unit_mode, UNITS_MBYTES);
2334                         argv[arg_i] = NULL;
2335                         continue;
2336                 }
2337                 if (!strcmp(argv[arg_i], "--gbytes")) {
2338                         units_set_base(&unit_mode, UNITS_GBYTES);
2339                         argv[arg_i] = NULL;
2340                         continue;
2341                 }
2342                 if (!strcmp(argv[arg_i], "--tbytes")) {
2343                         units_set_base(&unit_mode, UNITS_TBYTES);
2344                         argv[arg_i] = NULL;
2345                         continue;
2346                 }
2347
2348                 if (!df_mode)
2349                         continue;
2350
2351                 if (!strcmp(argv[arg_i], "-b")) {
2352                         unit_mode = UNITS_RAW;
2353                         argv[arg_i] = NULL;
2354                         continue;
2355                 }
2356                 if (!strcmp(argv[arg_i], "-h")) {
2357                         unit_mode = UNITS_HUMAN_BINARY;
2358                         argv[arg_i] = NULL;
2359                         continue;
2360                 }
2361                 if (!strcmp(argv[arg_i], "-H")) {
2362                         unit_mode = UNITS_HUMAN_DECIMAL;
2363                         argv[arg_i] = NULL;
2364                         continue;
2365                 }
2366                 if (!strcmp(argv[arg_i], "-k")) {
2367                         units_set_base(&unit_mode, UNITS_KBYTES);
2368                         argv[arg_i] = NULL;
2369                         continue;
2370                 }
2371                 if (!strcmp(argv[arg_i], "-m")) {
2372                         units_set_base(&unit_mode, UNITS_MBYTES);
2373                         argv[arg_i] = NULL;
2374                         continue;
2375                 }
2376                 if (!strcmp(argv[arg_i], "-g")) {
2377                         units_set_base(&unit_mode, UNITS_GBYTES);
2378                         argv[arg_i] = NULL;
2379                         continue;
2380                 }
2381                 if (!strcmp(argv[arg_i], "-t")) {
2382                         units_set_base(&unit_mode, UNITS_TBYTES);
2383                         argv[arg_i] = NULL;
2384                         continue;
2385                 }
2386         }
2387
2388         for (arg_i = 0, arg_end = 0; arg_i < *argc; arg_i++) {
2389                 if (!argv[arg_i])
2390                         continue;
2391                 argv[arg_end] = argv[arg_i];
2392                 arg_end++;
2393         }
2394
2395         *argc = arg_end;
2396
2397         return unit_mode;
2398 }
2399
2400 u64 div_factor(u64 num, int factor)
2401 {
2402         if (factor == 10)
2403                 return num;
2404         num *= factor;
2405         num /= 10;
2406         return num;
2407 }
2408 /*
2409  * Get the length of the string converted from a u64 number.
2410  *
2411  * Result is equal to log10(num) + 1, but without the use of math library.
2412  */
2413 int count_digits(u64 num)
2414 {
2415         int ret = 0;
2416
2417         if (num == 0)
2418                 return 1;
2419         while (num > 0) {
2420                 ret++;
2421                 num /= 10;
2422         }
2423         return ret;
2424 }
2425
2426 int string_is_numerical(const char *str)
2427 {
2428         if (!str)
2429                 return 0;
2430         if (!(*str >= '0' && *str <= '9'))
2431                 return 0;
2432         while (*str >= '0' && *str <= '9')
2433                 str++;
2434         if (*str != '\0')
2435                 return 0;
2436         return 1;
2437 }
2438
2439 int prefixcmp(const char *str, const char *prefix)
2440 {
2441         for (; ; str++, prefix++)
2442                 if (!*prefix)
2443                         return 0;
2444                 else if (*str != *prefix)
2445                         return (unsigned char)*prefix - (unsigned char)*str;
2446 }
2447
2448 /* Subvolume helper functions */
2449 /*
2450  * test if name is a correct subvolume name
2451  * this function return
2452  * 0-> name is not a correct subvolume name
2453  * 1-> name is a correct subvolume name
2454  */
2455 int test_issubvolname(const char *name)
2456 {
2457         return name[0] != '\0' && !strchr(name, '/') &&
2458                 strcmp(name, ".") && strcmp(name, "..");
2459 }
2460
2461 /*
2462  * Test if path is a subvolume
2463  * Returns:
2464  *   0 - path exists but it is not a subvolume
2465  *   1 - path exists and it is  a subvolume
2466  * < 0 - error
2467  */
2468 int test_issubvolume(const char *path)
2469 {
2470         struct stat     st;
2471         struct statfs stfs;
2472         int             res;
2473
2474         res = stat(path, &st);
2475         if (res < 0)
2476                 return -errno;
2477
2478         if (st.st_ino != BTRFS_FIRST_FREE_OBJECTID || !S_ISDIR(st.st_mode))
2479                 return 0;
2480
2481         res = statfs(path, &stfs);
2482         if (res < 0)
2483                 return -errno;
2484
2485         return (int)stfs.f_type == BTRFS_SUPER_MAGIC;
2486 }
2487
2488 const char *subvol_strip_mountpoint(const char *mnt, const char *full_path)
2489 {
2490         int len = strlen(mnt);
2491         if (!len)
2492                 return full_path;
2493
2494         if (mnt[len - 1] != '/')
2495                 len += 1;
2496
2497         return full_path + len;
2498 }
2499
2500 /*
2501  * Returns
2502  * <0: Std error
2503  * 0: All fine
2504  * 1: Error; and error info printed to the terminal. Fixme.
2505  * 2: If the fullpath is root tree instead of subvol tree
2506  */
2507 int get_subvol_info(const char *fullpath, struct root_info *get_ri)
2508 {
2509         u64 sv_id;
2510         int ret = 1;
2511         int fd = -1;
2512         int mntfd = -1;
2513         char *mnt = NULL;
2514         const char *svpath = NULL;
2515         DIR *dirstream1 = NULL;
2516         DIR *dirstream2 = NULL;
2517
2518         ret = test_issubvolume(fullpath);
2519         if (ret < 0)
2520                 return ret;
2521         if (!ret) {
2522                 error("not a subvolume: %s", fullpath);
2523                 return 1;
2524         }
2525
2526         ret = find_mount_root(fullpath, &mnt);
2527         if (ret < 0)
2528                 return ret;
2529         if (ret > 0) {
2530                 error("%s doesn't belong to btrfs mount point", fullpath);
2531                 return 1;
2532         }
2533         ret = 1;
2534         svpath = subvol_strip_mountpoint(mnt, fullpath);
2535
2536         fd = btrfs_open_dir(fullpath, &dirstream1, 1);
2537         if (fd < 0)
2538                 goto out;
2539
2540         ret = btrfs_list_get_path_rootid(fd, &sv_id);
2541         if (ret)
2542                 goto out;
2543
2544         mntfd = btrfs_open_dir(mnt, &dirstream2, 1);
2545         if (mntfd < 0)
2546                 goto out;
2547
2548         memset(get_ri, 0, sizeof(*get_ri));
2549         get_ri->root_id = sv_id;
2550
2551         if (sv_id == BTRFS_FS_TREE_OBJECTID)
2552                 ret = btrfs_get_toplevel_subvol(mntfd, get_ri);
2553         else
2554                 ret = btrfs_get_subvol(mntfd, get_ri);
2555         if (ret)
2556                 error("can't find '%s': %d", svpath, ret);
2557
2558 out:
2559         close_file_or_dir(mntfd, dirstream2);
2560         close_file_or_dir(fd, dirstream1);
2561         free(mnt);
2562
2563         return ret;
2564 }
2565
2566 int get_subvol_info_by_rootid(const char *mnt, struct root_info *get_ri, u64 r_id)
2567 {
2568         int fd;
2569         int ret;
2570         DIR *dirstream = NULL;
2571
2572         fd = btrfs_open_dir(mnt, &dirstream, 1);
2573         if (fd < 0)
2574                 return -EINVAL;
2575
2576         memset(get_ri, 0, sizeof(*get_ri));
2577         get_ri->root_id = r_id;
2578
2579         if (r_id == BTRFS_FS_TREE_OBJECTID)
2580                 ret = btrfs_get_toplevel_subvol(fd, get_ri);
2581         else
2582                 ret = btrfs_get_subvol(fd, get_ri);
2583
2584         if (ret)
2585                 error("can't find rootid '%llu' on '%s': %d", r_id, mnt, ret);
2586
2587         close_file_or_dir(fd, dirstream);
2588
2589         return ret;
2590 }
2591
2592 int get_subvol_info_by_uuid(const char *mnt, struct root_info *get_ri, u8 *uuid_arg)
2593 {
2594         int fd;
2595         int ret;
2596         DIR *dirstream = NULL;
2597
2598         fd = btrfs_open_dir(mnt, &dirstream, 1);
2599         if (fd < 0)
2600                 return -EINVAL;
2601
2602         memset(get_ri, 0, sizeof(*get_ri));
2603         uuid_copy(get_ri->uuid, uuid_arg);
2604
2605         ret = btrfs_get_subvol(fd, get_ri);
2606         if (ret) {
2607                 char uuid_parsed[BTRFS_UUID_UNPARSED_SIZE];
2608                 uuid_unparse(uuid_arg, uuid_parsed);
2609                 error("can't find uuid '%s' on '%s': %d",
2610                                         uuid_parsed, mnt, ret);
2611         }
2612
2613         close_file_or_dir(fd, dirstream);
2614
2615         return ret;
2616 }
2617
2618 /* Set the seed manually */
2619 void init_rand_seed(u64 seed)
2620 {
2621         int i;
2622
2623         /* only use the last 48 bits */
2624         for (i = 0; i < 3; i++) {
2625                 rand_seed[i] = (unsigned short)(seed ^ (unsigned short)(-1));
2626                 seed >>= 16;
2627         }
2628         rand_seed_initlized = 1;
2629 }
2630
2631 static void __init_seed(void)
2632 {
2633         struct timeval tv;
2634         int ret;
2635         int fd;
2636
2637         if(rand_seed_initlized)
2638                 return;
2639         /* Use urandom as primary seed source. */
2640         fd = open("/dev/urandom", O_RDONLY);
2641         if (fd >= 0) {
2642                 ret = read(fd, rand_seed, sizeof(rand_seed));
2643                 close(fd);
2644                 if (ret < sizeof(rand_seed))
2645                         goto fallback;
2646         } else {
2647 fallback:
2648                 /* Use time and pid as fallback seed */
2649                 warning("failed to read /dev/urandom, use time and pid as random seed");
2650                 gettimeofday(&tv, 0);
2651                 rand_seed[0] = getpid() ^ (tv.tv_sec & 0xFFFF);
2652                 rand_seed[1] = getppid() ^ (tv.tv_usec & 0xFFFF);
2653                 rand_seed[2] = (tv.tv_sec ^ tv.tv_usec) >> 16;
2654         }
2655         rand_seed_initlized = 1;
2656 }
2657
2658 u32 rand_u32(void)
2659 {
2660         __init_seed();
2661         /*
2662          * Don't use nrand48, its range is [0,2^31) The highest bit will alwasy
2663          * be 0.  Use jrand48 to include the highest bit.
2664          */
2665         return (u32)jrand48(rand_seed);
2666 }
2667
2668 /* Return random number in range [0, upper) */
2669 unsigned int rand_range(unsigned int upper)
2670 {
2671         __init_seed();
2672         /*
2673          * Use the full 48bits to mod, which would be more uniformly
2674          * distributed
2675          */
2676         return (unsigned int)(jrand48(rand_seed) % upper);
2677 }
2678
2679 int rand_int(void)
2680 {
2681         return (int)(rand_u32());
2682 }
2683
2684 u64 rand_u64(void)
2685 {
2686         u64 ret = 0;
2687
2688         ret += rand_u32();
2689         ret <<= 32;
2690         ret += rand_u32();
2691         return ret;
2692 }
2693
2694 u16 rand_u16(void)
2695 {
2696         return (u16)(rand_u32());
2697 }
2698
2699 u8 rand_u8(void)
2700 {
2701         return (u8)(rand_u32());
2702 }
2703
2704 void btrfs_config_init(void)
2705 {
2706 }
2707
2708 /* Returns total size of main memory in bytes, -1UL if error. */
2709 unsigned long total_memory(void)
2710 {
2711         struct sysinfo si;
2712
2713         if (sysinfo(&si) < 0) {
2714                 error("can't determine memory size");
2715                 return -1UL;
2716         }
2717         return si.totalram * si.mem_unit;       /* bytes */
2718 }
2719
2720 void print_device_info(struct btrfs_device *device, char *prefix)
2721 {
2722         if (prefix)
2723                 printf("%s", prefix);
2724         printf("Device: id = %llu, name = %s\n",
2725                device->devid, device->name);
2726 }
2727
2728 void print_all_devices(struct list_head *devices)
2729 {
2730         struct btrfs_device *dev;
2731
2732         printf("All Devices:\n");
2733         list_for_each_entry(dev, devices, dev_list)
2734                 print_device_info(dev, "\t");
2735         printf("\n");
2736 }