btrfs-progs: improve error messages after failed wiping
[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 <uuid/uuid.h>
28 #include <fcntl.h>
29 #include <unistd.h>
30 #include <mntent.h>
31 #include <ctype.h>
32 #include <linux/loop.h>
33 #include <linux/major.h>
34 #include <linux/kdev_t.h>
35 #include <limits.h>
36 #include <blkid/blkid.h>
37 #include <sys/vfs.h>
38 #include <sys/statfs.h>
39 #include <linux/magic.h>
40 #include <getopt.h>
41
42 #include "kerncompat.h"
43 #include "radix-tree.h"
44 #include "ctree.h"
45 #include "disk-io.h"
46 #include "transaction.h"
47 #include "crc32c.h"
48 #include "utils.h"
49 #include "volumes.h"
50 #include "ioctl.h"
51 #include "commands.h"
52
53 #ifndef BLKDISCARD
54 #define BLKDISCARD      _IO(0x12,119)
55 #endif
56
57 static int btrfs_scan_done = 0;
58
59 static char argv0_buf[ARGV0_BUF_SIZE] = "btrfs";
60
61 const char *get_argv0_buf(void)
62 {
63         return argv0_buf;
64 }
65
66 void fixup_argv0(char **argv, const char *token)
67 {
68         int len = strlen(argv0_buf);
69
70         snprintf(argv0_buf + len, sizeof(argv0_buf) - len, " %s", token);
71         argv[0] = argv0_buf;
72 }
73
74 void set_argv0(char **argv)
75 {
76         strncpy(argv0_buf, argv[0], sizeof(argv0_buf));
77         argv0_buf[sizeof(argv0_buf) - 1] = 0;
78 }
79
80 int check_argc_exact(int nargs, int expected)
81 {
82         if (nargs < expected)
83                 fprintf(stderr, "%s: too few arguments\n", argv0_buf);
84         if (nargs > expected)
85                 fprintf(stderr, "%s: too many arguments\n", argv0_buf);
86
87         return nargs != expected;
88 }
89
90 int check_argc_min(int nargs, int expected)
91 {
92         if (nargs < expected) {
93                 fprintf(stderr, "%s: too few arguments\n", argv0_buf);
94                 return 1;
95         }
96
97         return 0;
98 }
99
100 int check_argc_max(int nargs, int expected)
101 {
102         if (nargs > expected) {
103                 fprintf(stderr, "%s: too many arguments\n", argv0_buf);
104                 return 1;
105         }
106
107         return 0;
108 }
109
110
111 /*
112  * Discard the given range in one go
113  */
114 static int discard_range(int fd, u64 start, u64 len)
115 {
116         u64 range[2] = { start, len };
117
118         if (ioctl(fd, BLKDISCARD, &range) < 0)
119                 return errno;
120         return 0;
121 }
122
123 /*
124  * Discard blocks in the given range in 1G chunks, the process is interruptible
125  */
126 static int discard_blocks(int fd, u64 start, u64 len)
127 {
128         while (len > 0) {
129                 /* 1G granularity */
130                 u64 chunk_size = min_t(u64, len, 1*1024*1024*1024);
131                 int ret;
132
133                 ret = discard_range(fd, start, chunk_size);
134                 if (ret)
135                         return ret;
136                 len -= chunk_size;
137                 start += chunk_size;
138         }
139
140         return 0;
141 }
142
143 static u64 reference_root_table[] = {
144         [1] =   BTRFS_ROOT_TREE_OBJECTID,
145         [2] =   BTRFS_EXTENT_TREE_OBJECTID,
146         [3] =   BTRFS_CHUNK_TREE_OBJECTID,
147         [4] =   BTRFS_DEV_TREE_OBJECTID,
148         [5] =   BTRFS_FS_TREE_OBJECTID,
149         [6] =   BTRFS_CSUM_TREE_OBJECTID,
150 };
151
152 int test_uuid_unique(char *fs_uuid)
153 {
154         int unique = 1;
155         blkid_dev_iterate iter = NULL;
156         blkid_dev dev = NULL;
157         blkid_cache cache = NULL;
158
159         if (blkid_get_cache(&cache, NULL) < 0) {
160                 printf("ERROR: lblkid cache get failed\n");
161                 return 1;
162         }
163         blkid_probe_all(cache);
164         iter = blkid_dev_iterate_begin(cache);
165         blkid_dev_set_search(iter, "UUID", fs_uuid);
166
167         while (blkid_dev_next(iter, &dev) == 0) {
168                 dev = blkid_verify(cache, dev);
169                 if (dev) {
170                         unique = 0;
171                         break;
172                 }
173         }
174
175         blkid_dev_iterate_end(iter);
176         blkid_put_cache(cache);
177
178         return unique;
179 }
180
181 /*
182  * @fs_uuid - if NULL, generates a UUID, returns back the new filesystem UUID
183  */
184 int make_btrfs(int fd, struct btrfs_mkfs_config *cfg)
185 {
186         struct btrfs_super_block super;
187         struct extent_buffer *buf;
188         struct btrfs_root_item root_item;
189         struct btrfs_disk_key disk_key;
190         struct btrfs_extent_item *extent_item;
191         struct btrfs_inode_item *inode_item;
192         struct btrfs_chunk *chunk;
193         struct btrfs_dev_item *dev_item;
194         struct btrfs_dev_extent *dev_extent;
195         u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
196         u8 *ptr;
197         int i;
198         int ret;
199         u32 itemoff;
200         u32 nritems = 0;
201         u64 first_free;
202         u64 ref_root;
203         u32 array_size;
204         u32 item_size;
205         int skinny_metadata = !!(cfg->features &
206                                  BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA);
207         u64 num_bytes;
208
209         buf = malloc(sizeof(*buf) + max(cfg->sectorsize, cfg->nodesize));
210         if (!buf)
211                 return -ENOMEM;
212
213         first_free = BTRFS_SUPER_INFO_OFFSET + cfg->sectorsize * 2 - 1;
214         first_free &= ~((u64)cfg->sectorsize - 1);
215
216         memset(&super, 0, sizeof(super));
217
218         num_bytes = (cfg->num_bytes / cfg->sectorsize) * cfg->sectorsize;
219         if (cfg->fs_uuid && *cfg->fs_uuid) {
220                 if (uuid_parse(cfg->fs_uuid, super.fsid) != 0) {
221                         fprintf(stderr, "could not parse UUID: %s\n",
222                                 cfg->fs_uuid);
223                         ret = -EINVAL;
224                         goto out;
225                 }
226                 if (!test_uuid_unique(cfg->fs_uuid)) {
227                         fprintf(stderr, "non-unique UUID: %s\n", cfg->fs_uuid);
228                         ret = -EBUSY;
229                         goto out;
230                 }
231         } else {
232                 uuid_generate(super.fsid);
233                 if (cfg->fs_uuid)
234                         uuid_unparse(super.fsid, cfg->fs_uuid);
235         }
236         uuid_generate(super.dev_item.uuid);
237         uuid_generate(chunk_tree_uuid);
238
239         btrfs_set_super_bytenr(&super, cfg->blocks[0]);
240         btrfs_set_super_num_devices(&super, 1);
241         btrfs_set_super_magic(&super, BTRFS_MAGIC);
242         btrfs_set_super_generation(&super, 1);
243         btrfs_set_super_root(&super, cfg->blocks[1]);
244         btrfs_set_super_chunk_root(&super, cfg->blocks[3]);
245         btrfs_set_super_total_bytes(&super, num_bytes);
246         btrfs_set_super_bytes_used(&super, 6 * cfg->nodesize);
247         btrfs_set_super_sectorsize(&super, cfg->sectorsize);
248         btrfs_set_super_leafsize(&super, cfg->nodesize);
249         btrfs_set_super_nodesize(&super, cfg->nodesize);
250         btrfs_set_super_stripesize(&super, cfg->stripesize);
251         btrfs_set_super_csum_type(&super, BTRFS_CSUM_TYPE_CRC32);
252         btrfs_set_super_chunk_root_generation(&super, 1);
253         btrfs_set_super_cache_generation(&super, -1);
254         btrfs_set_super_incompat_flags(&super, cfg->features);
255         if (cfg->label)
256                 strncpy(super.label, cfg->label, BTRFS_LABEL_SIZE - 1);
257
258         /* create the tree of root objects */
259         memset(buf->data, 0, cfg->nodesize);
260         buf->len = cfg->nodesize;
261         btrfs_set_header_bytenr(buf, cfg->blocks[1]);
262         btrfs_set_header_nritems(buf, 4);
263         btrfs_set_header_generation(buf, 1);
264         btrfs_set_header_backref_rev(buf, BTRFS_MIXED_BACKREF_REV);
265         btrfs_set_header_owner(buf, BTRFS_ROOT_TREE_OBJECTID);
266         write_extent_buffer(buf, super.fsid, btrfs_header_fsid(),
267                             BTRFS_FSID_SIZE);
268
269         write_extent_buffer(buf, chunk_tree_uuid,
270                             btrfs_header_chunk_tree_uuid(buf),
271                             BTRFS_UUID_SIZE);
272
273         /* create the items for the root tree */
274         memset(&root_item, 0, sizeof(root_item));
275         inode_item = &root_item.inode;
276         btrfs_set_stack_inode_generation(inode_item, 1);
277         btrfs_set_stack_inode_size(inode_item, 3);
278         btrfs_set_stack_inode_nlink(inode_item, 1);
279         btrfs_set_stack_inode_nbytes(inode_item, cfg->nodesize);
280         btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
281         btrfs_set_root_refs(&root_item, 1);
282         btrfs_set_root_used(&root_item, cfg->nodesize);
283         btrfs_set_root_generation(&root_item, 1);
284
285         memset(&disk_key, 0, sizeof(disk_key));
286         btrfs_set_disk_key_type(&disk_key, BTRFS_ROOT_ITEM_KEY);
287         btrfs_set_disk_key_offset(&disk_key, 0);
288         nritems = 0;
289
290         itemoff = __BTRFS_LEAF_DATA_SIZE(cfg->nodesize) - sizeof(root_item);
291         btrfs_set_root_bytenr(&root_item, cfg->blocks[2]);
292         btrfs_set_disk_key_objectid(&disk_key, BTRFS_EXTENT_TREE_OBJECTID);
293         btrfs_set_item_key(buf, &disk_key, nritems);
294         btrfs_set_item_offset(buf, btrfs_item_nr(nritems), itemoff);
295         btrfs_set_item_size(buf, btrfs_item_nr(nritems),
296                             sizeof(root_item));
297         write_extent_buffer(buf, &root_item, btrfs_item_ptr_offset(buf,
298                             nritems), sizeof(root_item));
299         nritems++;
300
301         itemoff = itemoff - sizeof(root_item);
302         btrfs_set_root_bytenr(&root_item, cfg->blocks[4]);
303         btrfs_set_disk_key_objectid(&disk_key, BTRFS_DEV_TREE_OBJECTID);
304         btrfs_set_item_key(buf, &disk_key, nritems);
305         btrfs_set_item_offset(buf, btrfs_item_nr(nritems), itemoff);
306         btrfs_set_item_size(buf, btrfs_item_nr(nritems),
307                             sizeof(root_item));
308         write_extent_buffer(buf, &root_item,
309                             btrfs_item_ptr_offset(buf, nritems),
310                             sizeof(root_item));
311         nritems++;
312
313         itemoff = itemoff - sizeof(root_item);
314         btrfs_set_root_bytenr(&root_item, cfg->blocks[5]);
315         btrfs_set_disk_key_objectid(&disk_key, BTRFS_FS_TREE_OBJECTID);
316         btrfs_set_item_key(buf, &disk_key, nritems);
317         btrfs_set_item_offset(buf, btrfs_item_nr(nritems), itemoff);
318         btrfs_set_item_size(buf, btrfs_item_nr(nritems),
319                             sizeof(root_item));
320         write_extent_buffer(buf, &root_item,
321                             btrfs_item_ptr_offset(buf, nritems),
322                             sizeof(root_item));
323         nritems++;
324
325         itemoff = itemoff - sizeof(root_item);
326         btrfs_set_root_bytenr(&root_item, cfg->blocks[6]);
327         btrfs_set_disk_key_objectid(&disk_key, BTRFS_CSUM_TREE_OBJECTID);
328         btrfs_set_item_key(buf, &disk_key, nritems);
329         btrfs_set_item_offset(buf, btrfs_item_nr(nritems), itemoff);
330         btrfs_set_item_size(buf, btrfs_item_nr(nritems),
331                             sizeof(root_item));
332         write_extent_buffer(buf, &root_item,
333                             btrfs_item_ptr_offset(buf, nritems),
334                             sizeof(root_item));
335         nritems++;
336
337
338         csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
339         ret = pwrite(fd, buf->data, cfg->nodesize, cfg->blocks[1]);
340         if (ret != cfg->nodesize) {
341                 ret = (ret < 0 ? -errno : -EIO);
342                 goto out;
343         }
344
345         /* create the items for the extent tree */
346         memset(buf->data + sizeof(struct btrfs_header), 0,
347                 cfg->nodesize - sizeof(struct btrfs_header));
348         nritems = 0;
349         itemoff = __BTRFS_LEAF_DATA_SIZE(cfg->nodesize);
350         for (i = 1; i < 7; i++) {
351                 item_size = sizeof(struct btrfs_extent_item);
352                 if (!skinny_metadata)
353                         item_size += sizeof(struct btrfs_tree_block_info);
354
355                 BUG_ON(cfg->blocks[i] < first_free);
356                 BUG_ON(cfg->blocks[i] < cfg->blocks[i - 1]);
357
358                 /* create extent item */
359                 itemoff -= item_size;
360                 btrfs_set_disk_key_objectid(&disk_key, cfg->blocks[i]);
361                 if (skinny_metadata) {
362                         btrfs_set_disk_key_type(&disk_key,
363                                                 BTRFS_METADATA_ITEM_KEY);
364                         btrfs_set_disk_key_offset(&disk_key, 0);
365                 } else {
366                         btrfs_set_disk_key_type(&disk_key,
367                                                 BTRFS_EXTENT_ITEM_KEY);
368                         btrfs_set_disk_key_offset(&disk_key, cfg->nodesize);
369                 }
370                 btrfs_set_item_key(buf, &disk_key, nritems);
371                 btrfs_set_item_offset(buf, btrfs_item_nr(nritems),
372                                       itemoff);
373                 btrfs_set_item_size(buf, btrfs_item_nr(nritems),
374                                     item_size);
375                 extent_item = btrfs_item_ptr(buf, nritems,
376                                              struct btrfs_extent_item);
377                 btrfs_set_extent_refs(buf, extent_item, 1);
378                 btrfs_set_extent_generation(buf, extent_item, 1);
379                 btrfs_set_extent_flags(buf, extent_item,
380                                        BTRFS_EXTENT_FLAG_TREE_BLOCK);
381                 nritems++;
382
383                 /* create extent ref */
384                 ref_root = reference_root_table[i];
385                 btrfs_set_disk_key_objectid(&disk_key, cfg->blocks[i]);
386                 btrfs_set_disk_key_offset(&disk_key, ref_root);
387                 btrfs_set_disk_key_type(&disk_key, BTRFS_TREE_BLOCK_REF_KEY);
388                 btrfs_set_item_key(buf, &disk_key, nritems);
389                 btrfs_set_item_offset(buf, btrfs_item_nr(nritems),
390                                       itemoff);
391                 btrfs_set_item_size(buf, btrfs_item_nr(nritems), 0);
392                 nritems++;
393         }
394         btrfs_set_header_bytenr(buf, cfg->blocks[2]);
395         btrfs_set_header_owner(buf, BTRFS_EXTENT_TREE_OBJECTID);
396         btrfs_set_header_nritems(buf, nritems);
397         csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
398         ret = pwrite(fd, buf->data, cfg->nodesize, cfg->blocks[2]);
399         if (ret != cfg->nodesize) {
400                 ret = (ret < 0 ? -errno : -EIO);
401                 goto out;
402         }
403
404         /* create the chunk tree */
405         memset(buf->data + sizeof(struct btrfs_header), 0,
406                 cfg->nodesize - sizeof(struct btrfs_header));
407         nritems = 0;
408         item_size = sizeof(*dev_item);
409         itemoff = __BTRFS_LEAF_DATA_SIZE(cfg->nodesize) - item_size;
410
411         /* first device 1 (there is no device 0) */
412         btrfs_set_disk_key_objectid(&disk_key, BTRFS_DEV_ITEMS_OBJECTID);
413         btrfs_set_disk_key_offset(&disk_key, 1);
414         btrfs_set_disk_key_type(&disk_key, BTRFS_DEV_ITEM_KEY);
415         btrfs_set_item_key(buf, &disk_key, nritems);
416         btrfs_set_item_offset(buf, btrfs_item_nr(nritems), itemoff);
417         btrfs_set_item_size(buf, btrfs_item_nr(nritems), item_size);
418
419         dev_item = btrfs_item_ptr(buf, nritems, struct btrfs_dev_item);
420         btrfs_set_device_id(buf, dev_item, 1);
421         btrfs_set_device_generation(buf, dev_item, 0);
422         btrfs_set_device_total_bytes(buf, dev_item, num_bytes);
423         btrfs_set_device_bytes_used(buf, dev_item,
424                                     BTRFS_MKFS_SYSTEM_GROUP_SIZE);
425         btrfs_set_device_io_align(buf, dev_item, cfg->sectorsize);
426         btrfs_set_device_io_width(buf, dev_item, cfg->sectorsize);
427         btrfs_set_device_sector_size(buf, dev_item, cfg->sectorsize);
428         btrfs_set_device_type(buf, dev_item, 0);
429
430         write_extent_buffer(buf, super.dev_item.uuid,
431                             (unsigned long)btrfs_device_uuid(dev_item),
432                             BTRFS_UUID_SIZE);
433         write_extent_buffer(buf, super.fsid,
434                             (unsigned long)btrfs_device_fsid(dev_item),
435                             BTRFS_UUID_SIZE);
436         read_extent_buffer(buf, &super.dev_item, (unsigned long)dev_item,
437                            sizeof(*dev_item));
438
439         nritems++;
440         item_size = btrfs_chunk_item_size(1);
441         itemoff = itemoff - item_size;
442
443         /* then we have chunk 0 */
444         btrfs_set_disk_key_objectid(&disk_key, BTRFS_FIRST_CHUNK_TREE_OBJECTID);
445         btrfs_set_disk_key_offset(&disk_key, 0);
446         btrfs_set_disk_key_type(&disk_key, BTRFS_CHUNK_ITEM_KEY);
447         btrfs_set_item_key(buf, &disk_key, nritems);
448         btrfs_set_item_offset(buf, btrfs_item_nr(nritems), itemoff);
449         btrfs_set_item_size(buf, btrfs_item_nr(nritems), item_size);
450
451         chunk = btrfs_item_ptr(buf, nritems, struct btrfs_chunk);
452         btrfs_set_chunk_length(buf, chunk, BTRFS_MKFS_SYSTEM_GROUP_SIZE);
453         btrfs_set_chunk_owner(buf, chunk, BTRFS_EXTENT_TREE_OBJECTID);
454         btrfs_set_chunk_stripe_len(buf, chunk, 64 * 1024);
455         btrfs_set_chunk_type(buf, chunk, BTRFS_BLOCK_GROUP_SYSTEM);
456         btrfs_set_chunk_io_align(buf, chunk, cfg->sectorsize);
457         btrfs_set_chunk_io_width(buf, chunk, cfg->sectorsize);
458         btrfs_set_chunk_sector_size(buf, chunk, cfg->sectorsize);
459         btrfs_set_chunk_num_stripes(buf, chunk, 1);
460         btrfs_set_stripe_devid_nr(buf, chunk, 0, 1);
461         btrfs_set_stripe_offset_nr(buf, chunk, 0, 0);
462         nritems++;
463
464         write_extent_buffer(buf, super.dev_item.uuid,
465                             (unsigned long)btrfs_stripe_dev_uuid(&chunk->stripe),
466                             BTRFS_UUID_SIZE);
467
468         /* copy the key for the chunk to the system array */
469         ptr = super.sys_chunk_array;
470         array_size = sizeof(disk_key);
471
472         memcpy(ptr, &disk_key, sizeof(disk_key));
473         ptr += sizeof(disk_key);
474
475         /* copy the chunk to the system array */
476         read_extent_buffer(buf, ptr, (unsigned long)chunk, item_size);
477         array_size += item_size;
478         ptr += item_size;
479         btrfs_set_super_sys_array_size(&super, array_size);
480
481         btrfs_set_header_bytenr(buf, cfg->blocks[3]);
482         btrfs_set_header_owner(buf, BTRFS_CHUNK_TREE_OBJECTID);
483         btrfs_set_header_nritems(buf, nritems);
484         csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
485         ret = pwrite(fd, buf->data, cfg->nodesize, cfg->blocks[3]);
486         if (ret != cfg->nodesize) {
487                 ret = (ret < 0 ? -errno : -EIO);
488                 goto out;
489         }
490
491         /* create the device tree */
492         memset(buf->data + sizeof(struct btrfs_header), 0,
493                 cfg->nodesize - sizeof(struct btrfs_header));
494         nritems = 0;
495         itemoff = __BTRFS_LEAF_DATA_SIZE(cfg->nodesize) -
496                 sizeof(struct btrfs_dev_extent);
497
498         btrfs_set_disk_key_objectid(&disk_key, 1);
499         btrfs_set_disk_key_offset(&disk_key, 0);
500         btrfs_set_disk_key_type(&disk_key, BTRFS_DEV_EXTENT_KEY);
501         btrfs_set_item_key(buf, &disk_key, nritems);
502         btrfs_set_item_offset(buf, btrfs_item_nr(nritems), itemoff);
503         btrfs_set_item_size(buf, btrfs_item_nr(nritems),
504                             sizeof(struct btrfs_dev_extent));
505         dev_extent = btrfs_item_ptr(buf, nritems, struct btrfs_dev_extent);
506         btrfs_set_dev_extent_chunk_tree(buf, dev_extent,
507                                         BTRFS_CHUNK_TREE_OBJECTID);
508         btrfs_set_dev_extent_chunk_objectid(buf, dev_extent,
509                                         BTRFS_FIRST_CHUNK_TREE_OBJECTID);
510         btrfs_set_dev_extent_chunk_offset(buf, dev_extent, 0);
511
512         write_extent_buffer(buf, chunk_tree_uuid,
513                     (unsigned long)btrfs_dev_extent_chunk_tree_uuid(dev_extent),
514                     BTRFS_UUID_SIZE);
515
516         btrfs_set_dev_extent_length(buf, dev_extent,
517                                     BTRFS_MKFS_SYSTEM_GROUP_SIZE);
518         nritems++;
519
520         btrfs_set_header_bytenr(buf, cfg->blocks[4]);
521         btrfs_set_header_owner(buf, BTRFS_DEV_TREE_OBJECTID);
522         btrfs_set_header_nritems(buf, nritems);
523         csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
524         ret = pwrite(fd, buf->data, cfg->nodesize, cfg->blocks[4]);
525         if (ret != cfg->nodesize) {
526                 ret = (ret < 0 ? -errno : -EIO);
527                 goto out;
528         }
529
530         /* create the FS root */
531         memset(buf->data + sizeof(struct btrfs_header), 0,
532                 cfg->nodesize - sizeof(struct btrfs_header));
533         btrfs_set_header_bytenr(buf, cfg->blocks[5]);
534         btrfs_set_header_owner(buf, BTRFS_FS_TREE_OBJECTID);
535         btrfs_set_header_nritems(buf, 0);
536         csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
537         ret = pwrite(fd, buf->data, cfg->nodesize, cfg->blocks[5]);
538         if (ret != cfg->nodesize) {
539                 ret = (ret < 0 ? -errno : -EIO);
540                 goto out;
541         }
542         /* finally create the csum root */
543         memset(buf->data + sizeof(struct btrfs_header), 0,
544                 cfg->nodesize - sizeof(struct btrfs_header));
545         btrfs_set_header_bytenr(buf, cfg->blocks[6]);
546         btrfs_set_header_owner(buf, BTRFS_CSUM_TREE_OBJECTID);
547         btrfs_set_header_nritems(buf, 0);
548         csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
549         ret = pwrite(fd, buf->data, cfg->nodesize, cfg->blocks[6]);
550         if (ret != cfg->nodesize) {
551                 ret = (ret < 0 ? -errno : -EIO);
552                 goto out;
553         }
554
555         /* and write out the super block */
556         BUG_ON(sizeof(super) > cfg->sectorsize);
557         memset(buf->data, 0, BTRFS_SUPER_INFO_SIZE);
558         memcpy(buf->data, &super, sizeof(super));
559         buf->len = BTRFS_SUPER_INFO_SIZE;
560         csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
561         ret = pwrite(fd, buf->data, BTRFS_SUPER_INFO_SIZE, cfg->blocks[0]);
562         if (ret != BTRFS_SUPER_INFO_SIZE) {
563                 ret = (ret < 0 ? -errno : -EIO);
564                 goto out;
565         }
566
567         ret = 0;
568
569 out:
570         free(buf);
571         return ret;
572 }
573
574 static const struct btrfs_fs_feature {
575         const char *name;
576         u64 flag;
577         const char *desc;
578 } mkfs_features[] = {
579         { "mixed-bg", BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS,
580                 "mixed data and metadata block groups" },
581         { "extref", BTRFS_FEATURE_INCOMPAT_EXTENDED_IREF,
582                 "increased hardlink limit per file to 65536" },
583         { "raid56", BTRFS_FEATURE_INCOMPAT_RAID56,
584                 "raid56 extended format" },
585         { "skinny-metadata", BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA,
586                 "reduced-size metadata extent refs" },
587         { "no-holes", BTRFS_FEATURE_INCOMPAT_NO_HOLES,
588                 "no explicit hole extents for files" },
589         /* Keep this one last */
590         { "list-all", BTRFS_FEATURE_LIST_ALL, NULL }
591 };
592
593 static int parse_one_fs_feature(const char *name, u64 *flags)
594 {
595         int i;
596         int found = 0;
597
598         for (i = 0; i < ARRAY_SIZE(mkfs_features); i++) {
599                 if (name[0] == '^' &&
600                         !strcmp(mkfs_features[i].name, name + 1)) {
601                         *flags &= ~ mkfs_features[i].flag;
602                         found = 1;
603                 } else if (!strcmp(mkfs_features[i].name, name)) {
604                         *flags |= mkfs_features[i].flag;
605                         found = 1;
606                 }
607         }
608
609         return !found;
610 }
611
612 void btrfs_parse_features_to_string(char *buf, u64 flags)
613 {
614         int i;
615
616         buf[0] = 0;
617
618         for (i = 0; i < ARRAY_SIZE(mkfs_features); i++) {
619                 if (flags & mkfs_features[i].flag) {
620                         if (*buf)
621                                 strcat(buf, ", ");
622                         strcat(buf, mkfs_features[i].name);
623                 }
624         }
625 }
626
627 void btrfs_process_fs_features(u64 flags)
628 {
629         int i;
630
631         for (i = 0; i < ARRAY_SIZE(mkfs_features); i++) {
632                 if (flags & mkfs_features[i].flag) {
633                         printf("Turning ON incompat feature '%s': %s\n",
634                                 mkfs_features[i].name,
635                                 mkfs_features[i].desc);
636                 }
637         }
638 }
639
640 void btrfs_list_all_fs_features(u64 mask_disallowed)
641 {
642         int i;
643
644         fprintf(stderr, "Filesystem features available:\n");
645         for (i = 0; i < ARRAY_SIZE(mkfs_features) - 1; i++) {
646                 char *is_default = "";
647
648                 if (mkfs_features[i].flag & mask_disallowed)
649                         continue;
650                 if (mkfs_features[i].flag & BTRFS_MKFS_DEFAULT_FEATURES)
651                         is_default = ", default";
652                 fprintf(stderr, "%-20s- %s (0x%llx%s)\n",
653                                 mkfs_features[i].name,
654                                 mkfs_features[i].desc,
655                                 mkfs_features[i].flag,
656                                 is_default);
657         }
658 }
659
660 /*
661  * Return NULL if all features were parsed fine, otherwise return the name of
662  * the first unparsed.
663  */
664 char* btrfs_parse_fs_features(char *namelist, u64 *flags)
665 {
666         char *this_char;
667         char *save_ptr = NULL; /* Satisfy static checkers */
668
669         for (this_char = strtok_r(namelist, ",", &save_ptr);
670              this_char != NULL;
671              this_char = strtok_r(NULL, ",", &save_ptr)) {
672                 if (parse_one_fs_feature(this_char, flags))
673                         return this_char;
674         }
675
676         return NULL;
677 }
678
679 u64 btrfs_device_size(int fd, struct stat *st)
680 {
681         u64 size;
682         if (S_ISREG(st->st_mode)) {
683                 return st->st_size;
684         }
685         if (!S_ISBLK(st->st_mode)) {
686                 return 0;
687         }
688         if (ioctl(fd, BLKGETSIZE64, &size) >= 0) {
689                 return size;
690         }
691         return 0;
692 }
693
694 static int zero_blocks(int fd, off_t start, size_t len)
695 {
696         char *buf = malloc(len);
697         int ret = 0;
698         ssize_t written;
699
700         if (!buf)
701                 return -ENOMEM;
702         memset(buf, 0, len);
703         written = pwrite(fd, buf, len, start);
704         if (written != len)
705                 ret = -EIO;
706         free(buf);
707         return ret;
708 }
709
710 #define ZERO_DEV_BYTES (2 * 1024 * 1024)
711
712 /* don't write outside the device by clamping the region to the device size */
713 static int zero_dev_clamped(int fd, off_t start, ssize_t len, u64 dev_size)
714 {
715         off_t end = max(start, start + len);
716
717 #ifdef __sparc__
718         /* and don't overwrite the disk labels on sparc */
719         start = max(start, 1024);
720         end = max(end, 1024);
721 #endif
722
723         start = min_t(u64, start, dev_size);
724         end = min_t(u64, end, dev_size);
725
726         return zero_blocks(fd, start, end - start);
727 }
728
729 int btrfs_add_to_fsid(struct btrfs_trans_handle *trans,
730                       struct btrfs_root *root, int fd, char *path,
731                       u64 device_total_bytes, u32 io_width, u32 io_align,
732                       u32 sectorsize)
733 {
734         struct btrfs_super_block *disk_super;
735         struct btrfs_super_block *super = root->fs_info->super_copy;
736         struct btrfs_device *device;
737         struct btrfs_dev_item *dev_item;
738         char *buf = NULL;
739         u64 fs_total_bytes;
740         u64 num_devs;
741         int ret;
742
743         device_total_bytes = (device_total_bytes / sectorsize) * sectorsize;
744
745         device = kzalloc(sizeof(*device), GFP_NOFS);
746         if (!device)
747                 goto err_nomem;
748         buf = kzalloc(sectorsize, GFP_NOFS);
749         if (!buf)
750                 goto err_nomem;
751         BUG_ON(sizeof(*disk_super) > sectorsize);
752
753         disk_super = (struct btrfs_super_block *)buf;
754         dev_item = &disk_super->dev_item;
755
756         uuid_generate(device->uuid);
757         device->devid = 0;
758         device->type = 0;
759         device->io_width = io_width;
760         device->io_align = io_align;
761         device->sector_size = sectorsize;
762         device->fd = fd;
763         device->writeable = 1;
764         device->total_bytes = device_total_bytes;
765         device->bytes_used = 0;
766         device->total_ios = 0;
767         device->dev_root = root->fs_info->dev_root;
768         device->name = strdup(path);
769         if (!device->name)
770                 goto err_nomem;
771
772         INIT_LIST_HEAD(&device->dev_list);
773         ret = btrfs_add_device(trans, root, device);
774         BUG_ON(ret);
775
776         fs_total_bytes = btrfs_super_total_bytes(super) + device_total_bytes;
777         btrfs_set_super_total_bytes(super, fs_total_bytes);
778
779         num_devs = btrfs_super_num_devices(super) + 1;
780         btrfs_set_super_num_devices(super, num_devs);
781
782         memcpy(disk_super, super, sizeof(*disk_super));
783
784         btrfs_set_super_bytenr(disk_super, BTRFS_SUPER_INFO_OFFSET);
785         btrfs_set_stack_device_id(dev_item, device->devid);
786         btrfs_set_stack_device_type(dev_item, device->type);
787         btrfs_set_stack_device_io_align(dev_item, device->io_align);
788         btrfs_set_stack_device_io_width(dev_item, device->io_width);
789         btrfs_set_stack_device_sector_size(dev_item, device->sector_size);
790         btrfs_set_stack_device_total_bytes(dev_item, device->total_bytes);
791         btrfs_set_stack_device_bytes_used(dev_item, device->bytes_used);
792         memcpy(&dev_item->uuid, device->uuid, BTRFS_UUID_SIZE);
793
794         ret = pwrite(fd, buf, sectorsize, BTRFS_SUPER_INFO_OFFSET);
795         BUG_ON(ret != sectorsize);
796
797         kfree(buf);
798         list_add(&device->dev_list, &root->fs_info->fs_devices->devices);
799         device->fs_devices = root->fs_info->fs_devices;
800         return 0;
801
802 err_nomem:
803         kfree(device);
804         kfree(buf);
805         return -ENOMEM;
806 }
807
808 static int btrfs_wipe_existing_sb(int fd)
809 {
810         const char *off = NULL;
811         size_t len = 0;
812         loff_t offset;
813         char buf[BUFSIZ];
814         int ret = 0;
815         blkid_probe pr = NULL;
816
817         pr = blkid_new_probe();
818         if (!pr)
819                 return -1;
820
821         if (blkid_probe_set_device(pr, fd, 0, 0)) {
822                 ret = -1;
823                 goto out;
824         }
825
826         ret = blkid_probe_lookup_value(pr, "SBMAGIC_OFFSET", &off, NULL);
827         if (!ret)
828                 ret = blkid_probe_lookup_value(pr, "SBMAGIC", NULL, &len);
829
830         if (ret || len == 0 || off == NULL) {
831                 /*
832                  * If lookup fails, the probe did not find any values, eg. for
833                  * a file image or a loop device. Soft error.
834                  */
835                 ret = 1;
836                 goto out;
837         }
838
839         offset = strtoll(off, NULL, 10);
840         if (len > sizeof(buf))
841                 len = sizeof(buf);
842
843         memset(buf, 0, len);
844         ret = pwrite(fd, buf, len, offset);
845         if (ret < 0) {
846                 error("cannot wipe existing superblock: %s", strerror(errno));
847                 ret = -1;
848         } else if (ret != len) {
849                 error("cannot wipe existing superblock: wrote %d of %zd", ret, len);
850                 ret = -1;
851         }
852         fsync(fd);
853
854 out:
855         blkid_free_probe(pr);
856         return ret;
857 }
858
859 int btrfs_prepare_device(int fd, char *file, int zero_end, u64 *block_count_ret,
860                            u64 max_block_count, int discard)
861 {
862         u64 block_count;
863         struct stat st;
864         int i, ret;
865
866         ret = fstat(fd, &st);
867         if (ret < 0) {
868                 fprintf(stderr, "unable to stat %s\n", file);
869                 return 1;
870         }
871
872         block_count = btrfs_device_size(fd, &st);
873         if (block_count == 0) {
874                 fprintf(stderr, "unable to find %s size\n", file);
875                 return 1;
876         }
877         if (max_block_count)
878                 block_count = min(block_count, max_block_count);
879
880         if (discard) {
881                 /*
882                  * We intentionally ignore errors from the discard ioctl.  It
883                  * is not necessary for the mkfs functionality but just an
884                  * optimization.
885                  */
886                 if (discard_range(fd, 0, 0) == 0) {
887                         printf("Performing full device TRIM (%s) ...\n",
888                                 pretty_size(block_count));
889                         discard_blocks(fd, 0, block_count);
890                 }
891         }
892
893         ret = zero_dev_clamped(fd, 0, ZERO_DEV_BYTES, block_count);
894         for (i = 0 ; !ret && i < BTRFS_SUPER_MIRROR_MAX; i++)
895                 ret = zero_dev_clamped(fd, btrfs_sb_offset(i),
896                                        BTRFS_SUPER_INFO_SIZE, block_count);
897         if (!ret && zero_end)
898                 ret = zero_dev_clamped(fd, block_count - ZERO_DEV_BYTES,
899                                        ZERO_DEV_BYTES, block_count);
900
901         if (ret < 0) {
902                 fprintf(stderr, "ERROR: failed to zero device '%s' - %s\n",
903                         file, strerror(-ret));
904                 return 1;
905         }
906
907         ret = btrfs_wipe_existing_sb(fd);
908         if (ret < 0) {
909                 fprintf(stderr, "ERROR: cannot wipe superblocks on '%s'\n",
910                                 file);
911                 return 1;
912         }
913
914         *block_count_ret = block_count;
915         return 0;
916 }
917
918 int btrfs_make_root_dir(struct btrfs_trans_handle *trans,
919                         struct btrfs_root *root, u64 objectid)
920 {
921         int ret;
922         struct btrfs_inode_item inode_item;
923         time_t now = time(NULL);
924
925         memset(&inode_item, 0, sizeof(inode_item));
926         btrfs_set_stack_inode_generation(&inode_item, trans->transid);
927         btrfs_set_stack_inode_size(&inode_item, 0);
928         btrfs_set_stack_inode_nlink(&inode_item, 1);
929         btrfs_set_stack_inode_nbytes(&inode_item, root->nodesize);
930         btrfs_set_stack_inode_mode(&inode_item, S_IFDIR | 0755);
931         btrfs_set_stack_timespec_sec(&inode_item.atime, now);
932         btrfs_set_stack_timespec_nsec(&inode_item.atime, 0);
933         btrfs_set_stack_timespec_sec(&inode_item.ctime, now);
934         btrfs_set_stack_timespec_nsec(&inode_item.ctime, 0);
935         btrfs_set_stack_timespec_sec(&inode_item.mtime, now);
936         btrfs_set_stack_timespec_nsec(&inode_item.mtime, 0);
937         btrfs_set_stack_timespec_sec(&inode_item.otime, 0);
938         btrfs_set_stack_timespec_nsec(&inode_item.otime, 0);
939
940         if (root->fs_info->tree_root == root)
941                 btrfs_set_super_root_dir(root->fs_info->super_copy, objectid);
942
943         ret = btrfs_insert_inode(trans, root, objectid, &inode_item);
944         if (ret)
945                 goto error;
946
947         ret = btrfs_insert_inode_ref(trans, root, "..", 2, objectid, objectid, 0);
948         if (ret)
949                 goto error;
950
951         btrfs_set_root_dirid(&root->root_item, objectid);
952         ret = 0;
953 error:
954         return ret;
955 }
956
957 /*
958  * checks if a path is a block device node
959  * Returns negative errno on failure, otherwise
960  * returns 1 for blockdev, 0 for not-blockdev
961  */
962 int is_block_device(const char *path)
963 {
964         struct stat statbuf;
965
966         if (stat(path, &statbuf) < 0)
967                 return -errno;
968
969         return !!S_ISBLK(statbuf.st_mode);
970 }
971
972 /*
973  * check if given path is a mount point
974  * return 1 if yes. 0 if no. -1 for error
975  */
976 int is_mount_point(const char *path)
977 {
978         FILE *f;
979         struct mntent *mnt;
980         int ret = 0;
981
982         f = setmntent("/proc/self/mounts", "r");
983         if (f == NULL)
984                 return -1;
985
986         while ((mnt = getmntent(f)) != NULL) {
987                 if (strcmp(mnt->mnt_dir, path))
988                         continue;
989                 ret = 1;
990                 break;
991         }
992         endmntent(f);
993         return ret;
994 }
995
996 static int is_reg_file(const char *path)
997 {
998         struct stat statbuf;
999
1000         if (stat(path, &statbuf) < 0)
1001                 return -errno;
1002         return S_ISREG(statbuf.st_mode);
1003 }
1004
1005 /*
1006  * This function checks if the given input parameter is
1007  * an uuid or a path
1008  * return <0 : some error in the given input
1009  * return BTRFS_ARG_UNKNOWN:    unknown input
1010  * return BTRFS_ARG_UUID:       given input is uuid
1011  * return BTRFS_ARG_MNTPOINT:   given input is path
1012  * return BTRFS_ARG_REG:        given input is regular file
1013  * return BTRFS_ARG_BLKDEV:     given input is block device
1014  */
1015 int check_arg_type(const char *input)
1016 {
1017         uuid_t uuid;
1018         char path[PATH_MAX];
1019
1020         if (!input)
1021                 return -EINVAL;
1022
1023         if (realpath(input, path)) {
1024                 if (is_block_device(path) == 1)
1025                         return BTRFS_ARG_BLKDEV;
1026
1027                 if (is_mount_point(path) == 1)
1028                         return BTRFS_ARG_MNTPOINT;
1029
1030                 if (is_reg_file(path))
1031                         return BTRFS_ARG_REG;
1032
1033                 return BTRFS_ARG_UNKNOWN;
1034         }
1035
1036         if (strlen(input) == (BTRFS_UUID_UNPARSED_SIZE - 1) &&
1037                 !uuid_parse(input, uuid))
1038                 return BTRFS_ARG_UUID;
1039
1040         return BTRFS_ARG_UNKNOWN;
1041 }
1042
1043 /*
1044  * Find the mount point for a mounted device.
1045  * On success, returns 0 with mountpoint in *mp.
1046  * On failure, returns -errno (not mounted yields -EINVAL)
1047  * Is noisy on failures, expects to be given a mounted device.
1048  */
1049 int get_btrfs_mount(const char *dev, char *mp, size_t mp_size)
1050 {
1051         int ret;
1052         int fd = -1;
1053
1054         ret = is_block_device(dev);
1055         if (ret <= 0) {
1056                 if (!ret) {
1057                         fprintf(stderr, "%s is not a block device\n", dev);
1058                         ret = -EINVAL;
1059                 } else {
1060                         fprintf(stderr, "Could not check %s: %s\n",
1061                                 dev, strerror(-ret));
1062                 }
1063                 goto out;
1064         }
1065
1066         fd = open(dev, O_RDONLY);
1067         if (fd < 0) {
1068                 ret = -errno;
1069                 fprintf(stderr, "Could not open %s: %s\n", dev, strerror(errno));
1070                 goto out;
1071         }
1072
1073         ret = check_mounted_where(fd, dev, mp, mp_size, NULL);
1074         if (!ret) {
1075                 ret = -EINVAL;
1076         } else { /* mounted, all good */
1077                 ret = 0;
1078         }
1079 out:
1080         if (fd != -1)
1081                 close(fd);
1082         return ret;
1083 }
1084
1085 /*
1086  * Given a pathname, return a filehandle to:
1087  *      the original pathname or,
1088  *      if the pathname is a mounted btrfs device, to its mountpoint.
1089  *
1090  * On error, return -1, errno should be set.
1091  */
1092 int open_path_or_dev_mnt(const char *path, DIR **dirstream, int verbose)
1093 {
1094         char mp[PATH_MAX];
1095         int ret;
1096
1097         if (is_block_device(path)) {
1098                 ret = get_btrfs_mount(path, mp, sizeof(mp));
1099                 if (ret < 0) {
1100                         /* not a mounted btrfs dev */
1101                         error_on(verbose, "'%s' is not a mounted btrfs device",
1102                                  path);
1103                         errno = EINVAL;
1104                         return -1;
1105                 }
1106                 ret = open_file_or_dir(mp, dirstream);
1107                 error_on(verbose && ret < 0, "can't access '%s': %s",
1108                          path, strerror(errno));
1109         } else {
1110                 ret = btrfs_open_dir(path, dirstream, 1);
1111         }
1112
1113         return ret;
1114 }
1115
1116 /*
1117  * Do the following checks before calling open_file_or_dir():
1118  * 1: path is in a btrfs filesystem
1119  * 2: path is a directory
1120  */
1121 int btrfs_open_dir(const char *path, DIR **dirstream, int verbose)
1122 {
1123         struct statfs stfs;
1124         struct stat st;
1125         int ret;
1126
1127         if (statfs(path, &stfs) != 0) {
1128                 if (verbose)
1129                         fprintf(stderr,
1130                                 "ERROR: can't access '%s': %s\n",
1131                                 path, strerror(errno));
1132                 return -1;
1133         }
1134
1135         if (stfs.f_type != BTRFS_SUPER_MAGIC) {
1136                 if (verbose)
1137                         fprintf(stderr,
1138                                 "ERROR: not a btrfs filesystem: %s\n",
1139                                 path);
1140                 return -2;
1141         }
1142
1143         if (stat(path, &st) != 0) {
1144                 if (verbose)
1145                         fprintf(stderr,
1146                                 "ERROR: can't access '%s': %s\n",
1147                                 path, strerror(errno));
1148                 return -1;
1149         }
1150
1151         if (!S_ISDIR(st.st_mode)) {
1152                 if (verbose)
1153                         fprintf(stderr,
1154                                 "ERROR: not a directory: %s\n",
1155                                 path);
1156                 return -3;
1157         }
1158
1159         ret = open_file_or_dir(path, dirstream);
1160         if (ret < 0) {
1161                 if (verbose)
1162                         fprintf(stderr,
1163                                 "ERROR: can't access '%s': %s\n",
1164                                 path, strerror(errno));
1165         }
1166
1167         return ret;
1168 }
1169
1170 /* checks if a device is a loop device */
1171 static int is_loop_device (const char* device) {
1172         struct stat statbuf;
1173
1174         if(stat(device, &statbuf) < 0)
1175                 return -errno;
1176
1177         return (S_ISBLK(statbuf.st_mode) &&
1178                 MAJOR(statbuf.st_rdev) == LOOP_MAJOR);
1179 }
1180
1181 /*
1182  * Takes a loop device path (e.g. /dev/loop0) and returns
1183  * the associated file (e.g. /images/my_btrfs.img) using
1184  * loopdev API
1185  */
1186 static int resolve_loop_device_with_loopdev(const char* loop_dev, char* loop_file)
1187 {
1188         int fd;
1189         int ret;
1190         struct loop_info64 lo64;
1191
1192         fd = open(loop_dev, O_RDONLY | O_NONBLOCK);
1193         if (fd < 0)
1194                 return -errno;
1195         ret = ioctl(fd, LOOP_GET_STATUS64, &lo64);
1196         if (ret < 0) {
1197                 ret = -errno;
1198                 goto out;
1199         }
1200
1201         memcpy(loop_file, lo64.lo_file_name, sizeof(lo64.lo_file_name));
1202         loop_file[sizeof(lo64.lo_file_name)] = 0;
1203
1204 out:
1205         close(fd);
1206
1207         return ret;
1208 }
1209
1210 /* Takes a loop device path (e.g. /dev/loop0) and returns
1211  * the associated file (e.g. /images/my_btrfs.img) */
1212 static int resolve_loop_device(const char* loop_dev, char* loop_file,
1213                 int max_len)
1214 {
1215         int ret;
1216         FILE *f;
1217         char fmt[20];
1218         char p[PATH_MAX];
1219         char real_loop_dev[PATH_MAX];
1220
1221         if (!realpath(loop_dev, real_loop_dev))
1222                 return -errno;
1223         snprintf(p, PATH_MAX, "/sys/block/%s/loop/backing_file", strrchr(real_loop_dev, '/'));
1224         if (!(f = fopen(p, "r"))) {
1225                 if (errno == ENOENT)
1226                         /*
1227                          * It's possibly a partitioned loop device, which is
1228                          * resolvable with loopdev API.
1229                          */
1230                         return resolve_loop_device_with_loopdev(loop_dev, loop_file);
1231                 return -errno;
1232         }
1233
1234         snprintf(fmt, 20, "%%%i[^\n]", max_len-1);
1235         ret = fscanf(f, fmt, loop_file);
1236         fclose(f);
1237         if (ret == EOF)
1238                 return -errno;
1239
1240         return 0;
1241 }
1242
1243 /*
1244  * Checks whether a and b are identical or device
1245  * files associated with the same block device
1246  */
1247 static int is_same_blk_file(const char* a, const char* b)
1248 {
1249         struct stat st_buf_a, st_buf_b;
1250         char real_a[PATH_MAX];
1251         char real_b[PATH_MAX];
1252
1253         if (!realpath(a, real_a))
1254                 strncpy_null(real_a, a);
1255
1256         if (!realpath(b, real_b))
1257                 strncpy_null(real_b, b);
1258
1259         /* Identical path? */
1260         if (strcmp(real_a, real_b) == 0)
1261                 return 1;
1262
1263         if (stat(a, &st_buf_a) < 0 || stat(b, &st_buf_b) < 0) {
1264                 if (errno == ENOENT)
1265                         return 0;
1266                 return -errno;
1267         }
1268
1269         /* Same blockdevice? */
1270         if (S_ISBLK(st_buf_a.st_mode) && S_ISBLK(st_buf_b.st_mode) &&
1271             st_buf_a.st_rdev == st_buf_b.st_rdev) {
1272                 return 1;
1273         }
1274
1275         /* Hardlink? */
1276         if (st_buf_a.st_dev == st_buf_b.st_dev &&
1277             st_buf_a.st_ino == st_buf_b.st_ino) {
1278                 return 1;
1279         }
1280
1281         return 0;
1282 }
1283
1284 /* checks if a and b are identical or device
1285  * files associated with the same block device or
1286  * if one file is a loop device that uses the other
1287  * file.
1288  */
1289 static int is_same_loop_file(const char* a, const char* b)
1290 {
1291         char res_a[PATH_MAX];
1292         char res_b[PATH_MAX];
1293         const char* final_a = NULL;
1294         const char* final_b = NULL;
1295         int ret;
1296
1297         /* Resolve a if it is a loop device */
1298         if((ret = is_loop_device(a)) < 0) {
1299                 if (ret == -ENOENT)
1300                         return 0;
1301                 return ret;
1302         } else if (ret) {
1303                 ret = resolve_loop_device(a, res_a, sizeof(res_a));
1304                 if (ret < 0) {
1305                         if (errno != EPERM)
1306                                 return ret;
1307                 } else {
1308                         final_a = res_a;
1309                 }
1310         } else {
1311                 final_a = a;
1312         }
1313
1314         /* Resolve b if it is a loop device */
1315         if ((ret = is_loop_device(b)) < 0) {
1316                 if (ret == -ENOENT)
1317                         return 0;
1318                 return ret;
1319         } else if (ret) {
1320                 ret = resolve_loop_device(b, res_b, sizeof(res_b));
1321                 if (ret < 0) {
1322                         if (errno != EPERM)
1323                                 return ret;
1324                 } else {
1325                         final_b = res_b;
1326                 }
1327         } else {
1328                 final_b = b;
1329         }
1330
1331         return is_same_blk_file(final_a, final_b);
1332 }
1333
1334 /* Checks if a file exists and is a block or regular file*/
1335 static int is_existing_blk_or_reg_file(const char* filename)
1336 {
1337         struct stat st_buf;
1338
1339         if(stat(filename, &st_buf) < 0) {
1340                 if(errno == ENOENT)
1341                         return 0;
1342                 else
1343                         return -errno;
1344         }
1345
1346         return (S_ISBLK(st_buf.st_mode) || S_ISREG(st_buf.st_mode));
1347 }
1348
1349 /* Checks if a file is used (directly or indirectly via a loop device)
1350  * by a device in fs_devices
1351  */
1352 static int blk_file_in_dev_list(struct btrfs_fs_devices* fs_devices,
1353                 const char* file)
1354 {
1355         int ret;
1356         struct list_head *head;
1357         struct list_head *cur;
1358         struct btrfs_device *device;
1359
1360         head = &fs_devices->devices;
1361         list_for_each(cur, head) {
1362                 device = list_entry(cur, struct btrfs_device, dev_list);
1363
1364                 if((ret = is_same_loop_file(device->name, file)))
1365                         return ret;
1366         }
1367
1368         return 0;
1369 }
1370
1371 /*
1372  * Resolve a pathname to a device mapper node to /dev/mapper/<name>
1373  * Returns NULL on invalid input or malloc failure; Other failures
1374  * will be handled by the caller using the input pathame.
1375  */
1376 char *canonicalize_dm_name(const char *ptname)
1377 {
1378         FILE    *f;
1379         size_t  sz;
1380         char    path[PATH_MAX], name[PATH_MAX], *res = NULL;
1381
1382         if (!ptname || !*ptname)
1383                 return NULL;
1384
1385         snprintf(path, sizeof(path), "/sys/block/%s/dm/name", ptname);
1386         if (!(f = fopen(path, "r")))
1387                 return NULL;
1388
1389         /* read <name>\n from sysfs */
1390         if (fgets(name, sizeof(name), f) && (sz = strlen(name)) > 1) {
1391                 name[sz - 1] = '\0';
1392                 snprintf(path, sizeof(path), "/dev/mapper/%s", name);
1393
1394                 if (access(path, F_OK) == 0)
1395                         res = strdup(path);
1396         }
1397         fclose(f);
1398         return res;
1399 }
1400
1401 /*
1402  * Resolve a pathname to a canonical device node, e.g. /dev/sda1 or
1403  * to a device mapper pathname.
1404  * Returns NULL on invalid input or malloc failure; Other failures
1405  * will be handled by the caller using the input pathame.
1406  */
1407 char *canonicalize_path(const char *path)
1408 {
1409         char *canonical, *p;
1410
1411         if (!path || !*path)
1412                 return NULL;
1413
1414         canonical = realpath(path, NULL);
1415         if (!canonical)
1416                 return strdup(path);
1417         p = strrchr(canonical, '/');
1418         if (p && strncmp(p, "/dm-", 4) == 0 && isdigit(*(p + 4))) {
1419                 char *dm = canonicalize_dm_name(p + 1);
1420
1421                 if (dm) {
1422                         free(canonical);
1423                         return dm;
1424                 }
1425         }
1426         return canonical;
1427 }
1428
1429 /*
1430  * returns 1 if the device was mounted, < 0 on error or 0 if everything
1431  * is safe to continue.
1432  */
1433 int check_mounted(const char* file)
1434 {
1435         int fd;
1436         int ret;
1437
1438         fd = open(file, O_RDONLY);
1439         if (fd < 0) {
1440                 fprintf (stderr, "check_mounted(): Could not open %s\n", file);
1441                 return -errno;
1442         }
1443
1444         ret =  check_mounted_where(fd, file, NULL, 0, NULL);
1445         close(fd);
1446
1447         return ret;
1448 }
1449
1450 int check_mounted_where(int fd, const char *file, char *where, int size,
1451                         struct btrfs_fs_devices **fs_dev_ret)
1452 {
1453         int ret;
1454         u64 total_devs = 1;
1455         int is_btrfs;
1456         struct btrfs_fs_devices *fs_devices_mnt = NULL;
1457         FILE *f;
1458         struct mntent *mnt;
1459
1460         /* scan the initial device */
1461         ret = btrfs_scan_one_device(fd, file, &fs_devices_mnt,
1462                                     &total_devs, BTRFS_SUPER_INFO_OFFSET, 0);
1463         is_btrfs = (ret >= 0);
1464
1465         /* scan other devices */
1466         if (is_btrfs && total_devs > 1) {
1467                 ret = btrfs_scan_lblkid();
1468                 if (ret)
1469                         return ret;
1470         }
1471
1472         /* iterate over the list of currently mountes filesystems */
1473         if ((f = setmntent ("/proc/self/mounts", "r")) == NULL)
1474                 return -errno;
1475
1476         while ((mnt = getmntent (f)) != NULL) {
1477                 if(is_btrfs) {
1478                         if(strcmp(mnt->mnt_type, "btrfs") != 0)
1479                                 continue;
1480
1481                         ret = blk_file_in_dev_list(fs_devices_mnt, mnt->mnt_fsname);
1482                 } else {
1483                         /* ignore entries in the mount table that are not
1484                            associated with a file*/
1485                         if((ret = is_existing_blk_or_reg_file(mnt->mnt_fsname)) < 0)
1486                                 goto out_mntloop_err;
1487                         else if(!ret)
1488                                 continue;
1489
1490                         ret = is_same_loop_file(file, mnt->mnt_fsname);
1491                 }
1492
1493                 if(ret < 0)
1494                         goto out_mntloop_err;
1495                 else if(ret)
1496                         break;
1497         }
1498
1499         /* Did we find an entry in mnt table? */
1500         if (mnt && size && where) {
1501                 strncpy(where, mnt->mnt_dir, size);
1502                 where[size-1] = 0;
1503         }
1504         if (fs_dev_ret)
1505                 *fs_dev_ret = fs_devices_mnt;
1506
1507         ret = (mnt != NULL);
1508
1509 out_mntloop_err:
1510         endmntent (f);
1511
1512         return ret;
1513 }
1514
1515 struct pending_dir {
1516         struct list_head list;
1517         char name[PATH_MAX];
1518 };
1519
1520 int btrfs_register_one_device(const char *fname)
1521 {
1522         struct btrfs_ioctl_vol_args args;
1523         int fd;
1524         int ret;
1525
1526         fd = open("/dev/btrfs-control", O_RDWR);
1527         if (fd < 0) {
1528                 fprintf(stderr, "failed to open /dev/btrfs-control "
1529                         "skipping device registration: %s\n",
1530                         strerror(errno));
1531                 return -errno;
1532         }
1533         memset(&args, 0, sizeof(args));
1534         strncpy_null(args.name, fname);
1535         ret = ioctl(fd, BTRFS_IOC_SCAN_DEV, &args);
1536         if (ret < 0) {
1537                 fprintf(stderr, "ERROR: device scan failed '%s' - %s\n",
1538                         fname, strerror(errno));
1539                 ret = -errno;
1540         }
1541         close(fd);
1542         return ret;
1543 }
1544
1545 /*
1546  * Register all devices in the fs_uuid list created in the user
1547  * space. Ensure btrfs_scan_lblkid() is called before this func.
1548  */
1549 int btrfs_register_all_devices(void)
1550 {
1551         int err = 0;
1552         int ret = 0;
1553         struct btrfs_fs_devices *fs_devices;
1554         struct btrfs_device *device;
1555         struct list_head *all_uuids;
1556
1557         all_uuids = btrfs_scanned_uuids();
1558
1559         list_for_each_entry(fs_devices, all_uuids, list) {
1560                 list_for_each_entry(device, &fs_devices->devices, dev_list) {
1561                         if (*device->name)
1562                                 err = btrfs_register_one_device(device->name);
1563
1564                         if (err)
1565                                 ret++;
1566                 }
1567         }
1568
1569         return ret;
1570 }
1571
1572 int btrfs_device_already_in_root(struct btrfs_root *root, int fd,
1573                                  int super_offset)
1574 {
1575         struct btrfs_super_block *disk_super;
1576         char *buf;
1577         int ret = 0;
1578
1579         buf = malloc(BTRFS_SUPER_INFO_SIZE);
1580         if (!buf) {
1581                 ret = -ENOMEM;
1582                 goto out;
1583         }
1584         ret = pread(fd, buf, BTRFS_SUPER_INFO_SIZE, super_offset);
1585         if (ret != BTRFS_SUPER_INFO_SIZE)
1586                 goto brelse;
1587
1588         ret = 0;
1589         disk_super = (struct btrfs_super_block *)buf;
1590         if (btrfs_super_magic(disk_super) != BTRFS_MAGIC)
1591                 goto brelse;
1592
1593         if (!memcmp(disk_super->fsid, root->fs_info->super_copy->fsid,
1594                     BTRFS_FSID_SIZE))
1595                 ret = 1;
1596 brelse:
1597         free(buf);
1598 out:
1599         return ret;
1600 }
1601
1602 /*
1603  * Note: this function uses a static per-thread buffer. Do not call this
1604  * function more than 10 times within one argument list!
1605  */
1606 const char *pretty_size_mode(u64 size, unsigned mode)
1607 {
1608         static __thread int ps_index = 0;
1609         static __thread char ps_array[10][32];
1610         char *ret;
1611
1612         ret = ps_array[ps_index];
1613         ps_index++;
1614         ps_index %= 10;
1615         (void)pretty_size_snprintf(size, ret, 32, mode);
1616
1617         return ret;
1618 }
1619
1620 static const char* unit_suffix_binary[] =
1621         { "B", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB"};
1622 static const char* unit_suffix_decimal[] =
1623         { "B", "kB", "MB", "GB", "TB", "PB", "EB"};
1624
1625 int pretty_size_snprintf(u64 size, char *str, size_t str_size, unsigned unit_mode)
1626 {
1627         int num_divs;
1628         float fraction;
1629         u64 base = 0;
1630         int mult = 0;
1631         const char** suffix = NULL;
1632         u64 last_size;
1633
1634         if (str_size == 0)
1635                 return 0;
1636
1637         if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_RAW) {
1638                 snprintf(str, str_size, "%llu", size);
1639                 return 0;
1640         }
1641
1642         if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_BINARY) {
1643                 base = 1024;
1644                 mult = 1024;
1645                 suffix = unit_suffix_binary;
1646         } else if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_DECIMAL) {
1647                 base = 1000;
1648                 mult = 1000;
1649                 suffix = unit_suffix_decimal;
1650         }
1651
1652         /* Unknown mode */
1653         if (!base) {
1654                 fprintf(stderr, "INTERNAL ERROR: unknown unit base, mode %d\n",
1655                                 unit_mode);
1656                 assert(0);
1657                 return -1;
1658         }
1659
1660         num_divs = 0;
1661         last_size = size;
1662         switch (unit_mode & UNITS_MODE_MASK) {
1663         case UNITS_TBYTES: base *= mult; num_divs++;
1664         case UNITS_GBYTES: base *= mult; num_divs++;
1665         case UNITS_MBYTES: base *= mult; num_divs++;
1666         case UNITS_KBYTES: num_divs++;
1667                            break;
1668         case UNITS_BYTES:
1669                            base = 1;
1670                            num_divs = 0;
1671                            break;
1672         default:
1673                 while (size >= mult) {
1674                         last_size = size;
1675                         size /= mult;
1676                         num_divs++;
1677                 }
1678                 /*
1679                  * If the value is smaller than base, we didn't do any
1680                  * division, in that case, base should be 1, not original
1681                  * base, or the unit will be wrong
1682                  */
1683                 if (num_divs == 0)
1684                         base = 1;
1685         }
1686
1687         if (num_divs >= ARRAY_SIZE(unit_suffix_binary)) {
1688                 str[0] = '\0';
1689                 printf("INTERNAL ERROR: unsupported unit suffix, index %d\n",
1690                                 num_divs);
1691                 assert(0);
1692                 return -1;
1693         }
1694         fraction = (float)last_size / base;
1695
1696         return snprintf(str, str_size, "%.2f%s", fraction, suffix[num_divs]);
1697 }
1698
1699 /*
1700  * __strncpy__null - strncpy with null termination
1701  * @dest:       the target array
1702  * @src:        the source string
1703  * @n:          maximum bytes to copy (size of *dest)
1704  *
1705  * Like strncpy, but ensures destination is null-terminated.
1706  *
1707  * Copies the string pointed to by src, including the terminating null
1708  * byte ('\0'), to the buffer pointed to by dest, up to a maximum
1709  * of n bytes.  Then ensure that dest is null-terminated.
1710  */
1711 char *__strncpy__null(char *dest, const char *src, size_t n)
1712 {
1713         strncpy(dest, src, n);
1714         if (n > 0)
1715                 dest[n - 1] = '\0';
1716         return dest;
1717 }
1718
1719 /*
1720  * Checks to make sure that the label matches our requirements.
1721  * Returns:
1722        0    if everything is safe and usable
1723       -1    if the label is too long
1724  */
1725 static int check_label(const char *input)
1726 {
1727        int len = strlen(input);
1728
1729        if (len > BTRFS_LABEL_SIZE - 1) {
1730                 fprintf(stderr, "ERROR: Label %s is too long (max %d)\n",
1731                         input, BTRFS_LABEL_SIZE - 1);
1732                return -1;
1733        }
1734
1735        return 0;
1736 }
1737
1738 static int set_label_unmounted(const char *dev, const char *label)
1739 {
1740         struct btrfs_trans_handle *trans;
1741         struct btrfs_root *root;
1742         int ret;
1743
1744         ret = check_mounted(dev);
1745         if (ret < 0) {
1746                fprintf(stderr, "FATAL: error checking %s mount status\n", dev);
1747                return -1;
1748         }
1749         if (ret > 0) {
1750                 fprintf(stderr, "ERROR: dev %s is mounted, use mount point\n",
1751                         dev);
1752                 return -1;
1753         }
1754
1755         /* Open the super_block at the default location
1756          * and as read-write.
1757          */
1758         root = open_ctree(dev, 0, OPEN_CTREE_WRITES);
1759         if (!root) /* errors are printed by open_ctree() */
1760                 return -1;
1761
1762         trans = btrfs_start_transaction(root, 1);
1763         snprintf(root->fs_info->super_copy->label, BTRFS_LABEL_SIZE, "%s",
1764                  label);
1765         btrfs_commit_transaction(trans, root);
1766
1767         /* Now we close it since we are done. */
1768         close_ctree(root);
1769         return 0;
1770 }
1771
1772 static int set_label_mounted(const char *mount_path, const char *label)
1773 {
1774         int fd;
1775
1776         fd = open(mount_path, O_RDONLY | O_NOATIME);
1777         if (fd < 0) {
1778                 fprintf(stderr, "ERROR: unable to access '%s'\n", mount_path);
1779                 return -1;
1780         }
1781
1782         if (ioctl(fd, BTRFS_IOC_SET_FSLABEL, label) < 0) {
1783                 fprintf(stderr, "ERROR: unable to set label %s\n",
1784                         strerror(errno));
1785                 close(fd);
1786                 return -1;
1787         }
1788
1789         close(fd);
1790         return 0;
1791 }
1792
1793 int get_label_unmounted(const char *dev, char *label)
1794 {
1795         struct btrfs_root *root;
1796         int ret;
1797
1798         ret = check_mounted(dev);
1799         if (ret < 0) {
1800                fprintf(stderr, "FATAL: error checking %s mount status\n", dev);
1801                return -1;
1802         }
1803
1804         /* Open the super_block at the default location
1805          * and as read-only.
1806          */
1807         root = open_ctree(dev, 0, 0);
1808         if(!root)
1809                 return -1;
1810
1811         memcpy(label, root->fs_info->super_copy->label, BTRFS_LABEL_SIZE);
1812
1813         /* Now we close it since we are done. */
1814         close_ctree(root);
1815         return 0;
1816 }
1817
1818 /*
1819  * If a partition is mounted, try to get the filesystem label via its
1820  * mounted path rather than device.  Return the corresponding error
1821  * the user specified the device path.
1822  */
1823 int get_label_mounted(const char *mount_path, char *labelp)
1824 {
1825         char label[BTRFS_LABEL_SIZE];
1826         int fd;
1827         int ret;
1828
1829         fd = open(mount_path, O_RDONLY | O_NOATIME);
1830         if (fd < 0) {
1831                 fprintf(stderr, "ERROR: unable to access '%s'\n", mount_path);
1832                 return -1;
1833         }
1834
1835         memset(label, '\0', sizeof(label));
1836         ret = ioctl(fd, BTRFS_IOC_GET_FSLABEL, label);
1837         if (ret < 0) {
1838                 if (errno != ENOTTY)
1839                         fprintf(stderr, "ERROR: unable to get label %s\n",
1840                                         strerror(errno));
1841                 ret = -errno;
1842                 close(fd);
1843                 return ret;
1844         }
1845
1846         strncpy(labelp, label, sizeof(label));
1847         close(fd);
1848         return 0;
1849 }
1850
1851 int get_label(const char *btrfs_dev, char *label)
1852 {
1853         int ret;
1854
1855         ret = is_existing_blk_or_reg_file(btrfs_dev);
1856         if (!ret)
1857                 ret = get_label_mounted(btrfs_dev, label);
1858         else if (ret > 0)
1859                 ret = get_label_unmounted(btrfs_dev, label);
1860
1861         return ret;
1862 }
1863
1864 int set_label(const char *btrfs_dev, const char *label)
1865 {
1866         int ret;
1867
1868         if (check_label(label))
1869                 return -1;
1870
1871         ret = is_existing_blk_or_reg_file(btrfs_dev);
1872         if (!ret)
1873                 ret = set_label_mounted(btrfs_dev, label);
1874         else if (ret > 0)
1875                 ret = set_label_unmounted(btrfs_dev, label);
1876
1877         return ret;
1878 }
1879
1880 /*
1881  * Unsafe subvolume check.
1882  *
1883  * This only checks ino == BTRFS_FIRST_FREE_OBJECTID, even it is not in a
1884  * btrfs mount point.
1885  * Must use together with other reliable method like btrfs ioctl.
1886  */
1887 static int __is_subvol(const char *path)
1888 {
1889         struct stat st;
1890         int ret;
1891
1892         ret = lstat(path, &st);
1893         if (ret < 0)
1894                 return ret;
1895
1896         return st.st_ino == BTRFS_FIRST_FREE_OBJECTID;
1897 }
1898
1899 /*
1900  * A not-so-good version fls64. No fascinating optimization since
1901  * no one except parse_size use it
1902  */
1903 static int fls64(u64 x)
1904 {
1905         int i;
1906
1907         for (i = 0; i <64; i++)
1908                 if (x << i & (1ULL << 63))
1909                         return 64 - i;
1910         return 64 - i;
1911 }
1912
1913 u64 parse_size(char *s)
1914 {
1915         char c;
1916         char *endptr;
1917         u64 mult = 1;
1918         u64 ret;
1919
1920         if (!s) {
1921                 fprintf(stderr, "ERROR: Size value is empty\n");
1922                 exit(1);
1923         }
1924         if (s[0] == '-') {
1925                 fprintf(stderr,
1926                         "ERROR: Size value '%s' is less equal than 0\n", s);
1927                 exit(1);
1928         }
1929         ret = strtoull(s, &endptr, 10);
1930         if (endptr == s) {
1931                 fprintf(stderr, "ERROR: Size value '%s' is invalid\n", s);
1932                 exit(1);
1933         }
1934         if (endptr[0] && endptr[1]) {
1935                 fprintf(stderr, "ERROR: Illegal suffix contains character '%c' in wrong position\n",
1936                         endptr[1]);
1937                 exit(1);
1938         }
1939         /*
1940          * strtoll returns LLONG_MAX when overflow, if this happens,
1941          * need to call strtoull to get the real size
1942          */
1943         if (errno == ERANGE && ret == ULLONG_MAX) {
1944                 fprintf(stderr,
1945                         "ERROR: Size value '%s' is too large for u64\n", s);
1946                 exit(1);
1947         }
1948         if (endptr[0]) {
1949                 c = tolower(endptr[0]);
1950                 switch (c) {
1951                 case 'e':
1952                         mult *= 1024;
1953                         /* fallthrough */
1954                 case 'p':
1955                         mult *= 1024;
1956                         /* fallthrough */
1957                 case 't':
1958                         mult *= 1024;
1959                         /* fallthrough */
1960                 case 'g':
1961                         mult *= 1024;
1962                         /* fallthrough */
1963                 case 'm':
1964                         mult *= 1024;
1965                         /* fallthrough */
1966                 case 'k':
1967                         mult *= 1024;
1968                         /* fallthrough */
1969                 case 'b':
1970                         break;
1971                 default:
1972                         fprintf(stderr, "ERROR: Unknown size descriptor '%c'\n",
1973                                 c);
1974                         exit(1);
1975                 }
1976         }
1977         /* Check whether ret * mult overflow */
1978         if (fls64(ret) + fls64(mult) - 1 > 64) {
1979                 fprintf(stderr,
1980                         "ERROR: Size value '%s' is too large for u64\n", s);
1981                 exit(1);
1982         }
1983         ret *= mult;
1984         return ret;
1985 }
1986
1987 u64 parse_qgroupid(const char *p)
1988 {
1989         char *s = strchr(p, '/');
1990         const char *ptr_src_end = p + strlen(p);
1991         char *ptr_parse_end = NULL;
1992         u64 level;
1993         u64 id;
1994         int fd;
1995         int ret = 0;
1996
1997         if (p[0] == '/')
1998                 goto path;
1999
2000         /* Numeric format like '0/257' is the primary case */
2001         if (!s) {
2002                 id = strtoull(p, &ptr_parse_end, 10);
2003                 if (ptr_parse_end != ptr_src_end)
2004                         goto path;
2005                 return id;
2006         }
2007         level = strtoull(p, &ptr_parse_end, 10);
2008         if (ptr_parse_end != s)
2009                 goto path;
2010
2011         id = strtoull(s + 1, &ptr_parse_end, 10);
2012         if (ptr_parse_end != ptr_src_end)
2013                 goto  path;
2014
2015         return (level << BTRFS_QGROUP_LEVEL_SHIFT) | id;
2016
2017 path:
2018         /* Path format like subv at 'my_subvol' is the fallback case */
2019         ret = __is_subvol(p);
2020         if (ret < 0 || !ret)
2021                 goto err;
2022         fd = open(p, O_RDONLY);
2023         if (fd < 0)
2024                 goto err;
2025         ret = lookup_ino_rootid(fd, &id);
2026         close(fd);
2027         if (ret < 0)
2028                 goto err;
2029         return id;
2030
2031 err:
2032         fprintf(stderr, "ERROR: invalid qgroupid or subvolume path: %s\n", p);
2033         exit(-1);
2034 }
2035
2036 int open_file_or_dir3(const char *fname, DIR **dirstream, int open_flags)
2037 {
2038         int ret;
2039         struct stat st;
2040         int fd;
2041
2042         ret = stat(fname, &st);
2043         if (ret < 0) {
2044                 return -1;
2045         }
2046         if (S_ISDIR(st.st_mode)) {
2047                 *dirstream = opendir(fname);
2048                 if (!*dirstream)
2049                         return -1;
2050                 fd = dirfd(*dirstream);
2051         } else if (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode)) {
2052                 fd = open(fname, open_flags);
2053         } else {
2054                 /*
2055                  * we set this on purpose, in case the caller output
2056                  * strerror(errno) as success
2057                  */
2058                 errno = EINVAL;
2059                 return -1;
2060         }
2061         if (fd < 0) {
2062                 fd = -1;
2063                 if (*dirstream) {
2064                         closedir(*dirstream);
2065                         *dirstream = NULL;
2066                 }
2067         }
2068         return fd;
2069 }
2070
2071 int open_file_or_dir(const char *fname, DIR **dirstream)
2072 {
2073         return open_file_or_dir3(fname, dirstream, O_RDWR);
2074 }
2075
2076 void close_file_or_dir(int fd, DIR *dirstream)
2077 {
2078         if (dirstream)
2079                 closedir(dirstream);
2080         else if (fd >= 0)
2081                 close(fd);
2082 }
2083
2084 int get_device_info(int fd, u64 devid,
2085                 struct btrfs_ioctl_dev_info_args *di_args)
2086 {
2087         int ret;
2088
2089         di_args->devid = devid;
2090         memset(&di_args->uuid, '\0', sizeof(di_args->uuid));
2091
2092         ret = ioctl(fd, BTRFS_IOC_DEV_INFO, di_args);
2093         return ret < 0 ? -errno : 0;
2094 }
2095
2096 static u64 find_max_device_id(struct btrfs_ioctl_search_args *search_args,
2097                               int nr_items)
2098 {
2099         struct btrfs_dev_item *dev_item;
2100         char *buf = search_args->buf;
2101
2102         buf += (nr_items - 1) * (sizeof(struct btrfs_ioctl_search_header)
2103                                        + sizeof(struct btrfs_dev_item));
2104         buf += sizeof(struct btrfs_ioctl_search_header);
2105
2106         dev_item = (struct btrfs_dev_item *)buf;
2107
2108         return btrfs_stack_device_id(dev_item);
2109 }
2110
2111 static int search_chunk_tree_for_fs_info(int fd,
2112                                 struct btrfs_ioctl_fs_info_args *fi_args)
2113 {
2114         int ret;
2115         int max_items;
2116         u64 start_devid = 1;
2117         struct btrfs_ioctl_search_args search_args;
2118         struct btrfs_ioctl_search_key *search_key = &search_args.key;
2119
2120         fi_args->num_devices = 0;
2121
2122         max_items = BTRFS_SEARCH_ARGS_BUFSIZE
2123                / (sizeof(struct btrfs_ioctl_search_header)
2124                                + sizeof(struct btrfs_dev_item));
2125
2126         search_key->tree_id = BTRFS_CHUNK_TREE_OBJECTID;
2127         search_key->min_objectid = BTRFS_DEV_ITEMS_OBJECTID;
2128         search_key->max_objectid = BTRFS_DEV_ITEMS_OBJECTID;
2129         search_key->min_type = BTRFS_DEV_ITEM_KEY;
2130         search_key->max_type = BTRFS_DEV_ITEM_KEY;
2131         search_key->min_transid = 0;
2132         search_key->max_transid = (u64)-1;
2133         search_key->nr_items = max_items;
2134         search_key->max_offset = (u64)-1;
2135
2136 again:
2137         search_key->min_offset = start_devid;
2138
2139         ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &search_args);
2140         if (ret < 0)
2141                 return -errno;
2142
2143         fi_args->num_devices += (u64)search_key->nr_items;
2144
2145         if (search_key->nr_items == max_items) {
2146                 start_devid = find_max_device_id(&search_args,
2147                                         search_key->nr_items) + 1;
2148                 goto again;
2149         }
2150
2151         /* get the lastest max_id to stay consistent with the num_devices */
2152         if (search_key->nr_items == 0)
2153                 /*
2154                  * last tree_search returns an empty buf, use the devid of
2155                  * the last dev_item of the previous tree_search
2156                  */
2157                 fi_args->max_id = start_devid - 1;
2158         else
2159                 fi_args->max_id = find_max_device_id(&search_args,
2160                                                 search_key->nr_items);
2161
2162         return 0;
2163 }
2164
2165 /*
2166  * For a given path, fill in the ioctl fs_ and info_ args.
2167  * If the path is a btrfs mountpoint, fill info for all devices.
2168  * If the path is a btrfs device, fill in only that device.
2169  *
2170  * The path provided must be either on a mounted btrfs fs,
2171  * or be a mounted btrfs device.
2172  *
2173  * Returns 0 on success, or a negative errno.
2174  */
2175 int get_fs_info(char *path, struct btrfs_ioctl_fs_info_args *fi_args,
2176                 struct btrfs_ioctl_dev_info_args **di_ret)
2177 {
2178         int fd = -1;
2179         int ret = 0;
2180         int ndevs = 0;
2181         int i = 0;
2182         int replacing = 0;
2183         struct btrfs_fs_devices *fs_devices_mnt = NULL;
2184         struct btrfs_ioctl_dev_info_args *di_args;
2185         struct btrfs_ioctl_dev_info_args tmp;
2186         char mp[PATH_MAX];
2187         DIR *dirstream = NULL;
2188
2189         memset(fi_args, 0, sizeof(*fi_args));
2190
2191         if (is_block_device(path) == 1) {
2192                 struct btrfs_super_block *disk_super;
2193                 char buf[BTRFS_SUPER_INFO_SIZE];
2194                 u64 devid;
2195
2196                 /* Ensure it's mounted, then set path to the mountpoint */
2197                 fd = open(path, O_RDONLY);
2198                 if (fd < 0) {
2199                         ret = -errno;
2200                         fprintf(stderr, "Couldn't open %s: %s\n",
2201                                 path, strerror(errno));
2202                         goto out;
2203                 }
2204                 ret = check_mounted_where(fd, path, mp, sizeof(mp),
2205                                           &fs_devices_mnt);
2206                 if (!ret) {
2207                         ret = -EINVAL;
2208                         goto out;
2209                 }
2210                 if (ret < 0)
2211                         goto out;
2212                 path = mp;
2213                 /* Only fill in this one device */
2214                 fi_args->num_devices = 1;
2215
2216                 disk_super = (struct btrfs_super_block *)buf;
2217                 ret = btrfs_read_dev_super(fd, disk_super,
2218                                            BTRFS_SUPER_INFO_OFFSET, 0);
2219                 if (ret < 0) {
2220                         ret = -EIO;
2221                         goto out;
2222                 }
2223                 devid = btrfs_stack_device_id(&disk_super->dev_item);
2224
2225                 fi_args->max_id = devid;
2226                 i = devid;
2227
2228                 memcpy(fi_args->fsid, fs_devices_mnt->fsid, BTRFS_FSID_SIZE);
2229                 close(fd);
2230         }
2231
2232         /* at this point path must not be for a block device */
2233         fd = open_file_or_dir(path, &dirstream);
2234         if (fd < 0) {
2235                 ret = -errno;
2236                 goto out;
2237         }
2238
2239         /* fill in fi_args if not just a single device */
2240         if (fi_args->num_devices != 1) {
2241                 ret = ioctl(fd, BTRFS_IOC_FS_INFO, fi_args);
2242                 if (ret < 0) {
2243                         ret = -errno;
2244                         goto out;
2245                 }
2246
2247                 /*
2248                  * The fs_args->num_devices does not include seed devices
2249                  */
2250                 ret = search_chunk_tree_for_fs_info(fd, fi_args);
2251                 if (ret)
2252                         goto out;
2253
2254                 /*
2255                  * search_chunk_tree_for_fs_info() will lacks the devid 0
2256                  * so manual probe for it here.
2257                  */
2258                 ret = get_device_info(fd, 0, &tmp);
2259                 if (!ret) {
2260                         fi_args->num_devices++;
2261                         ndevs++;
2262                         replacing = 1;
2263                         if (i == 0)
2264                                 i++;
2265                 }
2266         }
2267
2268         if (!fi_args->num_devices)
2269                 goto out;
2270
2271         di_args = *di_ret = malloc((fi_args->num_devices) * sizeof(*di_args));
2272         if (!di_args) {
2273                 ret = -errno;
2274                 goto out;
2275         }
2276
2277         if (replacing)
2278                 memcpy(di_args, &tmp, sizeof(tmp));
2279         for (; i <= fi_args->max_id; ++i) {
2280                 ret = get_device_info(fd, i, &di_args[ndevs]);
2281                 if (ret == -ENODEV)
2282                         continue;
2283                 if (ret)
2284                         goto out;
2285                 ndevs++;
2286         }
2287
2288         /*
2289         * only when the only dev we wanted to find is not there then
2290         * let any error be returned
2291         */
2292         if (fi_args->num_devices != 1) {
2293                 BUG_ON(ndevs == 0);
2294                 ret = 0;
2295         }
2296
2297 out:
2298         close_file_or_dir(fd, dirstream);
2299         return ret;
2300 }
2301
2302 #define isoctal(c)      (((c) & ~7) == '0')
2303
2304 static inline void translate(char *f, char *t)
2305 {
2306         while (*f != '\0') {
2307                 if (*f == '\\' &&
2308                     isoctal(f[1]) && isoctal(f[2]) && isoctal(f[3])) {
2309                         *t++ = 64*(f[1] & 7) + 8*(f[2] & 7) + (f[3] & 7);
2310                         f += 4;
2311                 } else
2312                         *t++ = *f++;
2313         }
2314         *t = '\0';
2315         return;
2316 }
2317
2318 /*
2319  * Checks if the swap device.
2320  * Returns 1 if swap device, < 0 on error or 0 if not swap device.
2321  */
2322 static int is_swap_device(const char *file)
2323 {
2324         FILE    *f;
2325         struct stat     st_buf;
2326         dev_t   dev;
2327         ino_t   ino = 0;
2328         char    tmp[PATH_MAX];
2329         char    buf[PATH_MAX];
2330         char    *cp;
2331         int     ret = 0;
2332
2333         if (stat(file, &st_buf) < 0)
2334                 return -errno;
2335         if (S_ISBLK(st_buf.st_mode))
2336                 dev = st_buf.st_rdev;
2337         else if (S_ISREG(st_buf.st_mode)) {
2338                 dev = st_buf.st_dev;
2339                 ino = st_buf.st_ino;
2340         } else
2341                 return 0;
2342
2343         if ((f = fopen("/proc/swaps", "r")) == NULL)
2344                 return 0;
2345
2346         /* skip the first line */
2347         if (fgets(tmp, sizeof(tmp), f) == NULL)
2348                 goto out;
2349
2350         while (fgets(tmp, sizeof(tmp), f) != NULL) {
2351                 if ((cp = strchr(tmp, ' ')) != NULL)
2352                         *cp = '\0';
2353                 if ((cp = strchr(tmp, '\t')) != NULL)
2354                         *cp = '\0';
2355                 translate(tmp, buf);
2356                 if (stat(buf, &st_buf) != 0)
2357                         continue;
2358                 if (S_ISBLK(st_buf.st_mode)) {
2359                         if (dev == st_buf.st_rdev) {
2360                                 ret = 1;
2361                                 break;
2362                         }
2363                 } else if (S_ISREG(st_buf.st_mode)) {
2364                         if (dev == st_buf.st_dev && ino == st_buf.st_ino) {
2365                                 ret = 1;
2366                                 break;
2367                         }
2368                 }
2369         }
2370
2371 out:
2372         fclose(f);
2373
2374         return ret;
2375 }
2376
2377 /*
2378  * Check for existing filesystem or partition table on device.
2379  * Returns:
2380  *       1 for existing fs or partition
2381  *       0 for nothing found
2382  *      -1 for internal error
2383  */
2384 static int
2385 check_overwrite(
2386         char            *device)
2387 {
2388         const char      *type;
2389         blkid_probe     pr = NULL;
2390         int             ret;
2391         blkid_loff_t    size;
2392
2393         if (!device || !*device)
2394                 return 0;
2395
2396         ret = -1; /* will reset on success of all setup calls */
2397
2398         pr = blkid_new_probe_from_filename(device);
2399         if (!pr)
2400                 goto out;
2401
2402         size = blkid_probe_get_size(pr);
2403         if (size < 0)
2404                 goto out;
2405
2406         /* nothing to overwrite on a 0-length device */
2407         if (size == 0) {
2408                 ret = 0;
2409                 goto out;
2410         }
2411
2412         ret = blkid_probe_enable_partitions(pr, 1);
2413         if (ret < 0)
2414                 goto out;
2415
2416         ret = blkid_do_fullprobe(pr);
2417         if (ret < 0)
2418                 goto out;
2419
2420         /*
2421          * Blkid returns 1 for nothing found and 0 when it finds a signature,
2422          * but we want the exact opposite, so reverse the return value here.
2423          *
2424          * In addition print some useful diagnostics about what actually is
2425          * on the device.
2426          */
2427         if (ret) {
2428                 ret = 0;
2429                 goto out;
2430         }
2431
2432         if (!blkid_probe_lookup_value(pr, "TYPE", &type, NULL)) {
2433                 fprintf(stderr,
2434                         "%s appears to contain an existing "
2435                         "filesystem (%s).\n", device, type);
2436         } else if (!blkid_probe_lookup_value(pr, "PTTYPE", &type, NULL)) {
2437                 fprintf(stderr,
2438                         "%s appears to contain a partition "
2439                         "table (%s).\n", device, type);
2440         } else {
2441                 fprintf(stderr,
2442                         "%s appears to contain something weird "
2443                         "according to blkid\n", device);
2444         }
2445         ret = 1;
2446
2447 out:
2448         if (pr)
2449                 blkid_free_probe(pr);
2450         if (ret == -1)
2451                 fprintf(stderr,
2452                         "probe of %s failed, cannot detect "
2453                           "existing filesystem.\n", device);
2454         return ret;
2455 }
2456
2457 static int group_profile_devs_min(u64 flag)
2458 {
2459         switch (flag & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
2460         case 0: /* single */
2461         case BTRFS_BLOCK_GROUP_DUP:
2462                 return 1;
2463         case BTRFS_BLOCK_GROUP_RAID0:
2464         case BTRFS_BLOCK_GROUP_RAID1:
2465         case BTRFS_BLOCK_GROUP_RAID5:
2466                 return 2;
2467         case BTRFS_BLOCK_GROUP_RAID6:
2468                 return 3;
2469         case BTRFS_BLOCK_GROUP_RAID10:
2470                 return 4;
2471         default:
2472                 return -1;
2473         }
2474 }
2475
2476 int test_num_disk_vs_raid(u64 metadata_profile, u64 data_profile,
2477         u64 dev_cnt, int mixed, int ssd)
2478 {
2479         u64 allowed = 0;
2480
2481         switch (dev_cnt) {
2482         default:
2483         case 4:
2484                 allowed |= BTRFS_BLOCK_GROUP_RAID10;
2485         case 3:
2486                 allowed |= BTRFS_BLOCK_GROUP_RAID6;
2487         case 2:
2488                 allowed |= BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1 |
2489                         BTRFS_BLOCK_GROUP_RAID5;
2490                 break;
2491         case 1:
2492                 allowed |= BTRFS_BLOCK_GROUP_DUP;
2493         }
2494
2495         if (dev_cnt > 1 &&
2496             ((metadata_profile | data_profile) & BTRFS_BLOCK_GROUP_DUP)) {
2497                 fprintf(stderr,
2498                     "ERROR: DUP is not allowed when FS has multiple devices\n");
2499                 return 1;
2500         }
2501         if (metadata_profile & ~allowed) {
2502                 fprintf(stderr,
2503                         "ERROR: unable to create FS with metadata profile %s "
2504                         "(have %llu devices but %d devices are required)\n",
2505                         btrfs_group_profile_str(metadata_profile), dev_cnt,
2506                         group_profile_devs_min(metadata_profile));
2507                 return 1;
2508         }
2509         if (data_profile & ~allowed) {
2510                 fprintf(stderr,
2511                         "ERROR: unable to create FS with data profile %s "
2512                         "(have %llu devices but %d devices are required)\n",
2513                         btrfs_group_profile_str(data_profile), dev_cnt,
2514                         group_profile_devs_min(data_profile));
2515                 return 1;
2516         }
2517
2518         warning_on(!mixed && (data_profile & BTRFS_BLOCK_GROUP_DUP) && ssd,
2519                    "DUP may not actually lead to 2 copies on the device, see manual page");
2520
2521         return 0;
2522 }
2523
2524 int group_profile_max_safe_loss(u64 flags)
2525 {
2526         switch (flags & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
2527         case 0: /* single */
2528         case BTRFS_BLOCK_GROUP_DUP:
2529         case BTRFS_BLOCK_GROUP_RAID0:
2530                 return 0;
2531         case BTRFS_BLOCK_GROUP_RAID1:
2532         case BTRFS_BLOCK_GROUP_RAID5:
2533         case BTRFS_BLOCK_GROUP_RAID10:
2534                 return 1;
2535         case BTRFS_BLOCK_GROUP_RAID6:
2536                 return 2;
2537         default:
2538                 return -1;
2539         }
2540 }
2541
2542 /*
2543  * Check if a device is suitable for btrfs
2544  * returns:
2545  *  1: something is wrong, an error is printed
2546  *  0: all is fine
2547  */
2548 int test_dev_for_mkfs(char *file, int force_overwrite)
2549 {
2550         int ret, fd;
2551         struct stat st;
2552
2553         ret = is_swap_device(file);
2554         if (ret < 0) {
2555                 fprintf(stderr, "ERROR: checking status of %s: %s\n", file,
2556                         strerror(-ret));
2557                 return 1;
2558         }
2559         if (ret == 1) {
2560                 fprintf(stderr, "ERROR: %s is a swap device\n", file);
2561                 return 1;
2562         }
2563         if (!force_overwrite) {
2564                 if (check_overwrite(file)) {
2565                         fprintf(stderr, "Use the -f option to force overwrite.\n");
2566                         return 1;
2567                 }
2568         }
2569         ret = check_mounted(file);
2570         if (ret < 0) {
2571                 fprintf(stderr, "ERROR: checking mount status of %s: %s\n",
2572                         file, strerror(-ret));
2573                 return 1;
2574         }
2575         if (ret == 1) {
2576                 fprintf(stderr, "ERROR: %s is mounted\n", file);
2577                 return 1;
2578         }
2579         /* check if the device is busy */
2580         fd = open(file, O_RDWR|O_EXCL);
2581         if (fd < 0) {
2582                 fprintf(stderr, "ERROR: unable to open %s: %s\n", file,
2583                         strerror(errno));
2584                 return 1;
2585         }
2586         if (fstat(fd, &st)) {
2587                 fprintf(stderr, "ERROR: unable to stat %s: %s\n", file,
2588                         strerror(errno));
2589                 close(fd);
2590                 return 1;
2591         }
2592         if (!S_ISBLK(st.st_mode)) {
2593                 fprintf(stderr, "ERROR: %s is not a block device\n", file);
2594                 close(fd);
2595                 return 1;
2596         }
2597         close(fd);
2598         return 0;
2599 }
2600
2601 int btrfs_scan_lblkid(void)
2602 {
2603         int fd = -1;
2604         int ret;
2605         u64 num_devices;
2606         struct btrfs_fs_devices *tmp_devices;
2607         blkid_dev_iterate iter = NULL;
2608         blkid_dev dev = NULL;
2609         blkid_cache cache = NULL;
2610         char path[PATH_MAX];
2611
2612         if (btrfs_scan_done)
2613                 return 0;
2614
2615         if (blkid_get_cache(&cache, NULL) < 0) {
2616                 printf("ERROR: lblkid cache get failed\n");
2617                 return 1;
2618         }
2619         blkid_probe_all(cache);
2620         iter = blkid_dev_iterate_begin(cache);
2621         blkid_dev_set_search(iter, "TYPE", "btrfs");
2622         while (blkid_dev_next(iter, &dev) == 0) {
2623                 dev = blkid_verify(cache, dev);
2624                 if (!dev)
2625                         continue;
2626                 /* if we are here its definitely a btrfs disk*/
2627                 strncpy_null(path, blkid_dev_devname(dev));
2628
2629                 fd = open(path, O_RDONLY);
2630                 if (fd < 0) {
2631                         printf("ERROR: could not open %s\n", path);
2632                         continue;
2633                 }
2634                 ret = btrfs_scan_one_device(fd, path, &tmp_devices,
2635                                 &num_devices, BTRFS_SUPER_INFO_OFFSET, 0);
2636                 if (ret) {
2637                         printf("ERROR: could not scan %s\n", path);
2638                         close (fd);
2639                         continue;
2640                 }
2641
2642                 close(fd);
2643         }
2644         blkid_dev_iterate_end(iter);
2645         blkid_put_cache(cache);
2646
2647         btrfs_scan_done = 1;
2648
2649         return 0;
2650 }
2651
2652 int is_vol_small(char *file)
2653 {
2654         int fd = -1;
2655         int e;
2656         struct stat st;
2657         u64 size;
2658
2659         fd = open(file, O_RDONLY);
2660         if (fd < 0)
2661                 return -errno;
2662         if (fstat(fd, &st) < 0) {
2663                 e = -errno;
2664                 close(fd);
2665                 return e;
2666         }
2667         size = btrfs_device_size(fd, &st);
2668         if (size == 0) {
2669                 close(fd);
2670                 return -1;
2671         }
2672         if (size < BTRFS_MKFS_SMALL_VOLUME_SIZE) {
2673                 close(fd);
2674                 return 1;
2675         } else {
2676                 close(fd);
2677                 return 0;
2678         }
2679 }
2680
2681 /*
2682  * This reads a line from the stdin and only returns non-zero if the
2683  * first whitespace delimited token is a case insensitive match with yes
2684  * or y.
2685  */
2686 int ask_user(char *question)
2687 {
2688         char buf[30] = {0,};
2689         char *saveptr = NULL;
2690         char *answer;
2691
2692         printf("%s [y/N]: ", question);
2693
2694         return fgets(buf, sizeof(buf) - 1, stdin) &&
2695                (answer = strtok_r(buf, " \t\n\r", &saveptr)) &&
2696                (!strcasecmp(answer, "yes") || !strcasecmp(answer, "y"));
2697 }
2698
2699 /*
2700  * For a given:
2701  * - file or directory return the containing tree root id
2702  * - subvolume return its own tree id
2703  * - BTRFS_EMPTY_SUBVOL_DIR_OBJECTID (directory with ino == 2) the result is
2704  *   undefined and function returns -1
2705  */
2706 int lookup_ino_rootid(int fd, u64 *rootid)
2707 {
2708         struct btrfs_ioctl_ino_lookup_args args;
2709         int ret;
2710
2711         memset(&args, 0, sizeof(args));
2712         args.treeid = 0;
2713         args.objectid = BTRFS_FIRST_FREE_OBJECTID;
2714
2715         ret = ioctl(fd, BTRFS_IOC_INO_LOOKUP, &args);
2716         if (ret < 0) {
2717                 fprintf(stderr, "ERROR: Failed to lookup root id - %s\n",
2718                         strerror(errno));
2719                 return ret;
2720         }
2721
2722         *rootid = args.treeid;
2723
2724         return 0;
2725 }
2726
2727 /*
2728  * return 0 if a btrfs mount point is found
2729  * return 1 if a mount point is found but not btrfs
2730  * return <0 if something goes wrong
2731  */
2732 int find_mount_root(const char *path, char **mount_root)
2733 {
2734         FILE *mnttab;
2735         int fd;
2736         struct mntent *ent;
2737         int len;
2738         int ret;
2739         int not_btrfs = 1;
2740         int longest_matchlen = 0;
2741         char *longest_match = NULL;
2742
2743         fd = open(path, O_RDONLY | O_NOATIME);
2744         if (fd < 0)
2745                 return -errno;
2746         close(fd);
2747
2748         mnttab = setmntent("/proc/self/mounts", "r");
2749         if (!mnttab)
2750                 return -errno;
2751
2752         while ((ent = getmntent(mnttab))) {
2753                 len = strlen(ent->mnt_dir);
2754                 if (strncmp(ent->mnt_dir, path, len) == 0) {
2755                         /* match found and use the latest match */
2756                         if (longest_matchlen <= len) {
2757                                 free(longest_match);
2758                                 longest_matchlen = len;
2759                                 longest_match = strdup(ent->mnt_dir);
2760                                 not_btrfs = strcmp(ent->mnt_type, "btrfs");
2761                         }
2762                 }
2763         }
2764         endmntent(mnttab);
2765
2766         if (!longest_match)
2767                 return -ENOENT;
2768         if (not_btrfs) {
2769                 free(longest_match);
2770                 return 1;
2771         }
2772
2773         ret = 0;
2774         *mount_root = realpath(longest_match, NULL);
2775         if (!*mount_root)
2776                 ret = -errno;
2777
2778         free(longest_match);
2779         return ret;
2780 }
2781
2782 int test_minimum_size(const char *file, u32 nodesize)
2783 {
2784         int fd;
2785         struct stat statbuf;
2786
2787         fd = open(file, O_RDONLY);
2788         if (fd < 0)
2789                 return -errno;
2790         if (stat(file, &statbuf) < 0) {
2791                 close(fd);
2792                 return -errno;
2793         }
2794         if (btrfs_device_size(fd, &statbuf) < btrfs_min_dev_size(nodesize)) {
2795                 close(fd);
2796                 return 1;
2797         }
2798         close(fd);
2799         return 0;
2800 }
2801
2802 /*
2803  * test if name is a correct subvolume name
2804  * this function return
2805  * 0-> name is not a correct subvolume name
2806  * 1-> name is a correct subvolume name
2807  */
2808 int test_issubvolname(const char *name)
2809 {
2810         return name[0] != '\0' && !strchr(name, '/') &&
2811                 strcmp(name, ".") && strcmp(name, "..");
2812 }
2813
2814 /*
2815  * Test if path is a directory
2816  * Returns:
2817  *   0 - path exists but it is not a directory
2818  *   1 - path exists and it is a directory
2819  * < 0 - error
2820  */
2821 int test_isdir(const char *path)
2822 {
2823         struct stat st;
2824         int ret;
2825
2826         ret = stat(path, &st);
2827         if (ret < 0)
2828                 return -errno;
2829
2830         return !!S_ISDIR(st.st_mode);
2831 }
2832
2833 void units_set_mode(unsigned *units, unsigned mode)
2834 {
2835         unsigned base = *units & UNITS_MODE_MASK;
2836
2837         *units = base | mode;
2838 }
2839
2840 void units_set_base(unsigned *units, unsigned base)
2841 {
2842         unsigned mode = *units & ~UNITS_MODE_MASK;
2843
2844         *units = base | mode;
2845 }
2846
2847 int find_next_key(struct btrfs_path *path, struct btrfs_key *key)
2848 {
2849         int level;
2850
2851         for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
2852                 if (!path->nodes[level])
2853                         break;
2854                 if (path->slots[level] + 1 >=
2855                     btrfs_header_nritems(path->nodes[level]))
2856                         continue;
2857                 if (level == 0)
2858                         btrfs_item_key_to_cpu(path->nodes[level], key,
2859                                               path->slots[level] + 1);
2860                 else
2861                         btrfs_node_key_to_cpu(path->nodes[level], key,
2862                                               path->slots[level] + 1);
2863                 return 0;
2864         }
2865         return 1;
2866 }
2867
2868 char* btrfs_group_type_str(u64 flag)
2869 {
2870         u64 mask = BTRFS_BLOCK_GROUP_TYPE_MASK |
2871                 BTRFS_SPACE_INFO_GLOBAL_RSV;
2872
2873         switch (flag & mask) {
2874         case BTRFS_BLOCK_GROUP_DATA:
2875                 return "Data";
2876         case BTRFS_BLOCK_GROUP_SYSTEM:
2877                 return "System";
2878         case BTRFS_BLOCK_GROUP_METADATA:
2879                 return "Metadata";
2880         case BTRFS_BLOCK_GROUP_DATA|BTRFS_BLOCK_GROUP_METADATA:
2881                 return "Data+Metadata";
2882         case BTRFS_SPACE_INFO_GLOBAL_RSV:
2883                 return "GlobalReserve";
2884         default:
2885                 return "unknown";
2886         }
2887 }
2888
2889 char* btrfs_group_profile_str(u64 flag)
2890 {
2891         switch (flag & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
2892         case 0:
2893                 return "single";
2894         case BTRFS_BLOCK_GROUP_RAID0:
2895                 return "RAID0";
2896         case BTRFS_BLOCK_GROUP_RAID1:
2897                 return "RAID1";
2898         case BTRFS_BLOCK_GROUP_RAID5:
2899                 return "RAID5";
2900         case BTRFS_BLOCK_GROUP_RAID6:
2901                 return "RAID6";
2902         case BTRFS_BLOCK_GROUP_DUP:
2903                 return "DUP";
2904         case BTRFS_BLOCK_GROUP_RAID10:
2905                 return "RAID10";
2906         default:
2907                 return "unknown";
2908         }
2909 }
2910
2911 u64 disk_size(char *path)
2912 {
2913         struct statfs sfs;
2914
2915         if (statfs(path, &sfs) < 0)
2916                 return 0;
2917         else
2918                 return sfs.f_bsize * sfs.f_blocks;
2919 }
2920
2921 u64 get_partition_size(char *dev)
2922 {
2923         u64 result;
2924         int fd = open(dev, O_RDONLY);
2925
2926         if (fd < 0)
2927                 return 0;
2928         if (ioctl(fd, BLKGETSIZE64, &result) < 0) {
2929                 close(fd);
2930                 return 0;
2931         }
2932         close(fd);
2933
2934         return result;
2935 }
2936
2937 int btrfs_tree_search2_ioctl_supported(int fd)
2938 {
2939         struct btrfs_ioctl_search_args_v2 *args2;
2940         struct btrfs_ioctl_search_key *sk;
2941         int args2_size = 1024;
2942         char args2_buf[args2_size];
2943         int ret;
2944         static int v2_supported = -1;
2945
2946         if (v2_supported != -1)
2947                 return v2_supported;
2948
2949         args2 = (struct btrfs_ioctl_search_args_v2 *)args2_buf;
2950         sk = &(args2->key);
2951
2952         /*
2953          * Search for the extent tree item in the root tree.
2954          */
2955         sk->tree_id = BTRFS_ROOT_TREE_OBJECTID;
2956         sk->min_objectid = BTRFS_EXTENT_TREE_OBJECTID;
2957         sk->max_objectid = BTRFS_EXTENT_TREE_OBJECTID;
2958         sk->min_type = BTRFS_ROOT_ITEM_KEY;
2959         sk->max_type = BTRFS_ROOT_ITEM_KEY;
2960         sk->min_offset = 0;
2961         sk->max_offset = (u64)-1;
2962         sk->min_transid = 0;
2963         sk->max_transid = (u64)-1;
2964         sk->nr_items = 1;
2965         args2->buf_size = args2_size - sizeof(struct btrfs_ioctl_search_args_v2);
2966         ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH_V2, args2);
2967         if (ret == -EOPNOTSUPP)
2968                 v2_supported = 0;
2969         else if (ret == 0)
2970                 v2_supported = 1;
2971         else
2972                 return ret;
2973
2974         return v2_supported;
2975 }
2976
2977 int btrfs_check_nodesize(u32 nodesize, u32 sectorsize, u64 features)
2978 {
2979         if (nodesize < sectorsize) {
2980                 fprintf(stderr,
2981                         "ERROR: Illegal nodesize %u (smaller than %u)\n",
2982                         nodesize, sectorsize);
2983                 return -1;
2984         } else if (nodesize > BTRFS_MAX_METADATA_BLOCKSIZE) {
2985                 fprintf(stderr,
2986                         "ERROR: Illegal nodesize %u (larger than %u)\n",
2987                         nodesize, BTRFS_MAX_METADATA_BLOCKSIZE);
2988                 return -1;
2989         } else if (nodesize & (sectorsize - 1)) {
2990                 fprintf(stderr,
2991                         "ERROR: Illegal nodesize %u (not aligned to %u)\n",
2992                         nodesize, sectorsize);
2993                 return -1;
2994         } else if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS &&
2995                    nodesize != sectorsize) {
2996                 fprintf(stderr,
2997                         "ERROR: Illegal nodesize %u (not equal to %u for mixed block group)\n",
2998                         nodesize, sectorsize);
2999                 return -1;
3000         }
3001         return 0;
3002 }
3003
3004 /*
3005  * Copy a path argument from SRC to DEST and check the SRC length if it's at
3006  * most PATH_MAX and fits into DEST. DESTLEN is supposed to be exact size of
3007  * the buffer.
3008  * The destination buffer is zero terminated.
3009  * Return < 0 for error, 0 otherwise.
3010  */
3011 int arg_copy_path(char *dest, const char *src, int destlen)
3012 {
3013         size_t len = strlen(src);
3014
3015         if (len >= PATH_MAX || len >= destlen)
3016                 return -ENAMETOOLONG;
3017
3018         __strncpy__null(dest, src, destlen);
3019
3020         return 0;
3021 }
3022
3023 unsigned int get_unit_mode_from_arg(int *argc, char *argv[], int df_mode)
3024 {
3025         unsigned int unit_mode = UNITS_DEFAULT;
3026         int arg_i;
3027         int arg_end;
3028
3029         for (arg_i = 0; arg_i < *argc; arg_i++) {
3030                 if (!strcmp(argv[arg_i], "--"))
3031                         break;
3032
3033                 if (!strcmp(argv[arg_i], "--raw")) {
3034                         unit_mode = UNITS_RAW;
3035                         argv[arg_i] = NULL;
3036                         continue;
3037                 }
3038                 if (!strcmp(argv[arg_i], "--human-readable")) {
3039                         unit_mode = UNITS_HUMAN_BINARY;
3040                         argv[arg_i] = NULL;
3041                         continue;
3042                 }
3043
3044                 if (!strcmp(argv[arg_i], "--iec")) {
3045                         units_set_mode(&unit_mode, UNITS_BINARY);
3046                         argv[arg_i] = NULL;
3047                         continue;
3048                 }
3049                 if (!strcmp(argv[arg_i], "--si")) {
3050                         units_set_mode(&unit_mode, UNITS_DECIMAL);
3051                         argv[arg_i] = NULL;
3052                         continue;
3053                 }
3054
3055                 if (!strcmp(argv[arg_i], "--kbytes")) {
3056                         units_set_base(&unit_mode, UNITS_KBYTES);
3057                         argv[arg_i] = NULL;
3058                         continue;
3059                 }
3060                 if (!strcmp(argv[arg_i], "--mbytes")) {
3061                         units_set_base(&unit_mode, UNITS_MBYTES);
3062                         argv[arg_i] = NULL;
3063                         continue;
3064                 }
3065                 if (!strcmp(argv[arg_i], "--gbytes")) {
3066                         units_set_base(&unit_mode, UNITS_GBYTES);
3067                         argv[arg_i] = NULL;
3068                         continue;
3069                 }
3070                 if (!strcmp(argv[arg_i], "--tbytes")) {
3071                         units_set_base(&unit_mode, UNITS_TBYTES);
3072                         argv[arg_i] = NULL;
3073                         continue;
3074                 }
3075
3076                 if (!df_mode)
3077                         continue;
3078
3079                 if (!strcmp(argv[arg_i], "-b")) {
3080                         unit_mode = UNITS_RAW;
3081                         argv[arg_i] = NULL;
3082                         continue;
3083                 }
3084                 if (!strcmp(argv[arg_i], "-h")) {
3085                         unit_mode = UNITS_HUMAN_BINARY;
3086                         argv[arg_i] = NULL;
3087                         continue;
3088                 }
3089                 if (!strcmp(argv[arg_i], "-H")) {
3090                         unit_mode = UNITS_HUMAN_DECIMAL;
3091                         argv[arg_i] = NULL;
3092                         continue;
3093                 }
3094                 if (!strcmp(argv[arg_i], "-k")) {
3095                         units_set_base(&unit_mode, UNITS_KBYTES);
3096                         argv[arg_i] = NULL;
3097                         continue;
3098                 }
3099                 if (!strcmp(argv[arg_i], "-m")) {
3100                         units_set_base(&unit_mode, UNITS_MBYTES);
3101                         argv[arg_i] = NULL;
3102                         continue;
3103                 }
3104                 if (!strcmp(argv[arg_i], "-g")) {
3105                         units_set_base(&unit_mode, UNITS_GBYTES);
3106                         argv[arg_i] = NULL;
3107                         continue;
3108                 }
3109                 if (!strcmp(argv[arg_i], "-t")) {
3110                         units_set_base(&unit_mode, UNITS_TBYTES);
3111                         argv[arg_i] = NULL;
3112                         continue;
3113                 }
3114         }
3115
3116         for (arg_i = 0, arg_end = 0; arg_i < *argc; arg_i++) {
3117                 if (!argv[arg_i])
3118                         continue;
3119                 argv[arg_end] = argv[arg_i];
3120                 arg_end++;
3121         }
3122
3123         *argc = arg_end;
3124
3125         return unit_mode;
3126 }
3127
3128 int string_is_numerical(const char *str)
3129 {
3130         if (!(*str >= '0' && *str <= '9'))
3131                 return 0;
3132         while (*str >= '0' && *str <= '9')
3133                 str++;
3134         if (*str != '\0')
3135                 return 0;
3136         return 1;
3137 }
3138
3139 /*
3140  * Preprocess @argv with getopt_long to reorder options and consume the "--"
3141  * option separator.
3142  * Unknown short and long options are reported, optionally the @usage is printed
3143  * before exit.
3144  */
3145 void clean_args_no_options(int argc, char *argv[], const char * const *usagestr)
3146 {
3147         static const struct option long_options[] = {
3148                 {NULL, 0, NULL, 0}
3149         };
3150
3151         while (1) {
3152                 int c = getopt_long(argc, argv, "", long_options, NULL);
3153
3154                 if (c < 0)
3155                         break;
3156
3157                 switch (c) {
3158                 default:
3159                         if (usagestr)
3160                                 usage(usagestr);
3161                 }
3162         }
3163 }