blob: 88e21bdbc4780aadbb15b6a94d0e29f54c077508 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
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
Chris Masone20d96d2007-03-22 12:13:20 -040019#include <linux/fs.h>
Chris Masond98237b2007-03-28 13:57:48 -040020#include <linux/blkdev.h>
Chris Mason11bd1432007-06-22 14:16:24 -040021#include <linux/crc32c.h>
Chris Mason87cbda52007-03-28 19:44:27 -040022#include <linux/scatterlist.h>
Chris Mason22b0ebd2007-03-30 08:47:31 -040023#include <linux/swap.h>
Chris Mason0f7d52f2007-04-09 10:42:37 -040024#include <linux/radix-tree.h>
Chris Mason35b7e472007-05-02 15:53:43 -040025#include <linux/writeback.h>
Chris Mason5f39d392007-10-15 16:14:19 -040026#include <linux/buffer_head.h> // for block_sync_page
Chris Masoneb60cea2007-02-02 09:18:22 -050027#include "ctree.h"
28#include "disk-io.h"
Chris Masone089f052007-03-16 16:20:31 -040029#include "transaction.h"
Chris Mason0f7d52f2007-04-09 10:42:37 -040030#include "btrfs_inode.h"
Chris Masondb945352007-10-15 16:15:53 -040031#include "print-tree.h"
Chris Masoneb60cea2007-02-02 09:18:22 -050032
Chris Mason5f39d392007-10-15 16:14:19 -040033#if 0
34static int check_tree_block(struct btrfs_root *root, struct extent_buffer *buf)
Chris Mason7eccb902007-04-11 15:53:25 -040035{
Chris Mason5f39d392007-10-15 16:14:19 -040036 if (extent_buffer_blocknr(buf) != btrfs_header_blocknr(buf)) {
37 printk(KERN_CRIT "buf blocknr(buf) is %llu, header is %llu\n",
38 (unsigned long long)extent_buffer_blocknr(buf),
39 (unsigned long long)btrfs_header_blocknr(buf));
Chris Mason39279cc2007-06-12 06:35:45 -040040 return 1;
Chris Masond98237b2007-03-28 13:57:48 -040041 }
Chris Mason9a8dd152007-02-23 08:38:36 -050042 return 0;
Chris Masoneb60cea2007-02-02 09:18:22 -050043}
Chris Mason5f39d392007-10-15 16:14:19 -040044#endif
Chris Masoneb60cea2007-02-02 09:18:22 -050045
Chris Masond1310b22008-01-24 16:13:08 -050046static struct extent_io_ops btree_extent_io_ops;
Chris Mason0da54682007-11-07 21:08:01 -050047
Chris Mason5f39d392007-10-15 16:14:19 -040048struct extent_buffer *btrfs_find_tree_block(struct btrfs_root *root,
Chris Masondb945352007-10-15 16:15:53 -040049 u64 bytenr, u32 blocksize)
Chris Masoned2ff2c2007-03-01 18:59:40 -050050{
Chris Mason5f39d392007-10-15 16:14:19 -040051 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masonf510cfe2007-10-15 16:14:48 -040052 struct extent_buffer *eb;
Chris Masond1310b22008-01-24 16:13:08 -050053 eb = find_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
Chris Masondb945352007-10-15 16:15:53 -040054 bytenr, blocksize, GFP_NOFS);
Chris Masonf510cfe2007-10-15 16:14:48 -040055 return eb;
Chris Masoned2ff2c2007-03-01 18:59:40 -050056}
57
Chris Mason5f39d392007-10-15 16:14:19 -040058struct extent_buffer *btrfs_find_create_tree_block(struct btrfs_root *root,
Chris Masondb945352007-10-15 16:15:53 -040059 u64 bytenr, u32 blocksize)
Chris Masoneb60cea2007-02-02 09:18:22 -050060{
Chris Mason5f39d392007-10-15 16:14:19 -040061 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masonf510cfe2007-10-15 16:14:48 -040062 struct extent_buffer *eb;
Chris Masondb945352007-10-15 16:15:53 -040063
Chris Masond1310b22008-01-24 16:13:08 -050064 eb = alloc_extent_buffer(&BTRFS_I(btree_inode)->io_tree,
Chris Mason19c00dd2007-10-15 16:19:22 -040065 bytenr, blocksize, NULL, GFP_NOFS);
Chris Masonf510cfe2007-10-15 16:14:48 -040066 return eb;
Chris Mason5f39d392007-10-15 16:14:19 -040067}
Chris Mason22b0ebd2007-03-30 08:47:31 -040068
Chris Mason5f39d392007-10-15 16:14:19 -040069struct extent_map *btree_get_extent(struct inode *inode, struct page *page,
Chris Masond1310b22008-01-24 16:13:08 -050070 size_t page_offset, u64 start, u64 len,
Chris Mason5f39d392007-10-15 16:14:19 -040071 int create)
72{
73 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
74 struct extent_map *em;
75 int ret;
Chris Masond98237b2007-03-28 13:57:48 -040076
Chris Mason5f39d392007-10-15 16:14:19 -040077again:
Chris Masond1310b22008-01-24 16:13:08 -050078 spin_lock(&em_tree->lock);
79 em = lookup_extent_mapping(em_tree, start, len);
80 spin_unlock(&em_tree->lock);
Chris Mason5f39d392007-10-15 16:14:19 -040081 if (em) {
82 goto out;
83 }
84 em = alloc_extent_map(GFP_NOFS);
85 if (!em) {
86 em = ERR_PTR(-ENOMEM);
87 goto out;
88 }
89 em->start = 0;
Chris Masond1310b22008-01-24 16:13:08 -050090 em->len = i_size_read(inode);
Chris Mason5f39d392007-10-15 16:14:19 -040091 em->block_start = 0;
Chris Mason5f39d392007-10-15 16:14:19 -040092 em->bdev = inode->i_sb->s_bdev;
Chris Masond1310b22008-01-24 16:13:08 -050093
94 spin_lock(&em_tree->lock);
Chris Mason5f39d392007-10-15 16:14:19 -040095 ret = add_extent_mapping(em_tree, em);
Chris Masond1310b22008-01-24 16:13:08 -050096 spin_unlock(&em_tree->lock);
97
Chris Mason5f39d392007-10-15 16:14:19 -040098 if (ret == -EEXIST) {
99 free_extent_map(em);
100 em = NULL;
101 goto again;
102 } else if (ret) {
103 em = ERR_PTR(ret);
104 }
105out:
106 return em;
107}
108
Chris Mason19c00dd2007-10-15 16:19:22 -0400109u32 btrfs_csum_data(struct btrfs_root *root, char *data, u32 seed, size_t len)
110{
111 return crc32c(seed, data, len);
112}
113
114void btrfs_csum_final(u32 crc, char *result)
115{
116 *(__le32 *)result = ~cpu_to_le32(crc);
117}
118
119static int csum_tree_block(struct btrfs_root *root, struct extent_buffer *buf,
120 int verify)
121{
122 char result[BTRFS_CRC32_SIZE];
123 unsigned long len;
124 unsigned long cur_len;
125 unsigned long offset = BTRFS_CSUM_SIZE;
126 char *map_token = NULL;
127 char *kaddr;
128 unsigned long map_start;
129 unsigned long map_len;
130 int err;
131 u32 crc = ~(u32)0;
132
133 len = buf->len - offset;
134 while(len > 0) {
135 err = map_private_extent_buffer(buf, offset, 32,
136 &map_token, &kaddr,
137 &map_start, &map_len, KM_USER0);
138 if (err) {
139 printk("failed to map extent buffer! %lu\n",
140 offset);
141 return 1;
142 }
143 cur_len = min(len, map_len - (offset - map_start));
144 crc = btrfs_csum_data(root, kaddr + offset - map_start,
145 crc, cur_len);
146 len -= cur_len;
147 offset += cur_len;
148 unmap_extent_buffer(buf, map_token, KM_USER0);
149 }
150 btrfs_csum_final(crc, result);
151
152 if (verify) {
Chris Masone4204de2008-01-08 15:46:27 -0500153 int from_this_trans = 0;
154
155 if (root->fs_info->running_transaction &&
156 btrfs_header_generation(buf) ==
157 root->fs_info->running_transaction->transid)
158 from_this_trans = 1;
159
160 /* FIXME, this is not good */
161 if (from_this_trans == 0 &&
162 memcmp_extent_buffer(buf, result, 0, BTRFS_CRC32_SIZE)) {
163 u32 val;
164 u32 found = 0;
165 memcpy(&found, result, BTRFS_CRC32_SIZE);
166
167 read_extent_buffer(buf, &val, 0, BTRFS_CRC32_SIZE);
168 printk("btrfs: %s checksum verify failed on %llu "
169 "wanted %X found %X from_this_trans %d\n",
Chris Mason19c00dd2007-10-15 16:19:22 -0400170 root->fs_info->sb->s_id,
Chris Masone4204de2008-01-08 15:46:27 -0500171 buf->start, val, found, from_this_trans);
Chris Mason19c00dd2007-10-15 16:19:22 -0400172 return 1;
173 }
174 } else {
175 write_extent_buffer(buf, result, 0, BTRFS_CRC32_SIZE);
176 }
177 return 0;
178}
179
180
181int csum_dirty_buffer(struct btrfs_root *root, struct page *page)
182{
Chris Masond1310b22008-01-24 16:13:08 -0500183 struct extent_io_tree *tree;
Chris Mason35ebb932007-10-30 16:56:53 -0400184 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason19c00dd2007-10-15 16:19:22 -0400185 u64 found_start;
186 int found_level;
187 unsigned long len;
188 struct extent_buffer *eb;
Chris Masond1310b22008-01-24 16:13:08 -0500189 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason19c00dd2007-10-15 16:19:22 -0400190
191 if (page->private == EXTENT_PAGE_PRIVATE)
192 goto out;
193 if (!page->private)
194 goto out;
195 len = page->private >> 2;
196 if (len == 0) {
197 WARN_ON(1);
198 }
199 eb = alloc_extent_buffer(tree, start, len, page, GFP_NOFS);
Chris Masona86c12c2008-02-07 10:50:54 -0500200 read_extent_buffer_pages(tree, eb, start + PAGE_CACHE_SIZE, 1,
201 btree_get_extent);
Chris Masone18e4802008-01-18 10:54:22 -0500202 btrfs_clear_buffer_defrag(eb);
Chris Mason19c00dd2007-10-15 16:19:22 -0400203 found_start = btrfs_header_bytenr(eb);
204 if (found_start != start) {
205 printk("warning: eb start incorrect %Lu buffer %Lu len %lu\n",
206 start, found_start, len);
Chris Mason55c69072008-01-09 15:55:33 -0500207 WARN_ON(1);
208 goto err;
209 }
210 if (eb->first_page != page) {
211 printk("bad first page %lu %lu\n", eb->first_page->index,
212 page->index);
213 WARN_ON(1);
214 goto err;
215 }
216 if (!PageUptodate(page)) {
217 printk("csum not up to date page %lu\n", page->index);
218 WARN_ON(1);
219 goto err;
Chris Mason19c00dd2007-10-15 16:19:22 -0400220 }
221 found_level = btrfs_header_level(eb);
222 csum_tree_block(root, eb, 0);
Chris Mason55c69072008-01-09 15:55:33 -0500223err:
Chris Mason19c00dd2007-10-15 16:19:22 -0400224 free_extent_buffer(eb);
225out:
226 return 0;
227}
228
Chris Mason0da54682007-11-07 21:08:01 -0500229static int btree_writepage_io_hook(struct page *page, u64 start, u64 end)
230{
231 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
232
233 csum_dirty_buffer(root, page);
234 return 0;
235}
236
Chris Mason5f39d392007-10-15 16:14:19 -0400237static int btree_writepage(struct page *page, struct writeback_control *wbc)
238{
Chris Masond1310b22008-01-24 16:13:08 -0500239 struct extent_io_tree *tree;
240 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400241 return extent_write_full_page(tree, page, btree_get_extent, wbc);
242}
Chris Mason0da54682007-11-07 21:08:01 -0500243
244static int btree_writepages(struct address_space *mapping,
245 struct writeback_control *wbc)
246{
Chris Masond1310b22008-01-24 16:13:08 -0500247 struct extent_io_tree *tree;
248 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500249 if (wbc->sync_mode == WB_SYNC_NONE) {
Chris Mason793955b2007-11-26 16:34:41 -0800250 u64 num_dirty;
251 u64 start = 0;
252 unsigned long thresh = 96 * 1024 * 1024;
Chris Mason448d6402007-11-27 07:52:01 -0800253
254 if (wbc->for_kupdate)
255 return 0;
256
Chris Masonca664622007-11-27 11:16:35 -0500257 if (current_is_pdflush()) {
258 thresh = 96 * 1024 * 1024;
259 } else {
260 thresh = 8 * 1024 * 1024;
261 }
Chris Mason1832a6d2007-12-21 16:27:21 -0500262 num_dirty = count_range_bits(tree, &start, (u64)-1,
263 thresh, EXTENT_DIRTY);
Chris Mason793955b2007-11-26 16:34:41 -0800264 if (num_dirty < thresh) {
265 return 0;
266 }
267 }
Chris Mason0da54682007-11-07 21:08:01 -0500268 return extent_writepages(tree, mapping, btree_get_extent, wbc);
269}
270
Chris Mason5f39d392007-10-15 16:14:19 -0400271int btree_readpage(struct file *file, struct page *page)
272{
Chris Masond1310b22008-01-24 16:13:08 -0500273 struct extent_io_tree *tree;
274 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400275 return extent_read_full_page(tree, page, btree_get_extent);
276}
277
Chris Mason70dec802008-01-29 09:59:12 -0500278static int btree_releasepage(struct page *page, gfp_t gfp_flags)
Chris Mason5f39d392007-10-15 16:14:19 -0400279{
Chris Masond1310b22008-01-24 16:13:08 -0500280 struct extent_io_tree *tree;
281 struct extent_map_tree *map;
Chris Mason5f39d392007-10-15 16:14:19 -0400282 int ret;
283
Chris Masond1310b22008-01-24 16:13:08 -0500284 tree = &BTRFS_I(page->mapping->host)->io_tree;
285 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -0500286 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Mason5f39d392007-10-15 16:14:19 -0400287 if (ret == 1) {
288 ClearPagePrivate(page);
289 set_page_private(page, 0);
290 page_cache_release(page);
291 }
Chris Masond98237b2007-03-28 13:57:48 -0400292 return ret;
Chris Masone20d96d2007-03-22 12:13:20 -0400293}
Chris Mason123abc82007-03-14 14:14:43 -0400294
Chris Mason5f39d392007-10-15 16:14:19 -0400295static void btree_invalidatepage(struct page *page, unsigned long offset)
Chris Masond98237b2007-03-28 13:57:48 -0400296{
Chris Masond1310b22008-01-24 16:13:08 -0500297 struct extent_io_tree *tree;
298 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400299 extent_invalidatepage(tree, page, offset);
300 btree_releasepage(page, GFP_NOFS);
Chris Masond98237b2007-03-28 13:57:48 -0400301}
302
Chris Mason5f39d392007-10-15 16:14:19 -0400303#if 0
Chris Masond98237b2007-03-28 13:57:48 -0400304static int btree_writepage(struct page *page, struct writeback_control *wbc)
305{
Chris Mason87cbda52007-03-28 19:44:27 -0400306 struct buffer_head *bh;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400307 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Chris Mason87cbda52007-03-28 19:44:27 -0400308 struct buffer_head *head;
Chris Mason87cbda52007-03-28 19:44:27 -0400309 if (!page_has_buffers(page)) {
310 create_empty_buffers(page, root->fs_info->sb->s_blocksize,
311 (1 << BH_Dirty)|(1 << BH_Uptodate));
312 }
313 head = page_buffers(page);
314 bh = head;
315 do {
316 if (buffer_dirty(bh))
317 csum_tree_block(root, bh, 0);
318 bh = bh->b_this_page;
319 } while (bh != head);
Chris Masond98237b2007-03-28 13:57:48 -0400320 return block_write_full_page(page, btree_get_block, wbc);
321}
Chris Mason5f39d392007-10-15 16:14:19 -0400322#endif
Chris Masond98237b2007-03-28 13:57:48 -0400323
324static struct address_space_operations btree_aops = {
325 .readpage = btree_readpage,
326 .writepage = btree_writepage,
Chris Mason0da54682007-11-07 21:08:01 -0500327 .writepages = btree_writepages,
Chris Mason5f39d392007-10-15 16:14:19 -0400328 .releasepage = btree_releasepage,
329 .invalidatepage = btree_invalidatepage,
Chris Masond98237b2007-03-28 13:57:48 -0400330 .sync_page = block_sync_page,
331};
332
Chris Masondb945352007-10-15 16:15:53 -0400333int readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize)
Chris Mason090d1872007-05-01 08:53:32 -0400334{
Chris Mason5f39d392007-10-15 16:14:19 -0400335 struct extent_buffer *buf = NULL;
336 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masonde428b62007-05-18 13:28:27 -0400337 int ret = 0;
Chris Mason090d1872007-05-01 08:53:32 -0400338
Chris Masondb945352007-10-15 16:15:53 -0400339 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -0400340 if (!buf)
Chris Mason090d1872007-05-01 08:53:32 -0400341 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500342 read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
Chris Masona86c12c2008-02-07 10:50:54 -0500343 buf, 0, 0, btree_get_extent);
Chris Mason5f39d392007-10-15 16:14:19 -0400344 free_extent_buffer(buf);
Chris Masonde428b62007-05-18 13:28:27 -0400345 return ret;
Chris Mason090d1872007-05-01 08:53:32 -0400346}
347
Chris Masondb945352007-10-15 16:15:53 -0400348struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 bytenr,
349 u32 blocksize)
Chris Masone20d96d2007-03-22 12:13:20 -0400350{
Chris Mason5f39d392007-10-15 16:14:19 -0400351 struct extent_buffer *buf = NULL;
352 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500353 struct extent_io_tree *io_tree;
Chris Masone4204de2008-01-08 15:46:27 -0500354 u64 end;
Chris Mason19c00dd2007-10-15 16:19:22 -0400355 int ret;
356
Chris Masond1310b22008-01-24 16:13:08 -0500357 io_tree = &BTRFS_I(btree_inode)->io_tree;
Chris Masone20d96d2007-03-22 12:13:20 -0400358
Chris Masondb945352007-10-15 16:15:53 -0400359 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -0400360 if (!buf)
361 return NULL;
Chris Masona86c12c2008-02-07 10:50:54 -0500362 read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree, buf, 0, 1,
363 btree_get_extent);
Chris Masone4204de2008-01-08 15:46:27 -0500364
365 if (buf->flags & EXTENT_CSUM)
Chris Mason19c00dd2007-10-15 16:19:22 -0400366 return buf;
Chris Masone4204de2008-01-08 15:46:27 -0500367
368 end = buf->start + PAGE_CACHE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -0500369 if (test_range_bit(io_tree, buf->start, end, EXTENT_CSUM, 1)) {
Chris Mason19c00dd2007-10-15 16:19:22 -0400370 buf->flags |= EXTENT_CSUM;
371 return buf;
372 }
Chris Masone4204de2008-01-08 15:46:27 -0500373
Chris Masond1310b22008-01-24 16:13:08 -0500374 lock_extent(io_tree, buf->start, end, GFP_NOFS);
Chris Masone4204de2008-01-08 15:46:27 -0500375
Chris Masond1310b22008-01-24 16:13:08 -0500376 if (test_range_bit(io_tree, buf->start, end, EXTENT_CSUM, 1)) {
Chris Masone4204de2008-01-08 15:46:27 -0500377 buf->flags |= EXTENT_CSUM;
378 goto out_unlock;
379 }
380
Chris Mason19c00dd2007-10-15 16:19:22 -0400381 ret = csum_tree_block(root, buf, 1);
Chris Masond1310b22008-01-24 16:13:08 -0500382 set_extent_bits(io_tree, buf->start, end, EXTENT_CSUM, GFP_NOFS);
Chris Mason19c00dd2007-10-15 16:19:22 -0400383 buf->flags |= EXTENT_CSUM;
Chris Masone4204de2008-01-08 15:46:27 -0500384
385out_unlock:
Chris Masond1310b22008-01-24 16:13:08 -0500386 unlock_extent(io_tree, buf->start, end, GFP_NOFS);
Chris Mason5f39d392007-10-15 16:14:19 -0400387 return buf;
Chris Masoneb60cea2007-02-02 09:18:22 -0500388}
389
Chris Masone089f052007-03-16 16:20:31 -0400390int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400391 struct extent_buffer *buf)
Chris Masoned2ff2c2007-03-01 18:59:40 -0500392{
Chris Mason5f39d392007-10-15 16:14:19 -0400393 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason55c69072008-01-09 15:55:33 -0500394 if (btrfs_header_generation(buf) ==
395 root->fs_info->running_transaction->transid)
Chris Masond1310b22008-01-24 16:13:08 -0500396 clear_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree,
Chris Mason55c69072008-01-09 15:55:33 -0500397 buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400398 return 0;
399}
400
401int wait_on_tree_block_writeback(struct btrfs_root *root,
402 struct extent_buffer *buf)
403{
404 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500405 wait_on_extent_buffer_writeback(&BTRFS_I(btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -0400406 buf);
407 return 0;
408}
409
Chris Masondb945352007-10-15 16:15:53 -0400410static int __setup_root(u32 nodesize, u32 leafsize, u32 sectorsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500411 u32 stripesize, struct btrfs_root *root,
Chris Mason9f5fae22007-03-20 14:38:32 -0400412 struct btrfs_fs_info *fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -0400413 u64 objectid)
Chris Masond97e63b2007-02-20 16:40:44 -0500414{
Chris Masoncfaa7292007-02-21 17:04:57 -0500415 root->node = NULL;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400416 root->inode = NULL;
Chris Masona28ec192007-03-06 20:08:01 -0500417 root->commit_root = NULL;
Chris Masondb945352007-10-15 16:15:53 -0400418 root->sectorsize = sectorsize;
419 root->nodesize = nodesize;
420 root->leafsize = leafsize;
Chris Mason87ee04e2007-11-30 11:30:34 -0500421 root->stripesize = stripesize;
Chris Mason123abc82007-03-14 14:14:43 -0400422 root->ref_cows = 0;
Chris Mason9f5fae22007-03-20 14:38:32 -0400423 root->fs_info = fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400424 root->objectid = objectid;
425 root->last_trans = 0;
Chris Mason1b05da22007-04-10 12:13:09 -0400426 root->highest_inode = 0;
427 root->last_inode_alloc = 0;
Josef Bacik58176a92007-08-29 15:47:34 -0400428 root->name = NULL;
Chris Mason4313b392008-01-03 09:08:48 -0500429 root->in_sysfs = 0;
Chris Mason3768f362007-03-13 16:47:54 -0400430 memset(&root->root_key, 0, sizeof(root->root_key));
431 memset(&root->root_item, 0, sizeof(root->root_item));
Chris Mason6702ed42007-08-07 16:15:09 -0400432 memset(&root->defrag_progress, 0, sizeof(root->defrag_progress));
Josef Bacik58176a92007-08-29 15:47:34 -0400433 memset(&root->root_kobj, 0, sizeof(root->root_kobj));
434 init_completion(&root->kobj_unregister);
Chris Mason6702ed42007-08-07 16:15:09 -0400435 root->defrag_running = 0;
436 root->defrag_level = 0;
Chris Mason4d775672007-04-20 20:23:12 -0400437 root->root_key.objectid = objectid;
Chris Mason3768f362007-03-13 16:47:54 -0400438 return 0;
439}
440
Chris Masondb945352007-10-15 16:15:53 -0400441static int find_and_setup_root(struct btrfs_root *tree_root,
Chris Mason9f5fae22007-03-20 14:38:32 -0400442 struct btrfs_fs_info *fs_info,
443 u64 objectid,
Chris Masone20d96d2007-03-22 12:13:20 -0400444 struct btrfs_root *root)
Chris Mason3768f362007-03-13 16:47:54 -0400445{
446 int ret;
Chris Masondb945352007-10-15 16:15:53 -0400447 u32 blocksize;
Chris Mason3768f362007-03-13 16:47:54 -0400448
Chris Masondb945352007-10-15 16:15:53 -0400449 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500450 tree_root->sectorsize, tree_root->stripesize,
451 root, fs_info, objectid);
Chris Mason3768f362007-03-13 16:47:54 -0400452 ret = btrfs_find_last_root(tree_root, objectid,
453 &root->root_item, &root->root_key);
454 BUG_ON(ret);
455
Chris Masondb945352007-10-15 16:15:53 -0400456 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
457 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
458 blocksize);
Chris Mason3768f362007-03-13 16:47:54 -0400459 BUG_ON(!root->node);
Chris Masond97e63b2007-02-20 16:40:44 -0500460 return 0;
461}
462
Chris Mason5eda7b52007-06-22 14:16:25 -0400463struct btrfs_root *btrfs_read_fs_root_no_radix(struct btrfs_fs_info *fs_info,
464 struct btrfs_key *location)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400465{
466 struct btrfs_root *root;
467 struct btrfs_root *tree_root = fs_info->tree_root;
468 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400469 struct extent_buffer *l;
Chris Mason1b05da22007-04-10 12:13:09 -0400470 u64 highest_inode;
Chris Masondb945352007-10-15 16:15:53 -0400471 u32 blocksize;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400472 int ret = 0;
473
Chris Mason5eda7b52007-06-22 14:16:25 -0400474 root = kzalloc(sizeof(*root), GFP_NOFS);
Chris Mason0cf6c622007-06-09 09:22:25 -0400475 if (!root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400476 return ERR_PTR(-ENOMEM);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400477 if (location->offset == (u64)-1) {
Chris Masondb945352007-10-15 16:15:53 -0400478 ret = find_and_setup_root(tree_root, fs_info,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400479 location->objectid, root);
480 if (ret) {
Chris Mason0f7d52f2007-04-09 10:42:37 -0400481 kfree(root);
482 return ERR_PTR(ret);
483 }
484 goto insert;
485 }
486
Chris Masondb945352007-10-15 16:15:53 -0400487 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500488 tree_root->sectorsize, tree_root->stripesize,
489 root, fs_info, location->objectid);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400490
491 path = btrfs_alloc_path();
492 BUG_ON(!path);
493 ret = btrfs_search_slot(NULL, tree_root, location, path, 0, 0);
494 if (ret != 0) {
Chris Mason0f7d52f2007-04-09 10:42:37 -0400495 if (ret > 0)
496 ret = -ENOENT;
497 goto out;
498 }
Chris Mason5f39d392007-10-15 16:14:19 -0400499 l = path->nodes[0];
500 read_extent_buffer(l, &root->root_item,
501 btrfs_item_ptr_offset(l, path->slots[0]),
Chris Mason0f7d52f2007-04-09 10:42:37 -0400502 sizeof(root->root_item));
Yan Zheng44b36eb2007-10-19 09:22:56 -0400503 memcpy(&root->root_key, location, sizeof(*location));
Chris Mason0f7d52f2007-04-09 10:42:37 -0400504 ret = 0;
505out:
506 btrfs_release_path(root, path);
507 btrfs_free_path(path);
508 if (ret) {
509 kfree(root);
510 return ERR_PTR(ret);
511 }
Chris Masondb945352007-10-15 16:15:53 -0400512 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
513 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
514 blocksize);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400515 BUG_ON(!root->node);
516insert:
Chris Mason0f7d52f2007-04-09 10:42:37 -0400517 root->ref_cows = 1;
Chris Mason5eda7b52007-06-22 14:16:25 -0400518 ret = btrfs_find_highest_inode(root, &highest_inode);
519 if (ret == 0) {
520 root->highest_inode = highest_inode;
521 root->last_inode_alloc = highest_inode;
522 }
523 return root;
524}
525
Chris Masondc17ff82008-01-08 15:46:30 -0500526struct btrfs_root *btrfs_lookup_fs_root(struct btrfs_fs_info *fs_info,
527 u64 root_objectid)
528{
529 struct btrfs_root *root;
530
531 if (root_objectid == BTRFS_ROOT_TREE_OBJECTID)
532 return fs_info->tree_root;
533 if (root_objectid == BTRFS_EXTENT_TREE_OBJECTID)
534 return fs_info->extent_root;
535
536 root = radix_tree_lookup(&fs_info->fs_roots_radix,
537 (unsigned long)root_objectid);
538 return root;
539}
540
Chris Masonedbd8d42007-12-21 16:27:24 -0500541struct btrfs_root *btrfs_read_fs_root_no_name(struct btrfs_fs_info *fs_info,
542 struct btrfs_key *location)
Chris Mason5eda7b52007-06-22 14:16:25 -0400543{
544 struct btrfs_root *root;
545 int ret;
546
Chris Masonedbd8d42007-12-21 16:27:24 -0500547 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
548 return fs_info->tree_root;
549 if (location->objectid == BTRFS_EXTENT_TREE_OBJECTID)
550 return fs_info->extent_root;
551
Chris Mason5eda7b52007-06-22 14:16:25 -0400552 root = radix_tree_lookup(&fs_info->fs_roots_radix,
553 (unsigned long)location->objectid);
554 if (root)
555 return root;
556
557 root = btrfs_read_fs_root_no_radix(fs_info, location);
558 if (IS_ERR(root))
559 return root;
Chris Mason2619ba12007-04-10 16:58:11 -0400560 ret = radix_tree_insert(&fs_info->fs_roots_radix,
561 (unsigned long)root->root_key.objectid,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400562 root);
563 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400564 free_extent_buffer(root->node);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400565 kfree(root);
566 return ERR_PTR(ret);
567 }
Chris Masonedbd8d42007-12-21 16:27:24 -0500568 ret = btrfs_find_dead_roots(fs_info->tree_root,
569 root->root_key.objectid, root);
570 BUG_ON(ret);
571
572 return root;
573}
574
575struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
576 struct btrfs_key *location,
577 const char *name, int namelen)
578{
579 struct btrfs_root *root;
580 int ret;
581
582 root = btrfs_read_fs_root_no_name(fs_info, location);
583 if (!root)
584 return NULL;
Josef Bacik58176a92007-08-29 15:47:34 -0400585
Chris Mason4313b392008-01-03 09:08:48 -0500586 if (root->in_sysfs)
587 return root;
588
Josef Bacik58176a92007-08-29 15:47:34 -0400589 ret = btrfs_set_root_name(root, name, namelen);
590 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400591 free_extent_buffer(root->node);
Josef Bacik58176a92007-08-29 15:47:34 -0400592 kfree(root);
593 return ERR_PTR(ret);
594 }
595
596 ret = btrfs_sysfs_add_root(root);
597 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400598 free_extent_buffer(root->node);
Josef Bacik58176a92007-08-29 15:47:34 -0400599 kfree(root->name);
600 kfree(root);
601 return ERR_PTR(ret);
602 }
Chris Mason4313b392008-01-03 09:08:48 -0500603 root->in_sysfs = 1;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400604 return root;
605}
Chris Mason19c00dd2007-10-15 16:19:22 -0400606#if 0
607static int add_hasher(struct btrfs_fs_info *info, char *type) {
608 struct btrfs_hasher *hasher;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400609
Chris Mason19c00dd2007-10-15 16:19:22 -0400610 hasher = kmalloc(sizeof(*hasher), GFP_NOFS);
611 if (!hasher)
612 return -ENOMEM;
613 hasher->hash_tfm = crypto_alloc_hash(type, 0, CRYPTO_ALG_ASYNC);
614 if (!hasher->hash_tfm) {
615 kfree(hasher);
616 return -EINVAL;
617 }
618 spin_lock(&info->hash_lock);
619 list_add(&hasher->list, &info->hashers);
620 spin_unlock(&info->hash_lock);
621 return 0;
622}
623#endif
Chris Mason2c90e5d2007-04-02 10:50:19 -0400624struct btrfs_root *open_ctree(struct super_block *sb)
Chris Masoneb60cea2007-02-02 09:18:22 -0500625{
Chris Masondb945352007-10-15 16:15:53 -0400626 u32 sectorsize;
627 u32 nodesize;
628 u32 leafsize;
629 u32 blocksize;
Chris Mason87ee04e2007-11-30 11:30:34 -0500630 u32 stripesize;
Chris Masone20d96d2007-03-22 12:13:20 -0400631 struct btrfs_root *extent_root = kmalloc(sizeof(struct btrfs_root),
632 GFP_NOFS);
633 struct btrfs_root *tree_root = kmalloc(sizeof(struct btrfs_root),
634 GFP_NOFS);
Chris Masone20d96d2007-03-22 12:13:20 -0400635 struct btrfs_fs_info *fs_info = kmalloc(sizeof(*fs_info),
636 GFP_NOFS);
Chris Masoneb60cea2007-02-02 09:18:22 -0500637 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -0400638 int err = -EIO;
Chris Mason2c90e5d2007-04-02 10:50:19 -0400639 struct btrfs_super_block *disk_super;
Chris Masoneb60cea2007-02-02 09:18:22 -0500640
Chris Mason39279cc2007-06-12 06:35:45 -0400641 if (!extent_root || !tree_root || !fs_info) {
642 err = -ENOMEM;
643 goto fail;
644 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400645 INIT_RADIX_TREE(&fs_info->fs_roots_radix, GFP_NOFS);
Chris Mason8fd17792007-04-19 21:01:03 -0400646 INIT_LIST_HEAD(&fs_info->trans_list);
Chris Masonfacda1e2007-06-08 18:11:48 -0400647 INIT_LIST_HEAD(&fs_info->dead_roots);
Chris Mason19c00dd2007-10-15 16:19:22 -0400648 INIT_LIST_HEAD(&fs_info->hashers);
649 spin_lock_init(&fs_info->hash_lock);
Chris Mason1832a6d2007-12-21 16:27:21 -0500650 spin_lock_init(&fs_info->delalloc_lock);
Chris Masoncee36a02008-01-15 08:40:48 -0500651 spin_lock_init(&fs_info->new_trans_lock);
Chris Mason19c00dd2007-10-15 16:19:22 -0400652
Josef Bacik58176a92007-08-29 15:47:34 -0400653 memset(&fs_info->super_kobj, 0, sizeof(fs_info->super_kobj));
654 init_completion(&fs_info->kobj_unregister);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400655 sb_set_blocksize(sb, 4096);
Chris Mason9f5fae22007-03-20 14:38:32 -0400656 fs_info->running_transaction = NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400657 fs_info->last_trans_committed = 0;
Chris Mason9f5fae22007-03-20 14:38:32 -0400658 fs_info->tree_root = tree_root;
659 fs_info->extent_root = extent_root;
Chris Masone20d96d2007-03-22 12:13:20 -0400660 fs_info->sb = sb;
Chris Masone2008b62008-01-08 15:46:30 -0500661 fs_info->throttles = 0;
Chris Masonb6cda9b2007-12-14 15:30:32 -0500662 fs_info->mount_opt = 0;
Chris Masonc59f8952007-12-17 20:14:04 -0500663 fs_info->max_extent = (u64)-1;
Chris Mason6f568d32008-01-29 16:03:38 -0500664 fs_info->max_inline = 8192 * 1024;
Chris Mason1832a6d2007-12-21 16:27:21 -0500665 fs_info->delalloc_bytes = 0;
Chris Masond98237b2007-03-28 13:57:48 -0400666 fs_info->btree_inode = new_inode(sb);
667 fs_info->btree_inode->i_ino = 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -0400668 fs_info->btree_inode->i_nlink = 1;
Chris Masond98237b2007-03-28 13:57:48 -0400669 fs_info->btree_inode->i_size = sb->s_bdev->bd_inode->i_size;
670 fs_info->btree_inode->i_mapping->a_ops = &btree_aops;
Chris Masond1310b22008-01-24 16:13:08 -0500671 extent_io_tree_init(&BTRFS_I(fs_info->btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -0400672 fs_info->btree_inode->i_mapping,
673 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -0500674 extent_map_tree_init(&BTRFS_I(fs_info->btree_inode)->extent_tree,
675 GFP_NOFS);
Chris Mason0da54682007-11-07 21:08:01 -0500676
Chris Masond1310b22008-01-24 16:13:08 -0500677 BTRFS_I(fs_info->btree_inode)->io_tree.ops = &btree_extent_io_ops;
678
679 extent_io_tree_init(&fs_info->free_space_cache,
Chris Masonf510cfe2007-10-15 16:14:48 -0400680 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -0500681 extent_io_tree_init(&fs_info->block_group_cache,
Chris Mason96b51792007-10-15 16:15:19 -0400682 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -0500683 extent_io_tree_init(&fs_info->pinned_extents,
Chris Mason1a5bc162007-10-15 16:15:26 -0400684 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -0500685 extent_io_tree_init(&fs_info->pending_del,
Chris Mason1a5bc162007-10-15 16:15:26 -0400686 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -0500687 extent_io_tree_init(&fs_info->extent_ins,
Chris Mason1a5bc162007-10-15 16:15:26 -0400688 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masone66f7092007-04-20 13:16:02 -0400689 fs_info->do_barriers = 1;
Chris Masonfacda1e2007-06-08 18:11:48 -0400690 fs_info->closing = 0;
Yan324ae4d2007-11-16 14:57:08 -0500691 fs_info->total_pinned = 0;
Chris Masone18e4802008-01-18 10:54:22 -0500692 fs_info->last_alloc = 0;
Chris Mason4529ba42008-01-31 16:45:07 -0500693 fs_info->last_data_alloc = 0;
Chris Masone18e4802008-01-18 10:54:22 -0500694
Chris Mason6da6aba2007-12-18 16:15:09 -0500695#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
696 INIT_WORK(&fs_info->trans_work, btrfs_transaction_cleaner, fs_info);
697#else
Chris Mason08607c12007-06-08 15:33:54 -0400698 INIT_DELAYED_WORK(&fs_info->trans_work, btrfs_transaction_cleaner);
Chris Mason6da6aba2007-12-18 16:15:09 -0500699#endif
Chris Mason0f7d52f2007-04-09 10:42:37 -0400700 BTRFS_I(fs_info->btree_inode)->root = tree_root;
701 memset(&BTRFS_I(fs_info->btree_inode)->location, 0,
702 sizeof(struct btrfs_key));
Chris Mason22b0ebd2007-03-30 08:47:31 -0400703 insert_inode_hash(fs_info->btree_inode);
Chris Masond98237b2007-03-28 13:57:48 -0400704 mapping_set_gfp_mask(fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -0400705
Chris Mason79154b12007-03-22 15:59:16 -0400706 mutex_init(&fs_info->trans_mutex);
Chris Masond561c022007-03-23 19:47:49 -0400707 mutex_init(&fs_info->fs_mutex);
Chris Mason3768f362007-03-13 16:47:54 -0400708
Chris Mason19c00dd2007-10-15 16:19:22 -0400709#if 0
710 ret = add_hasher(fs_info, "crc32c");
711 if (ret) {
712 printk("btrfs: failed hash setup, modprobe cryptomgr?\n");
713 err = -ENOMEM;
714 goto fail_iput;
715 }
716#endif
Chris Mason87ee04e2007-11-30 11:30:34 -0500717 __setup_root(512, 512, 512, 512, tree_root,
Chris Mason2c90e5d2007-04-02 10:50:19 -0400718 fs_info, BTRFS_ROOT_TREE_OBJECTID);
Chris Mason7eccb902007-04-11 15:53:25 -0400719
Chris Mason2c90e5d2007-04-02 10:50:19 -0400720 fs_info->sb_buffer = read_tree_block(tree_root,
Chris Masondb945352007-10-15 16:15:53 -0400721 BTRFS_SUPER_INFO_OFFSET,
722 512);
Chris Masond98237b2007-03-28 13:57:48 -0400723
Chris Mason0f7d52f2007-04-09 10:42:37 -0400724 if (!fs_info->sb_buffer)
Chris Mason39279cc2007-06-12 06:35:45 -0400725 goto fail_iput;
Chris Mason39279cc2007-06-12 06:35:45 -0400726
Chris Mason5f39d392007-10-15 16:14:19 -0400727 read_extent_buffer(fs_info->sb_buffer, &fs_info->super_copy, 0,
728 sizeof(fs_info->super_copy));
729
730 read_extent_buffer(fs_info->sb_buffer, fs_info->fsid,
731 (unsigned long)btrfs_super_fsid(fs_info->sb_buffer),
732 BTRFS_FSID_SIZE);
733 disk_super = &fs_info->super_copy;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400734 if (!btrfs_super_root(disk_super))
Chris Mason39279cc2007-06-12 06:35:45 -0400735 goto fail_sb_buffer;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400736
Chris Masondb945352007-10-15 16:15:53 -0400737 nodesize = btrfs_super_nodesize(disk_super);
738 leafsize = btrfs_super_leafsize(disk_super);
739 sectorsize = btrfs_super_sectorsize(disk_super);
Chris Mason87ee04e2007-11-30 11:30:34 -0500740 stripesize = btrfs_super_stripesize(disk_super);
Chris Masondb945352007-10-15 16:15:53 -0400741 tree_root->nodesize = nodesize;
742 tree_root->leafsize = leafsize;
743 tree_root->sectorsize = sectorsize;
Chris Mason87ee04e2007-11-30 11:30:34 -0500744 tree_root->stripesize = stripesize;
Chris Masonff79f812007-10-15 16:22:25 -0400745 sb_set_blocksize(sb, sectorsize);
Chris Masondb945352007-10-15 16:15:53 -0400746
Chris Mason8352d8a2007-04-12 10:43:05 -0400747 i_size_write(fs_info->btree_inode,
Chris Masondb945352007-10-15 16:15:53 -0400748 btrfs_super_total_bytes(disk_super));
Chris Mason8352d8a2007-04-12 10:43:05 -0400749
Chris Mason39279cc2007-06-12 06:35:45 -0400750 if (strncmp((char *)(&disk_super->magic), BTRFS_MAGIC,
751 sizeof(disk_super->magic))) {
752 printk("btrfs: valid FS not found on %s\n", sb->s_id);
753 goto fail_sb_buffer;
754 }
Chris Mason19c00dd2007-10-15 16:19:22 -0400755
Chris Masondb945352007-10-15 16:15:53 -0400756 blocksize = btrfs_level_size(tree_root,
757 btrfs_super_root_level(disk_super));
Chris Mason19c00dd2007-10-15 16:19:22 -0400758
Chris Masone20d96d2007-03-22 12:13:20 -0400759 tree_root->node = read_tree_block(tree_root,
Chris Masondb945352007-10-15 16:15:53 -0400760 btrfs_super_root(disk_super),
761 blocksize);
Chris Mason39279cc2007-06-12 06:35:45 -0400762 if (!tree_root->node)
763 goto fail_sb_buffer;
Chris Mason3768f362007-03-13 16:47:54 -0400764
Chris Mason2c90e5d2007-04-02 10:50:19 -0400765 mutex_lock(&fs_info->fs_mutex);
Chris Masondb945352007-10-15 16:15:53 -0400766
767 ret = find_and_setup_root(tree_root, fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -0400768 BTRFS_EXTENT_TREE_OBJECTID, extent_root);
Chris Mason39279cc2007-06-12 06:35:45 -0400769 if (ret) {
770 mutex_unlock(&fs_info->fs_mutex);
771 goto fail_tree_root;
772 }
Chris Mason3768f362007-03-13 16:47:54 -0400773
Chris Mason9078a3e2007-04-26 16:46:15 -0400774 btrfs_read_block_groups(extent_root);
775
Chris Mason0f7d52f2007-04-09 10:42:37 -0400776 fs_info->generation = btrfs_super_generation(disk_super) + 1;
Chris Mason5be6f7f2007-04-05 13:35:25 -0400777 mutex_unlock(&fs_info->fs_mutex);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400778 return tree_root;
Chris Mason39279cc2007-06-12 06:35:45 -0400779
780fail_tree_root:
Chris Mason5f39d392007-10-15 16:14:19 -0400781 free_extent_buffer(tree_root->node);
Chris Mason39279cc2007-06-12 06:35:45 -0400782fail_sb_buffer:
Chris Mason5f39d392007-10-15 16:14:19 -0400783 free_extent_buffer(fs_info->sb_buffer);
Chris Mason39279cc2007-06-12 06:35:45 -0400784fail_iput:
785 iput(fs_info->btree_inode);
786fail:
787 kfree(extent_root);
788 kfree(tree_root);
789 kfree(fs_info);
790 return ERR_PTR(err);
Chris Masoneb60cea2007-02-02 09:18:22 -0500791}
792
Chris Masone089f052007-03-16 16:20:31 -0400793int write_ctree_super(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason79154b12007-03-22 15:59:16 -0400794 *root)
Chris Masoncfaa7292007-02-21 17:04:57 -0500795{
Chris Masone66f7092007-04-20 13:16:02 -0400796 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -0400797 struct extent_buffer *super = root->fs_info->sb_buffer;
798 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason21ad10c2008-01-09 09:23:21 -0500799 struct super_block *sb = root->fs_info->sb;
Chris Mason2c90e5d2007-04-02 10:50:19 -0400800
Chris Mason21ad10c2008-01-09 09:23:21 -0500801 if (!btrfs_test_opt(root, NOBARRIER))
802 blkdev_issue_flush(sb->s_bdev, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500803 set_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree, super);
Chris Mason5f39d392007-10-15 16:14:19 -0400804 ret = sync_page_range_nolock(btree_inode, btree_inode->i_mapping,
805 super->start, super->len);
Chris Mason21ad10c2008-01-09 09:23:21 -0500806 if (!btrfs_test_opt(root, NOBARRIER))
807 blkdev_issue_flush(sb->s_bdev, NULL);
Chris Mason5f39d392007-10-15 16:14:19 -0400808 return ret;
Chris Masoncfaa7292007-02-21 17:04:57 -0500809}
810
Chris Mason5eda7b52007-06-22 14:16:25 -0400811int btrfs_free_fs_root(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
Chris Mason2619ba12007-04-10 16:58:11 -0400812{
813 radix_tree_delete(&fs_info->fs_roots_radix,
814 (unsigned long)root->root_key.objectid);
Chris Masonb99aa6c2008-01-14 14:41:16 -0500815 if (root->in_sysfs)
816 btrfs_sysfs_del_root(root);
Chris Mason2619ba12007-04-10 16:58:11 -0400817 if (root->inode)
818 iput(root->inode);
819 if (root->node)
Chris Mason5f39d392007-10-15 16:14:19 -0400820 free_extent_buffer(root->node);
Chris Mason2619ba12007-04-10 16:58:11 -0400821 if (root->commit_root)
Chris Mason5f39d392007-10-15 16:14:19 -0400822 free_extent_buffer(root->commit_root);
Josef Bacik58176a92007-08-29 15:47:34 -0400823 if (root->name)
824 kfree(root->name);
Chris Mason2619ba12007-04-10 16:58:11 -0400825 kfree(root);
826 return 0;
827}
828
Chris Mason35b7e472007-05-02 15:53:43 -0400829static int del_fs_roots(struct btrfs_fs_info *fs_info)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400830{
831 int ret;
832 struct btrfs_root *gang[8];
833 int i;
834
835 while(1) {
836 ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
837 (void **)gang, 0,
838 ARRAY_SIZE(gang));
839 if (!ret)
840 break;
Chris Mason2619ba12007-04-10 16:58:11 -0400841 for (i = 0; i < ret; i++)
Chris Mason5eda7b52007-06-22 14:16:25 -0400842 btrfs_free_fs_root(fs_info, gang[i]);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400843 }
844 return 0;
845}
Chris Masonb4100d62007-04-12 12:14:00 -0400846
Chris Masone20d96d2007-03-22 12:13:20 -0400847int close_ctree(struct btrfs_root *root)
Chris Masoneb60cea2007-02-02 09:18:22 -0500848{
Chris Mason3768f362007-03-13 16:47:54 -0400849 int ret;
Chris Masone089f052007-03-16 16:20:31 -0400850 struct btrfs_trans_handle *trans;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400851 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone089f052007-03-16 16:20:31 -0400852
Chris Masonfacda1e2007-06-08 18:11:48 -0400853 fs_info->closing = 1;
Chris Mason08607c12007-06-08 15:33:54 -0400854 btrfs_transaction_flush_work(root);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400855 mutex_lock(&fs_info->fs_mutex);
Chris Mason6702ed42007-08-07 16:15:09 -0400856 btrfs_defrag_dirty_roots(root->fs_info);
Chris Mason79154b12007-03-22 15:59:16 -0400857 trans = btrfs_start_transaction(root, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400858 ret = btrfs_commit_transaction(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -0400859 /* run commit again to drop the original snapshot */
860 trans = btrfs_start_transaction(root, 1);
861 btrfs_commit_transaction(trans, root);
862 ret = btrfs_write_and_wait_transaction(NULL, root);
Chris Mason9f5fae22007-03-20 14:38:32 -0400863 BUG_ON(ret);
Chris Mason79154b12007-03-22 15:59:16 -0400864 write_ctree_super(NULL, root);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400865 mutex_unlock(&fs_info->fs_mutex);
Chris Masoned2ff2c2007-03-01 18:59:40 -0500866
Chris Masonb0c68f82008-01-31 11:05:37 -0500867 if (fs_info->delalloc_bytes) {
868 printk("btrfs: at unmount delalloc count %Lu\n",
869 fs_info->delalloc_bytes);
870 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400871 if (fs_info->extent_root->node)
Chris Mason5f39d392007-10-15 16:14:19 -0400872 free_extent_buffer(fs_info->extent_root->node);
Chris Masonf510cfe2007-10-15 16:14:48 -0400873
Chris Mason0f7d52f2007-04-09 10:42:37 -0400874 if (fs_info->tree_root->node)
Chris Mason5f39d392007-10-15 16:14:19 -0400875 free_extent_buffer(fs_info->tree_root->node);
Chris Masonf510cfe2007-10-15 16:14:48 -0400876
Chris Mason5f39d392007-10-15 16:14:19 -0400877 free_extent_buffer(fs_info->sb_buffer);
Chris Mason7eccb902007-04-11 15:53:25 -0400878
Chris Mason9078a3e2007-04-26 16:46:15 -0400879 btrfs_free_block_groups(root->fs_info);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400880 del_fs_roots(fs_info);
Chris Masond10c5f32007-12-17 20:14:04 -0500881
882 filemap_write_and_wait(fs_info->btree_inode->i_mapping);
883
Chris Masond1310b22008-01-24 16:13:08 -0500884 extent_io_tree_empty_lru(&fs_info->free_space_cache);
885 extent_io_tree_empty_lru(&fs_info->block_group_cache);
886 extent_io_tree_empty_lru(&fs_info->pinned_extents);
887 extent_io_tree_empty_lru(&fs_info->pending_del);
888 extent_io_tree_empty_lru(&fs_info->extent_ins);
889 extent_io_tree_empty_lru(&BTRFS_I(fs_info->btree_inode)->io_tree);
Chris Masond10c5f32007-12-17 20:14:04 -0500890
Chris Masondb945352007-10-15 16:15:53 -0400891 truncate_inode_pages(fs_info->btree_inode->i_mapping, 0);
Chris Masond10c5f32007-12-17 20:14:04 -0500892
Chris Masondb945352007-10-15 16:15:53 -0400893 iput(fs_info->btree_inode);
Chris Mason19c00dd2007-10-15 16:19:22 -0400894#if 0
895 while(!list_empty(&fs_info->hashers)) {
896 struct btrfs_hasher *hasher;
897 hasher = list_entry(fs_info->hashers.next, struct btrfs_hasher,
898 hashers);
899 list_del(&hasher->hashers);
900 crypto_free_hash(&fs_info->hash_tfm);
901 kfree(hasher);
902 }
903#endif
Chris Mason0f7d52f2007-04-09 10:42:37 -0400904 kfree(fs_info->extent_root);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400905 kfree(fs_info->tree_root);
Chris Masoneb60cea2007-02-02 09:18:22 -0500906 return 0;
907}
908
Chris Mason5f39d392007-10-15 16:14:19 -0400909int btrfs_buffer_uptodate(struct extent_buffer *buf)
Chris Masonccd467d2007-06-28 15:57:36 -0400910{
Chris Mason810191f2007-10-15 16:18:55 -0400911 struct inode *btree_inode = buf->first_page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -0500912 return extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree, buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400913}
Chris Mason6702ed42007-08-07 16:15:09 -0400914
Chris Mason5f39d392007-10-15 16:14:19 -0400915int btrfs_set_buffer_uptodate(struct extent_buffer *buf)
916{
Chris Mason810191f2007-10-15 16:18:55 -0400917 struct inode *btree_inode = buf->first_page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -0500918 return set_extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -0400919 buf);
920}
921
922void btrfs_mark_buffer_dirty(struct extent_buffer *buf)
923{
Chris Mason810191f2007-10-15 16:18:55 -0400924 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason5f39d392007-10-15 16:14:19 -0400925 u64 transid = btrfs_header_generation(buf);
926 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason6702ed42007-08-07 16:15:09 -0400927
Chris Masonccd467d2007-06-28 15:57:36 -0400928 if (transid != root->fs_info->generation) {
929 printk(KERN_CRIT "transid mismatch buffer %llu, found %Lu running %Lu\n",
Chris Masondb945352007-10-15 16:15:53 -0400930 (unsigned long long)buf->start,
Chris Masonccd467d2007-06-28 15:57:36 -0400931 transid, root->fs_info->generation);
932 WARN_ON(1);
933 }
Chris Masond1310b22008-01-24 16:13:08 -0500934 set_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree, buf);
Chris Masoneb60cea2007-02-02 09:18:22 -0500935}
936
Chris Masone2008b62008-01-08 15:46:30 -0500937void btrfs_throttle(struct btrfs_root *root)
938{
Chris Mason55c69072008-01-09 15:55:33 -0500939 struct backing_dev_info *bdi;
940
941 bdi = root->fs_info->sb->s_bdev->bd_inode->i_mapping->backing_dev_info;
Chris Mason04005cc2008-01-17 12:01:41 -0500942 if (root->fs_info->throttles && bdi_write_congested(bdi)) {
943#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,18)
Chris Mason55c69072008-01-09 15:55:33 -0500944 congestion_wait(WRITE, HZ/20);
Chris Mason04005cc2008-01-17 12:01:41 -0500945#else
946 blk_congestion_wait(WRITE, HZ/20);
947#endif
948 }
Chris Masone2008b62008-01-08 15:46:30 -0500949}
950
Chris Masond3c2fdc2007-09-17 10:58:06 -0400951void btrfs_btree_balance_dirty(struct btrfs_root *root, unsigned long nr)
Chris Mason35b7e472007-05-02 15:53:43 -0400952{
Chris Masond3c2fdc2007-09-17 10:58:06 -0400953 balance_dirty_pages_ratelimited_nr(
Chris Masond7fc6402008-02-18 12:12:38 -0500954 root->fs_info->btree_inode->i_mapping, 1);
Chris Mason35b7e472007-05-02 15:53:43 -0400955}
Chris Mason6b800532007-10-15 16:17:34 -0400956
957void btrfs_set_buffer_defrag(struct extent_buffer *buf)
958{
Chris Mason810191f2007-10-15 16:18:55 -0400959 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -0400960 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500961 set_extent_bits(&BTRFS_I(btree_inode)->io_tree, buf->start,
Chris Mason6b800532007-10-15 16:17:34 -0400962 buf->start + buf->len - 1, EXTENT_DEFRAG, GFP_NOFS);
963}
964
965void btrfs_set_buffer_defrag_done(struct extent_buffer *buf)
966{
Chris Mason810191f2007-10-15 16:18:55 -0400967 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -0400968 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500969 set_extent_bits(&BTRFS_I(btree_inode)->io_tree, buf->start,
Chris Mason6b800532007-10-15 16:17:34 -0400970 buf->start + buf->len - 1, EXTENT_DEFRAG_DONE,
971 GFP_NOFS);
972}
973
974int btrfs_buffer_defrag(struct extent_buffer *buf)
975{
Chris Mason810191f2007-10-15 16:18:55 -0400976 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -0400977 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500978 return test_range_bit(&BTRFS_I(btree_inode)->io_tree,
Chris Mason6b800532007-10-15 16:17:34 -0400979 buf->start, buf->start + buf->len - 1, EXTENT_DEFRAG, 0);
980}
981
982int btrfs_buffer_defrag_done(struct extent_buffer *buf)
983{
Chris Mason810191f2007-10-15 16:18:55 -0400984 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -0400985 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500986 return test_range_bit(&BTRFS_I(btree_inode)->io_tree,
Chris Mason6b800532007-10-15 16:17:34 -0400987 buf->start, buf->start + buf->len - 1,
988 EXTENT_DEFRAG_DONE, 0);
989}
990
991int btrfs_clear_buffer_defrag_done(struct extent_buffer *buf)
992{
Chris Mason810191f2007-10-15 16:18:55 -0400993 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -0400994 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500995 return clear_extent_bits(&BTRFS_I(btree_inode)->io_tree,
Chris Mason6b800532007-10-15 16:17:34 -0400996 buf->start, buf->start + buf->len - 1,
997 EXTENT_DEFRAG_DONE, GFP_NOFS);
998}
999
1000int btrfs_clear_buffer_defrag(struct extent_buffer *buf)
1001{
Chris Mason810191f2007-10-15 16:18:55 -04001002 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -04001003 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -05001004 return clear_extent_bits(&BTRFS_I(btree_inode)->io_tree,
Chris Mason6b800532007-10-15 16:17:34 -04001005 buf->start, buf->start + buf->len - 1,
1006 EXTENT_DEFRAG, GFP_NOFS);
1007}
1008
1009int btrfs_read_buffer(struct extent_buffer *buf)
1010{
Chris Mason810191f2007-10-15 16:18:55 -04001011 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -04001012 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -05001013 return read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
Chris Masona86c12c2008-02-07 10:50:54 -05001014 buf, 0, 1, btree_get_extent);
Chris Mason6b800532007-10-15 16:17:34 -04001015}
Chris Mason0da54682007-11-07 21:08:01 -05001016
Chris Masond1310b22008-01-24 16:13:08 -05001017static struct extent_io_ops btree_extent_io_ops = {
Chris Mason0da54682007-11-07 21:08:01 -05001018 .writepage_io_hook = btree_writepage_io_hook,
1019};