]>
Commit | Line | Data |
---|---|---|
6cbd5570 | 1 | /* |
d352ac68 | 2 | * Copyright (C) 2007,2008 Oracle. All rights reserved. |
6cbd5570 CM |
3 | * |
4 | * This program is free software; you can redistribute it and/or | |
5 | * modify it under the terms of the GNU General Public | |
6 | * License v2 as published by the Free Software Foundation. | |
7 | * | |
8 | * This program is distributed in the hope that it will be useful, | |
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
11 | * General Public License for more details. | |
12 | * | |
13 | * You should have received a copy of the GNU General Public | |
14 | * License along with this program; if not, write to the | |
15 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
16 | * Boston, MA 021110-1307, USA. | |
17 | */ | |
18 | ||
a6b6e75e | 19 | #include <linux/sched.h> |
5a0e3ad6 | 20 | #include <linux/slab.h> |
eb60ceac CM |
21 | #include "ctree.h" |
22 | #include "disk-io.h" | |
7f5c1516 | 23 | #include "transaction.h" |
5f39d397 | 24 | #include "print-tree.h" |
925baedd | 25 | #include "locking.h" |
9a8dd150 | 26 | |
e089f05c CM |
27 | static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root |
28 | *root, struct btrfs_path *path, int level); | |
29 | static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root | |
d4dbff95 | 30 | *root, struct btrfs_key *ins_key, |
cc0c5538 | 31 | struct btrfs_path *path, int data_size, int extend); |
5f39d397 CM |
32 | static int push_node_left(struct btrfs_trans_handle *trans, |
33 | struct btrfs_root *root, struct extent_buffer *dst, | |
971a1f66 | 34 | struct extent_buffer *src, int empty); |
5f39d397 CM |
35 | static int balance_node_right(struct btrfs_trans_handle *trans, |
36 | struct btrfs_root *root, | |
37 | struct extent_buffer *dst_buf, | |
38 | struct extent_buffer *src_buf); | |
e089f05c CM |
39 | static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
40 | struct btrfs_path *path, int level, int slot); | |
d97e63b6 | 41 | |
df24a2b9 | 42 | struct btrfs_path *btrfs_alloc_path(void) |
2c90e5d6 | 43 | { |
df24a2b9 | 44 | struct btrfs_path *path; |
e00f7308 | 45 | path = kmem_cache_zalloc(btrfs_path_cachep, GFP_NOFS); |
df24a2b9 | 46 | return path; |
2c90e5d6 CM |
47 | } |
48 | ||
b4ce94de CM |
49 | /* |
50 | * set all locked nodes in the path to blocking locks. This should | |
51 | * be done before scheduling | |
52 | */ | |
53 | noinline void btrfs_set_path_blocking(struct btrfs_path *p) | |
54 | { | |
55 | int i; | |
56 | for (i = 0; i < BTRFS_MAX_LEVEL; i++) { | |
bd681513 CM |
57 | if (!p->nodes[i] || !p->locks[i]) |
58 | continue; | |
59 | btrfs_set_lock_blocking_rw(p->nodes[i], p->locks[i]); | |
60 | if (p->locks[i] == BTRFS_READ_LOCK) | |
61 | p->locks[i] = BTRFS_READ_LOCK_BLOCKING; | |
62 | else if (p->locks[i] == BTRFS_WRITE_LOCK) | |
63 | p->locks[i] = BTRFS_WRITE_LOCK_BLOCKING; | |
b4ce94de CM |
64 | } |
65 | } | |
66 | ||
67 | /* | |
68 | * reset all the locked nodes in the patch to spinning locks. | |
4008c04a CM |
69 | * |
70 | * held is used to keep lockdep happy, when lockdep is enabled | |
71 | * we set held to a blocking lock before we go around and | |
72 | * retake all the spinlocks in the path. You can safely use NULL | |
73 | * for held | |
b4ce94de | 74 | */ |
4008c04a | 75 | noinline void btrfs_clear_path_blocking(struct btrfs_path *p, |
bd681513 | 76 | struct extent_buffer *held, int held_rw) |
b4ce94de CM |
77 | { |
78 | int i; | |
4008c04a CM |
79 | |
80 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | |
81 | /* lockdep really cares that we take all of these spinlocks | |
82 | * in the right order. If any of the locks in the path are not | |
83 | * currently blocking, it is going to complain. So, make really | |
84 | * really sure by forcing the path to blocking before we clear | |
85 | * the path blocking. | |
86 | */ | |
bd681513 CM |
87 | if (held) { |
88 | btrfs_set_lock_blocking_rw(held, held_rw); | |
89 | if (held_rw == BTRFS_WRITE_LOCK) | |
90 | held_rw = BTRFS_WRITE_LOCK_BLOCKING; | |
91 | else if (held_rw == BTRFS_READ_LOCK) | |
92 | held_rw = BTRFS_READ_LOCK_BLOCKING; | |
93 | } | |
4008c04a CM |
94 | btrfs_set_path_blocking(p); |
95 | #endif | |
96 | ||
97 | for (i = BTRFS_MAX_LEVEL - 1; i >= 0; i--) { | |
bd681513 CM |
98 | if (p->nodes[i] && p->locks[i]) { |
99 | btrfs_clear_lock_blocking_rw(p->nodes[i], p->locks[i]); | |
100 | if (p->locks[i] == BTRFS_WRITE_LOCK_BLOCKING) | |
101 | p->locks[i] = BTRFS_WRITE_LOCK; | |
102 | else if (p->locks[i] == BTRFS_READ_LOCK_BLOCKING) | |
103 | p->locks[i] = BTRFS_READ_LOCK; | |
104 | } | |
b4ce94de | 105 | } |
4008c04a CM |
106 | |
107 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | |
108 | if (held) | |
bd681513 | 109 | btrfs_clear_lock_blocking_rw(held, held_rw); |
4008c04a | 110 | #endif |
b4ce94de CM |
111 | } |
112 | ||
d352ac68 | 113 | /* this also releases the path */ |
df24a2b9 | 114 | void btrfs_free_path(struct btrfs_path *p) |
be0e5c09 | 115 | { |
ff175d57 JJ |
116 | if (!p) |
117 | return; | |
b3b4aa74 | 118 | btrfs_release_path(p); |
df24a2b9 | 119 | kmem_cache_free(btrfs_path_cachep, p); |
be0e5c09 CM |
120 | } |
121 | ||
d352ac68 CM |
122 | /* |
123 | * path release drops references on the extent buffers in the path | |
124 | * and it drops any locks held by this path | |
125 | * | |
126 | * It is safe to call this on paths that no locks or extent buffers held. | |
127 | */ | |
b3b4aa74 | 128 | noinline void btrfs_release_path(struct btrfs_path *p) |
eb60ceac CM |
129 | { |
130 | int i; | |
a2135011 | 131 | |
234b63a0 | 132 | for (i = 0; i < BTRFS_MAX_LEVEL; i++) { |
3f157a2f | 133 | p->slots[i] = 0; |
eb60ceac | 134 | if (!p->nodes[i]) |
925baedd CM |
135 | continue; |
136 | if (p->locks[i]) { | |
bd681513 | 137 | btrfs_tree_unlock_rw(p->nodes[i], p->locks[i]); |
925baedd CM |
138 | p->locks[i] = 0; |
139 | } | |
5f39d397 | 140 | free_extent_buffer(p->nodes[i]); |
3f157a2f | 141 | p->nodes[i] = NULL; |
eb60ceac CM |
142 | } |
143 | } | |
144 | ||
d352ac68 CM |
145 | /* |
146 | * safely gets a reference on the root node of a tree. A lock | |
147 | * is not taken, so a concurrent writer may put a different node | |
148 | * at the root of the tree. See btrfs_lock_root_node for the | |
149 | * looping required. | |
150 | * | |
151 | * The extent buffer returned by this has a reference taken, so | |
152 | * it won't disappear. It may stop being the root of the tree | |
153 | * at any time because there are no locks held. | |
154 | */ | |
925baedd CM |
155 | struct extent_buffer *btrfs_root_node(struct btrfs_root *root) |
156 | { | |
157 | struct extent_buffer *eb; | |
240f62c8 CM |
158 | |
159 | rcu_read_lock(); | |
160 | eb = rcu_dereference(root->node); | |
925baedd | 161 | extent_buffer_get(eb); |
240f62c8 | 162 | rcu_read_unlock(); |
925baedd CM |
163 | return eb; |
164 | } | |
165 | ||
d352ac68 CM |
166 | /* loop around taking references on and locking the root node of the |
167 | * tree until you end up with a lock on the root. A locked buffer | |
168 | * is returned, with a reference held. | |
169 | */ | |
925baedd CM |
170 | struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root) |
171 | { | |
172 | struct extent_buffer *eb; | |
173 | ||
d397712b | 174 | while (1) { |
925baedd CM |
175 | eb = btrfs_root_node(root); |
176 | btrfs_tree_lock(eb); | |
240f62c8 | 177 | if (eb == root->node) |
925baedd | 178 | break; |
925baedd CM |
179 | btrfs_tree_unlock(eb); |
180 | free_extent_buffer(eb); | |
181 | } | |
182 | return eb; | |
183 | } | |
184 | ||
bd681513 CM |
185 | /* loop around taking references on and locking the root node of the |
186 | * tree until you end up with a lock on the root. A locked buffer | |
187 | * is returned, with a reference held. | |
188 | */ | |
189 | struct extent_buffer *btrfs_read_lock_root_node(struct btrfs_root *root) | |
190 | { | |
191 | struct extent_buffer *eb; | |
192 | ||
193 | while (1) { | |
194 | eb = btrfs_root_node(root); | |
195 | btrfs_tree_read_lock(eb); | |
196 | if (eb == root->node) | |
197 | break; | |
198 | btrfs_tree_read_unlock(eb); | |
199 | free_extent_buffer(eb); | |
200 | } | |
201 | return eb; | |
202 | } | |
203 | ||
d352ac68 CM |
204 | /* cowonly root (everything not a reference counted cow subvolume), just get |
205 | * put onto a simple dirty list. transaction.c walks this to make sure they | |
206 | * get properly updated on disk. | |
207 | */ | |
0b86a832 CM |
208 | static void add_root_to_dirty_list(struct btrfs_root *root) |
209 | { | |
210 | if (root->track_dirty && list_empty(&root->dirty_list)) { | |
211 | list_add(&root->dirty_list, | |
212 | &root->fs_info->dirty_cowonly_roots); | |
213 | } | |
214 | } | |
215 | ||
d352ac68 CM |
216 | /* |
217 | * used by snapshot creation to make a copy of a root for a tree with | |
218 | * a given objectid. The buffer with the new root node is returned in | |
219 | * cow_ret, and this func returns zero on success or a negative error code. | |
220 | */ | |
be20aa9d CM |
221 | int btrfs_copy_root(struct btrfs_trans_handle *trans, |
222 | struct btrfs_root *root, | |
223 | struct extent_buffer *buf, | |
224 | struct extent_buffer **cow_ret, u64 new_root_objectid) | |
225 | { | |
226 | struct extent_buffer *cow; | |
be20aa9d CM |
227 | int ret = 0; |
228 | int level; | |
5d4f98a2 | 229 | struct btrfs_disk_key disk_key; |
be20aa9d CM |
230 | |
231 | WARN_ON(root->ref_cows && trans->transid != | |
232 | root->fs_info->running_transaction->transid); | |
233 | WARN_ON(root->ref_cows && trans->transid != root->last_trans); | |
234 | ||
235 | level = btrfs_header_level(buf); | |
5d4f98a2 YZ |
236 | if (level == 0) |
237 | btrfs_item_key(buf, &disk_key, 0); | |
238 | else | |
239 | btrfs_node_key(buf, &disk_key, 0); | |
31840ae1 | 240 | |
5d4f98a2 YZ |
241 | cow = btrfs_alloc_free_block(trans, root, buf->len, 0, |
242 | new_root_objectid, &disk_key, level, | |
243 | buf->start, 0); | |
244 | if (IS_ERR(cow)) | |
be20aa9d CM |
245 | return PTR_ERR(cow); |
246 | ||
247 | copy_extent_buffer(cow, buf, 0, 0, cow->len); | |
248 | btrfs_set_header_bytenr(cow, cow->start); | |
249 | btrfs_set_header_generation(cow, trans->transid); | |
5d4f98a2 YZ |
250 | btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV); |
251 | btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN | | |
252 | BTRFS_HEADER_FLAG_RELOC); | |
253 | if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID) | |
254 | btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC); | |
255 | else | |
256 | btrfs_set_header_owner(cow, new_root_objectid); | |
be20aa9d | 257 | |
2b82032c YZ |
258 | write_extent_buffer(cow, root->fs_info->fsid, |
259 | (unsigned long)btrfs_header_fsid(cow), | |
260 | BTRFS_FSID_SIZE); | |
261 | ||
be20aa9d | 262 | WARN_ON(btrfs_header_generation(buf) > trans->transid); |
5d4f98a2 YZ |
263 | if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID) |
264 | ret = btrfs_inc_ref(trans, root, cow, 1); | |
265 | else | |
266 | ret = btrfs_inc_ref(trans, root, cow, 0); | |
4aec2b52 | 267 | |
be20aa9d CM |
268 | if (ret) |
269 | return ret; | |
270 | ||
271 | btrfs_mark_buffer_dirty(cow); | |
272 | *cow_ret = cow; | |
273 | return 0; | |
274 | } | |
275 | ||
5d4f98a2 YZ |
276 | /* |
277 | * check if the tree block can be shared by multiple trees | |
278 | */ | |
279 | int btrfs_block_can_be_shared(struct btrfs_root *root, | |
280 | struct extent_buffer *buf) | |
281 | { | |
282 | /* | |
283 | * Tree blocks not in refernece counted trees and tree roots | |
284 | * are never shared. If a block was allocated after the last | |
285 | * snapshot and the block was not allocated by tree relocation, | |
286 | * we know the block is not shared. | |
287 | */ | |
288 | if (root->ref_cows && | |
289 | buf != root->node && buf != root->commit_root && | |
290 | (btrfs_header_generation(buf) <= | |
291 | btrfs_root_last_snapshot(&root->root_item) || | |
292 | btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC))) | |
293 | return 1; | |
294 | #ifdef BTRFS_COMPAT_EXTENT_TREE_V0 | |
295 | if (root->ref_cows && | |
296 | btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV) | |
297 | return 1; | |
298 | #endif | |
299 | return 0; | |
300 | } | |
301 | ||
302 | static noinline int update_ref_for_cow(struct btrfs_trans_handle *trans, | |
303 | struct btrfs_root *root, | |
304 | struct extent_buffer *buf, | |
f0486c68 YZ |
305 | struct extent_buffer *cow, |
306 | int *last_ref) | |
5d4f98a2 YZ |
307 | { |
308 | u64 refs; | |
309 | u64 owner; | |
310 | u64 flags; | |
311 | u64 new_flags = 0; | |
312 | int ret; | |
313 | ||
314 | /* | |
315 | * Backrefs update rules: | |
316 | * | |
317 | * Always use full backrefs for extent pointers in tree block | |
318 | * allocated by tree relocation. | |
319 | * | |
320 | * If a shared tree block is no longer referenced by its owner | |
321 | * tree (btrfs_header_owner(buf) == root->root_key.objectid), | |
322 | * use full backrefs for extent pointers in tree block. | |
323 | * | |
324 | * If a tree block is been relocating | |
325 | * (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID), | |
326 | * use full backrefs for extent pointers in tree block. | |
327 | * The reason for this is some operations (such as drop tree) | |
328 | * are only allowed for blocks use full backrefs. | |
329 | */ | |
330 | ||
331 | if (btrfs_block_can_be_shared(root, buf)) { | |
332 | ret = btrfs_lookup_extent_info(trans, root, buf->start, | |
333 | buf->len, &refs, &flags); | |
334 | BUG_ON(ret); | |
335 | BUG_ON(refs == 0); | |
336 | } else { | |
337 | refs = 1; | |
338 | if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID || | |
339 | btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV) | |
340 | flags = BTRFS_BLOCK_FLAG_FULL_BACKREF; | |
341 | else | |
342 | flags = 0; | |
343 | } | |
344 | ||
345 | owner = btrfs_header_owner(buf); | |
346 | BUG_ON(owner == BTRFS_TREE_RELOC_OBJECTID && | |
347 | !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)); | |
348 | ||
349 | if (refs > 1) { | |
350 | if ((owner == root->root_key.objectid || | |
351 | root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) && | |
352 | !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) { | |
353 | ret = btrfs_inc_ref(trans, root, buf, 1); | |
354 | BUG_ON(ret); | |
355 | ||
356 | if (root->root_key.objectid == | |
357 | BTRFS_TREE_RELOC_OBJECTID) { | |
358 | ret = btrfs_dec_ref(trans, root, buf, 0); | |
359 | BUG_ON(ret); | |
360 | ret = btrfs_inc_ref(trans, root, cow, 1); | |
361 | BUG_ON(ret); | |
362 | } | |
363 | new_flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF; | |
364 | } else { | |
365 | ||
366 | if (root->root_key.objectid == | |
367 | BTRFS_TREE_RELOC_OBJECTID) | |
368 | ret = btrfs_inc_ref(trans, root, cow, 1); | |
369 | else | |
370 | ret = btrfs_inc_ref(trans, root, cow, 0); | |
371 | BUG_ON(ret); | |
372 | } | |
373 | if (new_flags != 0) { | |
374 | ret = btrfs_set_disk_extent_flags(trans, root, | |
375 | buf->start, | |
376 | buf->len, | |
377 | new_flags, 0); | |
378 | BUG_ON(ret); | |
379 | } | |
380 | } else { | |
381 | if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) { | |
382 | if (root->root_key.objectid == | |
383 | BTRFS_TREE_RELOC_OBJECTID) | |
384 | ret = btrfs_inc_ref(trans, root, cow, 1); | |
385 | else | |
386 | ret = btrfs_inc_ref(trans, root, cow, 0); | |
387 | BUG_ON(ret); | |
388 | ret = btrfs_dec_ref(trans, root, buf, 1); | |
389 | BUG_ON(ret); | |
390 | } | |
391 | clean_tree_block(trans, root, buf); | |
f0486c68 | 392 | *last_ref = 1; |
5d4f98a2 YZ |
393 | } |
394 | return 0; | |
395 | } | |
396 | ||
d352ac68 | 397 | /* |
d397712b CM |
398 | * does the dirty work in cow of a single block. The parent block (if |
399 | * supplied) is updated to point to the new cow copy. The new buffer is marked | |
400 | * dirty and returned locked. If you modify the block it needs to be marked | |
401 | * dirty again. | |
d352ac68 CM |
402 | * |
403 | * search_start -- an allocation hint for the new block | |
404 | * | |
d397712b CM |
405 | * empty_size -- a hint that you plan on doing more cow. This is the size in |
406 | * bytes the allocator should try to find free next to the block it returns. | |
407 | * This is just a hint and may be ignored by the allocator. | |
d352ac68 | 408 | */ |
d397712b | 409 | static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans, |
5f39d397 CM |
410 | struct btrfs_root *root, |
411 | struct extent_buffer *buf, | |
412 | struct extent_buffer *parent, int parent_slot, | |
413 | struct extent_buffer **cow_ret, | |
9fa8cfe7 | 414 | u64 search_start, u64 empty_size) |
02217ed2 | 415 | { |
5d4f98a2 | 416 | struct btrfs_disk_key disk_key; |
5f39d397 | 417 | struct extent_buffer *cow; |
7bb86316 | 418 | int level; |
f0486c68 | 419 | int last_ref = 0; |
925baedd | 420 | int unlock_orig = 0; |
5d4f98a2 | 421 | u64 parent_start; |
7bb86316 | 422 | |
925baedd CM |
423 | if (*cow_ret == buf) |
424 | unlock_orig = 1; | |
425 | ||
b9447ef8 | 426 | btrfs_assert_tree_locked(buf); |
925baedd | 427 | |
7bb86316 CM |
428 | WARN_ON(root->ref_cows && trans->transid != |
429 | root->fs_info->running_transaction->transid); | |
6702ed49 | 430 | WARN_ON(root->ref_cows && trans->transid != root->last_trans); |
5f39d397 | 431 | |
7bb86316 | 432 | level = btrfs_header_level(buf); |
31840ae1 | 433 | |
5d4f98a2 YZ |
434 | if (level == 0) |
435 | btrfs_item_key(buf, &disk_key, 0); | |
436 | else | |
437 | btrfs_node_key(buf, &disk_key, 0); | |
438 | ||
439 | if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) { | |
440 | if (parent) | |
441 | parent_start = parent->start; | |
442 | else | |
443 | parent_start = 0; | |
444 | } else | |
445 | parent_start = 0; | |
446 | ||
447 | cow = btrfs_alloc_free_block(trans, root, buf->len, parent_start, | |
448 | root->root_key.objectid, &disk_key, | |
449 | level, search_start, empty_size); | |
54aa1f4d CM |
450 | if (IS_ERR(cow)) |
451 | return PTR_ERR(cow); | |
6702ed49 | 452 | |
b4ce94de CM |
453 | /* cow is set to blocking by btrfs_init_new_buffer */ |
454 | ||
5f39d397 | 455 | copy_extent_buffer(cow, buf, 0, 0, cow->len); |
db94535d | 456 | btrfs_set_header_bytenr(cow, cow->start); |
5f39d397 | 457 | btrfs_set_header_generation(cow, trans->transid); |
5d4f98a2 YZ |
458 | btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV); |
459 | btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN | | |
460 | BTRFS_HEADER_FLAG_RELOC); | |
461 | if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) | |
462 | btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC); | |
463 | else | |
464 | btrfs_set_header_owner(cow, root->root_key.objectid); | |
6702ed49 | 465 | |
2b82032c YZ |
466 | write_extent_buffer(cow, root->fs_info->fsid, |
467 | (unsigned long)btrfs_header_fsid(cow), | |
468 | BTRFS_FSID_SIZE); | |
469 | ||
f0486c68 | 470 | update_ref_for_cow(trans, root, buf, cow, &last_ref); |
1a40e23b | 471 | |
3fd0a558 YZ |
472 | if (root->ref_cows) |
473 | btrfs_reloc_cow_block(trans, root, buf, cow); | |
474 | ||
02217ed2 | 475 | if (buf == root->node) { |
925baedd | 476 | WARN_ON(parent && parent != buf); |
5d4f98a2 YZ |
477 | if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID || |
478 | btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV) | |
479 | parent_start = buf->start; | |
480 | else | |
481 | parent_start = 0; | |
925baedd | 482 | |
5f39d397 | 483 | extent_buffer_get(cow); |
240f62c8 | 484 | rcu_assign_pointer(root->node, cow); |
925baedd | 485 | |
f0486c68 YZ |
486 | btrfs_free_tree_block(trans, root, buf, parent_start, |
487 | last_ref); | |
5f39d397 | 488 | free_extent_buffer(buf); |
0b86a832 | 489 | add_root_to_dirty_list(root); |
02217ed2 | 490 | } else { |
5d4f98a2 YZ |
491 | if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) |
492 | parent_start = parent->start; | |
493 | else | |
494 | parent_start = 0; | |
495 | ||
496 | WARN_ON(trans->transid != btrfs_header_generation(parent)); | |
5f39d397 | 497 | btrfs_set_node_blockptr(parent, parent_slot, |
db94535d | 498 | cow->start); |
74493f7a CM |
499 | btrfs_set_node_ptr_generation(parent, parent_slot, |
500 | trans->transid); | |
d6025579 | 501 | btrfs_mark_buffer_dirty(parent); |
f0486c68 YZ |
502 | btrfs_free_tree_block(trans, root, buf, parent_start, |
503 | last_ref); | |
02217ed2 | 504 | } |
925baedd CM |
505 | if (unlock_orig) |
506 | btrfs_tree_unlock(buf); | |
5f39d397 | 507 | free_extent_buffer(buf); |
ccd467d6 | 508 | btrfs_mark_buffer_dirty(cow); |
2c90e5d6 | 509 | *cow_ret = cow; |
02217ed2 CM |
510 | return 0; |
511 | } | |
512 | ||
5d4f98a2 YZ |
513 | static inline int should_cow_block(struct btrfs_trans_handle *trans, |
514 | struct btrfs_root *root, | |
515 | struct extent_buffer *buf) | |
516 | { | |
f1ebcc74 LB |
517 | /* ensure we can see the force_cow */ |
518 | smp_rmb(); | |
519 | ||
520 | /* | |
521 | * We do not need to cow a block if | |
522 | * 1) this block is not created or changed in this transaction; | |
523 | * 2) this block does not belong to TREE_RELOC tree; | |
524 | * 3) the root is not forced COW. | |
525 | * | |
526 | * What is forced COW: | |
527 | * when we create snapshot during commiting the transaction, | |
528 | * after we've finished coping src root, we must COW the shared | |
529 | * block to ensure the metadata consistency. | |
530 | */ | |
5d4f98a2 YZ |
531 | if (btrfs_header_generation(buf) == trans->transid && |
532 | !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN) && | |
533 | !(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID && | |
f1ebcc74 LB |
534 | btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)) && |
535 | !root->force_cow) | |
5d4f98a2 YZ |
536 | return 0; |
537 | return 1; | |
538 | } | |
539 | ||
d352ac68 CM |
540 | /* |
541 | * cows a single block, see __btrfs_cow_block for the real work. | |
542 | * This version of it has extra checks so that a block isn't cow'd more than | |
543 | * once per transaction, as long as it hasn't been written yet | |
544 | */ | |
d397712b | 545 | noinline int btrfs_cow_block(struct btrfs_trans_handle *trans, |
5f39d397 CM |
546 | struct btrfs_root *root, struct extent_buffer *buf, |
547 | struct extent_buffer *parent, int parent_slot, | |
9fa8cfe7 | 548 | struct extent_buffer **cow_ret) |
6702ed49 CM |
549 | { |
550 | u64 search_start; | |
f510cfec | 551 | int ret; |
dc17ff8f | 552 | |
6702ed49 | 553 | if (trans->transaction != root->fs_info->running_transaction) { |
d397712b CM |
554 | printk(KERN_CRIT "trans %llu running %llu\n", |
555 | (unsigned long long)trans->transid, | |
556 | (unsigned long long) | |
6702ed49 CM |
557 | root->fs_info->running_transaction->transid); |
558 | WARN_ON(1); | |
559 | } | |
560 | if (trans->transid != root->fs_info->generation) { | |
d397712b CM |
561 | printk(KERN_CRIT "trans %llu running %llu\n", |
562 | (unsigned long long)trans->transid, | |
563 | (unsigned long long)root->fs_info->generation); | |
6702ed49 CM |
564 | WARN_ON(1); |
565 | } | |
dc17ff8f | 566 | |
5d4f98a2 | 567 | if (!should_cow_block(trans, root, buf)) { |
6702ed49 CM |
568 | *cow_ret = buf; |
569 | return 0; | |
570 | } | |
c487685d | 571 | |
0b86a832 | 572 | search_start = buf->start & ~((u64)(1024 * 1024 * 1024) - 1); |
b4ce94de CM |
573 | |
574 | if (parent) | |
575 | btrfs_set_lock_blocking(parent); | |
576 | btrfs_set_lock_blocking(buf); | |
577 | ||
f510cfec | 578 | ret = __btrfs_cow_block(trans, root, buf, parent, |
9fa8cfe7 | 579 | parent_slot, cow_ret, search_start, 0); |
1abe9b8a | 580 | |
581 | trace_btrfs_cow_block(root, buf, *cow_ret); | |
582 | ||
f510cfec | 583 | return ret; |
6702ed49 CM |
584 | } |
585 | ||
d352ac68 CM |
586 | /* |
587 | * helper function for defrag to decide if two blocks pointed to by a | |
588 | * node are actually close by | |
589 | */ | |
6b80053d | 590 | static int close_blocks(u64 blocknr, u64 other, u32 blocksize) |
6702ed49 | 591 | { |
6b80053d | 592 | if (blocknr < other && other - (blocknr + blocksize) < 32768) |
6702ed49 | 593 | return 1; |
6b80053d | 594 | if (blocknr > other && blocknr - (other + blocksize) < 32768) |
6702ed49 CM |
595 | return 1; |
596 | return 0; | |
597 | } | |
598 | ||
081e9573 CM |
599 | /* |
600 | * compare two keys in a memcmp fashion | |
601 | */ | |
602 | static int comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2) | |
603 | { | |
604 | struct btrfs_key k1; | |
605 | ||
606 | btrfs_disk_key_to_cpu(&k1, disk); | |
607 | ||
20736aba | 608 | return btrfs_comp_cpu_keys(&k1, k2); |
081e9573 CM |
609 | } |
610 | ||
f3465ca4 JB |
611 | /* |
612 | * same as comp_keys only with two btrfs_key's | |
613 | */ | |
5d4f98a2 | 614 | int btrfs_comp_cpu_keys(struct btrfs_key *k1, struct btrfs_key *k2) |
f3465ca4 JB |
615 | { |
616 | if (k1->objectid > k2->objectid) | |
617 | return 1; | |
618 | if (k1->objectid < k2->objectid) | |
619 | return -1; | |
620 | if (k1->type > k2->type) | |
621 | return 1; | |
622 | if (k1->type < k2->type) | |
623 | return -1; | |
624 | if (k1->offset > k2->offset) | |
625 | return 1; | |
626 | if (k1->offset < k2->offset) | |
627 | return -1; | |
628 | return 0; | |
629 | } | |
081e9573 | 630 | |
d352ac68 CM |
631 | /* |
632 | * this is used by the defrag code to go through all the | |
633 | * leaves pointed to by a node and reallocate them so that | |
634 | * disk order is close to key order | |
635 | */ | |
6702ed49 | 636 | int btrfs_realloc_node(struct btrfs_trans_handle *trans, |
5f39d397 | 637 | struct btrfs_root *root, struct extent_buffer *parent, |
a6b6e75e CM |
638 | int start_slot, int cache_only, u64 *last_ret, |
639 | struct btrfs_key *progress) | |
6702ed49 | 640 | { |
6b80053d | 641 | struct extent_buffer *cur; |
6702ed49 | 642 | u64 blocknr; |
ca7a79ad | 643 | u64 gen; |
e9d0b13b CM |
644 | u64 search_start = *last_ret; |
645 | u64 last_block = 0; | |
6702ed49 CM |
646 | u64 other; |
647 | u32 parent_nritems; | |
6702ed49 CM |
648 | int end_slot; |
649 | int i; | |
650 | int err = 0; | |
f2183bde | 651 | int parent_level; |
6b80053d CM |
652 | int uptodate; |
653 | u32 blocksize; | |
081e9573 CM |
654 | int progress_passed = 0; |
655 | struct btrfs_disk_key disk_key; | |
6702ed49 | 656 | |
5708b959 CM |
657 | parent_level = btrfs_header_level(parent); |
658 | if (cache_only && parent_level != 1) | |
659 | return 0; | |
660 | ||
d397712b | 661 | if (trans->transaction != root->fs_info->running_transaction) |
6702ed49 | 662 | WARN_ON(1); |
d397712b | 663 | if (trans->transid != root->fs_info->generation) |
6702ed49 | 664 | WARN_ON(1); |
86479a04 | 665 | |
6b80053d | 666 | parent_nritems = btrfs_header_nritems(parent); |
6b80053d | 667 | blocksize = btrfs_level_size(root, parent_level - 1); |
6702ed49 CM |
668 | end_slot = parent_nritems; |
669 | ||
670 | if (parent_nritems == 1) | |
671 | return 0; | |
672 | ||
b4ce94de CM |
673 | btrfs_set_lock_blocking(parent); |
674 | ||
6702ed49 CM |
675 | for (i = start_slot; i < end_slot; i++) { |
676 | int close = 1; | |
a6b6e75e | 677 | |
081e9573 CM |
678 | btrfs_node_key(parent, &disk_key, i); |
679 | if (!progress_passed && comp_keys(&disk_key, progress) < 0) | |
680 | continue; | |
681 | ||
682 | progress_passed = 1; | |
6b80053d | 683 | blocknr = btrfs_node_blockptr(parent, i); |
ca7a79ad | 684 | gen = btrfs_node_ptr_generation(parent, i); |
e9d0b13b CM |
685 | if (last_block == 0) |
686 | last_block = blocknr; | |
5708b959 | 687 | |
6702ed49 | 688 | if (i > 0) { |
6b80053d CM |
689 | other = btrfs_node_blockptr(parent, i - 1); |
690 | close = close_blocks(blocknr, other, blocksize); | |
6702ed49 | 691 | } |
0ef3e66b | 692 | if (!close && i < end_slot - 2) { |
6b80053d CM |
693 | other = btrfs_node_blockptr(parent, i + 1); |
694 | close = close_blocks(blocknr, other, blocksize); | |
6702ed49 | 695 | } |
e9d0b13b CM |
696 | if (close) { |
697 | last_block = blocknr; | |
6702ed49 | 698 | continue; |
e9d0b13b | 699 | } |
6702ed49 | 700 | |
6b80053d CM |
701 | cur = btrfs_find_tree_block(root, blocknr, blocksize); |
702 | if (cur) | |
1259ab75 | 703 | uptodate = btrfs_buffer_uptodate(cur, gen); |
6b80053d CM |
704 | else |
705 | uptodate = 0; | |
5708b959 | 706 | if (!cur || !uptodate) { |
6702ed49 | 707 | if (cache_only) { |
6b80053d | 708 | free_extent_buffer(cur); |
6702ed49 CM |
709 | continue; |
710 | } | |
6b80053d CM |
711 | if (!cur) { |
712 | cur = read_tree_block(root, blocknr, | |
ca7a79ad | 713 | blocksize, gen); |
97d9a8a4 TI |
714 | if (!cur) |
715 | return -EIO; | |
6b80053d | 716 | } else if (!uptodate) { |
ca7a79ad | 717 | btrfs_read_buffer(cur, gen); |
f2183bde | 718 | } |
6702ed49 | 719 | } |
e9d0b13b | 720 | if (search_start == 0) |
6b80053d | 721 | search_start = last_block; |
e9d0b13b | 722 | |
e7a84565 | 723 | btrfs_tree_lock(cur); |
b4ce94de | 724 | btrfs_set_lock_blocking(cur); |
6b80053d | 725 | err = __btrfs_cow_block(trans, root, cur, parent, i, |
e7a84565 | 726 | &cur, search_start, |
6b80053d | 727 | min(16 * blocksize, |
9fa8cfe7 | 728 | (end_slot - i) * blocksize)); |
252c38f0 | 729 | if (err) { |
e7a84565 | 730 | btrfs_tree_unlock(cur); |
6b80053d | 731 | free_extent_buffer(cur); |
6702ed49 | 732 | break; |
252c38f0 | 733 | } |
e7a84565 CM |
734 | search_start = cur->start; |
735 | last_block = cur->start; | |
f2183bde | 736 | *last_ret = search_start; |
e7a84565 CM |
737 | btrfs_tree_unlock(cur); |
738 | free_extent_buffer(cur); | |
6702ed49 CM |
739 | } |
740 | return err; | |
741 | } | |
742 | ||
74123bd7 CM |
743 | /* |
744 | * The leaf data grows from end-to-front in the node. | |
745 | * this returns the address of the start of the last item, | |
746 | * which is the stop of the leaf data stack | |
747 | */ | |
123abc88 | 748 | static inline unsigned int leaf_data_end(struct btrfs_root *root, |
5f39d397 | 749 | struct extent_buffer *leaf) |
be0e5c09 | 750 | { |
5f39d397 | 751 | u32 nr = btrfs_header_nritems(leaf); |
be0e5c09 | 752 | if (nr == 0) |
123abc88 | 753 | return BTRFS_LEAF_DATA_SIZE(root); |
5f39d397 | 754 | return btrfs_item_offset_nr(leaf, nr - 1); |
be0e5c09 CM |
755 | } |
756 | ||
aa5d6bed | 757 | |
74123bd7 | 758 | /* |
5f39d397 CM |
759 | * search for key in the extent_buffer. The items start at offset p, |
760 | * and they are item_size apart. There are 'max' items in p. | |
761 | * | |
74123bd7 CM |
762 | * the slot in the array is returned via slot, and it points to |
763 | * the place where you would insert key if it is not found in | |
764 | * the array. | |
765 | * | |
766 | * slot may point to max if the key is bigger than all of the keys | |
767 | */ | |
e02119d5 CM |
768 | static noinline int generic_bin_search(struct extent_buffer *eb, |
769 | unsigned long p, | |
770 | int item_size, struct btrfs_key *key, | |
771 | int max, int *slot) | |
be0e5c09 CM |
772 | { |
773 | int low = 0; | |
774 | int high = max; | |
775 | int mid; | |
776 | int ret; | |
479965d6 | 777 | struct btrfs_disk_key *tmp = NULL; |
5f39d397 CM |
778 | struct btrfs_disk_key unaligned; |
779 | unsigned long offset; | |
5f39d397 CM |
780 | char *kaddr = NULL; |
781 | unsigned long map_start = 0; | |
782 | unsigned long map_len = 0; | |
479965d6 | 783 | int err; |
be0e5c09 | 784 | |
d397712b | 785 | while (low < high) { |
be0e5c09 | 786 | mid = (low + high) / 2; |
5f39d397 CM |
787 | offset = p + mid * item_size; |
788 | ||
a6591715 | 789 | if (!kaddr || offset < map_start || |
5f39d397 CM |
790 | (offset + sizeof(struct btrfs_disk_key)) > |
791 | map_start + map_len) { | |
934d375b CM |
792 | |
793 | err = map_private_extent_buffer(eb, offset, | |
479965d6 | 794 | sizeof(struct btrfs_disk_key), |
a6591715 | 795 | &kaddr, &map_start, &map_len); |
479965d6 CM |
796 | |
797 | if (!err) { | |
798 | tmp = (struct btrfs_disk_key *)(kaddr + offset - | |
799 | map_start); | |
800 | } else { | |
801 | read_extent_buffer(eb, &unaligned, | |
802 | offset, sizeof(unaligned)); | |
803 | tmp = &unaligned; | |
804 | } | |
5f39d397 | 805 | |
5f39d397 CM |
806 | } else { |
807 | tmp = (struct btrfs_disk_key *)(kaddr + offset - | |
808 | map_start); | |
809 | } | |
be0e5c09 CM |
810 | ret = comp_keys(tmp, key); |
811 | ||
812 | if (ret < 0) | |
813 | low = mid + 1; | |
814 | else if (ret > 0) | |
815 | high = mid; | |
816 | else { | |
817 | *slot = mid; | |
818 | return 0; | |
819 | } | |
820 | } | |
821 | *slot = low; | |
822 | return 1; | |
823 | } | |
824 | ||
97571fd0 CM |
825 | /* |
826 | * simple bin_search frontend that does the right thing for | |
827 | * leaves vs nodes | |
828 | */ | |
5f39d397 CM |
829 | static int bin_search(struct extent_buffer *eb, struct btrfs_key *key, |
830 | int level, int *slot) | |
be0e5c09 | 831 | { |
5f39d397 CM |
832 | if (level == 0) { |
833 | return generic_bin_search(eb, | |
834 | offsetof(struct btrfs_leaf, items), | |
0783fcfc | 835 | sizeof(struct btrfs_item), |
5f39d397 | 836 | key, btrfs_header_nritems(eb), |
7518a238 | 837 | slot); |
be0e5c09 | 838 | } else { |
5f39d397 CM |
839 | return generic_bin_search(eb, |
840 | offsetof(struct btrfs_node, ptrs), | |
123abc88 | 841 | sizeof(struct btrfs_key_ptr), |
5f39d397 | 842 | key, btrfs_header_nritems(eb), |
7518a238 | 843 | slot); |
be0e5c09 CM |
844 | } |
845 | return -1; | |
846 | } | |
847 | ||
5d4f98a2 YZ |
848 | int btrfs_bin_search(struct extent_buffer *eb, struct btrfs_key *key, |
849 | int level, int *slot) | |
850 | { | |
851 | return bin_search(eb, key, level, slot); | |
852 | } | |
853 | ||
f0486c68 YZ |
854 | static void root_add_used(struct btrfs_root *root, u32 size) |
855 | { | |
856 | spin_lock(&root->accounting_lock); | |
857 | btrfs_set_root_used(&root->root_item, | |
858 | btrfs_root_used(&root->root_item) + size); | |
859 | spin_unlock(&root->accounting_lock); | |
860 | } | |
861 | ||
862 | static void root_sub_used(struct btrfs_root *root, u32 size) | |
863 | { | |
864 | spin_lock(&root->accounting_lock); | |
865 | btrfs_set_root_used(&root->root_item, | |
866 | btrfs_root_used(&root->root_item) - size); | |
867 | spin_unlock(&root->accounting_lock); | |
868 | } | |
869 | ||
d352ac68 CM |
870 | /* given a node and slot number, this reads the blocks it points to. The |
871 | * extent buffer is returned with a reference taken (but unlocked). | |
872 | * NULL is returned on error. | |
873 | */ | |
e02119d5 | 874 | static noinline struct extent_buffer *read_node_slot(struct btrfs_root *root, |
5f39d397 | 875 | struct extent_buffer *parent, int slot) |
bb803951 | 876 | { |
ca7a79ad | 877 | int level = btrfs_header_level(parent); |
bb803951 CM |
878 | if (slot < 0) |
879 | return NULL; | |
5f39d397 | 880 | if (slot >= btrfs_header_nritems(parent)) |
bb803951 | 881 | return NULL; |
ca7a79ad CM |
882 | |
883 | BUG_ON(level == 0); | |
884 | ||
db94535d | 885 | return read_tree_block(root, btrfs_node_blockptr(parent, slot), |
ca7a79ad CM |
886 | btrfs_level_size(root, level - 1), |
887 | btrfs_node_ptr_generation(parent, slot)); | |
bb803951 CM |
888 | } |
889 | ||
d352ac68 CM |
890 | /* |
891 | * node level balancing, used to make sure nodes are in proper order for | |
892 | * item deletion. We balance from the top down, so we have to make sure | |
893 | * that a deletion won't leave an node completely empty later on. | |
894 | */ | |
e02119d5 | 895 | static noinline int balance_level(struct btrfs_trans_handle *trans, |
98ed5174 CM |
896 | struct btrfs_root *root, |
897 | struct btrfs_path *path, int level) | |
bb803951 | 898 | { |
5f39d397 CM |
899 | struct extent_buffer *right = NULL; |
900 | struct extent_buffer *mid; | |
901 | struct extent_buffer *left = NULL; | |
902 | struct extent_buffer *parent = NULL; | |
bb803951 CM |
903 | int ret = 0; |
904 | int wret; | |
905 | int pslot; | |
bb803951 | 906 | int orig_slot = path->slots[level]; |
79f95c82 | 907 | u64 orig_ptr; |
bb803951 CM |
908 | |
909 | if (level == 0) | |
910 | return 0; | |
911 | ||
5f39d397 | 912 | mid = path->nodes[level]; |
b4ce94de | 913 | |
bd681513 CM |
914 | WARN_ON(path->locks[level] != BTRFS_WRITE_LOCK && |
915 | path->locks[level] != BTRFS_WRITE_LOCK_BLOCKING); | |
7bb86316 CM |
916 | WARN_ON(btrfs_header_generation(mid) != trans->transid); |
917 | ||
1d4f8a0c | 918 | orig_ptr = btrfs_node_blockptr(mid, orig_slot); |
79f95c82 | 919 | |
a05a9bb1 | 920 | if (level < BTRFS_MAX_LEVEL - 1) { |
5f39d397 | 921 | parent = path->nodes[level + 1]; |
a05a9bb1 LZ |
922 | pslot = path->slots[level + 1]; |
923 | } | |
bb803951 | 924 | |
40689478 CM |
925 | /* |
926 | * deal with the case where there is only one pointer in the root | |
927 | * by promoting the node below to a root | |
928 | */ | |
5f39d397 CM |
929 | if (!parent) { |
930 | struct extent_buffer *child; | |
bb803951 | 931 | |
5f39d397 | 932 | if (btrfs_header_nritems(mid) != 1) |
bb803951 CM |
933 | return 0; |
934 | ||
935 | /* promote the child to a root */ | |
5f39d397 | 936 | child = read_node_slot(root, mid, 0); |
7951f3ce | 937 | BUG_ON(!child); |
925baedd | 938 | btrfs_tree_lock(child); |
b4ce94de | 939 | btrfs_set_lock_blocking(child); |
9fa8cfe7 | 940 | ret = btrfs_cow_block(trans, root, child, mid, 0, &child); |
f0486c68 YZ |
941 | if (ret) { |
942 | btrfs_tree_unlock(child); | |
943 | free_extent_buffer(child); | |
944 | goto enospc; | |
945 | } | |
2f375ab9 | 946 | |
240f62c8 | 947 | rcu_assign_pointer(root->node, child); |
925baedd | 948 | |
0b86a832 | 949 | add_root_to_dirty_list(root); |
925baedd | 950 | btrfs_tree_unlock(child); |
b4ce94de | 951 | |
925baedd | 952 | path->locks[level] = 0; |
bb803951 | 953 | path->nodes[level] = NULL; |
5f39d397 | 954 | clean_tree_block(trans, root, mid); |
925baedd | 955 | btrfs_tree_unlock(mid); |
bb803951 | 956 | /* once for the path */ |
5f39d397 | 957 | free_extent_buffer(mid); |
f0486c68 YZ |
958 | |
959 | root_sub_used(root, mid->len); | |
960 | btrfs_free_tree_block(trans, root, mid, 0, 1); | |
bb803951 | 961 | /* once for the root ptr */ |
5f39d397 | 962 | free_extent_buffer(mid); |
f0486c68 | 963 | return 0; |
bb803951 | 964 | } |
5f39d397 | 965 | if (btrfs_header_nritems(mid) > |
123abc88 | 966 | BTRFS_NODEPTRS_PER_BLOCK(root) / 4) |
bb803951 CM |
967 | return 0; |
968 | ||
559af821 | 969 | btrfs_header_nritems(mid); |
54aa1f4d | 970 | |
5f39d397 CM |
971 | left = read_node_slot(root, parent, pslot - 1); |
972 | if (left) { | |
925baedd | 973 | btrfs_tree_lock(left); |
b4ce94de | 974 | btrfs_set_lock_blocking(left); |
5f39d397 | 975 | wret = btrfs_cow_block(trans, root, left, |
9fa8cfe7 | 976 | parent, pslot - 1, &left); |
54aa1f4d CM |
977 | if (wret) { |
978 | ret = wret; | |
979 | goto enospc; | |
980 | } | |
2cc58cf2 | 981 | } |
5f39d397 CM |
982 | right = read_node_slot(root, parent, pslot + 1); |
983 | if (right) { | |
925baedd | 984 | btrfs_tree_lock(right); |
b4ce94de | 985 | btrfs_set_lock_blocking(right); |
5f39d397 | 986 | wret = btrfs_cow_block(trans, root, right, |
9fa8cfe7 | 987 | parent, pslot + 1, &right); |
2cc58cf2 CM |
988 | if (wret) { |
989 | ret = wret; | |
990 | goto enospc; | |
991 | } | |
992 | } | |
993 | ||
994 | /* first, try to make some room in the middle buffer */ | |
5f39d397 CM |
995 | if (left) { |
996 | orig_slot += btrfs_header_nritems(left); | |
bce4eae9 | 997 | wret = push_node_left(trans, root, left, mid, 1); |
79f95c82 CM |
998 | if (wret < 0) |
999 | ret = wret; | |
559af821 | 1000 | btrfs_header_nritems(mid); |
bb803951 | 1001 | } |
79f95c82 CM |
1002 | |
1003 | /* | |
1004 | * then try to empty the right most buffer into the middle | |
1005 | */ | |
5f39d397 | 1006 | if (right) { |
971a1f66 | 1007 | wret = push_node_left(trans, root, mid, right, 1); |
54aa1f4d | 1008 | if (wret < 0 && wret != -ENOSPC) |
79f95c82 | 1009 | ret = wret; |
5f39d397 | 1010 | if (btrfs_header_nritems(right) == 0) { |
5f39d397 | 1011 | clean_tree_block(trans, root, right); |
925baedd | 1012 | btrfs_tree_unlock(right); |
e089f05c CM |
1013 | wret = del_ptr(trans, root, path, level + 1, pslot + |
1014 | 1); | |
bb803951 CM |
1015 | if (wret) |
1016 | ret = wret; | |
f0486c68 YZ |
1017 | root_sub_used(root, right->len); |
1018 | btrfs_free_tree_block(trans, root, right, 0, 1); | |
1019 | free_extent_buffer(right); | |
1020 | right = NULL; | |
bb803951 | 1021 | } else { |
5f39d397 CM |
1022 | struct btrfs_disk_key right_key; |
1023 | btrfs_node_key(right, &right_key, 0); | |
1024 | btrfs_set_node_key(parent, &right_key, pslot + 1); | |
1025 | btrfs_mark_buffer_dirty(parent); | |
bb803951 CM |
1026 | } |
1027 | } | |
5f39d397 | 1028 | if (btrfs_header_nritems(mid) == 1) { |
79f95c82 CM |
1029 | /* |
1030 | * we're not allowed to leave a node with one item in the | |
1031 | * tree during a delete. A deletion from lower in the tree | |
1032 | * could try to delete the only pointer in this node. | |
1033 | * So, pull some keys from the left. | |
1034 | * There has to be a left pointer at this point because | |
1035 | * otherwise we would have pulled some pointers from the | |
1036 | * right | |
1037 | */ | |
5f39d397 CM |
1038 | BUG_ON(!left); |
1039 | wret = balance_node_right(trans, root, mid, left); | |
54aa1f4d | 1040 | if (wret < 0) { |
79f95c82 | 1041 | ret = wret; |
54aa1f4d CM |
1042 | goto enospc; |
1043 | } | |
bce4eae9 CM |
1044 | if (wret == 1) { |
1045 | wret = push_node_left(trans, root, left, mid, 1); | |
1046 | if (wret < 0) | |
1047 | ret = wret; | |
1048 | } | |
79f95c82 CM |
1049 | BUG_ON(wret == 1); |
1050 | } | |
5f39d397 | 1051 | if (btrfs_header_nritems(mid) == 0) { |
5f39d397 | 1052 | clean_tree_block(trans, root, mid); |
925baedd | 1053 | btrfs_tree_unlock(mid); |
e089f05c | 1054 | wret = del_ptr(trans, root, path, level + 1, pslot); |
bb803951 CM |
1055 | if (wret) |
1056 | ret = wret; | |
f0486c68 YZ |
1057 | root_sub_used(root, mid->len); |
1058 | btrfs_free_tree_block(trans, root, mid, 0, 1); | |
1059 | free_extent_buffer(mid); | |
1060 | mid = NULL; | |
79f95c82 CM |
1061 | } else { |
1062 | /* update the parent key to reflect our changes */ | |
5f39d397 CM |
1063 | struct btrfs_disk_key mid_key; |
1064 | btrfs_node_key(mid, &mid_key, 0); | |
1065 | btrfs_set_node_key(parent, &mid_key, pslot); | |
1066 | btrfs_mark_buffer_dirty(parent); | |
79f95c82 | 1067 | } |
bb803951 | 1068 | |
79f95c82 | 1069 | /* update the path */ |
5f39d397 CM |
1070 | if (left) { |
1071 | if (btrfs_header_nritems(left) > orig_slot) { | |
1072 | extent_buffer_get(left); | |
925baedd | 1073 | /* left was locked after cow */ |
5f39d397 | 1074 | path->nodes[level] = left; |
bb803951 CM |
1075 | path->slots[level + 1] -= 1; |
1076 | path->slots[level] = orig_slot; | |
925baedd CM |
1077 | if (mid) { |
1078 | btrfs_tree_unlock(mid); | |
5f39d397 | 1079 | free_extent_buffer(mid); |
925baedd | 1080 | } |
bb803951 | 1081 | } else { |
5f39d397 | 1082 | orig_slot -= btrfs_header_nritems(left); |
bb803951 CM |
1083 | path->slots[level] = orig_slot; |
1084 | } | |
1085 | } | |
79f95c82 | 1086 | /* double check we haven't messed things up */ |
e20d96d6 | 1087 | if (orig_ptr != |
5f39d397 | 1088 | btrfs_node_blockptr(path->nodes[level], path->slots[level])) |
79f95c82 | 1089 | BUG(); |
54aa1f4d | 1090 | enospc: |
925baedd CM |
1091 | if (right) { |
1092 | btrfs_tree_unlock(right); | |
5f39d397 | 1093 | free_extent_buffer(right); |
925baedd CM |
1094 | } |
1095 | if (left) { | |
1096 | if (path->nodes[level] != left) | |
1097 | btrfs_tree_unlock(left); | |
5f39d397 | 1098 | free_extent_buffer(left); |
925baedd | 1099 | } |
bb803951 CM |
1100 | return ret; |
1101 | } | |
1102 | ||
d352ac68 CM |
1103 | /* Node balancing for insertion. Here we only split or push nodes around |
1104 | * when they are completely full. This is also done top down, so we | |
1105 | * have to be pessimistic. | |
1106 | */ | |
d397712b | 1107 | static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans, |
98ed5174 CM |
1108 | struct btrfs_root *root, |
1109 | struct btrfs_path *path, int level) | |
e66f709b | 1110 | { |
5f39d397 CM |
1111 | struct extent_buffer *right = NULL; |
1112 | struct extent_buffer *mid; | |
1113 | struct extent_buffer *left = NULL; | |
1114 | struct extent_buffer *parent = NULL; | |
e66f709b CM |
1115 | int ret = 0; |
1116 | int wret; | |
1117 | int pslot; | |
1118 | int orig_slot = path->slots[level]; | |
e66f709b CM |
1119 | |
1120 | if (level == 0) | |
1121 | return 1; | |
1122 | ||
5f39d397 | 1123 | mid = path->nodes[level]; |
7bb86316 | 1124 | WARN_ON(btrfs_header_generation(mid) != trans->transid); |
e66f709b | 1125 | |
a05a9bb1 | 1126 | if (level < BTRFS_MAX_LEVEL - 1) { |
5f39d397 | 1127 | parent = path->nodes[level + 1]; |
a05a9bb1 LZ |
1128 | pslot = path->slots[level + 1]; |
1129 | } | |
e66f709b | 1130 | |
5f39d397 | 1131 | if (!parent) |
e66f709b | 1132 | return 1; |
e66f709b | 1133 | |
5f39d397 | 1134 | left = read_node_slot(root, parent, pslot - 1); |
e66f709b CM |
1135 | |
1136 | /* first, try to make some room in the middle buffer */ | |
5f39d397 | 1137 | if (left) { |
e66f709b | 1138 | u32 left_nr; |
925baedd CM |
1139 | |
1140 | btrfs_tree_lock(left); | |
b4ce94de CM |
1141 | btrfs_set_lock_blocking(left); |
1142 | ||
5f39d397 | 1143 | left_nr = btrfs_header_nritems(left); |
33ade1f8 CM |
1144 | if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) { |
1145 | wret = 1; | |
1146 | } else { | |
5f39d397 | 1147 | ret = btrfs_cow_block(trans, root, left, parent, |
9fa8cfe7 | 1148 | pslot - 1, &left); |
54aa1f4d CM |
1149 | if (ret) |
1150 | wret = 1; | |
1151 | else { | |
54aa1f4d | 1152 | wret = push_node_left(trans, root, |
971a1f66 | 1153 | left, mid, 0); |
54aa1f4d | 1154 | } |
33ade1f8 | 1155 | } |
e66f709b CM |
1156 | if (wret < 0) |
1157 | ret = wret; | |
1158 | if (wret == 0) { | |
5f39d397 | 1159 | struct btrfs_disk_key disk_key; |
e66f709b | 1160 | orig_slot += left_nr; |
5f39d397 CM |
1161 | btrfs_node_key(mid, &disk_key, 0); |
1162 | btrfs_set_node_key(parent, &disk_key, pslot); | |
1163 | btrfs_mark_buffer_dirty(parent); | |
1164 | if (btrfs_header_nritems(left) > orig_slot) { | |
1165 | path->nodes[level] = left; | |
e66f709b CM |
1166 | path->slots[level + 1] -= 1; |
1167 | path->slots[level] = orig_slot; | |
925baedd | 1168 | btrfs_tree_unlock(mid); |
5f39d397 | 1169 | free_extent_buffer(mid); |
e66f709b CM |
1170 | } else { |
1171 | orig_slot -= | |
5f39d397 | 1172 | btrfs_header_nritems(left); |
e66f709b | 1173 | path->slots[level] = orig_slot; |
925baedd | 1174 | btrfs_tree_unlock(left); |
5f39d397 | 1175 | free_extent_buffer(left); |
e66f709b | 1176 | } |
e66f709b CM |
1177 | return 0; |
1178 | } | |
925baedd | 1179 | btrfs_tree_unlock(left); |
5f39d397 | 1180 | free_extent_buffer(left); |
e66f709b | 1181 | } |
925baedd | 1182 | right = read_node_slot(root, parent, pslot + 1); |
e66f709b CM |
1183 | |
1184 | /* | |
1185 | * then try to empty the right most buffer into the middle | |
1186 | */ | |
5f39d397 | 1187 | if (right) { |
33ade1f8 | 1188 | u32 right_nr; |
b4ce94de | 1189 | |
925baedd | 1190 | btrfs_tree_lock(right); |
b4ce94de CM |
1191 | btrfs_set_lock_blocking(right); |
1192 | ||
5f39d397 | 1193 | right_nr = btrfs_header_nritems(right); |
33ade1f8 CM |
1194 | if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) { |
1195 | wret = 1; | |
1196 | } else { | |
5f39d397 CM |
1197 | ret = btrfs_cow_block(trans, root, right, |
1198 | parent, pslot + 1, | |
9fa8cfe7 | 1199 | &right); |
54aa1f4d CM |
1200 | if (ret) |
1201 | wret = 1; | |
1202 | else { | |
54aa1f4d | 1203 | wret = balance_node_right(trans, root, |
5f39d397 | 1204 | right, mid); |
54aa1f4d | 1205 | } |
33ade1f8 | 1206 | } |
e66f709b CM |
1207 | if (wret < 0) |
1208 | ret = wret; | |
1209 | if (wret == 0) { | |
5f39d397 CM |
1210 | struct btrfs_disk_key disk_key; |
1211 | ||
1212 | btrfs_node_key(right, &disk_key, 0); | |
1213 | btrfs_set_node_key(parent, &disk_key, pslot + 1); | |
1214 | btrfs_mark_buffer_dirty(parent); | |
1215 | ||
1216 | if (btrfs_header_nritems(mid) <= orig_slot) { | |
1217 | path->nodes[level] = right; | |
e66f709b CM |
1218 | path->slots[level + 1] += 1; |
1219 | path->slots[level] = orig_slot - | |
5f39d397 | 1220 | btrfs_header_nritems(mid); |
925baedd | 1221 | btrfs_tree_unlock(mid); |
5f39d397 | 1222 | free_extent_buffer(mid); |
e66f709b | 1223 | } else { |
925baedd | 1224 | btrfs_tree_unlock(right); |
5f39d397 | 1225 | free_extent_buffer(right); |
e66f709b | 1226 | } |
e66f709b CM |
1227 | return 0; |
1228 | } | |
925baedd | 1229 | btrfs_tree_unlock(right); |
5f39d397 | 1230 | free_extent_buffer(right); |
e66f709b | 1231 | } |
e66f709b CM |
1232 | return 1; |
1233 | } | |
1234 | ||
3c69faec | 1235 | /* |
d352ac68 CM |
1236 | * readahead one full node of leaves, finding things that are close |
1237 | * to the block in 'slot', and triggering ra on them. | |
3c69faec | 1238 | */ |
c8c42864 CM |
1239 | static void reada_for_search(struct btrfs_root *root, |
1240 | struct btrfs_path *path, | |
1241 | int level, int slot, u64 objectid) | |
3c69faec | 1242 | { |
5f39d397 | 1243 | struct extent_buffer *node; |
01f46658 | 1244 | struct btrfs_disk_key disk_key; |
3c69faec | 1245 | u32 nritems; |
3c69faec | 1246 | u64 search; |
a7175319 | 1247 | u64 target; |
6b80053d | 1248 | u64 nread = 0; |
cb25c2ea | 1249 | u64 gen; |
3c69faec | 1250 | int direction = path->reada; |
5f39d397 | 1251 | struct extent_buffer *eb; |
6b80053d CM |
1252 | u32 nr; |
1253 | u32 blocksize; | |
1254 | u32 nscan = 0; | |
db94535d | 1255 | |
a6b6e75e | 1256 | if (level != 1) |
6702ed49 CM |
1257 | return; |
1258 | ||
1259 | if (!path->nodes[level]) | |
3c69faec CM |
1260 | return; |
1261 | ||
5f39d397 | 1262 | node = path->nodes[level]; |
925baedd | 1263 | |
3c69faec | 1264 | search = btrfs_node_blockptr(node, slot); |
6b80053d CM |
1265 | blocksize = btrfs_level_size(root, level - 1); |
1266 | eb = btrfs_find_tree_block(root, search, blocksize); | |
5f39d397 CM |
1267 | if (eb) { |
1268 | free_extent_buffer(eb); | |
3c69faec CM |
1269 | return; |
1270 | } | |
1271 | ||
a7175319 | 1272 | target = search; |
6b80053d | 1273 | |
5f39d397 | 1274 | nritems = btrfs_header_nritems(node); |
6b80053d | 1275 | nr = slot; |
25b8b936 | 1276 | |
d397712b | 1277 | while (1) { |
6b80053d CM |
1278 | if (direction < 0) { |
1279 | if (nr == 0) | |
1280 | break; | |
1281 | nr--; | |
1282 | } else if (direction > 0) { | |
1283 | nr++; | |
1284 | if (nr >= nritems) | |
1285 | break; | |
3c69faec | 1286 | } |
01f46658 CM |
1287 | if (path->reada < 0 && objectid) { |
1288 | btrfs_node_key(node, &disk_key, nr); | |
1289 | if (btrfs_disk_key_objectid(&disk_key) != objectid) | |
1290 | break; | |
1291 | } | |
6b80053d | 1292 | search = btrfs_node_blockptr(node, nr); |
a7175319 CM |
1293 | if ((search <= target && target - search <= 65536) || |
1294 | (search > target && search - target <= 65536)) { | |
cb25c2ea | 1295 | gen = btrfs_node_ptr_generation(node, nr); |
cb25c2ea | 1296 | readahead_tree_block(root, search, blocksize, gen); |
6b80053d CM |
1297 | nread += blocksize; |
1298 | } | |
1299 | nscan++; | |
a7175319 | 1300 | if ((nread > 65536 || nscan > 32)) |
6b80053d | 1301 | break; |
3c69faec CM |
1302 | } |
1303 | } | |
925baedd | 1304 | |
b4ce94de CM |
1305 | /* |
1306 | * returns -EAGAIN if it had to drop the path, or zero if everything was in | |
1307 | * cache | |
1308 | */ | |
1309 | static noinline int reada_for_balance(struct btrfs_root *root, | |
1310 | struct btrfs_path *path, int level) | |
1311 | { | |
1312 | int slot; | |
1313 | int nritems; | |
1314 | struct extent_buffer *parent; | |
1315 | struct extent_buffer *eb; | |
1316 | u64 gen; | |
1317 | u64 block1 = 0; | |
1318 | u64 block2 = 0; | |
1319 | int ret = 0; | |
1320 | int blocksize; | |
1321 | ||
8c594ea8 | 1322 | parent = path->nodes[level + 1]; |
b4ce94de CM |
1323 | if (!parent) |
1324 | return 0; | |
1325 | ||
1326 | nritems = btrfs_header_nritems(parent); | |
8c594ea8 | 1327 | slot = path->slots[level + 1]; |
b4ce94de CM |
1328 | blocksize = btrfs_level_size(root, level); |
1329 | ||
1330 | if (slot > 0) { | |
1331 | block1 = btrfs_node_blockptr(parent, slot - 1); | |
1332 | gen = btrfs_node_ptr_generation(parent, slot - 1); | |
1333 | eb = btrfs_find_tree_block(root, block1, blocksize); | |
1334 | if (eb && btrfs_buffer_uptodate(eb, gen)) | |
1335 | block1 = 0; | |
1336 | free_extent_buffer(eb); | |
1337 | } | |
8c594ea8 | 1338 | if (slot + 1 < nritems) { |
b4ce94de CM |
1339 | block2 = btrfs_node_blockptr(parent, slot + 1); |
1340 | gen = btrfs_node_ptr_generation(parent, slot + 1); | |
1341 | eb = btrfs_find_tree_block(root, block2, blocksize); | |
1342 | if (eb && btrfs_buffer_uptodate(eb, gen)) | |
1343 | block2 = 0; | |
1344 | free_extent_buffer(eb); | |
1345 | } | |
1346 | if (block1 || block2) { | |
1347 | ret = -EAGAIN; | |
8c594ea8 CM |
1348 | |
1349 | /* release the whole path */ | |
b3b4aa74 | 1350 | btrfs_release_path(path); |
8c594ea8 CM |
1351 | |
1352 | /* read the blocks */ | |
b4ce94de CM |
1353 | if (block1) |
1354 | readahead_tree_block(root, block1, blocksize, 0); | |
1355 | if (block2) | |
1356 | readahead_tree_block(root, block2, blocksize, 0); | |
1357 | ||
1358 | if (block1) { | |
1359 | eb = read_tree_block(root, block1, blocksize, 0); | |
1360 | free_extent_buffer(eb); | |
1361 | } | |
8c594ea8 | 1362 | if (block2) { |
b4ce94de CM |
1363 | eb = read_tree_block(root, block2, blocksize, 0); |
1364 | free_extent_buffer(eb); | |
1365 | } | |
1366 | } | |
1367 | return ret; | |
1368 | } | |
1369 | ||
1370 | ||
d352ac68 | 1371 | /* |
d397712b CM |
1372 | * when we walk down the tree, it is usually safe to unlock the higher layers |
1373 | * in the tree. The exceptions are when our path goes through slot 0, because | |
1374 | * operations on the tree might require changing key pointers higher up in the | |
1375 | * tree. | |
d352ac68 | 1376 | * |
d397712b CM |
1377 | * callers might also have set path->keep_locks, which tells this code to keep |
1378 | * the lock if the path points to the last slot in the block. This is part of | |
1379 | * walking through the tree, and selecting the next slot in the higher block. | |
d352ac68 | 1380 | * |
d397712b CM |
1381 | * lowest_unlock sets the lowest level in the tree we're allowed to unlock. so |
1382 | * if lowest_unlock is 1, level 0 won't be unlocked | |
d352ac68 | 1383 | */ |
e02119d5 CM |
1384 | static noinline void unlock_up(struct btrfs_path *path, int level, |
1385 | int lowest_unlock) | |
925baedd CM |
1386 | { |
1387 | int i; | |
1388 | int skip_level = level; | |
051e1b9f | 1389 | int no_skips = 0; |
925baedd CM |
1390 | struct extent_buffer *t; |
1391 | ||
1392 | for (i = level; i < BTRFS_MAX_LEVEL; i++) { | |
1393 | if (!path->nodes[i]) | |
1394 | break; | |
1395 | if (!path->locks[i]) | |
1396 | break; | |
051e1b9f | 1397 | if (!no_skips && path->slots[i] == 0) { |
925baedd CM |
1398 | skip_level = i + 1; |
1399 | continue; | |
1400 | } | |
051e1b9f | 1401 | if (!no_skips && path->keep_locks) { |
925baedd CM |
1402 | u32 nritems; |
1403 | t = path->nodes[i]; | |
1404 | nritems = btrfs_header_nritems(t); | |
051e1b9f | 1405 | if (nritems < 1 || path->slots[i] >= nritems - 1) { |
925baedd CM |
1406 | skip_level = i + 1; |
1407 | continue; | |
1408 | } | |
1409 | } | |
051e1b9f CM |
1410 | if (skip_level < i && i >= lowest_unlock) |
1411 | no_skips = 1; | |
1412 | ||
925baedd CM |
1413 | t = path->nodes[i]; |
1414 | if (i >= lowest_unlock && i > skip_level && path->locks[i]) { | |
bd681513 | 1415 | btrfs_tree_unlock_rw(t, path->locks[i]); |
925baedd CM |
1416 | path->locks[i] = 0; |
1417 | } | |
1418 | } | |
1419 | } | |
1420 | ||
b4ce94de CM |
1421 | /* |
1422 | * This releases any locks held in the path starting at level and | |
1423 | * going all the way up to the root. | |
1424 | * | |
1425 | * btrfs_search_slot will keep the lock held on higher nodes in a few | |
1426 | * corner cases, such as COW of the block at slot zero in the node. This | |
1427 | * ignores those rules, and it should only be called when there are no | |
1428 | * more updates to be done higher up in the tree. | |
1429 | */ | |
1430 | noinline void btrfs_unlock_up_safe(struct btrfs_path *path, int level) | |
1431 | { | |
1432 | int i; | |
1433 | ||
5d4f98a2 | 1434 | if (path->keep_locks) |
b4ce94de CM |
1435 | return; |
1436 | ||
1437 | for (i = level; i < BTRFS_MAX_LEVEL; i++) { | |
1438 | if (!path->nodes[i]) | |
12f4dacc | 1439 | continue; |
b4ce94de | 1440 | if (!path->locks[i]) |
12f4dacc | 1441 | continue; |
bd681513 | 1442 | btrfs_tree_unlock_rw(path->nodes[i], path->locks[i]); |
b4ce94de CM |
1443 | path->locks[i] = 0; |
1444 | } | |
1445 | } | |
1446 | ||
c8c42864 CM |
1447 | /* |
1448 | * helper function for btrfs_search_slot. The goal is to find a block | |
1449 | * in cache without setting the path to blocking. If we find the block | |
1450 | * we return zero and the path is unchanged. | |
1451 | * | |
1452 | * If we can't find the block, we set the path blocking and do some | |
1453 | * reada. -EAGAIN is returned and the search must be repeated. | |
1454 | */ | |
1455 | static int | |
1456 | read_block_for_search(struct btrfs_trans_handle *trans, | |
1457 | struct btrfs_root *root, struct btrfs_path *p, | |
1458 | struct extent_buffer **eb_ret, int level, int slot, | |
1459 | struct btrfs_key *key) | |
1460 | { | |
1461 | u64 blocknr; | |
1462 | u64 gen; | |
1463 | u32 blocksize; | |
1464 | struct extent_buffer *b = *eb_ret; | |
1465 | struct extent_buffer *tmp; | |
76a05b35 | 1466 | int ret; |
c8c42864 CM |
1467 | |
1468 | blocknr = btrfs_node_blockptr(b, slot); | |
1469 | gen = btrfs_node_ptr_generation(b, slot); | |
1470 | blocksize = btrfs_level_size(root, level - 1); | |
1471 | ||
1472 | tmp = btrfs_find_tree_block(root, blocknr, blocksize); | |
cb44921a CM |
1473 | if (tmp) { |
1474 | if (btrfs_buffer_uptodate(tmp, 0)) { | |
1475 | if (btrfs_buffer_uptodate(tmp, gen)) { | |
1476 | /* | |
1477 | * we found an up to date block without | |
1478 | * sleeping, return | |
1479 | * right away | |
1480 | */ | |
1481 | *eb_ret = tmp; | |
1482 | return 0; | |
1483 | } | |
1484 | /* the pages were up to date, but we failed | |
1485 | * the generation number check. Do a full | |
1486 | * read for the generation number that is correct. | |
1487 | * We must do this without dropping locks so | |
1488 | * we can trust our generation number | |
1489 | */ | |
1490 | free_extent_buffer(tmp); | |
bd681513 CM |
1491 | btrfs_set_path_blocking(p); |
1492 | ||
cb44921a CM |
1493 | tmp = read_tree_block(root, blocknr, blocksize, gen); |
1494 | if (tmp && btrfs_buffer_uptodate(tmp, gen)) { | |
1495 | *eb_ret = tmp; | |
1496 | return 0; | |
1497 | } | |
1498 | free_extent_buffer(tmp); | |
b3b4aa74 | 1499 | btrfs_release_path(p); |
cb44921a CM |
1500 | return -EIO; |
1501 | } | |
c8c42864 CM |
1502 | } |
1503 | ||
1504 | /* | |
1505 | * reduce lock contention at high levels | |
1506 | * of the btree by dropping locks before | |
76a05b35 CM |
1507 | * we read. Don't release the lock on the current |
1508 | * level because we need to walk this node to figure | |
1509 | * out which blocks to read. | |
c8c42864 | 1510 | */ |
8c594ea8 CM |
1511 | btrfs_unlock_up_safe(p, level + 1); |
1512 | btrfs_set_path_blocking(p); | |
1513 | ||
cb44921a | 1514 | free_extent_buffer(tmp); |
c8c42864 CM |
1515 | if (p->reada) |
1516 | reada_for_search(root, p, level, slot, key->objectid); | |
1517 | ||
b3b4aa74 | 1518 | btrfs_release_path(p); |
76a05b35 CM |
1519 | |
1520 | ret = -EAGAIN; | |
5bdd3536 | 1521 | tmp = read_tree_block(root, blocknr, blocksize, 0); |
76a05b35 CM |
1522 | if (tmp) { |
1523 | /* | |
1524 | * If the read above didn't mark this buffer up to date, | |
1525 | * it will never end up being up to date. Set ret to EIO now | |
1526 | * and give up so that our caller doesn't loop forever | |
1527 | * on our EAGAINs. | |
1528 | */ | |
1529 | if (!btrfs_buffer_uptodate(tmp, 0)) | |
1530 | ret = -EIO; | |
c8c42864 | 1531 | free_extent_buffer(tmp); |
76a05b35 CM |
1532 | } |
1533 | return ret; | |
c8c42864 CM |
1534 | } |
1535 | ||
1536 | /* | |
1537 | * helper function for btrfs_search_slot. This does all of the checks | |
1538 | * for node-level blocks and does any balancing required based on | |
1539 | * the ins_len. | |
1540 | * | |
1541 | * If no extra work was required, zero is returned. If we had to | |
1542 | * drop the path, -EAGAIN is returned and btrfs_search_slot must | |
1543 | * start over | |
1544 | */ | |
1545 | static int | |
1546 | setup_nodes_for_search(struct btrfs_trans_handle *trans, | |
1547 | struct btrfs_root *root, struct btrfs_path *p, | |
bd681513 CM |
1548 | struct extent_buffer *b, int level, int ins_len, |
1549 | int *write_lock_level) | |
c8c42864 CM |
1550 | { |
1551 | int ret; | |
1552 | if ((p->search_for_split || ins_len > 0) && btrfs_header_nritems(b) >= | |
1553 | BTRFS_NODEPTRS_PER_BLOCK(root) - 3) { | |
1554 | int sret; | |
1555 | ||
bd681513 CM |
1556 | if (*write_lock_level < level + 1) { |
1557 | *write_lock_level = level + 1; | |
1558 | btrfs_release_path(p); | |
1559 | goto again; | |
1560 | } | |
1561 | ||
c8c42864 CM |
1562 | sret = reada_for_balance(root, p, level); |
1563 | if (sret) | |
1564 | goto again; | |
1565 | ||
1566 | btrfs_set_path_blocking(p); | |
1567 | sret = split_node(trans, root, p, level); | |
bd681513 | 1568 | btrfs_clear_path_blocking(p, NULL, 0); |
c8c42864 CM |
1569 | |
1570 | BUG_ON(sret > 0); | |
1571 | if (sret) { | |
1572 | ret = sret; | |
1573 | goto done; | |
1574 | } | |
1575 | b = p->nodes[level]; | |
1576 | } else if (ins_len < 0 && btrfs_header_nritems(b) < | |
cfbb9308 | 1577 | BTRFS_NODEPTRS_PER_BLOCK(root) / 2) { |
c8c42864 CM |
1578 | int sret; |
1579 | ||
bd681513 CM |
1580 | if (*write_lock_level < level + 1) { |
1581 | *write_lock_level = level + 1; | |
1582 | btrfs_release_path(p); | |
1583 | goto again; | |
1584 | } | |
1585 | ||
c8c42864 CM |
1586 | sret = reada_for_balance(root, p, level); |
1587 | if (sret) | |
1588 | goto again; | |
1589 | ||
1590 | btrfs_set_path_blocking(p); | |
1591 | sret = balance_level(trans, root, p, level); | |
bd681513 | 1592 | btrfs_clear_path_blocking(p, NULL, 0); |
c8c42864 CM |
1593 | |
1594 | if (sret) { | |
1595 | ret = sret; | |
1596 | goto done; | |
1597 | } | |
1598 | b = p->nodes[level]; | |
1599 | if (!b) { | |
b3b4aa74 | 1600 | btrfs_release_path(p); |
c8c42864 CM |
1601 | goto again; |
1602 | } | |
1603 | BUG_ON(btrfs_header_nritems(b) == 1); | |
1604 | } | |
1605 | return 0; | |
1606 | ||
1607 | again: | |
1608 | ret = -EAGAIN; | |
1609 | done: | |
1610 | return ret; | |
1611 | } | |
1612 | ||
74123bd7 CM |
1613 | /* |
1614 | * look for key in the tree. path is filled in with nodes along the way | |
1615 | * if key is found, we return zero and you can find the item in the leaf | |
1616 | * level of the path (level 0) | |
1617 | * | |
1618 | * If the key isn't found, the path points to the slot where it should | |
aa5d6bed CM |
1619 | * be inserted, and 1 is returned. If there are other errors during the |
1620 | * search a negative error number is returned. | |
97571fd0 CM |
1621 | * |
1622 | * if ins_len > 0, nodes and leaves will be split as we walk down the | |
1623 | * tree. if ins_len < 0, nodes will be merged as we walk down the tree (if | |
1624 | * possible) | |
74123bd7 | 1625 | */ |
e089f05c CM |
1626 | int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root |
1627 | *root, struct btrfs_key *key, struct btrfs_path *p, int | |
1628 | ins_len, int cow) | |
be0e5c09 | 1629 | { |
5f39d397 | 1630 | struct extent_buffer *b; |
be0e5c09 CM |
1631 | int slot; |
1632 | int ret; | |
33c66f43 | 1633 | int err; |
be0e5c09 | 1634 | int level; |
925baedd | 1635 | int lowest_unlock = 1; |
bd681513 CM |
1636 | int root_lock; |
1637 | /* everything at write_lock_level or lower must be write locked */ | |
1638 | int write_lock_level = 0; | |
9f3a7427 CM |
1639 | u8 lowest_level = 0; |
1640 | ||
6702ed49 | 1641 | lowest_level = p->lowest_level; |
323ac95b | 1642 | WARN_ON(lowest_level && ins_len > 0); |
22b0ebda | 1643 | WARN_ON(p->nodes[0] != NULL); |
25179201 | 1644 | |
bd681513 | 1645 | if (ins_len < 0) { |
925baedd | 1646 | lowest_unlock = 2; |
65b51a00 | 1647 | |
bd681513 CM |
1648 | /* when we are removing items, we might have to go up to level |
1649 | * two as we update tree pointers Make sure we keep write | |
1650 | * for those levels as well | |
1651 | */ | |
1652 | write_lock_level = 2; | |
1653 | } else if (ins_len > 0) { | |
1654 | /* | |
1655 | * for inserting items, make sure we have a write lock on | |
1656 | * level 1 so we can update keys | |
1657 | */ | |
1658 | write_lock_level = 1; | |
1659 | } | |
1660 | ||
1661 | if (!cow) | |
1662 | write_lock_level = -1; | |
1663 | ||
1664 | if (cow && (p->keep_locks || p->lowest_level)) | |
1665 | write_lock_level = BTRFS_MAX_LEVEL; | |
1666 | ||
bb803951 | 1667 | again: |
bd681513 CM |
1668 | /* |
1669 | * we try very hard to do read locks on the root | |
1670 | */ | |
1671 | root_lock = BTRFS_READ_LOCK; | |
1672 | level = 0; | |
5d4f98a2 | 1673 | if (p->search_commit_root) { |
bd681513 CM |
1674 | /* |
1675 | * the commit roots are read only | |
1676 | * so we always do read locks | |
1677 | */ | |
5d4f98a2 YZ |
1678 | b = root->commit_root; |
1679 | extent_buffer_get(b); | |
bd681513 | 1680 | level = btrfs_header_level(b); |
5d4f98a2 | 1681 | if (!p->skip_locking) |
bd681513 | 1682 | btrfs_tree_read_lock(b); |
5d4f98a2 | 1683 | } else { |
bd681513 | 1684 | if (p->skip_locking) { |
5d4f98a2 | 1685 | b = btrfs_root_node(root); |
bd681513 CM |
1686 | level = btrfs_header_level(b); |
1687 | } else { | |
1688 | /* we don't know the level of the root node | |
1689 | * until we actually have it read locked | |
1690 | */ | |
1691 | b = btrfs_read_lock_root_node(root); | |
1692 | level = btrfs_header_level(b); | |
1693 | if (level <= write_lock_level) { | |
1694 | /* whoops, must trade for write lock */ | |
1695 | btrfs_tree_read_unlock(b); | |
1696 | free_extent_buffer(b); | |
1697 | b = btrfs_lock_root_node(root); | |
1698 | root_lock = BTRFS_WRITE_LOCK; | |
1699 | ||
1700 | /* the level might have changed, check again */ | |
1701 | level = btrfs_header_level(b); | |
1702 | } | |
1703 | } | |
5d4f98a2 | 1704 | } |
bd681513 CM |
1705 | p->nodes[level] = b; |
1706 | if (!p->skip_locking) | |
1707 | p->locks[level] = root_lock; | |
925baedd | 1708 | |
eb60ceac | 1709 | while (b) { |
5f39d397 | 1710 | level = btrfs_header_level(b); |
65b51a00 CM |
1711 | |
1712 | /* | |
1713 | * setup the path here so we can release it under lock | |
1714 | * contention with the cow code | |
1715 | */ | |
02217ed2 | 1716 | if (cow) { |
c8c42864 CM |
1717 | /* |
1718 | * if we don't really need to cow this block | |
1719 | * then we don't want to set the path blocking, | |
1720 | * so we test it here | |
1721 | */ | |
5d4f98a2 | 1722 | if (!should_cow_block(trans, root, b)) |
65b51a00 | 1723 | goto cow_done; |
5d4f98a2 | 1724 | |
b4ce94de CM |
1725 | btrfs_set_path_blocking(p); |
1726 | ||
bd681513 CM |
1727 | /* |
1728 | * must have write locks on this node and the | |
1729 | * parent | |
1730 | */ | |
1731 | if (level + 1 > write_lock_level) { | |
1732 | write_lock_level = level + 1; | |
1733 | btrfs_release_path(p); | |
1734 | goto again; | |
1735 | } | |
1736 | ||
33c66f43 YZ |
1737 | err = btrfs_cow_block(trans, root, b, |
1738 | p->nodes[level + 1], | |
1739 | p->slots[level + 1], &b); | |
1740 | if (err) { | |
33c66f43 | 1741 | ret = err; |
65b51a00 | 1742 | goto done; |
54aa1f4d | 1743 | } |
02217ed2 | 1744 | } |
65b51a00 | 1745 | cow_done: |
02217ed2 | 1746 | BUG_ON(!cow && ins_len); |
65b51a00 | 1747 | |
eb60ceac | 1748 | p->nodes[level] = b; |
bd681513 | 1749 | btrfs_clear_path_blocking(p, NULL, 0); |
b4ce94de CM |
1750 | |
1751 | /* | |
1752 | * we have a lock on b and as long as we aren't changing | |
1753 | * the tree, there is no way to for the items in b to change. | |
1754 | * It is safe to drop the lock on our parent before we | |
1755 | * go through the expensive btree search on b. | |
1756 | * | |
1757 | * If cow is true, then we might be changing slot zero, | |
1758 | * which may require changing the parent. So, we can't | |
1759 | * drop the lock until after we know which slot we're | |
1760 | * operating on. | |
1761 | */ | |
1762 | if (!cow) | |
1763 | btrfs_unlock_up_safe(p, level + 1); | |
1764 | ||
5f39d397 | 1765 | ret = bin_search(b, key, level, &slot); |
b4ce94de | 1766 | |
5f39d397 | 1767 | if (level != 0) { |
33c66f43 YZ |
1768 | int dec = 0; |
1769 | if (ret && slot > 0) { | |
1770 | dec = 1; | |
be0e5c09 | 1771 | slot -= 1; |
33c66f43 | 1772 | } |
be0e5c09 | 1773 | p->slots[level] = slot; |
33c66f43 | 1774 | err = setup_nodes_for_search(trans, root, p, b, level, |
bd681513 | 1775 | ins_len, &write_lock_level); |
33c66f43 | 1776 | if (err == -EAGAIN) |
c8c42864 | 1777 | goto again; |
33c66f43 YZ |
1778 | if (err) { |
1779 | ret = err; | |
c8c42864 | 1780 | goto done; |
33c66f43 | 1781 | } |
c8c42864 CM |
1782 | b = p->nodes[level]; |
1783 | slot = p->slots[level]; | |
b4ce94de | 1784 | |
bd681513 CM |
1785 | /* |
1786 | * slot 0 is special, if we change the key | |
1787 | * we have to update the parent pointer | |
1788 | * which means we must have a write lock | |
1789 | * on the parent | |
1790 | */ | |
1791 | if (slot == 0 && cow && | |
1792 | write_lock_level < level + 1) { | |
1793 | write_lock_level = level + 1; | |
1794 | btrfs_release_path(p); | |
1795 | goto again; | |
1796 | } | |
1797 | ||
f9efa9c7 CM |
1798 | unlock_up(p, level, lowest_unlock); |
1799 | ||
925baedd | 1800 | if (level == lowest_level) { |
33c66f43 YZ |
1801 | if (dec) |
1802 | p->slots[level]++; | |
5b21f2ed | 1803 | goto done; |
925baedd | 1804 | } |
ca7a79ad | 1805 | |
33c66f43 | 1806 | err = read_block_for_search(trans, root, p, |
c8c42864 | 1807 | &b, level, slot, key); |
33c66f43 | 1808 | if (err == -EAGAIN) |
c8c42864 | 1809 | goto again; |
33c66f43 YZ |
1810 | if (err) { |
1811 | ret = err; | |
76a05b35 | 1812 | goto done; |
33c66f43 | 1813 | } |
76a05b35 | 1814 | |
b4ce94de | 1815 | if (!p->skip_locking) { |
bd681513 CM |
1816 | level = btrfs_header_level(b); |
1817 | if (level <= write_lock_level) { | |
1818 | err = btrfs_try_tree_write_lock(b); | |
1819 | if (!err) { | |
1820 | btrfs_set_path_blocking(p); | |
1821 | btrfs_tree_lock(b); | |
1822 | btrfs_clear_path_blocking(p, b, | |
1823 | BTRFS_WRITE_LOCK); | |
1824 | } | |
1825 | p->locks[level] = BTRFS_WRITE_LOCK; | |
1826 | } else { | |
1827 | err = btrfs_try_tree_read_lock(b); | |
1828 | if (!err) { | |
1829 | btrfs_set_path_blocking(p); | |
1830 | btrfs_tree_read_lock(b); | |
1831 | btrfs_clear_path_blocking(p, b, | |
1832 | BTRFS_READ_LOCK); | |
1833 | } | |
1834 | p->locks[level] = BTRFS_READ_LOCK; | |
b4ce94de | 1835 | } |
bd681513 | 1836 | p->nodes[level] = b; |
b4ce94de | 1837 | } |
be0e5c09 CM |
1838 | } else { |
1839 | p->slots[level] = slot; | |
87b29b20 YZ |
1840 | if (ins_len > 0 && |
1841 | btrfs_leaf_free_space(root, b) < ins_len) { | |
bd681513 CM |
1842 | if (write_lock_level < 1) { |
1843 | write_lock_level = 1; | |
1844 | btrfs_release_path(p); | |
1845 | goto again; | |
1846 | } | |
1847 | ||
b4ce94de | 1848 | btrfs_set_path_blocking(p); |
33c66f43 YZ |
1849 | err = split_leaf(trans, root, key, |
1850 | p, ins_len, ret == 0); | |
bd681513 | 1851 | btrfs_clear_path_blocking(p, NULL, 0); |
b4ce94de | 1852 | |
33c66f43 YZ |
1853 | BUG_ON(err > 0); |
1854 | if (err) { | |
1855 | ret = err; | |
65b51a00 CM |
1856 | goto done; |
1857 | } | |
5c680ed6 | 1858 | } |
459931ec CM |
1859 | if (!p->search_for_split) |
1860 | unlock_up(p, level, lowest_unlock); | |
65b51a00 | 1861 | goto done; |
be0e5c09 CM |
1862 | } |
1863 | } | |
65b51a00 CM |
1864 | ret = 1; |
1865 | done: | |
b4ce94de CM |
1866 | /* |
1867 | * we don't really know what they plan on doing with the path | |
1868 | * from here on, so for now just mark it as blocking | |
1869 | */ | |
b9473439 CM |
1870 | if (!p->leave_spinning) |
1871 | btrfs_set_path_blocking(p); | |
76a05b35 | 1872 | if (ret < 0) |
b3b4aa74 | 1873 | btrfs_release_path(p); |
65b51a00 | 1874 | return ret; |
be0e5c09 CM |
1875 | } |
1876 | ||
74123bd7 CM |
1877 | /* |
1878 | * adjust the pointers going up the tree, starting at level | |
1879 | * making sure the right key of each node is points to 'key'. | |
1880 | * This is used after shifting pointers to the left, so it stops | |
1881 | * fixing up pointers when a given leaf/node is not in slot 0 of the | |
1882 | * higher levels | |
aa5d6bed CM |
1883 | * |
1884 | * If this fails to write a tree block, it returns -1, but continues | |
1885 | * fixing up the blocks in ram so the tree is consistent. | |
74123bd7 | 1886 | */ |
5f39d397 CM |
1887 | static int fixup_low_keys(struct btrfs_trans_handle *trans, |
1888 | struct btrfs_root *root, struct btrfs_path *path, | |
1889 | struct btrfs_disk_key *key, int level) | |
be0e5c09 CM |
1890 | { |
1891 | int i; | |
aa5d6bed | 1892 | int ret = 0; |
5f39d397 CM |
1893 | struct extent_buffer *t; |
1894 | ||
234b63a0 | 1895 | for (i = level; i < BTRFS_MAX_LEVEL; i++) { |
be0e5c09 | 1896 | int tslot = path->slots[i]; |
eb60ceac | 1897 | if (!path->nodes[i]) |
be0e5c09 | 1898 | break; |
5f39d397 CM |
1899 | t = path->nodes[i]; |
1900 | btrfs_set_node_key(t, key, tslot); | |
d6025579 | 1901 | btrfs_mark_buffer_dirty(path->nodes[i]); |
be0e5c09 CM |
1902 | if (tslot != 0) |
1903 | break; | |
1904 | } | |
aa5d6bed | 1905 | return ret; |
be0e5c09 CM |
1906 | } |
1907 | ||
31840ae1 ZY |
1908 | /* |
1909 | * update item key. | |
1910 | * | |
1911 | * This function isn't completely safe. It's the caller's responsibility | |
1912 | * that the new key won't break the order | |
1913 | */ | |
1914 | int btrfs_set_item_key_safe(struct btrfs_trans_handle *trans, | |
1915 | struct btrfs_root *root, struct btrfs_path *path, | |
1916 | struct btrfs_key *new_key) | |
1917 | { | |
1918 | struct btrfs_disk_key disk_key; | |
1919 | struct extent_buffer *eb; | |
1920 | int slot; | |
1921 | ||
1922 | eb = path->nodes[0]; | |
1923 | slot = path->slots[0]; | |
1924 | if (slot > 0) { | |
1925 | btrfs_item_key(eb, &disk_key, slot - 1); | |
1926 | if (comp_keys(&disk_key, new_key) >= 0) | |
1927 | return -1; | |
1928 | } | |
1929 | if (slot < btrfs_header_nritems(eb) - 1) { | |
1930 | btrfs_item_key(eb, &disk_key, slot + 1); | |
1931 | if (comp_keys(&disk_key, new_key) <= 0) | |
1932 | return -1; | |
1933 | } | |
1934 | ||
1935 | btrfs_cpu_key_to_disk(&disk_key, new_key); | |
1936 | btrfs_set_item_key(eb, &disk_key, slot); | |
1937 | btrfs_mark_buffer_dirty(eb); | |
1938 | if (slot == 0) | |
1939 | fixup_low_keys(trans, root, path, &disk_key, 1); | |
1940 | return 0; | |
1941 | } | |
1942 | ||
74123bd7 CM |
1943 | /* |
1944 | * try to push data from one node into the next node left in the | |
79f95c82 | 1945 | * tree. |
aa5d6bed CM |
1946 | * |
1947 | * returns 0 if some ptrs were pushed left, < 0 if there was some horrible | |
1948 | * error, and > 0 if there was no room in the left hand block. | |
74123bd7 | 1949 | */ |
98ed5174 CM |
1950 | static int push_node_left(struct btrfs_trans_handle *trans, |
1951 | struct btrfs_root *root, struct extent_buffer *dst, | |
971a1f66 | 1952 | struct extent_buffer *src, int empty) |
be0e5c09 | 1953 | { |
be0e5c09 | 1954 | int push_items = 0; |
bb803951 CM |
1955 | int src_nritems; |
1956 | int dst_nritems; | |
aa5d6bed | 1957 | int ret = 0; |
be0e5c09 | 1958 | |
5f39d397 CM |
1959 | src_nritems = btrfs_header_nritems(src); |
1960 | dst_nritems = btrfs_header_nritems(dst); | |
123abc88 | 1961 | push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems; |
7bb86316 CM |
1962 | WARN_ON(btrfs_header_generation(src) != trans->transid); |
1963 | WARN_ON(btrfs_header_generation(dst) != trans->transid); | |
54aa1f4d | 1964 | |
bce4eae9 | 1965 | if (!empty && src_nritems <= 8) |
971a1f66 CM |
1966 | return 1; |
1967 | ||
d397712b | 1968 | if (push_items <= 0) |
be0e5c09 CM |
1969 | return 1; |
1970 | ||
bce4eae9 | 1971 | if (empty) { |
971a1f66 | 1972 | push_items = min(src_nritems, push_items); |
bce4eae9 CM |
1973 | if (push_items < src_nritems) { |
1974 | /* leave at least 8 pointers in the node if | |
1975 | * we aren't going to empty it | |
1976 | */ | |
1977 | if (src_nritems - push_items < 8) { | |
1978 | if (push_items <= 8) | |
1979 | return 1; | |
1980 | push_items -= 8; | |
1981 | } | |
1982 | } | |
1983 | } else | |
1984 | push_items = min(src_nritems - 8, push_items); | |
79f95c82 | 1985 | |
5f39d397 CM |
1986 | copy_extent_buffer(dst, src, |
1987 | btrfs_node_key_ptr_offset(dst_nritems), | |
1988 | btrfs_node_key_ptr_offset(0), | |
d397712b | 1989 | push_items * sizeof(struct btrfs_key_ptr)); |
5f39d397 | 1990 | |
bb803951 | 1991 | if (push_items < src_nritems) { |
5f39d397 CM |
1992 | memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0), |
1993 | btrfs_node_key_ptr_offset(push_items), | |
1994 | (src_nritems - push_items) * | |
1995 | sizeof(struct btrfs_key_ptr)); | |
1996 | } | |
1997 | btrfs_set_header_nritems(src, src_nritems - push_items); | |
1998 | btrfs_set_header_nritems(dst, dst_nritems + push_items); | |
1999 | btrfs_mark_buffer_dirty(src); | |
2000 | btrfs_mark_buffer_dirty(dst); | |
31840ae1 | 2001 | |
79f95c82 CM |
2002 | return ret; |
2003 | } | |
2004 | ||
2005 | /* | |
2006 | * try to push data from one node into the next node right in the | |
2007 | * tree. | |
2008 | * | |
2009 | * returns 0 if some ptrs were pushed, < 0 if there was some horrible | |
2010 | * error, and > 0 if there was no room in the right hand block. | |
2011 | * | |
2012 | * this will only push up to 1/2 the contents of the left node over | |
2013 | */ | |
5f39d397 CM |
2014 | static int balance_node_right(struct btrfs_trans_handle *trans, |
2015 | struct btrfs_root *root, | |
2016 | struct extent_buffer *dst, | |
2017 | struct extent_buffer *src) | |
79f95c82 | 2018 | { |
79f95c82 CM |
2019 | int push_items = 0; |
2020 | int max_push; | |
2021 | int src_nritems; | |
2022 | int dst_nritems; | |
2023 | int ret = 0; | |
79f95c82 | 2024 | |
7bb86316 CM |
2025 | WARN_ON(btrfs_header_generation(src) != trans->transid); |
2026 | WARN_ON(btrfs_header_generation(dst) != trans->transid); | |
2027 | ||
5f39d397 CM |
2028 | src_nritems = btrfs_header_nritems(src); |
2029 | dst_nritems = btrfs_header_nritems(dst); | |
123abc88 | 2030 | push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems; |
d397712b | 2031 | if (push_items <= 0) |
79f95c82 | 2032 | return 1; |
bce4eae9 | 2033 | |
d397712b | 2034 | if (src_nritems < 4) |
bce4eae9 | 2035 | return 1; |
79f95c82 CM |
2036 | |
2037 | max_push = src_nritems / 2 + 1; | |
2038 | /* don't try to empty the node */ | |
d397712b | 2039 | if (max_push >= src_nritems) |
79f95c82 | 2040 | return 1; |
252c38f0 | 2041 | |
79f95c82 CM |
2042 | if (max_push < push_items) |
2043 | push_items = max_push; | |
2044 | ||
5f39d397 CM |
2045 | memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items), |
2046 | btrfs_node_key_ptr_offset(0), | |
2047 | (dst_nritems) * | |
2048 | sizeof(struct btrfs_key_ptr)); | |
d6025579 | 2049 | |
5f39d397 CM |
2050 | copy_extent_buffer(dst, src, |
2051 | btrfs_node_key_ptr_offset(0), | |
2052 | btrfs_node_key_ptr_offset(src_nritems - push_items), | |
d397712b | 2053 | push_items * sizeof(struct btrfs_key_ptr)); |
79f95c82 | 2054 | |
5f39d397 CM |
2055 | btrfs_set_header_nritems(src, src_nritems - push_items); |
2056 | btrfs_set_header_nritems(dst, dst_nritems + push_items); | |
79f95c82 | 2057 | |
5f39d397 CM |
2058 | btrfs_mark_buffer_dirty(src); |
2059 | btrfs_mark_buffer_dirty(dst); | |
31840ae1 | 2060 | |
aa5d6bed | 2061 | return ret; |
be0e5c09 CM |
2062 | } |
2063 | ||
97571fd0 CM |
2064 | /* |
2065 | * helper function to insert a new root level in the tree. | |
2066 | * A new node is allocated, and a single item is inserted to | |
2067 | * point to the existing root | |
aa5d6bed CM |
2068 | * |
2069 | * returns zero on success or < 0 on failure. | |
97571fd0 | 2070 | */ |
d397712b | 2071 | static noinline int insert_new_root(struct btrfs_trans_handle *trans, |
5f39d397 CM |
2072 | struct btrfs_root *root, |
2073 | struct btrfs_path *path, int level) | |
5c680ed6 | 2074 | { |
7bb86316 | 2075 | u64 lower_gen; |
5f39d397 CM |
2076 | struct extent_buffer *lower; |
2077 | struct extent_buffer *c; | |
925baedd | 2078 | struct extent_buffer *old; |
5f39d397 | 2079 | struct btrfs_disk_key lower_key; |
5c680ed6 CM |
2080 | |
2081 | BUG_ON(path->nodes[level]); | |
2082 | BUG_ON(path->nodes[level-1] != root->node); | |
2083 | ||
7bb86316 CM |
2084 | lower = path->nodes[level-1]; |
2085 | if (level == 1) | |
2086 | btrfs_item_key(lower, &lower_key, 0); | |
2087 | else | |
2088 | btrfs_node_key(lower, &lower_key, 0); | |
2089 | ||
31840ae1 | 2090 | c = btrfs_alloc_free_block(trans, root, root->nodesize, 0, |
5d4f98a2 | 2091 | root->root_key.objectid, &lower_key, |
ad3d81ba | 2092 | level, root->node->start, 0); |
5f39d397 CM |
2093 | if (IS_ERR(c)) |
2094 | return PTR_ERR(c); | |
925baedd | 2095 | |
f0486c68 YZ |
2096 | root_add_used(root, root->nodesize); |
2097 | ||
5d4f98a2 | 2098 | memset_extent_buffer(c, 0, 0, sizeof(struct btrfs_header)); |
5f39d397 CM |
2099 | btrfs_set_header_nritems(c, 1); |
2100 | btrfs_set_header_level(c, level); | |
db94535d | 2101 | btrfs_set_header_bytenr(c, c->start); |
5f39d397 | 2102 | btrfs_set_header_generation(c, trans->transid); |
5d4f98a2 | 2103 | btrfs_set_header_backref_rev(c, BTRFS_MIXED_BACKREF_REV); |
5f39d397 | 2104 | btrfs_set_header_owner(c, root->root_key.objectid); |
5f39d397 CM |
2105 | |
2106 | write_extent_buffer(c, root->fs_info->fsid, | |
2107 | (unsigned long)btrfs_header_fsid(c), | |
2108 | BTRFS_FSID_SIZE); | |
e17cade2 CM |
2109 | |
2110 | write_extent_buffer(c, root->fs_info->chunk_tree_uuid, | |
2111 | (unsigned long)btrfs_header_chunk_tree_uuid(c), | |
2112 | BTRFS_UUID_SIZE); | |
2113 | ||
5f39d397 | 2114 | btrfs_set_node_key(c, &lower_key, 0); |
db94535d | 2115 | btrfs_set_node_blockptr(c, 0, lower->start); |
7bb86316 | 2116 | lower_gen = btrfs_header_generation(lower); |
31840ae1 | 2117 | WARN_ON(lower_gen != trans->transid); |
7bb86316 CM |
2118 | |
2119 | btrfs_set_node_ptr_generation(c, 0, lower_gen); | |
d5719762 | 2120 | |
5f39d397 | 2121 | btrfs_mark_buffer_dirty(c); |
d5719762 | 2122 | |
925baedd | 2123 | old = root->node; |
240f62c8 | 2124 | rcu_assign_pointer(root->node, c); |
925baedd CM |
2125 | |
2126 | /* the super has an extra ref to root->node */ | |
2127 | free_extent_buffer(old); | |
2128 | ||
0b86a832 | 2129 | add_root_to_dirty_list(root); |
5f39d397 CM |
2130 | extent_buffer_get(c); |
2131 | path->nodes[level] = c; | |
bd681513 | 2132 | path->locks[level] = BTRFS_WRITE_LOCK; |
5c680ed6 CM |
2133 | path->slots[level] = 0; |
2134 | return 0; | |
2135 | } | |
2136 | ||
74123bd7 CM |
2137 | /* |
2138 | * worker function to insert a single pointer in a node. | |
2139 | * the node should have enough room for the pointer already | |
97571fd0 | 2140 | * |
74123bd7 CM |
2141 | * slot and level indicate where you want the key to go, and |
2142 | * blocknr is the block the key points to. | |
aa5d6bed CM |
2143 | * |
2144 | * returns zero on success and < 0 on any error | |
74123bd7 | 2145 | */ |
e089f05c CM |
2146 | static int insert_ptr(struct btrfs_trans_handle *trans, struct btrfs_root |
2147 | *root, struct btrfs_path *path, struct btrfs_disk_key | |
db94535d | 2148 | *key, u64 bytenr, int slot, int level) |
74123bd7 | 2149 | { |
5f39d397 | 2150 | struct extent_buffer *lower; |
74123bd7 | 2151 | int nritems; |
5c680ed6 CM |
2152 | |
2153 | BUG_ON(!path->nodes[level]); | |
f0486c68 | 2154 | btrfs_assert_tree_locked(path->nodes[level]); |
5f39d397 CM |
2155 | lower = path->nodes[level]; |
2156 | nritems = btrfs_header_nritems(lower); | |
c293498b | 2157 | BUG_ON(slot > nritems); |
123abc88 | 2158 | if (nritems == BTRFS_NODEPTRS_PER_BLOCK(root)) |
74123bd7 CM |
2159 | BUG(); |
2160 | if (slot != nritems) { | |
5f39d397 CM |
2161 | memmove_extent_buffer(lower, |
2162 | btrfs_node_key_ptr_offset(slot + 1), | |
2163 | btrfs_node_key_ptr_offset(slot), | |
d6025579 | 2164 | (nritems - slot) * sizeof(struct btrfs_key_ptr)); |
74123bd7 | 2165 | } |
5f39d397 | 2166 | btrfs_set_node_key(lower, key, slot); |
db94535d | 2167 | btrfs_set_node_blockptr(lower, slot, bytenr); |
74493f7a CM |
2168 | WARN_ON(trans->transid == 0); |
2169 | btrfs_set_node_ptr_generation(lower, slot, trans->transid); | |
5f39d397 CM |
2170 | btrfs_set_header_nritems(lower, nritems + 1); |
2171 | btrfs_mark_buffer_dirty(lower); | |
74123bd7 CM |
2172 | return 0; |
2173 | } | |
2174 | ||
97571fd0 CM |
2175 | /* |
2176 | * split the node at the specified level in path in two. | |
2177 | * The path is corrected to point to the appropriate node after the split | |
2178 | * | |
2179 | * Before splitting this tries to make some room in the node by pushing | |
2180 | * left and right, if either one works, it returns right away. | |
aa5d6bed CM |
2181 | * |
2182 | * returns 0 on success and < 0 on failure | |
97571fd0 | 2183 | */ |
e02119d5 CM |
2184 | static noinline int split_node(struct btrfs_trans_handle *trans, |
2185 | struct btrfs_root *root, | |
2186 | struct btrfs_path *path, int level) | |
be0e5c09 | 2187 | { |
5f39d397 CM |
2188 | struct extent_buffer *c; |
2189 | struct extent_buffer *split; | |
2190 | struct btrfs_disk_key disk_key; | |
be0e5c09 | 2191 | int mid; |
5c680ed6 | 2192 | int ret; |
aa5d6bed | 2193 | int wret; |
7518a238 | 2194 | u32 c_nritems; |
eb60ceac | 2195 | |
5f39d397 | 2196 | c = path->nodes[level]; |
7bb86316 | 2197 | WARN_ON(btrfs_header_generation(c) != trans->transid); |
5f39d397 | 2198 | if (c == root->node) { |
5c680ed6 | 2199 | /* trying to split the root, lets make a new one */ |
e089f05c | 2200 | ret = insert_new_root(trans, root, path, level + 1); |
5c680ed6 CM |
2201 | if (ret) |
2202 | return ret; | |
b3612421 | 2203 | } else { |
e66f709b | 2204 | ret = push_nodes_for_insert(trans, root, path, level); |
5f39d397 CM |
2205 | c = path->nodes[level]; |
2206 | if (!ret && btrfs_header_nritems(c) < | |
c448acf0 | 2207 | BTRFS_NODEPTRS_PER_BLOCK(root) - 3) |
e66f709b | 2208 | return 0; |
54aa1f4d CM |
2209 | if (ret < 0) |
2210 | return ret; | |
be0e5c09 | 2211 | } |
e66f709b | 2212 | |
5f39d397 | 2213 | c_nritems = btrfs_header_nritems(c); |
5d4f98a2 YZ |
2214 | mid = (c_nritems + 1) / 2; |
2215 | btrfs_node_key(c, &disk_key, mid); | |
7bb86316 | 2216 | |
5d4f98a2 | 2217 | split = btrfs_alloc_free_block(trans, root, root->nodesize, 0, |
31840ae1 | 2218 | root->root_key.objectid, |
5d4f98a2 | 2219 | &disk_key, level, c->start, 0); |
5f39d397 CM |
2220 | if (IS_ERR(split)) |
2221 | return PTR_ERR(split); | |
2222 | ||
f0486c68 YZ |
2223 | root_add_used(root, root->nodesize); |
2224 | ||
5d4f98a2 | 2225 | memset_extent_buffer(split, 0, 0, sizeof(struct btrfs_header)); |
5f39d397 | 2226 | btrfs_set_header_level(split, btrfs_header_level(c)); |
db94535d | 2227 | btrfs_set_header_bytenr(split, split->start); |
5f39d397 | 2228 | btrfs_set_header_generation(split, trans->transid); |
5d4f98a2 | 2229 | btrfs_set_header_backref_rev(split, BTRFS_MIXED_BACKREF_REV); |
5f39d397 CM |
2230 | btrfs_set_header_owner(split, root->root_key.objectid); |
2231 | write_extent_buffer(split, root->fs_info->fsid, | |
2232 | (unsigned long)btrfs_header_fsid(split), | |
2233 | BTRFS_FSID_SIZE); | |
e17cade2 CM |
2234 | write_extent_buffer(split, root->fs_info->chunk_tree_uuid, |
2235 | (unsigned long)btrfs_header_chunk_tree_uuid(split), | |
2236 | BTRFS_UUID_SIZE); | |
54aa1f4d | 2237 | |
5f39d397 CM |
2238 | |
2239 | copy_extent_buffer(split, c, | |
2240 | btrfs_node_key_ptr_offset(0), | |
2241 | btrfs_node_key_ptr_offset(mid), | |
2242 | (c_nritems - mid) * sizeof(struct btrfs_key_ptr)); | |
2243 | btrfs_set_header_nritems(split, c_nritems - mid); | |
2244 | btrfs_set_header_nritems(c, mid); | |
aa5d6bed CM |
2245 | ret = 0; |
2246 | ||
5f39d397 CM |
2247 | btrfs_mark_buffer_dirty(c); |
2248 | btrfs_mark_buffer_dirty(split); | |
2249 | ||
db94535d | 2250 | wret = insert_ptr(trans, root, path, &disk_key, split->start, |
5f39d397 | 2251 | path->slots[level + 1] + 1, |
123abc88 | 2252 | level + 1); |
aa5d6bed CM |
2253 | if (wret) |
2254 | ret = wret; | |
2255 | ||
5de08d7d | 2256 | if (path->slots[level] >= mid) { |
5c680ed6 | 2257 | path->slots[level] -= mid; |
925baedd | 2258 | btrfs_tree_unlock(c); |
5f39d397 CM |
2259 | free_extent_buffer(c); |
2260 | path->nodes[level] = split; | |
5c680ed6 CM |
2261 | path->slots[level + 1] += 1; |
2262 | } else { | |
925baedd | 2263 | btrfs_tree_unlock(split); |
5f39d397 | 2264 | free_extent_buffer(split); |
be0e5c09 | 2265 | } |
aa5d6bed | 2266 | return ret; |
be0e5c09 CM |
2267 | } |
2268 | ||
74123bd7 CM |
2269 | /* |
2270 | * how many bytes are required to store the items in a leaf. start | |
2271 | * and nr indicate which items in the leaf to check. This totals up the | |
2272 | * space used both by the item structs and the item data | |
2273 | */ | |
5f39d397 | 2274 | static int leaf_space_used(struct extent_buffer *l, int start, int nr) |
be0e5c09 CM |
2275 | { |
2276 | int data_len; | |
5f39d397 | 2277 | int nritems = btrfs_header_nritems(l); |
d4dbff95 | 2278 | int end = min(nritems, start + nr) - 1; |
be0e5c09 CM |
2279 | |
2280 | if (!nr) | |
2281 | return 0; | |
5f39d397 CM |
2282 | data_len = btrfs_item_end_nr(l, start); |
2283 | data_len = data_len - btrfs_item_offset_nr(l, end); | |
0783fcfc | 2284 | data_len += sizeof(struct btrfs_item) * nr; |
d4dbff95 | 2285 | WARN_ON(data_len < 0); |
be0e5c09 CM |
2286 | return data_len; |
2287 | } | |
2288 | ||
d4dbff95 CM |
2289 | /* |
2290 | * The space between the end of the leaf items and | |
2291 | * the start of the leaf data. IOW, how much room | |
2292 | * the leaf has left for both items and data | |
2293 | */ | |
d397712b | 2294 | noinline int btrfs_leaf_free_space(struct btrfs_root *root, |
e02119d5 | 2295 | struct extent_buffer *leaf) |
d4dbff95 | 2296 | { |
5f39d397 CM |
2297 | int nritems = btrfs_header_nritems(leaf); |
2298 | int ret; | |
2299 | ret = BTRFS_LEAF_DATA_SIZE(root) - leaf_space_used(leaf, 0, nritems); | |
2300 | if (ret < 0) { | |
d397712b CM |
2301 | printk(KERN_CRIT "leaf free space ret %d, leaf data size %lu, " |
2302 | "used %d nritems %d\n", | |
ae2f5411 | 2303 | ret, (unsigned long) BTRFS_LEAF_DATA_SIZE(root), |
5f39d397 CM |
2304 | leaf_space_used(leaf, 0, nritems), nritems); |
2305 | } | |
2306 | return ret; | |
d4dbff95 CM |
2307 | } |
2308 | ||
99d8f83c CM |
2309 | /* |
2310 | * min slot controls the lowest index we're willing to push to the | |
2311 | * right. We'll push up to and including min_slot, but no lower | |
2312 | */ | |
44871b1b CM |
2313 | static noinline int __push_leaf_right(struct btrfs_trans_handle *trans, |
2314 | struct btrfs_root *root, | |
2315 | struct btrfs_path *path, | |
2316 | int data_size, int empty, | |
2317 | struct extent_buffer *right, | |
99d8f83c CM |
2318 | int free_space, u32 left_nritems, |
2319 | u32 min_slot) | |
00ec4c51 | 2320 | { |
5f39d397 | 2321 | struct extent_buffer *left = path->nodes[0]; |
44871b1b | 2322 | struct extent_buffer *upper = path->nodes[1]; |
5f39d397 | 2323 | struct btrfs_disk_key disk_key; |
00ec4c51 | 2324 | int slot; |
34a38218 | 2325 | u32 i; |
00ec4c51 CM |
2326 | int push_space = 0; |
2327 | int push_items = 0; | |
0783fcfc | 2328 | struct btrfs_item *item; |
34a38218 | 2329 | u32 nr; |
7518a238 | 2330 | u32 right_nritems; |
5f39d397 | 2331 | u32 data_end; |
db94535d | 2332 | u32 this_item_size; |
00ec4c51 | 2333 | |
34a38218 CM |
2334 | if (empty) |
2335 | nr = 0; | |
2336 | else | |
99d8f83c | 2337 | nr = max_t(u32, 1, min_slot); |
34a38218 | 2338 | |
31840ae1 | 2339 | if (path->slots[0] >= left_nritems) |
87b29b20 | 2340 | push_space += data_size; |
31840ae1 | 2341 | |
44871b1b | 2342 | slot = path->slots[1]; |
34a38218 CM |
2343 | i = left_nritems - 1; |
2344 | while (i >= nr) { | |
5f39d397 | 2345 | item = btrfs_item_nr(left, i); |
db94535d | 2346 | |
31840ae1 ZY |
2347 | if (!empty && push_items > 0) { |
2348 | if (path->slots[0] > i) | |
2349 | break; | |
2350 | if (path->slots[0] == i) { | |
2351 | int space = btrfs_leaf_free_space(root, left); | |
2352 | if (space + push_space * 2 > free_space) | |
2353 | break; | |
2354 | } | |
2355 | } | |
2356 | ||
00ec4c51 | 2357 | if (path->slots[0] == i) |
87b29b20 | 2358 | push_space += data_size; |
db94535d | 2359 | |
db94535d CM |
2360 | this_item_size = btrfs_item_size(left, item); |
2361 | if (this_item_size + sizeof(*item) + push_space > free_space) | |
00ec4c51 | 2362 | break; |
31840ae1 | 2363 | |
00ec4c51 | 2364 | push_items++; |
db94535d | 2365 | push_space += this_item_size + sizeof(*item); |
34a38218 CM |
2366 | if (i == 0) |
2367 | break; | |
2368 | i--; | |
db94535d | 2369 | } |
5f39d397 | 2370 | |
925baedd CM |
2371 | if (push_items == 0) |
2372 | goto out_unlock; | |
5f39d397 | 2373 | |
34a38218 | 2374 | if (!empty && push_items == left_nritems) |
a429e513 | 2375 | WARN_ON(1); |
5f39d397 | 2376 | |
00ec4c51 | 2377 | /* push left to right */ |
5f39d397 | 2378 | right_nritems = btrfs_header_nritems(right); |
34a38218 | 2379 | |
5f39d397 | 2380 | push_space = btrfs_item_end_nr(left, left_nritems - push_items); |
123abc88 | 2381 | push_space -= leaf_data_end(root, left); |
5f39d397 | 2382 | |
00ec4c51 | 2383 | /* make room in the right data area */ |
5f39d397 CM |
2384 | data_end = leaf_data_end(root, right); |
2385 | memmove_extent_buffer(right, | |
2386 | btrfs_leaf_data(right) + data_end - push_space, | |
2387 | btrfs_leaf_data(right) + data_end, | |
2388 | BTRFS_LEAF_DATA_SIZE(root) - data_end); | |
2389 | ||
00ec4c51 | 2390 | /* copy from the left data area */ |
5f39d397 | 2391 | copy_extent_buffer(right, left, btrfs_leaf_data(right) + |
d6025579 CM |
2392 | BTRFS_LEAF_DATA_SIZE(root) - push_space, |
2393 | btrfs_leaf_data(left) + leaf_data_end(root, left), | |
2394 | push_space); | |
5f39d397 CM |
2395 | |
2396 | memmove_extent_buffer(right, btrfs_item_nr_offset(push_items), | |
2397 | btrfs_item_nr_offset(0), | |
2398 | right_nritems * sizeof(struct btrfs_item)); | |
2399 | ||
00ec4c51 | 2400 | /* copy the items from left to right */ |
5f39d397 CM |
2401 | copy_extent_buffer(right, left, btrfs_item_nr_offset(0), |
2402 | btrfs_item_nr_offset(left_nritems - push_items), | |
2403 | push_items * sizeof(struct btrfs_item)); | |
00ec4c51 CM |
2404 | |
2405 | /* update the item pointers */ | |
7518a238 | 2406 | right_nritems += push_items; |
5f39d397 | 2407 | btrfs_set_header_nritems(right, right_nritems); |
123abc88 | 2408 | push_space = BTRFS_LEAF_DATA_SIZE(root); |
7518a238 | 2409 | for (i = 0; i < right_nritems; i++) { |
5f39d397 | 2410 | item = btrfs_item_nr(right, i); |
db94535d CM |
2411 | push_space -= btrfs_item_size(right, item); |
2412 | btrfs_set_item_offset(right, item, push_space); | |
2413 | } | |
2414 | ||
7518a238 | 2415 | left_nritems -= push_items; |
5f39d397 | 2416 | btrfs_set_header_nritems(left, left_nritems); |
00ec4c51 | 2417 | |
34a38218 CM |
2418 | if (left_nritems) |
2419 | btrfs_mark_buffer_dirty(left); | |
f0486c68 YZ |
2420 | else |
2421 | clean_tree_block(trans, root, left); | |
2422 | ||
5f39d397 | 2423 | btrfs_mark_buffer_dirty(right); |
a429e513 | 2424 | |
5f39d397 CM |
2425 | btrfs_item_key(right, &disk_key, 0); |
2426 | btrfs_set_node_key(upper, &disk_key, slot + 1); | |
d6025579 | 2427 | btrfs_mark_buffer_dirty(upper); |
02217ed2 | 2428 | |
00ec4c51 | 2429 | /* then fixup the leaf pointer in the path */ |
7518a238 CM |
2430 | if (path->slots[0] >= left_nritems) { |
2431 | path->slots[0] -= left_nritems; | |
925baedd CM |
2432 | if (btrfs_header_nritems(path->nodes[0]) == 0) |
2433 | clean_tree_block(trans, root, path->nodes[0]); | |
2434 | btrfs_tree_unlock(path->nodes[0]); | |
5f39d397 CM |
2435 | free_extent_buffer(path->nodes[0]); |
2436 | path->nodes[0] = right; | |
00ec4c51 CM |
2437 | path->slots[1] += 1; |
2438 | } else { | |
925baedd | 2439 | btrfs_tree_unlock(right); |
5f39d397 | 2440 | free_extent_buffer(right); |
00ec4c51 CM |
2441 | } |
2442 | return 0; | |
925baedd CM |
2443 | |
2444 | out_unlock: | |
2445 | btrfs_tree_unlock(right); | |
2446 | free_extent_buffer(right); | |
2447 | return 1; | |
00ec4c51 | 2448 | } |
925baedd | 2449 | |
44871b1b CM |
2450 | /* |
2451 | * push some data in the path leaf to the right, trying to free up at | |
2452 | * least data_size bytes. returns zero if the push worked, nonzero otherwise | |
2453 | * | |
2454 | * returns 1 if the push failed because the other node didn't have enough | |
2455 | * room, 0 if everything worked out and < 0 if there were major errors. | |
99d8f83c CM |
2456 | * |
2457 | * this will push starting from min_slot to the end of the leaf. It won't | |
2458 | * push any slot lower than min_slot | |
44871b1b CM |
2459 | */ |
2460 | static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root | |
99d8f83c CM |
2461 | *root, struct btrfs_path *path, |
2462 | int min_data_size, int data_size, | |
2463 | int empty, u32 min_slot) | |
44871b1b CM |
2464 | { |
2465 | struct extent_buffer *left = path->nodes[0]; | |
2466 | struct extent_buffer *right; | |
2467 | struct extent_buffer *upper; | |
2468 | int slot; | |
2469 | int free_space; | |
2470 | u32 left_nritems; | |
2471 | int ret; | |
2472 | ||
2473 | if (!path->nodes[1]) | |
2474 | return 1; | |
2475 | ||
2476 | slot = path->slots[1]; | |
2477 | upper = path->nodes[1]; | |
2478 | if (slot >= btrfs_header_nritems(upper) - 1) | |
2479 | return 1; | |
2480 | ||
2481 | btrfs_assert_tree_locked(path->nodes[1]); | |
2482 | ||
2483 | right = read_node_slot(root, upper, slot + 1); | |
91ca338d TI |
2484 | if (right == NULL) |
2485 | return 1; | |
2486 | ||
44871b1b CM |
2487 | btrfs_tree_lock(right); |
2488 | btrfs_set_lock_blocking(right); | |
2489 | ||
2490 | free_space = btrfs_leaf_free_space(root, right); | |
2491 | if (free_space < data_size) | |
2492 | goto out_unlock; | |
2493 | ||
2494 | /* cow and double check */ | |
2495 | ret = btrfs_cow_block(trans, root, right, upper, | |
2496 | slot + 1, &right); | |
2497 | if (ret) | |
2498 | goto out_unlock; | |
2499 | ||
2500 | free_space = btrfs_leaf_free_space(root, right); | |
2501 | if (free_space < data_size) | |
2502 | goto out_unlock; | |
2503 | ||
2504 | left_nritems = btrfs_header_nritems(left); | |
2505 | if (left_nritems == 0) | |
2506 | goto out_unlock; | |
2507 | ||
99d8f83c CM |
2508 | return __push_leaf_right(trans, root, path, min_data_size, empty, |
2509 | right, free_space, left_nritems, min_slot); | |
44871b1b CM |
2510 | out_unlock: |
2511 | btrfs_tree_unlock(right); | |
2512 | free_extent_buffer(right); | |
2513 | return 1; | |
2514 | } | |
2515 | ||
74123bd7 CM |
2516 | /* |
2517 | * push some data in the path leaf to the left, trying to free up at | |
2518 | * least data_size bytes. returns zero if the push worked, nonzero otherwise | |
99d8f83c CM |
2519 | * |
2520 | * max_slot can put a limit on how far into the leaf we'll push items. The | |
2521 | * item at 'max_slot' won't be touched. Use (u32)-1 to make us do all the | |
2522 | * items | |
74123bd7 | 2523 | */ |
44871b1b CM |
2524 | static noinline int __push_leaf_left(struct btrfs_trans_handle *trans, |
2525 | struct btrfs_root *root, | |
2526 | struct btrfs_path *path, int data_size, | |
2527 | int empty, struct extent_buffer *left, | |
99d8f83c CM |
2528 | int free_space, u32 right_nritems, |
2529 | u32 max_slot) | |
be0e5c09 | 2530 | { |
5f39d397 CM |
2531 | struct btrfs_disk_key disk_key; |
2532 | struct extent_buffer *right = path->nodes[0]; | |
be0e5c09 | 2533 | int i; |
be0e5c09 CM |
2534 | int push_space = 0; |
2535 | int push_items = 0; | |
0783fcfc | 2536 | struct btrfs_item *item; |
7518a238 | 2537 | u32 old_left_nritems; |
34a38218 | 2538 | u32 nr; |
aa5d6bed CM |
2539 | int ret = 0; |
2540 | int wret; | |
db94535d CM |
2541 | u32 this_item_size; |
2542 | u32 old_left_item_size; | |
be0e5c09 | 2543 | |
34a38218 | 2544 | if (empty) |
99d8f83c | 2545 | nr = min(right_nritems, max_slot); |
34a38218 | 2546 | else |
99d8f83c | 2547 | nr = min(right_nritems - 1, max_slot); |
34a38218 CM |
2548 | |
2549 | for (i = 0; i < nr; i++) { | |
5f39d397 | 2550 | item = btrfs_item_nr(right, i); |
db94535d | 2551 | |
31840ae1 ZY |
2552 | if (!empty && push_items > 0) { |
2553 | if (path->slots[0] < i) | |
2554 | break; | |
2555 | if (path->slots[0] == i) { | |
2556 | int space = btrfs_leaf_free_space(root, right); | |
2557 | if (space + push_space * 2 > free_space) | |
2558 | break; | |
2559 | } | |
2560 | } | |
2561 | ||
be0e5c09 | 2562 | if (path->slots[0] == i) |
87b29b20 | 2563 | push_space += data_size; |
db94535d CM |
2564 | |
2565 | this_item_size = btrfs_item_size(right, item); | |
2566 | if (this_item_size + sizeof(*item) + push_space > free_space) | |
be0e5c09 | 2567 | break; |
db94535d | 2568 | |
be0e5c09 | 2569 | push_items++; |
db94535d CM |
2570 | push_space += this_item_size + sizeof(*item); |
2571 | } | |
2572 | ||
be0e5c09 | 2573 | if (push_items == 0) { |
925baedd CM |
2574 | ret = 1; |
2575 | goto out; | |
be0e5c09 | 2576 | } |
34a38218 | 2577 | if (!empty && push_items == btrfs_header_nritems(right)) |
a429e513 | 2578 | WARN_ON(1); |
5f39d397 | 2579 | |
be0e5c09 | 2580 | /* push data from right to left */ |
5f39d397 CM |
2581 | copy_extent_buffer(left, right, |
2582 | btrfs_item_nr_offset(btrfs_header_nritems(left)), | |
2583 | btrfs_item_nr_offset(0), | |
2584 | push_items * sizeof(struct btrfs_item)); | |
2585 | ||
123abc88 | 2586 | push_space = BTRFS_LEAF_DATA_SIZE(root) - |
d397712b | 2587 | btrfs_item_offset_nr(right, push_items - 1); |
5f39d397 CM |
2588 | |
2589 | copy_extent_buffer(left, right, btrfs_leaf_data(left) + | |
d6025579 CM |
2590 | leaf_data_end(root, left) - push_space, |
2591 | btrfs_leaf_data(right) + | |
5f39d397 | 2592 | btrfs_item_offset_nr(right, push_items - 1), |
d6025579 | 2593 | push_space); |
5f39d397 | 2594 | old_left_nritems = btrfs_header_nritems(left); |
87b29b20 | 2595 | BUG_ON(old_left_nritems <= 0); |
eb60ceac | 2596 | |
db94535d | 2597 | old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1); |
0783fcfc | 2598 | for (i = old_left_nritems; i < old_left_nritems + push_items; i++) { |
5f39d397 | 2599 | u32 ioff; |
db94535d | 2600 | |
5f39d397 | 2601 | item = btrfs_item_nr(left, i); |
db94535d | 2602 | |
5f39d397 CM |
2603 | ioff = btrfs_item_offset(left, item); |
2604 | btrfs_set_item_offset(left, item, | |
db94535d | 2605 | ioff - (BTRFS_LEAF_DATA_SIZE(root) - old_left_item_size)); |
be0e5c09 | 2606 | } |
5f39d397 | 2607 | btrfs_set_header_nritems(left, old_left_nritems + push_items); |
be0e5c09 CM |
2608 | |
2609 | /* fixup right node */ | |
34a38218 | 2610 | if (push_items > right_nritems) { |
d397712b CM |
2611 | printk(KERN_CRIT "push items %d nr %u\n", push_items, |
2612 | right_nritems); | |
34a38218 CM |
2613 | WARN_ON(1); |
2614 | } | |
2615 | ||
2616 | if (push_items < right_nritems) { | |
2617 | push_space = btrfs_item_offset_nr(right, push_items - 1) - | |
2618 | leaf_data_end(root, right); | |
2619 | memmove_extent_buffer(right, btrfs_leaf_data(right) + | |
2620 | BTRFS_LEAF_DATA_SIZE(root) - push_space, | |
2621 | btrfs_leaf_data(right) + | |
2622 | leaf_data_end(root, right), push_space); | |
2623 | ||
2624 | memmove_extent_buffer(right, btrfs_item_nr_offset(0), | |
5f39d397 CM |
2625 | btrfs_item_nr_offset(push_items), |
2626 | (btrfs_header_nritems(right) - push_items) * | |
2627 | sizeof(struct btrfs_item)); | |
34a38218 | 2628 | } |
eef1c494 Y |
2629 | right_nritems -= push_items; |
2630 | btrfs_set_header_nritems(right, right_nritems); | |
123abc88 | 2631 | push_space = BTRFS_LEAF_DATA_SIZE(root); |
5f39d397 CM |
2632 | for (i = 0; i < right_nritems; i++) { |
2633 | item = btrfs_item_nr(right, i); | |
db94535d | 2634 | |
db94535d CM |
2635 | push_space = push_space - btrfs_item_size(right, item); |
2636 | btrfs_set_item_offset(right, item, push_space); | |
2637 | } | |
eb60ceac | 2638 | |
5f39d397 | 2639 | btrfs_mark_buffer_dirty(left); |
34a38218 CM |
2640 | if (right_nritems) |
2641 | btrfs_mark_buffer_dirty(right); | |
f0486c68 YZ |
2642 | else |
2643 | clean_tree_block(trans, root, right); | |
098f59c2 | 2644 | |
5f39d397 CM |
2645 | btrfs_item_key(right, &disk_key, 0); |
2646 | wret = fixup_low_keys(trans, root, path, &disk_key, 1); | |
aa5d6bed CM |
2647 | if (wret) |
2648 | ret = wret; | |
be0e5c09 CM |
2649 | |
2650 | /* then fixup the leaf pointer in the path */ | |
2651 | if (path->slots[0] < push_items) { | |
2652 | path->slots[0] += old_left_nritems; | |
925baedd | 2653 | btrfs_tree_unlock(path->nodes[0]); |
5f39d397 CM |
2654 | free_extent_buffer(path->nodes[0]); |
2655 | path->nodes[0] = left; | |
be0e5c09 CM |
2656 | path->slots[1] -= 1; |
2657 | } else { | |
925baedd | 2658 | btrfs_tree_unlock(left); |
5f39d397 | 2659 | free_extent_buffer(left); |
be0e5c09 CM |
2660 | path->slots[0] -= push_items; |
2661 | } | |
eb60ceac | 2662 | BUG_ON(path->slots[0] < 0); |
aa5d6bed | 2663 | return ret; |
925baedd CM |
2664 | out: |
2665 | btrfs_tree_unlock(left); | |
2666 | free_extent_buffer(left); | |
2667 | return ret; | |
be0e5c09 CM |
2668 | } |
2669 | ||
44871b1b CM |
2670 | /* |
2671 | * push some data in the path leaf to the left, trying to free up at | |
2672 | * least data_size bytes. returns zero if the push worked, nonzero otherwise | |
99d8f83c CM |
2673 | * |
2674 | * max_slot can put a limit on how far into the leaf we'll push items. The | |
2675 | * item at 'max_slot' won't be touched. Use (u32)-1 to make us push all the | |
2676 | * items | |
44871b1b CM |
2677 | */ |
2678 | static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root | |
99d8f83c CM |
2679 | *root, struct btrfs_path *path, int min_data_size, |
2680 | int data_size, int empty, u32 max_slot) | |
44871b1b CM |
2681 | { |
2682 | struct extent_buffer *right = path->nodes[0]; | |
2683 | struct extent_buffer *left; | |
2684 | int slot; | |
2685 | int free_space; | |
2686 | u32 right_nritems; | |
2687 | int ret = 0; | |
2688 | ||
2689 | slot = path->slots[1]; | |
2690 | if (slot == 0) | |
2691 | return 1; | |
2692 | if (!path->nodes[1]) | |
2693 | return 1; | |
2694 | ||
2695 | right_nritems = btrfs_header_nritems(right); | |
2696 | if (right_nritems == 0) | |
2697 | return 1; | |
2698 | ||
2699 | btrfs_assert_tree_locked(path->nodes[1]); | |
2700 | ||
2701 | left = read_node_slot(root, path->nodes[1], slot - 1); | |
91ca338d TI |
2702 | if (left == NULL) |
2703 | return 1; | |
2704 | ||
44871b1b CM |
2705 | btrfs_tree_lock(left); |
2706 | btrfs_set_lock_blocking(left); | |
2707 | ||
2708 | free_space = btrfs_leaf_free_space(root, left); | |
2709 | if (free_space < data_size) { | |
2710 | ret = 1; | |
2711 | goto out; | |
2712 | } | |
2713 | ||
2714 | /* cow and double check */ | |
2715 | ret = btrfs_cow_block(trans, root, left, | |
2716 | path->nodes[1], slot - 1, &left); | |
2717 | if (ret) { | |
2718 | /* we hit -ENOSPC, but it isn't fatal here */ | |
2719 | ret = 1; | |
2720 | goto out; | |
2721 | } | |
2722 | ||
2723 | free_space = btrfs_leaf_free_space(root, left); | |
2724 | if (free_space < data_size) { | |
2725 | ret = 1; | |
2726 | goto out; | |
2727 | } | |
2728 | ||
99d8f83c CM |
2729 | return __push_leaf_left(trans, root, path, min_data_size, |
2730 | empty, left, free_space, right_nritems, | |
2731 | max_slot); | |
44871b1b CM |
2732 | out: |
2733 | btrfs_tree_unlock(left); | |
2734 | free_extent_buffer(left); | |
2735 | return ret; | |
2736 | } | |
2737 | ||
2738 | /* | |
2739 | * split the path's leaf in two, making sure there is at least data_size | |
2740 | * available for the resulting leaf level of the path. | |
2741 | * | |
2742 | * returns 0 if all went well and < 0 on failure. | |
2743 | */ | |
2744 | static noinline int copy_for_split(struct btrfs_trans_handle *trans, | |
2745 | struct btrfs_root *root, | |
2746 | struct btrfs_path *path, | |
2747 | struct extent_buffer *l, | |
2748 | struct extent_buffer *right, | |
2749 | int slot, int mid, int nritems) | |
2750 | { | |
2751 | int data_copy_size; | |
2752 | int rt_data_off; | |
2753 | int i; | |
2754 | int ret = 0; | |
2755 | int wret; | |
2756 | struct btrfs_disk_key disk_key; | |
2757 | ||
2758 | nritems = nritems - mid; | |
2759 | btrfs_set_header_nritems(right, nritems); | |
2760 | data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(root, l); | |
2761 | ||
2762 | copy_extent_buffer(right, l, btrfs_item_nr_offset(0), | |
2763 | btrfs_item_nr_offset(mid), | |
2764 | nritems * sizeof(struct btrfs_item)); | |
2765 | ||
2766 | copy_extent_buffer(right, l, | |
2767 | btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) - | |
2768 | data_copy_size, btrfs_leaf_data(l) + | |
2769 | leaf_data_end(root, l), data_copy_size); | |
2770 | ||
2771 | rt_data_off = BTRFS_LEAF_DATA_SIZE(root) - | |
2772 | btrfs_item_end_nr(l, mid); | |
2773 | ||
2774 | for (i = 0; i < nritems; i++) { | |
2775 | struct btrfs_item *item = btrfs_item_nr(right, i); | |
2776 | u32 ioff; | |
2777 | ||
44871b1b CM |
2778 | ioff = btrfs_item_offset(right, item); |
2779 | btrfs_set_item_offset(right, item, ioff + rt_data_off); | |
2780 | } | |
2781 | ||
44871b1b CM |
2782 | btrfs_set_header_nritems(l, mid); |
2783 | ret = 0; | |
2784 | btrfs_item_key(right, &disk_key, 0); | |
2785 | wret = insert_ptr(trans, root, path, &disk_key, right->start, | |
2786 | path->slots[1] + 1, 1); | |
2787 | if (wret) | |
2788 | ret = wret; | |
2789 | ||
2790 | btrfs_mark_buffer_dirty(right); | |
2791 | btrfs_mark_buffer_dirty(l); | |
2792 | BUG_ON(path->slots[0] != slot); | |
2793 | ||
44871b1b CM |
2794 | if (mid <= slot) { |
2795 | btrfs_tree_unlock(path->nodes[0]); | |
2796 | free_extent_buffer(path->nodes[0]); | |
2797 | path->nodes[0] = right; | |
2798 | path->slots[0] -= mid; | |
2799 | path->slots[1] += 1; | |
2800 | } else { | |
2801 | btrfs_tree_unlock(right); | |
2802 | free_extent_buffer(right); | |
2803 | } | |
2804 | ||
2805 | BUG_ON(path->slots[0] < 0); | |
2806 | ||
2807 | return ret; | |
2808 | } | |
2809 | ||
99d8f83c CM |
2810 | /* |
2811 | * double splits happen when we need to insert a big item in the middle | |
2812 | * of a leaf. A double split can leave us with 3 mostly empty leaves: | |
2813 | * leaf: [ slots 0 - N] [ our target ] [ N + 1 - total in leaf ] | |
2814 | * A B C | |
2815 | * | |
2816 | * We avoid this by trying to push the items on either side of our target | |
2817 | * into the adjacent leaves. If all goes well we can avoid the double split | |
2818 | * completely. | |
2819 | */ | |
2820 | static noinline int push_for_double_split(struct btrfs_trans_handle *trans, | |
2821 | struct btrfs_root *root, | |
2822 | struct btrfs_path *path, | |
2823 | int data_size) | |
2824 | { | |
2825 | int ret; | |
2826 | int progress = 0; | |
2827 | int slot; | |
2828 | u32 nritems; | |
2829 | ||
2830 | slot = path->slots[0]; | |
2831 | ||
2832 | /* | |
2833 | * try to push all the items after our slot into the | |
2834 | * right leaf | |
2835 | */ | |
2836 | ret = push_leaf_right(trans, root, path, 1, data_size, 0, slot); | |
2837 | if (ret < 0) | |
2838 | return ret; | |
2839 | ||
2840 | if (ret == 0) | |
2841 | progress++; | |
2842 | ||
2843 | nritems = btrfs_header_nritems(path->nodes[0]); | |
2844 | /* | |
2845 | * our goal is to get our slot at the start or end of a leaf. If | |
2846 | * we've done so we're done | |
2847 | */ | |
2848 | if (path->slots[0] == 0 || path->slots[0] == nritems) | |
2849 | return 0; | |
2850 | ||
2851 | if (btrfs_leaf_free_space(root, path->nodes[0]) >= data_size) | |
2852 | return 0; | |
2853 | ||
2854 | /* try to push all the items before our slot into the next leaf */ | |
2855 | slot = path->slots[0]; | |
2856 | ret = push_leaf_left(trans, root, path, 1, data_size, 0, slot); | |
2857 | if (ret < 0) | |
2858 | return ret; | |
2859 | ||
2860 | if (ret == 0) | |
2861 | progress++; | |
2862 | ||
2863 | if (progress) | |
2864 | return 0; | |
2865 | return 1; | |
2866 | } | |
2867 | ||
74123bd7 CM |
2868 | /* |
2869 | * split the path's leaf in two, making sure there is at least data_size | |
2870 | * available for the resulting leaf level of the path. | |
aa5d6bed CM |
2871 | * |
2872 | * returns 0 if all went well and < 0 on failure. | |
74123bd7 | 2873 | */ |
e02119d5 CM |
2874 | static noinline int split_leaf(struct btrfs_trans_handle *trans, |
2875 | struct btrfs_root *root, | |
2876 | struct btrfs_key *ins_key, | |
2877 | struct btrfs_path *path, int data_size, | |
2878 | int extend) | |
be0e5c09 | 2879 | { |
5d4f98a2 | 2880 | struct btrfs_disk_key disk_key; |
5f39d397 | 2881 | struct extent_buffer *l; |
7518a238 | 2882 | u32 nritems; |
eb60ceac CM |
2883 | int mid; |
2884 | int slot; | |
5f39d397 | 2885 | struct extent_buffer *right; |
d4dbff95 | 2886 | int ret = 0; |
aa5d6bed | 2887 | int wret; |
5d4f98a2 | 2888 | int split; |
cc0c5538 | 2889 | int num_doubles = 0; |
99d8f83c | 2890 | int tried_avoid_double = 0; |
aa5d6bed | 2891 | |
a5719521 YZ |
2892 | l = path->nodes[0]; |
2893 | slot = path->slots[0]; | |
2894 | if (extend && data_size + btrfs_item_size_nr(l, slot) + | |
2895 | sizeof(struct btrfs_item) > BTRFS_LEAF_DATA_SIZE(root)) | |
2896 | return -EOVERFLOW; | |
2897 | ||
40689478 | 2898 | /* first try to make some room by pushing left and right */ |
99d8f83c CM |
2899 | if (data_size) { |
2900 | wret = push_leaf_right(trans, root, path, data_size, | |
2901 | data_size, 0, 0); | |
d397712b | 2902 | if (wret < 0) |
eaee50e8 | 2903 | return wret; |
3685f791 | 2904 | if (wret) { |
99d8f83c CM |
2905 | wret = push_leaf_left(trans, root, path, data_size, |
2906 | data_size, 0, (u32)-1); | |
3685f791 CM |
2907 | if (wret < 0) |
2908 | return wret; | |
2909 | } | |
2910 | l = path->nodes[0]; | |
aa5d6bed | 2911 | |
3685f791 | 2912 | /* did the pushes work? */ |
87b29b20 | 2913 | if (btrfs_leaf_free_space(root, l) >= data_size) |
3685f791 | 2914 | return 0; |
3326d1b0 | 2915 | } |
aa5d6bed | 2916 | |
5c680ed6 | 2917 | if (!path->nodes[1]) { |
e089f05c | 2918 | ret = insert_new_root(trans, root, path, 1); |
5c680ed6 CM |
2919 | if (ret) |
2920 | return ret; | |
2921 | } | |
cc0c5538 | 2922 | again: |
5d4f98a2 | 2923 | split = 1; |
cc0c5538 | 2924 | l = path->nodes[0]; |
eb60ceac | 2925 | slot = path->slots[0]; |
5f39d397 | 2926 | nritems = btrfs_header_nritems(l); |
d397712b | 2927 | mid = (nritems + 1) / 2; |
54aa1f4d | 2928 | |
5d4f98a2 YZ |
2929 | if (mid <= slot) { |
2930 | if (nritems == 1 || | |
2931 | leaf_space_used(l, mid, nritems - mid) + data_size > | |
2932 | BTRFS_LEAF_DATA_SIZE(root)) { | |
2933 | if (slot >= nritems) { | |
2934 | split = 0; | |
2935 | } else { | |
2936 | mid = slot; | |
2937 | if (mid != nritems && | |
2938 | leaf_space_used(l, mid, nritems - mid) + | |
2939 | data_size > BTRFS_LEAF_DATA_SIZE(root)) { | |
99d8f83c CM |
2940 | if (data_size && !tried_avoid_double) |
2941 | goto push_for_double; | |
5d4f98a2 YZ |
2942 | split = 2; |
2943 | } | |
2944 | } | |
2945 | } | |
2946 | } else { | |
2947 | if (leaf_space_used(l, 0, mid) + data_size > | |
2948 | BTRFS_LEAF_DATA_SIZE(root)) { | |
2949 | if (!extend && data_size && slot == 0) { | |
2950 | split = 0; | |
2951 | } else if ((extend || !data_size) && slot == 0) { | |
2952 | mid = 1; | |
2953 | } else { | |
2954 | mid = slot; | |
2955 | if (mid != nritems && | |
2956 | leaf_space_used(l, mid, nritems - mid) + | |
2957 | data_size > BTRFS_LEAF_DATA_SIZE(root)) { | |
99d8f83c CM |
2958 | if (data_size && !tried_avoid_double) |
2959 | goto push_for_double; | |
5d4f98a2 YZ |
2960 | split = 2 ; |
2961 | } | |
2962 | } | |
2963 | } | |
2964 | } | |
2965 | ||
2966 | if (split == 0) | |
2967 | btrfs_cpu_key_to_disk(&disk_key, ins_key); | |
2968 | else | |
2969 | btrfs_item_key(l, &disk_key, mid); | |
2970 | ||
2971 | right = btrfs_alloc_free_block(trans, root, root->leafsize, 0, | |
31840ae1 | 2972 | root->root_key.objectid, |
5d4f98a2 | 2973 | &disk_key, 0, l->start, 0); |
f0486c68 | 2974 | if (IS_ERR(right)) |
5f39d397 | 2975 | return PTR_ERR(right); |
f0486c68 YZ |
2976 | |
2977 | root_add_used(root, root->leafsize); | |
5f39d397 CM |
2978 | |
2979 | memset_extent_buffer(right, 0, 0, sizeof(struct btrfs_header)); | |
db94535d | 2980 | btrfs_set_header_bytenr(right, right->start); |
5f39d397 | 2981 | btrfs_set_header_generation(right, trans->transid); |
5d4f98a2 | 2982 | btrfs_set_header_backref_rev(right, BTRFS_MIXED_BACKREF_REV); |
5f39d397 CM |
2983 | btrfs_set_header_owner(right, root->root_key.objectid); |
2984 | btrfs_set_header_level(right, 0); | |
2985 | write_extent_buffer(right, root->fs_info->fsid, | |
2986 | (unsigned long)btrfs_header_fsid(right), | |
2987 | BTRFS_FSID_SIZE); | |
e17cade2 CM |
2988 | |
2989 | write_extent_buffer(right, root->fs_info->chunk_tree_uuid, | |
2990 | (unsigned long)btrfs_header_chunk_tree_uuid(right), | |
2991 | BTRFS_UUID_SIZE); | |
44871b1b | 2992 | |
5d4f98a2 YZ |
2993 | if (split == 0) { |
2994 | if (mid <= slot) { | |
2995 | btrfs_set_header_nritems(right, 0); | |
2996 | wret = insert_ptr(trans, root, path, | |
2997 | &disk_key, right->start, | |
2998 | path->slots[1] + 1, 1); | |
2999 | if (wret) | |
3000 | ret = wret; | |
925baedd | 3001 | |
5d4f98a2 YZ |
3002 | btrfs_tree_unlock(path->nodes[0]); |
3003 | free_extent_buffer(path->nodes[0]); | |
3004 | path->nodes[0] = right; | |
3005 | path->slots[0] = 0; | |
3006 | path->slots[1] += 1; | |
3007 | } else { | |
3008 | btrfs_set_header_nritems(right, 0); | |
3009 | wret = insert_ptr(trans, root, path, | |
3010 | &disk_key, | |
3011 | right->start, | |
3012 | path->slots[1], 1); | |
3013 | if (wret) | |
3014 | ret = wret; | |
3015 | btrfs_tree_unlock(path->nodes[0]); | |
3016 | free_extent_buffer(path->nodes[0]); | |
3017 | path->nodes[0] = right; | |
3018 | path->slots[0] = 0; | |
3019 | if (path->slots[1] == 0) { | |
3020 | wret = fixup_low_keys(trans, root, | |
3021 | path, &disk_key, 1); | |
d4dbff95 CM |
3022 | if (wret) |
3023 | ret = wret; | |
5ee78ac7 | 3024 | } |
d4dbff95 | 3025 | } |
5d4f98a2 YZ |
3026 | btrfs_mark_buffer_dirty(right); |
3027 | return ret; | |
d4dbff95 | 3028 | } |
74123bd7 | 3029 | |
44871b1b | 3030 | ret = copy_for_split(trans, root, path, l, right, slot, mid, nritems); |
31840ae1 ZY |
3031 | BUG_ON(ret); |
3032 | ||
5d4f98a2 | 3033 | if (split == 2) { |
cc0c5538 CM |
3034 | BUG_ON(num_doubles != 0); |
3035 | num_doubles++; | |
3036 | goto again; | |
a429e513 | 3037 | } |
44871b1b | 3038 | |
be0e5c09 | 3039 | return ret; |
99d8f83c CM |
3040 | |
3041 | push_for_double: | |
3042 | push_for_double_split(trans, root, path, data_size); | |
3043 | tried_avoid_double = 1; | |
3044 | if (btrfs_leaf_free_space(root, path->nodes[0]) >= data_size) | |
3045 | return 0; | |
3046 | goto again; | |
be0e5c09 CM |
3047 | } |
3048 | ||
ad48fd75 YZ |
3049 | static noinline int setup_leaf_for_split(struct btrfs_trans_handle *trans, |
3050 | struct btrfs_root *root, | |
3051 | struct btrfs_path *path, int ins_len) | |
459931ec | 3052 | { |
ad48fd75 | 3053 | struct btrfs_key key; |
459931ec | 3054 | struct extent_buffer *leaf; |
ad48fd75 YZ |
3055 | struct btrfs_file_extent_item *fi; |
3056 | u64 extent_len = 0; | |
3057 | u32 item_size; | |
3058 | int ret; | |
459931ec CM |
3059 | |
3060 | leaf = path->nodes[0]; | |
ad48fd75 YZ |
3061 | btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); |
3062 | ||
3063 | BUG_ON(key.type != BTRFS_EXTENT_DATA_KEY && | |
3064 | key.type != BTRFS_EXTENT_CSUM_KEY); | |
3065 | ||
3066 | if (btrfs_leaf_free_space(root, leaf) >= ins_len) | |
3067 | return 0; | |
459931ec CM |
3068 | |
3069 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); | |
ad48fd75 YZ |
3070 | if (key.type == BTRFS_EXTENT_DATA_KEY) { |
3071 | fi = btrfs_item_ptr(leaf, path->slots[0], | |
3072 | struct btrfs_file_extent_item); | |
3073 | extent_len = btrfs_file_extent_num_bytes(leaf, fi); | |
3074 | } | |
b3b4aa74 | 3075 | btrfs_release_path(path); |
459931ec | 3076 | |
459931ec | 3077 | path->keep_locks = 1; |
ad48fd75 YZ |
3078 | path->search_for_split = 1; |
3079 | ret = btrfs_search_slot(trans, root, &key, path, 0, 1); | |
459931ec | 3080 | path->search_for_split = 0; |
ad48fd75 YZ |
3081 | if (ret < 0) |
3082 | goto err; | |
459931ec | 3083 | |
ad48fd75 YZ |
3084 | ret = -EAGAIN; |
3085 | leaf = path->nodes[0]; | |
459931ec | 3086 | /* if our item isn't there or got smaller, return now */ |
ad48fd75 YZ |
3087 | if (ret > 0 || item_size != btrfs_item_size_nr(leaf, path->slots[0])) |
3088 | goto err; | |
3089 | ||
109f6aef CM |
3090 | /* the leaf has changed, it now has room. return now */ |
3091 | if (btrfs_leaf_free_space(root, path->nodes[0]) >= ins_len) | |
3092 | goto err; | |
3093 | ||
ad48fd75 YZ |
3094 | if (key.type == BTRFS_EXTENT_DATA_KEY) { |
3095 | fi = btrfs_item_ptr(leaf, path->slots[0], | |
3096 | struct btrfs_file_extent_item); | |
3097 | if (extent_len != btrfs_file_extent_num_bytes(leaf, fi)) | |
3098 | goto err; | |
459931ec CM |
3099 | } |
3100 | ||
b9473439 | 3101 | btrfs_set_path_blocking(path); |
ad48fd75 | 3102 | ret = split_leaf(trans, root, &key, path, ins_len, 1); |
f0486c68 YZ |
3103 | if (ret) |
3104 | goto err; | |
459931ec | 3105 | |
ad48fd75 | 3106 | path->keep_locks = 0; |
b9473439 | 3107 | btrfs_unlock_up_safe(path, 1); |
ad48fd75 YZ |
3108 | return 0; |
3109 | err: | |
3110 | path->keep_locks = 0; | |
3111 | return ret; | |
3112 | } | |
3113 | ||
3114 | static noinline int split_item(struct btrfs_trans_handle *trans, | |
3115 | struct btrfs_root *root, | |
3116 | struct btrfs_path *path, | |
3117 | struct btrfs_key *new_key, | |
3118 | unsigned long split_offset) | |
3119 | { | |
3120 | struct extent_buffer *leaf; | |
3121 | struct btrfs_item *item; | |
3122 | struct btrfs_item *new_item; | |
3123 | int slot; | |
3124 | char *buf; | |
3125 | u32 nritems; | |
3126 | u32 item_size; | |
3127 | u32 orig_offset; | |
3128 | struct btrfs_disk_key disk_key; | |
3129 | ||
b9473439 CM |
3130 | leaf = path->nodes[0]; |
3131 | BUG_ON(btrfs_leaf_free_space(root, leaf) < sizeof(struct btrfs_item)); | |
3132 | ||
b4ce94de CM |
3133 | btrfs_set_path_blocking(path); |
3134 | ||
459931ec CM |
3135 | item = btrfs_item_nr(leaf, path->slots[0]); |
3136 | orig_offset = btrfs_item_offset(leaf, item); | |
3137 | item_size = btrfs_item_size(leaf, item); | |
3138 | ||
459931ec | 3139 | buf = kmalloc(item_size, GFP_NOFS); |
ad48fd75 YZ |
3140 | if (!buf) |
3141 | return -ENOMEM; | |
3142 | ||
459931ec CM |
3143 | read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf, |
3144 | path->slots[0]), item_size); | |
459931ec | 3145 | |
ad48fd75 | 3146 | slot = path->slots[0] + 1; |
459931ec | 3147 | nritems = btrfs_header_nritems(leaf); |
459931ec CM |
3148 | if (slot != nritems) { |
3149 | /* shift the items */ | |
3150 | memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1), | |
ad48fd75 YZ |
3151 | btrfs_item_nr_offset(slot), |
3152 | (nritems - slot) * sizeof(struct btrfs_item)); | |
459931ec CM |
3153 | } |
3154 | ||
3155 | btrfs_cpu_key_to_disk(&disk_key, new_key); | |
3156 | btrfs_set_item_key(leaf, &disk_key, slot); | |
3157 | ||
3158 | new_item = btrfs_item_nr(leaf, slot); | |
3159 | ||
3160 | btrfs_set_item_offset(leaf, new_item, orig_offset); | |
3161 | btrfs_set_item_size(leaf, new_item, item_size - split_offset); | |
3162 | ||
3163 | btrfs_set_item_offset(leaf, item, | |
3164 | orig_offset + item_size - split_offset); | |
3165 | btrfs_set_item_size(leaf, item, split_offset); | |
3166 | ||
3167 | btrfs_set_header_nritems(leaf, nritems + 1); | |
3168 | ||
3169 | /* write the data for the start of the original item */ | |
3170 | write_extent_buffer(leaf, buf, | |
3171 | btrfs_item_ptr_offset(leaf, path->slots[0]), | |
3172 | split_offset); | |
3173 | ||
3174 | /* write the data for the new item */ | |
3175 | write_extent_buffer(leaf, buf + split_offset, | |
3176 | btrfs_item_ptr_offset(leaf, slot), | |
3177 | item_size - split_offset); | |
3178 | btrfs_mark_buffer_dirty(leaf); | |
3179 | ||
ad48fd75 | 3180 | BUG_ON(btrfs_leaf_free_space(root, leaf) < 0); |
459931ec | 3181 | kfree(buf); |
ad48fd75 YZ |
3182 | return 0; |
3183 | } | |
3184 | ||
3185 | /* | |
3186 | * This function splits a single item into two items, | |
3187 | * giving 'new_key' to the new item and splitting the | |
3188 | * old one at split_offset (from the start of the item). | |
3189 | * | |
3190 | * The path may be released by this operation. After | |
3191 | * the split, the path is pointing to the old item. The | |
3192 | * new item is going to be in the same node as the old one. | |
3193 | * | |
3194 | * Note, the item being split must be smaller enough to live alone on | |
3195 | * a tree block with room for one extra struct btrfs_item | |
3196 | * | |
3197 | * This allows us to split the item in place, keeping a lock on the | |
3198 | * leaf the entire time. | |
3199 | */ | |
3200 | int btrfs_split_item(struct btrfs_trans_handle *trans, | |
3201 | struct btrfs_root *root, | |
3202 | struct btrfs_path *path, | |
3203 | struct btrfs_key *new_key, | |
3204 | unsigned long split_offset) | |
3205 | { | |
3206 | int ret; | |
3207 | ret = setup_leaf_for_split(trans, root, path, | |
3208 | sizeof(struct btrfs_item)); | |
3209 | if (ret) | |
3210 | return ret; | |
3211 | ||
3212 | ret = split_item(trans, root, path, new_key, split_offset); | |
459931ec CM |
3213 | return ret; |
3214 | } | |
3215 | ||
ad48fd75 YZ |
3216 | /* |
3217 | * This function duplicate a item, giving 'new_key' to the new item. | |
3218 | * It guarantees both items live in the same tree leaf and the new item | |
3219 | * is contiguous with the original item. | |
3220 | * | |
3221 | * This allows us to split file extent in place, keeping a lock on the | |
3222 | * leaf the entire time. | |
3223 | */ | |
3224 | int btrfs_duplicate_item(struct btrfs_trans_handle *trans, | |
3225 | struct btrfs_root *root, | |
3226 | struct btrfs_path *path, | |
3227 | struct btrfs_key *new_key) | |
3228 | { | |
3229 | struct extent_buffer *leaf; | |
3230 | int ret; | |
3231 | u32 item_size; | |
3232 | ||
3233 | leaf = path->nodes[0]; | |
3234 | item_size = btrfs_item_size_nr(leaf, path->slots[0]); | |
3235 | ret = setup_leaf_for_split(trans, root, path, | |
3236 | item_size + sizeof(struct btrfs_item)); | |
3237 | if (ret) | |
3238 | return ret; | |
3239 | ||
3240 | path->slots[0]++; | |
3241 | ret = setup_items_for_insert(trans, root, path, new_key, &item_size, | |
3242 | item_size, item_size + | |
3243 | sizeof(struct btrfs_item), 1); | |
3244 | BUG_ON(ret); | |
3245 | ||
3246 | leaf = path->nodes[0]; | |
3247 | memcpy_extent_buffer(leaf, | |
3248 | btrfs_item_ptr_offset(leaf, path->slots[0]), | |
3249 | btrfs_item_ptr_offset(leaf, path->slots[0] - 1), | |
3250 | item_size); | |
3251 | return 0; | |
3252 | } | |
3253 | ||
d352ac68 CM |
3254 | /* |
3255 | * make the item pointed to by the path smaller. new_size indicates | |
3256 | * how small to make it, and from_end tells us if we just chop bytes | |
3257 | * off the end of the item or if we shift the item to chop bytes off | |
3258 | * the front. | |
3259 | */ | |
b18c6685 CM |
3260 | int btrfs_truncate_item(struct btrfs_trans_handle *trans, |
3261 | struct btrfs_root *root, | |
3262 | struct btrfs_path *path, | |
179e29e4 | 3263 | u32 new_size, int from_end) |
b18c6685 | 3264 | { |
b18c6685 | 3265 | int slot; |
5f39d397 CM |
3266 | struct extent_buffer *leaf; |
3267 | struct btrfs_item *item; | |
b18c6685 CM |
3268 | u32 nritems; |
3269 | unsigned int data_end; | |
3270 | unsigned int old_data_start; | |
3271 | unsigned int old_size; | |
3272 | unsigned int size_diff; | |
3273 | int i; | |
3274 | ||
5f39d397 | 3275 | leaf = path->nodes[0]; |
179e29e4 CM |
3276 | slot = path->slots[0]; |
3277 | ||
3278 | old_size = btrfs_item_size_nr(leaf, slot); | |
3279 | if (old_size == new_size) | |
3280 | return 0; | |
b18c6685 | 3281 | |
5f39d397 | 3282 | nritems = btrfs_header_nritems(leaf); |
b18c6685 CM |
3283 | data_end = leaf_data_end(root, leaf); |
3284 | ||
5f39d397 | 3285 | old_data_start = btrfs_item_offset_nr(leaf, slot); |
179e29e4 | 3286 | |
b18c6685 CM |
3287 | size_diff = old_size - new_size; |
3288 | ||
3289 | BUG_ON(slot < 0); | |
3290 | BUG_ON(slot >= nritems); | |
3291 | ||
3292 | /* | |
3293 | * item0..itemN ... dataN.offset..dataN.size .. data0.size | |
3294 | */ | |
3295 | /* first correct the data pointers */ | |
3296 | for (i = slot; i < nritems; i++) { | |
5f39d397 CM |
3297 | u32 ioff; |
3298 | item = btrfs_item_nr(leaf, i); | |
db94535d | 3299 | |
5f39d397 CM |
3300 | ioff = btrfs_item_offset(leaf, item); |
3301 | btrfs_set_item_offset(leaf, item, ioff + size_diff); | |
b18c6685 | 3302 | } |
db94535d | 3303 | |
b18c6685 | 3304 | /* shift the data */ |
179e29e4 CM |
3305 | if (from_end) { |
3306 | memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) + | |
3307 | data_end + size_diff, btrfs_leaf_data(leaf) + | |
3308 | data_end, old_data_start + new_size - data_end); | |
3309 | } else { | |
3310 | struct btrfs_disk_key disk_key; | |
3311 | u64 offset; | |
3312 | ||
3313 | btrfs_item_key(leaf, &disk_key, slot); | |
3314 | ||
3315 | if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) { | |
3316 | unsigned long ptr; | |
3317 | struct btrfs_file_extent_item *fi; | |
3318 | ||
3319 | fi = btrfs_item_ptr(leaf, slot, | |
3320 | struct btrfs_file_extent_item); | |
3321 | fi = (struct btrfs_file_extent_item *)( | |
3322 | (unsigned long)fi - size_diff); | |
3323 | ||
3324 | if (btrfs_file_extent_type(leaf, fi) == | |
3325 | BTRFS_FILE_EXTENT_INLINE) { | |
3326 | ptr = btrfs_item_ptr_offset(leaf, slot); | |
3327 | memmove_extent_buffer(leaf, ptr, | |
d397712b CM |
3328 | (unsigned long)fi, |
3329 | offsetof(struct btrfs_file_extent_item, | |
179e29e4 CM |
3330 | disk_bytenr)); |
3331 | } | |
3332 | } | |
3333 | ||
3334 | memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) + | |
3335 | data_end + size_diff, btrfs_leaf_data(leaf) + | |
3336 | data_end, old_data_start - data_end); | |
3337 | ||
3338 | offset = btrfs_disk_key_offset(&disk_key); | |
3339 | btrfs_set_disk_key_offset(&disk_key, offset + size_diff); | |
3340 | btrfs_set_item_key(leaf, &disk_key, slot); | |
3341 | if (slot == 0) | |
3342 | fixup_low_keys(trans, root, path, &disk_key, 1); | |
3343 | } | |
5f39d397 CM |
3344 | |
3345 | item = btrfs_item_nr(leaf, slot); | |
3346 | btrfs_set_item_size(leaf, item, new_size); | |
3347 | btrfs_mark_buffer_dirty(leaf); | |
b18c6685 | 3348 | |
5f39d397 CM |
3349 | if (btrfs_leaf_free_space(root, leaf) < 0) { |
3350 | btrfs_print_leaf(root, leaf); | |
b18c6685 | 3351 | BUG(); |
5f39d397 | 3352 | } |
1cd30799 | 3353 | return 0; |
b18c6685 CM |
3354 | } |
3355 | ||
d352ac68 CM |
3356 | /* |
3357 | * make the item pointed to by the path bigger, data_size is the new size. | |
3358 | */ | |
5f39d397 CM |
3359 | int btrfs_extend_item(struct btrfs_trans_handle *trans, |
3360 | struct btrfs_root *root, struct btrfs_path *path, | |
3361 | u32 data_size) | |
6567e837 | 3362 | { |
6567e837 | 3363 | int slot; |
5f39d397 CM |
3364 | struct extent_buffer *leaf; |
3365 | struct btrfs_item *item; | |
6567e837 CM |
3366 | u32 nritems; |
3367 | unsigned int data_end; | |
3368 | unsigned int old_data; | |
3369 | unsigned int old_size; | |
3370 | int i; | |
3371 | ||
5f39d397 | 3372 | leaf = path->nodes[0]; |
6567e837 | 3373 | |
5f39d397 | 3374 | nritems = btrfs_header_nritems(leaf); |
6567e837 CM |
3375 | data_end = leaf_data_end(root, leaf); |
3376 | ||
5f39d397 CM |
3377 | if (btrfs_leaf_free_space(root, leaf) < data_size) { |
3378 | btrfs_print_leaf(root, leaf); | |
6567e837 | 3379 | BUG(); |
5f39d397 | 3380 | } |
6567e837 | 3381 | slot = path->slots[0]; |
5f39d397 | 3382 | old_data = btrfs_item_end_nr(leaf, slot); |
6567e837 CM |
3383 | |
3384 | BUG_ON(slot < 0); | |
3326d1b0 CM |
3385 | if (slot >= nritems) { |
3386 | btrfs_print_leaf(root, leaf); | |
d397712b CM |
3387 | printk(KERN_CRIT "slot %d too large, nritems %d\n", |
3388 | slot, nritems); | |
3326d1b0 CM |
3389 | BUG_ON(1); |
3390 | } | |
6567e837 CM |
3391 | |
3392 | /* | |
3393 | * item0..itemN ... dataN.offset..dataN.size .. data0.size | |
3394 | */ | |
3395 | /* first correct the data pointers */ | |
3396 | for (i = slot; i < nritems; i++) { | |
5f39d397 CM |
3397 | u32 ioff; |
3398 | item = btrfs_item_nr(leaf, i); | |
db94535d | 3399 | |
5f39d397 CM |
3400 | ioff = btrfs_item_offset(leaf, item); |
3401 | btrfs_set_item_offset(leaf, item, ioff - data_size); | |
6567e837 | 3402 | } |
5f39d397 | 3403 | |
6567e837 | 3404 | /* shift the data */ |
5f39d397 | 3405 | memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) + |
6567e837 CM |
3406 | data_end - data_size, btrfs_leaf_data(leaf) + |
3407 | data_end, old_data - data_end); | |
5f39d397 | 3408 | |
6567e837 | 3409 | data_end = old_data; |
5f39d397 CM |
3410 | old_size = btrfs_item_size_nr(leaf, slot); |
3411 | item = btrfs_item_nr(leaf, slot); | |
3412 | btrfs_set_item_size(leaf, item, old_size + data_size); | |
3413 | btrfs_mark_buffer_dirty(leaf); | |
6567e837 | 3414 | |
5f39d397 CM |
3415 | if (btrfs_leaf_free_space(root, leaf) < 0) { |
3416 | btrfs_print_leaf(root, leaf); | |
6567e837 | 3417 | BUG(); |
5f39d397 | 3418 | } |
1cd30799 | 3419 | return 0; |
6567e837 CM |
3420 | } |
3421 | ||
f3465ca4 JB |
3422 | /* |
3423 | * Given a key and some data, insert items into the tree. | |
3424 | * This does all the path init required, making room in the tree if needed. | |
3425 | * Returns the number of keys that were inserted. | |
3426 | */ | |
3427 | int btrfs_insert_some_items(struct btrfs_trans_handle *trans, | |
3428 | struct btrfs_root *root, | |
3429 | struct btrfs_path *path, | |
3430 | struct btrfs_key *cpu_key, u32 *data_size, | |
3431 | int nr) | |
3432 | { | |
3433 | struct extent_buffer *leaf; | |
3434 | struct btrfs_item *item; | |
3435 | int ret = 0; | |
3436 | int slot; | |
f3465ca4 JB |
3437 | int i; |
3438 | u32 nritems; | |
3439 | u32 total_data = 0; | |
3440 | u32 total_size = 0; | |
3441 | unsigned int data_end; | |
3442 | struct btrfs_disk_key disk_key; | |
3443 | struct btrfs_key found_key; | |
3444 | ||
87b29b20 YZ |
3445 | for (i = 0; i < nr; i++) { |
3446 | if (total_size + data_size[i] + sizeof(struct btrfs_item) > | |
3447 | BTRFS_LEAF_DATA_SIZE(root)) { | |
3448 | break; | |
3449 | nr = i; | |
3450 | } | |
f3465ca4 | 3451 | total_data += data_size[i]; |
87b29b20 YZ |
3452 | total_size += data_size[i] + sizeof(struct btrfs_item); |
3453 | } | |
3454 | BUG_ON(nr == 0); | |
f3465ca4 | 3455 | |
f3465ca4 JB |
3456 | ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1); |
3457 | if (ret == 0) | |
3458 | return -EEXIST; | |
3459 | if (ret < 0) | |
3460 | goto out; | |
3461 | ||
f3465ca4 JB |
3462 | leaf = path->nodes[0]; |
3463 | ||
3464 | nritems = btrfs_header_nritems(leaf); | |
3465 | data_end = leaf_data_end(root, leaf); | |
3466 | ||
3467 | if (btrfs_leaf_free_space(root, leaf) < total_size) { | |
3468 | for (i = nr; i >= 0; i--) { | |
3469 | total_data -= data_size[i]; | |
3470 | total_size -= data_size[i] + sizeof(struct btrfs_item); | |
3471 | if (total_size < btrfs_leaf_free_space(root, leaf)) | |
3472 | break; | |
3473 | } | |
3474 | nr = i; | |
3475 | } | |
3476 | ||
3477 | slot = path->slots[0]; | |
3478 | BUG_ON(slot < 0); | |
3479 | ||
3480 | if (slot != nritems) { | |
3481 | unsigned int old_data = btrfs_item_end_nr(leaf, slot); | |
3482 | ||
3483 | item = btrfs_item_nr(leaf, slot); | |
3484 | btrfs_item_key_to_cpu(leaf, &found_key, slot); | |
3485 | ||
3486 | /* figure out how many keys we can insert in here */ | |
3487 | total_data = data_size[0]; | |
3488 | for (i = 1; i < nr; i++) { | |
5d4f98a2 | 3489 | if (btrfs_comp_cpu_keys(&found_key, cpu_key + i) <= 0) |
f3465ca4 JB |
3490 | break; |
3491 | total_data += data_size[i]; | |
3492 | } | |
3493 | nr = i; | |
3494 | ||
3495 | if (old_data < data_end) { | |
3496 | btrfs_print_leaf(root, leaf); | |
d397712b | 3497 | printk(KERN_CRIT "slot %d old_data %d data_end %d\n", |
f3465ca4 JB |
3498 | slot, old_data, data_end); |
3499 | BUG_ON(1); | |
3500 | } | |
3501 | /* | |
3502 | * item0..itemN ... dataN.offset..dataN.size .. data0.size | |
3503 | */ | |
3504 | /* first correct the data pointers */ | |
f3465ca4 JB |
3505 | for (i = slot; i < nritems; i++) { |
3506 | u32 ioff; | |
3507 | ||
3508 | item = btrfs_item_nr(leaf, i); | |
f3465ca4 JB |
3509 | ioff = btrfs_item_offset(leaf, item); |
3510 | btrfs_set_item_offset(leaf, item, ioff - total_data); | |
3511 | } | |
f3465ca4 JB |
3512 | /* shift the items */ |
3513 | memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr), | |
3514 | btrfs_item_nr_offset(slot), | |
3515 | (nritems - slot) * sizeof(struct btrfs_item)); | |
3516 | ||
3517 | /* shift the data */ | |
3518 | memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) + | |
3519 | data_end - total_data, btrfs_leaf_data(leaf) + | |
3520 | data_end, old_data - data_end); | |
3521 | data_end = old_data; | |
3522 | } else { | |
3523 | /* | |
3524 | * this sucks but it has to be done, if we are inserting at | |
3525 | * the end of the leaf only insert 1 of the items, since we | |
3526 | * have no way of knowing whats on the next leaf and we'd have | |
3527 | * to drop our current locks to figure it out | |
3528 | */ | |
3529 | nr = 1; | |
3530 | } | |
3531 | ||
3532 | /* setup the item for the new data */ | |
3533 | for (i = 0; i < nr; i++) { | |
3534 | btrfs_cpu_key_to_disk(&disk_key, cpu_key + i); | |
3535 | btrfs_set_item_key(leaf, &disk_key, slot + i); | |
3536 | item = btrfs_item_nr(leaf, slot + i); | |
3537 | btrfs_set_item_offset(leaf, item, data_end - data_size[i]); | |
3538 | data_end -= data_size[i]; | |
3539 | btrfs_set_item_size(leaf, item, data_size[i]); | |
3540 | } | |
3541 | btrfs_set_header_nritems(leaf, nritems + nr); | |
3542 | btrfs_mark_buffer_dirty(leaf); | |
3543 | ||
3544 | ret = 0; | |
3545 | if (slot == 0) { | |
3546 | btrfs_cpu_key_to_disk(&disk_key, cpu_key); | |
3547 | ret = fixup_low_keys(trans, root, path, &disk_key, 1); | |
3548 | } | |
3549 | ||
3550 | if (btrfs_leaf_free_space(root, leaf) < 0) { | |
3551 | btrfs_print_leaf(root, leaf); | |
3552 | BUG(); | |
3553 | } | |
3554 | out: | |
3555 | if (!ret) | |
3556 | ret = nr; | |
3557 | return ret; | |
3558 | } | |
3559 | ||
74123bd7 | 3560 | /* |
44871b1b CM |
3561 | * this is a helper for btrfs_insert_empty_items, the main goal here is |
3562 | * to save stack depth by doing the bulk of the work in a function | |
3563 | * that doesn't call btrfs_search_slot | |
74123bd7 | 3564 | */ |
16cdcec7 MX |
3565 | int setup_items_for_insert(struct btrfs_trans_handle *trans, |
3566 | struct btrfs_root *root, struct btrfs_path *path, | |
3567 | struct btrfs_key *cpu_key, u32 *data_size, | |
3568 | u32 total_data, u32 total_size, int nr) | |
be0e5c09 | 3569 | { |
5f39d397 | 3570 | struct btrfs_item *item; |
9c58309d | 3571 | int i; |
7518a238 | 3572 | u32 nritems; |
be0e5c09 | 3573 | unsigned int data_end; |
e2fa7227 | 3574 | struct btrfs_disk_key disk_key; |
44871b1b CM |
3575 | int ret; |
3576 | struct extent_buffer *leaf; | |
3577 | int slot; | |
e2fa7227 | 3578 | |
5f39d397 | 3579 | leaf = path->nodes[0]; |
44871b1b | 3580 | slot = path->slots[0]; |
74123bd7 | 3581 | |
5f39d397 | 3582 | nritems = btrfs_header_nritems(leaf); |
123abc88 | 3583 | data_end = leaf_data_end(root, leaf); |
eb60ceac | 3584 | |
f25956cc | 3585 | if (btrfs_leaf_free_space(root, leaf) < total_size) { |
3326d1b0 | 3586 | btrfs_print_leaf(root, leaf); |
d397712b | 3587 | printk(KERN_CRIT "not enough freespace need %u have %d\n", |
9c58309d | 3588 | total_size, btrfs_leaf_free_space(root, leaf)); |
be0e5c09 | 3589 | BUG(); |
d4dbff95 | 3590 | } |
5f39d397 | 3591 | |
be0e5c09 | 3592 | if (slot != nritems) { |
5f39d397 | 3593 | unsigned int old_data = btrfs_item_end_nr(leaf, slot); |
be0e5c09 | 3594 | |
5f39d397 CM |
3595 | if (old_data < data_end) { |
3596 | btrfs_print_leaf(root, leaf); | |
d397712b | 3597 | printk(KERN_CRIT "slot %d old_data %d data_end %d\n", |
5f39d397 CM |
3598 | slot, old_data, data_end); |
3599 | BUG_ON(1); | |
3600 | } | |
be0e5c09 CM |
3601 | /* |
3602 | * item0..itemN ... dataN.offset..dataN.size .. data0.size | |
3603 | */ | |
3604 | /* first correct the data pointers */ | |
0783fcfc | 3605 | for (i = slot; i < nritems; i++) { |
5f39d397 | 3606 | u32 ioff; |
db94535d | 3607 | |
5f39d397 CM |
3608 | item = btrfs_item_nr(leaf, i); |
3609 | ioff = btrfs_item_offset(leaf, item); | |
9c58309d | 3610 | btrfs_set_item_offset(leaf, item, ioff - total_data); |
0783fcfc | 3611 | } |
be0e5c09 | 3612 | /* shift the items */ |
9c58309d | 3613 | memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr), |
5f39d397 | 3614 | btrfs_item_nr_offset(slot), |
d6025579 | 3615 | (nritems - slot) * sizeof(struct btrfs_item)); |
be0e5c09 CM |
3616 | |
3617 | /* shift the data */ | |
5f39d397 | 3618 | memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) + |
9c58309d | 3619 | data_end - total_data, btrfs_leaf_data(leaf) + |
d6025579 | 3620 | data_end, old_data - data_end); |
be0e5c09 CM |
3621 | data_end = old_data; |
3622 | } | |
5f39d397 | 3623 | |
62e2749e | 3624 | /* setup the item for the new data */ |
9c58309d CM |
3625 | for (i = 0; i < nr; i++) { |
3626 | btrfs_cpu_key_to_disk(&disk_key, cpu_key + i); | |
3627 | btrfs_set_item_key(leaf, &disk_key, slot + i); | |
3628 | item = btrfs_item_nr(leaf, slot + i); | |
3629 | btrfs_set_item_offset(leaf, item, data_end - data_size[i]); | |
3630 | data_end -= data_size[i]; | |
3631 | btrfs_set_item_size(leaf, item, data_size[i]); | |
3632 | } | |
44871b1b | 3633 | |
9c58309d | 3634 | btrfs_set_header_nritems(leaf, nritems + nr); |
aa5d6bed CM |
3635 | |
3636 | ret = 0; | |
5a01a2e3 CM |
3637 | if (slot == 0) { |
3638 | btrfs_cpu_key_to_disk(&disk_key, cpu_key); | |
e089f05c | 3639 | ret = fixup_low_keys(trans, root, path, &disk_key, 1); |
5a01a2e3 | 3640 | } |
b9473439 CM |
3641 | btrfs_unlock_up_safe(path, 1); |
3642 | btrfs_mark_buffer_dirty(leaf); | |
aa5d6bed | 3643 | |
5f39d397 CM |
3644 | if (btrfs_leaf_free_space(root, leaf) < 0) { |
3645 | btrfs_print_leaf(root, leaf); | |
be0e5c09 | 3646 | BUG(); |
5f39d397 | 3647 | } |
44871b1b CM |
3648 | return ret; |
3649 | } | |
3650 | ||
3651 | /* | |
3652 | * Given a key and some data, insert items into the tree. | |
3653 | * This does all the path init required, making room in the tree if needed. | |
3654 | */ | |
3655 | int btrfs_insert_empty_items(struct btrfs_trans_handle *trans, | |
3656 | struct btrfs_root *root, | |
3657 | struct btrfs_path *path, | |
3658 | struct btrfs_key *cpu_key, u32 *data_size, | |
3659 | int nr) | |
3660 | { | |
44871b1b CM |
3661 | int ret = 0; |
3662 | int slot; | |
3663 | int i; | |
3664 | u32 total_size = 0; | |
3665 | u32 total_data = 0; | |
3666 | ||
3667 | for (i = 0; i < nr; i++) | |
3668 | total_data += data_size[i]; | |
3669 | ||
3670 | total_size = total_data + (nr * sizeof(struct btrfs_item)); | |
3671 | ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1); | |
3672 | if (ret == 0) | |
3673 | return -EEXIST; | |
3674 | if (ret < 0) | |
3675 | goto out; | |
3676 | ||
44871b1b CM |
3677 | slot = path->slots[0]; |
3678 | BUG_ON(slot < 0); | |
3679 | ||
3680 | ret = setup_items_for_insert(trans, root, path, cpu_key, data_size, | |
3681 | total_data, total_size, nr); | |
3682 | ||
ed2ff2cb | 3683 | out: |
62e2749e CM |
3684 | return ret; |
3685 | } | |
3686 | ||
3687 | /* | |
3688 | * Given a key and some data, insert an item into the tree. | |
3689 | * This does all the path init required, making room in the tree if needed. | |
3690 | */ | |
e089f05c CM |
3691 | int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root |
3692 | *root, struct btrfs_key *cpu_key, void *data, u32 | |
3693 | data_size) | |
62e2749e CM |
3694 | { |
3695 | int ret = 0; | |
2c90e5d6 | 3696 | struct btrfs_path *path; |
5f39d397 CM |
3697 | struct extent_buffer *leaf; |
3698 | unsigned long ptr; | |
62e2749e | 3699 | |
2c90e5d6 | 3700 | path = btrfs_alloc_path(); |
db5b493a TI |
3701 | if (!path) |
3702 | return -ENOMEM; | |
2c90e5d6 | 3703 | ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size); |
62e2749e | 3704 | if (!ret) { |
5f39d397 CM |
3705 | leaf = path->nodes[0]; |
3706 | ptr = btrfs_item_ptr_offset(leaf, path->slots[0]); | |
3707 | write_extent_buffer(leaf, data, ptr, data_size); | |
3708 | btrfs_mark_buffer_dirty(leaf); | |
62e2749e | 3709 | } |
2c90e5d6 | 3710 | btrfs_free_path(path); |
aa5d6bed | 3711 | return ret; |
be0e5c09 CM |
3712 | } |
3713 | ||
74123bd7 | 3714 | /* |
5de08d7d | 3715 | * delete the pointer from a given node. |
74123bd7 | 3716 | * |
d352ac68 CM |
3717 | * the tree should have been previously balanced so the deletion does not |
3718 | * empty a node. | |
74123bd7 | 3719 | */ |
e089f05c CM |
3720 | static int del_ptr(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
3721 | struct btrfs_path *path, int level, int slot) | |
be0e5c09 | 3722 | { |
5f39d397 | 3723 | struct extent_buffer *parent = path->nodes[level]; |
7518a238 | 3724 | u32 nritems; |
aa5d6bed | 3725 | int ret = 0; |
bb803951 | 3726 | int wret; |
be0e5c09 | 3727 | |
5f39d397 | 3728 | nritems = btrfs_header_nritems(parent); |
d397712b | 3729 | if (slot != nritems - 1) { |
5f39d397 CM |
3730 | memmove_extent_buffer(parent, |
3731 | btrfs_node_key_ptr_offset(slot), | |
3732 | btrfs_node_key_ptr_offset(slot + 1), | |
d6025579 CM |
3733 | sizeof(struct btrfs_key_ptr) * |
3734 | (nritems - slot - 1)); | |
bb803951 | 3735 | } |
7518a238 | 3736 | nritems--; |
5f39d397 | 3737 | btrfs_set_header_nritems(parent, nritems); |
7518a238 | 3738 | if (nritems == 0 && parent == root->node) { |
5f39d397 | 3739 | BUG_ON(btrfs_header_level(root->node) != 1); |
bb803951 | 3740 | /* just turn the root into a leaf and break */ |
5f39d397 | 3741 | btrfs_set_header_level(root->node, 0); |
bb803951 | 3742 | } else if (slot == 0) { |
5f39d397 CM |
3743 | struct btrfs_disk_key disk_key; |
3744 | ||
3745 | btrfs_node_key(parent, &disk_key, 0); | |
3746 | wret = fixup_low_keys(trans, root, path, &disk_key, level + 1); | |
0f70abe2 CM |
3747 | if (wret) |
3748 | ret = wret; | |
be0e5c09 | 3749 | } |
d6025579 | 3750 | btrfs_mark_buffer_dirty(parent); |
aa5d6bed | 3751 | return ret; |
be0e5c09 CM |
3752 | } |
3753 | ||
323ac95b CM |
3754 | /* |
3755 | * a helper function to delete the leaf pointed to by path->slots[1] and | |
5d4f98a2 | 3756 | * path->nodes[1]. |
323ac95b CM |
3757 | * |
3758 | * This deletes the pointer in path->nodes[1] and frees the leaf | |
3759 | * block extent. zero is returned if it all worked out, < 0 otherwise. | |
3760 | * | |
3761 | * The path must have already been setup for deleting the leaf, including | |
3762 | * all the proper balancing. path->nodes[1] must be locked. | |
3763 | */ | |
5d4f98a2 YZ |
3764 | static noinline int btrfs_del_leaf(struct btrfs_trans_handle *trans, |
3765 | struct btrfs_root *root, | |
3766 | struct btrfs_path *path, | |
3767 | struct extent_buffer *leaf) | |
323ac95b CM |
3768 | { |
3769 | int ret; | |
323ac95b | 3770 | |
5d4f98a2 | 3771 | WARN_ON(btrfs_header_generation(leaf) != trans->transid); |
323ac95b CM |
3772 | ret = del_ptr(trans, root, path, 1, path->slots[1]); |
3773 | if (ret) | |
3774 | return ret; | |
3775 | ||
4d081c41 CM |
3776 | /* |
3777 | * btrfs_free_extent is expensive, we want to make sure we | |
3778 | * aren't holding any locks when we call it | |
3779 | */ | |
3780 | btrfs_unlock_up_safe(path, 0); | |
3781 | ||
f0486c68 YZ |
3782 | root_sub_used(root, leaf->len); |
3783 | ||
3784 | btrfs_free_tree_block(trans, root, leaf, 0, 1); | |
3785 | return 0; | |
323ac95b | 3786 | } |
74123bd7 CM |
3787 | /* |
3788 | * delete the item at the leaf level in path. If that empties | |
3789 | * the leaf, remove it from the tree | |
3790 | */ | |
85e21bac CM |
3791 | int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
3792 | struct btrfs_path *path, int slot, int nr) | |
be0e5c09 | 3793 | { |
5f39d397 CM |
3794 | struct extent_buffer *leaf; |
3795 | struct btrfs_item *item; | |
85e21bac CM |
3796 | int last_off; |
3797 | int dsize = 0; | |
aa5d6bed CM |
3798 | int ret = 0; |
3799 | int wret; | |
85e21bac | 3800 | int i; |
7518a238 | 3801 | u32 nritems; |
be0e5c09 | 3802 | |
5f39d397 | 3803 | leaf = path->nodes[0]; |
85e21bac CM |
3804 | last_off = btrfs_item_offset_nr(leaf, slot + nr - 1); |
3805 | ||
3806 | for (i = 0; i < nr; i++) | |
3807 | dsize += btrfs_item_size_nr(leaf, slot + i); | |
3808 | ||
5f39d397 | 3809 | nritems = btrfs_header_nritems(leaf); |
be0e5c09 | 3810 | |
85e21bac | 3811 | if (slot + nr != nritems) { |
123abc88 | 3812 | int data_end = leaf_data_end(root, leaf); |
5f39d397 CM |
3813 | |
3814 | memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) + | |
d6025579 CM |
3815 | data_end + dsize, |
3816 | btrfs_leaf_data(leaf) + data_end, | |
85e21bac | 3817 | last_off - data_end); |
5f39d397 | 3818 | |
85e21bac | 3819 | for (i = slot + nr; i < nritems; i++) { |
5f39d397 | 3820 | u32 ioff; |
db94535d | 3821 | |
5f39d397 CM |
3822 | item = btrfs_item_nr(leaf, i); |
3823 | ioff = btrfs_item_offset(leaf, item); | |
3824 | btrfs_set_item_offset(leaf, item, ioff + dsize); | |
0783fcfc | 3825 | } |
db94535d | 3826 | |
5f39d397 | 3827 | memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot), |
85e21bac | 3828 | btrfs_item_nr_offset(slot + nr), |
d6025579 | 3829 | sizeof(struct btrfs_item) * |
85e21bac | 3830 | (nritems - slot - nr)); |
be0e5c09 | 3831 | } |
85e21bac CM |
3832 | btrfs_set_header_nritems(leaf, nritems - nr); |
3833 | nritems -= nr; | |
5f39d397 | 3834 | |
74123bd7 | 3835 | /* delete the leaf if we've emptied it */ |
7518a238 | 3836 | if (nritems == 0) { |
5f39d397 CM |
3837 | if (leaf == root->node) { |
3838 | btrfs_set_header_level(leaf, 0); | |
9a8dd150 | 3839 | } else { |
f0486c68 YZ |
3840 | btrfs_set_path_blocking(path); |
3841 | clean_tree_block(trans, root, leaf); | |
5d4f98a2 | 3842 | ret = btrfs_del_leaf(trans, root, path, leaf); |
323ac95b | 3843 | BUG_ON(ret); |
9a8dd150 | 3844 | } |
be0e5c09 | 3845 | } else { |
7518a238 | 3846 | int used = leaf_space_used(leaf, 0, nritems); |
aa5d6bed | 3847 | if (slot == 0) { |
5f39d397 CM |
3848 | struct btrfs_disk_key disk_key; |
3849 | ||
3850 | btrfs_item_key(leaf, &disk_key, 0); | |
e089f05c | 3851 | wret = fixup_low_keys(trans, root, path, |
5f39d397 | 3852 | &disk_key, 1); |
aa5d6bed CM |
3853 | if (wret) |
3854 | ret = wret; | |
3855 | } | |
aa5d6bed | 3856 | |
74123bd7 | 3857 | /* delete the leaf if it is mostly empty */ |
d717aa1d | 3858 | if (used < BTRFS_LEAF_DATA_SIZE(root) / 3) { |
be0e5c09 CM |
3859 | /* push_leaf_left fixes the path. |
3860 | * make sure the path still points to our leaf | |
3861 | * for possible call to del_ptr below | |
3862 | */ | |
4920c9ac | 3863 | slot = path->slots[1]; |
5f39d397 CM |
3864 | extent_buffer_get(leaf); |
3865 | ||
b9473439 | 3866 | btrfs_set_path_blocking(path); |
99d8f83c CM |
3867 | wret = push_leaf_left(trans, root, path, 1, 1, |
3868 | 1, (u32)-1); | |
54aa1f4d | 3869 | if (wret < 0 && wret != -ENOSPC) |
aa5d6bed | 3870 | ret = wret; |
5f39d397 CM |
3871 | |
3872 | if (path->nodes[0] == leaf && | |
3873 | btrfs_header_nritems(leaf)) { | |
99d8f83c CM |
3874 | wret = push_leaf_right(trans, root, path, 1, |
3875 | 1, 1, 0); | |
54aa1f4d | 3876 | if (wret < 0 && wret != -ENOSPC) |
aa5d6bed CM |
3877 | ret = wret; |
3878 | } | |
5f39d397 CM |
3879 | |
3880 | if (btrfs_header_nritems(leaf) == 0) { | |
323ac95b | 3881 | path->slots[1] = slot; |
5d4f98a2 | 3882 | ret = btrfs_del_leaf(trans, root, path, leaf); |
323ac95b | 3883 | BUG_ON(ret); |
5f39d397 | 3884 | free_extent_buffer(leaf); |
5de08d7d | 3885 | } else { |
925baedd CM |
3886 | /* if we're still in the path, make sure |
3887 | * we're dirty. Otherwise, one of the | |
3888 | * push_leaf functions must have already | |
3889 | * dirtied this buffer | |
3890 | */ | |
3891 | if (path->nodes[0] == leaf) | |
3892 | btrfs_mark_buffer_dirty(leaf); | |
5f39d397 | 3893 | free_extent_buffer(leaf); |
be0e5c09 | 3894 | } |
d5719762 | 3895 | } else { |
5f39d397 | 3896 | btrfs_mark_buffer_dirty(leaf); |
be0e5c09 CM |
3897 | } |
3898 | } | |
aa5d6bed | 3899 | return ret; |
be0e5c09 CM |
3900 | } |
3901 | ||
7bb86316 | 3902 | /* |
925baedd | 3903 | * search the tree again to find a leaf with lesser keys |
7bb86316 CM |
3904 | * returns 0 if it found something or 1 if there are no lesser leaves. |
3905 | * returns < 0 on io errors. | |
d352ac68 CM |
3906 | * |
3907 | * This may release the path, and so you may lose any locks held at the | |
3908 | * time you call it. | |
7bb86316 CM |
3909 | */ |
3910 | int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path) | |
3911 | { | |
925baedd CM |
3912 | struct btrfs_key key; |
3913 | struct btrfs_disk_key found_key; | |
3914 | int ret; | |
7bb86316 | 3915 | |
925baedd | 3916 | btrfs_item_key_to_cpu(path->nodes[0], &key, 0); |
7bb86316 | 3917 | |
925baedd CM |
3918 | if (key.offset > 0) |
3919 | key.offset--; | |
3920 | else if (key.type > 0) | |
3921 | key.type--; | |
3922 | else if (key.objectid > 0) | |
3923 | key.objectid--; | |
3924 | else | |
3925 | return 1; | |
7bb86316 | 3926 | |
b3b4aa74 | 3927 | btrfs_release_path(path); |
925baedd CM |
3928 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
3929 | if (ret < 0) | |
3930 | return ret; | |
3931 | btrfs_item_key(path->nodes[0], &found_key, 0); | |
3932 | ret = comp_keys(&found_key, &key); | |
3933 | if (ret < 0) | |
3934 | return 0; | |
3935 | return 1; | |
7bb86316 CM |
3936 | } |
3937 | ||
3f157a2f CM |
3938 | /* |
3939 | * A helper function to walk down the tree starting at min_key, and looking | |
3940 | * for nodes or leaves that are either in cache or have a minimum | |
d352ac68 | 3941 | * transaction id. This is used by the btree defrag code, and tree logging |
3f157a2f CM |
3942 | * |
3943 | * This does not cow, but it does stuff the starting key it finds back | |
3944 | * into min_key, so you can call btrfs_search_slot with cow=1 on the | |
3945 | * key and get a writable path. | |
3946 | * | |
3947 | * This does lock as it descends, and path->keep_locks should be set | |
3948 | * to 1 by the caller. | |
3949 | * | |
3950 | * This honors path->lowest_level to prevent descent past a given level | |
3951 | * of the tree. | |
3952 | * | |
d352ac68 CM |
3953 | * min_trans indicates the oldest transaction that you are interested |
3954 | * in walking through. Any nodes or leaves older than min_trans are | |
3955 | * skipped over (without reading them). | |
3956 | * | |
3f157a2f CM |
3957 | * returns zero if something useful was found, < 0 on error and 1 if there |
3958 | * was nothing in the tree that matched the search criteria. | |
3959 | */ | |
3960 | int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key, | |
e02119d5 | 3961 | struct btrfs_key *max_key, |
3f157a2f CM |
3962 | struct btrfs_path *path, int cache_only, |
3963 | u64 min_trans) | |
3964 | { | |
3965 | struct extent_buffer *cur; | |
3966 | struct btrfs_key found_key; | |
3967 | int slot; | |
9652480b | 3968 | int sret; |
3f157a2f CM |
3969 | u32 nritems; |
3970 | int level; | |
3971 | int ret = 1; | |
3972 | ||
934d375b | 3973 | WARN_ON(!path->keep_locks); |
3f157a2f | 3974 | again: |
bd681513 | 3975 | cur = btrfs_read_lock_root_node(root); |
3f157a2f | 3976 | level = btrfs_header_level(cur); |
e02119d5 | 3977 | WARN_ON(path->nodes[level]); |
3f157a2f | 3978 | path->nodes[level] = cur; |
bd681513 | 3979 | path->locks[level] = BTRFS_READ_LOCK; |
3f157a2f CM |
3980 | |
3981 | if (btrfs_header_generation(cur) < min_trans) { | |
3982 | ret = 1; | |
3983 | goto out; | |
3984 | } | |
d397712b | 3985 | while (1) { |
3f157a2f CM |
3986 | nritems = btrfs_header_nritems(cur); |
3987 | level = btrfs_header_level(cur); | |
9652480b | 3988 | sret = bin_search(cur, min_key, level, &slot); |
3f157a2f | 3989 | |
323ac95b CM |
3990 | /* at the lowest level, we're done, setup the path and exit */ |
3991 | if (level == path->lowest_level) { | |
e02119d5 CM |
3992 | if (slot >= nritems) |
3993 | goto find_next_key; | |
3f157a2f CM |
3994 | ret = 0; |
3995 | path->slots[level] = slot; | |
3996 | btrfs_item_key_to_cpu(cur, &found_key, slot); | |
3997 | goto out; | |
3998 | } | |
9652480b Y |
3999 | if (sret && slot > 0) |
4000 | slot--; | |
3f157a2f CM |
4001 | /* |
4002 | * check this node pointer against the cache_only and | |
4003 | * min_trans parameters. If it isn't in cache or is too | |
4004 | * old, skip to the next one. | |
4005 | */ | |
d397712b | 4006 | while (slot < nritems) { |
3f157a2f CM |
4007 | u64 blockptr; |
4008 | u64 gen; | |
4009 | struct extent_buffer *tmp; | |
e02119d5 CM |
4010 | struct btrfs_disk_key disk_key; |
4011 | ||
3f157a2f CM |
4012 | blockptr = btrfs_node_blockptr(cur, slot); |
4013 | gen = btrfs_node_ptr_generation(cur, slot); | |
4014 | if (gen < min_trans) { | |
4015 | slot++; | |
4016 | continue; | |
4017 | } | |
4018 | if (!cache_only) | |
4019 | break; | |
4020 | ||
e02119d5 CM |
4021 | if (max_key) { |
4022 | btrfs_node_key(cur, &disk_key, slot); | |
4023 | if (comp_keys(&disk_key, max_key) >= 0) { | |
4024 | ret = 1; | |
4025 | goto out; | |
4026 | } | |
4027 | } | |
4028 | ||
3f157a2f CM |
4029 | tmp = btrfs_find_tree_block(root, blockptr, |
4030 | btrfs_level_size(root, level - 1)); | |
4031 | ||
4032 | if (tmp && btrfs_buffer_uptodate(tmp, gen)) { | |
4033 | free_extent_buffer(tmp); | |
4034 | break; | |
4035 | } | |
4036 | if (tmp) | |
4037 | free_extent_buffer(tmp); | |
4038 | slot++; | |
4039 | } | |
e02119d5 | 4040 | find_next_key: |
3f157a2f CM |
4041 | /* |
4042 | * we didn't find a candidate key in this node, walk forward | |
4043 | * and find another one | |
4044 | */ | |
4045 | if (slot >= nritems) { | |
e02119d5 | 4046 | path->slots[level] = slot; |
b4ce94de | 4047 | btrfs_set_path_blocking(path); |
e02119d5 | 4048 | sret = btrfs_find_next_key(root, path, min_key, level, |
3f157a2f | 4049 | cache_only, min_trans); |
e02119d5 | 4050 | if (sret == 0) { |
b3b4aa74 | 4051 | btrfs_release_path(path); |
3f157a2f CM |
4052 | goto again; |
4053 | } else { | |
4054 | goto out; | |
4055 | } | |
4056 | } | |
4057 | /* save our key for returning back */ | |
4058 | btrfs_node_key_to_cpu(cur, &found_key, slot); | |
4059 | path->slots[level] = slot; | |
4060 | if (level == path->lowest_level) { | |
4061 | ret = 0; | |
4062 | unlock_up(path, level, 1); | |
4063 | goto out; | |
4064 | } | |
b4ce94de | 4065 | btrfs_set_path_blocking(path); |
3f157a2f | 4066 | cur = read_node_slot(root, cur, slot); |
97d9a8a4 | 4067 | BUG_ON(!cur); |
3f157a2f | 4068 | |
bd681513 | 4069 | btrfs_tree_read_lock(cur); |
b4ce94de | 4070 | |
bd681513 | 4071 | path->locks[level - 1] = BTRFS_READ_LOCK; |
3f157a2f CM |
4072 | path->nodes[level - 1] = cur; |
4073 | unlock_up(path, level, 1); | |
bd681513 | 4074 | btrfs_clear_path_blocking(path, NULL, 0); |
3f157a2f CM |
4075 | } |
4076 | out: | |
4077 | if (ret == 0) | |
4078 | memcpy(min_key, &found_key, sizeof(found_key)); | |
b4ce94de | 4079 | btrfs_set_path_blocking(path); |
3f157a2f CM |
4080 | return ret; |
4081 | } | |
4082 | ||
4083 | /* | |
4084 | * this is similar to btrfs_next_leaf, but does not try to preserve | |
4085 | * and fixup the path. It looks for and returns the next key in the | |
4086 | * tree based on the current path and the cache_only and min_trans | |
4087 | * parameters. | |
4088 | * | |
4089 | * 0 is returned if another key is found, < 0 if there are any errors | |
4090 | * and 1 is returned if there are no higher keys in the tree | |
4091 | * | |
4092 | * path->keep_locks should be set to 1 on the search made before | |
4093 | * calling this function. | |
4094 | */ | |
e7a84565 | 4095 | int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path, |
33c66f43 | 4096 | struct btrfs_key *key, int level, |
3f157a2f | 4097 | int cache_only, u64 min_trans) |
e7a84565 | 4098 | { |
e7a84565 CM |
4099 | int slot; |
4100 | struct extent_buffer *c; | |
4101 | ||
934d375b | 4102 | WARN_ON(!path->keep_locks); |
d397712b | 4103 | while (level < BTRFS_MAX_LEVEL) { |
e7a84565 CM |
4104 | if (!path->nodes[level]) |
4105 | return 1; | |
4106 | ||
4107 | slot = path->slots[level] + 1; | |
4108 | c = path->nodes[level]; | |
3f157a2f | 4109 | next: |
e7a84565 | 4110 | if (slot >= btrfs_header_nritems(c)) { |
33c66f43 YZ |
4111 | int ret; |
4112 | int orig_lowest; | |
4113 | struct btrfs_key cur_key; | |
4114 | if (level + 1 >= BTRFS_MAX_LEVEL || | |
4115 | !path->nodes[level + 1]) | |
e7a84565 | 4116 | return 1; |
33c66f43 YZ |
4117 | |
4118 | if (path->locks[level + 1]) { | |
4119 | level++; | |
4120 | continue; | |
4121 | } | |
4122 | ||
4123 | slot = btrfs_header_nritems(c) - 1; | |
4124 | if (level == 0) | |
4125 | btrfs_item_key_to_cpu(c, &cur_key, slot); | |
4126 | else | |
4127 | btrfs_node_key_to_cpu(c, &cur_key, slot); | |
4128 | ||
4129 | orig_lowest = path->lowest_level; | |
b3b4aa74 | 4130 | btrfs_release_path(path); |
33c66f43 YZ |
4131 | path->lowest_level = level; |
4132 | ret = btrfs_search_slot(NULL, root, &cur_key, path, | |
4133 | 0, 0); | |
4134 | path->lowest_level = orig_lowest; | |
4135 | if (ret < 0) | |
4136 | return ret; | |
4137 | ||
4138 | c = path->nodes[level]; | |
4139 | slot = path->slots[level]; | |
4140 | if (ret == 0) | |
4141 | slot++; | |
4142 | goto next; | |
e7a84565 | 4143 | } |
33c66f43 | 4144 | |
e7a84565 CM |
4145 | if (level == 0) |
4146 | btrfs_item_key_to_cpu(c, key, slot); | |
3f157a2f CM |
4147 | else { |
4148 | u64 blockptr = btrfs_node_blockptr(c, slot); | |
4149 | u64 gen = btrfs_node_ptr_generation(c, slot); | |
4150 | ||
4151 | if (cache_only) { | |
4152 | struct extent_buffer *cur; | |
4153 | cur = btrfs_find_tree_block(root, blockptr, | |
4154 | btrfs_level_size(root, level - 1)); | |
4155 | if (!cur || !btrfs_buffer_uptodate(cur, gen)) { | |
4156 | slot++; | |
4157 | if (cur) | |
4158 | free_extent_buffer(cur); | |
4159 | goto next; | |
4160 | } | |
4161 | free_extent_buffer(cur); | |
4162 | } | |
4163 | if (gen < min_trans) { | |
4164 | slot++; | |
4165 | goto next; | |
4166 | } | |
e7a84565 | 4167 | btrfs_node_key_to_cpu(c, key, slot); |
3f157a2f | 4168 | } |
e7a84565 CM |
4169 | return 0; |
4170 | } | |
4171 | return 1; | |
4172 | } | |
4173 | ||
97571fd0 | 4174 | /* |
925baedd | 4175 | * search the tree again to find a leaf with greater keys |
0f70abe2 CM |
4176 | * returns 0 if it found something or 1 if there are no greater leaves. |
4177 | * returns < 0 on io errors. | |
97571fd0 | 4178 | */ |
234b63a0 | 4179 | int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path) |
d97e63b6 CM |
4180 | { |
4181 | int slot; | |
8e73f275 | 4182 | int level; |
5f39d397 | 4183 | struct extent_buffer *c; |
8e73f275 | 4184 | struct extent_buffer *next; |
925baedd CM |
4185 | struct btrfs_key key; |
4186 | u32 nritems; | |
4187 | int ret; | |
8e73f275 | 4188 | int old_spinning = path->leave_spinning; |
bd681513 | 4189 | int next_rw_lock = 0; |
925baedd CM |
4190 | |
4191 | nritems = btrfs_header_nritems(path->nodes[0]); | |
d397712b | 4192 | if (nritems == 0) |
925baedd | 4193 | return 1; |
925baedd | 4194 | |
8e73f275 CM |
4195 | btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1); |
4196 | again: | |
4197 | level = 1; | |
4198 | next = NULL; | |
bd681513 | 4199 | next_rw_lock = 0; |
b3b4aa74 | 4200 | btrfs_release_path(path); |
8e73f275 | 4201 | |
a2135011 | 4202 | path->keep_locks = 1; |
31533fb2 | 4203 | path->leave_spinning = 1; |
8e73f275 | 4204 | |
925baedd CM |
4205 | ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); |
4206 | path->keep_locks = 0; | |
4207 | ||
4208 | if (ret < 0) | |
4209 | return ret; | |
4210 | ||
a2135011 | 4211 | nritems = btrfs_header_nritems(path->nodes[0]); |
168fd7d2 CM |
4212 | /* |
4213 | * by releasing the path above we dropped all our locks. A balance | |
4214 | * could have added more items next to the key that used to be | |
4215 | * at the very end of the block. So, check again here and | |
4216 | * advance the path if there are now more items available. | |
4217 | */ | |
a2135011 | 4218 | if (nritems > 0 && path->slots[0] < nritems - 1) { |
e457afec YZ |
4219 | if (ret == 0) |
4220 | path->slots[0]++; | |
8e73f275 | 4221 | ret = 0; |
925baedd CM |
4222 | goto done; |
4223 | } | |
d97e63b6 | 4224 | |
d397712b | 4225 | while (level < BTRFS_MAX_LEVEL) { |
8e73f275 CM |
4226 | if (!path->nodes[level]) { |
4227 | ret = 1; | |
4228 | goto done; | |
4229 | } | |
5f39d397 | 4230 | |
d97e63b6 CM |
4231 | slot = path->slots[level] + 1; |
4232 | c = path->nodes[level]; | |
5f39d397 | 4233 | if (slot >= btrfs_header_nritems(c)) { |
d97e63b6 | 4234 | level++; |
8e73f275 CM |
4235 | if (level == BTRFS_MAX_LEVEL) { |
4236 | ret = 1; | |
4237 | goto done; | |
4238 | } | |
d97e63b6 CM |
4239 | continue; |
4240 | } | |
5f39d397 | 4241 | |
925baedd | 4242 | if (next) { |
bd681513 | 4243 | btrfs_tree_unlock_rw(next, next_rw_lock); |
5f39d397 | 4244 | free_extent_buffer(next); |
925baedd | 4245 | } |
5f39d397 | 4246 | |
8e73f275 | 4247 | next = c; |
bd681513 | 4248 | next_rw_lock = path->locks[level]; |
8e73f275 CM |
4249 | ret = read_block_for_search(NULL, root, path, &next, level, |
4250 | slot, &key); | |
4251 | if (ret == -EAGAIN) | |
4252 | goto again; | |
5f39d397 | 4253 | |
76a05b35 | 4254 | if (ret < 0) { |
b3b4aa74 | 4255 | btrfs_release_path(path); |
76a05b35 CM |
4256 | goto done; |
4257 | } | |
4258 | ||
5cd57b2c | 4259 | if (!path->skip_locking) { |
bd681513 | 4260 | ret = btrfs_try_tree_read_lock(next); |
8e73f275 CM |
4261 | if (!ret) { |
4262 | btrfs_set_path_blocking(path); | |
bd681513 | 4263 | btrfs_tree_read_lock(next); |
31533fb2 | 4264 | btrfs_clear_path_blocking(path, next, |
bd681513 | 4265 | BTRFS_READ_LOCK); |
8e73f275 | 4266 | } |
31533fb2 | 4267 | next_rw_lock = BTRFS_READ_LOCK; |
5cd57b2c | 4268 | } |
d97e63b6 CM |
4269 | break; |
4270 | } | |
4271 | path->slots[level] = slot; | |
d397712b | 4272 | while (1) { |
d97e63b6 CM |
4273 | level--; |
4274 | c = path->nodes[level]; | |
925baedd | 4275 | if (path->locks[level]) |
bd681513 | 4276 | btrfs_tree_unlock_rw(c, path->locks[level]); |
8e73f275 | 4277 | |
5f39d397 | 4278 | free_extent_buffer(c); |
d97e63b6 CM |
4279 | path->nodes[level] = next; |
4280 | path->slots[level] = 0; | |
a74a4b97 | 4281 | if (!path->skip_locking) |
bd681513 | 4282 | path->locks[level] = next_rw_lock; |
d97e63b6 CM |
4283 | if (!level) |
4284 | break; | |
b4ce94de | 4285 | |
8e73f275 CM |
4286 | ret = read_block_for_search(NULL, root, path, &next, level, |
4287 | 0, &key); | |
4288 | if (ret == -EAGAIN) | |
4289 | goto again; | |
4290 | ||
76a05b35 | 4291 | if (ret < 0) { |
b3b4aa74 | 4292 | btrfs_release_path(path); |
76a05b35 CM |
4293 | goto done; |
4294 | } | |
4295 | ||
5cd57b2c | 4296 | if (!path->skip_locking) { |
bd681513 | 4297 | ret = btrfs_try_tree_read_lock(next); |
8e73f275 CM |
4298 | if (!ret) { |
4299 | btrfs_set_path_blocking(path); | |
bd681513 | 4300 | btrfs_tree_read_lock(next); |
31533fb2 | 4301 | btrfs_clear_path_blocking(path, next, |
bd681513 CM |
4302 | BTRFS_READ_LOCK); |
4303 | } | |
31533fb2 | 4304 | next_rw_lock = BTRFS_READ_LOCK; |
5cd57b2c | 4305 | } |
d97e63b6 | 4306 | } |
8e73f275 | 4307 | ret = 0; |
925baedd CM |
4308 | done: |
4309 | unlock_up(path, 0, 1); | |
8e73f275 CM |
4310 | path->leave_spinning = old_spinning; |
4311 | if (!old_spinning) | |
4312 | btrfs_set_path_blocking(path); | |
4313 | ||
4314 | return ret; | |
d97e63b6 | 4315 | } |
0b86a832 | 4316 | |
3f157a2f CM |
4317 | /* |
4318 | * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps | |
4319 | * searching until it gets past min_objectid or finds an item of 'type' | |
4320 | * | |
4321 | * returns 0 if something is found, 1 if nothing was found and < 0 on error | |
4322 | */ | |
0b86a832 CM |
4323 | int btrfs_previous_item(struct btrfs_root *root, |
4324 | struct btrfs_path *path, u64 min_objectid, | |
4325 | int type) | |
4326 | { | |
4327 | struct btrfs_key found_key; | |
4328 | struct extent_buffer *leaf; | |
e02119d5 | 4329 | u32 nritems; |
0b86a832 CM |
4330 | int ret; |
4331 | ||
d397712b | 4332 | while (1) { |
0b86a832 | 4333 | if (path->slots[0] == 0) { |
b4ce94de | 4334 | btrfs_set_path_blocking(path); |
0b86a832 CM |
4335 | ret = btrfs_prev_leaf(root, path); |
4336 | if (ret != 0) | |
4337 | return ret; | |
4338 | } else { | |
4339 | path->slots[0]--; | |
4340 | } | |
4341 | leaf = path->nodes[0]; | |
e02119d5 CM |
4342 | nritems = btrfs_header_nritems(leaf); |
4343 | if (nritems == 0) | |
4344 | return 1; | |
4345 | if (path->slots[0] == nritems) | |
4346 | path->slots[0]--; | |
4347 | ||
0b86a832 | 4348 | btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); |
e02119d5 CM |
4349 | if (found_key.objectid < min_objectid) |
4350 | break; | |
0a4eefbb YZ |
4351 | if (found_key.type == type) |
4352 | return 0; | |
e02119d5 CM |
4353 | if (found_key.objectid == min_objectid && |
4354 | found_key.type < type) | |
4355 | break; | |
0b86a832 CM |
4356 | } |
4357 | return 1; | |
4358 | } |