blob: 817234168a7fc298c16ec624f82a7952ff60f488 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
Chris Masond352ac62008-09-29 15:18:18 -04002 * Copyright (C) 2007,2008 Oracle. All rights reserved.
Chris Mason6cbd5572007-06-12 09:07:21 -04003 *
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
Chris Masona6b6e752007-10-15 16:22:39 -040019#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Jan Schmidtbd989ba2012-05-16 17:18:50 +020021#include <linux/rbtree.h>
Chris Masoneb60cea2007-02-02 09:18:22 -050022#include "ctree.h"
23#include "disk-io.h"
Chris Mason7f5c1512007-03-23 15:56:19 -040024#include "transaction.h"
Chris Mason5f39d392007-10-15 16:14:19 -040025#include "print-tree.h"
Chris Mason925baed2008-06-25 16:01:30 -040026#include "locking.h"
Chris Mason9a8dd152007-02-23 08:38:36 -050027
Chris Masone089f052007-03-16 16:20:31 -040028static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
29 *root, struct btrfs_path *path, int level);
30static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masond4dbff92007-04-04 14:08:15 -040031 *root, struct btrfs_key *ins_key,
Chris Masoncc0c5532007-10-25 15:42:57 -040032 struct btrfs_path *path, int data_size, int extend);
Chris Mason5f39d392007-10-15 16:14:19 -040033static int push_node_left(struct btrfs_trans_handle *trans,
34 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -040035 struct extent_buffer *src, int empty);
Chris Mason5f39d392007-10-15 16:14:19 -040036static int balance_node_right(struct btrfs_trans_handle *trans,
37 struct btrfs_root *root,
38 struct extent_buffer *dst_buf,
39 struct extent_buffer *src_buf);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +000040static void del_ptr(struct btrfs_root *root, struct btrfs_path *path,
41 int level, int slot);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +000042static int tree_mod_log_free_eb(struct btrfs_fs_info *fs_info,
Jan Schmidtf2304752012-05-26 11:43:17 +020043 struct extent_buffer *eb);
Chris Masond97e63b2007-02-20 16:40:44 -050044
Chris Mason2c90e5d2007-04-02 10:50:19 -040045struct btrfs_path *btrfs_alloc_path(void)
46{
Chris Masondf24a2b2007-04-04 09:36:31 -040047 struct btrfs_path *path;
Jeff Mahoneye00f7302009-02-12 14:11:25 -050048 path = kmem_cache_zalloc(btrfs_path_cachep, GFP_NOFS);
Chris Masondf24a2b2007-04-04 09:36:31 -040049 return path;
Chris Mason2c90e5d2007-04-02 10:50:19 -040050}
51
Chris Masonb4ce94d2009-02-04 09:25:08 -050052/*
53 * set all locked nodes in the path to blocking locks. This should
54 * be done before scheduling
55 */
56noinline void btrfs_set_path_blocking(struct btrfs_path *p)
57{
58 int i;
59 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbd681512011-07-16 15:23:14 -040060 if (!p->nodes[i] || !p->locks[i])
61 continue;
62 btrfs_set_lock_blocking_rw(p->nodes[i], p->locks[i]);
63 if (p->locks[i] == BTRFS_READ_LOCK)
64 p->locks[i] = BTRFS_READ_LOCK_BLOCKING;
65 else if (p->locks[i] == BTRFS_WRITE_LOCK)
66 p->locks[i] = BTRFS_WRITE_LOCK_BLOCKING;
Chris Masonb4ce94d2009-02-04 09:25:08 -050067 }
68}
69
70/*
71 * reset all the locked nodes in the patch to spinning locks.
Chris Mason4008c042009-02-12 14:09:45 -050072 *
73 * held is used to keep lockdep happy, when lockdep is enabled
74 * we set held to a blocking lock before we go around and
75 * retake all the spinlocks in the path. You can safely use NULL
76 * for held
Chris Masonb4ce94d2009-02-04 09:25:08 -050077 */
Chris Mason4008c042009-02-12 14:09:45 -050078noinline void btrfs_clear_path_blocking(struct btrfs_path *p,
Chris Masonbd681512011-07-16 15:23:14 -040079 struct extent_buffer *held, int held_rw)
Chris Masonb4ce94d2009-02-04 09:25:08 -050080{
81 int i;
Chris Mason4008c042009-02-12 14:09:45 -050082
83#ifdef CONFIG_DEBUG_LOCK_ALLOC
84 /* lockdep really cares that we take all of these spinlocks
85 * in the right order. If any of the locks in the path are not
86 * currently blocking, it is going to complain. So, make really
87 * really sure by forcing the path to blocking before we clear
88 * the path blocking.
89 */
Chris Masonbd681512011-07-16 15:23:14 -040090 if (held) {
91 btrfs_set_lock_blocking_rw(held, held_rw);
92 if (held_rw == BTRFS_WRITE_LOCK)
93 held_rw = BTRFS_WRITE_LOCK_BLOCKING;
94 else if (held_rw == BTRFS_READ_LOCK)
95 held_rw = BTRFS_READ_LOCK_BLOCKING;
96 }
Chris Mason4008c042009-02-12 14:09:45 -050097 btrfs_set_path_blocking(p);
98#endif
99
100 for (i = BTRFS_MAX_LEVEL - 1; i >= 0; i--) {
Chris Masonbd681512011-07-16 15:23:14 -0400101 if (p->nodes[i] && p->locks[i]) {
102 btrfs_clear_lock_blocking_rw(p->nodes[i], p->locks[i]);
103 if (p->locks[i] == BTRFS_WRITE_LOCK_BLOCKING)
104 p->locks[i] = BTRFS_WRITE_LOCK;
105 else if (p->locks[i] == BTRFS_READ_LOCK_BLOCKING)
106 p->locks[i] = BTRFS_READ_LOCK;
107 }
Chris Masonb4ce94d2009-02-04 09:25:08 -0500108 }
Chris Mason4008c042009-02-12 14:09:45 -0500109
110#ifdef CONFIG_DEBUG_LOCK_ALLOC
111 if (held)
Chris Masonbd681512011-07-16 15:23:14 -0400112 btrfs_clear_lock_blocking_rw(held, held_rw);
Chris Mason4008c042009-02-12 14:09:45 -0500113#endif
Chris Masonb4ce94d2009-02-04 09:25:08 -0500114}
115
Chris Masond352ac62008-09-29 15:18:18 -0400116/* this also releases the path */
Chris Mason2c90e5d2007-04-02 10:50:19 -0400117void btrfs_free_path(struct btrfs_path *p)
118{
Jesper Juhlff175d52010-12-25 21:22:30 +0000119 if (!p)
120 return;
David Sterbab3b4aa72011-04-21 01:20:15 +0200121 btrfs_release_path(p);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400122 kmem_cache_free(btrfs_path_cachep, p);
123}
124
Chris Masond352ac62008-09-29 15:18:18 -0400125/*
126 * path release drops references on the extent buffers in the path
127 * and it drops any locks held by this path
128 *
129 * It is safe to call this on paths that no locks or extent buffers held.
130 */
David Sterbab3b4aa72011-04-21 01:20:15 +0200131noinline void btrfs_release_path(struct btrfs_path *p)
Chris Masoneb60cea2007-02-02 09:18:22 -0500132{
133 int i;
Chris Masona2135012008-06-25 16:01:30 -0400134
Chris Mason234b63a2007-03-13 10:46:10 -0400135 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Mason3f157a22008-06-25 16:01:31 -0400136 p->slots[i] = 0;
Chris Masoneb60cea2007-02-02 09:18:22 -0500137 if (!p->nodes[i])
Chris Mason925baed2008-06-25 16:01:30 -0400138 continue;
139 if (p->locks[i]) {
Chris Masonbd681512011-07-16 15:23:14 -0400140 btrfs_tree_unlock_rw(p->nodes[i], p->locks[i]);
Chris Mason925baed2008-06-25 16:01:30 -0400141 p->locks[i] = 0;
142 }
Chris Mason5f39d392007-10-15 16:14:19 -0400143 free_extent_buffer(p->nodes[i]);
Chris Mason3f157a22008-06-25 16:01:31 -0400144 p->nodes[i] = NULL;
Chris Masoneb60cea2007-02-02 09:18:22 -0500145 }
146}
147
Chris Masond352ac62008-09-29 15:18:18 -0400148/*
149 * safely gets a reference on the root node of a tree. A lock
150 * is not taken, so a concurrent writer may put a different node
151 * at the root of the tree. See btrfs_lock_root_node for the
152 * looping required.
153 *
154 * The extent buffer returned by this has a reference taken, so
155 * it won't disappear. It may stop being the root of the tree
156 * at any time because there are no locks held.
157 */
Chris Mason925baed2008-06-25 16:01:30 -0400158struct extent_buffer *btrfs_root_node(struct btrfs_root *root)
159{
160 struct extent_buffer *eb;
Chris Mason240f62c2011-03-23 14:54:42 -0400161
Josef Bacik3083ee22012-03-09 16:01:49 -0500162 while (1) {
163 rcu_read_lock();
164 eb = rcu_dereference(root->node);
165
166 /*
167 * RCU really hurts here, we could free up the root node because
168 * it was cow'ed but we may not get the new root node yet so do
169 * the inc_not_zero dance and if it doesn't work then
170 * synchronize_rcu and try again.
171 */
172 if (atomic_inc_not_zero(&eb->refs)) {
173 rcu_read_unlock();
174 break;
175 }
176 rcu_read_unlock();
177 synchronize_rcu();
178 }
Chris Mason925baed2008-06-25 16:01:30 -0400179 return eb;
180}
181
Chris Masond352ac62008-09-29 15:18:18 -0400182/* loop around taking references on and locking the root node of the
183 * tree until you end up with a lock on the root. A locked buffer
184 * is returned, with a reference held.
185 */
Chris Mason925baed2008-06-25 16:01:30 -0400186struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root)
187{
188 struct extent_buffer *eb;
189
Chris Masond3977122009-01-05 21:25:51 -0500190 while (1) {
Chris Mason925baed2008-06-25 16:01:30 -0400191 eb = btrfs_root_node(root);
192 btrfs_tree_lock(eb);
Chris Mason240f62c2011-03-23 14:54:42 -0400193 if (eb == root->node)
Chris Mason925baed2008-06-25 16:01:30 -0400194 break;
Chris Mason925baed2008-06-25 16:01:30 -0400195 btrfs_tree_unlock(eb);
196 free_extent_buffer(eb);
197 }
198 return eb;
199}
200
Chris Masonbd681512011-07-16 15:23:14 -0400201/* loop around taking references on and locking the root node of the
202 * tree until you end up with a lock on the root. A locked buffer
203 * is returned, with a reference held.
204 */
Eric Sandeen48a3b632013-04-25 20:41:01 +0000205static struct extent_buffer *btrfs_read_lock_root_node(struct btrfs_root *root)
Chris Masonbd681512011-07-16 15:23:14 -0400206{
207 struct extent_buffer *eb;
208
209 while (1) {
210 eb = btrfs_root_node(root);
211 btrfs_tree_read_lock(eb);
212 if (eb == root->node)
213 break;
214 btrfs_tree_read_unlock(eb);
215 free_extent_buffer(eb);
216 }
217 return eb;
218}
219
Chris Masond352ac62008-09-29 15:18:18 -0400220/* cowonly root (everything not a reference counted cow subvolume), just get
221 * put onto a simple dirty list. transaction.c walks this to make sure they
222 * get properly updated on disk.
223 */
Chris Mason0b86a832008-03-24 15:01:56 -0400224static void add_root_to_dirty_list(struct btrfs_root *root)
225{
Chris Masone5846fc2012-05-03 12:08:48 -0400226 spin_lock(&root->fs_info->trans_lock);
Miao Xie27cdeb72014-04-02 19:51:05 +0800227 if (test_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state) &&
228 list_empty(&root->dirty_list)) {
Chris Mason0b86a832008-03-24 15:01:56 -0400229 list_add(&root->dirty_list,
230 &root->fs_info->dirty_cowonly_roots);
231 }
Chris Masone5846fc2012-05-03 12:08:48 -0400232 spin_unlock(&root->fs_info->trans_lock);
Chris Mason0b86a832008-03-24 15:01:56 -0400233}
234
Chris Masond352ac62008-09-29 15:18:18 -0400235/*
236 * used by snapshot creation to make a copy of a root for a tree with
237 * a given objectid. The buffer with the new root node is returned in
238 * cow_ret, and this func returns zero on success or a negative error code.
239 */
Chris Masonbe20aa92007-12-17 20:14:01 -0500240int btrfs_copy_root(struct btrfs_trans_handle *trans,
241 struct btrfs_root *root,
242 struct extent_buffer *buf,
243 struct extent_buffer **cow_ret, u64 new_root_objectid)
244{
245 struct extent_buffer *cow;
Chris Masonbe20aa92007-12-17 20:14:01 -0500246 int ret = 0;
247 int level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400248 struct btrfs_disk_key disk_key;
Chris Masonbe20aa92007-12-17 20:14:01 -0500249
Miao Xie27cdeb72014-04-02 19:51:05 +0800250 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
251 trans->transid != root->fs_info->running_transaction->transid);
252 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
253 trans->transid != root->last_trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500254
255 level = btrfs_header_level(buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400256 if (level == 0)
257 btrfs_item_key(buf, &disk_key, 0);
258 else
259 btrfs_node_key(buf, &disk_key, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400260
David Sterba4d75f8a2014-06-15 01:54:12 +0200261 cow = btrfs_alloc_tree_block(trans, root, 0, new_root_objectid,
262 &disk_key, level, buf->start, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400263 if (IS_ERR(cow))
Chris Masonbe20aa92007-12-17 20:14:01 -0500264 return PTR_ERR(cow);
265
266 copy_extent_buffer(cow, buf, 0, 0, cow->len);
267 btrfs_set_header_bytenr(cow, cow->start);
268 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400269 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
270 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
271 BTRFS_HEADER_FLAG_RELOC);
272 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
273 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
274 else
275 btrfs_set_header_owner(cow, new_root_objectid);
Chris Masonbe20aa92007-12-17 20:14:01 -0500276
Ross Kirk0a4e5582013-09-24 10:12:38 +0100277 write_extent_buffer(cow, root->fs_info->fsid, btrfs_header_fsid(),
Yan Zheng2b820322008-11-17 21:11:30 -0500278 BTRFS_FSID_SIZE);
279
Chris Masonbe20aa92007-12-17 20:14:01 -0500280 WARN_ON(btrfs_header_generation(buf) > trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400281 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
Josef Bacike339a6b2014-07-02 10:54:25 -0700282 ret = btrfs_inc_ref(trans, root, cow, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400283 else
Josef Bacike339a6b2014-07-02 10:54:25 -0700284 ret = btrfs_inc_ref(trans, root, cow, 0);
Chris Mason4aec2b52007-12-18 16:25:45 -0500285
Chris Masonbe20aa92007-12-17 20:14:01 -0500286 if (ret)
287 return ret;
288
289 btrfs_mark_buffer_dirty(cow);
290 *cow_ret = cow;
291 return 0;
292}
293
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200294enum mod_log_op {
295 MOD_LOG_KEY_REPLACE,
296 MOD_LOG_KEY_ADD,
297 MOD_LOG_KEY_REMOVE,
298 MOD_LOG_KEY_REMOVE_WHILE_FREEING,
299 MOD_LOG_KEY_REMOVE_WHILE_MOVING,
300 MOD_LOG_MOVE_KEYS,
301 MOD_LOG_ROOT_REPLACE,
302};
303
304struct tree_mod_move {
305 int dst_slot;
306 int nr_items;
307};
308
309struct tree_mod_root {
310 u64 logical;
311 u8 level;
312};
313
314struct tree_mod_elem {
315 struct rb_node node;
316 u64 index; /* shifted logical */
Jan Schmidt097b8a72012-06-21 11:08:04 +0200317 u64 seq;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200318 enum mod_log_op op;
319
320 /* this is used for MOD_LOG_KEY_* and MOD_LOG_MOVE_KEYS operations */
321 int slot;
322
323 /* this is used for MOD_LOG_KEY* and MOD_LOG_ROOT_REPLACE */
324 u64 generation;
325
326 /* those are used for op == MOD_LOG_KEY_{REPLACE,REMOVE} */
327 struct btrfs_disk_key key;
328 u64 blockptr;
329
330 /* this is used for op == MOD_LOG_MOVE_KEYS */
331 struct tree_mod_move move;
332
333 /* this is used for op == MOD_LOG_ROOT_REPLACE */
334 struct tree_mod_root old_root;
335};
336
Jan Schmidt097b8a72012-06-21 11:08:04 +0200337static inline void tree_mod_log_read_lock(struct btrfs_fs_info *fs_info)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200338{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200339 read_lock(&fs_info->tree_mod_log_lock);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200340}
341
Jan Schmidt097b8a72012-06-21 11:08:04 +0200342static inline void tree_mod_log_read_unlock(struct btrfs_fs_info *fs_info)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200343{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200344 read_unlock(&fs_info->tree_mod_log_lock);
345}
346
347static inline void tree_mod_log_write_lock(struct btrfs_fs_info *fs_info)
348{
349 write_lock(&fs_info->tree_mod_log_lock);
350}
351
352static inline void tree_mod_log_write_unlock(struct btrfs_fs_info *fs_info)
353{
354 write_unlock(&fs_info->tree_mod_log_lock);
355}
356
357/*
Josef Bacikfcebe452014-05-13 17:30:47 -0700358 * Pull a new tree mod seq number for our operation.
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +0000359 */
Josef Bacikfcebe452014-05-13 17:30:47 -0700360static inline u64 btrfs_inc_tree_mod_seq(struct btrfs_fs_info *fs_info)
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +0000361{
362 return atomic64_inc_return(&fs_info->tree_mod_seq);
363}
364
365/*
Jan Schmidt097b8a72012-06-21 11:08:04 +0200366 * This adds a new blocker to the tree mod log's blocker list if the @elem
367 * passed does not already have a sequence number set. So when a caller expects
368 * to record tree modifications, it should ensure to set elem->seq to zero
369 * before calling btrfs_get_tree_mod_seq.
370 * Returns a fresh, unused tree log modification sequence number, even if no new
371 * blocker was added.
372 */
373u64 btrfs_get_tree_mod_seq(struct btrfs_fs_info *fs_info,
374 struct seq_list *elem)
375{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200376 tree_mod_log_write_lock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200377 spin_lock(&fs_info->tree_mod_seq_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200378 if (!elem->seq) {
Josef Bacikfcebe452014-05-13 17:30:47 -0700379 elem->seq = btrfs_inc_tree_mod_seq(fs_info);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200380 list_add_tail(&elem->list, &fs_info->tree_mod_seq_list);
381 }
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200382 spin_unlock(&fs_info->tree_mod_seq_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200383 tree_mod_log_write_unlock(fs_info);
384
Josef Bacikfcebe452014-05-13 17:30:47 -0700385 return elem->seq;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200386}
387
388void btrfs_put_tree_mod_seq(struct btrfs_fs_info *fs_info,
389 struct seq_list *elem)
390{
391 struct rb_root *tm_root;
392 struct rb_node *node;
393 struct rb_node *next;
394 struct seq_list *cur_elem;
395 struct tree_mod_elem *tm;
396 u64 min_seq = (u64)-1;
397 u64 seq_putting = elem->seq;
398
399 if (!seq_putting)
400 return;
401
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200402 spin_lock(&fs_info->tree_mod_seq_lock);
403 list_del(&elem->list);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200404 elem->seq = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200405
406 list_for_each_entry(cur_elem, &fs_info->tree_mod_seq_list, list) {
Jan Schmidt097b8a72012-06-21 11:08:04 +0200407 if (cur_elem->seq < min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200408 if (seq_putting > cur_elem->seq) {
409 /*
410 * blocker with lower sequence number exists, we
411 * cannot remove anything from the log
412 */
Jan Schmidt097b8a72012-06-21 11:08:04 +0200413 spin_unlock(&fs_info->tree_mod_seq_lock);
414 return;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200415 }
416 min_seq = cur_elem->seq;
417 }
418 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200419 spin_unlock(&fs_info->tree_mod_seq_lock);
420
421 /*
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200422 * anything that's lower than the lowest existing (read: blocked)
423 * sequence number can be removed from the tree.
424 */
Jan Schmidt097b8a72012-06-21 11:08:04 +0200425 tree_mod_log_write_lock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200426 tm_root = &fs_info->tree_mod_log;
427 for (node = rb_first(tm_root); node; node = next) {
428 next = rb_next(node);
429 tm = container_of(node, struct tree_mod_elem, node);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200430 if (tm->seq > min_seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200431 continue;
432 rb_erase(node, tm_root);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200433 kfree(tm);
434 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200435 tree_mod_log_write_unlock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200436}
437
438/*
439 * key order of the log:
440 * index -> sequence
441 *
442 * the index is the shifted logical of the *new* root node for root replace
443 * operations, or the shifted logical of the affected block for all other
444 * operations.
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000445 *
446 * Note: must be called with write lock (tree_mod_log_write_lock).
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200447 */
448static noinline int
449__tree_mod_log_insert(struct btrfs_fs_info *fs_info, struct tree_mod_elem *tm)
450{
451 struct rb_root *tm_root;
452 struct rb_node **new;
453 struct rb_node *parent = NULL;
454 struct tree_mod_elem *cur;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200455
Josef Bacikc8cc6342013-07-01 16:18:19 -0400456 BUG_ON(!tm);
457
Josef Bacikfcebe452014-05-13 17:30:47 -0700458 tm->seq = btrfs_inc_tree_mod_seq(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200459
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200460 tm_root = &fs_info->tree_mod_log;
461 new = &tm_root->rb_node;
462 while (*new) {
463 cur = container_of(*new, struct tree_mod_elem, node);
464 parent = *new;
465 if (cur->index < tm->index)
466 new = &((*new)->rb_left);
467 else if (cur->index > tm->index)
468 new = &((*new)->rb_right);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200469 else if (cur->seq < tm->seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200470 new = &((*new)->rb_left);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200471 else if (cur->seq > tm->seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200472 new = &((*new)->rb_right);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000473 else
474 return -EEXIST;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200475 }
476
477 rb_link_node(&tm->node, parent, new);
478 rb_insert_color(&tm->node, tm_root);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000479 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200480}
481
Jan Schmidt097b8a72012-06-21 11:08:04 +0200482/*
483 * Determines if logging can be omitted. Returns 1 if it can. Otherwise, it
484 * returns zero with the tree_mod_log_lock acquired. The caller must hold
485 * this until all tree mod log insertions are recorded in the rb tree and then
486 * call tree_mod_log_write_unlock() to release.
487 */
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200488static inline int tree_mod_dont_log(struct btrfs_fs_info *fs_info,
489 struct extent_buffer *eb) {
490 smp_mb();
491 if (list_empty(&(fs_info)->tree_mod_seq_list))
492 return 1;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200493 if (eb && btrfs_header_level(eb) == 0)
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200494 return 1;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000495
496 tree_mod_log_write_lock(fs_info);
497 if (list_empty(&(fs_info)->tree_mod_seq_list)) {
498 tree_mod_log_write_unlock(fs_info);
499 return 1;
500 }
501
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200502 return 0;
503}
504
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000505/* Similar to tree_mod_dont_log, but doesn't acquire any locks. */
506static inline int tree_mod_need_log(const struct btrfs_fs_info *fs_info,
507 struct extent_buffer *eb)
508{
509 smp_mb();
510 if (list_empty(&(fs_info)->tree_mod_seq_list))
511 return 0;
512 if (eb && btrfs_header_level(eb) == 0)
513 return 0;
514
515 return 1;
516}
517
518static struct tree_mod_elem *
519alloc_tree_mod_elem(struct extent_buffer *eb, int slot,
520 enum mod_log_op op, gfp_t flags)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200521{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200522 struct tree_mod_elem *tm;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200523
Josef Bacikc8cc6342013-07-01 16:18:19 -0400524 tm = kzalloc(sizeof(*tm), flags);
525 if (!tm)
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000526 return NULL;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200527
528 tm->index = eb->start >> PAGE_CACHE_SHIFT;
529 if (op != MOD_LOG_KEY_ADD) {
530 btrfs_node_key(eb, &tm->key, slot);
531 tm->blockptr = btrfs_node_blockptr(eb, slot);
532 }
533 tm->op = op;
534 tm->slot = slot;
535 tm->generation = btrfs_node_ptr_generation(eb, slot);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000536 RB_CLEAR_NODE(&tm->node);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200537
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000538 return tm;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200539}
540
541static noinline int
Josef Bacikc8cc6342013-07-01 16:18:19 -0400542tree_mod_log_insert_key(struct btrfs_fs_info *fs_info,
543 struct extent_buffer *eb, int slot,
544 enum mod_log_op op, gfp_t flags)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200545{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000546 struct tree_mod_elem *tm;
547 int ret;
548
549 if (!tree_mod_need_log(fs_info, eb))
Jan Schmidt097b8a72012-06-21 11:08:04 +0200550 return 0;
551
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000552 tm = alloc_tree_mod_elem(eb, slot, op, flags);
553 if (!tm)
554 return -ENOMEM;
555
556 if (tree_mod_dont_log(fs_info, eb)) {
557 kfree(tm);
558 return 0;
559 }
560
561 ret = __tree_mod_log_insert(fs_info, tm);
562 tree_mod_log_write_unlock(fs_info);
563 if (ret)
564 kfree(tm);
565
566 return ret;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200567}
568
569static noinline int
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200570tree_mod_log_insert_move(struct btrfs_fs_info *fs_info,
571 struct extent_buffer *eb, int dst_slot, int src_slot,
572 int nr_items, gfp_t flags)
573{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000574 struct tree_mod_elem *tm = NULL;
575 struct tree_mod_elem **tm_list = NULL;
576 int ret = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200577 int i;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000578 int locked = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200579
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000580 if (!tree_mod_need_log(fs_info, eb))
Jan Schmidtf3956942012-05-31 15:02:32 +0200581 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200582
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000583 tm_list = kzalloc(nr_items * sizeof(struct tree_mod_elem *), flags);
584 if (!tm_list)
585 return -ENOMEM;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200586
Josef Bacikc8cc6342013-07-01 16:18:19 -0400587 tm = kzalloc(sizeof(*tm), flags);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000588 if (!tm) {
589 ret = -ENOMEM;
590 goto free_tms;
591 }
Jan Schmidtf3956942012-05-31 15:02:32 +0200592
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200593 tm->index = eb->start >> PAGE_CACHE_SHIFT;
594 tm->slot = src_slot;
595 tm->move.dst_slot = dst_slot;
596 tm->move.nr_items = nr_items;
597 tm->op = MOD_LOG_MOVE_KEYS;
598
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000599 for (i = 0; i + dst_slot < src_slot && i < nr_items; i++) {
600 tm_list[i] = alloc_tree_mod_elem(eb, i + dst_slot,
601 MOD_LOG_KEY_REMOVE_WHILE_MOVING, flags);
602 if (!tm_list[i]) {
603 ret = -ENOMEM;
604 goto free_tms;
605 }
606 }
607
608 if (tree_mod_dont_log(fs_info, eb))
609 goto free_tms;
610 locked = 1;
611
612 /*
613 * When we override something during the move, we log these removals.
614 * This can only happen when we move towards the beginning of the
615 * buffer, i.e. dst_slot < src_slot.
616 */
617 for (i = 0; i + dst_slot < src_slot && i < nr_items; i++) {
618 ret = __tree_mod_log_insert(fs_info, tm_list[i]);
619 if (ret)
620 goto free_tms;
621 }
622
623 ret = __tree_mod_log_insert(fs_info, tm);
624 if (ret)
625 goto free_tms;
626 tree_mod_log_write_unlock(fs_info);
627 kfree(tm_list);
628
629 return 0;
630free_tms:
631 for (i = 0; i < nr_items; i++) {
632 if (tm_list[i] && !RB_EMPTY_NODE(&tm_list[i]->node))
633 rb_erase(&tm_list[i]->node, &fs_info->tree_mod_log);
634 kfree(tm_list[i]);
635 }
636 if (locked)
637 tree_mod_log_write_unlock(fs_info);
638 kfree(tm_list);
639 kfree(tm);
640
641 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200642}
643
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000644static inline int
645__tree_mod_log_free_eb(struct btrfs_fs_info *fs_info,
646 struct tree_mod_elem **tm_list,
647 int nritems)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200648{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000649 int i, j;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200650 int ret;
651
Jan Schmidt097b8a72012-06-21 11:08:04 +0200652 for (i = nritems - 1; i >= 0; i--) {
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000653 ret = __tree_mod_log_insert(fs_info, tm_list[i]);
654 if (ret) {
655 for (j = nritems - 1; j > i; j--)
656 rb_erase(&tm_list[j]->node,
657 &fs_info->tree_mod_log);
658 return ret;
659 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200660 }
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000661
662 return 0;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200663}
664
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200665static noinline int
666tree_mod_log_insert_root(struct btrfs_fs_info *fs_info,
667 struct extent_buffer *old_root,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000668 struct extent_buffer *new_root, gfp_t flags,
669 int log_removal)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200670{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000671 struct tree_mod_elem *tm = NULL;
672 struct tree_mod_elem **tm_list = NULL;
673 int nritems = 0;
674 int ret = 0;
675 int i;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200676
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000677 if (!tree_mod_need_log(fs_info, NULL))
Jan Schmidt097b8a72012-06-21 11:08:04 +0200678 return 0;
679
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000680 if (log_removal && btrfs_header_level(old_root) > 0) {
681 nritems = btrfs_header_nritems(old_root);
682 tm_list = kzalloc(nritems * sizeof(struct tree_mod_elem *),
683 flags);
684 if (!tm_list) {
685 ret = -ENOMEM;
686 goto free_tms;
687 }
688 for (i = 0; i < nritems; i++) {
689 tm_list[i] = alloc_tree_mod_elem(old_root, i,
690 MOD_LOG_KEY_REMOVE_WHILE_FREEING, flags);
691 if (!tm_list[i]) {
692 ret = -ENOMEM;
693 goto free_tms;
694 }
695 }
696 }
Jan Schmidtd9abbf12013-03-20 13:49:48 +0000697
Josef Bacikc8cc6342013-07-01 16:18:19 -0400698 tm = kzalloc(sizeof(*tm), flags);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000699 if (!tm) {
700 ret = -ENOMEM;
701 goto free_tms;
702 }
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200703
704 tm->index = new_root->start >> PAGE_CACHE_SHIFT;
705 tm->old_root.logical = old_root->start;
706 tm->old_root.level = btrfs_header_level(old_root);
707 tm->generation = btrfs_header_generation(old_root);
708 tm->op = MOD_LOG_ROOT_REPLACE;
709
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000710 if (tree_mod_dont_log(fs_info, NULL))
711 goto free_tms;
712
713 if (tm_list)
714 ret = __tree_mod_log_free_eb(fs_info, tm_list, nritems);
715 if (!ret)
716 ret = __tree_mod_log_insert(fs_info, tm);
717
718 tree_mod_log_write_unlock(fs_info);
719 if (ret)
720 goto free_tms;
721 kfree(tm_list);
722
723 return ret;
724
725free_tms:
726 if (tm_list) {
727 for (i = 0; i < nritems; i++)
728 kfree(tm_list[i]);
729 kfree(tm_list);
730 }
731 kfree(tm);
732
733 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200734}
735
736static struct tree_mod_elem *
737__tree_mod_log_search(struct btrfs_fs_info *fs_info, u64 start, u64 min_seq,
738 int smallest)
739{
740 struct rb_root *tm_root;
741 struct rb_node *node;
742 struct tree_mod_elem *cur = NULL;
743 struct tree_mod_elem *found = NULL;
744 u64 index = start >> PAGE_CACHE_SHIFT;
745
Jan Schmidt097b8a72012-06-21 11:08:04 +0200746 tree_mod_log_read_lock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200747 tm_root = &fs_info->tree_mod_log;
748 node = tm_root->rb_node;
749 while (node) {
750 cur = container_of(node, struct tree_mod_elem, node);
751 if (cur->index < index) {
752 node = node->rb_left;
753 } else if (cur->index > index) {
754 node = node->rb_right;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200755 } else if (cur->seq < min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200756 node = node->rb_left;
757 } else if (!smallest) {
758 /* we want the node with the highest seq */
759 if (found)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200760 BUG_ON(found->seq > cur->seq);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200761 found = cur;
762 node = node->rb_left;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200763 } else if (cur->seq > min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200764 /* we want the node with the smallest seq */
765 if (found)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200766 BUG_ON(found->seq < cur->seq);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200767 found = cur;
768 node = node->rb_right;
769 } else {
770 found = cur;
771 break;
772 }
773 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200774 tree_mod_log_read_unlock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200775
776 return found;
777}
778
779/*
780 * this returns the element from the log with the smallest time sequence
781 * value that's in the log (the oldest log item). any element with a time
782 * sequence lower than min_seq will be ignored.
783 */
784static struct tree_mod_elem *
785tree_mod_log_search_oldest(struct btrfs_fs_info *fs_info, u64 start,
786 u64 min_seq)
787{
788 return __tree_mod_log_search(fs_info, start, min_seq, 1);
789}
790
791/*
792 * this returns the element from the log with the largest time sequence
793 * value that's in the log (the most recent log item). any element with
794 * a time sequence lower than min_seq will be ignored.
795 */
796static struct tree_mod_elem *
797tree_mod_log_search(struct btrfs_fs_info *fs_info, u64 start, u64 min_seq)
798{
799 return __tree_mod_log_search(fs_info, start, min_seq, 0);
800}
801
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000802static noinline int
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200803tree_mod_log_eb_copy(struct btrfs_fs_info *fs_info, struct extent_buffer *dst,
804 struct extent_buffer *src, unsigned long dst_offset,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000805 unsigned long src_offset, int nr_items)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200806{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000807 int ret = 0;
808 struct tree_mod_elem **tm_list = NULL;
809 struct tree_mod_elem **tm_list_add, **tm_list_rem;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200810 int i;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000811 int locked = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200812
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000813 if (!tree_mod_need_log(fs_info, NULL))
814 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200815
Josef Bacikc8cc6342013-07-01 16:18:19 -0400816 if (btrfs_header_level(dst) == 0 && btrfs_header_level(src) == 0)
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000817 return 0;
818
819 tm_list = kzalloc(nr_items * 2 * sizeof(struct tree_mod_elem *),
820 GFP_NOFS);
821 if (!tm_list)
822 return -ENOMEM;
823
824 tm_list_add = tm_list;
825 tm_list_rem = tm_list + nr_items;
826 for (i = 0; i < nr_items; i++) {
827 tm_list_rem[i] = alloc_tree_mod_elem(src, i + src_offset,
828 MOD_LOG_KEY_REMOVE, GFP_NOFS);
829 if (!tm_list_rem[i]) {
830 ret = -ENOMEM;
831 goto free_tms;
832 }
833
834 tm_list_add[i] = alloc_tree_mod_elem(dst, i + dst_offset,
835 MOD_LOG_KEY_ADD, GFP_NOFS);
836 if (!tm_list_add[i]) {
837 ret = -ENOMEM;
838 goto free_tms;
839 }
840 }
841
842 if (tree_mod_dont_log(fs_info, NULL))
843 goto free_tms;
844 locked = 1;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200845
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200846 for (i = 0; i < nr_items; i++) {
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000847 ret = __tree_mod_log_insert(fs_info, tm_list_rem[i]);
848 if (ret)
849 goto free_tms;
850 ret = __tree_mod_log_insert(fs_info, tm_list_add[i]);
851 if (ret)
852 goto free_tms;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200853 }
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000854
855 tree_mod_log_write_unlock(fs_info);
856 kfree(tm_list);
857
858 return 0;
859
860free_tms:
861 for (i = 0; i < nr_items * 2; i++) {
862 if (tm_list[i] && !RB_EMPTY_NODE(&tm_list[i]->node))
863 rb_erase(&tm_list[i]->node, &fs_info->tree_mod_log);
864 kfree(tm_list[i]);
865 }
866 if (locked)
867 tree_mod_log_write_unlock(fs_info);
868 kfree(tm_list);
869
870 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200871}
872
873static inline void
874tree_mod_log_eb_move(struct btrfs_fs_info *fs_info, struct extent_buffer *dst,
875 int dst_offset, int src_offset, int nr_items)
876{
877 int ret;
878 ret = tree_mod_log_insert_move(fs_info, dst, dst_offset, src_offset,
879 nr_items, GFP_NOFS);
880 BUG_ON(ret < 0);
881}
882
Jan Schmidt097b8a72012-06-21 11:08:04 +0200883static noinline void
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200884tree_mod_log_set_node_key(struct btrfs_fs_info *fs_info,
Liu Bo32adf092012-10-19 12:52:15 +0000885 struct extent_buffer *eb, int slot, int atomic)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200886{
887 int ret;
888
Filipe David Borba Manana78357762013-12-12 19:19:52 +0000889 ret = tree_mod_log_insert_key(fs_info, eb, slot,
Josef Bacikc8cc6342013-07-01 16:18:19 -0400890 MOD_LOG_KEY_REPLACE,
891 atomic ? GFP_ATOMIC : GFP_NOFS);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200892 BUG_ON(ret < 0);
893}
894
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000895static noinline int
Jan Schmidt097b8a72012-06-21 11:08:04 +0200896tree_mod_log_free_eb(struct btrfs_fs_info *fs_info, struct extent_buffer *eb)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200897{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000898 struct tree_mod_elem **tm_list = NULL;
899 int nritems = 0;
900 int i;
901 int ret = 0;
902
903 if (btrfs_header_level(eb) == 0)
904 return 0;
905
906 if (!tree_mod_need_log(fs_info, NULL))
907 return 0;
908
909 nritems = btrfs_header_nritems(eb);
910 tm_list = kzalloc(nritems * sizeof(struct tree_mod_elem *),
911 GFP_NOFS);
912 if (!tm_list)
913 return -ENOMEM;
914
915 for (i = 0; i < nritems; i++) {
916 tm_list[i] = alloc_tree_mod_elem(eb, i,
917 MOD_LOG_KEY_REMOVE_WHILE_FREEING, GFP_NOFS);
918 if (!tm_list[i]) {
919 ret = -ENOMEM;
920 goto free_tms;
921 }
922 }
923
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200924 if (tree_mod_dont_log(fs_info, eb))
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000925 goto free_tms;
926
927 ret = __tree_mod_log_free_eb(fs_info, tm_list, nritems);
928 tree_mod_log_write_unlock(fs_info);
929 if (ret)
930 goto free_tms;
931 kfree(tm_list);
932
933 return 0;
934
935free_tms:
936 for (i = 0; i < nritems; i++)
937 kfree(tm_list[i]);
938 kfree(tm_list);
939
940 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200941}
942
Jan Schmidt097b8a72012-06-21 11:08:04 +0200943static noinline void
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200944tree_mod_log_set_root_pointer(struct btrfs_root *root,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000945 struct extent_buffer *new_root_node,
946 int log_removal)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200947{
948 int ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200949 ret = tree_mod_log_insert_root(root->fs_info, root->node,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000950 new_root_node, GFP_NOFS, log_removal);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200951 BUG_ON(ret < 0);
952}
953
Chris Masond352ac62008-09-29 15:18:18 -0400954/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400955 * check if the tree block can be shared by multiple trees
956 */
957int btrfs_block_can_be_shared(struct btrfs_root *root,
958 struct extent_buffer *buf)
959{
960 /*
961 * Tree blocks not in refernece counted trees and tree roots
962 * are never shared. If a block was allocated after the last
963 * snapshot and the block was not allocated by tree relocation,
964 * we know the block is not shared.
965 */
Miao Xie27cdeb72014-04-02 19:51:05 +0800966 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400967 buf != root->node && buf != root->commit_root &&
968 (btrfs_header_generation(buf) <=
969 btrfs_root_last_snapshot(&root->root_item) ||
970 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)))
971 return 1;
972#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
Miao Xie27cdeb72014-04-02 19:51:05 +0800973 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400974 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
975 return 1;
976#endif
977 return 0;
978}
979
980static noinline int update_ref_for_cow(struct btrfs_trans_handle *trans,
981 struct btrfs_root *root,
982 struct extent_buffer *buf,
Yan, Zhengf0486c62010-05-16 10:46:25 -0400983 struct extent_buffer *cow,
984 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400985{
986 u64 refs;
987 u64 owner;
988 u64 flags;
989 u64 new_flags = 0;
990 int ret;
991
992 /*
993 * Backrefs update rules:
994 *
995 * Always use full backrefs for extent pointers in tree block
996 * allocated by tree relocation.
997 *
998 * If a shared tree block is no longer referenced by its owner
999 * tree (btrfs_header_owner(buf) == root->root_key.objectid),
1000 * use full backrefs for extent pointers in tree block.
1001 *
1002 * If a tree block is been relocating
1003 * (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID),
1004 * use full backrefs for extent pointers in tree block.
1005 * The reason for this is some operations (such as drop tree)
1006 * are only allowed for blocks use full backrefs.
1007 */
1008
1009 if (btrfs_block_can_be_shared(root, buf)) {
1010 ret = btrfs_lookup_extent_info(trans, root, buf->start,
Josef Bacik3173a182013-03-07 14:22:04 -05001011 btrfs_header_level(buf), 1,
1012 &refs, &flags);
Mark Fashehbe1a5562011-08-08 13:20:18 -07001013 if (ret)
1014 return ret;
Mark Fashehe5df9572011-08-29 14:17:04 -07001015 if (refs == 0) {
1016 ret = -EROFS;
1017 btrfs_std_error(root->fs_info, ret);
1018 return ret;
1019 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001020 } else {
1021 refs = 1;
1022 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
1023 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
1024 flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
1025 else
1026 flags = 0;
1027 }
1028
1029 owner = btrfs_header_owner(buf);
1030 BUG_ON(owner == BTRFS_TREE_RELOC_OBJECTID &&
1031 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
1032
1033 if (refs > 1) {
1034 if ((owner == root->root_key.objectid ||
1035 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) &&
1036 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) {
Josef Bacike339a6b2014-07-02 10:54:25 -07001037 ret = btrfs_inc_ref(trans, root, buf, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001038 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001039
1040 if (root->root_key.objectid ==
1041 BTRFS_TREE_RELOC_OBJECTID) {
Josef Bacike339a6b2014-07-02 10:54:25 -07001042 ret = btrfs_dec_ref(trans, root, buf, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001043 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07001044 ret = btrfs_inc_ref(trans, root, cow, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001045 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001046 }
1047 new_flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
1048 } else {
1049
1050 if (root->root_key.objectid ==
1051 BTRFS_TREE_RELOC_OBJECTID)
Josef Bacike339a6b2014-07-02 10:54:25 -07001052 ret = btrfs_inc_ref(trans, root, cow, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001053 else
Josef Bacike339a6b2014-07-02 10:54:25 -07001054 ret = btrfs_inc_ref(trans, root, cow, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001055 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001056 }
1057 if (new_flags != 0) {
Josef Bacikb1c79e02013-05-09 13:49:30 -04001058 int level = btrfs_header_level(buf);
1059
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001060 ret = btrfs_set_disk_extent_flags(trans, root,
1061 buf->start,
1062 buf->len,
Josef Bacikb1c79e02013-05-09 13:49:30 -04001063 new_flags, level, 0);
Mark Fashehbe1a5562011-08-08 13:20:18 -07001064 if (ret)
1065 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001066 }
1067 } else {
1068 if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
1069 if (root->root_key.objectid ==
1070 BTRFS_TREE_RELOC_OBJECTID)
Josef Bacike339a6b2014-07-02 10:54:25 -07001071 ret = btrfs_inc_ref(trans, root, cow, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001072 else
Josef Bacike339a6b2014-07-02 10:54:25 -07001073 ret = btrfs_inc_ref(trans, root, cow, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001074 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07001075 ret = btrfs_dec_ref(trans, root, buf, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001076 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001077 }
1078 clean_tree_block(trans, root, buf);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001079 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001080 }
1081 return 0;
1082}
1083
1084/*
Chris Masond3977122009-01-05 21:25:51 -05001085 * does the dirty work in cow of a single block. The parent block (if
1086 * supplied) is updated to point to the new cow copy. The new buffer is marked
1087 * dirty and returned locked. If you modify the block it needs to be marked
1088 * dirty again.
Chris Masond352ac62008-09-29 15:18:18 -04001089 *
1090 * search_start -- an allocation hint for the new block
1091 *
Chris Masond3977122009-01-05 21:25:51 -05001092 * empty_size -- a hint that you plan on doing more cow. This is the size in
1093 * bytes the allocator should try to find free next to the block it returns.
1094 * This is just a hint and may be ignored by the allocator.
Chris Masond352ac62008-09-29 15:18:18 -04001095 */
Chris Masond3977122009-01-05 21:25:51 -05001096static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001097 struct btrfs_root *root,
1098 struct extent_buffer *buf,
1099 struct extent_buffer *parent, int parent_slot,
1100 struct extent_buffer **cow_ret,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001101 u64 search_start, u64 empty_size)
Chris Mason6702ed42007-08-07 16:15:09 -04001102{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001103 struct btrfs_disk_key disk_key;
Chris Mason5f39d392007-10-15 16:14:19 -04001104 struct extent_buffer *cow;
Mark Fashehbe1a5562011-08-08 13:20:18 -07001105 int level, ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04001106 int last_ref = 0;
Chris Mason925baed2008-06-25 16:01:30 -04001107 int unlock_orig = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001108 u64 parent_start;
Chris Mason6702ed42007-08-07 16:15:09 -04001109
Chris Mason925baed2008-06-25 16:01:30 -04001110 if (*cow_ret == buf)
1111 unlock_orig = 1;
1112
Chris Masonb9447ef82009-03-09 11:45:38 -04001113 btrfs_assert_tree_locked(buf);
Chris Mason925baed2008-06-25 16:01:30 -04001114
Miao Xie27cdeb72014-04-02 19:51:05 +08001115 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
1116 trans->transid != root->fs_info->running_transaction->transid);
1117 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
1118 trans->transid != root->last_trans);
Chris Mason5f39d392007-10-15 16:14:19 -04001119
Chris Mason7bb86312007-12-11 09:25:06 -05001120 level = btrfs_header_level(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04001121
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001122 if (level == 0)
1123 btrfs_item_key(buf, &disk_key, 0);
1124 else
1125 btrfs_node_key(buf, &disk_key, 0);
1126
1127 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
1128 if (parent)
1129 parent_start = parent->start;
1130 else
1131 parent_start = 0;
1132 } else
1133 parent_start = 0;
1134
David Sterba4d75f8a2014-06-15 01:54:12 +02001135 cow = btrfs_alloc_tree_block(trans, root, parent_start,
1136 root->root_key.objectid, &disk_key, level,
1137 search_start, empty_size);
Chris Mason6702ed42007-08-07 16:15:09 -04001138 if (IS_ERR(cow))
1139 return PTR_ERR(cow);
1140
Chris Masonb4ce94d2009-02-04 09:25:08 -05001141 /* cow is set to blocking by btrfs_init_new_buffer */
1142
Chris Mason5f39d392007-10-15 16:14:19 -04001143 copy_extent_buffer(cow, buf, 0, 0, cow->len);
Chris Masondb945352007-10-15 16:15:53 -04001144 btrfs_set_header_bytenr(cow, cow->start);
Chris Mason5f39d392007-10-15 16:14:19 -04001145 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001146 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
1147 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
1148 BTRFS_HEADER_FLAG_RELOC);
1149 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
1150 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
1151 else
1152 btrfs_set_header_owner(cow, root->root_key.objectid);
Chris Mason6702ed42007-08-07 16:15:09 -04001153
Ross Kirk0a4e5582013-09-24 10:12:38 +01001154 write_extent_buffer(cow, root->fs_info->fsid, btrfs_header_fsid(),
Yan Zheng2b820322008-11-17 21:11:30 -05001155 BTRFS_FSID_SIZE);
1156
Mark Fashehbe1a5562011-08-08 13:20:18 -07001157 ret = update_ref_for_cow(trans, root, buf, cow, &last_ref);
Mark Fashehb68dc2a2011-08-29 14:30:39 -07001158 if (ret) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001159 btrfs_abort_transaction(trans, root, ret);
Mark Fashehb68dc2a2011-08-29 14:30:39 -07001160 return ret;
1161 }
Zheng Yan1a40e232008-09-26 10:09:34 -04001162
Miao Xie27cdeb72014-04-02 19:51:05 +08001163 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state)) {
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001164 ret = btrfs_reloc_cow_block(trans, root, buf, cow);
1165 if (ret)
1166 return ret;
1167 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001168
Chris Mason6702ed42007-08-07 16:15:09 -04001169 if (buf == root->node) {
Chris Mason925baed2008-06-25 16:01:30 -04001170 WARN_ON(parent && parent != buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001171 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
1172 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
1173 parent_start = buf->start;
1174 else
1175 parent_start = 0;
Chris Mason925baed2008-06-25 16:01:30 -04001176
Chris Mason5f39d392007-10-15 16:14:19 -04001177 extent_buffer_get(cow);
Jan Schmidt90f8d622013-04-13 13:19:53 +00001178 tree_mod_log_set_root_pointer(root, cow, 1);
Chris Mason240f62c2011-03-23 14:54:42 -04001179 rcu_assign_pointer(root->node, cow);
Chris Mason925baed2008-06-25 16:01:30 -04001180
Yan, Zhengf0486c62010-05-16 10:46:25 -04001181 btrfs_free_tree_block(trans, root, buf, parent_start,
Jan Schmidt5581a512012-05-16 17:04:52 +02001182 last_ref);
Chris Mason5f39d392007-10-15 16:14:19 -04001183 free_extent_buffer(buf);
Chris Mason0b86a832008-03-24 15:01:56 -04001184 add_root_to_dirty_list(root);
Chris Mason6702ed42007-08-07 16:15:09 -04001185 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001186 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
1187 parent_start = parent->start;
1188 else
1189 parent_start = 0;
1190
1191 WARN_ON(trans->transid != btrfs_header_generation(parent));
Jan Schmidtf2304752012-05-26 11:43:17 +02001192 tree_mod_log_insert_key(root->fs_info, parent, parent_slot,
Josef Bacikc8cc6342013-07-01 16:18:19 -04001193 MOD_LOG_KEY_REPLACE, GFP_NOFS);
Chris Mason5f39d392007-10-15 16:14:19 -04001194 btrfs_set_node_blockptr(parent, parent_slot,
Chris Masondb945352007-10-15 16:15:53 -04001195 cow->start);
Chris Mason74493f72007-12-11 09:25:06 -05001196 btrfs_set_node_ptr_generation(parent, parent_slot,
1197 trans->transid);
Chris Mason6702ed42007-08-07 16:15:09 -04001198 btrfs_mark_buffer_dirty(parent);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00001199 if (last_ref) {
1200 ret = tree_mod_log_free_eb(root->fs_info, buf);
1201 if (ret) {
1202 btrfs_abort_transaction(trans, root, ret);
1203 return ret;
1204 }
1205 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04001206 btrfs_free_tree_block(trans, root, buf, parent_start,
Jan Schmidt5581a512012-05-16 17:04:52 +02001207 last_ref);
Chris Mason6702ed42007-08-07 16:15:09 -04001208 }
Chris Mason925baed2008-06-25 16:01:30 -04001209 if (unlock_orig)
1210 btrfs_tree_unlock(buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05001211 free_extent_buffer_stale(buf);
Chris Mason6702ed42007-08-07 16:15:09 -04001212 btrfs_mark_buffer_dirty(cow);
1213 *cow_ret = cow;
1214 return 0;
1215}
1216
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001217/*
1218 * returns the logical address of the oldest predecessor of the given root.
1219 * entries older than time_seq are ignored.
1220 */
1221static struct tree_mod_elem *
1222__tree_mod_log_oldest_root(struct btrfs_fs_info *fs_info,
Jan Schmidt30b04632013-04-13 13:19:54 +00001223 struct extent_buffer *eb_root, u64 time_seq)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001224{
1225 struct tree_mod_elem *tm;
1226 struct tree_mod_elem *found = NULL;
Jan Schmidt30b04632013-04-13 13:19:54 +00001227 u64 root_logical = eb_root->start;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001228 int looped = 0;
1229
1230 if (!time_seq)
Stefan Behrens35a36212013-08-14 18:12:25 +02001231 return NULL;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001232
1233 /*
1234 * the very last operation that's logged for a root is the replacement
1235 * operation (if it is replaced at all). this has the index of the *new*
1236 * root, making it the very first operation that's logged for this root.
1237 */
1238 while (1) {
1239 tm = tree_mod_log_search_oldest(fs_info, root_logical,
1240 time_seq);
1241 if (!looped && !tm)
Stefan Behrens35a36212013-08-14 18:12:25 +02001242 return NULL;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001243 /*
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001244 * if there are no tree operation for the oldest root, we simply
1245 * return it. this should only happen if that (old) root is at
1246 * level 0.
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001247 */
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001248 if (!tm)
1249 break;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001250
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001251 /*
1252 * if there's an operation that's not a root replacement, we
1253 * found the oldest version of our root. normally, we'll find a
1254 * MOD_LOG_KEY_REMOVE_WHILE_FREEING operation here.
1255 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001256 if (tm->op != MOD_LOG_ROOT_REPLACE)
1257 break;
1258
1259 found = tm;
1260 root_logical = tm->old_root.logical;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001261 looped = 1;
1262 }
1263
Jan Schmidta95236d2012-06-05 16:41:24 +02001264 /* if there's no old root to return, return what we found instead */
1265 if (!found)
1266 found = tm;
1267
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001268 return found;
1269}
1270
1271/*
1272 * tm is a pointer to the first operation to rewind within eb. then, all
1273 * previous operations will be rewinded (until we reach something older than
1274 * time_seq).
1275 */
1276static void
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001277__tree_mod_log_rewind(struct btrfs_fs_info *fs_info, struct extent_buffer *eb,
1278 u64 time_seq, struct tree_mod_elem *first_tm)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001279{
1280 u32 n;
1281 struct rb_node *next;
1282 struct tree_mod_elem *tm = first_tm;
1283 unsigned long o_dst;
1284 unsigned long o_src;
1285 unsigned long p_size = sizeof(struct btrfs_key_ptr);
1286
1287 n = btrfs_header_nritems(eb);
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001288 tree_mod_log_read_lock(fs_info);
Jan Schmidt097b8a72012-06-21 11:08:04 +02001289 while (tm && tm->seq >= time_seq) {
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001290 /*
1291 * all the operations are recorded with the operator used for
1292 * the modification. as we're going backwards, we do the
1293 * opposite of each operation here.
1294 */
1295 switch (tm->op) {
1296 case MOD_LOG_KEY_REMOVE_WHILE_FREEING:
1297 BUG_ON(tm->slot < n);
Eric Sandeen1c697d42013-01-31 00:54:56 +00001298 /* Fallthrough */
Liu Bo95c80bb2012-10-19 09:50:52 +00001299 case MOD_LOG_KEY_REMOVE_WHILE_MOVING:
Chris Mason4c3e6962012-12-18 15:43:18 -05001300 case MOD_LOG_KEY_REMOVE:
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001301 btrfs_set_node_key(eb, &tm->key, tm->slot);
1302 btrfs_set_node_blockptr(eb, tm->slot, tm->blockptr);
1303 btrfs_set_node_ptr_generation(eb, tm->slot,
1304 tm->generation);
Chris Mason4c3e6962012-12-18 15:43:18 -05001305 n++;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001306 break;
1307 case MOD_LOG_KEY_REPLACE:
1308 BUG_ON(tm->slot >= n);
1309 btrfs_set_node_key(eb, &tm->key, tm->slot);
1310 btrfs_set_node_blockptr(eb, tm->slot, tm->blockptr);
1311 btrfs_set_node_ptr_generation(eb, tm->slot,
1312 tm->generation);
1313 break;
1314 case MOD_LOG_KEY_ADD:
Jan Schmidt19956c72012-06-22 14:52:13 +02001315 /* if a move operation is needed it's in the log */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001316 n--;
1317 break;
1318 case MOD_LOG_MOVE_KEYS:
Jan Schmidtc3193102012-05-31 19:24:36 +02001319 o_dst = btrfs_node_key_ptr_offset(tm->slot);
1320 o_src = btrfs_node_key_ptr_offset(tm->move.dst_slot);
1321 memmove_extent_buffer(eb, o_dst, o_src,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001322 tm->move.nr_items * p_size);
1323 break;
1324 case MOD_LOG_ROOT_REPLACE:
1325 /*
1326 * this operation is special. for roots, this must be
1327 * handled explicitly before rewinding.
1328 * for non-roots, this operation may exist if the node
1329 * was a root: root A -> child B; then A gets empty and
1330 * B is promoted to the new root. in the mod log, we'll
1331 * have a root-replace operation for B, a tree block
1332 * that is no root. we simply ignore that operation.
1333 */
1334 break;
1335 }
1336 next = rb_next(&tm->node);
1337 if (!next)
1338 break;
1339 tm = container_of(next, struct tree_mod_elem, node);
1340 if (tm->index != first_tm->index)
1341 break;
1342 }
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001343 tree_mod_log_read_unlock(fs_info);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001344 btrfs_set_header_nritems(eb, n);
1345}
1346
Jan Schmidt47fb0912013-04-13 13:19:55 +00001347/*
1348 * Called with eb read locked. If the buffer cannot be rewinded, the same buffer
1349 * is returned. If rewind operations happen, a fresh buffer is returned. The
1350 * returned buffer is always read-locked. If the returned buffer is not the
1351 * input buffer, the lock on the input buffer is released and the input buffer
1352 * is freed (its refcount is decremented).
1353 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001354static struct extent_buffer *
Josef Bacik9ec72672013-08-07 16:57:23 -04001355tree_mod_log_rewind(struct btrfs_fs_info *fs_info, struct btrfs_path *path,
1356 struct extent_buffer *eb, u64 time_seq)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001357{
1358 struct extent_buffer *eb_rewin;
1359 struct tree_mod_elem *tm;
1360
1361 if (!time_seq)
1362 return eb;
1363
1364 if (btrfs_header_level(eb) == 0)
1365 return eb;
1366
1367 tm = tree_mod_log_search(fs_info, eb->start, time_seq);
1368 if (!tm)
1369 return eb;
1370
Josef Bacik9ec72672013-08-07 16:57:23 -04001371 btrfs_set_path_blocking(path);
1372 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
1373
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001374 if (tm->op == MOD_LOG_KEY_REMOVE_WHILE_FREEING) {
1375 BUG_ON(tm->slot != 0);
1376 eb_rewin = alloc_dummy_extent_buffer(eb->start,
1377 fs_info->tree_root->nodesize);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001378 if (!eb_rewin) {
Josef Bacik9ec72672013-08-07 16:57:23 -04001379 btrfs_tree_read_unlock_blocking(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001380 free_extent_buffer(eb);
1381 return NULL;
1382 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001383 btrfs_set_header_bytenr(eb_rewin, eb->start);
1384 btrfs_set_header_backref_rev(eb_rewin,
1385 btrfs_header_backref_rev(eb));
1386 btrfs_set_header_owner(eb_rewin, btrfs_header_owner(eb));
Jan Schmidtc3193102012-05-31 19:24:36 +02001387 btrfs_set_header_level(eb_rewin, btrfs_header_level(eb));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001388 } else {
1389 eb_rewin = btrfs_clone_extent_buffer(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001390 if (!eb_rewin) {
Josef Bacik9ec72672013-08-07 16:57:23 -04001391 btrfs_tree_read_unlock_blocking(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001392 free_extent_buffer(eb);
1393 return NULL;
1394 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001395 }
1396
Josef Bacik9ec72672013-08-07 16:57:23 -04001397 btrfs_clear_path_blocking(path, NULL, BTRFS_READ_LOCK);
1398 btrfs_tree_read_unlock_blocking(eb);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001399 free_extent_buffer(eb);
1400
Jan Schmidt47fb0912013-04-13 13:19:55 +00001401 extent_buffer_get(eb_rewin);
1402 btrfs_tree_read_lock(eb_rewin);
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001403 __tree_mod_log_rewind(fs_info, eb_rewin, time_seq, tm);
Jan Schmidt57911b82012-10-19 09:22:03 +02001404 WARN_ON(btrfs_header_nritems(eb_rewin) >
Arne Jansen2a745b12013-02-13 04:20:01 -07001405 BTRFS_NODEPTRS_PER_BLOCK(fs_info->tree_root));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001406
1407 return eb_rewin;
1408}
1409
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001410/*
1411 * get_old_root() rewinds the state of @root's root node to the given @time_seq
1412 * value. If there are no changes, the current root->root_node is returned. If
1413 * anything changed in between, there's a fresh buffer allocated on which the
1414 * rewind operations are done. In any case, the returned buffer is read locked.
1415 * Returns NULL on error (with no locks held).
1416 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001417static inline struct extent_buffer *
1418get_old_root(struct btrfs_root *root, u64 time_seq)
1419{
1420 struct tree_mod_elem *tm;
Jan Schmidt30b04632013-04-13 13:19:54 +00001421 struct extent_buffer *eb = NULL;
1422 struct extent_buffer *eb_root;
Liu Bo7bfdcf72012-10-25 07:30:19 -06001423 struct extent_buffer *old;
Jan Schmidta95236d2012-06-05 16:41:24 +02001424 struct tree_mod_root *old_root = NULL;
Chris Mason4325edd2012-06-15 20:02:02 -04001425 u64 old_generation = 0;
Jan Schmidta95236d2012-06-05 16:41:24 +02001426 u64 logical;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001427
Jan Schmidt30b04632013-04-13 13:19:54 +00001428 eb_root = btrfs_read_lock_root_node(root);
1429 tm = __tree_mod_log_oldest_root(root->fs_info, eb_root, time_seq);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001430 if (!tm)
Jan Schmidt30b04632013-04-13 13:19:54 +00001431 return eb_root;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001432
Jan Schmidta95236d2012-06-05 16:41:24 +02001433 if (tm->op == MOD_LOG_ROOT_REPLACE) {
1434 old_root = &tm->old_root;
1435 old_generation = tm->generation;
1436 logical = old_root->logical;
1437 } else {
Jan Schmidt30b04632013-04-13 13:19:54 +00001438 logical = eb_root->start;
Jan Schmidta95236d2012-06-05 16:41:24 +02001439 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001440
Jan Schmidta95236d2012-06-05 16:41:24 +02001441 tm = tree_mod_log_search(root->fs_info, logical, time_seq);
Jan Schmidt834328a2012-10-23 11:27:33 +02001442 if (old_root && tm && tm->op != MOD_LOG_KEY_REMOVE_WHILE_FREEING) {
Jan Schmidt30b04632013-04-13 13:19:54 +00001443 btrfs_tree_read_unlock(eb_root);
1444 free_extent_buffer(eb_root);
David Sterbace86cd52014-06-15 01:07:32 +02001445 old = read_tree_block(root, logical, 0);
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301446 if (WARN_ON(!old || !extent_buffer_uptodate(old))) {
Josef Bacik416bc652013-04-23 14:17:42 -04001447 free_extent_buffer(old);
Frank Holtonefe120a2013-12-20 11:37:06 -05001448 btrfs_warn(root->fs_info,
1449 "failed to read tree block %llu from get_old_root", logical);
Jan Schmidt834328a2012-10-23 11:27:33 +02001450 } else {
Liu Bo7bfdcf72012-10-25 07:30:19 -06001451 eb = btrfs_clone_extent_buffer(old);
1452 free_extent_buffer(old);
Jan Schmidt834328a2012-10-23 11:27:33 +02001453 }
1454 } else if (old_root) {
Jan Schmidt30b04632013-04-13 13:19:54 +00001455 btrfs_tree_read_unlock(eb_root);
1456 free_extent_buffer(eb_root);
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001457 eb = alloc_dummy_extent_buffer(logical, root->nodesize);
Jan Schmidt834328a2012-10-23 11:27:33 +02001458 } else {
Josef Bacik9ec72672013-08-07 16:57:23 -04001459 btrfs_set_lock_blocking_rw(eb_root, BTRFS_READ_LOCK);
Jan Schmidt30b04632013-04-13 13:19:54 +00001460 eb = btrfs_clone_extent_buffer(eb_root);
Josef Bacik9ec72672013-08-07 16:57:23 -04001461 btrfs_tree_read_unlock_blocking(eb_root);
Jan Schmidt30b04632013-04-13 13:19:54 +00001462 free_extent_buffer(eb_root);
Jan Schmidt834328a2012-10-23 11:27:33 +02001463 }
1464
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001465 if (!eb)
1466 return NULL;
Jan Schmidtd6381082012-10-23 14:21:05 +02001467 extent_buffer_get(eb);
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001468 btrfs_tree_read_lock(eb);
Jan Schmidta95236d2012-06-05 16:41:24 +02001469 if (old_root) {
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001470 btrfs_set_header_bytenr(eb, eb->start);
1471 btrfs_set_header_backref_rev(eb, BTRFS_MIXED_BACKREF_REV);
Jan Schmidt30b04632013-04-13 13:19:54 +00001472 btrfs_set_header_owner(eb, btrfs_header_owner(eb_root));
Jan Schmidta95236d2012-06-05 16:41:24 +02001473 btrfs_set_header_level(eb, old_root->level);
1474 btrfs_set_header_generation(eb, old_generation);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001475 }
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001476 if (tm)
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001477 __tree_mod_log_rewind(root->fs_info, eb, time_seq, tm);
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001478 else
1479 WARN_ON(btrfs_header_level(eb) != 0);
Jan Schmidt57911b82012-10-19 09:22:03 +02001480 WARN_ON(btrfs_header_nritems(eb) > BTRFS_NODEPTRS_PER_BLOCK(root));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001481
1482 return eb;
1483}
1484
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001485int btrfs_old_root_level(struct btrfs_root *root, u64 time_seq)
1486{
1487 struct tree_mod_elem *tm;
1488 int level;
Jan Schmidt30b04632013-04-13 13:19:54 +00001489 struct extent_buffer *eb_root = btrfs_root_node(root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001490
Jan Schmidt30b04632013-04-13 13:19:54 +00001491 tm = __tree_mod_log_oldest_root(root->fs_info, eb_root, time_seq);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001492 if (tm && tm->op == MOD_LOG_ROOT_REPLACE) {
1493 level = tm->old_root.level;
1494 } else {
Jan Schmidt30b04632013-04-13 13:19:54 +00001495 level = btrfs_header_level(eb_root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001496 }
Jan Schmidt30b04632013-04-13 13:19:54 +00001497 free_extent_buffer(eb_root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001498
1499 return level;
1500}
1501
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001502static inline int should_cow_block(struct btrfs_trans_handle *trans,
1503 struct btrfs_root *root,
1504 struct extent_buffer *buf)
1505{
David Sterbafccb84c2014-09-29 23:53:21 +02001506 if (btrfs_test_is_dummy_root(root))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04001507 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02001508
Liu Bof1ebcc72011-11-14 20:48:06 -05001509 /* ensure we can see the force_cow */
1510 smp_rmb();
1511
1512 /*
1513 * We do not need to cow a block if
1514 * 1) this block is not created or changed in this transaction;
1515 * 2) this block does not belong to TREE_RELOC tree;
1516 * 3) the root is not forced COW.
1517 *
1518 * What is forced COW:
1519 * when we create snapshot during commiting the transaction,
1520 * after we've finished coping src root, we must COW the shared
1521 * block to ensure the metadata consistency.
1522 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001523 if (btrfs_header_generation(buf) == trans->transid &&
1524 !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN) &&
1525 !(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
Liu Bof1ebcc72011-11-14 20:48:06 -05001526 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)) &&
Miao Xie27cdeb72014-04-02 19:51:05 +08001527 !test_bit(BTRFS_ROOT_FORCE_COW, &root->state))
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001528 return 0;
1529 return 1;
1530}
1531
Chris Masond352ac62008-09-29 15:18:18 -04001532/*
1533 * cows a single block, see __btrfs_cow_block for the real work.
1534 * This version of it has extra checks so that a block isn't cow'd more than
1535 * once per transaction, as long as it hasn't been written yet
1536 */
Chris Masond3977122009-01-05 21:25:51 -05001537noinline int btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001538 struct btrfs_root *root, struct extent_buffer *buf,
1539 struct extent_buffer *parent, int parent_slot,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001540 struct extent_buffer **cow_ret)
Chris Mason02217ed2007-03-02 16:08:05 -05001541{
Chris Mason6702ed42007-08-07 16:15:09 -04001542 u64 search_start;
Chris Masonf510cfe2007-10-15 16:14:48 -04001543 int ret;
Chris Masondc17ff82008-01-08 15:46:30 -05001544
Julia Lawall31b1a2b2012-11-03 10:58:34 +00001545 if (trans->transaction != root->fs_info->running_transaction)
1546 WARN(1, KERN_CRIT "trans %llu running %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001547 trans->transid,
Chris Masonccd467d2007-06-28 15:57:36 -04001548 root->fs_info->running_transaction->transid);
Julia Lawall31b1a2b2012-11-03 10:58:34 +00001549
1550 if (trans->transid != root->fs_info->generation)
1551 WARN(1, KERN_CRIT "trans %llu running %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001552 trans->transid, root->fs_info->generation);
Chris Masondc17ff82008-01-08 15:46:30 -05001553
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001554 if (!should_cow_block(trans, root, buf)) {
Chris Mason02217ed2007-03-02 16:08:05 -05001555 *cow_ret = buf;
1556 return 0;
1557 }
Chris Masonc4876852009-02-04 09:24:25 -05001558
Chris Mason0b86a832008-03-24 15:01:56 -04001559 search_start = buf->start & ~((u64)(1024 * 1024 * 1024) - 1);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001560
1561 if (parent)
1562 btrfs_set_lock_blocking(parent);
1563 btrfs_set_lock_blocking(buf);
1564
Chris Masonf510cfe2007-10-15 16:14:48 -04001565 ret = __btrfs_cow_block(trans, root, buf, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001566 parent_slot, cow_ret, search_start, 0);
liubo1abe9b82011-03-24 11:18:59 +00001567
1568 trace_btrfs_cow_block(root, buf, *cow_ret);
1569
Chris Masonf510cfe2007-10-15 16:14:48 -04001570 return ret;
Chris Mason6702ed42007-08-07 16:15:09 -04001571}
1572
Chris Masond352ac62008-09-29 15:18:18 -04001573/*
1574 * helper function for defrag to decide if two blocks pointed to by a
1575 * node are actually close by
1576 */
Chris Mason6b800532007-10-15 16:17:34 -04001577static int close_blocks(u64 blocknr, u64 other, u32 blocksize)
Chris Mason6702ed42007-08-07 16:15:09 -04001578{
Chris Mason6b800532007-10-15 16:17:34 -04001579 if (blocknr < other && other - (blocknr + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -04001580 return 1;
Chris Mason6b800532007-10-15 16:17:34 -04001581 if (blocknr > other && blocknr - (other + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -04001582 return 1;
Chris Mason02217ed2007-03-02 16:08:05 -05001583 return 0;
1584}
1585
Chris Mason081e9572007-11-06 10:26:24 -05001586/*
1587 * compare two keys in a memcmp fashion
1588 */
1589static int comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2)
1590{
1591 struct btrfs_key k1;
1592
1593 btrfs_disk_key_to_cpu(&k1, disk);
1594
Diego Calleja20736ab2009-07-24 11:06:52 -04001595 return btrfs_comp_cpu_keys(&k1, k2);
Chris Mason081e9572007-11-06 10:26:24 -05001596}
1597
Josef Bacikf3465ca2008-11-12 14:19:50 -05001598/*
1599 * same as comp_keys only with two btrfs_key's
1600 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001601int btrfs_comp_cpu_keys(struct btrfs_key *k1, struct btrfs_key *k2)
Josef Bacikf3465ca2008-11-12 14:19:50 -05001602{
1603 if (k1->objectid > k2->objectid)
1604 return 1;
1605 if (k1->objectid < k2->objectid)
1606 return -1;
1607 if (k1->type > k2->type)
1608 return 1;
1609 if (k1->type < k2->type)
1610 return -1;
1611 if (k1->offset > k2->offset)
1612 return 1;
1613 if (k1->offset < k2->offset)
1614 return -1;
1615 return 0;
1616}
Chris Mason081e9572007-11-06 10:26:24 -05001617
Chris Masond352ac62008-09-29 15:18:18 -04001618/*
1619 * this is used by the defrag code to go through all the
1620 * leaves pointed to by a node and reallocate them so that
1621 * disk order is close to key order
1622 */
Chris Mason6702ed42007-08-07 16:15:09 -04001623int btrfs_realloc_node(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001624 struct btrfs_root *root, struct extent_buffer *parent,
Eric Sandeende78b512013-01-31 18:21:12 +00001625 int start_slot, u64 *last_ret,
Chris Masona6b6e752007-10-15 16:22:39 -04001626 struct btrfs_key *progress)
Chris Mason6702ed42007-08-07 16:15:09 -04001627{
Chris Mason6b800532007-10-15 16:17:34 -04001628 struct extent_buffer *cur;
Chris Mason6702ed42007-08-07 16:15:09 -04001629 u64 blocknr;
Chris Masonca7a79a2008-05-12 12:59:19 -04001630 u64 gen;
Chris Masone9d0b132007-08-10 14:06:19 -04001631 u64 search_start = *last_ret;
1632 u64 last_block = 0;
Chris Mason6702ed42007-08-07 16:15:09 -04001633 u64 other;
1634 u32 parent_nritems;
Chris Mason6702ed42007-08-07 16:15:09 -04001635 int end_slot;
1636 int i;
1637 int err = 0;
Chris Masonf2183bd2007-08-10 14:42:37 -04001638 int parent_level;
Chris Mason6b800532007-10-15 16:17:34 -04001639 int uptodate;
1640 u32 blocksize;
Chris Mason081e9572007-11-06 10:26:24 -05001641 int progress_passed = 0;
1642 struct btrfs_disk_key disk_key;
Chris Mason6702ed42007-08-07 16:15:09 -04001643
Chris Mason5708b952007-10-25 15:43:18 -04001644 parent_level = btrfs_header_level(parent);
Chris Mason5708b952007-10-25 15:43:18 -04001645
Julia Lawall6c1500f2012-11-03 20:30:18 +00001646 WARN_ON(trans->transaction != root->fs_info->running_transaction);
1647 WARN_ON(trans->transid != root->fs_info->generation);
Chris Mason86479a02007-09-10 19:58:16 -04001648
Chris Mason6b800532007-10-15 16:17:34 -04001649 parent_nritems = btrfs_header_nritems(parent);
David Sterba707e8a02014-06-04 19:22:26 +02001650 blocksize = root->nodesize;
Chris Mason6702ed42007-08-07 16:15:09 -04001651 end_slot = parent_nritems;
1652
1653 if (parent_nritems == 1)
1654 return 0;
1655
Chris Masonb4ce94d2009-02-04 09:25:08 -05001656 btrfs_set_lock_blocking(parent);
1657
Chris Mason6702ed42007-08-07 16:15:09 -04001658 for (i = start_slot; i < end_slot; i++) {
1659 int close = 1;
Chris Masona6b6e752007-10-15 16:22:39 -04001660
Chris Mason081e9572007-11-06 10:26:24 -05001661 btrfs_node_key(parent, &disk_key, i);
1662 if (!progress_passed && comp_keys(&disk_key, progress) < 0)
1663 continue;
1664
1665 progress_passed = 1;
Chris Mason6b800532007-10-15 16:17:34 -04001666 blocknr = btrfs_node_blockptr(parent, i);
Chris Masonca7a79a2008-05-12 12:59:19 -04001667 gen = btrfs_node_ptr_generation(parent, i);
Chris Masone9d0b132007-08-10 14:06:19 -04001668 if (last_block == 0)
1669 last_block = blocknr;
Chris Mason5708b952007-10-25 15:43:18 -04001670
Chris Mason6702ed42007-08-07 16:15:09 -04001671 if (i > 0) {
Chris Mason6b800532007-10-15 16:17:34 -04001672 other = btrfs_node_blockptr(parent, i - 1);
1673 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -04001674 }
Chris Mason0ef3e662008-05-24 14:04:53 -04001675 if (!close && i < end_slot - 2) {
Chris Mason6b800532007-10-15 16:17:34 -04001676 other = btrfs_node_blockptr(parent, i + 1);
1677 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -04001678 }
Chris Masone9d0b132007-08-10 14:06:19 -04001679 if (close) {
1680 last_block = blocknr;
Chris Mason6702ed42007-08-07 16:15:09 -04001681 continue;
Chris Masone9d0b132007-08-10 14:06:19 -04001682 }
Chris Mason6702ed42007-08-07 16:15:09 -04001683
David Sterba0308af42014-06-15 01:43:40 +02001684 cur = btrfs_find_tree_block(root, blocknr);
Chris Mason6b800532007-10-15 16:17:34 -04001685 if (cur)
Chris Masonb9fab912012-05-06 07:23:47 -04001686 uptodate = btrfs_buffer_uptodate(cur, gen, 0);
Chris Mason6b800532007-10-15 16:17:34 -04001687 else
1688 uptodate = 0;
Chris Mason5708b952007-10-25 15:43:18 -04001689 if (!cur || !uptodate) {
Chris Mason6b800532007-10-15 16:17:34 -04001690 if (!cur) {
David Sterbace86cd52014-06-15 01:07:32 +02001691 cur = read_tree_block(root, blocknr, gen);
Josef Bacik416bc652013-04-23 14:17:42 -04001692 if (!cur || !extent_buffer_uptodate(cur)) {
1693 free_extent_buffer(cur);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00001694 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04001695 }
Chris Mason6b800532007-10-15 16:17:34 -04001696 } else if (!uptodate) {
Tsutomu Itoh018642a2012-05-29 18:10:13 +09001697 err = btrfs_read_buffer(cur, gen);
1698 if (err) {
1699 free_extent_buffer(cur);
1700 return err;
1701 }
Chris Masonf2183bd2007-08-10 14:42:37 -04001702 }
Chris Mason6702ed42007-08-07 16:15:09 -04001703 }
Chris Masone9d0b132007-08-10 14:06:19 -04001704 if (search_start == 0)
Chris Mason6b800532007-10-15 16:17:34 -04001705 search_start = last_block;
Chris Masone9d0b132007-08-10 14:06:19 -04001706
Chris Masone7a84562008-06-25 16:01:31 -04001707 btrfs_tree_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001708 btrfs_set_lock_blocking(cur);
Chris Mason6b800532007-10-15 16:17:34 -04001709 err = __btrfs_cow_block(trans, root, cur, parent, i,
Chris Masone7a84562008-06-25 16:01:31 -04001710 &cur, search_start,
Chris Mason6b800532007-10-15 16:17:34 -04001711 min(16 * blocksize,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001712 (end_slot - i) * blocksize));
Yan252c38f2007-08-29 09:11:44 -04001713 if (err) {
Chris Masone7a84562008-06-25 16:01:31 -04001714 btrfs_tree_unlock(cur);
Chris Mason6b800532007-10-15 16:17:34 -04001715 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -04001716 break;
Yan252c38f2007-08-29 09:11:44 -04001717 }
Chris Masone7a84562008-06-25 16:01:31 -04001718 search_start = cur->start;
1719 last_block = cur->start;
Chris Masonf2183bd2007-08-10 14:42:37 -04001720 *last_ret = search_start;
Chris Masone7a84562008-06-25 16:01:31 -04001721 btrfs_tree_unlock(cur);
1722 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -04001723 }
1724 return err;
1725}
1726
Chris Mason74123bd2007-02-02 11:05:29 -05001727/*
1728 * The leaf data grows from end-to-front in the node.
1729 * this returns the address of the start of the last item,
1730 * which is the stop of the leaf data stack
1731 */
Chris Mason123abc82007-03-14 14:14:43 -04001732static inline unsigned int leaf_data_end(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -04001733 struct extent_buffer *leaf)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001734{
Chris Mason5f39d392007-10-15 16:14:19 -04001735 u32 nr = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001736 if (nr == 0)
Chris Mason123abc82007-03-14 14:14:43 -04001737 return BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -04001738 return btrfs_item_offset_nr(leaf, nr - 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001739}
1740
Chris Masonaa5d6be2007-02-28 16:35:06 -05001741
Chris Mason74123bd2007-02-02 11:05:29 -05001742/*
Chris Mason5f39d392007-10-15 16:14:19 -04001743 * search for key in the extent_buffer. The items start at offset p,
1744 * and they are item_size apart. There are 'max' items in p.
1745 *
Chris Mason74123bd2007-02-02 11:05:29 -05001746 * the slot in the array is returned via slot, and it points to
1747 * the place where you would insert key if it is not found in
1748 * the array.
1749 *
1750 * slot may point to max if the key is bigger than all of the keys
1751 */
Chris Masone02119d2008-09-05 16:13:11 -04001752static noinline int generic_bin_search(struct extent_buffer *eb,
1753 unsigned long p,
1754 int item_size, struct btrfs_key *key,
1755 int max, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001756{
1757 int low = 0;
1758 int high = max;
1759 int mid;
1760 int ret;
Chris Mason479965d2007-10-15 16:14:27 -04001761 struct btrfs_disk_key *tmp = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001762 struct btrfs_disk_key unaligned;
1763 unsigned long offset;
Chris Mason5f39d392007-10-15 16:14:19 -04001764 char *kaddr = NULL;
1765 unsigned long map_start = 0;
1766 unsigned long map_len = 0;
Chris Mason479965d2007-10-15 16:14:27 -04001767 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001768
Chris Masond3977122009-01-05 21:25:51 -05001769 while (low < high) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001770 mid = (low + high) / 2;
Chris Mason5f39d392007-10-15 16:14:19 -04001771 offset = p + mid * item_size;
1772
Chris Masona6591712011-07-19 12:04:14 -04001773 if (!kaddr || offset < map_start ||
Chris Mason5f39d392007-10-15 16:14:19 -04001774 (offset + sizeof(struct btrfs_disk_key)) >
1775 map_start + map_len) {
Chris Mason934d3752008-12-08 16:43:10 -05001776
1777 err = map_private_extent_buffer(eb, offset,
Chris Mason479965d2007-10-15 16:14:27 -04001778 sizeof(struct btrfs_disk_key),
Chris Masona6591712011-07-19 12:04:14 -04001779 &kaddr, &map_start, &map_len);
Chris Mason5f39d392007-10-15 16:14:19 -04001780
Chris Mason479965d2007-10-15 16:14:27 -04001781 if (!err) {
1782 tmp = (struct btrfs_disk_key *)(kaddr + offset -
1783 map_start);
1784 } else {
1785 read_extent_buffer(eb, &unaligned,
1786 offset, sizeof(unaligned));
1787 tmp = &unaligned;
1788 }
1789
Chris Mason5f39d392007-10-15 16:14:19 -04001790 } else {
1791 tmp = (struct btrfs_disk_key *)(kaddr + offset -
1792 map_start);
1793 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001794 ret = comp_keys(tmp, key);
1795
1796 if (ret < 0)
1797 low = mid + 1;
1798 else if (ret > 0)
1799 high = mid;
1800 else {
1801 *slot = mid;
1802 return 0;
1803 }
1804 }
1805 *slot = low;
1806 return 1;
1807}
1808
Chris Mason97571fd2007-02-24 13:39:08 -05001809/*
1810 * simple bin_search frontend that does the right thing for
1811 * leaves vs nodes
1812 */
Chris Mason5f39d392007-10-15 16:14:19 -04001813static int bin_search(struct extent_buffer *eb, struct btrfs_key *key,
1814 int level, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001815{
Wang Sheng-Huif7757382012-03-30 15:14:27 +08001816 if (level == 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001817 return generic_bin_search(eb,
1818 offsetof(struct btrfs_leaf, items),
Chris Mason0783fcf2007-03-12 20:12:07 -04001819 sizeof(struct btrfs_item),
Chris Mason5f39d392007-10-15 16:14:19 -04001820 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -04001821 slot);
Wang Sheng-Huif7757382012-03-30 15:14:27 +08001822 else
Chris Mason5f39d392007-10-15 16:14:19 -04001823 return generic_bin_search(eb,
1824 offsetof(struct btrfs_node, ptrs),
Chris Mason123abc82007-03-14 14:14:43 -04001825 sizeof(struct btrfs_key_ptr),
Chris Mason5f39d392007-10-15 16:14:19 -04001826 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -04001827 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001828}
1829
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001830int btrfs_bin_search(struct extent_buffer *eb, struct btrfs_key *key,
1831 int level, int *slot)
1832{
1833 return bin_search(eb, key, level, slot);
1834}
1835
Yan, Zhengf0486c62010-05-16 10:46:25 -04001836static void root_add_used(struct btrfs_root *root, u32 size)
1837{
1838 spin_lock(&root->accounting_lock);
1839 btrfs_set_root_used(&root->root_item,
1840 btrfs_root_used(&root->root_item) + size);
1841 spin_unlock(&root->accounting_lock);
1842}
1843
1844static void root_sub_used(struct btrfs_root *root, u32 size)
1845{
1846 spin_lock(&root->accounting_lock);
1847 btrfs_set_root_used(&root->root_item,
1848 btrfs_root_used(&root->root_item) - size);
1849 spin_unlock(&root->accounting_lock);
1850}
1851
Chris Masond352ac62008-09-29 15:18:18 -04001852/* given a node and slot number, this reads the blocks it points to. The
1853 * extent buffer is returned with a reference taken (but unlocked).
1854 * NULL is returned on error.
1855 */
Chris Masone02119d2008-09-05 16:13:11 -04001856static noinline struct extent_buffer *read_node_slot(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -04001857 struct extent_buffer *parent, int slot)
Chris Masonbb803952007-03-01 12:04:21 -05001858{
Chris Masonca7a79a2008-05-12 12:59:19 -04001859 int level = btrfs_header_level(parent);
Josef Bacik416bc652013-04-23 14:17:42 -04001860 struct extent_buffer *eb;
1861
Chris Masonbb803952007-03-01 12:04:21 -05001862 if (slot < 0)
1863 return NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001864 if (slot >= btrfs_header_nritems(parent))
Chris Masonbb803952007-03-01 12:04:21 -05001865 return NULL;
Chris Masonca7a79a2008-05-12 12:59:19 -04001866
1867 BUG_ON(level == 0);
1868
Josef Bacik416bc652013-04-23 14:17:42 -04001869 eb = read_tree_block(root, btrfs_node_blockptr(parent, slot),
Josef Bacik416bc652013-04-23 14:17:42 -04001870 btrfs_node_ptr_generation(parent, slot));
1871 if (eb && !extent_buffer_uptodate(eb)) {
1872 free_extent_buffer(eb);
1873 eb = NULL;
1874 }
1875
1876 return eb;
Chris Masonbb803952007-03-01 12:04:21 -05001877}
1878
Chris Masond352ac62008-09-29 15:18:18 -04001879/*
1880 * node level balancing, used to make sure nodes are in proper order for
1881 * item deletion. We balance from the top down, so we have to make sure
1882 * that a deletion won't leave an node completely empty later on.
1883 */
Chris Masone02119d2008-09-05 16:13:11 -04001884static noinline int balance_level(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05001885 struct btrfs_root *root,
1886 struct btrfs_path *path, int level)
Chris Masonbb803952007-03-01 12:04:21 -05001887{
Chris Mason5f39d392007-10-15 16:14:19 -04001888 struct extent_buffer *right = NULL;
1889 struct extent_buffer *mid;
1890 struct extent_buffer *left = NULL;
1891 struct extent_buffer *parent = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05001892 int ret = 0;
1893 int wret;
1894 int pslot;
Chris Masonbb803952007-03-01 12:04:21 -05001895 int orig_slot = path->slots[level];
Chris Mason79f95c82007-03-01 15:16:26 -05001896 u64 orig_ptr;
Chris Masonbb803952007-03-01 12:04:21 -05001897
1898 if (level == 0)
1899 return 0;
1900
Chris Mason5f39d392007-10-15 16:14:19 -04001901 mid = path->nodes[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001902
Chris Masonbd681512011-07-16 15:23:14 -04001903 WARN_ON(path->locks[level] != BTRFS_WRITE_LOCK &&
1904 path->locks[level] != BTRFS_WRITE_LOCK_BLOCKING);
Chris Mason7bb86312007-12-11 09:25:06 -05001905 WARN_ON(btrfs_header_generation(mid) != trans->transid);
1906
Chris Mason1d4f8a02007-03-13 09:28:32 -04001907 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
Chris Mason79f95c82007-03-01 15:16:26 -05001908
Li Zefana05a9bb2011-09-06 16:55:34 +08001909 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001910 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +08001911 pslot = path->slots[level + 1];
1912 }
Chris Masonbb803952007-03-01 12:04:21 -05001913
Chris Mason40689472007-03-17 14:29:23 -04001914 /*
1915 * deal with the case where there is only one pointer in the root
1916 * by promoting the node below to a root
1917 */
Chris Mason5f39d392007-10-15 16:14:19 -04001918 if (!parent) {
1919 struct extent_buffer *child;
Chris Masonbb803952007-03-01 12:04:21 -05001920
Chris Mason5f39d392007-10-15 16:14:19 -04001921 if (btrfs_header_nritems(mid) != 1)
Chris Masonbb803952007-03-01 12:04:21 -05001922 return 0;
1923
1924 /* promote the child to a root */
Chris Mason5f39d392007-10-15 16:14:19 -04001925 child = read_node_slot(root, mid, 0);
Mark Fasheh305a26a2011-09-01 11:27:57 -07001926 if (!child) {
1927 ret = -EROFS;
1928 btrfs_std_error(root->fs_info, ret);
1929 goto enospc;
1930 }
1931
Chris Mason925baed2008-06-25 16:01:30 -04001932 btrfs_tree_lock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001933 btrfs_set_lock_blocking(child);
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001934 ret = btrfs_cow_block(trans, root, child, mid, 0, &child);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001935 if (ret) {
1936 btrfs_tree_unlock(child);
1937 free_extent_buffer(child);
1938 goto enospc;
1939 }
Yan2f375ab2008-02-01 14:58:07 -05001940
Jan Schmidt90f8d622013-04-13 13:19:53 +00001941 tree_mod_log_set_root_pointer(root, child, 1);
Chris Mason240f62c2011-03-23 14:54:42 -04001942 rcu_assign_pointer(root->node, child);
Chris Mason925baed2008-06-25 16:01:30 -04001943
Chris Mason0b86a832008-03-24 15:01:56 -04001944 add_root_to_dirty_list(root);
Chris Mason925baed2008-06-25 16:01:30 -04001945 btrfs_tree_unlock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001946
Chris Mason925baed2008-06-25 16:01:30 -04001947 path->locks[level] = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001948 path->nodes[level] = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001949 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001950 btrfs_tree_unlock(mid);
Chris Masonbb803952007-03-01 12:04:21 -05001951 /* once for the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001952 free_extent_buffer(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001953
1954 root_sub_used(root, mid->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02001955 btrfs_free_tree_block(trans, root, mid, 0, 1);
Chris Masonbb803952007-03-01 12:04:21 -05001956 /* once for the root ptr */
Josef Bacik3083ee22012-03-09 16:01:49 -05001957 free_extent_buffer_stale(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001958 return 0;
Chris Masonbb803952007-03-01 12:04:21 -05001959 }
Chris Mason5f39d392007-10-15 16:14:19 -04001960 if (btrfs_header_nritems(mid) >
Chris Mason123abc82007-03-14 14:14:43 -04001961 BTRFS_NODEPTRS_PER_BLOCK(root) / 4)
Chris Masonbb803952007-03-01 12:04:21 -05001962 return 0;
1963
Chris Mason5f39d392007-10-15 16:14:19 -04001964 left = read_node_slot(root, parent, pslot - 1);
1965 if (left) {
Chris Mason925baed2008-06-25 16:01:30 -04001966 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001967 btrfs_set_lock_blocking(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001968 wret = btrfs_cow_block(trans, root, left,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001969 parent, pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001970 if (wret) {
1971 ret = wret;
1972 goto enospc;
1973 }
Chris Mason2cc58cf2007-08-27 16:49:44 -04001974 }
Chris Mason5f39d392007-10-15 16:14:19 -04001975 right = read_node_slot(root, parent, pslot + 1);
1976 if (right) {
Chris Mason925baed2008-06-25 16:01:30 -04001977 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001978 btrfs_set_lock_blocking(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001979 wret = btrfs_cow_block(trans, root, right,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001980 parent, pslot + 1, &right);
Chris Mason2cc58cf2007-08-27 16:49:44 -04001981 if (wret) {
1982 ret = wret;
1983 goto enospc;
1984 }
1985 }
1986
1987 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001988 if (left) {
1989 orig_slot += btrfs_header_nritems(left);
Chris Masonbce4eae2008-04-24 14:42:46 -04001990 wret = push_node_left(trans, root, left, mid, 1);
Chris Mason79f95c82007-03-01 15:16:26 -05001991 if (wret < 0)
1992 ret = wret;
Chris Masonbb803952007-03-01 12:04:21 -05001993 }
Chris Mason79f95c82007-03-01 15:16:26 -05001994
1995 /*
1996 * then try to empty the right most buffer into the middle
1997 */
Chris Mason5f39d392007-10-15 16:14:19 -04001998 if (right) {
Chris Mason971a1f62008-04-24 10:54:32 -04001999 wret = push_node_left(trans, root, mid, right, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04002000 if (wret < 0 && wret != -ENOSPC)
Chris Mason79f95c82007-03-01 15:16:26 -05002001 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04002002 if (btrfs_header_nritems(right) == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002003 clean_tree_block(trans, root, right);
Chris Mason925baed2008-06-25 16:01:30 -04002004 btrfs_tree_unlock(right);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00002005 del_ptr(root, path, level + 1, pslot + 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002006 root_sub_used(root, right->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02002007 btrfs_free_tree_block(trans, root, right, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05002008 free_extent_buffer_stale(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002009 right = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05002010 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002011 struct btrfs_disk_key right_key;
2012 btrfs_node_key(right, &right_key, 0);
Jan Schmidtf2304752012-05-26 11:43:17 +02002013 tree_mod_log_set_node_key(root->fs_info, parent,
Liu Bo32adf092012-10-19 12:52:15 +00002014 pslot + 1, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002015 btrfs_set_node_key(parent, &right_key, pslot + 1);
2016 btrfs_mark_buffer_dirty(parent);
Chris Masonbb803952007-03-01 12:04:21 -05002017 }
2018 }
Chris Mason5f39d392007-10-15 16:14:19 -04002019 if (btrfs_header_nritems(mid) == 1) {
Chris Mason79f95c82007-03-01 15:16:26 -05002020 /*
2021 * we're not allowed to leave a node with one item in the
2022 * tree during a delete. A deletion from lower in the tree
2023 * could try to delete the only pointer in this node.
2024 * So, pull some keys from the left.
2025 * There has to be a left pointer at this point because
2026 * otherwise we would have pulled some pointers from the
2027 * right
2028 */
Mark Fasheh305a26a2011-09-01 11:27:57 -07002029 if (!left) {
2030 ret = -EROFS;
2031 btrfs_std_error(root->fs_info, ret);
2032 goto enospc;
2033 }
Chris Mason5f39d392007-10-15 16:14:19 -04002034 wret = balance_node_right(trans, root, mid, left);
Chris Mason54aa1f42007-06-22 14:16:25 -04002035 if (wret < 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05002036 ret = wret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002037 goto enospc;
2038 }
Chris Masonbce4eae2008-04-24 14:42:46 -04002039 if (wret == 1) {
2040 wret = push_node_left(trans, root, left, mid, 1);
2041 if (wret < 0)
2042 ret = wret;
2043 }
Chris Mason79f95c82007-03-01 15:16:26 -05002044 BUG_ON(wret == 1);
2045 }
Chris Mason5f39d392007-10-15 16:14:19 -04002046 if (btrfs_header_nritems(mid) == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002047 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04002048 btrfs_tree_unlock(mid);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00002049 del_ptr(root, path, level + 1, pslot);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002050 root_sub_used(root, mid->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02002051 btrfs_free_tree_block(trans, root, mid, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05002052 free_extent_buffer_stale(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002053 mid = NULL;
Chris Mason79f95c82007-03-01 15:16:26 -05002054 } else {
2055 /* update the parent key to reflect our changes */
Chris Mason5f39d392007-10-15 16:14:19 -04002056 struct btrfs_disk_key mid_key;
2057 btrfs_node_key(mid, &mid_key, 0);
Liu Bo32adf092012-10-19 12:52:15 +00002058 tree_mod_log_set_node_key(root->fs_info, parent,
Jan Schmidtf2304752012-05-26 11:43:17 +02002059 pslot, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002060 btrfs_set_node_key(parent, &mid_key, pslot);
2061 btrfs_mark_buffer_dirty(parent);
Chris Mason79f95c82007-03-01 15:16:26 -05002062 }
Chris Masonbb803952007-03-01 12:04:21 -05002063
Chris Mason79f95c82007-03-01 15:16:26 -05002064 /* update the path */
Chris Mason5f39d392007-10-15 16:14:19 -04002065 if (left) {
2066 if (btrfs_header_nritems(left) > orig_slot) {
2067 extent_buffer_get(left);
Chris Mason925baed2008-06-25 16:01:30 -04002068 /* left was locked after cow */
Chris Mason5f39d392007-10-15 16:14:19 -04002069 path->nodes[level] = left;
Chris Masonbb803952007-03-01 12:04:21 -05002070 path->slots[level + 1] -= 1;
2071 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002072 if (mid) {
2073 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002074 free_extent_buffer(mid);
Chris Mason925baed2008-06-25 16:01:30 -04002075 }
Chris Masonbb803952007-03-01 12:04:21 -05002076 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002077 orig_slot -= btrfs_header_nritems(left);
Chris Masonbb803952007-03-01 12:04:21 -05002078 path->slots[level] = orig_slot;
2079 }
2080 }
Chris Mason79f95c82007-03-01 15:16:26 -05002081 /* double check we haven't messed things up */
Chris Masone20d96d2007-03-22 12:13:20 -04002082 if (orig_ptr !=
Chris Mason5f39d392007-10-15 16:14:19 -04002083 btrfs_node_blockptr(path->nodes[level], path->slots[level]))
Chris Mason79f95c82007-03-01 15:16:26 -05002084 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04002085enospc:
Chris Mason925baed2008-06-25 16:01:30 -04002086 if (right) {
2087 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002088 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04002089 }
2090 if (left) {
2091 if (path->nodes[level] != left)
2092 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002093 free_extent_buffer(left);
Chris Mason925baed2008-06-25 16:01:30 -04002094 }
Chris Masonbb803952007-03-01 12:04:21 -05002095 return ret;
2096}
2097
Chris Masond352ac62008-09-29 15:18:18 -04002098/* Node balancing for insertion. Here we only split or push nodes around
2099 * when they are completely full. This is also done top down, so we
2100 * have to be pessimistic.
2101 */
Chris Masond3977122009-01-05 21:25:51 -05002102static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05002103 struct btrfs_root *root,
2104 struct btrfs_path *path, int level)
Chris Masone66f7092007-04-20 13:16:02 -04002105{
Chris Mason5f39d392007-10-15 16:14:19 -04002106 struct extent_buffer *right = NULL;
2107 struct extent_buffer *mid;
2108 struct extent_buffer *left = NULL;
2109 struct extent_buffer *parent = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04002110 int ret = 0;
2111 int wret;
2112 int pslot;
2113 int orig_slot = path->slots[level];
Chris Masone66f7092007-04-20 13:16:02 -04002114
2115 if (level == 0)
2116 return 1;
2117
Chris Mason5f39d392007-10-15 16:14:19 -04002118 mid = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05002119 WARN_ON(btrfs_header_generation(mid) != trans->transid);
Chris Masone66f7092007-04-20 13:16:02 -04002120
Li Zefana05a9bb2011-09-06 16:55:34 +08002121 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04002122 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +08002123 pslot = path->slots[level + 1];
2124 }
Chris Masone66f7092007-04-20 13:16:02 -04002125
Chris Mason5f39d392007-10-15 16:14:19 -04002126 if (!parent)
Chris Masone66f7092007-04-20 13:16:02 -04002127 return 1;
Chris Masone66f7092007-04-20 13:16:02 -04002128
Chris Mason5f39d392007-10-15 16:14:19 -04002129 left = read_node_slot(root, parent, pslot - 1);
Chris Masone66f7092007-04-20 13:16:02 -04002130
2131 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04002132 if (left) {
Chris Masone66f7092007-04-20 13:16:02 -04002133 u32 left_nr;
Chris Mason925baed2008-06-25 16:01:30 -04002134
2135 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002136 btrfs_set_lock_blocking(left);
2137
Chris Mason5f39d392007-10-15 16:14:19 -04002138 left_nr = btrfs_header_nritems(left);
Chris Mason33ade1f2007-04-20 13:48:57 -04002139 if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
2140 wret = 1;
2141 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002142 ret = btrfs_cow_block(trans, root, left, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04002143 pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04002144 if (ret)
2145 wret = 1;
2146 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04002147 wret = push_node_left(trans, root,
Chris Mason971a1f62008-04-24 10:54:32 -04002148 left, mid, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04002149 }
Chris Mason33ade1f2007-04-20 13:48:57 -04002150 }
Chris Masone66f7092007-04-20 13:16:02 -04002151 if (wret < 0)
2152 ret = wret;
2153 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002154 struct btrfs_disk_key disk_key;
Chris Masone66f7092007-04-20 13:16:02 -04002155 orig_slot += left_nr;
Chris Mason5f39d392007-10-15 16:14:19 -04002156 btrfs_node_key(mid, &disk_key, 0);
Jan Schmidtf2304752012-05-26 11:43:17 +02002157 tree_mod_log_set_node_key(root->fs_info, parent,
Liu Bo32adf092012-10-19 12:52:15 +00002158 pslot, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002159 btrfs_set_node_key(parent, &disk_key, pslot);
2160 btrfs_mark_buffer_dirty(parent);
2161 if (btrfs_header_nritems(left) > orig_slot) {
2162 path->nodes[level] = left;
Chris Masone66f7092007-04-20 13:16:02 -04002163 path->slots[level + 1] -= 1;
2164 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002165 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002166 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04002167 } else {
2168 orig_slot -=
Chris Mason5f39d392007-10-15 16:14:19 -04002169 btrfs_header_nritems(left);
Chris Masone66f7092007-04-20 13:16:02 -04002170 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002171 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002172 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04002173 }
Chris Masone66f7092007-04-20 13:16:02 -04002174 return 0;
2175 }
Chris Mason925baed2008-06-25 16:01:30 -04002176 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002177 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04002178 }
Chris Mason925baed2008-06-25 16:01:30 -04002179 right = read_node_slot(root, parent, pslot + 1);
Chris Masone66f7092007-04-20 13:16:02 -04002180
2181 /*
2182 * then try to empty the right most buffer into the middle
2183 */
Chris Mason5f39d392007-10-15 16:14:19 -04002184 if (right) {
Chris Mason33ade1f2007-04-20 13:48:57 -04002185 u32 right_nr;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002186
Chris Mason925baed2008-06-25 16:01:30 -04002187 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002188 btrfs_set_lock_blocking(right);
2189
Chris Mason5f39d392007-10-15 16:14:19 -04002190 right_nr = btrfs_header_nritems(right);
Chris Mason33ade1f2007-04-20 13:48:57 -04002191 if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
2192 wret = 1;
2193 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002194 ret = btrfs_cow_block(trans, root, right,
2195 parent, pslot + 1,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04002196 &right);
Chris Mason54aa1f42007-06-22 14:16:25 -04002197 if (ret)
2198 wret = 1;
2199 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04002200 wret = balance_node_right(trans, root,
Chris Mason5f39d392007-10-15 16:14:19 -04002201 right, mid);
Chris Mason54aa1f42007-06-22 14:16:25 -04002202 }
Chris Mason33ade1f2007-04-20 13:48:57 -04002203 }
Chris Masone66f7092007-04-20 13:16:02 -04002204 if (wret < 0)
2205 ret = wret;
2206 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002207 struct btrfs_disk_key disk_key;
2208
2209 btrfs_node_key(right, &disk_key, 0);
Jan Schmidtf2304752012-05-26 11:43:17 +02002210 tree_mod_log_set_node_key(root->fs_info, parent,
Liu Bo32adf092012-10-19 12:52:15 +00002211 pslot + 1, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002212 btrfs_set_node_key(parent, &disk_key, pslot + 1);
2213 btrfs_mark_buffer_dirty(parent);
2214
2215 if (btrfs_header_nritems(mid) <= orig_slot) {
2216 path->nodes[level] = right;
Chris Masone66f7092007-04-20 13:16:02 -04002217 path->slots[level + 1] += 1;
2218 path->slots[level] = orig_slot -
Chris Mason5f39d392007-10-15 16:14:19 -04002219 btrfs_header_nritems(mid);
Chris Mason925baed2008-06-25 16:01:30 -04002220 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002221 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04002222 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002223 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002224 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04002225 }
Chris Masone66f7092007-04-20 13:16:02 -04002226 return 0;
2227 }
Chris Mason925baed2008-06-25 16:01:30 -04002228 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002229 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04002230 }
Chris Masone66f7092007-04-20 13:16:02 -04002231 return 1;
2232}
2233
Chris Mason74123bd2007-02-02 11:05:29 -05002234/*
Chris Masond352ac62008-09-29 15:18:18 -04002235 * readahead one full node of leaves, finding things that are close
2236 * to the block in 'slot', and triggering ra on them.
Chris Mason3c69fae2007-08-07 15:52:22 -04002237 */
Chris Masonc8c42862009-04-03 10:14:18 -04002238static void reada_for_search(struct btrfs_root *root,
2239 struct btrfs_path *path,
2240 int level, int slot, u64 objectid)
Chris Mason3c69fae2007-08-07 15:52:22 -04002241{
Chris Mason5f39d392007-10-15 16:14:19 -04002242 struct extent_buffer *node;
Chris Mason01f46652007-12-21 16:24:26 -05002243 struct btrfs_disk_key disk_key;
Chris Mason3c69fae2007-08-07 15:52:22 -04002244 u32 nritems;
Chris Mason3c69fae2007-08-07 15:52:22 -04002245 u64 search;
Chris Masona7175312009-01-22 09:23:10 -05002246 u64 target;
Chris Mason6b800532007-10-15 16:17:34 -04002247 u64 nread = 0;
Josef Bacikcb25c2e2011-05-11 12:17:34 -04002248 u64 gen;
Chris Mason3c69fae2007-08-07 15:52:22 -04002249 int direction = path->reada;
Chris Mason5f39d392007-10-15 16:14:19 -04002250 struct extent_buffer *eb;
Chris Mason6b800532007-10-15 16:17:34 -04002251 u32 nr;
2252 u32 blocksize;
2253 u32 nscan = 0;
Chris Masondb945352007-10-15 16:15:53 -04002254
Chris Masona6b6e752007-10-15 16:22:39 -04002255 if (level != 1)
Chris Mason3c69fae2007-08-07 15:52:22 -04002256 return;
2257
Chris Mason6702ed42007-08-07 16:15:09 -04002258 if (!path->nodes[level])
2259 return;
2260
Chris Mason5f39d392007-10-15 16:14:19 -04002261 node = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04002262
Chris Mason3c69fae2007-08-07 15:52:22 -04002263 search = btrfs_node_blockptr(node, slot);
David Sterba707e8a02014-06-04 19:22:26 +02002264 blocksize = root->nodesize;
David Sterba0308af42014-06-15 01:43:40 +02002265 eb = btrfs_find_tree_block(root, search);
Chris Mason5f39d392007-10-15 16:14:19 -04002266 if (eb) {
2267 free_extent_buffer(eb);
Chris Mason3c69fae2007-08-07 15:52:22 -04002268 return;
2269 }
2270
Chris Masona7175312009-01-22 09:23:10 -05002271 target = search;
Chris Mason6b800532007-10-15 16:17:34 -04002272
Chris Mason5f39d392007-10-15 16:14:19 -04002273 nritems = btrfs_header_nritems(node);
Chris Mason6b800532007-10-15 16:17:34 -04002274 nr = slot;
Josef Bacik25b8b932011-06-08 14:36:54 -04002275
Chris Masond3977122009-01-05 21:25:51 -05002276 while (1) {
Chris Mason6b800532007-10-15 16:17:34 -04002277 if (direction < 0) {
2278 if (nr == 0)
2279 break;
2280 nr--;
2281 } else if (direction > 0) {
2282 nr++;
2283 if (nr >= nritems)
2284 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04002285 }
Chris Mason01f46652007-12-21 16:24:26 -05002286 if (path->reada < 0 && objectid) {
2287 btrfs_node_key(node, &disk_key, nr);
2288 if (btrfs_disk_key_objectid(&disk_key) != objectid)
2289 break;
2290 }
Chris Mason6b800532007-10-15 16:17:34 -04002291 search = btrfs_node_blockptr(node, nr);
Chris Masona7175312009-01-22 09:23:10 -05002292 if ((search <= target && target - search <= 65536) ||
2293 (search > target && search - target <= 65536)) {
Josef Bacikcb25c2e2011-05-11 12:17:34 -04002294 gen = btrfs_node_ptr_generation(node, nr);
David Sterba58dc4ce2014-06-15 00:29:04 +02002295 readahead_tree_block(root, search, blocksize);
Chris Mason6b800532007-10-15 16:17:34 -04002296 nread += blocksize;
2297 }
2298 nscan++;
Chris Masona7175312009-01-22 09:23:10 -05002299 if ((nread > 65536 || nscan > 32))
Chris Mason6b800532007-10-15 16:17:34 -04002300 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04002301 }
2302}
Chris Mason925baed2008-06-25 16:01:30 -04002303
Josef Bacik0b088512013-06-17 14:23:02 -04002304static noinline void reada_for_balance(struct btrfs_root *root,
2305 struct btrfs_path *path, int level)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002306{
2307 int slot;
2308 int nritems;
2309 struct extent_buffer *parent;
2310 struct extent_buffer *eb;
2311 u64 gen;
2312 u64 block1 = 0;
2313 u64 block2 = 0;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002314 int blocksize;
2315
Chris Mason8c594ea2009-04-20 15:50:10 -04002316 parent = path->nodes[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002317 if (!parent)
Josef Bacik0b088512013-06-17 14:23:02 -04002318 return;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002319
2320 nritems = btrfs_header_nritems(parent);
Chris Mason8c594ea2009-04-20 15:50:10 -04002321 slot = path->slots[level + 1];
David Sterba707e8a02014-06-04 19:22:26 +02002322 blocksize = root->nodesize;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002323
2324 if (slot > 0) {
2325 block1 = btrfs_node_blockptr(parent, slot - 1);
2326 gen = btrfs_node_ptr_generation(parent, slot - 1);
David Sterba0308af42014-06-15 01:43:40 +02002327 eb = btrfs_find_tree_block(root, block1);
Chris Masonb9fab912012-05-06 07:23:47 -04002328 /*
2329 * if we get -eagain from btrfs_buffer_uptodate, we
2330 * don't want to return eagain here. That will loop
2331 * forever
2332 */
2333 if (eb && btrfs_buffer_uptodate(eb, gen, 1) != 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002334 block1 = 0;
2335 free_extent_buffer(eb);
2336 }
Chris Mason8c594ea2009-04-20 15:50:10 -04002337 if (slot + 1 < nritems) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05002338 block2 = btrfs_node_blockptr(parent, slot + 1);
2339 gen = btrfs_node_ptr_generation(parent, slot + 1);
David Sterba0308af42014-06-15 01:43:40 +02002340 eb = btrfs_find_tree_block(root, block2);
Chris Masonb9fab912012-05-06 07:23:47 -04002341 if (eb && btrfs_buffer_uptodate(eb, gen, 1) != 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002342 block2 = 0;
2343 free_extent_buffer(eb);
2344 }
Chris Mason8c594ea2009-04-20 15:50:10 -04002345
Josef Bacik0b088512013-06-17 14:23:02 -04002346 if (block1)
David Sterba58dc4ce2014-06-15 00:29:04 +02002347 readahead_tree_block(root, block1, blocksize);
Josef Bacik0b088512013-06-17 14:23:02 -04002348 if (block2)
David Sterba58dc4ce2014-06-15 00:29:04 +02002349 readahead_tree_block(root, block2, blocksize);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002350}
2351
2352
2353/*
Chris Masond3977122009-01-05 21:25:51 -05002354 * when we walk down the tree, it is usually safe to unlock the higher layers
2355 * in the tree. The exceptions are when our path goes through slot 0, because
2356 * operations on the tree might require changing key pointers higher up in the
2357 * tree.
Chris Masond352ac62008-09-29 15:18:18 -04002358 *
Chris Masond3977122009-01-05 21:25:51 -05002359 * callers might also have set path->keep_locks, which tells this code to keep
2360 * the lock if the path points to the last slot in the block. This is part of
2361 * walking through the tree, and selecting the next slot in the higher block.
Chris Masond352ac62008-09-29 15:18:18 -04002362 *
Chris Masond3977122009-01-05 21:25:51 -05002363 * lowest_unlock sets the lowest level in the tree we're allowed to unlock. so
2364 * if lowest_unlock is 1, level 0 won't be unlocked
Chris Masond352ac62008-09-29 15:18:18 -04002365 */
Chris Masone02119d2008-09-05 16:13:11 -04002366static noinline void unlock_up(struct btrfs_path *path, int level,
Chris Masonf7c79f32012-03-19 15:54:38 -04002367 int lowest_unlock, int min_write_lock_level,
2368 int *write_lock_level)
Chris Mason925baed2008-06-25 16:01:30 -04002369{
2370 int i;
2371 int skip_level = level;
Chris Mason051e1b92008-06-25 16:01:30 -04002372 int no_skips = 0;
Chris Mason925baed2008-06-25 16:01:30 -04002373 struct extent_buffer *t;
2374
2375 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2376 if (!path->nodes[i])
2377 break;
2378 if (!path->locks[i])
2379 break;
Chris Mason051e1b92008-06-25 16:01:30 -04002380 if (!no_skips && path->slots[i] == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002381 skip_level = i + 1;
2382 continue;
2383 }
Chris Mason051e1b92008-06-25 16:01:30 -04002384 if (!no_skips && path->keep_locks) {
Chris Mason925baed2008-06-25 16:01:30 -04002385 u32 nritems;
2386 t = path->nodes[i];
2387 nritems = btrfs_header_nritems(t);
Chris Mason051e1b92008-06-25 16:01:30 -04002388 if (nritems < 1 || path->slots[i] >= nritems - 1) {
Chris Mason925baed2008-06-25 16:01:30 -04002389 skip_level = i + 1;
2390 continue;
2391 }
2392 }
Chris Mason051e1b92008-06-25 16:01:30 -04002393 if (skip_level < i && i >= lowest_unlock)
2394 no_skips = 1;
2395
Chris Mason925baed2008-06-25 16:01:30 -04002396 t = path->nodes[i];
2397 if (i >= lowest_unlock && i > skip_level && path->locks[i]) {
Chris Masonbd681512011-07-16 15:23:14 -04002398 btrfs_tree_unlock_rw(t, path->locks[i]);
Chris Mason925baed2008-06-25 16:01:30 -04002399 path->locks[i] = 0;
Chris Masonf7c79f32012-03-19 15:54:38 -04002400 if (write_lock_level &&
2401 i > min_write_lock_level &&
2402 i <= *write_lock_level) {
2403 *write_lock_level = i - 1;
2404 }
Chris Mason925baed2008-06-25 16:01:30 -04002405 }
2406 }
2407}
2408
Chris Mason3c69fae2007-08-07 15:52:22 -04002409/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05002410 * This releases any locks held in the path starting at level and
2411 * going all the way up to the root.
2412 *
2413 * btrfs_search_slot will keep the lock held on higher nodes in a few
2414 * corner cases, such as COW of the block at slot zero in the node. This
2415 * ignores those rules, and it should only be called when there are no
2416 * more updates to be done higher up in the tree.
2417 */
2418noinline void btrfs_unlock_up_safe(struct btrfs_path *path, int level)
2419{
2420 int i;
2421
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002422 if (path->keep_locks)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002423 return;
2424
2425 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2426 if (!path->nodes[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05002427 continue;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002428 if (!path->locks[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05002429 continue;
Chris Masonbd681512011-07-16 15:23:14 -04002430 btrfs_tree_unlock_rw(path->nodes[i], path->locks[i]);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002431 path->locks[i] = 0;
2432 }
2433}
2434
2435/*
Chris Masonc8c42862009-04-03 10:14:18 -04002436 * helper function for btrfs_search_slot. The goal is to find a block
2437 * in cache without setting the path to blocking. If we find the block
2438 * we return zero and the path is unchanged.
2439 *
2440 * If we can't find the block, we set the path blocking and do some
2441 * reada. -EAGAIN is returned and the search must be repeated.
2442 */
2443static int
2444read_block_for_search(struct btrfs_trans_handle *trans,
2445 struct btrfs_root *root, struct btrfs_path *p,
2446 struct extent_buffer **eb_ret, int level, int slot,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002447 struct btrfs_key *key, u64 time_seq)
Chris Masonc8c42862009-04-03 10:14:18 -04002448{
2449 u64 blocknr;
2450 u64 gen;
Chris Masonc8c42862009-04-03 10:14:18 -04002451 struct extent_buffer *b = *eb_ret;
2452 struct extent_buffer *tmp;
Chris Mason76a05b32009-05-14 13:24:30 -04002453 int ret;
Chris Masonc8c42862009-04-03 10:14:18 -04002454
2455 blocknr = btrfs_node_blockptr(b, slot);
2456 gen = btrfs_node_ptr_generation(b, slot);
Chris Masonc8c42862009-04-03 10:14:18 -04002457
David Sterba0308af42014-06-15 01:43:40 +02002458 tmp = btrfs_find_tree_block(root, blocknr);
Chris Masoncb449212010-10-24 11:01:27 -04002459 if (tmp) {
Chris Masonb9fab912012-05-06 07:23:47 -04002460 /* first we do an atomic uptodate check */
Josef Bacikbdf7c002013-06-17 13:44:48 -04002461 if (btrfs_buffer_uptodate(tmp, gen, 1) > 0) {
2462 *eb_ret = tmp;
2463 return 0;
Chris Masoncb449212010-10-24 11:01:27 -04002464 }
Josef Bacikbdf7c002013-06-17 13:44:48 -04002465
2466 /* the pages were up to date, but we failed
2467 * the generation number check. Do a full
2468 * read for the generation number that is correct.
2469 * We must do this without dropping locks so
2470 * we can trust our generation number
2471 */
2472 btrfs_set_path_blocking(p);
2473
2474 /* now we're allowed to do a blocking uptodate check */
2475 ret = btrfs_read_buffer(tmp, gen);
2476 if (!ret) {
2477 *eb_ret = tmp;
2478 return 0;
2479 }
2480 free_extent_buffer(tmp);
2481 btrfs_release_path(p);
2482 return -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04002483 }
2484
2485 /*
2486 * reduce lock contention at high levels
2487 * of the btree by dropping locks before
Chris Mason76a05b32009-05-14 13:24:30 -04002488 * we read. Don't release the lock on the current
2489 * level because we need to walk this node to figure
2490 * out which blocks to read.
Chris Masonc8c42862009-04-03 10:14:18 -04002491 */
Chris Mason8c594ea2009-04-20 15:50:10 -04002492 btrfs_unlock_up_safe(p, level + 1);
2493 btrfs_set_path_blocking(p);
2494
Chris Masoncb449212010-10-24 11:01:27 -04002495 free_extent_buffer(tmp);
Chris Masonc8c42862009-04-03 10:14:18 -04002496 if (p->reada)
2497 reada_for_search(root, p, level, slot, key->objectid);
2498
David Sterbab3b4aa72011-04-21 01:20:15 +02002499 btrfs_release_path(p);
Chris Mason76a05b32009-05-14 13:24:30 -04002500
2501 ret = -EAGAIN;
David Sterbace86cd52014-06-15 01:07:32 +02002502 tmp = read_tree_block(root, blocknr, 0);
Chris Mason76a05b32009-05-14 13:24:30 -04002503 if (tmp) {
2504 /*
2505 * If the read above didn't mark this buffer up to date,
2506 * it will never end up being up to date. Set ret to EIO now
2507 * and give up so that our caller doesn't loop forever
2508 * on our EAGAINs.
2509 */
Chris Masonb9fab912012-05-06 07:23:47 -04002510 if (!btrfs_buffer_uptodate(tmp, 0, 0))
Chris Mason76a05b32009-05-14 13:24:30 -04002511 ret = -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04002512 free_extent_buffer(tmp);
Chris Mason76a05b32009-05-14 13:24:30 -04002513 }
2514 return ret;
Chris Masonc8c42862009-04-03 10:14:18 -04002515}
2516
2517/*
2518 * helper function for btrfs_search_slot. This does all of the checks
2519 * for node-level blocks and does any balancing required based on
2520 * the ins_len.
2521 *
2522 * If no extra work was required, zero is returned. If we had to
2523 * drop the path, -EAGAIN is returned and btrfs_search_slot must
2524 * start over
2525 */
2526static int
2527setup_nodes_for_search(struct btrfs_trans_handle *trans,
2528 struct btrfs_root *root, struct btrfs_path *p,
Chris Masonbd681512011-07-16 15:23:14 -04002529 struct extent_buffer *b, int level, int ins_len,
2530 int *write_lock_level)
Chris Masonc8c42862009-04-03 10:14:18 -04002531{
2532 int ret;
2533 if ((p->search_for_split || ins_len > 0) && btrfs_header_nritems(b) >=
2534 BTRFS_NODEPTRS_PER_BLOCK(root) - 3) {
2535 int sret;
2536
Chris Masonbd681512011-07-16 15:23:14 -04002537 if (*write_lock_level < level + 1) {
2538 *write_lock_level = level + 1;
2539 btrfs_release_path(p);
2540 goto again;
2541 }
2542
Chris Masonc8c42862009-04-03 10:14:18 -04002543 btrfs_set_path_blocking(p);
Josef Bacik0b088512013-06-17 14:23:02 -04002544 reada_for_balance(root, p, level);
Chris Masonc8c42862009-04-03 10:14:18 -04002545 sret = split_node(trans, root, p, level);
Chris Masonbd681512011-07-16 15:23:14 -04002546 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonc8c42862009-04-03 10:14:18 -04002547
2548 BUG_ON(sret > 0);
2549 if (sret) {
2550 ret = sret;
2551 goto done;
2552 }
2553 b = p->nodes[level];
2554 } else if (ins_len < 0 && btrfs_header_nritems(b) <
Chris Masoncfbb9302009-05-18 10:41:58 -04002555 BTRFS_NODEPTRS_PER_BLOCK(root) / 2) {
Chris Masonc8c42862009-04-03 10:14:18 -04002556 int sret;
2557
Chris Masonbd681512011-07-16 15:23:14 -04002558 if (*write_lock_level < level + 1) {
2559 *write_lock_level = level + 1;
2560 btrfs_release_path(p);
2561 goto again;
2562 }
2563
Chris Masonc8c42862009-04-03 10:14:18 -04002564 btrfs_set_path_blocking(p);
Josef Bacik0b088512013-06-17 14:23:02 -04002565 reada_for_balance(root, p, level);
Chris Masonc8c42862009-04-03 10:14:18 -04002566 sret = balance_level(trans, root, p, level);
Chris Masonbd681512011-07-16 15:23:14 -04002567 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonc8c42862009-04-03 10:14:18 -04002568
2569 if (sret) {
2570 ret = sret;
2571 goto done;
2572 }
2573 b = p->nodes[level];
2574 if (!b) {
David Sterbab3b4aa72011-04-21 01:20:15 +02002575 btrfs_release_path(p);
Chris Masonc8c42862009-04-03 10:14:18 -04002576 goto again;
2577 }
2578 BUG_ON(btrfs_header_nritems(b) == 1);
2579 }
2580 return 0;
2581
2582again:
2583 ret = -EAGAIN;
2584done:
2585 return ret;
2586}
2587
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002588static void key_search_validate(struct extent_buffer *b,
2589 struct btrfs_key *key,
2590 int level)
2591{
2592#ifdef CONFIG_BTRFS_ASSERT
2593 struct btrfs_disk_key disk_key;
2594
2595 btrfs_cpu_key_to_disk(&disk_key, key);
2596
2597 if (level == 0)
2598 ASSERT(!memcmp_extent_buffer(b, &disk_key,
2599 offsetof(struct btrfs_leaf, items[0].key),
2600 sizeof(disk_key)));
2601 else
2602 ASSERT(!memcmp_extent_buffer(b, &disk_key,
2603 offsetof(struct btrfs_node, ptrs[0].key),
2604 sizeof(disk_key)));
2605#endif
2606}
2607
2608static int key_search(struct extent_buffer *b, struct btrfs_key *key,
2609 int level, int *prev_cmp, int *slot)
2610{
2611 if (*prev_cmp != 0) {
2612 *prev_cmp = bin_search(b, key, level, slot);
2613 return *prev_cmp;
2614 }
2615
2616 key_search_validate(b, key, level);
2617 *slot = 0;
2618
2619 return 0;
2620}
2621
Kelley Nielsen3f870c22013-11-04 19:37:39 -08002622int btrfs_find_item(struct btrfs_root *fs_root, struct btrfs_path *found_path,
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002623 u64 iobjectid, u64 ioff, u8 key_type,
2624 struct btrfs_key *found_key)
2625{
2626 int ret;
2627 struct btrfs_key key;
2628 struct extent_buffer *eb;
Kelley Nielsen3f870c22013-11-04 19:37:39 -08002629 struct btrfs_path *path;
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002630
2631 key.type = key_type;
2632 key.objectid = iobjectid;
2633 key.offset = ioff;
2634
Kelley Nielsen3f870c22013-11-04 19:37:39 -08002635 if (found_path == NULL) {
2636 path = btrfs_alloc_path();
2637 if (!path)
2638 return -ENOMEM;
2639 } else
2640 path = found_path;
2641
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002642 ret = btrfs_search_slot(NULL, fs_root, &key, path, 0, 0);
Kelley Nielsen3f870c22013-11-04 19:37:39 -08002643 if ((ret < 0) || (found_key == NULL)) {
2644 if (path != found_path)
2645 btrfs_free_path(path);
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002646 return ret;
Kelley Nielsen3f870c22013-11-04 19:37:39 -08002647 }
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002648
2649 eb = path->nodes[0];
2650 if (ret && path->slots[0] >= btrfs_header_nritems(eb)) {
2651 ret = btrfs_next_leaf(fs_root, path);
2652 if (ret)
2653 return ret;
2654 eb = path->nodes[0];
2655 }
2656
2657 btrfs_item_key_to_cpu(eb, found_key, path->slots[0]);
2658 if (found_key->type != key.type ||
2659 found_key->objectid != key.objectid)
2660 return 1;
2661
2662 return 0;
2663}
2664
Chris Masonc8c42862009-04-03 10:14:18 -04002665/*
Chris Mason74123bd2007-02-02 11:05:29 -05002666 * look for key in the tree. path is filled in with nodes along the way
2667 * if key is found, we return zero and you can find the item in the leaf
2668 * level of the path (level 0)
2669 *
2670 * If the key isn't found, the path points to the slot where it should
Chris Masonaa5d6be2007-02-28 16:35:06 -05002671 * be inserted, and 1 is returned. If there are other errors during the
2672 * search a negative error number is returned.
Chris Mason97571fd2007-02-24 13:39:08 -05002673 *
2674 * if ins_len > 0, nodes and leaves will be split as we walk down the
2675 * tree. if ins_len < 0, nodes will be merged as we walk down the tree (if
2676 * possible)
Chris Mason74123bd2007-02-02 11:05:29 -05002677 */
Chris Masone089f052007-03-16 16:20:31 -04002678int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
2679 *root, struct btrfs_key *key, struct btrfs_path *p, int
2680 ins_len, int cow)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002681{
Chris Mason5f39d392007-10-15 16:14:19 -04002682 struct extent_buffer *b;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002683 int slot;
2684 int ret;
Yan Zheng33c66f42009-07-22 09:59:00 -04002685 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002686 int level;
Chris Mason925baed2008-06-25 16:01:30 -04002687 int lowest_unlock = 1;
Chris Masonbd681512011-07-16 15:23:14 -04002688 int root_lock;
2689 /* everything at write_lock_level or lower must be write locked */
2690 int write_lock_level = 0;
Chris Mason9f3a7422007-08-07 15:52:19 -04002691 u8 lowest_level = 0;
Chris Masonf7c79f32012-03-19 15:54:38 -04002692 int min_write_lock_level;
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002693 int prev_cmp;
Chris Mason9f3a7422007-08-07 15:52:19 -04002694
Chris Mason6702ed42007-08-07 16:15:09 -04002695 lowest_level = p->lowest_level;
Chris Mason323ac952008-10-01 19:05:46 -04002696 WARN_ON(lowest_level && ins_len > 0);
Chris Mason22b0ebd2007-03-30 08:47:31 -04002697 WARN_ON(p->nodes[0] != NULL);
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002698 BUG_ON(!cow && ins_len);
Josef Bacik25179202008-10-29 14:49:05 -04002699
Chris Masonbd681512011-07-16 15:23:14 -04002700 if (ins_len < 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002701 lowest_unlock = 2;
Chris Mason65b51a02008-08-01 15:11:20 -04002702
Chris Masonbd681512011-07-16 15:23:14 -04002703 /* when we are removing items, we might have to go up to level
2704 * two as we update tree pointers Make sure we keep write
2705 * for those levels as well
2706 */
2707 write_lock_level = 2;
2708 } else if (ins_len > 0) {
2709 /*
2710 * for inserting items, make sure we have a write lock on
2711 * level 1 so we can update keys
2712 */
2713 write_lock_level = 1;
2714 }
2715
2716 if (!cow)
2717 write_lock_level = -1;
2718
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002719 if (cow && (p->keep_locks || p->lowest_level))
Chris Masonbd681512011-07-16 15:23:14 -04002720 write_lock_level = BTRFS_MAX_LEVEL;
2721
Chris Masonf7c79f32012-03-19 15:54:38 -04002722 min_write_lock_level = write_lock_level;
2723
Chris Masonbb803952007-03-01 12:04:21 -05002724again:
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002725 prev_cmp = -1;
Chris Masonbd681512011-07-16 15:23:14 -04002726 /*
2727 * we try very hard to do read locks on the root
2728 */
2729 root_lock = BTRFS_READ_LOCK;
2730 level = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002731 if (p->search_commit_root) {
Chris Masonbd681512011-07-16 15:23:14 -04002732 /*
2733 * the commit roots are read only
2734 * so we always do read locks
2735 */
Josef Bacik3f8a18c2014-03-28 17:16:01 -04002736 if (p->need_commit_sem)
2737 down_read(&root->fs_info->commit_root_sem);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002738 b = root->commit_root;
2739 extent_buffer_get(b);
Chris Masonbd681512011-07-16 15:23:14 -04002740 level = btrfs_header_level(b);
Josef Bacik3f8a18c2014-03-28 17:16:01 -04002741 if (p->need_commit_sem)
2742 up_read(&root->fs_info->commit_root_sem);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002743 if (!p->skip_locking)
Chris Masonbd681512011-07-16 15:23:14 -04002744 btrfs_tree_read_lock(b);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002745 } else {
Chris Masonbd681512011-07-16 15:23:14 -04002746 if (p->skip_locking) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002747 b = btrfs_root_node(root);
Chris Masonbd681512011-07-16 15:23:14 -04002748 level = btrfs_header_level(b);
2749 } else {
2750 /* we don't know the level of the root node
2751 * until we actually have it read locked
2752 */
2753 b = btrfs_read_lock_root_node(root);
2754 level = btrfs_header_level(b);
2755 if (level <= write_lock_level) {
2756 /* whoops, must trade for write lock */
2757 btrfs_tree_read_unlock(b);
2758 free_extent_buffer(b);
2759 b = btrfs_lock_root_node(root);
2760 root_lock = BTRFS_WRITE_LOCK;
2761
2762 /* the level might have changed, check again */
2763 level = btrfs_header_level(b);
2764 }
2765 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002766 }
Chris Masonbd681512011-07-16 15:23:14 -04002767 p->nodes[level] = b;
2768 if (!p->skip_locking)
2769 p->locks[level] = root_lock;
Chris Mason925baed2008-06-25 16:01:30 -04002770
Chris Masoneb60cea2007-02-02 09:18:22 -05002771 while (b) {
Chris Mason5f39d392007-10-15 16:14:19 -04002772 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04002773
2774 /*
2775 * setup the path here so we can release it under lock
2776 * contention with the cow code
2777 */
Chris Mason02217ed2007-03-02 16:08:05 -05002778 if (cow) {
Chris Masonc8c42862009-04-03 10:14:18 -04002779 /*
2780 * if we don't really need to cow this block
2781 * then we don't want to set the path blocking,
2782 * so we test it here
2783 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002784 if (!should_cow_block(trans, root, b))
Chris Mason65b51a02008-08-01 15:11:20 -04002785 goto cow_done;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002786
Chris Masonbd681512011-07-16 15:23:14 -04002787 /*
2788 * must have write locks on this node and the
2789 * parent
2790 */
Josef Bacik5124e002012-11-07 13:44:13 -05002791 if (level > write_lock_level ||
2792 (level + 1 > write_lock_level &&
2793 level + 1 < BTRFS_MAX_LEVEL &&
2794 p->nodes[level + 1])) {
Chris Masonbd681512011-07-16 15:23:14 -04002795 write_lock_level = level + 1;
2796 btrfs_release_path(p);
2797 goto again;
2798 }
2799
Filipe Manana160f4082014-07-28 19:37:17 +01002800 btrfs_set_path_blocking(p);
Yan Zheng33c66f42009-07-22 09:59:00 -04002801 err = btrfs_cow_block(trans, root, b,
2802 p->nodes[level + 1],
2803 p->slots[level + 1], &b);
2804 if (err) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002805 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04002806 goto done;
Chris Mason54aa1f42007-06-22 14:16:25 -04002807 }
Chris Mason02217ed2007-03-02 16:08:05 -05002808 }
Chris Mason65b51a02008-08-01 15:11:20 -04002809cow_done:
Chris Masoneb60cea2007-02-02 09:18:22 -05002810 p->nodes[level] = b;
Chris Masonbd681512011-07-16 15:23:14 -04002811 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002812
2813 /*
2814 * we have a lock on b and as long as we aren't changing
2815 * the tree, there is no way to for the items in b to change.
2816 * It is safe to drop the lock on our parent before we
2817 * go through the expensive btree search on b.
2818 *
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002819 * If we're inserting or deleting (ins_len != 0), then we might
2820 * be changing slot zero, which may require changing the parent.
2821 * So, we can't drop the lock until after we know which slot
2822 * we're operating on.
Chris Masonb4ce94d2009-02-04 09:25:08 -05002823 */
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002824 if (!ins_len && !p->keep_locks) {
2825 int u = level + 1;
2826
2827 if (u < BTRFS_MAX_LEVEL && p->locks[u]) {
2828 btrfs_tree_unlock_rw(p->nodes[u], p->locks[u]);
2829 p->locks[u] = 0;
2830 }
2831 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05002832
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002833 ret = key_search(b, key, level, &prev_cmp, &slot);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002834
Chris Mason5f39d392007-10-15 16:14:19 -04002835 if (level != 0) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002836 int dec = 0;
2837 if (ret && slot > 0) {
2838 dec = 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002839 slot -= 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04002840 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002841 p->slots[level] = slot;
Yan Zheng33c66f42009-07-22 09:59:00 -04002842 err = setup_nodes_for_search(trans, root, p, b, level,
Chris Masonbd681512011-07-16 15:23:14 -04002843 ins_len, &write_lock_level);
Yan Zheng33c66f42009-07-22 09:59:00 -04002844 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04002845 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04002846 if (err) {
2847 ret = err;
Chris Masonc8c42862009-04-03 10:14:18 -04002848 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04002849 }
Chris Masonc8c42862009-04-03 10:14:18 -04002850 b = p->nodes[level];
2851 slot = p->slots[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002852
Chris Masonbd681512011-07-16 15:23:14 -04002853 /*
2854 * slot 0 is special, if we change the key
2855 * we have to update the parent pointer
2856 * which means we must have a write lock
2857 * on the parent
2858 */
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002859 if (slot == 0 && ins_len &&
Chris Masonbd681512011-07-16 15:23:14 -04002860 write_lock_level < level + 1) {
2861 write_lock_level = level + 1;
2862 btrfs_release_path(p);
2863 goto again;
2864 }
2865
Chris Masonf7c79f32012-03-19 15:54:38 -04002866 unlock_up(p, level, lowest_unlock,
2867 min_write_lock_level, &write_lock_level);
Chris Masonf9efa9c2008-06-25 16:14:04 -04002868
Chris Mason925baed2008-06-25 16:01:30 -04002869 if (level == lowest_level) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002870 if (dec)
2871 p->slots[level]++;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002872 goto done;
Chris Mason925baed2008-06-25 16:01:30 -04002873 }
Chris Masonca7a79a2008-05-12 12:59:19 -04002874
Yan Zheng33c66f42009-07-22 09:59:00 -04002875 err = read_block_for_search(trans, root, p,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002876 &b, level, slot, key, 0);
Yan Zheng33c66f42009-07-22 09:59:00 -04002877 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04002878 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04002879 if (err) {
2880 ret = err;
Chris Mason76a05b32009-05-14 13:24:30 -04002881 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04002882 }
Chris Mason76a05b32009-05-14 13:24:30 -04002883
Chris Masonb4ce94d2009-02-04 09:25:08 -05002884 if (!p->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04002885 level = btrfs_header_level(b);
2886 if (level <= write_lock_level) {
2887 err = btrfs_try_tree_write_lock(b);
2888 if (!err) {
2889 btrfs_set_path_blocking(p);
2890 btrfs_tree_lock(b);
2891 btrfs_clear_path_blocking(p, b,
2892 BTRFS_WRITE_LOCK);
2893 }
2894 p->locks[level] = BTRFS_WRITE_LOCK;
2895 } else {
2896 err = btrfs_try_tree_read_lock(b);
2897 if (!err) {
2898 btrfs_set_path_blocking(p);
2899 btrfs_tree_read_lock(b);
2900 btrfs_clear_path_blocking(p, b,
2901 BTRFS_READ_LOCK);
2902 }
2903 p->locks[level] = BTRFS_READ_LOCK;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002904 }
Chris Masonbd681512011-07-16 15:23:14 -04002905 p->nodes[level] = b;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002906 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002907 } else {
2908 p->slots[level] = slot;
Yan Zheng87b29b22008-12-17 10:21:48 -05002909 if (ins_len > 0 &&
2910 btrfs_leaf_free_space(root, b) < ins_len) {
Chris Masonbd681512011-07-16 15:23:14 -04002911 if (write_lock_level < 1) {
2912 write_lock_level = 1;
2913 btrfs_release_path(p);
2914 goto again;
2915 }
2916
Chris Masonb4ce94d2009-02-04 09:25:08 -05002917 btrfs_set_path_blocking(p);
Yan Zheng33c66f42009-07-22 09:59:00 -04002918 err = split_leaf(trans, root, key,
2919 p, ins_len, ret == 0);
Chris Masonbd681512011-07-16 15:23:14 -04002920 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002921
Yan Zheng33c66f42009-07-22 09:59:00 -04002922 BUG_ON(err > 0);
2923 if (err) {
2924 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04002925 goto done;
2926 }
Chris Mason5c680ed2007-02-22 11:39:13 -05002927 }
Chris Mason459931e2008-12-10 09:10:46 -05002928 if (!p->search_for_split)
Chris Masonf7c79f32012-03-19 15:54:38 -04002929 unlock_up(p, level, lowest_unlock,
2930 min_write_lock_level, &write_lock_level);
Chris Mason65b51a02008-08-01 15:11:20 -04002931 goto done;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002932 }
2933 }
Chris Mason65b51a02008-08-01 15:11:20 -04002934 ret = 1;
2935done:
Chris Masonb4ce94d2009-02-04 09:25:08 -05002936 /*
2937 * we don't really know what they plan on doing with the path
2938 * from here on, so for now just mark it as blocking
2939 */
Chris Masonb9473432009-03-13 11:00:37 -04002940 if (!p->leave_spinning)
2941 btrfs_set_path_blocking(p);
Filipe Manana5f5bc6b2014-11-09 08:38:39 +00002942 if (ret < 0 && !p->skip_release_on_error)
David Sterbab3b4aa72011-04-21 01:20:15 +02002943 btrfs_release_path(p);
Chris Mason65b51a02008-08-01 15:11:20 -04002944 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002945}
2946
Chris Mason74123bd2007-02-02 11:05:29 -05002947/*
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002948 * Like btrfs_search_slot, this looks for a key in the given tree. It uses the
2949 * current state of the tree together with the operations recorded in the tree
2950 * modification log to search for the key in a previous version of this tree, as
2951 * denoted by the time_seq parameter.
2952 *
2953 * Naturally, there is no support for insert, delete or cow operations.
2954 *
2955 * The resulting path and return value will be set up as if we called
2956 * btrfs_search_slot at that point in time with ins_len and cow both set to 0.
2957 */
2958int btrfs_search_old_slot(struct btrfs_root *root, struct btrfs_key *key,
2959 struct btrfs_path *p, u64 time_seq)
2960{
2961 struct extent_buffer *b;
2962 int slot;
2963 int ret;
2964 int err;
2965 int level;
2966 int lowest_unlock = 1;
2967 u8 lowest_level = 0;
Josef Bacikd4b40872013-09-24 14:09:34 -04002968 int prev_cmp = -1;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002969
2970 lowest_level = p->lowest_level;
2971 WARN_ON(p->nodes[0] != NULL);
2972
2973 if (p->search_commit_root) {
2974 BUG_ON(time_seq);
2975 return btrfs_search_slot(NULL, root, key, p, 0, 0);
2976 }
2977
2978again:
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002979 b = get_old_root(root, time_seq);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002980 level = btrfs_header_level(b);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002981 p->locks[level] = BTRFS_READ_LOCK;
2982
2983 while (b) {
2984 level = btrfs_header_level(b);
2985 p->nodes[level] = b;
2986 btrfs_clear_path_blocking(p, NULL, 0);
2987
2988 /*
2989 * we have a lock on b and as long as we aren't changing
2990 * the tree, there is no way to for the items in b to change.
2991 * It is safe to drop the lock on our parent before we
2992 * go through the expensive btree search on b.
2993 */
2994 btrfs_unlock_up_safe(p, level + 1);
2995
Josef Bacikd4b40872013-09-24 14:09:34 -04002996 /*
2997 * Since we can unwind eb's we want to do a real search every
2998 * time.
2999 */
3000 prev_cmp = -1;
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01003001 ret = key_search(b, key, level, &prev_cmp, &slot);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02003002
3003 if (level != 0) {
3004 int dec = 0;
3005 if (ret && slot > 0) {
3006 dec = 1;
3007 slot -= 1;
3008 }
3009 p->slots[level] = slot;
3010 unlock_up(p, level, lowest_unlock, 0, NULL);
3011
3012 if (level == lowest_level) {
3013 if (dec)
3014 p->slots[level]++;
3015 goto done;
3016 }
3017
3018 err = read_block_for_search(NULL, root, p, &b, level,
3019 slot, key, time_seq);
3020 if (err == -EAGAIN)
3021 goto again;
3022 if (err) {
3023 ret = err;
3024 goto done;
3025 }
3026
3027 level = btrfs_header_level(b);
3028 err = btrfs_try_tree_read_lock(b);
3029 if (!err) {
3030 btrfs_set_path_blocking(p);
3031 btrfs_tree_read_lock(b);
3032 btrfs_clear_path_blocking(p, b,
3033 BTRFS_READ_LOCK);
3034 }
Josef Bacik9ec72672013-08-07 16:57:23 -04003035 b = tree_mod_log_rewind(root->fs_info, p, b, time_seq);
Josef Bacikdb7f3432013-08-07 14:54:37 -04003036 if (!b) {
3037 ret = -ENOMEM;
3038 goto done;
3039 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02003040 p->locks[level] = BTRFS_READ_LOCK;
3041 p->nodes[level] = b;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02003042 } else {
3043 p->slots[level] = slot;
3044 unlock_up(p, level, lowest_unlock, 0, NULL);
3045 goto done;
3046 }
3047 }
3048 ret = 1;
3049done:
3050 if (!p->leave_spinning)
3051 btrfs_set_path_blocking(p);
3052 if (ret < 0)
3053 btrfs_release_path(p);
3054
3055 return ret;
3056}
3057
3058/*
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003059 * helper to use instead of search slot if no exact match is needed but
3060 * instead the next or previous item should be returned.
3061 * When find_higher is true, the next higher item is returned, the next lower
3062 * otherwise.
3063 * When return_any and find_higher are both true, and no higher item is found,
3064 * return the next lower instead.
3065 * When return_any is true and find_higher is false, and no lower item is found,
3066 * return the next higher instead.
3067 * It returns 0 if any item is found, 1 if none is found (tree empty), and
3068 * < 0 on error
3069 */
3070int btrfs_search_slot_for_read(struct btrfs_root *root,
3071 struct btrfs_key *key, struct btrfs_path *p,
3072 int find_higher, int return_any)
3073{
3074 int ret;
3075 struct extent_buffer *leaf;
3076
3077again:
3078 ret = btrfs_search_slot(NULL, root, key, p, 0, 0);
3079 if (ret <= 0)
3080 return ret;
3081 /*
3082 * a return value of 1 means the path is at the position where the
3083 * item should be inserted. Normally this is the next bigger item,
3084 * but in case the previous item is the last in a leaf, path points
3085 * to the first free slot in the previous leaf, i.e. at an invalid
3086 * item.
3087 */
3088 leaf = p->nodes[0];
3089
3090 if (find_higher) {
3091 if (p->slots[0] >= btrfs_header_nritems(leaf)) {
3092 ret = btrfs_next_leaf(root, p);
3093 if (ret <= 0)
3094 return ret;
3095 if (!return_any)
3096 return 1;
3097 /*
3098 * no higher item found, return the next
3099 * lower instead
3100 */
3101 return_any = 0;
3102 find_higher = 0;
3103 btrfs_release_path(p);
3104 goto again;
3105 }
3106 } else {
Arne Jansene6793762011-09-13 11:18:10 +02003107 if (p->slots[0] == 0) {
3108 ret = btrfs_prev_leaf(root, p);
3109 if (ret < 0)
3110 return ret;
3111 if (!ret) {
Filipe David Borba Manana23c6bf62014-01-11 21:28:54 +00003112 leaf = p->nodes[0];
3113 if (p->slots[0] == btrfs_header_nritems(leaf))
3114 p->slots[0]--;
Arne Jansene6793762011-09-13 11:18:10 +02003115 return 0;
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003116 }
Arne Jansene6793762011-09-13 11:18:10 +02003117 if (!return_any)
3118 return 1;
3119 /*
3120 * no lower item found, return the next
3121 * higher instead
3122 */
3123 return_any = 0;
3124 find_higher = 1;
3125 btrfs_release_path(p);
3126 goto again;
3127 } else {
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003128 --p->slots[0];
3129 }
3130 }
3131 return 0;
3132}
3133
3134/*
Chris Mason74123bd2007-02-02 11:05:29 -05003135 * adjust the pointers going up the tree, starting at level
3136 * making sure the right key of each node is points to 'key'.
3137 * This is used after shifting pointers to the left, so it stops
3138 * fixing up pointers when a given leaf/node is not in slot 0 of the
3139 * higher levels
Chris Masonaa5d6be2007-02-28 16:35:06 -05003140 *
Chris Mason74123bd2007-02-02 11:05:29 -05003141 */
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00003142static void fixup_low_keys(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01003143 struct btrfs_disk_key *key, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003144{
3145 int i;
Chris Mason5f39d392007-10-15 16:14:19 -04003146 struct extent_buffer *t;
3147
Chris Mason234b63a2007-03-13 10:46:10 -04003148 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05003149 int tslot = path->slots[i];
Chris Masoneb60cea2007-02-02 09:18:22 -05003150 if (!path->nodes[i])
Chris Masonbe0e5c02007-01-26 15:51:26 -05003151 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003152 t = path->nodes[i];
Liu Bo32adf092012-10-19 12:52:15 +00003153 tree_mod_log_set_node_key(root->fs_info, t, tslot, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003154 btrfs_set_node_key(t, key, tslot);
Chris Masond6025572007-03-30 14:27:56 -04003155 btrfs_mark_buffer_dirty(path->nodes[i]);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003156 if (tslot != 0)
3157 break;
3158 }
3159}
3160
Chris Mason74123bd2007-02-02 11:05:29 -05003161/*
Zheng Yan31840ae2008-09-23 13:14:14 -04003162 * update item key.
3163 *
3164 * This function isn't completely safe. It's the caller's responsibility
3165 * that the new key won't break the order
3166 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00003167void btrfs_set_item_key_safe(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01003168 struct btrfs_key *new_key)
Zheng Yan31840ae2008-09-23 13:14:14 -04003169{
3170 struct btrfs_disk_key disk_key;
3171 struct extent_buffer *eb;
3172 int slot;
3173
3174 eb = path->nodes[0];
3175 slot = path->slots[0];
3176 if (slot > 0) {
3177 btrfs_item_key(eb, &disk_key, slot - 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003178 BUG_ON(comp_keys(&disk_key, new_key) >= 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003179 }
3180 if (slot < btrfs_header_nritems(eb) - 1) {
3181 btrfs_item_key(eb, &disk_key, slot + 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003182 BUG_ON(comp_keys(&disk_key, new_key) <= 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003183 }
3184
3185 btrfs_cpu_key_to_disk(&disk_key, new_key);
3186 btrfs_set_item_key(eb, &disk_key, slot);
3187 btrfs_mark_buffer_dirty(eb);
3188 if (slot == 0)
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00003189 fixup_low_keys(root, path, &disk_key, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04003190}
3191
3192/*
Chris Mason74123bd2007-02-02 11:05:29 -05003193 * try to push data from one node into the next node left in the
Chris Mason79f95c82007-03-01 15:16:26 -05003194 * tree.
Chris Masonaa5d6be2007-02-28 16:35:06 -05003195 *
3196 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
3197 * error, and > 0 if there was no room in the left hand block.
Chris Mason74123bd2007-02-02 11:05:29 -05003198 */
Chris Mason98ed5172008-01-03 10:01:48 -05003199static int push_node_left(struct btrfs_trans_handle *trans,
3200 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -04003201 struct extent_buffer *src, int empty)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003202{
Chris Masonbe0e5c02007-01-26 15:51:26 -05003203 int push_items = 0;
Chris Masonbb803952007-03-01 12:04:21 -05003204 int src_nritems;
3205 int dst_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003206 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003207
Chris Mason5f39d392007-10-15 16:14:19 -04003208 src_nritems = btrfs_header_nritems(src);
3209 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04003210 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Mason7bb86312007-12-11 09:25:06 -05003211 WARN_ON(btrfs_header_generation(src) != trans->transid);
3212 WARN_ON(btrfs_header_generation(dst) != trans->transid);
Chris Mason54aa1f42007-06-22 14:16:25 -04003213
Chris Masonbce4eae2008-04-24 14:42:46 -04003214 if (!empty && src_nritems <= 8)
Chris Mason971a1f62008-04-24 10:54:32 -04003215 return 1;
3216
Chris Masond3977122009-01-05 21:25:51 -05003217 if (push_items <= 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003218 return 1;
3219
Chris Masonbce4eae2008-04-24 14:42:46 -04003220 if (empty) {
Chris Mason971a1f62008-04-24 10:54:32 -04003221 push_items = min(src_nritems, push_items);
Chris Masonbce4eae2008-04-24 14:42:46 -04003222 if (push_items < src_nritems) {
3223 /* leave at least 8 pointers in the node if
3224 * we aren't going to empty it
3225 */
3226 if (src_nritems - push_items < 8) {
3227 if (push_items <= 8)
3228 return 1;
3229 push_items -= 8;
3230 }
3231 }
3232 } else
3233 push_items = min(src_nritems - 8, push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05003234
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003235 ret = tree_mod_log_eb_copy(root->fs_info, dst, src, dst_nritems, 0,
3236 push_items);
3237 if (ret) {
3238 btrfs_abort_transaction(trans, root, ret);
3239 return ret;
3240 }
Chris Mason5f39d392007-10-15 16:14:19 -04003241 copy_extent_buffer(dst, src,
3242 btrfs_node_key_ptr_offset(dst_nritems),
3243 btrfs_node_key_ptr_offset(0),
Chris Masond3977122009-01-05 21:25:51 -05003244 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason5f39d392007-10-15 16:14:19 -04003245
Chris Masonbb803952007-03-01 12:04:21 -05003246 if (push_items < src_nritems) {
Jan Schmidt57911b82012-10-19 09:22:03 +02003247 /*
3248 * don't call tree_mod_log_eb_move here, key removal was already
3249 * fully logged by tree_mod_log_eb_copy above.
3250 */
Chris Mason5f39d392007-10-15 16:14:19 -04003251 memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0),
3252 btrfs_node_key_ptr_offset(push_items),
3253 (src_nritems - push_items) *
3254 sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -05003255 }
Chris Mason5f39d392007-10-15 16:14:19 -04003256 btrfs_set_header_nritems(src, src_nritems - push_items);
3257 btrfs_set_header_nritems(dst, dst_nritems + push_items);
3258 btrfs_mark_buffer_dirty(src);
3259 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04003260
Chris Masonbb803952007-03-01 12:04:21 -05003261 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003262}
3263
Chris Mason97571fd2007-02-24 13:39:08 -05003264/*
Chris Mason79f95c82007-03-01 15:16:26 -05003265 * try to push data from one node into the next node right in the
3266 * tree.
3267 *
3268 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
3269 * error, and > 0 if there was no room in the right hand block.
3270 *
3271 * this will only push up to 1/2 the contents of the left node over
3272 */
Chris Mason5f39d392007-10-15 16:14:19 -04003273static int balance_node_right(struct btrfs_trans_handle *trans,
3274 struct btrfs_root *root,
3275 struct extent_buffer *dst,
3276 struct extent_buffer *src)
Chris Mason79f95c82007-03-01 15:16:26 -05003277{
Chris Mason79f95c82007-03-01 15:16:26 -05003278 int push_items = 0;
3279 int max_push;
3280 int src_nritems;
3281 int dst_nritems;
3282 int ret = 0;
Chris Mason79f95c82007-03-01 15:16:26 -05003283
Chris Mason7bb86312007-12-11 09:25:06 -05003284 WARN_ON(btrfs_header_generation(src) != trans->transid);
3285 WARN_ON(btrfs_header_generation(dst) != trans->transid);
3286
Chris Mason5f39d392007-10-15 16:14:19 -04003287 src_nritems = btrfs_header_nritems(src);
3288 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04003289 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Masond3977122009-01-05 21:25:51 -05003290 if (push_items <= 0)
Chris Mason79f95c82007-03-01 15:16:26 -05003291 return 1;
Chris Masonbce4eae2008-04-24 14:42:46 -04003292
Chris Masond3977122009-01-05 21:25:51 -05003293 if (src_nritems < 4)
Chris Masonbce4eae2008-04-24 14:42:46 -04003294 return 1;
Chris Mason79f95c82007-03-01 15:16:26 -05003295
3296 max_push = src_nritems / 2 + 1;
3297 /* don't try to empty the node */
Chris Masond3977122009-01-05 21:25:51 -05003298 if (max_push >= src_nritems)
Chris Mason79f95c82007-03-01 15:16:26 -05003299 return 1;
Yan252c38f2007-08-29 09:11:44 -04003300
Chris Mason79f95c82007-03-01 15:16:26 -05003301 if (max_push < push_items)
3302 push_items = max_push;
3303
Jan Schmidtf2304752012-05-26 11:43:17 +02003304 tree_mod_log_eb_move(root->fs_info, dst, push_items, 0, dst_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003305 memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items),
3306 btrfs_node_key_ptr_offset(0),
3307 (dst_nritems) *
3308 sizeof(struct btrfs_key_ptr));
Chris Masond6025572007-03-30 14:27:56 -04003309
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003310 ret = tree_mod_log_eb_copy(root->fs_info, dst, src, 0,
3311 src_nritems - push_items, push_items);
3312 if (ret) {
3313 btrfs_abort_transaction(trans, root, ret);
3314 return ret;
3315 }
Chris Mason5f39d392007-10-15 16:14:19 -04003316 copy_extent_buffer(dst, src,
3317 btrfs_node_key_ptr_offset(0),
3318 btrfs_node_key_ptr_offset(src_nritems - push_items),
Chris Masond3977122009-01-05 21:25:51 -05003319 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason79f95c82007-03-01 15:16:26 -05003320
Chris Mason5f39d392007-10-15 16:14:19 -04003321 btrfs_set_header_nritems(src, src_nritems - push_items);
3322 btrfs_set_header_nritems(dst, dst_nritems + push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05003323
Chris Mason5f39d392007-10-15 16:14:19 -04003324 btrfs_mark_buffer_dirty(src);
3325 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04003326
Chris Mason79f95c82007-03-01 15:16:26 -05003327 return ret;
3328}
3329
3330/*
Chris Mason97571fd2007-02-24 13:39:08 -05003331 * helper function to insert a new root level in the tree.
3332 * A new node is allocated, and a single item is inserted to
3333 * point to the existing root
Chris Masonaa5d6be2007-02-28 16:35:06 -05003334 *
3335 * returns zero on success or < 0 on failure.
Chris Mason97571fd2007-02-24 13:39:08 -05003336 */
Chris Masond3977122009-01-05 21:25:51 -05003337static noinline int insert_new_root(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04003338 struct btrfs_root *root,
Liu Bofdd99c72013-05-22 12:06:51 +00003339 struct btrfs_path *path, int level)
Chris Mason5c680ed2007-02-22 11:39:13 -05003340{
Chris Mason7bb86312007-12-11 09:25:06 -05003341 u64 lower_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04003342 struct extent_buffer *lower;
3343 struct extent_buffer *c;
Chris Mason925baed2008-06-25 16:01:30 -04003344 struct extent_buffer *old;
Chris Mason5f39d392007-10-15 16:14:19 -04003345 struct btrfs_disk_key lower_key;
Chris Mason5c680ed2007-02-22 11:39:13 -05003346
3347 BUG_ON(path->nodes[level]);
3348 BUG_ON(path->nodes[level-1] != root->node);
3349
Chris Mason7bb86312007-12-11 09:25:06 -05003350 lower = path->nodes[level-1];
3351 if (level == 1)
3352 btrfs_item_key(lower, &lower_key, 0);
3353 else
3354 btrfs_node_key(lower, &lower_key, 0);
3355
David Sterba4d75f8a2014-06-15 01:54:12 +02003356 c = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid,
3357 &lower_key, level, root->node->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003358 if (IS_ERR(c))
3359 return PTR_ERR(c);
Chris Mason925baed2008-06-25 16:01:30 -04003360
Yan, Zhengf0486c62010-05-16 10:46:25 -04003361 root_add_used(root, root->nodesize);
3362
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003363 memset_extent_buffer(c, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04003364 btrfs_set_header_nritems(c, 1);
3365 btrfs_set_header_level(c, level);
Chris Masondb945352007-10-15 16:15:53 -04003366 btrfs_set_header_bytenr(c, c->start);
Chris Mason5f39d392007-10-15 16:14:19 -04003367 btrfs_set_header_generation(c, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003368 btrfs_set_header_backref_rev(c, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04003369 btrfs_set_header_owner(c, root->root_key.objectid);
Chris Masond5719762007-03-23 10:01:08 -04003370
Ross Kirk0a4e5582013-09-24 10:12:38 +01003371 write_extent_buffer(c, root->fs_info->fsid, btrfs_header_fsid(),
Chris Mason5f39d392007-10-15 16:14:19 -04003372 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04003373
3374 write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
Geert Uytterhoevenb308bc22013-08-20 13:20:15 +02003375 btrfs_header_chunk_tree_uuid(c), BTRFS_UUID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04003376
Chris Mason5f39d392007-10-15 16:14:19 -04003377 btrfs_set_node_key(c, &lower_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04003378 btrfs_set_node_blockptr(c, 0, lower->start);
Chris Mason7bb86312007-12-11 09:25:06 -05003379 lower_gen = btrfs_header_generation(lower);
Zheng Yan31840ae2008-09-23 13:14:14 -04003380 WARN_ON(lower_gen != trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05003381
3382 btrfs_set_node_ptr_generation(c, 0, lower_gen);
Chris Mason5f39d392007-10-15 16:14:19 -04003383
3384 btrfs_mark_buffer_dirty(c);
Chris Masond5719762007-03-23 10:01:08 -04003385
Chris Mason925baed2008-06-25 16:01:30 -04003386 old = root->node;
Liu Bofdd99c72013-05-22 12:06:51 +00003387 tree_mod_log_set_root_pointer(root, c, 0);
Chris Mason240f62c2011-03-23 14:54:42 -04003388 rcu_assign_pointer(root->node, c);
Chris Mason925baed2008-06-25 16:01:30 -04003389
3390 /* the super has an extra ref to root->node */
3391 free_extent_buffer(old);
3392
Chris Mason0b86a832008-03-24 15:01:56 -04003393 add_root_to_dirty_list(root);
Chris Mason5f39d392007-10-15 16:14:19 -04003394 extent_buffer_get(c);
3395 path->nodes[level] = c;
Chris Masonbd681512011-07-16 15:23:14 -04003396 path->locks[level] = BTRFS_WRITE_LOCK;
Chris Mason5c680ed2007-02-22 11:39:13 -05003397 path->slots[level] = 0;
3398 return 0;
3399}
3400
Chris Mason74123bd2007-02-02 11:05:29 -05003401/*
3402 * worker function to insert a single pointer in a node.
3403 * the node should have enough room for the pointer already
Chris Mason97571fd2007-02-24 13:39:08 -05003404 *
Chris Mason74123bd2007-02-02 11:05:29 -05003405 * slot and level indicate where you want the key to go, and
3406 * blocknr is the block the key points to.
3407 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01003408static void insert_ptr(struct btrfs_trans_handle *trans,
3409 struct btrfs_root *root, struct btrfs_path *path,
3410 struct btrfs_disk_key *key, u64 bytenr,
Jan Schmidtc3e06962012-06-21 11:01:06 +02003411 int slot, int level)
Chris Mason74123bd2007-02-02 11:05:29 -05003412{
Chris Mason5f39d392007-10-15 16:14:19 -04003413 struct extent_buffer *lower;
Chris Mason74123bd2007-02-02 11:05:29 -05003414 int nritems;
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003415 int ret;
Chris Mason5c680ed2007-02-22 11:39:13 -05003416
3417 BUG_ON(!path->nodes[level]);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003418 btrfs_assert_tree_locked(path->nodes[level]);
Chris Mason5f39d392007-10-15 16:14:19 -04003419 lower = path->nodes[level];
3420 nritems = btrfs_header_nritems(lower);
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04003421 BUG_ON(slot > nritems);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003422 BUG_ON(nritems == BTRFS_NODEPTRS_PER_BLOCK(root));
Chris Mason74123bd2007-02-02 11:05:29 -05003423 if (slot != nritems) {
Jan Schmidtc3e06962012-06-21 11:01:06 +02003424 if (level)
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003425 tree_mod_log_eb_move(root->fs_info, lower, slot + 1,
3426 slot, nritems - slot);
Chris Mason5f39d392007-10-15 16:14:19 -04003427 memmove_extent_buffer(lower,
3428 btrfs_node_key_ptr_offset(slot + 1),
3429 btrfs_node_key_ptr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04003430 (nritems - slot) * sizeof(struct btrfs_key_ptr));
Chris Mason74123bd2007-02-02 11:05:29 -05003431 }
Jan Schmidtc3e06962012-06-21 11:01:06 +02003432 if (level) {
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003433 ret = tree_mod_log_insert_key(root->fs_info, lower, slot,
Josef Bacikc8cc6342013-07-01 16:18:19 -04003434 MOD_LOG_KEY_ADD, GFP_NOFS);
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003435 BUG_ON(ret < 0);
3436 }
Chris Mason5f39d392007-10-15 16:14:19 -04003437 btrfs_set_node_key(lower, key, slot);
Chris Masondb945352007-10-15 16:15:53 -04003438 btrfs_set_node_blockptr(lower, slot, bytenr);
Chris Mason74493f72007-12-11 09:25:06 -05003439 WARN_ON(trans->transid == 0);
3440 btrfs_set_node_ptr_generation(lower, slot, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04003441 btrfs_set_header_nritems(lower, nritems + 1);
3442 btrfs_mark_buffer_dirty(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05003443}
3444
Chris Mason97571fd2007-02-24 13:39:08 -05003445/*
3446 * split the node at the specified level in path in two.
3447 * The path is corrected to point to the appropriate node after the split
3448 *
3449 * Before splitting this tries to make some room in the node by pushing
3450 * left and right, if either one works, it returns right away.
Chris Masonaa5d6be2007-02-28 16:35:06 -05003451 *
3452 * returns 0 on success and < 0 on failure
Chris Mason97571fd2007-02-24 13:39:08 -05003453 */
Chris Masone02119d2008-09-05 16:13:11 -04003454static noinline int split_node(struct btrfs_trans_handle *trans,
3455 struct btrfs_root *root,
3456 struct btrfs_path *path, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003457{
Chris Mason5f39d392007-10-15 16:14:19 -04003458 struct extent_buffer *c;
3459 struct extent_buffer *split;
3460 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003461 int mid;
Chris Mason5c680ed2007-02-22 11:39:13 -05003462 int ret;
Chris Mason7518a232007-03-12 12:01:18 -04003463 u32 c_nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003464
Chris Mason5f39d392007-10-15 16:14:19 -04003465 c = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05003466 WARN_ON(btrfs_header_generation(c) != trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04003467 if (c == root->node) {
Jan Schmidtd9abbf12013-03-20 13:49:48 +00003468 /*
Jan Schmidt90f8d622013-04-13 13:19:53 +00003469 * trying to split the root, lets make a new one
3470 *
Liu Bofdd99c72013-05-22 12:06:51 +00003471 * tree mod log: We don't log_removal old root in
Jan Schmidt90f8d622013-04-13 13:19:53 +00003472 * insert_new_root, because that root buffer will be kept as a
3473 * normal node. We are going to log removal of half of the
3474 * elements below with tree_mod_log_eb_copy. We're holding a
3475 * tree lock on the buffer, which is why we cannot race with
3476 * other tree_mod_log users.
Jan Schmidtd9abbf12013-03-20 13:49:48 +00003477 */
Liu Bofdd99c72013-05-22 12:06:51 +00003478 ret = insert_new_root(trans, root, path, level + 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05003479 if (ret)
3480 return ret;
Chris Masonb3612422009-05-13 19:12:15 -04003481 } else {
Chris Masone66f7092007-04-20 13:16:02 -04003482 ret = push_nodes_for_insert(trans, root, path, level);
Chris Mason5f39d392007-10-15 16:14:19 -04003483 c = path->nodes[level];
3484 if (!ret && btrfs_header_nritems(c) <
Chris Masonc448acf2008-04-24 09:34:34 -04003485 BTRFS_NODEPTRS_PER_BLOCK(root) - 3)
Chris Masone66f7092007-04-20 13:16:02 -04003486 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04003487 if (ret < 0)
3488 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003489 }
Chris Masone66f7092007-04-20 13:16:02 -04003490
Chris Mason5f39d392007-10-15 16:14:19 -04003491 c_nritems = btrfs_header_nritems(c);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003492 mid = (c_nritems + 1) / 2;
3493 btrfs_node_key(c, &disk_key, mid);
Chris Mason7bb86312007-12-11 09:25:06 -05003494
David Sterba4d75f8a2014-06-15 01:54:12 +02003495 split = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid,
3496 &disk_key, level, c->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003497 if (IS_ERR(split))
3498 return PTR_ERR(split);
Chris Mason54aa1f42007-06-22 14:16:25 -04003499
Yan, Zhengf0486c62010-05-16 10:46:25 -04003500 root_add_used(root, root->nodesize);
3501
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003502 memset_extent_buffer(split, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04003503 btrfs_set_header_level(split, btrfs_header_level(c));
Chris Masondb945352007-10-15 16:15:53 -04003504 btrfs_set_header_bytenr(split, split->start);
Chris Mason5f39d392007-10-15 16:14:19 -04003505 btrfs_set_header_generation(split, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003506 btrfs_set_header_backref_rev(split, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04003507 btrfs_set_header_owner(split, root->root_key.objectid);
3508 write_extent_buffer(split, root->fs_info->fsid,
Ross Kirk0a4e5582013-09-24 10:12:38 +01003509 btrfs_header_fsid(), BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04003510 write_extent_buffer(split, root->fs_info->chunk_tree_uuid,
Geert Uytterhoevenb308bc22013-08-20 13:20:15 +02003511 btrfs_header_chunk_tree_uuid(split),
Chris Masone17cade2008-04-15 15:41:47 -04003512 BTRFS_UUID_SIZE);
Chris Mason5f39d392007-10-15 16:14:19 -04003513
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003514 ret = tree_mod_log_eb_copy(root->fs_info, split, c, 0,
3515 mid, c_nritems - mid);
3516 if (ret) {
3517 btrfs_abort_transaction(trans, root, ret);
3518 return ret;
3519 }
Chris Mason5f39d392007-10-15 16:14:19 -04003520 copy_extent_buffer(split, c,
3521 btrfs_node_key_ptr_offset(0),
3522 btrfs_node_key_ptr_offset(mid),
3523 (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
3524 btrfs_set_header_nritems(split, c_nritems - mid);
3525 btrfs_set_header_nritems(c, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003526 ret = 0;
3527
Chris Mason5f39d392007-10-15 16:14:19 -04003528 btrfs_mark_buffer_dirty(c);
3529 btrfs_mark_buffer_dirty(split);
3530
Jeff Mahoney143bede2012-03-01 14:56:26 +01003531 insert_ptr(trans, root, path, &disk_key, split->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02003532 path->slots[level + 1] + 1, level + 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003533
Chris Mason5de08d72007-02-24 06:24:44 -05003534 if (path->slots[level] >= mid) {
Chris Mason5c680ed2007-02-22 11:39:13 -05003535 path->slots[level] -= mid;
Chris Mason925baed2008-06-25 16:01:30 -04003536 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04003537 free_extent_buffer(c);
3538 path->nodes[level] = split;
Chris Mason5c680ed2007-02-22 11:39:13 -05003539 path->slots[level + 1] += 1;
3540 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003541 btrfs_tree_unlock(split);
Chris Mason5f39d392007-10-15 16:14:19 -04003542 free_extent_buffer(split);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003543 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003544 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003545}
3546
Chris Mason74123bd2007-02-02 11:05:29 -05003547/*
3548 * how many bytes are required to store the items in a leaf. start
3549 * and nr indicate which items in the leaf to check. This totals up the
3550 * space used both by the item structs and the item data
3551 */
Chris Mason5f39d392007-10-15 16:14:19 -04003552static int leaf_space_used(struct extent_buffer *l, int start, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003553{
Josef Bacik41be1f32012-10-15 13:43:18 -04003554 struct btrfs_item *start_item;
3555 struct btrfs_item *end_item;
3556 struct btrfs_map_token token;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003557 int data_len;
Chris Mason5f39d392007-10-15 16:14:19 -04003558 int nritems = btrfs_header_nritems(l);
Chris Masond4dbff92007-04-04 14:08:15 -04003559 int end = min(nritems, start + nr) - 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003560
3561 if (!nr)
3562 return 0;
Josef Bacik41be1f32012-10-15 13:43:18 -04003563 btrfs_init_map_token(&token);
Ross Kirkdd3cc162013-09-16 15:58:09 +01003564 start_item = btrfs_item_nr(start);
3565 end_item = btrfs_item_nr(end);
Josef Bacik41be1f32012-10-15 13:43:18 -04003566 data_len = btrfs_token_item_offset(l, start_item, &token) +
3567 btrfs_token_item_size(l, start_item, &token);
3568 data_len = data_len - btrfs_token_item_offset(l, end_item, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04003569 data_len += sizeof(struct btrfs_item) * nr;
Chris Masond4dbff92007-04-04 14:08:15 -04003570 WARN_ON(data_len < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003571 return data_len;
3572}
3573
Chris Mason74123bd2007-02-02 11:05:29 -05003574/*
Chris Masond4dbff92007-04-04 14:08:15 -04003575 * The space between the end of the leaf items and
3576 * the start of the leaf data. IOW, how much room
3577 * the leaf has left for both items and data
3578 */
Chris Masond3977122009-01-05 21:25:51 -05003579noinline int btrfs_leaf_free_space(struct btrfs_root *root,
Chris Masone02119d2008-09-05 16:13:11 -04003580 struct extent_buffer *leaf)
Chris Masond4dbff92007-04-04 14:08:15 -04003581{
Chris Mason5f39d392007-10-15 16:14:19 -04003582 int nritems = btrfs_header_nritems(leaf);
3583 int ret;
3584 ret = BTRFS_LEAF_DATA_SIZE(root) - leaf_space_used(leaf, 0, nritems);
3585 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003586 btrfs_crit(root->fs_info,
3587 "leaf free space ret %d, leaf data size %lu, used %d nritems %d",
Jens Axboeae2f5412007-10-19 09:22:59 -04003588 ret, (unsigned long) BTRFS_LEAF_DATA_SIZE(root),
Chris Mason5f39d392007-10-15 16:14:19 -04003589 leaf_space_used(leaf, 0, nritems), nritems);
3590 }
3591 return ret;
Chris Masond4dbff92007-04-04 14:08:15 -04003592}
3593
Chris Mason99d8f832010-07-07 10:51:48 -04003594/*
3595 * min slot controls the lowest index we're willing to push to the
3596 * right. We'll push up to and including min_slot, but no lower
3597 */
Chris Mason44871b12009-03-13 10:04:31 -04003598static noinline int __push_leaf_right(struct btrfs_trans_handle *trans,
3599 struct btrfs_root *root,
3600 struct btrfs_path *path,
3601 int data_size, int empty,
3602 struct extent_buffer *right,
Chris Mason99d8f832010-07-07 10:51:48 -04003603 int free_space, u32 left_nritems,
3604 u32 min_slot)
Chris Mason00ec4c52007-02-24 12:47:20 -05003605{
Chris Mason5f39d392007-10-15 16:14:19 -04003606 struct extent_buffer *left = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04003607 struct extent_buffer *upper = path->nodes[1];
Chris Masoncfed81a2012-03-03 07:40:03 -05003608 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003609 struct btrfs_disk_key disk_key;
Chris Mason00ec4c52007-02-24 12:47:20 -05003610 int slot;
Chris Mason34a38212007-11-07 13:31:03 -05003611 u32 i;
Chris Mason00ec4c52007-02-24 12:47:20 -05003612 int push_space = 0;
3613 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04003614 struct btrfs_item *item;
Chris Mason34a38212007-11-07 13:31:03 -05003615 u32 nr;
Chris Mason7518a232007-03-12 12:01:18 -04003616 u32 right_nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04003617 u32 data_end;
Chris Masondb945352007-10-15 16:15:53 -04003618 u32 this_item_size;
Chris Mason00ec4c52007-02-24 12:47:20 -05003619
Chris Masoncfed81a2012-03-03 07:40:03 -05003620 btrfs_init_map_token(&token);
3621
Chris Mason34a38212007-11-07 13:31:03 -05003622 if (empty)
3623 nr = 0;
3624 else
Chris Mason99d8f832010-07-07 10:51:48 -04003625 nr = max_t(u32, 1, min_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003626
Zheng Yan31840ae2008-09-23 13:14:14 -04003627 if (path->slots[0] >= left_nritems)
Yan Zheng87b29b22008-12-17 10:21:48 -05003628 push_space += data_size;
Zheng Yan31840ae2008-09-23 13:14:14 -04003629
Chris Mason44871b12009-03-13 10:04:31 -04003630 slot = path->slots[1];
Chris Mason34a38212007-11-07 13:31:03 -05003631 i = left_nritems - 1;
3632 while (i >= nr) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003633 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003634
Zheng Yan31840ae2008-09-23 13:14:14 -04003635 if (!empty && push_items > 0) {
3636 if (path->slots[0] > i)
3637 break;
3638 if (path->slots[0] == i) {
3639 int space = btrfs_leaf_free_space(root, left);
3640 if (space + push_space * 2 > free_space)
3641 break;
3642 }
3643 }
3644
Chris Mason00ec4c52007-02-24 12:47:20 -05003645 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05003646 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04003647
Chris Masondb945352007-10-15 16:15:53 -04003648 this_item_size = btrfs_item_size(left, item);
3649 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Mason00ec4c52007-02-24 12:47:20 -05003650 break;
Zheng Yan31840ae2008-09-23 13:14:14 -04003651
Chris Mason00ec4c52007-02-24 12:47:20 -05003652 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04003653 push_space += this_item_size + sizeof(*item);
Chris Mason34a38212007-11-07 13:31:03 -05003654 if (i == 0)
3655 break;
3656 i--;
Chris Masondb945352007-10-15 16:15:53 -04003657 }
Chris Mason5f39d392007-10-15 16:14:19 -04003658
Chris Mason925baed2008-06-25 16:01:30 -04003659 if (push_items == 0)
3660 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04003661
Julia Lawall6c1500f2012-11-03 20:30:18 +00003662 WARN_ON(!empty && push_items == left_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003663
Chris Mason00ec4c52007-02-24 12:47:20 -05003664 /* push left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04003665 right_nritems = btrfs_header_nritems(right);
Chris Mason34a38212007-11-07 13:31:03 -05003666
Chris Mason5f39d392007-10-15 16:14:19 -04003667 push_space = btrfs_item_end_nr(left, left_nritems - push_items);
Chris Mason123abc82007-03-14 14:14:43 -04003668 push_space -= leaf_data_end(root, left);
Chris Mason5f39d392007-10-15 16:14:19 -04003669
Chris Mason00ec4c52007-02-24 12:47:20 -05003670 /* make room in the right data area */
Chris Mason5f39d392007-10-15 16:14:19 -04003671 data_end = leaf_data_end(root, right);
3672 memmove_extent_buffer(right,
3673 btrfs_leaf_data(right) + data_end - push_space,
3674 btrfs_leaf_data(right) + data_end,
3675 BTRFS_LEAF_DATA_SIZE(root) - data_end);
3676
Chris Mason00ec4c52007-02-24 12:47:20 -05003677 /* copy from the left data area */
Chris Mason5f39d392007-10-15 16:14:19 -04003678 copy_extent_buffer(right, left, btrfs_leaf_data(right) +
Chris Masond6025572007-03-30 14:27:56 -04003679 BTRFS_LEAF_DATA_SIZE(root) - push_space,
3680 btrfs_leaf_data(left) + leaf_data_end(root, left),
3681 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04003682
3683 memmove_extent_buffer(right, btrfs_item_nr_offset(push_items),
3684 btrfs_item_nr_offset(0),
3685 right_nritems * sizeof(struct btrfs_item));
3686
Chris Mason00ec4c52007-02-24 12:47:20 -05003687 /* copy the items from left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04003688 copy_extent_buffer(right, left, btrfs_item_nr_offset(0),
3689 btrfs_item_nr_offset(left_nritems - push_items),
3690 push_items * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -05003691
3692 /* update the item pointers */
Chris Mason7518a232007-03-12 12:01:18 -04003693 right_nritems += push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04003694 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04003695 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason7518a232007-03-12 12:01:18 -04003696 for (i = 0; i < right_nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003697 item = btrfs_item_nr(i);
Chris Masoncfed81a2012-03-03 07:40:03 -05003698 push_space -= btrfs_token_item_size(right, item, &token);
3699 btrfs_set_token_item_offset(right, item, push_space, &token);
Chris Masondb945352007-10-15 16:15:53 -04003700 }
3701
Chris Mason7518a232007-03-12 12:01:18 -04003702 left_nritems -= push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04003703 btrfs_set_header_nritems(left, left_nritems);
Chris Mason00ec4c52007-02-24 12:47:20 -05003704
Chris Mason34a38212007-11-07 13:31:03 -05003705 if (left_nritems)
3706 btrfs_mark_buffer_dirty(left);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003707 else
3708 clean_tree_block(trans, root, left);
3709
Chris Mason5f39d392007-10-15 16:14:19 -04003710 btrfs_mark_buffer_dirty(right);
Chris Masona429e512007-04-18 16:15:28 -04003711
Chris Mason5f39d392007-10-15 16:14:19 -04003712 btrfs_item_key(right, &disk_key, 0);
3713 btrfs_set_node_key(upper, &disk_key, slot + 1);
Chris Masond6025572007-03-30 14:27:56 -04003714 btrfs_mark_buffer_dirty(upper);
Chris Mason02217ed2007-03-02 16:08:05 -05003715
Chris Mason00ec4c52007-02-24 12:47:20 -05003716 /* then fixup the leaf pointer in the path */
Chris Mason7518a232007-03-12 12:01:18 -04003717 if (path->slots[0] >= left_nritems) {
3718 path->slots[0] -= left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04003719 if (btrfs_header_nritems(path->nodes[0]) == 0)
3720 clean_tree_block(trans, root, path->nodes[0]);
3721 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04003722 free_extent_buffer(path->nodes[0]);
3723 path->nodes[0] = right;
Chris Mason00ec4c52007-02-24 12:47:20 -05003724 path->slots[1] += 1;
3725 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003726 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04003727 free_extent_buffer(right);
Chris Mason00ec4c52007-02-24 12:47:20 -05003728 }
3729 return 0;
Chris Mason925baed2008-06-25 16:01:30 -04003730
3731out_unlock:
3732 btrfs_tree_unlock(right);
3733 free_extent_buffer(right);
3734 return 1;
Chris Mason00ec4c52007-02-24 12:47:20 -05003735}
Chris Mason925baed2008-06-25 16:01:30 -04003736
Chris Mason00ec4c52007-02-24 12:47:20 -05003737/*
Chris Mason44871b12009-03-13 10:04:31 -04003738 * push some data in the path leaf to the right, trying to free up at
3739 * least data_size bytes. returns zero if the push worked, nonzero otherwise
3740 *
3741 * returns 1 if the push failed because the other node didn't have enough
3742 * room, 0 if everything worked out and < 0 if there were major errors.
Chris Mason99d8f832010-07-07 10:51:48 -04003743 *
3744 * this will push starting from min_slot to the end of the leaf. It won't
3745 * push any slot lower than min_slot
Chris Mason44871b12009-03-13 10:04:31 -04003746 */
3747static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04003748 *root, struct btrfs_path *path,
3749 int min_data_size, int data_size,
3750 int empty, u32 min_slot)
Chris Mason44871b12009-03-13 10:04:31 -04003751{
3752 struct extent_buffer *left = path->nodes[0];
3753 struct extent_buffer *right;
3754 struct extent_buffer *upper;
3755 int slot;
3756 int free_space;
3757 u32 left_nritems;
3758 int ret;
3759
3760 if (!path->nodes[1])
3761 return 1;
3762
3763 slot = path->slots[1];
3764 upper = path->nodes[1];
3765 if (slot >= btrfs_header_nritems(upper) - 1)
3766 return 1;
3767
3768 btrfs_assert_tree_locked(path->nodes[1]);
3769
3770 right = read_node_slot(root, upper, slot + 1);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00003771 if (right == NULL)
3772 return 1;
3773
Chris Mason44871b12009-03-13 10:04:31 -04003774 btrfs_tree_lock(right);
3775 btrfs_set_lock_blocking(right);
3776
3777 free_space = btrfs_leaf_free_space(root, right);
3778 if (free_space < data_size)
3779 goto out_unlock;
3780
3781 /* cow and double check */
3782 ret = btrfs_cow_block(trans, root, right, upper,
3783 slot + 1, &right);
3784 if (ret)
3785 goto out_unlock;
3786
3787 free_space = btrfs_leaf_free_space(root, right);
3788 if (free_space < data_size)
3789 goto out_unlock;
3790
3791 left_nritems = btrfs_header_nritems(left);
3792 if (left_nritems == 0)
3793 goto out_unlock;
3794
Filipe David Borba Manana2ef1fed2013-12-04 22:17:39 +00003795 if (path->slots[0] == left_nritems && !empty) {
3796 /* Key greater than all keys in the leaf, right neighbor has
3797 * enough room for it and we're not emptying our leaf to delete
3798 * it, therefore use right neighbor to insert the new item and
3799 * no need to touch/dirty our left leaft. */
3800 btrfs_tree_unlock(left);
3801 free_extent_buffer(left);
3802 path->nodes[0] = right;
3803 path->slots[0] = 0;
3804 path->slots[1]++;
3805 return 0;
3806 }
3807
Chris Mason99d8f832010-07-07 10:51:48 -04003808 return __push_leaf_right(trans, root, path, min_data_size, empty,
3809 right, free_space, left_nritems, min_slot);
Chris Mason44871b12009-03-13 10:04:31 -04003810out_unlock:
3811 btrfs_tree_unlock(right);
3812 free_extent_buffer(right);
3813 return 1;
3814}
3815
3816/*
Chris Mason74123bd2007-02-02 11:05:29 -05003817 * push some data in the path leaf to the left, trying to free up at
3818 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04003819 *
3820 * max_slot can put a limit on how far into the leaf we'll push items. The
3821 * item at 'max_slot' won't be touched. Use (u32)-1 to make us do all the
3822 * items
Chris Mason74123bd2007-02-02 11:05:29 -05003823 */
Chris Mason44871b12009-03-13 10:04:31 -04003824static noinline int __push_leaf_left(struct btrfs_trans_handle *trans,
3825 struct btrfs_root *root,
3826 struct btrfs_path *path, int data_size,
3827 int empty, struct extent_buffer *left,
Chris Mason99d8f832010-07-07 10:51:48 -04003828 int free_space, u32 right_nritems,
3829 u32 max_slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003830{
Chris Mason5f39d392007-10-15 16:14:19 -04003831 struct btrfs_disk_key disk_key;
3832 struct extent_buffer *right = path->nodes[0];
Chris Masonbe0e5c02007-01-26 15:51:26 -05003833 int i;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003834 int push_space = 0;
3835 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04003836 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -04003837 u32 old_left_nritems;
Chris Mason34a38212007-11-07 13:31:03 -05003838 u32 nr;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003839 int ret = 0;
Chris Masondb945352007-10-15 16:15:53 -04003840 u32 this_item_size;
3841 u32 old_left_item_size;
Chris Masoncfed81a2012-03-03 07:40:03 -05003842 struct btrfs_map_token token;
3843
3844 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003845
Chris Mason34a38212007-11-07 13:31:03 -05003846 if (empty)
Chris Mason99d8f832010-07-07 10:51:48 -04003847 nr = min(right_nritems, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003848 else
Chris Mason99d8f832010-07-07 10:51:48 -04003849 nr = min(right_nritems - 1, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003850
3851 for (i = 0; i < nr; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003852 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003853
Zheng Yan31840ae2008-09-23 13:14:14 -04003854 if (!empty && push_items > 0) {
3855 if (path->slots[0] < i)
3856 break;
3857 if (path->slots[0] == i) {
3858 int space = btrfs_leaf_free_space(root, right);
3859 if (space + push_space * 2 > free_space)
3860 break;
3861 }
3862 }
3863
Chris Masonbe0e5c02007-01-26 15:51:26 -05003864 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05003865 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04003866
3867 this_item_size = btrfs_item_size(right, item);
3868 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003869 break;
Chris Masondb945352007-10-15 16:15:53 -04003870
Chris Masonbe0e5c02007-01-26 15:51:26 -05003871 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04003872 push_space += this_item_size + sizeof(*item);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003873 }
Chris Masondb945352007-10-15 16:15:53 -04003874
Chris Masonbe0e5c02007-01-26 15:51:26 -05003875 if (push_items == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04003876 ret = 1;
3877 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003878 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303879 WARN_ON(!empty && push_items == btrfs_header_nritems(right));
Chris Mason5f39d392007-10-15 16:14:19 -04003880
Chris Masonbe0e5c02007-01-26 15:51:26 -05003881 /* push data from right to left */
Chris Mason5f39d392007-10-15 16:14:19 -04003882 copy_extent_buffer(left, right,
3883 btrfs_item_nr_offset(btrfs_header_nritems(left)),
3884 btrfs_item_nr_offset(0),
3885 push_items * sizeof(struct btrfs_item));
3886
Chris Mason123abc82007-03-14 14:14:43 -04003887 push_space = BTRFS_LEAF_DATA_SIZE(root) -
Chris Masond3977122009-01-05 21:25:51 -05003888 btrfs_item_offset_nr(right, push_items - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003889
3890 copy_extent_buffer(left, right, btrfs_leaf_data(left) +
Chris Masond6025572007-03-30 14:27:56 -04003891 leaf_data_end(root, left) - push_space,
3892 btrfs_leaf_data(right) +
Chris Mason5f39d392007-10-15 16:14:19 -04003893 btrfs_item_offset_nr(right, push_items - 1),
Chris Masond6025572007-03-30 14:27:56 -04003894 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04003895 old_left_nritems = btrfs_header_nritems(left);
Yan Zheng87b29b22008-12-17 10:21:48 -05003896 BUG_ON(old_left_nritems <= 0);
Chris Masoneb60cea2007-02-02 09:18:22 -05003897
Chris Masondb945352007-10-15 16:15:53 -04003898 old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1);
Chris Mason0783fcf2007-03-12 20:12:07 -04003899 for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003900 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003901
Ross Kirkdd3cc162013-09-16 15:58:09 +01003902 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003903
Chris Masoncfed81a2012-03-03 07:40:03 -05003904 ioff = btrfs_token_item_offset(left, item, &token);
3905 btrfs_set_token_item_offset(left, item,
3906 ioff - (BTRFS_LEAF_DATA_SIZE(root) - old_left_item_size),
3907 &token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003908 }
Chris Mason5f39d392007-10-15 16:14:19 -04003909 btrfs_set_header_nritems(left, old_left_nritems + push_items);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003910
3911 /* fixup right node */
Julia Lawall31b1a2b2012-11-03 10:58:34 +00003912 if (push_items > right_nritems)
3913 WARN(1, KERN_CRIT "push items %d nr %u\n", push_items,
Chris Masond3977122009-01-05 21:25:51 -05003914 right_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003915
Chris Mason34a38212007-11-07 13:31:03 -05003916 if (push_items < right_nritems) {
3917 push_space = btrfs_item_offset_nr(right, push_items - 1) -
3918 leaf_data_end(root, right);
3919 memmove_extent_buffer(right, btrfs_leaf_data(right) +
3920 BTRFS_LEAF_DATA_SIZE(root) - push_space,
3921 btrfs_leaf_data(right) +
3922 leaf_data_end(root, right), push_space);
3923
3924 memmove_extent_buffer(right, btrfs_item_nr_offset(0),
Chris Mason5f39d392007-10-15 16:14:19 -04003925 btrfs_item_nr_offset(push_items),
3926 (btrfs_header_nritems(right) - push_items) *
3927 sizeof(struct btrfs_item));
Chris Mason34a38212007-11-07 13:31:03 -05003928 }
Yaneef1c492007-11-26 10:58:13 -05003929 right_nritems -= push_items;
3930 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04003931 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -04003932 for (i = 0; i < right_nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003933 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003934
Chris Masoncfed81a2012-03-03 07:40:03 -05003935 push_space = push_space - btrfs_token_item_size(right,
3936 item, &token);
3937 btrfs_set_token_item_offset(right, item, push_space, &token);
Chris Masondb945352007-10-15 16:15:53 -04003938 }
Chris Masoneb60cea2007-02-02 09:18:22 -05003939
Chris Mason5f39d392007-10-15 16:14:19 -04003940 btrfs_mark_buffer_dirty(left);
Chris Mason34a38212007-11-07 13:31:03 -05003941 if (right_nritems)
3942 btrfs_mark_buffer_dirty(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003943 else
3944 clean_tree_block(trans, root, right);
Chris Mason098f59c2007-05-11 11:33:21 -04003945
Chris Mason5f39d392007-10-15 16:14:19 -04003946 btrfs_item_key(right, &disk_key, 0);
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00003947 fixup_low_keys(root, path, &disk_key, 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003948
3949 /* then fixup the leaf pointer in the path */
3950 if (path->slots[0] < push_items) {
3951 path->slots[0] += old_left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04003952 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04003953 free_extent_buffer(path->nodes[0]);
3954 path->nodes[0] = left;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003955 path->slots[1] -= 1;
3956 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003957 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04003958 free_extent_buffer(left);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003959 path->slots[0] -= push_items;
3960 }
Chris Masoneb60cea2007-02-02 09:18:22 -05003961 BUG_ON(path->slots[0] < 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003962 return ret;
Chris Mason925baed2008-06-25 16:01:30 -04003963out:
3964 btrfs_tree_unlock(left);
3965 free_extent_buffer(left);
3966 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003967}
3968
Chris Mason74123bd2007-02-02 11:05:29 -05003969/*
Chris Mason44871b12009-03-13 10:04:31 -04003970 * push some data in the path leaf to the left, trying to free up at
3971 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04003972 *
3973 * max_slot can put a limit on how far into the leaf we'll push items. The
3974 * item at 'max_slot' won't be touched. Use (u32)-1 to make us push all the
3975 * items
Chris Mason44871b12009-03-13 10:04:31 -04003976 */
3977static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04003978 *root, struct btrfs_path *path, int min_data_size,
3979 int data_size, int empty, u32 max_slot)
Chris Mason44871b12009-03-13 10:04:31 -04003980{
3981 struct extent_buffer *right = path->nodes[0];
3982 struct extent_buffer *left;
3983 int slot;
3984 int free_space;
3985 u32 right_nritems;
3986 int ret = 0;
3987
3988 slot = path->slots[1];
3989 if (slot == 0)
3990 return 1;
3991 if (!path->nodes[1])
3992 return 1;
3993
3994 right_nritems = btrfs_header_nritems(right);
3995 if (right_nritems == 0)
3996 return 1;
3997
3998 btrfs_assert_tree_locked(path->nodes[1]);
3999
4000 left = read_node_slot(root, path->nodes[1], slot - 1);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00004001 if (left == NULL)
4002 return 1;
4003
Chris Mason44871b12009-03-13 10:04:31 -04004004 btrfs_tree_lock(left);
4005 btrfs_set_lock_blocking(left);
4006
4007 free_space = btrfs_leaf_free_space(root, left);
4008 if (free_space < data_size) {
4009 ret = 1;
4010 goto out;
4011 }
4012
4013 /* cow and double check */
4014 ret = btrfs_cow_block(trans, root, left,
4015 path->nodes[1], slot - 1, &left);
4016 if (ret) {
4017 /* we hit -ENOSPC, but it isn't fatal here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004018 if (ret == -ENOSPC)
4019 ret = 1;
Chris Mason44871b12009-03-13 10:04:31 -04004020 goto out;
4021 }
4022
4023 free_space = btrfs_leaf_free_space(root, left);
4024 if (free_space < data_size) {
4025 ret = 1;
4026 goto out;
4027 }
4028
Chris Mason99d8f832010-07-07 10:51:48 -04004029 return __push_leaf_left(trans, root, path, min_data_size,
4030 empty, left, free_space, right_nritems,
4031 max_slot);
Chris Mason44871b12009-03-13 10:04:31 -04004032out:
4033 btrfs_tree_unlock(left);
4034 free_extent_buffer(left);
4035 return ret;
4036}
4037
4038/*
Chris Mason74123bd2007-02-02 11:05:29 -05004039 * split the path's leaf in two, making sure there is at least data_size
4040 * available for the resulting leaf level of the path.
4041 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01004042static noinline void copy_for_split(struct btrfs_trans_handle *trans,
4043 struct btrfs_root *root,
4044 struct btrfs_path *path,
4045 struct extent_buffer *l,
4046 struct extent_buffer *right,
4047 int slot, int mid, int nritems)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004048{
Chris Masonbe0e5c02007-01-26 15:51:26 -05004049 int data_copy_size;
4050 int rt_data_off;
4051 int i;
Chris Masond4dbff92007-04-04 14:08:15 -04004052 struct btrfs_disk_key disk_key;
Chris Masoncfed81a2012-03-03 07:40:03 -05004053 struct btrfs_map_token token;
4054
4055 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004056
Chris Mason5f39d392007-10-15 16:14:19 -04004057 nritems = nritems - mid;
4058 btrfs_set_header_nritems(right, nritems);
4059 data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(root, l);
4060
4061 copy_extent_buffer(right, l, btrfs_item_nr_offset(0),
4062 btrfs_item_nr_offset(mid),
4063 nritems * sizeof(struct btrfs_item));
4064
4065 copy_extent_buffer(right, l,
Chris Masond6025572007-03-30 14:27:56 -04004066 btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
4067 data_copy_size, btrfs_leaf_data(l) +
4068 leaf_data_end(root, l), data_copy_size);
Chris Mason74123bd2007-02-02 11:05:29 -05004069
Chris Mason5f39d392007-10-15 16:14:19 -04004070 rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
4071 btrfs_item_end_nr(l, mid);
4072
4073 for (i = 0; i < nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01004074 struct btrfs_item *item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04004075 u32 ioff;
4076
Chris Masoncfed81a2012-03-03 07:40:03 -05004077 ioff = btrfs_token_item_offset(right, item, &token);
4078 btrfs_set_token_item_offset(right, item,
4079 ioff + rt_data_off, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004080 }
Chris Mason74123bd2007-02-02 11:05:29 -05004081
Chris Mason5f39d392007-10-15 16:14:19 -04004082 btrfs_set_header_nritems(l, mid);
Chris Mason5f39d392007-10-15 16:14:19 -04004083 btrfs_item_key(right, &disk_key, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004084 insert_ptr(trans, root, path, &disk_key, right->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02004085 path->slots[1] + 1, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004086
4087 btrfs_mark_buffer_dirty(right);
4088 btrfs_mark_buffer_dirty(l);
Chris Masoneb60cea2007-02-02 09:18:22 -05004089 BUG_ON(path->slots[0] != slot);
Chris Mason5f39d392007-10-15 16:14:19 -04004090
Chris Masonbe0e5c02007-01-26 15:51:26 -05004091 if (mid <= slot) {
Chris Mason925baed2008-06-25 16:01:30 -04004092 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04004093 free_extent_buffer(path->nodes[0]);
4094 path->nodes[0] = right;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004095 path->slots[0] -= mid;
4096 path->slots[1] += 1;
Chris Mason925baed2008-06-25 16:01:30 -04004097 } else {
4098 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04004099 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04004100 }
Chris Mason5f39d392007-10-15 16:14:19 -04004101
Chris Masoneb60cea2007-02-02 09:18:22 -05004102 BUG_ON(path->slots[0] < 0);
Chris Mason44871b12009-03-13 10:04:31 -04004103}
4104
4105/*
Chris Mason99d8f832010-07-07 10:51:48 -04004106 * double splits happen when we need to insert a big item in the middle
4107 * of a leaf. A double split can leave us with 3 mostly empty leaves:
4108 * leaf: [ slots 0 - N] [ our target ] [ N + 1 - total in leaf ]
4109 * A B C
4110 *
4111 * We avoid this by trying to push the items on either side of our target
4112 * into the adjacent leaves. If all goes well we can avoid the double split
4113 * completely.
4114 */
4115static noinline int push_for_double_split(struct btrfs_trans_handle *trans,
4116 struct btrfs_root *root,
4117 struct btrfs_path *path,
4118 int data_size)
4119{
4120 int ret;
4121 int progress = 0;
4122 int slot;
4123 u32 nritems;
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004124 int space_needed = data_size;
Chris Mason99d8f832010-07-07 10:51:48 -04004125
4126 slot = path->slots[0];
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004127 if (slot < btrfs_header_nritems(path->nodes[0]))
4128 space_needed -= btrfs_leaf_free_space(root, path->nodes[0]);
Chris Mason99d8f832010-07-07 10:51:48 -04004129
4130 /*
4131 * try to push all the items after our slot into the
4132 * right leaf
4133 */
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004134 ret = push_leaf_right(trans, root, path, 1, space_needed, 0, slot);
Chris Mason99d8f832010-07-07 10:51:48 -04004135 if (ret < 0)
4136 return ret;
4137
4138 if (ret == 0)
4139 progress++;
4140
4141 nritems = btrfs_header_nritems(path->nodes[0]);
4142 /*
4143 * our goal is to get our slot at the start or end of a leaf. If
4144 * we've done so we're done
4145 */
4146 if (path->slots[0] == 0 || path->slots[0] == nritems)
4147 return 0;
4148
4149 if (btrfs_leaf_free_space(root, path->nodes[0]) >= data_size)
4150 return 0;
4151
4152 /* try to push all the items before our slot into the next leaf */
4153 slot = path->slots[0];
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004154 ret = push_leaf_left(trans, root, path, 1, space_needed, 0, slot);
Chris Mason99d8f832010-07-07 10:51:48 -04004155 if (ret < 0)
4156 return ret;
4157
4158 if (ret == 0)
4159 progress++;
4160
4161 if (progress)
4162 return 0;
4163 return 1;
4164}
4165
4166/*
Chris Mason44871b12009-03-13 10:04:31 -04004167 * split the path's leaf in two, making sure there is at least data_size
4168 * available for the resulting leaf level of the path.
4169 *
4170 * returns 0 if all went well and < 0 on failure.
4171 */
4172static noinline int split_leaf(struct btrfs_trans_handle *trans,
4173 struct btrfs_root *root,
4174 struct btrfs_key *ins_key,
4175 struct btrfs_path *path, int data_size,
4176 int extend)
4177{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004178 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04004179 struct extent_buffer *l;
4180 u32 nritems;
4181 int mid;
4182 int slot;
4183 struct extent_buffer *right;
4184 int ret = 0;
4185 int wret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004186 int split;
Chris Mason44871b12009-03-13 10:04:31 -04004187 int num_doubles = 0;
Chris Mason99d8f832010-07-07 10:51:48 -04004188 int tried_avoid_double = 0;
Chris Mason44871b12009-03-13 10:04:31 -04004189
Yan, Zhenga5719522009-09-24 09:17:31 -04004190 l = path->nodes[0];
4191 slot = path->slots[0];
4192 if (extend && data_size + btrfs_item_size_nr(l, slot) +
4193 sizeof(struct btrfs_item) > BTRFS_LEAF_DATA_SIZE(root))
4194 return -EOVERFLOW;
4195
Chris Mason44871b12009-03-13 10:04:31 -04004196 /* first try to make some room by pushing left and right */
Liu Bo33157e02013-05-22 12:07:06 +00004197 if (data_size && path->nodes[1]) {
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004198 int space_needed = data_size;
4199
4200 if (slot < btrfs_header_nritems(l))
4201 space_needed -= btrfs_leaf_free_space(root, l);
4202
4203 wret = push_leaf_right(trans, root, path, space_needed,
4204 space_needed, 0, 0);
Chris Mason44871b12009-03-13 10:04:31 -04004205 if (wret < 0)
4206 return wret;
4207 if (wret) {
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004208 wret = push_leaf_left(trans, root, path, space_needed,
4209 space_needed, 0, (u32)-1);
Chris Mason44871b12009-03-13 10:04:31 -04004210 if (wret < 0)
4211 return wret;
4212 }
4213 l = path->nodes[0];
4214
4215 /* did the pushes work? */
4216 if (btrfs_leaf_free_space(root, l) >= data_size)
4217 return 0;
4218 }
4219
4220 if (!path->nodes[1]) {
Liu Bofdd99c72013-05-22 12:06:51 +00004221 ret = insert_new_root(trans, root, path, 1);
Chris Mason44871b12009-03-13 10:04:31 -04004222 if (ret)
4223 return ret;
4224 }
4225again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004226 split = 1;
Chris Mason44871b12009-03-13 10:04:31 -04004227 l = path->nodes[0];
4228 slot = path->slots[0];
4229 nritems = btrfs_header_nritems(l);
4230 mid = (nritems + 1) / 2;
4231
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004232 if (mid <= slot) {
4233 if (nritems == 1 ||
4234 leaf_space_used(l, mid, nritems - mid) + data_size >
4235 BTRFS_LEAF_DATA_SIZE(root)) {
4236 if (slot >= nritems) {
4237 split = 0;
4238 } else {
4239 mid = slot;
4240 if (mid != nritems &&
4241 leaf_space_used(l, mid, nritems - mid) +
4242 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason99d8f832010-07-07 10:51:48 -04004243 if (data_size && !tried_avoid_double)
4244 goto push_for_double;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004245 split = 2;
4246 }
4247 }
4248 }
4249 } else {
4250 if (leaf_space_used(l, 0, mid) + data_size >
4251 BTRFS_LEAF_DATA_SIZE(root)) {
4252 if (!extend && data_size && slot == 0) {
4253 split = 0;
4254 } else if ((extend || !data_size) && slot == 0) {
4255 mid = 1;
4256 } else {
4257 mid = slot;
4258 if (mid != nritems &&
4259 leaf_space_used(l, mid, nritems - mid) +
4260 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason99d8f832010-07-07 10:51:48 -04004261 if (data_size && !tried_avoid_double)
4262 goto push_for_double;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304263 split = 2;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004264 }
4265 }
4266 }
4267 }
4268
4269 if (split == 0)
4270 btrfs_cpu_key_to_disk(&disk_key, ins_key);
4271 else
4272 btrfs_item_key(l, &disk_key, mid);
4273
David Sterba4d75f8a2014-06-15 01:54:12 +02004274 right = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid,
4275 &disk_key, 0, l->start, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004276 if (IS_ERR(right))
Chris Mason44871b12009-03-13 10:04:31 -04004277 return PTR_ERR(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004278
David Sterba707e8a02014-06-04 19:22:26 +02004279 root_add_used(root, root->nodesize);
Chris Mason44871b12009-03-13 10:04:31 -04004280
4281 memset_extent_buffer(right, 0, 0, sizeof(struct btrfs_header));
4282 btrfs_set_header_bytenr(right, right->start);
4283 btrfs_set_header_generation(right, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004284 btrfs_set_header_backref_rev(right, BTRFS_MIXED_BACKREF_REV);
Chris Mason44871b12009-03-13 10:04:31 -04004285 btrfs_set_header_owner(right, root->root_key.objectid);
4286 btrfs_set_header_level(right, 0);
4287 write_extent_buffer(right, root->fs_info->fsid,
Ross Kirk0a4e5582013-09-24 10:12:38 +01004288 btrfs_header_fsid(), BTRFS_FSID_SIZE);
Chris Mason44871b12009-03-13 10:04:31 -04004289
4290 write_extent_buffer(right, root->fs_info->chunk_tree_uuid,
Geert Uytterhoevenb308bc22013-08-20 13:20:15 +02004291 btrfs_header_chunk_tree_uuid(right),
Chris Mason44871b12009-03-13 10:04:31 -04004292 BTRFS_UUID_SIZE);
4293
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004294 if (split == 0) {
4295 if (mid <= slot) {
4296 btrfs_set_header_nritems(right, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004297 insert_ptr(trans, root, path, &disk_key, right->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02004298 path->slots[1] + 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004299 btrfs_tree_unlock(path->nodes[0]);
4300 free_extent_buffer(path->nodes[0]);
4301 path->nodes[0] = right;
4302 path->slots[0] = 0;
4303 path->slots[1] += 1;
4304 } else {
4305 btrfs_set_header_nritems(right, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004306 insert_ptr(trans, root, path, &disk_key, right->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02004307 path->slots[1], 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004308 btrfs_tree_unlock(path->nodes[0]);
4309 free_extent_buffer(path->nodes[0]);
4310 path->nodes[0] = right;
4311 path->slots[0] = 0;
Jeff Mahoney143bede2012-03-01 14:56:26 +01004312 if (path->slots[1] == 0)
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00004313 fixup_low_keys(root, path, &disk_key, 1);
Chris Mason44871b12009-03-13 10:04:31 -04004314 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004315 btrfs_mark_buffer_dirty(right);
4316 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04004317 }
4318
Jeff Mahoney143bede2012-03-01 14:56:26 +01004319 copy_for_split(trans, root, path, l, right, slot, mid, nritems);
Chris Mason44871b12009-03-13 10:04:31 -04004320
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004321 if (split == 2) {
Chris Masoncc0c5532007-10-25 15:42:57 -04004322 BUG_ON(num_doubles != 0);
4323 num_doubles++;
4324 goto again;
Chris Mason3326d1b2007-10-15 16:18:25 -04004325 }
Chris Mason44871b12009-03-13 10:04:31 -04004326
Jeff Mahoney143bede2012-03-01 14:56:26 +01004327 return 0;
Chris Mason99d8f832010-07-07 10:51:48 -04004328
4329push_for_double:
4330 push_for_double_split(trans, root, path, data_size);
4331 tried_avoid_double = 1;
4332 if (btrfs_leaf_free_space(root, path->nodes[0]) >= data_size)
4333 return 0;
4334 goto again;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004335}
4336
Yan, Zhengad48fd752009-11-12 09:33:58 +00004337static noinline int setup_leaf_for_split(struct btrfs_trans_handle *trans,
4338 struct btrfs_root *root,
4339 struct btrfs_path *path, int ins_len)
Chris Mason459931e2008-12-10 09:10:46 -05004340{
Yan, Zhengad48fd752009-11-12 09:33:58 +00004341 struct btrfs_key key;
Chris Mason459931e2008-12-10 09:10:46 -05004342 struct extent_buffer *leaf;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004343 struct btrfs_file_extent_item *fi;
4344 u64 extent_len = 0;
4345 u32 item_size;
4346 int ret;
Chris Mason459931e2008-12-10 09:10:46 -05004347
4348 leaf = path->nodes[0];
Yan, Zhengad48fd752009-11-12 09:33:58 +00004349 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4350
4351 BUG_ON(key.type != BTRFS_EXTENT_DATA_KEY &&
4352 key.type != BTRFS_EXTENT_CSUM_KEY);
4353
4354 if (btrfs_leaf_free_space(root, leaf) >= ins_len)
4355 return 0;
Chris Mason459931e2008-12-10 09:10:46 -05004356
4357 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004358 if (key.type == BTRFS_EXTENT_DATA_KEY) {
4359 fi = btrfs_item_ptr(leaf, path->slots[0],
4360 struct btrfs_file_extent_item);
4361 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
4362 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004363 btrfs_release_path(path);
Chris Mason459931e2008-12-10 09:10:46 -05004364
Chris Mason459931e2008-12-10 09:10:46 -05004365 path->keep_locks = 1;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004366 path->search_for_split = 1;
4367 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Chris Mason459931e2008-12-10 09:10:46 -05004368 path->search_for_split = 0;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004369 if (ret < 0)
4370 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004371
Yan, Zhengad48fd752009-11-12 09:33:58 +00004372 ret = -EAGAIN;
4373 leaf = path->nodes[0];
Chris Mason459931e2008-12-10 09:10:46 -05004374 /* if our item isn't there or got smaller, return now */
Yan, Zhengad48fd752009-11-12 09:33:58 +00004375 if (ret > 0 || item_size != btrfs_item_size_nr(leaf, path->slots[0]))
4376 goto err;
4377
Chris Mason109f6ae2010-04-02 09:20:18 -04004378 /* the leaf has changed, it now has room. return now */
4379 if (btrfs_leaf_free_space(root, path->nodes[0]) >= ins_len)
4380 goto err;
4381
Yan, Zhengad48fd752009-11-12 09:33:58 +00004382 if (key.type == BTRFS_EXTENT_DATA_KEY) {
4383 fi = btrfs_item_ptr(leaf, path->slots[0],
4384 struct btrfs_file_extent_item);
4385 if (extent_len != btrfs_file_extent_num_bytes(leaf, fi))
4386 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004387 }
4388
Chris Masonb9473432009-03-13 11:00:37 -04004389 btrfs_set_path_blocking(path);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004390 ret = split_leaf(trans, root, &key, path, ins_len, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004391 if (ret)
4392 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004393
Yan, Zhengad48fd752009-11-12 09:33:58 +00004394 path->keep_locks = 0;
Chris Masonb9473432009-03-13 11:00:37 -04004395 btrfs_unlock_up_safe(path, 1);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004396 return 0;
4397err:
4398 path->keep_locks = 0;
4399 return ret;
4400}
4401
4402static noinline int split_item(struct btrfs_trans_handle *trans,
4403 struct btrfs_root *root,
4404 struct btrfs_path *path,
4405 struct btrfs_key *new_key,
4406 unsigned long split_offset)
4407{
4408 struct extent_buffer *leaf;
4409 struct btrfs_item *item;
4410 struct btrfs_item *new_item;
4411 int slot;
4412 char *buf;
4413 u32 nritems;
4414 u32 item_size;
4415 u32 orig_offset;
4416 struct btrfs_disk_key disk_key;
4417
Chris Masonb9473432009-03-13 11:00:37 -04004418 leaf = path->nodes[0];
4419 BUG_ON(btrfs_leaf_free_space(root, leaf) < sizeof(struct btrfs_item));
4420
Chris Masonb4ce94d2009-02-04 09:25:08 -05004421 btrfs_set_path_blocking(path);
4422
Ross Kirkdd3cc162013-09-16 15:58:09 +01004423 item = btrfs_item_nr(path->slots[0]);
Chris Mason459931e2008-12-10 09:10:46 -05004424 orig_offset = btrfs_item_offset(leaf, item);
4425 item_size = btrfs_item_size(leaf, item);
4426
Chris Mason459931e2008-12-10 09:10:46 -05004427 buf = kmalloc(item_size, GFP_NOFS);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004428 if (!buf)
4429 return -ENOMEM;
4430
Chris Mason459931e2008-12-10 09:10:46 -05004431 read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf,
4432 path->slots[0]), item_size);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004433
Chris Mason459931e2008-12-10 09:10:46 -05004434 slot = path->slots[0] + 1;
Chris Mason459931e2008-12-10 09:10:46 -05004435 nritems = btrfs_header_nritems(leaf);
Chris Mason459931e2008-12-10 09:10:46 -05004436 if (slot != nritems) {
4437 /* shift the items */
4438 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1),
Yan, Zhengad48fd752009-11-12 09:33:58 +00004439 btrfs_item_nr_offset(slot),
4440 (nritems - slot) * sizeof(struct btrfs_item));
Chris Mason459931e2008-12-10 09:10:46 -05004441 }
4442
4443 btrfs_cpu_key_to_disk(&disk_key, new_key);
4444 btrfs_set_item_key(leaf, &disk_key, slot);
4445
Ross Kirkdd3cc162013-09-16 15:58:09 +01004446 new_item = btrfs_item_nr(slot);
Chris Mason459931e2008-12-10 09:10:46 -05004447
4448 btrfs_set_item_offset(leaf, new_item, orig_offset);
4449 btrfs_set_item_size(leaf, new_item, item_size - split_offset);
4450
4451 btrfs_set_item_offset(leaf, item,
4452 orig_offset + item_size - split_offset);
4453 btrfs_set_item_size(leaf, item, split_offset);
4454
4455 btrfs_set_header_nritems(leaf, nritems + 1);
4456
4457 /* write the data for the start of the original item */
4458 write_extent_buffer(leaf, buf,
4459 btrfs_item_ptr_offset(leaf, path->slots[0]),
4460 split_offset);
4461
4462 /* write the data for the new item */
4463 write_extent_buffer(leaf, buf + split_offset,
4464 btrfs_item_ptr_offset(leaf, slot),
4465 item_size - split_offset);
4466 btrfs_mark_buffer_dirty(leaf);
4467
Yan, Zhengad48fd752009-11-12 09:33:58 +00004468 BUG_ON(btrfs_leaf_free_space(root, leaf) < 0);
Chris Mason459931e2008-12-10 09:10:46 -05004469 kfree(buf);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004470 return 0;
4471}
4472
4473/*
4474 * This function splits a single item into two items,
4475 * giving 'new_key' to the new item and splitting the
4476 * old one at split_offset (from the start of the item).
4477 *
4478 * The path may be released by this operation. After
4479 * the split, the path is pointing to the old item. The
4480 * new item is going to be in the same node as the old one.
4481 *
4482 * Note, the item being split must be smaller enough to live alone on
4483 * a tree block with room for one extra struct btrfs_item
4484 *
4485 * This allows us to split the item in place, keeping a lock on the
4486 * leaf the entire time.
4487 */
4488int btrfs_split_item(struct btrfs_trans_handle *trans,
4489 struct btrfs_root *root,
4490 struct btrfs_path *path,
4491 struct btrfs_key *new_key,
4492 unsigned long split_offset)
4493{
4494 int ret;
4495 ret = setup_leaf_for_split(trans, root, path,
4496 sizeof(struct btrfs_item));
4497 if (ret)
4498 return ret;
4499
4500 ret = split_item(trans, root, path, new_key, split_offset);
Chris Mason459931e2008-12-10 09:10:46 -05004501 return ret;
4502}
4503
4504/*
Yan, Zhengad48fd752009-11-12 09:33:58 +00004505 * This function duplicate a item, giving 'new_key' to the new item.
4506 * It guarantees both items live in the same tree leaf and the new item
4507 * is contiguous with the original item.
4508 *
4509 * This allows us to split file extent in place, keeping a lock on the
4510 * leaf the entire time.
4511 */
4512int btrfs_duplicate_item(struct btrfs_trans_handle *trans,
4513 struct btrfs_root *root,
4514 struct btrfs_path *path,
4515 struct btrfs_key *new_key)
4516{
4517 struct extent_buffer *leaf;
4518 int ret;
4519 u32 item_size;
4520
4521 leaf = path->nodes[0];
4522 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
4523 ret = setup_leaf_for_split(trans, root, path,
4524 item_size + sizeof(struct btrfs_item));
4525 if (ret)
4526 return ret;
4527
4528 path->slots[0]++;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004529 setup_items_for_insert(root, path, new_key, &item_size,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004530 item_size, item_size +
4531 sizeof(struct btrfs_item), 1);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004532 leaf = path->nodes[0];
4533 memcpy_extent_buffer(leaf,
4534 btrfs_item_ptr_offset(leaf, path->slots[0]),
4535 btrfs_item_ptr_offset(leaf, path->slots[0] - 1),
4536 item_size);
4537 return 0;
4538}
4539
4540/*
Chris Masond352ac62008-09-29 15:18:18 -04004541 * make the item pointed to by the path smaller. new_size indicates
4542 * how small to make it, and from_end tells us if we just chop bytes
4543 * off the end of the item or if we shift the item to chop bytes off
4544 * the front.
4545 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004546void btrfs_truncate_item(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004547 u32 new_size, int from_end)
Chris Masonb18c6682007-04-17 13:26:50 -04004548{
Chris Masonb18c6682007-04-17 13:26:50 -04004549 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04004550 struct extent_buffer *leaf;
4551 struct btrfs_item *item;
Chris Masonb18c6682007-04-17 13:26:50 -04004552 u32 nritems;
4553 unsigned int data_end;
4554 unsigned int old_data_start;
4555 unsigned int old_size;
4556 unsigned int size_diff;
4557 int i;
Chris Masoncfed81a2012-03-03 07:40:03 -05004558 struct btrfs_map_token token;
4559
4560 btrfs_init_map_token(&token);
Chris Masonb18c6682007-04-17 13:26:50 -04004561
Chris Mason5f39d392007-10-15 16:14:19 -04004562 leaf = path->nodes[0];
Chris Mason179e29e2007-11-01 11:28:41 -04004563 slot = path->slots[0];
4564
4565 old_size = btrfs_item_size_nr(leaf, slot);
4566 if (old_size == new_size)
Jeff Mahoney143bede2012-03-01 14:56:26 +01004567 return;
Chris Masonb18c6682007-04-17 13:26:50 -04004568
Chris Mason5f39d392007-10-15 16:14:19 -04004569 nritems = btrfs_header_nritems(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004570 data_end = leaf_data_end(root, leaf);
4571
Chris Mason5f39d392007-10-15 16:14:19 -04004572 old_data_start = btrfs_item_offset_nr(leaf, slot);
Chris Mason179e29e2007-11-01 11:28:41 -04004573
Chris Masonb18c6682007-04-17 13:26:50 -04004574 size_diff = old_size - new_size;
4575
4576 BUG_ON(slot < 0);
4577 BUG_ON(slot >= nritems);
4578
4579 /*
4580 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4581 */
4582 /* first correct the data pointers */
4583 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004584 u32 ioff;
Ross Kirkdd3cc162013-09-16 15:58:09 +01004585 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04004586
Chris Masoncfed81a2012-03-03 07:40:03 -05004587 ioff = btrfs_token_item_offset(leaf, item, &token);
4588 btrfs_set_token_item_offset(leaf, item,
4589 ioff + size_diff, &token);
Chris Masonb18c6682007-04-17 13:26:50 -04004590 }
Chris Masondb945352007-10-15 16:15:53 -04004591
Chris Masonb18c6682007-04-17 13:26:50 -04004592 /* shift the data */
Chris Mason179e29e2007-11-01 11:28:41 -04004593 if (from_end) {
4594 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
4595 data_end + size_diff, btrfs_leaf_data(leaf) +
4596 data_end, old_data_start + new_size - data_end);
4597 } else {
4598 struct btrfs_disk_key disk_key;
4599 u64 offset;
4600
4601 btrfs_item_key(leaf, &disk_key, slot);
4602
4603 if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) {
4604 unsigned long ptr;
4605 struct btrfs_file_extent_item *fi;
4606
4607 fi = btrfs_item_ptr(leaf, slot,
4608 struct btrfs_file_extent_item);
4609 fi = (struct btrfs_file_extent_item *)(
4610 (unsigned long)fi - size_diff);
4611
4612 if (btrfs_file_extent_type(leaf, fi) ==
4613 BTRFS_FILE_EXTENT_INLINE) {
4614 ptr = btrfs_item_ptr_offset(leaf, slot);
4615 memmove_extent_buffer(leaf, ptr,
Chris Masond3977122009-01-05 21:25:51 -05004616 (unsigned long)fi,
David Sterba7ec20af2014-07-24 17:34:58 +02004617 BTRFS_FILE_EXTENT_INLINE_DATA_START);
Chris Mason179e29e2007-11-01 11:28:41 -04004618 }
4619 }
4620
4621 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
4622 data_end + size_diff, btrfs_leaf_data(leaf) +
4623 data_end, old_data_start - data_end);
4624
4625 offset = btrfs_disk_key_offset(&disk_key);
4626 btrfs_set_disk_key_offset(&disk_key, offset + size_diff);
4627 btrfs_set_item_key(leaf, &disk_key, slot);
4628 if (slot == 0)
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00004629 fixup_low_keys(root, path, &disk_key, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04004630 }
Chris Mason5f39d392007-10-15 16:14:19 -04004631
Ross Kirkdd3cc162013-09-16 15:58:09 +01004632 item = btrfs_item_nr(slot);
Chris Mason5f39d392007-10-15 16:14:19 -04004633 btrfs_set_item_size(leaf, item, new_size);
4634 btrfs_mark_buffer_dirty(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004635
Chris Mason5f39d392007-10-15 16:14:19 -04004636 if (btrfs_leaf_free_space(root, leaf) < 0) {
4637 btrfs_print_leaf(root, leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004638 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004639 }
Chris Masonb18c6682007-04-17 13:26:50 -04004640}
4641
Chris Masond352ac62008-09-29 15:18:18 -04004642/*
Stefan Behrens8f69dbd2013-05-07 10:23:30 +00004643 * make the item pointed to by the path bigger, data_size is the added size.
Chris Masond352ac62008-09-29 15:18:18 -04004644 */
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00004645void btrfs_extend_item(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004646 u32 data_size)
Chris Mason6567e832007-04-16 09:22:45 -04004647{
Chris Mason6567e832007-04-16 09:22:45 -04004648 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04004649 struct extent_buffer *leaf;
4650 struct btrfs_item *item;
Chris Mason6567e832007-04-16 09:22:45 -04004651 u32 nritems;
4652 unsigned int data_end;
4653 unsigned int old_data;
4654 unsigned int old_size;
4655 int i;
Chris Masoncfed81a2012-03-03 07:40:03 -05004656 struct btrfs_map_token token;
4657
4658 btrfs_init_map_token(&token);
Chris Mason6567e832007-04-16 09:22:45 -04004659
Chris Mason5f39d392007-10-15 16:14:19 -04004660 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -04004661
Chris Mason5f39d392007-10-15 16:14:19 -04004662 nritems = btrfs_header_nritems(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004663 data_end = leaf_data_end(root, leaf);
4664
Chris Mason5f39d392007-10-15 16:14:19 -04004665 if (btrfs_leaf_free_space(root, leaf) < data_size) {
4666 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004667 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004668 }
Chris Mason6567e832007-04-16 09:22:45 -04004669 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04004670 old_data = btrfs_item_end_nr(leaf, slot);
Chris Mason6567e832007-04-16 09:22:45 -04004671
4672 BUG_ON(slot < 0);
Chris Mason3326d1b2007-10-15 16:18:25 -04004673 if (slot >= nritems) {
4674 btrfs_print_leaf(root, leaf);
Frank Holtonefe120a2013-12-20 11:37:06 -05004675 btrfs_crit(root->fs_info, "slot %d too large, nritems %d",
Chris Masond3977122009-01-05 21:25:51 -05004676 slot, nritems);
Chris Mason3326d1b2007-10-15 16:18:25 -04004677 BUG_ON(1);
4678 }
Chris Mason6567e832007-04-16 09:22:45 -04004679
4680 /*
4681 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4682 */
4683 /* first correct the data pointers */
4684 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004685 u32 ioff;
Ross Kirkdd3cc162013-09-16 15:58:09 +01004686 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04004687
Chris Masoncfed81a2012-03-03 07:40:03 -05004688 ioff = btrfs_token_item_offset(leaf, item, &token);
4689 btrfs_set_token_item_offset(leaf, item,
4690 ioff - data_size, &token);
Chris Mason6567e832007-04-16 09:22:45 -04004691 }
Chris Mason5f39d392007-10-15 16:14:19 -04004692
Chris Mason6567e832007-04-16 09:22:45 -04004693 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04004694 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason6567e832007-04-16 09:22:45 -04004695 data_end - data_size, btrfs_leaf_data(leaf) +
4696 data_end, old_data - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04004697
Chris Mason6567e832007-04-16 09:22:45 -04004698 data_end = old_data;
Chris Mason5f39d392007-10-15 16:14:19 -04004699 old_size = btrfs_item_size_nr(leaf, slot);
Ross Kirkdd3cc162013-09-16 15:58:09 +01004700 item = btrfs_item_nr(slot);
Chris Mason5f39d392007-10-15 16:14:19 -04004701 btrfs_set_item_size(leaf, item, old_size + data_size);
4702 btrfs_mark_buffer_dirty(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004703
Chris Mason5f39d392007-10-15 16:14:19 -04004704 if (btrfs_leaf_free_space(root, leaf) < 0) {
4705 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004706 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004707 }
Chris Mason6567e832007-04-16 09:22:45 -04004708}
4709
Chris Mason74123bd2007-02-02 11:05:29 -05004710/*
Chris Mason44871b12009-03-13 10:04:31 -04004711 * this is a helper for btrfs_insert_empty_items, the main goal here is
4712 * to save stack depth by doing the bulk of the work in a function
4713 * that doesn't call btrfs_search_slot
Chris Mason74123bd2007-02-02 11:05:29 -05004714 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004715void setup_items_for_insert(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004716 struct btrfs_key *cpu_key, u32 *data_size,
4717 u32 total_data, u32 total_size, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004718{
Chris Mason5f39d392007-10-15 16:14:19 -04004719 struct btrfs_item *item;
Chris Mason9c583092008-01-29 15:15:18 -05004720 int i;
Chris Mason7518a232007-03-12 12:01:18 -04004721 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004722 unsigned int data_end;
Chris Masone2fa7222007-03-12 16:22:34 -04004723 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04004724 struct extent_buffer *leaf;
4725 int slot;
Chris Masoncfed81a2012-03-03 07:40:03 -05004726 struct btrfs_map_token token;
4727
Filipe Manana24cdc842014-07-28 19:34:35 +01004728 if (path->slots[0] == 0) {
4729 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
4730 fixup_low_keys(root, path, &disk_key, 1);
4731 }
4732 btrfs_unlock_up_safe(path, 1);
4733
Chris Masoncfed81a2012-03-03 07:40:03 -05004734 btrfs_init_map_token(&token);
Chris Masone2fa7222007-03-12 16:22:34 -04004735
Chris Mason5f39d392007-10-15 16:14:19 -04004736 leaf = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04004737 slot = path->slots[0];
Chris Mason74123bd2007-02-02 11:05:29 -05004738
Chris Mason5f39d392007-10-15 16:14:19 -04004739 nritems = btrfs_header_nritems(leaf);
Chris Mason123abc82007-03-14 14:14:43 -04004740 data_end = leaf_data_end(root, leaf);
Chris Masoneb60cea2007-02-02 09:18:22 -05004741
Chris Masonf25956c2008-09-12 15:32:53 -04004742 if (btrfs_leaf_free_space(root, leaf) < total_size) {
Chris Mason3326d1b2007-10-15 16:18:25 -04004743 btrfs_print_leaf(root, leaf);
Frank Holtonefe120a2013-12-20 11:37:06 -05004744 btrfs_crit(root->fs_info, "not enough freespace need %u have %d",
Chris Mason9c583092008-01-29 15:15:18 -05004745 total_size, btrfs_leaf_free_space(root, leaf));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004746 BUG();
Chris Masond4dbff92007-04-04 14:08:15 -04004747 }
Chris Mason5f39d392007-10-15 16:14:19 -04004748
Chris Masonbe0e5c02007-01-26 15:51:26 -05004749 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04004750 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004751
Chris Mason5f39d392007-10-15 16:14:19 -04004752 if (old_data < data_end) {
4753 btrfs_print_leaf(root, leaf);
Frank Holtonefe120a2013-12-20 11:37:06 -05004754 btrfs_crit(root->fs_info, "slot %d old_data %d data_end %d",
Chris Mason5f39d392007-10-15 16:14:19 -04004755 slot, old_data, data_end);
4756 BUG_ON(1);
4757 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004758 /*
4759 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4760 */
4761 /* first correct the data pointers */
Chris Mason0783fcf2007-03-12 20:12:07 -04004762 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004763 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04004764
Ross Kirkdd3cc162013-09-16 15:58:09 +01004765 item = btrfs_item_nr( i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004766 ioff = btrfs_token_item_offset(leaf, item, &token);
4767 btrfs_set_token_item_offset(leaf, item,
4768 ioff - total_data, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004769 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004770 /* shift the items */
Chris Mason9c583092008-01-29 15:15:18 -05004771 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
Chris Mason5f39d392007-10-15 16:14:19 -04004772 btrfs_item_nr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04004773 (nritems - slot) * sizeof(struct btrfs_item));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004774
4775 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04004776 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason9c583092008-01-29 15:15:18 -05004777 data_end - total_data, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04004778 data_end, old_data - data_end);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004779 data_end = old_data;
4780 }
Chris Mason5f39d392007-10-15 16:14:19 -04004781
Chris Mason62e27492007-03-15 12:56:47 -04004782 /* setup the item for the new data */
Chris Mason9c583092008-01-29 15:15:18 -05004783 for (i = 0; i < nr; i++) {
4784 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
4785 btrfs_set_item_key(leaf, &disk_key, slot + i);
Ross Kirkdd3cc162013-09-16 15:58:09 +01004786 item = btrfs_item_nr(slot + i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004787 btrfs_set_token_item_offset(leaf, item,
4788 data_end - data_size[i], &token);
Chris Mason9c583092008-01-29 15:15:18 -05004789 data_end -= data_size[i];
Chris Masoncfed81a2012-03-03 07:40:03 -05004790 btrfs_set_token_item_size(leaf, item, data_size[i], &token);
Chris Mason9c583092008-01-29 15:15:18 -05004791 }
Chris Mason44871b12009-03-13 10:04:31 -04004792
Chris Mason9c583092008-01-29 15:15:18 -05004793 btrfs_set_header_nritems(leaf, nritems + nr);
Chris Masonb9473432009-03-13 11:00:37 -04004794 btrfs_mark_buffer_dirty(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004795
Chris Mason5f39d392007-10-15 16:14:19 -04004796 if (btrfs_leaf_free_space(root, leaf) < 0) {
4797 btrfs_print_leaf(root, leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004798 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004799 }
Chris Mason44871b12009-03-13 10:04:31 -04004800}
4801
4802/*
4803 * Given a key and some data, insert items into the tree.
4804 * This does all the path init required, making room in the tree if needed.
4805 */
4806int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
4807 struct btrfs_root *root,
4808 struct btrfs_path *path,
4809 struct btrfs_key *cpu_key, u32 *data_size,
4810 int nr)
4811{
Chris Mason44871b12009-03-13 10:04:31 -04004812 int ret = 0;
4813 int slot;
4814 int i;
4815 u32 total_size = 0;
4816 u32 total_data = 0;
4817
4818 for (i = 0; i < nr; i++)
4819 total_data += data_size[i];
4820
4821 total_size = total_data + (nr * sizeof(struct btrfs_item));
4822 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
4823 if (ret == 0)
4824 return -EEXIST;
4825 if (ret < 0)
Jeff Mahoney143bede2012-03-01 14:56:26 +01004826 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04004827
Chris Mason44871b12009-03-13 10:04:31 -04004828 slot = path->slots[0];
4829 BUG_ON(slot < 0);
4830
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004831 setup_items_for_insert(root, path, cpu_key, data_size,
Chris Mason44871b12009-03-13 10:04:31 -04004832 total_data, total_size, nr);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004833 return 0;
Chris Mason62e27492007-03-15 12:56:47 -04004834}
4835
4836/*
4837 * Given a key and some data, insert an item into the tree.
4838 * This does all the path init required, making room in the tree if needed.
4839 */
Chris Masone089f052007-03-16 16:20:31 -04004840int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
4841 *root, struct btrfs_key *cpu_key, void *data, u32
4842 data_size)
Chris Mason62e27492007-03-15 12:56:47 -04004843{
4844 int ret = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -04004845 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004846 struct extent_buffer *leaf;
4847 unsigned long ptr;
Chris Mason62e27492007-03-15 12:56:47 -04004848
Chris Mason2c90e5d2007-04-02 10:50:19 -04004849 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004850 if (!path)
4851 return -ENOMEM;
Chris Mason2c90e5d2007-04-02 10:50:19 -04004852 ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -04004853 if (!ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04004854 leaf = path->nodes[0];
4855 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
4856 write_extent_buffer(leaf, data, ptr, data_size);
4857 btrfs_mark_buffer_dirty(leaf);
Chris Mason62e27492007-03-15 12:56:47 -04004858 }
Chris Mason2c90e5d2007-04-02 10:50:19 -04004859 btrfs_free_path(path);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004860 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004861}
4862
Chris Mason74123bd2007-02-02 11:05:29 -05004863/*
Chris Mason5de08d72007-02-24 06:24:44 -05004864 * delete the pointer from a given node.
Chris Mason74123bd2007-02-02 11:05:29 -05004865 *
Chris Masond352ac62008-09-29 15:18:18 -04004866 * the tree should have been previously balanced so the deletion does not
4867 * empty a node.
Chris Mason74123bd2007-02-02 11:05:29 -05004868 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004869static void del_ptr(struct btrfs_root *root, struct btrfs_path *path,
4870 int level, int slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004871{
Chris Mason5f39d392007-10-15 16:14:19 -04004872 struct extent_buffer *parent = path->nodes[level];
Chris Mason7518a232007-03-12 12:01:18 -04004873 u32 nritems;
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004874 int ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004875
Chris Mason5f39d392007-10-15 16:14:19 -04004876 nritems = btrfs_header_nritems(parent);
Chris Masond3977122009-01-05 21:25:51 -05004877 if (slot != nritems - 1) {
Liu Bo0e411ec2012-10-19 09:50:54 +00004878 if (level)
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004879 tree_mod_log_eb_move(root->fs_info, parent, slot,
4880 slot + 1, nritems - slot - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004881 memmove_extent_buffer(parent,
4882 btrfs_node_key_ptr_offset(slot),
4883 btrfs_node_key_ptr_offset(slot + 1),
Chris Masond6025572007-03-30 14:27:56 -04004884 sizeof(struct btrfs_key_ptr) *
4885 (nritems - slot - 1));
Chris Mason57ba86c2012-12-18 19:35:32 -05004886 } else if (level) {
4887 ret = tree_mod_log_insert_key(root->fs_info, parent, slot,
Josef Bacikc8cc6342013-07-01 16:18:19 -04004888 MOD_LOG_KEY_REMOVE, GFP_NOFS);
Chris Mason57ba86c2012-12-18 19:35:32 -05004889 BUG_ON(ret < 0);
Chris Masonbb803952007-03-01 12:04:21 -05004890 }
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004891
Chris Mason7518a232007-03-12 12:01:18 -04004892 nritems--;
Chris Mason5f39d392007-10-15 16:14:19 -04004893 btrfs_set_header_nritems(parent, nritems);
Chris Mason7518a232007-03-12 12:01:18 -04004894 if (nritems == 0 && parent == root->node) {
Chris Mason5f39d392007-10-15 16:14:19 -04004895 BUG_ON(btrfs_header_level(root->node) != 1);
Chris Masonbb803952007-03-01 12:04:21 -05004896 /* just turn the root into a leaf and break */
Chris Mason5f39d392007-10-15 16:14:19 -04004897 btrfs_set_header_level(root->node, 0);
Chris Masonbb803952007-03-01 12:04:21 -05004898 } else if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004899 struct btrfs_disk_key disk_key;
4900
4901 btrfs_node_key(parent, &disk_key, 0);
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00004902 fixup_low_keys(root, path, &disk_key, level + 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004903 }
Chris Masond6025572007-03-30 14:27:56 -04004904 btrfs_mark_buffer_dirty(parent);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004905}
4906
Chris Mason74123bd2007-02-02 11:05:29 -05004907/*
Chris Mason323ac952008-10-01 19:05:46 -04004908 * a helper function to delete the leaf pointed to by path->slots[1] and
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004909 * path->nodes[1].
Chris Mason323ac952008-10-01 19:05:46 -04004910 *
4911 * This deletes the pointer in path->nodes[1] and frees the leaf
4912 * block extent. zero is returned if it all worked out, < 0 otherwise.
4913 *
4914 * The path must have already been setup for deleting the leaf, including
4915 * all the proper balancing. path->nodes[1] must be locked.
4916 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01004917static noinline void btrfs_del_leaf(struct btrfs_trans_handle *trans,
4918 struct btrfs_root *root,
4919 struct btrfs_path *path,
4920 struct extent_buffer *leaf)
Chris Mason323ac952008-10-01 19:05:46 -04004921{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004922 WARN_ON(btrfs_header_generation(leaf) != trans->transid);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004923 del_ptr(root, path, 1, path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04004924
Chris Mason4d081c42009-02-04 09:31:28 -05004925 /*
4926 * btrfs_free_extent is expensive, we want to make sure we
4927 * aren't holding any locks when we call it
4928 */
4929 btrfs_unlock_up_safe(path, 0);
4930
Yan, Zhengf0486c62010-05-16 10:46:25 -04004931 root_sub_used(root, leaf->len);
4932
Josef Bacik3083ee22012-03-09 16:01:49 -05004933 extent_buffer_get(leaf);
Jan Schmidt5581a512012-05-16 17:04:52 +02004934 btrfs_free_tree_block(trans, root, leaf, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05004935 free_extent_buffer_stale(leaf);
Chris Mason323ac952008-10-01 19:05:46 -04004936}
4937/*
Chris Mason74123bd2007-02-02 11:05:29 -05004938 * delete the item at the leaf level in path. If that empties
4939 * the leaf, remove it from the tree
4940 */
Chris Mason85e21ba2008-01-29 15:11:36 -05004941int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
4942 struct btrfs_path *path, int slot, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004943{
Chris Mason5f39d392007-10-15 16:14:19 -04004944 struct extent_buffer *leaf;
4945 struct btrfs_item *item;
Chris Mason85e21ba2008-01-29 15:11:36 -05004946 int last_off;
4947 int dsize = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05004948 int ret = 0;
4949 int wret;
Chris Mason85e21ba2008-01-29 15:11:36 -05004950 int i;
Chris Mason7518a232007-03-12 12:01:18 -04004951 u32 nritems;
Chris Masoncfed81a2012-03-03 07:40:03 -05004952 struct btrfs_map_token token;
4953
4954 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004955
Chris Mason5f39d392007-10-15 16:14:19 -04004956 leaf = path->nodes[0];
Chris Mason85e21ba2008-01-29 15:11:36 -05004957 last_off = btrfs_item_offset_nr(leaf, slot + nr - 1);
4958
4959 for (i = 0; i < nr; i++)
4960 dsize += btrfs_item_size_nr(leaf, slot + i);
4961
Chris Mason5f39d392007-10-15 16:14:19 -04004962 nritems = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004963
Chris Mason85e21ba2008-01-29 15:11:36 -05004964 if (slot + nr != nritems) {
Chris Mason123abc82007-03-14 14:14:43 -04004965 int data_end = leaf_data_end(root, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04004966
4967 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04004968 data_end + dsize,
4969 btrfs_leaf_data(leaf) + data_end,
Chris Mason85e21ba2008-01-29 15:11:36 -05004970 last_off - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04004971
Chris Mason85e21ba2008-01-29 15:11:36 -05004972 for (i = slot + nr; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004973 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04004974
Ross Kirkdd3cc162013-09-16 15:58:09 +01004975 item = btrfs_item_nr(i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004976 ioff = btrfs_token_item_offset(leaf, item, &token);
4977 btrfs_set_token_item_offset(leaf, item,
4978 ioff + dsize, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004979 }
Chris Masondb945352007-10-15 16:15:53 -04004980
Chris Mason5f39d392007-10-15 16:14:19 -04004981 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
Chris Mason85e21ba2008-01-29 15:11:36 -05004982 btrfs_item_nr_offset(slot + nr),
Chris Masond6025572007-03-30 14:27:56 -04004983 sizeof(struct btrfs_item) *
Chris Mason85e21ba2008-01-29 15:11:36 -05004984 (nritems - slot - nr));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004985 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004986 btrfs_set_header_nritems(leaf, nritems - nr);
4987 nritems -= nr;
Chris Mason5f39d392007-10-15 16:14:19 -04004988
Chris Mason74123bd2007-02-02 11:05:29 -05004989 /* delete the leaf if we've emptied it */
Chris Mason7518a232007-03-12 12:01:18 -04004990 if (nritems == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004991 if (leaf == root->node) {
4992 btrfs_set_header_level(leaf, 0);
Chris Mason9a8dd152007-02-23 08:38:36 -05004993 } else {
Yan, Zhengf0486c62010-05-16 10:46:25 -04004994 btrfs_set_path_blocking(path);
4995 clean_tree_block(trans, root, leaf);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004996 btrfs_del_leaf(trans, root, path, leaf);
Chris Mason9a8dd152007-02-23 08:38:36 -05004997 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004998 } else {
Chris Mason7518a232007-03-12 12:01:18 -04004999 int used = leaf_space_used(leaf, 0, nritems);
Chris Masonaa5d6be2007-02-28 16:35:06 -05005000 if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005001 struct btrfs_disk_key disk_key;
5002
5003 btrfs_item_key(leaf, &disk_key, 0);
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00005004 fixup_low_keys(root, path, &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05005005 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05005006
Chris Mason74123bd2007-02-02 11:05:29 -05005007 /* delete the leaf if it is mostly empty */
Yan Zhengd717aa12009-07-24 12:42:46 -04005008 if (used < BTRFS_LEAF_DATA_SIZE(root) / 3) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05005009 /* push_leaf_left fixes the path.
5010 * make sure the path still points to our leaf
5011 * for possible call to del_ptr below
5012 */
Chris Mason4920c9a2007-01-26 16:38:42 -05005013 slot = path->slots[1];
Chris Mason5f39d392007-10-15 16:14:19 -04005014 extent_buffer_get(leaf);
5015
Chris Masonb9473432009-03-13 11:00:37 -04005016 btrfs_set_path_blocking(path);
Chris Mason99d8f832010-07-07 10:51:48 -04005017 wret = push_leaf_left(trans, root, path, 1, 1,
5018 1, (u32)-1);
Chris Mason54aa1f42007-06-22 14:16:25 -04005019 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05005020 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04005021
5022 if (path->nodes[0] == leaf &&
5023 btrfs_header_nritems(leaf)) {
Chris Mason99d8f832010-07-07 10:51:48 -04005024 wret = push_leaf_right(trans, root, path, 1,
5025 1, 1, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04005026 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05005027 ret = wret;
5028 }
Chris Mason5f39d392007-10-15 16:14:19 -04005029
5030 if (btrfs_header_nritems(leaf) == 0) {
Chris Mason323ac952008-10-01 19:05:46 -04005031 path->slots[1] = slot;
Jeff Mahoney143bede2012-03-01 14:56:26 +01005032 btrfs_del_leaf(trans, root, path, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04005033 free_extent_buffer(leaf);
Jeff Mahoney143bede2012-03-01 14:56:26 +01005034 ret = 0;
Chris Mason5de08d72007-02-24 06:24:44 -05005035 } else {
Chris Mason925baed2008-06-25 16:01:30 -04005036 /* if we're still in the path, make sure
5037 * we're dirty. Otherwise, one of the
5038 * push_leaf functions must have already
5039 * dirtied this buffer
5040 */
5041 if (path->nodes[0] == leaf)
5042 btrfs_mark_buffer_dirty(leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04005043 free_extent_buffer(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05005044 }
Chris Masond5719762007-03-23 10:01:08 -04005045 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04005046 btrfs_mark_buffer_dirty(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05005047 }
5048 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05005049 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05005050}
5051
Chris Mason97571fd2007-02-24 13:39:08 -05005052/*
Chris Mason925baed2008-06-25 16:01:30 -04005053 * search the tree again to find a leaf with lesser keys
Chris Mason7bb86312007-12-11 09:25:06 -05005054 * returns 0 if it found something or 1 if there are no lesser leaves.
5055 * returns < 0 on io errors.
Chris Masond352ac62008-09-29 15:18:18 -04005056 *
5057 * This may release the path, and so you may lose any locks held at the
5058 * time you call it.
Chris Mason7bb86312007-12-11 09:25:06 -05005059 */
Josef Bacik16e75492013-10-22 12:18:51 -04005060int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Mason7bb86312007-12-11 09:25:06 -05005061{
Chris Mason925baed2008-06-25 16:01:30 -04005062 struct btrfs_key key;
5063 struct btrfs_disk_key found_key;
5064 int ret;
Chris Mason7bb86312007-12-11 09:25:06 -05005065
Chris Mason925baed2008-06-25 16:01:30 -04005066 btrfs_item_key_to_cpu(path->nodes[0], &key, 0);
Chris Mason7bb86312007-12-11 09:25:06 -05005067
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005068 if (key.offset > 0) {
Chris Mason925baed2008-06-25 16:01:30 -04005069 key.offset--;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005070 } else if (key.type > 0) {
Chris Mason925baed2008-06-25 16:01:30 -04005071 key.type--;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005072 key.offset = (u64)-1;
5073 } else if (key.objectid > 0) {
Chris Mason925baed2008-06-25 16:01:30 -04005074 key.objectid--;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005075 key.type = (u8)-1;
5076 key.offset = (u64)-1;
5077 } else {
Chris Mason925baed2008-06-25 16:01:30 -04005078 return 1;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005079 }
Chris Mason7bb86312007-12-11 09:25:06 -05005080
David Sterbab3b4aa72011-04-21 01:20:15 +02005081 btrfs_release_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04005082 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5083 if (ret < 0)
5084 return ret;
5085 btrfs_item_key(path->nodes[0], &found_key, 0);
5086 ret = comp_keys(&found_key, &key);
Filipe Manana337c6f62014-06-09 13:22:13 +01005087 /*
5088 * We might have had an item with the previous key in the tree right
5089 * before we released our path. And after we released our path, that
5090 * item might have been pushed to the first slot (0) of the leaf we
5091 * were holding due to a tree balance. Alternatively, an item with the
5092 * previous key can exist as the only element of a leaf (big fat item).
5093 * Therefore account for these 2 cases, so that our callers (like
5094 * btrfs_previous_item) don't miss an existing item with a key matching
5095 * the previous key we computed above.
5096 */
5097 if (ret <= 0)
Chris Mason925baed2008-06-25 16:01:30 -04005098 return 0;
5099 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05005100}
5101
Chris Mason3f157a22008-06-25 16:01:31 -04005102/*
5103 * A helper function to walk down the tree starting at min_key, and looking
Eric Sandeende78b512013-01-31 18:21:12 +00005104 * for nodes or leaves that are have a minimum transaction id.
5105 * This is used by the btree defrag code, and tree logging
Chris Mason3f157a22008-06-25 16:01:31 -04005106 *
5107 * This does not cow, but it does stuff the starting key it finds back
5108 * into min_key, so you can call btrfs_search_slot with cow=1 on the
5109 * key and get a writable path.
5110 *
5111 * This does lock as it descends, and path->keep_locks should be set
5112 * to 1 by the caller.
5113 *
5114 * This honors path->lowest_level to prevent descent past a given level
5115 * of the tree.
5116 *
Chris Masond352ac62008-09-29 15:18:18 -04005117 * min_trans indicates the oldest transaction that you are interested
5118 * in walking through. Any nodes or leaves older than min_trans are
5119 * skipped over (without reading them).
5120 *
Chris Mason3f157a22008-06-25 16:01:31 -04005121 * returns zero if something useful was found, < 0 on error and 1 if there
5122 * was nothing in the tree that matched the search criteria.
5123 */
5124int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
Eric Sandeende78b512013-01-31 18:21:12 +00005125 struct btrfs_path *path,
Chris Mason3f157a22008-06-25 16:01:31 -04005126 u64 min_trans)
5127{
5128 struct extent_buffer *cur;
5129 struct btrfs_key found_key;
5130 int slot;
Yan96524802008-07-24 12:19:49 -04005131 int sret;
Chris Mason3f157a22008-06-25 16:01:31 -04005132 u32 nritems;
5133 int level;
5134 int ret = 1;
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005135 int keep_locks = path->keep_locks;
Chris Mason3f157a22008-06-25 16:01:31 -04005136
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005137 path->keep_locks = 1;
Chris Mason3f157a22008-06-25 16:01:31 -04005138again:
Chris Masonbd681512011-07-16 15:23:14 -04005139 cur = btrfs_read_lock_root_node(root);
Chris Mason3f157a22008-06-25 16:01:31 -04005140 level = btrfs_header_level(cur);
Chris Masone02119d2008-09-05 16:13:11 -04005141 WARN_ON(path->nodes[level]);
Chris Mason3f157a22008-06-25 16:01:31 -04005142 path->nodes[level] = cur;
Chris Masonbd681512011-07-16 15:23:14 -04005143 path->locks[level] = BTRFS_READ_LOCK;
Chris Mason3f157a22008-06-25 16:01:31 -04005144
5145 if (btrfs_header_generation(cur) < min_trans) {
5146 ret = 1;
5147 goto out;
5148 }
Chris Masond3977122009-01-05 21:25:51 -05005149 while (1) {
Chris Mason3f157a22008-06-25 16:01:31 -04005150 nritems = btrfs_header_nritems(cur);
5151 level = btrfs_header_level(cur);
Yan96524802008-07-24 12:19:49 -04005152 sret = bin_search(cur, min_key, level, &slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005153
Chris Mason323ac952008-10-01 19:05:46 -04005154 /* at the lowest level, we're done, setup the path and exit */
5155 if (level == path->lowest_level) {
Chris Masone02119d2008-09-05 16:13:11 -04005156 if (slot >= nritems)
5157 goto find_next_key;
Chris Mason3f157a22008-06-25 16:01:31 -04005158 ret = 0;
5159 path->slots[level] = slot;
5160 btrfs_item_key_to_cpu(cur, &found_key, slot);
5161 goto out;
5162 }
Yan96524802008-07-24 12:19:49 -04005163 if (sret && slot > 0)
5164 slot--;
Chris Mason3f157a22008-06-25 16:01:31 -04005165 /*
Eric Sandeende78b512013-01-31 18:21:12 +00005166 * check this node pointer against the min_trans parameters.
5167 * If it is too old, old, skip to the next one.
Chris Mason3f157a22008-06-25 16:01:31 -04005168 */
Chris Masond3977122009-01-05 21:25:51 -05005169 while (slot < nritems) {
Chris Mason3f157a22008-06-25 16:01:31 -04005170 u64 gen;
Chris Masone02119d2008-09-05 16:13:11 -04005171
Chris Mason3f157a22008-06-25 16:01:31 -04005172 gen = btrfs_node_ptr_generation(cur, slot);
5173 if (gen < min_trans) {
5174 slot++;
5175 continue;
5176 }
Eric Sandeende78b512013-01-31 18:21:12 +00005177 break;
Chris Mason3f157a22008-06-25 16:01:31 -04005178 }
Chris Masone02119d2008-09-05 16:13:11 -04005179find_next_key:
Chris Mason3f157a22008-06-25 16:01:31 -04005180 /*
5181 * we didn't find a candidate key in this node, walk forward
5182 * and find another one
5183 */
5184 if (slot >= nritems) {
Chris Masone02119d2008-09-05 16:13:11 -04005185 path->slots[level] = slot;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005186 btrfs_set_path_blocking(path);
Chris Masone02119d2008-09-05 16:13:11 -04005187 sret = btrfs_find_next_key(root, path, min_key, level,
Eric Sandeende78b512013-01-31 18:21:12 +00005188 min_trans);
Chris Masone02119d2008-09-05 16:13:11 -04005189 if (sret == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005190 btrfs_release_path(path);
Chris Mason3f157a22008-06-25 16:01:31 -04005191 goto again;
5192 } else {
5193 goto out;
5194 }
5195 }
5196 /* save our key for returning back */
5197 btrfs_node_key_to_cpu(cur, &found_key, slot);
5198 path->slots[level] = slot;
5199 if (level == path->lowest_level) {
5200 ret = 0;
Chris Mason3f157a22008-06-25 16:01:31 -04005201 goto out;
5202 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05005203 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04005204 cur = read_node_slot(root, cur, slot);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005205 BUG_ON(!cur); /* -ENOMEM */
Chris Mason3f157a22008-06-25 16:01:31 -04005206
Chris Masonbd681512011-07-16 15:23:14 -04005207 btrfs_tree_read_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05005208
Chris Masonbd681512011-07-16 15:23:14 -04005209 path->locks[level - 1] = BTRFS_READ_LOCK;
Chris Mason3f157a22008-06-25 16:01:31 -04005210 path->nodes[level - 1] = cur;
Chris Masonf7c79f32012-03-19 15:54:38 -04005211 unlock_up(path, level, 1, 0, NULL);
Chris Masonbd681512011-07-16 15:23:14 -04005212 btrfs_clear_path_blocking(path, NULL, 0);
Chris Mason3f157a22008-06-25 16:01:31 -04005213 }
5214out:
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005215 path->keep_locks = keep_locks;
5216 if (ret == 0) {
5217 btrfs_unlock_up_safe(path, path->lowest_level + 1);
5218 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04005219 memcpy(min_key, &found_key, sizeof(found_key));
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005220 }
Chris Mason3f157a22008-06-25 16:01:31 -04005221 return ret;
5222}
5223
Alexander Block70698302012-06-05 21:07:48 +02005224static void tree_move_down(struct btrfs_root *root,
5225 struct btrfs_path *path,
5226 int *level, int root_level)
5227{
Chris Mason74dd17f2012-08-07 16:25:13 -04005228 BUG_ON(*level == 0);
Alexander Block70698302012-06-05 21:07:48 +02005229 path->nodes[*level - 1] = read_node_slot(root, path->nodes[*level],
5230 path->slots[*level]);
5231 path->slots[*level - 1] = 0;
5232 (*level)--;
5233}
5234
5235static int tree_move_next_or_upnext(struct btrfs_root *root,
5236 struct btrfs_path *path,
5237 int *level, int root_level)
5238{
5239 int ret = 0;
5240 int nritems;
5241 nritems = btrfs_header_nritems(path->nodes[*level]);
5242
5243 path->slots[*level]++;
5244
Chris Mason74dd17f2012-08-07 16:25:13 -04005245 while (path->slots[*level] >= nritems) {
Alexander Block70698302012-06-05 21:07:48 +02005246 if (*level == root_level)
5247 return -1;
5248
5249 /* move upnext */
5250 path->slots[*level] = 0;
5251 free_extent_buffer(path->nodes[*level]);
5252 path->nodes[*level] = NULL;
5253 (*level)++;
5254 path->slots[*level]++;
5255
5256 nritems = btrfs_header_nritems(path->nodes[*level]);
5257 ret = 1;
5258 }
5259 return ret;
5260}
5261
5262/*
5263 * Returns 1 if it had to move up and next. 0 is returned if it moved only next
5264 * or down.
5265 */
5266static int tree_advance(struct btrfs_root *root,
5267 struct btrfs_path *path,
5268 int *level, int root_level,
5269 int allow_down,
5270 struct btrfs_key *key)
5271{
5272 int ret;
5273
5274 if (*level == 0 || !allow_down) {
5275 ret = tree_move_next_or_upnext(root, path, level, root_level);
5276 } else {
5277 tree_move_down(root, path, level, root_level);
5278 ret = 0;
5279 }
5280 if (ret >= 0) {
5281 if (*level == 0)
5282 btrfs_item_key_to_cpu(path->nodes[*level], key,
5283 path->slots[*level]);
5284 else
5285 btrfs_node_key_to_cpu(path->nodes[*level], key,
5286 path->slots[*level]);
5287 }
5288 return ret;
5289}
5290
5291static int tree_compare_item(struct btrfs_root *left_root,
5292 struct btrfs_path *left_path,
5293 struct btrfs_path *right_path,
5294 char *tmp_buf)
5295{
5296 int cmp;
5297 int len1, len2;
5298 unsigned long off1, off2;
5299
5300 len1 = btrfs_item_size_nr(left_path->nodes[0], left_path->slots[0]);
5301 len2 = btrfs_item_size_nr(right_path->nodes[0], right_path->slots[0]);
5302 if (len1 != len2)
5303 return 1;
5304
5305 off1 = btrfs_item_ptr_offset(left_path->nodes[0], left_path->slots[0]);
5306 off2 = btrfs_item_ptr_offset(right_path->nodes[0],
5307 right_path->slots[0]);
5308
5309 read_extent_buffer(left_path->nodes[0], tmp_buf, off1, len1);
5310
5311 cmp = memcmp_extent_buffer(right_path->nodes[0], tmp_buf, off2, len1);
5312 if (cmp)
5313 return 1;
5314 return 0;
5315}
5316
5317#define ADVANCE 1
5318#define ADVANCE_ONLY_NEXT -1
5319
5320/*
5321 * This function compares two trees and calls the provided callback for
5322 * every changed/new/deleted item it finds.
5323 * If shared tree blocks are encountered, whole subtrees are skipped, making
5324 * the compare pretty fast on snapshotted subvolumes.
5325 *
5326 * This currently works on commit roots only. As commit roots are read only,
5327 * we don't do any locking. The commit roots are protected with transactions.
5328 * Transactions are ended and rejoined when a commit is tried in between.
5329 *
5330 * This function checks for modifications done to the trees while comparing.
5331 * If it detects a change, it aborts immediately.
5332 */
5333int btrfs_compare_trees(struct btrfs_root *left_root,
5334 struct btrfs_root *right_root,
5335 btrfs_changed_cb_t changed_cb, void *ctx)
5336{
5337 int ret;
5338 int cmp;
Alexander Block70698302012-06-05 21:07:48 +02005339 struct btrfs_path *left_path = NULL;
5340 struct btrfs_path *right_path = NULL;
5341 struct btrfs_key left_key;
5342 struct btrfs_key right_key;
5343 char *tmp_buf = NULL;
5344 int left_root_level;
5345 int right_root_level;
5346 int left_level;
5347 int right_level;
5348 int left_end_reached;
5349 int right_end_reached;
5350 int advance_left;
5351 int advance_right;
5352 u64 left_blockptr;
5353 u64 right_blockptr;
Filipe Manana6baa4292014-02-20 21:15:25 +00005354 u64 left_gen;
5355 u64 right_gen;
Alexander Block70698302012-06-05 21:07:48 +02005356
5357 left_path = btrfs_alloc_path();
5358 if (!left_path) {
5359 ret = -ENOMEM;
5360 goto out;
5361 }
5362 right_path = btrfs_alloc_path();
5363 if (!right_path) {
5364 ret = -ENOMEM;
5365 goto out;
5366 }
5367
David Sterba707e8a02014-06-04 19:22:26 +02005368 tmp_buf = kmalloc(left_root->nodesize, GFP_NOFS);
Alexander Block70698302012-06-05 21:07:48 +02005369 if (!tmp_buf) {
5370 ret = -ENOMEM;
5371 goto out;
5372 }
5373
5374 left_path->search_commit_root = 1;
5375 left_path->skip_locking = 1;
5376 right_path->search_commit_root = 1;
5377 right_path->skip_locking = 1;
5378
Alexander Block70698302012-06-05 21:07:48 +02005379 /*
5380 * Strategy: Go to the first items of both trees. Then do
5381 *
5382 * If both trees are at level 0
5383 * Compare keys of current items
5384 * If left < right treat left item as new, advance left tree
5385 * and repeat
5386 * If left > right treat right item as deleted, advance right tree
5387 * and repeat
5388 * If left == right do deep compare of items, treat as changed if
5389 * needed, advance both trees and repeat
5390 * If both trees are at the same level but not at level 0
5391 * Compare keys of current nodes/leafs
5392 * If left < right advance left tree and repeat
5393 * If left > right advance right tree and repeat
5394 * If left == right compare blockptrs of the next nodes/leafs
5395 * If they match advance both trees but stay at the same level
5396 * and repeat
5397 * If they don't match advance both trees while allowing to go
5398 * deeper and repeat
5399 * If tree levels are different
5400 * Advance the tree that needs it and repeat
5401 *
5402 * Advancing a tree means:
5403 * If we are at level 0, try to go to the next slot. If that's not
5404 * possible, go one level up and repeat. Stop when we found a level
5405 * where we could go to the next slot. We may at this point be on a
5406 * node or a leaf.
5407 *
5408 * If we are not at level 0 and not on shared tree blocks, go one
5409 * level deeper.
5410 *
5411 * If we are not at level 0 and on shared tree blocks, go one slot to
5412 * the right if possible or go up and right.
5413 */
5414
Josef Bacik3f8a18c2014-03-28 17:16:01 -04005415 down_read(&left_root->fs_info->commit_root_sem);
Alexander Block70698302012-06-05 21:07:48 +02005416 left_level = btrfs_header_level(left_root->commit_root);
5417 left_root_level = left_level;
5418 left_path->nodes[left_level] = left_root->commit_root;
5419 extent_buffer_get(left_path->nodes[left_level]);
5420
5421 right_level = btrfs_header_level(right_root->commit_root);
5422 right_root_level = right_level;
5423 right_path->nodes[right_level] = right_root->commit_root;
5424 extent_buffer_get(right_path->nodes[right_level]);
Josef Bacik3f8a18c2014-03-28 17:16:01 -04005425 up_read(&left_root->fs_info->commit_root_sem);
Alexander Block70698302012-06-05 21:07:48 +02005426
5427 if (left_level == 0)
5428 btrfs_item_key_to_cpu(left_path->nodes[left_level],
5429 &left_key, left_path->slots[left_level]);
5430 else
5431 btrfs_node_key_to_cpu(left_path->nodes[left_level],
5432 &left_key, left_path->slots[left_level]);
5433 if (right_level == 0)
5434 btrfs_item_key_to_cpu(right_path->nodes[right_level],
5435 &right_key, right_path->slots[right_level]);
5436 else
5437 btrfs_node_key_to_cpu(right_path->nodes[right_level],
5438 &right_key, right_path->slots[right_level]);
5439
5440 left_end_reached = right_end_reached = 0;
5441 advance_left = advance_right = 0;
5442
5443 while (1) {
Alexander Block70698302012-06-05 21:07:48 +02005444 if (advance_left && !left_end_reached) {
5445 ret = tree_advance(left_root, left_path, &left_level,
5446 left_root_level,
5447 advance_left != ADVANCE_ONLY_NEXT,
5448 &left_key);
5449 if (ret < 0)
5450 left_end_reached = ADVANCE;
5451 advance_left = 0;
5452 }
5453 if (advance_right && !right_end_reached) {
5454 ret = tree_advance(right_root, right_path, &right_level,
5455 right_root_level,
5456 advance_right != ADVANCE_ONLY_NEXT,
5457 &right_key);
5458 if (ret < 0)
5459 right_end_reached = ADVANCE;
5460 advance_right = 0;
5461 }
5462
5463 if (left_end_reached && right_end_reached) {
5464 ret = 0;
5465 goto out;
5466 } else if (left_end_reached) {
5467 if (right_level == 0) {
5468 ret = changed_cb(left_root, right_root,
5469 left_path, right_path,
5470 &right_key,
5471 BTRFS_COMPARE_TREE_DELETED,
5472 ctx);
5473 if (ret < 0)
5474 goto out;
5475 }
5476 advance_right = ADVANCE;
5477 continue;
5478 } else if (right_end_reached) {
5479 if (left_level == 0) {
5480 ret = changed_cb(left_root, right_root,
5481 left_path, right_path,
5482 &left_key,
5483 BTRFS_COMPARE_TREE_NEW,
5484 ctx);
5485 if (ret < 0)
5486 goto out;
5487 }
5488 advance_left = ADVANCE;
5489 continue;
5490 }
5491
5492 if (left_level == 0 && right_level == 0) {
5493 cmp = btrfs_comp_cpu_keys(&left_key, &right_key);
5494 if (cmp < 0) {
5495 ret = changed_cb(left_root, right_root,
5496 left_path, right_path,
5497 &left_key,
5498 BTRFS_COMPARE_TREE_NEW,
5499 ctx);
5500 if (ret < 0)
5501 goto out;
5502 advance_left = ADVANCE;
5503 } else if (cmp > 0) {
5504 ret = changed_cb(left_root, right_root,
5505 left_path, right_path,
5506 &right_key,
5507 BTRFS_COMPARE_TREE_DELETED,
5508 ctx);
5509 if (ret < 0)
5510 goto out;
5511 advance_right = ADVANCE;
5512 } else {
Fabian Frederickb99d9a62014-09-25 19:35:02 +02005513 enum btrfs_compare_tree_result result;
Josef Bacikba5e8f22013-08-16 16:52:55 -04005514
Chris Mason74dd17f2012-08-07 16:25:13 -04005515 WARN_ON(!extent_buffer_uptodate(left_path->nodes[0]));
Alexander Block70698302012-06-05 21:07:48 +02005516 ret = tree_compare_item(left_root, left_path,
5517 right_path, tmp_buf);
Josef Bacikba5e8f22013-08-16 16:52:55 -04005518 if (ret)
Fabian Frederickb99d9a62014-09-25 19:35:02 +02005519 result = BTRFS_COMPARE_TREE_CHANGED;
Josef Bacikba5e8f22013-08-16 16:52:55 -04005520 else
Fabian Frederickb99d9a62014-09-25 19:35:02 +02005521 result = BTRFS_COMPARE_TREE_SAME;
Josef Bacikba5e8f22013-08-16 16:52:55 -04005522 ret = changed_cb(left_root, right_root,
5523 left_path, right_path,
Fabian Frederickb99d9a62014-09-25 19:35:02 +02005524 &left_key, result, ctx);
Josef Bacikba5e8f22013-08-16 16:52:55 -04005525 if (ret < 0)
5526 goto out;
Alexander Block70698302012-06-05 21:07:48 +02005527 advance_left = ADVANCE;
5528 advance_right = ADVANCE;
5529 }
5530 } else if (left_level == right_level) {
5531 cmp = btrfs_comp_cpu_keys(&left_key, &right_key);
5532 if (cmp < 0) {
5533 advance_left = ADVANCE;
5534 } else if (cmp > 0) {
5535 advance_right = ADVANCE;
5536 } else {
5537 left_blockptr = btrfs_node_blockptr(
5538 left_path->nodes[left_level],
5539 left_path->slots[left_level]);
5540 right_blockptr = btrfs_node_blockptr(
5541 right_path->nodes[right_level],
5542 right_path->slots[right_level]);
Filipe Manana6baa4292014-02-20 21:15:25 +00005543 left_gen = btrfs_node_ptr_generation(
5544 left_path->nodes[left_level],
5545 left_path->slots[left_level]);
5546 right_gen = btrfs_node_ptr_generation(
5547 right_path->nodes[right_level],
5548 right_path->slots[right_level]);
5549 if (left_blockptr == right_blockptr &&
5550 left_gen == right_gen) {
Alexander Block70698302012-06-05 21:07:48 +02005551 /*
5552 * As we're on a shared block, don't
5553 * allow to go deeper.
5554 */
5555 advance_left = ADVANCE_ONLY_NEXT;
5556 advance_right = ADVANCE_ONLY_NEXT;
5557 } else {
5558 advance_left = ADVANCE;
5559 advance_right = ADVANCE;
5560 }
5561 }
5562 } else if (left_level < right_level) {
5563 advance_right = ADVANCE;
5564 } else {
5565 advance_left = ADVANCE;
5566 }
5567 }
5568
5569out:
5570 btrfs_free_path(left_path);
5571 btrfs_free_path(right_path);
5572 kfree(tmp_buf);
Alexander Block70698302012-06-05 21:07:48 +02005573 return ret;
5574}
5575
Chris Mason3f157a22008-06-25 16:01:31 -04005576/*
5577 * this is similar to btrfs_next_leaf, but does not try to preserve
5578 * and fixup the path. It looks for and returns the next key in the
Eric Sandeende78b512013-01-31 18:21:12 +00005579 * tree based on the current path and the min_trans parameters.
Chris Mason3f157a22008-06-25 16:01:31 -04005580 *
5581 * 0 is returned if another key is found, < 0 if there are any errors
5582 * and 1 is returned if there are no higher keys in the tree
5583 *
5584 * path->keep_locks should be set to 1 on the search made before
5585 * calling this function.
5586 */
Chris Masone7a84562008-06-25 16:01:31 -04005587int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
Eric Sandeende78b512013-01-31 18:21:12 +00005588 struct btrfs_key *key, int level, u64 min_trans)
Chris Masone7a84562008-06-25 16:01:31 -04005589{
Chris Masone7a84562008-06-25 16:01:31 -04005590 int slot;
5591 struct extent_buffer *c;
5592
Chris Mason934d3752008-12-08 16:43:10 -05005593 WARN_ON(!path->keep_locks);
Chris Masond3977122009-01-05 21:25:51 -05005594 while (level < BTRFS_MAX_LEVEL) {
Chris Masone7a84562008-06-25 16:01:31 -04005595 if (!path->nodes[level])
5596 return 1;
5597
5598 slot = path->slots[level] + 1;
5599 c = path->nodes[level];
Chris Mason3f157a22008-06-25 16:01:31 -04005600next:
Chris Masone7a84562008-06-25 16:01:31 -04005601 if (slot >= btrfs_header_nritems(c)) {
Yan Zheng33c66f42009-07-22 09:59:00 -04005602 int ret;
5603 int orig_lowest;
5604 struct btrfs_key cur_key;
5605 if (level + 1 >= BTRFS_MAX_LEVEL ||
5606 !path->nodes[level + 1])
Chris Masone7a84562008-06-25 16:01:31 -04005607 return 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04005608
5609 if (path->locks[level + 1]) {
5610 level++;
5611 continue;
5612 }
5613
5614 slot = btrfs_header_nritems(c) - 1;
5615 if (level == 0)
5616 btrfs_item_key_to_cpu(c, &cur_key, slot);
5617 else
5618 btrfs_node_key_to_cpu(c, &cur_key, slot);
5619
5620 orig_lowest = path->lowest_level;
David Sterbab3b4aa72011-04-21 01:20:15 +02005621 btrfs_release_path(path);
Yan Zheng33c66f42009-07-22 09:59:00 -04005622 path->lowest_level = level;
5623 ret = btrfs_search_slot(NULL, root, &cur_key, path,
5624 0, 0);
5625 path->lowest_level = orig_lowest;
5626 if (ret < 0)
5627 return ret;
5628
5629 c = path->nodes[level];
5630 slot = path->slots[level];
5631 if (ret == 0)
5632 slot++;
5633 goto next;
Chris Masone7a84562008-06-25 16:01:31 -04005634 }
Yan Zheng33c66f42009-07-22 09:59:00 -04005635
Chris Masone7a84562008-06-25 16:01:31 -04005636 if (level == 0)
5637 btrfs_item_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005638 else {
Chris Mason3f157a22008-06-25 16:01:31 -04005639 u64 gen = btrfs_node_ptr_generation(c, slot);
5640
Chris Mason3f157a22008-06-25 16:01:31 -04005641 if (gen < min_trans) {
5642 slot++;
5643 goto next;
5644 }
Chris Masone7a84562008-06-25 16:01:31 -04005645 btrfs_node_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005646 }
Chris Masone7a84562008-06-25 16:01:31 -04005647 return 0;
5648 }
5649 return 1;
5650}
5651
Chris Mason7bb86312007-12-11 09:25:06 -05005652/*
Chris Mason925baed2008-06-25 16:01:30 -04005653 * search the tree again to find a leaf with greater keys
Chris Mason0f70abe2007-02-28 16:46:22 -05005654 * returns 0 if it found something or 1 if there are no greater leaves.
5655 * returns < 0 on io errors.
Chris Mason97571fd2007-02-24 13:39:08 -05005656 */
Chris Mason234b63a2007-03-13 10:46:10 -04005657int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Masond97e63b2007-02-20 16:40:44 -05005658{
Jan Schmidt3d7806e2012-06-11 08:29:29 +02005659 return btrfs_next_old_leaf(root, path, 0);
5660}
5661
5662int btrfs_next_old_leaf(struct btrfs_root *root, struct btrfs_path *path,
5663 u64 time_seq)
5664{
Chris Masond97e63b2007-02-20 16:40:44 -05005665 int slot;
Chris Mason8e73f272009-04-03 10:14:18 -04005666 int level;
Chris Mason5f39d392007-10-15 16:14:19 -04005667 struct extent_buffer *c;
Chris Mason8e73f272009-04-03 10:14:18 -04005668 struct extent_buffer *next;
Chris Mason925baed2008-06-25 16:01:30 -04005669 struct btrfs_key key;
5670 u32 nritems;
5671 int ret;
Chris Mason8e73f272009-04-03 10:14:18 -04005672 int old_spinning = path->leave_spinning;
Chris Masonbd681512011-07-16 15:23:14 -04005673 int next_rw_lock = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005674
5675 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Masond3977122009-01-05 21:25:51 -05005676 if (nritems == 0)
Chris Mason925baed2008-06-25 16:01:30 -04005677 return 1;
Chris Mason925baed2008-06-25 16:01:30 -04005678
Chris Mason8e73f272009-04-03 10:14:18 -04005679 btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1);
5680again:
5681 level = 1;
5682 next = NULL;
Chris Masonbd681512011-07-16 15:23:14 -04005683 next_rw_lock = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02005684 btrfs_release_path(path);
Chris Mason8e73f272009-04-03 10:14:18 -04005685
Chris Masona2135012008-06-25 16:01:30 -04005686 path->keep_locks = 1;
Chris Mason31533fb2011-07-26 16:01:59 -04005687 path->leave_spinning = 1;
Chris Mason8e73f272009-04-03 10:14:18 -04005688
Jan Schmidt3d7806e2012-06-11 08:29:29 +02005689 if (time_seq)
5690 ret = btrfs_search_old_slot(root, &key, path, time_seq);
5691 else
5692 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason925baed2008-06-25 16:01:30 -04005693 path->keep_locks = 0;
5694
5695 if (ret < 0)
5696 return ret;
5697
Chris Masona2135012008-06-25 16:01:30 -04005698 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Mason168fd7d2008-06-25 16:01:30 -04005699 /*
5700 * by releasing the path above we dropped all our locks. A balance
5701 * could have added more items next to the key that used to be
5702 * at the very end of the block. So, check again here and
5703 * advance the path if there are now more items available.
5704 */
Chris Masona2135012008-06-25 16:01:30 -04005705 if (nritems > 0 && path->slots[0] < nritems - 1) {
Yan Zhenge457afe2009-07-22 09:59:00 -04005706 if (ret == 0)
5707 path->slots[0]++;
Chris Mason8e73f272009-04-03 10:14:18 -04005708 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005709 goto done;
5710 }
Liu Bo0b43e042014-06-09 11:04:49 +08005711 /*
5712 * So the above check misses one case:
5713 * - after releasing the path above, someone has removed the item that
5714 * used to be at the very end of the block, and balance between leafs
5715 * gets another one with bigger key.offset to replace it.
5716 *
5717 * This one should be returned as well, or we can get leaf corruption
5718 * later(esp. in __btrfs_drop_extents()).
5719 *
5720 * And a bit more explanation about this check,
5721 * with ret > 0, the key isn't found, the path points to the slot
5722 * where it should be inserted, so the path->slots[0] item must be the
5723 * bigger one.
5724 */
5725 if (nritems > 0 && ret > 0 && path->slots[0] == nritems - 1) {
5726 ret = 0;
5727 goto done;
5728 }
Chris Masond97e63b2007-02-20 16:40:44 -05005729
Chris Masond3977122009-01-05 21:25:51 -05005730 while (level < BTRFS_MAX_LEVEL) {
Chris Mason8e73f272009-04-03 10:14:18 -04005731 if (!path->nodes[level]) {
5732 ret = 1;
5733 goto done;
5734 }
Chris Mason5f39d392007-10-15 16:14:19 -04005735
Chris Masond97e63b2007-02-20 16:40:44 -05005736 slot = path->slots[level] + 1;
5737 c = path->nodes[level];
Chris Mason5f39d392007-10-15 16:14:19 -04005738 if (slot >= btrfs_header_nritems(c)) {
Chris Masond97e63b2007-02-20 16:40:44 -05005739 level++;
Chris Mason8e73f272009-04-03 10:14:18 -04005740 if (level == BTRFS_MAX_LEVEL) {
5741 ret = 1;
5742 goto done;
5743 }
Chris Masond97e63b2007-02-20 16:40:44 -05005744 continue;
5745 }
Chris Mason5f39d392007-10-15 16:14:19 -04005746
Chris Mason925baed2008-06-25 16:01:30 -04005747 if (next) {
Chris Masonbd681512011-07-16 15:23:14 -04005748 btrfs_tree_unlock_rw(next, next_rw_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04005749 free_extent_buffer(next);
Chris Mason925baed2008-06-25 16:01:30 -04005750 }
Chris Mason5f39d392007-10-15 16:14:19 -04005751
Chris Mason8e73f272009-04-03 10:14:18 -04005752 next = c;
Chris Masonbd681512011-07-16 15:23:14 -04005753 next_rw_lock = path->locks[level];
Chris Mason8e73f272009-04-03 10:14:18 -04005754 ret = read_block_for_search(NULL, root, path, &next, level,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02005755 slot, &key, 0);
Chris Mason8e73f272009-04-03 10:14:18 -04005756 if (ret == -EAGAIN)
5757 goto again;
Chris Mason5f39d392007-10-15 16:14:19 -04005758
Chris Mason76a05b32009-05-14 13:24:30 -04005759 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005760 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04005761 goto done;
5762 }
5763
Chris Mason5cd57b22008-06-25 16:01:30 -04005764 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04005765 ret = btrfs_try_tree_read_lock(next);
Jan Schmidtd42244a2012-06-22 14:51:15 +02005766 if (!ret && time_seq) {
5767 /*
5768 * If we don't get the lock, we may be racing
5769 * with push_leaf_left, holding that lock while
5770 * itself waiting for the leaf we've currently
5771 * locked. To solve this situation, we give up
5772 * on our lock and cycle.
5773 */
Jan Schmidtcf538832012-07-04 15:42:48 +02005774 free_extent_buffer(next);
Jan Schmidtd42244a2012-06-22 14:51:15 +02005775 btrfs_release_path(path);
5776 cond_resched();
5777 goto again;
5778 }
Chris Mason8e73f272009-04-03 10:14:18 -04005779 if (!ret) {
5780 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04005781 btrfs_tree_read_lock(next);
Chris Mason31533fb2011-07-26 16:01:59 -04005782 btrfs_clear_path_blocking(path, next,
Chris Masonbd681512011-07-16 15:23:14 -04005783 BTRFS_READ_LOCK);
Chris Mason8e73f272009-04-03 10:14:18 -04005784 }
Chris Mason31533fb2011-07-26 16:01:59 -04005785 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04005786 }
Chris Masond97e63b2007-02-20 16:40:44 -05005787 break;
5788 }
5789 path->slots[level] = slot;
Chris Masond3977122009-01-05 21:25:51 -05005790 while (1) {
Chris Masond97e63b2007-02-20 16:40:44 -05005791 level--;
5792 c = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04005793 if (path->locks[level])
Chris Masonbd681512011-07-16 15:23:14 -04005794 btrfs_tree_unlock_rw(c, path->locks[level]);
Chris Mason8e73f272009-04-03 10:14:18 -04005795
Chris Mason5f39d392007-10-15 16:14:19 -04005796 free_extent_buffer(c);
Chris Masond97e63b2007-02-20 16:40:44 -05005797 path->nodes[level] = next;
5798 path->slots[level] = 0;
Chris Masona74a4b92008-06-25 16:01:31 -04005799 if (!path->skip_locking)
Chris Masonbd681512011-07-16 15:23:14 -04005800 path->locks[level] = next_rw_lock;
Chris Masond97e63b2007-02-20 16:40:44 -05005801 if (!level)
5802 break;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005803
Chris Mason8e73f272009-04-03 10:14:18 -04005804 ret = read_block_for_search(NULL, root, path, &next, level,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02005805 0, &key, 0);
Chris Mason8e73f272009-04-03 10:14:18 -04005806 if (ret == -EAGAIN)
5807 goto again;
5808
Chris Mason76a05b32009-05-14 13:24:30 -04005809 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005810 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04005811 goto done;
5812 }
5813
Chris Mason5cd57b22008-06-25 16:01:30 -04005814 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04005815 ret = btrfs_try_tree_read_lock(next);
Chris Mason8e73f272009-04-03 10:14:18 -04005816 if (!ret) {
5817 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04005818 btrfs_tree_read_lock(next);
Chris Mason31533fb2011-07-26 16:01:59 -04005819 btrfs_clear_path_blocking(path, next,
Chris Masonbd681512011-07-16 15:23:14 -04005820 BTRFS_READ_LOCK);
Chris Mason8e73f272009-04-03 10:14:18 -04005821 }
Chris Mason31533fb2011-07-26 16:01:59 -04005822 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04005823 }
Chris Masond97e63b2007-02-20 16:40:44 -05005824 }
Chris Mason8e73f272009-04-03 10:14:18 -04005825 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005826done:
Chris Masonf7c79f32012-03-19 15:54:38 -04005827 unlock_up(path, 0, 1, 0, NULL);
Chris Mason8e73f272009-04-03 10:14:18 -04005828 path->leave_spinning = old_spinning;
5829 if (!old_spinning)
5830 btrfs_set_path_blocking(path);
5831
5832 return ret;
Chris Masond97e63b2007-02-20 16:40:44 -05005833}
Chris Mason0b86a832008-03-24 15:01:56 -04005834
Chris Mason3f157a22008-06-25 16:01:31 -04005835/*
5836 * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps
5837 * searching until it gets past min_objectid or finds an item of 'type'
5838 *
5839 * returns 0 if something is found, 1 if nothing was found and < 0 on error
5840 */
Chris Mason0b86a832008-03-24 15:01:56 -04005841int btrfs_previous_item(struct btrfs_root *root,
5842 struct btrfs_path *path, u64 min_objectid,
5843 int type)
5844{
5845 struct btrfs_key found_key;
5846 struct extent_buffer *leaf;
Chris Masone02119d2008-09-05 16:13:11 -04005847 u32 nritems;
Chris Mason0b86a832008-03-24 15:01:56 -04005848 int ret;
5849
Chris Masond3977122009-01-05 21:25:51 -05005850 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04005851 if (path->slots[0] == 0) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05005852 btrfs_set_path_blocking(path);
Chris Mason0b86a832008-03-24 15:01:56 -04005853 ret = btrfs_prev_leaf(root, path);
5854 if (ret != 0)
5855 return ret;
5856 } else {
5857 path->slots[0]--;
5858 }
5859 leaf = path->nodes[0];
Chris Masone02119d2008-09-05 16:13:11 -04005860 nritems = btrfs_header_nritems(leaf);
5861 if (nritems == 0)
5862 return 1;
5863 if (path->slots[0] == nritems)
5864 path->slots[0]--;
5865
Chris Mason0b86a832008-03-24 15:01:56 -04005866 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masone02119d2008-09-05 16:13:11 -04005867 if (found_key.objectid < min_objectid)
5868 break;
Yan Zheng0a4eefb2009-07-24 11:06:53 -04005869 if (found_key.type == type)
5870 return 0;
Chris Masone02119d2008-09-05 16:13:11 -04005871 if (found_key.objectid == min_objectid &&
5872 found_key.type < type)
5873 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005874 }
5875 return 1;
5876}
Wang Shilongade2e0b2014-01-12 21:38:33 +08005877
5878/*
5879 * search in extent tree to find a previous Metadata/Data extent item with
5880 * min objecitd.
5881 *
5882 * returns 0 if something is found, 1 if nothing was found and < 0 on error
5883 */
5884int btrfs_previous_extent_item(struct btrfs_root *root,
5885 struct btrfs_path *path, u64 min_objectid)
5886{
5887 struct btrfs_key found_key;
5888 struct extent_buffer *leaf;
5889 u32 nritems;
5890 int ret;
5891
5892 while (1) {
5893 if (path->slots[0] == 0) {
5894 btrfs_set_path_blocking(path);
5895 ret = btrfs_prev_leaf(root, path);
5896 if (ret != 0)
5897 return ret;
5898 } else {
5899 path->slots[0]--;
5900 }
5901 leaf = path->nodes[0];
5902 nritems = btrfs_header_nritems(leaf);
5903 if (nritems == 0)
5904 return 1;
5905 if (path->slots[0] == nritems)
5906 path->slots[0]--;
5907
5908 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5909 if (found_key.objectid < min_objectid)
5910 break;
5911 if (found_key.type == BTRFS_EXTENT_ITEM_KEY ||
5912 found_key.type == BTRFS_METADATA_ITEM_KEY)
5913 return 0;
5914 if (found_key.objectid == min_objectid &&
5915 found_key.type < BTRFS_EXTENT_ITEM_KEY)
5916 break;
5917 }
5918 return 1;
5919}