btrfs-progs: utils: switch more error messages to common helpers
[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                 error("unable to stat %s: %s", file, strerror(errno));
869                 return 1;
870         }
871
872         block_count = btrfs_device_size(fd, &st);
873         if (block_count == 0) {
874                 error("unable to determine size of %s", 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                 error("failed to zero device '%s': %s", file, strerror(-ret));
903                 return 1;
904         }
905
906         ret = btrfs_wipe_existing_sb(fd);
907         if (ret < 0) {
908                 error("cannot wipe superblocks on %s", file);
909                 return 1;
910         }
911
912         *block_count_ret = block_count;
913         return 0;
914 }
915
916 int btrfs_make_root_dir(struct btrfs_trans_handle *trans,
917                         struct btrfs_root *root, u64 objectid)
918 {
919         int ret;
920         struct btrfs_inode_item inode_item;
921         time_t now = time(NULL);
922
923         memset(&inode_item, 0, sizeof(inode_item));
924         btrfs_set_stack_inode_generation(&inode_item, trans->transid);
925         btrfs_set_stack_inode_size(&inode_item, 0);
926         btrfs_set_stack_inode_nlink(&inode_item, 1);
927         btrfs_set_stack_inode_nbytes(&inode_item, root->nodesize);
928         btrfs_set_stack_inode_mode(&inode_item, S_IFDIR | 0755);
929         btrfs_set_stack_timespec_sec(&inode_item.atime, now);
930         btrfs_set_stack_timespec_nsec(&inode_item.atime, 0);
931         btrfs_set_stack_timespec_sec(&inode_item.ctime, now);
932         btrfs_set_stack_timespec_nsec(&inode_item.ctime, 0);
933         btrfs_set_stack_timespec_sec(&inode_item.mtime, now);
934         btrfs_set_stack_timespec_nsec(&inode_item.mtime, 0);
935         btrfs_set_stack_timespec_sec(&inode_item.otime, 0);
936         btrfs_set_stack_timespec_nsec(&inode_item.otime, 0);
937
938         if (root->fs_info->tree_root == root)
939                 btrfs_set_super_root_dir(root->fs_info->super_copy, objectid);
940
941         ret = btrfs_insert_inode(trans, root, objectid, &inode_item);
942         if (ret)
943                 goto error;
944
945         ret = btrfs_insert_inode_ref(trans, root, "..", 2, objectid, objectid, 0);
946         if (ret)
947                 goto error;
948
949         btrfs_set_root_dirid(&root->root_item, objectid);
950         ret = 0;
951 error:
952         return ret;
953 }
954
955 /*
956  * checks if a path is a block device node
957  * Returns negative errno on failure, otherwise
958  * returns 1 for blockdev, 0 for not-blockdev
959  */
960 int is_block_device(const char *path)
961 {
962         struct stat statbuf;
963
964         if (stat(path, &statbuf) < 0)
965                 return -errno;
966
967         return !!S_ISBLK(statbuf.st_mode);
968 }
969
970 /*
971  * check if given path is a mount point
972  * return 1 if yes. 0 if no. -1 for error
973  */
974 int is_mount_point(const char *path)
975 {
976         FILE *f;
977         struct mntent *mnt;
978         int ret = 0;
979
980         f = setmntent("/proc/self/mounts", "r");
981         if (f == NULL)
982                 return -1;
983
984         while ((mnt = getmntent(f)) != NULL) {
985                 if (strcmp(mnt->mnt_dir, path))
986                         continue;
987                 ret = 1;
988                 break;
989         }
990         endmntent(f);
991         return ret;
992 }
993
994 static int is_reg_file(const char *path)
995 {
996         struct stat statbuf;
997
998         if (stat(path, &statbuf) < 0)
999                 return -errno;
1000         return S_ISREG(statbuf.st_mode);
1001 }
1002
1003 /*
1004  * This function checks if the given input parameter is
1005  * an uuid or a path
1006  * return <0 : some error in the given input
1007  * return BTRFS_ARG_UNKNOWN:    unknown input
1008  * return BTRFS_ARG_UUID:       given input is uuid
1009  * return BTRFS_ARG_MNTPOINT:   given input is path
1010  * return BTRFS_ARG_REG:        given input is regular file
1011  * return BTRFS_ARG_BLKDEV:     given input is block device
1012  */
1013 int check_arg_type(const char *input)
1014 {
1015         uuid_t uuid;
1016         char path[PATH_MAX];
1017
1018         if (!input)
1019                 return -EINVAL;
1020
1021         if (realpath(input, path)) {
1022                 if (is_block_device(path) == 1)
1023                         return BTRFS_ARG_BLKDEV;
1024
1025                 if (is_mount_point(path) == 1)
1026                         return BTRFS_ARG_MNTPOINT;
1027
1028                 if (is_reg_file(path))
1029                         return BTRFS_ARG_REG;
1030
1031                 return BTRFS_ARG_UNKNOWN;
1032         }
1033
1034         if (strlen(input) == (BTRFS_UUID_UNPARSED_SIZE - 1) &&
1035                 !uuid_parse(input, uuid))
1036                 return BTRFS_ARG_UUID;
1037
1038         return BTRFS_ARG_UNKNOWN;
1039 }
1040
1041 /*
1042  * Find the mount point for a mounted device.
1043  * On success, returns 0 with mountpoint in *mp.
1044  * On failure, returns -errno (not mounted yields -EINVAL)
1045  * Is noisy on failures, expects to be given a mounted device.
1046  */
1047 int get_btrfs_mount(const char *dev, char *mp, size_t mp_size)
1048 {
1049         int ret;
1050         int fd = -1;
1051
1052         ret = is_block_device(dev);
1053         if (ret <= 0) {
1054                 if (!ret) {
1055                         error("not a block device: %s", dev);
1056                         ret = -EINVAL;
1057                 } else {
1058                         error("cannot check %s: %s", dev, strerror(-ret));
1059                 }
1060                 goto out;
1061         }
1062
1063         fd = open(dev, O_RDONLY);
1064         if (fd < 0) {
1065                 ret = -errno;
1066                 error("cannot open %s: %s", dev, strerror(errno));
1067                 goto out;
1068         }
1069
1070         ret = check_mounted_where(fd, dev, mp, mp_size, NULL);
1071         if (!ret) {
1072                 ret = -EINVAL;
1073         } else { /* mounted, all good */
1074                 ret = 0;
1075         }
1076 out:
1077         if (fd != -1)
1078                 close(fd);
1079         return ret;
1080 }
1081
1082 /*
1083  * Given a pathname, return a filehandle to:
1084  *      the original pathname or,
1085  *      if the pathname is a mounted btrfs device, to its mountpoint.
1086  *
1087  * On error, return -1, errno should be set.
1088  */
1089 int open_path_or_dev_mnt(const char *path, DIR **dirstream, int verbose)
1090 {
1091         char mp[PATH_MAX];
1092         int ret;
1093
1094         if (is_block_device(path)) {
1095                 ret = get_btrfs_mount(path, mp, sizeof(mp));
1096                 if (ret < 0) {
1097                         /* not a mounted btrfs dev */
1098                         error_on(verbose, "'%s' is not a mounted btrfs device",
1099                                  path);
1100                         errno = EINVAL;
1101                         return -1;
1102                 }
1103                 ret = open_file_or_dir(mp, dirstream);
1104                 error_on(verbose && ret < 0, "can't access '%s': %s",
1105                          path, strerror(errno));
1106         } else {
1107                 ret = btrfs_open_dir(path, dirstream, 1);
1108         }
1109
1110         return ret;
1111 }
1112
1113 /*
1114  * Do the following checks before calling open_file_or_dir():
1115  * 1: path is in a btrfs filesystem
1116  * 2: path is a directory
1117  */
1118 int btrfs_open_dir(const char *path, DIR **dirstream, int verbose)
1119 {
1120         struct statfs stfs;
1121         struct stat st;
1122         int ret;
1123
1124         if (statfs(path, &stfs) != 0) {
1125                 error_on(verbose, "cannot access '%s': %s", path,
1126                                 strerror(errno));
1127                 return -1;
1128         }
1129
1130         if (stfs.f_type != BTRFS_SUPER_MAGIC) {
1131                 error_on(verbose, "not a btrfs filesystem: %s", path);
1132                 return -2;
1133         }
1134
1135         if (stat(path, &st) != 0) {
1136                 error_on(verbose, "cannot access '%s': %s", path,
1137                                 strerror(errno));
1138                 return -1;
1139         }
1140
1141         if (!S_ISDIR(st.st_mode)) {
1142                 error_on(verbose, "not a directory: %s", path);
1143                 return -3;
1144         }
1145
1146         ret = open_file_or_dir(path, dirstream);
1147         if (ret < 0) {
1148                 error_on(verbose, "cannot access '%s': %s", path,
1149                                 strerror(errno));
1150         }
1151
1152         return ret;
1153 }
1154
1155 /* checks if a device is a loop device */
1156 static int is_loop_device (const char* device) {
1157         struct stat statbuf;
1158
1159         if(stat(device, &statbuf) < 0)
1160                 return -errno;
1161
1162         return (S_ISBLK(statbuf.st_mode) &&
1163                 MAJOR(statbuf.st_rdev) == LOOP_MAJOR);
1164 }
1165
1166 /*
1167  * Takes a loop device path (e.g. /dev/loop0) and returns
1168  * the associated file (e.g. /images/my_btrfs.img) using
1169  * loopdev API
1170  */
1171 static int resolve_loop_device_with_loopdev(const char* loop_dev, char* loop_file)
1172 {
1173         int fd;
1174         int ret;
1175         struct loop_info64 lo64;
1176
1177         fd = open(loop_dev, O_RDONLY | O_NONBLOCK);
1178         if (fd < 0)
1179                 return -errno;
1180         ret = ioctl(fd, LOOP_GET_STATUS64, &lo64);
1181         if (ret < 0) {
1182                 ret = -errno;
1183                 goto out;
1184         }
1185
1186         memcpy(loop_file, lo64.lo_file_name, sizeof(lo64.lo_file_name));
1187         loop_file[sizeof(lo64.lo_file_name)] = 0;
1188
1189 out:
1190         close(fd);
1191
1192         return ret;
1193 }
1194
1195 /* Takes a loop device path (e.g. /dev/loop0) and returns
1196  * the associated file (e.g. /images/my_btrfs.img) */
1197 static int resolve_loop_device(const char* loop_dev, char* loop_file,
1198                 int max_len)
1199 {
1200         int ret;
1201         FILE *f;
1202         char fmt[20];
1203         char p[PATH_MAX];
1204         char real_loop_dev[PATH_MAX];
1205
1206         if (!realpath(loop_dev, real_loop_dev))
1207                 return -errno;
1208         snprintf(p, PATH_MAX, "/sys/block/%s/loop/backing_file", strrchr(real_loop_dev, '/'));
1209         if (!(f = fopen(p, "r"))) {
1210                 if (errno == ENOENT)
1211                         /*
1212                          * It's possibly a partitioned loop device, which is
1213                          * resolvable with loopdev API.
1214                          */
1215                         return resolve_loop_device_with_loopdev(loop_dev, loop_file);
1216                 return -errno;
1217         }
1218
1219         snprintf(fmt, 20, "%%%i[^\n]", max_len-1);
1220         ret = fscanf(f, fmt, loop_file);
1221         fclose(f);
1222         if (ret == EOF)
1223                 return -errno;
1224
1225         return 0;
1226 }
1227
1228 /*
1229  * Checks whether a and b are identical or device
1230  * files associated with the same block device
1231  */
1232 static int is_same_blk_file(const char* a, const char* b)
1233 {
1234         struct stat st_buf_a, st_buf_b;
1235         char real_a[PATH_MAX];
1236         char real_b[PATH_MAX];
1237
1238         if (!realpath(a, real_a))
1239                 strncpy_null(real_a, a);
1240
1241         if (!realpath(b, real_b))
1242                 strncpy_null(real_b, b);
1243
1244         /* Identical path? */
1245         if (strcmp(real_a, real_b) == 0)
1246                 return 1;
1247
1248         if (stat(a, &st_buf_a) < 0 || stat(b, &st_buf_b) < 0) {
1249                 if (errno == ENOENT)
1250                         return 0;
1251                 return -errno;
1252         }
1253
1254         /* Same blockdevice? */
1255         if (S_ISBLK(st_buf_a.st_mode) && S_ISBLK(st_buf_b.st_mode) &&
1256             st_buf_a.st_rdev == st_buf_b.st_rdev) {
1257                 return 1;
1258         }
1259
1260         /* Hardlink? */
1261         if (st_buf_a.st_dev == st_buf_b.st_dev &&
1262             st_buf_a.st_ino == st_buf_b.st_ino) {
1263                 return 1;
1264         }
1265
1266         return 0;
1267 }
1268
1269 /* checks if a and b are identical or device
1270  * files associated with the same block device or
1271  * if one file is a loop device that uses the other
1272  * file.
1273  */
1274 static int is_same_loop_file(const char* a, const char* b)
1275 {
1276         char res_a[PATH_MAX];
1277         char res_b[PATH_MAX];
1278         const char* final_a = NULL;
1279         const char* final_b = NULL;
1280         int ret;
1281
1282         /* Resolve a if it is a loop device */
1283         if((ret = is_loop_device(a)) < 0) {
1284                 if (ret == -ENOENT)
1285                         return 0;
1286                 return ret;
1287         } else if (ret) {
1288                 ret = resolve_loop_device(a, res_a, sizeof(res_a));
1289                 if (ret < 0) {
1290                         if (errno != EPERM)
1291                                 return ret;
1292                 } else {
1293                         final_a = res_a;
1294                 }
1295         } else {
1296                 final_a = a;
1297         }
1298
1299         /* Resolve b if it is a loop device */
1300         if ((ret = is_loop_device(b)) < 0) {
1301                 if (ret == -ENOENT)
1302                         return 0;
1303                 return ret;
1304         } else if (ret) {
1305                 ret = resolve_loop_device(b, res_b, sizeof(res_b));
1306                 if (ret < 0) {
1307                         if (errno != EPERM)
1308                                 return ret;
1309                 } else {
1310                         final_b = res_b;
1311                 }
1312         } else {
1313                 final_b = b;
1314         }
1315
1316         return is_same_blk_file(final_a, final_b);
1317 }
1318
1319 /* Checks if a file exists and is a block or regular file*/
1320 static int is_existing_blk_or_reg_file(const char* filename)
1321 {
1322         struct stat st_buf;
1323
1324         if(stat(filename, &st_buf) < 0) {
1325                 if(errno == ENOENT)
1326                         return 0;
1327                 else
1328                         return -errno;
1329         }
1330
1331         return (S_ISBLK(st_buf.st_mode) || S_ISREG(st_buf.st_mode));
1332 }
1333
1334 /* Checks if a file is used (directly or indirectly via a loop device)
1335  * by a device in fs_devices
1336  */
1337 static int blk_file_in_dev_list(struct btrfs_fs_devices* fs_devices,
1338                 const char* file)
1339 {
1340         int ret;
1341         struct list_head *head;
1342         struct list_head *cur;
1343         struct btrfs_device *device;
1344
1345         head = &fs_devices->devices;
1346         list_for_each(cur, head) {
1347                 device = list_entry(cur, struct btrfs_device, dev_list);
1348
1349                 if((ret = is_same_loop_file(device->name, file)))
1350                         return ret;
1351         }
1352
1353         return 0;
1354 }
1355
1356 /*
1357  * Resolve a pathname to a device mapper node to /dev/mapper/<name>
1358  * Returns NULL on invalid input or malloc failure; Other failures
1359  * will be handled by the caller using the input pathame.
1360  */
1361 char *canonicalize_dm_name(const char *ptname)
1362 {
1363         FILE    *f;
1364         size_t  sz;
1365         char    path[PATH_MAX], name[PATH_MAX], *res = NULL;
1366
1367         if (!ptname || !*ptname)
1368                 return NULL;
1369
1370         snprintf(path, sizeof(path), "/sys/block/%s/dm/name", ptname);
1371         if (!(f = fopen(path, "r")))
1372                 return NULL;
1373
1374         /* read <name>\n from sysfs */
1375         if (fgets(name, sizeof(name), f) && (sz = strlen(name)) > 1) {
1376                 name[sz - 1] = '\0';
1377                 snprintf(path, sizeof(path), "/dev/mapper/%s", name);
1378
1379                 if (access(path, F_OK) == 0)
1380                         res = strdup(path);
1381         }
1382         fclose(f);
1383         return res;
1384 }
1385
1386 /*
1387  * Resolve a pathname to a canonical device node, e.g. /dev/sda1 or
1388  * to a device mapper pathname.
1389  * Returns NULL on invalid input or malloc failure; Other failures
1390  * will be handled by the caller using the input pathame.
1391  */
1392 char *canonicalize_path(const char *path)
1393 {
1394         char *canonical, *p;
1395
1396         if (!path || !*path)
1397                 return NULL;
1398
1399         canonical = realpath(path, NULL);
1400         if (!canonical)
1401                 return strdup(path);
1402         p = strrchr(canonical, '/');
1403         if (p && strncmp(p, "/dm-", 4) == 0 && isdigit(*(p + 4))) {
1404                 char *dm = canonicalize_dm_name(p + 1);
1405
1406                 if (dm) {
1407                         free(canonical);
1408                         return dm;
1409                 }
1410         }
1411         return canonical;
1412 }
1413
1414 /*
1415  * returns 1 if the device was mounted, < 0 on error or 0 if everything
1416  * is safe to continue.
1417  */
1418 int check_mounted(const char* file)
1419 {
1420         int fd;
1421         int ret;
1422
1423         fd = open(file, O_RDONLY);
1424         if (fd < 0) {
1425                 error("mount check: cannot open %s: %s", file,
1426                                 strerror(errno));
1427                 return -errno;
1428         }
1429
1430         ret =  check_mounted_where(fd, file, NULL, 0, NULL);
1431         close(fd);
1432
1433         return ret;
1434 }
1435
1436 int check_mounted_where(int fd, const char *file, char *where, int size,
1437                         struct btrfs_fs_devices **fs_dev_ret)
1438 {
1439         int ret;
1440         u64 total_devs = 1;
1441         int is_btrfs;
1442         struct btrfs_fs_devices *fs_devices_mnt = NULL;
1443         FILE *f;
1444         struct mntent *mnt;
1445
1446         /* scan the initial device */
1447         ret = btrfs_scan_one_device(fd, file, &fs_devices_mnt,
1448                                     &total_devs, BTRFS_SUPER_INFO_OFFSET, 0);
1449         is_btrfs = (ret >= 0);
1450
1451         /* scan other devices */
1452         if (is_btrfs && total_devs > 1) {
1453                 ret = btrfs_scan_lblkid();
1454                 if (ret)
1455                         return ret;
1456         }
1457
1458         /* iterate over the list of currently mountes filesystems */
1459         if ((f = setmntent ("/proc/self/mounts", "r")) == NULL)
1460                 return -errno;
1461
1462         while ((mnt = getmntent (f)) != NULL) {
1463                 if(is_btrfs) {
1464                         if(strcmp(mnt->mnt_type, "btrfs") != 0)
1465                                 continue;
1466
1467                         ret = blk_file_in_dev_list(fs_devices_mnt, mnt->mnt_fsname);
1468                 } else {
1469                         /* ignore entries in the mount table that are not
1470                            associated with a file*/
1471                         if((ret = is_existing_blk_or_reg_file(mnt->mnt_fsname)) < 0)
1472                                 goto out_mntloop_err;
1473                         else if(!ret)
1474                                 continue;
1475
1476                         ret = is_same_loop_file(file, mnt->mnt_fsname);
1477                 }
1478
1479                 if(ret < 0)
1480                         goto out_mntloop_err;
1481                 else if(ret)
1482                         break;
1483         }
1484
1485         /* Did we find an entry in mnt table? */
1486         if (mnt && size && where) {
1487                 strncpy(where, mnt->mnt_dir, size);
1488                 where[size-1] = 0;
1489         }
1490         if (fs_dev_ret)
1491                 *fs_dev_ret = fs_devices_mnt;
1492
1493         ret = (mnt != NULL);
1494
1495 out_mntloop_err:
1496         endmntent (f);
1497
1498         return ret;
1499 }
1500
1501 struct pending_dir {
1502         struct list_head list;
1503         char name[PATH_MAX];
1504 };
1505
1506 int btrfs_register_one_device(const char *fname)
1507 {
1508         struct btrfs_ioctl_vol_args args;
1509         int fd;
1510         int ret;
1511
1512         fd = open("/dev/btrfs-control", O_RDWR);
1513         if (fd < 0) {
1514                 warning(
1515         "failed to open /dev/btrfs-control, skipping device registration: %s",
1516                         strerror(errno));
1517                 return -errno;
1518         }
1519         memset(&args, 0, sizeof(args));
1520         strncpy_null(args.name, fname);
1521         ret = ioctl(fd, BTRFS_IOC_SCAN_DEV, &args);
1522         if (ret < 0) {
1523                 error("device scan failed on '%s': %s", fname,
1524                                 strerror(errno));
1525                 ret = -errno;
1526         }
1527         close(fd);
1528         return ret;
1529 }
1530
1531 /*
1532  * Register all devices in the fs_uuid list created in the user
1533  * space. Ensure btrfs_scan_lblkid() is called before this func.
1534  */
1535 int btrfs_register_all_devices(void)
1536 {
1537         int err = 0;
1538         int ret = 0;
1539         struct btrfs_fs_devices *fs_devices;
1540         struct btrfs_device *device;
1541         struct list_head *all_uuids;
1542
1543         all_uuids = btrfs_scanned_uuids();
1544
1545         list_for_each_entry(fs_devices, all_uuids, list) {
1546                 list_for_each_entry(device, &fs_devices->devices, dev_list) {
1547                         if (*device->name)
1548                                 err = btrfs_register_one_device(device->name);
1549
1550                         if (err)
1551                                 ret++;
1552                 }
1553         }
1554
1555         return ret;
1556 }
1557
1558 int btrfs_device_already_in_root(struct btrfs_root *root, int fd,
1559                                  int super_offset)
1560 {
1561         struct btrfs_super_block *disk_super;
1562         char *buf;
1563         int ret = 0;
1564
1565         buf = malloc(BTRFS_SUPER_INFO_SIZE);
1566         if (!buf) {
1567                 ret = -ENOMEM;
1568                 goto out;
1569         }
1570         ret = pread(fd, buf, BTRFS_SUPER_INFO_SIZE, super_offset);
1571         if (ret != BTRFS_SUPER_INFO_SIZE)
1572                 goto brelse;
1573
1574         ret = 0;
1575         disk_super = (struct btrfs_super_block *)buf;
1576         if (btrfs_super_magic(disk_super) != BTRFS_MAGIC)
1577                 goto brelse;
1578
1579         if (!memcmp(disk_super->fsid, root->fs_info->super_copy->fsid,
1580                     BTRFS_FSID_SIZE))
1581                 ret = 1;
1582 brelse:
1583         free(buf);
1584 out:
1585         return ret;
1586 }
1587
1588 /*
1589  * Note: this function uses a static per-thread buffer. Do not call this
1590  * function more than 10 times within one argument list!
1591  */
1592 const char *pretty_size_mode(u64 size, unsigned mode)
1593 {
1594         static __thread int ps_index = 0;
1595         static __thread char ps_array[10][32];
1596         char *ret;
1597
1598         ret = ps_array[ps_index];
1599         ps_index++;
1600         ps_index %= 10;
1601         (void)pretty_size_snprintf(size, ret, 32, mode);
1602
1603         return ret;
1604 }
1605
1606 static const char* unit_suffix_binary[] =
1607         { "B", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB"};
1608 static const char* unit_suffix_decimal[] =
1609         { "B", "kB", "MB", "GB", "TB", "PB", "EB"};
1610
1611 int pretty_size_snprintf(u64 size, char *str, size_t str_size, unsigned unit_mode)
1612 {
1613         int num_divs;
1614         float fraction;
1615         u64 base = 0;
1616         int mult = 0;
1617         const char** suffix = NULL;
1618         u64 last_size;
1619
1620         if (str_size == 0)
1621                 return 0;
1622
1623         if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_RAW) {
1624                 snprintf(str, str_size, "%llu", size);
1625                 return 0;
1626         }
1627
1628         if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_BINARY) {
1629                 base = 1024;
1630                 mult = 1024;
1631                 suffix = unit_suffix_binary;
1632         } else if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_DECIMAL) {
1633                 base = 1000;
1634                 mult = 1000;
1635                 suffix = unit_suffix_decimal;
1636         }
1637
1638         /* Unknown mode */
1639         if (!base) {
1640                 fprintf(stderr, "INTERNAL ERROR: unknown unit base, mode %d\n",
1641                                 unit_mode);
1642                 assert(0);
1643                 return -1;
1644         }
1645
1646         num_divs = 0;
1647         last_size = size;
1648         switch (unit_mode & UNITS_MODE_MASK) {
1649         case UNITS_TBYTES: base *= mult; num_divs++;
1650         case UNITS_GBYTES: base *= mult; num_divs++;
1651         case UNITS_MBYTES: base *= mult; num_divs++;
1652         case UNITS_KBYTES: num_divs++;
1653                            break;
1654         case UNITS_BYTES:
1655                            base = 1;
1656                            num_divs = 0;
1657                            break;
1658         default:
1659                 while (size >= mult) {
1660                         last_size = size;
1661                         size /= mult;
1662                         num_divs++;
1663                 }
1664                 /*
1665                  * If the value is smaller than base, we didn't do any
1666                  * division, in that case, base should be 1, not original
1667                  * base, or the unit will be wrong
1668                  */
1669                 if (num_divs == 0)
1670                         base = 1;
1671         }
1672
1673         if (num_divs >= ARRAY_SIZE(unit_suffix_binary)) {
1674                 str[0] = '\0';
1675                 printf("INTERNAL ERROR: unsupported unit suffix, index %d\n",
1676                                 num_divs);
1677                 assert(0);
1678                 return -1;
1679         }
1680         fraction = (float)last_size / base;
1681
1682         return snprintf(str, str_size, "%.2f%s", fraction, suffix[num_divs]);
1683 }
1684
1685 /*
1686  * __strncpy__null - strncpy with null termination
1687  * @dest:       the target array
1688  * @src:        the source string
1689  * @n:          maximum bytes to copy (size of *dest)
1690  *
1691  * Like strncpy, but ensures destination is null-terminated.
1692  *
1693  * Copies the string pointed to by src, including the terminating null
1694  * byte ('\0'), to the buffer pointed to by dest, up to a maximum
1695  * of n bytes.  Then ensure that dest is null-terminated.
1696  */
1697 char *__strncpy__null(char *dest, const char *src, size_t n)
1698 {
1699         strncpy(dest, src, n);
1700         if (n > 0)
1701                 dest[n - 1] = '\0';
1702         return dest;
1703 }
1704
1705 /*
1706  * Checks to make sure that the label matches our requirements.
1707  * Returns:
1708        0    if everything is safe and usable
1709       -1    if the label is too long
1710  */
1711 static int check_label(const char *input)
1712 {
1713        int len = strlen(input);
1714
1715        if (len > BTRFS_LABEL_SIZE - 1) {
1716                 fprintf(stderr, "ERROR: Label %s is too long (max %d)\n",
1717                         input, BTRFS_LABEL_SIZE - 1);
1718                return -1;
1719        }
1720
1721        return 0;
1722 }
1723
1724 static int set_label_unmounted(const char *dev, const char *label)
1725 {
1726         struct btrfs_trans_handle *trans;
1727         struct btrfs_root *root;
1728         int ret;
1729
1730         ret = check_mounted(dev);
1731         if (ret < 0) {
1732                fprintf(stderr, "FATAL: error checking %s mount status\n", dev);
1733                return -1;
1734         }
1735         if (ret > 0) {
1736                 fprintf(stderr, "ERROR: dev %s is mounted, use mount point\n",
1737                         dev);
1738                 return -1;
1739         }
1740
1741         /* Open the super_block at the default location
1742          * and as read-write.
1743          */
1744         root = open_ctree(dev, 0, OPEN_CTREE_WRITES);
1745         if (!root) /* errors are printed by open_ctree() */
1746                 return -1;
1747
1748         trans = btrfs_start_transaction(root, 1);
1749         snprintf(root->fs_info->super_copy->label, BTRFS_LABEL_SIZE, "%s",
1750                  label);
1751         btrfs_commit_transaction(trans, root);
1752
1753         /* Now we close it since we are done. */
1754         close_ctree(root);
1755         return 0;
1756 }
1757
1758 static int set_label_mounted(const char *mount_path, const char *label)
1759 {
1760         int fd;
1761
1762         fd = open(mount_path, O_RDONLY | O_NOATIME);
1763         if (fd < 0) {
1764                 fprintf(stderr, "ERROR: unable to access '%s'\n", mount_path);
1765                 return -1;
1766         }
1767
1768         if (ioctl(fd, BTRFS_IOC_SET_FSLABEL, label) < 0) {
1769                 fprintf(stderr, "ERROR: unable to set label %s\n",
1770                         strerror(errno));
1771                 close(fd);
1772                 return -1;
1773         }
1774
1775         close(fd);
1776         return 0;
1777 }
1778
1779 int get_label_unmounted(const char *dev, char *label)
1780 {
1781         struct btrfs_root *root;
1782         int ret;
1783
1784         ret = check_mounted(dev);
1785         if (ret < 0) {
1786                fprintf(stderr, "FATAL: error checking %s mount status\n", dev);
1787                return -1;
1788         }
1789
1790         /* Open the super_block at the default location
1791          * and as read-only.
1792          */
1793         root = open_ctree(dev, 0, 0);
1794         if(!root)
1795                 return -1;
1796
1797         memcpy(label, root->fs_info->super_copy->label, BTRFS_LABEL_SIZE);
1798
1799         /* Now we close it since we are done. */
1800         close_ctree(root);
1801         return 0;
1802 }
1803
1804 /*
1805  * If a partition is mounted, try to get the filesystem label via its
1806  * mounted path rather than device.  Return the corresponding error
1807  * the user specified the device path.
1808  */
1809 int get_label_mounted(const char *mount_path, char *labelp)
1810 {
1811         char label[BTRFS_LABEL_SIZE];
1812         int fd;
1813         int ret;
1814
1815         fd = open(mount_path, O_RDONLY | O_NOATIME);
1816         if (fd < 0) {
1817                 fprintf(stderr, "ERROR: unable to access '%s'\n", mount_path);
1818                 return -1;
1819         }
1820
1821         memset(label, '\0', sizeof(label));
1822         ret = ioctl(fd, BTRFS_IOC_GET_FSLABEL, label);
1823         if (ret < 0) {
1824                 if (errno != ENOTTY)
1825                         fprintf(stderr, "ERROR: unable to get label %s\n",
1826                                         strerror(errno));
1827                 ret = -errno;
1828                 close(fd);
1829                 return ret;
1830         }
1831
1832         strncpy(labelp, label, sizeof(label));
1833         close(fd);
1834         return 0;
1835 }
1836
1837 int get_label(const char *btrfs_dev, char *label)
1838 {
1839         int ret;
1840
1841         ret = is_existing_blk_or_reg_file(btrfs_dev);
1842         if (!ret)
1843                 ret = get_label_mounted(btrfs_dev, label);
1844         else if (ret > 0)
1845                 ret = get_label_unmounted(btrfs_dev, label);
1846
1847         return ret;
1848 }
1849
1850 int set_label(const char *btrfs_dev, const char *label)
1851 {
1852         int ret;
1853
1854         if (check_label(label))
1855                 return -1;
1856
1857         ret = is_existing_blk_or_reg_file(btrfs_dev);
1858         if (!ret)
1859                 ret = set_label_mounted(btrfs_dev, label);
1860         else if (ret > 0)
1861                 ret = set_label_unmounted(btrfs_dev, label);
1862
1863         return ret;
1864 }
1865
1866 /*
1867  * Unsafe subvolume check.
1868  *
1869  * This only checks ino == BTRFS_FIRST_FREE_OBJECTID, even it is not in a
1870  * btrfs mount point.
1871  * Must use together with other reliable method like btrfs ioctl.
1872  */
1873 static int __is_subvol(const char *path)
1874 {
1875         struct stat st;
1876         int ret;
1877
1878         ret = lstat(path, &st);
1879         if (ret < 0)
1880                 return ret;
1881
1882         return st.st_ino == BTRFS_FIRST_FREE_OBJECTID;
1883 }
1884
1885 /*
1886  * A not-so-good version fls64. No fascinating optimization since
1887  * no one except parse_size use it
1888  */
1889 static int fls64(u64 x)
1890 {
1891         int i;
1892
1893         for (i = 0; i <64; i++)
1894                 if (x << i & (1ULL << 63))
1895                         return 64 - i;
1896         return 64 - i;
1897 }
1898
1899 u64 parse_size(char *s)
1900 {
1901         char c;
1902         char *endptr;
1903         u64 mult = 1;
1904         u64 ret;
1905
1906         if (!s) {
1907                 fprintf(stderr, "ERROR: Size value is empty\n");
1908                 exit(1);
1909         }
1910         if (s[0] == '-') {
1911                 fprintf(stderr,
1912                         "ERROR: Size value '%s' is less equal than 0\n", s);
1913                 exit(1);
1914         }
1915         ret = strtoull(s, &endptr, 10);
1916         if (endptr == s) {
1917                 fprintf(stderr, "ERROR: Size value '%s' is invalid\n", s);
1918                 exit(1);
1919         }
1920         if (endptr[0] && endptr[1]) {
1921                 fprintf(stderr, "ERROR: Illegal suffix contains character '%c' in wrong position\n",
1922                         endptr[1]);
1923                 exit(1);
1924         }
1925         /*
1926          * strtoll returns LLONG_MAX when overflow, if this happens,
1927          * need to call strtoull to get the real size
1928          */
1929         if (errno == ERANGE && ret == ULLONG_MAX) {
1930                 fprintf(stderr,
1931                         "ERROR: Size value '%s' is too large for u64\n", s);
1932                 exit(1);
1933         }
1934         if (endptr[0]) {
1935                 c = tolower(endptr[0]);
1936                 switch (c) {
1937                 case 'e':
1938                         mult *= 1024;
1939                         /* fallthrough */
1940                 case 'p':
1941                         mult *= 1024;
1942                         /* fallthrough */
1943                 case 't':
1944                         mult *= 1024;
1945                         /* fallthrough */
1946                 case 'g':
1947                         mult *= 1024;
1948                         /* fallthrough */
1949                 case 'm':
1950                         mult *= 1024;
1951                         /* fallthrough */
1952                 case 'k':
1953                         mult *= 1024;
1954                         /* fallthrough */
1955                 case 'b':
1956                         break;
1957                 default:
1958                         fprintf(stderr, "ERROR: Unknown size descriptor '%c'\n",
1959                                 c);
1960                         exit(1);
1961                 }
1962         }
1963         /* Check whether ret * mult overflow */
1964         if (fls64(ret) + fls64(mult) - 1 > 64) {
1965                 fprintf(stderr,
1966                         "ERROR: Size value '%s' is too large for u64\n", s);
1967                 exit(1);
1968         }
1969         ret *= mult;
1970         return ret;
1971 }
1972
1973 u64 parse_qgroupid(const char *p)
1974 {
1975         char *s = strchr(p, '/');
1976         const char *ptr_src_end = p + strlen(p);
1977         char *ptr_parse_end = NULL;
1978         u64 level;
1979         u64 id;
1980         int fd;
1981         int ret = 0;
1982
1983         if (p[0] == '/')
1984                 goto path;
1985
1986         /* Numeric format like '0/257' is the primary case */
1987         if (!s) {
1988                 id = strtoull(p, &ptr_parse_end, 10);
1989                 if (ptr_parse_end != ptr_src_end)
1990                         goto path;
1991                 return id;
1992         }
1993         level = strtoull(p, &ptr_parse_end, 10);
1994         if (ptr_parse_end != s)
1995                 goto path;
1996
1997         id = strtoull(s + 1, &ptr_parse_end, 10);
1998         if (ptr_parse_end != ptr_src_end)
1999                 goto  path;
2000
2001         return (level << BTRFS_QGROUP_LEVEL_SHIFT) | id;
2002
2003 path:
2004         /* Path format like subv at 'my_subvol' is the fallback case */
2005         ret = __is_subvol(p);
2006         if (ret < 0 || !ret)
2007                 goto err;
2008         fd = open(p, O_RDONLY);
2009         if (fd < 0)
2010                 goto err;
2011         ret = lookup_ino_rootid(fd, &id);
2012         close(fd);
2013         if (ret < 0)
2014                 goto err;
2015         return id;
2016
2017 err:
2018         fprintf(stderr, "ERROR: invalid qgroupid or subvolume path: %s\n", p);
2019         exit(-1);
2020 }
2021
2022 int open_file_or_dir3(const char *fname, DIR **dirstream, int open_flags)
2023 {
2024         int ret;
2025         struct stat st;
2026         int fd;
2027
2028         ret = stat(fname, &st);
2029         if (ret < 0) {
2030                 return -1;
2031         }
2032         if (S_ISDIR(st.st_mode)) {
2033                 *dirstream = opendir(fname);
2034                 if (!*dirstream)
2035                         return -1;
2036                 fd = dirfd(*dirstream);
2037         } else if (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode)) {
2038                 fd = open(fname, open_flags);
2039         } else {
2040                 /*
2041                  * we set this on purpose, in case the caller output
2042                  * strerror(errno) as success
2043                  */
2044                 errno = EINVAL;
2045                 return -1;
2046         }
2047         if (fd < 0) {
2048                 fd = -1;
2049                 if (*dirstream) {
2050                         closedir(*dirstream);
2051                         *dirstream = NULL;
2052                 }
2053         }
2054         return fd;
2055 }
2056
2057 int open_file_or_dir(const char *fname, DIR **dirstream)
2058 {
2059         return open_file_or_dir3(fname, dirstream, O_RDWR);
2060 }
2061
2062 void close_file_or_dir(int fd, DIR *dirstream)
2063 {
2064         if (dirstream)
2065                 closedir(dirstream);
2066         else if (fd >= 0)
2067                 close(fd);
2068 }
2069
2070 int get_device_info(int fd, u64 devid,
2071                 struct btrfs_ioctl_dev_info_args *di_args)
2072 {
2073         int ret;
2074
2075         di_args->devid = devid;
2076         memset(&di_args->uuid, '\0', sizeof(di_args->uuid));
2077
2078         ret = ioctl(fd, BTRFS_IOC_DEV_INFO, di_args);
2079         return ret < 0 ? -errno : 0;
2080 }
2081
2082 static u64 find_max_device_id(struct btrfs_ioctl_search_args *search_args,
2083                               int nr_items)
2084 {
2085         struct btrfs_dev_item *dev_item;
2086         char *buf = search_args->buf;
2087
2088         buf += (nr_items - 1) * (sizeof(struct btrfs_ioctl_search_header)
2089                                        + sizeof(struct btrfs_dev_item));
2090         buf += sizeof(struct btrfs_ioctl_search_header);
2091
2092         dev_item = (struct btrfs_dev_item *)buf;
2093
2094         return btrfs_stack_device_id(dev_item);
2095 }
2096
2097 static int search_chunk_tree_for_fs_info(int fd,
2098                                 struct btrfs_ioctl_fs_info_args *fi_args)
2099 {
2100         int ret;
2101         int max_items;
2102         u64 start_devid = 1;
2103         struct btrfs_ioctl_search_args search_args;
2104         struct btrfs_ioctl_search_key *search_key = &search_args.key;
2105
2106         fi_args->num_devices = 0;
2107
2108         max_items = BTRFS_SEARCH_ARGS_BUFSIZE
2109                / (sizeof(struct btrfs_ioctl_search_header)
2110                                + sizeof(struct btrfs_dev_item));
2111
2112         search_key->tree_id = BTRFS_CHUNK_TREE_OBJECTID;
2113         search_key->min_objectid = BTRFS_DEV_ITEMS_OBJECTID;
2114         search_key->max_objectid = BTRFS_DEV_ITEMS_OBJECTID;
2115         search_key->min_type = BTRFS_DEV_ITEM_KEY;
2116         search_key->max_type = BTRFS_DEV_ITEM_KEY;
2117         search_key->min_transid = 0;
2118         search_key->max_transid = (u64)-1;
2119         search_key->nr_items = max_items;
2120         search_key->max_offset = (u64)-1;
2121
2122 again:
2123         search_key->min_offset = start_devid;
2124
2125         ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &search_args);
2126         if (ret < 0)
2127                 return -errno;
2128
2129         fi_args->num_devices += (u64)search_key->nr_items;
2130
2131         if (search_key->nr_items == max_items) {
2132                 start_devid = find_max_device_id(&search_args,
2133                                         search_key->nr_items) + 1;
2134                 goto again;
2135         }
2136
2137         /* get the lastest max_id to stay consistent with the num_devices */
2138         if (search_key->nr_items == 0)
2139                 /*
2140                  * last tree_search returns an empty buf, use the devid of
2141                  * the last dev_item of the previous tree_search
2142                  */
2143                 fi_args->max_id = start_devid - 1;
2144         else
2145                 fi_args->max_id = find_max_device_id(&search_args,
2146                                                 search_key->nr_items);
2147
2148         return 0;
2149 }
2150
2151 /*
2152  * For a given path, fill in the ioctl fs_ and info_ args.
2153  * If the path is a btrfs mountpoint, fill info for all devices.
2154  * If the path is a btrfs device, fill in only that device.
2155  *
2156  * The path provided must be either on a mounted btrfs fs,
2157  * or be a mounted btrfs device.
2158  *
2159  * Returns 0 on success, or a negative errno.
2160  */
2161 int get_fs_info(char *path, struct btrfs_ioctl_fs_info_args *fi_args,
2162                 struct btrfs_ioctl_dev_info_args **di_ret)
2163 {
2164         int fd = -1;
2165         int ret = 0;
2166         int ndevs = 0;
2167         int i = 0;
2168         int replacing = 0;
2169         struct btrfs_fs_devices *fs_devices_mnt = NULL;
2170         struct btrfs_ioctl_dev_info_args *di_args;
2171         struct btrfs_ioctl_dev_info_args tmp;
2172         char mp[PATH_MAX];
2173         DIR *dirstream = NULL;
2174
2175         memset(fi_args, 0, sizeof(*fi_args));
2176
2177         if (is_block_device(path) == 1) {
2178                 struct btrfs_super_block *disk_super;
2179                 char buf[BTRFS_SUPER_INFO_SIZE];
2180                 u64 devid;
2181
2182                 /* Ensure it's mounted, then set path to the mountpoint */
2183                 fd = open(path, O_RDONLY);
2184                 if (fd < 0) {
2185                         ret = -errno;
2186                         error("cannot open %s: %s", path, strerror(errno));
2187                         goto out;
2188                 }
2189                 ret = check_mounted_where(fd, path, mp, sizeof(mp),
2190                                           &fs_devices_mnt);
2191                 if (!ret) {
2192                         ret = -EINVAL;
2193                         goto out;
2194                 }
2195                 if (ret < 0)
2196                         goto out;
2197                 path = mp;
2198                 /* Only fill in this one device */
2199                 fi_args->num_devices = 1;
2200
2201                 disk_super = (struct btrfs_super_block *)buf;
2202                 ret = btrfs_read_dev_super(fd, disk_super,
2203                                            BTRFS_SUPER_INFO_OFFSET, 0);
2204                 if (ret < 0) {
2205                         ret = -EIO;
2206                         goto out;
2207                 }
2208                 devid = btrfs_stack_device_id(&disk_super->dev_item);
2209
2210                 fi_args->max_id = devid;
2211                 i = devid;
2212
2213                 memcpy(fi_args->fsid, fs_devices_mnt->fsid, BTRFS_FSID_SIZE);
2214                 close(fd);
2215         }
2216
2217         /* at this point path must not be for a block device */
2218         fd = open_file_or_dir(path, &dirstream);
2219         if (fd < 0) {
2220                 ret = -errno;
2221                 goto out;
2222         }
2223
2224         /* fill in fi_args if not just a single device */
2225         if (fi_args->num_devices != 1) {
2226                 ret = ioctl(fd, BTRFS_IOC_FS_INFO, fi_args);
2227                 if (ret < 0) {
2228                         ret = -errno;
2229                         goto out;
2230                 }
2231
2232                 /*
2233                  * The fs_args->num_devices does not include seed devices
2234                  */
2235                 ret = search_chunk_tree_for_fs_info(fd, fi_args);
2236                 if (ret)
2237                         goto out;
2238
2239                 /*
2240                  * search_chunk_tree_for_fs_info() will lacks the devid 0
2241                  * so manual probe for it here.
2242                  */
2243                 ret = get_device_info(fd, 0, &tmp);
2244                 if (!ret) {
2245                         fi_args->num_devices++;
2246                         ndevs++;
2247                         replacing = 1;
2248                         if (i == 0)
2249                                 i++;
2250                 }
2251         }
2252
2253         if (!fi_args->num_devices)
2254                 goto out;
2255
2256         di_args = *di_ret = malloc((fi_args->num_devices) * sizeof(*di_args));
2257         if (!di_args) {
2258                 ret = -errno;
2259                 goto out;
2260         }
2261
2262         if (replacing)
2263                 memcpy(di_args, &tmp, sizeof(tmp));
2264         for (; i <= fi_args->max_id; ++i) {
2265                 ret = get_device_info(fd, i, &di_args[ndevs]);
2266                 if (ret == -ENODEV)
2267                         continue;
2268                 if (ret)
2269                         goto out;
2270                 ndevs++;
2271         }
2272
2273         /*
2274         * only when the only dev we wanted to find is not there then
2275         * let any error be returned
2276         */
2277         if (fi_args->num_devices != 1) {
2278                 BUG_ON(ndevs == 0);
2279                 ret = 0;
2280         }
2281
2282 out:
2283         close_file_or_dir(fd, dirstream);
2284         return ret;
2285 }
2286
2287 #define isoctal(c)      (((c) & ~7) == '0')
2288
2289 static inline void translate(char *f, char *t)
2290 {
2291         while (*f != '\0') {
2292                 if (*f == '\\' &&
2293                     isoctal(f[1]) && isoctal(f[2]) && isoctal(f[3])) {
2294                         *t++ = 64*(f[1] & 7) + 8*(f[2] & 7) + (f[3] & 7);
2295                         f += 4;
2296                 } else
2297                         *t++ = *f++;
2298         }
2299         *t = '\0';
2300         return;
2301 }
2302
2303 /*
2304  * Checks if the swap device.
2305  * Returns 1 if swap device, < 0 on error or 0 if not swap device.
2306  */
2307 static int is_swap_device(const char *file)
2308 {
2309         FILE    *f;
2310         struct stat     st_buf;
2311         dev_t   dev;
2312         ino_t   ino = 0;
2313         char    tmp[PATH_MAX];
2314         char    buf[PATH_MAX];
2315         char    *cp;
2316         int     ret = 0;
2317
2318         if (stat(file, &st_buf) < 0)
2319                 return -errno;
2320         if (S_ISBLK(st_buf.st_mode))
2321                 dev = st_buf.st_rdev;
2322         else if (S_ISREG(st_buf.st_mode)) {
2323                 dev = st_buf.st_dev;
2324                 ino = st_buf.st_ino;
2325         } else
2326                 return 0;
2327
2328         if ((f = fopen("/proc/swaps", "r")) == NULL)
2329                 return 0;
2330
2331         /* skip the first line */
2332         if (fgets(tmp, sizeof(tmp), f) == NULL)
2333                 goto out;
2334
2335         while (fgets(tmp, sizeof(tmp), f) != NULL) {
2336                 if ((cp = strchr(tmp, ' ')) != NULL)
2337                         *cp = '\0';
2338                 if ((cp = strchr(tmp, '\t')) != NULL)
2339                         *cp = '\0';
2340                 translate(tmp, buf);
2341                 if (stat(buf, &st_buf) != 0)
2342                         continue;
2343                 if (S_ISBLK(st_buf.st_mode)) {
2344                         if (dev == st_buf.st_rdev) {
2345                                 ret = 1;
2346                                 break;
2347                         }
2348                 } else if (S_ISREG(st_buf.st_mode)) {
2349                         if (dev == st_buf.st_dev && ino == st_buf.st_ino) {
2350                                 ret = 1;
2351                                 break;
2352                         }
2353                 }
2354         }
2355
2356 out:
2357         fclose(f);
2358
2359         return ret;
2360 }
2361
2362 /*
2363  * Check for existing filesystem or partition table on device.
2364  * Returns:
2365  *       1 for existing fs or partition
2366  *       0 for nothing found
2367  *      -1 for internal error
2368  */
2369 static int
2370 check_overwrite(
2371         char            *device)
2372 {
2373         const char      *type;
2374         blkid_probe     pr = NULL;
2375         int             ret;
2376         blkid_loff_t    size;
2377
2378         if (!device || !*device)
2379                 return 0;
2380
2381         ret = -1; /* will reset on success of all setup calls */
2382
2383         pr = blkid_new_probe_from_filename(device);
2384         if (!pr)
2385                 goto out;
2386
2387         size = blkid_probe_get_size(pr);
2388         if (size < 0)
2389                 goto out;
2390
2391         /* nothing to overwrite on a 0-length device */
2392         if (size == 0) {
2393                 ret = 0;
2394                 goto out;
2395         }
2396
2397         ret = blkid_probe_enable_partitions(pr, 1);
2398         if (ret < 0)
2399                 goto out;
2400
2401         ret = blkid_do_fullprobe(pr);
2402         if (ret < 0)
2403                 goto out;
2404
2405         /*
2406          * Blkid returns 1 for nothing found and 0 when it finds a signature,
2407          * but we want the exact opposite, so reverse the return value here.
2408          *
2409          * In addition print some useful diagnostics about what actually is
2410          * on the device.
2411          */
2412         if (ret) {
2413                 ret = 0;
2414                 goto out;
2415         }
2416
2417         if (!blkid_probe_lookup_value(pr, "TYPE", &type, NULL)) {
2418                 fprintf(stderr,
2419                         "%s appears to contain an existing "
2420                         "filesystem (%s).\n", device, type);
2421         } else if (!blkid_probe_lookup_value(pr, "PTTYPE", &type, NULL)) {
2422                 fprintf(stderr,
2423                         "%s appears to contain a partition "
2424                         "table (%s).\n", device, type);
2425         } else {
2426                 fprintf(stderr,
2427                         "%s appears to contain something weird "
2428                         "according to blkid\n", device);
2429         }
2430         ret = 1;
2431
2432 out:
2433         if (pr)
2434                 blkid_free_probe(pr);
2435         if (ret == -1)
2436                 fprintf(stderr,
2437                         "probe of %s failed, cannot detect "
2438                           "existing filesystem.\n", device);
2439         return ret;
2440 }
2441
2442 static int group_profile_devs_min(u64 flag)
2443 {
2444         switch (flag & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
2445         case 0: /* single */
2446         case BTRFS_BLOCK_GROUP_DUP:
2447                 return 1;
2448         case BTRFS_BLOCK_GROUP_RAID0:
2449         case BTRFS_BLOCK_GROUP_RAID1:
2450         case BTRFS_BLOCK_GROUP_RAID5:
2451                 return 2;
2452         case BTRFS_BLOCK_GROUP_RAID6:
2453                 return 3;
2454         case BTRFS_BLOCK_GROUP_RAID10:
2455                 return 4;
2456         default:
2457                 return -1;
2458         }
2459 }
2460
2461 int test_num_disk_vs_raid(u64 metadata_profile, u64 data_profile,
2462         u64 dev_cnt, int mixed, int ssd)
2463 {
2464         u64 allowed = 0;
2465
2466         switch (dev_cnt) {
2467         default:
2468         case 4:
2469                 allowed |= BTRFS_BLOCK_GROUP_RAID10;
2470         case 3:
2471                 allowed |= BTRFS_BLOCK_GROUP_RAID6;
2472         case 2:
2473                 allowed |= BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1 |
2474                         BTRFS_BLOCK_GROUP_RAID5;
2475                 break;
2476         case 1:
2477                 allowed |= BTRFS_BLOCK_GROUP_DUP;
2478         }
2479
2480         if (dev_cnt > 1 &&
2481             ((metadata_profile | data_profile) & BTRFS_BLOCK_GROUP_DUP)) {
2482                 fprintf(stderr,
2483                     "ERROR: DUP is not allowed when FS has multiple devices\n");
2484                 return 1;
2485         }
2486         if (metadata_profile & ~allowed) {
2487                 fprintf(stderr,
2488                         "ERROR: unable to create FS with metadata profile %s "
2489                         "(have %llu devices but %d devices are required)\n",
2490                         btrfs_group_profile_str(metadata_profile), dev_cnt,
2491                         group_profile_devs_min(metadata_profile));
2492                 return 1;
2493         }
2494         if (data_profile & ~allowed) {
2495                 fprintf(stderr,
2496                         "ERROR: unable to create FS with data profile %s "
2497                         "(have %llu devices but %d devices are required)\n",
2498                         btrfs_group_profile_str(data_profile), dev_cnt,
2499                         group_profile_devs_min(data_profile));
2500                 return 1;
2501         }
2502
2503         warning_on(!mixed && (data_profile & BTRFS_BLOCK_GROUP_DUP) && ssd,
2504                    "DUP may not actually lead to 2 copies on the device, see manual page");
2505
2506         return 0;
2507 }
2508
2509 int group_profile_max_safe_loss(u64 flags)
2510 {
2511         switch (flags & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
2512         case 0: /* single */
2513         case BTRFS_BLOCK_GROUP_DUP:
2514         case BTRFS_BLOCK_GROUP_RAID0:
2515                 return 0;
2516         case BTRFS_BLOCK_GROUP_RAID1:
2517         case BTRFS_BLOCK_GROUP_RAID5:
2518         case BTRFS_BLOCK_GROUP_RAID10:
2519                 return 1;
2520         case BTRFS_BLOCK_GROUP_RAID6:
2521                 return 2;
2522         default:
2523                 return -1;
2524         }
2525 }
2526
2527 /*
2528  * Check if a device is suitable for btrfs
2529  * returns:
2530  *  1: something is wrong, an error is printed
2531  *  0: all is fine
2532  */
2533 int test_dev_for_mkfs(char *file, int force_overwrite)
2534 {
2535         int ret, fd;
2536         struct stat st;
2537
2538         ret = is_swap_device(file);
2539         if (ret < 0) {
2540                 fprintf(stderr, "ERROR: checking status of %s: %s\n", file,
2541                         strerror(-ret));
2542                 return 1;
2543         }
2544         if (ret == 1) {
2545                 fprintf(stderr, "ERROR: %s is a swap device\n", file);
2546                 return 1;
2547         }
2548         if (!force_overwrite) {
2549                 if (check_overwrite(file)) {
2550                         fprintf(stderr, "Use the -f option to force overwrite.\n");
2551                         return 1;
2552                 }
2553         }
2554         ret = check_mounted(file);
2555         if (ret < 0) {
2556                 fprintf(stderr, "ERROR: checking mount status of %s: %s\n",
2557                         file, strerror(-ret));
2558                 return 1;
2559         }
2560         if (ret == 1) {
2561                 fprintf(stderr, "ERROR: %s is mounted\n", file);
2562                 return 1;
2563         }
2564         /* check if the device is busy */
2565         fd = open(file, O_RDWR|O_EXCL);
2566         if (fd < 0) {
2567                 fprintf(stderr, "ERROR: unable to open %s: %s\n", file,
2568                         strerror(errno));
2569                 return 1;
2570         }
2571         if (fstat(fd, &st)) {
2572                 fprintf(stderr, "ERROR: unable to stat %s: %s\n", file,
2573                         strerror(errno));
2574                 close(fd);
2575                 return 1;
2576         }
2577         if (!S_ISBLK(st.st_mode)) {
2578                 fprintf(stderr, "ERROR: %s is not a block device\n", file);
2579                 close(fd);
2580                 return 1;
2581         }
2582         close(fd);
2583         return 0;
2584 }
2585
2586 int btrfs_scan_lblkid(void)
2587 {
2588         int fd = -1;
2589         int ret;
2590         u64 num_devices;
2591         struct btrfs_fs_devices *tmp_devices;
2592         blkid_dev_iterate iter = NULL;
2593         blkid_dev dev = NULL;
2594         blkid_cache cache = NULL;
2595         char path[PATH_MAX];
2596
2597         if (btrfs_scan_done)
2598                 return 0;
2599
2600         if (blkid_get_cache(&cache, NULL) < 0) {
2601                 printf("ERROR: lblkid cache get failed\n");
2602                 return 1;
2603         }
2604         blkid_probe_all(cache);
2605         iter = blkid_dev_iterate_begin(cache);
2606         blkid_dev_set_search(iter, "TYPE", "btrfs");
2607         while (blkid_dev_next(iter, &dev) == 0) {
2608                 dev = blkid_verify(cache, dev);
2609                 if (!dev)
2610                         continue;
2611                 /* if we are here its definitely a btrfs disk*/
2612                 strncpy_null(path, blkid_dev_devname(dev));
2613
2614                 fd = open(path, O_RDONLY);
2615                 if (fd < 0) {
2616                         printf("ERROR: could not open %s\n", path);
2617                         continue;
2618                 }
2619                 ret = btrfs_scan_one_device(fd, path, &tmp_devices,
2620                                 &num_devices, BTRFS_SUPER_INFO_OFFSET, 0);
2621                 if (ret) {
2622                         printf("ERROR: could not scan %s\n", path);
2623                         close (fd);
2624                         continue;
2625                 }
2626
2627                 close(fd);
2628         }
2629         blkid_dev_iterate_end(iter);
2630         blkid_put_cache(cache);
2631
2632         btrfs_scan_done = 1;
2633
2634         return 0;
2635 }
2636
2637 int is_vol_small(char *file)
2638 {
2639         int fd = -1;
2640         int e;
2641         struct stat st;
2642         u64 size;
2643
2644         fd = open(file, O_RDONLY);
2645         if (fd < 0)
2646                 return -errno;
2647         if (fstat(fd, &st) < 0) {
2648                 e = -errno;
2649                 close(fd);
2650                 return e;
2651         }
2652         size = btrfs_device_size(fd, &st);
2653         if (size == 0) {
2654                 close(fd);
2655                 return -1;
2656         }
2657         if (size < BTRFS_MKFS_SMALL_VOLUME_SIZE) {
2658                 close(fd);
2659                 return 1;
2660         } else {
2661                 close(fd);
2662                 return 0;
2663         }
2664 }
2665
2666 /*
2667  * This reads a line from the stdin and only returns non-zero if the
2668  * first whitespace delimited token is a case insensitive match with yes
2669  * or y.
2670  */
2671 int ask_user(char *question)
2672 {
2673         char buf[30] = {0,};
2674         char *saveptr = NULL;
2675         char *answer;
2676
2677         printf("%s [y/N]: ", question);
2678
2679         return fgets(buf, sizeof(buf) - 1, stdin) &&
2680                (answer = strtok_r(buf, " \t\n\r", &saveptr)) &&
2681                (!strcasecmp(answer, "yes") || !strcasecmp(answer, "y"));
2682 }
2683
2684 /*
2685  * For a given:
2686  * - file or directory return the containing tree root id
2687  * - subvolume return its own tree id
2688  * - BTRFS_EMPTY_SUBVOL_DIR_OBJECTID (directory with ino == 2) the result is
2689  *   undefined and function returns -1
2690  */
2691 int lookup_ino_rootid(int fd, u64 *rootid)
2692 {
2693         struct btrfs_ioctl_ino_lookup_args args;
2694         int ret;
2695
2696         memset(&args, 0, sizeof(args));
2697         args.treeid = 0;
2698         args.objectid = BTRFS_FIRST_FREE_OBJECTID;
2699
2700         ret = ioctl(fd, BTRFS_IOC_INO_LOOKUP, &args);
2701         if (ret < 0) {
2702                 fprintf(stderr, "ERROR: Failed to lookup root id - %s\n",
2703                         strerror(errno));
2704                 return ret;
2705         }
2706
2707         *rootid = args.treeid;
2708
2709         return 0;
2710 }
2711
2712 /*
2713  * return 0 if a btrfs mount point is found
2714  * return 1 if a mount point is found but not btrfs
2715  * return <0 if something goes wrong
2716  */
2717 int find_mount_root(const char *path, char **mount_root)
2718 {
2719         FILE *mnttab;
2720         int fd;
2721         struct mntent *ent;
2722         int len;
2723         int ret;
2724         int not_btrfs = 1;
2725         int longest_matchlen = 0;
2726         char *longest_match = NULL;
2727
2728         fd = open(path, O_RDONLY | O_NOATIME);
2729         if (fd < 0)
2730                 return -errno;
2731         close(fd);
2732
2733         mnttab = setmntent("/proc/self/mounts", "r");
2734         if (!mnttab)
2735                 return -errno;
2736
2737         while ((ent = getmntent(mnttab))) {
2738                 len = strlen(ent->mnt_dir);
2739                 if (strncmp(ent->mnt_dir, path, len) == 0) {
2740                         /* match found and use the latest match */
2741                         if (longest_matchlen <= len) {
2742                                 free(longest_match);
2743                                 longest_matchlen = len;
2744                                 longest_match = strdup(ent->mnt_dir);
2745                                 not_btrfs = strcmp(ent->mnt_type, "btrfs");
2746                         }
2747                 }
2748         }
2749         endmntent(mnttab);
2750
2751         if (!longest_match)
2752                 return -ENOENT;
2753         if (not_btrfs) {
2754                 free(longest_match);
2755                 return 1;
2756         }
2757
2758         ret = 0;
2759         *mount_root = realpath(longest_match, NULL);
2760         if (!*mount_root)
2761                 ret = -errno;
2762
2763         free(longest_match);
2764         return ret;
2765 }
2766
2767 int test_minimum_size(const char *file, u32 nodesize)
2768 {
2769         int fd;
2770         struct stat statbuf;
2771
2772         fd = open(file, O_RDONLY);
2773         if (fd < 0)
2774                 return -errno;
2775         if (stat(file, &statbuf) < 0) {
2776                 close(fd);
2777                 return -errno;
2778         }
2779         if (btrfs_device_size(fd, &statbuf) < btrfs_min_dev_size(nodesize)) {
2780                 close(fd);
2781                 return 1;
2782         }
2783         close(fd);
2784         return 0;
2785 }
2786
2787 /*
2788  * test if name is a correct subvolume name
2789  * this function return
2790  * 0-> name is not a correct subvolume name
2791  * 1-> name is a correct subvolume name
2792  */
2793 int test_issubvolname(const char *name)
2794 {
2795         return name[0] != '\0' && !strchr(name, '/') &&
2796                 strcmp(name, ".") && strcmp(name, "..");
2797 }
2798
2799 /*
2800  * Test if path is a directory
2801  * Returns:
2802  *   0 - path exists but it is not a directory
2803  *   1 - path exists and it is a directory
2804  * < 0 - error
2805  */
2806 int test_isdir(const char *path)
2807 {
2808         struct stat st;
2809         int ret;
2810
2811         ret = stat(path, &st);
2812         if (ret < 0)
2813                 return -errno;
2814
2815         return !!S_ISDIR(st.st_mode);
2816 }
2817
2818 void units_set_mode(unsigned *units, unsigned mode)
2819 {
2820         unsigned base = *units & UNITS_MODE_MASK;
2821
2822         *units = base | mode;
2823 }
2824
2825 void units_set_base(unsigned *units, unsigned base)
2826 {
2827         unsigned mode = *units & ~UNITS_MODE_MASK;
2828
2829         *units = base | mode;
2830 }
2831
2832 int find_next_key(struct btrfs_path *path, struct btrfs_key *key)
2833 {
2834         int level;
2835
2836         for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
2837                 if (!path->nodes[level])
2838                         break;
2839                 if (path->slots[level] + 1 >=
2840                     btrfs_header_nritems(path->nodes[level]))
2841                         continue;
2842                 if (level == 0)
2843                         btrfs_item_key_to_cpu(path->nodes[level], key,
2844                                               path->slots[level] + 1);
2845                 else
2846                         btrfs_node_key_to_cpu(path->nodes[level], key,
2847                                               path->slots[level] + 1);
2848                 return 0;
2849         }
2850         return 1;
2851 }
2852
2853 char* btrfs_group_type_str(u64 flag)
2854 {
2855         u64 mask = BTRFS_BLOCK_GROUP_TYPE_MASK |
2856                 BTRFS_SPACE_INFO_GLOBAL_RSV;
2857
2858         switch (flag & mask) {
2859         case BTRFS_BLOCK_GROUP_DATA:
2860                 return "Data";
2861         case BTRFS_BLOCK_GROUP_SYSTEM:
2862                 return "System";
2863         case BTRFS_BLOCK_GROUP_METADATA:
2864                 return "Metadata";
2865         case BTRFS_BLOCK_GROUP_DATA|BTRFS_BLOCK_GROUP_METADATA:
2866                 return "Data+Metadata";
2867         case BTRFS_SPACE_INFO_GLOBAL_RSV:
2868                 return "GlobalReserve";
2869         default:
2870                 return "unknown";
2871         }
2872 }
2873
2874 char* btrfs_group_profile_str(u64 flag)
2875 {
2876         switch (flag & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
2877         case 0:
2878                 return "single";
2879         case BTRFS_BLOCK_GROUP_RAID0:
2880                 return "RAID0";
2881         case BTRFS_BLOCK_GROUP_RAID1:
2882                 return "RAID1";
2883         case BTRFS_BLOCK_GROUP_RAID5:
2884                 return "RAID5";
2885         case BTRFS_BLOCK_GROUP_RAID6:
2886                 return "RAID6";
2887         case BTRFS_BLOCK_GROUP_DUP:
2888                 return "DUP";
2889         case BTRFS_BLOCK_GROUP_RAID10:
2890                 return "RAID10";
2891         default:
2892                 return "unknown";
2893         }
2894 }
2895
2896 u64 disk_size(char *path)
2897 {
2898         struct statfs sfs;
2899
2900         if (statfs(path, &sfs) < 0)
2901                 return 0;
2902         else
2903                 return sfs.f_bsize * sfs.f_blocks;
2904 }
2905
2906 u64 get_partition_size(char *dev)
2907 {
2908         u64 result;
2909         int fd = open(dev, O_RDONLY);
2910
2911         if (fd < 0)
2912                 return 0;
2913         if (ioctl(fd, BLKGETSIZE64, &result) < 0) {
2914                 close(fd);
2915                 return 0;
2916         }
2917         close(fd);
2918
2919         return result;
2920 }
2921
2922 int btrfs_tree_search2_ioctl_supported(int fd)
2923 {
2924         struct btrfs_ioctl_search_args_v2 *args2;
2925         struct btrfs_ioctl_search_key *sk;
2926         int args2_size = 1024;
2927         char args2_buf[args2_size];
2928         int ret;
2929         static int v2_supported = -1;
2930
2931         if (v2_supported != -1)
2932                 return v2_supported;
2933
2934         args2 = (struct btrfs_ioctl_search_args_v2 *)args2_buf;
2935         sk = &(args2->key);
2936
2937         /*
2938          * Search for the extent tree item in the root tree.
2939          */
2940         sk->tree_id = BTRFS_ROOT_TREE_OBJECTID;
2941         sk->min_objectid = BTRFS_EXTENT_TREE_OBJECTID;
2942         sk->max_objectid = BTRFS_EXTENT_TREE_OBJECTID;
2943         sk->min_type = BTRFS_ROOT_ITEM_KEY;
2944         sk->max_type = BTRFS_ROOT_ITEM_KEY;
2945         sk->min_offset = 0;
2946         sk->max_offset = (u64)-1;
2947         sk->min_transid = 0;
2948         sk->max_transid = (u64)-1;
2949         sk->nr_items = 1;
2950         args2->buf_size = args2_size - sizeof(struct btrfs_ioctl_search_args_v2);
2951         ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH_V2, args2);
2952         if (ret == -EOPNOTSUPP)
2953                 v2_supported = 0;
2954         else if (ret == 0)
2955                 v2_supported = 1;
2956         else
2957                 return ret;
2958
2959         return v2_supported;
2960 }
2961
2962 int btrfs_check_nodesize(u32 nodesize, u32 sectorsize, u64 features)
2963 {
2964         if (nodesize < sectorsize) {
2965                 fprintf(stderr,
2966                         "ERROR: Illegal nodesize %u (smaller than %u)\n",
2967                         nodesize, sectorsize);
2968                 return -1;
2969         } else if (nodesize > BTRFS_MAX_METADATA_BLOCKSIZE) {
2970                 fprintf(stderr,
2971                         "ERROR: Illegal nodesize %u (larger than %u)\n",
2972                         nodesize, BTRFS_MAX_METADATA_BLOCKSIZE);
2973                 return -1;
2974         } else if (nodesize & (sectorsize - 1)) {
2975                 fprintf(stderr,
2976                         "ERROR: Illegal nodesize %u (not aligned to %u)\n",
2977                         nodesize, sectorsize);
2978                 return -1;
2979         } else if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS &&
2980                    nodesize != sectorsize) {
2981                 fprintf(stderr,
2982                         "ERROR: Illegal nodesize %u (not equal to %u for mixed block group)\n",
2983                         nodesize, sectorsize);
2984                 return -1;
2985         }
2986         return 0;
2987 }
2988
2989 /*
2990  * Copy a path argument from SRC to DEST and check the SRC length if it's at
2991  * most PATH_MAX and fits into DEST. DESTLEN is supposed to be exact size of
2992  * the buffer.
2993  * The destination buffer is zero terminated.
2994  * Return < 0 for error, 0 otherwise.
2995  */
2996 int arg_copy_path(char *dest, const char *src, int destlen)
2997 {
2998         size_t len = strlen(src);
2999
3000         if (len >= PATH_MAX || len >= destlen)
3001                 return -ENAMETOOLONG;
3002
3003         __strncpy__null(dest, src, destlen);
3004
3005         return 0;
3006 }
3007
3008 unsigned int get_unit_mode_from_arg(int *argc, char *argv[], int df_mode)
3009 {
3010         unsigned int unit_mode = UNITS_DEFAULT;
3011         int arg_i;
3012         int arg_end;
3013
3014         for (arg_i = 0; arg_i < *argc; arg_i++) {
3015                 if (!strcmp(argv[arg_i], "--"))
3016                         break;
3017
3018                 if (!strcmp(argv[arg_i], "--raw")) {
3019                         unit_mode = UNITS_RAW;
3020                         argv[arg_i] = NULL;
3021                         continue;
3022                 }
3023                 if (!strcmp(argv[arg_i], "--human-readable")) {
3024                         unit_mode = UNITS_HUMAN_BINARY;
3025                         argv[arg_i] = NULL;
3026                         continue;
3027                 }
3028
3029                 if (!strcmp(argv[arg_i], "--iec")) {
3030                         units_set_mode(&unit_mode, UNITS_BINARY);
3031                         argv[arg_i] = NULL;
3032                         continue;
3033                 }
3034                 if (!strcmp(argv[arg_i], "--si")) {
3035                         units_set_mode(&unit_mode, UNITS_DECIMAL);
3036                         argv[arg_i] = NULL;
3037                         continue;
3038                 }
3039
3040                 if (!strcmp(argv[arg_i], "--kbytes")) {
3041                         units_set_base(&unit_mode, UNITS_KBYTES);
3042                         argv[arg_i] = NULL;
3043                         continue;
3044                 }
3045                 if (!strcmp(argv[arg_i], "--mbytes")) {
3046                         units_set_base(&unit_mode, UNITS_MBYTES);
3047                         argv[arg_i] = NULL;
3048                         continue;
3049                 }
3050                 if (!strcmp(argv[arg_i], "--gbytes")) {
3051                         units_set_base(&unit_mode, UNITS_GBYTES);
3052                         argv[arg_i] = NULL;
3053                         continue;
3054                 }
3055                 if (!strcmp(argv[arg_i], "--tbytes")) {
3056                         units_set_base(&unit_mode, UNITS_TBYTES);
3057                         argv[arg_i] = NULL;
3058                         continue;
3059                 }
3060
3061                 if (!df_mode)
3062                         continue;
3063
3064                 if (!strcmp(argv[arg_i], "-b")) {
3065                         unit_mode = UNITS_RAW;
3066                         argv[arg_i] = NULL;
3067                         continue;
3068                 }
3069                 if (!strcmp(argv[arg_i], "-h")) {
3070                         unit_mode = UNITS_HUMAN_BINARY;
3071                         argv[arg_i] = NULL;
3072                         continue;
3073                 }
3074                 if (!strcmp(argv[arg_i], "-H")) {
3075                         unit_mode = UNITS_HUMAN_DECIMAL;
3076                         argv[arg_i] = NULL;
3077                         continue;
3078                 }
3079                 if (!strcmp(argv[arg_i], "-k")) {
3080                         units_set_base(&unit_mode, UNITS_KBYTES);
3081                         argv[arg_i] = NULL;
3082                         continue;
3083                 }
3084                 if (!strcmp(argv[arg_i], "-m")) {
3085                         units_set_base(&unit_mode, UNITS_MBYTES);
3086                         argv[arg_i] = NULL;
3087                         continue;
3088                 }
3089                 if (!strcmp(argv[arg_i], "-g")) {
3090                         units_set_base(&unit_mode, UNITS_GBYTES);
3091                         argv[arg_i] = NULL;
3092                         continue;
3093                 }
3094                 if (!strcmp(argv[arg_i], "-t")) {
3095                         units_set_base(&unit_mode, UNITS_TBYTES);
3096                         argv[arg_i] = NULL;
3097                         continue;
3098                 }
3099         }
3100
3101         for (arg_i = 0, arg_end = 0; arg_i < *argc; arg_i++) {
3102                 if (!argv[arg_i])
3103                         continue;
3104                 argv[arg_end] = argv[arg_i];
3105                 arg_end++;
3106         }
3107
3108         *argc = arg_end;
3109
3110         return unit_mode;
3111 }
3112
3113 int string_is_numerical(const char *str)
3114 {
3115         if (!(*str >= '0' && *str <= '9'))
3116                 return 0;
3117         while (*str >= '0' && *str <= '9')
3118                 str++;
3119         if (*str != '\0')
3120                 return 0;
3121         return 1;
3122 }
3123
3124 /*
3125  * Preprocess @argv with getopt_long to reorder options and consume the "--"
3126  * option separator.
3127  * Unknown short and long options are reported, optionally the @usage is printed
3128  * before exit.
3129  */
3130 void clean_args_no_options(int argc, char *argv[], const char * const *usagestr)
3131 {
3132         static const struct option long_options[] = {
3133                 {NULL, 0, NULL, 0}
3134         };
3135
3136         while (1) {
3137                 int c = getopt_long(argc, argv, "", long_options, NULL);
3138
3139                 if (c < 0)
3140                         break;
3141
3142                 switch (c) {
3143                 default:
3144                         if (usagestr)
3145                                 usage(usagestr);
3146                 }
3147         }
3148 }