btrfs-progs: Add support for tree block operations on fs_info without roots
[platform/upstream/btrfs-progs.git] / disk-io.c
1 /*
2  * Copyright (C) 2007 Oracle.  All rights reserved.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public
6  * License v2 as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public
14  * License along with this program; if not, write to the
15  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16  * Boston, MA 021110-1307, USA.
17  */
18
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <sys/types.h>
22 #include <sys/stat.h>
23 #include <fcntl.h>
24 #include <unistd.h>
25 #include <uuid/uuid.h>
26 #include "kerncompat.h"
27 #include "radix-tree.h"
28 #include "ctree.h"
29 #include "disk-io.h"
30 #include "volumes.h"
31 #include "transaction.h"
32 #include "crc32c.h"
33 #include "utils.h"
34 #include "print-tree.h"
35 #include "rbtree-utils.h"
36
37 /* specified errno for check_tree_block */
38 #define BTRFS_BAD_BYTENR                (-1)
39 #define BTRFS_BAD_FSID                  (-2)
40 #define BTRFS_BAD_LEVEL                 (-3)
41 #define BTRFS_BAD_NRITEMS               (-4)
42
43 /* Calculate max possible nritems for a leaf/node */
44 static u32 max_nritems(u8 level, u32 nodesize)
45 {
46
47         if (level == 0)
48                 return ((nodesize - sizeof(struct btrfs_header)) /
49                         sizeof(struct btrfs_item));
50         return ((nodesize - sizeof(struct btrfs_header)) /
51                 sizeof(struct btrfs_key_ptr));
52 }
53
54 static int check_tree_block(struct btrfs_fs_info *fs_info,
55                             struct extent_buffer *buf)
56 {
57
58         struct btrfs_fs_devices *fs_devices;
59         u32 leafsize = btrfs_super_leafsize(fs_info->super_copy);
60         int ret = BTRFS_BAD_FSID;
61
62         if (buf->start != btrfs_header_bytenr(buf))
63                 return BTRFS_BAD_BYTENR;
64         if (btrfs_header_level(buf) >= BTRFS_MAX_LEVEL)
65                 return BTRFS_BAD_LEVEL;
66         if (btrfs_header_nritems(buf) > max_nritems(btrfs_header_level(buf),
67                                                     leafsize))
68                 return BTRFS_BAD_NRITEMS;
69
70         fs_devices = fs_info->fs_devices;
71         while (fs_devices) {
72                 if (fs_info->ignore_fsid_mismatch ||
73                     !memcmp_extent_buffer(buf, fs_devices->fsid,
74                                           btrfs_header_fsid(),
75                                           BTRFS_FSID_SIZE)) {
76                         ret = 0;
77                         break;
78                 }
79                 fs_devices = fs_devices->seed;
80         }
81         return ret;
82 }
83
84 static void print_tree_block_error(struct btrfs_fs_info *fs_info,
85                                 struct extent_buffer *eb,
86                                 int err)
87 {
88         char fs_uuid[BTRFS_UUID_UNPARSED_SIZE] = {'\0'};
89         char found_uuid[BTRFS_UUID_UNPARSED_SIZE] = {'\0'};
90         u8 buf[BTRFS_UUID_SIZE];
91
92         switch (err) {
93         case BTRFS_BAD_FSID:
94                 read_extent_buffer(eb, buf, btrfs_header_fsid(),
95                                    BTRFS_UUID_SIZE);
96                 uuid_unparse(buf, found_uuid);
97                 uuid_unparse(fs_info->fsid, fs_uuid);
98                 fprintf(stderr, "fsid mismatch, want=%s, have=%s\n",
99                         fs_uuid, found_uuid);
100                 break;
101         case BTRFS_BAD_BYTENR:
102                 fprintf(stderr, "bytenr mismatch, want=%llu, have=%llu\n",
103                         eb->start, btrfs_header_bytenr(eb));
104                 break;
105         case BTRFS_BAD_LEVEL:
106                 fprintf(stderr, "bad level, %u > %u\n",
107                         btrfs_header_level(eb), BTRFS_MAX_LEVEL);
108                 break;
109         case BTRFS_BAD_NRITEMS:
110                 fprintf(stderr, "invalid nr_items: %u\n",
111                         btrfs_header_nritems(eb));
112                 break;
113         }
114 }
115
116 u32 btrfs_csum_data(struct btrfs_root *root, char *data, u32 seed, size_t len)
117 {
118         return crc32c(seed, data, len);
119 }
120
121 void btrfs_csum_final(u32 crc, char *result)
122 {
123         *(__le32 *)result = ~cpu_to_le32(crc);
124 }
125
126 static int __csum_tree_block_size(struct extent_buffer *buf, u16 csum_size,
127                                   int verify, int silent)
128 {
129         char result[BTRFS_CSUM_SIZE];
130         u32 len;
131         u32 crc = ~(u32)0;
132
133         len = buf->len - BTRFS_CSUM_SIZE;
134         crc = crc32c(crc, buf->data + BTRFS_CSUM_SIZE, len);
135         btrfs_csum_final(crc, result);
136
137         if (verify) {
138                 if (memcmp_extent_buffer(buf, result, 0, csum_size)) {
139                         if (!silent)
140                                 printk("checksum verify failed on %llu found %08X wanted %08X\n",
141                                        (unsigned long long)buf->start,
142                                        *((u32 *)result),
143                                        *((u32*)(char *)buf->data));
144                         return 1;
145                 }
146         } else {
147                 write_extent_buffer(buf, result, 0, csum_size);
148         }
149         return 0;
150 }
151
152 int csum_tree_block_size(struct extent_buffer *buf, u16 csum_size, int verify)
153 {
154         return __csum_tree_block_size(buf, csum_size, verify, 0);
155 }
156
157 int verify_tree_block_csum_silent(struct extent_buffer *buf, u16 csum_size)
158 {
159         return __csum_tree_block_size(buf, csum_size, 1, 1);
160 }
161
162 static int csum_tree_block_fs_info(struct btrfs_fs_info *fs_info,
163                                    struct extent_buffer *buf, int verify)
164 {
165         u16 csum_size =
166                 btrfs_super_csum_size(fs_info->super_copy);
167         if (verify && fs_info->suppress_check_block_errors)
168                 return verify_tree_block_csum_silent(buf, csum_size);
169         return csum_tree_block_size(buf, csum_size, verify);
170 }
171
172 int csum_tree_block(struct btrfs_root *root, struct extent_buffer *buf,
173                            int verify)
174 {
175         return csum_tree_block_fs_info(root->fs_info, buf, verify);
176 }
177
178 struct extent_buffer *btrfs_find_tree_block(struct btrfs_root *root,
179                                             u64 bytenr, u32 blocksize)
180 {
181         return find_extent_buffer(&root->fs_info->extent_cache,
182                                   bytenr, blocksize);
183 }
184
185 struct extent_buffer* btrfs_find_create_tree_block(
186                 struct btrfs_fs_info *fs_info, u64 bytenr, u32 blocksize)
187 {
188         return alloc_extent_buffer(&fs_info->extent_cache, bytenr, blocksize);
189 }
190
191 void readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize,
192                           u64 parent_transid)
193 {
194         struct extent_buffer *eb;
195         u64 length;
196         struct btrfs_multi_bio *multi = NULL;
197         struct btrfs_device *device;
198
199         eb = btrfs_find_tree_block(root, bytenr, blocksize);
200         if (!(eb && btrfs_buffer_uptodate(eb, parent_transid)) &&
201             !btrfs_map_block(&root->fs_info->mapping_tree, READ,
202                              bytenr, &length, &multi, 0, NULL)) {
203                 device = multi->stripes[0].dev;
204                 device->total_ios++;
205                 blocksize = min(blocksize, (u32)(64 * 1024));
206                 readahead(device->fd, multi->stripes[0].physical, blocksize);
207         }
208
209         free_extent_buffer(eb);
210         kfree(multi);
211 }
212
213 static int verify_parent_transid(struct extent_io_tree *io_tree,
214                                  struct extent_buffer *eb, u64 parent_transid,
215                                  int ignore)
216 {
217         int ret;
218
219         if (!parent_transid || btrfs_header_generation(eb) == parent_transid)
220                 return 0;
221
222         if (extent_buffer_uptodate(eb) &&
223             btrfs_header_generation(eb) == parent_transid) {
224                 ret = 0;
225                 goto out;
226         }
227         printk("parent transid verify failed on %llu wanted %llu found %llu\n",
228                (unsigned long long)eb->start,
229                (unsigned long long)parent_transid,
230                (unsigned long long)btrfs_header_generation(eb));
231         if (ignore) {
232                 eb->flags |= EXTENT_BAD_TRANSID;
233                 printk("Ignoring transid failure\n");
234                 return 0;
235         }
236
237         ret = 1;
238 out:
239         clear_extent_buffer_uptodate(io_tree, eb);
240         return ret;
241
242 }
243
244
245 int read_whole_eb(struct btrfs_fs_info *info, struct extent_buffer *eb, int mirror)
246 {
247         unsigned long offset = 0;
248         struct btrfs_multi_bio *multi = NULL;
249         struct btrfs_device *device;
250         int ret = 0;
251         u64 read_len;
252         unsigned long bytes_left = eb->len;
253
254         while (bytes_left) {
255                 read_len = bytes_left;
256                 device = NULL;
257
258                 if (!info->on_restoring &&
259                     eb->start != BTRFS_SUPER_INFO_OFFSET) {
260                         ret = btrfs_map_block(&info->mapping_tree, READ,
261                                               eb->start + offset, &read_len, &multi,
262                                               mirror, NULL);
263                         if (ret) {
264                                 printk("Couldn't map the block %Lu\n", eb->start + offset);
265                                 kfree(multi);
266                                 return -EIO;
267                         }
268                         device = multi->stripes[0].dev;
269
270                         if (device->fd <= 0) {
271                                 kfree(multi);
272                                 return -EIO;
273                         }
274
275                         eb->fd = device->fd;
276                         device->total_ios++;
277                         eb->dev_bytenr = multi->stripes[0].physical;
278                         kfree(multi);
279                         multi = NULL;
280                 } else {
281                         /* special case for restore metadump */
282                         list_for_each_entry(device, &info->fs_devices->devices, dev_list) {
283                                 if (device->devid == 1)
284                                         break;
285                         }
286
287                         eb->fd = device->fd;
288                         eb->dev_bytenr = eb->start;
289                         device->total_ios++;
290                 }
291
292                 if (read_len > bytes_left)
293                         read_len = bytes_left;
294
295                 ret = read_extent_from_disk(eb, offset, read_len);
296                 if (ret)
297                         return -EIO;
298                 offset += read_len;
299                 bytes_left -= read_len;
300         }
301         return 0;
302 }
303
304 struct extent_buffer* read_tree_block_fs_info(
305                 struct btrfs_fs_info *fs_info, u64 bytenr, u32 blocksize,
306                 u64 parent_transid)
307 {
308         int ret;
309         struct extent_buffer *eb;
310         u64 best_transid = 0;
311         int mirror_num = 0;
312         int good_mirror = 0;
313         int num_copies;
314         int ignore = 0;
315
316         eb = btrfs_find_create_tree_block(fs_info, bytenr, blocksize);
317         if (!eb)
318                 return ERR_PTR(-ENOMEM);
319
320         if (btrfs_buffer_uptodate(eb, parent_transid))
321                 return eb;
322
323         while (1) {
324                 ret = read_whole_eb(fs_info, eb, mirror_num);
325                 if (ret == 0 && csum_tree_block_fs_info(fs_info, eb, 1) == 0 &&
326                     check_tree_block(fs_info, eb) == 0 &&
327                     verify_parent_transid(eb->tree, eb, parent_transid, ignore)
328                     == 0) {
329                         if (eb->flags & EXTENT_BAD_TRANSID &&
330                             list_empty(&eb->recow)) {
331                                 list_add_tail(&eb->recow,
332                                               &fs_info->recow_ebs);
333                                 eb->refs++;
334                         }
335                         btrfs_set_buffer_uptodate(eb);
336                         return eb;
337                 }
338                 if (ignore) {
339                         if (check_tree_block(fs_info, eb)) {
340                                 if (!fs_info->suppress_check_block_errors)
341                                         print_tree_block_error(fs_info, eb,
342                                                 check_tree_block(fs_info, eb));
343                         } else {
344                                 if (!fs_info->suppress_check_block_errors)
345                                         fprintf(stderr, "Csum didn't match\n");
346                         }
347                         ret = -EIO;
348                         break;
349                 }
350                 num_copies = btrfs_num_copies(&fs_info->mapping_tree,
351                                               eb->start, eb->len);
352                 if (num_copies == 1) {
353                         ignore = 1;
354                         continue;
355                 }
356                 if (btrfs_header_generation(eb) > best_transid && mirror_num) {
357                         best_transid = btrfs_header_generation(eb);
358                         good_mirror = mirror_num;
359                 }
360                 mirror_num++;
361                 if (mirror_num > num_copies) {
362                         mirror_num = good_mirror;
363                         ignore = 1;
364                         continue;
365                 }
366         }
367         free_extent_buffer(eb);
368         return ERR_PTR(ret);
369 }
370
371 int read_extent_data(struct btrfs_root *root, char *data,
372                            u64 logical, u64 *len, int mirror)
373 {
374         u64 offset = 0;
375         struct btrfs_multi_bio *multi = NULL;
376         struct btrfs_fs_info *info = root->fs_info;
377         struct btrfs_device *device;
378         int ret = 0;
379         u64 max_len = *len;
380
381         ret = btrfs_map_block(&info->mapping_tree, READ, logical, len,
382                               &multi, mirror, NULL);
383         if (ret) {
384                 fprintf(stderr, "Couldn't map the block %llu\n",
385                                 logical + offset);
386                 goto err;
387         }
388         device = multi->stripes[0].dev;
389
390         if (device->fd <= 0)
391                 goto err;
392         if (*len > max_len)
393                 *len = max_len;
394
395         ret = pread64(device->fd, data, *len, multi->stripes[0].physical);
396         if (ret != *len)
397                 ret = -EIO;
398         else
399                 ret = 0;
400 err:
401         kfree(multi);
402         return ret;
403 }
404
405 int write_and_map_eb(struct btrfs_trans_handle *trans,
406                      struct btrfs_root *root,
407                      struct extent_buffer *eb)
408 {
409         int ret;
410         int dev_nr;
411         u64 length;
412         u64 *raid_map = NULL;
413         struct btrfs_multi_bio *multi = NULL;
414
415         dev_nr = 0;
416         length = eb->len;
417         ret = btrfs_map_block(&root->fs_info->mapping_tree, WRITE,
418                               eb->start, &length, &multi, 0, &raid_map);
419
420         if (raid_map) {
421                 ret = write_raid56_with_parity(root->fs_info, eb, multi,
422                                                length, raid_map);
423                 BUG_ON(ret);
424         } else while (dev_nr < multi->num_stripes) {
425                 BUG_ON(ret);
426                 eb->fd = multi->stripes[dev_nr].dev->fd;
427                 eb->dev_bytenr = multi->stripes[dev_nr].physical;
428                 multi->stripes[dev_nr].dev->total_ios++;
429                 dev_nr++;
430                 ret = write_extent_to_disk(eb);
431                 BUG_ON(ret);
432         }
433         kfree(raid_map);
434         kfree(multi);
435         return 0;
436 }
437
438 int write_tree_block(struct btrfs_trans_handle *trans,
439                      struct btrfs_root *root,
440                      struct extent_buffer *eb)
441 {
442         if (check_tree_block(root->fs_info, eb)) {
443                 print_tree_block_error(root->fs_info, eb,
444                                 check_tree_block(root->fs_info, eb));
445                 BUG();
446         }
447
448         if (trans && !btrfs_buffer_uptodate(eb, trans->transid))
449                 BUG();
450
451         btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
452         csum_tree_block(root, eb, 0);
453
454         return write_and_map_eb(trans, root, eb);
455 }
456
457 int __setup_root(u32 nodesize, u32 leafsize, u32 sectorsize,
458                         u32 stripesize, struct btrfs_root *root,
459                         struct btrfs_fs_info *fs_info, u64 objectid)
460 {
461         root->node = NULL;
462         root->commit_root = NULL;
463         root->sectorsize = sectorsize;
464         root->nodesize = nodesize;
465         root->leafsize = leafsize;
466         root->stripesize = stripesize;
467         root->ref_cows = 0;
468         root->track_dirty = 0;
469
470         root->fs_info = fs_info;
471         root->objectid = objectid;
472         root->last_trans = 0;
473         root->highest_inode = 0;
474         root->last_inode_alloc = 0;
475
476         INIT_LIST_HEAD(&root->dirty_list);
477         INIT_LIST_HEAD(&root->orphan_data_extents);
478         memset(&root->root_key, 0, sizeof(root->root_key));
479         memset(&root->root_item, 0, sizeof(root->root_item));
480         root->root_key.objectid = objectid;
481         return 0;
482 }
483
484 static int update_cowonly_root(struct btrfs_trans_handle *trans,
485                                struct btrfs_root *root)
486 {
487         int ret;
488         u64 old_root_bytenr;
489         struct btrfs_root *tree_root = root->fs_info->tree_root;
490
491         btrfs_write_dirty_block_groups(trans, root);
492         while(1) {
493                 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
494                 if (old_root_bytenr == root->node->start)
495                         break;
496                 btrfs_set_root_bytenr(&root->root_item,
497                                        root->node->start);
498                 btrfs_set_root_generation(&root->root_item,
499                                           trans->transid);
500                 root->root_item.level = btrfs_header_level(root->node);
501                 ret = btrfs_update_root(trans, tree_root,
502                                         &root->root_key,
503                                         &root->root_item);
504                 BUG_ON(ret);
505                 btrfs_write_dirty_block_groups(trans, root);
506         }
507         return 0;
508 }
509
510 static int commit_tree_roots(struct btrfs_trans_handle *trans,
511                              struct btrfs_fs_info *fs_info)
512 {
513         struct btrfs_root *root;
514         struct list_head *next;
515         struct extent_buffer *eb;
516         int ret;
517
518         if (fs_info->readonly)
519                 return 0;
520
521         eb = fs_info->tree_root->node;
522         extent_buffer_get(eb);
523         ret = btrfs_cow_block(trans, fs_info->tree_root, eb, NULL, 0, &eb);
524         free_extent_buffer(eb);
525         if (ret)
526                 return ret;
527
528         while(!list_empty(&fs_info->dirty_cowonly_roots)) {
529                 next = fs_info->dirty_cowonly_roots.next;
530                 list_del_init(next);
531                 root = list_entry(next, struct btrfs_root, dirty_list);
532                 update_cowonly_root(trans, root);
533                 free_extent_buffer(root->commit_root);
534                 root->commit_root = NULL;
535         }
536
537         return 0;
538 }
539
540 static int __commit_transaction(struct btrfs_trans_handle *trans,
541                                 struct btrfs_root *root)
542 {
543         u64 start;
544         u64 end;
545         struct extent_buffer *eb;
546         struct extent_io_tree *tree = &root->fs_info->extent_cache;
547         int ret;
548
549         while(1) {
550                 ret = find_first_extent_bit(tree, 0, &start, &end,
551                                             EXTENT_DIRTY);
552                 if (ret)
553                         break;
554                 while(start <= end) {
555                         eb = find_first_extent_buffer(tree, start);
556                         BUG_ON(!eb || eb->start != start);
557                         ret = write_tree_block(trans, root, eb);
558                         BUG_ON(ret);
559                         start += eb->len;
560                         clear_extent_buffer_dirty(eb);
561                         free_extent_buffer(eb);
562                 }
563         }
564         return 0;
565 }
566
567 int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
568                              struct btrfs_root *root)
569 {
570         u64 transid = trans->transid;
571         int ret = 0;
572         struct btrfs_fs_info *fs_info = root->fs_info;
573
574         if (root->commit_root == root->node)
575                 goto commit_tree;
576         if (root == root->fs_info->tree_root)
577                 goto commit_tree;
578         if (root == root->fs_info->chunk_root)
579                 goto commit_tree;
580
581         free_extent_buffer(root->commit_root);
582         root->commit_root = NULL;
583
584         btrfs_set_root_bytenr(&root->root_item, root->node->start);
585         btrfs_set_root_generation(&root->root_item, trans->transid);
586         root->root_item.level = btrfs_header_level(root->node);
587         ret = btrfs_update_root(trans, root->fs_info->tree_root,
588                                 &root->root_key, &root->root_item);
589         BUG_ON(ret);
590 commit_tree:
591         ret = commit_tree_roots(trans, fs_info);
592         BUG_ON(ret);
593         ret = __commit_transaction(trans, root);
594         BUG_ON(ret);
595         write_ctree_super(trans, root);
596         btrfs_finish_extent_commit(trans, fs_info->extent_root,
597                                    &fs_info->pinned_extents);
598         btrfs_free_transaction(root, trans);
599         free_extent_buffer(root->commit_root);
600         root->commit_root = NULL;
601         fs_info->running_transaction = NULL;
602         fs_info->last_trans_committed = transid;
603         return 0;
604 }
605
606 static int find_and_setup_root(struct btrfs_root *tree_root,
607                                struct btrfs_fs_info *fs_info,
608                                u64 objectid, struct btrfs_root *root)
609 {
610         int ret;
611         u32 blocksize;
612         u64 generation;
613
614         __setup_root(tree_root->nodesize, tree_root->leafsize,
615                      tree_root->sectorsize, tree_root->stripesize,
616                      root, fs_info, objectid);
617         ret = btrfs_find_last_root(tree_root, objectid,
618                                    &root->root_item, &root->root_key);
619         if (ret)
620                 return ret;
621
622         blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
623         generation = btrfs_root_generation(&root->root_item);
624         root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
625                                      blocksize, generation);
626         if (!extent_buffer_uptodate(root->node))
627                 return -EIO;
628
629         return 0;
630 }
631
632 static int find_and_setup_log_root(struct btrfs_root *tree_root,
633                                struct btrfs_fs_info *fs_info,
634                                struct btrfs_super_block *disk_super)
635 {
636         u32 blocksize;
637         u64 blocknr = btrfs_super_log_root(disk_super);
638         struct btrfs_root *log_root = malloc(sizeof(struct btrfs_root));
639
640         if (!log_root)
641                 return -ENOMEM;
642
643         if (blocknr == 0) {
644                 free(log_root);
645                 return 0;
646         }
647
648         blocksize = btrfs_level_size(tree_root,
649                              btrfs_super_log_root_level(disk_super));
650
651         __setup_root(tree_root->nodesize, tree_root->leafsize,
652                      tree_root->sectorsize, tree_root->stripesize,
653                      log_root, fs_info, BTRFS_TREE_LOG_OBJECTID);
654
655         log_root->node = read_tree_block(tree_root, blocknr,
656                                      blocksize,
657                                      btrfs_super_generation(disk_super) + 1);
658
659         fs_info->log_root_tree = log_root;
660
661         if (!extent_buffer_uptodate(log_root->node)) {
662                 free_extent_buffer(log_root->node);
663                 free(log_root);
664                 fs_info->log_root_tree = NULL;
665                 return -EIO;
666         }
667
668         return 0;
669 }
670
671 int btrfs_free_fs_root(struct btrfs_root *root)
672 {
673         if (root->node)
674                 free_extent_buffer(root->node);
675         if (root->commit_root)
676                 free_extent_buffer(root->commit_root);
677         kfree(root);
678         return 0;
679 }
680
681 static void __free_fs_root(struct rb_node *node)
682 {
683         struct btrfs_root *root;
684
685         root = container_of(node, struct btrfs_root, rb_node);
686         btrfs_free_fs_root(root);
687 }
688
689 FREE_RB_BASED_TREE(fs_roots, __free_fs_root);
690
691 struct btrfs_root *btrfs_read_fs_root_no_cache(struct btrfs_fs_info *fs_info,
692                                                struct btrfs_key *location)
693 {
694         struct btrfs_root *root;
695         struct btrfs_root *tree_root = fs_info->tree_root;
696         struct btrfs_path *path;
697         struct extent_buffer *l;
698         u64 generation;
699         u32 blocksize;
700         int ret = 0;
701
702         root = calloc(1, sizeof(*root));
703         if (!root)
704                 return ERR_PTR(-ENOMEM);
705         if (location->offset == (u64)-1) {
706                 ret = find_and_setup_root(tree_root, fs_info,
707                                           location->objectid, root);
708                 if (ret) {
709                         free(root);
710                         return ERR_PTR(ret);
711                 }
712                 goto insert;
713         }
714
715         __setup_root(tree_root->nodesize, tree_root->leafsize,
716                      tree_root->sectorsize, tree_root->stripesize,
717                      root, fs_info, location->objectid);
718
719         path = btrfs_alloc_path();
720         BUG_ON(!path);
721         ret = btrfs_search_slot(NULL, tree_root, location, path, 0, 0);
722         if (ret != 0) {
723                 if (ret > 0)
724                         ret = -ENOENT;
725                 goto out;
726         }
727         l = path->nodes[0];
728         read_extent_buffer(l, &root->root_item,
729                btrfs_item_ptr_offset(l, path->slots[0]),
730                sizeof(root->root_item));
731         memcpy(&root->root_key, location, sizeof(*location));
732         ret = 0;
733 out:
734         btrfs_free_path(path);
735         if (ret) {
736                 free(root);
737                 return ERR_PTR(ret);
738         }
739         generation = btrfs_root_generation(&root->root_item);
740         blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
741         root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
742                                      blocksize, generation);
743         if (!extent_buffer_uptodate(root->node)) {
744                 free(root);
745                 return ERR_PTR(-EIO);
746         }
747 insert:
748         root->ref_cows = 1;
749         return root;
750 }
751
752 static int btrfs_fs_roots_compare_objectids(struct rb_node *node,
753                                             void *data)
754 {
755         u64 objectid = *((u64 *)data);
756         struct btrfs_root *root;
757
758         root = rb_entry(node, struct btrfs_root, rb_node);
759         if (objectid > root->objectid)
760                 return 1;
761         else if (objectid < root->objectid)
762                 return -1;
763         else
764                 return 0;
765 }
766
767 static int btrfs_fs_roots_compare_roots(struct rb_node *node1,
768                                         struct rb_node *node2)
769 {
770         struct btrfs_root *root;
771
772         root = rb_entry(node2, struct btrfs_root, rb_node);
773         return btrfs_fs_roots_compare_objectids(node1, (void *)&root->objectid);
774 }
775
776 struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
777                                       struct btrfs_key *location)
778 {
779         struct btrfs_root *root;
780         struct rb_node *node;
781         int ret;
782         u64 objectid = location->objectid;
783
784         if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
785                 return fs_info->tree_root;
786         if (location->objectid == BTRFS_EXTENT_TREE_OBJECTID)
787                 return fs_info->extent_root;
788         if (location->objectid == BTRFS_CHUNK_TREE_OBJECTID)
789                 return fs_info->chunk_root;
790         if (location->objectid == BTRFS_DEV_TREE_OBJECTID)
791                 return fs_info->dev_root;
792         if (location->objectid == BTRFS_CSUM_TREE_OBJECTID)
793                 return fs_info->csum_root;
794         if (location->objectid == BTRFS_QUOTA_TREE_OBJECTID)
795                 return fs_info->quota_root;
796
797         BUG_ON(location->objectid == BTRFS_TREE_RELOC_OBJECTID ||
798                location->offset != (u64)-1);
799
800         node = rb_search(&fs_info->fs_root_tree, (void *)&objectid,
801                          btrfs_fs_roots_compare_objectids, NULL);
802         if (node)
803                 return container_of(node, struct btrfs_root, rb_node);
804
805         root = btrfs_read_fs_root_no_cache(fs_info, location);
806         if (IS_ERR(root))
807                 return root;
808
809         ret = rb_insert(&fs_info->fs_root_tree, &root->rb_node,
810                         btrfs_fs_roots_compare_roots);
811         BUG_ON(ret);
812         return root;
813 }
814
815 void btrfs_free_fs_info(struct btrfs_fs_info *fs_info)
816 {
817         free(fs_info->tree_root);
818         free(fs_info->extent_root);
819         free(fs_info->chunk_root);
820         free(fs_info->dev_root);
821         free(fs_info->csum_root);
822         free(fs_info->quota_root);
823         free(fs_info->free_space_root);
824         free(fs_info->super_copy);
825         free(fs_info->log_root_tree);
826         free(fs_info);
827 }
828
829 struct btrfs_fs_info *btrfs_new_fs_info(int writable, u64 sb_bytenr)
830 {
831         struct btrfs_fs_info *fs_info;
832
833         fs_info = calloc(1, sizeof(struct btrfs_fs_info));
834         if (!fs_info)
835                 return NULL;
836
837         fs_info->tree_root = calloc(1, sizeof(struct btrfs_root));
838         fs_info->extent_root = calloc(1, sizeof(struct btrfs_root));
839         fs_info->chunk_root = calloc(1, sizeof(struct btrfs_root));
840         fs_info->dev_root = calloc(1, sizeof(struct btrfs_root));
841         fs_info->csum_root = calloc(1, sizeof(struct btrfs_root));
842         fs_info->quota_root = calloc(1, sizeof(struct btrfs_root));
843         fs_info->free_space_root = calloc(1, sizeof(struct btrfs_root));
844         fs_info->super_copy = calloc(1, BTRFS_SUPER_INFO_SIZE);
845
846         if (!fs_info->tree_root || !fs_info->extent_root ||
847             !fs_info->chunk_root || !fs_info->dev_root ||
848             !fs_info->csum_root || !fs_info->quota_root ||
849             !fs_info->free_space_root || !fs_info->super_copy)
850                 goto free_all;
851
852         extent_io_tree_init(&fs_info->extent_cache);
853         extent_io_tree_init(&fs_info->free_space_cache);
854         extent_io_tree_init(&fs_info->block_group_cache);
855         extent_io_tree_init(&fs_info->pinned_extents);
856         extent_io_tree_init(&fs_info->pending_del);
857         extent_io_tree_init(&fs_info->extent_ins);
858         fs_info->excluded_extents = NULL;
859
860         fs_info->fs_root_tree = RB_ROOT;
861         cache_tree_init(&fs_info->mapping_tree.cache_tree);
862
863         mutex_init(&fs_info->fs_mutex);
864         INIT_LIST_HEAD(&fs_info->dirty_cowonly_roots);
865         INIT_LIST_HEAD(&fs_info->space_info);
866         INIT_LIST_HEAD(&fs_info->recow_ebs);
867
868         if (!writable)
869                 fs_info->readonly = 1;
870
871         fs_info->super_bytenr = sb_bytenr;
872         fs_info->data_alloc_profile = (u64)-1;
873         fs_info->metadata_alloc_profile = (u64)-1;
874         fs_info->system_alloc_profile = fs_info->metadata_alloc_profile;
875         return fs_info;
876 free_all:
877         btrfs_free_fs_info(fs_info);
878         return NULL;
879 }
880
881 int btrfs_check_fs_compatibility(struct btrfs_super_block *sb, int writable)
882 {
883         u64 features;
884
885         features = btrfs_super_incompat_flags(sb) &
886                    ~BTRFS_FEATURE_INCOMPAT_SUPP;
887         if (features) {
888                 printk("couldn't open because of unsupported "
889                        "option features (%Lx).\n",
890                        (unsigned long long)features);
891                 return -ENOTSUP;
892         }
893
894         features = btrfs_super_incompat_flags(sb);
895         if (!(features & BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF)) {
896                 features |= BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF;
897                 btrfs_set_super_incompat_flags(sb, features);
898         }
899
900         features = btrfs_super_compat_ro_flags(sb) &
901                 ~BTRFS_FEATURE_COMPAT_RO_SUPP;
902         if (writable && features) {
903                 printk("couldn't open RDWR because of unsupported "
904                        "option features (%Lx).\n",
905                        (unsigned long long)features);
906                 return -ENOTSUP;
907         }
908         return 0;
909 }
910
911 static int find_best_backup_root(struct btrfs_super_block *super)
912 {
913         struct btrfs_root_backup *backup;
914         u64 orig_gen = btrfs_super_generation(super);
915         u64 gen = 0;
916         int best_index = 0;
917         int i;
918
919         for (i = 0; i < BTRFS_NUM_BACKUP_ROOTS; i++) {
920                 backup = super->super_roots + i;
921                 if (btrfs_backup_tree_root_gen(backup) != orig_gen &&
922                     btrfs_backup_tree_root_gen(backup) > gen) {
923                         best_index = i;
924                         gen = btrfs_backup_tree_root_gen(backup);
925                 }
926         }
927         return best_index;
928 }
929
930 static int setup_root_or_create_block(struct btrfs_fs_info *fs_info,
931                                       enum btrfs_open_ctree_flags flags,
932                                       struct btrfs_root *info_root,
933                                       u64 objectid, char *str)
934 {
935         struct btrfs_super_block *sb = fs_info->super_copy;
936         struct btrfs_root *root = fs_info->tree_root;
937         u32 leafsize = btrfs_super_leafsize(sb);
938         int ret;
939
940         ret = find_and_setup_root(root, fs_info, objectid, info_root);
941         if (ret) {
942                 printk("Couldn't setup %s tree\n", str);
943                 if (!(flags & OPEN_CTREE_PARTIAL))
944                         return -EIO;
945                 /*
946                  * Need a blank node here just so we don't screw up in the
947                  * million of places that assume a root has a valid ->node
948                  */
949                 info_root->node =
950                         btrfs_find_create_tree_block(fs_info, 0, leafsize);
951                 if (!info_root->node)
952                         return -ENOMEM;
953                 clear_extent_buffer_uptodate(NULL, info_root->node);
954         }
955
956         return 0;
957 }
958
959 int btrfs_setup_all_roots(struct btrfs_fs_info *fs_info, u64 root_tree_bytenr,
960                           enum btrfs_open_ctree_flags flags)
961 {
962         struct btrfs_super_block *sb = fs_info->super_copy;
963         struct btrfs_root *root;
964         struct btrfs_key key;
965         u32 sectorsize;
966         u32 nodesize;
967         u32 leafsize;
968         u32 stripesize;
969         u64 generation;
970         u32 blocksize;
971         int ret;
972
973         nodesize = btrfs_super_nodesize(sb);
974         leafsize = btrfs_super_leafsize(sb);
975         sectorsize = btrfs_super_sectorsize(sb);
976         stripesize = btrfs_super_stripesize(sb);
977
978         root = fs_info->tree_root;
979         __setup_root(nodesize, leafsize, sectorsize, stripesize,
980                      root, fs_info, BTRFS_ROOT_TREE_OBJECTID);
981         blocksize = btrfs_level_size(root, btrfs_super_root_level(sb));
982         generation = btrfs_super_generation(sb);
983
984         if (!root_tree_bytenr && !(flags & OPEN_CTREE_BACKUP_ROOT)) {
985                 root_tree_bytenr = btrfs_super_root(sb);
986         } else if (flags & OPEN_CTREE_BACKUP_ROOT) {
987                 struct btrfs_root_backup *backup;
988                 int index = find_best_backup_root(sb);
989                 if (index >= BTRFS_NUM_BACKUP_ROOTS) {
990                         fprintf(stderr, "Invalid backup root number\n");
991                         return -EIO;
992                 }
993                 backup = fs_info->super_copy->super_roots + index;
994                 root_tree_bytenr = btrfs_backup_tree_root(backup);
995                 generation = btrfs_backup_tree_root_gen(backup);
996         }
997
998         root->node = read_tree_block(root, root_tree_bytenr, blocksize,
999                                      generation);
1000         if (!extent_buffer_uptodate(root->node)) {
1001                 fprintf(stderr, "Couldn't read tree root\n");
1002                 return -EIO;
1003         }
1004
1005         ret = setup_root_or_create_block(fs_info, flags, fs_info->extent_root,
1006                                          BTRFS_EXTENT_TREE_OBJECTID, "extent");
1007         if (ret)
1008                 return ret;
1009         fs_info->extent_root->track_dirty = 1;
1010
1011         ret = find_and_setup_root(root, fs_info, BTRFS_DEV_TREE_OBJECTID,
1012                                   fs_info->dev_root);
1013         if (ret) {
1014                 printk("Couldn't setup device tree\n");
1015                 return -EIO;
1016         }
1017         fs_info->dev_root->track_dirty = 1;
1018
1019         ret = setup_root_or_create_block(fs_info, flags, fs_info->csum_root,
1020                                          BTRFS_CSUM_TREE_OBJECTID, "csum");
1021         if (ret)
1022                 return ret;
1023         fs_info->csum_root->track_dirty = 1;
1024
1025         ret = find_and_setup_root(root, fs_info, BTRFS_QUOTA_TREE_OBJECTID,
1026                                   fs_info->quota_root);
1027         if (ret == 0)
1028                 fs_info->quota_enabled = 1;
1029
1030         if (btrfs_fs_compat_ro(fs_info, BTRFS_FEATURE_COMPAT_RO_FREE_SPACE_TREE)) {
1031                 ret = find_and_setup_root(root, fs_info, BTRFS_FREE_SPACE_TREE_OBJECTID,
1032                                           fs_info->free_space_root);
1033                 if (ret) {
1034                         printk("Couldn't read free space tree\n");
1035                         return -EIO;
1036                 }
1037                 fs_info->free_space_root->track_dirty = 1;
1038         }
1039
1040         ret = find_and_setup_log_root(root, fs_info, sb);
1041         if (ret) {
1042                 printk("Couldn't setup log root tree\n");
1043                 if (!(flags & OPEN_CTREE_PARTIAL))
1044                         return -EIO;
1045         }
1046
1047         fs_info->generation = generation;
1048         fs_info->last_trans_committed = generation;
1049         if (extent_buffer_uptodate(fs_info->extent_root->node) &&
1050             !(flags & OPEN_CTREE_NO_BLOCK_GROUPS))
1051                 btrfs_read_block_groups(fs_info->tree_root);
1052
1053         key.objectid = BTRFS_FS_TREE_OBJECTID;
1054         key.type = BTRFS_ROOT_ITEM_KEY;
1055         key.offset = (u64)-1;
1056         fs_info->fs_root = btrfs_read_fs_root(fs_info, &key);
1057
1058         if (IS_ERR(fs_info->fs_root))
1059                 return -EIO;
1060         return 0;
1061 }
1062
1063 void btrfs_release_all_roots(struct btrfs_fs_info *fs_info)
1064 {
1065         if (fs_info->free_space_root)
1066                 free_extent_buffer(fs_info->free_space_root->node);
1067         if (fs_info->quota_root)
1068                 free_extent_buffer(fs_info->quota_root->node);
1069         if (fs_info->csum_root)
1070                 free_extent_buffer(fs_info->csum_root->node);
1071         if (fs_info->dev_root)
1072                 free_extent_buffer(fs_info->dev_root->node);
1073         if (fs_info->extent_root)
1074                 free_extent_buffer(fs_info->extent_root->node);
1075         if (fs_info->tree_root)
1076                 free_extent_buffer(fs_info->tree_root->node);
1077         if (fs_info->log_root_tree)
1078                 free_extent_buffer(fs_info->log_root_tree->node);
1079         if (fs_info->chunk_root)
1080                 free_extent_buffer(fs_info->chunk_root->node);
1081 }
1082
1083 static void free_map_lookup(struct cache_extent *ce)
1084 {
1085         struct map_lookup *map;
1086
1087         map = container_of(ce, struct map_lookup, ce);
1088         kfree(map);
1089 }
1090
1091 FREE_EXTENT_CACHE_BASED_TREE(mapping_cache, free_map_lookup);
1092
1093 void btrfs_cleanup_all_caches(struct btrfs_fs_info *fs_info)
1094 {
1095         while (!list_empty(&fs_info->recow_ebs)) {
1096                 struct extent_buffer *eb;
1097                 eb = list_first_entry(&fs_info->recow_ebs,
1098                                       struct extent_buffer, recow);
1099                 list_del_init(&eb->recow);
1100                 free_extent_buffer(eb);
1101         }
1102         free_mapping_cache_tree(&fs_info->mapping_tree.cache_tree);
1103         extent_io_tree_cleanup(&fs_info->extent_cache);
1104         extent_io_tree_cleanup(&fs_info->free_space_cache);
1105         extent_io_tree_cleanup(&fs_info->block_group_cache);
1106         extent_io_tree_cleanup(&fs_info->pinned_extents);
1107         extent_io_tree_cleanup(&fs_info->pending_del);
1108         extent_io_tree_cleanup(&fs_info->extent_ins);
1109 }
1110
1111 int btrfs_scan_fs_devices(int fd, const char *path,
1112                           struct btrfs_fs_devices **fs_devices,
1113                           u64 sb_bytenr, int super_recover,
1114                           int skip_devices)
1115 {
1116         u64 total_devs;
1117         u64 dev_size;
1118         off_t seek_ret;
1119         int ret;
1120         if (!sb_bytenr)
1121                 sb_bytenr = BTRFS_SUPER_INFO_OFFSET;
1122
1123         seek_ret = lseek(fd, 0, SEEK_END);
1124         if (seek_ret < 0)
1125                 return -errno;
1126
1127         dev_size = seek_ret;
1128         lseek(fd, 0, SEEK_SET);
1129         if (sb_bytenr > dev_size) {
1130                 fprintf(stderr, "Superblock bytenr is larger than device size\n");
1131                 return -EINVAL;
1132         }
1133
1134         ret = btrfs_scan_one_device(fd, path, fs_devices,
1135                                     &total_devs, sb_bytenr, super_recover);
1136         if (ret) {
1137                 fprintf(stderr, "No valid Btrfs found on %s\n", path);
1138                 return ret;
1139         }
1140
1141         if (!skip_devices && total_devs != 1) {
1142                 ret = btrfs_scan_lblkid();
1143                 if (ret)
1144                         return ret;
1145         }
1146         return 0;
1147 }
1148
1149 int btrfs_setup_chunk_tree_and_device_map(struct btrfs_fs_info *fs_info)
1150 {
1151         struct btrfs_super_block *sb = fs_info->super_copy;
1152         u32 sectorsize;
1153         u32 nodesize;
1154         u32 leafsize;
1155         u32 blocksize;
1156         u32 stripesize;
1157         u64 generation;
1158         int ret;
1159
1160         nodesize = btrfs_super_nodesize(sb);
1161         leafsize = btrfs_super_leafsize(sb);
1162         sectorsize = btrfs_super_sectorsize(sb);
1163         stripesize = btrfs_super_stripesize(sb);
1164
1165         __setup_root(nodesize, leafsize, sectorsize, stripesize,
1166                      fs_info->chunk_root, fs_info, BTRFS_CHUNK_TREE_OBJECTID);
1167
1168         ret = btrfs_read_sys_array(fs_info->chunk_root);
1169         if (ret)
1170                 return ret;
1171
1172         blocksize = btrfs_level_size(fs_info->chunk_root,
1173                                      btrfs_super_chunk_root_level(sb));
1174         generation = btrfs_super_chunk_root_generation(sb);
1175
1176         fs_info->chunk_root->node = read_tree_block(fs_info->chunk_root,
1177                                                     btrfs_super_chunk_root(sb),
1178                                                     blocksize, generation);
1179         if (!extent_buffer_uptodate(fs_info->chunk_root->node)) {
1180                 if (fs_info->ignore_chunk_tree_error) {
1181                         warning("cannot read chunk root, continue anyway");
1182                         fs_info->chunk_root = NULL;
1183                         return 0;
1184                 } else {
1185                         error("cannot read chunk root");
1186                         return -EIO;
1187                 }
1188         }
1189
1190         if (!(btrfs_super_flags(sb) & BTRFS_SUPER_FLAG_METADUMP)) {
1191                 ret = btrfs_read_chunk_tree(fs_info->chunk_root);
1192                 if (ret) {
1193                         fprintf(stderr, "Couldn't read chunk tree\n");
1194                         return ret;
1195                 }
1196         }
1197         return 0;
1198 }
1199
1200 static struct btrfs_fs_info *__open_ctree_fd(int fp, const char *path,
1201                                              u64 sb_bytenr,
1202                                              u64 root_tree_bytenr,
1203                                              enum btrfs_open_ctree_flags flags)
1204 {
1205         struct btrfs_fs_info *fs_info;
1206         struct btrfs_super_block *disk_super;
1207         struct btrfs_fs_devices *fs_devices = NULL;
1208         struct extent_buffer *eb;
1209         int ret;
1210         int oflags;
1211
1212         if (sb_bytenr == 0)
1213                 sb_bytenr = BTRFS_SUPER_INFO_OFFSET;
1214
1215         /* try to drop all the caches */
1216         if (posix_fadvise(fp, 0, 0, POSIX_FADV_DONTNEED))
1217                 fprintf(stderr, "Warning, could not drop caches\n");
1218
1219         fs_info = btrfs_new_fs_info(flags & OPEN_CTREE_WRITES, sb_bytenr);
1220         if (!fs_info) {
1221                 fprintf(stderr, "Failed to allocate memory for fs_info\n");
1222                 return NULL;
1223         }
1224         if (flags & OPEN_CTREE_RESTORE)
1225                 fs_info->on_restoring = 1;
1226         if (flags & OPEN_CTREE_SUPPRESS_CHECK_BLOCK_ERRORS)
1227                 fs_info->suppress_check_block_errors = 1;
1228         if (flags & OPEN_CTREE_IGNORE_FSID_MISMATCH)
1229                 fs_info->ignore_fsid_mismatch = 1;
1230         if (flags & OPEN_CTREE_IGNORE_CHUNK_TREE_ERROR)
1231                 fs_info->ignore_chunk_tree_error = 1;
1232
1233         ret = btrfs_scan_fs_devices(fp, path, &fs_devices, sb_bytenr,
1234                                     (flags & OPEN_CTREE_RECOVER_SUPER),
1235                                     (flags & OPEN_CTREE_NO_DEVICES));
1236         if (ret)
1237                 goto out;
1238
1239         fs_info->fs_devices = fs_devices;
1240         if (flags & OPEN_CTREE_WRITES)
1241                 oflags = O_RDWR;
1242         else
1243                 oflags = O_RDONLY;
1244
1245         if (flags & OPEN_CTREE_EXCLUSIVE)
1246                 oflags |= O_EXCL;
1247
1248         ret = btrfs_open_devices(fs_devices, oflags);
1249         if (ret)
1250                 goto out;
1251
1252         disk_super = fs_info->super_copy;
1253         if (!(flags & OPEN_CTREE_RECOVER_SUPER))
1254                 ret = btrfs_read_dev_super(fs_devices->latest_bdev,
1255                                            disk_super, sb_bytenr, 1);
1256         else
1257                 ret = btrfs_read_dev_super(fp, disk_super, sb_bytenr, 0);
1258         if (ret) {
1259                 printk("No valid btrfs found\n");
1260                 goto out_devices;
1261         }
1262
1263         if (btrfs_super_flags(disk_super) & BTRFS_SUPER_FLAG_CHANGING_FSID &&
1264             !fs_info->ignore_fsid_mismatch) {
1265                 fprintf(stderr, "ERROR: Filesystem UUID change in progress\n");
1266                 goto out_devices;
1267         }
1268
1269         memcpy(fs_info->fsid, &disk_super->fsid, BTRFS_FSID_SIZE);
1270
1271         ret = btrfs_check_fs_compatibility(fs_info->super_copy,
1272                                            flags & OPEN_CTREE_WRITES);
1273         if (ret)
1274                 goto out_devices;
1275
1276         ret = btrfs_setup_chunk_tree_and_device_map(fs_info);
1277         if (ret)
1278                 goto out_chunk;
1279
1280         /* Chunk tree root is unable to read, return directly */
1281         if (!fs_info->chunk_root)
1282                 return fs_info;
1283
1284         eb = fs_info->chunk_root->node;
1285         read_extent_buffer(eb, fs_info->chunk_tree_uuid,
1286                            btrfs_header_chunk_tree_uuid(eb),
1287                            BTRFS_UUID_SIZE);
1288
1289         ret = btrfs_setup_all_roots(fs_info, root_tree_bytenr, flags);
1290         if (ret && !(flags & __OPEN_CTREE_RETURN_CHUNK_ROOT) &&
1291             !fs_info->ignore_chunk_tree_error)
1292                 goto out_chunk;
1293
1294         return fs_info;
1295
1296 out_chunk:
1297         btrfs_release_all_roots(fs_info);
1298         btrfs_cleanup_all_caches(fs_info);
1299 out_devices:
1300         btrfs_close_devices(fs_devices);
1301 out:
1302         btrfs_free_fs_info(fs_info);
1303         return NULL;
1304 }
1305
1306 struct btrfs_fs_info *open_ctree_fs_info(const char *filename,
1307                                          u64 sb_bytenr, u64 root_tree_bytenr,
1308                                          enum btrfs_open_ctree_flags flags)
1309 {
1310         int fp;
1311         struct btrfs_fs_info *info;
1312         int oflags = O_CREAT | O_RDWR;
1313
1314         if (!(flags & OPEN_CTREE_WRITES))
1315                 oflags = O_RDONLY;
1316
1317         fp = open(filename, oflags, 0600);
1318         if (fp < 0) {
1319                 fprintf (stderr, "Could not open %s\n", filename);
1320                 return NULL;
1321         }
1322         info = __open_ctree_fd(fp, filename, sb_bytenr, root_tree_bytenr,
1323                                flags);
1324         close(fp);
1325         return info;
1326 }
1327
1328 struct btrfs_root *open_ctree(const char *filename, u64 sb_bytenr,
1329                               enum btrfs_open_ctree_flags flags)
1330 {
1331         struct btrfs_fs_info *info;
1332
1333         /* This flags may not return fs_info with any valid root */
1334         BUG_ON(flags & OPEN_CTREE_IGNORE_CHUNK_TREE_ERROR);
1335         info = open_ctree_fs_info(filename, sb_bytenr, 0, flags);
1336         if (!info)
1337                 return NULL;
1338         if (flags & __OPEN_CTREE_RETURN_CHUNK_ROOT)
1339                 return info->chunk_root;
1340         return info->fs_root;
1341 }
1342
1343 struct btrfs_root *open_ctree_fd(int fp, const char *path, u64 sb_bytenr,
1344                                  enum btrfs_open_ctree_flags flags)
1345 {
1346         struct btrfs_fs_info *info;
1347
1348         /* This flags may not return fs_info with any valid root */
1349         BUG_ON(flags & OPEN_CTREE_IGNORE_CHUNK_TREE_ERROR);
1350         info = __open_ctree_fd(fp, path, sb_bytenr, 0, flags);
1351         if (!info)
1352                 return NULL;
1353         if (flags & __OPEN_CTREE_RETURN_CHUNK_ROOT)
1354                 return info->chunk_root;
1355         return info->fs_root;
1356 }
1357
1358 /*
1359  * Check if the super is valid:
1360  * - nodesize/sectorsize - minimum, maximum, alignment
1361  * - tree block starts   - alignment
1362  * - number of devices   - something sane
1363  * - sys array size      - maximum
1364  */
1365 static int check_super(struct btrfs_super_block *sb)
1366 {
1367         char result[BTRFS_CSUM_SIZE];
1368         u32 crc;
1369         u16 csum_type;
1370         int csum_size;
1371
1372         if (btrfs_super_magic(sb) != BTRFS_MAGIC) {
1373                 fprintf(stderr, "ERROR: superblock magic doesn't match\n");
1374                 return -EIO;
1375         }
1376
1377         csum_type = btrfs_super_csum_type(sb);
1378         if (csum_type >= ARRAY_SIZE(btrfs_csum_sizes)) {
1379                 fprintf(stderr, "ERROR: unsupported checksum algorithm %u\n",
1380                         csum_type);
1381                 return -EIO;
1382         }
1383         csum_size = btrfs_csum_sizes[csum_type];
1384
1385         crc = ~(u32)0;
1386         crc = btrfs_csum_data(NULL, (char *)sb + BTRFS_CSUM_SIZE, crc,
1387                               BTRFS_SUPER_INFO_SIZE - BTRFS_CSUM_SIZE);
1388         btrfs_csum_final(crc, result);
1389
1390         if (memcmp(result, sb->csum, csum_size)) {
1391                 fprintf(stderr, "ERROR: superblock checksum mismatch\n");
1392                 return -EIO;
1393         }
1394         if (btrfs_super_root_level(sb) >= BTRFS_MAX_LEVEL) {
1395                 fprintf(stderr, "ERROR: tree_root level too big: %d >= %d\n",
1396                         btrfs_super_root_level(sb), BTRFS_MAX_LEVEL);
1397                 return -EIO;
1398         }
1399         if (btrfs_super_chunk_root_level(sb) >= BTRFS_MAX_LEVEL) {
1400                 fprintf(stderr, "ERROR: chunk_root level too big: %d >= %d\n",
1401                         btrfs_super_chunk_root_level(sb), BTRFS_MAX_LEVEL);
1402                 return -EIO;
1403         }
1404         if (btrfs_super_log_root_level(sb) >= BTRFS_MAX_LEVEL) {
1405                 fprintf(stderr, "ERROR: log_root level too big: %d >= %d\n",
1406                         btrfs_super_log_root_level(sb), BTRFS_MAX_LEVEL);
1407                 return -EIO;
1408         }
1409
1410         if (!IS_ALIGNED(btrfs_super_root(sb), 4096)) {
1411                 fprintf(stderr, "ERROR: tree_root block unaligned: %llu\n",
1412                         btrfs_super_root(sb));
1413                 return -EIO;
1414         }
1415         if (!IS_ALIGNED(btrfs_super_chunk_root(sb), 4096)) {
1416                 fprintf(stderr, "ERROR: chunk_root block unaligned: %llu\n",
1417                         btrfs_super_chunk_root(sb));
1418                 return -EIO;
1419         }
1420         if (!IS_ALIGNED(btrfs_super_log_root(sb), 4096)) {
1421                 fprintf(stderr, "ERROR: log_root block unaligned: %llu\n",
1422                         btrfs_super_log_root(sb));
1423                 return -EIO;
1424         }
1425         if (btrfs_super_nodesize(sb) < 4096) {
1426                 fprintf(stderr, "ERROR: nodesize too small: %u < 4096\n",
1427                         btrfs_super_nodesize(sb));
1428                 return -EIO;
1429         }
1430         if (!IS_ALIGNED(btrfs_super_nodesize(sb), 4096)) {
1431                 fprintf(stderr, "ERROR: nodesize unaligned: %u\n",
1432                         btrfs_super_nodesize(sb));
1433                 return -EIO;
1434         }
1435         if (btrfs_super_sectorsize(sb) < 4096) {
1436                 fprintf(stderr, "ERROR: sectorsize too small: %u < 4096\n",
1437                         btrfs_super_sectorsize(sb));
1438                 return -EIO;
1439         }
1440         if (!IS_ALIGNED(btrfs_super_sectorsize(sb), 4096)) {
1441                 fprintf(stderr, "ERROR: sectorsize unaligned: %u\n",
1442                         btrfs_super_sectorsize(sb));
1443                 return -EIO;
1444         }
1445
1446         if (memcmp(sb->fsid, sb->dev_item.fsid, BTRFS_UUID_SIZE) != 0) {
1447                 char fsid[BTRFS_UUID_UNPARSED_SIZE];
1448                 char dev_fsid[BTRFS_UUID_UNPARSED_SIZE];
1449
1450                 uuid_unparse(sb->fsid, fsid);
1451                 uuid_unparse(sb->dev_item.fsid, dev_fsid);
1452                 printk(KERN_ERR
1453                         "ERROR: dev_item UUID does not match fsid: %s != %s\n",
1454                         dev_fsid, fsid);
1455                 return -EIO;
1456         }
1457
1458         /*
1459          * Hint to catch really bogus numbers, bitflips or so
1460          */
1461         if (btrfs_super_num_devices(sb) > (1UL << 31)) {
1462                 fprintf(stderr, "WARNING: suspicious number of devices: %llu\n",
1463                         btrfs_super_num_devices(sb));
1464         }
1465
1466         if (btrfs_super_num_devices(sb) == 0) {
1467                 fprintf(stderr, "ERROR: number of devices is 0\n");
1468                 return -EIO;
1469         }
1470
1471         /*
1472          * Obvious sys_chunk_array corruptions, it must hold at least one key
1473          * and one chunk
1474          */
1475         if (btrfs_super_sys_array_size(sb) > BTRFS_SYSTEM_CHUNK_ARRAY_SIZE) {
1476                 fprintf(stderr, "BTRFS: system chunk array too big %u > %u\n",
1477                         btrfs_super_sys_array_size(sb),
1478                         BTRFS_SYSTEM_CHUNK_ARRAY_SIZE);
1479                 return -EIO;
1480         }
1481         if (btrfs_super_sys_array_size(sb) < sizeof(struct btrfs_disk_key)
1482                         + sizeof(struct btrfs_chunk)) {
1483                 fprintf(stderr, "BTRFS: system chunk array too small %u < %lu\n",
1484                         btrfs_super_sys_array_size(sb),
1485                         sizeof(struct btrfs_disk_key) +
1486                         sizeof(struct btrfs_chunk));
1487                 return -EIO;
1488         }
1489
1490         return 0;
1491 }
1492
1493 int btrfs_read_dev_super(int fd, struct btrfs_super_block *sb, u64 sb_bytenr,
1494                          int super_recover)
1495 {
1496         u8 fsid[BTRFS_FSID_SIZE];
1497         int fsid_is_initialized = 0;
1498         char tmp[BTRFS_SUPER_INFO_SIZE];
1499         struct btrfs_super_block *buf = (struct btrfs_super_block *)tmp;
1500         int i;
1501         int ret;
1502         int max_super = super_recover ? BTRFS_SUPER_MIRROR_MAX : 1;
1503         u64 transid = 0;
1504         u64 bytenr;
1505
1506         if (sb_bytenr != BTRFS_SUPER_INFO_OFFSET) {
1507                 ret = pread64(fd, buf, BTRFS_SUPER_INFO_SIZE, sb_bytenr);
1508                 if (ret < BTRFS_SUPER_INFO_SIZE)
1509                         return -1;
1510
1511                 if (btrfs_super_bytenr(buf) != sb_bytenr)
1512                         return -1;
1513
1514                 if (check_super(buf))
1515                         return -1;
1516                 memcpy(sb, buf, BTRFS_SUPER_INFO_SIZE);
1517                 return 0;
1518         }
1519
1520         /*
1521         * we would like to check all the supers, but that would make
1522         * a btrfs mount succeed after a mkfs from a different FS.
1523         * So, we need to add a special mount option to scan for
1524         * later supers, using BTRFS_SUPER_MIRROR_MAX instead
1525         */
1526
1527         for (i = 0; i < max_super; i++) {
1528                 bytenr = btrfs_sb_offset(i);
1529                 ret = pread64(fd, buf, BTRFS_SUPER_INFO_SIZE, bytenr);
1530                 if (ret < BTRFS_SUPER_INFO_SIZE)
1531                         break;
1532
1533                 if (btrfs_super_bytenr(buf) != bytenr )
1534                         continue;
1535                 /* if magic is NULL, the device was removed */
1536                 if (btrfs_super_magic(buf) == 0 && i == 0)
1537                         break;
1538                 if (check_super(buf))
1539                         continue;
1540
1541                 if (!fsid_is_initialized) {
1542                         memcpy(fsid, buf->fsid, sizeof(fsid));
1543                         fsid_is_initialized = 1;
1544                 } else if (memcmp(fsid, buf->fsid, sizeof(fsid))) {
1545                         /*
1546                          * the superblocks (the original one and
1547                          * its backups) contain data of different
1548                          * filesystems -> the super cannot be trusted
1549                          */
1550                         continue;
1551                 }
1552
1553                 if (btrfs_super_generation(buf) > transid) {
1554                         memcpy(sb, buf, BTRFS_SUPER_INFO_SIZE);
1555                         transid = btrfs_super_generation(buf);
1556                 }
1557         }
1558
1559         return transid > 0 ? 0 : -1;
1560 }
1561
1562 static int write_dev_supers(struct btrfs_root *root,
1563                             struct btrfs_super_block *sb,
1564                             struct btrfs_device *device)
1565 {
1566         u64 bytenr;
1567         u32 crc;
1568         int i, ret;
1569
1570         if (root->fs_info->super_bytenr != BTRFS_SUPER_INFO_OFFSET) {
1571                 btrfs_set_super_bytenr(sb, root->fs_info->super_bytenr);
1572                 crc = ~(u32)0;
1573                 crc = btrfs_csum_data(NULL, (char *)sb + BTRFS_CSUM_SIZE, crc,
1574                                       BTRFS_SUPER_INFO_SIZE - BTRFS_CSUM_SIZE);
1575                 btrfs_csum_final(crc, (char *)&sb->csum[0]);
1576
1577                 /*
1578                  * super_copy is BTRFS_SUPER_INFO_SIZE bytes and is
1579                  * zero filled, we can use it directly
1580                  */
1581                 ret = pwrite64(device->fd, root->fs_info->super_copy,
1582                                 BTRFS_SUPER_INFO_SIZE,
1583                                 root->fs_info->super_bytenr);
1584                 if (ret != BTRFS_SUPER_INFO_SIZE)
1585                         goto write_err;
1586                 return 0;
1587         }
1588
1589         for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
1590                 bytenr = btrfs_sb_offset(i);
1591                 if (bytenr + BTRFS_SUPER_INFO_SIZE > device->total_bytes)
1592                         break;
1593
1594                 btrfs_set_super_bytenr(sb, bytenr);
1595
1596                 crc = ~(u32)0;
1597                 crc = btrfs_csum_data(NULL, (char *)sb + BTRFS_CSUM_SIZE, crc,
1598                                       BTRFS_SUPER_INFO_SIZE - BTRFS_CSUM_SIZE);
1599                 btrfs_csum_final(crc, (char *)&sb->csum[0]);
1600
1601                 /*
1602                  * super_copy is BTRFS_SUPER_INFO_SIZE bytes and is
1603                  * zero filled, we can use it directly
1604                  */
1605                 ret = pwrite64(device->fd, root->fs_info->super_copy,
1606                                 BTRFS_SUPER_INFO_SIZE, bytenr);
1607                 if (ret != BTRFS_SUPER_INFO_SIZE)
1608                         goto write_err;
1609         }
1610
1611         return 0;
1612
1613 write_err:
1614         if (ret > 0)
1615                 fprintf(stderr, "WARNING: failed to write all sb data\n");
1616         else
1617                 fprintf(stderr, "WARNING: failed to write sb: %s\n",
1618                         strerror(errno));
1619         return ret;
1620 }
1621
1622 int write_all_supers(struct btrfs_root *root)
1623 {
1624         struct list_head *cur;
1625         struct list_head *head = &root->fs_info->fs_devices->devices;
1626         struct btrfs_device *dev;
1627         struct btrfs_super_block *sb;
1628         struct btrfs_dev_item *dev_item;
1629         int ret;
1630         u64 flags;
1631
1632         sb = root->fs_info->super_copy;
1633         dev_item = &sb->dev_item;
1634         list_for_each(cur, head) {
1635                 dev = list_entry(cur, struct btrfs_device, dev_list);
1636                 if (!dev->writeable)
1637                         continue;
1638
1639                 btrfs_set_stack_device_generation(dev_item, 0);
1640                 btrfs_set_stack_device_type(dev_item, dev->type);
1641                 btrfs_set_stack_device_id(dev_item, dev->devid);
1642                 btrfs_set_stack_device_total_bytes(dev_item, dev->total_bytes);
1643                 btrfs_set_stack_device_bytes_used(dev_item, dev->bytes_used);
1644                 btrfs_set_stack_device_io_align(dev_item, dev->io_align);
1645                 btrfs_set_stack_device_io_width(dev_item, dev->io_width);
1646                 btrfs_set_stack_device_sector_size(dev_item, dev->sector_size);
1647                 memcpy(dev_item->uuid, dev->uuid, BTRFS_UUID_SIZE);
1648                 memcpy(dev_item->fsid, dev->fs_devices->fsid, BTRFS_UUID_SIZE);
1649
1650                 flags = btrfs_super_flags(sb);
1651                 btrfs_set_super_flags(sb, flags | BTRFS_HEADER_FLAG_WRITTEN);
1652
1653                 ret = write_dev_supers(root, sb, dev);
1654                 BUG_ON(ret);
1655         }
1656         return 0;
1657 }
1658
1659 int write_ctree_super(struct btrfs_trans_handle *trans,
1660                       struct btrfs_root *root)
1661 {
1662         int ret;
1663         struct btrfs_root *tree_root = root->fs_info->tree_root;
1664         struct btrfs_root *chunk_root = root->fs_info->chunk_root;
1665
1666         if (root->fs_info->readonly)
1667                 return 0;
1668
1669         btrfs_set_super_generation(root->fs_info->super_copy,
1670                                    trans->transid);
1671         btrfs_set_super_root(root->fs_info->super_copy,
1672                              tree_root->node->start);
1673         btrfs_set_super_root_level(root->fs_info->super_copy,
1674                                    btrfs_header_level(tree_root->node));
1675         btrfs_set_super_chunk_root(root->fs_info->super_copy,
1676                                    chunk_root->node->start);
1677         btrfs_set_super_chunk_root_level(root->fs_info->super_copy,
1678                                          btrfs_header_level(chunk_root->node));
1679         btrfs_set_super_chunk_root_generation(root->fs_info->super_copy,
1680                                 btrfs_header_generation(chunk_root->node));
1681
1682         ret = write_all_supers(root);
1683         if (ret)
1684                 fprintf(stderr, "failed to write new super block err %d\n", ret);
1685         return ret;
1686 }
1687
1688 int close_ctree_fs_info(struct btrfs_fs_info *fs_info)
1689 {
1690         int ret;
1691         struct btrfs_trans_handle *trans;
1692         struct btrfs_root *root = fs_info->tree_root;
1693
1694         if (fs_info->last_trans_committed !=
1695             fs_info->generation) {
1696                 BUG_ON(!root);
1697                 trans = btrfs_start_transaction(root, 1);
1698                 btrfs_commit_transaction(trans, root);
1699                 trans = btrfs_start_transaction(root, 1);
1700                 ret = commit_tree_roots(trans, fs_info);
1701                 BUG_ON(ret);
1702                 ret = __commit_transaction(trans, root);
1703                 BUG_ON(ret);
1704                 write_ctree_super(trans, root);
1705                 btrfs_free_transaction(root, trans);
1706         }
1707         btrfs_free_block_groups(fs_info);
1708
1709         free_fs_roots_tree(&fs_info->fs_root_tree);
1710
1711         btrfs_release_all_roots(fs_info);
1712         btrfs_close_devices(fs_info->fs_devices);
1713         btrfs_cleanup_all_caches(fs_info);
1714         btrfs_free_fs_info(fs_info);
1715         return 0;
1716 }
1717
1718 int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1719                      struct extent_buffer *eb)
1720 {
1721         return clear_extent_buffer_dirty(eb);
1722 }
1723
1724 int wait_on_tree_block_writeback(struct btrfs_root *root,
1725                                  struct extent_buffer *eb)
1726 {
1727         return 0;
1728 }
1729
1730 void btrfs_mark_buffer_dirty(struct extent_buffer *eb)
1731 {
1732         set_extent_buffer_dirty(eb);
1733 }
1734
1735 int btrfs_buffer_uptodate(struct extent_buffer *buf, u64 parent_transid)
1736 {
1737         int ret;
1738
1739         ret = extent_buffer_uptodate(buf);
1740         if (!ret)
1741                 return ret;
1742
1743         ret = verify_parent_transid(buf->tree, buf, parent_transid, 1);
1744         return !ret;
1745 }
1746
1747 int btrfs_set_buffer_uptodate(struct extent_buffer *eb)
1748 {
1749         return set_extent_buffer_uptodate(eb);
1750 }