blob: a340eeedd6c77ad8f1734e8669c4c02891d574ed [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
Zach Brownec6b9102007-07-11 10:00:37 -040019#include <linux/sched.h>
Chris Mason7bb86312007-12-11 09:25:06 -050020#include <linux/crc32c.h>
Chris Masonedbd8d42007-12-21 16:27:24 -050021#include <linux/pagemap.h>
Chris Mason74493f72007-12-11 09:25:06 -050022#include "hash.h"
Chris Masonfec577f2007-02-26 10:40:21 -050023#include "ctree.h"
24#include "disk-io.h"
25#include "print-tree.h"
Chris Masone089f052007-03-16 16:20:31 -040026#include "transaction.h"
Chris Masonfec577f2007-02-26 10:40:21 -050027
Chris Mason96b51792007-10-15 16:15:19 -040028#define BLOCK_GROUP_DATA EXTENT_WRITEBACK
29#define BLOCK_GROUP_METADATA EXTENT_UPTODATE
30#define BLOCK_GROUP_DIRTY EXTENT_DIRTY
31
Chris Masone089f052007-03-16 16:20:31 -040032static int finish_current_insert(struct btrfs_trans_handle *trans, struct
33 btrfs_root *extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -040034static int del_pending_extents(struct btrfs_trans_handle *trans, struct
35 btrfs_root *extent_root);
Yand548ee52008-01-03 13:56:30 -050036static int find_previous_extent(struct btrfs_root *root,
37 struct btrfs_path *path)
38{
39 struct btrfs_key found_key;
40 struct extent_buffer *leaf;
41 int ret;
42
43 while(1) {
44 if (path->slots[0] == 0) {
45 ret = btrfs_prev_leaf(root, path);
46 if (ret != 0)
47 return ret;
48 } else {
49 path->slots[0]--;
50 }
51 leaf = path->nodes[0];
52 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
53 if (found_key.type == BTRFS_EXTENT_ITEM_KEY)
54 return 0;
55 }
56 return 1;
57}
Chris Masonfec577f2007-02-26 10:40:21 -050058
Chris Masone37c9e62007-05-09 20:13:14 -040059static int cache_block_group(struct btrfs_root *root,
60 struct btrfs_block_group_cache *block_group)
61{
62 struct btrfs_path *path;
63 int ret;
64 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -040065 struct extent_buffer *leaf;
Chris Masond1310b22008-01-24 16:13:08 -050066 struct extent_io_tree *free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040067 int slot;
Chris Masone37c9e62007-05-09 20:13:14 -040068 u64 last = 0;
69 u64 hole_size;
Yan7d7d6062007-09-14 16:15:28 -040070 u64 first_free;
Chris Masone37c9e62007-05-09 20:13:14 -040071 int found = 0;
72
Chris Mason00f5c792007-11-30 10:09:33 -050073 if (!block_group)
74 return 0;
75
Chris Masone37c9e62007-05-09 20:13:14 -040076 root = root->fs_info->extent_root;
Chris Masonf510cfe2007-10-15 16:14:48 -040077 free_space_cache = &root->fs_info->free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040078
79 if (block_group->cached)
80 return 0;
Chris Masonf510cfe2007-10-15 16:14:48 -040081
Chris Masone37c9e62007-05-09 20:13:14 -040082 path = btrfs_alloc_path();
83 if (!path)
84 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -040085
Chris Mason2cc58cf2007-08-27 16:49:44 -040086 path->reada = 2;
Yan7d7d6062007-09-14 16:15:28 -040087 first_free = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -040088 key.objectid = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -040089 key.offset = 0;
90 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
91 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
92 if (ret < 0)
93 return ret;
Yand548ee52008-01-03 13:56:30 -050094 ret = find_previous_extent(root, path);
95 if (ret < 0)
96 return ret;
97 if (ret == 0) {
98 leaf = path->nodes[0];
99 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
100 if (key.objectid + key.offset > first_free)
101 first_free = key.objectid + key.offset;
102 }
Chris Masone37c9e62007-05-09 20:13:14 -0400103 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -0400104 leaf = path->nodes[0];
Chris Masone37c9e62007-05-09 20:13:14 -0400105 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -0400106 if (slot >= btrfs_header_nritems(leaf)) {
Chris Masone37c9e62007-05-09 20:13:14 -0400107 ret = btrfs_next_leaf(root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400108 if (ret < 0)
109 goto err;
Chris Masonde428b62007-05-18 13:28:27 -0400110 if (ret == 0) {
Chris Masone37c9e62007-05-09 20:13:14 -0400111 continue;
Chris Masonde428b62007-05-18 13:28:27 -0400112 } else {
Chris Masone37c9e62007-05-09 20:13:14 -0400113 break;
114 }
115 }
Chris Mason5f39d392007-10-15 16:14:19 -0400116 btrfs_item_key_to_cpu(leaf, &key, slot);
Yan7d7d6062007-09-14 16:15:28 -0400117 if (key.objectid < block_group->key.objectid) {
Yan7d7d6062007-09-14 16:15:28 -0400118 goto next;
119 }
Chris Masone37c9e62007-05-09 20:13:14 -0400120 if (key.objectid >= block_group->key.objectid +
121 block_group->key.offset) {
Yan7d7d6062007-09-14 16:15:28 -0400122 break;
123 }
124
125 if (btrfs_key_type(&key) == BTRFS_EXTENT_ITEM_KEY) {
126 if (!found) {
127 last = first_free;
128 found = 1;
Chris Masone37c9e62007-05-09 20:13:14 -0400129 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400130 if (key.objectid > last) {
131 hole_size = key.objectid - last;
132 set_extent_dirty(free_space_cache, last,
133 last + hole_size - 1,
134 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -0400135 }
Yan7d7d6062007-09-14 16:15:28 -0400136 last = key.objectid + key.offset;
Chris Masone37c9e62007-05-09 20:13:14 -0400137 }
Yan7d7d6062007-09-14 16:15:28 -0400138next:
Chris Masone37c9e62007-05-09 20:13:14 -0400139 path->slots[0]++;
140 }
141
Yan7d7d6062007-09-14 16:15:28 -0400142 if (!found)
143 last = first_free;
144 if (block_group->key.objectid +
145 block_group->key.offset > last) {
146 hole_size = block_group->key.objectid +
147 block_group->key.offset - last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400148 set_extent_dirty(free_space_cache, last,
149 last + hole_size - 1, GFP_NOFS);
Yan7d7d6062007-09-14 16:15:28 -0400150 }
Chris Masone37c9e62007-05-09 20:13:14 -0400151 block_group->cached = 1;
Chris Mason54aa1f42007-06-22 14:16:25 -0400152err:
Chris Masone37c9e62007-05-09 20:13:14 -0400153 btrfs_free_path(path);
154 return 0;
155}
156
Chris Mason5276aed2007-06-11 21:33:38 -0400157struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
158 btrfs_fs_info *info,
Chris Masondb945352007-10-15 16:15:53 -0400159 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400160{
Chris Masond1310b22008-01-24 16:13:08 -0500161 struct extent_io_tree *block_group_cache;
Chris Mason96b51792007-10-15 16:15:19 -0400162 struct btrfs_block_group_cache *block_group = NULL;
163 u64 ptr;
164 u64 start;
165 u64 end;
Chris Masonbe744172007-05-06 10:15:01 -0400166 int ret;
167
Chris Mason96b51792007-10-15 16:15:19 -0400168 block_group_cache = &info->block_group_cache;
169 ret = find_first_extent_bit(block_group_cache,
Chris Masondb945352007-10-15 16:15:53 -0400170 bytenr, &start, &end,
Chris Mason96b51792007-10-15 16:15:19 -0400171 BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA);
Chris Masonbe744172007-05-06 10:15:01 -0400172 if (ret) {
Chris Mason96b51792007-10-15 16:15:19 -0400173 return NULL;
Chris Masonbe744172007-05-06 10:15:01 -0400174 }
Chris Mason96b51792007-10-15 16:15:19 -0400175 ret = get_state_private(block_group_cache, start, &ptr);
176 if (ret)
177 return NULL;
178
Jens Axboeae2f5412007-10-19 09:22:59 -0400179 block_group = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Yan5cf66422007-11-16 14:57:09 -0500180 if (block_group->key.objectid <= bytenr && bytenr <
Chris Mason96b51792007-10-15 16:15:19 -0400181 block_group->key.objectid + block_group->key.offset)
182 return block_group;
Chris Masonbe744172007-05-06 10:15:01 -0400183 return NULL;
184}
Chris Mason98ed5172008-01-03 10:01:48 -0500185static u64 noinline find_search_start(struct btrfs_root *root,
186 struct btrfs_block_group_cache **cache_ret,
Yand548ee52008-01-03 13:56:30 -0500187 u64 search_start, int num, int data)
Chris Masone37c9e62007-05-09 20:13:14 -0400188{
Chris Masone37c9e62007-05-09 20:13:14 -0400189 int ret;
190 struct btrfs_block_group_cache *cache = *cache_ret;
Chris Masone19caa52007-10-15 16:17:44 -0400191 u64 last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400192 u64 start = 0;
193 u64 end = 0;
Chris Mason257d0ce2007-11-07 21:08:16 -0500194 u64 cache_miss = 0;
Chris Masonc31f8832008-01-08 15:46:31 -0500195 u64 total_fs_bytes;
Chris Masonf84a8b32007-11-06 10:26:29 -0500196 int wrapped = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400197
Chris Mason00f5c792007-11-30 10:09:33 -0500198 if (!cache) {
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500199 goto out;
Chris Mason00f5c792007-11-30 10:09:33 -0500200 }
Chris Masonc31f8832008-01-08 15:46:31 -0500201 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Masone37c9e62007-05-09 20:13:14 -0400202again:
Chris Mason54aa1f42007-06-22 14:16:25 -0400203 ret = cache_block_group(root, cache);
204 if (ret)
205 goto out;
Chris Masonf84a8b32007-11-06 10:26:29 -0500206
Chris Masone19caa52007-10-15 16:17:44 -0400207 last = max(search_start, cache->key.objectid);
208
Chris Masone37c9e62007-05-09 20:13:14 -0400209 while(1) {
Chris Masonf510cfe2007-10-15 16:14:48 -0400210 ret = find_first_extent_bit(&root->fs_info->free_space_cache,
211 last, &start, &end, EXTENT_DIRTY);
Chris Masone19caa52007-10-15 16:17:44 -0400212 if (ret) {
Chris Mason257d0ce2007-11-07 21:08:16 -0500213 if (!cache_miss)
214 cache_miss = last;
Chris Masone19caa52007-10-15 16:17:44 -0400215 goto new_group;
216 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400217
218 start = max(last, start);
219 last = end + 1;
Chris Mason257d0ce2007-11-07 21:08:16 -0500220 if (last - start < num) {
221 if (last == cache->key.objectid + cache->key.offset)
222 cache_miss = start;
Chris Masonf510cfe2007-10-15 16:14:48 -0400223 continue;
Chris Mason257d0ce2007-11-07 21:08:16 -0500224 }
225 if (data != BTRFS_BLOCK_GROUP_MIXED &&
Yan5cf66422007-11-16 14:57:09 -0500226 start + num > cache->key.objectid + cache->key.offset)
Chris Masone37c9e62007-05-09 20:13:14 -0400227 goto new_group;
Chris Masonc31f8832008-01-08 15:46:31 -0500228 if (start + num > total_fs_bytes)
229 goto new_group;
Chris Masonf510cfe2007-10-15 16:14:48 -0400230 return start;
Chris Masone37c9e62007-05-09 20:13:14 -0400231 }
232out:
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500233 cache = btrfs_lookup_block_group(root->fs_info, search_start);
234 if (!cache) {
235 printk("Unable to find block group for %Lu\n",
236 search_start);
237 WARN_ON(1);
238 return search_start;
239 }
Chris Mason1a5bc162007-10-15 16:15:26 -0400240 return search_start;
Chris Masone37c9e62007-05-09 20:13:14 -0400241
242new_group:
Chris Masone19caa52007-10-15 16:17:44 -0400243 last = cache->key.objectid + cache->key.offset;
Chris Masonf84a8b32007-11-06 10:26:29 -0500244wrapped:
Chris Masone19caa52007-10-15 16:17:44 -0400245 cache = btrfs_lookup_block_group(root->fs_info, last);
Chris Masonc31f8832008-01-08 15:46:31 -0500246 if (!cache || cache->key.objectid >= total_fs_bytes) {
Chris Mason0e4de582007-11-26 10:55:49 -0500247no_cache:
Chris Masonf84a8b32007-11-06 10:26:29 -0500248 if (!wrapped) {
249 wrapped = 1;
250 last = search_start;
251 data = BTRFS_BLOCK_GROUP_MIXED;
252 goto wrapped;
253 }
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500254 goto out;
Chris Masone37c9e62007-05-09 20:13:14 -0400255 }
Chris Mason257d0ce2007-11-07 21:08:16 -0500256 if (cache_miss && !cache->cached) {
257 cache_block_group(root, cache);
258 last = cache_miss;
Chris Mason257d0ce2007-11-07 21:08:16 -0500259 cache = btrfs_lookup_block_group(root->fs_info, last);
260 }
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500261 cache = btrfs_find_block_group(root, cache, last, data, 0);
Chris Mason0e4de582007-11-26 10:55:49 -0500262 if (!cache)
263 goto no_cache;
Chris Masone37c9e62007-05-09 20:13:14 -0400264 *cache_ret = cache;
Chris Mason257d0ce2007-11-07 21:08:16 -0500265 cache_miss = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400266 goto again;
267}
268
Chris Mason84f54cf2007-06-12 07:43:08 -0400269static u64 div_factor(u64 num, int factor)
270{
Chris Mason257d0ce2007-11-07 21:08:16 -0500271 if (factor == 10)
272 return num;
Chris Mason84f54cf2007-06-12 07:43:08 -0400273 num *= factor;
274 do_div(num, 10);
275 return num;
276}
277
Chris Mason31f3c992007-04-30 15:25:45 -0400278struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
279 struct btrfs_block_group_cache
Chris Masonbe744172007-05-06 10:15:01 -0400280 *hint, u64 search_start,
Chris Masonde428b62007-05-18 13:28:27 -0400281 int data, int owner)
Chris Masoncd1bc462007-04-27 10:08:34 -0400282{
Chris Mason96b51792007-10-15 16:15:19 -0400283 struct btrfs_block_group_cache *cache;
Chris Masond1310b22008-01-24 16:13:08 -0500284 struct extent_io_tree *block_group_cache;
Chris Mason31f3c992007-04-30 15:25:45 -0400285 struct btrfs_block_group_cache *found_group = NULL;
Chris Masoncd1bc462007-04-27 10:08:34 -0400286 struct btrfs_fs_info *info = root->fs_info;
287 u64 used;
Chris Mason31f3c992007-04-30 15:25:45 -0400288 u64 last = 0;
289 u64 hint_last;
Chris Mason96b51792007-10-15 16:15:19 -0400290 u64 start;
291 u64 end;
292 u64 free_check;
293 u64 ptr;
Chris Masonc31f8832008-01-08 15:46:31 -0500294 u64 total_fs_bytes;
Chris Mason96b51792007-10-15 16:15:19 -0400295 int bit;
Chris Masoncd1bc462007-04-27 10:08:34 -0400296 int ret;
Chris Mason31f3c992007-04-30 15:25:45 -0400297 int full_search = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400298 int factor = 8;
Chris Mason1e2677e2007-05-29 16:52:18 -0400299 int data_swap = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400300
Chris Mason96b51792007-10-15 16:15:19 -0400301 block_group_cache = &info->block_group_cache;
Chris Masonc31f8832008-01-08 15:46:31 -0500302 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Mason96b51792007-10-15 16:15:19 -0400303
Chris Masonde428b62007-05-18 13:28:27 -0400304 if (!owner)
Chris Masonf84a8b32007-11-06 10:26:29 -0500305 factor = 8;
Chris Masonbe744172007-05-06 10:15:01 -0400306
Chris Mason257d0ce2007-11-07 21:08:16 -0500307 if (data == BTRFS_BLOCK_GROUP_MIXED) {
Chris Masonf84a8b32007-11-06 10:26:29 -0500308 bit = BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA;
Chris Mason257d0ce2007-11-07 21:08:16 -0500309 factor = 10;
310 } else if (data)
Chris Mason96b51792007-10-15 16:15:19 -0400311 bit = BLOCK_GROUP_DATA;
312 else
313 bit = BLOCK_GROUP_METADATA;
Chris Masonbe744172007-05-06 10:15:01 -0400314
Chris Masonc31f8832008-01-08 15:46:31 -0500315 if (search_start && search_start < total_fs_bytes) {
Chris Masonbe744172007-05-06 10:15:01 -0400316 struct btrfs_block_group_cache *shint;
Chris Mason5276aed2007-06-11 21:33:38 -0400317 shint = btrfs_lookup_block_group(info, search_start);
Chris Masonf84a8b32007-11-06 10:26:29 -0500318 if (shint && (shint->data == data ||
319 shint->data == BTRFS_BLOCK_GROUP_MIXED)) {
Chris Masonbe744172007-05-06 10:15:01 -0400320 used = btrfs_block_group_used(&shint->item);
Yan324ae4d2007-11-16 14:57:08 -0500321 if (used + shint->pinned <
322 div_factor(shint->key.offset, factor)) {
Chris Masonbe744172007-05-06 10:15:01 -0400323 return shint;
324 }
325 }
326 }
Chris Masonc31f8832008-01-08 15:46:31 -0500327 if (hint && hint->key.objectid < total_fs_bytes &&
328 (hint->data == data || hint->data == BTRFS_BLOCK_GROUP_MIXED)) {
Chris Mason31f3c992007-04-30 15:25:45 -0400329 used = btrfs_block_group_used(&hint->item);
Yan324ae4d2007-11-16 14:57:08 -0500330 if (used + hint->pinned <
331 div_factor(hint->key.offset, factor)) {
Chris Mason31f3c992007-04-30 15:25:45 -0400332 return hint;
333 }
Chris Masone19caa52007-10-15 16:17:44 -0400334 last = hint->key.objectid + hint->key.offset;
Chris Mason31f3c992007-04-30 15:25:45 -0400335 hint_last = last;
336 } else {
Chris Masone37c9e62007-05-09 20:13:14 -0400337 if (hint)
338 hint_last = max(hint->key.objectid, search_start);
339 else
340 hint_last = search_start;
341
Chris Masonc31f8832008-01-08 15:46:31 -0500342 if (hint_last >= total_fs_bytes)
343 hint_last = search_start;
Chris Masone37c9e62007-05-09 20:13:14 -0400344 last = hint_last;
Chris Mason31f3c992007-04-30 15:25:45 -0400345 }
Chris Mason31f3c992007-04-30 15:25:45 -0400346again:
Chris Masoncd1bc462007-04-27 10:08:34 -0400347 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400348 ret = find_first_extent_bit(block_group_cache, last,
349 &start, &end, bit);
350 if (ret)
Chris Masoncd1bc462007-04-27 10:08:34 -0400351 break;
Chris Mason96b51792007-10-15 16:15:19 -0400352
353 ret = get_state_private(block_group_cache, start, &ptr);
354 if (ret)
355 break;
356
Jens Axboeae2f5412007-10-19 09:22:59 -0400357 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -0400358 last = cache->key.objectid + cache->key.offset;
359 used = btrfs_block_group_used(&cache->item);
360
Chris Masonc31f8832008-01-08 15:46:31 -0500361 if (cache->key.objectid > total_fs_bytes)
362 break;
363
Chris Mason96b51792007-10-15 16:15:19 -0400364 if (full_search)
365 free_check = cache->key.offset;
366 else
367 free_check = div_factor(cache->key.offset, factor);
Yan324ae4d2007-11-16 14:57:08 -0500368 if (used + cache->pinned < free_check) {
Chris Mason96b51792007-10-15 16:15:19 -0400369 found_group = cache;
370 goto found;
Chris Masoncd1bc462007-04-27 10:08:34 -0400371 }
Chris Masonde428b62007-05-18 13:28:27 -0400372 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400373 }
Chris Mason31f3c992007-04-30 15:25:45 -0400374 if (!full_search) {
Chris Masonbe744172007-05-06 10:15:01 -0400375 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400376 full_search = 1;
377 goto again;
378 }
Chris Mason1e2677e2007-05-29 16:52:18 -0400379 if (!data_swap) {
Chris Mason1e2677e2007-05-29 16:52:18 -0400380 data_swap = 1;
Chris Mason96b51792007-10-15 16:15:19 -0400381 bit = BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA;
Chris Mason1e2677e2007-05-29 16:52:18 -0400382 last = search_start;
383 goto again;
384 }
Chris Masonbe744172007-05-06 10:15:01 -0400385found:
Chris Mason31f3c992007-04-30 15:25:45 -0400386 return found_group;
Chris Masoncd1bc462007-04-27 10:08:34 -0400387}
388
Chris Mason7bb86312007-12-11 09:25:06 -0500389static u64 hash_extent_ref(u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500390 u64 owner, u64 owner_offset)
391{
392 u32 high_crc = ~(u32)0;
393 u32 low_crc = ~(u32)0;
394 __le64 lenum;
395
396 lenum = cpu_to_le64(root_objectid);
397 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
Chris Mason7bb86312007-12-11 09:25:06 -0500398 lenum = cpu_to_le64(ref_generation);
399 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason21a49892008-02-01 14:51:59 -0500400 if (owner >= BTRFS_FIRST_FREE_OBJECTID) {
401 lenum = cpu_to_le64(owner);
402 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
403 lenum = cpu_to_le64(owner_offset);
404 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
405 }
Chris Mason74493f72007-12-11 09:25:06 -0500406 return ((u64)high_crc << 32) | (u64)low_crc;
407}
408
Chris Mason7bb86312007-12-11 09:25:06 -0500409static int match_extent_ref(struct extent_buffer *leaf,
410 struct btrfs_extent_ref *disk_ref,
411 struct btrfs_extent_ref *cpu_ref)
412{
413 int ret;
414 int len;
415
416 if (cpu_ref->objectid)
417 len = sizeof(*cpu_ref);
418 else
419 len = 2 * sizeof(u64);
420 ret = memcmp_extent_buffer(leaf, cpu_ref, (unsigned long)disk_ref,
421 len);
422 return ret == 0;
423}
424
Chris Mason98ed5172008-01-03 10:01:48 -0500425static int noinline lookup_extent_backref(struct btrfs_trans_handle *trans,
426 struct btrfs_root *root,
427 struct btrfs_path *path, u64 bytenr,
428 u64 root_objectid,
429 u64 ref_generation, u64 owner,
430 u64 owner_offset, int del)
Chris Mason7bb86312007-12-11 09:25:06 -0500431{
432 u64 hash;
433 struct btrfs_key key;
434 struct btrfs_key found_key;
435 struct btrfs_extent_ref ref;
436 struct extent_buffer *leaf;
437 struct btrfs_extent_ref *disk_ref;
438 int ret;
439 int ret2;
440
441 btrfs_set_stack_ref_root(&ref, root_objectid);
442 btrfs_set_stack_ref_generation(&ref, ref_generation);
443 btrfs_set_stack_ref_objectid(&ref, owner);
444 btrfs_set_stack_ref_offset(&ref, owner_offset);
445
446 hash = hash_extent_ref(root_objectid, ref_generation, owner,
447 owner_offset);
448 key.offset = hash;
449 key.objectid = bytenr;
450 key.type = BTRFS_EXTENT_REF_KEY;
451
452 while (1) {
453 ret = btrfs_search_slot(trans, root, &key, path,
454 del ? -1 : 0, del);
455 if (ret < 0)
456 goto out;
457 leaf = path->nodes[0];
458 if (ret != 0) {
459 u32 nritems = btrfs_header_nritems(leaf);
460 if (path->slots[0] >= nritems) {
461 ret2 = btrfs_next_leaf(root, path);
462 if (ret2)
463 goto out;
464 leaf = path->nodes[0];
465 }
466 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
467 if (found_key.objectid != bytenr ||
468 found_key.type != BTRFS_EXTENT_REF_KEY)
469 goto out;
470 key.offset = found_key.offset;
471 if (del) {
472 btrfs_release_path(root, path);
473 continue;
474 }
475 }
476 disk_ref = btrfs_item_ptr(path->nodes[0],
477 path->slots[0],
478 struct btrfs_extent_ref);
479 if (match_extent_ref(path->nodes[0], disk_ref, &ref)) {
480 ret = 0;
481 goto out;
482 }
483 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
484 key.offset = found_key.offset + 1;
485 btrfs_release_path(root, path);
486 }
487out:
488 return ret;
489}
490
Chris Masond8d5f3e2007-12-11 12:42:00 -0500491/*
492 * Back reference rules. Back refs have three main goals:
493 *
494 * 1) differentiate between all holders of references to an extent so that
495 * when a reference is dropped we can make sure it was a valid reference
496 * before freeing the extent.
497 *
498 * 2) Provide enough information to quickly find the holders of an extent
499 * if we notice a given block is corrupted or bad.
500 *
501 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
502 * maintenance. This is actually the same as #2, but with a slightly
503 * different use case.
504 *
505 * File extents can be referenced by:
506 *
507 * - multiple snapshots, subvolumes, or different generations in one subvol
508 * - different files inside a single subvolume (in theory, not implemented yet)
509 * - different offsets inside a file (bookend extents in file.c)
510 *
511 * The extent ref structure has fields for:
512 *
513 * - Objectid of the subvolume root
514 * - Generation number of the tree holding the reference
515 * - objectid of the file holding the reference
516 * - offset in the file corresponding to the key holding the reference
517 *
518 * When a file extent is allocated the fields are filled in:
519 * (root_key.objectid, trans->transid, inode objectid, offset in file)
520 *
521 * When a leaf is cow'd new references are added for every file extent found
522 * in the leaf. It looks the same as the create case, but trans->transid
523 * will be different when the block is cow'd.
524 *
525 * (root_key.objectid, trans->transid, inode objectid, offset in file)
526 *
527 * When a file extent is removed either during snapshot deletion or file
528 * truncation, the corresponding back reference is found
529 * by searching for:
530 *
531 * (btrfs_header_owner(leaf), btrfs_header_generation(leaf),
532 * inode objectid, offset in file)
533 *
534 * Btree extents can be referenced by:
535 *
536 * - Different subvolumes
537 * - Different generations of the same subvolume
538 *
539 * Storing sufficient information for a full reverse mapping of a btree
540 * block would require storing the lowest key of the block in the backref,
541 * and it would require updating that lowest key either before write out or
542 * every time it changed. Instead, the objectid of the lowest key is stored
543 * along with the level of the tree block. This provides a hint
544 * about where in the btree the block can be found. Searches through the
545 * btree only need to look for a pointer to that block, so they stop one
546 * level higher than the level recorded in the backref.
547 *
548 * Some btrees do not do reference counting on their extents. These
549 * include the extent tree and the tree of tree roots. Backrefs for these
550 * trees always have a generation of zero.
551 *
552 * When a tree block is created, back references are inserted:
553 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500554 * (root->root_key.objectid, trans->transid or zero, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500555 *
556 * When a tree block is cow'd in a reference counted root,
557 * new back references are added for all the blocks it points to.
558 * These are of the form (trans->transid will have increased since creation):
559 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500560 * (root->root_key.objectid, trans->transid, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500561 *
562 * Because the lowest_key_objectid and the level are just hints
563 * they are not used when backrefs are deleted. When a backref is deleted:
564 *
565 * if backref was for a tree root:
566 * root_objectid = root->root_key.objectid
567 * else
568 * root_objectid = btrfs_header_owner(parent)
569 *
570 * (root_objectid, btrfs_header_generation(parent) or zero, 0, 0)
571 *
572 * Back Reference Key hashing:
573 *
574 * Back references have four fields, each 64 bits long. Unfortunately,
575 * This is hashed into a single 64 bit number and placed into the key offset.
576 * The key objectid corresponds to the first byte in the extent, and the
577 * key type is set to BTRFS_EXTENT_REF_KEY
578 */
Chris Mason7bb86312007-12-11 09:25:06 -0500579int btrfs_insert_extent_backref(struct btrfs_trans_handle *trans,
580 struct btrfs_root *root,
581 struct btrfs_path *path, u64 bytenr,
582 u64 root_objectid, u64 ref_generation,
583 u64 owner, u64 owner_offset)
Chris Mason74493f72007-12-11 09:25:06 -0500584{
585 u64 hash;
586 struct btrfs_key key;
587 struct btrfs_extent_ref ref;
Chris Mason7bb86312007-12-11 09:25:06 -0500588 struct btrfs_extent_ref *disk_ref;
Chris Mason74493f72007-12-11 09:25:06 -0500589 int ret;
590
591 btrfs_set_stack_ref_root(&ref, root_objectid);
Chris Mason7bb86312007-12-11 09:25:06 -0500592 btrfs_set_stack_ref_generation(&ref, ref_generation);
Chris Mason74493f72007-12-11 09:25:06 -0500593 btrfs_set_stack_ref_objectid(&ref, owner);
594 btrfs_set_stack_ref_offset(&ref, owner_offset);
595
Chris Mason7bb86312007-12-11 09:25:06 -0500596 hash = hash_extent_ref(root_objectid, ref_generation, owner,
597 owner_offset);
Chris Mason74493f72007-12-11 09:25:06 -0500598 key.offset = hash;
599 key.objectid = bytenr;
600 key.type = BTRFS_EXTENT_REF_KEY;
601
602 ret = btrfs_insert_empty_item(trans, root, path, &key, sizeof(ref));
603 while (ret == -EEXIST) {
Chris Mason7bb86312007-12-11 09:25:06 -0500604 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
605 struct btrfs_extent_ref);
606 if (match_extent_ref(path->nodes[0], disk_ref, &ref))
607 goto out;
608 key.offset++;
609 btrfs_release_path(root, path);
610 ret = btrfs_insert_empty_item(trans, root, path, &key,
611 sizeof(ref));
Chris Mason74493f72007-12-11 09:25:06 -0500612 }
Chris Mason7bb86312007-12-11 09:25:06 -0500613 if (ret)
614 goto out;
615 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
616 struct btrfs_extent_ref);
617 write_extent_buffer(path->nodes[0], &ref, (unsigned long)disk_ref,
618 sizeof(ref));
619 btrfs_mark_buffer_dirty(path->nodes[0]);
620out:
621 btrfs_release_path(root, path);
622 return ret;
Chris Mason74493f72007-12-11 09:25:06 -0500623}
624
Chris Masonb18c6682007-04-17 13:26:50 -0400625int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
626 struct btrfs_root *root,
Chris Mason74493f72007-12-11 09:25:06 -0500627 u64 bytenr, u64 num_bytes,
Chris Mason7bb86312007-12-11 09:25:06 -0500628 u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500629 u64 owner, u64 owner_offset)
Chris Mason02217ed2007-03-02 16:08:05 -0500630{
Chris Mason5caf2a02007-04-02 11:20:42 -0400631 struct btrfs_path *path;
Chris Mason02217ed2007-03-02 16:08:05 -0500632 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400633 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400634 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400635 struct btrfs_extent_item *item;
Chris Masoncf27e1e2007-03-13 09:49:06 -0400636 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -0500637
Chris Masondb945352007-10-15 16:15:53 -0400638 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400639 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400640 if (!path)
641 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -0400642
Chris Masonb0331a42008-01-08 15:46:31 -0500643 path->reada = 0;
Chris Masondb945352007-10-15 16:15:53 -0400644 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -0400645 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -0400646 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -0400647 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400648 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400649 if (ret < 0)
650 return ret;
Chris Masona429e512007-04-18 16:15:28 -0400651 if (ret != 0) {
Chris Masona28ec192007-03-06 20:08:01 -0500652 BUG();
Chris Masona429e512007-04-18 16:15:28 -0400653 }
Chris Mason02217ed2007-03-02 16:08:05 -0500654 BUG_ON(ret != 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400655 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400656 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400657 refs = btrfs_extent_refs(l, item);
658 btrfs_set_extent_refs(l, item, refs + 1);
Chris Mason5caf2a02007-04-02 11:20:42 -0400659 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masona28ec192007-03-06 20:08:01 -0500660
Chris Mason5caf2a02007-04-02 11:20:42 -0400661 btrfs_release_path(root->fs_info->extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -0500662
Chris Masonb0331a42008-01-08 15:46:31 -0500663 path->reada = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500664 ret = btrfs_insert_extent_backref(trans, root->fs_info->extent_root,
665 path, bytenr, root_objectid,
666 ref_generation, owner, owner_offset);
667 BUG_ON(ret);
Chris Mason9f5fae22007-03-20 14:38:32 -0400668 finish_current_insert(trans, root->fs_info->extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400669 del_pending_extents(trans, root->fs_info->extent_root);
Chris Mason74493f72007-12-11 09:25:06 -0500670
671 btrfs_free_path(path);
Chris Mason02217ed2007-03-02 16:08:05 -0500672 return 0;
673}
674
Chris Masone9d0b132007-08-10 14:06:19 -0400675int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
676 struct btrfs_root *root)
677{
678 finish_current_insert(trans, root->fs_info->extent_root);
679 del_pending_extents(trans, root->fs_info->extent_root);
680 return 0;
681}
682
Chris Masonb18c6682007-04-17 13:26:50 -0400683static int lookup_extent_ref(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -0400684 struct btrfs_root *root, u64 bytenr,
685 u64 num_bytes, u32 *refs)
Chris Masona28ec192007-03-06 20:08:01 -0500686{
Chris Mason5caf2a02007-04-02 11:20:42 -0400687 struct btrfs_path *path;
Chris Masona28ec192007-03-06 20:08:01 -0500688 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400689 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400690 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400691 struct btrfs_extent_item *item;
Chris Mason5caf2a02007-04-02 11:20:42 -0400692
Chris Masondb945352007-10-15 16:15:53 -0400693 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400694 path = btrfs_alloc_path();
Chris Masonb0331a42008-01-08 15:46:31 -0500695 path->reada = 0;
Chris Masondb945352007-10-15 16:15:53 -0400696 key.objectid = bytenr;
697 key.offset = num_bytes;
Chris Mason62e27492007-03-15 12:56:47 -0400698 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Mason5caf2a02007-04-02 11:20:42 -0400699 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400700 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400701 if (ret < 0)
702 goto out;
Chris Mason5f39d392007-10-15 16:14:19 -0400703 if (ret != 0) {
704 btrfs_print_leaf(root, path->nodes[0]);
Chris Masondb945352007-10-15 16:15:53 -0400705 printk("failed to find block number %Lu\n", bytenr);
Chris Masona28ec192007-03-06 20:08:01 -0500706 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -0400707 }
708 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400709 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400710 *refs = btrfs_extent_refs(l, item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400711out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400712 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -0500713 return 0;
714}
715
Chris Masonbe20aa92007-12-17 20:14:01 -0500716u32 btrfs_count_snapshots_in_path(struct btrfs_root *root,
717 struct btrfs_path *count_path,
718 u64 first_extent)
719{
720 struct btrfs_root *extent_root = root->fs_info->extent_root;
721 struct btrfs_path *path;
722 u64 bytenr;
723 u64 found_objectid;
Chris Mason56b453c2008-01-03 09:08:27 -0500724 u64 root_objectid = root->root_key.objectid;
Chris Masonbe20aa92007-12-17 20:14:01 -0500725 u32 total_count = 0;
726 u32 cur_count;
Chris Masonbe20aa92007-12-17 20:14:01 -0500727 u32 nritems;
728 int ret;
729 struct btrfs_key key;
730 struct btrfs_key found_key;
731 struct extent_buffer *l;
732 struct btrfs_extent_item *item;
733 struct btrfs_extent_ref *ref_item;
734 int level = -1;
735
736 path = btrfs_alloc_path();
737again:
738 if (level == -1)
739 bytenr = first_extent;
740 else
741 bytenr = count_path->nodes[level]->start;
742
743 cur_count = 0;
744 key.objectid = bytenr;
745 key.offset = 0;
746
747 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
748 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
749 if (ret < 0)
750 goto out;
751 BUG_ON(ret == 0);
752
753 l = path->nodes[0];
754 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
755
756 if (found_key.objectid != bytenr ||
757 found_key.type != BTRFS_EXTENT_ITEM_KEY) {
758 goto out;
759 }
760
761 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Masonbe20aa92007-12-17 20:14:01 -0500762 while (1) {
Chris Masonbd098352008-01-03 13:23:19 -0500763 l = path->nodes[0];
Chris Masonbe20aa92007-12-17 20:14:01 -0500764 nritems = btrfs_header_nritems(l);
765 if (path->slots[0] >= nritems) {
766 ret = btrfs_next_leaf(extent_root, path);
767 if (ret == 0)
768 continue;
769 break;
770 }
771 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
772 if (found_key.objectid != bytenr)
773 break;
Chris Masonbd098352008-01-03 13:23:19 -0500774
Chris Masonbe20aa92007-12-17 20:14:01 -0500775 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
776 path->slots[0]++;
777 continue;
778 }
779
780 cur_count++;
781 ref_item = btrfs_item_ptr(l, path->slots[0],
782 struct btrfs_extent_ref);
783 found_objectid = btrfs_ref_root(l, ref_item);
784
Chris Mason56b453c2008-01-03 09:08:27 -0500785 if (found_objectid != root_objectid) {
786 total_count = 2;
Chris Mason4313b392008-01-03 09:08:48 -0500787 goto out;
Chris Mason56b453c2008-01-03 09:08:27 -0500788 }
789 total_count = 1;
Chris Masonbe20aa92007-12-17 20:14:01 -0500790 path->slots[0]++;
791 }
792 if (cur_count == 0) {
793 total_count = 0;
794 goto out;
795 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500796 if (level >= 0 && root->node == count_path->nodes[level])
797 goto out;
798 level++;
799 btrfs_release_path(root, path);
800 goto again;
801
802out:
803 btrfs_free_path(path);
804 return total_count;
Chris Masonbe20aa92007-12-17 20:14:01 -0500805}
Chris Masonc5739bb2007-04-10 09:27:04 -0400806int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -0500807 struct btrfs_root *root, u64 owner_objectid)
Chris Masonc5739bb2007-04-10 09:27:04 -0400808{
Chris Mason7bb86312007-12-11 09:25:06 -0500809 u64 generation;
810 u64 key_objectid;
811 u64 level;
812 u32 nritems;
813 struct btrfs_disk_key disk_key;
814
815 level = btrfs_header_level(root->node);
816 generation = trans->transid;
817 nritems = btrfs_header_nritems(root->node);
818 if (nritems > 0) {
819 if (level == 0)
820 btrfs_item_key(root->node, &disk_key, 0);
821 else
822 btrfs_node_key(root->node, &disk_key, 0);
823 key_objectid = btrfs_disk_key_objectid(&disk_key);
824 } else {
825 key_objectid = 0;
826 }
Chris Masondb945352007-10-15 16:15:53 -0400827 return btrfs_inc_extent_ref(trans, root, root->node->start,
Chris Mason7bb86312007-12-11 09:25:06 -0500828 root->node->len, owner_objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500829 generation, level, key_objectid);
Chris Masonc5739bb2007-04-10 09:27:04 -0400830}
831
Chris Masone089f052007-03-16 16:20:31 -0400832int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400833 struct extent_buffer *buf)
Chris Mason02217ed2007-03-02 16:08:05 -0500834{
Chris Masondb945352007-10-15 16:15:53 -0400835 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400836 u32 nritems;
837 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -0400838 struct btrfs_file_extent_item *fi;
Chris Mason02217ed2007-03-02 16:08:05 -0500839 int i;
Chris Masondb945352007-10-15 16:15:53 -0400840 int level;
Chris Mason6407bf62007-03-27 06:33:00 -0400841 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400842 int faili;
Chris Masona28ec192007-03-06 20:08:01 -0500843
Chris Mason3768f362007-03-13 16:47:54 -0400844 if (!root->ref_cows)
Chris Masona28ec192007-03-06 20:08:01 -0500845 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400846
Chris Masondb945352007-10-15 16:15:53 -0400847 level = btrfs_header_level(buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400848 nritems = btrfs_header_nritems(buf);
849 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400850 if (level == 0) {
851 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400852 btrfs_item_key_to_cpu(buf, &key, i);
853 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -0400854 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400855 fi = btrfs_item_ptr(buf, i,
Chris Mason6407bf62007-03-27 06:33:00 -0400856 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400857 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason236454d2007-04-19 13:37:44 -0400858 BTRFS_FILE_EXTENT_INLINE)
859 continue;
Chris Masondb945352007-10-15 16:15:53 -0400860 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
861 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -0400862 continue;
Chris Masondb945352007-10-15 16:15:53 -0400863 ret = btrfs_inc_extent_ref(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500864 btrfs_file_extent_disk_num_bytes(buf, fi),
865 root->root_key.objectid, trans->transid,
866 key.objectid, key.offset);
Chris Mason54aa1f42007-06-22 14:16:25 -0400867 if (ret) {
868 faili = i;
869 goto fail;
870 }
Chris Mason6407bf62007-03-27 06:33:00 -0400871 } else {
Chris Masondb945352007-10-15 16:15:53 -0400872 bytenr = btrfs_node_blockptr(buf, i);
Chris Mason6caab482007-12-13 09:48:07 -0500873 btrfs_node_key_to_cpu(buf, &key, i);
Chris Masondb945352007-10-15 16:15:53 -0400874 ret = btrfs_inc_extent_ref(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500875 btrfs_level_size(root, level - 1),
876 root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500877 trans->transid,
878 level - 1, key.objectid);
Chris Mason54aa1f42007-06-22 14:16:25 -0400879 if (ret) {
880 faili = i;
881 goto fail;
882 }
Chris Mason6407bf62007-03-27 06:33:00 -0400883 }
Chris Mason02217ed2007-03-02 16:08:05 -0500884 }
885 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400886fail:
Chris Masonccd467d2007-06-28 15:57:36 -0400887 WARN_ON(1);
Chris Mason7bb86312007-12-11 09:25:06 -0500888#if 0
Chris Mason54aa1f42007-06-22 14:16:25 -0400889 for (i =0; i < faili; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400890 if (level == 0) {
891 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400892 btrfs_item_key_to_cpu(buf, &key, i);
893 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -0400894 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400895 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -0400896 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400897 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -0400898 BTRFS_FILE_EXTENT_INLINE)
899 continue;
Chris Masondb945352007-10-15 16:15:53 -0400900 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
901 if (disk_bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -0400902 continue;
Chris Masondb945352007-10-15 16:15:53 -0400903 err = btrfs_free_extent(trans, root, disk_bytenr,
904 btrfs_file_extent_disk_num_bytes(buf,
Chris Mason5f39d392007-10-15 16:14:19 -0400905 fi), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400906 BUG_ON(err);
907 } else {
Chris Masondb945352007-10-15 16:15:53 -0400908 bytenr = btrfs_node_blockptr(buf, i);
909 err = btrfs_free_extent(trans, root, bytenr,
910 btrfs_level_size(root, level - 1), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400911 BUG_ON(err);
912 }
913 }
Chris Mason7bb86312007-12-11 09:25:06 -0500914#endif
Chris Mason54aa1f42007-06-22 14:16:25 -0400915 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -0500916}
917
Chris Mason9078a3e2007-04-26 16:46:15 -0400918static int write_one_cache_group(struct btrfs_trans_handle *trans,
919 struct btrfs_root *root,
920 struct btrfs_path *path,
921 struct btrfs_block_group_cache *cache)
922{
923 int ret;
924 int pending_ret;
925 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400926 unsigned long bi;
927 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -0400928
Chris Mason9078a3e2007-04-26 16:46:15 -0400929 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400930 if (ret < 0)
931 goto fail;
Chris Mason9078a3e2007-04-26 16:46:15 -0400932 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400933
934 leaf = path->nodes[0];
935 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
936 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
937 btrfs_mark_buffer_dirty(leaf);
Chris Mason9078a3e2007-04-26 16:46:15 -0400938 btrfs_release_path(extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400939fail:
Chris Mason9078a3e2007-04-26 16:46:15 -0400940 finish_current_insert(trans, extent_root);
941 pending_ret = del_pending_extents(trans, extent_root);
942 if (ret)
943 return ret;
944 if (pending_ret)
945 return pending_ret;
946 return 0;
947
948}
949
Chris Mason96b51792007-10-15 16:15:19 -0400950int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
951 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -0400952{
Chris Masond1310b22008-01-24 16:13:08 -0500953 struct extent_io_tree *block_group_cache;
Chris Mason96b51792007-10-15 16:15:19 -0400954 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -0400955 int ret;
956 int err = 0;
957 int werr = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -0400958 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -0400959 u64 last = 0;
960 u64 start;
961 u64 end;
962 u64 ptr;
Chris Mason9078a3e2007-04-26 16:46:15 -0400963
Chris Mason96b51792007-10-15 16:15:19 -0400964 block_group_cache = &root->fs_info->block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -0400965 path = btrfs_alloc_path();
966 if (!path)
967 return -ENOMEM;
968
969 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400970 ret = find_first_extent_bit(block_group_cache, last,
971 &start, &end, BLOCK_GROUP_DIRTY);
972 if (ret)
Chris Mason9078a3e2007-04-26 16:46:15 -0400973 break;
Chris Mason54aa1f42007-06-22 14:16:25 -0400974
Chris Mason96b51792007-10-15 16:15:19 -0400975 last = end + 1;
976 ret = get_state_private(block_group_cache, start, &ptr);
977 if (ret)
978 break;
979
Jens Axboeae2f5412007-10-19 09:22:59 -0400980 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -0400981 err = write_one_cache_group(trans, root,
982 path, cache);
983 /*
984 * if we fail to write the cache group, we want
985 * to keep it marked dirty in hopes that a later
986 * write will work
987 */
988 if (err) {
989 werr = err;
990 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -0400991 }
Chris Mason96b51792007-10-15 16:15:19 -0400992 clear_extent_bits(block_group_cache, start, end,
993 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -0400994 }
995 btrfs_free_path(path);
996 return werr;
997}
998
999static int update_block_group(struct btrfs_trans_handle *trans,
1000 struct btrfs_root *root,
Chris Masondb945352007-10-15 16:15:53 -04001001 u64 bytenr, u64 num_bytes, int alloc,
1002 int mark_free, int data)
Chris Mason9078a3e2007-04-26 16:46:15 -04001003{
1004 struct btrfs_block_group_cache *cache;
1005 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001006 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001007 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04001008 u64 byte_in_group;
Chris Mason96b51792007-10-15 16:15:19 -04001009 u64 start;
1010 u64 end;
Chris Mason3e1ad542007-05-07 20:03:49 -04001011
Chris Mason9078a3e2007-04-26 16:46:15 -04001012 while(total) {
Chris Masondb945352007-10-15 16:15:53 -04001013 cache = btrfs_lookup_block_group(info, bytenr);
Chris Mason3e1ad542007-05-07 20:03:49 -04001014 if (!cache) {
Chris Mason9078a3e2007-04-26 16:46:15 -04001015 return -1;
Chris Masoncd1bc462007-04-27 10:08:34 -04001016 }
Chris Masondb945352007-10-15 16:15:53 -04001017 byte_in_group = bytenr - cache->key.objectid;
1018 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason96b51792007-10-15 16:15:19 -04001019 start = cache->key.objectid;
1020 end = start + cache->key.offset - 1;
1021 set_extent_bits(&info->block_group_cache, start, end,
1022 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04001023
1024 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04001025 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04001026 if (alloc) {
Chris Mason1e2677e2007-05-29 16:52:18 -04001027 if (cache->data != data &&
Chris Mason84f54cf2007-06-12 07:43:08 -04001028 old_val < (cache->key.offset >> 1)) {
Chris Mason96b51792007-10-15 16:15:19 -04001029 int bit_to_clear;
1030 int bit_to_set;
Chris Mason96b51792007-10-15 16:15:19 -04001031 cache->data = data;
Chris Mason1e2677e2007-05-29 16:52:18 -04001032 if (data) {
Yanb97f9202007-11-01 11:28:41 -04001033 bit_to_clear = BLOCK_GROUP_METADATA;
1034 bit_to_set = BLOCK_GROUP_DATA;
Chris Masonf84a8b32007-11-06 10:26:29 -05001035 cache->item.flags &=
1036 ~BTRFS_BLOCK_GROUP_MIXED;
Chris Mason1e2677e2007-05-29 16:52:18 -04001037 cache->item.flags |=
1038 BTRFS_BLOCK_GROUP_DATA;
1039 } else {
Yanb97f9202007-11-01 11:28:41 -04001040 bit_to_clear = BLOCK_GROUP_DATA;
1041 bit_to_set = BLOCK_GROUP_METADATA;
Chris Mason1e2677e2007-05-29 16:52:18 -04001042 cache->item.flags &=
Chris Masonf84a8b32007-11-06 10:26:29 -05001043 ~BTRFS_BLOCK_GROUP_MIXED;
1044 cache->item.flags &=
Chris Mason1e2677e2007-05-29 16:52:18 -04001045 ~BTRFS_BLOCK_GROUP_DATA;
1046 }
Chris Mason96b51792007-10-15 16:15:19 -04001047 clear_extent_bits(&info->block_group_cache,
1048 start, end, bit_to_clear,
1049 GFP_NOFS);
1050 set_extent_bits(&info->block_group_cache,
1051 start, end, bit_to_set,
1052 GFP_NOFS);
Chris Masonf84a8b32007-11-06 10:26:29 -05001053 } else if (cache->data != data &&
1054 cache->data != BTRFS_BLOCK_GROUP_MIXED) {
1055 cache->data = BTRFS_BLOCK_GROUP_MIXED;
1056 set_extent_bits(&info->block_group_cache,
1057 start, end,
1058 BLOCK_GROUP_DATA |
1059 BLOCK_GROUP_METADATA,
1060 GFP_NOFS);
Chris Mason1e2677e2007-05-29 16:52:18 -04001061 }
Chris Masondb945352007-10-15 16:15:53 -04001062 old_val += num_bytes;
Chris Masoncd1bc462007-04-27 10:08:34 -04001063 } else {
Chris Masondb945352007-10-15 16:15:53 -04001064 old_val -= num_bytes;
Chris Masonf510cfe2007-10-15 16:14:48 -04001065 if (mark_free) {
1066 set_extent_dirty(&info->free_space_cache,
Chris Masondb945352007-10-15 16:15:53 -04001067 bytenr, bytenr + num_bytes - 1,
Chris Masonf510cfe2007-10-15 16:14:48 -04001068 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04001069 }
Chris Masoncd1bc462007-04-27 10:08:34 -04001070 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001071 btrfs_set_block_group_used(&cache->item, old_val);
Chris Masondb945352007-10-15 16:15:53 -04001072 total -= num_bytes;
1073 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001074 }
1075 return 0;
1076}
Yan324ae4d2007-11-16 14:57:08 -05001077static int update_pinned_extents(struct btrfs_root *root,
1078 u64 bytenr, u64 num, int pin)
1079{
1080 u64 len;
1081 struct btrfs_block_group_cache *cache;
1082 struct btrfs_fs_info *fs_info = root->fs_info;
1083
1084 if (pin) {
1085 set_extent_dirty(&fs_info->pinned_extents,
1086 bytenr, bytenr + num - 1, GFP_NOFS);
1087 } else {
1088 clear_extent_dirty(&fs_info->pinned_extents,
1089 bytenr, bytenr + num - 1, GFP_NOFS);
1090 }
1091 while (num > 0) {
1092 cache = btrfs_lookup_block_group(fs_info, bytenr);
1093 WARN_ON(!cache);
1094 len = min(num, cache->key.offset -
1095 (bytenr - cache->key.objectid));
1096 if (pin) {
1097 cache->pinned += len;
1098 fs_info->total_pinned += len;
1099 } else {
1100 cache->pinned -= len;
1101 fs_info->total_pinned -= len;
1102 }
1103 bytenr += len;
1104 num -= len;
1105 }
1106 return 0;
1107}
Chris Mason9078a3e2007-04-26 16:46:15 -04001108
Chris Masond1310b22008-01-24 16:13:08 -05001109int btrfs_copy_pinned(struct btrfs_root *root, struct extent_io_tree *copy)
Chris Masonccd467d2007-06-28 15:57:36 -04001110{
Chris Masonccd467d2007-06-28 15:57:36 -04001111 u64 last = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001112 u64 start;
1113 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001114 struct extent_io_tree *pinned_extents = &root->fs_info->pinned_extents;
Chris Masonccd467d2007-06-28 15:57:36 -04001115 int ret;
Chris Masonccd467d2007-06-28 15:57:36 -04001116
1117 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001118 ret = find_first_extent_bit(pinned_extents, last,
1119 &start, &end, EXTENT_DIRTY);
1120 if (ret)
Chris Masonccd467d2007-06-28 15:57:36 -04001121 break;
Chris Mason1a5bc162007-10-15 16:15:26 -04001122 set_extent_dirty(copy, start, end, GFP_NOFS);
1123 last = end + 1;
Chris Masonccd467d2007-06-28 15:57:36 -04001124 }
1125 return 0;
1126}
1127
1128int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1129 struct btrfs_root *root,
Chris Masond1310b22008-01-24 16:13:08 -05001130 struct extent_io_tree *unpin)
Chris Masona28ec192007-03-06 20:08:01 -05001131{
Chris Mason1a5bc162007-10-15 16:15:26 -04001132 u64 start;
1133 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05001134 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05001135 struct extent_io_tree *free_space_cache;
Chris Masonf510cfe2007-10-15 16:14:48 -04001136 free_space_cache = &root->fs_info->free_space_cache;
Chris Masona28ec192007-03-06 20:08:01 -05001137
1138 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001139 ret = find_first_extent_bit(unpin, 0, &start, &end,
1140 EXTENT_DIRTY);
1141 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05001142 break;
Yan324ae4d2007-11-16 14:57:08 -05001143 update_pinned_extents(root, start, end + 1 - start, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001144 clear_extent_dirty(unpin, start, end, GFP_NOFS);
1145 set_extent_dirty(free_space_cache, start, end, GFP_NOFS);
Chris Masona28ec192007-03-06 20:08:01 -05001146 }
1147 return 0;
1148}
1149
Chris Mason98ed5172008-01-03 10:01:48 -05001150static int finish_current_insert(struct btrfs_trans_handle *trans,
1151 struct btrfs_root *extent_root)
Chris Mason037e6392007-03-07 11:50:24 -05001152{
Chris Mason7bb86312007-12-11 09:25:06 -05001153 u64 start;
1154 u64 end;
1155 struct btrfs_fs_info *info = extent_root->fs_info;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001156 struct extent_buffer *eb;
Chris Mason7bb86312007-12-11 09:25:06 -05001157 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001158 struct btrfs_key ins;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001159 struct btrfs_disk_key first;
Chris Mason234b63a2007-03-13 10:46:10 -04001160 struct btrfs_extent_item extent_item;
Chris Mason037e6392007-03-07 11:50:24 -05001161 int ret;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001162 int level;
Chris Mason1a5bc162007-10-15 16:15:26 -04001163 int err = 0;
Chris Mason037e6392007-03-07 11:50:24 -05001164
Chris Mason5f39d392007-10-15 16:14:19 -04001165 btrfs_set_stack_extent_refs(&extent_item, 1);
Chris Mason62e27492007-03-15 12:56:47 -04001166 btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
Chris Mason7bb86312007-12-11 09:25:06 -05001167 path = btrfs_alloc_path();
Chris Mason037e6392007-03-07 11:50:24 -05001168
Chris Mason26b80032007-08-08 20:17:12 -04001169 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001170 ret = find_first_extent_bit(&info->extent_ins, 0, &start,
1171 &end, EXTENT_LOCKED);
1172 if (ret)
Chris Mason26b80032007-08-08 20:17:12 -04001173 break;
1174
Chris Mason1a5bc162007-10-15 16:15:26 -04001175 ins.objectid = start;
1176 ins.offset = end + 1 - start;
1177 err = btrfs_insert_item(trans, extent_root, &ins,
1178 &extent_item, sizeof(extent_item));
1179 clear_extent_bits(&info->extent_ins, start, end, EXTENT_LOCKED,
1180 GFP_NOFS);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001181 eb = read_tree_block(extent_root, ins.objectid, ins.offset);
1182 level = btrfs_header_level(eb);
1183 if (level == 0) {
1184 btrfs_item_key(eb, &first, 0);
1185 } else {
1186 btrfs_node_key(eb, &first, 0);
1187 }
Chris Mason7bb86312007-12-11 09:25:06 -05001188 err = btrfs_insert_extent_backref(trans, extent_root, path,
1189 start, extent_root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -05001190 0, level,
1191 btrfs_disk_key_objectid(&first));
Chris Mason7bb86312007-12-11 09:25:06 -05001192 BUG_ON(err);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001193 free_extent_buffer(eb);
Chris Mason037e6392007-03-07 11:50:24 -05001194 }
Chris Mason7bb86312007-12-11 09:25:06 -05001195 btrfs_free_path(path);
Chris Mason037e6392007-03-07 11:50:24 -05001196 return 0;
1197}
1198
Chris Masondb945352007-10-15 16:15:53 -04001199static int pin_down_bytes(struct btrfs_root *root, u64 bytenr, u32 num_bytes,
1200 int pending)
Chris Masone20d96d2007-03-22 12:13:20 -04001201{
Chris Mason1a5bc162007-10-15 16:15:26 -04001202 int err = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001203 struct extent_buffer *buf;
Chris Mason78fae272007-03-25 11:35:08 -04001204
Chris Masonf4b9aa82007-03-27 11:05:53 -04001205 if (!pending) {
Chris Masondb945352007-10-15 16:15:53 -04001206 buf = btrfs_find_tree_block(root, bytenr, num_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -04001207 if (buf) {
1208 if (btrfs_buffer_uptodate(buf)) {
Chris Mason2c90e5d2007-04-02 10:50:19 -04001209 u64 transid =
1210 root->fs_info->running_transaction->transid;
Chris Masondc17ff82008-01-08 15:46:30 -05001211 u64 header_transid =
1212 btrfs_header_generation(buf);
1213 if (header_transid == transid) {
Chris Mason55c69072008-01-09 15:55:33 -05001214 clean_tree_block(NULL, root, buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001215 free_extent_buffer(buf);
Yanc5492282007-11-06 10:25:25 -05001216 return 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001217 }
Chris Masonf4b9aa82007-03-27 11:05:53 -04001218 }
Chris Mason5f39d392007-10-15 16:14:19 -04001219 free_extent_buffer(buf);
Chris Mason8ef97622007-03-26 10:15:30 -04001220 }
Yan324ae4d2007-11-16 14:57:08 -05001221 update_pinned_extents(root, bytenr, num_bytes, 1);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001222 } else {
Chris Mason1a5bc162007-10-15 16:15:26 -04001223 set_extent_bits(&root->fs_info->pending_del,
Chris Masondb945352007-10-15 16:15:53 -04001224 bytenr, bytenr + num_bytes - 1,
1225 EXTENT_LOCKED, GFP_NOFS);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001226 }
Chris Masonbe744172007-05-06 10:15:01 -04001227 BUG_ON(err < 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001228 return 0;
1229}
1230
Chris Masona28ec192007-03-06 20:08:01 -05001231/*
1232 * remove an extent from the root, returns 0 on success
1233 */
Chris Masone089f052007-03-16 16:20:31 -04001234static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001235 *root, u64 bytenr, u64 num_bytes,
1236 u64 root_objectid, u64 ref_generation,
1237 u64 owner_objectid, u64 owner_offset, int pin,
Chris Masone37c9e62007-05-09 20:13:14 -04001238 int mark_free)
Chris Masona28ec192007-03-06 20:08:01 -05001239{
Chris Mason5caf2a02007-04-02 11:20:42 -04001240 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001241 struct btrfs_key key;
Chris Mason1261ec42007-03-20 20:35:03 -04001242 struct btrfs_fs_info *info = root->fs_info;
1243 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04001244 struct extent_buffer *leaf;
Chris Masona28ec192007-03-06 20:08:01 -05001245 int ret;
Chris Mason234b63a2007-03-13 10:46:10 -04001246 struct btrfs_extent_item *ei;
Chris Masoncf27e1e2007-03-13 09:49:06 -04001247 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -05001248
Chris Masondb945352007-10-15 16:15:53 -04001249 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -04001250 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -04001251 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -04001252 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001253 if (!path)
1254 return -ENOMEM;
1255
Chris Masonb0331a42008-01-08 15:46:31 -05001256 path->reada = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001257 ret = lookup_extent_backref(trans, extent_root, path,
1258 bytenr, root_objectid,
1259 ref_generation,
1260 owner_objectid, owner_offset, 1);
1261 if (ret == 0) {
1262 ret = btrfs_del_item(trans, extent_root, path);
1263 } else {
1264 btrfs_print_leaf(extent_root, path->nodes[0]);
1265 WARN_ON(1);
1266 printk("Unable to find ref byte nr %Lu root %Lu "
1267 " gen %Lu owner %Lu offset %Lu\n", bytenr,
1268 root_objectid, ref_generation, owner_objectid,
1269 owner_offset);
1270 }
1271 btrfs_release_path(extent_root, path);
Chris Mason5caf2a02007-04-02 11:20:42 -04001272 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001273 if (ret < 0)
1274 return ret;
1275 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001276
1277 leaf = path->nodes[0];
1278 ei = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason123abc82007-03-14 14:14:43 -04001279 struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001280 refs = btrfs_extent_refs(leaf, ei);
1281 BUG_ON(refs == 0);
1282 refs -= 1;
1283 btrfs_set_extent_refs(leaf, ei, refs);
1284 btrfs_mark_buffer_dirty(leaf);
1285
Chris Masoncf27e1e2007-03-13 09:49:06 -04001286 if (refs == 0) {
Chris Masondb945352007-10-15 16:15:53 -04001287 u64 super_used;
1288 u64 root_used;
Chris Mason78fae272007-03-25 11:35:08 -04001289
1290 if (pin) {
Chris Masondb945352007-10-15 16:15:53 -04001291 ret = pin_down_bytes(root, bytenr, num_bytes, 0);
Yanc5492282007-11-06 10:25:25 -05001292 if (ret > 0)
1293 mark_free = 1;
1294 BUG_ON(ret < 0);
Chris Mason78fae272007-03-25 11:35:08 -04001295 }
1296
Josef Bacik58176a92007-08-29 15:47:34 -04001297 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -04001298 super_used = btrfs_super_bytes_used(&info->super_copy);
1299 btrfs_set_super_bytes_used(&info->super_copy,
1300 super_used - num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001301
1302 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001303 root_used = btrfs_root_used(&root->root_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001304 btrfs_set_root_used(&root->root_item,
Chris Masondb945352007-10-15 16:15:53 -04001305 root_used - num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001306
Chris Mason5caf2a02007-04-02 11:20:42 -04001307 ret = btrfs_del_item(trans, extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -04001308 if (ret) {
1309 return ret;
1310 }
Chris Masondb945352007-10-15 16:15:53 -04001311 ret = update_block_group(trans, root, bytenr, num_bytes, 0,
Chris Mason1e2677e2007-05-29 16:52:18 -04001312 mark_free, 0);
Chris Mason9078a3e2007-04-26 16:46:15 -04001313 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -05001314 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001315 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001316 finish_current_insert(trans, extent_root);
Chris Masona28ec192007-03-06 20:08:01 -05001317 return ret;
1318}
1319
1320/*
Chris Masonfec577f2007-02-26 10:40:21 -05001321 * find all the blocks marked as pending in the radix tree and remove
1322 * them from the extent map
1323 */
Chris Masone089f052007-03-16 16:20:31 -04001324static int del_pending_extents(struct btrfs_trans_handle *trans, struct
1325 btrfs_root *extent_root)
Chris Masonfec577f2007-02-26 10:40:21 -05001326{
1327 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -04001328 int err = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001329 u64 start;
1330 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05001331 struct extent_io_tree *pending_del;
1332 struct extent_io_tree *pinned_extents;
Chris Mason8ef97622007-03-26 10:15:30 -04001333
Chris Mason1a5bc162007-10-15 16:15:26 -04001334 pending_del = &extent_root->fs_info->pending_del;
1335 pinned_extents = &extent_root->fs_info->pinned_extents;
Chris Masonfec577f2007-02-26 10:40:21 -05001336
1337 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001338 ret = find_first_extent_bit(pending_del, 0, &start, &end,
1339 EXTENT_LOCKED);
1340 if (ret)
Chris Masonfec577f2007-02-26 10:40:21 -05001341 break;
Yan324ae4d2007-11-16 14:57:08 -05001342 update_pinned_extents(extent_root, start, end + 1 - start, 1);
Chris Mason1a5bc162007-10-15 16:15:26 -04001343 clear_extent_bits(pending_del, start, end, EXTENT_LOCKED,
1344 GFP_NOFS);
1345 ret = __free_extent(trans, extent_root,
Chris Mason7bb86312007-12-11 09:25:06 -05001346 start, end + 1 - start,
1347 extent_root->root_key.objectid,
1348 0, 0, 0, 0, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001349 if (ret)
1350 err = ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001351 }
Chris Masone20d96d2007-03-22 12:13:20 -04001352 return err;
Chris Masonfec577f2007-02-26 10:40:21 -05001353}
1354
1355/*
1356 * remove an extent from the root, returns 0 on success
1357 */
Chris Masone089f052007-03-16 16:20:31 -04001358int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001359 *root, u64 bytenr, u64 num_bytes,
1360 u64 root_objectid, u64 ref_generation,
1361 u64 owner_objectid, u64 owner_offset, int pin)
Chris Masonfec577f2007-02-26 10:40:21 -05001362{
Chris Mason9f5fae22007-03-20 14:38:32 -04001363 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Masonfec577f2007-02-26 10:40:21 -05001364 int pending_ret;
1365 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05001366
Chris Masondb945352007-10-15 16:15:53 -04001367 WARN_ON(num_bytes < root->sectorsize);
Chris Mason7bb86312007-12-11 09:25:06 -05001368 if (!root->ref_cows)
1369 ref_generation = 0;
1370
Chris Masona28ec192007-03-06 20:08:01 -05001371 if (root == extent_root) {
Chris Masondb945352007-10-15 16:15:53 -04001372 pin_down_bytes(root, bytenr, num_bytes, 1);
Chris Masona28ec192007-03-06 20:08:01 -05001373 return 0;
1374 }
Chris Mason7bb86312007-12-11 09:25:06 -05001375 ret = __free_extent(trans, root, bytenr, num_bytes, root_objectid,
1376 ref_generation, owner_objectid, owner_offset,
1377 pin, pin == 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001378 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -05001379 return ret ? ret : pending_ret;
1380}
1381
Chris Mason87ee04e2007-11-30 11:30:34 -05001382static u64 stripe_align(struct btrfs_root *root, u64 val)
1383{
1384 u64 mask = ((u64)root->stripesize - 1);
1385 u64 ret = (val + mask) & ~mask;
1386 return ret;
1387}
1388
Chris Masonfec577f2007-02-26 10:40:21 -05001389/*
1390 * walks the btree of allocated extents and find a hole of a given size.
1391 * The key ins is changed to record the hole:
1392 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04001393 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05001394 * ins->offset == number of blocks
1395 * Any available blocks before search_start are skipped.
1396 */
Chris Mason98ed5172008-01-03 10:01:48 -05001397static int noinline find_free_extent(struct btrfs_trans_handle *trans,
1398 struct btrfs_root *orig_root,
1399 u64 num_bytes, u64 empty_size,
1400 u64 search_start, u64 search_end,
1401 u64 hint_byte, struct btrfs_key *ins,
1402 u64 exclude_start, u64 exclude_nr,
1403 int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001404{
Chris Mason5caf2a02007-04-02 11:20:42 -04001405 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001406 struct btrfs_key key;
Chris Masonfec577f2007-02-26 10:40:21 -05001407 u64 hole_size = 0;
Chris Mason87ee04e2007-11-30 11:30:34 -05001408 u64 aligned;
1409 int ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001410 int slot = 0;
Chris Masondb945352007-10-15 16:15:53 -04001411 u64 last_byte = 0;
Chris Mason4529ba42008-01-31 16:45:07 -05001412 u64 *last_ptr = NULL;
Chris Masonbe744172007-05-06 10:15:01 -04001413 u64 orig_search_start = search_start;
Chris Masonfec577f2007-02-26 10:40:21 -05001414 int start_found;
Chris Mason5f39d392007-10-15 16:14:19 -04001415 struct extent_buffer *l;
Chris Mason9f5fae22007-03-20 14:38:32 -04001416 struct btrfs_root * root = orig_root->fs_info->extent_root;
Chris Masonf2458e12007-04-25 15:52:25 -04001417 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001418 u64 total_needed = num_bytes;
Chris Masone20d96d2007-03-22 12:13:20 -04001419 int level;
Chris Masonbe08c1b2007-05-03 09:06:49 -04001420 struct btrfs_block_group_cache *block_group;
Chris Masonbe744172007-05-06 10:15:01 -04001421 int full_scan = 0;
Chris Masonfbdc7622007-05-30 10:22:12 -04001422 int wrapped = 0;
Chris Masonf84a8b32007-11-06 10:26:29 -05001423 u64 cached_start;
Chris Masonfec577f2007-02-26 10:40:21 -05001424
Chris Masondb945352007-10-15 16:15:53 -04001425 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04001426 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
1427
Chris Mason5f39d392007-10-15 16:14:19 -04001428 level = btrfs_header_level(root->node);
1429
Chris Mason015a739c2007-11-26 16:15:16 -08001430 if (num_bytes >= 32 * 1024 * 1024 && hint_byte) {
Chris Mason257d0ce2007-11-07 21:08:16 -05001431 data = BTRFS_BLOCK_GROUP_MIXED;
1432 }
1433
Chris Mason60cde612008-02-01 14:51:59 -05001434 if (!data)
1435 last_ptr = &root->fs_info->last_alloc;
1436
1437 if (data && btrfs_test_opt(root, SSD))
1438 last_ptr = &root->fs_info->last_data_alloc;
1439
1440 if (last_ptr) {
1441 if (*last_ptr)
Chris Mason4529ba42008-01-31 16:45:07 -05001442 hint_byte = *last_ptr;
Chris Mason4529ba42008-01-31 16:45:07 -05001443 else {
1444 hint_byte = hint_byte &
1445 ~((u64)BTRFS_BLOCK_GROUP_SIZE - 1);
Chris Mason60cde612008-02-01 14:51:59 -05001446 empty_size += 2 * 1024 * 1024;
Chris Masone18e4802008-01-18 10:54:22 -05001447 }
1448 }
1449
Chris Masonc31f8832008-01-08 15:46:31 -05001450 search_end = min(search_end,
1451 btrfs_super_total_bytes(&info->super_copy));
Chris Masondb945352007-10-15 16:15:53 -04001452 if (hint_byte) {
1453 block_group = btrfs_lookup_block_group(info, hint_byte);
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001454 if (!block_group)
1455 hint_byte = search_start;
Chris Masonbe744172007-05-06 10:15:01 -04001456 block_group = btrfs_find_block_group(root, block_group,
Chris Masondb945352007-10-15 16:15:53 -04001457 hint_byte, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -04001458 } else {
1459 block_group = btrfs_find_block_group(root,
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001460 trans->block_group,
1461 search_start, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -04001462 }
1463
Chris Mason6702ed42007-08-07 16:15:09 -04001464 total_needed += empty_size;
Chris Masone0115992007-06-19 16:23:05 -04001465 path = btrfs_alloc_path();
Chris Masonbe744172007-05-06 10:15:01 -04001466check_failed:
Chris Mason70b043f2007-12-13 09:02:46 -05001467 if (!block_group) {
1468 block_group = btrfs_lookup_block_group(info, search_start);
1469 if (!block_group)
1470 block_group = btrfs_lookup_block_group(info,
1471 orig_search_start);
1472 }
Yan5e5745d2007-11-16 14:57:09 -05001473 search_start = find_search_start(root, &block_group, search_start,
Yand548ee52008-01-03 13:56:30 -05001474 total_needed, data);
Chris Masone18e4802008-01-18 10:54:22 -05001475
Chris Mason60cde612008-02-01 14:51:59 -05001476 if (last_ptr && *last_ptr && search_start != *last_ptr) {
1477 *last_ptr = 0;
Chris Masone18e4802008-01-18 10:54:22 -05001478 if (!empty_size) {
1479 empty_size += 16 * 1024 * 1024;
1480 total_needed += empty_size;
1481 }
1482 search_start = find_search_start(root, &block_group,
1483 search_start, total_needed,
1484 data);
1485 }
1486
Chris Mason87ee04e2007-11-30 11:30:34 -05001487 search_start = stripe_align(root, search_start);
Chris Masonf84a8b32007-11-06 10:26:29 -05001488 cached_start = search_start;
Chris Mason5caf2a02007-04-02 11:20:42 -04001489 btrfs_init_path(path);
Chris Masonfec577f2007-02-26 10:40:21 -05001490 ins->objectid = search_start;
1491 ins->offset = 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001492 start_found = 0;
Chris Mason2cc58cf2007-08-27 16:49:44 -04001493 path->reada = 2;
Chris Masone37c9e62007-05-09 20:13:14 -04001494
Chris Mason5caf2a02007-04-02 11:20:42 -04001495 ret = btrfs_search_slot(trans, root, ins, path, 0, 0);
Chris Mason0f70abe2007-02-28 16:46:22 -05001496 if (ret < 0)
1497 goto error;
Yand548ee52008-01-03 13:56:30 -05001498 ret = find_previous_extent(root, path);
1499 if (ret < 0)
1500 goto error;
Chris Mason5f39d392007-10-15 16:14:19 -04001501 l = path->nodes[0];
1502 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
Chris Masonfec577f2007-02-26 10:40:21 -05001503 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001504 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -04001505 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04001506 if (slot >= btrfs_header_nritems(l)) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001507 ret = btrfs_next_leaf(root, path);
Chris Masonfec577f2007-02-26 10:40:21 -05001508 if (ret == 0)
1509 continue;
Chris Mason0f70abe2007-02-28 16:46:22 -05001510 if (ret < 0)
1511 goto error;
Chris Masone19caa52007-10-15 16:17:44 -04001512
1513 search_start = max(search_start,
1514 block_group->key.objectid);
Chris Masonfec577f2007-02-26 10:40:21 -05001515 if (!start_found) {
Chris Mason87ee04e2007-11-30 11:30:34 -05001516 aligned = stripe_align(root, search_start);
1517 ins->objectid = aligned;
1518 if (aligned >= search_end) {
1519 ret = -ENOSPC;
1520 goto error;
1521 }
1522 ins->offset = search_end - aligned;
Chris Masonfec577f2007-02-26 10:40:21 -05001523 start_found = 1;
1524 goto check_pending;
1525 }
Chris Mason87ee04e2007-11-30 11:30:34 -05001526 ins->objectid = stripe_align(root,
1527 last_byte > search_start ?
1528 last_byte : search_start);
1529 if (search_end <= ins->objectid) {
1530 ret = -ENOSPC;
1531 goto error;
1532 }
Chris Mason3e1ad542007-05-07 20:03:49 -04001533 ins->offset = search_end - ins->objectid;
Chris Masone19caa52007-10-15 16:17:44 -04001534 BUG_ON(ins->objectid >= search_end);
Chris Masonfec577f2007-02-26 10:40:21 -05001535 goto check_pending;
1536 }
Chris Mason5f39d392007-10-15 16:14:19 -04001537 btrfs_item_key_to_cpu(l, &key, slot);
Chris Mason96b51792007-10-15 16:15:19 -04001538
Chris Masondb945352007-10-15 16:15:53 -04001539 if (key.objectid >= search_start && key.objectid > last_byte &&
Chris Masone37c9e62007-05-09 20:13:14 -04001540 start_found) {
Chris Masondb945352007-10-15 16:15:53 -04001541 if (last_byte < search_start)
1542 last_byte = search_start;
Chris Mason87ee04e2007-11-30 11:30:34 -05001543 aligned = stripe_align(root, last_byte);
1544 hole_size = key.objectid - aligned;
1545 if (key.objectid > aligned && hole_size >= num_bytes) {
1546 ins->objectid = aligned;
Chris Masone37c9e62007-05-09 20:13:14 -04001547 ins->offset = hole_size;
1548 goto check_pending;
Chris Mason0579da42007-03-07 16:15:30 -05001549 }
Chris Masonfec577f2007-02-26 10:40:21 -05001550 }
Chris Mason96b51792007-10-15 16:15:19 -04001551 if (btrfs_key_type(&key) != BTRFS_EXTENT_ITEM_KEY) {
Chris Mason7bb86312007-12-11 09:25:06 -05001552 if (!start_found && btrfs_key_type(&key) ==
1553 BTRFS_BLOCK_GROUP_ITEM_KEY) {
Chris Masondb945352007-10-15 16:15:53 -04001554 last_byte = key.objectid;
Chris Mason96b51792007-10-15 16:15:19 -04001555 start_found = 1;
1556 }
Chris Masone37c9e62007-05-09 20:13:14 -04001557 goto next;
Chris Mason96b51792007-10-15 16:15:19 -04001558 }
1559
Chris Masone37c9e62007-05-09 20:13:14 -04001560
Chris Mason0579da42007-03-07 16:15:30 -05001561 start_found = 1;
Chris Masondb945352007-10-15 16:15:53 -04001562 last_byte = key.objectid + key.offset;
Chris Masonf510cfe2007-10-15 16:14:48 -04001563
Chris Mason257d0ce2007-11-07 21:08:16 -05001564 if (!full_scan && data != BTRFS_BLOCK_GROUP_MIXED &&
1565 last_byte >= block_group->key.objectid +
Chris Masonbe744172007-05-06 10:15:01 -04001566 block_group->key.offset) {
1567 btrfs_release_path(root, path);
1568 search_start = block_group->key.objectid +
Chris Masone19caa52007-10-15 16:17:44 -04001569 block_group->key.offset;
Chris Masonbe744172007-05-06 10:15:01 -04001570 goto new_group;
1571 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001572next:
Chris Mason5caf2a02007-04-02 11:20:42 -04001573 path->slots[0]++;
Chris Masonde428b62007-05-18 13:28:27 -04001574 cond_resched();
Chris Masonfec577f2007-02-26 10:40:21 -05001575 }
Chris Masonfec577f2007-02-26 10:40:21 -05001576check_pending:
1577 /* we have to make sure we didn't find an extent that has already
1578 * been allocated by the map tree or the original allocation
1579 */
Chris Mason5caf2a02007-04-02 11:20:42 -04001580 btrfs_release_path(root, path);
Chris Masonfec577f2007-02-26 10:40:21 -05001581 BUG_ON(ins->objectid < search_start);
Chris Masone37c9e62007-05-09 20:13:14 -04001582
Chris Masondb945352007-10-15 16:15:53 -04001583 if (ins->objectid + num_bytes >= search_end)
Chris Masoncf675822007-09-17 11:00:51 -04001584 goto enospc;
Chris Mason257d0ce2007-11-07 21:08:16 -05001585 if (!full_scan && data != BTRFS_BLOCK_GROUP_MIXED &&
Yan5cf66422007-11-16 14:57:09 -05001586 ins->objectid + num_bytes > block_group->
Chris Masone19caa52007-10-15 16:17:44 -04001587 key.objectid + block_group->key.offset) {
1588 search_start = block_group->key.objectid +
1589 block_group->key.offset;
1590 goto new_group;
1591 }
Chris Mason1a5bc162007-10-15 16:15:26 -04001592 if (test_range_bit(&info->extent_ins, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001593 ins->objectid + num_bytes -1, EXTENT_LOCKED, 0)) {
1594 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001595 goto new_group;
1596 }
1597 if (test_range_bit(&info->pinned_extents, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001598 ins->objectid + num_bytes -1, EXTENT_DIRTY, 0)) {
1599 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001600 goto new_group;
Chris Masonfec577f2007-02-26 10:40:21 -05001601 }
Chris Masondb945352007-10-15 16:15:53 -04001602 if (exclude_nr > 0 && (ins->objectid + num_bytes > exclude_start &&
Chris Masonf2654de2007-06-26 12:20:46 -04001603 ins->objectid < exclude_start + exclude_nr)) {
1604 search_start = exclude_start + exclude_nr;
1605 goto new_group;
1606 }
Chris Masone37c9e62007-05-09 20:13:14 -04001607 if (!data) {
Chris Mason5276aed2007-06-11 21:33:38 -04001608 block_group = btrfs_lookup_block_group(info, ins->objectid);
Chris Mason26b80032007-08-08 20:17:12 -04001609 if (block_group)
1610 trans->block_group = block_group;
Chris Masoncd1bc462007-04-27 10:08:34 -04001611 }
Chris Masondb945352007-10-15 16:15:53 -04001612 ins->offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -04001613 btrfs_free_path(path);
Chris Mason60cde612008-02-01 14:51:59 -05001614 if (last_ptr)
Chris Mason4529ba42008-01-31 16:45:07 -05001615 *last_ptr = ins->objectid + ins->offset;
Chris Masonfec577f2007-02-26 10:40:21 -05001616 return 0;
Chris Masonbe744172007-05-06 10:15:01 -04001617
1618new_group:
Chris Masondb945352007-10-15 16:15:53 -04001619 if (search_start + num_bytes >= search_end) {
Chris Masoncf675822007-09-17 11:00:51 -04001620enospc:
Chris Masonbe744172007-05-06 10:15:01 -04001621 search_start = orig_search_start;
Chris Masonfbdc7622007-05-30 10:22:12 -04001622 if (full_scan) {
1623 ret = -ENOSPC;
1624 goto error;
1625 }
Chris Mason6702ed42007-08-07 16:15:09 -04001626 if (wrapped) {
1627 if (!full_scan)
1628 total_needed -= empty_size;
Chris Masonfbdc7622007-05-30 10:22:12 -04001629 full_scan = 1;
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001630 data = BTRFS_BLOCK_GROUP_MIXED;
Chris Mason6702ed42007-08-07 16:15:09 -04001631 } else
Chris Masonfbdc7622007-05-30 10:22:12 -04001632 wrapped = 1;
Chris Masonbe744172007-05-06 10:15:01 -04001633 }
Chris Mason5276aed2007-06-11 21:33:38 -04001634 block_group = btrfs_lookup_block_group(info, search_start);
Chris Masonfbdc7622007-05-30 10:22:12 -04001635 cond_resched();
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001636 block_group = btrfs_find_block_group(root, block_group,
1637 search_start, data, 0);
Chris Masonbe744172007-05-06 10:15:01 -04001638 goto check_failed;
1639
Chris Mason0f70abe2007-02-28 16:46:22 -05001640error:
Chris Mason5caf2a02007-04-02 11:20:42 -04001641 btrfs_release_path(root, path);
1642 btrfs_free_path(path);
Chris Mason0f70abe2007-02-28 16:46:22 -05001643 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001644}
Chris Masonfec577f2007-02-26 10:40:21 -05001645/*
Chris Masonfec577f2007-02-26 10:40:21 -05001646 * finds a free extent and does all the dirty work required for allocation
1647 * returns the key for the extent through ins, and a tree buffer for
1648 * the first block of the extent through buf.
1649 *
1650 * returns 0 if everything worked, non-zero otherwise.
1651 */
Chris Mason4d775672007-04-20 20:23:12 -04001652int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -05001653 struct btrfs_root *root,
1654 u64 num_bytes, u64 root_objectid, u64 ref_generation,
1655 u64 owner, u64 owner_offset,
1656 u64 empty_size, u64 hint_byte,
Chris Masonbe08c1b2007-05-03 09:06:49 -04001657 u64 search_end, struct btrfs_key *ins, int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001658{
1659 int ret;
1660 int pending_ret;
Chris Masonc31f8832008-01-08 15:46:31 -05001661 u64 super_used;
1662 u64 root_used;
Chris Masonfbdc7622007-05-30 10:22:12 -04001663 u64 search_start = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05001664 u64 new_hint;
Chris Mason47e4bb92008-02-01 14:51:59 -05001665 u32 sizes[2];
Chris Mason1261ec42007-03-20 20:35:03 -04001666 struct btrfs_fs_info *info = root->fs_info;
1667 struct btrfs_root *extent_root = info->extent_root;
Chris Mason47e4bb92008-02-01 14:51:59 -05001668 struct btrfs_extent_item *extent_item;
1669 struct btrfs_extent_ref *ref;
Chris Mason7bb86312007-12-11 09:25:06 -05001670 struct btrfs_path *path;
Chris Mason47e4bb92008-02-01 14:51:59 -05001671 struct btrfs_key keys[2];
Chris Mason8f662a72008-01-02 10:01:11 -05001672
1673 new_hint = max(hint_byte, root->fs_info->alloc_start);
Chris Masonedbd8d42007-12-21 16:27:24 -05001674 if (new_hint < btrfs_super_total_bytes(&info->super_copy))
1675 hint_byte = new_hint;
Chris Mason8f662a72008-01-02 10:01:11 -05001676
Chris Masondb945352007-10-15 16:15:53 -04001677 WARN_ON(num_bytes < root->sectorsize);
1678 ret = find_free_extent(trans, root, num_bytes, empty_size,
1679 search_start, search_end, hint_byte, ins,
Chris Mason26b80032007-08-08 20:17:12 -04001680 trans->alloc_exclude_start,
1681 trans->alloc_exclude_nr, data);
Chris Masonccd467d2007-06-28 15:57:36 -04001682 BUG_ON(ret);
Chris Masonf2654de2007-06-26 12:20:46 -04001683 if (ret)
1684 return ret;
1685
Josef Bacik58176a92007-08-29 15:47:34 -04001686 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -04001687 super_used = btrfs_super_bytes_used(&info->super_copy);
1688 btrfs_set_super_bytes_used(&info->super_copy, super_used + num_bytes);
Chris Mason26b80032007-08-08 20:17:12 -04001689
Josef Bacik58176a92007-08-29 15:47:34 -04001690 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001691 root_used = btrfs_root_used(&root->root_item);
1692 btrfs_set_root_used(&root->root_item, root_used + num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001693
Chris Masonf510cfe2007-10-15 16:14:48 -04001694 clear_extent_dirty(&root->fs_info->free_space_cache,
1695 ins->objectid, ins->objectid + ins->offset - 1,
1696 GFP_NOFS);
1697
Chris Mason26b80032007-08-08 20:17:12 -04001698 if (root == extent_root) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001699 set_extent_bits(&root->fs_info->extent_ins, ins->objectid,
1700 ins->objectid + ins->offset - 1,
1701 EXTENT_LOCKED, GFP_NOFS);
Chris Masone19caa52007-10-15 16:17:44 -04001702 WARN_ON(data == 1);
Chris Mason26b80032007-08-08 20:17:12 -04001703 goto update_block;
1704 }
1705
1706 WARN_ON(trans->alloc_exclude_nr);
1707 trans->alloc_exclude_start = ins->objectid;
1708 trans->alloc_exclude_nr = ins->offset;
Chris Mason037e6392007-03-07 11:50:24 -05001709
Chris Mason47e4bb92008-02-01 14:51:59 -05001710 memcpy(&keys[0], ins, sizeof(*ins));
1711 keys[1].offset = hash_extent_ref(root_objectid, ref_generation,
1712 owner, owner_offset);
1713 keys[1].objectid = ins->objectid;
1714 keys[1].type = BTRFS_EXTENT_REF_KEY;
1715 sizes[0] = sizeof(*extent_item);
1716 sizes[1] = sizeof(*ref);
Chris Mason7bb86312007-12-11 09:25:06 -05001717
1718 path = btrfs_alloc_path();
1719 BUG_ON(!path);
Chris Mason47e4bb92008-02-01 14:51:59 -05001720
1721 ret = btrfs_insert_empty_items(trans, extent_root, path, keys,
1722 sizes, 2);
Chris Mason26b80032007-08-08 20:17:12 -04001723
Chris Masonccd467d2007-06-28 15:57:36 -04001724 BUG_ON(ret);
Chris Mason47e4bb92008-02-01 14:51:59 -05001725 extent_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1726 struct btrfs_extent_item);
1727 btrfs_set_extent_refs(path->nodes[0], extent_item, 1);
1728 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
1729 struct btrfs_extent_ref);
1730
1731 btrfs_set_ref_root(path->nodes[0], ref, root_objectid);
1732 btrfs_set_ref_generation(path->nodes[0], ref, ref_generation);
1733 btrfs_set_ref_objectid(path->nodes[0], ref, owner);
1734 btrfs_set_ref_offset(path->nodes[0], ref, owner_offset);
1735
1736 btrfs_mark_buffer_dirty(path->nodes[0]);
1737
1738 trans->alloc_exclude_start = 0;
1739 trans->alloc_exclude_nr = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001740 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001741 finish_current_insert(trans, extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04001742 pending_ret = del_pending_extents(trans, extent_root);
Chris Masonf510cfe2007-10-15 16:14:48 -04001743
Chris Masone37c9e62007-05-09 20:13:14 -04001744 if (ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001745 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001746 }
1747 if (pending_ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001748 return pending_ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001749 }
Chris Mason26b80032007-08-08 20:17:12 -04001750
1751update_block:
Chris Mason1e2677e2007-05-29 16:52:18 -04001752 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1, 0,
1753 data);
Chris Masonf5947062008-02-04 10:10:13 -05001754 if (ret) {
1755 printk("update block group failed for %Lu %Lu\n",
1756 ins->objectid, ins->offset);
1757 BUG();
1758 }
Chris Mason037e6392007-03-07 11:50:24 -05001759 return 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001760}
1761
1762/*
1763 * helper function to allocate a block for a given tree
1764 * returns the tree buffer or NULL.
1765 */
Chris Mason5f39d392007-10-15 16:14:19 -04001766struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -04001767 struct btrfs_root *root,
Chris Mason7bb86312007-12-11 09:25:06 -05001768 u32 blocksize,
1769 u64 root_objectid, u64 hint,
1770 u64 empty_size)
1771{
1772 u64 ref_generation;
1773
1774 if (root->ref_cows)
1775 ref_generation = trans->transid;
1776 else
1777 ref_generation = 0;
1778
1779
1780 return __btrfs_alloc_free_block(trans, root, blocksize, root_objectid,
1781 ref_generation, 0, 0, hint, empty_size);
1782}
1783
1784/*
1785 * helper function to allocate a block for a given tree
1786 * returns the tree buffer or NULL.
1787 */
1788struct extent_buffer *__btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
1789 struct btrfs_root *root,
1790 u32 blocksize,
1791 u64 root_objectid,
1792 u64 ref_generation,
1793 u64 first_objectid,
1794 int level,
1795 u64 hint,
Chris Mason5f39d392007-10-15 16:14:19 -04001796 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05001797{
Chris Masone2fa7222007-03-12 16:22:34 -04001798 struct btrfs_key ins;
Chris Masonfec577f2007-02-26 10:40:21 -05001799 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04001800 struct extent_buffer *buf;
Chris Masonfec577f2007-02-26 10:40:21 -05001801
Chris Mason7bb86312007-12-11 09:25:06 -05001802 ret = btrfs_alloc_extent(trans, root, blocksize,
1803 root_objectid, ref_generation,
Chris Masonf6dbff52007-12-13 11:13:32 -05001804 level, first_objectid, empty_size, hint,
Chris Masondb945352007-10-15 16:15:53 -04001805 (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05001806 if (ret) {
Chris Mason54aa1f42007-06-22 14:16:25 -04001807 BUG_ON(ret > 0);
1808 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05001809 }
Chris Masondb945352007-10-15 16:15:53 -04001810 buf = btrfs_find_create_tree_block(root, ins.objectid, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04001811 if (!buf) {
Chris Mason7bb86312007-12-11 09:25:06 -05001812 btrfs_free_extent(trans, root, ins.objectid, blocksize,
1813 root->root_key.objectid, ref_generation,
1814 0, 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001815 return ERR_PTR(-ENOMEM);
1816 }
Chris Mason55c69072008-01-09 15:55:33 -05001817 btrfs_set_header_generation(buf, trans->transid);
1818 clean_tree_block(trans, root, buf);
1819 wait_on_tree_block_writeback(root, buf);
Chris Mason5f39d392007-10-15 16:14:19 -04001820 btrfs_set_buffer_uptodate(buf);
Chris Mason55c69072008-01-09 15:55:33 -05001821
1822 if (PageDirty(buf->first_page)) {
1823 printk("page %lu dirty\n", buf->first_page->index);
1824 WARN_ON(1);
1825 }
1826
Chris Mason5f39d392007-10-15 16:14:19 -04001827 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
1828 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001829 set_extent_bits(&BTRFS_I(root->fs_info->btree_inode)->io_tree,
Chris Mason19c00dd2007-10-15 16:19:22 -04001830 buf->start, buf->start + buf->len - 1,
1831 EXTENT_CSUM, GFP_NOFS);
1832 buf->flags |= EXTENT_CSUM;
Chris Mason60cde612008-02-01 14:51:59 -05001833 btrfs_set_buffer_defrag(buf);
Chris Masond3c2fdc2007-09-17 10:58:06 -04001834 trans->blocks_used++;
Chris Masonfec577f2007-02-26 10:40:21 -05001835 return buf;
1836}
Chris Masona28ec192007-03-06 20:08:01 -05001837
Chris Mason98ed5172008-01-03 10:01:48 -05001838static int noinline drop_leaf_ref(struct btrfs_trans_handle *trans,
1839 struct btrfs_root *root,
1840 struct extent_buffer *leaf)
Chris Mason6407bf62007-03-27 06:33:00 -04001841{
Chris Mason7bb86312007-12-11 09:25:06 -05001842 u64 leaf_owner;
1843 u64 leaf_generation;
Chris Mason5f39d392007-10-15 16:14:19 -04001844 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -04001845 struct btrfs_file_extent_item *fi;
1846 int i;
1847 int nritems;
1848 int ret;
1849
Chris Mason5f39d392007-10-15 16:14:19 -04001850 BUG_ON(!btrfs_is_leaf(leaf));
1851 nritems = btrfs_header_nritems(leaf);
Chris Mason7bb86312007-12-11 09:25:06 -05001852 leaf_owner = btrfs_header_owner(leaf);
1853 leaf_generation = btrfs_header_generation(leaf);
1854
Chris Mason6407bf62007-03-27 06:33:00 -04001855 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001856 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04001857
1858 btrfs_item_key_to_cpu(leaf, &key, i);
1859 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -04001860 continue;
1861 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001862 if (btrfs_file_extent_type(leaf, fi) ==
1863 BTRFS_FILE_EXTENT_INLINE)
Chris Mason236454d2007-04-19 13:37:44 -04001864 continue;
Chris Mason6407bf62007-03-27 06:33:00 -04001865 /*
1866 * FIXME make sure to insert a trans record that
1867 * repeats the snapshot del on crash
1868 */
Chris Masondb945352007-10-15 16:15:53 -04001869 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1870 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -04001871 continue;
Chris Masondb945352007-10-15 16:15:53 -04001872 ret = btrfs_free_extent(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05001873 btrfs_file_extent_disk_num_bytes(leaf, fi),
1874 leaf_owner, leaf_generation,
1875 key.objectid, key.offset, 0);
Chris Mason6407bf62007-03-27 06:33:00 -04001876 BUG_ON(ret);
1877 }
1878 return 0;
1879}
1880
Chris Mason98ed5172008-01-03 10:01:48 -05001881static void noinline reada_walk_down(struct btrfs_root *root,
Chris Masonbea495e2008-01-24 16:13:14 -05001882 struct extent_buffer *node,
1883 int slot)
Chris Masone0115992007-06-19 16:23:05 -04001884{
Chris Masondb945352007-10-15 16:15:53 -04001885 u64 bytenr;
Chris Masonbea495e2008-01-24 16:13:14 -05001886 u64 last = 0;
1887 u32 nritems;
Chris Masone0115992007-06-19 16:23:05 -04001888 u32 refs;
Chris Masondb945352007-10-15 16:15:53 -04001889 u32 blocksize;
Chris Masonbea495e2008-01-24 16:13:14 -05001890 int ret;
1891 int i;
1892 int level;
1893 int skipped = 0;
Chris Masone0115992007-06-19 16:23:05 -04001894
Chris Mason5f39d392007-10-15 16:14:19 -04001895 nritems = btrfs_header_nritems(node);
Chris Masondb945352007-10-15 16:15:53 -04001896 level = btrfs_header_level(node);
Chris Masonbea495e2008-01-24 16:13:14 -05001897 if (level)
1898 return;
1899
1900 for (i = slot; i < nritems && skipped < 32; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001901 bytenr = btrfs_node_blockptr(node, i);
Chris Masonbea495e2008-01-24 16:13:14 -05001902 if (last && ((bytenr > last && bytenr - last > 32 * 1024) ||
1903 (last > bytenr && last - bytenr > 32 * 1024))) {
1904 skipped++;
Chris Masone0115992007-06-19 16:23:05 -04001905 continue;
Chris Masonbea495e2008-01-24 16:13:14 -05001906 }
1907 blocksize = btrfs_level_size(root, level - 1);
1908 if (i != slot) {
1909 ret = lookup_extent_ref(NULL, root, bytenr,
1910 blocksize, &refs);
1911 BUG_ON(ret);
1912 if (refs != 1) {
1913 skipped++;
1914 continue;
1915 }
1916 }
Chris Mason409eb952007-08-08 20:17:12 -04001917 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masondb945352007-10-15 16:15:53 -04001918 ret = readahead_tree_block(root, bytenr, blocksize);
Chris Masonbea495e2008-01-24 16:13:14 -05001919 last = bytenr + blocksize;
Chris Mason409eb952007-08-08 20:17:12 -04001920 cond_resched();
1921 mutex_lock(&root->fs_info->fs_mutex);
Chris Masone0115992007-06-19 16:23:05 -04001922 if (ret)
1923 break;
1924 }
1925}
1926
Chris Mason9aca1d52007-03-13 11:09:37 -04001927/*
1928 * helper function for drop_snapshot, this walks down the tree dropping ref
1929 * counts as it goes.
1930 */
Chris Mason98ed5172008-01-03 10:01:48 -05001931static int noinline walk_down_tree(struct btrfs_trans_handle *trans,
1932 struct btrfs_root *root,
1933 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05001934{
Chris Mason7bb86312007-12-11 09:25:06 -05001935 u64 root_owner;
1936 u64 root_gen;
1937 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04001938 struct extent_buffer *next;
1939 struct extent_buffer *cur;
Chris Mason7bb86312007-12-11 09:25:06 -05001940 struct extent_buffer *parent;
Chris Masondb945352007-10-15 16:15:53 -04001941 u32 blocksize;
Chris Mason20524f02007-03-10 06:35:47 -05001942 int ret;
1943 u32 refs;
1944
Chris Mason5caf2a02007-04-02 11:20:42 -04001945 WARN_ON(*level < 0);
1946 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason5f39d392007-10-15 16:14:19 -04001947 ret = lookup_extent_ref(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04001948 path->nodes[*level]->start,
1949 path->nodes[*level]->len, &refs);
Chris Mason20524f02007-03-10 06:35:47 -05001950 BUG_ON(ret);
1951 if (refs > 1)
1952 goto out;
Chris Masone0115992007-06-19 16:23:05 -04001953
Chris Mason9aca1d52007-03-13 11:09:37 -04001954 /*
1955 * walk down to the last node level and free all the leaves
1956 */
Chris Mason6407bf62007-03-27 06:33:00 -04001957 while(*level >= 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001958 WARN_ON(*level < 0);
1959 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason20524f02007-03-10 06:35:47 -05001960 cur = path->nodes[*level];
Chris Masone0115992007-06-19 16:23:05 -04001961
Chris Mason5f39d392007-10-15 16:14:19 -04001962 if (btrfs_header_level(cur) != *level)
Chris Mason2c90e5d2007-04-02 10:50:19 -04001963 WARN_ON(1);
Chris Masone0115992007-06-19 16:23:05 -04001964
Chris Mason7518a232007-03-12 12:01:18 -04001965 if (path->slots[*level] >=
Chris Mason5f39d392007-10-15 16:14:19 -04001966 btrfs_header_nritems(cur))
Chris Mason20524f02007-03-10 06:35:47 -05001967 break;
Chris Mason6407bf62007-03-27 06:33:00 -04001968 if (*level == 0) {
1969 ret = drop_leaf_ref(trans, root, cur);
1970 BUG_ON(ret);
1971 break;
1972 }
Chris Masondb945352007-10-15 16:15:53 -04001973 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
1974 blocksize = btrfs_level_size(root, *level - 1);
1975 ret = lookup_extent_ref(trans, root, bytenr, blocksize, &refs);
Chris Mason6407bf62007-03-27 06:33:00 -04001976 BUG_ON(ret);
1977 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05001978 parent = path->nodes[*level];
1979 root_owner = btrfs_header_owner(parent);
1980 root_gen = btrfs_header_generation(parent);
Chris Mason20524f02007-03-10 06:35:47 -05001981 path->slots[*level]++;
Chris Masondb945352007-10-15 16:15:53 -04001982 ret = btrfs_free_extent(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05001983 blocksize, root_owner,
1984 root_gen, 0, 0, 1);
Chris Mason20524f02007-03-10 06:35:47 -05001985 BUG_ON(ret);
1986 continue;
1987 }
Chris Masondb945352007-10-15 16:15:53 -04001988 next = btrfs_find_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04001989 if (!next || !btrfs_buffer_uptodate(next)) {
1990 free_extent_buffer(next);
Chris Masonbea495e2008-01-24 16:13:14 -05001991 reada_walk_down(root, cur, path->slots[*level]);
Chris Masone9d0b132007-08-10 14:06:19 -04001992 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masondb945352007-10-15 16:15:53 -04001993 next = read_tree_block(root, bytenr, blocksize);
Chris Masone9d0b132007-08-10 14:06:19 -04001994 mutex_lock(&root->fs_info->fs_mutex);
1995
1996 /* we dropped the lock, check one more time */
Chris Masondb945352007-10-15 16:15:53 -04001997 ret = lookup_extent_ref(trans, root, bytenr,
1998 blocksize, &refs);
Chris Masone9d0b132007-08-10 14:06:19 -04001999 BUG_ON(ret);
2000 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05002001 parent = path->nodes[*level];
2002 root_owner = btrfs_header_owner(parent);
2003 root_gen = btrfs_header_generation(parent);
2004
Chris Masone9d0b132007-08-10 14:06:19 -04002005 path->slots[*level]++;
Chris Mason5f39d392007-10-15 16:14:19 -04002006 free_extent_buffer(next);
Chris Mason7bb86312007-12-11 09:25:06 -05002007 ret = btrfs_free_extent(trans, root, bytenr,
2008 blocksize,
2009 root_owner,
2010 root_gen, 0, 0, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04002011 BUG_ON(ret);
2012 continue;
2013 }
2014 }
Chris Mason5caf2a02007-04-02 11:20:42 -04002015 WARN_ON(*level <= 0);
Chris Mason83e15a22007-03-12 09:03:27 -04002016 if (path->nodes[*level-1])
Chris Mason5f39d392007-10-15 16:14:19 -04002017 free_extent_buffer(path->nodes[*level-1]);
Chris Mason20524f02007-03-10 06:35:47 -05002018 path->nodes[*level-1] = next;
Chris Mason5f39d392007-10-15 16:14:19 -04002019 *level = btrfs_header_level(next);
Chris Mason20524f02007-03-10 06:35:47 -05002020 path->slots[*level] = 0;
2021 }
2022out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002023 WARN_ON(*level < 0);
2024 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason7bb86312007-12-11 09:25:06 -05002025
2026 if (path->nodes[*level] == root->node) {
2027 root_owner = root->root_key.objectid;
2028 parent = path->nodes[*level];
2029 } else {
2030 parent = path->nodes[*level + 1];
2031 root_owner = btrfs_header_owner(parent);
2032 }
2033
2034 root_gen = btrfs_header_generation(parent);
Chris Masondb945352007-10-15 16:15:53 -04002035 ret = btrfs_free_extent(trans, root, path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002036 path->nodes[*level]->len,
2037 root_owner, root_gen, 0, 0, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002038 free_extent_buffer(path->nodes[*level]);
Chris Mason20524f02007-03-10 06:35:47 -05002039 path->nodes[*level] = NULL;
2040 *level += 1;
2041 BUG_ON(ret);
2042 return 0;
2043}
2044
Chris Mason9aca1d52007-03-13 11:09:37 -04002045/*
2046 * helper for dropping snapshots. This walks back up the tree in the path
2047 * to find the first node higher up where we haven't yet gone through
2048 * all the slots
2049 */
Chris Mason98ed5172008-01-03 10:01:48 -05002050static int noinline walk_up_tree(struct btrfs_trans_handle *trans,
2051 struct btrfs_root *root,
2052 struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05002053{
Chris Mason7bb86312007-12-11 09:25:06 -05002054 u64 root_owner;
2055 u64 root_gen;
2056 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002057 int i;
2058 int slot;
2059 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04002060
Chris Mason234b63a2007-03-13 10:46:10 -04002061 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Mason20524f02007-03-10 06:35:47 -05002062 slot = path->slots[i];
Chris Mason5f39d392007-10-15 16:14:19 -04002063 if (slot < btrfs_header_nritems(path->nodes[i]) - 1) {
2064 struct extent_buffer *node;
2065 struct btrfs_disk_key disk_key;
2066 node = path->nodes[i];
Chris Mason20524f02007-03-10 06:35:47 -05002067 path->slots[i]++;
2068 *level = i;
Chris Mason9f3a7422007-08-07 15:52:19 -04002069 WARN_ON(*level == 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002070 btrfs_node_key(node, &disk_key, path->slots[i]);
Chris Mason9f3a7422007-08-07 15:52:19 -04002071 memcpy(&root_item->drop_progress,
Chris Mason5f39d392007-10-15 16:14:19 -04002072 &disk_key, sizeof(disk_key));
Chris Mason9f3a7422007-08-07 15:52:19 -04002073 root_item->drop_level = i;
Chris Mason20524f02007-03-10 06:35:47 -05002074 return 0;
2075 } else {
Chris Mason7bb86312007-12-11 09:25:06 -05002076 if (path->nodes[*level] == root->node) {
2077 root_owner = root->root_key.objectid;
2078 root_gen =
2079 btrfs_header_generation(path->nodes[*level]);
2080 } else {
2081 struct extent_buffer *node;
2082 node = path->nodes[*level + 1];
2083 root_owner = btrfs_header_owner(node);
2084 root_gen = btrfs_header_generation(node);
2085 }
Chris Masone089f052007-03-16 16:20:31 -04002086 ret = btrfs_free_extent(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04002087 path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05002088 path->nodes[*level]->len,
2089 root_owner, root_gen, 0, 0, 1);
Chris Mason6407bf62007-03-27 06:33:00 -04002090 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04002091 free_extent_buffer(path->nodes[*level]);
Chris Mason83e15a22007-03-12 09:03:27 -04002092 path->nodes[*level] = NULL;
Chris Mason20524f02007-03-10 06:35:47 -05002093 *level = i + 1;
Chris Mason20524f02007-03-10 06:35:47 -05002094 }
2095 }
2096 return 1;
2097}
2098
Chris Mason9aca1d52007-03-13 11:09:37 -04002099/*
2100 * drop the reference count on the tree rooted at 'snap'. This traverses
2101 * the tree freeing any blocks that have a ref count of zero after being
2102 * decremented.
2103 */
Chris Masone089f052007-03-16 16:20:31 -04002104int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason9f3a7422007-08-07 15:52:19 -04002105 *root)
Chris Mason20524f02007-03-10 06:35:47 -05002106{
Chris Mason3768f362007-03-13 16:47:54 -04002107 int ret = 0;
Chris Mason9aca1d52007-03-13 11:09:37 -04002108 int wret;
Chris Mason20524f02007-03-10 06:35:47 -05002109 int level;
Chris Mason5caf2a02007-04-02 11:20:42 -04002110 struct btrfs_path *path;
Chris Mason20524f02007-03-10 06:35:47 -05002111 int i;
2112 int orig_level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002113 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002114
Chris Mason5caf2a02007-04-02 11:20:42 -04002115 path = btrfs_alloc_path();
2116 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05002117
Chris Mason5f39d392007-10-15 16:14:19 -04002118 level = btrfs_header_level(root->node);
Chris Mason20524f02007-03-10 06:35:47 -05002119 orig_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002120 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2121 path->nodes[level] = root->node;
Chris Masonf510cfe2007-10-15 16:14:48 -04002122 extent_buffer_get(root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -04002123 path->slots[level] = 0;
2124 } else {
2125 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002126 struct btrfs_disk_key found_key;
2127 struct extent_buffer *node;
Chris Mason6702ed42007-08-07 16:15:09 -04002128
Chris Mason9f3a7422007-08-07 15:52:19 -04002129 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Chris Mason6702ed42007-08-07 16:15:09 -04002130 level = root_item->drop_level;
2131 path->lowest_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002132 wret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason6702ed42007-08-07 16:15:09 -04002133 if (wret < 0) {
Chris Mason9f3a7422007-08-07 15:52:19 -04002134 ret = wret;
2135 goto out;
2136 }
Chris Mason5f39d392007-10-15 16:14:19 -04002137 node = path->nodes[level];
2138 btrfs_node_key(node, &found_key, path->slots[level]);
2139 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
2140 sizeof(found_key)));
Chris Mason9f3a7422007-08-07 15:52:19 -04002141 }
Chris Mason20524f02007-03-10 06:35:47 -05002142 while(1) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002143 wret = walk_down_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002144 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002145 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002146 if (wret < 0)
2147 ret = wret;
2148
Chris Mason5caf2a02007-04-02 11:20:42 -04002149 wret = walk_up_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002150 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002151 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002152 if (wret < 0)
2153 ret = wret;
Chris Mason409eb952007-08-08 20:17:12 -04002154 ret = -EAGAIN;
Chris Mason409eb952007-08-08 20:17:12 -04002155 break;
Chris Mason20524f02007-03-10 06:35:47 -05002156 }
Chris Mason83e15a22007-03-12 09:03:27 -04002157 for (i = 0; i <= orig_level; i++) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002158 if (path->nodes[i]) {
Chris Mason5f39d392007-10-15 16:14:19 -04002159 free_extent_buffer(path->nodes[i]);
Chris Mason0f827312007-10-15 16:18:56 -04002160 path->nodes[i] = NULL;
Chris Mason83e15a22007-03-12 09:03:27 -04002161 }
Chris Mason20524f02007-03-10 06:35:47 -05002162 }
Chris Mason9f3a7422007-08-07 15:52:19 -04002163out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002164 btrfs_free_path(path);
Chris Mason9aca1d52007-03-13 11:09:37 -04002165 return ret;
Chris Mason20524f02007-03-10 06:35:47 -05002166}
Chris Mason9078a3e2007-04-26 16:46:15 -04002167
Chris Masonbe744172007-05-06 10:15:01 -04002168int btrfs_free_block_groups(struct btrfs_fs_info *info)
2169{
Chris Masonf510cfe2007-10-15 16:14:48 -04002170 u64 start;
2171 u64 end;
Yanb97f9202007-11-01 11:28:41 -04002172 u64 ptr;
Chris Mason96b51792007-10-15 16:15:19 -04002173 int ret;
Chris Mason96b51792007-10-15 16:15:19 -04002174 while(1) {
2175 ret = find_first_extent_bit(&info->block_group_cache, 0,
2176 &start, &end, (unsigned int)-1);
2177 if (ret)
2178 break;
Yanb97f9202007-11-01 11:28:41 -04002179 ret = get_state_private(&info->block_group_cache, start, &ptr);
2180 if (!ret)
2181 kfree((void *)(unsigned long)ptr);
Chris Mason96b51792007-10-15 16:15:19 -04002182 clear_extent_bits(&info->block_group_cache, start,
2183 end, (unsigned int)-1, GFP_NOFS);
2184 }
Chris Masone37c9e62007-05-09 20:13:14 -04002185 while(1) {
Chris Masonf510cfe2007-10-15 16:14:48 -04002186 ret = find_first_extent_bit(&info->free_space_cache, 0,
2187 &start, &end, EXTENT_DIRTY);
2188 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -04002189 break;
Chris Masonf510cfe2007-10-15 16:14:48 -04002190 clear_extent_dirty(&info->free_space_cache, start,
2191 end, GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04002192 }
Chris Masonbe744172007-05-06 10:15:01 -04002193 return 0;
2194}
2195
Chris Mason98ed5172008-01-03 10:01:48 -05002196static int noinline relocate_inode_pages(struct inode *inode, u64 start,
2197 u64 len)
Chris Masonedbd8d42007-12-21 16:27:24 -05002198{
2199 u64 page_start;
2200 u64 page_end;
2201 u64 delalloc_start;
2202 u64 existing_delalloc;
2203 unsigned long last_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05002204 unsigned long i;
2205 struct page *page;
Chris Masond1310b22008-01-24 16:13:08 -05002206 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason4313b392008-01-03 09:08:48 -05002207 struct file_ra_state *ra;
2208
2209 ra = kzalloc(sizeof(*ra), GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002210
2211 mutex_lock(&inode->i_mutex);
Chris Mason4313b392008-01-03 09:08:48 -05002212 i = start >> PAGE_CACHE_SHIFT;
Chris Masonedbd8d42007-12-21 16:27:24 -05002213 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
2214
Chris Mason4313b392008-01-03 09:08:48 -05002215 file_ra_state_init(ra, inode->i_mapping);
2216 btrfs_force_ra(inode->i_mapping, ra, NULL, i, last_index);
2217 kfree(ra);
Chris Masonedbd8d42007-12-21 16:27:24 -05002218
Chris Mason4313b392008-01-03 09:08:48 -05002219 for (; i <= last_index; i++) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002220 page = grab_cache_page(inode->i_mapping, i);
2221 if (!page)
2222 goto out_unlock;
2223 if (!PageUptodate(page)) {
2224 btrfs_readpage(NULL, page);
2225 lock_page(page);
2226 if (!PageUptodate(page)) {
2227 unlock_page(page);
2228 page_cache_release(page);
2229 goto out_unlock;
2230 }
2231 }
2232 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
2233 page_end = page_start + PAGE_CACHE_SIZE - 1;
2234
Chris Masond1310b22008-01-24 16:13:08 -05002235 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002236
2237 delalloc_start = page_start;
Chris Masond1310b22008-01-24 16:13:08 -05002238 existing_delalloc = count_range_bits(io_tree,
2239 &delalloc_start, page_end,
2240 PAGE_CACHE_SIZE, EXTENT_DELALLOC);
Chris Masonedbd8d42007-12-21 16:27:24 -05002241
Chris Masond1310b22008-01-24 16:13:08 -05002242 set_extent_delalloc(io_tree, page_start,
Chris Masonedbd8d42007-12-21 16:27:24 -05002243 page_end, GFP_NOFS);
2244
Chris Masond1310b22008-01-24 16:13:08 -05002245 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002246 set_page_dirty(page);
2247 unlock_page(page);
2248 page_cache_release(page);
2249 }
2250
2251out_unlock:
2252 mutex_unlock(&inode->i_mutex);
2253 return 0;
2254}
2255
Chris Mason4313b392008-01-03 09:08:48 -05002256/*
2257 * note, this releases the path
2258 */
Chris Mason98ed5172008-01-03 10:01:48 -05002259static int noinline relocate_one_reference(struct btrfs_root *extent_root,
Chris Masonedbd8d42007-12-21 16:27:24 -05002260 struct btrfs_path *path,
Chris Mason4313b392008-01-03 09:08:48 -05002261 struct btrfs_key *extent_key)
Chris Masonedbd8d42007-12-21 16:27:24 -05002262{
2263 struct inode *inode;
2264 struct btrfs_root *found_root;
Chris Mason4313b392008-01-03 09:08:48 -05002265 struct btrfs_key *root_location;
2266 struct btrfs_extent_ref *ref;
2267 u64 ref_root;
2268 u64 ref_gen;
2269 u64 ref_objectid;
2270 u64 ref_offset;
Chris Masonedbd8d42007-12-21 16:27:24 -05002271 int ret;
2272
Chris Mason4313b392008-01-03 09:08:48 -05002273 ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
2274 struct btrfs_extent_ref);
2275 ref_root = btrfs_ref_root(path->nodes[0], ref);
2276 ref_gen = btrfs_ref_generation(path->nodes[0], ref);
2277 ref_objectid = btrfs_ref_objectid(path->nodes[0], ref);
2278 ref_offset = btrfs_ref_offset(path->nodes[0], ref);
2279 btrfs_release_path(extent_root, path);
2280
2281 root_location = kmalloc(sizeof(*root_location), GFP_NOFS);
2282 root_location->objectid = ref_root;
Chris Masonedbd8d42007-12-21 16:27:24 -05002283 if (ref_gen == 0)
Chris Mason4313b392008-01-03 09:08:48 -05002284 root_location->offset = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002285 else
Chris Mason4313b392008-01-03 09:08:48 -05002286 root_location->offset = (u64)-1;
2287 root_location->type = BTRFS_ROOT_ITEM_KEY;
Chris Masonedbd8d42007-12-21 16:27:24 -05002288
2289 found_root = btrfs_read_fs_root_no_name(extent_root->fs_info,
Chris Mason4313b392008-01-03 09:08:48 -05002290 root_location);
Chris Masonedbd8d42007-12-21 16:27:24 -05002291 BUG_ON(!found_root);
Chris Mason4313b392008-01-03 09:08:48 -05002292 kfree(root_location);
Chris Masonedbd8d42007-12-21 16:27:24 -05002293
2294 if (ref_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
2295 mutex_unlock(&extent_root->fs_info->fs_mutex);
2296 inode = btrfs_iget_locked(extent_root->fs_info->sb,
2297 ref_objectid, found_root);
2298 if (inode->i_state & I_NEW) {
2299 /* the inode and parent dir are two different roots */
2300 BTRFS_I(inode)->root = found_root;
2301 BTRFS_I(inode)->location.objectid = ref_objectid;
2302 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
2303 BTRFS_I(inode)->location.offset = 0;
2304 btrfs_read_locked_inode(inode);
2305 unlock_new_inode(inode);
2306
2307 }
2308 /* this can happen if the reference is not against
2309 * the latest version of the tree root
2310 */
2311 if (is_bad_inode(inode)) {
2312 mutex_lock(&extent_root->fs_info->fs_mutex);
2313 goto out;
2314 }
2315 relocate_inode_pages(inode, ref_offset, extent_key->offset);
2316 /* FIXME, data=ordered will help get rid of this */
2317 filemap_fdatawrite(inode->i_mapping);
2318 iput(inode);
2319 mutex_lock(&extent_root->fs_info->fs_mutex);
2320 } else {
2321 struct btrfs_trans_handle *trans;
2322 struct btrfs_key found_key;
2323 struct extent_buffer *eb;
2324 int level;
2325 int i;
2326
2327 trans = btrfs_start_transaction(found_root, 1);
2328 eb = read_tree_block(found_root, extent_key->objectid,
2329 extent_key->offset);
2330 level = btrfs_header_level(eb);
2331
2332 if (level == 0)
2333 btrfs_item_key_to_cpu(eb, &found_key, 0);
2334 else
2335 btrfs_node_key_to_cpu(eb, &found_key, 0);
2336
2337 free_extent_buffer(eb);
2338
2339 path->lowest_level = level;
Chris Mason8f662a72008-01-02 10:01:11 -05002340 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05002341 ret = btrfs_search_slot(trans, found_root, &found_key, path,
2342 0, 1);
2343 path->lowest_level = 0;
2344 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2345 if (!path->nodes[i])
2346 break;
2347 free_extent_buffer(path->nodes[i]);
2348 path->nodes[i] = NULL;
2349 }
2350 btrfs_release_path(found_root, path);
2351 btrfs_end_transaction(trans, found_root);
2352 }
2353
2354out:
2355 return 0;
2356}
2357
Chris Mason98ed5172008-01-03 10:01:48 -05002358static int noinline relocate_one_extent(struct btrfs_root *extent_root,
2359 struct btrfs_path *path,
2360 struct btrfs_key *extent_key)
Chris Masonedbd8d42007-12-21 16:27:24 -05002361{
2362 struct btrfs_key key;
2363 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05002364 struct extent_buffer *leaf;
Chris Masonedbd8d42007-12-21 16:27:24 -05002365 u32 nritems;
2366 u32 item_size;
2367 int ret = 0;
2368
2369 key.objectid = extent_key->objectid;
2370 key.type = BTRFS_EXTENT_REF_KEY;
2371 key.offset = 0;
2372
2373 while(1) {
2374 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2375
Chris Masonedbd8d42007-12-21 16:27:24 -05002376 if (ret < 0)
2377 goto out;
2378
2379 ret = 0;
2380 leaf = path->nodes[0];
2381 nritems = btrfs_header_nritems(leaf);
2382 if (path->slots[0] == nritems)
2383 goto out;
2384
2385 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2386 if (found_key.objectid != extent_key->objectid)
2387 break;
2388
2389 if (found_key.type != BTRFS_EXTENT_REF_KEY)
2390 break;
2391
2392 key.offset = found_key.offset + 1;
2393 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2394
Chris Mason4313b392008-01-03 09:08:48 -05002395 ret = relocate_one_reference(extent_root, path, extent_key);
Chris Masonedbd8d42007-12-21 16:27:24 -05002396 if (ret)
2397 goto out;
2398 }
2399 ret = 0;
2400out:
2401 btrfs_release_path(extent_root, path);
2402 return ret;
2403}
2404
Chris Masonedbd8d42007-12-21 16:27:24 -05002405int btrfs_shrink_extent_tree(struct btrfs_root *root, u64 new_size)
2406{
2407 struct btrfs_trans_handle *trans;
2408 struct btrfs_root *tree_root = root->fs_info->tree_root;
2409 struct btrfs_path *path;
2410 u64 cur_byte;
2411 u64 total_found;
Chris Masonedbd8d42007-12-21 16:27:24 -05002412 struct btrfs_fs_info *info = root->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05002413 struct extent_io_tree *block_group_cache;
Chris Masonedbd8d42007-12-21 16:27:24 -05002414 struct btrfs_key key;
Yan73e48b22008-01-03 14:14:39 -05002415 struct btrfs_key found_key;
Chris Masonedbd8d42007-12-21 16:27:24 -05002416 struct extent_buffer *leaf;
2417 u32 nritems;
2418 int ret;
Chris Mason725c8462008-01-04 16:47:16 -05002419 int progress = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05002420
2421 btrfs_set_super_total_bytes(&info->super_copy, new_size);
Chris Masonc31f8832008-01-08 15:46:31 -05002422 clear_extent_dirty(&info->free_space_cache, new_size, (u64)-1,
2423 GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002424 block_group_cache = &info->block_group_cache;
2425 path = btrfs_alloc_path();
2426 root = root->fs_info->extent_root;
Chris Mason8f662a72008-01-02 10:01:11 -05002427 path->reada = 2;
Chris Masonedbd8d42007-12-21 16:27:24 -05002428
2429again:
2430 total_found = 0;
2431 key.objectid = new_size;
Chris Masonedbd8d42007-12-21 16:27:24 -05002432 key.offset = 0;
2433 key.type = 0;
Yan73e48b22008-01-03 14:14:39 -05002434 cur_byte = key.objectid;
Chris Mason4313b392008-01-03 09:08:48 -05002435
Yan73e48b22008-01-03 14:14:39 -05002436 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2437 if (ret < 0)
2438 goto out;
2439
2440 ret = find_previous_extent(root, path);
2441 if (ret < 0)
2442 goto out;
2443 if (ret == 0) {
2444 leaf = path->nodes[0];
2445 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2446 if (found_key.objectid + found_key.offset > new_size) {
2447 cur_byte = found_key.objectid;
2448 key.objectid = cur_byte;
2449 }
2450 }
2451 btrfs_release_path(root, path);
2452
2453 while(1) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002454 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2455 if (ret < 0)
2456 goto out;
Yan73e48b22008-01-03 14:14:39 -05002457
Chris Masonedbd8d42007-12-21 16:27:24 -05002458 leaf = path->nodes[0];
Chris Masonedbd8d42007-12-21 16:27:24 -05002459 nritems = btrfs_header_nritems(leaf);
Yan73e48b22008-01-03 14:14:39 -05002460next:
2461 if (path->slots[0] >= nritems) {
2462 ret = btrfs_next_leaf(root, path);
2463 if (ret < 0)
2464 goto out;
2465 if (ret == 1) {
2466 ret = 0;
2467 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05002468 }
Yan73e48b22008-01-03 14:14:39 -05002469 leaf = path->nodes[0];
2470 nritems = btrfs_header_nritems(leaf);
2471 }
2472
2473 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason725c8462008-01-04 16:47:16 -05002474
2475 if (progress && need_resched()) {
2476 memcpy(&key, &found_key, sizeof(key));
2477 mutex_unlock(&root->fs_info->fs_mutex);
2478 cond_resched();
2479 mutex_lock(&root->fs_info->fs_mutex);
2480 btrfs_release_path(root, path);
2481 btrfs_search_slot(NULL, root, &key, path, 0, 0);
2482 progress = 0;
2483 goto next;
2484 }
2485 progress = 1;
2486
Yan73e48b22008-01-03 14:14:39 -05002487 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_ITEM_KEY ||
2488 found_key.objectid + found_key.offset <= cur_byte) {
2489 path->slots[0]++;
Chris Masonedbd8d42007-12-21 16:27:24 -05002490 goto next;
2491 }
Yan73e48b22008-01-03 14:14:39 -05002492
Chris Masonedbd8d42007-12-21 16:27:24 -05002493 total_found++;
2494 cur_byte = found_key.objectid + found_key.offset;
2495 key.objectid = cur_byte;
2496 btrfs_release_path(root, path);
2497 ret = relocate_one_extent(root, path, &found_key);
2498 }
2499
2500 btrfs_release_path(root, path);
2501
2502 if (total_found > 0) {
2503 trans = btrfs_start_transaction(tree_root, 1);
2504 btrfs_commit_transaction(trans, tree_root);
2505
2506 mutex_unlock(&root->fs_info->fs_mutex);
2507 btrfs_clean_old_snapshots(tree_root);
2508 mutex_lock(&root->fs_info->fs_mutex);
2509
2510 trans = btrfs_start_transaction(tree_root, 1);
2511 btrfs_commit_transaction(trans, tree_root);
2512 goto again;
2513 }
2514
2515 trans = btrfs_start_transaction(root, 1);
2516 key.objectid = new_size;
2517 key.offset = 0;
2518 key.type = 0;
2519 while(1) {
Chris Mason4313b392008-01-03 09:08:48 -05002520 u64 ptr;
2521
Chris Masonedbd8d42007-12-21 16:27:24 -05002522 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2523 if (ret < 0)
2524 goto out;
Yan73e48b22008-01-03 14:14:39 -05002525
Chris Masonedbd8d42007-12-21 16:27:24 -05002526 leaf = path->nodes[0];
2527 nritems = btrfs_header_nritems(leaf);
Yan73e48b22008-01-03 14:14:39 -05002528bg_next:
2529 if (path->slots[0] >= nritems) {
2530 ret = btrfs_next_leaf(root, path);
2531 if (ret < 0)
2532 break;
2533 if (ret == 1) {
2534 ret = 0;
2535 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05002536 }
Yan73e48b22008-01-03 14:14:39 -05002537 leaf = path->nodes[0];
Chris Mason1372f8e2008-01-04 09:34:54 -05002538 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2539
2540 /*
2541 * btrfs_next_leaf doesn't cow buffers, we have to
2542 * do the search again
2543 */
2544 memcpy(&key, &found_key, sizeof(key));
2545 btrfs_release_path(root, path);
Chris Mason725c8462008-01-04 16:47:16 -05002546 goto resched_check;
Yan73e48b22008-01-03 14:14:39 -05002547 }
2548
2549 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2550 if (btrfs_key_type(&found_key) != BTRFS_BLOCK_GROUP_ITEM_KEY) {
2551 printk("shrinker found key %Lu %u %Lu\n",
2552 found_key.objectid, found_key.type,
2553 found_key.offset);
2554 path->slots[0]++;
Chris Masonedbd8d42007-12-21 16:27:24 -05002555 goto bg_next;
2556 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002557 ret = get_state_private(&info->block_group_cache,
2558 found_key.objectid, &ptr);
2559 if (!ret)
2560 kfree((void *)(unsigned long)ptr);
2561
2562 clear_extent_bits(&info->block_group_cache, found_key.objectid,
2563 found_key.objectid + found_key.offset - 1,
2564 (unsigned int)-1, GFP_NOFS);
2565
2566 key.objectid = found_key.objectid + 1;
2567 btrfs_del_item(trans, root, path);
2568 btrfs_release_path(root, path);
Chris Mason725c8462008-01-04 16:47:16 -05002569resched_check:
2570 if (need_resched()) {
2571 mutex_unlock(&root->fs_info->fs_mutex);
2572 cond_resched();
2573 mutex_lock(&root->fs_info->fs_mutex);
2574 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002575 }
2576 clear_extent_dirty(&info->free_space_cache, new_size, (u64)-1,
2577 GFP_NOFS);
2578 btrfs_commit_transaction(trans, root);
2579out:
2580 btrfs_free_path(path);
2581 return ret;
2582}
2583
2584int btrfs_grow_extent_tree(struct btrfs_trans_handle *trans,
2585 struct btrfs_root *root, u64 new_size)
2586{
2587 struct btrfs_path *path;
2588 u64 nr = 0;
2589 u64 cur_byte;
2590 u64 old_size;
Chris Masonf9ef6602008-01-03 09:22:38 -05002591 unsigned long rem;
Chris Masonedbd8d42007-12-21 16:27:24 -05002592 struct btrfs_block_group_cache *cache;
2593 struct btrfs_block_group_item *item;
2594 struct btrfs_fs_info *info = root->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05002595 struct extent_io_tree *block_group_cache;
Chris Masonedbd8d42007-12-21 16:27:24 -05002596 struct btrfs_key key;
2597 struct extent_buffer *leaf;
2598 int ret;
2599 int bit;
2600
2601 old_size = btrfs_super_total_bytes(&info->super_copy);
2602 block_group_cache = &info->block_group_cache;
2603
2604 root = info->extent_root;
2605
2606 cache = btrfs_lookup_block_group(root->fs_info, old_size - 1);
2607
2608 cur_byte = cache->key.objectid + cache->key.offset;
2609 if (cur_byte >= new_size)
2610 goto set_size;
2611
2612 key.offset = BTRFS_BLOCK_GROUP_SIZE;
2613 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
2614
2615 path = btrfs_alloc_path();
2616 if (!path)
2617 return -ENOMEM;
2618
2619 while(cur_byte < new_size) {
2620 key.objectid = cur_byte;
2621 ret = btrfs_insert_empty_item(trans, root, path, &key,
2622 sizeof(struct btrfs_block_group_item));
2623 BUG_ON(ret);
2624 leaf = path->nodes[0];
2625 item = btrfs_item_ptr(leaf, path->slots[0],
2626 struct btrfs_block_group_item);
2627
2628 btrfs_set_disk_block_group_used(leaf, item, 0);
Chris Masonf9ef6602008-01-03 09:22:38 -05002629 div_long_long_rem(nr, 3, &rem);
2630 if (rem) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002631 btrfs_set_disk_block_group_flags(leaf, item,
2632 BTRFS_BLOCK_GROUP_DATA);
2633 } else {
2634 btrfs_set_disk_block_group_flags(leaf, item, 0);
2635 }
2636 nr++;
2637
2638 cache = kmalloc(sizeof(*cache), GFP_NOFS);
2639 BUG_ON(!cache);
2640
2641 read_extent_buffer(leaf, &cache->item, (unsigned long)item,
2642 sizeof(cache->item));
2643
2644 memcpy(&cache->key, &key, sizeof(key));
2645 cache->cached = 0;
2646 cache->pinned = 0;
2647 cur_byte = key.objectid + key.offset;
2648 btrfs_release_path(root, path);
2649
2650 if (cache->item.flags & BTRFS_BLOCK_GROUP_DATA) {
2651 bit = BLOCK_GROUP_DATA;
2652 cache->data = BTRFS_BLOCK_GROUP_DATA;
2653 } else {
2654 bit = BLOCK_GROUP_METADATA;
2655 cache->data = 0;
2656 }
2657
2658 /* use EXTENT_LOCKED to prevent merging */
2659 set_extent_bits(block_group_cache, key.objectid,
2660 key.objectid + key.offset - 1,
2661 bit | EXTENT_LOCKED, GFP_NOFS);
2662 set_state_private(block_group_cache, key.objectid,
2663 (unsigned long)cache);
2664 }
2665 btrfs_free_path(path);
2666set_size:
2667 btrfs_set_super_total_bytes(&info->super_copy, new_size);
2668 return 0;
2669}
2670
Chris Mason9078a3e2007-04-26 16:46:15 -04002671int btrfs_read_block_groups(struct btrfs_root *root)
2672{
2673 struct btrfs_path *path;
2674 int ret;
2675 int err = 0;
Chris Mason96b51792007-10-15 16:15:19 -04002676 int bit;
Chris Mason9078a3e2007-04-26 16:46:15 -04002677 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04002678 struct btrfs_fs_info *info = root->fs_info;
Chris Masond1310b22008-01-24 16:13:08 -05002679 struct extent_io_tree *block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04002680 struct btrfs_key key;
2681 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04002682 struct extent_buffer *leaf;
Chris Mason96b51792007-10-15 16:15:19 -04002683
2684 block_group_cache = &info->block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04002685
Chris Masonbe744172007-05-06 10:15:01 -04002686 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04002687 key.objectid = 0;
Chris Masondb945352007-10-15 16:15:53 -04002688 key.offset = BTRFS_BLOCK_GROUP_SIZE;
Chris Mason9078a3e2007-04-26 16:46:15 -04002689 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
2690
2691 path = btrfs_alloc_path();
2692 if (!path)
2693 return -ENOMEM;
2694
2695 while(1) {
Chris Masonbe744172007-05-06 10:15:01 -04002696 ret = btrfs_search_slot(NULL, info->extent_root,
Chris Mason9078a3e2007-04-26 16:46:15 -04002697 &key, path, 0, 0);
2698 if (ret != 0) {
2699 err = ret;
2700 break;
2701 }
Chris Mason5f39d392007-10-15 16:14:19 -04002702 leaf = path->nodes[0];
2703 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason9078a3e2007-04-26 16:46:15 -04002704 cache = kmalloc(sizeof(*cache), GFP_NOFS);
2705 if (!cache) {
2706 err = -1;
2707 break;
2708 }
Chris Mason3e1ad542007-05-07 20:03:49 -04002709
Chris Mason5f39d392007-10-15 16:14:19 -04002710 read_extent_buffer(leaf, &cache->item,
2711 btrfs_item_ptr_offset(leaf, path->slots[0]),
2712 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04002713 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Masone37c9e62007-05-09 20:13:14 -04002714 cache->cached = 0;
Yan324ae4d2007-11-16 14:57:08 -05002715 cache->pinned = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002716 key.objectid = found_key.objectid + found_key.offset;
2717 btrfs_release_path(root, path);
Chris Mason5f39d392007-10-15 16:14:19 -04002718
Chris Masonf84a8b32007-11-06 10:26:29 -05002719 if (cache->item.flags & BTRFS_BLOCK_GROUP_MIXED) {
2720 bit = BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA;
2721 cache->data = BTRFS_BLOCK_GROUP_MIXED;
2722 } else if (cache->item.flags & BTRFS_BLOCK_GROUP_DATA) {
Chris Mason96b51792007-10-15 16:15:19 -04002723 bit = BLOCK_GROUP_DATA;
Chris Masonf84a8b32007-11-06 10:26:29 -05002724 cache->data = BTRFS_BLOCK_GROUP_DATA;
Chris Mason96b51792007-10-15 16:15:19 -04002725 } else {
2726 bit = BLOCK_GROUP_METADATA;
2727 cache->data = 0;
Chris Mason31f3c992007-04-30 15:25:45 -04002728 }
Chris Mason96b51792007-10-15 16:15:19 -04002729
2730 /* use EXTENT_LOCKED to prevent merging */
2731 set_extent_bits(block_group_cache, found_key.objectid,
2732 found_key.objectid + found_key.offset - 1,
2733 bit | EXTENT_LOCKED, GFP_NOFS);
2734 set_state_private(block_group_cache, found_key.objectid,
Jens Axboeae2f5412007-10-19 09:22:59 -04002735 (unsigned long)cache);
Chris Mason96b51792007-10-15 16:15:19 -04002736
Chris Mason9078a3e2007-04-26 16:46:15 -04002737 if (key.objectid >=
Chris Masondb945352007-10-15 16:15:53 -04002738 btrfs_super_total_bytes(&info->super_copy))
Chris Mason9078a3e2007-04-26 16:46:15 -04002739 break;
2740 }
2741
2742 btrfs_free_path(path);
2743 return 0;
2744}