blob: aac3eccffb8ea933080a884f7afead725272d202 [file] [log] [blame]
Chris Mason2e635a22007-03-21 11:12:56 -04001#include <linux/module.h>
Chris Masonfec577f2007-02-26 10:40:21 -05002#include "ctree.h"
3#include "disk-io.h"
4#include "print-tree.h"
Chris Masone089f052007-03-16 16:20:31 -04005#include "transaction.h"
Chris Masonfec577f2007-02-26 10:40:21 -05006
Chris Masone089f052007-03-16 16:20:31 -04007static int find_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
8 *orig_root, u64 num_blocks, u64 search_start, u64
9 search_end, struct btrfs_key *ins);
10static int finish_current_insert(struct btrfs_trans_handle *trans, struct
11 btrfs_root *extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -040012static int del_pending_extents(struct btrfs_trans_handle *trans, struct
13 btrfs_root *extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -050014
Chris Masonb18c6682007-04-17 13:26:50 -040015int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
16 struct btrfs_root *root,
17 u64 blocknr, u64 num_blocks)
Chris Mason02217ed2007-03-02 16:08:05 -050018{
Chris Mason5caf2a02007-04-02 11:20:42 -040019 struct btrfs_path *path;
Chris Mason02217ed2007-03-02 16:08:05 -050020 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -040021 struct btrfs_key key;
Chris Mason234b63a2007-03-13 10:46:10 -040022 struct btrfs_leaf *l;
23 struct btrfs_extent_item *item;
Chris Masone2fa7222007-03-12 16:22:34 -040024 struct btrfs_key ins;
Chris Masoncf27e1e2007-03-13 09:49:06 -040025 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -050026
Chris Mason9f5fae22007-03-20 14:38:32 -040027 find_free_extent(trans, root->fs_info->extent_root, 0, 0, (u64)-1,
28 &ins);
Chris Mason5caf2a02007-04-02 11:20:42 -040029 path = btrfs_alloc_path();
30 BUG_ON(!path);
31 btrfs_init_path(path);
Chris Mason02217ed2007-03-02 16:08:05 -050032 key.objectid = blocknr;
33 key.flags = 0;
Chris Mason62e27492007-03-15 12:56:47 -040034 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Mason6407bf62007-03-27 06:33:00 -040035 key.offset = num_blocks;
Chris Mason5caf2a02007-04-02 11:20:42 -040036 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -040037 0, 1);
Chris Masona429e512007-04-18 16:15:28 -040038 if (ret != 0) {
39printk("can't find block %Lu %Lu\n", blocknr, num_blocks);
Chris Masona28ec192007-03-06 20:08:01 -050040 BUG();
Chris Masona429e512007-04-18 16:15:28 -040041 }
Chris Mason02217ed2007-03-02 16:08:05 -050042 BUG_ON(ret != 0);
Chris Mason5caf2a02007-04-02 11:20:42 -040043 l = btrfs_buffer_leaf(path->nodes[0]);
44 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Masoncf27e1e2007-03-13 09:49:06 -040045 refs = btrfs_extent_refs(item);
46 btrfs_set_extent_refs(item, refs + 1);
Chris Mason5caf2a02007-04-02 11:20:42 -040047 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masona28ec192007-03-06 20:08:01 -050048
Chris Mason5caf2a02007-04-02 11:20:42 -040049 btrfs_release_path(root->fs_info->extent_root, path);
50 btrfs_free_path(path);
Chris Mason9f5fae22007-03-20 14:38:32 -040051 finish_current_insert(trans, root->fs_info->extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -040052 del_pending_extents(trans, root->fs_info->extent_root);
Chris Mason02217ed2007-03-02 16:08:05 -050053 return 0;
54}
55
Chris Masonb18c6682007-04-17 13:26:50 -040056static int lookup_extent_ref(struct btrfs_trans_handle *trans,
57 struct btrfs_root *root, u64 blocknr,
58 u64 num_blocks, u32 *refs)
Chris Masona28ec192007-03-06 20:08:01 -050059{
Chris Mason5caf2a02007-04-02 11:20:42 -040060 struct btrfs_path *path;
Chris Masona28ec192007-03-06 20:08:01 -050061 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -040062 struct btrfs_key key;
Chris Mason234b63a2007-03-13 10:46:10 -040063 struct btrfs_leaf *l;
64 struct btrfs_extent_item *item;
Chris Mason5caf2a02007-04-02 11:20:42 -040065
66 path = btrfs_alloc_path();
67 btrfs_init_path(path);
Chris Masona28ec192007-03-06 20:08:01 -050068 key.objectid = blocknr;
Chris Mason6407bf62007-03-27 06:33:00 -040069 key.offset = num_blocks;
Chris Mason62e27492007-03-15 12:56:47 -040070 key.flags = 0;
71 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Mason5caf2a02007-04-02 11:20:42 -040072 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key, path,
Chris Mason9f5fae22007-03-20 14:38:32 -040073 0, 0);
Chris Masona28ec192007-03-06 20:08:01 -050074 if (ret != 0)
75 BUG();
Chris Mason5caf2a02007-04-02 11:20:42 -040076 l = btrfs_buffer_leaf(path->nodes[0]);
77 item = btrfs_item_ptr(l, path->slots[0], struct btrfs_extent_item);
Chris Masoncf27e1e2007-03-13 09:49:06 -040078 *refs = btrfs_extent_refs(item);
Chris Mason5caf2a02007-04-02 11:20:42 -040079 btrfs_release_path(root->fs_info->extent_root, path);
80 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -050081 return 0;
82}
83
Chris Masonc5739bb2007-04-10 09:27:04 -040084int btrfs_inc_root_ref(struct btrfs_trans_handle *trans,
85 struct btrfs_root *root)
86{
Chris Masonb18c6682007-04-17 13:26:50 -040087 return btrfs_inc_extent_ref(trans, root, bh_blocknr(root->node), 1);
Chris Masonc5739bb2007-04-10 09:27:04 -040088}
89
Chris Masone089f052007-03-16 16:20:31 -040090int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Chris Masone20d96d2007-03-22 12:13:20 -040091 struct buffer_head *buf)
Chris Mason02217ed2007-03-02 16:08:05 -050092{
93 u64 blocknr;
Chris Masone20d96d2007-03-22 12:13:20 -040094 struct btrfs_node *buf_node;
Chris Mason6407bf62007-03-27 06:33:00 -040095 struct btrfs_leaf *buf_leaf;
96 struct btrfs_disk_key *key;
97 struct btrfs_file_extent_item *fi;
Chris Mason02217ed2007-03-02 16:08:05 -050098 int i;
Chris Mason6407bf62007-03-27 06:33:00 -040099 int leaf;
100 int ret;
Chris Masona28ec192007-03-06 20:08:01 -0500101
Chris Mason3768f362007-03-13 16:47:54 -0400102 if (!root->ref_cows)
Chris Masona28ec192007-03-06 20:08:01 -0500103 return 0;
Chris Masone20d96d2007-03-22 12:13:20 -0400104 buf_node = btrfs_buffer_node(buf);
Chris Mason6407bf62007-03-27 06:33:00 -0400105 leaf = btrfs_is_leaf(buf_node);
106 buf_leaf = btrfs_buffer_leaf(buf);
Chris Masone20d96d2007-03-22 12:13:20 -0400107 for (i = 0; i < btrfs_header_nritems(&buf_node->header); i++) {
Chris Mason6407bf62007-03-27 06:33:00 -0400108 if (leaf) {
109 key = &buf_leaf->items[i].key;
110 if (btrfs_disk_key_type(key) != BTRFS_EXTENT_DATA_KEY)
111 continue;
112 fi = btrfs_item_ptr(buf_leaf, i,
113 struct btrfs_file_extent_item);
Chris Mason236454d2007-04-19 13:37:44 -0400114 if (btrfs_file_extent_type(fi) ==
115 BTRFS_FILE_EXTENT_INLINE)
116 continue;
Chris Masonb18c6682007-04-17 13:26:50 -0400117 ret = btrfs_inc_extent_ref(trans, root,
Chris Mason6407bf62007-03-27 06:33:00 -0400118 btrfs_file_extent_disk_blocknr(fi),
119 btrfs_file_extent_disk_num_blocks(fi));
120 BUG_ON(ret);
121 } else {
122 blocknr = btrfs_node_blockptr(buf_node, i);
Chris Masonb18c6682007-04-17 13:26:50 -0400123 ret = btrfs_inc_extent_ref(trans, root, blocknr, 1);
Chris Mason6407bf62007-03-27 06:33:00 -0400124 BUG_ON(ret);
125 }
Chris Mason02217ed2007-03-02 16:08:05 -0500126 }
127 return 0;
128}
129
Chris Masone089f052007-03-16 16:20:31 -0400130int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans, struct
131 btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -0500132{
Chris Mason8ef97622007-03-26 10:15:30 -0400133 unsigned long gang[8];
Chris Mason88fd1462007-03-16 08:56:18 -0400134 u64 first = 0;
Chris Masona28ec192007-03-06 20:08:01 -0500135 int ret;
136 int i;
Chris Mason8ef97622007-03-26 10:15:30 -0400137 struct radix_tree_root *pinned_radix = &root->fs_info->pinned_radix;
Chris Masona28ec192007-03-06 20:08:01 -0500138
139 while(1) {
Chris Mason8ef97622007-03-26 10:15:30 -0400140 ret = find_first_radix_bit(pinned_radix, gang,
141 ARRAY_SIZE(gang));
Chris Masona28ec192007-03-06 20:08:01 -0500142 if (!ret)
143 break;
Chris Mason88fd1462007-03-16 08:56:18 -0400144 if (!first)
Chris Mason8ef97622007-03-26 10:15:30 -0400145 first = gang[0];
Chris Mason0579da42007-03-07 16:15:30 -0500146 for (i = 0; i < ret; i++) {
Chris Mason8ef97622007-03-26 10:15:30 -0400147 clear_radix_bit(pinned_radix, gang[i]);
Chris Mason0579da42007-03-07 16:15:30 -0500148 }
Chris Masona28ec192007-03-06 20:08:01 -0500149 }
Chris Masond5719762007-03-23 10:01:08 -0400150 if (root->fs_info->last_insert.objectid > first)
151 root->fs_info->last_insert.objectid = first;
Chris Mason9f5fae22007-03-20 14:38:32 -0400152 root->fs_info->last_insert.offset = 0;
Chris Masona28ec192007-03-06 20:08:01 -0500153 return 0;
154}
155
Chris Masone089f052007-03-16 16:20:31 -0400156static int finish_current_insert(struct btrfs_trans_handle *trans, struct
157 btrfs_root *extent_root)
Chris Mason037e6392007-03-07 11:50:24 -0500158{
Chris Masone2fa7222007-03-12 16:22:34 -0400159 struct btrfs_key ins;
Chris Mason234b63a2007-03-13 10:46:10 -0400160 struct btrfs_extent_item extent_item;
Chris Mason037e6392007-03-07 11:50:24 -0500161 int i;
162 int ret;
Chris Mason1261ec42007-03-20 20:35:03 -0400163 u64 super_blocks_used;
164 struct btrfs_fs_info *info = extent_root->fs_info;
Chris Mason037e6392007-03-07 11:50:24 -0500165
Chris Masoncf27e1e2007-03-13 09:49:06 -0400166 btrfs_set_extent_refs(&extent_item, 1);
Chris Mason037e6392007-03-07 11:50:24 -0500167 ins.offset = 1;
168 ins.flags = 0;
Chris Mason62e27492007-03-15 12:56:47 -0400169 btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
Chris Mason5d0c3e62007-04-23 17:01:05 -0400170 btrfs_set_extent_type(&extent_item, BTRFS_EXTENT_TREE);
171 btrfs_set_extent_owner(&extent_item, extent_root->root_key.objectid);
Chris Mason037e6392007-03-07 11:50:24 -0500172
Chris Mason9f5fae22007-03-20 14:38:32 -0400173 for (i = 0; i < extent_root->fs_info->current_insert.flags; i++) {
174 ins.objectid = extent_root->fs_info->current_insert.objectid +
175 i;
Chris Mason1261ec42007-03-20 20:35:03 -0400176 super_blocks_used = btrfs_super_blocks_used(info->disk_super);
177 btrfs_set_super_blocks_used(info->disk_super,
178 super_blocks_used + 1);
Chris Masone089f052007-03-16 16:20:31 -0400179 ret = btrfs_insert_item(trans, extent_root, &ins, &extent_item,
180 sizeof(extent_item));
Chris Mason037e6392007-03-07 11:50:24 -0500181 BUG_ON(ret);
182 }
Chris Mason9f5fae22007-03-20 14:38:32 -0400183 extent_root->fs_info->current_insert.offset = 0;
Chris Mason037e6392007-03-07 11:50:24 -0500184 return 0;
185}
186
Chris Mason8ef97622007-03-26 10:15:30 -0400187static int pin_down_block(struct btrfs_root *root, u64 blocknr, int pending)
Chris Masone20d96d2007-03-22 12:13:20 -0400188{
189 int err;
Chris Mason78fae272007-03-25 11:35:08 -0400190 struct btrfs_header *header;
Chris Mason8ef97622007-03-26 10:15:30 -0400191 struct buffer_head *bh;
Chris Mason78fae272007-03-25 11:35:08 -0400192
Chris Masonf4b9aa82007-03-27 11:05:53 -0400193 if (!pending) {
Chris Masond98237b2007-03-28 13:57:48 -0400194 bh = btrfs_find_tree_block(root, blocknr);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400195 if (bh) {
196 if (buffer_uptodate(bh)) {
197 u64 transid =
198 root->fs_info->running_transaction->transid;
199 header = btrfs_buffer_header(bh);
200 if (btrfs_header_generation(header) ==
201 transid) {
202 btrfs_block_release(root, bh);
203 return 0;
204 }
Chris Masonf4b9aa82007-03-27 11:05:53 -0400205 }
Chris Masond6025572007-03-30 14:27:56 -0400206 btrfs_block_release(root, bh);
Chris Mason8ef97622007-03-26 10:15:30 -0400207 }
Chris Mason8ef97622007-03-26 10:15:30 -0400208 err = set_radix_bit(&root->fs_info->pinned_radix, blocknr);
Chris Masonf4b9aa82007-03-27 11:05:53 -0400209 } else {
210 err = set_radix_bit(&root->fs_info->pending_del_radix, blocknr);
211 }
Chris Mason8ef97622007-03-26 10:15:30 -0400212 BUG_ON(err);
Chris Masone20d96d2007-03-22 12:13:20 -0400213 return 0;
214}
215
Chris Masona28ec192007-03-06 20:08:01 -0500216/*
217 * remove an extent from the root, returns 0 on success
218 */
Chris Masone089f052007-03-16 16:20:31 -0400219static int __free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason78fae272007-03-25 11:35:08 -0400220 *root, u64 blocknr, u64 num_blocks, int pin)
Chris Masona28ec192007-03-06 20:08:01 -0500221{
Chris Mason5caf2a02007-04-02 11:20:42 -0400222 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -0400223 struct btrfs_key key;
Chris Mason1261ec42007-03-20 20:35:03 -0400224 struct btrfs_fs_info *info = root->fs_info;
225 struct btrfs_root *extent_root = info->extent_root;
Chris Masona28ec192007-03-06 20:08:01 -0500226 int ret;
Chris Mason234b63a2007-03-13 10:46:10 -0400227 struct btrfs_extent_item *ei;
Chris Masone2fa7222007-03-12 16:22:34 -0400228 struct btrfs_key ins;
Chris Masoncf27e1e2007-03-13 09:49:06 -0400229 u32 refs;
Chris Mason037e6392007-03-07 11:50:24 -0500230
Chris Masona28ec192007-03-06 20:08:01 -0500231 key.objectid = blocknr;
232 key.flags = 0;
Chris Mason62e27492007-03-15 12:56:47 -0400233 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
Chris Masona28ec192007-03-06 20:08:01 -0500234 key.offset = num_blocks;
235
Chris Masone089f052007-03-16 16:20:31 -0400236 find_free_extent(trans, root, 0, 0, (u64)-1, &ins);
Chris Mason5caf2a02007-04-02 11:20:42 -0400237 path = btrfs_alloc_path();
238 BUG_ON(!path);
239 btrfs_init_path(path);
Chris Mason5f26f772007-04-05 10:38:44 -0400240
Chris Mason5caf2a02007-04-02 11:20:42 -0400241 ret = btrfs_search_slot(trans, extent_root, &key, path, -1, 1);
Chris Masona28ec192007-03-06 20:08:01 -0500242 if (ret) {
Chris Mason2e635a22007-03-21 11:12:56 -0400243 printk("failed to find %Lu\n", key.objectid);
Chris Mason234b63a2007-03-13 10:46:10 -0400244 btrfs_print_tree(extent_root, extent_root->node);
Chris Mason2e635a22007-03-21 11:12:56 -0400245 printk("failed to find %Lu\n", key.objectid);
Chris Masona28ec192007-03-06 20:08:01 -0500246 BUG();
247 }
Chris Mason5caf2a02007-04-02 11:20:42 -0400248 ei = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]), path->slots[0],
Chris Mason123abc82007-03-14 14:14:43 -0400249 struct btrfs_extent_item);
Chris Masona28ec192007-03-06 20:08:01 -0500250 BUG_ON(ei->refs == 0);
Chris Masoncf27e1e2007-03-13 09:49:06 -0400251 refs = btrfs_extent_refs(ei) - 1;
252 btrfs_set_extent_refs(ei, refs);
Chris Mason5caf2a02007-04-02 11:20:42 -0400253 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masoncf27e1e2007-03-13 09:49:06 -0400254 if (refs == 0) {
Chris Mason1261ec42007-03-20 20:35:03 -0400255 u64 super_blocks_used;
Chris Mason78fae272007-03-25 11:35:08 -0400256
257 if (pin) {
Chris Mason8ef97622007-03-26 10:15:30 -0400258 ret = pin_down_block(root, blocknr, 0);
Chris Mason78fae272007-03-25 11:35:08 -0400259 BUG_ON(ret);
260 }
261
Chris Mason1261ec42007-03-20 20:35:03 -0400262 super_blocks_used = btrfs_super_blocks_used(info->disk_super);
263 btrfs_set_super_blocks_used(info->disk_super,
264 super_blocks_used - num_blocks);
Chris Mason5caf2a02007-04-02 11:20:42 -0400265 ret = btrfs_del_item(trans, extent_root, path);
Chris Masona28ec192007-03-06 20:08:01 -0500266 if (ret)
267 BUG();
268 }
Chris Mason5caf2a02007-04-02 11:20:42 -0400269 btrfs_release_path(extent_root, path);
270 btrfs_free_path(path);
Chris Masone089f052007-03-16 16:20:31 -0400271 finish_current_insert(trans, extent_root);
Chris Masona28ec192007-03-06 20:08:01 -0500272 return ret;
273}
274
275/*
Chris Masonfec577f2007-02-26 10:40:21 -0500276 * find all the blocks marked as pending in the radix tree and remove
277 * them from the extent map
278 */
Chris Masone089f052007-03-16 16:20:31 -0400279static int del_pending_extents(struct btrfs_trans_handle *trans, struct
280 btrfs_root *extent_root)
Chris Masonfec577f2007-02-26 10:40:21 -0500281{
282 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -0400283 int wret;
284 int err = 0;
Chris Mason8ef97622007-03-26 10:15:30 -0400285 unsigned long gang[4];
Chris Masonfec577f2007-02-26 10:40:21 -0500286 int i;
Chris Mason8ef97622007-03-26 10:15:30 -0400287 struct radix_tree_root *pending_radix;
288 struct radix_tree_root *pinned_radix;
289
290 pending_radix = &extent_root->fs_info->pending_del_radix;
291 pinned_radix = &extent_root->fs_info->pinned_radix;
Chris Masonfec577f2007-02-26 10:40:21 -0500292
293 while(1) {
Chris Mason8ef97622007-03-26 10:15:30 -0400294 ret = find_first_radix_bit(pending_radix, gang,
295 ARRAY_SIZE(gang));
Chris Masonfec577f2007-02-26 10:40:21 -0500296 if (!ret)
297 break;
298 for (i = 0; i < ret; i++) {
Chris Mason8ef97622007-03-26 10:15:30 -0400299 wret = set_radix_bit(pinned_radix, gang[i]);
300 BUG_ON(wret);
301 wret = clear_radix_bit(pending_radix, gang[i]);
302 BUG_ON(wret);
Chris Masond5719762007-03-23 10:01:08 -0400303 wret = __free_extent(trans, extent_root,
Chris Mason8ef97622007-03-26 10:15:30 -0400304 gang[i], 1, 0);
Chris Masone20d96d2007-03-22 12:13:20 -0400305 if (wret)
306 err = wret;
Chris Masonfec577f2007-02-26 10:40:21 -0500307 }
308 }
Chris Masone20d96d2007-03-22 12:13:20 -0400309 return err;
Chris Masonfec577f2007-02-26 10:40:21 -0500310}
311
312/*
313 * remove an extent from the root, returns 0 on success
314 */
Chris Masone089f052007-03-16 16:20:31 -0400315int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
316 *root, u64 blocknr, u64 num_blocks, int pin)
Chris Masonfec577f2007-02-26 10:40:21 -0500317{
Chris Mason9f5fae22007-03-20 14:38:32 -0400318 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Masonfec577f2007-02-26 10:40:21 -0500319 int pending_ret;
320 int ret;
Chris Masona28ec192007-03-06 20:08:01 -0500321
322 if (root == extent_root) {
Chris Mason8ef97622007-03-26 10:15:30 -0400323 pin_down_block(root, blocknr, 1);
Chris Masona28ec192007-03-06 20:08:01 -0500324 return 0;
325 }
Chris Mason78fae272007-03-25 11:35:08 -0400326 ret = __free_extent(trans, root, blocknr, num_blocks, pin);
Chris Masone20d96d2007-03-22 12:13:20 -0400327 pending_ret = del_pending_extents(trans, root->fs_info->extent_root);
Chris Masonfec577f2007-02-26 10:40:21 -0500328 return ret ? ret : pending_ret;
329}
330
331/*
332 * walks the btree of allocated extents and find a hole of a given size.
333 * The key ins is changed to record the hole:
334 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -0400335 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -0500336 * ins->offset == number of blocks
337 * Any available blocks before search_start are skipped.
338 */
Chris Masone089f052007-03-16 16:20:31 -0400339static int find_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
340 *orig_root, u64 num_blocks, u64 search_start, u64
341 search_end, struct btrfs_key *ins)
Chris Masonfec577f2007-02-26 10:40:21 -0500342{
Chris Mason5caf2a02007-04-02 11:20:42 -0400343 struct btrfs_path *path;
Chris Masone2fa7222007-03-12 16:22:34 -0400344 struct btrfs_key key;
Chris Masonfec577f2007-02-26 10:40:21 -0500345 int ret;
346 u64 hole_size = 0;
347 int slot = 0;
Chris Masone20d96d2007-03-22 12:13:20 -0400348 u64 last_block = 0;
Chris Mason037e6392007-03-07 11:50:24 -0500349 u64 test_block;
Chris Masonfec577f2007-02-26 10:40:21 -0500350 int start_found;
Chris Mason234b63a2007-03-13 10:46:10 -0400351 struct btrfs_leaf *l;
Chris Mason9f5fae22007-03-20 14:38:32 -0400352 struct btrfs_root * root = orig_root->fs_info->extent_root;
Chris Mason0579da42007-03-07 16:15:30 -0500353 int total_needed = num_blocks;
Chris Masone20d96d2007-03-22 12:13:20 -0400354 int level;
Chris Masonfec577f2007-02-26 10:40:21 -0500355
Chris Masonb1a4d962007-04-04 15:27:52 -0400356 path = btrfs_alloc_path();
357 ins->flags = 0;
358 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
359
Chris Masone20d96d2007-03-22 12:13:20 -0400360 level = btrfs_header_level(btrfs_buffer_header(root->node));
Chris Mason5d0c3e62007-04-23 17:01:05 -0400361 total_needed += (level + 2) * 3;
Chris Masonb1a4d962007-04-04 15:27:52 -0400362 if (root->fs_info->last_insert.objectid == 0 && search_end == (u64)-1) {
363 struct btrfs_disk_key *last_key;
364 btrfs_init_path(path);
365 ins->objectid = (u64)-1;
366 ins->offset = (u64)-1;
367 ret = btrfs_search_slot(trans, root, ins, path, 0, 0);
368 if (ret < 0)
369 goto error;
370 BUG_ON(ret == 0);
371 if (path->slots[0] > 0)
372 path->slots[0]--;
373 l = btrfs_buffer_leaf(path->nodes[0]);
374 last_key = &l->items[path->slots[0]].key;
375 search_start = btrfs_disk_key_objectid(last_key);
376 }
Chris Mason9f5fae22007-03-20 14:38:32 -0400377 if (root->fs_info->last_insert.objectid > search_start)
378 search_start = root->fs_info->last_insert.objectid;
Chris Mason62e27492007-03-15 12:56:47 -0400379
Chris Masonfec577f2007-02-26 10:40:21 -0500380check_failed:
Chris Mason5caf2a02007-04-02 11:20:42 -0400381 btrfs_init_path(path);
Chris Masonfec577f2007-02-26 10:40:21 -0500382 ins->objectid = search_start;
383 ins->offset = 0;
Chris Masonfec577f2007-02-26 10:40:21 -0500384 start_found = 0;
Chris Mason5caf2a02007-04-02 11:20:42 -0400385 ret = btrfs_search_slot(trans, root, ins, path, 0, 0);
Chris Mason0f70abe2007-02-28 16:46:22 -0500386 if (ret < 0)
387 goto error;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500388
Chris Mason5caf2a02007-04-02 11:20:42 -0400389 if (path->slots[0] > 0)
390 path->slots[0]--;
Chris Mason0579da42007-03-07 16:15:30 -0500391
Chris Masonfec577f2007-02-26 10:40:21 -0500392 while (1) {
Chris Mason5caf2a02007-04-02 11:20:42 -0400393 l = btrfs_buffer_leaf(path->nodes[0]);
394 slot = path->slots[0];
Chris Mason7518a232007-03-12 12:01:18 -0400395 if (slot >= btrfs_header_nritems(&l->header)) {
Chris Mason5caf2a02007-04-02 11:20:42 -0400396 ret = btrfs_next_leaf(root, path);
Chris Masonfec577f2007-02-26 10:40:21 -0500397 if (ret == 0)
398 continue;
Chris Mason0f70abe2007-02-28 16:46:22 -0500399 if (ret < 0)
400 goto error;
Chris Masonfec577f2007-02-26 10:40:21 -0500401 if (!start_found) {
402 ins->objectid = search_start;
Chris Mason037e6392007-03-07 11:50:24 -0500403 ins->offset = (u64)-1;
Chris Masonfec577f2007-02-26 10:40:21 -0500404 start_found = 1;
405 goto check_pending;
406 }
407 ins->objectid = last_block > search_start ?
408 last_block : search_start;
Chris Mason037e6392007-03-07 11:50:24 -0500409 ins->offset = (u64)-1;
Chris Masonfec577f2007-02-26 10:40:21 -0500410 goto check_pending;
411 }
Chris Masone2fa7222007-03-12 16:22:34 -0400412 btrfs_disk_key_to_cpu(&key, &l->items[slot].key);
413 if (key.objectid >= search_start) {
Chris Masonfec577f2007-02-26 10:40:21 -0500414 if (start_found) {
Chris Mason0579da42007-03-07 16:15:30 -0500415 if (last_block < search_start)
416 last_block = search_start;
Chris Masone2fa7222007-03-12 16:22:34 -0400417 hole_size = key.objectid - last_block;
Chris Mason037e6392007-03-07 11:50:24 -0500418 if (hole_size > total_needed) {
Chris Masonfec577f2007-02-26 10:40:21 -0500419 ins->objectid = last_block;
Chris Mason037e6392007-03-07 11:50:24 -0500420 ins->offset = hole_size;
Chris Masonfec577f2007-02-26 10:40:21 -0500421 goto check_pending;
422 }
Chris Mason0579da42007-03-07 16:15:30 -0500423 }
Chris Masonfec577f2007-02-26 10:40:21 -0500424 }
Chris Mason0579da42007-03-07 16:15:30 -0500425 start_found = 1;
Chris Masone2fa7222007-03-12 16:22:34 -0400426 last_block = key.objectid + key.offset;
Chris Mason5caf2a02007-04-02 11:20:42 -0400427 path->slots[0]++;
Chris Masonfec577f2007-02-26 10:40:21 -0500428 }
429 // FIXME -ENOSPC
430check_pending:
431 /* we have to make sure we didn't find an extent that has already
432 * been allocated by the map tree or the original allocation
433 */
Chris Mason5caf2a02007-04-02 11:20:42 -0400434 btrfs_release_path(root, path);
Chris Masonfec577f2007-02-26 10:40:21 -0500435 BUG_ON(ins->objectid < search_start);
Chris Mason037e6392007-03-07 11:50:24 -0500436 for (test_block = ins->objectid;
437 test_block < ins->objectid + total_needed; test_block++) {
Chris Mason8ef97622007-03-26 10:15:30 -0400438 if (test_radix_bit(&root->fs_info->pinned_radix,
Chris Mason9f5fae22007-03-20 14:38:32 -0400439 test_block)) {
Chris Mason037e6392007-03-07 11:50:24 -0500440 search_start = test_block + 1;
Chris Masonfec577f2007-02-26 10:40:21 -0500441 goto check_failed;
442 }
443 }
Chris Mason9f5fae22007-03-20 14:38:32 -0400444 BUG_ON(root->fs_info->current_insert.offset);
445 root->fs_info->current_insert.offset = total_needed - num_blocks;
446 root->fs_info->current_insert.objectid = ins->objectid + num_blocks;
447 root->fs_info->current_insert.flags = 0;
448 root->fs_info->last_insert.objectid = ins->objectid;
Chris Mason037e6392007-03-07 11:50:24 -0500449 ins->offset = num_blocks;
Chris Mason5caf2a02007-04-02 11:20:42 -0400450 btrfs_free_path(path);
Chris Masonfec577f2007-02-26 10:40:21 -0500451 return 0;
Chris Mason0f70abe2007-02-28 16:46:22 -0500452error:
Chris Mason5caf2a02007-04-02 11:20:42 -0400453 btrfs_release_path(root, path);
454 btrfs_free_path(path);
Chris Mason0f70abe2007-02-28 16:46:22 -0500455 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -0500456}
457
458/*
Chris Masonfec577f2007-02-26 10:40:21 -0500459 * finds a free extent and does all the dirty work required for allocation
460 * returns the key for the extent through ins, and a tree buffer for
461 * the first block of the extent through buf.
462 *
463 * returns 0 if everything worked, non-zero otherwise.
464 */
Chris Mason4d775672007-04-20 20:23:12 -0400465int btrfs_alloc_extent(struct btrfs_trans_handle *trans,
466 struct btrfs_root *root, u64 owner,
467 u8 type, u64 num_blocks, u64 search_start,
468 u64 search_end, struct btrfs_key *ins)
Chris Masonfec577f2007-02-26 10:40:21 -0500469{
470 int ret;
471 int pending_ret;
Chris Mason1261ec42007-03-20 20:35:03 -0400472 u64 super_blocks_used;
473 struct btrfs_fs_info *info = root->fs_info;
474 struct btrfs_root *extent_root = info->extent_root;
Chris Mason234b63a2007-03-13 10:46:10 -0400475 struct btrfs_extent_item extent_item;
Chris Mason037e6392007-03-07 11:50:24 -0500476
Chris Masoncf27e1e2007-03-13 09:49:06 -0400477 btrfs_set_extent_refs(&extent_item, 1);
Chris Mason4d775672007-04-20 20:23:12 -0400478 btrfs_set_extent_owner(&extent_item, owner);
479 btrfs_set_extent_type(&extent_item, type);
Chris Masonfec577f2007-02-26 10:40:21 -0500480
Chris Mason037e6392007-03-07 11:50:24 -0500481 if (root == extent_root) {
Chris Mason9f5fae22007-03-20 14:38:32 -0400482 BUG_ON(extent_root->fs_info->current_insert.offset == 0);
Chris Mason037e6392007-03-07 11:50:24 -0500483 BUG_ON(num_blocks != 1);
Chris Mason9f5fae22007-03-20 14:38:32 -0400484 BUG_ON(extent_root->fs_info->current_insert.flags ==
485 extent_root->fs_info->current_insert.offset);
Chris Mason037e6392007-03-07 11:50:24 -0500486 ins->offset = 1;
Chris Mason9f5fae22007-03-20 14:38:32 -0400487 ins->objectid = extent_root->fs_info->current_insert.objectid +
488 extent_root->fs_info->current_insert.flags++;
Chris Masonfec577f2007-02-26 10:40:21 -0500489 return 0;
490 }
Chris Masone089f052007-03-16 16:20:31 -0400491 ret = find_free_extent(trans, root, num_blocks, search_start,
Chris Mason037e6392007-03-07 11:50:24 -0500492 search_end, ins);
493 if (ret)
494 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -0500495
Chris Mason1261ec42007-03-20 20:35:03 -0400496 super_blocks_used = btrfs_super_blocks_used(info->disk_super);
497 btrfs_set_super_blocks_used(info->disk_super, super_blocks_used +
498 num_blocks);
Chris Masone089f052007-03-16 16:20:31 -0400499 ret = btrfs_insert_item(trans, extent_root, ins, &extent_item,
500 sizeof(extent_item));
Chris Mason037e6392007-03-07 11:50:24 -0500501
Chris Masone089f052007-03-16 16:20:31 -0400502 finish_current_insert(trans, extent_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400503 pending_ret = del_pending_extents(trans, extent_root);
Chris Mason037e6392007-03-07 11:50:24 -0500504 if (ret)
505 return ret;
506 if (pending_ret)
507 return pending_ret;
508 return 0;
Chris Masonfec577f2007-02-26 10:40:21 -0500509}
510
511/*
512 * helper function to allocate a block for a given tree
513 * returns the tree buffer or NULL.
514 */
Chris Masone20d96d2007-03-22 12:13:20 -0400515struct buffer_head *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Chris Mason4d775672007-04-20 20:23:12 -0400516 struct btrfs_root *root)
Chris Masonfec577f2007-02-26 10:40:21 -0500517{
Chris Masone2fa7222007-03-12 16:22:34 -0400518 struct btrfs_key ins;
Chris Masonfec577f2007-02-26 10:40:21 -0500519 int ret;
Chris Masone20d96d2007-03-22 12:13:20 -0400520 struct buffer_head *buf;
Chris Masonfec577f2007-02-26 10:40:21 -0500521
Chris Mason4d775672007-04-20 20:23:12 -0400522 ret = btrfs_alloc_extent(trans, root, root->root_key.objectid,
523 BTRFS_EXTENT_TREE,
524 1, 0, (unsigned long)-1, &ins);
Chris Masonfec577f2007-02-26 10:40:21 -0500525 if (ret) {
526 BUG();
527 return NULL;
528 }
Chris Masond98237b2007-03-28 13:57:48 -0400529 buf = btrfs_find_create_tree_block(root, ins.objectid);
Chris Masondf2ce342007-03-23 11:00:45 -0400530 set_buffer_uptodate(buf);
Chris Masonfec577f2007-02-26 10:40:21 -0500531 return buf;
532}
Chris Masona28ec192007-03-06 20:08:01 -0500533
Chris Mason6407bf62007-03-27 06:33:00 -0400534static int drop_leaf_ref(struct btrfs_trans_handle *trans,
535 struct btrfs_root *root, struct buffer_head *cur)
536{
537 struct btrfs_disk_key *key;
538 struct btrfs_leaf *leaf;
539 struct btrfs_file_extent_item *fi;
540 int i;
541 int nritems;
542 int ret;
543
544 BUG_ON(!btrfs_is_leaf(btrfs_buffer_node(cur)));
545 leaf = btrfs_buffer_leaf(cur);
546 nritems = btrfs_header_nritems(&leaf->header);
547 for (i = 0; i < nritems; i++) {
548 key = &leaf->items[i].key;
549 if (btrfs_disk_key_type(key) != BTRFS_EXTENT_DATA_KEY)
550 continue;
551 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
Chris Mason236454d2007-04-19 13:37:44 -0400552 if (btrfs_file_extent_type(fi) == BTRFS_FILE_EXTENT_INLINE)
553 continue;
Chris Mason6407bf62007-03-27 06:33:00 -0400554 /*
555 * FIXME make sure to insert a trans record that
556 * repeats the snapshot del on crash
557 */
558 ret = btrfs_free_extent(trans, root,
559 btrfs_file_extent_disk_blocknr(fi),
560 btrfs_file_extent_disk_num_blocks(fi),
561 0);
562 BUG_ON(ret);
563 }
564 return 0;
565}
566
Chris Mason9aca1d52007-03-13 11:09:37 -0400567/*
568 * helper function for drop_snapshot, this walks down the tree dropping ref
569 * counts as it goes.
570 */
Chris Masone089f052007-03-16 16:20:31 -0400571static int walk_down_tree(struct btrfs_trans_handle *trans, struct btrfs_root
572 *root, struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -0500573{
Chris Masone20d96d2007-03-22 12:13:20 -0400574 struct buffer_head *next;
575 struct buffer_head *cur;
Chris Mason20524f02007-03-10 06:35:47 -0500576 u64 blocknr;
577 int ret;
578 u32 refs;
579
Chris Mason5caf2a02007-04-02 11:20:42 -0400580 WARN_ON(*level < 0);
581 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Masonb18c6682007-04-17 13:26:50 -0400582 ret = lookup_extent_ref(trans, root, bh_blocknr(path->nodes[*level]),
Chris Mason6407bf62007-03-27 06:33:00 -0400583 1, &refs);
Chris Mason20524f02007-03-10 06:35:47 -0500584 BUG_ON(ret);
585 if (refs > 1)
586 goto out;
Chris Mason9aca1d52007-03-13 11:09:37 -0400587 /*
588 * walk down to the last node level and free all the leaves
589 */
Chris Mason6407bf62007-03-27 06:33:00 -0400590 while(*level >= 0) {
Chris Mason5caf2a02007-04-02 11:20:42 -0400591 WARN_ON(*level < 0);
592 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason20524f02007-03-10 06:35:47 -0500593 cur = path->nodes[*level];
Chris Mason2c90e5d2007-04-02 10:50:19 -0400594 if (btrfs_header_level(btrfs_buffer_header(cur)) != *level)
595 WARN_ON(1);
Chris Mason7518a232007-03-12 12:01:18 -0400596 if (path->slots[*level] >=
Chris Masone20d96d2007-03-22 12:13:20 -0400597 btrfs_header_nritems(btrfs_buffer_header(cur)))
Chris Mason20524f02007-03-10 06:35:47 -0500598 break;
Chris Mason6407bf62007-03-27 06:33:00 -0400599 if (*level == 0) {
600 ret = drop_leaf_ref(trans, root, cur);
601 BUG_ON(ret);
602 break;
603 }
Chris Masone20d96d2007-03-22 12:13:20 -0400604 blocknr = btrfs_node_blockptr(btrfs_buffer_node(cur),
605 path->slots[*level]);
Chris Masonb18c6682007-04-17 13:26:50 -0400606 ret = lookup_extent_ref(trans, root, blocknr, 1, &refs);
Chris Mason6407bf62007-03-27 06:33:00 -0400607 BUG_ON(ret);
608 if (refs != 1) {
Chris Mason20524f02007-03-10 06:35:47 -0500609 path->slots[*level]++;
Chris Masone089f052007-03-16 16:20:31 -0400610 ret = btrfs_free_extent(trans, root, blocknr, 1, 1);
Chris Mason20524f02007-03-10 06:35:47 -0500611 BUG_ON(ret);
612 continue;
613 }
Chris Mason20524f02007-03-10 06:35:47 -0500614 next = read_tree_block(root, blocknr);
Chris Mason5caf2a02007-04-02 11:20:42 -0400615 WARN_ON(*level <= 0);
Chris Mason83e15a22007-03-12 09:03:27 -0400616 if (path->nodes[*level-1])
Chris Mason234b63a2007-03-13 10:46:10 -0400617 btrfs_block_release(root, path->nodes[*level-1]);
Chris Mason20524f02007-03-10 06:35:47 -0500618 path->nodes[*level-1] = next;
Chris Masone20d96d2007-03-22 12:13:20 -0400619 *level = btrfs_header_level(btrfs_buffer_header(next));
Chris Mason20524f02007-03-10 06:35:47 -0500620 path->slots[*level] = 0;
621 }
622out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400623 WARN_ON(*level < 0);
624 WARN_ON(*level >= BTRFS_MAX_LEVEL);
Chris Mason6407bf62007-03-27 06:33:00 -0400625 ret = btrfs_free_extent(trans, root,
Chris Mason7eccb902007-04-11 15:53:25 -0400626 bh_blocknr(path->nodes[*level]), 1, 1);
Chris Mason234b63a2007-03-13 10:46:10 -0400627 btrfs_block_release(root, path->nodes[*level]);
Chris Mason20524f02007-03-10 06:35:47 -0500628 path->nodes[*level] = NULL;
629 *level += 1;
630 BUG_ON(ret);
631 return 0;
632}
633
Chris Mason9aca1d52007-03-13 11:09:37 -0400634/*
635 * helper for dropping snapshots. This walks back up the tree in the path
636 * to find the first node higher up where we haven't yet gone through
637 * all the slots
638 */
Chris Masone089f052007-03-16 16:20:31 -0400639static int walk_up_tree(struct btrfs_trans_handle *trans, struct btrfs_root
640 *root, struct btrfs_path *path, int *level)
Chris Mason20524f02007-03-10 06:35:47 -0500641{
642 int i;
643 int slot;
644 int ret;
Chris Mason234b63a2007-03-13 10:46:10 -0400645 for(i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Mason20524f02007-03-10 06:35:47 -0500646 slot = path->slots[i];
Chris Masone20d96d2007-03-22 12:13:20 -0400647 if (slot < btrfs_header_nritems(
648 btrfs_buffer_header(path->nodes[i])) - 1) {
Chris Mason20524f02007-03-10 06:35:47 -0500649 path->slots[i]++;
650 *level = i;
651 return 0;
652 } else {
Chris Masone089f052007-03-16 16:20:31 -0400653 ret = btrfs_free_extent(trans, root,
Chris Mason7eccb902007-04-11 15:53:25 -0400654 bh_blocknr(path->nodes[*level]),
Chris Masone089f052007-03-16 16:20:31 -0400655 1, 1);
Chris Mason6407bf62007-03-27 06:33:00 -0400656 BUG_ON(ret);
Chris Mason234b63a2007-03-13 10:46:10 -0400657 btrfs_block_release(root, path->nodes[*level]);
Chris Mason83e15a22007-03-12 09:03:27 -0400658 path->nodes[*level] = NULL;
Chris Mason20524f02007-03-10 06:35:47 -0500659 *level = i + 1;
Chris Mason20524f02007-03-10 06:35:47 -0500660 }
661 }
662 return 1;
663}
664
Chris Mason9aca1d52007-03-13 11:09:37 -0400665/*
666 * drop the reference count on the tree rooted at 'snap'. This traverses
667 * the tree freeing any blocks that have a ref count of zero after being
668 * decremented.
669 */
Chris Masone089f052007-03-16 16:20:31 -0400670int btrfs_drop_snapshot(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masone20d96d2007-03-22 12:13:20 -0400671 *root, struct buffer_head *snap)
Chris Mason20524f02007-03-10 06:35:47 -0500672{
Chris Mason3768f362007-03-13 16:47:54 -0400673 int ret = 0;
Chris Mason9aca1d52007-03-13 11:09:37 -0400674 int wret;
Chris Mason20524f02007-03-10 06:35:47 -0500675 int level;
Chris Mason5caf2a02007-04-02 11:20:42 -0400676 struct btrfs_path *path;
Chris Mason20524f02007-03-10 06:35:47 -0500677 int i;
678 int orig_level;
679
Chris Mason5caf2a02007-04-02 11:20:42 -0400680 path = btrfs_alloc_path();
681 BUG_ON(!path);
682 btrfs_init_path(path);
Chris Mason20524f02007-03-10 06:35:47 -0500683
Chris Masone20d96d2007-03-22 12:13:20 -0400684 level = btrfs_header_level(btrfs_buffer_header(snap));
Chris Mason20524f02007-03-10 06:35:47 -0500685 orig_level = level;
Chris Mason5caf2a02007-04-02 11:20:42 -0400686 path->nodes[level] = snap;
687 path->slots[level] = 0;
Chris Mason20524f02007-03-10 06:35:47 -0500688 while(1) {
Chris Mason5caf2a02007-04-02 11:20:42 -0400689 wret = walk_down_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -0400690 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -0500691 break;
Chris Mason9aca1d52007-03-13 11:09:37 -0400692 if (wret < 0)
693 ret = wret;
694
Chris Mason5caf2a02007-04-02 11:20:42 -0400695 wret = walk_up_tree(trans, root, path, &level);
Chris Mason9aca1d52007-03-13 11:09:37 -0400696 if (wret > 0)
Chris Mason20524f02007-03-10 06:35:47 -0500697 break;
Chris Mason9aca1d52007-03-13 11:09:37 -0400698 if (wret < 0)
699 ret = wret;
Chris Mason20524f02007-03-10 06:35:47 -0500700 }
Chris Mason83e15a22007-03-12 09:03:27 -0400701 for (i = 0; i <= orig_level; i++) {
Chris Mason5caf2a02007-04-02 11:20:42 -0400702 if (path->nodes[i]) {
703 btrfs_block_release(root, path->nodes[i]);
Chris Mason83e15a22007-03-12 09:03:27 -0400704 }
Chris Mason20524f02007-03-10 06:35:47 -0500705 }
Chris Mason5caf2a02007-04-02 11:20:42 -0400706 btrfs_free_path(path);
Chris Mason9aca1d52007-03-13 11:09:37 -0400707 return ret;
Chris Mason20524f02007-03-10 06:35:47 -0500708}