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