blob: 4c4ebea0b2a94974799b3c9193ff1b922718c3be [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);
200 read_extent_buffer_pages(tree, eb, start + PAGE_CACHE_SIZE, 1);
Chris Masone18e4802008-01-18 10:54:22 -0500201 btrfs_clear_buffer_defrag(eb);
Chris Mason19c00dd2007-10-15 16:19:22 -0400202 found_start = btrfs_header_bytenr(eb);
203 if (found_start != start) {
204 printk("warning: eb start incorrect %Lu buffer %Lu len %lu\n",
205 start, found_start, len);
Chris Mason55c69072008-01-09 15:55:33 -0500206 WARN_ON(1);
207 goto err;
208 }
209 if (eb->first_page != page) {
210 printk("bad first page %lu %lu\n", eb->first_page->index,
211 page->index);
212 WARN_ON(1);
213 goto err;
214 }
215 if (!PageUptodate(page)) {
216 printk("csum not up to date page %lu\n", page->index);
217 WARN_ON(1);
218 goto err;
Chris Mason19c00dd2007-10-15 16:19:22 -0400219 }
220 found_level = btrfs_header_level(eb);
221 csum_tree_block(root, eb, 0);
Chris Mason55c69072008-01-09 15:55:33 -0500222err:
Chris Mason19c00dd2007-10-15 16:19:22 -0400223 free_extent_buffer(eb);
224out:
225 return 0;
226}
227
Chris Mason0da54682007-11-07 21:08:01 -0500228static int btree_writepage_io_hook(struct page *page, u64 start, u64 end)
229{
230 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
231
232 csum_dirty_buffer(root, page);
233 return 0;
234}
235
Chris Mason5f39d392007-10-15 16:14:19 -0400236static int btree_writepage(struct page *page, struct writeback_control *wbc)
237{
Chris Masond1310b22008-01-24 16:13:08 -0500238 struct extent_io_tree *tree;
239 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400240 return extent_write_full_page(tree, page, btree_get_extent, wbc);
241}
Chris Mason0da54682007-11-07 21:08:01 -0500242
243static int btree_writepages(struct address_space *mapping,
244 struct writeback_control *wbc)
245{
Chris Masond1310b22008-01-24 16:13:08 -0500246 struct extent_io_tree *tree;
247 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500248 if (wbc->sync_mode == WB_SYNC_NONE) {
Chris Mason793955b2007-11-26 16:34:41 -0800249 u64 num_dirty;
250 u64 start = 0;
251 unsigned long thresh = 96 * 1024 * 1024;
Chris Mason448d6402007-11-27 07:52:01 -0800252
253 if (wbc->for_kupdate)
254 return 0;
255
Chris Masonca664622007-11-27 11:16:35 -0500256 if (current_is_pdflush()) {
257 thresh = 96 * 1024 * 1024;
258 } else {
259 thresh = 8 * 1024 * 1024;
260 }
Chris Mason1832a6d2007-12-21 16:27:21 -0500261 num_dirty = count_range_bits(tree, &start, (u64)-1,
262 thresh, EXTENT_DIRTY);
Chris Mason793955b2007-11-26 16:34:41 -0800263 if (num_dirty < thresh) {
264 return 0;
265 }
266 }
Chris Mason0da54682007-11-07 21:08:01 -0500267 return extent_writepages(tree, mapping, btree_get_extent, wbc);
268}
269
Chris Mason5f39d392007-10-15 16:14:19 -0400270int btree_readpage(struct file *file, struct page *page)
271{
Chris Masond1310b22008-01-24 16:13:08 -0500272 struct extent_io_tree *tree;
273 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400274 return extent_read_full_page(tree, page, btree_get_extent);
275}
276
277static int btree_releasepage(struct page *page, gfp_t unused_gfp_flags)
278{
Chris Masond1310b22008-01-24 16:13:08 -0500279 struct extent_io_tree *tree;
280 struct extent_map_tree *map;
Chris Mason5f39d392007-10-15 16:14:19 -0400281 int ret;
282
Chris Masond1310b22008-01-24 16:13:08 -0500283 tree = &BTRFS_I(page->mapping->host)->io_tree;
284 map = &BTRFS_I(page->mapping->host)->extent_tree;
285 ret = try_release_extent_mapping(map, tree, page);
Chris Mason5f39d392007-10-15 16:14:19 -0400286 if (ret == 1) {
287 ClearPagePrivate(page);
288 set_page_private(page, 0);
289 page_cache_release(page);
290 }
Chris Masond98237b2007-03-28 13:57:48 -0400291 return ret;
Chris Masone20d96d2007-03-22 12:13:20 -0400292}
Chris Mason123abc82007-03-14 14:14:43 -0400293
Chris Mason5f39d392007-10-15 16:14:19 -0400294static void btree_invalidatepage(struct page *page, unsigned long offset)
Chris Masond98237b2007-03-28 13:57:48 -0400295{
Chris Masond1310b22008-01-24 16:13:08 -0500296 struct extent_io_tree *tree;
297 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Mason5f39d392007-10-15 16:14:19 -0400298 extent_invalidatepage(tree, page, offset);
299 btree_releasepage(page, GFP_NOFS);
Chris Masond98237b2007-03-28 13:57:48 -0400300}
301
Chris Mason5f39d392007-10-15 16:14:19 -0400302#if 0
Chris Masond98237b2007-03-28 13:57:48 -0400303static int btree_writepage(struct page *page, struct writeback_control *wbc)
304{
Chris Mason87cbda52007-03-28 19:44:27 -0400305 struct buffer_head *bh;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400306 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
Chris Mason87cbda52007-03-28 19:44:27 -0400307 struct buffer_head *head;
Chris Mason87cbda52007-03-28 19:44:27 -0400308 if (!page_has_buffers(page)) {
309 create_empty_buffers(page, root->fs_info->sb->s_blocksize,
310 (1 << BH_Dirty)|(1 << BH_Uptodate));
311 }
312 head = page_buffers(page);
313 bh = head;
314 do {
315 if (buffer_dirty(bh))
316 csum_tree_block(root, bh, 0);
317 bh = bh->b_this_page;
318 } while (bh != head);
Chris Masond98237b2007-03-28 13:57:48 -0400319 return block_write_full_page(page, btree_get_block, wbc);
320}
Chris Mason5f39d392007-10-15 16:14:19 -0400321#endif
Chris Masond98237b2007-03-28 13:57:48 -0400322
323static struct address_space_operations btree_aops = {
324 .readpage = btree_readpage,
325 .writepage = btree_writepage,
Chris Mason0da54682007-11-07 21:08:01 -0500326 .writepages = btree_writepages,
Chris Mason5f39d392007-10-15 16:14:19 -0400327 .releasepage = btree_releasepage,
328 .invalidatepage = btree_invalidatepage,
Chris Masond98237b2007-03-28 13:57:48 -0400329 .sync_page = block_sync_page,
330};
331
Chris Masondb945352007-10-15 16:15:53 -0400332int readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize)
Chris Mason090d1872007-05-01 08:53:32 -0400333{
Chris Mason5f39d392007-10-15 16:14:19 -0400334 struct extent_buffer *buf = NULL;
335 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masonde428b62007-05-18 13:28:27 -0400336 int ret = 0;
Chris Mason090d1872007-05-01 08:53:32 -0400337
Chris Masondb945352007-10-15 16:15:53 -0400338 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -0400339 if (!buf)
Chris Mason090d1872007-05-01 08:53:32 -0400340 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500341 read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
Chris Mason19c00dd2007-10-15 16:19:22 -0400342 buf, 0, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400343 free_extent_buffer(buf);
Chris Masonde428b62007-05-18 13:28:27 -0400344 return ret;
Chris Mason090d1872007-05-01 08:53:32 -0400345}
346
Chris Masondb945352007-10-15 16:15:53 -0400347struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 bytenr,
348 u32 blocksize)
Chris Masone20d96d2007-03-22 12:13:20 -0400349{
Chris Mason5f39d392007-10-15 16:14:19 -0400350 struct extent_buffer *buf = NULL;
351 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500352 struct extent_io_tree *io_tree;
Chris Masone4204de2008-01-08 15:46:27 -0500353 u64 end;
Chris Mason19c00dd2007-10-15 16:19:22 -0400354 int ret;
355
Chris Masond1310b22008-01-24 16:13:08 -0500356 io_tree = &BTRFS_I(btree_inode)->io_tree;
Chris Masone20d96d2007-03-22 12:13:20 -0400357
Chris Masondb945352007-10-15 16:15:53 -0400358 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -0400359 if (!buf)
360 return NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500361 read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree, buf, 0, 1);
Chris Masone4204de2008-01-08 15:46:27 -0500362
363 if (buf->flags & EXTENT_CSUM)
Chris Mason19c00dd2007-10-15 16:19:22 -0400364 return buf;
Chris Masone4204de2008-01-08 15:46:27 -0500365
366 end = buf->start + PAGE_CACHE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -0500367 if (test_range_bit(io_tree, buf->start, end, EXTENT_CSUM, 1)) {
Chris Mason19c00dd2007-10-15 16:19:22 -0400368 buf->flags |= EXTENT_CSUM;
369 return buf;
370 }
Chris Masone4204de2008-01-08 15:46:27 -0500371
Chris Masond1310b22008-01-24 16:13:08 -0500372 lock_extent(io_tree, buf->start, end, GFP_NOFS);
Chris Masone4204de2008-01-08 15:46:27 -0500373
Chris Masond1310b22008-01-24 16:13:08 -0500374 if (test_range_bit(io_tree, buf->start, end, EXTENT_CSUM, 1)) {
Chris Masone4204de2008-01-08 15:46:27 -0500375 buf->flags |= EXTENT_CSUM;
376 goto out_unlock;
377 }
378
Chris Mason19c00dd2007-10-15 16:19:22 -0400379 ret = csum_tree_block(root, buf, 1);
Chris Masond1310b22008-01-24 16:13:08 -0500380 set_extent_bits(io_tree, buf->start, end, EXTENT_CSUM, GFP_NOFS);
Chris Mason19c00dd2007-10-15 16:19:22 -0400381 buf->flags |= EXTENT_CSUM;
Chris Masone4204de2008-01-08 15:46:27 -0500382
383out_unlock:
Chris Masond1310b22008-01-24 16:13:08 -0500384 unlock_extent(io_tree, buf->start, end, GFP_NOFS);
Chris Mason5f39d392007-10-15 16:14:19 -0400385 return buf;
Chris Masoneb60cea2007-02-02 09:18:22 -0500386}
387
Chris Masone089f052007-03-16 16:20:31 -0400388int clean_tree_block(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400389 struct extent_buffer *buf)
Chris Masoned2ff2c2007-03-01 18:59:40 -0500390{
Chris Mason5f39d392007-10-15 16:14:19 -0400391 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason55c69072008-01-09 15:55:33 -0500392 if (btrfs_header_generation(buf) ==
393 root->fs_info->running_transaction->transid)
Chris Masond1310b22008-01-24 16:13:08 -0500394 clear_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree,
Chris Mason55c69072008-01-09 15:55:33 -0500395 buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400396 return 0;
397}
398
399int wait_on_tree_block_writeback(struct btrfs_root *root,
400 struct extent_buffer *buf)
401{
402 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500403 wait_on_extent_buffer_writeback(&BTRFS_I(btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -0400404 buf);
405 return 0;
406}
407
Chris Masondb945352007-10-15 16:15:53 -0400408static int __setup_root(u32 nodesize, u32 leafsize, u32 sectorsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500409 u32 stripesize, struct btrfs_root *root,
Chris Mason9f5fae22007-03-20 14:38:32 -0400410 struct btrfs_fs_info *fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -0400411 u64 objectid)
Chris Masond97e63b2007-02-20 16:40:44 -0500412{
Chris Masoncfaa7292007-02-21 17:04:57 -0500413 root->node = NULL;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400414 root->inode = NULL;
Chris Masona28ec192007-03-06 20:08:01 -0500415 root->commit_root = NULL;
Chris Masondb945352007-10-15 16:15:53 -0400416 root->sectorsize = sectorsize;
417 root->nodesize = nodesize;
418 root->leafsize = leafsize;
Chris Mason87ee04e2007-11-30 11:30:34 -0500419 root->stripesize = stripesize;
Chris Mason123abc82007-03-14 14:14:43 -0400420 root->ref_cows = 0;
Chris Mason9f5fae22007-03-20 14:38:32 -0400421 root->fs_info = fs_info;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400422 root->objectid = objectid;
423 root->last_trans = 0;
Chris Mason1b05da22007-04-10 12:13:09 -0400424 root->highest_inode = 0;
425 root->last_inode_alloc = 0;
Josef Bacik58176a92007-08-29 15:47:34 -0400426 root->name = NULL;
Chris Mason4313b392008-01-03 09:08:48 -0500427 root->in_sysfs = 0;
Chris Mason3768f362007-03-13 16:47:54 -0400428 memset(&root->root_key, 0, sizeof(root->root_key));
429 memset(&root->root_item, 0, sizeof(root->root_item));
Chris Mason6702ed42007-08-07 16:15:09 -0400430 memset(&root->defrag_progress, 0, sizeof(root->defrag_progress));
Josef Bacik58176a92007-08-29 15:47:34 -0400431 memset(&root->root_kobj, 0, sizeof(root->root_kobj));
432 init_completion(&root->kobj_unregister);
Chris Mason6702ed42007-08-07 16:15:09 -0400433 root->defrag_running = 0;
434 root->defrag_level = 0;
Chris Mason4d775672007-04-20 20:23:12 -0400435 root->root_key.objectid = objectid;
Chris Mason3768f362007-03-13 16:47:54 -0400436 return 0;
437}
438
Chris Masondb945352007-10-15 16:15:53 -0400439static int find_and_setup_root(struct btrfs_root *tree_root,
Chris Mason9f5fae22007-03-20 14:38:32 -0400440 struct btrfs_fs_info *fs_info,
441 u64 objectid,
Chris Masone20d96d2007-03-22 12:13:20 -0400442 struct btrfs_root *root)
Chris Mason3768f362007-03-13 16:47:54 -0400443{
444 int ret;
Chris Masondb945352007-10-15 16:15:53 -0400445 u32 blocksize;
Chris Mason3768f362007-03-13 16:47:54 -0400446
Chris Masondb945352007-10-15 16:15:53 -0400447 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500448 tree_root->sectorsize, tree_root->stripesize,
449 root, fs_info, objectid);
Chris Mason3768f362007-03-13 16:47:54 -0400450 ret = btrfs_find_last_root(tree_root, objectid,
451 &root->root_item, &root->root_key);
452 BUG_ON(ret);
453
Chris Masondb945352007-10-15 16:15:53 -0400454 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
455 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
456 blocksize);
Chris Mason3768f362007-03-13 16:47:54 -0400457 BUG_ON(!root->node);
Chris Masond97e63b2007-02-20 16:40:44 -0500458 return 0;
459}
460
Chris Mason5eda7b52007-06-22 14:16:25 -0400461struct btrfs_root *btrfs_read_fs_root_no_radix(struct btrfs_fs_info *fs_info,
462 struct btrfs_key *location)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400463{
464 struct btrfs_root *root;
465 struct btrfs_root *tree_root = fs_info->tree_root;
466 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400467 struct extent_buffer *l;
Chris Mason1b05da22007-04-10 12:13:09 -0400468 u64 highest_inode;
Chris Masondb945352007-10-15 16:15:53 -0400469 u32 blocksize;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400470 int ret = 0;
471
Chris Mason5eda7b52007-06-22 14:16:25 -0400472 root = kzalloc(sizeof(*root), GFP_NOFS);
Chris Mason0cf6c622007-06-09 09:22:25 -0400473 if (!root)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400474 return ERR_PTR(-ENOMEM);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400475 if (location->offset == (u64)-1) {
Chris Masondb945352007-10-15 16:15:53 -0400476 ret = find_and_setup_root(tree_root, fs_info,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400477 location->objectid, root);
478 if (ret) {
Chris Mason0f7d52f2007-04-09 10:42:37 -0400479 kfree(root);
480 return ERR_PTR(ret);
481 }
482 goto insert;
483 }
484
Chris Masondb945352007-10-15 16:15:53 -0400485 __setup_root(tree_root->nodesize, tree_root->leafsize,
Chris Mason87ee04e2007-11-30 11:30:34 -0500486 tree_root->sectorsize, tree_root->stripesize,
487 root, fs_info, location->objectid);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400488
489 path = btrfs_alloc_path();
490 BUG_ON(!path);
491 ret = btrfs_search_slot(NULL, tree_root, location, path, 0, 0);
492 if (ret != 0) {
Chris Mason0f7d52f2007-04-09 10:42:37 -0400493 if (ret > 0)
494 ret = -ENOENT;
495 goto out;
496 }
Chris Mason5f39d392007-10-15 16:14:19 -0400497 l = path->nodes[0];
498 read_extent_buffer(l, &root->root_item,
499 btrfs_item_ptr_offset(l, path->slots[0]),
Chris Mason0f7d52f2007-04-09 10:42:37 -0400500 sizeof(root->root_item));
Yan Zheng44b36eb2007-10-19 09:22:56 -0400501 memcpy(&root->root_key, location, sizeof(*location));
Chris Mason0f7d52f2007-04-09 10:42:37 -0400502 ret = 0;
503out:
504 btrfs_release_path(root, path);
505 btrfs_free_path(path);
506 if (ret) {
507 kfree(root);
508 return ERR_PTR(ret);
509 }
Chris Masondb945352007-10-15 16:15:53 -0400510 blocksize = btrfs_level_size(root, btrfs_root_level(&root->root_item));
511 root->node = read_tree_block(root, btrfs_root_bytenr(&root->root_item),
512 blocksize);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400513 BUG_ON(!root->node);
514insert:
Chris Mason0f7d52f2007-04-09 10:42:37 -0400515 root->ref_cows = 1;
Chris Mason5eda7b52007-06-22 14:16:25 -0400516 ret = btrfs_find_highest_inode(root, &highest_inode);
517 if (ret == 0) {
518 root->highest_inode = highest_inode;
519 root->last_inode_alloc = highest_inode;
520 }
521 return root;
522}
523
Chris Masondc17ff82008-01-08 15:46:30 -0500524struct btrfs_root *btrfs_lookup_fs_root(struct btrfs_fs_info *fs_info,
525 u64 root_objectid)
526{
527 struct btrfs_root *root;
528
529 if (root_objectid == BTRFS_ROOT_TREE_OBJECTID)
530 return fs_info->tree_root;
531 if (root_objectid == BTRFS_EXTENT_TREE_OBJECTID)
532 return fs_info->extent_root;
533
534 root = radix_tree_lookup(&fs_info->fs_roots_radix,
535 (unsigned long)root_objectid);
536 return root;
537}
538
Chris Masonedbd8d42007-12-21 16:27:24 -0500539struct btrfs_root *btrfs_read_fs_root_no_name(struct btrfs_fs_info *fs_info,
540 struct btrfs_key *location)
Chris Mason5eda7b52007-06-22 14:16:25 -0400541{
542 struct btrfs_root *root;
543 int ret;
544
Chris Masonedbd8d42007-12-21 16:27:24 -0500545 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
546 return fs_info->tree_root;
547 if (location->objectid == BTRFS_EXTENT_TREE_OBJECTID)
548 return fs_info->extent_root;
549
Chris Mason5eda7b52007-06-22 14:16:25 -0400550 root = radix_tree_lookup(&fs_info->fs_roots_radix,
551 (unsigned long)location->objectid);
552 if (root)
553 return root;
554
555 root = btrfs_read_fs_root_no_radix(fs_info, location);
556 if (IS_ERR(root))
557 return root;
Chris Mason2619ba12007-04-10 16:58:11 -0400558 ret = radix_tree_insert(&fs_info->fs_roots_radix,
559 (unsigned long)root->root_key.objectid,
Chris Mason0f7d52f2007-04-09 10:42:37 -0400560 root);
561 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400562 free_extent_buffer(root->node);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400563 kfree(root);
564 return ERR_PTR(ret);
565 }
Chris Masonedbd8d42007-12-21 16:27:24 -0500566 ret = btrfs_find_dead_roots(fs_info->tree_root,
567 root->root_key.objectid, root);
568 BUG_ON(ret);
569
570 return root;
571}
572
573struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
574 struct btrfs_key *location,
575 const char *name, int namelen)
576{
577 struct btrfs_root *root;
578 int ret;
579
580 root = btrfs_read_fs_root_no_name(fs_info, location);
581 if (!root)
582 return NULL;
Josef Bacik58176a92007-08-29 15:47:34 -0400583
Chris Mason4313b392008-01-03 09:08:48 -0500584 if (root->in_sysfs)
585 return root;
586
Josef Bacik58176a92007-08-29 15:47:34 -0400587 ret = btrfs_set_root_name(root, name, namelen);
588 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400589 free_extent_buffer(root->node);
Josef Bacik58176a92007-08-29 15:47:34 -0400590 kfree(root);
591 return ERR_PTR(ret);
592 }
593
594 ret = btrfs_sysfs_add_root(root);
595 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400596 free_extent_buffer(root->node);
Josef Bacik58176a92007-08-29 15:47:34 -0400597 kfree(root->name);
598 kfree(root);
599 return ERR_PTR(ret);
600 }
Chris Mason4313b392008-01-03 09:08:48 -0500601 root->in_sysfs = 1;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400602 return root;
603}
Chris Mason19c00dd2007-10-15 16:19:22 -0400604#if 0
605static int add_hasher(struct btrfs_fs_info *info, char *type) {
606 struct btrfs_hasher *hasher;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400607
Chris Mason19c00dd2007-10-15 16:19:22 -0400608 hasher = kmalloc(sizeof(*hasher), GFP_NOFS);
609 if (!hasher)
610 return -ENOMEM;
611 hasher->hash_tfm = crypto_alloc_hash(type, 0, CRYPTO_ALG_ASYNC);
612 if (!hasher->hash_tfm) {
613 kfree(hasher);
614 return -EINVAL;
615 }
616 spin_lock(&info->hash_lock);
617 list_add(&hasher->list, &info->hashers);
618 spin_unlock(&info->hash_lock);
619 return 0;
620}
621#endif
Chris Mason2c90e5d2007-04-02 10:50:19 -0400622struct btrfs_root *open_ctree(struct super_block *sb)
Chris Masoneb60cea2007-02-02 09:18:22 -0500623{
Chris Masondb945352007-10-15 16:15:53 -0400624 u32 sectorsize;
625 u32 nodesize;
626 u32 leafsize;
627 u32 blocksize;
Chris Mason87ee04e2007-11-30 11:30:34 -0500628 u32 stripesize;
Chris Masone20d96d2007-03-22 12:13:20 -0400629 struct btrfs_root *extent_root = kmalloc(sizeof(struct btrfs_root),
630 GFP_NOFS);
631 struct btrfs_root *tree_root = kmalloc(sizeof(struct btrfs_root),
632 GFP_NOFS);
Chris Masone20d96d2007-03-22 12:13:20 -0400633 struct btrfs_fs_info *fs_info = kmalloc(sizeof(*fs_info),
634 GFP_NOFS);
Chris Masoneb60cea2007-02-02 09:18:22 -0500635 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -0400636 int err = -EIO;
Chris Mason2c90e5d2007-04-02 10:50:19 -0400637 struct btrfs_super_block *disk_super;
Chris Masoneb60cea2007-02-02 09:18:22 -0500638
Chris Mason39279cc2007-06-12 06:35:45 -0400639 if (!extent_root || !tree_root || !fs_info) {
640 err = -ENOMEM;
641 goto fail;
642 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400643 INIT_RADIX_TREE(&fs_info->fs_roots_radix, GFP_NOFS);
Chris Mason8fd17792007-04-19 21:01:03 -0400644 INIT_LIST_HEAD(&fs_info->trans_list);
Chris Masonfacda1e2007-06-08 18:11:48 -0400645 INIT_LIST_HEAD(&fs_info->dead_roots);
Chris Mason19c00dd2007-10-15 16:19:22 -0400646 INIT_LIST_HEAD(&fs_info->hashers);
647 spin_lock_init(&fs_info->hash_lock);
Chris Mason1832a6d2007-12-21 16:27:21 -0500648 spin_lock_init(&fs_info->delalloc_lock);
Chris Masoncee36a02008-01-15 08:40:48 -0500649 spin_lock_init(&fs_info->new_trans_lock);
Chris Mason19c00dd2007-10-15 16:19:22 -0400650
Josef Bacik58176a92007-08-29 15:47:34 -0400651 memset(&fs_info->super_kobj, 0, sizeof(fs_info->super_kobj));
652 init_completion(&fs_info->kobj_unregister);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400653 sb_set_blocksize(sb, 4096);
Chris Mason9f5fae22007-03-20 14:38:32 -0400654 fs_info->running_transaction = NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400655 fs_info->last_trans_committed = 0;
Chris Mason9f5fae22007-03-20 14:38:32 -0400656 fs_info->tree_root = tree_root;
657 fs_info->extent_root = extent_root;
Chris Masone20d96d2007-03-22 12:13:20 -0400658 fs_info->sb = sb;
Chris Masone2008b62008-01-08 15:46:30 -0500659 fs_info->throttles = 0;
Chris Masonb6cda9b2007-12-14 15:30:32 -0500660 fs_info->mount_opt = 0;
Chris Masonc59f8952007-12-17 20:14:04 -0500661 fs_info->max_extent = (u64)-1;
Chris Mason1832a6d2007-12-21 16:27:21 -0500662 fs_info->delalloc_bytes = 0;
Chris Masond98237b2007-03-28 13:57:48 -0400663 fs_info->btree_inode = new_inode(sb);
664 fs_info->btree_inode->i_ino = 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -0400665 fs_info->btree_inode->i_nlink = 1;
Chris Masond98237b2007-03-28 13:57:48 -0400666 fs_info->btree_inode->i_size = sb->s_bdev->bd_inode->i_size;
667 fs_info->btree_inode->i_mapping->a_ops = &btree_aops;
Chris Masond1310b22008-01-24 16:13:08 -0500668 extent_io_tree_init(&BTRFS_I(fs_info->btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -0400669 fs_info->btree_inode->i_mapping,
670 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -0500671 extent_map_tree_init(&BTRFS_I(fs_info->btree_inode)->extent_tree,
672 GFP_NOFS);
Chris Mason0da54682007-11-07 21:08:01 -0500673
Chris Masond1310b22008-01-24 16:13:08 -0500674 BTRFS_I(fs_info->btree_inode)->io_tree.ops = &btree_extent_io_ops;
675
676 extent_io_tree_init(&fs_info->free_space_cache,
Chris Masonf510cfe2007-10-15 16:14:48 -0400677 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -0500678 extent_io_tree_init(&fs_info->block_group_cache,
Chris Mason96b51792007-10-15 16:15:19 -0400679 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -0500680 extent_io_tree_init(&fs_info->pinned_extents,
Chris Mason1a5bc162007-10-15 16:15:26 -0400681 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -0500682 extent_io_tree_init(&fs_info->pending_del,
Chris Mason1a5bc162007-10-15 16:15:26 -0400683 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -0500684 extent_io_tree_init(&fs_info->extent_ins,
Chris Mason1a5bc162007-10-15 16:15:26 -0400685 fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Masone66f7092007-04-20 13:16:02 -0400686 fs_info->do_barriers = 1;
Chris Masonfacda1e2007-06-08 18:11:48 -0400687 fs_info->closing = 0;
Yan324ae4d2007-11-16 14:57:08 -0500688 fs_info->total_pinned = 0;
Chris Masone18e4802008-01-18 10:54:22 -0500689 fs_info->last_alloc = 0;
690
Chris Mason6da6aba2007-12-18 16:15:09 -0500691#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
692 INIT_WORK(&fs_info->trans_work, btrfs_transaction_cleaner, fs_info);
693#else
Chris Mason08607c12007-06-08 15:33:54 -0400694 INIT_DELAYED_WORK(&fs_info->trans_work, btrfs_transaction_cleaner);
Chris Mason6da6aba2007-12-18 16:15:09 -0500695#endif
Chris Mason0f7d52f2007-04-09 10:42:37 -0400696 BTRFS_I(fs_info->btree_inode)->root = tree_root;
697 memset(&BTRFS_I(fs_info->btree_inode)->location, 0,
698 sizeof(struct btrfs_key));
Chris Mason22b0ebd2007-03-30 08:47:31 -0400699 insert_inode_hash(fs_info->btree_inode);
Chris Masond98237b2007-03-28 13:57:48 -0400700 mapping_set_gfp_mask(fs_info->btree_inode->i_mapping, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -0400701
Chris Mason79154b12007-03-22 15:59:16 -0400702 mutex_init(&fs_info->trans_mutex);
Chris Masond561c022007-03-23 19:47:49 -0400703 mutex_init(&fs_info->fs_mutex);
Chris Mason3768f362007-03-13 16:47:54 -0400704
Chris Mason19c00dd2007-10-15 16:19:22 -0400705#if 0
706 ret = add_hasher(fs_info, "crc32c");
707 if (ret) {
708 printk("btrfs: failed hash setup, modprobe cryptomgr?\n");
709 err = -ENOMEM;
710 goto fail_iput;
711 }
712#endif
Chris Mason87ee04e2007-11-30 11:30:34 -0500713 __setup_root(512, 512, 512, 512, tree_root,
Chris Mason2c90e5d2007-04-02 10:50:19 -0400714 fs_info, BTRFS_ROOT_TREE_OBJECTID);
Chris Mason7eccb902007-04-11 15:53:25 -0400715
Chris Mason2c90e5d2007-04-02 10:50:19 -0400716 fs_info->sb_buffer = read_tree_block(tree_root,
Chris Masondb945352007-10-15 16:15:53 -0400717 BTRFS_SUPER_INFO_OFFSET,
718 512);
Chris Masond98237b2007-03-28 13:57:48 -0400719
Chris Mason0f7d52f2007-04-09 10:42:37 -0400720 if (!fs_info->sb_buffer)
Chris Mason39279cc2007-06-12 06:35:45 -0400721 goto fail_iput;
Chris Mason39279cc2007-06-12 06:35:45 -0400722
Chris Mason5f39d392007-10-15 16:14:19 -0400723 read_extent_buffer(fs_info->sb_buffer, &fs_info->super_copy, 0,
724 sizeof(fs_info->super_copy));
725
726 read_extent_buffer(fs_info->sb_buffer, fs_info->fsid,
727 (unsigned long)btrfs_super_fsid(fs_info->sb_buffer),
728 BTRFS_FSID_SIZE);
729 disk_super = &fs_info->super_copy;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400730 if (!btrfs_super_root(disk_super))
Chris Mason39279cc2007-06-12 06:35:45 -0400731 goto fail_sb_buffer;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400732
Chris Masondb945352007-10-15 16:15:53 -0400733 nodesize = btrfs_super_nodesize(disk_super);
734 leafsize = btrfs_super_leafsize(disk_super);
735 sectorsize = btrfs_super_sectorsize(disk_super);
Chris Mason87ee04e2007-11-30 11:30:34 -0500736 stripesize = btrfs_super_stripesize(disk_super);
Chris Masondb945352007-10-15 16:15:53 -0400737 tree_root->nodesize = nodesize;
738 tree_root->leafsize = leafsize;
739 tree_root->sectorsize = sectorsize;
Chris Mason87ee04e2007-11-30 11:30:34 -0500740 tree_root->stripesize = stripesize;
Chris Masonff79f812007-10-15 16:22:25 -0400741 sb_set_blocksize(sb, sectorsize);
Chris Masondb945352007-10-15 16:15:53 -0400742
Chris Mason8352d8a2007-04-12 10:43:05 -0400743 i_size_write(fs_info->btree_inode,
Chris Masondb945352007-10-15 16:15:53 -0400744 btrfs_super_total_bytes(disk_super));
Chris Mason8352d8a2007-04-12 10:43:05 -0400745
Chris Mason39279cc2007-06-12 06:35:45 -0400746 if (strncmp((char *)(&disk_super->magic), BTRFS_MAGIC,
747 sizeof(disk_super->magic))) {
748 printk("btrfs: valid FS not found on %s\n", sb->s_id);
749 goto fail_sb_buffer;
750 }
Chris Mason19c00dd2007-10-15 16:19:22 -0400751
Chris Masondb945352007-10-15 16:15:53 -0400752 blocksize = btrfs_level_size(tree_root,
753 btrfs_super_root_level(disk_super));
Chris Mason19c00dd2007-10-15 16:19:22 -0400754
Chris Masone20d96d2007-03-22 12:13:20 -0400755 tree_root->node = read_tree_block(tree_root,
Chris Masondb945352007-10-15 16:15:53 -0400756 btrfs_super_root(disk_super),
757 blocksize);
Chris Mason39279cc2007-06-12 06:35:45 -0400758 if (!tree_root->node)
759 goto fail_sb_buffer;
Chris Mason3768f362007-03-13 16:47:54 -0400760
Chris Mason2c90e5d2007-04-02 10:50:19 -0400761 mutex_lock(&fs_info->fs_mutex);
Chris Masondb945352007-10-15 16:15:53 -0400762
763 ret = find_and_setup_root(tree_root, fs_info,
Chris Masone20d96d2007-03-22 12:13:20 -0400764 BTRFS_EXTENT_TREE_OBJECTID, extent_root);
Chris Mason39279cc2007-06-12 06:35:45 -0400765 if (ret) {
766 mutex_unlock(&fs_info->fs_mutex);
767 goto fail_tree_root;
768 }
Chris Mason3768f362007-03-13 16:47:54 -0400769
Chris Mason9078a3e2007-04-26 16:46:15 -0400770 btrfs_read_block_groups(extent_root);
771
Chris Mason0f7d52f2007-04-09 10:42:37 -0400772 fs_info->generation = btrfs_super_generation(disk_super) + 1;
Chris Mason5be6f7f2007-04-05 13:35:25 -0400773 mutex_unlock(&fs_info->fs_mutex);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400774 return tree_root;
Chris Mason39279cc2007-06-12 06:35:45 -0400775
776fail_tree_root:
Chris Mason5f39d392007-10-15 16:14:19 -0400777 free_extent_buffer(tree_root->node);
Chris Mason39279cc2007-06-12 06:35:45 -0400778fail_sb_buffer:
Chris Mason5f39d392007-10-15 16:14:19 -0400779 free_extent_buffer(fs_info->sb_buffer);
Chris Mason39279cc2007-06-12 06:35:45 -0400780fail_iput:
781 iput(fs_info->btree_inode);
782fail:
783 kfree(extent_root);
784 kfree(tree_root);
785 kfree(fs_info);
786 return ERR_PTR(err);
Chris Masoneb60cea2007-02-02 09:18:22 -0500787}
788
Chris Masone089f052007-03-16 16:20:31 -0400789int write_ctree_super(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason79154b12007-03-22 15:59:16 -0400790 *root)
Chris Masoncfaa7292007-02-21 17:04:57 -0500791{
Chris Masone66f7092007-04-20 13:16:02 -0400792 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -0400793 struct extent_buffer *super = root->fs_info->sb_buffer;
794 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason21ad10c2008-01-09 09:23:21 -0500795 struct super_block *sb = root->fs_info->sb;
Chris Mason2c90e5d2007-04-02 10:50:19 -0400796
Chris Mason21ad10c2008-01-09 09:23:21 -0500797 if (!btrfs_test_opt(root, NOBARRIER))
798 blkdev_issue_flush(sb->s_bdev, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500799 set_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree, super);
Chris Mason5f39d392007-10-15 16:14:19 -0400800 ret = sync_page_range_nolock(btree_inode, btree_inode->i_mapping,
801 super->start, super->len);
Chris Mason21ad10c2008-01-09 09:23:21 -0500802 if (!btrfs_test_opt(root, NOBARRIER))
803 blkdev_issue_flush(sb->s_bdev, NULL);
Chris Mason5f39d392007-10-15 16:14:19 -0400804 return ret;
Chris Masoncfaa7292007-02-21 17:04:57 -0500805}
806
Chris Mason5eda7b52007-06-22 14:16:25 -0400807int btrfs_free_fs_root(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
Chris Mason2619ba12007-04-10 16:58:11 -0400808{
809 radix_tree_delete(&fs_info->fs_roots_radix,
810 (unsigned long)root->root_key.objectid);
Chris Masonb99aa6c2008-01-14 14:41:16 -0500811 if (root->in_sysfs)
812 btrfs_sysfs_del_root(root);
Chris Mason2619ba12007-04-10 16:58:11 -0400813 if (root->inode)
814 iput(root->inode);
815 if (root->node)
Chris Mason5f39d392007-10-15 16:14:19 -0400816 free_extent_buffer(root->node);
Chris Mason2619ba12007-04-10 16:58:11 -0400817 if (root->commit_root)
Chris Mason5f39d392007-10-15 16:14:19 -0400818 free_extent_buffer(root->commit_root);
Josef Bacik58176a92007-08-29 15:47:34 -0400819 if (root->name)
820 kfree(root->name);
Chris Mason2619ba12007-04-10 16:58:11 -0400821 kfree(root);
822 return 0;
823}
824
Chris Mason35b7e472007-05-02 15:53:43 -0400825static int del_fs_roots(struct btrfs_fs_info *fs_info)
Chris Mason0f7d52f2007-04-09 10:42:37 -0400826{
827 int ret;
828 struct btrfs_root *gang[8];
829 int i;
830
831 while(1) {
832 ret = radix_tree_gang_lookup(&fs_info->fs_roots_radix,
833 (void **)gang, 0,
834 ARRAY_SIZE(gang));
835 if (!ret)
836 break;
Chris Mason2619ba12007-04-10 16:58:11 -0400837 for (i = 0; i < ret; i++)
Chris Mason5eda7b52007-06-22 14:16:25 -0400838 btrfs_free_fs_root(fs_info, gang[i]);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400839 }
840 return 0;
841}
Chris Masonb4100d62007-04-12 12:14:00 -0400842
Chris Masone20d96d2007-03-22 12:13:20 -0400843int close_ctree(struct btrfs_root *root)
Chris Masoneb60cea2007-02-02 09:18:22 -0500844{
Chris Mason3768f362007-03-13 16:47:54 -0400845 int ret;
Chris Masone089f052007-03-16 16:20:31 -0400846 struct btrfs_trans_handle *trans;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400847 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone089f052007-03-16 16:20:31 -0400848
Chris Masonfacda1e2007-06-08 18:11:48 -0400849 fs_info->closing = 1;
Chris Mason08607c12007-06-08 15:33:54 -0400850 btrfs_transaction_flush_work(root);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400851 mutex_lock(&fs_info->fs_mutex);
Chris Mason6702ed42007-08-07 16:15:09 -0400852 btrfs_defrag_dirty_roots(root->fs_info);
Chris Mason79154b12007-03-22 15:59:16 -0400853 trans = btrfs_start_transaction(root, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400854 ret = btrfs_commit_transaction(trans, root);
Chris Mason79154b12007-03-22 15:59:16 -0400855 /* run commit again to drop the original snapshot */
856 trans = btrfs_start_transaction(root, 1);
857 btrfs_commit_transaction(trans, root);
858 ret = btrfs_write_and_wait_transaction(NULL, root);
Chris Mason9f5fae22007-03-20 14:38:32 -0400859 BUG_ON(ret);
Chris Mason79154b12007-03-22 15:59:16 -0400860 write_ctree_super(NULL, root);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400861 mutex_unlock(&fs_info->fs_mutex);
Chris Masoned2ff2c2007-03-01 18:59:40 -0500862
Chris Mason0f7d52f2007-04-09 10:42:37 -0400863 if (fs_info->extent_root->node)
Chris Mason5f39d392007-10-15 16:14:19 -0400864 free_extent_buffer(fs_info->extent_root->node);
Chris Masonf510cfe2007-10-15 16:14:48 -0400865
Chris Mason0f7d52f2007-04-09 10:42:37 -0400866 if (fs_info->tree_root->node)
Chris Mason5f39d392007-10-15 16:14:19 -0400867 free_extent_buffer(fs_info->tree_root->node);
Chris Masonf510cfe2007-10-15 16:14:48 -0400868
Chris Mason5f39d392007-10-15 16:14:19 -0400869 free_extent_buffer(fs_info->sb_buffer);
Chris Mason7eccb902007-04-11 15:53:25 -0400870
Chris Mason9078a3e2007-04-26 16:46:15 -0400871 btrfs_free_block_groups(root->fs_info);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400872 del_fs_roots(fs_info);
Chris Masond10c5f32007-12-17 20:14:04 -0500873
874 filemap_write_and_wait(fs_info->btree_inode->i_mapping);
875
Chris Masond1310b22008-01-24 16:13:08 -0500876 extent_io_tree_empty_lru(&fs_info->free_space_cache);
877 extent_io_tree_empty_lru(&fs_info->block_group_cache);
878 extent_io_tree_empty_lru(&fs_info->pinned_extents);
879 extent_io_tree_empty_lru(&fs_info->pending_del);
880 extent_io_tree_empty_lru(&fs_info->extent_ins);
881 extent_io_tree_empty_lru(&BTRFS_I(fs_info->btree_inode)->io_tree);
Chris Masond10c5f32007-12-17 20:14:04 -0500882
Chris Masondb945352007-10-15 16:15:53 -0400883 truncate_inode_pages(fs_info->btree_inode->i_mapping, 0);
Chris Masond10c5f32007-12-17 20:14:04 -0500884
Chris Masondb945352007-10-15 16:15:53 -0400885 iput(fs_info->btree_inode);
Chris Mason19c00dd2007-10-15 16:19:22 -0400886#if 0
887 while(!list_empty(&fs_info->hashers)) {
888 struct btrfs_hasher *hasher;
889 hasher = list_entry(fs_info->hashers.next, struct btrfs_hasher,
890 hashers);
891 list_del(&hasher->hashers);
892 crypto_free_hash(&fs_info->hash_tfm);
893 kfree(hasher);
894 }
895#endif
Chris Mason0f7d52f2007-04-09 10:42:37 -0400896 kfree(fs_info->extent_root);
Chris Mason0f7d52f2007-04-09 10:42:37 -0400897 kfree(fs_info->tree_root);
Chris Masoneb60cea2007-02-02 09:18:22 -0500898 return 0;
899}
900
Chris Mason5f39d392007-10-15 16:14:19 -0400901int btrfs_buffer_uptodate(struct extent_buffer *buf)
Chris Masonccd467d2007-06-28 15:57:36 -0400902{
Chris Mason810191f2007-10-15 16:18:55 -0400903 struct inode *btree_inode = buf->first_page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -0500904 return extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree, buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400905}
Chris Mason6702ed42007-08-07 16:15:09 -0400906
Chris Mason5f39d392007-10-15 16:14:19 -0400907int btrfs_set_buffer_uptodate(struct extent_buffer *buf)
908{
Chris Mason810191f2007-10-15 16:18:55 -0400909 struct inode *btree_inode = buf->first_page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -0500910 return set_extent_buffer_uptodate(&BTRFS_I(btree_inode)->io_tree,
Chris Mason5f39d392007-10-15 16:14:19 -0400911 buf);
912}
913
914void btrfs_mark_buffer_dirty(struct extent_buffer *buf)
915{
Chris Mason810191f2007-10-15 16:18:55 -0400916 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason5f39d392007-10-15 16:14:19 -0400917 u64 transid = btrfs_header_generation(buf);
918 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Mason6702ed42007-08-07 16:15:09 -0400919
Chris Masonccd467d2007-06-28 15:57:36 -0400920 if (transid != root->fs_info->generation) {
921 printk(KERN_CRIT "transid mismatch buffer %llu, found %Lu running %Lu\n",
Chris Masondb945352007-10-15 16:15:53 -0400922 (unsigned long long)buf->start,
Chris Masonccd467d2007-06-28 15:57:36 -0400923 transid, root->fs_info->generation);
924 WARN_ON(1);
925 }
Chris Masond1310b22008-01-24 16:13:08 -0500926 set_extent_buffer_dirty(&BTRFS_I(btree_inode)->io_tree, buf);
Chris Masoneb60cea2007-02-02 09:18:22 -0500927}
928
Chris Masone2008b62008-01-08 15:46:30 -0500929void btrfs_throttle(struct btrfs_root *root)
930{
Chris Mason55c69072008-01-09 15:55:33 -0500931 struct backing_dev_info *bdi;
932
933 bdi = root->fs_info->sb->s_bdev->bd_inode->i_mapping->backing_dev_info;
Chris Mason04005cc2008-01-17 12:01:41 -0500934 if (root->fs_info->throttles && bdi_write_congested(bdi)) {
935#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,18)
Chris Mason55c69072008-01-09 15:55:33 -0500936 congestion_wait(WRITE, HZ/20);
Chris Mason04005cc2008-01-17 12:01:41 -0500937#else
938 blk_congestion_wait(WRITE, HZ/20);
939#endif
940 }
Chris Masone2008b62008-01-08 15:46:30 -0500941}
942
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400943void btrfs_btree_balance_dirty(struct btrfs_root *root, unsigned long nr)
Chris Mason35b7e472007-05-02 15:53:43 -0400944{
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400945 balance_dirty_pages_ratelimited_nr(
Chris Mason304fced2007-10-15 16:21:17 -0400946 root->fs_info->btree_inode->i_mapping, 1);
Chris Mason35b7e472007-05-02 15:53:43 -0400947}
Chris Mason6b800532007-10-15 16:17:34 -0400948
949void btrfs_set_buffer_defrag(struct extent_buffer *buf)
950{
Chris Mason810191f2007-10-15 16:18:55 -0400951 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -0400952 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500953 set_extent_bits(&BTRFS_I(btree_inode)->io_tree, buf->start,
Chris Mason6b800532007-10-15 16:17:34 -0400954 buf->start + buf->len - 1, EXTENT_DEFRAG, GFP_NOFS);
955}
956
957void btrfs_set_buffer_defrag_done(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_DONE,
963 GFP_NOFS);
964}
965
966int btrfs_buffer_defrag(struct extent_buffer *buf)
967{
Chris Mason810191f2007-10-15 16:18:55 -0400968 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -0400969 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500970 return test_range_bit(&BTRFS_I(btree_inode)->io_tree,
Chris Mason6b800532007-10-15 16:17:34 -0400971 buf->start, buf->start + buf->len - 1, EXTENT_DEFRAG, 0);
972}
973
974int btrfs_buffer_defrag_done(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,
980 EXTENT_DEFRAG_DONE, 0);
981}
982
983int btrfs_clear_buffer_defrag_done(struct extent_buffer *buf)
984{
Chris Mason810191f2007-10-15 16:18:55 -0400985 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -0400986 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500987 return clear_extent_bits(&BTRFS_I(btree_inode)->io_tree,
Chris Mason6b800532007-10-15 16:17:34 -0400988 buf->start, buf->start + buf->len - 1,
989 EXTENT_DEFRAG_DONE, GFP_NOFS);
990}
991
992int btrfs_clear_buffer_defrag(struct extent_buffer *buf)
993{
Chris Mason810191f2007-10-15 16:18:55 -0400994 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -0400995 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -0500996 return clear_extent_bits(&BTRFS_I(btree_inode)->io_tree,
Chris Mason6b800532007-10-15 16:17:34 -0400997 buf->start, buf->start + buf->len - 1,
998 EXTENT_DEFRAG, GFP_NOFS);
999}
1000
1001int btrfs_read_buffer(struct extent_buffer *buf)
1002{
Chris Mason810191f2007-10-15 16:18:55 -04001003 struct btrfs_root *root = BTRFS_I(buf->first_page->mapping->host)->root;
Chris Mason6b800532007-10-15 16:17:34 -04001004 struct inode *btree_inode = root->fs_info->btree_inode;
Chris Masond1310b22008-01-24 16:13:08 -05001005 return read_extent_buffer_pages(&BTRFS_I(btree_inode)->io_tree,
Chris Mason19c00dd2007-10-15 16:19:22 -04001006 buf, 0, 1);
Chris Mason6b800532007-10-15 16:17:34 -04001007}
Chris Mason0da54682007-11-07 21:08:01 -05001008
Chris Masond1310b22008-01-24 16:13:08 -05001009static struct extent_io_ops btree_extent_io_ops = {
Chris Mason0da54682007-11-07 21:08:01 -05001010 .writepage_io_hook = btree_writepage_io_hook,
1011};