blob: 1412d556313fd38f0330283f3e6c1b912ffa077d [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 Mason74493f72007-12-11 09:25:06 -050021#include "hash.h"
Chris Masonfec577f2007-02-26 10:40:21 -050022#include "ctree.h"
23#include "disk-io.h"
24#include "print-tree.h"
Chris Masone089f052007-03-16 16:20:31 -040025#include "transaction.h"
Chris Masonfec577f2007-02-26 10:40:21 -050026
Chris Mason96b51792007-10-15 16:15:19 -040027#define BLOCK_GROUP_DATA EXTENT_WRITEBACK
28#define BLOCK_GROUP_METADATA EXTENT_UPTODATE
29#define BLOCK_GROUP_DIRTY EXTENT_DIRTY
30
Chris Masone089f052007-03-16 16:20:31 -040031static int finish_current_insert(struct btrfs_trans_handle *trans, struct
32 btrfs_root *extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -040033static int del_pending_extents(struct btrfs_trans_handle *trans, struct
34 btrfs_root *extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -050035
Chris Masone37c9e62007-05-09 20:13:14 -040036static int cache_block_group(struct btrfs_root *root,
37 struct btrfs_block_group_cache *block_group)
38{
39 struct btrfs_path *path;
40 int ret;
41 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -040042 struct extent_buffer *leaf;
Chris Masonf510cfe2007-10-15 16:14:48 -040043 struct extent_map_tree *free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040044 int slot;
Chris Masone37c9e62007-05-09 20:13:14 -040045 u64 last = 0;
46 u64 hole_size;
Yan7d7d6062007-09-14 16:15:28 -040047 u64 first_free;
Chris Masone37c9e62007-05-09 20:13:14 -040048 int found = 0;
49
Chris Mason00f5c792007-11-30 10:09:33 -050050 if (!block_group)
51 return 0;
52
Chris Masone37c9e62007-05-09 20:13:14 -040053 root = root->fs_info->extent_root;
Chris Masonf510cfe2007-10-15 16:14:48 -040054 free_space_cache = &root->fs_info->free_space_cache;
Chris Masone37c9e62007-05-09 20:13:14 -040055
56 if (block_group->cached)
57 return 0;
Chris Masonf510cfe2007-10-15 16:14:48 -040058
Chris Masone37c9e62007-05-09 20:13:14 -040059 path = btrfs_alloc_path();
60 if (!path)
61 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -040062
Chris Mason2cc58cf2007-08-27 16:49:44 -040063 path->reada = 2;
Yan7d7d6062007-09-14 16:15:28 -040064 first_free = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -040065 key.objectid = block_group->key.objectid;
Chris Masone37c9e62007-05-09 20:13:14 -040066 key.offset = 0;
Yan7d7d6062007-09-14 16:15:28 -040067
Chris Masone37c9e62007-05-09 20:13:14 -040068 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
69 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Yan7d7d6062007-09-14 16:15:28 -040070
Chris Masone37c9e62007-05-09 20:13:14 -040071 if (ret < 0)
72 return ret;
Yan7d7d6062007-09-14 16:15:28 -040073
Chris Masone37c9e62007-05-09 20:13:14 -040074 if (ret && path->slots[0] > 0)
75 path->slots[0]--;
Yan7d7d6062007-09-14 16:15:28 -040076
Chris Masone37c9e62007-05-09 20:13:14 -040077 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -040078 leaf = path->nodes[0];
Chris Masone37c9e62007-05-09 20:13:14 -040079 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -040080 if (slot >= btrfs_header_nritems(leaf)) {
Chris Masone37c9e62007-05-09 20:13:14 -040081 ret = btrfs_next_leaf(root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -040082 if (ret < 0)
83 goto err;
Chris Masonde428b62007-05-18 13:28:27 -040084 if (ret == 0) {
Chris Masone37c9e62007-05-09 20:13:14 -040085 continue;
Chris Masonde428b62007-05-18 13:28:27 -040086 } else {
Chris Masone37c9e62007-05-09 20:13:14 -040087 break;
88 }
89 }
Yan7d7d6062007-09-14 16:15:28 -040090
Chris Mason5f39d392007-10-15 16:14:19 -040091 btrfs_item_key_to_cpu(leaf, &key, slot);
Yan7d7d6062007-09-14 16:15:28 -040092 if (key.objectid < block_group->key.objectid) {
Chris Mason7bb86312007-12-11 09:25:06 -050093 if (btrfs_key_type(&key) != BTRFS_EXTENT_REF_KEY &&
94 key.objectid + key.offset > first_free)
Yan7d7d6062007-09-14 16:15:28 -040095 first_free = key.objectid + key.offset;
96 goto next;
97 }
98
Chris Masone37c9e62007-05-09 20:13:14 -040099 if (key.objectid >= block_group->key.objectid +
100 block_group->key.offset) {
Yan7d7d6062007-09-14 16:15:28 -0400101 break;
102 }
103
104 if (btrfs_key_type(&key) == BTRFS_EXTENT_ITEM_KEY) {
105 if (!found) {
106 last = first_free;
107 found = 1;
Chris Masone37c9e62007-05-09 20:13:14 -0400108 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400109 if (key.objectid > last) {
110 hole_size = key.objectid - last;
111 set_extent_dirty(free_space_cache, last,
112 last + hole_size - 1,
113 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -0400114 }
Yan7d7d6062007-09-14 16:15:28 -0400115 last = key.objectid + key.offset;
Chris Masone37c9e62007-05-09 20:13:14 -0400116 }
Yan7d7d6062007-09-14 16:15:28 -0400117next:
Chris Masone37c9e62007-05-09 20:13:14 -0400118 path->slots[0]++;
119 }
120
Yan7d7d6062007-09-14 16:15:28 -0400121 if (!found)
122 last = first_free;
123 if (block_group->key.objectid +
124 block_group->key.offset > last) {
125 hole_size = block_group->key.objectid +
126 block_group->key.offset - last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400127 set_extent_dirty(free_space_cache, last,
128 last + hole_size - 1, GFP_NOFS);
Yan7d7d6062007-09-14 16:15:28 -0400129 }
Chris Masone37c9e62007-05-09 20:13:14 -0400130 block_group->cached = 1;
Chris Mason54aa1f42007-06-22 14:16:25 -0400131err:
Chris Masone37c9e62007-05-09 20:13:14 -0400132 btrfs_free_path(path);
133 return 0;
134}
135
Chris Mason5276aed2007-06-11 21:33:38 -0400136struct btrfs_block_group_cache *btrfs_lookup_block_group(struct
137 btrfs_fs_info *info,
Chris Masondb945352007-10-15 16:15:53 -0400138 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400139{
Chris Mason96b51792007-10-15 16:15:19 -0400140 struct extent_map_tree *block_group_cache;
141 struct btrfs_block_group_cache *block_group = NULL;
142 u64 ptr;
143 u64 start;
144 u64 end;
Chris Masonbe744172007-05-06 10:15:01 -0400145 int ret;
146
Chris Mason96b51792007-10-15 16:15:19 -0400147 block_group_cache = &info->block_group_cache;
148 ret = find_first_extent_bit(block_group_cache,
Chris Masondb945352007-10-15 16:15:53 -0400149 bytenr, &start, &end,
Chris Mason96b51792007-10-15 16:15:19 -0400150 BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA);
Chris Masonbe744172007-05-06 10:15:01 -0400151 if (ret) {
Chris Mason96b51792007-10-15 16:15:19 -0400152 return NULL;
Chris Masonbe744172007-05-06 10:15:01 -0400153 }
Chris Mason96b51792007-10-15 16:15:19 -0400154 ret = get_state_private(block_group_cache, start, &ptr);
155 if (ret)
156 return NULL;
157
Jens Axboeae2f5412007-10-19 09:22:59 -0400158 block_group = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Yan5cf66422007-11-16 14:57:09 -0500159 if (block_group->key.objectid <= bytenr && bytenr <
Chris Mason96b51792007-10-15 16:15:19 -0400160 block_group->key.objectid + block_group->key.offset)
161 return block_group;
Chris Masonbe744172007-05-06 10:15:01 -0400162 return NULL;
163}
Chris Masone37c9e62007-05-09 20:13:14 -0400164static u64 find_search_start(struct btrfs_root *root,
165 struct btrfs_block_group_cache **cache_ret,
Yan5e5745d2007-11-16 14:57:09 -0500166 u64 search_start, int num,
167 int data, int full_scan)
Chris Masone37c9e62007-05-09 20:13:14 -0400168{
Chris Masone37c9e62007-05-09 20:13:14 -0400169 int ret;
170 struct btrfs_block_group_cache *cache = *cache_ret;
Chris Masone19caa52007-10-15 16:17:44 -0400171 u64 last;
Chris Masonf510cfe2007-10-15 16:14:48 -0400172 u64 start = 0;
173 u64 end = 0;
Chris Mason257d0ce2007-11-07 21:08:16 -0500174 u64 cache_miss = 0;
Chris Masonf84a8b32007-11-06 10:26:29 -0500175 int wrapped = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400176
Chris Mason00f5c792007-11-30 10:09:33 -0500177 if (!cache) {
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500178 goto out;
Chris Mason00f5c792007-11-30 10:09:33 -0500179 }
Chris Masone37c9e62007-05-09 20:13:14 -0400180again:
Chris Mason54aa1f42007-06-22 14:16:25 -0400181 ret = cache_block_group(root, cache);
182 if (ret)
183 goto out;
Chris Masonf84a8b32007-11-06 10:26:29 -0500184
Chris Masone19caa52007-10-15 16:17:44 -0400185 last = max(search_start, cache->key.objectid);
186
Chris Masone37c9e62007-05-09 20:13:14 -0400187 while(1) {
Chris Masonf510cfe2007-10-15 16:14:48 -0400188 ret = find_first_extent_bit(&root->fs_info->free_space_cache,
189 last, &start, &end, EXTENT_DIRTY);
Chris Masone19caa52007-10-15 16:17:44 -0400190 if (ret) {
Chris Mason257d0ce2007-11-07 21:08:16 -0500191 if (!cache_miss)
192 cache_miss = last;
Chris Masone19caa52007-10-15 16:17:44 -0400193 goto new_group;
194 }
Chris Masonf510cfe2007-10-15 16:14:48 -0400195
196 start = max(last, start);
197 last = end + 1;
Chris Mason257d0ce2007-11-07 21:08:16 -0500198 if (last - start < num) {
199 if (last == cache->key.objectid + cache->key.offset)
200 cache_miss = start;
Chris Masonf510cfe2007-10-15 16:14:48 -0400201 continue;
Chris Mason257d0ce2007-11-07 21:08:16 -0500202 }
203 if (data != BTRFS_BLOCK_GROUP_MIXED &&
Yan5cf66422007-11-16 14:57:09 -0500204 start + num > cache->key.objectid + cache->key.offset)
Chris Masone37c9e62007-05-09 20:13:14 -0400205 goto new_group;
Chris Masonf510cfe2007-10-15 16:14:48 -0400206 return start;
Chris Masone37c9e62007-05-09 20:13:14 -0400207 }
208out:
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500209 cache = btrfs_lookup_block_group(root->fs_info, search_start);
210 if (!cache) {
211 printk("Unable to find block group for %Lu\n",
212 search_start);
213 WARN_ON(1);
214 return search_start;
215 }
Chris Mason1a5bc162007-10-15 16:15:26 -0400216 return search_start;
Chris Masone37c9e62007-05-09 20:13:14 -0400217
218new_group:
Chris Masone19caa52007-10-15 16:17:44 -0400219 last = cache->key.objectid + cache->key.offset;
Chris Masonf84a8b32007-11-06 10:26:29 -0500220wrapped:
Chris Masone19caa52007-10-15 16:17:44 -0400221 cache = btrfs_lookup_block_group(root->fs_info, last);
Chris Masone37c9e62007-05-09 20:13:14 -0400222 if (!cache) {
Chris Mason0e4de582007-11-26 10:55:49 -0500223no_cache:
Chris Masonf84a8b32007-11-06 10:26:29 -0500224 if (!wrapped) {
225 wrapped = 1;
226 last = search_start;
227 data = BTRFS_BLOCK_GROUP_MIXED;
228 goto wrapped;
229 }
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500230 goto out;
Chris Masone37c9e62007-05-09 20:13:14 -0400231 }
Chris Mason257d0ce2007-11-07 21:08:16 -0500232 if (cache_miss && !cache->cached) {
233 cache_block_group(root, cache);
234 last = cache_miss;
Chris Mason257d0ce2007-11-07 21:08:16 -0500235 cache = btrfs_lookup_block_group(root->fs_info, last);
236 }
Chris Mason1a2b2ac2007-12-04 13:18:24 -0500237 cache = btrfs_find_block_group(root, cache, last, data, 0);
Chris Mason0e4de582007-11-26 10:55:49 -0500238 if (!cache)
239 goto no_cache;
Chris Masone37c9e62007-05-09 20:13:14 -0400240 *cache_ret = cache;
Chris Mason257d0ce2007-11-07 21:08:16 -0500241 cache_miss = 0;
Chris Masone37c9e62007-05-09 20:13:14 -0400242 goto again;
243}
244
Chris Mason84f54cf2007-06-12 07:43:08 -0400245static u64 div_factor(u64 num, int factor)
246{
Chris Mason257d0ce2007-11-07 21:08:16 -0500247 if (factor == 10)
248 return num;
Chris Mason84f54cf2007-06-12 07:43:08 -0400249 num *= factor;
250 do_div(num, 10);
251 return num;
252}
253
Chris Mason31f3c992007-04-30 15:25:45 -0400254struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
255 struct btrfs_block_group_cache
Chris Masonbe744172007-05-06 10:15:01 -0400256 *hint, u64 search_start,
Chris Masonde428b62007-05-18 13:28:27 -0400257 int data, int owner)
Chris Masoncd1bc462007-04-27 10:08:34 -0400258{
Chris Mason96b51792007-10-15 16:15:19 -0400259 struct btrfs_block_group_cache *cache;
260 struct extent_map_tree *block_group_cache;
Chris Mason31f3c992007-04-30 15:25:45 -0400261 struct btrfs_block_group_cache *found_group = NULL;
Chris Masoncd1bc462007-04-27 10:08:34 -0400262 struct btrfs_fs_info *info = root->fs_info;
263 u64 used;
Chris Mason31f3c992007-04-30 15:25:45 -0400264 u64 last = 0;
265 u64 hint_last;
Chris Mason96b51792007-10-15 16:15:19 -0400266 u64 start;
267 u64 end;
268 u64 free_check;
269 u64 ptr;
270 int bit;
Chris Masoncd1bc462007-04-27 10:08:34 -0400271 int ret;
Chris Mason31f3c992007-04-30 15:25:45 -0400272 int full_search = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400273 int factor = 8;
Chris Mason1e2677e2007-05-29 16:52:18 -0400274 int data_swap = 0;
Chris Masonde428b62007-05-18 13:28:27 -0400275
Chris Mason96b51792007-10-15 16:15:19 -0400276 block_group_cache = &info->block_group_cache;
277
Chris Masonde428b62007-05-18 13:28:27 -0400278 if (!owner)
Chris Masonf84a8b32007-11-06 10:26:29 -0500279 factor = 8;
Chris Masonbe744172007-05-06 10:15:01 -0400280
Chris Mason257d0ce2007-11-07 21:08:16 -0500281 if (data == BTRFS_BLOCK_GROUP_MIXED) {
Chris Masonf84a8b32007-11-06 10:26:29 -0500282 bit = BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA;
Chris Mason257d0ce2007-11-07 21:08:16 -0500283 factor = 10;
284 } else if (data)
Chris Mason96b51792007-10-15 16:15:19 -0400285 bit = BLOCK_GROUP_DATA;
286 else
287 bit = BLOCK_GROUP_METADATA;
Chris Masonbe744172007-05-06 10:15:01 -0400288
289 if (search_start) {
290 struct btrfs_block_group_cache *shint;
Chris Mason5276aed2007-06-11 21:33:38 -0400291 shint = btrfs_lookup_block_group(info, search_start);
Chris Masonf84a8b32007-11-06 10:26:29 -0500292 if (shint && (shint->data == data ||
293 shint->data == BTRFS_BLOCK_GROUP_MIXED)) {
Chris Masonbe744172007-05-06 10:15:01 -0400294 used = btrfs_block_group_used(&shint->item);
Yan324ae4d2007-11-16 14:57:08 -0500295 if (used + shint->pinned <
296 div_factor(shint->key.offset, factor)) {
Chris Masonbe744172007-05-06 10:15:01 -0400297 return shint;
298 }
299 }
300 }
Chris Masonf84a8b32007-11-06 10:26:29 -0500301 if (hint && (hint->data == data ||
302 hint->data == BTRFS_BLOCK_GROUP_MIXED)) {
Chris Mason31f3c992007-04-30 15:25:45 -0400303 used = btrfs_block_group_used(&hint->item);
Yan324ae4d2007-11-16 14:57:08 -0500304 if (used + hint->pinned <
305 div_factor(hint->key.offset, factor)) {
Chris Mason31f3c992007-04-30 15:25:45 -0400306 return hint;
307 }
Chris Masone19caa52007-10-15 16:17:44 -0400308 last = hint->key.objectid + hint->key.offset;
Chris Mason31f3c992007-04-30 15:25:45 -0400309 hint_last = last;
310 } else {
Chris Masone37c9e62007-05-09 20:13:14 -0400311 if (hint)
312 hint_last = max(hint->key.objectid, search_start);
313 else
314 hint_last = search_start;
315
316 last = hint_last;
Chris Mason31f3c992007-04-30 15:25:45 -0400317 }
Chris Mason31f3c992007-04-30 15:25:45 -0400318again:
Chris Masoncd1bc462007-04-27 10:08:34 -0400319 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400320 ret = find_first_extent_bit(block_group_cache, last,
321 &start, &end, bit);
322 if (ret)
Chris Masoncd1bc462007-04-27 10:08:34 -0400323 break;
Chris Mason96b51792007-10-15 16:15:19 -0400324
325 ret = get_state_private(block_group_cache, start, &ptr);
326 if (ret)
327 break;
328
Jens Axboeae2f5412007-10-19 09:22:59 -0400329 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -0400330 last = cache->key.objectid + cache->key.offset;
331 used = btrfs_block_group_used(&cache->item);
332
333 if (full_search)
334 free_check = cache->key.offset;
335 else
336 free_check = div_factor(cache->key.offset, factor);
Yan324ae4d2007-11-16 14:57:08 -0500337 if (used + cache->pinned < free_check) {
Chris Mason96b51792007-10-15 16:15:19 -0400338 found_group = cache;
339 goto found;
Chris Masoncd1bc462007-04-27 10:08:34 -0400340 }
Chris Masonde428b62007-05-18 13:28:27 -0400341 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400342 }
Chris Mason31f3c992007-04-30 15:25:45 -0400343 if (!full_search) {
Chris Masonbe744172007-05-06 10:15:01 -0400344 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400345 full_search = 1;
346 goto again;
347 }
Chris Mason1e2677e2007-05-29 16:52:18 -0400348 if (!data_swap) {
Chris Mason1e2677e2007-05-29 16:52:18 -0400349 data_swap = 1;
Chris Mason96b51792007-10-15 16:15:19 -0400350 bit = BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA;
Chris Mason1e2677e2007-05-29 16:52:18 -0400351 last = search_start;
352 goto again;
353 }
Chris Masonbe744172007-05-06 10:15:01 -0400354found:
Chris Mason31f3c992007-04-30 15:25:45 -0400355 return found_group;
Chris Masoncd1bc462007-04-27 10:08:34 -0400356}
357
Chris Mason7bb86312007-12-11 09:25:06 -0500358static u64 hash_extent_ref(u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500359 u64 owner, u64 owner_offset)
360{
361 u32 high_crc = ~(u32)0;
362 u32 low_crc = ~(u32)0;
363 __le64 lenum;
364
365 lenum = cpu_to_le64(root_objectid);
366 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
Chris Mason7bb86312007-12-11 09:25:06 -0500367 lenum = cpu_to_le64(ref_generation);
368 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason74493f72007-12-11 09:25:06 -0500369
Chris Mason7bb86312007-12-11 09:25:06 -0500370#if 0
Chris Mason74493f72007-12-11 09:25:06 -0500371 lenum = cpu_to_le64(owner);
372 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason74493f72007-12-11 09:25:06 -0500373 lenum = cpu_to_le64(owner_offset);
374 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Chris Mason7bb86312007-12-11 09:25:06 -0500375#endif
Chris Mason74493f72007-12-11 09:25:06 -0500376 return ((u64)high_crc << 32) | (u64)low_crc;
377}
378
Chris Mason7bb86312007-12-11 09:25:06 -0500379static int match_extent_ref(struct extent_buffer *leaf,
380 struct btrfs_extent_ref *disk_ref,
381 struct btrfs_extent_ref *cpu_ref)
382{
383 int ret;
384 int len;
385
386 if (cpu_ref->objectid)
387 len = sizeof(*cpu_ref);
388 else
389 len = 2 * sizeof(u64);
390 ret = memcmp_extent_buffer(leaf, cpu_ref, (unsigned long)disk_ref,
391 len);
392 return ret == 0;
393}
394
395static int lookup_extent_backref(struct btrfs_trans_handle *trans,
396 struct btrfs_root *root,
397 struct btrfs_path *path, u64 bytenr,
398 u64 root_objectid, u64 ref_generation,
399 u64 owner, u64 owner_offset, int del)
400{
401 u64 hash;
402 struct btrfs_key key;
403 struct btrfs_key found_key;
404 struct btrfs_extent_ref ref;
405 struct extent_buffer *leaf;
406 struct btrfs_extent_ref *disk_ref;
407 int ret;
408 int ret2;
409
410 btrfs_set_stack_ref_root(&ref, root_objectid);
411 btrfs_set_stack_ref_generation(&ref, ref_generation);
412 btrfs_set_stack_ref_objectid(&ref, owner);
413 btrfs_set_stack_ref_offset(&ref, owner_offset);
414
415 hash = hash_extent_ref(root_objectid, ref_generation, owner,
416 owner_offset);
417 key.offset = hash;
418 key.objectid = bytenr;
419 key.type = BTRFS_EXTENT_REF_KEY;
420
421 while (1) {
422 ret = btrfs_search_slot(trans, root, &key, path,
423 del ? -1 : 0, del);
424 if (ret < 0)
425 goto out;
426 leaf = path->nodes[0];
427 if (ret != 0) {
428 u32 nritems = btrfs_header_nritems(leaf);
429 if (path->slots[0] >= nritems) {
430 ret2 = btrfs_next_leaf(root, path);
431 if (ret2)
432 goto out;
433 leaf = path->nodes[0];
434 }
435 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
436 if (found_key.objectid != bytenr ||
437 found_key.type != BTRFS_EXTENT_REF_KEY)
438 goto out;
439 key.offset = found_key.offset;
440 if (del) {
441 btrfs_release_path(root, path);
442 continue;
443 }
444 }
445 disk_ref = btrfs_item_ptr(path->nodes[0],
446 path->slots[0],
447 struct btrfs_extent_ref);
448 if (match_extent_ref(path->nodes[0], disk_ref, &ref)) {
449 ret = 0;
450 goto out;
451 }
452 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
453 key.offset = found_key.offset + 1;
454 btrfs_release_path(root, path);
455 }
456out:
457 return ret;
458}
459
Chris Masond8d5f3e2007-12-11 12:42:00 -0500460/*
461 * Back reference rules. Back refs have three main goals:
462 *
463 * 1) differentiate between all holders of references to an extent so that
464 * when a reference is dropped we can make sure it was a valid reference
465 * before freeing the extent.
466 *
467 * 2) Provide enough information to quickly find the holders of an extent
468 * if we notice a given block is corrupted or bad.
469 *
470 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
471 * maintenance. This is actually the same as #2, but with a slightly
472 * different use case.
473 *
474 * File extents can be referenced by:
475 *
476 * - multiple snapshots, subvolumes, or different generations in one subvol
477 * - different files inside a single subvolume (in theory, not implemented yet)
478 * - different offsets inside a file (bookend extents in file.c)
479 *
480 * The extent ref structure has fields for:
481 *
482 * - Objectid of the subvolume root
483 * - Generation number of the tree holding the reference
484 * - objectid of the file holding the reference
485 * - offset in the file corresponding to the key holding the reference
486 *
487 * When a file extent is allocated the fields are filled in:
488 * (root_key.objectid, trans->transid, inode objectid, offset in file)
489 *
490 * When a leaf is cow'd new references are added for every file extent found
491 * in the leaf. It looks the same as the create case, but trans->transid
492 * will be different when the block is cow'd.
493 *
494 * (root_key.objectid, trans->transid, inode objectid, offset in file)
495 *
496 * When a file extent is removed either during snapshot deletion or file
497 * truncation, the corresponding back reference is found
498 * by searching for:
499 *
500 * (btrfs_header_owner(leaf), btrfs_header_generation(leaf),
501 * inode objectid, offset in file)
502 *
503 * Btree extents can be referenced by:
504 *
505 * - Different subvolumes
506 * - Different generations of the same subvolume
507 *
508 * Storing sufficient information for a full reverse mapping of a btree
509 * block would require storing the lowest key of the block in the backref,
510 * and it would require updating that lowest key either before write out or
511 * every time it changed. Instead, the objectid of the lowest key is stored
512 * along with the level of the tree block. This provides a hint
513 * about where in the btree the block can be found. Searches through the
514 * btree only need to look for a pointer to that block, so they stop one
515 * level higher than the level recorded in the backref.
516 *
517 * Some btrees do not do reference counting on their extents. These
518 * include the extent tree and the tree of tree roots. Backrefs for these
519 * trees always have a generation of zero.
520 *
521 * When a tree block is created, back references are inserted:
522 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500523 * (root->root_key.objectid, trans->transid or zero, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500524 *
525 * When a tree block is cow'd in a reference counted root,
526 * new back references are added for all the blocks it points to.
527 * These are of the form (trans->transid will have increased since creation):
528 *
Chris Masonf6dbff52007-12-13 11:13:32 -0500529 * (root->root_key.objectid, trans->transid, level, lowest_key_objectid)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500530 *
531 * Because the lowest_key_objectid and the level are just hints
532 * they are not used when backrefs are deleted. When a backref is deleted:
533 *
534 * if backref was for a tree root:
535 * root_objectid = root->root_key.objectid
536 * else
537 * root_objectid = btrfs_header_owner(parent)
538 *
539 * (root_objectid, btrfs_header_generation(parent) or zero, 0, 0)
540 *
541 * Back Reference Key hashing:
542 *
543 * Back references have four fields, each 64 bits long. Unfortunately,
544 * This is hashed into a single 64 bit number and placed into the key offset.
545 * The key objectid corresponds to the first byte in the extent, and the
546 * key type is set to BTRFS_EXTENT_REF_KEY
547 */
Chris Mason7bb86312007-12-11 09:25:06 -0500548int btrfs_insert_extent_backref(struct btrfs_trans_handle *trans,
549 struct btrfs_root *root,
550 struct btrfs_path *path, u64 bytenr,
551 u64 root_objectid, u64 ref_generation,
552 u64 owner, u64 owner_offset)
Chris Mason74493f72007-12-11 09:25:06 -0500553{
554 u64 hash;
555 struct btrfs_key key;
556 struct btrfs_extent_ref ref;
Chris Mason7bb86312007-12-11 09:25:06 -0500557 struct btrfs_extent_ref *disk_ref;
Chris Mason74493f72007-12-11 09:25:06 -0500558 int ret;
559
560 btrfs_set_stack_ref_root(&ref, root_objectid);
Chris Mason7bb86312007-12-11 09:25:06 -0500561 btrfs_set_stack_ref_generation(&ref, ref_generation);
Chris Mason74493f72007-12-11 09:25:06 -0500562 btrfs_set_stack_ref_objectid(&ref, owner);
563 btrfs_set_stack_ref_offset(&ref, owner_offset);
564
Chris Mason7bb86312007-12-11 09:25:06 -0500565 hash = hash_extent_ref(root_objectid, ref_generation, owner,
566 owner_offset);
Chris Mason74493f72007-12-11 09:25:06 -0500567 key.offset = hash;
568 key.objectid = bytenr;
569 key.type = BTRFS_EXTENT_REF_KEY;
570
571 ret = btrfs_insert_empty_item(trans, root, path, &key, sizeof(ref));
572 while (ret == -EEXIST) {
Chris Mason7bb86312007-12-11 09:25:06 -0500573 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
574 struct btrfs_extent_ref);
575 if (match_extent_ref(path->nodes[0], disk_ref, &ref))
576 goto out;
577 key.offset++;
578 btrfs_release_path(root, path);
579 ret = btrfs_insert_empty_item(trans, root, path, &key,
580 sizeof(ref));
Chris Mason74493f72007-12-11 09:25:06 -0500581 }
Chris Mason7bb86312007-12-11 09:25:06 -0500582 if (ret)
583 goto out;
584 disk_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
585 struct btrfs_extent_ref);
586 write_extent_buffer(path->nodes[0], &ref, (unsigned long)disk_ref,
587 sizeof(ref));
588 btrfs_mark_buffer_dirty(path->nodes[0]);
589out:
590 btrfs_release_path(root, path);
591 return ret;
Chris Mason74493f72007-12-11 09:25:06 -0500592}
593
Chris Masonb18c6682007-04-17 13:26:50 -0400594int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
595 struct btrfs_root *root,
Chris Mason74493f72007-12-11 09:25:06 -0500596 u64 bytenr, u64 num_bytes,
Chris Mason7bb86312007-12-11 09:25:06 -0500597 u64 root_objectid, u64 ref_generation,
Chris Mason74493f72007-12-11 09:25:06 -0500598 u64 owner, u64 owner_offset)
Chris Mason02217ed2007-03-02 16:08:05 -0500599{
Chris Mason5caf2a02007-04-02 11:20:42 -0400600 struct btrfs_path *path;
Chris Mason02217ed2007-03-02 16:08:05 -0500601 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400602 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400603 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400604 struct btrfs_extent_item *item;
Chris Masoncf27e1e2007-03-13 09:49:06 -0400605 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -0500606
Chris Masondb945352007-10-15 16:15:53 -0400607 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400608 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400609 if (!path)
610 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -0400611
Chris Masondb945352007-10-15 16:15:53 -0400612 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -0400613 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -0400614 key.offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -0400615 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400616 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400617 if (ret < 0)
618 return ret;
Chris Masona429e512007-04-18 16:15:28 -0400619 if (ret != 0) {
Chris Masona28ec192007-03-06 20:08:01 -0500620 BUG();
Chris Masona429e512007-04-18 16:15:28 -0400621 }
Chris Mason02217ed2007-03-02 16:08:05 -0500622 BUG_ON(ret != 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400623 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400624 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400625 refs = btrfs_extent_refs(l, item);
626 btrfs_set_extent_refs(l, item, refs + 1);
Chris Mason5caf2a02007-04-02 11:20:42 -0400627 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masona28ec192007-03-06 20:08:01 -0500628
Chris Mason5caf2a02007-04-02 11:20:42 -0400629 btrfs_release_path(root->fs_info->extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -0500630
631 ret = btrfs_insert_extent_backref(trans, root->fs_info->extent_root,
632 path, bytenr, root_objectid,
633 ref_generation, owner, owner_offset);
634 BUG_ON(ret);
Chris Mason9f5fae22007-03-20 14:38:32 -0400635 finish_current_insert(trans, root->fs_info->extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400636 del_pending_extents(trans, root->fs_info->extent_root);
Chris Mason74493f72007-12-11 09:25:06 -0500637
638 btrfs_free_path(path);
Chris Mason02217ed2007-03-02 16:08:05 -0500639 return 0;
640}
641
Chris Masone9d0b132007-08-10 14:06:19 -0400642int btrfs_extent_post_op(struct btrfs_trans_handle *trans,
643 struct btrfs_root *root)
644{
645 finish_current_insert(trans, root->fs_info->extent_root);
646 del_pending_extents(trans, root->fs_info->extent_root);
647 return 0;
648}
649
Chris Masonb18c6682007-04-17 13:26:50 -0400650static int lookup_extent_ref(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -0400651 struct btrfs_root *root, u64 bytenr,
652 u64 num_bytes, u32 *refs)
Chris Masona28ec192007-03-06 20:08:01 -0500653{
Chris Mason5caf2a02007-04-02 11:20:42 -0400654 struct btrfs_path *path;
Chris Masona28ec192007-03-06 20:08:01 -0500655 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400656 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400657 struct extent_buffer *l;
Chris Mason234b63a2007-03-13 10:46:10 -0400658 struct btrfs_extent_item *item;
Chris Mason5caf2a02007-04-02 11:20:42 -0400659
Chris Masondb945352007-10-15 16:15:53 -0400660 WARN_ON(num_bytes < root->sectorsize);
Chris Mason5caf2a02007-04-02 11:20:42 -0400661 path = btrfs_alloc_path();
Chris Masondb945352007-10-15 16:15:53 -0400662 key.objectid = bytenr;
663 key.offset = num_bytes;
Chris Mason62e27492007-03-15 12:56:47 -0400664 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Mason5caf2a02007-04-02 11:20:42 -0400665 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -0400666 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400667 if (ret < 0)
668 goto out;
Chris Mason5f39d392007-10-15 16:14:19 -0400669 if (ret != 0) {
670 btrfs_print_leaf(root, path->nodes[0]);
Chris Masondb945352007-10-15 16:15:53 -0400671 printk("failed to find block number %Lu\n", bytenr);
Chris Masona28ec192007-03-06 20:08:01 -0500672 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -0400673 }
674 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400675 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400676 *refs = btrfs_extent_refs(l, item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400677out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400678 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -0500679 return 0;
680}
681
Chris Masonbe20aa92007-12-17 20:14:01 -0500682u32 btrfs_count_snapshots_in_path(struct btrfs_root *root,
683 struct btrfs_path *count_path,
684 u64 first_extent)
685{
686 struct btrfs_root *extent_root = root->fs_info->extent_root;
687 struct btrfs_path *path;
688 u64 bytenr;
689 u64 found_objectid;
690 u64 root_objectid = 0;
691 u32 total_count = 0;
692 u32 cur_count;
693 u32 refs;
694 u32 nritems;
695 int ret;
696 struct btrfs_key key;
697 struct btrfs_key found_key;
698 struct extent_buffer *l;
699 struct btrfs_extent_item *item;
700 struct btrfs_extent_ref *ref_item;
701 int level = -1;
702
703 path = btrfs_alloc_path();
704again:
705 if (level == -1)
706 bytenr = first_extent;
707 else
708 bytenr = count_path->nodes[level]->start;
709
710 cur_count = 0;
711 key.objectid = bytenr;
712 key.offset = 0;
713
714 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
715 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
716 if (ret < 0)
717 goto out;
718 BUG_ON(ret == 0);
719
720 l = path->nodes[0];
721 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
722
723 if (found_key.objectid != bytenr ||
724 found_key.type != BTRFS_EXTENT_ITEM_KEY) {
725 goto out;
726 }
727
728 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
729 refs = btrfs_extent_refs(l, item);
730 while (1) {
731 nritems = btrfs_header_nritems(l);
732 if (path->slots[0] >= nritems) {
733 ret = btrfs_next_leaf(extent_root, path);
734 if (ret == 0)
735 continue;
736 break;
737 }
738 btrfs_item_key_to_cpu(l, &found_key, path->slots[0]);
739 if (found_key.objectid != bytenr)
740 break;
741 if (found_key.type != BTRFS_EXTENT_REF_KEY) {
742 path->slots[0]++;
743 continue;
744 }
745
746 cur_count++;
747 ref_item = btrfs_item_ptr(l, path->slots[0],
748 struct btrfs_extent_ref);
749 found_objectid = btrfs_ref_root(l, ref_item);
750
751 if (found_objectid != root_objectid)
752 total_count++;
753
754 if (total_count > 1)
755 goto out;
756
757 if (root_objectid == 0)
758 root_objectid = found_objectid;
759
760 path->slots[0]++;
761 }
762 if (cur_count == 0) {
763 total_count = 0;
764 goto out;
765 }
766 if (total_count > 1)
767 goto out;
768 if (level >= 0 && root->node == count_path->nodes[level])
769 goto out;
770 level++;
771 btrfs_release_path(root, path);
772 goto again;
773
774out:
775 btrfs_free_path(path);
776 return total_count;
777
778}
779
Chris Masonc5739bb2007-04-10 09:27:04 -0400780int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -0500781 struct btrfs_root *root, u64 owner_objectid)
Chris Masonc5739bb2007-04-10 09:27:04 -0400782{
Chris Mason7bb86312007-12-11 09:25:06 -0500783 u64 generation;
784 u64 key_objectid;
785 u64 level;
786 u32 nritems;
787 struct btrfs_disk_key disk_key;
788
789 level = btrfs_header_level(root->node);
790 generation = trans->transid;
791 nritems = btrfs_header_nritems(root->node);
792 if (nritems > 0) {
793 if (level == 0)
794 btrfs_item_key(root->node, &disk_key, 0);
795 else
796 btrfs_node_key(root->node, &disk_key, 0);
797 key_objectid = btrfs_disk_key_objectid(&disk_key);
798 } else {
799 key_objectid = 0;
800 }
Chris Masondb945352007-10-15 16:15:53 -0400801 return btrfs_inc_extent_ref(trans, root, root->node->start,
Chris Mason7bb86312007-12-11 09:25:06 -0500802 root->node->len, owner_objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500803 generation, level, key_objectid);
Chris Masonc5739bb2007-04-10 09:27:04 -0400804}
805
Chris Masone089f052007-03-16 16:20:31 -0400806int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -0400807 struct extent_buffer *buf)
Chris Mason02217ed2007-03-02 16:08:05 -0500808{
Chris Masondb945352007-10-15 16:15:53 -0400809 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400810 u32 nritems;
811 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -0400812 struct btrfs_file_extent_item *fi;
Chris Mason02217ed2007-03-02 16:08:05 -0500813 int i;
Chris Masondb945352007-10-15 16:15:53 -0400814 int level;
Chris Mason6407bf62007-03-27 06:33:00 -0400815 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -0400816 int faili;
Chris Masona28ec192007-03-06 20:08:01 -0500817
Chris Mason3768f362007-03-13 16:47:54 -0400818 if (!root->ref_cows)
Chris Masona28ec192007-03-06 20:08:01 -0500819 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400820
Chris Masondb945352007-10-15 16:15:53 -0400821 level = btrfs_header_level(buf);
Chris Mason5f39d392007-10-15 16:14:19 -0400822 nritems = btrfs_header_nritems(buf);
823 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400824 if (level == 0) {
825 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400826 btrfs_item_key_to_cpu(buf, &key, i);
827 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -0400828 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400829 fi = btrfs_item_ptr(buf, i,
Chris Mason6407bf62007-03-27 06:33:00 -0400830 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400831 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason236454d2007-04-19 13:37:44 -0400832 BTRFS_FILE_EXTENT_INLINE)
833 continue;
Chris Masondb945352007-10-15 16:15:53 -0400834 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
835 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -0400836 continue;
Chris Masondb945352007-10-15 16:15:53 -0400837 ret = btrfs_inc_extent_ref(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500838 btrfs_file_extent_disk_num_bytes(buf, fi),
839 root->root_key.objectid, trans->transid,
840 key.objectid, key.offset);
Chris Mason54aa1f42007-06-22 14:16:25 -0400841 if (ret) {
842 faili = i;
843 goto fail;
844 }
Chris Mason6407bf62007-03-27 06:33:00 -0400845 } else {
Chris Masondb945352007-10-15 16:15:53 -0400846 bytenr = btrfs_node_blockptr(buf, i);
Chris Mason6caab482007-12-13 09:48:07 -0500847 btrfs_node_key_to_cpu(buf, &key, i);
Chris Masondb945352007-10-15 16:15:53 -0400848 ret = btrfs_inc_extent_ref(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -0500849 btrfs_level_size(root, level - 1),
850 root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -0500851 trans->transid,
852 level - 1, key.objectid);
Chris Mason54aa1f42007-06-22 14:16:25 -0400853 if (ret) {
854 faili = i;
855 goto fail;
856 }
Chris Mason6407bf62007-03-27 06:33:00 -0400857 }
Chris Mason02217ed2007-03-02 16:08:05 -0500858 }
859 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400860fail:
Chris Masonccd467d2007-06-28 15:57:36 -0400861 WARN_ON(1);
Chris Mason7bb86312007-12-11 09:25:06 -0500862#if 0
Chris Mason54aa1f42007-06-22 14:16:25 -0400863 for (i =0; i < faili; i++) {
Chris Masondb945352007-10-15 16:15:53 -0400864 if (level == 0) {
865 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -0400866 btrfs_item_key_to_cpu(buf, &key, i);
867 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -0400868 continue;
Chris Mason5f39d392007-10-15 16:14:19 -0400869 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -0400870 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400871 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -0400872 BTRFS_FILE_EXTENT_INLINE)
873 continue;
Chris Masondb945352007-10-15 16:15:53 -0400874 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
875 if (disk_bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -0400876 continue;
Chris Masondb945352007-10-15 16:15:53 -0400877 err = btrfs_free_extent(trans, root, disk_bytenr,
878 btrfs_file_extent_disk_num_bytes(buf,
Chris Mason5f39d392007-10-15 16:14:19 -0400879 fi), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400880 BUG_ON(err);
881 } else {
Chris Masondb945352007-10-15 16:15:53 -0400882 bytenr = btrfs_node_blockptr(buf, i);
883 err = btrfs_free_extent(trans, root, bytenr,
884 btrfs_level_size(root, level - 1), 0);
Chris Mason54aa1f42007-06-22 14:16:25 -0400885 BUG_ON(err);
886 }
887 }
Chris Mason7bb86312007-12-11 09:25:06 -0500888#endif
Chris Mason54aa1f42007-06-22 14:16:25 -0400889 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -0500890}
891
Chris Mason9078a3e2007-04-26 16:46:15 -0400892static int write_one_cache_group(struct btrfs_trans_handle *trans,
893 struct btrfs_root *root,
894 struct btrfs_path *path,
895 struct btrfs_block_group_cache *cache)
896{
897 int ret;
898 int pending_ret;
899 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400900 unsigned long bi;
901 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -0400902
Chris Mason9078a3e2007-04-26 16:46:15 -0400903 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400904 if (ret < 0)
905 goto fail;
Chris Mason9078a3e2007-04-26 16:46:15 -0400906 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400907
908 leaf = path->nodes[0];
909 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
910 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
911 btrfs_mark_buffer_dirty(leaf);
Chris Mason9078a3e2007-04-26 16:46:15 -0400912 btrfs_release_path(extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400913fail:
Chris Mason9078a3e2007-04-26 16:46:15 -0400914 finish_current_insert(trans, extent_root);
915 pending_ret = del_pending_extents(trans, extent_root);
916 if (ret)
917 return ret;
918 if (pending_ret)
919 return pending_ret;
920 return 0;
921
922}
923
Chris Mason96b51792007-10-15 16:15:19 -0400924int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
925 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -0400926{
Chris Mason96b51792007-10-15 16:15:19 -0400927 struct extent_map_tree *block_group_cache;
928 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -0400929 int ret;
930 int err = 0;
931 int werr = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -0400932 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -0400933 u64 last = 0;
934 u64 start;
935 u64 end;
936 u64 ptr;
Chris Mason9078a3e2007-04-26 16:46:15 -0400937
Chris Mason96b51792007-10-15 16:15:19 -0400938 block_group_cache = &root->fs_info->block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -0400939 path = btrfs_alloc_path();
940 if (!path)
941 return -ENOMEM;
942
943 while(1) {
Chris Mason96b51792007-10-15 16:15:19 -0400944 ret = find_first_extent_bit(block_group_cache, last,
945 &start, &end, BLOCK_GROUP_DIRTY);
946 if (ret)
Chris Mason9078a3e2007-04-26 16:46:15 -0400947 break;
Chris Mason54aa1f42007-06-22 14:16:25 -0400948
Chris Mason96b51792007-10-15 16:15:19 -0400949 last = end + 1;
950 ret = get_state_private(block_group_cache, start, &ptr);
951 if (ret)
952 break;
953
Jens Axboeae2f5412007-10-19 09:22:59 -0400954 cache = (struct btrfs_block_group_cache *)(unsigned long)ptr;
Chris Mason96b51792007-10-15 16:15:19 -0400955 err = write_one_cache_group(trans, root,
956 path, cache);
957 /*
958 * if we fail to write the cache group, we want
959 * to keep it marked dirty in hopes that a later
960 * write will work
961 */
962 if (err) {
963 werr = err;
964 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -0400965 }
Chris Mason96b51792007-10-15 16:15:19 -0400966 clear_extent_bits(block_group_cache, start, end,
967 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -0400968 }
969 btrfs_free_path(path);
970 return werr;
971}
972
973static int update_block_group(struct btrfs_trans_handle *trans,
974 struct btrfs_root *root,
Chris Masondb945352007-10-15 16:15:53 -0400975 u64 bytenr, u64 num_bytes, int alloc,
976 int mark_free, int data)
Chris Mason9078a3e2007-04-26 16:46:15 -0400977{
978 struct btrfs_block_group_cache *cache;
979 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -0400980 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -0400981 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -0400982 u64 byte_in_group;
Chris Mason96b51792007-10-15 16:15:19 -0400983 u64 start;
984 u64 end;
Chris Mason3e1ad542007-05-07 20:03:49 -0400985
Chris Mason9078a3e2007-04-26 16:46:15 -0400986 while(total) {
Chris Masondb945352007-10-15 16:15:53 -0400987 cache = btrfs_lookup_block_group(info, bytenr);
Chris Mason3e1ad542007-05-07 20:03:49 -0400988 if (!cache) {
Chris Mason9078a3e2007-04-26 16:46:15 -0400989 return -1;
Chris Masoncd1bc462007-04-27 10:08:34 -0400990 }
Chris Masondb945352007-10-15 16:15:53 -0400991 byte_in_group = bytenr - cache->key.objectid;
992 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason96b51792007-10-15 16:15:19 -0400993 start = cache->key.objectid;
994 end = start + cache->key.offset - 1;
995 set_extent_bits(&info->block_group_cache, start, end,
996 BLOCK_GROUP_DIRTY, GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -0400997
998 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -0400999 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04001000 if (alloc) {
Chris Mason1e2677e2007-05-29 16:52:18 -04001001 if (cache->data != data &&
Chris Mason84f54cf2007-06-12 07:43:08 -04001002 old_val < (cache->key.offset >> 1)) {
Chris Mason96b51792007-10-15 16:15:19 -04001003 int bit_to_clear;
1004 int bit_to_set;
Chris Mason96b51792007-10-15 16:15:19 -04001005 cache->data = data;
Chris Mason1e2677e2007-05-29 16:52:18 -04001006 if (data) {
Yanb97f9202007-11-01 11:28:41 -04001007 bit_to_clear = BLOCK_GROUP_METADATA;
1008 bit_to_set = BLOCK_GROUP_DATA;
Chris Masonf84a8b32007-11-06 10:26:29 -05001009 cache->item.flags &=
1010 ~BTRFS_BLOCK_GROUP_MIXED;
Chris Mason1e2677e2007-05-29 16:52:18 -04001011 cache->item.flags |=
1012 BTRFS_BLOCK_GROUP_DATA;
1013 } else {
Yanb97f9202007-11-01 11:28:41 -04001014 bit_to_clear = BLOCK_GROUP_DATA;
1015 bit_to_set = BLOCK_GROUP_METADATA;
Chris Mason1e2677e2007-05-29 16:52:18 -04001016 cache->item.flags &=
Chris Masonf84a8b32007-11-06 10:26:29 -05001017 ~BTRFS_BLOCK_GROUP_MIXED;
1018 cache->item.flags &=
Chris Mason1e2677e2007-05-29 16:52:18 -04001019 ~BTRFS_BLOCK_GROUP_DATA;
1020 }
Chris Mason96b51792007-10-15 16:15:19 -04001021 clear_extent_bits(&info->block_group_cache,
1022 start, end, bit_to_clear,
1023 GFP_NOFS);
1024 set_extent_bits(&info->block_group_cache,
1025 start, end, bit_to_set,
1026 GFP_NOFS);
Chris Masonf84a8b32007-11-06 10:26:29 -05001027 } else if (cache->data != data &&
1028 cache->data != BTRFS_BLOCK_GROUP_MIXED) {
1029 cache->data = BTRFS_BLOCK_GROUP_MIXED;
1030 set_extent_bits(&info->block_group_cache,
1031 start, end,
1032 BLOCK_GROUP_DATA |
1033 BLOCK_GROUP_METADATA,
1034 GFP_NOFS);
Chris Mason1e2677e2007-05-29 16:52:18 -04001035 }
Chris Masondb945352007-10-15 16:15:53 -04001036 old_val += num_bytes;
Chris Masoncd1bc462007-04-27 10:08:34 -04001037 } else {
Chris Masondb945352007-10-15 16:15:53 -04001038 old_val -= num_bytes;
Chris Masonf510cfe2007-10-15 16:14:48 -04001039 if (mark_free) {
1040 set_extent_dirty(&info->free_space_cache,
Chris Masondb945352007-10-15 16:15:53 -04001041 bytenr, bytenr + num_bytes - 1,
Chris Masonf510cfe2007-10-15 16:14:48 -04001042 GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04001043 }
Chris Masoncd1bc462007-04-27 10:08:34 -04001044 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001045 btrfs_set_block_group_used(&cache->item, old_val);
Chris Masondb945352007-10-15 16:15:53 -04001046 total -= num_bytes;
1047 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04001048 }
1049 return 0;
1050}
Yan324ae4d2007-11-16 14:57:08 -05001051static int update_pinned_extents(struct btrfs_root *root,
1052 u64 bytenr, u64 num, int pin)
1053{
1054 u64 len;
1055 struct btrfs_block_group_cache *cache;
1056 struct btrfs_fs_info *fs_info = root->fs_info;
1057
1058 if (pin) {
1059 set_extent_dirty(&fs_info->pinned_extents,
1060 bytenr, bytenr + num - 1, GFP_NOFS);
1061 } else {
1062 clear_extent_dirty(&fs_info->pinned_extents,
1063 bytenr, bytenr + num - 1, GFP_NOFS);
1064 }
1065 while (num > 0) {
1066 cache = btrfs_lookup_block_group(fs_info, bytenr);
1067 WARN_ON(!cache);
1068 len = min(num, cache->key.offset -
1069 (bytenr - cache->key.objectid));
1070 if (pin) {
1071 cache->pinned += len;
1072 fs_info->total_pinned += len;
1073 } else {
1074 cache->pinned -= len;
1075 fs_info->total_pinned -= len;
1076 }
1077 bytenr += len;
1078 num -= len;
1079 }
1080 return 0;
1081}
Chris Mason9078a3e2007-04-26 16:46:15 -04001082
Chris Mason1a5bc162007-10-15 16:15:26 -04001083int btrfs_copy_pinned(struct btrfs_root *root, struct extent_map_tree *copy)
Chris Masonccd467d2007-06-28 15:57:36 -04001084{
Chris Masonccd467d2007-06-28 15:57:36 -04001085 u64 last = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001086 u64 start;
1087 u64 end;
1088 struct extent_map_tree *pinned_extents = &root->fs_info->pinned_extents;
Chris Masonccd467d2007-06-28 15:57:36 -04001089 int ret;
Chris Masonccd467d2007-06-28 15:57:36 -04001090
1091 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001092 ret = find_first_extent_bit(pinned_extents, last,
1093 &start, &end, EXTENT_DIRTY);
1094 if (ret)
Chris Masonccd467d2007-06-28 15:57:36 -04001095 break;
Chris Mason1a5bc162007-10-15 16:15:26 -04001096 set_extent_dirty(copy, start, end, GFP_NOFS);
1097 last = end + 1;
Chris Masonccd467d2007-06-28 15:57:36 -04001098 }
1099 return 0;
1100}
1101
1102int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
1103 struct btrfs_root *root,
Chris Mason1a5bc162007-10-15 16:15:26 -04001104 struct extent_map_tree *unpin)
Chris Masona28ec192007-03-06 20:08:01 -05001105{
Chris Mason1a5bc162007-10-15 16:15:26 -04001106 u64 start;
1107 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05001108 int ret;
Chris Masonf510cfe2007-10-15 16:14:48 -04001109 struct extent_map_tree *free_space_cache;
Chris Masonf510cfe2007-10-15 16:14:48 -04001110 free_space_cache = &root->fs_info->free_space_cache;
Chris Masona28ec192007-03-06 20:08:01 -05001111
1112 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001113 ret = find_first_extent_bit(unpin, 0, &start, &end,
1114 EXTENT_DIRTY);
1115 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05001116 break;
Yan324ae4d2007-11-16 14:57:08 -05001117 update_pinned_extents(root, start, end + 1 - start, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001118 clear_extent_dirty(unpin, start, end, GFP_NOFS);
1119 set_extent_dirty(free_space_cache, start, end, GFP_NOFS);
Chris Masona28ec192007-03-06 20:08:01 -05001120 }
1121 return 0;
1122}
1123
Chris Masone089f052007-03-16 16:20:31 -04001124static int finish_current_insert(struct btrfs_trans_handle *trans, struct
1125 btrfs_root *extent_root)
Chris Mason037e6392007-03-07 11:50:24 -05001126{
Chris Mason7bb86312007-12-11 09:25:06 -05001127 u64 start;
1128 u64 end;
1129 struct btrfs_fs_info *info = extent_root->fs_info;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001130 struct extent_buffer *eb;
Chris Mason7bb86312007-12-11 09:25:06 -05001131 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001132 struct btrfs_key ins;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001133 struct btrfs_disk_key first;
Chris Mason234b63a2007-03-13 10:46:10 -04001134 struct btrfs_extent_item extent_item;
Chris Mason037e6392007-03-07 11:50:24 -05001135 int ret;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001136 int level;
Chris Mason1a5bc162007-10-15 16:15:26 -04001137 int err = 0;
Chris Mason037e6392007-03-07 11:50:24 -05001138
Chris Mason5f39d392007-10-15 16:14:19 -04001139 btrfs_set_stack_extent_refs(&extent_item, 1);
Chris Mason62e27492007-03-15 12:56:47 -04001140 btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
Chris Mason7bb86312007-12-11 09:25:06 -05001141 path = btrfs_alloc_path();
Chris Mason037e6392007-03-07 11:50:24 -05001142
Chris Mason26b80032007-08-08 20:17:12 -04001143 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001144 ret = find_first_extent_bit(&info->extent_ins, 0, &start,
1145 &end, EXTENT_LOCKED);
1146 if (ret)
Chris Mason26b80032007-08-08 20:17:12 -04001147 break;
1148
Chris Mason1a5bc162007-10-15 16:15:26 -04001149 ins.objectid = start;
1150 ins.offset = end + 1 - start;
1151 err = btrfs_insert_item(trans, extent_root, &ins,
1152 &extent_item, sizeof(extent_item));
1153 clear_extent_bits(&info->extent_ins, start, end, EXTENT_LOCKED,
1154 GFP_NOFS);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001155 eb = read_tree_block(extent_root, ins.objectid, ins.offset);
1156 level = btrfs_header_level(eb);
1157 if (level == 0) {
1158 btrfs_item_key(eb, &first, 0);
1159 } else {
1160 btrfs_node_key(eb, &first, 0);
1161 }
Chris Mason7bb86312007-12-11 09:25:06 -05001162 err = btrfs_insert_extent_backref(trans, extent_root, path,
1163 start, extent_root->root_key.objectid,
Chris Masonf6dbff52007-12-13 11:13:32 -05001164 0, level,
1165 btrfs_disk_key_objectid(&first));
Chris Mason7bb86312007-12-11 09:25:06 -05001166 BUG_ON(err);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001167 free_extent_buffer(eb);
Chris Mason037e6392007-03-07 11:50:24 -05001168 }
Chris Mason7bb86312007-12-11 09:25:06 -05001169 btrfs_free_path(path);
Chris Mason037e6392007-03-07 11:50:24 -05001170 return 0;
1171}
1172
Chris Masondb945352007-10-15 16:15:53 -04001173static int pin_down_bytes(struct btrfs_root *root, u64 bytenr, u32 num_bytes,
1174 int pending)
Chris Masone20d96d2007-03-22 12:13:20 -04001175{
Chris Mason1a5bc162007-10-15 16:15:26 -04001176 int err = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001177 struct extent_buffer *buf;
Chris Mason78fae272007-03-25 11:35:08 -04001178
Chris Masonf4b9aa82007-03-27 11:05:53 -04001179 if (!pending) {
Chris Masondb945352007-10-15 16:15:53 -04001180 buf = btrfs_find_tree_block(root, bytenr, num_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -04001181 if (buf) {
1182 if (btrfs_buffer_uptodate(buf)) {
Chris Mason2c90e5d2007-04-02 10:50:19 -04001183 u64 transid =
1184 root->fs_info->running_transaction->transid;
Chris Mason5f39d392007-10-15 16:14:19 -04001185 if (btrfs_header_generation(buf) == transid) {
1186 free_extent_buffer(buf);
Yanc5492282007-11-06 10:25:25 -05001187 return 1;
Chris Mason2c90e5d2007-04-02 10:50:19 -04001188 }
Chris Masonf4b9aa82007-03-27 11:05:53 -04001189 }
Chris Mason5f39d392007-10-15 16:14:19 -04001190 free_extent_buffer(buf);
Chris Mason8ef97622007-03-26 10:15:30 -04001191 }
Yan324ae4d2007-11-16 14:57:08 -05001192 update_pinned_extents(root, bytenr, num_bytes, 1);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001193 } else {
Chris Mason1a5bc162007-10-15 16:15:26 -04001194 set_extent_bits(&root->fs_info->pending_del,
Chris Masondb945352007-10-15 16:15:53 -04001195 bytenr, bytenr + num_bytes - 1,
1196 EXTENT_LOCKED, GFP_NOFS);
Chris Masonf4b9aa82007-03-27 11:05:53 -04001197 }
Chris Masonbe744172007-05-06 10:15:01 -04001198 BUG_ON(err < 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001199 return 0;
1200}
1201
Chris Masona28ec192007-03-06 20:08:01 -05001202/*
1203 * remove an extent from the root, returns 0 on success
1204 */
Chris Masone089f052007-03-16 16:20:31 -04001205static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001206 *root, u64 bytenr, u64 num_bytes,
1207 u64 root_objectid, u64 ref_generation,
1208 u64 owner_objectid, u64 owner_offset, int pin,
Chris Masone37c9e62007-05-09 20:13:14 -04001209 int mark_free)
Chris Masona28ec192007-03-06 20:08:01 -05001210{
Chris Mason5caf2a02007-04-02 11:20:42 -04001211 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001212 struct btrfs_key key;
Chris Mason1261ec42007-03-20 20:35:03 -04001213 struct btrfs_fs_info *info = root->fs_info;
1214 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04001215 struct extent_buffer *leaf;
Chris Masona28ec192007-03-06 20:08:01 -05001216 int ret;
Chris Mason234b63a2007-03-13 10:46:10 -04001217 struct btrfs_extent_item *ei;
Chris Masoncf27e1e2007-03-13 09:49:06 -04001218 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -05001219
Chris Masondb945352007-10-15 16:15:53 -04001220 key.objectid = bytenr;
Chris Mason62e27492007-03-15 12:56:47 -04001221 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masondb945352007-10-15 16:15:53 -04001222 key.offset = num_bytes;
Chris Masona28ec192007-03-06 20:08:01 -05001223
Chris Mason5caf2a02007-04-02 11:20:42 -04001224 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001225 if (!path)
1226 return -ENOMEM;
1227
Chris Mason7bb86312007-12-11 09:25:06 -05001228 ret = lookup_extent_backref(trans, extent_root, path,
1229 bytenr, root_objectid,
1230 ref_generation,
1231 owner_objectid, owner_offset, 1);
1232 if (ret == 0) {
1233 ret = btrfs_del_item(trans, extent_root, path);
1234 } else {
1235 btrfs_print_leaf(extent_root, path->nodes[0]);
1236 WARN_ON(1);
1237 printk("Unable to find ref byte nr %Lu root %Lu "
1238 " gen %Lu owner %Lu offset %Lu\n", bytenr,
1239 root_objectid, ref_generation, owner_objectid,
1240 owner_offset);
1241 }
1242 btrfs_release_path(extent_root, path);
Chris Mason5caf2a02007-04-02 11:20:42 -04001243 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001244 if (ret < 0)
1245 return ret;
1246 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001247
1248 leaf = path->nodes[0];
1249 ei = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason123abc82007-03-14 14:14:43 -04001250 struct btrfs_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001251 refs = btrfs_extent_refs(leaf, ei);
1252 BUG_ON(refs == 0);
1253 refs -= 1;
1254 btrfs_set_extent_refs(leaf, ei, refs);
1255 btrfs_mark_buffer_dirty(leaf);
1256
Chris Masoncf27e1e2007-03-13 09:49:06 -04001257 if (refs == 0) {
Chris Masondb945352007-10-15 16:15:53 -04001258 u64 super_used;
1259 u64 root_used;
Chris Mason78fae272007-03-25 11:35:08 -04001260
1261 if (pin) {
Chris Masondb945352007-10-15 16:15:53 -04001262 ret = pin_down_bytes(root, bytenr, num_bytes, 0);
Yanc5492282007-11-06 10:25:25 -05001263 if (ret > 0)
1264 mark_free = 1;
1265 BUG_ON(ret < 0);
Chris Mason78fae272007-03-25 11:35:08 -04001266 }
1267
Josef Bacik58176a92007-08-29 15:47:34 -04001268 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -04001269 super_used = btrfs_super_bytes_used(&info->super_copy);
1270 btrfs_set_super_bytes_used(&info->super_copy,
1271 super_used - num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001272
1273 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001274 root_used = btrfs_root_used(&root->root_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001275 btrfs_set_root_used(&root->root_item,
Chris Masondb945352007-10-15 16:15:53 -04001276 root_used - num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001277
Chris Mason5caf2a02007-04-02 11:20:42 -04001278 ret = btrfs_del_item(trans, extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -04001279 if (ret) {
1280 return ret;
1281 }
Chris Masondb945352007-10-15 16:15:53 -04001282 ret = update_block_group(trans, root, bytenr, num_bytes, 0,
Chris Mason1e2677e2007-05-29 16:52:18 -04001283 mark_free, 0);
Chris Mason9078a3e2007-04-26 16:46:15 -04001284 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -05001285 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001286 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001287 finish_current_insert(trans, extent_root);
Chris Masona28ec192007-03-06 20:08:01 -05001288 return ret;
1289}
1290
1291/*
Chris Masonfec577f2007-02-26 10:40:21 -05001292 * find all the blocks marked as pending in the radix tree and remove
1293 * them from the extent map
1294 */
Chris Masone089f052007-03-16 16:20:31 -04001295static int del_pending_extents(struct btrfs_trans_handle *trans, struct
1296 btrfs_root *extent_root)
Chris Masonfec577f2007-02-26 10:40:21 -05001297{
1298 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -04001299 int err = 0;
Chris Mason1a5bc162007-10-15 16:15:26 -04001300 u64 start;
1301 u64 end;
1302 struct extent_map_tree *pending_del;
1303 struct extent_map_tree *pinned_extents;
Chris Mason8ef97622007-03-26 10:15:30 -04001304
Chris Mason1a5bc162007-10-15 16:15:26 -04001305 pending_del = &extent_root->fs_info->pending_del;
1306 pinned_extents = &extent_root->fs_info->pinned_extents;
Chris Masonfec577f2007-02-26 10:40:21 -05001307
1308 while(1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001309 ret = find_first_extent_bit(pending_del, 0, &start, &end,
1310 EXTENT_LOCKED);
1311 if (ret)
Chris Masonfec577f2007-02-26 10:40:21 -05001312 break;
Yan324ae4d2007-11-16 14:57:08 -05001313 update_pinned_extents(extent_root, start, end + 1 - start, 1);
Chris Mason1a5bc162007-10-15 16:15:26 -04001314 clear_extent_bits(pending_del, start, end, EXTENT_LOCKED,
1315 GFP_NOFS);
1316 ret = __free_extent(trans, extent_root,
Chris Mason7bb86312007-12-11 09:25:06 -05001317 start, end + 1 - start,
1318 extent_root->root_key.objectid,
1319 0, 0, 0, 0, 0);
Chris Mason1a5bc162007-10-15 16:15:26 -04001320 if (ret)
1321 err = ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001322 }
Chris Masone20d96d2007-03-22 12:13:20 -04001323 return err;
Chris Masonfec577f2007-02-26 10:40:21 -05001324}
1325
1326/*
1327 * remove an extent from the root, returns 0 on success
1328 */
Chris Masone089f052007-03-16 16:20:31 -04001329int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason7bb86312007-12-11 09:25:06 -05001330 *root, u64 bytenr, u64 num_bytes,
1331 u64 root_objectid, u64 ref_generation,
1332 u64 owner_objectid, u64 owner_offset, int pin)
Chris Masonfec577f2007-02-26 10:40:21 -05001333{
Chris Mason9f5fae22007-03-20 14:38:32 -04001334 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Masonfec577f2007-02-26 10:40:21 -05001335 int pending_ret;
1336 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05001337
Chris Masondb945352007-10-15 16:15:53 -04001338 WARN_ON(num_bytes < root->sectorsize);
Chris Mason7bb86312007-12-11 09:25:06 -05001339 if (!root->ref_cows)
1340 ref_generation = 0;
1341
Chris Masona28ec192007-03-06 20:08:01 -05001342 if (root == extent_root) {
Chris Masondb945352007-10-15 16:15:53 -04001343 pin_down_bytes(root, bytenr, num_bytes, 1);
Chris Masona28ec192007-03-06 20:08:01 -05001344 return 0;
1345 }
Chris Mason7bb86312007-12-11 09:25:06 -05001346 ret = __free_extent(trans, root, bytenr, num_bytes, root_objectid,
1347 ref_generation, owner_objectid, owner_offset,
1348 pin, pin == 0);
Chris Masone20d96d2007-03-22 12:13:20 -04001349 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -05001350 return ret ? ret : pending_ret;
1351}
1352
Chris Mason87ee04e2007-11-30 11:30:34 -05001353static u64 stripe_align(struct btrfs_root *root, u64 val)
1354{
1355 u64 mask = ((u64)root->stripesize - 1);
1356 u64 ret = (val + mask) & ~mask;
1357 return ret;
1358}
1359
Chris Masonfec577f2007-02-26 10:40:21 -05001360/*
1361 * walks the btree of allocated extents and find a hole of a given size.
1362 * The key ins is changed to record the hole:
1363 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04001364 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05001365 * ins->offset == number of blocks
1366 * Any available blocks before search_start are skipped.
1367 */
Chris Masone089f052007-03-16 16:20:31 -04001368static int find_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masondb945352007-10-15 16:15:53 -04001369 *orig_root, u64 num_bytes, u64 empty_size,
1370 u64 search_start, u64 search_end, u64 hint_byte,
Chris Masonf2654de2007-06-26 12:20:46 -04001371 struct btrfs_key *ins, u64 exclude_start,
1372 u64 exclude_nr, int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001373{
Chris Mason5caf2a02007-04-02 11:20:42 -04001374 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -04001375 struct btrfs_key key;
Chris Masonfec577f2007-02-26 10:40:21 -05001376 u64 hole_size = 0;
Chris Mason87ee04e2007-11-30 11:30:34 -05001377 u64 aligned;
1378 int ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001379 int slot = 0;
Chris Masondb945352007-10-15 16:15:53 -04001380 u64 last_byte = 0;
Chris Masonbe744172007-05-06 10:15:01 -04001381 u64 orig_search_start = search_start;
Chris Masonfec577f2007-02-26 10:40:21 -05001382 int start_found;
Chris Mason5f39d392007-10-15 16:14:19 -04001383 struct extent_buffer *l;
Chris Mason9f5fae22007-03-20 14:38:32 -04001384 struct btrfs_root * root = orig_root->fs_info->extent_root;
Chris Masonf2458e12007-04-25 15:52:25 -04001385 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04001386 u64 total_needed = num_bytes;
Chris Masone20d96d2007-03-22 12:13:20 -04001387 int level;
Chris Masonbe08c1b2007-05-03 09:06:49 -04001388 struct btrfs_block_group_cache *block_group;
Chris Masonbe744172007-05-06 10:15:01 -04001389 int full_scan = 0;
Chris Masonfbdc7622007-05-30 10:22:12 -04001390 int wrapped = 0;
Chris Masonf84a8b32007-11-06 10:26:29 -05001391 u64 cached_start;
Chris Masonfec577f2007-02-26 10:40:21 -05001392
Chris Masondb945352007-10-15 16:15:53 -04001393 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04001394 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
1395
Chris Mason5f39d392007-10-15 16:14:19 -04001396 level = btrfs_header_level(root->node);
1397
Chris Mason015a739c2007-11-26 16:15:16 -08001398 if (num_bytes >= 32 * 1024 * 1024 && hint_byte) {
Chris Mason257d0ce2007-11-07 21:08:16 -05001399 data = BTRFS_BLOCK_GROUP_MIXED;
1400 }
1401
Chris Mason3e1ad542007-05-07 20:03:49 -04001402 if (search_end == (u64)-1)
Chris Masondb945352007-10-15 16:15:53 -04001403 search_end = btrfs_super_total_bytes(&info->super_copy);
1404 if (hint_byte) {
1405 block_group = btrfs_lookup_block_group(info, hint_byte);
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001406 if (!block_group)
1407 hint_byte = search_start;
Chris Masonbe744172007-05-06 10:15:01 -04001408 block_group = btrfs_find_block_group(root, block_group,
Chris Masondb945352007-10-15 16:15:53 -04001409 hint_byte, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -04001410 } else {
1411 block_group = btrfs_find_block_group(root,
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001412 trans->block_group,
1413 search_start, data, 1);
Chris Masonbe744172007-05-06 10:15:01 -04001414 }
1415
Chris Mason6702ed42007-08-07 16:15:09 -04001416 total_needed += empty_size;
Chris Masone0115992007-06-19 16:23:05 -04001417 path = btrfs_alloc_path();
Chris Masonbe744172007-05-06 10:15:01 -04001418check_failed:
Chris Mason70b043f2007-12-13 09:02:46 -05001419 if (!block_group) {
1420 block_group = btrfs_lookup_block_group(info, search_start);
1421 if (!block_group)
1422 block_group = btrfs_lookup_block_group(info,
1423 orig_search_start);
1424 }
Yan5e5745d2007-11-16 14:57:09 -05001425 search_start = find_search_start(root, &block_group, search_start,
1426 total_needed, data, full_scan);
Chris Mason87ee04e2007-11-30 11:30:34 -05001427 search_start = stripe_align(root, search_start);
Chris Masonf84a8b32007-11-06 10:26:29 -05001428 cached_start = search_start;
Chris Mason5caf2a02007-04-02 11:20:42 -04001429 btrfs_init_path(path);
Chris Masonfec577f2007-02-26 10:40:21 -05001430 ins->objectid = search_start;
1431 ins->offset = 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001432 start_found = 0;
Chris Mason2cc58cf2007-08-27 16:49:44 -04001433 path->reada = 2;
Chris Masone37c9e62007-05-09 20:13:14 -04001434
Chris Mason5caf2a02007-04-02 11:20:42 -04001435 ret = btrfs_search_slot(trans, root, ins, path, 0, 0);
Chris Mason0f70abe2007-02-28 16:46:22 -05001436 if (ret < 0)
1437 goto error;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001438
Chris Masone37c9e62007-05-09 20:13:14 -04001439 if (path->slots[0] > 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001440 path->slots[0]--;
Chris Masone37c9e62007-05-09 20:13:14 -04001441 }
1442
Chris Mason5f39d392007-10-15 16:14:19 -04001443 l = path->nodes[0];
1444 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
1445
Chris Masone37c9e62007-05-09 20:13:14 -04001446 /*
Chris Mason7bb86312007-12-11 09:25:06 -05001447 * walk backwards to find the first extent item key
Chris Masone37c9e62007-05-09 20:13:14 -04001448 */
Chris Mason7bb86312007-12-11 09:25:06 -05001449 while(btrfs_key_type(&key) != BTRFS_EXTENT_ITEM_KEY) {
1450 if (path->slots[0] == 0) {
1451 ret = btrfs_prev_leaf(root, path);
1452 if (ret != 0) {
1453 ret = btrfs_search_slot(trans, root, ins,
1454 path, 0, 0);
1455 if (ret < 0)
1456 goto error;
1457 if (path->slots[0] > 0)
1458 path->slots[0]--;
1459 break;
1460 }
1461 } else {
Chris Masone37c9e62007-05-09 20:13:14 -04001462 path->slots[0]--;
1463 }
Chris Mason7bb86312007-12-11 09:25:06 -05001464 l = path->nodes[0];
1465 btrfs_item_key_to_cpu(l, &key, path->slots[0]);
Chris Masone37c9e62007-05-09 20:13:14 -04001466 }
Chris Masonfec577f2007-02-26 10:40:21 -05001467 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001468 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -04001469 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04001470 if (slot >= btrfs_header_nritems(l)) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001471 ret = btrfs_next_leaf(root, path);
Chris Masonfec577f2007-02-26 10:40:21 -05001472 if (ret == 0)
1473 continue;
Chris Mason0f70abe2007-02-28 16:46:22 -05001474 if (ret < 0)
1475 goto error;
Chris Masone19caa52007-10-15 16:17:44 -04001476
1477 search_start = max(search_start,
1478 block_group->key.objectid);
Chris Masonfec577f2007-02-26 10:40:21 -05001479 if (!start_found) {
Chris Mason87ee04e2007-11-30 11:30:34 -05001480 aligned = stripe_align(root, search_start);
1481 ins->objectid = aligned;
1482 if (aligned >= search_end) {
1483 ret = -ENOSPC;
1484 goto error;
1485 }
1486 ins->offset = search_end - aligned;
Chris Masonfec577f2007-02-26 10:40:21 -05001487 start_found = 1;
1488 goto check_pending;
1489 }
Chris Mason87ee04e2007-11-30 11:30:34 -05001490 ins->objectid = stripe_align(root,
1491 last_byte > search_start ?
1492 last_byte : search_start);
1493 if (search_end <= ins->objectid) {
1494 ret = -ENOSPC;
1495 goto error;
1496 }
Chris Mason3e1ad542007-05-07 20:03:49 -04001497 ins->offset = search_end - ins->objectid;
Chris Masone19caa52007-10-15 16:17:44 -04001498 BUG_ON(ins->objectid >= search_end);
Chris Masonfec577f2007-02-26 10:40:21 -05001499 goto check_pending;
1500 }
Chris Mason5f39d392007-10-15 16:14:19 -04001501 btrfs_item_key_to_cpu(l, &key, slot);
Chris Mason96b51792007-10-15 16:15:19 -04001502
Chris Masondb945352007-10-15 16:15:53 -04001503 if (key.objectid >= search_start && key.objectid > last_byte &&
Chris Masone37c9e62007-05-09 20:13:14 -04001504 start_found) {
Chris Masondb945352007-10-15 16:15:53 -04001505 if (last_byte < search_start)
1506 last_byte = search_start;
Chris Mason87ee04e2007-11-30 11:30:34 -05001507 aligned = stripe_align(root, last_byte);
1508 hole_size = key.objectid - aligned;
1509 if (key.objectid > aligned && hole_size >= num_bytes) {
1510 ins->objectid = aligned;
Chris Masone37c9e62007-05-09 20:13:14 -04001511 ins->offset = hole_size;
1512 goto check_pending;
Chris Mason0579da42007-03-07 16:15:30 -05001513 }
Chris Masonfec577f2007-02-26 10:40:21 -05001514 }
Chris Mason96b51792007-10-15 16:15:19 -04001515 if (btrfs_key_type(&key) != BTRFS_EXTENT_ITEM_KEY) {
Chris Mason7bb86312007-12-11 09:25:06 -05001516 if (!start_found && btrfs_key_type(&key) ==
1517 BTRFS_BLOCK_GROUP_ITEM_KEY) {
Chris Masondb945352007-10-15 16:15:53 -04001518 last_byte = key.objectid;
Chris Mason96b51792007-10-15 16:15:19 -04001519 start_found = 1;
1520 }
Chris Masone37c9e62007-05-09 20:13:14 -04001521 goto next;
Chris Mason96b51792007-10-15 16:15:19 -04001522 }
1523
Chris Masone37c9e62007-05-09 20:13:14 -04001524
Chris Mason0579da42007-03-07 16:15:30 -05001525 start_found = 1;
Chris Masondb945352007-10-15 16:15:53 -04001526 last_byte = key.objectid + key.offset;
Chris Masonf510cfe2007-10-15 16:14:48 -04001527
Chris Mason257d0ce2007-11-07 21:08:16 -05001528 if (!full_scan && data != BTRFS_BLOCK_GROUP_MIXED &&
1529 last_byte >= block_group->key.objectid +
Chris Masonbe744172007-05-06 10:15:01 -04001530 block_group->key.offset) {
1531 btrfs_release_path(root, path);
1532 search_start = block_group->key.objectid +
Chris Masone19caa52007-10-15 16:17:44 -04001533 block_group->key.offset;
Chris Masonbe744172007-05-06 10:15:01 -04001534 goto new_group;
1535 }
Chris Mason9078a3e2007-04-26 16:46:15 -04001536next:
Chris Mason5caf2a02007-04-02 11:20:42 -04001537 path->slots[0]++;
Chris Masonde428b62007-05-18 13:28:27 -04001538 cond_resched();
Chris Masonfec577f2007-02-26 10:40:21 -05001539 }
Chris Masonfec577f2007-02-26 10:40:21 -05001540check_pending:
1541 /* we have to make sure we didn't find an extent that has already
1542 * been allocated by the map tree or the original allocation
1543 */
Chris Mason5caf2a02007-04-02 11:20:42 -04001544 btrfs_release_path(root, path);
Chris Masonfec577f2007-02-26 10:40:21 -05001545 BUG_ON(ins->objectid < search_start);
Chris Masone37c9e62007-05-09 20:13:14 -04001546
Chris Masondb945352007-10-15 16:15:53 -04001547 if (ins->objectid + num_bytes >= search_end)
Chris Masoncf675822007-09-17 11:00:51 -04001548 goto enospc;
Chris Mason257d0ce2007-11-07 21:08:16 -05001549 if (!full_scan && data != BTRFS_BLOCK_GROUP_MIXED &&
Yan5cf66422007-11-16 14:57:09 -05001550 ins->objectid + num_bytes > block_group->
Chris Masone19caa52007-10-15 16:17:44 -04001551 key.objectid + block_group->key.offset) {
1552 search_start = block_group->key.objectid +
1553 block_group->key.offset;
1554 goto new_group;
1555 }
Chris Mason1a5bc162007-10-15 16:15:26 -04001556 if (test_range_bit(&info->extent_ins, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001557 ins->objectid + num_bytes -1, EXTENT_LOCKED, 0)) {
1558 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001559 goto new_group;
1560 }
1561 if (test_range_bit(&info->pinned_extents, ins->objectid,
Chris Masondb945352007-10-15 16:15:53 -04001562 ins->objectid + num_bytes -1, EXTENT_DIRTY, 0)) {
1563 search_start = ins->objectid + num_bytes;
Chris Mason1a5bc162007-10-15 16:15:26 -04001564 goto new_group;
Chris Masonfec577f2007-02-26 10:40:21 -05001565 }
Chris Masondb945352007-10-15 16:15:53 -04001566 if (exclude_nr > 0 && (ins->objectid + num_bytes > exclude_start &&
Chris Masonf2654de2007-06-26 12:20:46 -04001567 ins->objectid < exclude_start + exclude_nr)) {
1568 search_start = exclude_start + exclude_nr;
1569 goto new_group;
1570 }
Chris Masone37c9e62007-05-09 20:13:14 -04001571 if (!data) {
Chris Mason5276aed2007-06-11 21:33:38 -04001572 block_group = btrfs_lookup_block_group(info, ins->objectid);
Chris Mason26b80032007-08-08 20:17:12 -04001573 if (block_group)
1574 trans->block_group = block_group;
Chris Masoncd1bc462007-04-27 10:08:34 -04001575 }
Chris Masondb945352007-10-15 16:15:53 -04001576 ins->offset = num_bytes;
Chris Mason5caf2a02007-04-02 11:20:42 -04001577 btrfs_free_path(path);
Chris Masonfec577f2007-02-26 10:40:21 -05001578 return 0;
Chris Masonbe744172007-05-06 10:15:01 -04001579
1580new_group:
Chris Masondb945352007-10-15 16:15:53 -04001581 if (search_start + num_bytes >= search_end) {
Chris Masoncf675822007-09-17 11:00:51 -04001582enospc:
Chris Masonbe744172007-05-06 10:15:01 -04001583 search_start = orig_search_start;
Chris Masonfbdc7622007-05-30 10:22:12 -04001584 if (full_scan) {
1585 ret = -ENOSPC;
1586 goto error;
1587 }
Chris Mason6702ed42007-08-07 16:15:09 -04001588 if (wrapped) {
1589 if (!full_scan)
1590 total_needed -= empty_size;
Chris Masonfbdc7622007-05-30 10:22:12 -04001591 full_scan = 1;
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001592 data = BTRFS_BLOCK_GROUP_MIXED;
Chris Mason6702ed42007-08-07 16:15:09 -04001593 } else
Chris Masonfbdc7622007-05-30 10:22:12 -04001594 wrapped = 1;
Chris Masonbe744172007-05-06 10:15:01 -04001595 }
Chris Mason5276aed2007-06-11 21:33:38 -04001596 block_group = btrfs_lookup_block_group(info, search_start);
Chris Masonfbdc7622007-05-30 10:22:12 -04001597 cond_resched();
Chris Mason1a2b2ac2007-12-04 13:18:24 -05001598 block_group = btrfs_find_block_group(root, block_group,
1599 search_start, data, 0);
Chris Masonbe744172007-05-06 10:15:01 -04001600 goto check_failed;
1601
Chris Mason0f70abe2007-02-28 16:46:22 -05001602error:
Chris Mason5caf2a02007-04-02 11:20:42 -04001603 btrfs_release_path(root, path);
1604 btrfs_free_path(path);
Chris Mason0f70abe2007-02-28 16:46:22 -05001605 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05001606}
Chris Masonfec577f2007-02-26 10:40:21 -05001607/*
Chris Masonfec577f2007-02-26 10:40:21 -05001608 * finds a free extent and does all the dirty work required for allocation
1609 * returns the key for the extent through ins, and a tree buffer for
1610 * the first block of the extent through buf.
1611 *
1612 * returns 0 if everything worked, non-zero otherwise.
1613 */
Chris Mason4d775672007-04-20 20:23:12 -04001614int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
Chris Mason7bb86312007-12-11 09:25:06 -05001615 struct btrfs_root *root,
1616 u64 num_bytes, u64 root_objectid, u64 ref_generation,
1617 u64 owner, u64 owner_offset,
1618 u64 empty_size, u64 hint_byte,
Chris Masonbe08c1b2007-05-03 09:06:49 -04001619 u64 search_end, struct btrfs_key *ins, int data)
Chris Masonfec577f2007-02-26 10:40:21 -05001620{
1621 int ret;
1622 int pending_ret;
Chris Masondb945352007-10-15 16:15:53 -04001623 u64 super_used, root_used;
Chris Masonfbdc7622007-05-30 10:22:12 -04001624 u64 search_start = 0;
Chris Mason1261ec42007-03-20 20:35:03 -04001625 struct btrfs_fs_info *info = root->fs_info;
1626 struct btrfs_root *extent_root = info->extent_root;
Chris Mason234b63a2007-03-13 10:46:10 -04001627 struct btrfs_extent_item extent_item;
Chris Mason7bb86312007-12-11 09:25:06 -05001628 struct btrfs_path *path;
Chris Mason037e6392007-03-07 11:50:24 -05001629
Chris Mason5f39d392007-10-15 16:14:19 -04001630 btrfs_set_stack_extent_refs(&extent_item, 1);
Chris Masonfec577f2007-02-26 10:40:21 -05001631
Chris Masondb945352007-10-15 16:15:53 -04001632 WARN_ON(num_bytes < root->sectorsize);
1633 ret = find_free_extent(trans, root, num_bytes, empty_size,
1634 search_start, search_end, hint_byte, ins,
Chris Mason26b80032007-08-08 20:17:12 -04001635 trans->alloc_exclude_start,
1636 trans->alloc_exclude_nr, data);
Chris Masonccd467d2007-06-28 15:57:36 -04001637 BUG_ON(ret);
Chris Masonf2654de2007-06-26 12:20:46 -04001638 if (ret)
1639 return ret;
1640
Josef Bacik58176a92007-08-29 15:47:34 -04001641 /* block accounting for super block */
Chris Masondb945352007-10-15 16:15:53 -04001642 super_used = btrfs_super_bytes_used(&info->super_copy);
1643 btrfs_set_super_bytes_used(&info->super_copy, super_used + num_bytes);
Chris Mason26b80032007-08-08 20:17:12 -04001644
Josef Bacik58176a92007-08-29 15:47:34 -04001645 /* block accounting for root item */
Chris Masondb945352007-10-15 16:15:53 -04001646 root_used = btrfs_root_used(&root->root_item);
1647 btrfs_set_root_used(&root->root_item, root_used + num_bytes);
Josef Bacik58176a92007-08-29 15:47:34 -04001648
Chris Masonf510cfe2007-10-15 16:14:48 -04001649 clear_extent_dirty(&root->fs_info->free_space_cache,
1650 ins->objectid, ins->objectid + ins->offset - 1,
1651 GFP_NOFS);
1652
Chris Mason26b80032007-08-08 20:17:12 -04001653 if (root == extent_root) {
Chris Mason1a5bc162007-10-15 16:15:26 -04001654 set_extent_bits(&root->fs_info->extent_ins, ins->objectid,
1655 ins->objectid + ins->offset - 1,
1656 EXTENT_LOCKED, GFP_NOFS);
Chris Masone19caa52007-10-15 16:17:44 -04001657 WARN_ON(data == 1);
Chris Mason26b80032007-08-08 20:17:12 -04001658 goto update_block;
1659 }
1660
1661 WARN_ON(trans->alloc_exclude_nr);
1662 trans->alloc_exclude_start = ins->objectid;
1663 trans->alloc_exclude_nr = ins->offset;
Chris Masone089f052007-03-16 16:20:31 -04001664 ret = btrfs_insert_item(trans, extent_root, ins, &extent_item,
1665 sizeof(extent_item));
Chris Mason037e6392007-03-07 11:50:24 -05001666
Chris Mason26b80032007-08-08 20:17:12 -04001667 trans->alloc_exclude_start = 0;
1668 trans->alloc_exclude_nr = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001669 BUG_ON(ret);
1670
1671 path = btrfs_alloc_path();
1672 BUG_ON(!path);
1673 ret = btrfs_insert_extent_backref(trans, extent_root, path,
1674 ins->objectid, root_objectid,
1675 ref_generation, owner, owner_offset);
Chris Mason26b80032007-08-08 20:17:12 -04001676
Chris Masonccd467d2007-06-28 15:57:36 -04001677 BUG_ON(ret);
Chris Mason7bb86312007-12-11 09:25:06 -05001678 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -04001679 finish_current_insert(trans, extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -04001680 pending_ret = del_pending_extents(trans, extent_root);
Chris Masonf510cfe2007-10-15 16:14:48 -04001681
Chris Masone37c9e62007-05-09 20:13:14 -04001682 if (ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001683 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001684 }
1685 if (pending_ret) {
Chris Mason037e6392007-03-07 11:50:24 -05001686 return pending_ret;
Chris Masone37c9e62007-05-09 20:13:14 -04001687 }
Chris Mason26b80032007-08-08 20:17:12 -04001688
1689update_block:
Chris Mason1e2677e2007-05-29 16:52:18 -04001690 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1, 0,
1691 data);
Chris Masonfabb5682007-06-07 22:13:21 -04001692 BUG_ON(ret);
Chris Mason037e6392007-03-07 11:50:24 -05001693 return 0;
Chris Masonfec577f2007-02-26 10:40:21 -05001694}
1695
1696/*
1697 * helper function to allocate a block for a given tree
1698 * returns the tree buffer or NULL.
1699 */
Chris Mason5f39d392007-10-15 16:14:19 -04001700struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Masondb945352007-10-15 16:15:53 -04001701 struct btrfs_root *root,
Chris Mason7bb86312007-12-11 09:25:06 -05001702 u32 blocksize,
1703 u64 root_objectid, u64 hint,
1704 u64 empty_size)
1705{
1706 u64 ref_generation;
1707
1708 if (root->ref_cows)
1709 ref_generation = trans->transid;
1710 else
1711 ref_generation = 0;
1712
1713
1714 return __btrfs_alloc_free_block(trans, root, blocksize, root_objectid,
1715 ref_generation, 0, 0, hint, empty_size);
1716}
1717
1718/*
1719 * helper function to allocate a block for a given tree
1720 * returns the tree buffer or NULL.
1721 */
1722struct extent_buffer *__btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
1723 struct btrfs_root *root,
1724 u32 blocksize,
1725 u64 root_objectid,
1726 u64 ref_generation,
1727 u64 first_objectid,
1728 int level,
1729 u64 hint,
Chris Mason5f39d392007-10-15 16:14:19 -04001730 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05001731{
Chris Masone2fa7222007-03-12 16:22:34 -04001732 struct btrfs_key ins;
Chris Masonfec577f2007-02-26 10:40:21 -05001733 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04001734 struct extent_buffer *buf;
Chris Masonfec577f2007-02-26 10:40:21 -05001735
Chris Mason7bb86312007-12-11 09:25:06 -05001736 ret = btrfs_alloc_extent(trans, root, blocksize,
1737 root_objectid, ref_generation,
Chris Masonf6dbff52007-12-13 11:13:32 -05001738 level, first_objectid, empty_size, hint,
Chris Masondb945352007-10-15 16:15:53 -04001739 (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05001740 if (ret) {
Chris Mason54aa1f42007-06-22 14:16:25 -04001741 BUG_ON(ret > 0);
1742 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05001743 }
Chris Masondb945352007-10-15 16:15:53 -04001744 buf = btrfs_find_create_tree_block(root, ins.objectid, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04001745 if (!buf) {
Chris Mason7bb86312007-12-11 09:25:06 -05001746 btrfs_free_extent(trans, root, ins.objectid, blocksize,
1747 root->root_key.objectid, ref_generation,
1748 0, 0, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001749 return ERR_PTR(-ENOMEM);
1750 }
Chris Mason5f39d392007-10-15 16:14:19 -04001751 btrfs_set_buffer_uptodate(buf);
1752 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
1753 buf->start + buf->len - 1, GFP_NOFS);
Chris Mason19c00dd2007-10-15 16:19:22 -04001754 set_extent_bits(&BTRFS_I(root->fs_info->btree_inode)->extent_tree,
1755 buf->start, buf->start + buf->len - 1,
1756 EXTENT_CSUM, GFP_NOFS);
1757 buf->flags |= EXTENT_CSUM;
Chris Mason6b800532007-10-15 16:17:34 -04001758 btrfs_set_buffer_defrag(buf);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001759 trans->blocks_used++;
Chris Masonfec577f2007-02-26 10:40:21 -05001760 return buf;
1761}
Chris Masona28ec192007-03-06 20:08:01 -05001762
Chris Mason6407bf62007-03-27 06:33:00 -04001763static int drop_leaf_ref(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001764 struct btrfs_root *root, struct extent_buffer *leaf)
Chris Mason6407bf62007-03-27 06:33:00 -04001765{
Chris Mason7bb86312007-12-11 09:25:06 -05001766 u64 leaf_owner;
1767 u64 leaf_generation;
Chris Mason5f39d392007-10-15 16:14:19 -04001768 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -04001769 struct btrfs_file_extent_item *fi;
1770 int i;
1771 int nritems;
1772 int ret;
1773
Chris Mason5f39d392007-10-15 16:14:19 -04001774 BUG_ON(!btrfs_is_leaf(leaf));
1775 nritems = btrfs_header_nritems(leaf);
Chris Mason7bb86312007-12-11 09:25:06 -05001776 leaf_owner = btrfs_header_owner(leaf);
1777 leaf_generation = btrfs_header_generation(leaf);
1778
Chris Mason6407bf62007-03-27 06:33:00 -04001779 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001780 u64 disk_bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04001781
1782 btrfs_item_key_to_cpu(leaf, &key, i);
1783 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason6407bf62007-03-27 06:33:00 -04001784 continue;
1785 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04001786 if (btrfs_file_extent_type(leaf, fi) ==
1787 BTRFS_FILE_EXTENT_INLINE)
Chris Mason236454d2007-04-19 13:37:44 -04001788 continue;
Chris Mason6407bf62007-03-27 06:33:00 -04001789 /*
1790 * FIXME make sure to insert a trans record that
1791 * repeats the snapshot del on crash
1792 */
Chris Masondb945352007-10-15 16:15:53 -04001793 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1794 if (disk_bytenr == 0)
Chris Mason3a686372007-05-24 13:35:57 -04001795 continue;
Chris Masondb945352007-10-15 16:15:53 -04001796 ret = btrfs_free_extent(trans, root, disk_bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05001797 btrfs_file_extent_disk_num_bytes(leaf, fi),
1798 leaf_owner, leaf_generation,
1799 key.objectid, key.offset, 0);
Chris Mason6407bf62007-03-27 06:33:00 -04001800 BUG_ON(ret);
1801 }
1802 return 0;
1803}
1804
Chris Masone0115992007-06-19 16:23:05 -04001805static void reada_walk_down(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -04001806 struct extent_buffer *node)
Chris Masone0115992007-06-19 16:23:05 -04001807{
1808 int i;
1809 u32 nritems;
Chris Masondb945352007-10-15 16:15:53 -04001810 u64 bytenr;
Chris Masone0115992007-06-19 16:23:05 -04001811 int ret;
1812 u32 refs;
Chris Masondb945352007-10-15 16:15:53 -04001813 int level;
1814 u32 blocksize;
Chris Masone0115992007-06-19 16:23:05 -04001815
Chris Mason5f39d392007-10-15 16:14:19 -04001816 nritems = btrfs_header_nritems(node);
Chris Masondb945352007-10-15 16:15:53 -04001817 level = btrfs_header_level(node);
Chris Masone0115992007-06-19 16:23:05 -04001818 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04001819 bytenr = btrfs_node_blockptr(node, i);
1820 blocksize = btrfs_level_size(root, level - 1);
1821 ret = lookup_extent_ref(NULL, root, bytenr, blocksize, &refs);
Chris Masone0115992007-06-19 16:23:05 -04001822 BUG_ON(ret);
1823 if (refs != 1)
1824 continue;
Chris Mason409eb952007-08-08 20:17:12 -04001825 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masondb945352007-10-15 16:15:53 -04001826 ret = readahead_tree_block(root, bytenr, blocksize);
Chris Mason409eb952007-08-08 20:17:12 -04001827 cond_resched();
1828 mutex_lock(&root->fs_info->fs_mutex);
Chris Masone0115992007-06-19 16:23:05 -04001829 if (ret)
1830 break;
1831 }
1832}
1833
Chris Mason9aca1d52007-03-13 11:09:37 -04001834/*
1835 * helper function for drop_snapshot, this walks down the tree dropping ref
1836 * counts as it goes.
1837 */
Chris Masone089f052007-03-16 16:20:31 -04001838static int walk_down_tree(struct btrfs_trans_handle *trans, struct btrfs_root
1839 *root, struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05001840{
Chris Mason7bb86312007-12-11 09:25:06 -05001841 u64 root_owner;
1842 u64 root_gen;
1843 u64 bytenr;
Chris Mason5f39d392007-10-15 16:14:19 -04001844 struct extent_buffer *next;
1845 struct extent_buffer *cur;
Chris Mason7bb86312007-12-11 09:25:06 -05001846 struct extent_buffer *parent;
Chris Masondb945352007-10-15 16:15:53 -04001847 u32 blocksize;
Chris Mason20524f02007-03-10 06:35:47 -05001848 int ret;
1849 u32 refs;
1850
Chris Mason5caf2a02007-04-02 11:20:42 -04001851 WARN_ON(*level < 0);
1852 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason5f39d392007-10-15 16:14:19 -04001853 ret = lookup_extent_ref(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04001854 path->nodes[*level]->start,
1855 path->nodes[*level]->len, &refs);
Chris Mason20524f02007-03-10 06:35:47 -05001856 BUG_ON(ret);
1857 if (refs > 1)
1858 goto out;
Chris Masone0115992007-06-19 16:23:05 -04001859
Chris Mason9aca1d52007-03-13 11:09:37 -04001860 /*
1861 * walk down to the last node level and free all the leaves
1862 */
Chris Mason6407bf62007-03-27 06:33:00 -04001863 while(*level >= 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -04001864 WARN_ON(*level < 0);
1865 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason20524f02007-03-10 06:35:47 -05001866 cur = path->nodes[*level];
Chris Masone0115992007-06-19 16:23:05 -04001867
1868 if (*level > 0 && path->slots[*level] == 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001869 reada_walk_down(root, cur);
Chris Masone0115992007-06-19 16:23:05 -04001870
Chris Mason5f39d392007-10-15 16:14:19 -04001871 if (btrfs_header_level(cur) != *level)
Chris Mason2c90e5d2007-04-02 10:50:19 -04001872 WARN_ON(1);
Chris Masone0115992007-06-19 16:23:05 -04001873
Chris Mason7518a232007-03-12 12:01:18 -04001874 if (path->slots[*level] >=
Chris Mason5f39d392007-10-15 16:14:19 -04001875 btrfs_header_nritems(cur))
Chris Mason20524f02007-03-10 06:35:47 -05001876 break;
Chris Mason6407bf62007-03-27 06:33:00 -04001877 if (*level == 0) {
1878 ret = drop_leaf_ref(trans, root, cur);
1879 BUG_ON(ret);
1880 break;
1881 }
Chris Masondb945352007-10-15 16:15:53 -04001882 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
1883 blocksize = btrfs_level_size(root, *level - 1);
1884 ret = lookup_extent_ref(trans, root, bytenr, blocksize, &refs);
Chris Mason6407bf62007-03-27 06:33:00 -04001885 BUG_ON(ret);
1886 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05001887 parent = path->nodes[*level];
1888 root_owner = btrfs_header_owner(parent);
1889 root_gen = btrfs_header_generation(parent);
Chris Mason20524f02007-03-10 06:35:47 -05001890 path->slots[*level]++;
Chris Masondb945352007-10-15 16:15:53 -04001891 ret = btrfs_free_extent(trans, root, bytenr,
Chris Mason7bb86312007-12-11 09:25:06 -05001892 blocksize, root_owner,
1893 root_gen, 0, 0, 1);
Chris Mason20524f02007-03-10 06:35:47 -05001894 BUG_ON(ret);
1895 continue;
1896 }
Chris Masondb945352007-10-15 16:15:53 -04001897 next = btrfs_find_tree_block(root, bytenr, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04001898 if (!next || !btrfs_buffer_uptodate(next)) {
1899 free_extent_buffer(next);
Chris Masone9d0b132007-08-10 14:06:19 -04001900 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masondb945352007-10-15 16:15:53 -04001901 next = read_tree_block(root, bytenr, blocksize);
Chris Masone9d0b132007-08-10 14:06:19 -04001902 mutex_lock(&root->fs_info->fs_mutex);
1903
1904 /* we dropped the lock, check one more time */
Chris Masondb945352007-10-15 16:15:53 -04001905 ret = lookup_extent_ref(trans, root, bytenr,
1906 blocksize, &refs);
Chris Masone9d0b132007-08-10 14:06:19 -04001907 BUG_ON(ret);
1908 if (refs != 1) {
Chris Mason7bb86312007-12-11 09:25:06 -05001909 parent = path->nodes[*level];
1910 root_owner = btrfs_header_owner(parent);
1911 root_gen = btrfs_header_generation(parent);
1912
Chris Masone9d0b132007-08-10 14:06:19 -04001913 path->slots[*level]++;
Chris Mason5f39d392007-10-15 16:14:19 -04001914 free_extent_buffer(next);
Chris Mason7bb86312007-12-11 09:25:06 -05001915 ret = btrfs_free_extent(trans, root, bytenr,
1916 blocksize,
1917 root_owner,
1918 root_gen, 0, 0, 1);
Chris Masone9d0b132007-08-10 14:06:19 -04001919 BUG_ON(ret);
1920 continue;
1921 }
1922 }
Chris Mason5caf2a02007-04-02 11:20:42 -04001923 WARN_ON(*level <= 0);
Chris Mason83e15a22007-03-12 09:03:27 -04001924 if (path->nodes[*level-1])
Chris Mason5f39d392007-10-15 16:14:19 -04001925 free_extent_buffer(path->nodes[*level-1]);
Chris Mason20524f02007-03-10 06:35:47 -05001926 path->nodes[*level-1] = next;
Chris Mason5f39d392007-10-15 16:14:19 -04001927 *level = btrfs_header_level(next);
Chris Mason20524f02007-03-10 06:35:47 -05001928 path->slots[*level] = 0;
1929 }
1930out:
Chris Mason5caf2a02007-04-02 11:20:42 -04001931 WARN_ON(*level < 0);
1932 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason7bb86312007-12-11 09:25:06 -05001933
1934 if (path->nodes[*level] == root->node) {
1935 root_owner = root->root_key.objectid;
1936 parent = path->nodes[*level];
1937 } else {
1938 parent = path->nodes[*level + 1];
1939 root_owner = btrfs_header_owner(parent);
1940 }
1941
1942 root_gen = btrfs_header_generation(parent);
Chris Masondb945352007-10-15 16:15:53 -04001943 ret = btrfs_free_extent(trans, root, path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05001944 path->nodes[*level]->len,
1945 root_owner, root_gen, 0, 0, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001946 free_extent_buffer(path->nodes[*level]);
Chris Mason20524f02007-03-10 06:35:47 -05001947 path->nodes[*level] = NULL;
1948 *level += 1;
1949 BUG_ON(ret);
1950 return 0;
1951}
1952
Chris Mason9aca1d52007-03-13 11:09:37 -04001953/*
1954 * helper for dropping snapshots. This walks back up the tree in the path
1955 * to find the first node higher up where we haven't yet gone through
1956 * all the slots
1957 */
Chris Masone089f052007-03-16 16:20:31 -04001958static int walk_up_tree(struct btrfs_trans_handle *trans, struct btrfs_root
1959 *root, struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -05001960{
Chris Mason7bb86312007-12-11 09:25:06 -05001961 u64 root_owner;
1962 u64 root_gen;
1963 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05001964 int i;
1965 int slot;
1966 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04001967
Chris Mason234b63a2007-03-13 10:46:10 -04001968 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Mason20524f02007-03-10 06:35:47 -05001969 slot = path->slots[i];
Chris Mason5f39d392007-10-15 16:14:19 -04001970 if (slot < btrfs_header_nritems(path->nodes[i]) - 1) {
1971 struct extent_buffer *node;
1972 struct btrfs_disk_key disk_key;
1973 node = path->nodes[i];
Chris Mason20524f02007-03-10 06:35:47 -05001974 path->slots[i]++;
1975 *level = i;
Chris Mason9f3a7422007-08-07 15:52:19 -04001976 WARN_ON(*level == 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001977 btrfs_node_key(node, &disk_key, path->slots[i]);
Chris Mason9f3a7422007-08-07 15:52:19 -04001978 memcpy(&root_item->drop_progress,
Chris Mason5f39d392007-10-15 16:14:19 -04001979 &disk_key, sizeof(disk_key));
Chris Mason9f3a7422007-08-07 15:52:19 -04001980 root_item->drop_level = i;
Chris Mason20524f02007-03-10 06:35:47 -05001981 return 0;
1982 } else {
Chris Mason7bb86312007-12-11 09:25:06 -05001983 if (path->nodes[*level] == root->node) {
1984 root_owner = root->root_key.objectid;
1985 root_gen =
1986 btrfs_header_generation(path->nodes[*level]);
1987 } else {
1988 struct extent_buffer *node;
1989 node = path->nodes[*level + 1];
1990 root_owner = btrfs_header_owner(node);
1991 root_gen = btrfs_header_generation(node);
1992 }
Chris Masone089f052007-03-16 16:20:31 -04001993 ret = btrfs_free_extent(trans, root,
Chris Masondb945352007-10-15 16:15:53 -04001994 path->nodes[*level]->start,
Chris Mason7bb86312007-12-11 09:25:06 -05001995 path->nodes[*level]->len,
1996 root_owner, root_gen, 0, 0, 1);
Chris Mason6407bf62007-03-27 06:33:00 -04001997 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001998 free_extent_buffer(path->nodes[*level]);
Chris Mason83e15a22007-03-12 09:03:27 -04001999 path->nodes[*level] = NULL;
Chris Mason20524f02007-03-10 06:35:47 -05002000 *level = i + 1;
Chris Mason20524f02007-03-10 06:35:47 -05002001 }
2002 }
2003 return 1;
2004}
2005
Chris Mason9aca1d52007-03-13 11:09:37 -04002006/*
2007 * drop the reference count on the tree rooted at 'snap'. This traverses
2008 * the tree freeing any blocks that have a ref count of zero after being
2009 * decremented.
2010 */
Chris Masone089f052007-03-16 16:20:31 -04002011int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason9f3a7422007-08-07 15:52:19 -04002012 *root)
Chris Mason20524f02007-03-10 06:35:47 -05002013{
Chris Mason3768f362007-03-13 16:47:54 -04002014 int ret = 0;
Chris Mason9aca1d52007-03-13 11:09:37 -04002015 int wret;
Chris Mason20524f02007-03-10 06:35:47 -05002016 int level;
Chris Mason5caf2a02007-04-02 11:20:42 -04002017 struct btrfs_path *path;
Chris Mason20524f02007-03-10 06:35:47 -05002018 int i;
2019 int orig_level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002020 struct btrfs_root_item *root_item = &root->root_item;
Chris Mason20524f02007-03-10 06:35:47 -05002021
Chris Mason5caf2a02007-04-02 11:20:42 -04002022 path = btrfs_alloc_path();
2023 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05002024
Chris Mason5f39d392007-10-15 16:14:19 -04002025 level = btrfs_header_level(root->node);
Chris Mason20524f02007-03-10 06:35:47 -05002026 orig_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002027 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2028 path->nodes[level] = root->node;
Chris Masonf510cfe2007-10-15 16:14:48 -04002029 extent_buffer_get(root->node);
Chris Mason9f3a7422007-08-07 15:52:19 -04002030 path->slots[level] = 0;
2031 } else {
2032 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04002033 struct btrfs_disk_key found_key;
2034 struct extent_buffer *node;
Chris Mason6702ed42007-08-07 16:15:09 -04002035
Chris Mason9f3a7422007-08-07 15:52:19 -04002036 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Chris Mason6702ed42007-08-07 16:15:09 -04002037 level = root_item->drop_level;
2038 path->lowest_level = level;
Chris Mason9f3a7422007-08-07 15:52:19 -04002039 wret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason6702ed42007-08-07 16:15:09 -04002040 if (wret < 0) {
Chris Mason9f3a7422007-08-07 15:52:19 -04002041 ret = wret;
2042 goto out;
2043 }
Chris Mason5f39d392007-10-15 16:14:19 -04002044 node = path->nodes[level];
2045 btrfs_node_key(node, &found_key, path->slots[level]);
2046 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
2047 sizeof(found_key)));
Chris Mason9f3a7422007-08-07 15:52:19 -04002048 }
Chris Mason20524f02007-03-10 06:35:47 -05002049 while(1) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002050 wret = walk_down_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002051 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002052 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002053 if (wret < 0)
2054 ret = wret;
2055
Chris Mason5caf2a02007-04-02 11:20:42 -04002056 wret = walk_up_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -04002057 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -05002058 break;
Chris Mason9aca1d52007-03-13 11:09:37 -04002059 if (wret < 0)
2060 ret = wret;
Chris Mason409eb952007-08-08 20:17:12 -04002061 ret = -EAGAIN;
Chris Mason409eb952007-08-08 20:17:12 -04002062 break;
Chris Mason20524f02007-03-10 06:35:47 -05002063 }
Chris Mason83e15a22007-03-12 09:03:27 -04002064 for (i = 0; i <= orig_level; i++) {
Chris Mason5caf2a02007-04-02 11:20:42 -04002065 if (path->nodes[i]) {
Chris Mason5f39d392007-10-15 16:14:19 -04002066 free_extent_buffer(path->nodes[i]);
Chris Mason0f827312007-10-15 16:18:56 -04002067 path->nodes[i] = NULL;
Chris Mason83e15a22007-03-12 09:03:27 -04002068 }
Chris Mason20524f02007-03-10 06:35:47 -05002069 }
Chris Mason9f3a7422007-08-07 15:52:19 -04002070out:
Chris Mason5caf2a02007-04-02 11:20:42 -04002071 btrfs_free_path(path);
Chris Mason9aca1d52007-03-13 11:09:37 -04002072 return ret;
Chris Mason20524f02007-03-10 06:35:47 -05002073}
Chris Mason9078a3e2007-04-26 16:46:15 -04002074
Chris Masonbe744172007-05-06 10:15:01 -04002075int btrfs_free_block_groups(struct btrfs_fs_info *info)
2076{
Chris Masonf510cfe2007-10-15 16:14:48 -04002077 u64 start;
2078 u64 end;
Yanb97f9202007-11-01 11:28:41 -04002079 u64 ptr;
Chris Mason96b51792007-10-15 16:15:19 -04002080 int ret;
Chris Mason96b51792007-10-15 16:15:19 -04002081 while(1) {
2082 ret = find_first_extent_bit(&info->block_group_cache, 0,
2083 &start, &end, (unsigned int)-1);
2084 if (ret)
2085 break;
Yanb97f9202007-11-01 11:28:41 -04002086 ret = get_state_private(&info->block_group_cache, start, &ptr);
2087 if (!ret)
2088 kfree((void *)(unsigned long)ptr);
Chris Mason96b51792007-10-15 16:15:19 -04002089 clear_extent_bits(&info->block_group_cache, start,
2090 end, (unsigned int)-1, GFP_NOFS);
2091 }
Chris Masone37c9e62007-05-09 20:13:14 -04002092 while(1) {
Chris Masonf510cfe2007-10-15 16:14:48 -04002093 ret = find_first_extent_bit(&info->free_space_cache, 0,
2094 &start, &end, EXTENT_DIRTY);
2095 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -04002096 break;
Chris Masonf510cfe2007-10-15 16:14:48 -04002097 clear_extent_dirty(&info->free_space_cache, start,
2098 end, GFP_NOFS);
Chris Masone37c9e62007-05-09 20:13:14 -04002099 }
Chris Masonbe744172007-05-06 10:15:01 -04002100 return 0;
2101}
2102
Chris Mason9078a3e2007-04-26 16:46:15 -04002103int btrfs_read_block_groups(struct btrfs_root *root)
2104{
2105 struct btrfs_path *path;
2106 int ret;
2107 int err = 0;
Chris Mason96b51792007-10-15 16:15:19 -04002108 int bit;
Chris Mason9078a3e2007-04-26 16:46:15 -04002109 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04002110 struct btrfs_fs_info *info = root->fs_info;
Chris Mason96b51792007-10-15 16:15:19 -04002111 struct extent_map_tree *block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04002112 struct btrfs_key key;
2113 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04002114 struct extent_buffer *leaf;
Chris Mason96b51792007-10-15 16:15:19 -04002115
2116 block_group_cache = &info->block_group_cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04002117
Chris Masonbe744172007-05-06 10:15:01 -04002118 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04002119 key.objectid = 0;
Chris Masondb945352007-10-15 16:15:53 -04002120 key.offset = BTRFS_BLOCK_GROUP_SIZE;
Chris Mason9078a3e2007-04-26 16:46:15 -04002121 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
2122
2123 path = btrfs_alloc_path();
2124 if (!path)
2125 return -ENOMEM;
2126
2127 while(1) {
Chris Masonbe744172007-05-06 10:15:01 -04002128 ret = btrfs_search_slot(NULL, info->extent_root,
Chris Mason9078a3e2007-04-26 16:46:15 -04002129 &key, path, 0, 0);
2130 if (ret != 0) {
2131 err = ret;
2132 break;
2133 }
Chris Mason5f39d392007-10-15 16:14:19 -04002134 leaf = path->nodes[0];
2135 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason9078a3e2007-04-26 16:46:15 -04002136 cache = kmalloc(sizeof(*cache), GFP_NOFS);
2137 if (!cache) {
2138 err = -1;
2139 break;
2140 }
Chris Mason3e1ad542007-05-07 20:03:49 -04002141
Chris Mason5f39d392007-10-15 16:14:19 -04002142 read_extent_buffer(leaf, &cache->item,
2143 btrfs_item_ptr_offset(leaf, path->slots[0]),
2144 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04002145 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Masone37c9e62007-05-09 20:13:14 -04002146 cache->cached = 0;
Yan324ae4d2007-11-16 14:57:08 -05002147 cache->pinned = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002148 key.objectid = found_key.objectid + found_key.offset;
2149 btrfs_release_path(root, path);
Chris Mason5f39d392007-10-15 16:14:19 -04002150
Chris Masonf84a8b32007-11-06 10:26:29 -05002151 if (cache->item.flags & BTRFS_BLOCK_GROUP_MIXED) {
2152 bit = BLOCK_GROUP_DATA | BLOCK_GROUP_METADATA;
2153 cache->data = BTRFS_BLOCK_GROUP_MIXED;
2154 } else if (cache->item.flags & BTRFS_BLOCK_GROUP_DATA) {
Chris Mason96b51792007-10-15 16:15:19 -04002155 bit = BLOCK_GROUP_DATA;
Chris Masonf84a8b32007-11-06 10:26:29 -05002156 cache->data = BTRFS_BLOCK_GROUP_DATA;
Chris Mason96b51792007-10-15 16:15:19 -04002157 } else {
2158 bit = BLOCK_GROUP_METADATA;
2159 cache->data = 0;
Chris Mason31f3c992007-04-30 15:25:45 -04002160 }
Chris Mason96b51792007-10-15 16:15:19 -04002161
2162 /* use EXTENT_LOCKED to prevent merging */
2163 set_extent_bits(block_group_cache, found_key.objectid,
2164 found_key.objectid + found_key.offset - 1,
2165 bit | EXTENT_LOCKED, GFP_NOFS);
2166 set_state_private(block_group_cache, found_key.objectid,
Jens Axboeae2f5412007-10-19 09:22:59 -04002167 (unsigned long)cache);
Chris Mason96b51792007-10-15 16:15:19 -04002168
Chris Mason9078a3e2007-04-26 16:46:15 -04002169 if (key.objectid >=
Chris Masondb945352007-10-15 16:15:53 -04002170 btrfs_super_total_bytes(&info->super_copy))
Chris Mason9078a3e2007-04-26 16:46:15 -04002171 break;
2172 }
2173
2174 btrfs_free_path(path);
2175 return 0;
2176}