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