btrfs-progs: alias btrfs device delete to btrfs device remove
[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[PATH_MAX];
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         memset(&args, 0, sizeof(args));
1413         strncpy_null(args.name, fname);
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 /*
1483  * Note: this function uses a static per-thread buffer. Do not call this
1484  * function more than 10 times within one argument list!
1485  */
1486 const char *pretty_size_mode(u64 size, unsigned mode)
1487 {
1488         static __thread int ps_index = 0;
1489         static __thread char ps_array[10][32];
1490         char *ret;
1491
1492         ret = ps_array[ps_index];
1493         ps_index++;
1494         ps_index %= 10;
1495         (void)pretty_size_snprintf(size, ret, 32, mode);
1496
1497         return ret;
1498 }
1499
1500 static const char* unit_suffix_binary[] =
1501         { "B", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB"};
1502 static const char* unit_suffix_decimal[] =
1503         { "B", "kB", "MB", "GB", "TB", "PB", "EB"};
1504
1505 int pretty_size_snprintf(u64 size, char *str, size_t str_size, unsigned unit_mode)
1506 {
1507         int num_divs;
1508         float fraction;
1509         u64 base = 0;
1510         int mult = 0;
1511         const char** suffix = NULL;
1512         u64 last_size;
1513
1514         if (str_size == 0)
1515                 return 0;
1516
1517         if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_RAW) {
1518                 snprintf(str, str_size, "%llu", size);
1519                 return 0;
1520         }
1521
1522         if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_BINARY) {
1523                 base = 1024;
1524                 mult = 1024;
1525                 suffix = unit_suffix_binary;
1526         } else if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_DECIMAL) {
1527                 base = 1000;
1528                 mult = 1000;
1529                 suffix = unit_suffix_decimal;
1530         }
1531
1532         /* Unknown mode */
1533         if (!base) {
1534                 fprintf(stderr, "INTERNAL ERROR: unknown unit base, mode %d\n",
1535                                 unit_mode);
1536                 assert(0);
1537                 return -1;
1538         }
1539
1540         num_divs = 0;
1541         last_size = size;
1542         switch (unit_mode & UNITS_MODE_MASK) {
1543         case UNITS_TBYTES: base *= mult; num_divs++;
1544         case UNITS_GBYTES: base *= mult; num_divs++;
1545         case UNITS_MBYTES: base *= mult; num_divs++;
1546         case UNITS_KBYTES: num_divs++;
1547                            break;
1548         case UNITS_BYTES:
1549                            base = 1;
1550                            num_divs = 0;
1551                            break;
1552         default:
1553                 while (size >= mult) {
1554                         last_size = size;
1555                         size /= mult;
1556                         num_divs++;
1557                 }
1558         }
1559
1560         if (num_divs >= ARRAY_SIZE(unit_suffix_binary)) {
1561                 str[0] = '\0';
1562                 printf("INTERNAL ERROR: unsupported unit suffix, index %d\n",
1563                                 num_divs);
1564                 assert(0);
1565                 return -1;
1566         }
1567         fraction = (float)last_size / base;
1568
1569         return snprintf(str, str_size, "%.2f%s", fraction, suffix[num_divs]);
1570 }
1571
1572 /*
1573  * __strncpy__null - strncpy with null termination
1574  * @dest:       the target array
1575  * @src:        the source string
1576  * @n:          maximum bytes to copy (size of *dest)
1577  *
1578  * Like strncpy, but ensures destination is null-terminated.
1579  *
1580  * Copies the string pointed to by src, including the terminating null
1581  * byte ('\0'), to the buffer pointed to by dest, up to a maximum
1582  * of n bytes.  Then ensure that dest is null-terminated.
1583  */
1584 char *__strncpy__null(char *dest, const char *src, size_t n)
1585 {
1586         strncpy(dest, src, n);
1587         if (n > 0)
1588                 dest[n - 1] = '\0';
1589         return dest;
1590 }
1591
1592 /*
1593  * Checks to make sure that the label matches our requirements.
1594  * Returns:
1595        0    if everything is safe and usable
1596       -1    if the label is too long
1597  */
1598 static int check_label(const char *input)
1599 {
1600        int len = strlen(input);
1601
1602        if (len > BTRFS_LABEL_SIZE - 1) {
1603                 fprintf(stderr, "ERROR: Label %s is too long (max %d)\n",
1604                         input, BTRFS_LABEL_SIZE - 1);
1605                return -1;
1606        }
1607
1608        return 0;
1609 }
1610
1611 static int set_label_unmounted(const char *dev, const char *label)
1612 {
1613         struct btrfs_trans_handle *trans;
1614         struct btrfs_root *root;
1615         int ret;
1616
1617         ret = check_mounted(dev);
1618         if (ret < 0) {
1619                fprintf(stderr, "FATAL: error checking %s mount status\n", dev);
1620                return -1;
1621         }
1622         if (ret > 0) {
1623                 fprintf(stderr, "ERROR: dev %s is mounted, use mount point\n",
1624                         dev);
1625                 return -1;
1626         }
1627
1628         /* Open the super_block at the default location
1629          * and as read-write.
1630          */
1631         root = open_ctree(dev, 0, OPEN_CTREE_WRITES);
1632         if (!root) /* errors are printed by open_ctree() */
1633                 return -1;
1634
1635         trans = btrfs_start_transaction(root, 1);
1636         snprintf(root->fs_info->super_copy->label, BTRFS_LABEL_SIZE, "%s",
1637                  label);
1638         btrfs_commit_transaction(trans, root);
1639
1640         /* Now we close it since we are done. */
1641         close_ctree(root);
1642         return 0;
1643 }
1644
1645 static int set_label_mounted(const char *mount_path, const char *label)
1646 {
1647         int fd;
1648
1649         fd = open(mount_path, O_RDONLY | O_NOATIME);
1650         if (fd < 0) {
1651                 fprintf(stderr, "ERROR: unable to access '%s'\n", mount_path);
1652                 return -1;
1653         }
1654
1655         if (ioctl(fd, BTRFS_IOC_SET_FSLABEL, label) < 0) {
1656                 fprintf(stderr, "ERROR: unable to set label %s\n",
1657                         strerror(errno));
1658                 close(fd);
1659                 return -1;
1660         }
1661
1662         close(fd);
1663         return 0;
1664 }
1665
1666 static int get_label_unmounted(const char *dev, char *label)
1667 {
1668         struct btrfs_root *root;
1669         int ret;
1670
1671         ret = check_mounted(dev);
1672         if (ret < 0) {
1673                fprintf(stderr, "FATAL: error checking %s mount status\n", dev);
1674                return -1;
1675         }
1676         if (ret > 0) {
1677                 fprintf(stderr, "ERROR: dev %s is mounted, use mount point\n",
1678                         dev);
1679                 return -1;
1680         }
1681
1682         /* Open the super_block at the default location
1683          * and as read-only.
1684          */
1685         root = open_ctree(dev, 0, 0);
1686         if(!root)
1687                 return -1;
1688
1689         memcpy(label, root->fs_info->super_copy->label, BTRFS_LABEL_SIZE);
1690
1691         /* Now we close it since we are done. */
1692         close_ctree(root);
1693         return 0;
1694 }
1695
1696 /*
1697  * If a partition is mounted, try to get the filesystem label via its
1698  * mounted path rather than device.  Return the corresponding error
1699  * the user specified the device path.
1700  */
1701 int get_label_mounted(const char *mount_path, char *labelp)
1702 {
1703         char label[BTRFS_LABEL_SIZE];
1704         int fd;
1705
1706         fd = open(mount_path, O_RDONLY | O_NOATIME);
1707         if (fd < 0) {
1708                 fprintf(stderr, "ERROR: unable to access '%s'\n", mount_path);
1709                 return -1;
1710         }
1711
1712         memset(label, '\0', sizeof(label));
1713         if (ioctl(fd, BTRFS_IOC_GET_FSLABEL, label) < 0) {
1714                 fprintf(stderr, "ERROR: unable get label %s\n", strerror(errno));
1715                 close(fd);
1716                 return -1;
1717         }
1718
1719         strncpy(labelp, label, sizeof(label));
1720         close(fd);
1721         return 0;
1722 }
1723
1724 int get_label(const char *btrfs_dev, char *label)
1725 {
1726         int ret;
1727
1728         ret = is_existing_blk_or_reg_file(btrfs_dev);
1729         if (!ret)
1730                 ret = get_label_mounted(btrfs_dev, label);
1731         else if (ret > 0)
1732                 ret = get_label_unmounted(btrfs_dev, label);
1733
1734         return ret;
1735 }
1736
1737 int set_label(const char *btrfs_dev, const char *label)
1738 {
1739         int ret;
1740
1741         if (check_label(label))
1742                 return -1;
1743
1744         ret = is_existing_blk_or_reg_file(btrfs_dev);
1745         if (!ret)
1746                 ret = set_label_mounted(btrfs_dev, label);
1747         else if (ret > 0)
1748                 ret = set_label_unmounted(btrfs_dev, label);
1749
1750         return ret;
1751 }
1752
1753 /*
1754  * Unsafe subvolume check.
1755  *
1756  * This only checks ino == BTRFS_FIRST_FREE_OBJECTID, even it is not in a
1757  * btrfs mount point.
1758  * Must use together with other reliable method like btrfs ioctl.
1759  */
1760 static int __is_subvol(const char *path)
1761 {
1762         struct stat st;
1763         int ret;
1764
1765         ret = lstat(path, &st);
1766         if (ret < 0)
1767                 return ret;
1768
1769         return st.st_ino == BTRFS_FIRST_FREE_OBJECTID;
1770 }
1771
1772 /*
1773  * A not-so-good version fls64. No fascinating optimization since
1774  * no one except parse_size use it
1775  */
1776 static int fls64(u64 x)
1777 {
1778         int i;
1779
1780         for (i = 0; i <64; i++)
1781                 if (x << i & (1ULL << 63))
1782                         return 64 - i;
1783         return 64 - i;
1784 }
1785
1786 u64 parse_size(char *s)
1787 {
1788         char c;
1789         char *endptr;
1790         u64 mult = 1;
1791         u64 ret;
1792
1793         if (!s) {
1794                 fprintf(stderr, "ERROR: Size value is empty\n");
1795                 exit(1);
1796         }
1797         if (s[0] == '-') {
1798                 fprintf(stderr,
1799                         "ERROR: Size value '%s' is less equal than 0\n", s);
1800                 exit(1);
1801         }
1802         ret = strtoull(s, &endptr, 10);
1803         if (endptr == s) {
1804                 fprintf(stderr, "ERROR: Size value '%s' is invalid\n", s);
1805                 exit(1);
1806         }
1807         if (endptr[0] && endptr[1]) {
1808                 fprintf(stderr, "ERROR: Illegal suffix contains character '%c' in wrong position\n",
1809                         endptr[1]);
1810                 exit(1);
1811         }
1812         /*
1813          * strtoll returns LLONG_MAX when overflow, if this happens,
1814          * need to call strtoull to get the real size
1815          */
1816         if (errno == ERANGE && ret == ULLONG_MAX) {
1817                 fprintf(stderr,
1818                         "ERROR: Size value '%s' is too large for u64\n", s);
1819                 exit(1);
1820         }
1821         if (endptr[0]) {
1822                 c = tolower(endptr[0]);
1823                 switch (c) {
1824                 case 'e':
1825                         mult *= 1024;
1826                         /* fallthrough */
1827                 case 'p':
1828                         mult *= 1024;
1829                         /* fallthrough */
1830                 case 't':
1831                         mult *= 1024;
1832                         /* fallthrough */
1833                 case 'g':
1834                         mult *= 1024;
1835                         /* fallthrough */
1836                 case 'm':
1837                         mult *= 1024;
1838                         /* fallthrough */
1839                 case 'k':
1840                         mult *= 1024;
1841                         /* fallthrough */
1842                 case 'b':
1843                         break;
1844                 default:
1845                         fprintf(stderr, "ERROR: Unknown size descriptor '%c'\n",
1846                                 c);
1847                         exit(1);
1848                 }
1849         }
1850         /* Check whether ret * mult overflow */
1851         if (fls64(ret) + fls64(mult) - 1 > 64) {
1852                 fprintf(stderr,
1853                         "ERROR: Size value '%s' is too large for u64\n", s);
1854                 exit(1);
1855         }
1856         ret *= mult;
1857         return ret;
1858 }
1859
1860 u64 parse_qgroupid(const char *p)
1861 {
1862         char *s = strchr(p, '/');
1863         const char *ptr_src_end = p + strlen(p);
1864         char *ptr_parse_end = NULL;
1865         u64 level;
1866         u64 id;
1867         int fd;
1868         int ret = 0;
1869
1870         if (p[0] == '/')
1871                 goto path;
1872
1873         /* Numeric format like '0/257' is the primary case */
1874         if (!s) {
1875                 id = strtoull(p, &ptr_parse_end, 10);
1876                 if (ptr_parse_end != ptr_src_end)
1877                         goto path;
1878                 return id;
1879         }
1880         level = strtoull(p, &ptr_parse_end, 10);
1881         if (ptr_parse_end != s)
1882                 goto path;
1883
1884         id = strtoull(s + 1, &ptr_parse_end, 10);
1885         if (ptr_parse_end != ptr_src_end)
1886                 goto  path;
1887
1888         return (level << BTRFS_QGROUP_LEVEL_SHIFT) | id;
1889
1890 path:
1891         /* Path format like subv at 'my_subvol' is the fallback case */
1892         ret = __is_subvol(p);
1893         if (ret < 0 || !ret)
1894                 goto err;
1895         fd = open(p, O_RDONLY);
1896         if (fd < 0)
1897                 goto err;
1898         ret = lookup_ino_rootid(fd, &id);
1899         close(fd);
1900         if (ret < 0)
1901                 goto err;
1902         return id;
1903
1904 err:
1905         fprintf(stderr, "ERROR: invalid qgroupid or subvolume path: %s\n", p);
1906         exit(-1);
1907 }
1908
1909 int open_file_or_dir3(const char *fname, DIR **dirstream, int open_flags)
1910 {
1911         int ret;
1912         struct stat st;
1913         int fd;
1914
1915         ret = stat(fname, &st);
1916         if (ret < 0) {
1917                 return -1;
1918         }
1919         if (S_ISDIR(st.st_mode)) {
1920                 *dirstream = opendir(fname);
1921                 if (!*dirstream)
1922                         return -1;
1923                 fd = dirfd(*dirstream);
1924         } else if (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode)) {
1925                 fd = open(fname, open_flags);
1926         } else {
1927                 /*
1928                  * we set this on purpose, in case the caller output
1929                  * strerror(errno) as success
1930                  */
1931                 errno = EINVAL;
1932                 return -1;
1933         }
1934         if (fd < 0) {
1935                 fd = -1;
1936                 if (*dirstream) {
1937                         closedir(*dirstream);
1938                         *dirstream = NULL;
1939                 }
1940         }
1941         return fd;
1942 }
1943
1944 int open_file_or_dir(const char *fname, DIR **dirstream)
1945 {
1946         return open_file_or_dir3(fname, dirstream, O_RDWR);
1947 }
1948
1949 void close_file_or_dir(int fd, DIR *dirstream)
1950 {
1951         if (dirstream)
1952                 closedir(dirstream);
1953         else if (fd >= 0)
1954                 close(fd);
1955 }
1956
1957 int get_device_info(int fd, u64 devid,
1958                 struct btrfs_ioctl_dev_info_args *di_args)
1959 {
1960         int ret;
1961
1962         di_args->devid = devid;
1963         memset(&di_args->uuid, '\0', sizeof(di_args->uuid));
1964
1965         ret = ioctl(fd, BTRFS_IOC_DEV_INFO, di_args);
1966         return ret ? -errno : 0;
1967 }
1968
1969 static u64 find_max_device_id(struct btrfs_ioctl_search_args *search_args,
1970                               int nr_items)
1971 {
1972         struct btrfs_dev_item *dev_item;
1973         char *buf = search_args->buf;
1974
1975         buf += (nr_items - 1) * (sizeof(struct btrfs_ioctl_search_header)
1976                                        + sizeof(struct btrfs_dev_item));
1977         buf += sizeof(struct btrfs_ioctl_search_header);
1978
1979         dev_item = (struct btrfs_dev_item *)buf;
1980
1981         return btrfs_stack_device_id(dev_item);
1982 }
1983
1984 static int search_chunk_tree_for_fs_info(int fd,
1985                                 struct btrfs_ioctl_fs_info_args *fi_args)
1986 {
1987         int ret;
1988         int max_items;
1989         u64 start_devid = 1;
1990         struct btrfs_ioctl_search_args search_args;
1991         struct btrfs_ioctl_search_key *search_key = &search_args.key;
1992
1993         fi_args->num_devices = 0;
1994
1995         max_items = BTRFS_SEARCH_ARGS_BUFSIZE
1996                / (sizeof(struct btrfs_ioctl_search_header)
1997                                + sizeof(struct btrfs_dev_item));
1998
1999         search_key->tree_id = BTRFS_CHUNK_TREE_OBJECTID;
2000         search_key->min_objectid = BTRFS_DEV_ITEMS_OBJECTID;
2001         search_key->max_objectid = BTRFS_DEV_ITEMS_OBJECTID;
2002         search_key->min_type = BTRFS_DEV_ITEM_KEY;
2003         search_key->max_type = BTRFS_DEV_ITEM_KEY;
2004         search_key->min_transid = 0;
2005         search_key->max_transid = (u64)-1;
2006         search_key->nr_items = max_items;
2007         search_key->max_offset = (u64)-1;
2008
2009 again:
2010         search_key->min_offset = start_devid;
2011
2012         ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &search_args);
2013         if (ret < 0)
2014                 return -errno;
2015
2016         fi_args->num_devices += (u64)search_key->nr_items;
2017
2018         if (search_key->nr_items == max_items) {
2019                 start_devid = find_max_device_id(&search_args,
2020                                         search_key->nr_items) + 1;
2021                 goto again;
2022         }
2023
2024         /* get the lastest max_id to stay consistent with the num_devices */
2025         if (search_key->nr_items == 0)
2026                 /*
2027                  * last tree_search returns an empty buf, use the devid of
2028                  * the last dev_item of the previous tree_search
2029                  */
2030                 fi_args->max_id = start_devid - 1;
2031         else
2032                 fi_args->max_id = find_max_device_id(&search_args,
2033                                                 search_key->nr_items);
2034
2035         return 0;
2036 }
2037
2038 /*
2039  * For a given path, fill in the ioctl fs_ and info_ args.
2040  * If the path is a btrfs mountpoint, fill info for all devices.
2041  * If the path is a btrfs device, fill in only that device.
2042  *
2043  * The path provided must be either on a mounted btrfs fs,
2044  * or be a mounted btrfs device.
2045  *
2046  * Returns 0 on success, or a negative errno.
2047  */
2048 int get_fs_info(char *path, struct btrfs_ioctl_fs_info_args *fi_args,
2049                 struct btrfs_ioctl_dev_info_args **di_ret)
2050 {
2051         int fd = -1;
2052         int ret = 0;
2053         int ndevs = 0;
2054         int i = 0;
2055         int replacing = 0;
2056         struct btrfs_fs_devices *fs_devices_mnt = NULL;
2057         struct btrfs_ioctl_dev_info_args *di_args;
2058         struct btrfs_ioctl_dev_info_args tmp;
2059         char mp[PATH_MAX];
2060         DIR *dirstream = NULL;
2061
2062         memset(fi_args, 0, sizeof(*fi_args));
2063
2064         if (is_block_device(path)) {
2065                 struct btrfs_super_block *disk_super;
2066                 char buf[BTRFS_SUPER_INFO_SIZE];
2067                 u64 devid;
2068
2069                 /* Ensure it's mounted, then set path to the mountpoint */
2070                 fd = open(path, O_RDONLY);
2071                 if (fd < 0) {
2072                         ret = -errno;
2073                         fprintf(stderr, "Couldn't open %s: %s\n",
2074                                 path, strerror(errno));
2075                         goto out;
2076                 }
2077                 ret = check_mounted_where(fd, path, mp, sizeof(mp),
2078                                           &fs_devices_mnt);
2079                 if (!ret) {
2080                         ret = -EINVAL;
2081                         goto out;
2082                 }
2083                 if (ret < 0)
2084                         goto out;
2085                 path = mp;
2086                 /* Only fill in this one device */
2087                 fi_args->num_devices = 1;
2088
2089                 disk_super = (struct btrfs_super_block *)buf;
2090                 ret = btrfs_read_dev_super(fd, disk_super,
2091                                            BTRFS_SUPER_INFO_OFFSET, 0);
2092                 if (ret < 0) {
2093                         ret = -EIO;
2094                         goto out;
2095                 }
2096                 devid = btrfs_stack_device_id(&disk_super->dev_item);
2097
2098                 fi_args->max_id = devid;
2099                 i = devid;
2100
2101                 memcpy(fi_args->fsid, fs_devices_mnt->fsid, BTRFS_FSID_SIZE);
2102                 close(fd);
2103         }
2104
2105         /* at this point path must not be for a block device */
2106         fd = open_file_or_dir(path, &dirstream);
2107         if (fd < 0) {
2108                 ret = -errno;
2109                 goto out;
2110         }
2111
2112         /* fill in fi_args if not just a single device */
2113         if (fi_args->num_devices != 1) {
2114                 ret = ioctl(fd, BTRFS_IOC_FS_INFO, fi_args);
2115                 if (ret < 0) {
2116                         ret = -errno;
2117                         goto out;
2118                 }
2119
2120                 /*
2121                  * The fs_args->num_devices does not include seed devices
2122                  */
2123                 ret = search_chunk_tree_for_fs_info(fd, fi_args);
2124                 if (ret)
2125                         goto out;
2126
2127                 /*
2128                  * search_chunk_tree_for_fs_info() will lacks the devid 0
2129                  * so manual probe for it here.
2130                  */
2131                 ret = get_device_info(fd, 0, &tmp);
2132                 if (!ret) {
2133                         fi_args->num_devices++;
2134                         ndevs++;
2135                         replacing = 1;
2136                         if (i == 0)
2137                                 i++;
2138                 }
2139         }
2140
2141         if (!fi_args->num_devices)
2142                 goto out;
2143
2144         di_args = *di_ret = malloc((fi_args->num_devices) * sizeof(*di_args));
2145         if (!di_args) {
2146                 ret = -errno;
2147                 goto out;
2148         }
2149
2150         if (replacing)
2151                 memcpy(di_args, &tmp, sizeof(tmp));
2152         for (; i <= fi_args->max_id; ++i) {
2153                 ret = get_device_info(fd, i, &di_args[ndevs]);
2154                 if (ret == -ENODEV)
2155                         continue;
2156                 if (ret)
2157                         goto out;
2158                 ndevs++;
2159         }
2160
2161         /*
2162         * only when the only dev we wanted to find is not there then
2163         * let any error be returned
2164         */
2165         if (fi_args->num_devices != 1) {
2166                 BUG_ON(ndevs == 0);
2167                 ret = 0;
2168         }
2169
2170 out:
2171         close_file_or_dir(fd, dirstream);
2172         return ret;
2173 }
2174
2175 #define isoctal(c)      (((c) & ~7) == '0')
2176
2177 static inline void translate(char *f, char *t)
2178 {
2179         while (*f != '\0') {
2180                 if (*f == '\\' &&
2181                     isoctal(f[1]) && isoctal(f[2]) && isoctal(f[3])) {
2182                         *t++ = 64*(f[1] & 7) + 8*(f[2] & 7) + (f[3] & 7);
2183                         f += 4;
2184                 } else
2185                         *t++ = *f++;
2186         }
2187         *t = '\0';
2188         return;
2189 }
2190
2191 /*
2192  * Checks if the swap device.
2193  * Returns 1 if swap device, < 0 on error or 0 if not swap device.
2194  */
2195 static int is_swap_device(const char *file)
2196 {
2197         FILE    *f;
2198         struct stat     st_buf;
2199         dev_t   dev;
2200         ino_t   ino = 0;
2201         char    tmp[PATH_MAX];
2202         char    buf[PATH_MAX];
2203         char    *cp;
2204         int     ret = 0;
2205
2206         if (stat(file, &st_buf) < 0)
2207                 return -errno;
2208         if (S_ISBLK(st_buf.st_mode))
2209                 dev = st_buf.st_rdev;
2210         else if (S_ISREG(st_buf.st_mode)) {
2211                 dev = st_buf.st_dev;
2212                 ino = st_buf.st_ino;
2213         } else
2214                 return 0;
2215
2216         if ((f = fopen("/proc/swaps", "r")) == NULL)
2217                 return 0;
2218
2219         /* skip the first line */
2220         if (fgets(tmp, sizeof(tmp), f) == NULL)
2221                 goto out;
2222
2223         while (fgets(tmp, sizeof(tmp), f) != NULL) {
2224                 if ((cp = strchr(tmp, ' ')) != NULL)
2225                         *cp = '\0';
2226                 if ((cp = strchr(tmp, '\t')) != NULL)
2227                         *cp = '\0';
2228                 translate(tmp, buf);
2229                 if (stat(buf, &st_buf) != 0)
2230                         continue;
2231                 if (S_ISBLK(st_buf.st_mode)) {
2232                         if (dev == st_buf.st_rdev) {
2233                                 ret = 1;
2234                                 break;
2235                         }
2236                 } else if (S_ISREG(st_buf.st_mode)) {
2237                         if (dev == st_buf.st_dev && ino == st_buf.st_ino) {
2238                                 ret = 1;
2239                                 break;
2240                         }
2241                 }
2242         }
2243
2244 out:
2245         fclose(f);
2246
2247         return ret;
2248 }
2249
2250 /*
2251  * Check for existing filesystem or partition table on device.
2252  * Returns:
2253  *       1 for existing fs or partition
2254  *       0 for nothing found
2255  *      -1 for internal error
2256  */
2257 static int
2258 check_overwrite(
2259         char            *device)
2260 {
2261         const char      *type;
2262         blkid_probe     pr = NULL;
2263         int             ret;
2264         blkid_loff_t    size;
2265
2266         if (!device || !*device)
2267                 return 0;
2268
2269         ret = -1; /* will reset on success of all setup calls */
2270
2271         pr = blkid_new_probe_from_filename(device);
2272         if (!pr)
2273                 goto out;
2274
2275         size = blkid_probe_get_size(pr);
2276         if (size < 0)
2277                 goto out;
2278
2279         /* nothing to overwrite on a 0-length device */
2280         if (size == 0) {
2281                 ret = 0;
2282                 goto out;
2283         }
2284
2285         ret = blkid_probe_enable_partitions(pr, 1);
2286         if (ret < 0)
2287                 goto out;
2288
2289         ret = blkid_do_fullprobe(pr);
2290         if (ret < 0)
2291                 goto out;
2292
2293         /*
2294          * Blkid returns 1 for nothing found and 0 when it finds a signature,
2295          * but we want the exact opposite, so reverse the return value here.
2296          *
2297          * In addition print some useful diagnostics about what actually is
2298          * on the device.
2299          */
2300         if (ret) {
2301                 ret = 0;
2302                 goto out;
2303         }
2304
2305         if (!blkid_probe_lookup_value(pr, "TYPE", &type, NULL)) {
2306                 fprintf(stderr,
2307                         "%s appears to contain an existing "
2308                         "filesystem (%s).\n", device, type);
2309         } else if (!blkid_probe_lookup_value(pr, "PTTYPE", &type, NULL)) {
2310                 fprintf(stderr,
2311                         "%s appears to contain a partition "
2312                         "table (%s).\n", device, type);
2313         } else {
2314                 fprintf(stderr,
2315                         "%s appears to contain something weird "
2316                         "according to blkid\n", device);
2317         }
2318         ret = 1;
2319
2320 out:
2321         if (pr)
2322                 blkid_free_probe(pr);
2323         if (ret == -1)
2324                 fprintf(stderr,
2325                         "probe of %s failed, cannot detect "
2326                           "existing filesystem.\n", device);
2327         return ret;
2328 }
2329
2330 static int group_profile_devs_min(u64 flag)
2331 {
2332         switch (flag & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
2333         case 0: /* single */
2334         case BTRFS_BLOCK_GROUP_DUP:
2335                 return 1;
2336         case BTRFS_BLOCK_GROUP_RAID0:
2337         case BTRFS_BLOCK_GROUP_RAID1:
2338         case BTRFS_BLOCK_GROUP_RAID5:
2339                 return 2;
2340         case BTRFS_BLOCK_GROUP_RAID6:
2341                 return 3;
2342         case BTRFS_BLOCK_GROUP_RAID10:
2343                 return 4;
2344         default:
2345                 return -1;
2346         }
2347 }
2348
2349 int test_num_disk_vs_raid(u64 metadata_profile, u64 data_profile,
2350         u64 dev_cnt, int mixed)
2351 {
2352         u64 allowed = 0;
2353
2354         switch (dev_cnt) {
2355         default:
2356         case 4:
2357                 allowed |= BTRFS_BLOCK_GROUP_RAID10;
2358         case 3:
2359                 allowed |= BTRFS_BLOCK_GROUP_RAID6;
2360         case 2:
2361                 allowed |= BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1 |
2362                         BTRFS_BLOCK_GROUP_RAID5;
2363                 break;
2364         case 1:
2365                 allowed |= BTRFS_BLOCK_GROUP_DUP;
2366         }
2367
2368         if (dev_cnt > 1 &&
2369             ((metadata_profile | data_profile) & BTRFS_BLOCK_GROUP_DUP)) {
2370                 fprintf(stderr,
2371                     "ERROR: DUP is not allowed when FS has multiple devices\n");
2372                 return 1;
2373         }
2374         if (metadata_profile & ~allowed) {
2375                 fprintf(stderr,
2376                         "ERROR: unable to create FS with metadata profile %s "
2377                         "(have %llu devices but %d devices are required)\n",
2378                         btrfs_group_profile_str(metadata_profile), dev_cnt,
2379                         group_profile_devs_min(metadata_profile));
2380                 return 1;
2381         }
2382         if (data_profile & ~allowed) {
2383                 fprintf(stderr,
2384                         "ERROR: unable to create FS with data profile %s "
2385                         "(have %llu devices but %d devices are required)\n",
2386                         btrfs_group_profile_str(data_profile), dev_cnt,
2387                         group_profile_devs_min(data_profile));
2388                 return 1;
2389         }
2390
2391         if (!mixed && (data_profile & BTRFS_BLOCK_GROUP_DUP)) {
2392                 fprintf(stderr,
2393                         "ERROR: DUP for data is allowed only in mixed mode");
2394                 return 1;
2395         }
2396         return 0;
2397 }
2398
2399 int group_profile_max_safe_loss(u64 flags)
2400 {
2401         switch (flags & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
2402         case 0: /* single */
2403         case BTRFS_BLOCK_GROUP_DUP:
2404         case BTRFS_BLOCK_GROUP_RAID0:
2405                 return 0;
2406         case BTRFS_BLOCK_GROUP_RAID1:
2407         case BTRFS_BLOCK_GROUP_RAID5:
2408         case BTRFS_BLOCK_GROUP_RAID10:
2409                 return 1;
2410         case BTRFS_BLOCK_GROUP_RAID6:
2411                 return 2;
2412         default:
2413                 return -1;
2414         }
2415 }
2416
2417 /*
2418  * Check if a device is suitable for btrfs
2419  * returns:
2420  *  1: something is wrong, an error is printed
2421  *  0: all is fine
2422  */
2423 int test_dev_for_mkfs(char *file, int force_overwrite)
2424 {
2425         int ret, fd;
2426         struct stat st;
2427
2428         ret = is_swap_device(file);
2429         if (ret < 0) {
2430                 fprintf(stderr, "ERROR: checking status of %s: %s\n", file,
2431                         strerror(-ret));
2432                 return 1;
2433         }
2434         if (ret == 1) {
2435                 fprintf(stderr, "ERROR: %s is a swap device\n", file);
2436                 return 1;
2437         }
2438         if (!force_overwrite) {
2439                 if (check_overwrite(file)) {
2440                         fprintf(stderr, "Use the -f option to force overwrite.\n");
2441                         return 1;
2442                 }
2443         }
2444         ret = check_mounted(file);
2445         if (ret < 0) {
2446                 fprintf(stderr, "ERROR: checking mount status of %s: %s\n",
2447                         file, strerror(-ret));
2448                 return 1;
2449         }
2450         if (ret == 1) {
2451                 fprintf(stderr, "ERROR: %s is mounted\n", file);
2452                 return 1;
2453         }
2454         /* check if the device is busy */
2455         fd = open(file, O_RDWR|O_EXCL);
2456         if (fd < 0) {
2457                 fprintf(stderr, "ERROR: unable to open %s: %s\n", file,
2458                         strerror(errno));
2459                 return 1;
2460         }
2461         if (fstat(fd, &st)) {
2462                 fprintf(stderr, "ERROR: unable to stat %s: %s\n", file,
2463                         strerror(errno));
2464                 close(fd);
2465                 return 1;
2466         }
2467         if (!S_ISBLK(st.st_mode)) {
2468                 fprintf(stderr, "ERROR: %s is not a block device\n", file);
2469                 close(fd);
2470                 return 1;
2471         }
2472         close(fd);
2473         return 0;
2474 }
2475
2476 int btrfs_scan_lblkid()
2477 {
2478         int fd = -1;
2479         int ret;
2480         u64 num_devices;
2481         struct btrfs_fs_devices *tmp_devices;
2482         blkid_dev_iterate iter = NULL;
2483         blkid_dev dev = NULL;
2484         blkid_cache cache = NULL;
2485         char path[PATH_MAX];
2486
2487         if (btrfs_scan_done)
2488                 return 0;
2489
2490         if (blkid_get_cache(&cache, 0) < 0) {
2491                 printf("ERROR: lblkid cache get failed\n");
2492                 return 1;
2493         }
2494         blkid_probe_all(cache);
2495         iter = blkid_dev_iterate_begin(cache);
2496         blkid_dev_set_search(iter, "TYPE", "btrfs");
2497         while (blkid_dev_next(iter, &dev) == 0) {
2498                 dev = blkid_verify(cache, dev);
2499                 if (!dev)
2500                         continue;
2501                 /* if we are here its definitely a btrfs disk*/
2502                 strncpy_null(path, blkid_dev_devname(dev));
2503
2504                 fd = open(path, O_RDONLY);
2505                 if (fd < 0) {
2506                         printf("ERROR: could not open %s\n", path);
2507                         continue;
2508                 }
2509                 ret = btrfs_scan_one_device(fd, path, &tmp_devices,
2510                                 &num_devices, BTRFS_SUPER_INFO_OFFSET, 0);
2511                 if (ret) {
2512                         printf("ERROR: could not scan %s\n", path);
2513                         close (fd);
2514                         continue;
2515                 }
2516
2517                 close(fd);
2518         }
2519         blkid_dev_iterate_end(iter);
2520         blkid_put_cache(cache);
2521
2522         btrfs_scan_done = 1;
2523
2524         return 0;
2525 }
2526
2527 int is_vol_small(char *file)
2528 {
2529         int fd = -1;
2530         int e;
2531         struct stat st;
2532         u64 size;
2533
2534         fd = open(file, O_RDONLY);
2535         if (fd < 0)
2536                 return -errno;
2537         if (fstat(fd, &st) < 0) {
2538                 e = -errno;
2539                 close(fd);
2540                 return e;
2541         }
2542         size = btrfs_device_size(fd, &st);
2543         if (size == 0) {
2544                 close(fd);
2545                 return -1;
2546         }
2547         if (size < BTRFS_MKFS_SMALL_VOLUME_SIZE) {
2548                 close(fd);
2549                 return 1;
2550         } else {
2551                 close(fd);
2552                 return 0;
2553         }
2554 }
2555
2556 /*
2557  * This reads a line from the stdin and only returns non-zero if the
2558  * first whitespace delimited token is a case insensitive match with yes
2559  * or y.
2560  */
2561 int ask_user(char *question)
2562 {
2563         char buf[30] = {0,};
2564         char *saveptr = NULL;
2565         char *answer;
2566
2567         printf("%s [y/N]: ", question);
2568
2569         return fgets(buf, sizeof(buf) - 1, stdin) &&
2570                (answer = strtok_r(buf, " \t\n\r", &saveptr)) &&
2571                (!strcasecmp(answer, "yes") || !strcasecmp(answer, "y"));
2572 }
2573
2574 /*
2575  * For a given:
2576  * - file or directory return the containing tree root id
2577  * - subvolume return its own tree id
2578  * - BTRFS_EMPTY_SUBVOL_DIR_OBJECTID (directory with ino == 2) the result is
2579  *   undefined and function returns -1
2580  */
2581 int lookup_ino_rootid(int fd, u64 *rootid)
2582 {
2583         struct btrfs_ioctl_ino_lookup_args args;
2584         int ret;
2585         int e;
2586
2587         memset(&args, 0, sizeof(args));
2588         args.treeid = 0;
2589         args.objectid = BTRFS_FIRST_FREE_OBJECTID;
2590
2591         ret = ioctl(fd, BTRFS_IOC_INO_LOOKUP, &args);
2592         e = errno;
2593         if (ret) {
2594                 fprintf(stderr, "ERROR: Failed to lookup root id - %s\n",
2595                         strerror(e));
2596                 return ret;
2597         }
2598
2599         *rootid = args.treeid;
2600
2601         return 0;
2602 }
2603
2604 /*
2605  * return 0 if a btrfs mount point is found
2606  * return 1 if a mount point is found but not btrfs
2607  * return <0 if something goes wrong
2608  */
2609 int find_mount_root(const char *path, char **mount_root)
2610 {
2611         FILE *mnttab;
2612         int fd;
2613         struct mntent *ent;
2614         int len;
2615         int ret;
2616         int not_btrfs = 1;
2617         int longest_matchlen = 0;
2618         char *longest_match = NULL;
2619
2620         fd = open(path, O_RDONLY | O_NOATIME);
2621         if (fd < 0)
2622                 return -errno;
2623         close(fd);
2624
2625         mnttab = setmntent("/proc/self/mounts", "r");
2626         if (!mnttab)
2627                 return -errno;
2628
2629         while ((ent = getmntent(mnttab))) {
2630                 len = strlen(ent->mnt_dir);
2631                 if (strncmp(ent->mnt_dir, path, len) == 0) {
2632                         /* match found and use the latest match */
2633                         if (longest_matchlen <= len) {
2634                                 free(longest_match);
2635                                 longest_matchlen = len;
2636                                 longest_match = strdup(ent->mnt_dir);
2637                                 not_btrfs = strcmp(ent->mnt_type, "btrfs");
2638                         }
2639                 }
2640         }
2641         endmntent(mnttab);
2642
2643         if (!longest_match)
2644                 return -ENOENT;
2645         if (not_btrfs) {
2646                 free(longest_match);
2647                 return 1;
2648         }
2649
2650         ret = 0;
2651         *mount_root = realpath(longest_match, NULL);
2652         if (!*mount_root)
2653                 ret = -errno;
2654
2655         free(longest_match);
2656         return ret;
2657 }
2658
2659 int test_minimum_size(const char *file, u32 nodesize)
2660 {
2661         int fd;
2662         struct stat statbuf;
2663
2664         fd = open(file, O_RDONLY);
2665         if (fd < 0)
2666                 return -errno;
2667         if (stat(file, &statbuf) < 0) {
2668                 close(fd);
2669                 return -errno;
2670         }
2671         if (btrfs_device_size(fd, &statbuf) < btrfs_min_dev_size(nodesize)) {
2672                 close(fd);
2673                 return 1;
2674         }
2675         close(fd);
2676         return 0;
2677 }
2678
2679 /*
2680  * test if name is a correct subvolume name
2681  * this function return
2682  * 0-> name is not a correct subvolume name
2683  * 1-> name is a correct subvolume name
2684  */
2685 int test_issubvolname(const char *name)
2686 {
2687         return name[0] != '\0' && !strchr(name, '/') &&
2688                 strcmp(name, ".") && strcmp(name, "..");
2689 }
2690
2691 /*
2692  * test if path is a directory
2693  * this function return
2694  * 0-> path exists but it is not a directory
2695  * 1-> path exists and it is a directory
2696  * -1 -> path is unaccessible
2697  */
2698 int test_isdir(const char *path)
2699 {
2700         struct stat st;
2701         int ret;
2702
2703         ret = stat(path, &st);
2704         if(ret < 0 )
2705                 return -1;
2706
2707         return S_ISDIR(st.st_mode);
2708 }
2709
2710 void units_set_mode(unsigned *units, unsigned mode)
2711 {
2712         unsigned base = *units & UNITS_MODE_MASK;
2713
2714         *units = base | mode;
2715 }
2716
2717 void units_set_base(unsigned *units, unsigned base)
2718 {
2719         unsigned mode = *units & ~UNITS_MODE_MASK;
2720
2721         *units = base | mode;
2722 }
2723
2724 int find_next_key(struct btrfs_path *path, struct btrfs_key *key)
2725 {
2726         int level;
2727
2728         for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
2729                 if (!path->nodes[level])
2730                         break;
2731                 if (path->slots[level] + 1 >=
2732                     btrfs_header_nritems(path->nodes[level]))
2733                         continue;
2734                 if (level == 0)
2735                         btrfs_item_key_to_cpu(path->nodes[level], key,
2736                                               path->slots[level] + 1);
2737                 else
2738                         btrfs_node_key_to_cpu(path->nodes[level], key,
2739                                               path->slots[level] + 1);
2740                 return 0;
2741         }
2742         return 1;
2743 }
2744
2745 char* btrfs_group_type_str(u64 flag)
2746 {
2747         u64 mask = BTRFS_BLOCK_GROUP_TYPE_MASK |
2748                 BTRFS_SPACE_INFO_GLOBAL_RSV;
2749
2750         switch (flag & mask) {
2751         case BTRFS_BLOCK_GROUP_DATA:
2752                 return "Data";
2753         case BTRFS_BLOCK_GROUP_SYSTEM:
2754                 return "System";
2755         case BTRFS_BLOCK_GROUP_METADATA:
2756                 return "Metadata";
2757         case BTRFS_BLOCK_GROUP_DATA|BTRFS_BLOCK_GROUP_METADATA:
2758                 return "Data+Metadata";
2759         case BTRFS_SPACE_INFO_GLOBAL_RSV:
2760                 return "GlobalReserve";
2761         default:
2762                 return "unknown";
2763         }
2764 }
2765
2766 char* btrfs_group_profile_str(u64 flag)
2767 {
2768         switch (flag & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
2769         case 0:
2770                 return "single";
2771         case BTRFS_BLOCK_GROUP_RAID0:
2772                 return "RAID0";
2773         case BTRFS_BLOCK_GROUP_RAID1:
2774                 return "RAID1";
2775         case BTRFS_BLOCK_GROUP_RAID5:
2776                 return "RAID5";
2777         case BTRFS_BLOCK_GROUP_RAID6:
2778                 return "RAID6";
2779         case BTRFS_BLOCK_GROUP_DUP:
2780                 return "DUP";
2781         case BTRFS_BLOCK_GROUP_RAID10:
2782                 return "RAID10";
2783         default:
2784                 return "unknown";
2785         }
2786 }
2787
2788 u64 disk_size(char *path)
2789 {
2790         struct statfs sfs;
2791
2792         if (statfs(path, &sfs) < 0)
2793                 return 0;
2794         else
2795                 return sfs.f_bsize * sfs.f_blocks;
2796 }
2797
2798 u64 get_partition_size(char *dev)
2799 {
2800         u64 result;
2801         int fd = open(dev, O_RDONLY);
2802
2803         if (fd < 0)
2804                 return 0;
2805         if (ioctl(fd, BLKGETSIZE64, &result) < 0) {
2806                 close(fd);
2807                 return 0;
2808         }
2809         close(fd);
2810
2811         return result;
2812 }
2813
2814 int btrfs_tree_search2_ioctl_supported(int fd)
2815 {
2816         struct btrfs_ioctl_search_args_v2 *args2;
2817         struct btrfs_ioctl_search_key *sk;
2818         int args2_size = 1024;
2819         char args2_buf[args2_size];
2820         int ret;
2821         static int v2_supported = -1;
2822
2823         if (v2_supported != -1)
2824                 return v2_supported;
2825
2826         args2 = (struct btrfs_ioctl_search_args_v2 *)args2_buf;
2827         sk = &(args2->key);
2828
2829         /*
2830          * Search for the extent tree item in the root tree.
2831          */
2832         sk->tree_id = BTRFS_ROOT_TREE_OBJECTID;
2833         sk->min_objectid = BTRFS_EXTENT_TREE_OBJECTID;
2834         sk->max_objectid = BTRFS_EXTENT_TREE_OBJECTID;
2835         sk->min_type = BTRFS_ROOT_ITEM_KEY;
2836         sk->max_type = BTRFS_ROOT_ITEM_KEY;
2837         sk->min_offset = 0;
2838         sk->max_offset = (u64)-1;
2839         sk->min_transid = 0;
2840         sk->max_transid = (u64)-1;
2841         sk->nr_items = 1;
2842         args2->buf_size = args2_size - sizeof(struct btrfs_ioctl_search_args_v2);
2843         ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH_V2, args2);
2844         if (ret == -EOPNOTSUPP)
2845                 v2_supported = 0;
2846         else if (ret == 0)
2847                 v2_supported = 1;
2848         else
2849                 return ret;
2850
2851         return v2_supported;
2852 }
2853
2854 int btrfs_check_nodesize(u32 nodesize, u32 sectorsize)
2855 {
2856         if (nodesize < sectorsize) {
2857                 fprintf(stderr,
2858                         "ERROR: Illegal nodesize %u (smaller than %u)\n",
2859                         nodesize, sectorsize);
2860                 return -1;
2861         } else if (nodesize > BTRFS_MAX_METADATA_BLOCKSIZE) {
2862                 fprintf(stderr,
2863                         "ERROR: Illegal nodesize %u (larger than %u)\n",
2864                         nodesize, BTRFS_MAX_METADATA_BLOCKSIZE);
2865                 return -1;
2866         } else if (nodesize & (sectorsize - 1)) {
2867                 fprintf(stderr,
2868                         "ERROR: Illegal nodesize %u (not aligned to %u)\n",
2869                         nodesize, sectorsize);
2870                 return -1;
2871         }
2872         return 0;
2873 }
2874
2875 /*
2876  * Copy a path argument from SRC to DEST and check the SRC length if it's at
2877  * most PATH_MAX and fits into DEST. DESTLEN is supposed to be exact size of
2878  * the buffer.
2879  * The destination buffer is zero terminated.
2880  * Return < 0 for error, 0 otherwise.
2881  */
2882 int arg_copy_path(char *dest, const char *src, int destlen)
2883 {
2884         size_t len = strlen(src);
2885
2886         if (len >= PATH_MAX || len >= destlen)
2887                 return -ENAMETOOLONG;
2888
2889         __strncpy__null(dest, src, destlen);
2890
2891         return 0;
2892 }