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