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