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