Add a readonly flag open_ctree to force RO opens
[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 #define _XOPEN_SOURCE 600
20 #define __USE_XOPEN2K
21 #define _GNU_SOURCE 1
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <sys/types.h>
25 #include <sys/stat.h>
26 #include <fcntl.h>
27 #include <unistd.h>
28 #include "kerncompat.h"
29 #include "radix-tree.h"
30 #include "ctree.h"
31 #include "disk-io.h"
32 #include "volumes.h"
33 #include "transaction.h"
34 #include "crc32c.h"
35 #include "utils.h"
36 #include "print-tree.h"
37
38 static int check_tree_block(struct btrfs_root *root, struct extent_buffer *buf)
39 {
40         if (buf->start != btrfs_header_bytenr(buf))
41                 return 1;
42
43         if (memcmp_extent_buffer(buf, root->fs_info->fsid,
44                                  (unsigned long)btrfs_header_fsid(buf),
45                                  BTRFS_FSID_SIZE))
46                 return 1;
47         return 0;
48 }
49
50 u32 btrfs_csum_data(struct btrfs_root *root, char *data, u32 seed, size_t len)
51 {
52         return crc32c(seed, data, len);
53 }
54
55 void btrfs_csum_final(u32 crc, char *result)
56 {
57         *(__le32 *)result = ~cpu_to_le32(crc);
58 }
59
60 int csum_tree_block(struct btrfs_root *root, struct extent_buffer *buf,
61                     int verify)
62 {
63         char result[BTRFS_CRC32_SIZE];
64         u32 len;
65         u32 crc = ~(u32)0;
66
67         len = buf->len - BTRFS_CSUM_SIZE;
68         crc = crc32c(crc, buf->data + BTRFS_CSUM_SIZE, len);
69         btrfs_csum_final(crc, result);
70
71         if (verify) {
72                 if (memcmp_extent_buffer(buf, result, 0, BTRFS_CRC32_SIZE)) {
73                         printk("checksum verify failed on %llu wanted %X "
74                                "found %X\n", (unsigned long long)buf->start,
75                                *((int *)result), *((int *)buf));
76                         return 1;
77                 }
78         } else {
79                 write_extent_buffer(buf, result, 0, BTRFS_CRC32_SIZE);
80         }
81         return 0;
82 }
83
84 struct extent_buffer *btrfs_find_tree_block(struct btrfs_root *root,
85                                             u64 bytenr, u32 blocksize)
86 {
87         return find_extent_buffer(&root->fs_info->extent_cache,
88                                   bytenr, blocksize);
89 }
90
91 struct extent_buffer *btrfs_find_create_tree_block(struct btrfs_root *root,
92                                                  u64 bytenr, u32 blocksize)
93 {
94         return alloc_extent_buffer(&root->fs_info->extent_cache, bytenr,
95                                    blocksize);
96 }
97
98 int readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize)
99 {
100         int ret;
101         int dev_nr;
102         struct extent_buffer *eb;
103         u64 length;
104         struct btrfs_multi_bio *multi = NULL;
105         struct btrfs_device *device;
106
107         eb = btrfs_find_tree_block(root, bytenr, blocksize);
108         if (eb && btrfs_buffer_uptodate(eb)) {
109                 free_extent_buffer(eb);
110                 return 0;
111         }
112
113         dev_nr = 0;
114         length = blocksize;
115         ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
116                               bytenr, &length, &multi, 0);
117         BUG_ON(ret);
118         device = multi->stripes[0].dev;
119         device->total_ios++;
120         blocksize = min(blocksize, (u32)(64 * 1024));
121         readahead(device->fd, multi->stripes[0].physical, blocksize);
122         kfree(multi);
123         return 0;
124 }
125
126 struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 bytenr,
127                                      u32 blocksize)
128 {
129         int ret;
130         int dev_nr;
131         struct extent_buffer *eb;
132         u64 length;
133         struct btrfs_multi_bio *multi = NULL;
134         struct btrfs_device *device;
135         int mirror_num = 0;
136         int num_copies;
137
138         eb = btrfs_find_create_tree_block(root, bytenr, blocksize);
139         if (!eb)
140                 return NULL;
141
142         if (btrfs_buffer_uptodate(eb))
143                 return eb;
144
145         dev_nr = 0;
146         length = blocksize;
147         while (1) {
148                 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
149                                       eb->start, &length, &multi, mirror_num);
150                 BUG_ON(ret);
151                 device = multi->stripes[0].dev;
152                 eb->fd = device->fd;
153                 device->total_ios++;
154                 eb->dev_bytenr = multi->stripes[0].physical;
155                 kfree(multi);
156                 ret = read_extent_from_disk(eb);
157                 if (ret == 0 && check_tree_block(root, eb) == 0 &&
158                     csum_tree_block(root, eb, 1) == 0) {
159                         btrfs_set_buffer_uptodate(eb);
160                         return eb;
161                 }
162                 num_copies = btrfs_num_copies(&root->fs_info->mapping_tree,
163                                               eb->start, eb->len);
164                 if (num_copies == 1) {
165 printk("reading %Lu failed only one copy\n", eb->start);
166                         break;
167                 }
168                 mirror_num++;
169                 if (mirror_num > num_copies) {
170 printk("bailing at mirror %d of %d\n", mirror_num, num_copies);
171                         break;
172                 }
173         }
174         free_extent_buffer(eb);
175         return NULL;
176 }
177
178 int write_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
179                      struct extent_buffer *eb)
180 {
181         int ret;
182         int dev_nr;
183         u64 length;
184         struct btrfs_multi_bio *multi = NULL;
185
186         if (check_tree_block(root, eb))
187                 BUG();
188         if (!btrfs_buffer_uptodate(eb))
189                 BUG();
190
191         btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
192         csum_tree_block(root, eb, 0);
193
194         dev_nr = 0;
195         length = eb->len;
196         ret = btrfs_map_block(&root->fs_info->mapping_tree, WRITE,
197                               eb->start, &length, &multi, 0);
198
199         while(dev_nr < multi->num_stripes) {
200                 BUG_ON(ret);
201                 eb->fd = multi->stripes[dev_nr].dev->fd;
202                 eb->dev_bytenr = multi->stripes[dev_nr].physical;
203                 multi->stripes[dev_nr].dev->total_ios++;
204                 dev_nr++;
205                 ret = write_extent_to_disk(eb);
206                 BUG_ON(ret);
207         }
208         kfree(multi);
209         return 0;
210 }
211
212 static int __setup_root(u32 nodesize, u32 leafsize, u32 sectorsize,
213                         u32 stripesize, struct btrfs_root *root,
214                         struct btrfs_fs_info *fs_info, u64 objectid)
215 {
216         root->node = NULL;
217         root->commit_root = NULL;
218         root->sectorsize = sectorsize;
219         root->nodesize = nodesize;
220         root->leafsize = leafsize;
221         root->stripesize = stripesize;
222         root->ref_cows = 0;
223         root->track_dirty = 0;
224
225         root->fs_info = fs_info;
226         root->objectid = objectid;
227         root->last_trans = 0;
228         root->highest_inode = 0;
229         root->last_inode_alloc = 0;
230
231         INIT_LIST_HEAD(&root->dirty_list);
232         memset(&root->root_key, 0, sizeof(root->root_key));
233         memset(&root->root_item, 0, sizeof(root->root_item));
234         root->root_key.objectid = objectid;
235         return 0;
236 }
237
238 static int update_cowonly_root(struct btrfs_trans_handle *trans,
239                                struct btrfs_root *root)
240 {
241         int ret;
242         u64 old_root_bytenr;
243         struct btrfs_root *tree_root = root->fs_info->tree_root;
244
245         btrfs_write_dirty_block_groups(trans, root);
246         while(1) {
247                 old_root_bytenr = btrfs_root_bytenr(&root->root_item);
248                 if (old_root_bytenr == root->node->start)
249                         break;
250                 btrfs_set_root_bytenr(&root->root_item,
251                                        root->node->start);
252                 root->root_item.level = btrfs_header_level(root->node);
253                 ret = btrfs_update_root(trans, tree_root,
254                                         &root->root_key,
255                                         &root->root_item);
256                 BUG_ON(ret);
257                 btrfs_write_dirty_block_groups(trans, root);
258         }
259         return 0;
260 }
261
262 static int commit_tree_roots(struct btrfs_trans_handle *trans,
263                              struct btrfs_fs_info *fs_info)
264 {
265         struct btrfs_root *root;
266         struct list_head *next;
267
268         while(!list_empty(&fs_info->dirty_cowonly_roots)) {
269                 next = fs_info->dirty_cowonly_roots.next;
270                 list_del_init(next);
271                 root = list_entry(next, struct btrfs_root, dirty_list);
272                 update_cowonly_root(trans, root);
273         }
274         return 0;
275 }
276
277 static int __commit_transaction(struct btrfs_trans_handle *trans,
278                                 struct btrfs_root *root)
279 {
280         u64 start;
281         u64 end;
282         struct extent_buffer *eb;
283         struct extent_io_tree *tree = &root->fs_info->extent_cache;
284         int ret;
285
286         while(1) {
287                 ret = find_first_extent_bit(tree, 0, &start, &end,
288                                             EXTENT_DIRTY);
289                 if (ret)
290                         break;
291                 while(start <= end) {
292                         eb = find_first_extent_buffer(tree, start);
293                         BUG_ON(!eb || eb->start != start);
294                         ret = write_tree_block(trans, root, eb);
295                         BUG_ON(ret);
296                         start += eb->len;
297                         clear_extent_buffer_dirty(eb);
298                         free_extent_buffer(eb);
299                 }
300         }
301         return 0;
302 }
303
304 int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
305                              struct btrfs_root *root)
306 {
307         int ret = 0;
308         struct btrfs_root *new_root = NULL;
309         struct btrfs_fs_info *fs_info = root->fs_info;
310
311         if (root->commit_root == root->node)
312                 goto commit_tree;
313
314         new_root = malloc(sizeof(*new_root));
315         if (!new_root)
316                 return -ENOMEM;
317         memcpy(new_root, root, sizeof(*new_root));
318         new_root->node = root->commit_root;
319         root->commit_root = NULL;
320
321         root->root_key.offset = trans->transid;
322         btrfs_set_root_bytenr(&root->root_item, root->node->start);
323         root->root_item.level = btrfs_header_level(root->node);
324         ret = btrfs_insert_root(trans, fs_info->tree_root,
325                                 &root->root_key, &root->root_item);
326         BUG_ON(ret);
327
328         btrfs_set_root_refs(&new_root->root_item, 0);
329         ret = btrfs_update_root(trans, root->fs_info->tree_root,
330                                 &new_root->root_key, &new_root->root_item);
331         BUG_ON(ret);
332
333         ret = commit_tree_roots(trans, fs_info);
334         BUG_ON(ret);
335         ret = __commit_transaction(trans, root);
336         BUG_ON(ret);
337         write_ctree_super(trans, root);
338         btrfs_finish_extent_commit(trans, fs_info->extent_root,
339                                    &fs_info->pinned_extents);
340         btrfs_free_transaction(root, trans);
341         fs_info->running_transaction = NULL;
342
343         trans = btrfs_start_transaction(root, 1);
344         ret = btrfs_drop_snapshot(trans, new_root);
345         BUG_ON(ret);
346         ret = btrfs_del_root(trans, fs_info->tree_root, &new_root->root_key);
347         BUG_ON(ret);
348 commit_tree:
349         ret = commit_tree_roots(trans, fs_info);
350         BUG_ON(ret);
351         ret = __commit_transaction(trans, root);
352         BUG_ON(ret);
353         write_ctree_super(trans, root);
354         btrfs_finish_extent_commit(trans, fs_info->extent_root,
355                                    &fs_info->pinned_extents);
356         btrfs_free_transaction(root, trans);
357         free_extent_buffer(root->commit_root);
358         root->commit_root = NULL;
359         fs_info->running_transaction = NULL;
360         if (new_root) {
361                 free_extent_buffer(new_root->node);
362                 free(new_root);
363         }
364         return 0;
365 }
366
367 static int find_and_setup_root(struct btrfs_root *tree_root,
368                                struct btrfs_fs_info *fs_info,
369                                u64 objectid, struct btrfs_root *root)
370 {
371         int ret;
372         u32 blocksize;
373
374         __setup_root(tree_root->nodesize, tree_root->leafsize,
375                      tree_root->sectorsize, tree_root->stripesize,
376                      root, fs_info, objectid);
377         ret = btrfs_find_last_root(tree_root, objectid,
378                                    &root->root_item, &root->root_key);
379         BUG_ON(ret);
380
381         blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
382         root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
383                                      blocksize);
384         BUG_ON(!root->node);
385         return 0;
386 }
387
388 int btrfs_free_fs_root(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
389 {
390         if (root->node)
391                 free_extent_buffer(root->node);
392         if (root->commit_root)
393                 free_extent_buffer(root->commit_root);
394
395         free(root);
396         return 0;
397 }
398
399 struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
400                                       struct btrfs_key *location)
401 {
402         struct btrfs_root *root;
403         struct btrfs_root *tree_root = fs_info->tree_root;
404         struct btrfs_path *path;
405         struct extent_buffer *l;
406         u32 blocksize;
407         int ret = 0;
408
409         root = malloc(sizeof(*root));
410         if (!root)
411                 return ERR_PTR(-ENOMEM);
412         memset(root, 0, sizeof(*root));
413         if (location->offset == (u64)-1) {
414                 ret = find_and_setup_root(tree_root, fs_info,
415                                           location->objectid, root);
416                 if (ret) {
417                         free(root);
418                         return ERR_PTR(ret);
419                 }
420                 goto insert;
421         }
422
423         __setup_root(tree_root->nodesize, tree_root->leafsize,
424                      tree_root->sectorsize, tree_root->stripesize,
425                      root, fs_info, location->objectid);
426
427         path = btrfs_alloc_path();
428         BUG_ON(!path);
429         ret = btrfs_search_slot(NULL, tree_root, location, path, 0, 0);
430         if (ret != 0) {
431                 if (ret > 0)
432                         ret = -ENOENT;
433                 goto out;
434         }
435         l = path->nodes[0];
436         read_extent_buffer(l, &root->root_item,
437                btrfs_item_ptr_offset(l, path->slots[0]),
438                sizeof(root->root_item));
439         memcpy(&root->root_key, location, sizeof(*location));
440         ret = 0;
441 out:
442         btrfs_release_path(root, path);
443         btrfs_free_path(path);
444         if (ret) {
445                 free(root);
446                 return ERR_PTR(ret);
447         }
448         blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
449         root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
450                                      blocksize);
451         BUG_ON(!root->node);
452 insert:
453         root->ref_cows = 1;
454         return root;
455 }
456
457 struct btrfs_root *open_ctree(const char *filename, u64 sb_bytenr, int writes)
458 {
459         int fp;
460         struct btrfs_root *root;
461         int flags = O_CREAT | O_RDWR;
462
463         if (!writes)
464                 flags = O_RDONLY;
465
466         fp = open(filename, flags, 0600);
467         if (fp < 0) {
468                 return NULL;
469         }
470         root = open_ctree_fd(fp, filename, sb_bytenr, writes);
471         close(fp);
472
473         return root;
474 }
475
476 struct btrfs_root *open_ctree_fd(int fp, const char *path, u64 sb_bytenr,
477                                  int writes)
478 {
479         u32 sectorsize;
480         u32 nodesize;
481         u32 leafsize;
482         u32 blocksize;
483         u32 stripesize;
484         struct btrfs_root *root = malloc(sizeof(struct btrfs_root));
485         struct btrfs_root *tree_root = malloc(sizeof(struct btrfs_root));
486         struct btrfs_root *extent_root = malloc(sizeof(struct btrfs_root));
487         struct btrfs_root *chunk_root = malloc(sizeof(struct btrfs_root));
488         struct btrfs_root *dev_root = malloc(sizeof(struct btrfs_root));
489         struct btrfs_fs_info *fs_info = malloc(sizeof(*fs_info));
490         int ret;
491         struct btrfs_super_block *disk_super;
492         struct btrfs_fs_devices *fs_devices = NULL;
493         u64 total_devs;
494
495         if (sb_bytenr == 0)
496                 sb_bytenr = BTRFS_SUPER_INFO_OFFSET;
497
498         ret = btrfs_scan_one_device(fp, path, &fs_devices,
499                                     &total_devs, sb_bytenr);
500
501         if (ret) {
502                 fprintf(stderr, "No valid Btrfs found on %s\n", path);
503                 return NULL;
504         }
505
506         if (total_devs != 1) {
507                 ret = btrfs_scan_for_fsid(fs_devices, total_devs, 1);
508                 BUG_ON(ret);
509         }
510
511         memset(fs_info, 0, sizeof(*fs_info));
512         fs_info->fs_root = root;
513         fs_info->tree_root = tree_root;
514         fs_info->extent_root = extent_root;
515         fs_info->chunk_root = chunk_root;
516         fs_info->dev_root = dev_root;
517
518         if (!writes)
519                 fs_info->readonly = 1;
520
521         extent_io_tree_init(&fs_info->extent_cache);
522         extent_io_tree_init(&fs_info->free_space_cache);
523         extent_io_tree_init(&fs_info->block_group_cache);
524         extent_io_tree_init(&fs_info->pinned_extents);
525         extent_io_tree_init(&fs_info->pending_del);
526         extent_io_tree_init(&fs_info->extent_ins);
527
528         cache_tree_init(&fs_info->mapping_tree.cache_tree);
529
530         mutex_init(&fs_info->fs_mutex);
531         fs_info->fs_devices = fs_devices;
532         INIT_LIST_HEAD(&fs_info->dirty_cowonly_roots);
533         INIT_LIST_HEAD(&fs_info->space_info);
534
535         __setup_root(4096, 4096, 4096, 4096, tree_root,
536                      fs_info, BTRFS_ROOT_TREE_OBJECTID);
537
538         if (writes)
539                 ret = btrfs_open_devices(fs_devices, O_RDWR);
540         else
541                 ret = btrfs_open_devices(fs_devices, O_RDONLY);
542         BUG_ON(ret);
543
544         ret = btrfs_bootstrap_super_map(&fs_info->mapping_tree, fs_devices);
545         BUG_ON(ret);
546         fs_info->sb_buffer = btrfs_find_create_tree_block(tree_root, sb_bytenr,
547                                                           4096);
548         BUG_ON(!fs_info->sb_buffer);
549         fs_info->sb_buffer->fd = fs_devices->latest_bdev;
550         fs_info->sb_buffer->dev_bytenr = sb_bytenr;
551         ret = read_extent_from_disk(fs_info->sb_buffer);
552         BUG_ON(ret);
553         btrfs_set_buffer_uptodate(fs_info->sb_buffer);
554
555         read_extent_buffer(fs_info->sb_buffer, &fs_info->super_copy, 0,
556                            sizeof(fs_info->super_copy));
557         read_extent_buffer(fs_info->sb_buffer, fs_info->fsid,
558                            (unsigned long)btrfs_super_fsid(fs_info->sb_buffer),
559                            BTRFS_FSID_SIZE);
560
561         disk_super = &fs_info->super_copy;
562         if (strncmp((char *)(&disk_super->magic), BTRFS_MAGIC,
563                     sizeof(disk_super->magic))) {
564                 printk("No valid btrfs found\n");
565                 BUG_ON(1);
566         }
567         nodesize = btrfs_super_nodesize(disk_super);
568         leafsize = btrfs_super_leafsize(disk_super);
569         sectorsize = btrfs_super_sectorsize(disk_super);
570         stripesize = btrfs_super_stripesize(disk_super);
571         tree_root->nodesize = nodesize;
572         tree_root->leafsize = leafsize;
573         tree_root->sectorsize = sectorsize;
574         tree_root->stripesize = stripesize;
575
576         ret = btrfs_read_super_device(tree_root, fs_info->sb_buffer);
577         BUG_ON(ret);
578         ret = btrfs_read_sys_array(tree_root);
579         BUG_ON(ret);
580         blocksize = btrfs_level_size(tree_root,
581                                      btrfs_super_chunk_root_level(disk_super));
582
583         __setup_root(nodesize, leafsize, sectorsize, stripesize,
584                      chunk_root, fs_info, BTRFS_CHUNK_TREE_OBJECTID);
585
586         chunk_root->node = read_tree_block(chunk_root,
587                                            btrfs_super_chunk_root(disk_super),
588                                            blocksize);
589
590         BUG_ON(!chunk_root->node);
591
592         read_extent_buffer(chunk_root->node, fs_info->chunk_tree_uuid,
593                  (unsigned long)btrfs_header_chunk_tree_uuid(chunk_root->node),
594                  BTRFS_UUID_SIZE);
595
596         ret = btrfs_read_chunk_tree(chunk_root);
597         BUG_ON(ret);
598
599         blocksize = btrfs_level_size(tree_root,
600                                      btrfs_super_root_level(disk_super));
601
602         tree_root->node = read_tree_block(tree_root,
603                                           btrfs_super_root(disk_super),
604                                           blocksize);
605         BUG_ON(!tree_root->node);
606         ret = find_and_setup_root(tree_root, fs_info,
607                                   BTRFS_EXTENT_TREE_OBJECTID, extent_root);
608         BUG_ON(ret);
609         extent_root->track_dirty = 1;
610
611         ret = find_and_setup_root(tree_root, fs_info,
612                                   BTRFS_DEV_TREE_OBJECTID, dev_root);
613         BUG_ON(ret);
614         dev_root->track_dirty = 1;
615
616         ret = find_and_setup_root(tree_root, fs_info,
617                                   BTRFS_FS_TREE_OBJECTID, root);
618         BUG_ON(ret);
619         root->ref_cows = 1;
620         fs_info->generation = btrfs_super_generation(disk_super) + 1;
621         btrfs_read_block_groups(root);
622
623         fs_info->data_alloc_profile = (u64)-1;
624         fs_info->metadata_alloc_profile = (u64)-1;
625         fs_info->system_alloc_profile = fs_info->metadata_alloc_profile;
626
627         return root;
628 }
629
630 int write_all_supers(struct btrfs_root *root)
631 {
632         struct list_head *cur;
633         struct list_head *head = &root->fs_info->fs_devices->devices;
634         struct btrfs_device *dev;
635         struct extent_buffer *sb;
636         struct btrfs_dev_item *dev_item;
637         int ret;
638
639         sb = root->fs_info->sb_buffer;
640         dev_item = (struct btrfs_dev_item *)offsetof(struct btrfs_super_block,
641                                                       dev_item);
642         list_for_each(cur, head) {
643                 dev = list_entry(cur, struct btrfs_device, dev_list);
644                 btrfs_set_device_type(sb, dev_item, dev->type);
645                 btrfs_set_device_id(sb, dev_item, dev->devid);
646                 btrfs_set_device_total_bytes(sb, dev_item, dev->total_bytes);
647                 btrfs_set_device_bytes_used(sb, dev_item, dev->bytes_used);
648                 btrfs_set_device_io_align(sb, dev_item, dev->io_align);
649                 btrfs_set_device_io_width(sb, dev_item, dev->io_width);
650                 btrfs_set_device_sector_size(sb, dev_item, dev->sector_size);
651                 write_extent_buffer(sb, dev->uuid,
652                                     (unsigned long)btrfs_device_uuid(dev_item),
653                                     BTRFS_UUID_SIZE);
654                 sb->fd = dev->fd;
655                 sb->dev_bytenr = sb->start;
656                 btrfs_set_header_flag(sb, BTRFS_HEADER_FLAG_WRITTEN);
657                 csum_tree_block(root, sb, 0);
658                 ret = write_extent_to_disk(sb);
659                 BUG_ON(ret);
660         }
661         return 0;
662 }
663
664 int write_ctree_super(struct btrfs_trans_handle *trans,
665                       struct btrfs_root *root)
666 {
667         int ret;
668         struct btrfs_root *tree_root = root->fs_info->tree_root;
669         struct btrfs_root *chunk_root = root->fs_info->chunk_root;
670
671         if (root->fs_info->readonly)
672                 return 0;
673
674         btrfs_set_super_generation(&root->fs_info->super_copy,
675                                    trans->transid);
676         btrfs_set_super_root(&root->fs_info->super_copy,
677                              tree_root->node->start);
678         btrfs_set_super_root_level(&root->fs_info->super_copy,
679                                    btrfs_header_level(tree_root->node));
680         btrfs_set_super_chunk_root(&root->fs_info->super_copy,
681                                    chunk_root->node->start);
682         btrfs_set_super_chunk_root_level(&root->fs_info->super_copy,
683                                          btrfs_header_level(chunk_root->node));
684         write_extent_buffer(root->fs_info->sb_buffer,
685                             &root->fs_info->super_copy, 0,
686                             sizeof(root->fs_info->super_copy));
687         ret = write_all_supers(root);
688         if (ret)
689                 fprintf(stderr, "failed to write new super block err %d\n", ret);
690         return ret;
691 }
692
693 static int close_all_devices(struct btrfs_fs_info *fs_info)
694 {
695         struct list_head *list;
696         struct list_head *next;
697         struct btrfs_device *device;
698
699         return 0;
700
701         list = &fs_info->fs_devices->devices;
702         list_for_each(next, list) {
703                 device = list_entry(next, struct btrfs_device, dev_list);
704                 close(device->fd);
705         }
706         return 0;
707 }
708
709 int close_ctree(struct btrfs_root *root)
710 {
711         int ret;
712         struct btrfs_trans_handle *trans;
713         struct btrfs_fs_info *fs_info = root->fs_info;
714
715         trans = btrfs_start_transaction(root, 1);
716         btrfs_commit_transaction(trans, root);
717         trans = btrfs_start_transaction(root, 1);
718         ret = commit_tree_roots(trans, root->fs_info);
719         BUG_ON(ret);
720         ret = __commit_transaction(trans, root);
721         BUG_ON(ret);
722         write_ctree_super(trans, root);
723         btrfs_free_transaction(root, trans);
724         btrfs_free_block_groups(root->fs_info);
725         if (root->node)
726                 free_extent_buffer(root->node);
727         if (root->fs_info->extent_root->node)
728                 free_extent_buffer(root->fs_info->extent_root->node);
729         if (root->fs_info->tree_root->node)
730                 free_extent_buffer(root->fs_info->tree_root->node);
731         free_extent_buffer(root->commit_root);
732         free_extent_buffer(root->fs_info->sb_buffer);
733
734         if (root->fs_info->chunk_root->node);
735                 free_extent_buffer(root->fs_info->chunk_root->node);
736
737         if (root->fs_info->dev_root->node);
738                 free_extent_buffer(root->fs_info->dev_root->node);
739
740         close_all_devices(root->fs_info);
741         extent_io_tree_cleanup(&fs_info->extent_cache);
742         extent_io_tree_cleanup(&fs_info->free_space_cache);
743         extent_io_tree_cleanup(&fs_info->block_group_cache);
744         extent_io_tree_cleanup(&fs_info->pinned_extents);
745         extent_io_tree_cleanup(&fs_info->pending_del);
746         extent_io_tree_cleanup(&fs_info->extent_ins);
747
748         free(fs_info->tree_root);
749         free(fs_info->extent_root);
750         free(fs_info->fs_root);
751         free(fs_info->chunk_root);
752         free(fs_info->dev_root);
753         free(fs_info);
754
755         return 0;
756 }
757
758 int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
759                      struct extent_buffer *eb)
760 {
761         return clear_extent_buffer_dirty(eb);
762 }
763
764 int wait_on_tree_block_writeback(struct btrfs_root *root,
765                                  struct extent_buffer *eb)
766 {
767         return 0;
768 }
769
770 void btrfs_mark_buffer_dirty(struct extent_buffer *eb)
771 {
772         set_extent_buffer_dirty(eb);
773 }
774
775 int btrfs_buffer_uptodate(struct extent_buffer *eb)
776 {
777         return extent_buffer_uptodate(eb);
778 }
779
780 int btrfs_set_buffer_uptodate(struct extent_buffer *eb)
781 {
782         return set_extent_buffer_uptodate(eb);
783 }