blob: b7f3fcb72c620afc845f52c0ae02a4a91b5ff952 [file] [log] [blame]
Chris Mason2e635a22007-03-21 11:12:56 -04001#include <linux/module.h>
Chris Masoneb60cea2007-02-02 09:18:22 -05002#include "ctree.h"
3#include "disk-io.h"
Chris Mason7f5c1512007-03-23 15:56:19 -04004#include "transaction.h"
Chris Mason9a8dd152007-02-23 08:38:36 -05005
Chris Masone089f052007-03-16 16:20:31 -04006static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
7 *root, struct btrfs_path *path, int level);
8static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root
9 *root, struct btrfs_path *path, int data_size);
10static int push_node_left(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masone20d96d2007-03-22 12:13:20 -040011 *root, struct buffer_head *dst, struct buffer_head
Chris Masone089f052007-03-16 16:20:31 -040012 *src);
13static int balance_node_right(struct btrfs_trans_handle *trans, struct
Chris Masone20d96d2007-03-22 12:13:20 -040014 btrfs_root *root, struct buffer_head *dst_buf,
15 struct buffer_head *src_buf);
Chris Masone089f052007-03-16 16:20:31 -040016static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
17 struct btrfs_path *path, int level, int slot);
Chris Masond97e63b2007-02-20 16:40:44 -050018
Chris Mason234b63a2007-03-13 10:46:10 -040019inline void btrfs_init_path(struct btrfs_path *p)
Chris Masonbe0e5c02007-01-26 15:51:26 -050020{
21 memset(p, 0, sizeof(*p));
22}
23
Chris Mason234b63a2007-03-13 10:46:10 -040024void btrfs_release_path(struct btrfs_root *root, struct btrfs_path *p)
Chris Masoneb60cea2007-02-02 09:18:22 -050025{
26 int i;
Chris Mason234b63a2007-03-13 10:46:10 -040027 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Masoneb60cea2007-02-02 09:18:22 -050028 if (!p->nodes[i])
29 break;
Chris Mason234b63a2007-03-13 10:46:10 -040030 btrfs_block_release(root, p->nodes[i]);
Chris Masoneb60cea2007-02-02 09:18:22 -050031 }
Chris Masonaa5d6be2007-02-28 16:35:06 -050032 memset(p, 0, sizeof(*p));
Chris Masoneb60cea2007-02-02 09:18:22 -050033}
34
Chris Masone089f052007-03-16 16:20:31 -040035static int btrfs_cow_block(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masone20d96d2007-03-22 12:13:20 -040036 *root, struct buffer_head *buf, struct buffer_head
37 *parent, int parent_slot, struct buffer_head
Chris Masone089f052007-03-16 16:20:31 -040038 **cow_ret)
Chris Mason02217ed2007-03-02 16:08:05 -050039{
Chris Masone20d96d2007-03-22 12:13:20 -040040 struct buffer_head *cow;
41 struct btrfs_node *cow_node;
Chris Mason02217ed2007-03-02 16:08:05 -050042
Chris Mason7f5c1512007-03-23 15:56:19 -040043 if (btrfs_header_generation(btrfs_buffer_header(buf)) ==
44 trans->transid) {
Chris Mason02217ed2007-03-02 16:08:05 -050045 *cow_ret = buf;
46 return 0;
47 }
Chris Masone089f052007-03-16 16:20:31 -040048 cow = btrfs_alloc_free_block(trans, root);
Chris Masone20d96d2007-03-22 12:13:20 -040049 cow_node = btrfs_buffer_node(cow);
50 memcpy(cow_node, btrfs_buffer_node(buf), root->blocksize);
51 btrfs_set_header_blocknr(&cow_node->header, cow->b_blocknr);
Chris Mason7f5c1512007-03-23 15:56:19 -040052 btrfs_set_header_generation(&cow_node->header, trans->transid);
Chris Mason02217ed2007-03-02 16:08:05 -050053 *cow_ret = cow;
Chris Masond5719762007-03-23 10:01:08 -040054 mark_buffer_dirty(cow);
Chris Masone089f052007-03-16 16:20:31 -040055 btrfs_inc_ref(trans, root, buf);
Chris Mason02217ed2007-03-02 16:08:05 -050056 if (buf == root->node) {
57 root->node = cow;
Chris Masone20d96d2007-03-22 12:13:20 -040058 get_bh(cow);
Chris Masona28ec192007-03-06 20:08:01 -050059 if (buf != root->commit_root)
Chris Masone20d96d2007-03-22 12:13:20 -040060 btrfs_free_extent(trans, root, buf->b_blocknr, 1, 1);
Chris Mason234b63a2007-03-13 10:46:10 -040061 btrfs_block_release(root, buf);
Chris Mason02217ed2007-03-02 16:08:05 -050062 } else {
Chris Masone20d96d2007-03-22 12:13:20 -040063 btrfs_set_node_blockptr(btrfs_buffer_node(parent), parent_slot,
64 cow->b_blocknr);
Chris Masond5719762007-03-23 10:01:08 -040065 mark_buffer_dirty(parent);
Chris Masone20d96d2007-03-22 12:13:20 -040066 btrfs_free_extent(trans, root, buf->b_blocknr, 1, 1);
Chris Mason02217ed2007-03-02 16:08:05 -050067 }
Chris Mason234b63a2007-03-13 10:46:10 -040068 btrfs_block_release(root, buf);
Chris Mason02217ed2007-03-02 16:08:05 -050069 return 0;
70}
71
Chris Mason74123bd2007-02-02 11:05:29 -050072/*
73 * The leaf data grows from end-to-front in the node.
74 * this returns the address of the start of the last item,
75 * which is the stop of the leaf data stack
76 */
Chris Mason123abc82007-03-14 14:14:43 -040077static inline unsigned int leaf_data_end(struct btrfs_root *root,
78 struct btrfs_leaf *leaf)
Chris Masonbe0e5c02007-01-26 15:51:26 -050079{
Chris Mason7518a232007-03-12 12:01:18 -040080 u32 nr = btrfs_header_nritems(&leaf->header);
Chris Masonbe0e5c02007-01-26 15:51:26 -050081 if (nr == 0)
Chris Mason123abc82007-03-14 14:14:43 -040082 return BTRFS_LEAF_DATA_SIZE(root);
Chris Mason0783fcf2007-03-12 20:12:07 -040083 return btrfs_item_offset(leaf->items + nr - 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -050084}
85
Chris Mason74123bd2007-02-02 11:05:29 -050086/*
87 * The space between the end of the leaf items and
88 * the start of the leaf data. IOW, how much room
89 * the leaf has left for both items and data
90 */
Chris Mason123abc82007-03-14 14:14:43 -040091int btrfs_leaf_free_space(struct btrfs_root *root, struct btrfs_leaf *leaf)
Chris Masonbe0e5c02007-01-26 15:51:26 -050092{
Chris Mason123abc82007-03-14 14:14:43 -040093 int data_end = leaf_data_end(root, leaf);
Chris Mason7518a232007-03-12 12:01:18 -040094 int nritems = btrfs_header_nritems(&leaf->header);
Chris Masonbe0e5c02007-01-26 15:51:26 -050095 char *items_end = (char *)(leaf->items + nritems + 1);
Chris Mason123abc82007-03-14 14:14:43 -040096 return (char *)(btrfs_leaf_data(leaf) + data_end) - (char *)items_end;
Chris Masonbe0e5c02007-01-26 15:51:26 -050097}
98
Chris Mason74123bd2007-02-02 11:05:29 -050099/*
100 * compare two keys in a memcmp fashion
101 */
Chris Mason9aca1d52007-03-13 11:09:37 -0400102static int comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500103{
Chris Masone2fa7222007-03-12 16:22:34 -0400104 struct btrfs_key k1;
105
106 btrfs_disk_key_to_cpu(&k1, disk);
107
108 if (k1.objectid > k2->objectid)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500109 return 1;
Chris Masone2fa7222007-03-12 16:22:34 -0400110 if (k1.objectid < k2->objectid)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500111 return -1;
Chris Masona8a2ee02007-03-16 08:46:49 -0400112 if (k1.offset > k2->offset)
113 return 1;
114 if (k1.offset < k2->offset)
115 return -1;
Chris Masonf254e522007-03-29 15:15:27 -0400116 if (k1.flags > k2->flags)
117 return 1;
118 if (k1.flags < k2->flags)
119 return -1;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500120 return 0;
121}
Chris Mason74123bd2007-02-02 11:05:29 -0500122
Chris Mason123abc82007-03-14 14:14:43 -0400123static int check_node(struct btrfs_root *root, struct btrfs_path *path,
124 int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500125{
126 int i;
Chris Mason234b63a2007-03-13 10:46:10 -0400127 struct btrfs_node *parent = NULL;
Chris Masone20d96d2007-03-22 12:13:20 -0400128 struct btrfs_node *node = btrfs_buffer_node(path->nodes[level]);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500129 int parent_slot;
Chris Mason7518a232007-03-12 12:01:18 -0400130 u32 nritems = btrfs_header_nritems(&node->header);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500131
132 if (path->nodes[level + 1])
Chris Masone20d96d2007-03-22 12:13:20 -0400133 parent = btrfs_buffer_node(path->nodes[level + 1]);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500134 parent_slot = path->slots[level + 1];
Chris Mason7518a232007-03-12 12:01:18 -0400135 BUG_ON(nritems == 0);
136 if (parent) {
Chris Masone2fa7222007-03-12 16:22:34 -0400137 struct btrfs_disk_key *parent_key;
Chris Mason123abc82007-03-14 14:14:43 -0400138 parent_key = &parent->ptrs[parent_slot].key;
139 BUG_ON(memcmp(parent_key, &node->ptrs[0].key,
Chris Masone2fa7222007-03-12 16:22:34 -0400140 sizeof(struct btrfs_disk_key)));
Chris Mason1d4f8a02007-03-13 09:28:32 -0400141 BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
Chris Mason7518a232007-03-12 12:01:18 -0400142 btrfs_header_blocknr(&node->header));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500143 }
Chris Mason123abc82007-03-14 14:14:43 -0400144 BUG_ON(nritems > BTRFS_NODEPTRS_PER_BLOCK(root));
Chris Mason7518a232007-03-12 12:01:18 -0400145 for (i = 0; nritems > 1 && i < nritems - 2; i++) {
Chris Masone2fa7222007-03-12 16:22:34 -0400146 struct btrfs_key cpukey;
Chris Mason123abc82007-03-14 14:14:43 -0400147 btrfs_disk_key_to_cpu(&cpukey, &node->ptrs[i + 1].key);
148 BUG_ON(comp_keys(&node->ptrs[i].key, &cpukey) >= 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500149 }
150 return 0;
151}
152
Chris Mason123abc82007-03-14 14:14:43 -0400153static int check_leaf(struct btrfs_root *root, struct btrfs_path *path,
154 int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500155{
156 int i;
Chris Masone20d96d2007-03-22 12:13:20 -0400157 struct btrfs_leaf *leaf = btrfs_buffer_leaf(path->nodes[level]);
Chris Mason234b63a2007-03-13 10:46:10 -0400158 struct btrfs_node *parent = NULL;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500159 int parent_slot;
Chris Mason7518a232007-03-12 12:01:18 -0400160 u32 nritems = btrfs_header_nritems(&leaf->header);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500161
162 if (path->nodes[level + 1])
Chris Masone20d96d2007-03-22 12:13:20 -0400163 parent = btrfs_buffer_node(path->nodes[level + 1]);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500164 parent_slot = path->slots[level + 1];
Chris Mason123abc82007-03-14 14:14:43 -0400165 BUG_ON(btrfs_leaf_free_space(root, leaf) < 0);
Chris Mason7518a232007-03-12 12:01:18 -0400166
167 if (nritems == 0)
168 return 0;
169
170 if (parent) {
Chris Masone2fa7222007-03-12 16:22:34 -0400171 struct btrfs_disk_key *parent_key;
Chris Mason123abc82007-03-14 14:14:43 -0400172 parent_key = &parent->ptrs[parent_slot].key;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500173 BUG_ON(memcmp(parent_key, &leaf->items[0].key,
Chris Masone2fa7222007-03-12 16:22:34 -0400174 sizeof(struct btrfs_disk_key)));
Chris Mason1d4f8a02007-03-13 09:28:32 -0400175 BUG_ON(btrfs_node_blockptr(parent, parent_slot) !=
Chris Mason7518a232007-03-12 12:01:18 -0400176 btrfs_header_blocknr(&leaf->header));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500177 }
Chris Mason7518a232007-03-12 12:01:18 -0400178 for (i = 0; nritems > 1 && i < nritems - 2; i++) {
Chris Masone2fa7222007-03-12 16:22:34 -0400179 struct btrfs_key cpukey;
180 btrfs_disk_key_to_cpu(&cpukey, &leaf->items[i + 1].key);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500181 BUG_ON(comp_keys(&leaf->items[i].key,
Chris Masone2fa7222007-03-12 16:22:34 -0400182 &cpukey) >= 0);
Chris Mason0783fcf2007-03-12 20:12:07 -0400183 BUG_ON(btrfs_item_offset(leaf->items + i) !=
184 btrfs_item_end(leaf->items + i + 1));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500185 if (i == 0) {
Chris Mason0783fcf2007-03-12 20:12:07 -0400186 BUG_ON(btrfs_item_offset(leaf->items + i) +
187 btrfs_item_size(leaf->items + i) !=
Chris Mason123abc82007-03-14 14:14:43 -0400188 BTRFS_LEAF_DATA_SIZE(root));
Chris Masonaa5d6be2007-02-28 16:35:06 -0500189 }
190 }
Chris Masonaa5d6be2007-02-28 16:35:06 -0500191 return 0;
192}
193
Chris Mason123abc82007-03-14 14:14:43 -0400194static int check_block(struct btrfs_root *root, struct btrfs_path *path,
195 int level)
Chris Masonaa5d6be2007-02-28 16:35:06 -0500196{
197 if (level == 0)
Chris Mason123abc82007-03-14 14:14:43 -0400198 return check_leaf(root, path, level);
199 return check_node(root, path, level);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500200}
201
Chris Mason74123bd2007-02-02 11:05:29 -0500202/*
203 * search for key in the array p. items p are item_size apart
204 * and there are 'max' items in p
205 * the slot in the array is returned via slot, and it points to
206 * the place where you would insert key if it is not found in
207 * the array.
208 *
209 * slot may point to max if the key is bigger than all of the keys
210 */
Chris Mason9aca1d52007-03-13 11:09:37 -0400211static int generic_bin_search(char *p, int item_size, struct btrfs_key *key,
Chris Masonbe0e5c02007-01-26 15:51:26 -0500212 int max, int *slot)
213{
214 int low = 0;
215 int high = max;
216 int mid;
217 int ret;
Chris Masone2fa7222007-03-12 16:22:34 -0400218 struct btrfs_disk_key *tmp;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500219
220 while(low < high) {
221 mid = (low + high) / 2;
Chris Masone2fa7222007-03-12 16:22:34 -0400222 tmp = (struct btrfs_disk_key *)(p + mid * item_size);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500223 ret = comp_keys(tmp, key);
224
225 if (ret < 0)
226 low = mid + 1;
227 else if (ret > 0)
228 high = mid;
229 else {
230 *slot = mid;
231 return 0;
232 }
233 }
234 *slot = low;
235 return 1;
236}
237
Chris Mason97571fd2007-02-24 13:39:08 -0500238/*
239 * simple bin_search frontend that does the right thing for
240 * leaves vs nodes
241 */
Chris Mason9aca1d52007-03-13 11:09:37 -0400242static int bin_search(struct btrfs_node *c, struct btrfs_key *key, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500243{
Chris Mason7518a232007-03-12 12:01:18 -0400244 if (btrfs_is_leaf(c)) {
Chris Mason234b63a2007-03-13 10:46:10 -0400245 struct btrfs_leaf *l = (struct btrfs_leaf *)c;
Chris Mason0783fcf2007-03-12 20:12:07 -0400246 return generic_bin_search((void *)l->items,
247 sizeof(struct btrfs_item),
Chris Mason7518a232007-03-12 12:01:18 -0400248 key, btrfs_header_nritems(&c->header),
249 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500250 } else {
Chris Mason123abc82007-03-14 14:14:43 -0400251 return generic_bin_search((void *)c->ptrs,
252 sizeof(struct btrfs_key_ptr),
Chris Mason7518a232007-03-12 12:01:18 -0400253 key, btrfs_header_nritems(&c->header),
254 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500255 }
256 return -1;
257}
258
Chris Masone20d96d2007-03-22 12:13:20 -0400259static struct buffer_head *read_node_slot(struct btrfs_root *root,
260 struct buffer_head *parent_buf,
Chris Masonbb803952007-03-01 12:04:21 -0500261 int slot)
262{
Chris Masone20d96d2007-03-22 12:13:20 -0400263 struct btrfs_node *node = btrfs_buffer_node(parent_buf);
Chris Masonbb803952007-03-01 12:04:21 -0500264 if (slot < 0)
265 return NULL;
Chris Mason7518a232007-03-12 12:01:18 -0400266 if (slot >= btrfs_header_nritems(&node->header))
Chris Masonbb803952007-03-01 12:04:21 -0500267 return NULL;
Chris Mason1d4f8a02007-03-13 09:28:32 -0400268 return read_tree_block(root, btrfs_node_blockptr(node, slot));
Chris Masonbb803952007-03-01 12:04:21 -0500269}
270
Chris Masone089f052007-03-16 16:20:31 -0400271static int balance_level(struct btrfs_trans_handle *trans, struct btrfs_root
272 *root, struct btrfs_path *path, int level)
Chris Masonbb803952007-03-01 12:04:21 -0500273{
Chris Masone20d96d2007-03-22 12:13:20 -0400274 struct buffer_head *right_buf;
275 struct buffer_head *mid_buf;
276 struct buffer_head *left_buf;
277 struct buffer_head *parent_buf = NULL;
Chris Mason234b63a2007-03-13 10:46:10 -0400278 struct btrfs_node *right = NULL;
279 struct btrfs_node *mid;
280 struct btrfs_node *left = NULL;
281 struct btrfs_node *parent = NULL;
Chris Masonbb803952007-03-01 12:04:21 -0500282 int ret = 0;
283 int wret;
284 int pslot;
Chris Masonbb803952007-03-01 12:04:21 -0500285 int orig_slot = path->slots[level];
Chris Mason79f95c82007-03-01 15:16:26 -0500286 u64 orig_ptr;
Chris Masonbb803952007-03-01 12:04:21 -0500287
288 if (level == 0)
289 return 0;
290
291 mid_buf = path->nodes[level];
Chris Masone20d96d2007-03-22 12:13:20 -0400292 mid = btrfs_buffer_node(mid_buf);
Chris Mason1d4f8a02007-03-13 09:28:32 -0400293 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
Chris Mason79f95c82007-03-01 15:16:26 -0500294
Chris Mason234b63a2007-03-13 10:46:10 -0400295 if (level < BTRFS_MAX_LEVEL - 1)
Chris Masonbb803952007-03-01 12:04:21 -0500296 parent_buf = path->nodes[level + 1];
297 pslot = path->slots[level + 1];
298
Chris Mason40689472007-03-17 14:29:23 -0400299 /*
300 * deal with the case where there is only one pointer in the root
301 * by promoting the node below to a root
302 */
Chris Masonbb803952007-03-01 12:04:21 -0500303 if (!parent_buf) {
Chris Masone20d96d2007-03-22 12:13:20 -0400304 struct buffer_head *child;
305 u64 blocknr = mid_buf->b_blocknr;
Chris Masonbb803952007-03-01 12:04:21 -0500306
Chris Mason7518a232007-03-12 12:01:18 -0400307 if (btrfs_header_nritems(&mid->header) != 1)
Chris Masonbb803952007-03-01 12:04:21 -0500308 return 0;
309
310 /* promote the child to a root */
311 child = read_node_slot(root, mid_buf, 0);
312 BUG_ON(!child);
313 root->node = child;
314 path->nodes[level] = NULL;
315 /* once for the path */
Chris Mason234b63a2007-03-13 10:46:10 -0400316 btrfs_block_release(root, mid_buf);
Chris Masonbb803952007-03-01 12:04:21 -0500317 /* once for the root ptr */
Chris Mason234b63a2007-03-13 10:46:10 -0400318 btrfs_block_release(root, mid_buf);
Chris Masone089f052007-03-16 16:20:31 -0400319 clean_tree_block(trans, root, mid_buf);
320 return btrfs_free_extent(trans, root, blocknr, 1, 1);
Chris Masonbb803952007-03-01 12:04:21 -0500321 }
Chris Masone20d96d2007-03-22 12:13:20 -0400322 parent = btrfs_buffer_node(parent_buf);
Chris Masonbb803952007-03-01 12:04:21 -0500323
Chris Mason123abc82007-03-14 14:14:43 -0400324 if (btrfs_header_nritems(&mid->header) >
325 BTRFS_NODEPTRS_PER_BLOCK(root) / 4)
Chris Masonbb803952007-03-01 12:04:21 -0500326 return 0;
327
Chris Masonbb803952007-03-01 12:04:21 -0500328 left_buf = read_node_slot(root, parent_buf, pslot - 1);
329 right_buf = read_node_slot(root, parent_buf, pslot + 1);
Chris Mason79f95c82007-03-01 15:16:26 -0500330
331 /* first, try to make some room in the middle buffer */
Chris Masonbb803952007-03-01 12:04:21 -0500332 if (left_buf) {
Chris Masone089f052007-03-16 16:20:31 -0400333 btrfs_cow_block(trans, root, left_buf, parent_buf, pslot - 1,
334 &left_buf);
Chris Masone20d96d2007-03-22 12:13:20 -0400335 left = btrfs_buffer_node(left_buf);
Chris Mason7518a232007-03-12 12:01:18 -0400336 orig_slot += btrfs_header_nritems(&left->header);
Chris Masone089f052007-03-16 16:20:31 -0400337 wret = push_node_left(trans, root, left_buf, mid_buf);
Chris Mason79f95c82007-03-01 15:16:26 -0500338 if (wret < 0)
339 ret = wret;
Chris Masonbb803952007-03-01 12:04:21 -0500340 }
Chris Mason79f95c82007-03-01 15:16:26 -0500341
342 /*
343 * then try to empty the right most buffer into the middle
344 */
Chris Masonbb803952007-03-01 12:04:21 -0500345 if (right_buf) {
Chris Masone089f052007-03-16 16:20:31 -0400346 btrfs_cow_block(trans, root, right_buf, parent_buf, pslot + 1,
347 &right_buf);
Chris Masone20d96d2007-03-22 12:13:20 -0400348 right = btrfs_buffer_node(right_buf);
Chris Masone089f052007-03-16 16:20:31 -0400349 wret = push_node_left(trans, root, mid_buf, right_buf);
Chris Mason79f95c82007-03-01 15:16:26 -0500350 if (wret < 0)
351 ret = wret;
Chris Mason7518a232007-03-12 12:01:18 -0400352 if (btrfs_header_nritems(&right->header) == 0) {
Chris Masone20d96d2007-03-22 12:13:20 -0400353 u64 blocknr = right_buf->b_blocknr;
Chris Mason234b63a2007-03-13 10:46:10 -0400354 btrfs_block_release(root, right_buf);
Chris Masone089f052007-03-16 16:20:31 -0400355 clean_tree_block(trans, root, right_buf);
Chris Masonbb803952007-03-01 12:04:21 -0500356 right_buf = NULL;
357 right = NULL;
Chris Masone089f052007-03-16 16:20:31 -0400358 wret = del_ptr(trans, root, path, level + 1, pslot +
359 1);
Chris Masonbb803952007-03-01 12:04:21 -0500360 if (wret)
361 ret = wret;
Chris Masone089f052007-03-16 16:20:31 -0400362 wret = btrfs_free_extent(trans, root, blocknr, 1, 1);
Chris Masonbb803952007-03-01 12:04:21 -0500363 if (wret)
364 ret = wret;
365 } else {
Chris Mason123abc82007-03-14 14:14:43 -0400366 memcpy(&parent->ptrs[pslot + 1].key,
367 &right->ptrs[0].key,
Chris Masone2fa7222007-03-12 16:22:34 -0400368 sizeof(struct btrfs_disk_key));
Chris Masond5719762007-03-23 10:01:08 -0400369 mark_buffer_dirty(parent_buf);
Chris Masonbb803952007-03-01 12:04:21 -0500370 }
371 }
Chris Mason7518a232007-03-12 12:01:18 -0400372 if (btrfs_header_nritems(&mid->header) == 1) {
Chris Mason79f95c82007-03-01 15:16:26 -0500373 /*
374 * we're not allowed to leave a node with one item in the
375 * tree during a delete. A deletion from lower in the tree
376 * could try to delete the only pointer in this node.
377 * So, pull some keys from the left.
378 * There has to be a left pointer at this point because
379 * otherwise we would have pulled some pointers from the
380 * right
381 */
382 BUG_ON(!left_buf);
Chris Masone089f052007-03-16 16:20:31 -0400383 wret = balance_node_right(trans, root, mid_buf, left_buf);
Chris Mason79f95c82007-03-01 15:16:26 -0500384 if (wret < 0)
385 ret = wret;
386 BUG_ON(wret == 1);
387 }
Chris Mason7518a232007-03-12 12:01:18 -0400388 if (btrfs_header_nritems(&mid->header) == 0) {
Chris Mason79f95c82007-03-01 15:16:26 -0500389 /* we've managed to empty the middle node, drop it */
Chris Masone20d96d2007-03-22 12:13:20 -0400390 u64 blocknr = mid_buf->b_blocknr;
Chris Mason234b63a2007-03-13 10:46:10 -0400391 btrfs_block_release(root, mid_buf);
Chris Masone089f052007-03-16 16:20:31 -0400392 clean_tree_block(trans, root, mid_buf);
Chris Masonbb803952007-03-01 12:04:21 -0500393 mid_buf = NULL;
394 mid = NULL;
Chris Masone089f052007-03-16 16:20:31 -0400395 wret = del_ptr(trans, root, path, level + 1, pslot);
Chris Masonbb803952007-03-01 12:04:21 -0500396 if (wret)
397 ret = wret;
Chris Masone089f052007-03-16 16:20:31 -0400398 wret = btrfs_free_extent(trans, root, blocknr, 1, 1);
Chris Masonbb803952007-03-01 12:04:21 -0500399 if (wret)
400 ret = wret;
Chris Mason79f95c82007-03-01 15:16:26 -0500401 } else {
402 /* update the parent key to reflect our changes */
Chris Mason123abc82007-03-14 14:14:43 -0400403 memcpy(&parent->ptrs[pslot].key, &mid->ptrs[0].key,
Chris Masone2fa7222007-03-12 16:22:34 -0400404 sizeof(struct btrfs_disk_key));
Chris Masond5719762007-03-23 10:01:08 -0400405 mark_buffer_dirty(parent_buf);
Chris Mason79f95c82007-03-01 15:16:26 -0500406 }
Chris Masonbb803952007-03-01 12:04:21 -0500407
Chris Mason79f95c82007-03-01 15:16:26 -0500408 /* update the path */
Chris Masonbb803952007-03-01 12:04:21 -0500409 if (left_buf) {
Chris Mason7518a232007-03-12 12:01:18 -0400410 if (btrfs_header_nritems(&left->header) > orig_slot) {
Chris Masone20d96d2007-03-22 12:13:20 -0400411 get_bh(left_buf);
Chris Masonbb803952007-03-01 12:04:21 -0500412 path->nodes[level] = left_buf;
413 path->slots[level + 1] -= 1;
414 path->slots[level] = orig_slot;
415 if (mid_buf)
Chris Mason234b63a2007-03-13 10:46:10 -0400416 btrfs_block_release(root, mid_buf);
Chris Masonbb803952007-03-01 12:04:21 -0500417 } else {
Chris Mason7518a232007-03-12 12:01:18 -0400418 orig_slot -= btrfs_header_nritems(&left->header);
Chris Masonbb803952007-03-01 12:04:21 -0500419 path->slots[level] = orig_slot;
420 }
421 }
Chris Mason79f95c82007-03-01 15:16:26 -0500422 /* double check we haven't messed things up */
Chris Mason123abc82007-03-14 14:14:43 -0400423 check_block(root, path, level);
Chris Masone20d96d2007-03-22 12:13:20 -0400424 if (orig_ptr !=
425 btrfs_node_blockptr(btrfs_buffer_node(path->nodes[level]),
426 path->slots[level]))
Chris Mason79f95c82007-03-01 15:16:26 -0500427 BUG();
Chris Masonbb803952007-03-01 12:04:21 -0500428
429 if (right_buf)
Chris Mason234b63a2007-03-13 10:46:10 -0400430 btrfs_block_release(root, right_buf);
Chris Masonbb803952007-03-01 12:04:21 -0500431 if (left_buf)
Chris Mason234b63a2007-03-13 10:46:10 -0400432 btrfs_block_release(root, left_buf);
Chris Masonbb803952007-03-01 12:04:21 -0500433 return ret;
434}
435
Chris Mason74123bd2007-02-02 11:05:29 -0500436/*
437 * look for key in the tree. path is filled in with nodes along the way
438 * if key is found, we return zero and you can find the item in the leaf
439 * level of the path (level 0)
440 *
441 * If the key isn't found, the path points to the slot where it should
Chris Masonaa5d6be2007-02-28 16:35:06 -0500442 * be inserted, and 1 is returned. If there are other errors during the
443 * search a negative error number is returned.
Chris Mason97571fd2007-02-24 13:39:08 -0500444 *
445 * if ins_len > 0, nodes and leaves will be split as we walk down the
446 * tree. if ins_len < 0, nodes will be merged as we walk down the tree (if
447 * possible)
Chris Mason74123bd2007-02-02 11:05:29 -0500448 */
Chris Masone089f052007-03-16 16:20:31 -0400449int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
450 *root, struct btrfs_key *key, struct btrfs_path *p, int
451 ins_len, int cow)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500452{
Chris Masone20d96d2007-03-22 12:13:20 -0400453 struct buffer_head *b;
454 struct buffer_head *cow_buf;
Chris Mason234b63a2007-03-13 10:46:10 -0400455 struct btrfs_node *c;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500456 int slot;
457 int ret;
458 int level;
Chris Mason5c680ed2007-02-22 11:39:13 -0500459
Chris Mason22b0ebd2007-03-30 08:47:31 -0400460 WARN_ON(p->nodes[0] != NULL);
461 WARN_ON(!mutex_is_locked(&root->fs_info->fs_mutex));
Chris Masonbb803952007-03-01 12:04:21 -0500462again:
463 b = root->node;
Chris Masone20d96d2007-03-22 12:13:20 -0400464 get_bh(b);
Chris Masoneb60cea2007-02-02 09:18:22 -0500465 while (b) {
Chris Masone20d96d2007-03-22 12:13:20 -0400466 c = btrfs_buffer_node(b);
467 level = btrfs_header_level(&c->header);
Chris Mason02217ed2007-03-02 16:08:05 -0500468 if (cow) {
469 int wret;
Chris Masone20d96d2007-03-22 12:13:20 -0400470 wret = btrfs_cow_block(trans, root, b,
471 p->nodes[level + 1],
472 p->slots[level + 1],
Chris Masone089f052007-03-16 16:20:31 -0400473 &cow_buf);
Chris Mason02217ed2007-03-02 16:08:05 -0500474 b = cow_buf;
475 }
476 BUG_ON(!cow && ins_len);
Chris Masone20d96d2007-03-22 12:13:20 -0400477 c = btrfs_buffer_node(b);
Chris Masoneb60cea2007-02-02 09:18:22 -0500478 p->nodes[level] = b;
Chris Mason123abc82007-03-14 14:14:43 -0400479 ret = check_block(root, p, level);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500480 if (ret)
481 return -1;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500482 ret = bin_search(c, key, &slot);
Chris Mason7518a232007-03-12 12:01:18 -0400483 if (!btrfs_is_leaf(c)) {
Chris Masonbe0e5c02007-01-26 15:51:26 -0500484 if (ret && slot > 0)
485 slot -= 1;
486 p->slots[level] = slot;
Chris Mason7518a232007-03-12 12:01:18 -0400487 if (ins_len > 0 && btrfs_header_nritems(&c->header) ==
Chris Mason123abc82007-03-14 14:14:43 -0400488 BTRFS_NODEPTRS_PER_BLOCK(root)) {
Chris Masone089f052007-03-16 16:20:31 -0400489 int sret = split_node(trans, root, p, level);
Chris Mason5c680ed2007-02-22 11:39:13 -0500490 BUG_ON(sret > 0);
491 if (sret)
492 return sret;
493 b = p->nodes[level];
Chris Masone20d96d2007-03-22 12:13:20 -0400494 c = btrfs_buffer_node(b);
Chris Mason5c680ed2007-02-22 11:39:13 -0500495 slot = p->slots[level];
Chris Masonbb803952007-03-01 12:04:21 -0500496 } else if (ins_len < 0) {
Chris Masone089f052007-03-16 16:20:31 -0400497 int sret = balance_level(trans, root, p,
498 level);
Chris Masonbb803952007-03-01 12:04:21 -0500499 if (sret)
500 return sret;
501 b = p->nodes[level];
502 if (!b)
503 goto again;
Chris Masone20d96d2007-03-22 12:13:20 -0400504 c = btrfs_buffer_node(b);
Chris Masonbb803952007-03-01 12:04:21 -0500505 slot = p->slots[level];
Chris Mason7518a232007-03-12 12:01:18 -0400506 BUG_ON(btrfs_header_nritems(&c->header) == 1);
Chris Mason5c680ed2007-02-22 11:39:13 -0500507 }
Chris Mason1d4f8a02007-03-13 09:28:32 -0400508 b = read_tree_block(root, btrfs_node_blockptr(c, slot));
Chris Masonbe0e5c02007-01-26 15:51:26 -0500509 } else {
Chris Mason234b63a2007-03-13 10:46:10 -0400510 struct btrfs_leaf *l = (struct btrfs_leaf *)c;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500511 p->slots[level] = slot;
Chris Mason123abc82007-03-14 14:14:43 -0400512 if (ins_len > 0 && btrfs_leaf_free_space(root, l) <
Chris Mason0783fcf2007-03-12 20:12:07 -0400513 sizeof(struct btrfs_item) + ins_len) {
Chris Masone089f052007-03-16 16:20:31 -0400514 int sret = split_leaf(trans, root, p, ins_len);
Chris Mason5c680ed2007-02-22 11:39:13 -0500515 BUG_ON(sret > 0);
516 if (sret)
517 return sret;
518 }
Chris Masonbe0e5c02007-01-26 15:51:26 -0500519 return ret;
520 }
521 }
Chris Masonaa5d6be2007-02-28 16:35:06 -0500522 return 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500523}
524
Chris Mason74123bd2007-02-02 11:05:29 -0500525/*
526 * adjust the pointers going up the tree, starting at level
527 * making sure the right key of each node is points to 'key'.
528 * This is used after shifting pointers to the left, so it stops
529 * fixing up pointers when a given leaf/node is not in slot 0 of the
530 * higher levels
Chris Masonaa5d6be2007-02-28 16:35:06 -0500531 *
532 * If this fails to write a tree block, it returns -1, but continues
533 * fixing up the blocks in ram so the tree is consistent.
Chris Mason74123bd2007-02-02 11:05:29 -0500534 */
Chris Masone089f052007-03-16 16:20:31 -0400535static int fixup_low_keys(struct btrfs_trans_handle *trans, struct btrfs_root
536 *root, struct btrfs_path *path, struct btrfs_disk_key
537 *key, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500538{
539 int i;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500540 int ret = 0;
Chris Mason234b63a2007-03-13 10:46:10 -0400541 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
542 struct btrfs_node *t;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500543 int tslot = path->slots[i];
Chris Masoneb60cea2007-02-02 09:18:22 -0500544 if (!path->nodes[i])
Chris Masonbe0e5c02007-01-26 15:51:26 -0500545 break;
Chris Masone20d96d2007-03-22 12:13:20 -0400546 t = btrfs_buffer_node(path->nodes[i]);
Chris Mason123abc82007-03-14 14:14:43 -0400547 memcpy(&t->ptrs[tslot].key, key, sizeof(*key));
Chris Masond5719762007-03-23 10:01:08 -0400548 mark_buffer_dirty(path->nodes[i]);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500549 if (tslot != 0)
550 break;
551 }
Chris Masonaa5d6be2007-02-28 16:35:06 -0500552 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500553}
554
Chris Mason74123bd2007-02-02 11:05:29 -0500555/*
556 * try to push data from one node into the next node left in the
Chris Mason79f95c82007-03-01 15:16:26 -0500557 * tree.
Chris Masonaa5d6be2007-02-28 16:35:06 -0500558 *
559 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
560 * error, and > 0 if there was no room in the left hand block.
Chris Mason74123bd2007-02-02 11:05:29 -0500561 */
Chris Masone089f052007-03-16 16:20:31 -0400562static int push_node_left(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masone20d96d2007-03-22 12:13:20 -0400563 *root, struct buffer_head *dst_buf, struct
564 buffer_head *src_buf)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500565{
Chris Masone20d96d2007-03-22 12:13:20 -0400566 struct btrfs_node *src = btrfs_buffer_node(src_buf);
567 struct btrfs_node *dst = btrfs_buffer_node(dst_buf);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500568 int push_items = 0;
Chris Masonbb803952007-03-01 12:04:21 -0500569 int src_nritems;
570 int dst_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500571 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500572
Chris Mason7518a232007-03-12 12:01:18 -0400573 src_nritems = btrfs_header_nritems(&src->header);
574 dst_nritems = btrfs_header_nritems(&dst->header);
Chris Mason123abc82007-03-14 14:14:43 -0400575 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Masoneb60cea2007-02-02 09:18:22 -0500576 if (push_items <= 0) {
Chris Masonbe0e5c02007-01-26 15:51:26 -0500577 return 1;
Chris Masoneb60cea2007-02-02 09:18:22 -0500578 }
Chris Masonbe0e5c02007-01-26 15:51:26 -0500579
580 if (src_nritems < push_items)
Chris Mason79f95c82007-03-01 15:16:26 -0500581 push_items = src_nritems;
582
Chris Mason123abc82007-03-14 14:14:43 -0400583 memcpy(dst->ptrs + dst_nritems, src->ptrs,
584 push_items * sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -0500585 if (push_items < src_nritems) {
Chris Mason123abc82007-03-14 14:14:43 -0400586 memmove(src->ptrs, src->ptrs + push_items,
Chris Masone2fa7222007-03-12 16:22:34 -0400587 (src_nritems - push_items) *
Chris Mason123abc82007-03-14 14:14:43 -0400588 sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -0500589 }
Chris Mason7518a232007-03-12 12:01:18 -0400590 btrfs_set_header_nritems(&src->header, src_nritems - push_items);
591 btrfs_set_header_nritems(&dst->header, dst_nritems + push_items);
Chris Masond5719762007-03-23 10:01:08 -0400592 mark_buffer_dirty(src_buf);
593 mark_buffer_dirty(dst_buf);
Chris Masonbb803952007-03-01 12:04:21 -0500594 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500595}
596
Chris Mason97571fd2007-02-24 13:39:08 -0500597/*
Chris Mason79f95c82007-03-01 15:16:26 -0500598 * try to push data from one node into the next node right in the
599 * tree.
600 *
601 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
602 * error, and > 0 if there was no room in the right hand block.
603 *
604 * this will only push up to 1/2 the contents of the left node over
605 */
Chris Masone089f052007-03-16 16:20:31 -0400606static int balance_node_right(struct btrfs_trans_handle *trans, struct
Chris Masone20d96d2007-03-22 12:13:20 -0400607 btrfs_root *root, struct buffer_head *dst_buf,
608 struct buffer_head *src_buf)
Chris Mason79f95c82007-03-01 15:16:26 -0500609{
Chris Masone20d96d2007-03-22 12:13:20 -0400610 struct btrfs_node *src = btrfs_buffer_node(src_buf);
611 struct btrfs_node *dst = btrfs_buffer_node(dst_buf);
Chris Mason79f95c82007-03-01 15:16:26 -0500612 int push_items = 0;
613 int max_push;
614 int src_nritems;
615 int dst_nritems;
616 int ret = 0;
Chris Mason79f95c82007-03-01 15:16:26 -0500617
Chris Mason7518a232007-03-12 12:01:18 -0400618 src_nritems = btrfs_header_nritems(&src->header);
619 dst_nritems = btrfs_header_nritems(&dst->header);
Chris Mason123abc82007-03-14 14:14:43 -0400620 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Mason79f95c82007-03-01 15:16:26 -0500621 if (push_items <= 0) {
622 return 1;
623 }
624
625 max_push = src_nritems / 2 + 1;
626 /* don't try to empty the node */
627 if (max_push > src_nritems)
628 return 1;
629 if (max_push < push_items)
630 push_items = max_push;
631
Chris Mason123abc82007-03-14 14:14:43 -0400632 memmove(dst->ptrs + push_items, dst->ptrs,
633 dst_nritems * sizeof(struct btrfs_key_ptr));
634 memcpy(dst->ptrs, src->ptrs + src_nritems - push_items,
635 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason79f95c82007-03-01 15:16:26 -0500636
Chris Mason7518a232007-03-12 12:01:18 -0400637 btrfs_set_header_nritems(&src->header, src_nritems - push_items);
638 btrfs_set_header_nritems(&dst->header, dst_nritems + push_items);
Chris Mason79f95c82007-03-01 15:16:26 -0500639
Chris Masond5719762007-03-23 10:01:08 -0400640 mark_buffer_dirty(src_buf);
641 mark_buffer_dirty(dst_buf);
Chris Mason79f95c82007-03-01 15:16:26 -0500642 return ret;
643}
644
645/*
Chris Mason97571fd2007-02-24 13:39:08 -0500646 * helper function to insert a new root level in the tree.
647 * A new node is allocated, and a single item is inserted to
648 * point to the existing root
Chris Masonaa5d6be2007-02-28 16:35:06 -0500649 *
650 * returns zero on success or < 0 on failure.
Chris Mason97571fd2007-02-24 13:39:08 -0500651 */
Chris Masone089f052007-03-16 16:20:31 -0400652static int insert_new_root(struct btrfs_trans_handle *trans, struct btrfs_root
653 *root, struct btrfs_path *path, int level)
Chris Mason5c680ed2007-02-22 11:39:13 -0500654{
Chris Masone20d96d2007-03-22 12:13:20 -0400655 struct buffer_head *t;
Chris Mason234b63a2007-03-13 10:46:10 -0400656 struct btrfs_node *lower;
657 struct btrfs_node *c;
Chris Masone2fa7222007-03-12 16:22:34 -0400658 struct btrfs_disk_key *lower_key;
Chris Mason5c680ed2007-02-22 11:39:13 -0500659
660 BUG_ON(path->nodes[level]);
661 BUG_ON(path->nodes[level-1] != root->node);
662
Chris Masone089f052007-03-16 16:20:31 -0400663 t = btrfs_alloc_free_block(trans, root);
Chris Masone20d96d2007-03-22 12:13:20 -0400664 c = btrfs_buffer_node(t);
Chris Mason123abc82007-03-14 14:14:43 -0400665 memset(c, 0, root->blocksize);
Chris Mason7518a232007-03-12 12:01:18 -0400666 btrfs_set_header_nritems(&c->header, 1);
667 btrfs_set_header_level(&c->header, level);
Chris Masone20d96d2007-03-22 12:13:20 -0400668 btrfs_set_header_blocknr(&c->header, t->b_blocknr);
Chris Mason7f5c1512007-03-23 15:56:19 -0400669 btrfs_set_header_generation(&c->header, trans->transid);
Chris Mason7518a232007-03-12 12:01:18 -0400670 btrfs_set_header_parentid(&c->header,
Chris Masone20d96d2007-03-22 12:13:20 -0400671 btrfs_header_parentid(btrfs_buffer_header(root->node)));
672 lower = btrfs_buffer_node(path->nodes[level-1]);
Chris Mason7518a232007-03-12 12:01:18 -0400673 if (btrfs_is_leaf(lower))
Chris Mason234b63a2007-03-13 10:46:10 -0400674 lower_key = &((struct btrfs_leaf *)lower)->items[0].key;
Chris Mason5c680ed2007-02-22 11:39:13 -0500675 else
Chris Mason123abc82007-03-14 14:14:43 -0400676 lower_key = &lower->ptrs[0].key;
677 memcpy(&c->ptrs[0].key, lower_key, sizeof(struct btrfs_disk_key));
Chris Masone20d96d2007-03-22 12:13:20 -0400678 btrfs_set_node_blockptr(c, 0, path->nodes[level - 1]->b_blocknr);
Chris Masond5719762007-03-23 10:01:08 -0400679
680 mark_buffer_dirty(t);
681
Chris Mason5c680ed2007-02-22 11:39:13 -0500682 /* the super has an extra ref to root->node */
Chris Mason234b63a2007-03-13 10:46:10 -0400683 btrfs_block_release(root, root->node);
Chris Mason5c680ed2007-02-22 11:39:13 -0500684 root->node = t;
Chris Masone20d96d2007-03-22 12:13:20 -0400685 get_bh(t);
Chris Mason5c680ed2007-02-22 11:39:13 -0500686 path->nodes[level] = t;
687 path->slots[level] = 0;
688 return 0;
689}
690
Chris Mason74123bd2007-02-02 11:05:29 -0500691/*
692 * worker function to insert a single pointer in a node.
693 * the node should have enough room for the pointer already
Chris Mason97571fd2007-02-24 13:39:08 -0500694 *
Chris Mason74123bd2007-02-02 11:05:29 -0500695 * slot and level indicate where you want the key to go, and
696 * blocknr is the block the key points to.
Chris Masonaa5d6be2007-02-28 16:35:06 -0500697 *
698 * returns zero on success and < 0 on any error
Chris Mason74123bd2007-02-02 11:05:29 -0500699 */
Chris Masone089f052007-03-16 16:20:31 -0400700static int insert_ptr(struct btrfs_trans_handle *trans, struct btrfs_root
701 *root, struct btrfs_path *path, struct btrfs_disk_key
702 *key, u64 blocknr, int slot, int level)
Chris Mason74123bd2007-02-02 11:05:29 -0500703{
Chris Mason234b63a2007-03-13 10:46:10 -0400704 struct btrfs_node *lower;
Chris Mason74123bd2007-02-02 11:05:29 -0500705 int nritems;
Chris Mason5c680ed2007-02-22 11:39:13 -0500706
707 BUG_ON(!path->nodes[level]);
Chris Masone20d96d2007-03-22 12:13:20 -0400708 lower = btrfs_buffer_node(path->nodes[level]);
Chris Mason7518a232007-03-12 12:01:18 -0400709 nritems = btrfs_header_nritems(&lower->header);
Chris Mason74123bd2007-02-02 11:05:29 -0500710 if (slot > nritems)
711 BUG();
Chris Mason123abc82007-03-14 14:14:43 -0400712 if (nritems == BTRFS_NODEPTRS_PER_BLOCK(root))
Chris Mason74123bd2007-02-02 11:05:29 -0500713 BUG();
714 if (slot != nritems) {
Chris Mason123abc82007-03-14 14:14:43 -0400715 memmove(lower->ptrs + slot + 1, lower->ptrs + slot,
716 (nritems - slot) * sizeof(struct btrfs_key_ptr));
Chris Mason74123bd2007-02-02 11:05:29 -0500717 }
Chris Mason123abc82007-03-14 14:14:43 -0400718 memcpy(&lower->ptrs[slot].key, key, sizeof(struct btrfs_disk_key));
Chris Mason1d4f8a02007-03-13 09:28:32 -0400719 btrfs_set_node_blockptr(lower, slot, blocknr);
Chris Mason7518a232007-03-12 12:01:18 -0400720 btrfs_set_header_nritems(&lower->header, nritems + 1);
Chris Masond5719762007-03-23 10:01:08 -0400721 mark_buffer_dirty(path->nodes[level]);
Chris Mason74123bd2007-02-02 11:05:29 -0500722 return 0;
723}
724
Chris Mason97571fd2007-02-24 13:39:08 -0500725/*
726 * split the node at the specified level in path in two.
727 * The path is corrected to point to the appropriate node after the split
728 *
729 * Before splitting this tries to make some room in the node by pushing
730 * left and right, if either one works, it returns right away.
Chris Masonaa5d6be2007-02-28 16:35:06 -0500731 *
732 * returns 0 on success and < 0 on failure
Chris Mason97571fd2007-02-24 13:39:08 -0500733 */
Chris Masone089f052007-03-16 16:20:31 -0400734static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
735 *root, struct btrfs_path *path, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500736{
Chris Masone20d96d2007-03-22 12:13:20 -0400737 struct buffer_head *t;
Chris Mason234b63a2007-03-13 10:46:10 -0400738 struct btrfs_node *c;
Chris Masone20d96d2007-03-22 12:13:20 -0400739 struct buffer_head *split_buffer;
Chris Mason234b63a2007-03-13 10:46:10 -0400740 struct btrfs_node *split;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500741 int mid;
Chris Mason5c680ed2007-02-22 11:39:13 -0500742 int ret;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500743 int wret;
Chris Mason7518a232007-03-12 12:01:18 -0400744 u32 c_nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500745
Chris Mason5c680ed2007-02-22 11:39:13 -0500746 t = path->nodes[level];
Chris Masone20d96d2007-03-22 12:13:20 -0400747 c = btrfs_buffer_node(t);
Chris Mason5c680ed2007-02-22 11:39:13 -0500748 if (t == root->node) {
749 /* trying to split the root, lets make a new one */
Chris Masone089f052007-03-16 16:20:31 -0400750 ret = insert_new_root(trans, root, path, level + 1);
Chris Mason5c680ed2007-02-22 11:39:13 -0500751 if (ret)
752 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500753 }
Chris Mason7518a232007-03-12 12:01:18 -0400754 c_nritems = btrfs_header_nritems(&c->header);
Chris Masone089f052007-03-16 16:20:31 -0400755 split_buffer = btrfs_alloc_free_block(trans, root);
Chris Masone20d96d2007-03-22 12:13:20 -0400756 split = btrfs_buffer_node(split_buffer);
Chris Mason7518a232007-03-12 12:01:18 -0400757 btrfs_set_header_flags(&split->header, btrfs_header_flags(&c->header));
Chris Mason9a6f11e2007-03-27 09:06:38 -0400758 btrfs_set_header_level(&split->header, btrfs_header_level(&c->header));
Chris Masone20d96d2007-03-22 12:13:20 -0400759 btrfs_set_header_blocknr(&split->header, split_buffer->b_blocknr);
Chris Mason7f5c1512007-03-23 15:56:19 -0400760 btrfs_set_header_generation(&split->header, trans->transid);
Chris Mason7518a232007-03-12 12:01:18 -0400761 btrfs_set_header_parentid(&split->header,
Chris Masone20d96d2007-03-22 12:13:20 -0400762 btrfs_header_parentid(btrfs_buffer_header(root->node)));
Chris Mason7518a232007-03-12 12:01:18 -0400763 mid = (c_nritems + 1) / 2;
Chris Mason123abc82007-03-14 14:14:43 -0400764 memcpy(split->ptrs, c->ptrs + mid,
765 (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
Chris Mason7518a232007-03-12 12:01:18 -0400766 btrfs_set_header_nritems(&split->header, c_nritems - mid);
767 btrfs_set_header_nritems(&c->header, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500768 ret = 0;
769
Chris Masond5719762007-03-23 10:01:08 -0400770 mark_buffer_dirty(t);
771 mark_buffer_dirty(split_buffer);
Chris Masone089f052007-03-16 16:20:31 -0400772 wret = insert_ptr(trans, root, path, &split->ptrs[0].key,
Chris Masone20d96d2007-03-22 12:13:20 -0400773 split_buffer->b_blocknr, path->slots[level + 1] + 1,
Chris Mason123abc82007-03-14 14:14:43 -0400774 level + 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -0500775 if (wret)
776 ret = wret;
777
Chris Mason5de08d72007-02-24 06:24:44 -0500778 if (path->slots[level] >= mid) {
Chris Mason5c680ed2007-02-22 11:39:13 -0500779 path->slots[level] -= mid;
Chris Mason234b63a2007-03-13 10:46:10 -0400780 btrfs_block_release(root, t);
Chris Mason5c680ed2007-02-22 11:39:13 -0500781 path->nodes[level] = split_buffer;
782 path->slots[level + 1] += 1;
783 } else {
Chris Mason234b63a2007-03-13 10:46:10 -0400784 btrfs_block_release(root, split_buffer);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500785 }
Chris Masonaa5d6be2007-02-28 16:35:06 -0500786 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500787}
788
Chris Mason74123bd2007-02-02 11:05:29 -0500789/*
790 * how many bytes are required to store the items in a leaf. start
791 * and nr indicate which items in the leaf to check. This totals up the
792 * space used both by the item structs and the item data
793 */
Chris Mason234b63a2007-03-13 10:46:10 -0400794static int leaf_space_used(struct btrfs_leaf *l, int start, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500795{
796 int data_len;
797 int end = start + nr - 1;
798
799 if (!nr)
800 return 0;
Chris Mason0783fcf2007-03-12 20:12:07 -0400801 data_len = btrfs_item_end(l->items + start);
802 data_len = data_len - btrfs_item_offset(l->items + end);
803 data_len += sizeof(struct btrfs_item) * nr;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500804 return data_len;
805}
806
Chris Mason74123bd2007-02-02 11:05:29 -0500807/*
Chris Mason00ec4c52007-02-24 12:47:20 -0500808 * push some data in the path leaf to the right, trying to free up at
809 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Masonaa5d6be2007-02-28 16:35:06 -0500810 *
811 * returns 1 if the push failed because the other node didn't have enough
812 * room, 0 if everything worked out and < 0 if there were major errors.
Chris Mason00ec4c52007-02-24 12:47:20 -0500813 */
Chris Masone089f052007-03-16 16:20:31 -0400814static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
815 *root, struct btrfs_path *path, int data_size)
Chris Mason00ec4c52007-02-24 12:47:20 -0500816{
Chris Masone20d96d2007-03-22 12:13:20 -0400817 struct buffer_head *left_buf = path->nodes[0];
818 struct btrfs_leaf *left = btrfs_buffer_leaf(left_buf);
Chris Mason234b63a2007-03-13 10:46:10 -0400819 struct btrfs_leaf *right;
Chris Masone20d96d2007-03-22 12:13:20 -0400820 struct buffer_head *right_buf;
821 struct buffer_head *upper;
822 struct btrfs_node *upper_node;
Chris Mason00ec4c52007-02-24 12:47:20 -0500823 int slot;
824 int i;
825 int free_space;
826 int push_space = 0;
827 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -0400828 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -0400829 u32 left_nritems;
830 u32 right_nritems;
Chris Mason00ec4c52007-02-24 12:47:20 -0500831
832 slot = path->slots[1];
833 if (!path->nodes[1]) {
834 return 1;
835 }
836 upper = path->nodes[1];
Chris Masone20d96d2007-03-22 12:13:20 -0400837 upper_node = btrfs_buffer_node(upper);
838 if (slot >= btrfs_header_nritems(&upper_node->header) - 1) {
Chris Mason00ec4c52007-02-24 12:47:20 -0500839 return 1;
840 }
Chris Masone20d96d2007-03-22 12:13:20 -0400841 right_buf = read_tree_block(root,
842 btrfs_node_blockptr(btrfs_buffer_node(upper), slot + 1));
843 right = btrfs_buffer_leaf(right_buf);
Chris Mason123abc82007-03-14 14:14:43 -0400844 free_space = btrfs_leaf_free_space(root, right);
Chris Mason0783fcf2007-03-12 20:12:07 -0400845 if (free_space < data_size + sizeof(struct btrfs_item)) {
Chris Mason234b63a2007-03-13 10:46:10 -0400846 btrfs_block_release(root, right_buf);
Chris Mason00ec4c52007-02-24 12:47:20 -0500847 return 1;
848 }
Chris Mason02217ed2007-03-02 16:08:05 -0500849 /* cow and double check */
Chris Masone089f052007-03-16 16:20:31 -0400850 btrfs_cow_block(trans, root, right_buf, upper, slot + 1, &right_buf);
Chris Masone20d96d2007-03-22 12:13:20 -0400851 right = btrfs_buffer_leaf(right_buf);
Chris Mason123abc82007-03-14 14:14:43 -0400852 free_space = btrfs_leaf_free_space(root, right);
Chris Mason0783fcf2007-03-12 20:12:07 -0400853 if (free_space < data_size + sizeof(struct btrfs_item)) {
Chris Mason234b63a2007-03-13 10:46:10 -0400854 btrfs_block_release(root, right_buf);
Chris Mason02217ed2007-03-02 16:08:05 -0500855 return 1;
856 }
857
Chris Mason7518a232007-03-12 12:01:18 -0400858 left_nritems = btrfs_header_nritems(&left->header);
859 for (i = left_nritems - 1; i >= 0; i--) {
Chris Mason00ec4c52007-02-24 12:47:20 -0500860 item = left->items + i;
861 if (path->slots[0] == i)
862 push_space += data_size + sizeof(*item);
Chris Mason0783fcf2007-03-12 20:12:07 -0400863 if (btrfs_item_size(item) + sizeof(*item) + push_space >
864 free_space)
Chris Mason00ec4c52007-02-24 12:47:20 -0500865 break;
866 push_items++;
Chris Mason0783fcf2007-03-12 20:12:07 -0400867 push_space += btrfs_item_size(item) + sizeof(*item);
Chris Mason00ec4c52007-02-24 12:47:20 -0500868 }
869 if (push_items == 0) {
Chris Mason234b63a2007-03-13 10:46:10 -0400870 btrfs_block_release(root, right_buf);
Chris Mason00ec4c52007-02-24 12:47:20 -0500871 return 1;
872 }
Chris Mason7518a232007-03-12 12:01:18 -0400873 right_nritems = btrfs_header_nritems(&right->header);
Chris Mason00ec4c52007-02-24 12:47:20 -0500874 /* push left to right */
Chris Mason0783fcf2007-03-12 20:12:07 -0400875 push_space = btrfs_item_end(left->items + left_nritems - push_items);
Chris Mason123abc82007-03-14 14:14:43 -0400876 push_space -= leaf_data_end(root, left);
Chris Mason00ec4c52007-02-24 12:47:20 -0500877 /* make room in the right data area */
Chris Mason123abc82007-03-14 14:14:43 -0400878 memmove(btrfs_leaf_data(right) + leaf_data_end(root, right) -
879 push_space, btrfs_leaf_data(right) + leaf_data_end(root, right),
880 BTRFS_LEAF_DATA_SIZE(root) - leaf_data_end(root, right));
Chris Mason00ec4c52007-02-24 12:47:20 -0500881 /* copy from the left data area */
Chris Mason123abc82007-03-14 14:14:43 -0400882 memcpy(btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) - push_space,
883 btrfs_leaf_data(left) + leaf_data_end(root, left), push_space);
Chris Mason00ec4c52007-02-24 12:47:20 -0500884 memmove(right->items + push_items, right->items,
Chris Mason0783fcf2007-03-12 20:12:07 -0400885 right_nritems * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -0500886 /* copy the items from left to right */
Chris Mason7518a232007-03-12 12:01:18 -0400887 memcpy(right->items, left->items + left_nritems - push_items,
Chris Mason0783fcf2007-03-12 20:12:07 -0400888 push_items * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -0500889
890 /* update the item pointers */
Chris Mason7518a232007-03-12 12:01:18 -0400891 right_nritems += push_items;
892 btrfs_set_header_nritems(&right->header, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -0400893 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason7518a232007-03-12 12:01:18 -0400894 for (i = 0; i < right_nritems; i++) {
Chris Mason0783fcf2007-03-12 20:12:07 -0400895 btrfs_set_item_offset(right->items + i, push_space -
896 btrfs_item_size(right->items + i));
897 push_space = btrfs_item_offset(right->items + i);
Chris Mason00ec4c52007-02-24 12:47:20 -0500898 }
Chris Mason7518a232007-03-12 12:01:18 -0400899 left_nritems -= push_items;
900 btrfs_set_header_nritems(&left->header, left_nritems);
Chris Mason00ec4c52007-02-24 12:47:20 -0500901
Chris Masond5719762007-03-23 10:01:08 -0400902 mark_buffer_dirty(left_buf);
903 mark_buffer_dirty(right_buf);
Chris Masone20d96d2007-03-22 12:13:20 -0400904 memcpy(&upper_node->ptrs[slot + 1].key,
Chris Masone2fa7222007-03-12 16:22:34 -0400905 &right->items[0].key, sizeof(struct btrfs_disk_key));
Chris Masond5719762007-03-23 10:01:08 -0400906 mark_buffer_dirty(upper);
Chris Mason02217ed2007-03-02 16:08:05 -0500907
Chris Mason00ec4c52007-02-24 12:47:20 -0500908 /* then fixup the leaf pointer in the path */
Chris Mason7518a232007-03-12 12:01:18 -0400909 if (path->slots[0] >= left_nritems) {
910 path->slots[0] -= left_nritems;
Chris Mason234b63a2007-03-13 10:46:10 -0400911 btrfs_block_release(root, path->nodes[0]);
Chris Mason00ec4c52007-02-24 12:47:20 -0500912 path->nodes[0] = right_buf;
913 path->slots[1] += 1;
914 } else {
Chris Mason234b63a2007-03-13 10:46:10 -0400915 btrfs_block_release(root, right_buf);
Chris Mason00ec4c52007-02-24 12:47:20 -0500916 }
917 return 0;
918}
919/*
Chris Mason74123bd2007-02-02 11:05:29 -0500920 * push some data in the path leaf to the left, trying to free up at
921 * least data_size bytes. returns zero if the push worked, nonzero otherwise
922 */
Chris Masone089f052007-03-16 16:20:31 -0400923static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
924 *root, struct btrfs_path *path, int data_size)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500925{
Chris Masone20d96d2007-03-22 12:13:20 -0400926 struct buffer_head *right_buf = path->nodes[0];
927 struct btrfs_leaf *right = btrfs_buffer_leaf(right_buf);
928 struct buffer_head *t;
Chris Mason234b63a2007-03-13 10:46:10 -0400929 struct btrfs_leaf *left;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500930 int slot;
931 int i;
932 int free_space;
933 int push_space = 0;
934 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -0400935 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -0400936 u32 old_left_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -0500937 int ret = 0;
938 int wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -0500939
940 slot = path->slots[1];
941 if (slot == 0) {
942 return 1;
943 }
944 if (!path->nodes[1]) {
945 return 1;
946 }
Chris Masone20d96d2007-03-22 12:13:20 -0400947 t = read_tree_block(root,
948 btrfs_node_blockptr(btrfs_buffer_node(path->nodes[1]), slot - 1));
949 left = btrfs_buffer_leaf(t);
Chris Mason123abc82007-03-14 14:14:43 -0400950 free_space = btrfs_leaf_free_space(root, left);
Chris Mason0783fcf2007-03-12 20:12:07 -0400951 if (free_space < data_size + sizeof(struct btrfs_item)) {
Chris Mason234b63a2007-03-13 10:46:10 -0400952 btrfs_block_release(root, t);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500953 return 1;
954 }
Chris Mason02217ed2007-03-02 16:08:05 -0500955
956 /* cow and double check */
Chris Masone089f052007-03-16 16:20:31 -0400957 btrfs_cow_block(trans, root, t, path->nodes[1], slot - 1, &t);
Chris Masone20d96d2007-03-22 12:13:20 -0400958 left = btrfs_buffer_leaf(t);
Chris Mason123abc82007-03-14 14:14:43 -0400959 free_space = btrfs_leaf_free_space(root, left);
Chris Mason0783fcf2007-03-12 20:12:07 -0400960 if (free_space < data_size + sizeof(struct btrfs_item)) {
Chris Mason234b63a2007-03-13 10:46:10 -0400961 btrfs_block_release(root, t);
Chris Mason02217ed2007-03-02 16:08:05 -0500962 return 1;
963 }
964
Chris Mason7518a232007-03-12 12:01:18 -0400965 for (i = 0; i < btrfs_header_nritems(&right->header); i++) {
Chris Masonbe0e5c02007-01-26 15:51:26 -0500966 item = right->items + i;
967 if (path->slots[0] == i)
968 push_space += data_size + sizeof(*item);
Chris Mason0783fcf2007-03-12 20:12:07 -0400969 if (btrfs_item_size(item) + sizeof(*item) + push_space >
970 free_space)
Chris Masonbe0e5c02007-01-26 15:51:26 -0500971 break;
972 push_items++;
Chris Mason0783fcf2007-03-12 20:12:07 -0400973 push_space += btrfs_item_size(item) + sizeof(*item);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500974 }
975 if (push_items == 0) {
Chris Mason234b63a2007-03-13 10:46:10 -0400976 btrfs_block_release(root, t);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500977 return 1;
978 }
979 /* push data from right to left */
Chris Mason7518a232007-03-12 12:01:18 -0400980 memcpy(left->items + btrfs_header_nritems(&left->header),
Chris Mason0783fcf2007-03-12 20:12:07 -0400981 right->items, push_items * sizeof(struct btrfs_item));
Chris Mason123abc82007-03-14 14:14:43 -0400982 push_space = BTRFS_LEAF_DATA_SIZE(root) -
Chris Mason0783fcf2007-03-12 20:12:07 -0400983 btrfs_item_offset(right->items + push_items -1);
Chris Mason123abc82007-03-14 14:14:43 -0400984 memcpy(btrfs_leaf_data(left) + leaf_data_end(root, left) - push_space,
985 btrfs_leaf_data(right) +
986 btrfs_item_offset(right->items + push_items - 1),
Chris Masonbe0e5c02007-01-26 15:51:26 -0500987 push_space);
Chris Mason7518a232007-03-12 12:01:18 -0400988 old_left_nritems = btrfs_header_nritems(&left->header);
Chris Masoneb60cea2007-02-02 09:18:22 -0500989 BUG_ON(old_left_nritems < 0);
990
Chris Mason0783fcf2007-03-12 20:12:07 -0400991 for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
Chris Mason123abc82007-03-14 14:14:43 -0400992 u32 ioff = btrfs_item_offset(left->items + i);
993 btrfs_set_item_offset(left->items + i, ioff -
994 (BTRFS_LEAF_DATA_SIZE(root) -
Chris Mason0783fcf2007-03-12 20:12:07 -0400995 btrfs_item_offset(left->items +
996 old_left_nritems - 1)));
Chris Masonbe0e5c02007-01-26 15:51:26 -0500997 }
Chris Mason7518a232007-03-12 12:01:18 -0400998 btrfs_set_header_nritems(&left->header, old_left_nritems + push_items);
Chris Masonbe0e5c02007-01-26 15:51:26 -0500999
1000 /* fixup right node */
Chris Mason0783fcf2007-03-12 20:12:07 -04001001 push_space = btrfs_item_offset(right->items + push_items - 1) -
Chris Mason123abc82007-03-14 14:14:43 -04001002 leaf_data_end(root, right);
1003 memmove(btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
1004 push_space, btrfs_leaf_data(right) +
1005 leaf_data_end(root, right), push_space);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001006 memmove(right->items, right->items + push_items,
Chris Mason7518a232007-03-12 12:01:18 -04001007 (btrfs_header_nritems(&right->header) - push_items) *
Chris Mason0783fcf2007-03-12 20:12:07 -04001008 sizeof(struct btrfs_item));
Chris Mason7518a232007-03-12 12:01:18 -04001009 btrfs_set_header_nritems(&right->header,
1010 btrfs_header_nritems(&right->header) -
1011 push_items);
Chris Mason123abc82007-03-14 14:14:43 -04001012 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Masoneb60cea2007-02-02 09:18:22 -05001013
Chris Mason7518a232007-03-12 12:01:18 -04001014 for (i = 0; i < btrfs_header_nritems(&right->header); i++) {
Chris Mason0783fcf2007-03-12 20:12:07 -04001015 btrfs_set_item_offset(right->items + i, push_space -
1016 btrfs_item_size(right->items + i));
1017 push_space = btrfs_item_offset(right->items + i);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001018 }
Chris Masoneb60cea2007-02-02 09:18:22 -05001019
Chris Masond5719762007-03-23 10:01:08 -04001020 mark_buffer_dirty(t);
1021 mark_buffer_dirty(right_buf);
Chris Masoneb60cea2007-02-02 09:18:22 -05001022
Chris Masone089f052007-03-16 16:20:31 -04001023 wret = fixup_low_keys(trans, root, path, &right->items[0].key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001024 if (wret)
1025 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001026
1027 /* then fixup the leaf pointer in the path */
1028 if (path->slots[0] < push_items) {
1029 path->slots[0] += old_left_nritems;
Chris Mason234b63a2007-03-13 10:46:10 -04001030 btrfs_block_release(root, path->nodes[0]);
Chris Masoneb60cea2007-02-02 09:18:22 -05001031 path->nodes[0] = t;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001032 path->slots[1] -= 1;
1033 } else {
Chris Mason234b63a2007-03-13 10:46:10 -04001034 btrfs_block_release(root, t);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001035 path->slots[0] -= push_items;
1036 }
Chris Masoneb60cea2007-02-02 09:18:22 -05001037 BUG_ON(path->slots[0] < 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001038 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001039}
1040
Chris Mason74123bd2007-02-02 11:05:29 -05001041/*
1042 * split the path's leaf in two, making sure there is at least data_size
1043 * available for the resulting leaf level of the path.
Chris Masonaa5d6be2007-02-28 16:35:06 -05001044 *
1045 * returns 0 if all went well and < 0 on failure.
Chris Mason74123bd2007-02-02 11:05:29 -05001046 */
Chris Masone089f052007-03-16 16:20:31 -04001047static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root
1048 *root, struct btrfs_path *path, int data_size)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001049{
Chris Masone20d96d2007-03-22 12:13:20 -04001050 struct buffer_head *l_buf;
Chris Mason234b63a2007-03-13 10:46:10 -04001051 struct btrfs_leaf *l;
Chris Mason7518a232007-03-12 12:01:18 -04001052 u32 nritems;
Chris Masoneb60cea2007-02-02 09:18:22 -05001053 int mid;
1054 int slot;
Chris Mason234b63a2007-03-13 10:46:10 -04001055 struct btrfs_leaf *right;
Chris Masone20d96d2007-03-22 12:13:20 -04001056 struct buffer_head *right_buffer;
Chris Mason0783fcf2007-03-12 20:12:07 -04001057 int space_needed = data_size + sizeof(struct btrfs_item);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001058 int data_copy_size;
1059 int rt_data_off;
1060 int i;
1061 int ret;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001062 int wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001063
Chris Mason40689472007-03-17 14:29:23 -04001064 /* first try to make some room by pushing left and right */
Chris Masone089f052007-03-16 16:20:31 -04001065 wret = push_leaf_left(trans, root, path, data_size);
Chris Masoneaee50e2007-03-13 11:17:52 -04001066 if (wret < 0)
1067 return wret;
1068 if (wret) {
Chris Masone089f052007-03-16 16:20:31 -04001069 wret = push_leaf_right(trans, root, path, data_size);
Chris Masoneaee50e2007-03-13 11:17:52 -04001070 if (wret < 0)
1071 return wret;
1072 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05001073 l_buf = path->nodes[0];
Chris Masone20d96d2007-03-22 12:13:20 -04001074 l = btrfs_buffer_leaf(l_buf);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001075
1076 /* did the pushes work? */
Chris Mason123abc82007-03-14 14:14:43 -04001077 if (btrfs_leaf_free_space(root, l) >=
1078 sizeof(struct btrfs_item) + data_size)
Chris Masonaa5d6be2007-02-28 16:35:06 -05001079 return 0;
1080
Chris Mason5c680ed2007-02-22 11:39:13 -05001081 if (!path->nodes[1]) {
Chris Masone089f052007-03-16 16:20:31 -04001082 ret = insert_new_root(trans, root, path, 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05001083 if (ret)
1084 return ret;
1085 }
Chris Masoneb60cea2007-02-02 09:18:22 -05001086 slot = path->slots[0];
Chris Mason7518a232007-03-12 12:01:18 -04001087 nritems = btrfs_header_nritems(&l->header);
Chris Masoneb60cea2007-02-02 09:18:22 -05001088 mid = (nritems + 1)/ 2;
Chris Masone089f052007-03-16 16:20:31 -04001089 right_buffer = btrfs_alloc_free_block(trans, root);
Chris Masoneb60cea2007-02-02 09:18:22 -05001090 BUG_ON(!right_buffer);
1091 BUG_ON(mid == nritems);
Chris Masone20d96d2007-03-22 12:13:20 -04001092 right = btrfs_buffer_leaf(right_buffer);
Chris Mason123abc82007-03-14 14:14:43 -04001093 memset(&right->header, 0, sizeof(right->header));
Chris Masonbe0e5c02007-01-26 15:51:26 -05001094 if (mid <= slot) {
Chris Mason97571fd2007-02-24 13:39:08 -05001095 /* FIXME, just alloc a new leaf here */
Chris Masonbe0e5c02007-01-26 15:51:26 -05001096 if (leaf_space_used(l, mid, nritems - mid) + space_needed >
Chris Mason123abc82007-03-14 14:14:43 -04001097 BTRFS_LEAF_DATA_SIZE(root))
Chris Masonbe0e5c02007-01-26 15:51:26 -05001098 BUG();
1099 } else {
Chris Mason97571fd2007-02-24 13:39:08 -05001100 /* FIXME, just alloc a new leaf here */
Chris Masonbe0e5c02007-01-26 15:51:26 -05001101 if (leaf_space_used(l, 0, mid + 1) + space_needed >
Chris Mason123abc82007-03-14 14:14:43 -04001102 BTRFS_LEAF_DATA_SIZE(root))
Chris Masonbe0e5c02007-01-26 15:51:26 -05001103 BUG();
1104 }
Chris Mason7518a232007-03-12 12:01:18 -04001105 btrfs_set_header_nritems(&right->header, nritems - mid);
Chris Masone20d96d2007-03-22 12:13:20 -04001106 btrfs_set_header_blocknr(&right->header, right_buffer->b_blocknr);
Chris Mason7f5c1512007-03-23 15:56:19 -04001107 btrfs_set_header_generation(&right->header, trans->transid);
Chris Mason7518a232007-03-12 12:01:18 -04001108 btrfs_set_header_level(&right->header, 0);
1109 btrfs_set_header_parentid(&right->header,
Chris Masone20d96d2007-03-22 12:13:20 -04001110 btrfs_header_parentid(btrfs_buffer_header(root->node)));
Chris Mason123abc82007-03-14 14:14:43 -04001111 data_copy_size = btrfs_item_end(l->items + mid) -
1112 leaf_data_end(root, l);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001113 memcpy(right->items, l->items + mid,
Chris Mason0783fcf2007-03-12 20:12:07 -04001114 (nritems - mid) * sizeof(struct btrfs_item));
Chris Mason123abc82007-03-14 14:14:43 -04001115 memcpy(btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
1116 data_copy_size, btrfs_leaf_data(l) +
1117 leaf_data_end(root, l), data_copy_size);
1118 rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
1119 btrfs_item_end(l->items + mid);
Chris Mason74123bd2007-02-02 11:05:29 -05001120
Chris Mason0783fcf2007-03-12 20:12:07 -04001121 for (i = 0; i < btrfs_header_nritems(&right->header); i++) {
Chris Mason123abc82007-03-14 14:14:43 -04001122 u32 ioff = btrfs_item_offset(right->items + i);
Chris Mason0783fcf2007-03-12 20:12:07 -04001123 btrfs_set_item_offset(right->items + i, ioff + rt_data_off);
1124 }
Chris Mason74123bd2007-02-02 11:05:29 -05001125
Chris Mason7518a232007-03-12 12:01:18 -04001126 btrfs_set_header_nritems(&l->header, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001127 ret = 0;
Chris Masone089f052007-03-16 16:20:31 -04001128 wret = insert_ptr(trans, root, path, &right->items[0].key,
Chris Masone20d96d2007-03-22 12:13:20 -04001129 right_buffer->b_blocknr, path->slots[1] + 1, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001130 if (wret)
1131 ret = wret;
Chris Masond5719762007-03-23 10:01:08 -04001132 mark_buffer_dirty(right_buffer);
1133 mark_buffer_dirty(l_buf);
Chris Masoneb60cea2007-02-02 09:18:22 -05001134 BUG_ON(path->slots[0] != slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001135 if (mid <= slot) {
Chris Mason234b63a2007-03-13 10:46:10 -04001136 btrfs_block_release(root, path->nodes[0]);
Chris Masoneb60cea2007-02-02 09:18:22 -05001137 path->nodes[0] = right_buffer;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001138 path->slots[0] -= mid;
1139 path->slots[1] += 1;
Chris Masoneb60cea2007-02-02 09:18:22 -05001140 } else
Chris Mason234b63a2007-03-13 10:46:10 -04001141 btrfs_block_release(root, right_buffer);
Chris Masoneb60cea2007-02-02 09:18:22 -05001142 BUG_ON(path->slots[0] < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001143 return ret;
1144}
1145
Chris Mason74123bd2007-02-02 11:05:29 -05001146/*
1147 * Given a key and some data, insert an item into the tree.
1148 * This does all the path init required, making room in the tree if needed.
1149 */
Chris Masone089f052007-03-16 16:20:31 -04001150int btrfs_insert_empty_item(struct btrfs_trans_handle *trans, struct btrfs_root
1151 *root, struct btrfs_path *path, struct btrfs_key
1152 *cpu_key, u32 data_size)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001153{
Chris Masonaa5d6be2007-02-28 16:35:06 -05001154 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001155 int slot;
Chris Masoneb60cea2007-02-02 09:18:22 -05001156 int slot_orig;
Chris Mason234b63a2007-03-13 10:46:10 -04001157 struct btrfs_leaf *leaf;
Chris Masone20d96d2007-03-22 12:13:20 -04001158 struct buffer_head *leaf_buf;
Chris Mason7518a232007-03-12 12:01:18 -04001159 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001160 unsigned int data_end;
Chris Masone2fa7222007-03-12 16:22:34 -04001161 struct btrfs_disk_key disk_key;
1162
1163 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001164
Chris Mason74123bd2007-02-02 11:05:29 -05001165 /* create a root if there isn't one */
Chris Mason5c680ed2007-02-22 11:39:13 -05001166 if (!root->node)
Chris Masoncfaa7292007-02-21 17:04:57 -05001167 BUG();
Chris Masone089f052007-03-16 16:20:31 -04001168 ret = btrfs_search_slot(trans, root, cpu_key, path, data_size, 1);
Chris Masoneb60cea2007-02-02 09:18:22 -05001169 if (ret == 0) {
Chris Masonf0930a32007-03-02 09:47:58 -05001170 return -EEXIST;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001171 }
Chris Masoned2ff2c2007-03-01 18:59:40 -05001172 if (ret < 0)
1173 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001174
Chris Mason62e27492007-03-15 12:56:47 -04001175 slot_orig = path->slots[0];
1176 leaf_buf = path->nodes[0];
Chris Masone20d96d2007-03-22 12:13:20 -04001177 leaf = btrfs_buffer_leaf(leaf_buf);
Chris Mason74123bd2007-02-02 11:05:29 -05001178
Chris Mason7518a232007-03-12 12:01:18 -04001179 nritems = btrfs_header_nritems(&leaf->header);
Chris Mason123abc82007-03-14 14:14:43 -04001180 data_end = leaf_data_end(root, leaf);
Chris Masoneb60cea2007-02-02 09:18:22 -05001181
Chris Mason123abc82007-03-14 14:14:43 -04001182 if (btrfs_leaf_free_space(root, leaf) <
Chris Mason234b63a2007-03-13 10:46:10 -04001183 sizeof(struct btrfs_item) + data_size)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001184 BUG();
1185
Chris Mason62e27492007-03-15 12:56:47 -04001186 slot = path->slots[0];
Chris Masoneb60cea2007-02-02 09:18:22 -05001187 BUG_ON(slot < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001188 if (slot != nritems) {
1189 int i;
Chris Mason0783fcf2007-03-12 20:12:07 -04001190 unsigned int old_data = btrfs_item_end(leaf->items + slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001191
1192 /*
1193 * item0..itemN ... dataN.offset..dataN.size .. data0.size
1194 */
1195 /* first correct the data pointers */
Chris Mason0783fcf2007-03-12 20:12:07 -04001196 for (i = slot; i < nritems; i++) {
Chris Mason123abc82007-03-14 14:14:43 -04001197 u32 ioff = btrfs_item_offset(leaf->items + i);
Chris Mason0783fcf2007-03-12 20:12:07 -04001198 btrfs_set_item_offset(leaf->items + i,
1199 ioff - data_size);
1200 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001201
1202 /* shift the items */
1203 memmove(leaf->items + slot + 1, leaf->items + slot,
Chris Mason0783fcf2007-03-12 20:12:07 -04001204 (nritems - slot) * sizeof(struct btrfs_item));
Chris Masonbe0e5c02007-01-26 15:51:26 -05001205
1206 /* shift the data */
Chris Mason123abc82007-03-14 14:14:43 -04001207 memmove(btrfs_leaf_data(leaf) + data_end - data_size,
1208 btrfs_leaf_data(leaf) +
Chris Masonbe0e5c02007-01-26 15:51:26 -05001209 data_end, old_data - data_end);
1210 data_end = old_data;
1211 }
Chris Mason62e27492007-03-15 12:56:47 -04001212 /* setup the item for the new data */
Chris Masone2fa7222007-03-12 16:22:34 -04001213 memcpy(&leaf->items[slot].key, &disk_key,
1214 sizeof(struct btrfs_disk_key));
Chris Mason0783fcf2007-03-12 20:12:07 -04001215 btrfs_set_item_offset(leaf->items + slot, data_end - data_size);
1216 btrfs_set_item_size(leaf->items + slot, data_size);
Chris Mason7518a232007-03-12 12:01:18 -04001217 btrfs_set_header_nritems(&leaf->header, nritems + 1);
Chris Masond5719762007-03-23 10:01:08 -04001218 mark_buffer_dirty(leaf_buf);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001219
1220 ret = 0;
Chris Mason8e19f2c2007-02-28 09:27:02 -05001221 if (slot == 0)
Chris Masone089f052007-03-16 16:20:31 -04001222 ret = fixup_low_keys(trans, root, path, &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001223
Chris Mason123abc82007-03-14 14:14:43 -04001224 if (btrfs_leaf_free_space(root, leaf) < 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001225 BUG();
Chris Mason62e27492007-03-15 12:56:47 -04001226 check_leaf(root, path, 0);
Chris Masoned2ff2c2007-03-01 18:59:40 -05001227out:
Chris Mason62e27492007-03-15 12:56:47 -04001228 return ret;
1229}
1230
1231/*
1232 * Given a key and some data, insert an item into the tree.
1233 * This does all the path init required, making room in the tree if needed.
1234 */
Chris Masone089f052007-03-16 16:20:31 -04001235int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
1236 *root, struct btrfs_key *cpu_key, void *data, u32
1237 data_size)
Chris Mason62e27492007-03-15 12:56:47 -04001238{
1239 int ret = 0;
1240 struct btrfs_path path;
1241 u8 *ptr;
1242
1243 btrfs_init_path(&path);
Chris Masone089f052007-03-16 16:20:31 -04001244 ret = btrfs_insert_empty_item(trans, root, &path, cpu_key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -04001245 if (!ret) {
Chris Masone20d96d2007-03-22 12:13:20 -04001246 ptr = btrfs_item_ptr(btrfs_buffer_leaf(path.nodes[0]),
1247 path.slots[0], u8);
Chris Mason62e27492007-03-15 12:56:47 -04001248 memcpy(ptr, data, data_size);
Chris Masond5719762007-03-23 10:01:08 -04001249 mark_buffer_dirty(path.nodes[0]);
Chris Mason62e27492007-03-15 12:56:47 -04001250 }
Chris Mason234b63a2007-03-13 10:46:10 -04001251 btrfs_release_path(root, &path);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001252 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001253}
1254
Chris Mason74123bd2007-02-02 11:05:29 -05001255/*
Chris Mason5de08d72007-02-24 06:24:44 -05001256 * delete the pointer from a given node.
Chris Mason74123bd2007-02-02 11:05:29 -05001257 *
1258 * If the delete empties a node, the node is removed from the tree,
1259 * continuing all the way the root if required. The root is converted into
1260 * a leaf if all the nodes are emptied.
1261 */
Chris Masone089f052007-03-16 16:20:31 -04001262static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1263 struct btrfs_path *path, int level, int slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001264{
Chris Mason234b63a2007-03-13 10:46:10 -04001265 struct btrfs_node *node;
Chris Masone20d96d2007-03-22 12:13:20 -04001266 struct buffer_head *parent = path->nodes[level];
Chris Mason7518a232007-03-12 12:01:18 -04001267 u32 nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001268 int ret = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001269 int wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001270
Chris Masone20d96d2007-03-22 12:13:20 -04001271 node = btrfs_buffer_node(parent);
Chris Mason7518a232007-03-12 12:01:18 -04001272 nritems = btrfs_header_nritems(&node->header);
Chris Masonbb803952007-03-01 12:04:21 -05001273 if (slot != nritems -1) {
Chris Mason123abc82007-03-14 14:14:43 -04001274 memmove(node->ptrs + slot, node->ptrs + slot + 1,
1275 sizeof(struct btrfs_key_ptr) * (nritems - slot - 1));
Chris Masonbb803952007-03-01 12:04:21 -05001276 }
Chris Mason7518a232007-03-12 12:01:18 -04001277 nritems--;
1278 btrfs_set_header_nritems(&node->header, nritems);
1279 if (nritems == 0 && parent == root->node) {
Chris Masone20d96d2007-03-22 12:13:20 -04001280 struct btrfs_header *header = btrfs_buffer_header(root->node);
1281 BUG_ON(btrfs_header_level(header) != 1);
Chris Masonbb803952007-03-01 12:04:21 -05001282 /* just turn the root into a leaf and break */
Chris Masone20d96d2007-03-22 12:13:20 -04001283 btrfs_set_header_level(header, 0);
Chris Masonbb803952007-03-01 12:04:21 -05001284 } else if (slot == 0) {
Chris Masone089f052007-03-16 16:20:31 -04001285 wret = fixup_low_keys(trans, root, path, &node->ptrs[0].key,
Chris Mason123abc82007-03-14 14:14:43 -04001286 level + 1);
Chris Mason0f70abe2007-02-28 16:46:22 -05001287 if (wret)
1288 ret = wret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001289 }
Chris Masond5719762007-03-23 10:01:08 -04001290 mark_buffer_dirty(parent);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001291 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001292}
1293
Chris Mason74123bd2007-02-02 11:05:29 -05001294/*
1295 * delete the item at the leaf level in path. If that empties
1296 * the leaf, remove it from the tree
1297 */
Chris Masone089f052007-03-16 16:20:31 -04001298int btrfs_del_item(struct btrfs_trans_handle *trans, struct btrfs_root *root,
1299 struct btrfs_path *path)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001300{
Chris Masonbe0e5c02007-01-26 15:51:26 -05001301 int slot;
Chris Mason234b63a2007-03-13 10:46:10 -04001302 struct btrfs_leaf *leaf;
Chris Masone20d96d2007-03-22 12:13:20 -04001303 struct buffer_head *leaf_buf;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001304 int doff;
1305 int dsize;
Chris Masonaa5d6be2007-02-28 16:35:06 -05001306 int ret = 0;
1307 int wret;
Chris Mason7518a232007-03-12 12:01:18 -04001308 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001309
Chris Masoneb60cea2007-02-02 09:18:22 -05001310 leaf_buf = path->nodes[0];
Chris Masone20d96d2007-03-22 12:13:20 -04001311 leaf = btrfs_buffer_leaf(leaf_buf);
Chris Mason4920c9a2007-01-26 16:38:42 -05001312 slot = path->slots[0];
Chris Mason0783fcf2007-03-12 20:12:07 -04001313 doff = btrfs_item_offset(leaf->items + slot);
1314 dsize = btrfs_item_size(leaf->items + slot);
Chris Mason7518a232007-03-12 12:01:18 -04001315 nritems = btrfs_header_nritems(&leaf->header);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001316
Chris Mason7518a232007-03-12 12:01:18 -04001317 if (slot != nritems - 1) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001318 int i;
Chris Mason123abc82007-03-14 14:14:43 -04001319 int data_end = leaf_data_end(root, leaf);
1320 memmove(btrfs_leaf_data(leaf) + data_end + dsize,
1321 btrfs_leaf_data(leaf) + data_end,
Chris Masonbe0e5c02007-01-26 15:51:26 -05001322 doff - data_end);
Chris Mason0783fcf2007-03-12 20:12:07 -04001323 for (i = slot + 1; i < nritems; i++) {
Chris Mason123abc82007-03-14 14:14:43 -04001324 u32 ioff = btrfs_item_offset(leaf->items + i);
Chris Mason0783fcf2007-03-12 20:12:07 -04001325 btrfs_set_item_offset(leaf->items + i, ioff + dsize);
1326 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001327 memmove(leaf->items + slot, leaf->items + slot + 1,
Chris Mason0783fcf2007-03-12 20:12:07 -04001328 sizeof(struct btrfs_item) *
Chris Mason7518a232007-03-12 12:01:18 -04001329 (nritems - slot - 1));
Chris Masonbe0e5c02007-01-26 15:51:26 -05001330 }
Chris Mason7518a232007-03-12 12:01:18 -04001331 btrfs_set_header_nritems(&leaf->header, nritems - 1);
1332 nritems--;
Chris Mason74123bd2007-02-02 11:05:29 -05001333 /* delete the leaf if we've emptied it */
Chris Mason7518a232007-03-12 12:01:18 -04001334 if (nritems == 0) {
Chris Masoneb60cea2007-02-02 09:18:22 -05001335 if (leaf_buf == root->node) {
Chris Mason7518a232007-03-12 12:01:18 -04001336 btrfs_set_header_level(&leaf->header, 0);
Chris Mason9a8dd152007-02-23 08:38:36 -05001337 } else {
Chris Masone089f052007-03-16 16:20:31 -04001338 clean_tree_block(trans, root, leaf_buf);
1339 wret = del_ptr(trans, root, path, 1, path->slots[1]);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001340 if (wret)
1341 ret = wret;
Chris Masone089f052007-03-16 16:20:31 -04001342 wret = btrfs_free_extent(trans, root,
Chris Masone20d96d2007-03-22 12:13:20 -04001343 leaf_buf->b_blocknr, 1, 1);
Chris Mason0f70abe2007-02-28 16:46:22 -05001344 if (wret)
1345 ret = wret;
Chris Mason9a8dd152007-02-23 08:38:36 -05001346 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001347 } else {
Chris Mason7518a232007-03-12 12:01:18 -04001348 int used = leaf_space_used(leaf, 0, nritems);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001349 if (slot == 0) {
Chris Masone089f052007-03-16 16:20:31 -04001350 wret = fixup_low_keys(trans, root, path,
1351 &leaf->items[0].key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001352 if (wret)
1353 ret = wret;
1354 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05001355
Chris Mason74123bd2007-02-02 11:05:29 -05001356 /* delete the leaf if it is mostly empty */
Chris Mason123abc82007-03-14 14:14:43 -04001357 if (used < BTRFS_LEAF_DATA_SIZE(root) / 3) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001358 /* push_leaf_left fixes the path.
1359 * make sure the path still points to our leaf
1360 * for possible call to del_ptr below
1361 */
Chris Mason4920c9a2007-01-26 16:38:42 -05001362 slot = path->slots[1];
Chris Masone20d96d2007-03-22 12:13:20 -04001363 get_bh(leaf_buf);
Chris Masone089f052007-03-16 16:20:31 -04001364 wret = push_leaf_left(trans, root, path, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001365 if (wret < 0)
1366 ret = wret;
Chris Masonf0930a32007-03-02 09:47:58 -05001367 if (path->nodes[0] == leaf_buf &&
Chris Mason7518a232007-03-12 12:01:18 -04001368 btrfs_header_nritems(&leaf->header)) {
Chris Masone089f052007-03-16 16:20:31 -04001369 wret = push_leaf_right(trans, root, path, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001370 if (wret < 0)
1371 ret = wret;
1372 }
Chris Mason7518a232007-03-12 12:01:18 -04001373 if (btrfs_header_nritems(&leaf->header) == 0) {
Chris Masone20d96d2007-03-22 12:13:20 -04001374 u64 blocknr = leaf_buf->b_blocknr;
Chris Masone089f052007-03-16 16:20:31 -04001375 clean_tree_block(trans, root, leaf_buf);
1376 wret = del_ptr(trans, root, path, 1, slot);
Chris Masonaa5d6be2007-02-28 16:35:06 -05001377 if (wret)
1378 ret = wret;
Chris Mason234b63a2007-03-13 10:46:10 -04001379 btrfs_block_release(root, leaf_buf);
Chris Masone089f052007-03-16 16:20:31 -04001380 wret = btrfs_free_extent(trans, root, blocknr,
1381 1, 1);
Chris Mason0f70abe2007-02-28 16:46:22 -05001382 if (wret)
1383 ret = wret;
Chris Mason5de08d72007-02-24 06:24:44 -05001384 } else {
Chris Masond5719762007-03-23 10:01:08 -04001385 mark_buffer_dirty(leaf_buf);
Chris Mason234b63a2007-03-13 10:46:10 -04001386 btrfs_block_release(root, leaf_buf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001387 }
Chris Masond5719762007-03-23 10:01:08 -04001388 } else {
1389 mark_buffer_dirty(leaf_buf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001390 }
1391 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05001392 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001393}
1394
Chris Mason97571fd2007-02-24 13:39:08 -05001395/*
1396 * walk up the tree as far as required to find the next leaf.
Chris Mason0f70abe2007-02-28 16:46:22 -05001397 * returns 0 if it found something or 1 if there are no greater leaves.
1398 * returns < 0 on io errors.
Chris Mason97571fd2007-02-24 13:39:08 -05001399 */
Chris Mason234b63a2007-03-13 10:46:10 -04001400int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Masond97e63b2007-02-20 16:40:44 -05001401{
1402 int slot;
1403 int level = 1;
1404 u64 blocknr;
Chris Masone20d96d2007-03-22 12:13:20 -04001405 struct buffer_head *c;
1406 struct btrfs_node *c_node;
1407 struct buffer_head *next = NULL;
Chris Masond97e63b2007-02-20 16:40:44 -05001408
Chris Mason234b63a2007-03-13 10:46:10 -04001409 while(level < BTRFS_MAX_LEVEL) {
Chris Masond97e63b2007-02-20 16:40:44 -05001410 if (!path->nodes[level])
Chris Mason0f70abe2007-02-28 16:46:22 -05001411 return 1;
Chris Masond97e63b2007-02-20 16:40:44 -05001412 slot = path->slots[level] + 1;
1413 c = path->nodes[level];
Chris Masone20d96d2007-03-22 12:13:20 -04001414 c_node = btrfs_buffer_node(c);
1415 if (slot >= btrfs_header_nritems(&c_node->header)) {
Chris Masond97e63b2007-02-20 16:40:44 -05001416 level++;
1417 continue;
1418 }
Chris Masone20d96d2007-03-22 12:13:20 -04001419 blocknr = btrfs_node_blockptr(c_node, slot);
Chris Masoncfaa7292007-02-21 17:04:57 -05001420 if (next)
Chris Mason234b63a2007-03-13 10:46:10 -04001421 btrfs_block_release(root, next);
Chris Masond97e63b2007-02-20 16:40:44 -05001422 next = read_tree_block(root, blocknr);
1423 break;
1424 }
1425 path->slots[level] = slot;
1426 while(1) {
1427 level--;
1428 c = path->nodes[level];
Chris Mason234b63a2007-03-13 10:46:10 -04001429 btrfs_block_release(root, c);
Chris Masond97e63b2007-02-20 16:40:44 -05001430 path->nodes[level] = next;
1431 path->slots[level] = 0;
1432 if (!level)
1433 break;
Chris Mason1d4f8a02007-03-13 09:28:32 -04001434 next = read_tree_block(root,
Chris Masone20d96d2007-03-22 12:13:20 -04001435 btrfs_node_blockptr(btrfs_buffer_node(next), 0));
Chris Masond97e63b2007-02-20 16:40:44 -05001436 }
1437 return 0;
1438}