btrfs-progs: Enhance the command btrfs filesystem df
[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 #define _XOPEN_SOURCE 700
21 #define __USE_XOPEN2K8
22 #define __XOPEN2K8 /* due to an error in dirent.h, to get dirfd() */
23 #define _GNU_SOURCE     /* O_NOATIME */
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <sys/ioctl.h>
28 #include <sys/mount.h>
29 #include <sys/types.h>
30 #include <sys/stat.h>
31 #include <uuid/uuid.h>
32 #include <fcntl.h>
33 #include <unistd.h>
34 #include <mntent.h>
35 #include <ctype.h>
36 #include <linux/loop.h>
37 #include <linux/major.h>
38 #include <linux/kdev_t.h>
39 #include <limits.h>
40 #include <blkid/blkid.h>
41 #include <sys/vfs.h>
42
43 #include "kerncompat.h"
44 #include "radix-tree.h"
45 #include "ctree.h"
46 #include "disk-io.h"
47 #include "transaction.h"
48 #include "crc32c.h"
49 #include "utils.h"
50 #include "volumes.h"
51 #include "ioctl.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 void fixup_argv0(char **argv, const char *token)
62 {
63         int len = strlen(argv0_buf);
64
65         snprintf(argv0_buf + len, sizeof(argv0_buf) - len, " %s", token);
66         argv[0] = argv0_buf;
67 }
68
69 void set_argv0(char **argv)
70 {
71         strncpy(argv0_buf, argv[0], sizeof(argv0_buf));
72         argv0_buf[sizeof(argv0_buf) - 1] = 0;
73 }
74
75 int check_argc_exact(int nargs, int expected)
76 {
77         if (nargs < expected)
78                 fprintf(stderr, "%s: too few arguments\n", argv0_buf);
79         if (nargs > expected)
80                 fprintf(stderr, "%s: too many arguments\n", argv0_buf);
81
82         return nargs != expected;
83 }
84
85 int check_argc_min(int nargs, int expected)
86 {
87         if (nargs < expected) {
88                 fprintf(stderr, "%s: too few arguments\n", argv0_buf);
89                 return 1;
90         }
91
92         return 0;
93 }
94
95 int check_argc_max(int nargs, int expected)
96 {
97         if (nargs > expected) {
98                 fprintf(stderr, "%s: too many arguments\n", argv0_buf);
99                 return 1;
100         }
101
102         return 0;
103 }
104
105
106 /*
107  * Discard the given range in one go
108  */
109 static int discard_range(int fd, u64 start, u64 len)
110 {
111         u64 range[2] = { start, len };
112
113         if (ioctl(fd, BLKDISCARD, &range) < 0)
114                 return errno;
115         return 0;
116 }
117
118 /*
119  * Discard blocks in the given range in 1G chunks, the process is interruptible
120  */
121 static int discard_blocks(int fd, u64 start, u64 len)
122 {
123         while (len > 0) {
124                 /* 1G granularity */
125                 u64 chunk_size = min_t(u64, len, 1*1024*1024*1024);
126                 int ret;
127
128                 ret = discard_range(fd, start, chunk_size);
129                 if (ret)
130                         return ret;
131                 len -= chunk_size;
132                 start += chunk_size;
133         }
134
135         return 0;
136 }
137
138 static u64 reference_root_table[] = {
139         [1] =   BTRFS_ROOT_TREE_OBJECTID,
140         [2] =   BTRFS_EXTENT_TREE_OBJECTID,
141         [3] =   BTRFS_CHUNK_TREE_OBJECTID,
142         [4] =   BTRFS_DEV_TREE_OBJECTID,
143         [5] =   BTRFS_FS_TREE_OBJECTID,
144         [6] =   BTRFS_CSUM_TREE_OBJECTID,
145 };
146
147 int test_uuid_unique(char *fs_uuid)
148 {
149         int unique = 1;
150         blkid_dev_iterate iter = NULL;
151         blkid_dev dev = NULL;
152         blkid_cache cache = NULL;
153
154         if (blkid_get_cache(&cache, 0) < 0) {
155                 printf("ERROR: lblkid cache get failed\n");
156                 return 1;
157         }
158         blkid_probe_all(cache);
159         iter = blkid_dev_iterate_begin(cache);
160         blkid_dev_set_search(iter, "UUID", fs_uuid);
161
162         while (blkid_dev_next(iter, &dev) == 0) {
163                 dev = blkid_verify(cache, dev);
164                 if (dev) {
165                         unique = 0;
166                         break;
167                 }
168         }
169
170         blkid_dev_iterate_end(iter);
171         blkid_put_cache(cache);
172
173         return unique;
174 }
175
176 int make_btrfs(int fd, const char *device, const char *label, char *fs_uuid,
177                u64 blocks[7], u64 num_bytes, u32 nodesize,
178                u32 leafsize, u32 sectorsize, u32 stripesize, u64 features)
179 {
180         struct btrfs_super_block super;
181         struct extent_buffer *buf = NULL;
182         struct btrfs_root_item root_item;
183         struct btrfs_disk_key disk_key;
184         struct btrfs_extent_item *extent_item;
185         struct btrfs_inode_item *inode_item;
186         struct btrfs_chunk *chunk;
187         struct btrfs_dev_item *dev_item;
188         struct btrfs_dev_extent *dev_extent;
189         u8 chunk_tree_uuid[BTRFS_UUID_SIZE];
190         u8 *ptr;
191         int i;
192         int ret;
193         u32 itemoff;
194         u32 nritems = 0;
195         u64 first_free;
196         u64 ref_root;
197         u32 array_size;
198         u32 item_size;
199         int skinny_metadata = !!(features &
200                                  BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA);
201
202         first_free = BTRFS_SUPER_INFO_OFFSET + sectorsize * 2 - 1;
203         first_free &= ~((u64)sectorsize - 1);
204
205         memset(&super, 0, sizeof(super));
206
207         num_bytes = (num_bytes / sectorsize) * sectorsize;
208         if (fs_uuid) {
209                 if (uuid_parse(fs_uuid, super.fsid) != 0) {
210                         fprintf(stderr, "could not parse UUID: %s\n", fs_uuid);
211                         ret = -EINVAL;
212                         goto out;
213                 }
214                 if (!test_uuid_unique(fs_uuid)) {
215                         fprintf(stderr, "non-unique UUID: %s\n", fs_uuid);
216                         ret = -EBUSY;
217                         goto out;
218                 }
219         } else {
220                 uuid_generate(super.fsid);
221         }
222         uuid_generate(super.dev_item.uuid);
223         uuid_generate(chunk_tree_uuid);
224
225         btrfs_set_super_bytenr(&super, blocks[0]);
226         btrfs_set_super_num_devices(&super, 1);
227         btrfs_set_super_magic(&super, BTRFS_MAGIC);
228         btrfs_set_super_generation(&super, 1);
229         btrfs_set_super_root(&super, blocks[1]);
230         btrfs_set_super_chunk_root(&super, blocks[3]);
231         btrfs_set_super_total_bytes(&super, num_bytes);
232         btrfs_set_super_bytes_used(&super, 6 * leafsize);
233         btrfs_set_super_sectorsize(&super, sectorsize);
234         btrfs_set_super_leafsize(&super, leafsize);
235         btrfs_set_super_nodesize(&super, nodesize);
236         btrfs_set_super_stripesize(&super, stripesize);
237         btrfs_set_super_csum_type(&super, BTRFS_CSUM_TYPE_CRC32);
238         btrfs_set_super_chunk_root_generation(&super, 1);
239         btrfs_set_super_cache_generation(&super, -1);
240         btrfs_set_super_incompat_flags(&super, features);
241         if (label)
242                 strncpy(super.label, label, BTRFS_LABEL_SIZE - 1);
243
244         buf = malloc(sizeof(*buf) + max(sectorsize, leafsize));
245
246         /* create the tree of root objects */
247         memset(buf->data, 0, leafsize);
248         buf->len = leafsize;
249         btrfs_set_header_bytenr(buf, blocks[1]);
250         btrfs_set_header_nritems(buf, 4);
251         btrfs_set_header_generation(buf, 1);
252         btrfs_set_header_backref_rev(buf, BTRFS_MIXED_BACKREF_REV);
253         btrfs_set_header_owner(buf, BTRFS_ROOT_TREE_OBJECTID);
254         write_extent_buffer(buf, super.fsid, btrfs_header_fsid(),
255                             BTRFS_FSID_SIZE);
256
257         write_extent_buffer(buf, chunk_tree_uuid,
258                             btrfs_header_chunk_tree_uuid(buf),
259                             BTRFS_UUID_SIZE);
260
261         /* create the items for the root tree */
262         memset(&root_item, 0, sizeof(root_item));
263         inode_item = &root_item.inode;
264         btrfs_set_stack_inode_generation(inode_item, 1);
265         btrfs_set_stack_inode_size(inode_item, 3);
266         btrfs_set_stack_inode_nlink(inode_item, 1);
267         btrfs_set_stack_inode_nbytes(inode_item, leafsize);
268         btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
269         btrfs_set_root_refs(&root_item, 1);
270         btrfs_set_root_used(&root_item, leafsize);
271         btrfs_set_root_generation(&root_item, 1);
272
273         memset(&disk_key, 0, sizeof(disk_key));
274         btrfs_set_disk_key_type(&disk_key, BTRFS_ROOT_ITEM_KEY);
275         btrfs_set_disk_key_offset(&disk_key, 0);
276         nritems = 0;
277
278         itemoff = __BTRFS_LEAF_DATA_SIZE(leafsize) - sizeof(root_item);
279         btrfs_set_root_bytenr(&root_item, blocks[2]);
280         btrfs_set_disk_key_objectid(&disk_key, BTRFS_EXTENT_TREE_OBJECTID);
281         btrfs_set_item_key(buf, &disk_key, nritems);
282         btrfs_set_item_offset(buf, btrfs_item_nr(nritems), itemoff);
283         btrfs_set_item_size(buf, btrfs_item_nr(nritems),
284                             sizeof(root_item));
285         write_extent_buffer(buf, &root_item, btrfs_item_ptr_offset(buf,
286                             nritems), sizeof(root_item));
287         nritems++;
288
289         itemoff = itemoff - sizeof(root_item);
290         btrfs_set_root_bytenr(&root_item, blocks[4]);
291         btrfs_set_disk_key_objectid(&disk_key, BTRFS_DEV_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,
297                             btrfs_item_ptr_offset(buf, nritems),
298                             sizeof(root_item));
299         nritems++;
300
301         itemoff = itemoff - sizeof(root_item);
302         btrfs_set_root_bytenr(&root_item, blocks[5]);
303         btrfs_set_disk_key_objectid(&disk_key, BTRFS_FS_TREE_OBJECTID);
304         btrfs_set_item_key(buf, &disk_key, nritems);
305         btrfs_set_item_offset(buf, btrfs_item_nr(nritems), itemoff);
306         btrfs_set_item_size(buf, btrfs_item_nr(nritems),
307                             sizeof(root_item));
308         write_extent_buffer(buf, &root_item,
309                             btrfs_item_ptr_offset(buf, nritems),
310                             sizeof(root_item));
311         nritems++;
312
313         itemoff = itemoff - sizeof(root_item);
314         btrfs_set_root_bytenr(&root_item, blocks[6]);
315         btrfs_set_disk_key_objectid(&disk_key, BTRFS_CSUM_TREE_OBJECTID);
316         btrfs_set_item_key(buf, &disk_key, nritems);
317         btrfs_set_item_offset(buf, btrfs_item_nr(nritems), itemoff);
318         btrfs_set_item_size(buf, btrfs_item_nr(nritems),
319                             sizeof(root_item));
320         write_extent_buffer(buf, &root_item,
321                             btrfs_item_ptr_offset(buf, nritems),
322                             sizeof(root_item));
323         nritems++;
324
325
326         csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
327         ret = pwrite(fd, buf->data, leafsize, blocks[1]);
328         if (ret != leafsize) {
329                 ret = (ret < 0 ? -errno : -EIO);
330                 goto out;
331         }
332
333         /* create the items for the extent tree */
334         memset(buf->data+sizeof(struct btrfs_header), 0,
335                 leafsize-sizeof(struct btrfs_header));
336         nritems = 0;
337         itemoff = __BTRFS_LEAF_DATA_SIZE(leafsize);
338         for (i = 1; i < 7; i++) {
339                 item_size = sizeof(struct btrfs_extent_item);
340                 if (!skinny_metadata)
341                         item_size += sizeof(struct btrfs_tree_block_info);
342
343                 BUG_ON(blocks[i] < first_free);
344                 BUG_ON(blocks[i] < blocks[i - 1]);
345
346                 /* create extent item */
347                 itemoff -= item_size;
348                 btrfs_set_disk_key_objectid(&disk_key, blocks[i]);
349                 if (skinny_metadata) {
350                         btrfs_set_disk_key_type(&disk_key,
351                                                 BTRFS_METADATA_ITEM_KEY);
352                         btrfs_set_disk_key_offset(&disk_key, 0);
353                 } else {
354                         btrfs_set_disk_key_type(&disk_key,
355                                                 BTRFS_EXTENT_ITEM_KEY);
356                         btrfs_set_disk_key_offset(&disk_key, leafsize);
357                 }
358                 btrfs_set_item_key(buf, &disk_key, nritems);
359                 btrfs_set_item_offset(buf, btrfs_item_nr(nritems),
360                                       itemoff);
361                 btrfs_set_item_size(buf, btrfs_item_nr(nritems),
362                                     item_size);
363                 extent_item = btrfs_item_ptr(buf, nritems,
364                                              struct btrfs_extent_item);
365                 btrfs_set_extent_refs(buf, extent_item, 1);
366                 btrfs_set_extent_generation(buf, extent_item, 1);
367                 btrfs_set_extent_flags(buf, extent_item,
368                                        BTRFS_EXTENT_FLAG_TREE_BLOCK);
369                 nritems++;
370
371                 /* create extent ref */
372                 ref_root = reference_root_table[i];
373                 btrfs_set_disk_key_objectid(&disk_key, blocks[i]);
374                 btrfs_set_disk_key_offset(&disk_key, ref_root);
375                 btrfs_set_disk_key_type(&disk_key, BTRFS_TREE_BLOCK_REF_KEY);
376                 btrfs_set_item_key(buf, &disk_key, nritems);
377                 btrfs_set_item_offset(buf, btrfs_item_nr(nritems),
378                                       itemoff);
379                 btrfs_set_item_size(buf, btrfs_item_nr(nritems), 0);
380                 nritems++;
381         }
382         btrfs_set_header_bytenr(buf, blocks[2]);
383         btrfs_set_header_owner(buf, BTRFS_EXTENT_TREE_OBJECTID);
384         btrfs_set_header_nritems(buf, nritems);
385         csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
386         ret = pwrite(fd, buf->data, leafsize, blocks[2]);
387         if (ret != leafsize) {
388                 ret = (ret < 0 ? -errno : -EIO);
389                 goto out;
390         }
391
392         /* create the chunk tree */
393         memset(buf->data+sizeof(struct btrfs_header), 0,
394                 leafsize-sizeof(struct btrfs_header));
395         nritems = 0;
396         item_size = sizeof(*dev_item);
397         itemoff = __BTRFS_LEAF_DATA_SIZE(leafsize) - item_size;
398
399         /* first device 1 (there is no device 0) */
400         btrfs_set_disk_key_objectid(&disk_key, BTRFS_DEV_ITEMS_OBJECTID);
401         btrfs_set_disk_key_offset(&disk_key, 1);
402         btrfs_set_disk_key_type(&disk_key, BTRFS_DEV_ITEM_KEY);
403         btrfs_set_item_key(buf, &disk_key, nritems);
404         btrfs_set_item_offset(buf, btrfs_item_nr(nritems), itemoff);
405         btrfs_set_item_size(buf, btrfs_item_nr(nritems), item_size);
406
407         dev_item = btrfs_item_ptr(buf, nritems, struct btrfs_dev_item);
408         btrfs_set_device_id(buf, dev_item, 1);
409         btrfs_set_device_generation(buf, dev_item, 0);
410         btrfs_set_device_total_bytes(buf, dev_item, num_bytes);
411         btrfs_set_device_bytes_used(buf, dev_item,
412                                     BTRFS_MKFS_SYSTEM_GROUP_SIZE);
413         btrfs_set_device_io_align(buf, dev_item, sectorsize);
414         btrfs_set_device_io_width(buf, dev_item, sectorsize);
415         btrfs_set_device_sector_size(buf, dev_item, sectorsize);
416         btrfs_set_device_type(buf, dev_item, 0);
417
418         write_extent_buffer(buf, super.dev_item.uuid,
419                             (unsigned long)btrfs_device_uuid(dev_item),
420                             BTRFS_UUID_SIZE);
421         write_extent_buffer(buf, super.fsid,
422                             (unsigned long)btrfs_device_fsid(dev_item),
423                             BTRFS_UUID_SIZE);
424         read_extent_buffer(buf, &super.dev_item, (unsigned long)dev_item,
425                            sizeof(*dev_item));
426
427         nritems++;
428         item_size = btrfs_chunk_item_size(1);
429         itemoff = itemoff - item_size;
430
431         /* then we have chunk 0 */
432         btrfs_set_disk_key_objectid(&disk_key, BTRFS_FIRST_CHUNK_TREE_OBJECTID);
433         btrfs_set_disk_key_offset(&disk_key, 0);
434         btrfs_set_disk_key_type(&disk_key, BTRFS_CHUNK_ITEM_KEY);
435         btrfs_set_item_key(buf, &disk_key, nritems);
436         btrfs_set_item_offset(buf, btrfs_item_nr(nritems), itemoff);
437         btrfs_set_item_size(buf, btrfs_item_nr(nritems), item_size);
438
439         chunk = btrfs_item_ptr(buf, nritems, struct btrfs_chunk);
440         btrfs_set_chunk_length(buf, chunk, BTRFS_MKFS_SYSTEM_GROUP_SIZE);
441         btrfs_set_chunk_owner(buf, chunk, BTRFS_EXTENT_TREE_OBJECTID);
442         btrfs_set_chunk_stripe_len(buf, chunk, 64 * 1024);
443         btrfs_set_chunk_type(buf, chunk, BTRFS_BLOCK_GROUP_SYSTEM);
444         btrfs_set_chunk_io_align(buf, chunk, sectorsize);
445         btrfs_set_chunk_io_width(buf, chunk, sectorsize);
446         btrfs_set_chunk_sector_size(buf, chunk, sectorsize);
447         btrfs_set_chunk_num_stripes(buf, chunk, 1);
448         btrfs_set_stripe_devid_nr(buf, chunk, 0, 1);
449         btrfs_set_stripe_offset_nr(buf, chunk, 0, 0);
450         nritems++;
451
452         write_extent_buffer(buf, super.dev_item.uuid,
453                             (unsigned long)btrfs_stripe_dev_uuid(&chunk->stripe),
454                             BTRFS_UUID_SIZE);
455
456         /* copy the key for the chunk to the system array */
457         ptr = super.sys_chunk_array;
458         array_size = sizeof(disk_key);
459
460         memcpy(ptr, &disk_key, sizeof(disk_key));
461         ptr += sizeof(disk_key);
462
463         /* copy the chunk to the system array */
464         read_extent_buffer(buf, ptr, (unsigned long)chunk, item_size);
465         array_size += item_size;
466         ptr += item_size;
467         btrfs_set_super_sys_array_size(&super, array_size);
468
469         btrfs_set_header_bytenr(buf, blocks[3]);
470         btrfs_set_header_owner(buf, BTRFS_CHUNK_TREE_OBJECTID);
471         btrfs_set_header_nritems(buf, nritems);
472         csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
473         ret = pwrite(fd, buf->data, leafsize, blocks[3]);
474         if (ret != leafsize) {
475                 ret = (ret < 0 ? -errno : -EIO);
476                 goto out;
477         }
478
479         /* create the device tree */
480         memset(buf->data+sizeof(struct btrfs_header), 0,
481                 leafsize-sizeof(struct btrfs_header));
482         nritems = 0;
483         itemoff = __BTRFS_LEAF_DATA_SIZE(leafsize) -
484                 sizeof(struct btrfs_dev_extent);
485
486         btrfs_set_disk_key_objectid(&disk_key, 1);
487         btrfs_set_disk_key_offset(&disk_key, 0);
488         btrfs_set_disk_key_type(&disk_key, BTRFS_DEV_EXTENT_KEY);
489         btrfs_set_item_key(buf, &disk_key, nritems);
490         btrfs_set_item_offset(buf, btrfs_item_nr(nritems), itemoff);
491         btrfs_set_item_size(buf, btrfs_item_nr(nritems),
492                             sizeof(struct btrfs_dev_extent));
493         dev_extent = btrfs_item_ptr(buf, nritems, struct btrfs_dev_extent);
494         btrfs_set_dev_extent_chunk_tree(buf, dev_extent,
495                                         BTRFS_CHUNK_TREE_OBJECTID);
496         btrfs_set_dev_extent_chunk_objectid(buf, dev_extent,
497                                         BTRFS_FIRST_CHUNK_TREE_OBJECTID);
498         btrfs_set_dev_extent_chunk_offset(buf, dev_extent, 0);
499
500         write_extent_buffer(buf, chunk_tree_uuid,
501                     (unsigned long)btrfs_dev_extent_chunk_tree_uuid(dev_extent),
502                     BTRFS_UUID_SIZE);
503
504         btrfs_set_dev_extent_length(buf, dev_extent,
505                                     BTRFS_MKFS_SYSTEM_GROUP_SIZE);
506         nritems++;
507
508         btrfs_set_header_bytenr(buf, blocks[4]);
509         btrfs_set_header_owner(buf, BTRFS_DEV_TREE_OBJECTID);
510         btrfs_set_header_nritems(buf, nritems);
511         csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
512         ret = pwrite(fd, buf->data, leafsize, blocks[4]);
513         if (ret != leafsize) {
514                 ret = (ret < 0 ? -errno : -EIO);
515                 goto out;
516         }
517
518         /* create the FS root */
519         memset(buf->data+sizeof(struct btrfs_header), 0,
520                 leafsize-sizeof(struct btrfs_header));
521         btrfs_set_header_bytenr(buf, blocks[5]);
522         btrfs_set_header_owner(buf, BTRFS_FS_TREE_OBJECTID);
523         btrfs_set_header_nritems(buf, 0);
524         csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
525         ret = pwrite(fd, buf->data, leafsize, blocks[5]);
526         if (ret != leafsize) {
527                 ret = (ret < 0 ? -errno : -EIO);
528                 goto out;
529         }
530         /* finally create the csum root */
531         memset(buf->data+sizeof(struct btrfs_header), 0,
532                 leafsize-sizeof(struct btrfs_header));
533         btrfs_set_header_bytenr(buf, blocks[6]);
534         btrfs_set_header_owner(buf, BTRFS_CSUM_TREE_OBJECTID);
535         btrfs_set_header_nritems(buf, 0);
536         csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
537         ret = pwrite(fd, buf->data, leafsize, blocks[6]);
538         if (ret != leafsize) {
539                 ret = (ret < 0 ? -errno : -EIO);
540                 goto out;
541         }
542
543         /* and write out the super block */
544         BUG_ON(sizeof(super) > sectorsize);
545         memset(buf->data, 0, sectorsize);
546         memcpy(buf->data, &super, sizeof(super));
547         buf->len = sectorsize;
548         csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
549         ret = pwrite(fd, buf->data, sectorsize, blocks[0]);
550         if (ret != sectorsize) {
551                 ret = (ret < 0 ? -errno : -EIO);
552                 goto out;
553         }
554
555         ret = 0;
556
557 out:
558         free(buf);
559         return ret;
560 }
561
562 u64 btrfs_device_size(int fd, struct stat *st)
563 {
564         u64 size;
565         if (S_ISREG(st->st_mode)) {
566                 return st->st_size;
567         }
568         if (!S_ISBLK(st->st_mode)) {
569                 return 0;
570         }
571         if (ioctl(fd, BLKGETSIZE64, &size) >= 0) {
572                 return size;
573         }
574         return 0;
575 }
576
577 static int zero_blocks(int fd, off_t start, size_t len)
578 {
579         char *buf = malloc(len);
580         int ret = 0;
581         ssize_t written;
582
583         if (!buf)
584                 return -ENOMEM;
585         memset(buf, 0, len);
586         written = pwrite(fd, buf, len, start);
587         if (written != len)
588                 ret = -EIO;
589         free(buf);
590         return ret;
591 }
592
593 #define ZERO_DEV_BYTES (2 * 1024 * 1024)
594
595 /* don't write outside the device by clamping the region to the device size */
596 static int zero_dev_clamped(int fd, off_t start, ssize_t len, u64 dev_size)
597 {
598         off_t end = max(start, start + len);
599
600 #ifdef __sparc__
601         /* and don't overwrite the disk labels on sparc */
602         start = max(start, 1024);
603         end = max(end, 1024);
604 #endif
605
606         start = min_t(u64, start, dev_size);
607         end = min_t(u64, end, dev_size);
608
609         return zero_blocks(fd, start, end - start);
610 }
611
612 int btrfs_add_to_fsid(struct btrfs_trans_handle *trans,
613                       struct btrfs_root *root, int fd, char *path,
614                       u64 block_count, u32 io_width, u32 io_align,
615                       u32 sectorsize)
616 {
617         struct btrfs_super_block *disk_super;
618         struct btrfs_super_block *super = root->fs_info->super_copy;
619         struct btrfs_device *device;
620         struct btrfs_dev_item *dev_item;
621         char *buf;
622         u64 total_bytes;
623         u64 num_devs;
624         int ret;
625
626         device = kzalloc(sizeof(*device), GFP_NOFS);
627         if (!device)
628                 return -ENOMEM;
629         buf = kmalloc(sectorsize, GFP_NOFS);
630         if (!buf) {
631                 kfree(device);
632                 return -ENOMEM;
633         }
634         BUG_ON(sizeof(*disk_super) > sectorsize);
635         memset(buf, 0, sectorsize);
636
637         disk_super = (struct btrfs_super_block *)buf;
638         dev_item = &disk_super->dev_item;
639
640         uuid_generate(device->uuid);
641         device->devid = 0;
642         device->type = 0;
643         device->io_width = io_width;
644         device->io_align = io_align;
645         device->sector_size = sectorsize;
646         device->fd = fd;
647         device->writeable = 1;
648         device->total_bytes = block_count;
649         device->bytes_used = 0;
650         device->total_ios = 0;
651         device->dev_root = root->fs_info->dev_root;
652
653         ret = btrfs_add_device(trans, root, device);
654         BUG_ON(ret);
655
656         total_bytes = btrfs_super_total_bytes(super) + block_count;
657         btrfs_set_super_total_bytes(super, total_bytes);
658
659         num_devs = btrfs_super_num_devices(super) + 1;
660         btrfs_set_super_num_devices(super, num_devs);
661
662         memcpy(disk_super, super, sizeof(*disk_super));
663
664         printf("adding device %s id %llu\n", path,
665                (unsigned long long)device->devid);
666
667         btrfs_set_super_bytenr(disk_super, BTRFS_SUPER_INFO_OFFSET);
668         btrfs_set_stack_device_id(dev_item, device->devid);
669         btrfs_set_stack_device_type(dev_item, device->type);
670         btrfs_set_stack_device_io_align(dev_item, device->io_align);
671         btrfs_set_stack_device_io_width(dev_item, device->io_width);
672         btrfs_set_stack_device_sector_size(dev_item, device->sector_size);
673         btrfs_set_stack_device_total_bytes(dev_item, device->total_bytes);
674         btrfs_set_stack_device_bytes_used(dev_item, device->bytes_used);
675         memcpy(&dev_item->uuid, device->uuid, BTRFS_UUID_SIZE);
676
677         ret = pwrite(fd, buf, sectorsize, BTRFS_SUPER_INFO_OFFSET);
678         BUG_ON(ret != sectorsize);
679
680         kfree(buf);
681         list_add(&device->dev_list, &root->fs_info->fs_devices->devices);
682         device->fs_devices = root->fs_info->fs_devices;
683         return 0;
684 }
685
686 static void btrfs_wipe_existing_sb(int fd)
687 {
688         const char *off = NULL;
689         size_t len = 0;
690         loff_t offset;
691         char buf[BUFSIZ];
692         int rc = 0;
693         blkid_probe pr = NULL;
694
695         pr = blkid_new_probe();
696         if (!pr)
697                 return;
698
699         if (blkid_probe_set_device(pr, fd, 0, 0))
700                 goto out;
701
702         rc = blkid_probe_lookup_value(pr, "SBMAGIC_OFFSET", &off, NULL);
703         if (!rc)
704                 rc = blkid_probe_lookup_value(pr, "SBMAGIC", NULL, &len);
705
706         if (rc || len == 0 || off == NULL)
707                 goto out;
708
709         offset = strtoll(off, NULL, 10);
710         if (len > sizeof(buf))
711                 len = sizeof(buf);
712
713         memset(buf, 0, len);
714         rc = pwrite(fd, buf, len, offset);
715         fsync(fd);
716
717 out:
718         blkid_free_probe(pr);
719         return;
720 }
721
722 int btrfs_prepare_device(int fd, char *file, int zero_end, u64 *block_count_ret,
723                            u64 max_block_count, int *mixed, int discard)
724 {
725         u64 block_count;
726         struct stat st;
727         int i, ret;
728
729         ret = fstat(fd, &st);
730         if (ret < 0) {
731                 fprintf(stderr, "unable to stat %s\n", file);
732                 return 1;
733         }
734
735         block_count = btrfs_device_size(fd, &st);
736         if (block_count == 0) {
737                 fprintf(stderr, "unable to find %s size\n", file);
738                 return 1;
739         }
740         if (max_block_count)
741                 block_count = min(block_count, max_block_count);
742
743         if (block_count < BTRFS_MKFS_SMALL_VOLUME_SIZE && !(*mixed))
744                 *mixed = 1;
745
746         if (discard) {
747                 /*
748                  * We intentionally ignore errors from the discard ioctl.  It
749                  * is not necessary for the mkfs functionality but just an
750                  * optimization.
751                  */
752                 if (discard_range(fd, 0, 0) == 0) {
753                         fprintf(stderr, "Performing full device TRIM (%s) ...\n",
754                                 pretty_size(block_count));
755                         discard_blocks(fd, 0, block_count);
756                 }
757         }
758
759         ret = zero_dev_clamped(fd, 0, ZERO_DEV_BYTES, block_count);
760         for (i = 0 ; !ret && i < BTRFS_SUPER_MIRROR_MAX; i++)
761                 ret = zero_dev_clamped(fd, btrfs_sb_offset(i),
762                                        BTRFS_SUPER_INFO_SIZE, block_count);
763         if (!ret && zero_end)
764                 ret = zero_dev_clamped(fd, block_count - ZERO_DEV_BYTES,
765                                        ZERO_DEV_BYTES, block_count);
766
767         if (ret < 0) {
768                 fprintf(stderr, "ERROR: failed to zero device '%s' - %s\n",
769                         file, strerror(-ret));
770                 return 1;
771         }
772
773         btrfs_wipe_existing_sb(fd);
774
775         *block_count_ret = block_count;
776         return 0;
777 }
778
779 int btrfs_make_root_dir(struct btrfs_trans_handle *trans,
780                         struct btrfs_root *root, u64 objectid)
781 {
782         int ret;
783         struct btrfs_inode_item inode_item;
784         time_t now = time(NULL);
785
786         memset(&inode_item, 0, sizeof(inode_item));
787         btrfs_set_stack_inode_generation(&inode_item, trans->transid);
788         btrfs_set_stack_inode_size(&inode_item, 0);
789         btrfs_set_stack_inode_nlink(&inode_item, 1);
790         btrfs_set_stack_inode_nbytes(&inode_item, root->leafsize);
791         btrfs_set_stack_inode_mode(&inode_item, S_IFDIR | 0755);
792         btrfs_set_stack_timespec_sec(&inode_item.atime, now);
793         btrfs_set_stack_timespec_nsec(&inode_item.atime, 0);
794         btrfs_set_stack_timespec_sec(&inode_item.ctime, now);
795         btrfs_set_stack_timespec_nsec(&inode_item.ctime, 0);
796         btrfs_set_stack_timespec_sec(&inode_item.mtime, now);
797         btrfs_set_stack_timespec_nsec(&inode_item.mtime, 0);
798         btrfs_set_stack_timespec_sec(&inode_item.otime, 0);
799         btrfs_set_stack_timespec_nsec(&inode_item.otime, 0);
800
801         if (root->fs_info->tree_root == root)
802                 btrfs_set_super_root_dir(root->fs_info->super_copy, objectid);
803
804         ret = btrfs_insert_inode(trans, root, objectid, &inode_item);
805         if (ret)
806                 goto error;
807
808         ret = btrfs_insert_inode_ref(trans, root, "..", 2, objectid, objectid, 0);
809         if (ret)
810                 goto error;
811
812         btrfs_set_root_dirid(&root->root_item, objectid);
813         ret = 0;
814 error:
815         return ret;
816 }
817
818 /*
819  * checks if a path is a block device node
820  * Returns negative errno on failure, otherwise
821  * returns 1 for blockdev, 0 for not-blockdev
822  */
823 int is_block_device(const char *path)
824 {
825         struct stat statbuf;
826
827         if (stat(path, &statbuf) < 0)
828                 return -errno;
829
830         return S_ISBLK(statbuf.st_mode);
831 }
832
833 /*
834  * check if given path is a mount point
835  * return 1 if yes. 0 if no. -1 for error
836  */
837 int is_mount_point(const char *path)
838 {
839         FILE *f;
840         struct mntent *mnt;
841         int ret = 0;
842
843         f = setmntent("/proc/self/mounts", "r");
844         if (f == NULL)
845                 return -1;
846
847         while ((mnt = getmntent(f)) != NULL) {
848                 if (strcmp(mnt->mnt_dir, path))
849                         continue;
850                 ret = 1;
851                 break;
852         }
853         endmntent(f);
854         return ret;
855 }
856
857 /*
858  * Find the mount point for a mounted device.
859  * On success, returns 0 with mountpoint in *mp.
860  * On failure, returns -errno (not mounted yields -EINVAL)
861  * Is noisy on failures, expects to be given a mounted device.
862  */
863 int get_btrfs_mount(const char *dev, char *mp, size_t mp_size)
864 {
865         int ret;
866         int fd = -1;
867
868         ret = is_block_device(dev);
869         if (ret <= 0) {
870                 if (!ret) {
871                         fprintf(stderr, "%s is not a block device\n", dev);
872                         ret = -EINVAL;
873                 } else {
874                         fprintf(stderr, "Could not check %s: %s\n",
875                                 dev, strerror(-ret));
876                 }
877                 goto out;
878         }
879
880         fd = open(dev, O_RDONLY);
881         if (fd < 0) {
882                 ret = -errno;
883                 fprintf(stderr, "Could not open %s: %s\n", dev, strerror(errno));
884                 goto out;
885         }
886
887         ret = check_mounted_where(fd, dev, mp, mp_size, NULL);
888         if (!ret) {
889                 ret = -EINVAL;
890         } else { /* mounted, all good */
891                 ret = 0;
892         }
893 out:
894         if (fd != -1)
895                 close(fd);
896         return ret;
897 }
898
899 /*
900  * Given a pathname, return a filehandle to:
901  *      the original pathname or,
902  *      if the pathname is a mounted btrfs device, to its mountpoint.
903  *
904  * On error, return -1, errno should be set.
905  */
906 int open_path_or_dev_mnt(const char *path, DIR **dirstream)
907 {
908         char mp[BTRFS_PATH_NAME_MAX + 1];
909         int fdmnt;
910
911         if (is_block_device(path)) {
912                 int ret;
913
914                 ret = get_btrfs_mount(path, mp, sizeof(mp));
915                 if (ret < 0) {
916                         /* not a mounted btrfs dev */
917                         errno = EINVAL;
918                         return -1;
919                 }
920                 fdmnt = open_file_or_dir(mp, dirstream);
921         } else {
922                 fdmnt = open_file_or_dir(path, dirstream);
923         }
924
925         return fdmnt;
926 }
927
928 /* checks if a device is a loop device */
929 static int is_loop_device (const char* device) {
930         struct stat statbuf;
931
932         if(stat(device, &statbuf) < 0)
933                 return -errno;
934
935         return (S_ISBLK(statbuf.st_mode) &&
936                 MAJOR(statbuf.st_rdev) == LOOP_MAJOR);
937 }
938
939
940 /* Takes a loop device path (e.g. /dev/loop0) and returns
941  * the associated file (e.g. /images/my_btrfs.img) */
942 static int resolve_loop_device(const char* loop_dev, char* loop_file,
943                 int max_len)
944 {
945         int ret;
946         FILE *f;
947         char fmt[20];
948         char p[PATH_MAX];
949         char real_loop_dev[PATH_MAX];
950
951         if (!realpath(loop_dev, real_loop_dev))
952                 return -errno;
953         snprintf(p, PATH_MAX, "/sys/block/%s/loop/backing_file", strrchr(real_loop_dev, '/'));
954         if (!(f = fopen(p, "r")))
955                 return -errno;
956
957         snprintf(fmt, 20, "%%%i[^\n]", max_len-1);
958         ret = fscanf(f, fmt, loop_file);
959         fclose(f);
960         if (ret == EOF)
961                 return -errno;
962
963         return 0;
964 }
965
966 /* Checks whether a and b are identical or device
967  * files associated with the same block device
968  */
969 static int is_same_blk_file(const char* a, const char* b)
970 {
971         struct stat st_buf_a, st_buf_b;
972         char real_a[PATH_MAX];
973         char real_b[PATH_MAX];
974
975         if(!realpath(a, real_a))
976                 strcpy(real_a, a);
977
978         if (!realpath(b, real_b))
979                 strcpy(real_b, b);
980
981         /* Identical path? */
982         if(strcmp(real_a, real_b) == 0)
983                 return 1;
984
985         if(stat(a, &st_buf_a) < 0 ||
986            stat(b, &st_buf_b) < 0)
987         {
988                 if (errno == ENOENT)
989                         return 0;
990                 return -errno;
991         }
992
993         /* Same blockdevice? */
994         if(S_ISBLK(st_buf_a.st_mode) &&
995            S_ISBLK(st_buf_b.st_mode) &&
996            st_buf_a.st_rdev == st_buf_b.st_rdev)
997         {
998                 return 1;
999         }
1000
1001         /* Hardlink? */
1002         if (st_buf_a.st_dev == st_buf_b.st_dev &&
1003             st_buf_a.st_ino == st_buf_b.st_ino)
1004         {
1005                 return 1;
1006         }
1007
1008         return 0;
1009 }
1010
1011 /* checks if a and b are identical or device
1012  * files associated with the same block device or
1013  * if one file is a loop device that uses the other
1014  * file.
1015  */
1016 static int is_same_loop_file(const char* a, const char* b)
1017 {
1018         char res_a[PATH_MAX];
1019         char res_b[PATH_MAX];
1020         const char* final_a = NULL;
1021         const char* final_b = NULL;
1022         int ret;
1023
1024         /* Resolve a if it is a loop device */
1025         if((ret = is_loop_device(a)) < 0) {
1026                 if (ret == -ENOENT)
1027                         return 0;
1028                 return ret;
1029         } else if (ret) {
1030                 ret = resolve_loop_device(a, res_a, sizeof(res_a));
1031                 if (ret < 0) {
1032                         if (errno != EPERM)
1033                                 return ret;
1034                 } else {
1035                         final_a = res_a;
1036                 }
1037         } else {
1038                 final_a = a;
1039         }
1040
1041         /* Resolve b if it is a loop device */
1042         if ((ret = is_loop_device(b)) < 0) {
1043                 if (ret == -ENOENT)
1044                         return 0;
1045                 return ret;
1046         } else if (ret) {
1047                 ret = resolve_loop_device(b, res_b, sizeof(res_b));
1048                 if (ret < 0) {
1049                         if (errno != EPERM)
1050                                 return ret;
1051                 } else {
1052                         final_b = res_b;
1053                 }
1054         } else {
1055                 final_b = b;
1056         }
1057
1058         return is_same_blk_file(final_a, final_b);
1059 }
1060
1061 /* Checks if a file exists and is a block or regular file*/
1062 static int is_existing_blk_or_reg_file(const char* filename)
1063 {
1064         struct stat st_buf;
1065
1066         if(stat(filename, &st_buf) < 0) {
1067                 if(errno == ENOENT)
1068                         return 0;
1069                 else
1070                         return -errno;
1071         }
1072
1073         return (S_ISBLK(st_buf.st_mode) || S_ISREG(st_buf.st_mode));
1074 }
1075
1076 /* Checks if a file is used (directly or indirectly via a loop device)
1077  * by a device in fs_devices
1078  */
1079 static int blk_file_in_dev_list(struct btrfs_fs_devices* fs_devices,
1080                 const char* file)
1081 {
1082         int ret;
1083         struct list_head *head;
1084         struct list_head *cur;
1085         struct btrfs_device *device;
1086
1087         head = &fs_devices->devices;
1088         list_for_each(cur, head) {
1089                 device = list_entry(cur, struct btrfs_device, dev_list);
1090
1091                 if((ret = is_same_loop_file(device->name, file)))
1092                         return ret;
1093         }
1094
1095         return 0;
1096 }
1097
1098 /*
1099  * Resolve a pathname to a device mapper node to /dev/mapper/<name>
1100  * Returns NULL on invalid input or malloc failure; Other failures
1101  * will be handled by the caller using the input pathame.
1102  */
1103 char *canonicalize_dm_name(const char *ptname)
1104 {
1105         FILE    *f;
1106         size_t  sz;
1107         char    path[PATH_MAX], name[PATH_MAX], *res = NULL;
1108
1109         if (!ptname || !*ptname)
1110                 return NULL;
1111
1112         snprintf(path, sizeof(path), "/sys/block/%s/dm/name", ptname);
1113         if (!(f = fopen(path, "r")))
1114                 return NULL;
1115
1116         /* read <name>\n from sysfs */
1117         if (fgets(name, sizeof(name), f) && (sz = strlen(name)) > 1) {
1118                 name[sz - 1] = '\0';
1119                 snprintf(path, sizeof(path), "/dev/mapper/%s", name);
1120
1121                 if (access(path, F_OK) == 0)
1122                         res = strdup(path);
1123         }
1124         fclose(f);
1125         return res;
1126 }
1127
1128 /*
1129  * Resolve a pathname to a canonical device node, e.g. /dev/sda1 or
1130  * to a device mapper pathname.
1131  * Returns NULL on invalid input or malloc failure; Other failures
1132  * will be handled by the caller using the input pathame.
1133  */
1134 char *canonicalize_path(const char *path)
1135 {
1136         char *canonical, *p;
1137
1138         if (!path || !*path)
1139                 return NULL;
1140
1141         canonical = realpath(path, NULL);
1142         if (!canonical)
1143                 return strdup(path);
1144         p = strrchr(canonical, '/');
1145         if (p && strncmp(p, "/dm-", 4) == 0 && isdigit(*(p + 4))) {
1146                 char *dm = canonicalize_dm_name(p + 1);
1147
1148                 if (dm) {
1149                         free(canonical);
1150                         return dm;
1151                 }
1152         }
1153         return canonical;
1154 }
1155
1156 /*
1157  * returns 1 if the device was mounted, < 0 on error or 0 if everything
1158  * is safe to continue.
1159  */
1160 int check_mounted(const char* file)
1161 {
1162         int fd;
1163         int ret;
1164
1165         fd = open(file, O_RDONLY);
1166         if (fd < 0) {
1167                 fprintf (stderr, "check_mounted(): Could not open %s\n", file);
1168                 return -errno;
1169         }
1170
1171         ret =  check_mounted_where(fd, file, NULL, 0, NULL);
1172         close(fd);
1173
1174         return ret;
1175 }
1176
1177 int check_mounted_where(int fd, const char *file, char *where, int size,
1178                         struct btrfs_fs_devices **fs_dev_ret)
1179 {
1180         int ret;
1181         u64 total_devs = 1;
1182         int is_btrfs;
1183         struct btrfs_fs_devices *fs_devices_mnt = NULL;
1184         FILE *f;
1185         struct mntent *mnt;
1186
1187         /* scan the initial device */
1188         ret = btrfs_scan_one_device(fd, file, &fs_devices_mnt,
1189                                     &total_devs, BTRFS_SUPER_INFO_OFFSET, 0);
1190         is_btrfs = (ret >= 0);
1191
1192         /* scan other devices */
1193         if (is_btrfs && total_devs > 1) {
1194                 ret = btrfs_scan_lblkid();
1195                 if (ret)
1196                         return ret;
1197         }
1198
1199         /* iterate over the list of currently mountes filesystems */
1200         if ((f = setmntent ("/proc/self/mounts", "r")) == NULL)
1201                 return -errno;
1202
1203         while ((mnt = getmntent (f)) != NULL) {
1204                 if(is_btrfs) {
1205                         if(strcmp(mnt->mnt_type, "btrfs") != 0)
1206                                 continue;
1207
1208                         ret = blk_file_in_dev_list(fs_devices_mnt, mnt->mnt_fsname);
1209                 } else {
1210                         /* ignore entries in the mount table that are not
1211                            associated with a file*/
1212                         if((ret = is_existing_blk_or_reg_file(mnt->mnt_fsname)) < 0)
1213                                 goto out_mntloop_err;
1214                         else if(!ret)
1215                                 continue;
1216
1217                         ret = is_same_loop_file(file, mnt->mnt_fsname);
1218                 }
1219
1220                 if(ret < 0)
1221                         goto out_mntloop_err;
1222                 else if(ret)
1223                         break;
1224         }
1225
1226         /* Did we find an entry in mnt table? */
1227         if (mnt && size && where) {
1228                 strncpy(where, mnt->mnt_dir, size);
1229                 where[size-1] = 0;
1230         }
1231         if (fs_dev_ret)
1232                 *fs_dev_ret = fs_devices_mnt;
1233
1234         ret = (mnt != NULL);
1235
1236 out_mntloop_err:
1237         endmntent (f);
1238
1239         return ret;
1240 }
1241
1242 struct pending_dir {
1243         struct list_head list;
1244         char name[PATH_MAX];
1245 };
1246
1247 int btrfs_register_one_device(const char *fname)
1248 {
1249         struct btrfs_ioctl_vol_args args;
1250         int fd;
1251         int ret;
1252         int e;
1253
1254         fd = open("/dev/btrfs-control", O_RDWR);
1255         if (fd < 0) {
1256                 fprintf(stderr, "failed to open /dev/btrfs-control "
1257                         "skipping device registration: %s\n",
1258                         strerror(errno));
1259                 return -errno;
1260         }
1261         strncpy(args.name, fname, BTRFS_PATH_NAME_MAX);
1262         args.name[BTRFS_PATH_NAME_MAX-1] = 0;
1263         ret = ioctl(fd, BTRFS_IOC_SCAN_DEV, &args);
1264         e = errno;
1265         if (ret < 0) {
1266                 fprintf(stderr, "ERROR: device scan failed '%s' - %s\n",
1267                         fname, strerror(e));
1268                 ret = -e;
1269         }
1270         close(fd);
1271         return ret;
1272 }
1273
1274 /*
1275  * Register all devices in the fs_uuid list created in the user
1276  * space. Ensure btrfs_scan_lblkid() is called before this func.
1277  */
1278 int btrfs_register_all_devices(void)
1279 {
1280         int err;
1281         struct btrfs_fs_devices *fs_devices;
1282         struct btrfs_device *device;
1283         struct list_head *all_uuids;
1284
1285         all_uuids = btrfs_scanned_uuids();
1286
1287         list_for_each_entry(fs_devices, all_uuids, list) {
1288                 list_for_each_entry(device, &fs_devices->devices, dev_list) {
1289                         if (strlen(device->name) != 0) {
1290                                 err = btrfs_register_one_device(device->name);
1291                                 if (err < 0)
1292                                         return err;
1293                                 if (err > 0)
1294                                         return -err;
1295                         }
1296                 }
1297         }
1298         return 0;
1299 }
1300
1301 int btrfs_device_already_in_root(struct btrfs_root *root, int fd,
1302                                  int super_offset)
1303 {
1304         struct btrfs_super_block *disk_super;
1305         char *buf;
1306         int ret = 0;
1307
1308         buf = malloc(BTRFS_SUPER_INFO_SIZE);
1309         if (!buf) {
1310                 ret = -ENOMEM;
1311                 goto out;
1312         }
1313         ret = pread(fd, buf, BTRFS_SUPER_INFO_SIZE, super_offset);
1314         if (ret != BTRFS_SUPER_INFO_SIZE)
1315                 goto brelse;
1316
1317         ret = 0;
1318         disk_super = (struct btrfs_super_block *)buf;
1319         if (btrfs_super_magic(disk_super) != BTRFS_MAGIC)
1320                 goto brelse;
1321
1322         if (!memcmp(disk_super->fsid, root->fs_info->super_copy->fsid,
1323                     BTRFS_FSID_SIZE))
1324                 ret = 1;
1325 brelse:
1326         free(buf);
1327 out:
1328         return ret;
1329 }
1330
1331 static const char* unit_suffix_binary[] =
1332         { "B", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB"};
1333 static const char* unit_suffix_decimal[] =
1334         { "B", "kB", "MB", "GB", "TB", "PB", "EB"};
1335
1336 int pretty_size_snprintf(u64 size, char *str, size_t str_size, unsigned unit_mode)
1337 {
1338         int num_divs;
1339         float fraction;
1340         u64 base = 0;
1341         int mult = 0;
1342         const char** suffix = NULL;
1343         u64 last_size;
1344
1345         if (str_size == 0)
1346                 return 0;
1347
1348         if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_RAW) {
1349                 snprintf(str, str_size, "%llu", size);
1350                 return 0;
1351         }
1352
1353         if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_BINARY) {
1354                 base = 1024;
1355                 mult = 1024;
1356                 suffix = unit_suffix_binary;
1357         } else if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_DECIMAL) {
1358                 base = 1000;
1359                 mult = 1000;
1360                 suffix = unit_suffix_decimal;
1361         }
1362
1363         /* Unknown mode */
1364         if (!base) {
1365                 fprintf(stderr, "INTERNAL ERROR: unknown unit base, mode %d\n",
1366                                 unit_mode);
1367                 assert(0);
1368                 return -1;
1369         }
1370
1371         num_divs = 0;
1372         last_size = size;
1373         switch (unit_mode & UNITS_MODE_MASK) {
1374         case UNITS_TBYTES: base *= mult; num_divs++;
1375         case UNITS_GBYTES: base *= mult; num_divs++;
1376         case UNITS_MBYTES: base *= mult; num_divs++;
1377         case UNITS_KBYTES: num_divs++;
1378                            break;
1379         case UNITS_BYTES:
1380                            base = 1;
1381                            num_divs = 0;
1382                            break;
1383         default:
1384                 while (size >= mult) {
1385                         last_size = size;
1386                         size /= mult;
1387                         num_divs++;
1388                 }
1389         }
1390
1391         if (num_divs >= ARRAY_SIZE(unit_suffix_binary)) {
1392                 str[0] = '\0';
1393                 printf("INTERNAL ERROR: unsupported unit suffix, index %d\n",
1394                                 num_divs);
1395                 assert(0);
1396                 return -1;
1397         }
1398         fraction = (float)last_size / base;
1399
1400         return snprintf(str, str_size, "%.2f%s", fraction, suffix[num_divs]);
1401 }
1402
1403 /*
1404  * __strncpy__null - strncpy with null termination
1405  * @dest:       the target array
1406  * @src:        the source string
1407  * @n:          maximum bytes to copy (size of *dest)
1408  *
1409  * Like strncpy, but ensures destination is null-terminated.
1410  *
1411  * Copies the string pointed to by src, including the terminating null
1412  * byte ('\0'), to the buffer pointed to by dest, up to a maximum
1413  * of n bytes.  Then ensure that dest is null-terminated.
1414  */
1415 char *__strncpy__null(char *dest, const char *src, size_t n)
1416 {
1417         strncpy(dest, src, n);
1418         if (n > 0)
1419                 dest[n - 1] = '\0';
1420         return dest;
1421 }
1422
1423 /*
1424  * Checks to make sure that the label matches our requirements.
1425  * Returns:
1426        0    if everything is safe and usable
1427       -1    if the label is too long
1428  */
1429 static int check_label(const char *input)
1430 {
1431        int len = strlen(input);
1432
1433        if (len > BTRFS_LABEL_SIZE - 1) {
1434                 fprintf(stderr, "ERROR: Label %s is too long (max %d)\n",
1435                         input, BTRFS_LABEL_SIZE - 1);
1436                return -1;
1437        }
1438
1439        return 0;
1440 }
1441
1442 static int set_label_unmounted(const char *dev, const char *label)
1443 {
1444         struct btrfs_trans_handle *trans;
1445         struct btrfs_root *root;
1446         int ret;
1447
1448         ret = check_mounted(dev);
1449         if (ret < 0) {
1450                fprintf(stderr, "FATAL: error checking %s mount status\n", dev);
1451                return -1;
1452         }
1453         if (ret > 0) {
1454                 fprintf(stderr, "ERROR: dev %s is mounted, use mount point\n",
1455                         dev);
1456                 return -1;
1457         }
1458
1459         /* Open the super_block at the default location
1460          * and as read-write.
1461          */
1462         root = open_ctree(dev, 0, OPEN_CTREE_WRITES);
1463         if (!root) /* errors are printed by open_ctree() */
1464                 return -1;
1465
1466         trans = btrfs_start_transaction(root, 1);
1467         snprintf(root->fs_info->super_copy->label, BTRFS_LABEL_SIZE, "%s",
1468                  label);
1469         btrfs_commit_transaction(trans, root);
1470
1471         /* Now we close it since we are done. */
1472         close_ctree(root);
1473         return 0;
1474 }
1475
1476 static int set_label_mounted(const char *mount_path, const char *label)
1477 {
1478         int fd;
1479
1480         fd = open(mount_path, O_RDONLY | O_NOATIME);
1481         if (fd < 0) {
1482                 fprintf(stderr, "ERROR: unable to access '%s'\n", mount_path);
1483                 return -1;
1484         }
1485
1486         if (ioctl(fd, BTRFS_IOC_SET_FSLABEL, label) < 0) {
1487                 fprintf(stderr, "ERROR: unable to set label %s\n",
1488                         strerror(errno));
1489                 close(fd);
1490                 return -1;
1491         }
1492
1493         close(fd);
1494         return 0;
1495 }
1496
1497 static int get_label_unmounted(const char *dev, char *label)
1498 {
1499         struct btrfs_root *root;
1500         int ret;
1501
1502         ret = check_mounted(dev);
1503         if (ret < 0) {
1504                fprintf(stderr, "FATAL: error checking %s mount status\n", dev);
1505                return -1;
1506         }
1507         if (ret > 0) {
1508                 fprintf(stderr, "ERROR: dev %s is mounted, use mount point\n",
1509                         dev);
1510                 return -1;
1511         }
1512
1513         /* Open the super_block at the default location
1514          * and as read-only.
1515          */
1516         root = open_ctree(dev, 0, 0);
1517         if(!root)
1518                 return -1;
1519
1520         memcpy(label, root->fs_info->super_copy->label, BTRFS_LABEL_SIZE);
1521
1522         /* Now we close it since we are done. */
1523         close_ctree(root);
1524         return 0;
1525 }
1526
1527 /*
1528  * If a partition is mounted, try to get the filesystem label via its
1529  * mounted path rather than device.  Return the corresponding error
1530  * the user specified the device path.
1531  */
1532 int get_label_mounted(const char *mount_path, char *labelp)
1533 {
1534         char label[BTRFS_LABEL_SIZE];
1535         int fd;
1536
1537         fd = open(mount_path, O_RDONLY | O_NOATIME);
1538         if (fd < 0) {
1539                 fprintf(stderr, "ERROR: unable to access '%s'\n", mount_path);
1540                 return -1;
1541         }
1542
1543         memset(label, '\0', sizeof(label));
1544         if (ioctl(fd, BTRFS_IOC_GET_FSLABEL, label) < 0) {
1545                 fprintf(stderr, "ERROR: unable get label %s\n", strerror(errno));
1546                 close(fd);
1547                 return -1;
1548         }
1549
1550         strncpy(labelp, label, sizeof(label));
1551         close(fd);
1552         return 0;
1553 }
1554
1555 int get_label(const char *btrfs_dev, char *label)
1556 {
1557         int ret;
1558
1559         ret = is_existing_blk_or_reg_file(btrfs_dev);
1560         if (!ret)
1561                 ret = get_label_mounted(btrfs_dev, label);
1562         else if (ret > 0)
1563                 ret = get_label_unmounted(btrfs_dev, label);
1564
1565         return ret;
1566 }
1567
1568 int set_label(const char *btrfs_dev, const char *label)
1569 {
1570         int ret;
1571
1572         if (check_label(label))
1573                 return -1;
1574
1575         ret = is_existing_blk_or_reg_file(btrfs_dev);
1576         if (!ret)
1577                 ret = set_label_mounted(btrfs_dev, label);
1578         else if (ret > 0)
1579                 ret = set_label_unmounted(btrfs_dev, label);
1580
1581         return ret;
1582 }
1583
1584 int btrfs_scan_block_devices(int run_ioctl)
1585 {
1586
1587         struct stat st;
1588         int ret;
1589         int fd;
1590         struct btrfs_fs_devices *tmp_devices;
1591         u64 num_devices;
1592         FILE *proc_partitions;
1593         int i;
1594         char buf[1024];
1595         char fullpath[110];
1596         int scans = 0;
1597         int special;
1598
1599 scan_again:
1600         proc_partitions = fopen("/proc/partitions","r");
1601         if (!proc_partitions) {
1602                 fprintf(stderr, "Unable to open '/proc/partitions' for scanning\n");
1603                 return -ENOENT;
1604         }
1605         /* skip the header */
1606         for (i = 0; i < 2; i++)
1607                 if (!fgets(buf, 1023, proc_partitions)) {
1608                         fprintf(stderr,
1609                                 "Unable to read '/proc/partitions' for scanning\n");
1610                         fclose(proc_partitions);
1611                         return -ENOENT;
1612                 }
1613
1614         strcpy(fullpath,"/dev/");
1615         while(fgets(buf, 1023, proc_partitions)) {
1616                 ret = sscanf(buf," %*d %*d %*d %99s", fullpath + 5);
1617                 if (ret != 1) {
1618                         fprintf(stderr,
1619                                 "failed to scan device name from /proc/partitions\n");
1620                         break;
1621                 }
1622
1623                 /*
1624                  * multipath and MD devices may register as a btrfs filesystem
1625                  * both through the original block device and through
1626                  * the special (/dev/mapper or /dev/mdX) entry.
1627                  * This scans the special entries last
1628                  */
1629                 special = strncmp(fullpath, "/dev/dm-", strlen("/dev/dm-")) == 0;
1630                 if (!special)
1631                         special = strncmp(fullpath, "/dev/md", strlen("/dev/md")) == 0;
1632
1633                 if (scans == 0 && special)
1634                         continue;
1635                 if (scans > 0 && !special)
1636                         continue;
1637
1638                 ret = lstat(fullpath, &st);
1639                 if (ret < 0) {
1640                         fprintf(stderr, "failed to stat %s\n", fullpath);
1641                         continue;
1642                 }
1643                 if (!S_ISBLK(st.st_mode)) {
1644                         continue;
1645                 }
1646
1647                 fd = open(fullpath, O_RDONLY);
1648                 if (fd < 0) {
1649                         if (errno != ENOMEDIUM)
1650                                 fprintf(stderr, "failed to open %s: %s\n",
1651                                         fullpath, strerror(errno));
1652                         continue;
1653                 }
1654                 ret = btrfs_scan_one_device(fd, fullpath, &tmp_devices,
1655                                             &num_devices,
1656                                             BTRFS_SUPER_INFO_OFFSET, 0);
1657                 if (ret == 0 && run_ioctl > 0) {
1658                         btrfs_register_one_device(fullpath);
1659                 }
1660                 close(fd);
1661         }
1662
1663         fclose(proc_partitions);
1664
1665         if (scans == 0) {
1666                 scans++;
1667                 goto scan_again;
1668         }
1669         return 0;
1670 }
1671
1672 /*
1673  * A not-so-good version fls64. No fascinating optimization since
1674  * no one except parse_size use it
1675  */
1676 static int fls64(u64 x)
1677 {
1678         int i;
1679
1680         for (i = 0; i <64; i++)
1681                 if (x << i & (1ULL << 63))
1682                         return 64 - i;
1683         return 64 - i;
1684 }
1685
1686 u64 parse_size(char *s)
1687 {
1688         char c;
1689         char *endptr;
1690         u64 mult = 1;
1691         u64 ret;
1692
1693         if (!s) {
1694                 fprintf(stderr, "ERROR: Size value is empty\n");
1695                 exit(1);
1696         }
1697         if (s[0] == '-') {
1698                 fprintf(stderr,
1699                         "ERROR: Size value '%s' is less equal than 0\n", s);
1700                 exit(1);
1701         }
1702         ret = strtoull(s, &endptr, 10);
1703         if (endptr == s) {
1704                 fprintf(stderr, "ERROR: Size value '%s' is invalid\n", s);
1705                 exit(1);
1706         }
1707         if (endptr[0] && endptr[1]) {
1708                 fprintf(stderr, "ERROR: Illegal suffix contains character '%c' in wrong position\n",
1709                         endptr[1]);
1710                 exit(1);
1711         }
1712         /*
1713          * strtoll returns LLONG_MAX when overflow, if this happens,
1714          * need to call strtoull to get the real size
1715          */
1716         if (errno == ERANGE && ret == ULLONG_MAX) {
1717                 fprintf(stderr,
1718                         "ERROR: Size value '%s' is too large for u64\n", s);
1719                 exit(1);
1720         }
1721         if (endptr[0]) {
1722                 c = tolower(endptr[0]);
1723                 switch (c) {
1724                 case 'e':
1725                         mult *= 1024;
1726                         /* fallthrough */
1727                 case 'p':
1728                         mult *= 1024;
1729                         /* fallthrough */
1730                 case 't':
1731                         mult *= 1024;
1732                         /* fallthrough */
1733                 case 'g':
1734                         mult *= 1024;
1735                         /* fallthrough */
1736                 case 'm':
1737                         mult *= 1024;
1738                         /* fallthrough */
1739                 case 'k':
1740                         mult *= 1024;
1741                         /* fallthrough */
1742                 case 'b':
1743                         break;
1744                 default:
1745                         fprintf(stderr, "ERROR: Unknown size descriptor '%c'\n",
1746                                 c);
1747                         exit(1);
1748                 }
1749         }
1750         /* Check whether ret * mult overflow */
1751         if (fls64(ret) + fls64(mult) - 1 > 64) {
1752                 fprintf(stderr,
1753                         "ERROR: Size value '%s' is too large for u64\n", s);
1754                 exit(1);
1755         }
1756         ret *= mult;
1757         return ret;
1758 }
1759
1760 int open_file_or_dir3(const char *fname, DIR **dirstream, int open_flags)
1761 {
1762         int ret;
1763         struct stat st;
1764         int fd;
1765
1766         ret = stat(fname, &st);
1767         if (ret < 0) {
1768                 return -1;
1769         }
1770         if (S_ISDIR(st.st_mode)) {
1771                 *dirstream = opendir(fname);
1772                 if (!*dirstream)
1773                         return -1;
1774                 fd = dirfd(*dirstream);
1775         } else if (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode)) {
1776                 fd = open(fname, open_flags);
1777         } else {
1778                 /*
1779                  * we set this on purpose, in case the caller output
1780                  * strerror(errno) as success
1781                  */
1782                 errno = EINVAL;
1783                 return -1;
1784         }
1785         if (fd < 0) {
1786                 fd = -1;
1787                 if (*dirstream)
1788                         closedir(*dirstream);
1789         }
1790         return fd;
1791 }
1792
1793 int open_file_or_dir(const char *fname, DIR **dirstream)
1794 {
1795         return open_file_or_dir3(fname, dirstream, O_RDWR);
1796 }
1797
1798 void close_file_or_dir(int fd, DIR *dirstream)
1799 {
1800         if (dirstream)
1801                 closedir(dirstream);
1802         else if (fd >= 0)
1803                 close(fd);
1804 }
1805
1806 int get_device_info(int fd, u64 devid,
1807                 struct btrfs_ioctl_dev_info_args *di_args)
1808 {
1809         int ret;
1810
1811         di_args->devid = devid;
1812         memset(&di_args->uuid, '\0', sizeof(di_args->uuid));
1813
1814         ret = ioctl(fd, BTRFS_IOC_DEV_INFO, di_args);
1815         return ret ? -errno : 0;
1816 }
1817
1818 /*
1819  * For a given path, fill in the ioctl fs_ and info_ args.
1820  * If the path is a btrfs mountpoint, fill info for all devices.
1821  * If the path is a btrfs device, fill in only that device.
1822  *
1823  * The path provided must be either on a mounted btrfs fs,
1824  * or be a mounted btrfs device.
1825  *
1826  * Returns 0 on success, or a negative errno.
1827  */
1828 int get_fs_info(char *path, struct btrfs_ioctl_fs_info_args *fi_args,
1829                 struct btrfs_ioctl_dev_info_args **di_ret)
1830 {
1831         int fd = -1;
1832         int ret = 0;
1833         int ndevs = 0;
1834         int i = 0;
1835         struct btrfs_fs_devices *fs_devices_mnt = NULL;
1836         struct btrfs_ioctl_dev_info_args *di_args;
1837         char mp[BTRFS_PATH_NAME_MAX + 1];
1838         DIR *dirstream = NULL;
1839
1840         memset(fi_args, 0, sizeof(*fi_args));
1841
1842         if (is_block_device(path)) {
1843                 struct btrfs_super_block *disk_super;
1844                 char buf[BTRFS_SUPER_INFO_SIZE];
1845                 u64 devid;
1846
1847                 /* Ensure it's mounted, then set path to the mountpoint */
1848                 fd = open(path, O_RDONLY);
1849                 if (fd < 0) {
1850                         ret = -errno;
1851                         fprintf(stderr, "Couldn't open %s: %s\n",
1852                                 path, strerror(errno));
1853                         goto out;
1854                 }
1855                 ret = check_mounted_where(fd, path, mp, sizeof(mp),
1856                                           &fs_devices_mnt);
1857                 if (!ret) {
1858                         ret = -EINVAL;
1859                         goto out;
1860                 }
1861                 if (ret < 0)
1862                         goto out;
1863                 path = mp;
1864                 /* Only fill in this one device */
1865                 fi_args->num_devices = 1;
1866
1867                 disk_super = (struct btrfs_super_block *)buf;
1868                 ret = btrfs_read_dev_super(fd, disk_super,
1869                                            BTRFS_SUPER_INFO_OFFSET, 0);
1870                 if (ret < 0) {
1871                         ret = -EIO;
1872                         goto out;
1873                 }
1874                 devid = btrfs_stack_device_id(&disk_super->dev_item);
1875
1876                 fi_args->max_id = devid;
1877                 i = devid;
1878
1879                 memcpy(fi_args->fsid, fs_devices_mnt->fsid, BTRFS_FSID_SIZE);
1880                 close(fd);
1881         }
1882
1883         /* at this point path must not be for a block device */
1884         fd = open_file_or_dir(path, &dirstream);
1885         if (fd < 0) {
1886                 ret = -errno;
1887                 goto out;
1888         }
1889
1890         /* fill in fi_args if not just a single device */
1891         if (fi_args->num_devices != 1) {
1892                 ret = ioctl(fd, BTRFS_IOC_FS_INFO, fi_args);
1893                 if (ret < 0) {
1894                         ret = -errno;
1895                         goto out;
1896                 }
1897         }
1898
1899         if (!fi_args->num_devices)
1900                 goto out;
1901
1902         di_args = *di_ret = malloc((fi_args->num_devices) * sizeof(*di_args));
1903         if (!di_args) {
1904                 ret = -errno;
1905                 goto out;
1906         }
1907
1908         for (; i <= fi_args->max_id; ++i) {
1909                 BUG_ON(ndevs >= fi_args->num_devices);
1910                 ret = get_device_info(fd, i, &di_args[ndevs]);
1911                 if (ret == -ENODEV)
1912                         continue;
1913                 if (ret)
1914                         goto out;
1915                 ndevs++;
1916         }
1917
1918         /*
1919         * only when the only dev we wanted to find is not there then
1920         * let any error be returned
1921         */
1922         if (fi_args->num_devices != 1) {
1923                 BUG_ON(ndevs == 0);
1924                 ret = 0;
1925         }
1926
1927 out:
1928         close_file_or_dir(fd, dirstream);
1929         return ret;
1930 }
1931
1932 #define isoctal(c)      (((c) & ~7) == '0')
1933
1934 static inline void translate(char *f, char *t)
1935 {
1936         while (*f != '\0') {
1937                 if (*f == '\\' &&
1938                     isoctal(f[1]) && isoctal(f[2]) && isoctal(f[3])) {
1939                         *t++ = 64*(f[1] & 7) + 8*(f[2] & 7) + (f[3] & 7);
1940                         f += 4;
1941                 } else
1942                         *t++ = *f++;
1943         }
1944         *t = '\0';
1945         return;
1946 }
1947
1948 /*
1949  * Checks if the swap device.
1950  * Returns 1 if swap device, < 0 on error or 0 if not swap device.
1951  */
1952 static int is_swap_device(const char *file)
1953 {
1954         FILE    *f;
1955         struct stat     st_buf;
1956         dev_t   dev;
1957         ino_t   ino = 0;
1958         char    tmp[PATH_MAX];
1959         char    buf[PATH_MAX];
1960         char    *cp;
1961         int     ret = 0;
1962
1963         if (stat(file, &st_buf) < 0)
1964                 return -errno;
1965         if (S_ISBLK(st_buf.st_mode))
1966                 dev = st_buf.st_rdev;
1967         else if (S_ISREG(st_buf.st_mode)) {
1968                 dev = st_buf.st_dev;
1969                 ino = st_buf.st_ino;
1970         } else
1971                 return 0;
1972
1973         if ((f = fopen("/proc/swaps", "r")) == NULL)
1974                 return 0;
1975
1976         /* skip the first line */
1977         if (fgets(tmp, sizeof(tmp), f) == NULL)
1978                 goto out;
1979
1980         while (fgets(tmp, sizeof(tmp), f) != NULL) {
1981                 if ((cp = strchr(tmp, ' ')) != NULL)
1982                         *cp = '\0';
1983                 if ((cp = strchr(tmp, '\t')) != NULL)
1984                         *cp = '\0';
1985                 translate(tmp, buf);
1986                 if (stat(buf, &st_buf) != 0)
1987                         continue;
1988                 if (S_ISBLK(st_buf.st_mode)) {
1989                         if (dev == st_buf.st_rdev) {
1990                                 ret = 1;
1991                                 break;
1992                         }
1993                 } else if (S_ISREG(st_buf.st_mode)) {
1994                         if (dev == st_buf.st_dev && ino == st_buf.st_ino) {
1995                                 ret = 1;
1996                                 break;
1997                         }
1998                 }
1999         }
2000
2001 out:
2002         fclose(f);
2003
2004         return ret;
2005 }
2006
2007 /*
2008  * Check for existing filesystem or partition table on device.
2009  * Returns:
2010  *       1 for existing fs or partition
2011  *       0 for nothing found
2012  *      -1 for internal error
2013  */
2014 static int
2015 check_overwrite(
2016         char            *device)
2017 {
2018         const char      *type;
2019         blkid_probe     pr = NULL;
2020         int             ret;
2021         blkid_loff_t    size;
2022
2023         if (!device || !*device)
2024                 return 0;
2025
2026         ret = -1; /* will reset on success of all setup calls */
2027
2028         pr = blkid_new_probe_from_filename(device);
2029         if (!pr)
2030                 goto out;
2031
2032         size = blkid_probe_get_size(pr);
2033         if (size < 0)
2034                 goto out;
2035
2036         /* nothing to overwrite on a 0-length device */
2037         if (size == 0) {
2038                 ret = 0;
2039                 goto out;
2040         }
2041
2042         ret = blkid_probe_enable_partitions(pr, 1);
2043         if (ret < 0)
2044                 goto out;
2045
2046         ret = blkid_do_fullprobe(pr);
2047         if (ret < 0)
2048                 goto out;
2049
2050         /*
2051          * Blkid returns 1 for nothing found and 0 when it finds a signature,
2052          * but we want the exact opposite, so reverse the return value here.
2053          *
2054          * In addition print some useful diagnostics about what actually is
2055          * on the device.
2056          */
2057         if (ret) {
2058                 ret = 0;
2059                 goto out;
2060         }
2061
2062         if (!blkid_probe_lookup_value(pr, "TYPE", &type, NULL)) {
2063                 fprintf(stderr,
2064                         "%s appears to contain an existing "
2065                         "filesystem (%s).\n", device, type);
2066         } else if (!blkid_probe_lookup_value(pr, "PTTYPE", &type, NULL)) {
2067                 fprintf(stderr,
2068                         "%s appears to contain a partition "
2069                         "table (%s).\n", device, type);
2070         } else {
2071                 fprintf(stderr,
2072                         "%s appears to contain something weird "
2073                         "according to blkid\n", device);
2074         }
2075         ret = 1;
2076
2077 out:
2078         if (pr)
2079                 blkid_free_probe(pr);
2080         if (ret == -1)
2081                 fprintf(stderr,
2082                         "probe of %s failed, cannot detect "
2083                           "existing filesystem.\n", device);
2084         return ret;
2085 }
2086
2087 int test_num_disk_vs_raid(u64 metadata_profile, u64 data_profile,
2088         u64 dev_cnt, int mixed, char *estr)
2089 {
2090         size_t sz = 100;
2091         u64 allowed = 0;
2092
2093         switch (dev_cnt) {
2094         default:
2095         case 4:
2096                 allowed |= BTRFS_BLOCK_GROUP_RAID10;
2097         case 3:
2098                 allowed |= BTRFS_BLOCK_GROUP_RAID6;
2099         case 2:
2100                 allowed |= BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1 |
2101                         BTRFS_BLOCK_GROUP_RAID5;
2102                 break;
2103         case 1:
2104                 allowed |= BTRFS_BLOCK_GROUP_DUP;
2105         }
2106
2107         if (metadata_profile & ~allowed) {
2108                 snprintf(estr, sz, "unable to create FS with metadata "
2109                         "profile %llu (have %llu devices)\n",
2110                         metadata_profile, dev_cnt);
2111                 return 1;
2112         }
2113         if (data_profile & ~allowed) {
2114                 snprintf(estr, sz, "unable to create FS with data "
2115                         "profile %llu (have %llu devices)\n",
2116                         metadata_profile, dev_cnt);
2117                 return 1;
2118         }
2119
2120         if (!mixed && (data_profile & BTRFS_BLOCK_GROUP_DUP)) {
2121                 snprintf(estr, sz,
2122                         "dup for data is allowed only in mixed mode");
2123                 return 1;
2124         }
2125         return 0;
2126 }
2127
2128 /* Check if disk is suitable for btrfs
2129  * returns:
2130  *  1: something is wrong, estr provides the error
2131  *  0: all is fine
2132  */
2133 int test_dev_for_mkfs(char *file, int force_overwrite, char *estr)
2134 {
2135         int ret, fd;
2136         size_t sz = 100;
2137         struct stat st;
2138
2139         ret = is_swap_device(file);
2140         if (ret < 0) {
2141                 snprintf(estr, sz, "error checking %s status: %s\n", file,
2142                         strerror(-ret));
2143                 return 1;
2144         }
2145         if (ret == 1) {
2146                 snprintf(estr, sz, "%s is a swap device\n", file);
2147                 return 1;
2148         }
2149         if (!force_overwrite) {
2150                 if (check_overwrite(file)) {
2151                         snprintf(estr, sz, "Use the -f option to force overwrite.\n");
2152                         return 1;
2153                 }
2154         }
2155         ret = check_mounted(file);
2156         if (ret < 0) {
2157                 snprintf(estr, sz, "error checking %s mount status\n",
2158                         file);
2159                 return 1;
2160         }
2161         if (ret == 1) {
2162                 snprintf(estr, sz, "%s is mounted\n", file);
2163                 return 1;
2164         }
2165         /* check if the device is busy */
2166         fd = open(file, O_RDWR|O_EXCL);
2167         if (fd < 0) {
2168                 snprintf(estr, sz, "unable to open %s: %s\n", file,
2169                         strerror(errno));
2170                 return 1;
2171         }
2172         if (fstat(fd, &st)) {
2173                 snprintf(estr, sz, "unable to stat %s: %s\n", file,
2174                         strerror(errno));
2175                 close(fd);
2176                 return 1;
2177         }
2178         if (!S_ISBLK(st.st_mode)) {
2179                 fprintf(stderr, "'%s' is not a block device\n", file);
2180                 close(fd);
2181                 return 1;
2182         }
2183         close(fd);
2184         return 0;
2185 }
2186
2187 int btrfs_scan_lblkid()
2188 {
2189         int fd = -1;
2190         int ret;
2191         u64 num_devices;
2192         struct btrfs_fs_devices *tmp_devices;
2193         blkid_dev_iterate iter = NULL;
2194         blkid_dev dev = NULL;
2195         blkid_cache cache = NULL;
2196         char path[PATH_MAX];
2197
2198         if (btrfs_scan_done)
2199                 return 0;
2200
2201         if (blkid_get_cache(&cache, 0) < 0) {
2202                 printf("ERROR: lblkid cache get failed\n");
2203                 return 1;
2204         }
2205         blkid_probe_all(cache);
2206         iter = blkid_dev_iterate_begin(cache);
2207         blkid_dev_set_search(iter, "TYPE", "btrfs");
2208         while (blkid_dev_next(iter, &dev) == 0) {
2209                 dev = blkid_verify(cache, dev);
2210                 if (!dev)
2211                         continue;
2212                 /* if we are here its definitely a btrfs disk*/
2213                 strncpy(path, blkid_dev_devname(dev), PATH_MAX);
2214
2215                 fd = open(path, O_RDONLY);
2216                 if (fd < 0) {
2217                         printf("ERROR: could not open %s\n", path);
2218                         continue;
2219                 }
2220                 ret = btrfs_scan_one_device(fd, path, &tmp_devices,
2221                                 &num_devices, BTRFS_SUPER_INFO_OFFSET, 0);
2222                 if (ret) {
2223                         printf("ERROR: could not scan %s\n", path);
2224                         close (fd);
2225                         continue;
2226                 }
2227
2228                 close(fd);
2229         }
2230         blkid_dev_iterate_end(iter);
2231         blkid_put_cache(cache);
2232
2233         btrfs_scan_done = 1;
2234
2235         return 0;
2236 }
2237
2238 int is_vol_small(char *file)
2239 {
2240         int fd = -1;
2241         int e;
2242         struct stat st;
2243         u64 size;
2244
2245         fd = open(file, O_RDONLY);
2246         if (fd < 0)
2247                 return -errno;
2248         if (fstat(fd, &st) < 0) {
2249                 e = -errno;
2250                 close(fd);
2251                 return e;
2252         }
2253         size = btrfs_device_size(fd, &st);
2254         if (size == 0) {
2255                 close(fd);
2256                 return -1;
2257         }
2258         if (size < BTRFS_MKFS_SMALL_VOLUME_SIZE) {
2259                 close(fd);
2260                 return 1;
2261         } else {
2262                 close(fd);
2263                 return 0;
2264         }
2265 }
2266
2267 /*
2268  * This reads a line from the stdin and only returns non-zero if the
2269  * first whitespace delimited token is a case insensitive match with yes
2270  * or y.
2271  */
2272 int ask_user(char *question)
2273 {
2274         char buf[30] = {0,};
2275         char *saveptr = NULL;
2276         char *answer;
2277
2278         printf("%s [y/N]: ", question);
2279
2280         return fgets(buf, sizeof(buf) - 1, stdin) &&
2281                (answer = strtok_r(buf, " \t\n\r", &saveptr)) &&
2282                (!strcasecmp(answer, "yes") || !strcasecmp(answer, "y"));
2283 }
2284
2285 /*
2286  * For a given:
2287  * - file or directory return the containing tree root id
2288  * - subvolume return its own tree id
2289  * - BTRFS_EMPTY_SUBVOL_DIR_OBJECTID (directory with ino == 2) the result is
2290  *   undefined and function returns -1
2291  */
2292 int lookup_ino_rootid(int fd, u64 *rootid)
2293 {
2294         struct btrfs_ioctl_ino_lookup_args args;
2295         int ret;
2296         int e;
2297
2298         memset(&args, 0, sizeof(args));
2299         args.treeid = 0;
2300         args.objectid = BTRFS_FIRST_FREE_OBJECTID;
2301
2302         ret = ioctl(fd, BTRFS_IOC_INO_LOOKUP, &args);
2303         e = errno;
2304         if (ret) {
2305                 fprintf(stderr, "ERROR: Failed to lookup root id - %s\n",
2306                         strerror(e));
2307                 return ret;
2308         }
2309
2310         *rootid = args.treeid;
2311
2312         return 0;
2313 }
2314
2315 /*
2316  * return 0 if a btrfs mount point is found
2317  * return 1 if a mount point is found but not btrfs
2318  * return <0 if something goes wrong
2319  */
2320 int find_mount_root(const char *path, char **mount_root)
2321 {
2322         FILE *mnttab;
2323         int fd;
2324         struct mntent *ent;
2325         int len;
2326         int ret;
2327         int not_btrfs = 1;
2328         int longest_matchlen = 0;
2329         char *longest_match = NULL;
2330
2331         fd = open(path, O_RDONLY | O_NOATIME);
2332         if (fd < 0)
2333                 return -errno;
2334         close(fd);
2335
2336         mnttab = setmntent("/proc/self/mounts", "r");
2337         if (!mnttab)
2338                 return -errno;
2339
2340         while ((ent = getmntent(mnttab))) {
2341                 len = strlen(ent->mnt_dir);
2342                 if (strncmp(ent->mnt_dir, path, len) == 0) {
2343                         /* match found and use the latest match */
2344                         if (longest_matchlen <= len) {
2345                                 free(longest_match);
2346                                 longest_matchlen = len;
2347                                 longest_match = strdup(ent->mnt_dir);
2348                                 not_btrfs = strcmp(ent->mnt_type, "btrfs");
2349                         }
2350                 }
2351         }
2352         endmntent(mnttab);
2353
2354         if (!longest_match)
2355                 return -ENOENT;
2356         if (not_btrfs) {
2357                 free(longest_match);
2358                 return 1;
2359         }
2360
2361         ret = 0;
2362         *mount_root = realpath(longest_match, NULL);
2363         if (!*mount_root)
2364                 ret = -errno;
2365
2366         free(longest_match);
2367         return ret;
2368 }
2369
2370 int test_minimum_size(const char *file, u32 leafsize)
2371 {
2372         int fd;
2373         struct stat statbuf;
2374
2375         fd = open(file, O_RDONLY);
2376         if (fd < 0)
2377                 return -errno;
2378         if (stat(file, &statbuf) < 0) {
2379                 close(fd);
2380                 return -errno;
2381         }
2382         if (btrfs_device_size(fd, &statbuf) < btrfs_min_dev_size(leafsize)) {
2383                 close(fd);
2384                 return 1;
2385         }
2386         close(fd);
2387         return 0;
2388 }
2389
2390 /*
2391  * test if name is a correct subvolume name
2392  * this function return
2393  * 0-> name is not a correct subvolume name
2394  * 1-> name is a correct subvolume name
2395  */
2396 int test_issubvolname(const char *name)
2397 {
2398         return name[0] != '\0' && !strchr(name, '/') &&
2399                 strcmp(name, ".") && strcmp(name, "..");
2400 }
2401
2402 /*
2403  * test if path is a directory
2404  * this function return
2405  * 0-> path exists but it is not a directory
2406  * 1-> path exists and it is a directory
2407  * -1 -> path is unaccessible
2408  */
2409 int test_isdir(const char *path)
2410 {
2411         struct stat st;
2412         int ret;
2413
2414         ret = stat(path, &st);
2415         if(ret < 0 )
2416                 return -1;
2417
2418         return S_ISDIR(st.st_mode);
2419 }
2420
2421 void units_set_mode(unsigned *units, unsigned mode)
2422 {
2423         unsigned base = *units & UNITS_MODE_MASK;
2424
2425         *units = base | mode;
2426 }
2427
2428 void units_set_base(unsigned *units, unsigned base)
2429 {
2430         unsigned mode = *units & ~UNITS_MODE_MASK;
2431
2432         *units = base | mode;
2433 }
2434
2435 int find_next_key(struct btrfs_path *path, struct btrfs_key *key)
2436 {
2437         int level;
2438
2439         for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
2440                 if (!path->nodes[level])
2441                         break;
2442                 if (path->slots[level] + 1 >=
2443                     btrfs_header_nritems(path->nodes[level]))
2444                         continue;
2445                 if (level == 0)
2446                         btrfs_item_key_to_cpu(path->nodes[level], key,
2447                                               path->slots[level] + 1);
2448                 else
2449                         btrfs_node_key_to_cpu(path->nodes[level], key,
2450                                               path->slots[level] + 1);
2451                 return 0;
2452         }
2453         return 1;
2454 }
2455
2456 char* btrfs_group_type_str(u64 flag)
2457 {
2458         u64 mask = BTRFS_BLOCK_GROUP_TYPE_MASK |
2459                 BTRFS_SPACE_INFO_GLOBAL_RSV;
2460
2461         switch (flag & mask) {
2462         case BTRFS_BLOCK_GROUP_DATA:
2463                 return "Data";
2464         case BTRFS_BLOCK_GROUP_SYSTEM:
2465                 return "System";
2466         case BTRFS_BLOCK_GROUP_METADATA:
2467                 return "Metadata";
2468         case BTRFS_BLOCK_GROUP_DATA|BTRFS_BLOCK_GROUP_METADATA:
2469                 return "Data+Metadata";
2470         case BTRFS_SPACE_INFO_GLOBAL_RSV:
2471                 return "GlobalReserve";
2472         default:
2473                 return "unknown";
2474         }
2475 }
2476
2477 char* btrfs_group_profile_str(u64 flag)
2478 {
2479         switch (flag & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
2480         case 0:
2481                 return "single";
2482         case BTRFS_BLOCK_GROUP_RAID0:
2483                 return "RAID0";
2484         case BTRFS_BLOCK_GROUP_RAID1:
2485                 return "RAID1";
2486         case BTRFS_BLOCK_GROUP_RAID5:
2487                 return "RAID5";
2488         case BTRFS_BLOCK_GROUP_RAID6:
2489                 return "RAID6";
2490         case BTRFS_BLOCK_GROUP_DUP:
2491                 return "DUP";
2492         case BTRFS_BLOCK_GROUP_RAID10:
2493                 return "RAID10";
2494         default:
2495                 return "unknown";
2496         }
2497 }
2498
2499 u64 disk_size(char *path)
2500 {
2501         struct statfs sfs;
2502
2503         if (statfs(path, &sfs) < 0)
2504                 return 0;
2505         else
2506                 return sfs.f_bsize * sfs.f_blocks;
2507 }