btrfs-progs: cleanup whitespace in is_same_blk_file
[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  * This function checks if the given input parameter is
859  * an uuid or a path
860  * return -1: some error in the given input
861  * return 0: unknow input
862  * return 1: given input is uuid
863  * return 2: given input is path
864  */
865 int check_arg_type(const char *input)
866 {
867         uuid_t uuid;
868         char path[PATH_MAX];
869
870         if (!input)
871                 return -EINVAL;
872
873         if (realpath(input, path)) {
874                 if (is_block_device(path) == 1)
875                         return BTRFS_ARG_BLKDEV;
876
877                 if (is_mount_point(path) == 1)
878                         return BTRFS_ARG_MNTPOINT;
879
880                 return BTRFS_ARG_UNKNOWN;
881         }
882
883         if (strlen(input) == (BTRFS_UUID_UNPARSED_SIZE - 1) &&
884                 !uuid_parse(input, uuid))
885                 return BTRFS_ARG_UUID;
886
887         return BTRFS_ARG_UNKNOWN;
888 }
889
890 /*
891  * Find the mount point for a mounted device.
892  * On success, returns 0 with mountpoint in *mp.
893  * On failure, returns -errno (not mounted yields -EINVAL)
894  * Is noisy on failures, expects to be given a mounted device.
895  */
896 int get_btrfs_mount(const char *dev, char *mp, size_t mp_size)
897 {
898         int ret;
899         int fd = -1;
900
901         ret = is_block_device(dev);
902         if (ret <= 0) {
903                 if (!ret) {
904                         fprintf(stderr, "%s is not a block device\n", dev);
905                         ret = -EINVAL;
906                 } else {
907                         fprintf(stderr, "Could not check %s: %s\n",
908                                 dev, strerror(-ret));
909                 }
910                 goto out;
911         }
912
913         fd = open(dev, O_RDONLY);
914         if (fd < 0) {
915                 ret = -errno;
916                 fprintf(stderr, "Could not open %s: %s\n", dev, strerror(errno));
917                 goto out;
918         }
919
920         ret = check_mounted_where(fd, dev, mp, mp_size, NULL);
921         if (!ret) {
922                 ret = -EINVAL;
923         } else { /* mounted, all good */
924                 ret = 0;
925         }
926 out:
927         if (fd != -1)
928                 close(fd);
929         return ret;
930 }
931
932 /*
933  * Given a pathname, return a filehandle to:
934  *      the original pathname or,
935  *      if the pathname is a mounted btrfs device, to its mountpoint.
936  *
937  * On error, return -1, errno should be set.
938  */
939 int open_path_or_dev_mnt(const char *path, DIR **dirstream)
940 {
941         char mp[BTRFS_PATH_NAME_MAX + 1];
942         int fdmnt;
943
944         if (is_block_device(path)) {
945                 int ret;
946
947                 ret = get_btrfs_mount(path, mp, sizeof(mp));
948                 if (ret < 0) {
949                         /* not a mounted btrfs dev */
950                         errno = EINVAL;
951                         return -1;
952                 }
953                 fdmnt = open_file_or_dir(mp, dirstream);
954         } else {
955                 fdmnt = open_file_or_dir(path, dirstream);
956         }
957
958         return fdmnt;
959 }
960
961 /* checks if a device is a loop device */
962 static int is_loop_device (const char* device) {
963         struct stat statbuf;
964
965         if(stat(device, &statbuf) < 0)
966                 return -errno;
967
968         return (S_ISBLK(statbuf.st_mode) &&
969                 MAJOR(statbuf.st_rdev) == LOOP_MAJOR);
970 }
971
972
973 /* Takes a loop device path (e.g. /dev/loop0) and returns
974  * the associated file (e.g. /images/my_btrfs.img) */
975 static int resolve_loop_device(const char* loop_dev, char* loop_file,
976                 int max_len)
977 {
978         int ret;
979         FILE *f;
980         char fmt[20];
981         char p[PATH_MAX];
982         char real_loop_dev[PATH_MAX];
983
984         if (!realpath(loop_dev, real_loop_dev))
985                 return -errno;
986         snprintf(p, PATH_MAX, "/sys/block/%s/loop/backing_file", strrchr(real_loop_dev, '/'));
987         if (!(f = fopen(p, "r")))
988                 return -errno;
989
990         snprintf(fmt, 20, "%%%i[^\n]", max_len-1);
991         ret = fscanf(f, fmt, loop_file);
992         fclose(f);
993         if (ret == EOF)
994                 return -errno;
995
996         return 0;
997 }
998
999 /*
1000  * Checks whether a and b are identical or device
1001  * files associated with the same block device
1002  */
1003 static int is_same_blk_file(const char* a, const char* b)
1004 {
1005         struct stat st_buf_a, st_buf_b;
1006         char real_a[PATH_MAX];
1007         char real_b[PATH_MAX];
1008
1009         if (!realpath(a, real_a))
1010                 strncpy_null(real_a, a);
1011
1012         if (!realpath(b, real_b))
1013                 strncpy_null(real_b, b);
1014
1015         /* Identical path? */
1016         if (strcmp(real_a, real_b) == 0)
1017                 return 1;
1018
1019         if (stat(a, &st_buf_a) < 0 || stat(b, &st_buf_b) < 0) {
1020                 if (errno == ENOENT)
1021                         return 0;
1022                 return -errno;
1023         }
1024
1025         /* Same blockdevice? */
1026         if (S_ISBLK(st_buf_a.st_mode) && S_ISBLK(st_buf_b.st_mode) &&
1027             st_buf_a.st_rdev == st_buf_b.st_rdev) {
1028                 return 1;
1029         }
1030
1031         /* Hardlink? */
1032         if (st_buf_a.st_dev == st_buf_b.st_dev &&
1033             st_buf_a.st_ino == st_buf_b.st_ino) {
1034                 return 1;
1035         }
1036
1037         return 0;
1038 }
1039
1040 /* checks if a and b are identical or device
1041  * files associated with the same block device or
1042  * if one file is a loop device that uses the other
1043  * file.
1044  */
1045 static int is_same_loop_file(const char* a, const char* b)
1046 {
1047         char res_a[PATH_MAX];
1048         char res_b[PATH_MAX];
1049         const char* final_a = NULL;
1050         const char* final_b = NULL;
1051         int ret;
1052
1053         /* Resolve a if it is a loop device */
1054         if((ret = is_loop_device(a)) < 0) {
1055                 if (ret == -ENOENT)
1056                         return 0;
1057                 return ret;
1058         } else if (ret) {
1059                 ret = resolve_loop_device(a, res_a, sizeof(res_a));
1060                 if (ret < 0) {
1061                         if (errno != EPERM)
1062                                 return ret;
1063                 } else {
1064                         final_a = res_a;
1065                 }
1066         } else {
1067                 final_a = a;
1068         }
1069
1070         /* Resolve b if it is a loop device */
1071         if ((ret = is_loop_device(b)) < 0) {
1072                 if (ret == -ENOENT)
1073                         return 0;
1074                 return ret;
1075         } else if (ret) {
1076                 ret = resolve_loop_device(b, res_b, sizeof(res_b));
1077                 if (ret < 0) {
1078                         if (errno != EPERM)
1079                                 return ret;
1080                 } else {
1081                         final_b = res_b;
1082                 }
1083         } else {
1084                 final_b = b;
1085         }
1086
1087         return is_same_blk_file(final_a, final_b);
1088 }
1089
1090 /* Checks if a file exists and is a block or regular file*/
1091 static int is_existing_blk_or_reg_file(const char* filename)
1092 {
1093         struct stat st_buf;
1094
1095         if(stat(filename, &st_buf) < 0) {
1096                 if(errno == ENOENT)
1097                         return 0;
1098                 else
1099                         return -errno;
1100         }
1101
1102         return (S_ISBLK(st_buf.st_mode) || S_ISREG(st_buf.st_mode));
1103 }
1104
1105 /* Checks if a file is used (directly or indirectly via a loop device)
1106  * by a device in fs_devices
1107  */
1108 static int blk_file_in_dev_list(struct btrfs_fs_devices* fs_devices,
1109                 const char* file)
1110 {
1111         int ret;
1112         struct list_head *head;
1113         struct list_head *cur;
1114         struct btrfs_device *device;
1115
1116         head = &fs_devices->devices;
1117         list_for_each(cur, head) {
1118                 device = list_entry(cur, struct btrfs_device, dev_list);
1119
1120                 if((ret = is_same_loop_file(device->name, file)))
1121                         return ret;
1122         }
1123
1124         return 0;
1125 }
1126
1127 /*
1128  * Resolve a pathname to a device mapper node to /dev/mapper/<name>
1129  * Returns NULL on invalid input or malloc failure; Other failures
1130  * will be handled by the caller using the input pathame.
1131  */
1132 char *canonicalize_dm_name(const char *ptname)
1133 {
1134         FILE    *f;
1135         size_t  sz;
1136         char    path[PATH_MAX], name[PATH_MAX], *res = NULL;
1137
1138         if (!ptname || !*ptname)
1139                 return NULL;
1140
1141         snprintf(path, sizeof(path), "/sys/block/%s/dm/name", ptname);
1142         if (!(f = fopen(path, "r")))
1143                 return NULL;
1144
1145         /* read <name>\n from sysfs */
1146         if (fgets(name, sizeof(name), f) && (sz = strlen(name)) > 1) {
1147                 name[sz - 1] = '\0';
1148                 snprintf(path, sizeof(path), "/dev/mapper/%s", name);
1149
1150                 if (access(path, F_OK) == 0)
1151                         res = strdup(path);
1152         }
1153         fclose(f);
1154         return res;
1155 }
1156
1157 /*
1158  * Resolve a pathname to a canonical device node, e.g. /dev/sda1 or
1159  * to a device mapper pathname.
1160  * Returns NULL on invalid input or malloc failure; Other failures
1161  * will be handled by the caller using the input pathame.
1162  */
1163 char *canonicalize_path(const char *path)
1164 {
1165         char *canonical, *p;
1166
1167         if (!path || !*path)
1168                 return NULL;
1169
1170         canonical = realpath(path, NULL);
1171         if (!canonical)
1172                 return strdup(path);
1173         p = strrchr(canonical, '/');
1174         if (p && strncmp(p, "/dm-", 4) == 0 && isdigit(*(p + 4))) {
1175                 char *dm = canonicalize_dm_name(p + 1);
1176
1177                 if (dm) {
1178                         free(canonical);
1179                         return dm;
1180                 }
1181         }
1182         return canonical;
1183 }
1184
1185 /*
1186  * returns 1 if the device was mounted, < 0 on error or 0 if everything
1187  * is safe to continue.
1188  */
1189 int check_mounted(const char* file)
1190 {
1191         int fd;
1192         int ret;
1193
1194         fd = open(file, O_RDONLY);
1195         if (fd < 0) {
1196                 fprintf (stderr, "check_mounted(): Could not open %s\n", file);
1197                 return -errno;
1198         }
1199
1200         ret =  check_mounted_where(fd, file, NULL, 0, NULL);
1201         close(fd);
1202
1203         return ret;
1204 }
1205
1206 int check_mounted_where(int fd, const char *file, char *where, int size,
1207                         struct btrfs_fs_devices **fs_dev_ret)
1208 {
1209         int ret;
1210         u64 total_devs = 1;
1211         int is_btrfs;
1212         struct btrfs_fs_devices *fs_devices_mnt = NULL;
1213         FILE *f;
1214         struct mntent *mnt;
1215
1216         /* scan the initial device */
1217         ret = btrfs_scan_one_device(fd, file, &fs_devices_mnt,
1218                                     &total_devs, BTRFS_SUPER_INFO_OFFSET, 0);
1219         is_btrfs = (ret >= 0);
1220
1221         /* scan other devices */
1222         if (is_btrfs && total_devs > 1) {
1223                 ret = btrfs_scan_lblkid();
1224                 if (ret)
1225                         return ret;
1226         }
1227
1228         /* iterate over the list of currently mountes filesystems */
1229         if ((f = setmntent ("/proc/self/mounts", "r")) == NULL)
1230                 return -errno;
1231
1232         while ((mnt = getmntent (f)) != NULL) {
1233                 if(is_btrfs) {
1234                         if(strcmp(mnt->mnt_type, "btrfs") != 0)
1235                                 continue;
1236
1237                         ret = blk_file_in_dev_list(fs_devices_mnt, mnt->mnt_fsname);
1238                 } else {
1239                         /* ignore entries in the mount table that are not
1240                            associated with a file*/
1241                         if((ret = is_existing_blk_or_reg_file(mnt->mnt_fsname)) < 0)
1242                                 goto out_mntloop_err;
1243                         else if(!ret)
1244                                 continue;
1245
1246                         ret = is_same_loop_file(file, mnt->mnt_fsname);
1247                 }
1248
1249                 if(ret < 0)
1250                         goto out_mntloop_err;
1251                 else if(ret)
1252                         break;
1253         }
1254
1255         /* Did we find an entry in mnt table? */
1256         if (mnt && size && where) {
1257                 strncpy(where, mnt->mnt_dir, size);
1258                 where[size-1] = 0;
1259         }
1260         if (fs_dev_ret)
1261                 *fs_dev_ret = fs_devices_mnt;
1262
1263         ret = (mnt != NULL);
1264
1265 out_mntloop_err:
1266         endmntent (f);
1267
1268         return ret;
1269 }
1270
1271 struct pending_dir {
1272         struct list_head list;
1273         char name[PATH_MAX];
1274 };
1275
1276 int btrfs_register_one_device(const char *fname)
1277 {
1278         struct btrfs_ioctl_vol_args args;
1279         int fd;
1280         int ret;
1281         int e;
1282
1283         fd = open("/dev/btrfs-control", O_RDWR);
1284         if (fd < 0) {
1285                 fprintf(stderr, "failed to open /dev/btrfs-control "
1286                         "skipping device registration: %s\n",
1287                         strerror(errno));
1288                 return -errno;
1289         }
1290         strncpy(args.name, fname, BTRFS_PATH_NAME_MAX);
1291         args.name[BTRFS_PATH_NAME_MAX-1] = 0;
1292         ret = ioctl(fd, BTRFS_IOC_SCAN_DEV, &args);
1293         e = errno;
1294         if (ret < 0) {
1295                 fprintf(stderr, "ERROR: device scan failed '%s' - %s\n",
1296                         fname, strerror(e));
1297                 ret = -e;
1298         }
1299         close(fd);
1300         return ret;
1301 }
1302
1303 /*
1304  * Register all devices in the fs_uuid list created in the user
1305  * space. Ensure btrfs_scan_lblkid() is called before this func.
1306  */
1307 int btrfs_register_all_devices(void)
1308 {
1309         int err;
1310         struct btrfs_fs_devices *fs_devices;
1311         struct btrfs_device *device;
1312         struct list_head *all_uuids;
1313
1314         all_uuids = btrfs_scanned_uuids();
1315
1316         list_for_each_entry(fs_devices, all_uuids, list) {
1317                 list_for_each_entry(device, &fs_devices->devices, dev_list) {
1318                         if (strlen(device->name) != 0) {
1319                                 err = btrfs_register_one_device(device->name);
1320                                 if (err < 0)
1321                                         return err;
1322                                 if (err > 0)
1323                                         return -err;
1324                         }
1325                 }
1326         }
1327         return 0;
1328 }
1329
1330 int btrfs_device_already_in_root(struct btrfs_root *root, int fd,
1331                                  int super_offset)
1332 {
1333         struct btrfs_super_block *disk_super;
1334         char *buf;
1335         int ret = 0;
1336
1337         buf = malloc(BTRFS_SUPER_INFO_SIZE);
1338         if (!buf) {
1339                 ret = -ENOMEM;
1340                 goto out;
1341         }
1342         ret = pread(fd, buf, BTRFS_SUPER_INFO_SIZE, super_offset);
1343         if (ret != BTRFS_SUPER_INFO_SIZE)
1344                 goto brelse;
1345
1346         ret = 0;
1347         disk_super = (struct btrfs_super_block *)buf;
1348         if (btrfs_super_magic(disk_super) != BTRFS_MAGIC)
1349                 goto brelse;
1350
1351         if (!memcmp(disk_super->fsid, root->fs_info->super_copy->fsid,
1352                     BTRFS_FSID_SIZE))
1353                 ret = 1;
1354 brelse:
1355         free(buf);
1356 out:
1357         return ret;
1358 }
1359
1360 static const char* unit_suffix_binary[] =
1361         { "B", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB"};
1362 static const char* unit_suffix_decimal[] =
1363         { "B", "kB", "MB", "GB", "TB", "PB", "EB"};
1364
1365 int pretty_size_snprintf(u64 size, char *str, size_t str_size, unsigned unit_mode)
1366 {
1367         int num_divs;
1368         float fraction;
1369         u64 base = 0;
1370         int mult = 0;
1371         const char** suffix = NULL;
1372         u64 last_size;
1373
1374         if (str_size == 0)
1375                 return 0;
1376
1377         if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_RAW) {
1378                 snprintf(str, str_size, "%llu", size);
1379                 return 0;
1380         }
1381
1382         if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_BINARY) {
1383                 base = 1024;
1384                 mult = 1024;
1385                 suffix = unit_suffix_binary;
1386         } else if ((unit_mode & ~UNITS_MODE_MASK) == UNITS_DECIMAL) {
1387                 base = 1000;
1388                 mult = 1000;
1389                 suffix = unit_suffix_decimal;
1390         }
1391
1392         /* Unknown mode */
1393         if (!base) {
1394                 fprintf(stderr, "INTERNAL ERROR: unknown unit base, mode %d\n",
1395                                 unit_mode);
1396                 assert(0);
1397                 return -1;
1398         }
1399
1400         num_divs = 0;
1401         last_size = size;
1402         switch (unit_mode & UNITS_MODE_MASK) {
1403         case UNITS_TBYTES: base *= mult; num_divs++;
1404         case UNITS_GBYTES: base *= mult; num_divs++;
1405         case UNITS_MBYTES: base *= mult; num_divs++;
1406         case UNITS_KBYTES: num_divs++;
1407                            break;
1408         case UNITS_BYTES:
1409                            base = 1;
1410                            num_divs = 0;
1411                            break;
1412         default:
1413                 while (size >= mult) {
1414                         last_size = size;
1415                         size /= mult;
1416                         num_divs++;
1417                 }
1418         }
1419
1420         if (num_divs >= ARRAY_SIZE(unit_suffix_binary)) {
1421                 str[0] = '\0';
1422                 printf("INTERNAL ERROR: unsupported unit suffix, index %d\n",
1423                                 num_divs);
1424                 assert(0);
1425                 return -1;
1426         }
1427         fraction = (float)last_size / base;
1428
1429         return snprintf(str, str_size, "%.2f%s", fraction, suffix[num_divs]);
1430 }
1431
1432 /*
1433  * __strncpy__null - strncpy with null termination
1434  * @dest:       the target array
1435  * @src:        the source string
1436  * @n:          maximum bytes to copy (size of *dest)
1437  *
1438  * Like strncpy, but ensures destination is null-terminated.
1439  *
1440  * Copies the string pointed to by src, including the terminating null
1441  * byte ('\0'), to the buffer pointed to by dest, up to a maximum
1442  * of n bytes.  Then ensure that dest is null-terminated.
1443  */
1444 char *__strncpy__null(char *dest, const char *src, size_t n)
1445 {
1446         strncpy(dest, src, n);
1447         if (n > 0)
1448                 dest[n - 1] = '\0';
1449         return dest;
1450 }
1451
1452 /*
1453  * Checks to make sure that the label matches our requirements.
1454  * Returns:
1455        0    if everything is safe and usable
1456       -1    if the label is too long
1457  */
1458 static int check_label(const char *input)
1459 {
1460        int len = strlen(input);
1461
1462        if (len > BTRFS_LABEL_SIZE - 1) {
1463                 fprintf(stderr, "ERROR: Label %s is too long (max %d)\n",
1464                         input, BTRFS_LABEL_SIZE - 1);
1465                return -1;
1466        }
1467
1468        return 0;
1469 }
1470
1471 static int set_label_unmounted(const char *dev, const char *label)
1472 {
1473         struct btrfs_trans_handle *trans;
1474         struct btrfs_root *root;
1475         int ret;
1476
1477         ret = check_mounted(dev);
1478         if (ret < 0) {
1479                fprintf(stderr, "FATAL: error checking %s mount status\n", dev);
1480                return -1;
1481         }
1482         if (ret > 0) {
1483                 fprintf(stderr, "ERROR: dev %s is mounted, use mount point\n",
1484                         dev);
1485                 return -1;
1486         }
1487
1488         /* Open the super_block at the default location
1489          * and as read-write.
1490          */
1491         root = open_ctree(dev, 0, OPEN_CTREE_WRITES);
1492         if (!root) /* errors are printed by open_ctree() */
1493                 return -1;
1494
1495         trans = btrfs_start_transaction(root, 1);
1496         snprintf(root->fs_info->super_copy->label, BTRFS_LABEL_SIZE, "%s",
1497                  label);
1498         btrfs_commit_transaction(trans, root);
1499
1500         /* Now we close it since we are done. */
1501         close_ctree(root);
1502         return 0;
1503 }
1504
1505 static int set_label_mounted(const char *mount_path, const char *label)
1506 {
1507         int fd;
1508
1509         fd = open(mount_path, O_RDONLY | O_NOATIME);
1510         if (fd < 0) {
1511                 fprintf(stderr, "ERROR: unable to access '%s'\n", mount_path);
1512                 return -1;
1513         }
1514
1515         if (ioctl(fd, BTRFS_IOC_SET_FSLABEL, label) < 0) {
1516                 fprintf(stderr, "ERROR: unable to set label %s\n",
1517                         strerror(errno));
1518                 close(fd);
1519                 return -1;
1520         }
1521
1522         close(fd);
1523         return 0;
1524 }
1525
1526 static int get_label_unmounted(const char *dev, char *label)
1527 {
1528         struct btrfs_root *root;
1529         int ret;
1530
1531         ret = check_mounted(dev);
1532         if (ret < 0) {
1533                fprintf(stderr, "FATAL: error checking %s mount status\n", dev);
1534                return -1;
1535         }
1536         if (ret > 0) {
1537                 fprintf(stderr, "ERROR: dev %s is mounted, use mount point\n",
1538                         dev);
1539                 return -1;
1540         }
1541
1542         /* Open the super_block at the default location
1543          * and as read-only.
1544          */
1545         root = open_ctree(dev, 0, 0);
1546         if(!root)
1547                 return -1;
1548
1549         memcpy(label, root->fs_info->super_copy->label, BTRFS_LABEL_SIZE);
1550
1551         /* Now we close it since we are done. */
1552         close_ctree(root);
1553         return 0;
1554 }
1555
1556 /*
1557  * If a partition is mounted, try to get the filesystem label via its
1558  * mounted path rather than device.  Return the corresponding error
1559  * the user specified the device path.
1560  */
1561 int get_label_mounted(const char *mount_path, char *labelp)
1562 {
1563         char label[BTRFS_LABEL_SIZE];
1564         int fd;
1565
1566         fd = open(mount_path, O_RDONLY | O_NOATIME);
1567         if (fd < 0) {
1568                 fprintf(stderr, "ERROR: unable to access '%s'\n", mount_path);
1569                 return -1;
1570         }
1571
1572         memset(label, '\0', sizeof(label));
1573         if (ioctl(fd, BTRFS_IOC_GET_FSLABEL, label) < 0) {
1574                 fprintf(stderr, "ERROR: unable get label %s\n", strerror(errno));
1575                 close(fd);
1576                 return -1;
1577         }
1578
1579         strncpy(labelp, label, sizeof(label));
1580         close(fd);
1581         return 0;
1582 }
1583
1584 int get_label(const char *btrfs_dev, char *label)
1585 {
1586         int ret;
1587
1588         ret = is_existing_blk_or_reg_file(btrfs_dev);
1589         if (!ret)
1590                 ret = get_label_mounted(btrfs_dev, label);
1591         else if (ret > 0)
1592                 ret = get_label_unmounted(btrfs_dev, label);
1593
1594         return ret;
1595 }
1596
1597 int set_label(const char *btrfs_dev, const char *label)
1598 {
1599         int ret;
1600
1601         if (check_label(label))
1602                 return -1;
1603
1604         ret = is_existing_blk_or_reg_file(btrfs_dev);
1605         if (!ret)
1606                 ret = set_label_mounted(btrfs_dev, label);
1607         else if (ret > 0)
1608                 ret = set_label_unmounted(btrfs_dev, label);
1609
1610         return ret;
1611 }
1612
1613 int btrfs_scan_block_devices(int run_ioctl)
1614 {
1615
1616         struct stat st;
1617         int ret;
1618         int fd;
1619         struct btrfs_fs_devices *tmp_devices;
1620         u64 num_devices;
1621         FILE *proc_partitions;
1622         int i;
1623         char buf[1024];
1624         char fullpath[110];
1625         int scans = 0;
1626         int special;
1627
1628 scan_again:
1629         proc_partitions = fopen("/proc/partitions","r");
1630         if (!proc_partitions) {
1631                 fprintf(stderr, "Unable to open '/proc/partitions' for scanning\n");
1632                 return -ENOENT;
1633         }
1634         /* skip the header */
1635         for (i = 0; i < 2; i++)
1636                 if (!fgets(buf, 1023, proc_partitions)) {
1637                         fprintf(stderr,
1638                                 "Unable to read '/proc/partitions' for scanning\n");
1639                         fclose(proc_partitions);
1640                         return -ENOENT;
1641                 }
1642
1643         strcpy(fullpath,"/dev/");
1644         while(fgets(buf, 1023, proc_partitions)) {
1645                 ret = sscanf(buf," %*d %*d %*d %99s", fullpath + 5);
1646                 if (ret != 1) {
1647                         fprintf(stderr,
1648                                 "failed to scan device name from /proc/partitions\n");
1649                         break;
1650                 }
1651
1652                 /*
1653                  * multipath and MD devices may register as a btrfs filesystem
1654                  * both through the original block device and through
1655                  * the special (/dev/mapper or /dev/mdX) entry.
1656                  * This scans the special entries last
1657                  */
1658                 special = strncmp(fullpath, "/dev/dm-", strlen("/dev/dm-")) == 0;
1659                 if (!special)
1660                         special = strncmp(fullpath, "/dev/md", strlen("/dev/md")) == 0;
1661
1662                 if (scans == 0 && special)
1663                         continue;
1664                 if (scans > 0 && !special)
1665                         continue;
1666
1667                 ret = lstat(fullpath, &st);
1668                 if (ret < 0) {
1669                         fprintf(stderr, "failed to stat %s\n", fullpath);
1670                         continue;
1671                 }
1672                 if (!S_ISBLK(st.st_mode)) {
1673                         continue;
1674                 }
1675
1676                 fd = open(fullpath, O_RDONLY);
1677                 if (fd < 0) {
1678                         if (errno != ENOMEDIUM)
1679                                 fprintf(stderr, "failed to open %s: %s\n",
1680                                         fullpath, strerror(errno));
1681                         continue;
1682                 }
1683                 ret = btrfs_scan_one_device(fd, fullpath, &tmp_devices,
1684                                             &num_devices,
1685                                             BTRFS_SUPER_INFO_OFFSET, 0);
1686                 if (ret == 0 && run_ioctl > 0) {
1687                         btrfs_register_one_device(fullpath);
1688                 }
1689                 close(fd);
1690         }
1691
1692         fclose(proc_partitions);
1693
1694         if (scans == 0) {
1695                 scans++;
1696                 goto scan_again;
1697         }
1698         return 0;
1699 }
1700
1701 /*
1702  * A not-so-good version fls64. No fascinating optimization since
1703  * no one except parse_size use it
1704  */
1705 static int fls64(u64 x)
1706 {
1707         int i;
1708
1709         for (i = 0; i <64; i++)
1710                 if (x << i & (1ULL << 63))
1711                         return 64 - i;
1712         return 64 - i;
1713 }
1714
1715 u64 parse_size(char *s)
1716 {
1717         char c;
1718         char *endptr;
1719         u64 mult = 1;
1720         u64 ret;
1721
1722         if (!s) {
1723                 fprintf(stderr, "ERROR: Size value is empty\n");
1724                 exit(1);
1725         }
1726         if (s[0] == '-') {
1727                 fprintf(stderr,
1728                         "ERROR: Size value '%s' is less equal than 0\n", s);
1729                 exit(1);
1730         }
1731         ret = strtoull(s, &endptr, 10);
1732         if (endptr == s) {
1733                 fprintf(stderr, "ERROR: Size value '%s' is invalid\n", s);
1734                 exit(1);
1735         }
1736         if (endptr[0] && endptr[1]) {
1737                 fprintf(stderr, "ERROR: Illegal suffix contains character '%c' in wrong position\n",
1738                         endptr[1]);
1739                 exit(1);
1740         }
1741         /*
1742          * strtoll returns LLONG_MAX when overflow, if this happens,
1743          * need to call strtoull to get the real size
1744          */
1745         if (errno == ERANGE && ret == ULLONG_MAX) {
1746                 fprintf(stderr,
1747                         "ERROR: Size value '%s' is too large for u64\n", s);
1748                 exit(1);
1749         }
1750         if (endptr[0]) {
1751                 c = tolower(endptr[0]);
1752                 switch (c) {
1753                 case 'e':
1754                         mult *= 1024;
1755                         /* fallthrough */
1756                 case 'p':
1757                         mult *= 1024;
1758                         /* fallthrough */
1759                 case 't':
1760                         mult *= 1024;
1761                         /* fallthrough */
1762                 case 'g':
1763                         mult *= 1024;
1764                         /* fallthrough */
1765                 case 'm':
1766                         mult *= 1024;
1767                         /* fallthrough */
1768                 case 'k':
1769                         mult *= 1024;
1770                         /* fallthrough */
1771                 case 'b':
1772                         break;
1773                 default:
1774                         fprintf(stderr, "ERROR: Unknown size descriptor '%c'\n",
1775                                 c);
1776                         exit(1);
1777                 }
1778         }
1779         /* Check whether ret * mult overflow */
1780         if (fls64(ret) + fls64(mult) - 1 > 64) {
1781                 fprintf(stderr,
1782                         "ERROR: Size value '%s' is too large for u64\n", s);
1783                 exit(1);
1784         }
1785         ret *= mult;
1786         return ret;
1787 }
1788
1789 int open_file_or_dir3(const char *fname, DIR **dirstream, int open_flags)
1790 {
1791         int ret;
1792         struct stat st;
1793         int fd;
1794
1795         ret = stat(fname, &st);
1796         if (ret < 0) {
1797                 return -1;
1798         }
1799         if (S_ISDIR(st.st_mode)) {
1800                 *dirstream = opendir(fname);
1801                 if (!*dirstream)
1802                         return -1;
1803                 fd = dirfd(*dirstream);
1804         } else if (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode)) {
1805                 fd = open(fname, open_flags);
1806         } else {
1807                 /*
1808                  * we set this on purpose, in case the caller output
1809                  * strerror(errno) as success
1810                  */
1811                 errno = EINVAL;
1812                 return -1;
1813         }
1814         if (fd < 0) {
1815                 fd = -1;
1816                 if (*dirstream)
1817                         closedir(*dirstream);
1818         }
1819         return fd;
1820 }
1821
1822 int open_file_or_dir(const char *fname, DIR **dirstream)
1823 {
1824         return open_file_or_dir3(fname, dirstream, O_RDWR);
1825 }
1826
1827 void close_file_or_dir(int fd, DIR *dirstream)
1828 {
1829         if (dirstream)
1830                 closedir(dirstream);
1831         else if (fd >= 0)
1832                 close(fd);
1833 }
1834
1835 int get_device_info(int fd, u64 devid,
1836                 struct btrfs_ioctl_dev_info_args *di_args)
1837 {
1838         int ret;
1839
1840         di_args->devid = devid;
1841         memset(&di_args->uuid, '\0', sizeof(di_args->uuid));
1842
1843         ret = ioctl(fd, BTRFS_IOC_DEV_INFO, di_args);
1844         return ret ? -errno : 0;
1845 }
1846
1847 static u64 find_max_device_id(struct btrfs_ioctl_search_args *search_args,
1848                               int nr_items)
1849 {
1850         struct btrfs_dev_item *dev_item;
1851         char *buf = search_args->buf;
1852
1853         buf += (nr_items - 1) * (sizeof(struct btrfs_ioctl_search_header)
1854                                        + sizeof(struct btrfs_dev_item));
1855         buf += sizeof(struct btrfs_ioctl_search_header);
1856
1857         dev_item = (struct btrfs_dev_item *)buf;
1858
1859         return btrfs_stack_device_id(dev_item);
1860 }
1861
1862 static int search_chunk_tree_for_fs_info(int fd,
1863                                 struct btrfs_ioctl_fs_info_args *fi_args)
1864 {
1865         int ret;
1866         int max_items;
1867         u64 start_devid = 1;
1868         struct btrfs_ioctl_search_args search_args;
1869         struct btrfs_ioctl_search_key *search_key = &search_args.key;
1870
1871         fi_args->num_devices = 0;
1872
1873         max_items = BTRFS_SEARCH_ARGS_BUFSIZE
1874                / (sizeof(struct btrfs_ioctl_search_header)
1875                                + sizeof(struct btrfs_dev_item));
1876
1877         search_key->tree_id = BTRFS_CHUNK_TREE_OBJECTID;
1878         search_key->min_objectid = BTRFS_DEV_ITEMS_OBJECTID;
1879         search_key->max_objectid = BTRFS_DEV_ITEMS_OBJECTID;
1880         search_key->min_type = BTRFS_DEV_ITEM_KEY;
1881         search_key->max_type = BTRFS_DEV_ITEM_KEY;
1882         search_key->min_transid = 0;
1883         search_key->max_transid = (u64)-1;
1884         search_key->nr_items = max_items;
1885         search_key->max_offset = (u64)-1;
1886
1887 again:
1888         search_key->min_offset = start_devid;
1889
1890         ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &search_args);
1891         if (ret < 0)
1892                 return -errno;
1893
1894         fi_args->num_devices += (u64)search_key->nr_items;
1895
1896         if (search_key->nr_items == max_items) {
1897                 start_devid = find_max_device_id(&search_args,
1898                                         search_key->nr_items) + 1;
1899                 goto again;
1900         }
1901
1902         /* get the lastest max_id to stay consistent with the num_devices */
1903         if (search_key->nr_items == 0)
1904                 /*
1905                  * last tree_search returns an empty buf, use the devid of
1906                  * the last dev_item of the previous tree_search
1907                  */
1908                 fi_args->max_id = start_devid - 1;
1909         else
1910                 fi_args->max_id = find_max_device_id(&search_args,
1911                                                 search_key->nr_items);
1912
1913         return 0;
1914 }
1915
1916 /*
1917  * For a given path, fill in the ioctl fs_ and info_ args.
1918  * If the path is a btrfs mountpoint, fill info for all devices.
1919  * If the path is a btrfs device, fill in only that device.
1920  *
1921  * The path provided must be either on a mounted btrfs fs,
1922  * or be a mounted btrfs device.
1923  *
1924  * Returns 0 on success, or a negative errno.
1925  */
1926 int get_fs_info(char *path, struct btrfs_ioctl_fs_info_args *fi_args,
1927                 struct btrfs_ioctl_dev_info_args **di_ret)
1928 {
1929         int fd = -1;
1930         int ret = 0;
1931         int ndevs = 0;
1932         int i = 0;
1933         struct btrfs_fs_devices *fs_devices_mnt = NULL;
1934         struct btrfs_ioctl_dev_info_args *di_args;
1935         char mp[BTRFS_PATH_NAME_MAX + 1];
1936         DIR *dirstream = NULL;
1937
1938         memset(fi_args, 0, sizeof(*fi_args));
1939
1940         if (is_block_device(path)) {
1941                 struct btrfs_super_block *disk_super;
1942                 char buf[BTRFS_SUPER_INFO_SIZE];
1943                 u64 devid;
1944
1945                 /* Ensure it's mounted, then set path to the mountpoint */
1946                 fd = open(path, O_RDONLY);
1947                 if (fd < 0) {
1948                         ret = -errno;
1949                         fprintf(stderr, "Couldn't open %s: %s\n",
1950                                 path, strerror(errno));
1951                         goto out;
1952                 }
1953                 ret = check_mounted_where(fd, path, mp, sizeof(mp),
1954                                           &fs_devices_mnt);
1955                 if (!ret) {
1956                         ret = -EINVAL;
1957                         goto out;
1958                 }
1959                 if (ret < 0)
1960                         goto out;
1961                 path = mp;
1962                 /* Only fill in this one device */
1963                 fi_args->num_devices = 1;
1964
1965                 disk_super = (struct btrfs_super_block *)buf;
1966                 ret = btrfs_read_dev_super(fd, disk_super,
1967                                            BTRFS_SUPER_INFO_OFFSET, 0);
1968                 if (ret < 0) {
1969                         ret = -EIO;
1970                         goto out;
1971                 }
1972                 devid = btrfs_stack_device_id(&disk_super->dev_item);
1973
1974                 fi_args->max_id = devid;
1975                 i = devid;
1976
1977                 memcpy(fi_args->fsid, fs_devices_mnt->fsid, BTRFS_FSID_SIZE);
1978                 close(fd);
1979         }
1980
1981         /* at this point path must not be for a block device */
1982         fd = open_file_or_dir(path, &dirstream);
1983         if (fd < 0) {
1984                 ret = -errno;
1985                 goto out;
1986         }
1987
1988         /* fill in fi_args if not just a single device */
1989         if (fi_args->num_devices != 1) {
1990                 ret = ioctl(fd, BTRFS_IOC_FS_INFO, fi_args);
1991                 if (ret < 0) {
1992                         ret = -errno;
1993                         goto out;
1994                 }
1995
1996                 /*
1997                  * The fs_args->num_devices does not include seed devices
1998                  */
1999                 ret = search_chunk_tree_for_fs_info(fd, fi_args);
2000                 if (ret)
2001                         goto out;
2002         }
2003
2004         if (!fi_args->num_devices)
2005                 goto out;
2006
2007         di_args = *di_ret = malloc((fi_args->num_devices) * sizeof(*di_args));
2008         if (!di_args) {
2009                 ret = -errno;
2010                 goto out;
2011         }
2012
2013         for (; i <= fi_args->max_id; ++i) {
2014                 ret = get_device_info(fd, i, &di_args[ndevs]);
2015                 if (ret == -ENODEV)
2016                         continue;
2017                 if (ret)
2018                         goto out;
2019                 ndevs++;
2020         }
2021
2022         /*
2023         * only when the only dev we wanted to find is not there then
2024         * let any error be returned
2025         */
2026         if (fi_args->num_devices != 1) {
2027                 BUG_ON(ndevs == 0);
2028                 ret = 0;
2029         }
2030
2031 out:
2032         close_file_or_dir(fd, dirstream);
2033         return ret;
2034 }
2035
2036 #define isoctal(c)      (((c) & ~7) == '0')
2037
2038 static inline void translate(char *f, char *t)
2039 {
2040         while (*f != '\0') {
2041                 if (*f == '\\' &&
2042                     isoctal(f[1]) && isoctal(f[2]) && isoctal(f[3])) {
2043                         *t++ = 64*(f[1] & 7) + 8*(f[2] & 7) + (f[3] & 7);
2044                         f += 4;
2045                 } else
2046                         *t++ = *f++;
2047         }
2048         *t = '\0';
2049         return;
2050 }
2051
2052 /*
2053  * Checks if the swap device.
2054  * Returns 1 if swap device, < 0 on error or 0 if not swap device.
2055  */
2056 static int is_swap_device(const char *file)
2057 {
2058         FILE    *f;
2059         struct stat     st_buf;
2060         dev_t   dev;
2061         ino_t   ino = 0;
2062         char    tmp[PATH_MAX];
2063         char    buf[PATH_MAX];
2064         char    *cp;
2065         int     ret = 0;
2066
2067         if (stat(file, &st_buf) < 0)
2068                 return -errno;
2069         if (S_ISBLK(st_buf.st_mode))
2070                 dev = st_buf.st_rdev;
2071         else if (S_ISREG(st_buf.st_mode)) {
2072                 dev = st_buf.st_dev;
2073                 ino = st_buf.st_ino;
2074         } else
2075                 return 0;
2076
2077         if ((f = fopen("/proc/swaps", "r")) == NULL)
2078                 return 0;
2079
2080         /* skip the first line */
2081         if (fgets(tmp, sizeof(tmp), f) == NULL)
2082                 goto out;
2083
2084         while (fgets(tmp, sizeof(tmp), f) != NULL) {
2085                 if ((cp = strchr(tmp, ' ')) != NULL)
2086                         *cp = '\0';
2087                 if ((cp = strchr(tmp, '\t')) != NULL)
2088                         *cp = '\0';
2089                 translate(tmp, buf);
2090                 if (stat(buf, &st_buf) != 0)
2091                         continue;
2092                 if (S_ISBLK(st_buf.st_mode)) {
2093                         if (dev == st_buf.st_rdev) {
2094                                 ret = 1;
2095                                 break;
2096                         }
2097                 } else if (S_ISREG(st_buf.st_mode)) {
2098                         if (dev == st_buf.st_dev && ino == st_buf.st_ino) {
2099                                 ret = 1;
2100                                 break;
2101                         }
2102                 }
2103         }
2104
2105 out:
2106         fclose(f);
2107
2108         return ret;
2109 }
2110
2111 /*
2112  * Check for existing filesystem or partition table on device.
2113  * Returns:
2114  *       1 for existing fs or partition
2115  *       0 for nothing found
2116  *      -1 for internal error
2117  */
2118 static int
2119 check_overwrite(
2120         char            *device)
2121 {
2122         const char      *type;
2123         blkid_probe     pr = NULL;
2124         int             ret;
2125         blkid_loff_t    size;
2126
2127         if (!device || !*device)
2128                 return 0;
2129
2130         ret = -1; /* will reset on success of all setup calls */
2131
2132         pr = blkid_new_probe_from_filename(device);
2133         if (!pr)
2134                 goto out;
2135
2136         size = blkid_probe_get_size(pr);
2137         if (size < 0)
2138                 goto out;
2139
2140         /* nothing to overwrite on a 0-length device */
2141         if (size == 0) {
2142                 ret = 0;
2143                 goto out;
2144         }
2145
2146         ret = blkid_probe_enable_partitions(pr, 1);
2147         if (ret < 0)
2148                 goto out;
2149
2150         ret = blkid_do_fullprobe(pr);
2151         if (ret < 0)
2152                 goto out;
2153
2154         /*
2155          * Blkid returns 1 for nothing found and 0 when it finds a signature,
2156          * but we want the exact opposite, so reverse the return value here.
2157          *
2158          * In addition print some useful diagnostics about what actually is
2159          * on the device.
2160          */
2161         if (ret) {
2162                 ret = 0;
2163                 goto out;
2164         }
2165
2166         if (!blkid_probe_lookup_value(pr, "TYPE", &type, NULL)) {
2167                 fprintf(stderr,
2168                         "%s appears to contain an existing "
2169                         "filesystem (%s).\n", device, type);
2170         } else if (!blkid_probe_lookup_value(pr, "PTTYPE", &type, NULL)) {
2171                 fprintf(stderr,
2172                         "%s appears to contain a partition "
2173                         "table (%s).\n", device, type);
2174         } else {
2175                 fprintf(stderr,
2176                         "%s appears to contain something weird "
2177                         "according to blkid\n", device);
2178         }
2179         ret = 1;
2180
2181 out:
2182         if (pr)
2183                 blkid_free_probe(pr);
2184         if (ret == -1)
2185                 fprintf(stderr,
2186                         "probe of %s failed, cannot detect "
2187                           "existing filesystem.\n", device);
2188         return ret;
2189 }
2190
2191 static int group_profile_devs_min(u64 flag)
2192 {
2193         switch (flag & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
2194         case 0: /* single */
2195         case BTRFS_BLOCK_GROUP_DUP:
2196                 return 1;
2197         case BTRFS_BLOCK_GROUP_RAID0:
2198         case BTRFS_BLOCK_GROUP_RAID1:
2199         case BTRFS_BLOCK_GROUP_RAID5:
2200                 return 2;
2201         case BTRFS_BLOCK_GROUP_RAID6:
2202                 return 3;
2203         case BTRFS_BLOCK_GROUP_RAID10:
2204                 return 4;
2205         default:
2206                 return -1;
2207         }
2208 }
2209
2210 int test_num_disk_vs_raid(u64 metadata_profile, u64 data_profile,
2211         u64 dev_cnt, int mixed, char *estr)
2212 {
2213         size_t sz = 100;
2214         u64 allowed = 0;
2215
2216         switch (dev_cnt) {
2217         default:
2218         case 4:
2219                 allowed |= BTRFS_BLOCK_GROUP_RAID10;
2220         case 3:
2221                 allowed |= BTRFS_BLOCK_GROUP_RAID6;
2222         case 2:
2223                 allowed |= BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1 |
2224                         BTRFS_BLOCK_GROUP_RAID5;
2225                 break;
2226         case 1:
2227                 allowed |= BTRFS_BLOCK_GROUP_DUP;
2228         }
2229
2230         if (dev_cnt > 1 &&
2231             ((metadata_profile | data_profile) & BTRFS_BLOCK_GROUP_DUP)) {
2232                 snprintf(estr, sz,
2233                         "DUP is not allowed when FS has multiple devices\n");
2234                 return 1;
2235         }
2236         if (metadata_profile & ~allowed) {
2237                 snprintf(estr, sz,
2238                         "unable to create FS with metadata profile %s "
2239                         "(have %llu devices but %d devices are required)\n",
2240                         btrfs_group_profile_str(metadata_profile), dev_cnt,
2241                         group_profile_devs_min(metadata_profile));
2242                 return 1;
2243         }
2244         if (data_profile & ~allowed) {
2245                 snprintf(estr, sz,
2246                         "unable to create FS with data profile %s "
2247                         "(have %llu devices but %d devices are required)\n",
2248                         btrfs_group_profile_str(data_profile), dev_cnt,
2249                         group_profile_devs_min(data_profile));
2250                 return 1;
2251         }
2252
2253         if (!mixed && (data_profile & BTRFS_BLOCK_GROUP_DUP)) {
2254                 snprintf(estr, sz,
2255                         "dup for data is allowed only in mixed mode");
2256                 return 1;
2257         }
2258         return 0;
2259 }
2260
2261 /* Check if disk is suitable for btrfs
2262  * returns:
2263  *  1: something is wrong, estr provides the error
2264  *  0: all is fine
2265  */
2266 int test_dev_for_mkfs(char *file, int force_overwrite, char *estr)
2267 {
2268         int ret, fd;
2269         size_t sz = 100;
2270         struct stat st;
2271
2272         ret = is_swap_device(file);
2273         if (ret < 0) {
2274                 snprintf(estr, sz, "error checking %s status: %s\n", file,
2275                         strerror(-ret));
2276                 return 1;
2277         }
2278         if (ret == 1) {
2279                 snprintf(estr, sz, "%s is a swap device\n", file);
2280                 return 1;
2281         }
2282         if (!force_overwrite) {
2283                 if (check_overwrite(file)) {
2284                         snprintf(estr, sz, "Use the -f option to force overwrite.\n");
2285                         return 1;
2286                 }
2287         }
2288         ret = check_mounted(file);
2289         if (ret < 0) {
2290                 snprintf(estr, sz, "error checking %s mount status\n",
2291                         file);
2292                 return 1;
2293         }
2294         if (ret == 1) {
2295                 snprintf(estr, sz, "%s is mounted\n", file);
2296                 return 1;
2297         }
2298         /* check if the device is busy */
2299         fd = open(file, O_RDWR|O_EXCL);
2300         if (fd < 0) {
2301                 snprintf(estr, sz, "unable to open %s: %s\n", file,
2302                         strerror(errno));
2303                 return 1;
2304         }
2305         if (fstat(fd, &st)) {
2306                 snprintf(estr, sz, "unable to stat %s: %s\n", file,
2307                         strerror(errno));
2308                 close(fd);
2309                 return 1;
2310         }
2311         if (!S_ISBLK(st.st_mode)) {
2312                 fprintf(stderr, "'%s' is not a block device\n", file);
2313                 close(fd);
2314                 return 1;
2315         }
2316         close(fd);
2317         return 0;
2318 }
2319
2320 int btrfs_scan_lblkid()
2321 {
2322         int fd = -1;
2323         int ret;
2324         u64 num_devices;
2325         struct btrfs_fs_devices *tmp_devices;
2326         blkid_dev_iterate iter = NULL;
2327         blkid_dev dev = NULL;
2328         blkid_cache cache = NULL;
2329         char path[PATH_MAX];
2330
2331         if (btrfs_scan_done)
2332                 return 0;
2333
2334         if (blkid_get_cache(&cache, 0) < 0) {
2335                 printf("ERROR: lblkid cache get failed\n");
2336                 return 1;
2337         }
2338         blkid_probe_all(cache);
2339         iter = blkid_dev_iterate_begin(cache);
2340         blkid_dev_set_search(iter, "TYPE", "btrfs");
2341         while (blkid_dev_next(iter, &dev) == 0) {
2342                 dev = blkid_verify(cache, dev);
2343                 if (!dev)
2344                         continue;
2345                 /* if we are here its definitely a btrfs disk*/
2346                 strncpy(path, blkid_dev_devname(dev), PATH_MAX);
2347
2348                 fd = open(path, O_RDONLY);
2349                 if (fd < 0) {
2350                         printf("ERROR: could not open %s\n", path);
2351                         continue;
2352                 }
2353                 ret = btrfs_scan_one_device(fd, path, &tmp_devices,
2354                                 &num_devices, BTRFS_SUPER_INFO_OFFSET, 0);
2355                 if (ret) {
2356                         printf("ERROR: could not scan %s\n", path);
2357                         close (fd);
2358                         continue;
2359                 }
2360
2361                 close(fd);
2362         }
2363         blkid_dev_iterate_end(iter);
2364         blkid_put_cache(cache);
2365
2366         btrfs_scan_done = 1;
2367
2368         return 0;
2369 }
2370
2371 int is_vol_small(char *file)
2372 {
2373         int fd = -1;
2374         int e;
2375         struct stat st;
2376         u64 size;
2377
2378         fd = open(file, O_RDONLY);
2379         if (fd < 0)
2380                 return -errno;
2381         if (fstat(fd, &st) < 0) {
2382                 e = -errno;
2383                 close(fd);
2384                 return e;
2385         }
2386         size = btrfs_device_size(fd, &st);
2387         if (size == 0) {
2388                 close(fd);
2389                 return -1;
2390         }
2391         if (size < BTRFS_MKFS_SMALL_VOLUME_SIZE) {
2392                 close(fd);
2393                 return 1;
2394         } else {
2395                 close(fd);
2396                 return 0;
2397         }
2398 }
2399
2400 /*
2401  * This reads a line from the stdin and only returns non-zero if the
2402  * first whitespace delimited token is a case insensitive match with yes
2403  * or y.
2404  */
2405 int ask_user(char *question)
2406 {
2407         char buf[30] = {0,};
2408         char *saveptr = NULL;
2409         char *answer;
2410
2411         printf("%s [y/N]: ", question);
2412
2413         return fgets(buf, sizeof(buf) - 1, stdin) &&
2414                (answer = strtok_r(buf, " \t\n\r", &saveptr)) &&
2415                (!strcasecmp(answer, "yes") || !strcasecmp(answer, "y"));
2416 }
2417
2418 /*
2419  * For a given:
2420  * - file or directory return the containing tree root id
2421  * - subvolume return its own tree id
2422  * - BTRFS_EMPTY_SUBVOL_DIR_OBJECTID (directory with ino == 2) the result is
2423  *   undefined and function returns -1
2424  */
2425 int lookup_ino_rootid(int fd, u64 *rootid)
2426 {
2427         struct btrfs_ioctl_ino_lookup_args args;
2428         int ret;
2429         int e;
2430
2431         memset(&args, 0, sizeof(args));
2432         args.treeid = 0;
2433         args.objectid = BTRFS_FIRST_FREE_OBJECTID;
2434
2435         ret = ioctl(fd, BTRFS_IOC_INO_LOOKUP, &args);
2436         e = errno;
2437         if (ret) {
2438                 fprintf(stderr, "ERROR: Failed to lookup root id - %s\n",
2439                         strerror(e));
2440                 return ret;
2441         }
2442
2443         *rootid = args.treeid;
2444
2445         return 0;
2446 }
2447
2448 /*
2449  * return 0 if a btrfs mount point is found
2450  * return 1 if a mount point is found but not btrfs
2451  * return <0 if something goes wrong
2452  */
2453 int find_mount_root(const char *path, char **mount_root)
2454 {
2455         FILE *mnttab;
2456         int fd;
2457         struct mntent *ent;
2458         int len;
2459         int ret;
2460         int not_btrfs = 1;
2461         int longest_matchlen = 0;
2462         char *longest_match = NULL;
2463
2464         fd = open(path, O_RDONLY | O_NOATIME);
2465         if (fd < 0)
2466                 return -errno;
2467         close(fd);
2468
2469         mnttab = setmntent("/proc/self/mounts", "r");
2470         if (!mnttab)
2471                 return -errno;
2472
2473         while ((ent = getmntent(mnttab))) {
2474                 len = strlen(ent->mnt_dir);
2475                 if (strncmp(ent->mnt_dir, path, len) == 0) {
2476                         /* match found and use the latest match */
2477                         if (longest_matchlen <= len) {
2478                                 free(longest_match);
2479                                 longest_matchlen = len;
2480                                 longest_match = strdup(ent->mnt_dir);
2481                                 not_btrfs = strcmp(ent->mnt_type, "btrfs");
2482                         }
2483                 }
2484         }
2485         endmntent(mnttab);
2486
2487         if (!longest_match)
2488                 return -ENOENT;
2489         if (not_btrfs) {
2490                 free(longest_match);
2491                 return 1;
2492         }
2493
2494         ret = 0;
2495         *mount_root = realpath(longest_match, NULL);
2496         if (!*mount_root)
2497                 ret = -errno;
2498
2499         free(longest_match);
2500         return ret;
2501 }
2502
2503 int test_minimum_size(const char *file, u32 leafsize)
2504 {
2505         int fd;
2506         struct stat statbuf;
2507
2508         fd = open(file, O_RDONLY);
2509         if (fd < 0)
2510                 return -errno;
2511         if (stat(file, &statbuf) < 0) {
2512                 close(fd);
2513                 return -errno;
2514         }
2515         if (btrfs_device_size(fd, &statbuf) < btrfs_min_dev_size(leafsize)) {
2516                 close(fd);
2517                 return 1;
2518         }
2519         close(fd);
2520         return 0;
2521 }
2522
2523 /*
2524  * test if name is a correct subvolume name
2525  * this function return
2526  * 0-> name is not a correct subvolume name
2527  * 1-> name is a correct subvolume name
2528  */
2529 int test_issubvolname(const char *name)
2530 {
2531         return name[0] != '\0' && !strchr(name, '/') &&
2532                 strcmp(name, ".") && strcmp(name, "..");
2533 }
2534
2535 /*
2536  * test if path is a directory
2537  * this function return
2538  * 0-> path exists but it is not a directory
2539  * 1-> path exists and it is a directory
2540  * -1 -> path is unaccessible
2541  */
2542 int test_isdir(const char *path)
2543 {
2544         struct stat st;
2545         int ret;
2546
2547         ret = stat(path, &st);
2548         if(ret < 0 )
2549                 return -1;
2550
2551         return S_ISDIR(st.st_mode);
2552 }
2553
2554 void units_set_mode(unsigned *units, unsigned mode)
2555 {
2556         unsigned base = *units & UNITS_MODE_MASK;
2557
2558         *units = base | mode;
2559 }
2560
2561 void units_set_base(unsigned *units, unsigned base)
2562 {
2563         unsigned mode = *units & ~UNITS_MODE_MASK;
2564
2565         *units = base | mode;
2566 }
2567
2568 int find_next_key(struct btrfs_path *path, struct btrfs_key *key)
2569 {
2570         int level;
2571
2572         for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
2573                 if (!path->nodes[level])
2574                         break;
2575                 if (path->slots[level] + 1 >=
2576                     btrfs_header_nritems(path->nodes[level]))
2577                         continue;
2578                 if (level == 0)
2579                         btrfs_item_key_to_cpu(path->nodes[level], key,
2580                                               path->slots[level] + 1);
2581                 else
2582                         btrfs_node_key_to_cpu(path->nodes[level], key,
2583                                               path->slots[level] + 1);
2584                 return 0;
2585         }
2586         return 1;
2587 }
2588
2589 char* btrfs_group_type_str(u64 flag)
2590 {
2591         u64 mask = BTRFS_BLOCK_GROUP_TYPE_MASK |
2592                 BTRFS_SPACE_INFO_GLOBAL_RSV;
2593
2594         switch (flag & mask) {
2595         case BTRFS_BLOCK_GROUP_DATA:
2596                 return "Data";
2597         case BTRFS_BLOCK_GROUP_SYSTEM:
2598                 return "System";
2599         case BTRFS_BLOCK_GROUP_METADATA:
2600                 return "Metadata";
2601         case BTRFS_BLOCK_GROUP_DATA|BTRFS_BLOCK_GROUP_METADATA:
2602                 return "Data+Metadata";
2603         case BTRFS_SPACE_INFO_GLOBAL_RSV:
2604                 return "GlobalReserve";
2605         default:
2606                 return "unknown";
2607         }
2608 }
2609
2610 char* btrfs_group_profile_str(u64 flag)
2611 {
2612         switch (flag & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
2613         case 0:
2614                 return "single";
2615         case BTRFS_BLOCK_GROUP_RAID0:
2616                 return "RAID0";
2617         case BTRFS_BLOCK_GROUP_RAID1:
2618                 return "RAID1";
2619         case BTRFS_BLOCK_GROUP_RAID5:
2620                 return "RAID5";
2621         case BTRFS_BLOCK_GROUP_RAID6:
2622                 return "RAID6";
2623         case BTRFS_BLOCK_GROUP_DUP:
2624                 return "DUP";
2625         case BTRFS_BLOCK_GROUP_RAID10:
2626                 return "RAID10";
2627         default:
2628                 return "unknown";
2629         }
2630 }
2631
2632 u64 disk_size(char *path)
2633 {
2634         struct statfs sfs;
2635
2636         if (statfs(path, &sfs) < 0)
2637                 return 0;
2638         else
2639                 return sfs.f_bsize * sfs.f_blocks;
2640 }
2641
2642 u64 get_partition_size(char *dev)
2643 {
2644         u64 result;
2645         int fd = open(dev, O_RDONLY);
2646
2647         if (fd < 0)
2648                 return 0;
2649         if (ioctl(fd, BLKGETSIZE64, &result) < 0) {
2650                 close(fd);
2651                 return 0;
2652         }
2653         close(fd);
2654
2655         return result;
2656 }
2657
2658 int btrfs_tree_search2_ioctl_supported(int fd)
2659 {
2660         struct btrfs_ioctl_search_args_v2 *args2;
2661         struct btrfs_ioctl_search_key *sk;
2662         int args2_size = 1024;
2663         char args2_buf[args2_size];
2664         int ret;
2665         static int v2_supported = -1;
2666
2667         if (v2_supported != -1)
2668                 return v2_supported;
2669
2670         args2 = (struct btrfs_ioctl_search_args_v2 *)args2_buf;
2671         sk = &(args2->key);
2672
2673         /*
2674          * Search for the extent tree item in the root tree.
2675          */
2676         sk->tree_id = BTRFS_ROOT_TREE_OBJECTID;
2677         sk->min_objectid = BTRFS_EXTENT_TREE_OBJECTID;
2678         sk->max_objectid = BTRFS_EXTENT_TREE_OBJECTID;
2679         sk->min_type = BTRFS_ROOT_ITEM_KEY;
2680         sk->max_type = BTRFS_ROOT_ITEM_KEY;
2681         sk->min_offset = 0;
2682         sk->max_offset = (u64)-1;
2683         sk->min_transid = 0;
2684         sk->max_transid = (u64)-1;
2685         sk->nr_items = 1;
2686         args2->buf_size = args2_size - sizeof(struct btrfs_ioctl_search_args_v2);
2687         ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH_V2, args2);
2688         if (ret == -EOPNOTSUPP)
2689                 v2_supported = 0;
2690         else if (ret == 0)
2691                 v2_supported = 1;
2692         else
2693                 return ret;
2694
2695         return v2_supported;
2696 }