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