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