blob: ce1d71d171bb02a65e863238fc75ef84746eb365 [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
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400261 cow = btrfs_alloc_free_block(trans, root, buf->len, 0,
262 new_root_objectid, &disk_key, level,
Jan Schmidt5581a512012-05-16 17:04:52 +0200263 buf->start, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400264 if (IS_ERR(cow))
Chris Masonbe20aa92007-12-17 20:14:01 -0500265 return PTR_ERR(cow);
266
267 copy_extent_buffer(cow, buf, 0, 0, cow->len);
268 btrfs_set_header_bytenr(cow, cow->start);
269 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400270 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
271 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
272 BTRFS_HEADER_FLAG_RELOC);
273 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
274 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
275 else
276 btrfs_set_header_owner(cow, new_root_objectid);
Chris Masonbe20aa92007-12-17 20:14:01 -0500277
Ross Kirk0a4e5582013-09-24 10:12:38 +0100278 write_extent_buffer(cow, root->fs_info->fsid, btrfs_header_fsid(),
Yan Zheng2b820322008-11-17 21:11:30 -0500279 BTRFS_FSID_SIZE);
280
Chris Masonbe20aa92007-12-17 20:14:01 -0500281 WARN_ON(btrfs_header_generation(buf) > trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400282 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
Josef Bacike339a6b2014-07-02 10:54:25 -0700283 ret = btrfs_inc_ref(trans, root, cow, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400284 else
Josef Bacike339a6b2014-07-02 10:54:25 -0700285 ret = btrfs_inc_ref(trans, root, cow, 0);
Chris Mason4aec2b52007-12-18 16:25:45 -0500286
Chris Masonbe20aa92007-12-17 20:14:01 -0500287 if (ret)
288 return ret;
289
290 btrfs_mark_buffer_dirty(cow);
291 *cow_ret = cow;
292 return 0;
293}
294
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200295enum mod_log_op {
296 MOD_LOG_KEY_REPLACE,
297 MOD_LOG_KEY_ADD,
298 MOD_LOG_KEY_REMOVE,
299 MOD_LOG_KEY_REMOVE_WHILE_FREEING,
300 MOD_LOG_KEY_REMOVE_WHILE_MOVING,
301 MOD_LOG_MOVE_KEYS,
302 MOD_LOG_ROOT_REPLACE,
303};
304
305struct tree_mod_move {
306 int dst_slot;
307 int nr_items;
308};
309
310struct tree_mod_root {
311 u64 logical;
312 u8 level;
313};
314
315struct tree_mod_elem {
316 struct rb_node node;
317 u64 index; /* shifted logical */
Jan Schmidt097b8a72012-06-21 11:08:04 +0200318 u64 seq;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200319 enum mod_log_op op;
320
321 /* this is used for MOD_LOG_KEY_* and MOD_LOG_MOVE_KEYS operations */
322 int slot;
323
324 /* this is used for MOD_LOG_KEY* and MOD_LOG_ROOT_REPLACE */
325 u64 generation;
326
327 /* those are used for op == MOD_LOG_KEY_{REPLACE,REMOVE} */
328 struct btrfs_disk_key key;
329 u64 blockptr;
330
331 /* this is used for op == MOD_LOG_MOVE_KEYS */
332 struct tree_mod_move move;
333
334 /* this is used for op == MOD_LOG_ROOT_REPLACE */
335 struct tree_mod_root old_root;
336};
337
Jan Schmidt097b8a72012-06-21 11:08:04 +0200338static inline void tree_mod_log_read_lock(struct btrfs_fs_info *fs_info)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200339{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200340 read_lock(&fs_info->tree_mod_log_lock);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200341}
342
Jan Schmidt097b8a72012-06-21 11:08:04 +0200343static inline void tree_mod_log_read_unlock(struct btrfs_fs_info *fs_info)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200344{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200345 read_unlock(&fs_info->tree_mod_log_lock);
346}
347
348static inline void tree_mod_log_write_lock(struct btrfs_fs_info *fs_info)
349{
350 write_lock(&fs_info->tree_mod_log_lock);
351}
352
353static inline void tree_mod_log_write_unlock(struct btrfs_fs_info *fs_info)
354{
355 write_unlock(&fs_info->tree_mod_log_lock);
356}
357
358/*
Josef Bacikfcebe452014-05-13 17:30:47 -0700359 * Pull a new tree mod seq number for our operation.
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +0000360 */
Josef Bacikfcebe452014-05-13 17:30:47 -0700361static inline u64 btrfs_inc_tree_mod_seq(struct btrfs_fs_info *fs_info)
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +0000362{
363 return atomic64_inc_return(&fs_info->tree_mod_seq);
364}
365
366/*
Jan Schmidt097b8a72012-06-21 11:08:04 +0200367 * This adds a new blocker to the tree mod log's blocker list if the @elem
368 * passed does not already have a sequence number set. So when a caller expects
369 * to record tree modifications, it should ensure to set elem->seq to zero
370 * before calling btrfs_get_tree_mod_seq.
371 * Returns a fresh, unused tree log modification sequence number, even if no new
372 * blocker was added.
373 */
374u64 btrfs_get_tree_mod_seq(struct btrfs_fs_info *fs_info,
375 struct seq_list *elem)
376{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200377 tree_mod_log_write_lock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200378 spin_lock(&fs_info->tree_mod_seq_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200379 if (!elem->seq) {
Josef Bacikfcebe452014-05-13 17:30:47 -0700380 elem->seq = btrfs_inc_tree_mod_seq(fs_info);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200381 list_add_tail(&elem->list, &fs_info->tree_mod_seq_list);
382 }
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200383 spin_unlock(&fs_info->tree_mod_seq_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200384 tree_mod_log_write_unlock(fs_info);
385
Josef Bacikfcebe452014-05-13 17:30:47 -0700386 return elem->seq;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200387}
388
389void btrfs_put_tree_mod_seq(struct btrfs_fs_info *fs_info,
390 struct seq_list *elem)
391{
392 struct rb_root *tm_root;
393 struct rb_node *node;
394 struct rb_node *next;
395 struct seq_list *cur_elem;
396 struct tree_mod_elem *tm;
397 u64 min_seq = (u64)-1;
398 u64 seq_putting = elem->seq;
399
400 if (!seq_putting)
401 return;
402
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200403 spin_lock(&fs_info->tree_mod_seq_lock);
404 list_del(&elem->list);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200405 elem->seq = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200406
407 list_for_each_entry(cur_elem, &fs_info->tree_mod_seq_list, list) {
Jan Schmidt097b8a72012-06-21 11:08:04 +0200408 if (cur_elem->seq < min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200409 if (seq_putting > cur_elem->seq) {
410 /*
411 * blocker with lower sequence number exists, we
412 * cannot remove anything from the log
413 */
Jan Schmidt097b8a72012-06-21 11:08:04 +0200414 spin_unlock(&fs_info->tree_mod_seq_lock);
415 return;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200416 }
417 min_seq = cur_elem->seq;
418 }
419 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200420 spin_unlock(&fs_info->tree_mod_seq_lock);
421
422 /*
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200423 * anything that's lower than the lowest existing (read: blocked)
424 * sequence number can be removed from the tree.
425 */
Jan Schmidt097b8a72012-06-21 11:08:04 +0200426 tree_mod_log_write_lock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200427 tm_root = &fs_info->tree_mod_log;
428 for (node = rb_first(tm_root); node; node = next) {
429 next = rb_next(node);
430 tm = container_of(node, struct tree_mod_elem, node);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200431 if (tm->seq > min_seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200432 continue;
433 rb_erase(node, tm_root);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200434 kfree(tm);
435 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200436 tree_mod_log_write_unlock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200437}
438
439/*
440 * key order of the log:
441 * index -> sequence
442 *
443 * the index is the shifted logical of the *new* root node for root replace
444 * operations, or the shifted logical of the affected block for all other
445 * operations.
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000446 *
447 * Note: must be called with write lock (tree_mod_log_write_lock).
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200448 */
449static noinline int
450__tree_mod_log_insert(struct btrfs_fs_info *fs_info, struct tree_mod_elem *tm)
451{
452 struct rb_root *tm_root;
453 struct rb_node **new;
454 struct rb_node *parent = NULL;
455 struct tree_mod_elem *cur;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200456
Josef Bacikc8cc6342013-07-01 16:18:19 -0400457 BUG_ON(!tm);
458
Josef Bacikfcebe452014-05-13 17:30:47 -0700459 tm->seq = btrfs_inc_tree_mod_seq(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200460
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200461 tm_root = &fs_info->tree_mod_log;
462 new = &tm_root->rb_node;
463 while (*new) {
464 cur = container_of(*new, struct tree_mod_elem, node);
465 parent = *new;
466 if (cur->index < tm->index)
467 new = &((*new)->rb_left);
468 else if (cur->index > tm->index)
469 new = &((*new)->rb_right);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200470 else if (cur->seq < tm->seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200471 new = &((*new)->rb_left);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200472 else if (cur->seq > tm->seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200473 new = &((*new)->rb_right);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000474 else
475 return -EEXIST;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200476 }
477
478 rb_link_node(&tm->node, parent, new);
479 rb_insert_color(&tm->node, tm_root);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000480 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200481}
482
Jan Schmidt097b8a72012-06-21 11:08:04 +0200483/*
484 * Determines if logging can be omitted. Returns 1 if it can. Otherwise, it
485 * returns zero with the tree_mod_log_lock acquired. The caller must hold
486 * this until all tree mod log insertions are recorded in the rb tree and then
487 * call tree_mod_log_write_unlock() to release.
488 */
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200489static inline int tree_mod_dont_log(struct btrfs_fs_info *fs_info,
490 struct extent_buffer *eb) {
491 smp_mb();
492 if (list_empty(&(fs_info)->tree_mod_seq_list))
493 return 1;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200494 if (eb && btrfs_header_level(eb) == 0)
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200495 return 1;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000496
497 tree_mod_log_write_lock(fs_info);
498 if (list_empty(&(fs_info)->tree_mod_seq_list)) {
499 tree_mod_log_write_unlock(fs_info);
500 return 1;
501 }
502
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200503 return 0;
504}
505
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000506/* Similar to tree_mod_dont_log, but doesn't acquire any locks. */
507static inline int tree_mod_need_log(const struct btrfs_fs_info *fs_info,
508 struct extent_buffer *eb)
509{
510 smp_mb();
511 if (list_empty(&(fs_info)->tree_mod_seq_list))
512 return 0;
513 if (eb && btrfs_header_level(eb) == 0)
514 return 0;
515
516 return 1;
517}
518
519static struct tree_mod_elem *
520alloc_tree_mod_elem(struct extent_buffer *eb, int slot,
521 enum mod_log_op op, gfp_t flags)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200522{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200523 struct tree_mod_elem *tm;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200524
Josef Bacikc8cc6342013-07-01 16:18:19 -0400525 tm = kzalloc(sizeof(*tm), flags);
526 if (!tm)
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000527 return NULL;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200528
529 tm->index = eb->start >> PAGE_CACHE_SHIFT;
530 if (op != MOD_LOG_KEY_ADD) {
531 btrfs_node_key(eb, &tm->key, slot);
532 tm->blockptr = btrfs_node_blockptr(eb, slot);
533 }
534 tm->op = op;
535 tm->slot = slot;
536 tm->generation = btrfs_node_ptr_generation(eb, slot);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000537 RB_CLEAR_NODE(&tm->node);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200538
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000539 return tm;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200540}
541
542static noinline int
Josef Bacikc8cc6342013-07-01 16:18:19 -0400543tree_mod_log_insert_key(struct btrfs_fs_info *fs_info,
544 struct extent_buffer *eb, int slot,
545 enum mod_log_op op, gfp_t flags)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200546{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000547 struct tree_mod_elem *tm;
548 int ret;
549
550 if (!tree_mod_need_log(fs_info, eb))
Jan Schmidt097b8a72012-06-21 11:08:04 +0200551 return 0;
552
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000553 tm = alloc_tree_mod_elem(eb, slot, op, flags);
554 if (!tm)
555 return -ENOMEM;
556
557 if (tree_mod_dont_log(fs_info, eb)) {
558 kfree(tm);
559 return 0;
560 }
561
562 ret = __tree_mod_log_insert(fs_info, tm);
563 tree_mod_log_write_unlock(fs_info);
564 if (ret)
565 kfree(tm);
566
567 return ret;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200568}
569
570static noinline int
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200571tree_mod_log_insert_move(struct btrfs_fs_info *fs_info,
572 struct extent_buffer *eb, int dst_slot, int src_slot,
573 int nr_items, gfp_t flags)
574{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000575 struct tree_mod_elem *tm = NULL;
576 struct tree_mod_elem **tm_list = NULL;
577 int ret = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200578 int i;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000579 int locked = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200580
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000581 if (!tree_mod_need_log(fs_info, eb))
Jan Schmidtf3956942012-05-31 15:02:32 +0200582 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200583
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000584 tm_list = kzalloc(nr_items * sizeof(struct tree_mod_elem *), flags);
585 if (!tm_list)
586 return -ENOMEM;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200587
Josef Bacikc8cc6342013-07-01 16:18:19 -0400588 tm = kzalloc(sizeof(*tm), flags);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000589 if (!tm) {
590 ret = -ENOMEM;
591 goto free_tms;
592 }
Jan Schmidtf3956942012-05-31 15:02:32 +0200593
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200594 tm->index = eb->start >> PAGE_CACHE_SHIFT;
595 tm->slot = src_slot;
596 tm->move.dst_slot = dst_slot;
597 tm->move.nr_items = nr_items;
598 tm->op = MOD_LOG_MOVE_KEYS;
599
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000600 for (i = 0; i + dst_slot < src_slot && i < nr_items; i++) {
601 tm_list[i] = alloc_tree_mod_elem(eb, i + dst_slot,
602 MOD_LOG_KEY_REMOVE_WHILE_MOVING, flags);
603 if (!tm_list[i]) {
604 ret = -ENOMEM;
605 goto free_tms;
606 }
607 }
608
609 if (tree_mod_dont_log(fs_info, eb))
610 goto free_tms;
611 locked = 1;
612
613 /*
614 * When we override something during the move, we log these removals.
615 * This can only happen when we move towards the beginning of the
616 * buffer, i.e. dst_slot < src_slot.
617 */
618 for (i = 0; i + dst_slot < src_slot && i < nr_items; i++) {
619 ret = __tree_mod_log_insert(fs_info, tm_list[i]);
620 if (ret)
621 goto free_tms;
622 }
623
624 ret = __tree_mod_log_insert(fs_info, tm);
625 if (ret)
626 goto free_tms;
627 tree_mod_log_write_unlock(fs_info);
628 kfree(tm_list);
629
630 return 0;
631free_tms:
632 for (i = 0; i < nr_items; i++) {
633 if (tm_list[i] && !RB_EMPTY_NODE(&tm_list[i]->node))
634 rb_erase(&tm_list[i]->node, &fs_info->tree_mod_log);
635 kfree(tm_list[i]);
636 }
637 if (locked)
638 tree_mod_log_write_unlock(fs_info);
639 kfree(tm_list);
640 kfree(tm);
641
642 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200643}
644
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000645static inline int
646__tree_mod_log_free_eb(struct btrfs_fs_info *fs_info,
647 struct tree_mod_elem **tm_list,
648 int nritems)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200649{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000650 int i, j;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200651 int ret;
652
Jan Schmidt097b8a72012-06-21 11:08:04 +0200653 for (i = nritems - 1; i >= 0; i--) {
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000654 ret = __tree_mod_log_insert(fs_info, tm_list[i]);
655 if (ret) {
656 for (j = nritems - 1; j > i; j--)
657 rb_erase(&tm_list[j]->node,
658 &fs_info->tree_mod_log);
659 return ret;
660 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200661 }
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000662
663 return 0;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200664}
665
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200666static noinline int
667tree_mod_log_insert_root(struct btrfs_fs_info *fs_info,
668 struct extent_buffer *old_root,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000669 struct extent_buffer *new_root, gfp_t flags,
670 int log_removal)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200671{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000672 struct tree_mod_elem *tm = NULL;
673 struct tree_mod_elem **tm_list = NULL;
674 int nritems = 0;
675 int ret = 0;
676 int i;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200677
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000678 if (!tree_mod_need_log(fs_info, NULL))
Jan Schmidt097b8a72012-06-21 11:08:04 +0200679 return 0;
680
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000681 if (log_removal && btrfs_header_level(old_root) > 0) {
682 nritems = btrfs_header_nritems(old_root);
683 tm_list = kzalloc(nritems * sizeof(struct tree_mod_elem *),
684 flags);
685 if (!tm_list) {
686 ret = -ENOMEM;
687 goto free_tms;
688 }
689 for (i = 0; i < nritems; i++) {
690 tm_list[i] = alloc_tree_mod_elem(old_root, i,
691 MOD_LOG_KEY_REMOVE_WHILE_FREEING, flags);
692 if (!tm_list[i]) {
693 ret = -ENOMEM;
694 goto free_tms;
695 }
696 }
697 }
Jan Schmidtd9abbf12013-03-20 13:49:48 +0000698
Josef Bacikc8cc6342013-07-01 16:18:19 -0400699 tm = kzalloc(sizeof(*tm), flags);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000700 if (!tm) {
701 ret = -ENOMEM;
702 goto free_tms;
703 }
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200704
705 tm->index = new_root->start >> PAGE_CACHE_SHIFT;
706 tm->old_root.logical = old_root->start;
707 tm->old_root.level = btrfs_header_level(old_root);
708 tm->generation = btrfs_header_generation(old_root);
709 tm->op = MOD_LOG_ROOT_REPLACE;
710
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000711 if (tree_mod_dont_log(fs_info, NULL))
712 goto free_tms;
713
714 if (tm_list)
715 ret = __tree_mod_log_free_eb(fs_info, tm_list, nritems);
716 if (!ret)
717 ret = __tree_mod_log_insert(fs_info, tm);
718
719 tree_mod_log_write_unlock(fs_info);
720 if (ret)
721 goto free_tms;
722 kfree(tm_list);
723
724 return ret;
725
726free_tms:
727 if (tm_list) {
728 for (i = 0; i < nritems; i++)
729 kfree(tm_list[i]);
730 kfree(tm_list);
731 }
732 kfree(tm);
733
734 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200735}
736
737static struct tree_mod_elem *
738__tree_mod_log_search(struct btrfs_fs_info *fs_info, u64 start, u64 min_seq,
739 int smallest)
740{
741 struct rb_root *tm_root;
742 struct rb_node *node;
743 struct tree_mod_elem *cur = NULL;
744 struct tree_mod_elem *found = NULL;
745 u64 index = start >> PAGE_CACHE_SHIFT;
746
Jan Schmidt097b8a72012-06-21 11:08:04 +0200747 tree_mod_log_read_lock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200748 tm_root = &fs_info->tree_mod_log;
749 node = tm_root->rb_node;
750 while (node) {
751 cur = container_of(node, struct tree_mod_elem, node);
752 if (cur->index < index) {
753 node = node->rb_left;
754 } else if (cur->index > index) {
755 node = node->rb_right;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200756 } else if (cur->seq < min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200757 node = node->rb_left;
758 } else if (!smallest) {
759 /* we want the node with the highest seq */
760 if (found)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200761 BUG_ON(found->seq > cur->seq);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200762 found = cur;
763 node = node->rb_left;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200764 } else if (cur->seq > min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200765 /* we want the node with the smallest seq */
766 if (found)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200767 BUG_ON(found->seq < cur->seq);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200768 found = cur;
769 node = node->rb_right;
770 } else {
771 found = cur;
772 break;
773 }
774 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200775 tree_mod_log_read_unlock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200776
777 return found;
778}
779
780/*
781 * this returns the element from the log with the smallest time sequence
782 * value that's in the log (the oldest log item). any element with a time
783 * sequence lower than min_seq will be ignored.
784 */
785static struct tree_mod_elem *
786tree_mod_log_search_oldest(struct btrfs_fs_info *fs_info, u64 start,
787 u64 min_seq)
788{
789 return __tree_mod_log_search(fs_info, start, min_seq, 1);
790}
791
792/*
793 * this returns the element from the log with the largest time sequence
794 * value that's in the log (the most recent log item). any element with
795 * a time sequence lower than min_seq will be ignored.
796 */
797static struct tree_mod_elem *
798tree_mod_log_search(struct btrfs_fs_info *fs_info, u64 start, u64 min_seq)
799{
800 return __tree_mod_log_search(fs_info, start, min_seq, 0);
801}
802
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000803static noinline int
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200804tree_mod_log_eb_copy(struct btrfs_fs_info *fs_info, struct extent_buffer *dst,
805 struct extent_buffer *src, unsigned long dst_offset,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000806 unsigned long src_offset, int nr_items)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200807{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000808 int ret = 0;
809 struct tree_mod_elem **tm_list = NULL;
810 struct tree_mod_elem **tm_list_add, **tm_list_rem;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200811 int i;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000812 int locked = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200813
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000814 if (!tree_mod_need_log(fs_info, NULL))
815 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200816
Josef Bacikc8cc6342013-07-01 16:18:19 -0400817 if (btrfs_header_level(dst) == 0 && btrfs_header_level(src) == 0)
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000818 return 0;
819
820 tm_list = kzalloc(nr_items * 2 * sizeof(struct tree_mod_elem *),
821 GFP_NOFS);
822 if (!tm_list)
823 return -ENOMEM;
824
825 tm_list_add = tm_list;
826 tm_list_rem = tm_list + nr_items;
827 for (i = 0; i < nr_items; i++) {
828 tm_list_rem[i] = alloc_tree_mod_elem(src, i + src_offset,
829 MOD_LOG_KEY_REMOVE, GFP_NOFS);
830 if (!tm_list_rem[i]) {
831 ret = -ENOMEM;
832 goto free_tms;
833 }
834
835 tm_list_add[i] = alloc_tree_mod_elem(dst, i + dst_offset,
836 MOD_LOG_KEY_ADD, GFP_NOFS);
837 if (!tm_list_add[i]) {
838 ret = -ENOMEM;
839 goto free_tms;
840 }
841 }
842
843 if (tree_mod_dont_log(fs_info, NULL))
844 goto free_tms;
845 locked = 1;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200846
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200847 for (i = 0; i < nr_items; i++) {
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000848 ret = __tree_mod_log_insert(fs_info, tm_list_rem[i]);
849 if (ret)
850 goto free_tms;
851 ret = __tree_mod_log_insert(fs_info, tm_list_add[i]);
852 if (ret)
853 goto free_tms;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200854 }
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000855
856 tree_mod_log_write_unlock(fs_info);
857 kfree(tm_list);
858
859 return 0;
860
861free_tms:
862 for (i = 0; i < nr_items * 2; i++) {
863 if (tm_list[i] && !RB_EMPTY_NODE(&tm_list[i]->node))
864 rb_erase(&tm_list[i]->node, &fs_info->tree_mod_log);
865 kfree(tm_list[i]);
866 }
867 if (locked)
868 tree_mod_log_write_unlock(fs_info);
869 kfree(tm_list);
870
871 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200872}
873
874static inline void
875tree_mod_log_eb_move(struct btrfs_fs_info *fs_info, struct extent_buffer *dst,
876 int dst_offset, int src_offset, int nr_items)
877{
878 int ret;
879 ret = tree_mod_log_insert_move(fs_info, dst, dst_offset, src_offset,
880 nr_items, GFP_NOFS);
881 BUG_ON(ret < 0);
882}
883
Jan Schmidt097b8a72012-06-21 11:08:04 +0200884static noinline void
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200885tree_mod_log_set_node_key(struct btrfs_fs_info *fs_info,
Liu Bo32adf092012-10-19 12:52:15 +0000886 struct extent_buffer *eb, int slot, int atomic)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200887{
888 int ret;
889
Filipe David Borba Manana78357762013-12-12 19:19:52 +0000890 ret = tree_mod_log_insert_key(fs_info, eb, slot,
Josef Bacikc8cc6342013-07-01 16:18:19 -0400891 MOD_LOG_KEY_REPLACE,
892 atomic ? GFP_ATOMIC : GFP_NOFS);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200893 BUG_ON(ret < 0);
894}
895
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000896static noinline int
Jan Schmidt097b8a72012-06-21 11:08:04 +0200897tree_mod_log_free_eb(struct btrfs_fs_info *fs_info, struct extent_buffer *eb)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200898{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000899 struct tree_mod_elem **tm_list = NULL;
900 int nritems = 0;
901 int i;
902 int ret = 0;
903
904 if (btrfs_header_level(eb) == 0)
905 return 0;
906
907 if (!tree_mod_need_log(fs_info, NULL))
908 return 0;
909
910 nritems = btrfs_header_nritems(eb);
911 tm_list = kzalloc(nritems * sizeof(struct tree_mod_elem *),
912 GFP_NOFS);
913 if (!tm_list)
914 return -ENOMEM;
915
916 for (i = 0; i < nritems; i++) {
917 tm_list[i] = alloc_tree_mod_elem(eb, i,
918 MOD_LOG_KEY_REMOVE_WHILE_FREEING, GFP_NOFS);
919 if (!tm_list[i]) {
920 ret = -ENOMEM;
921 goto free_tms;
922 }
923 }
924
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200925 if (tree_mod_dont_log(fs_info, eb))
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000926 goto free_tms;
927
928 ret = __tree_mod_log_free_eb(fs_info, tm_list, nritems);
929 tree_mod_log_write_unlock(fs_info);
930 if (ret)
931 goto free_tms;
932 kfree(tm_list);
933
934 return 0;
935
936free_tms:
937 for (i = 0; i < nritems; i++)
938 kfree(tm_list[i]);
939 kfree(tm_list);
940
941 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200942}
943
Jan Schmidt097b8a72012-06-21 11:08:04 +0200944static noinline void
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200945tree_mod_log_set_root_pointer(struct btrfs_root *root,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000946 struct extent_buffer *new_root_node,
947 int log_removal)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200948{
949 int ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200950 ret = tree_mod_log_insert_root(root->fs_info, root->node,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000951 new_root_node, GFP_NOFS, log_removal);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200952 BUG_ON(ret < 0);
953}
954
Chris Masond352ac62008-09-29 15:18:18 -0400955/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400956 * check if the tree block can be shared by multiple trees
957 */
958int btrfs_block_can_be_shared(struct btrfs_root *root,
959 struct extent_buffer *buf)
960{
961 /*
962 * Tree blocks not in refernece counted trees and tree roots
963 * are never shared. If a block was allocated after the last
964 * snapshot and the block was not allocated by tree relocation,
965 * we know the block is not shared.
966 */
Miao Xie27cdeb72014-04-02 19:51:05 +0800967 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400968 buf != root->node && buf != root->commit_root &&
969 (btrfs_header_generation(buf) <=
970 btrfs_root_last_snapshot(&root->root_item) ||
971 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)))
972 return 1;
973#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
Miao Xie27cdeb72014-04-02 19:51:05 +0800974 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400975 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
976 return 1;
977#endif
978 return 0;
979}
980
981static noinline int update_ref_for_cow(struct btrfs_trans_handle *trans,
982 struct btrfs_root *root,
983 struct extent_buffer *buf,
Yan, Zhengf0486c62010-05-16 10:46:25 -0400984 struct extent_buffer *cow,
985 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400986{
987 u64 refs;
988 u64 owner;
989 u64 flags;
990 u64 new_flags = 0;
991 int ret;
992
993 /*
994 * Backrefs update rules:
995 *
996 * Always use full backrefs for extent pointers in tree block
997 * allocated by tree relocation.
998 *
999 * If a shared tree block is no longer referenced by its owner
1000 * tree (btrfs_header_owner(buf) == root->root_key.objectid),
1001 * use full backrefs for extent pointers in tree block.
1002 *
1003 * If a tree block is been relocating
1004 * (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID),
1005 * use full backrefs for extent pointers in tree block.
1006 * The reason for this is some operations (such as drop tree)
1007 * are only allowed for blocks use full backrefs.
1008 */
1009
1010 if (btrfs_block_can_be_shared(root, buf)) {
1011 ret = btrfs_lookup_extent_info(trans, root, buf->start,
Josef Bacik3173a182013-03-07 14:22:04 -05001012 btrfs_header_level(buf), 1,
1013 &refs, &flags);
Mark Fashehbe1a5562011-08-08 13:20:18 -07001014 if (ret)
1015 return ret;
Mark Fashehe5df9572011-08-29 14:17:04 -07001016 if (refs == 0) {
1017 ret = -EROFS;
1018 btrfs_std_error(root->fs_info, ret);
1019 return ret;
1020 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001021 } else {
1022 refs = 1;
1023 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
1024 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
1025 flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
1026 else
1027 flags = 0;
1028 }
1029
1030 owner = btrfs_header_owner(buf);
1031 BUG_ON(owner == BTRFS_TREE_RELOC_OBJECTID &&
1032 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
1033
1034 if (refs > 1) {
1035 if ((owner == root->root_key.objectid ||
1036 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) &&
1037 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) {
Josef Bacike339a6b2014-07-02 10:54:25 -07001038 ret = btrfs_inc_ref(trans, root, buf, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001039 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001040
1041 if (root->root_key.objectid ==
1042 BTRFS_TREE_RELOC_OBJECTID) {
Josef Bacike339a6b2014-07-02 10:54:25 -07001043 ret = btrfs_dec_ref(trans, root, buf, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001044 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07001045 ret = btrfs_inc_ref(trans, root, cow, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001046 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001047 }
1048 new_flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
1049 } else {
1050
1051 if (root->root_key.objectid ==
1052 BTRFS_TREE_RELOC_OBJECTID)
Josef Bacike339a6b2014-07-02 10:54:25 -07001053 ret = btrfs_inc_ref(trans, root, cow, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001054 else
Josef Bacike339a6b2014-07-02 10:54:25 -07001055 ret = btrfs_inc_ref(trans, root, cow, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001056 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001057 }
1058 if (new_flags != 0) {
Josef Bacikb1c79e02013-05-09 13:49:30 -04001059 int level = btrfs_header_level(buf);
1060
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001061 ret = btrfs_set_disk_extent_flags(trans, root,
1062 buf->start,
1063 buf->len,
Josef Bacikb1c79e02013-05-09 13:49:30 -04001064 new_flags, level, 0);
Mark Fashehbe1a5562011-08-08 13:20:18 -07001065 if (ret)
1066 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001067 }
1068 } else {
1069 if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
1070 if (root->root_key.objectid ==
1071 BTRFS_TREE_RELOC_OBJECTID)
Josef Bacike339a6b2014-07-02 10:54:25 -07001072 ret = btrfs_inc_ref(trans, root, cow, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001073 else
Josef Bacike339a6b2014-07-02 10:54:25 -07001074 ret = btrfs_inc_ref(trans, root, cow, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001075 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07001076 ret = btrfs_dec_ref(trans, root, buf, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001077 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001078 }
1079 clean_tree_block(trans, root, buf);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001080 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001081 }
1082 return 0;
1083}
1084
1085/*
Chris Masond3977122009-01-05 21:25:51 -05001086 * does the dirty work in cow of a single block. The parent block (if
1087 * supplied) is updated to point to the new cow copy. The new buffer is marked
1088 * dirty and returned locked. If you modify the block it needs to be marked
1089 * dirty again.
Chris Masond352ac62008-09-29 15:18:18 -04001090 *
1091 * search_start -- an allocation hint for the new block
1092 *
Chris Masond3977122009-01-05 21:25:51 -05001093 * empty_size -- a hint that you plan on doing more cow. This is the size in
1094 * bytes the allocator should try to find free next to the block it returns.
1095 * This is just a hint and may be ignored by the allocator.
Chris Masond352ac62008-09-29 15:18:18 -04001096 */
Chris Masond3977122009-01-05 21:25:51 -05001097static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001098 struct btrfs_root *root,
1099 struct extent_buffer *buf,
1100 struct extent_buffer *parent, int parent_slot,
1101 struct extent_buffer **cow_ret,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001102 u64 search_start, u64 empty_size)
Chris Mason6702ed42007-08-07 16:15:09 -04001103{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001104 struct btrfs_disk_key disk_key;
Chris Mason5f39d392007-10-15 16:14:19 -04001105 struct extent_buffer *cow;
Mark Fashehbe1a5562011-08-08 13:20:18 -07001106 int level, ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04001107 int last_ref = 0;
Chris Mason925baed2008-06-25 16:01:30 -04001108 int unlock_orig = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001109 u64 parent_start;
Chris Mason6702ed42007-08-07 16:15:09 -04001110
Chris Mason925baed2008-06-25 16:01:30 -04001111 if (*cow_ret == buf)
1112 unlock_orig = 1;
1113
Chris Masonb9447ef82009-03-09 11:45:38 -04001114 btrfs_assert_tree_locked(buf);
Chris Mason925baed2008-06-25 16:01:30 -04001115
Miao Xie27cdeb72014-04-02 19:51:05 +08001116 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
1117 trans->transid != root->fs_info->running_transaction->transid);
1118 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
1119 trans->transid != root->last_trans);
Chris Mason5f39d392007-10-15 16:14:19 -04001120
Chris Mason7bb86312007-12-11 09:25:06 -05001121 level = btrfs_header_level(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04001122
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001123 if (level == 0)
1124 btrfs_item_key(buf, &disk_key, 0);
1125 else
1126 btrfs_node_key(buf, &disk_key, 0);
1127
1128 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
1129 if (parent)
1130 parent_start = parent->start;
1131 else
1132 parent_start = 0;
1133 } else
1134 parent_start = 0;
1135
1136 cow = btrfs_alloc_free_block(trans, root, buf->len, parent_start,
1137 root->root_key.objectid, &disk_key,
Jan Schmidt5581a512012-05-16 17:04:52 +02001138 level, search_start, empty_size);
Chris Mason6702ed42007-08-07 16:15:09 -04001139 if (IS_ERR(cow))
1140 return PTR_ERR(cow);
1141
Chris Masonb4ce94d2009-02-04 09:25:08 -05001142 /* cow is set to blocking by btrfs_init_new_buffer */
1143
Chris Mason5f39d392007-10-15 16:14:19 -04001144 copy_extent_buffer(cow, buf, 0, 0, cow->len);
Chris Masondb945352007-10-15 16:15:53 -04001145 btrfs_set_header_bytenr(cow, cow->start);
Chris Mason5f39d392007-10-15 16:14:19 -04001146 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001147 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
1148 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
1149 BTRFS_HEADER_FLAG_RELOC);
1150 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
1151 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
1152 else
1153 btrfs_set_header_owner(cow, root->root_key.objectid);
Chris Mason6702ed42007-08-07 16:15:09 -04001154
Ross Kirk0a4e5582013-09-24 10:12:38 +01001155 write_extent_buffer(cow, root->fs_info->fsid, btrfs_header_fsid(),
Yan Zheng2b820322008-11-17 21:11:30 -05001156 BTRFS_FSID_SIZE);
1157
Mark Fashehbe1a5562011-08-08 13:20:18 -07001158 ret = update_ref_for_cow(trans, root, buf, cow, &last_ref);
Mark Fashehb68dc2a2011-08-29 14:30:39 -07001159 if (ret) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001160 btrfs_abort_transaction(trans, root, ret);
Mark Fashehb68dc2a2011-08-29 14:30:39 -07001161 return ret;
1162 }
Zheng Yan1a40e232008-09-26 10:09:34 -04001163
Miao Xie27cdeb72014-04-02 19:51:05 +08001164 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state)) {
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001165 ret = btrfs_reloc_cow_block(trans, root, buf, cow);
1166 if (ret)
1167 return ret;
1168 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001169
Chris Mason6702ed42007-08-07 16:15:09 -04001170 if (buf == root->node) {
Chris Mason925baed2008-06-25 16:01:30 -04001171 WARN_ON(parent && parent != buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001172 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
1173 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
1174 parent_start = buf->start;
1175 else
1176 parent_start = 0;
Chris Mason925baed2008-06-25 16:01:30 -04001177
Chris Mason5f39d392007-10-15 16:14:19 -04001178 extent_buffer_get(cow);
Jan Schmidt90f8d622013-04-13 13:19:53 +00001179 tree_mod_log_set_root_pointer(root, cow, 1);
Chris Mason240f62c2011-03-23 14:54:42 -04001180 rcu_assign_pointer(root->node, cow);
Chris Mason925baed2008-06-25 16:01:30 -04001181
Yan, Zhengf0486c62010-05-16 10:46:25 -04001182 btrfs_free_tree_block(trans, root, buf, parent_start,
Jan Schmidt5581a512012-05-16 17:04:52 +02001183 last_ref);
Chris Mason5f39d392007-10-15 16:14:19 -04001184 free_extent_buffer(buf);
Chris Mason0b86a832008-03-24 15:01:56 -04001185 add_root_to_dirty_list(root);
Chris Mason6702ed42007-08-07 16:15:09 -04001186 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001187 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
1188 parent_start = parent->start;
1189 else
1190 parent_start = 0;
1191
1192 WARN_ON(trans->transid != btrfs_header_generation(parent));
Jan Schmidtf2304752012-05-26 11:43:17 +02001193 tree_mod_log_insert_key(root->fs_info, parent, parent_slot,
Josef Bacikc8cc6342013-07-01 16:18:19 -04001194 MOD_LOG_KEY_REPLACE, GFP_NOFS);
Chris Mason5f39d392007-10-15 16:14:19 -04001195 btrfs_set_node_blockptr(parent, parent_slot,
Chris Masondb945352007-10-15 16:15:53 -04001196 cow->start);
Chris Mason74493f72007-12-11 09:25:06 -05001197 btrfs_set_node_ptr_generation(parent, parent_slot,
1198 trans->transid);
Chris Mason6702ed42007-08-07 16:15:09 -04001199 btrfs_mark_buffer_dirty(parent);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00001200 if (last_ref) {
1201 ret = tree_mod_log_free_eb(root->fs_info, buf);
1202 if (ret) {
1203 btrfs_abort_transaction(trans, root, ret);
1204 return ret;
1205 }
1206 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04001207 btrfs_free_tree_block(trans, root, buf, parent_start,
Jan Schmidt5581a512012-05-16 17:04:52 +02001208 last_ref);
Chris Mason6702ed42007-08-07 16:15:09 -04001209 }
Chris Mason925baed2008-06-25 16:01:30 -04001210 if (unlock_orig)
1211 btrfs_tree_unlock(buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05001212 free_extent_buffer_stale(buf);
Chris Mason6702ed42007-08-07 16:15:09 -04001213 btrfs_mark_buffer_dirty(cow);
1214 *cow_ret = cow;
1215 return 0;
1216}
1217
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001218/*
1219 * returns the logical address of the oldest predecessor of the given root.
1220 * entries older than time_seq are ignored.
1221 */
1222static struct tree_mod_elem *
1223__tree_mod_log_oldest_root(struct btrfs_fs_info *fs_info,
Jan Schmidt30b04632013-04-13 13:19:54 +00001224 struct extent_buffer *eb_root, u64 time_seq)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001225{
1226 struct tree_mod_elem *tm;
1227 struct tree_mod_elem *found = NULL;
Jan Schmidt30b04632013-04-13 13:19:54 +00001228 u64 root_logical = eb_root->start;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001229 int looped = 0;
1230
1231 if (!time_seq)
Stefan Behrens35a36212013-08-14 18:12:25 +02001232 return NULL;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001233
1234 /*
1235 * the very last operation that's logged for a root is the replacement
1236 * operation (if it is replaced at all). this has the index of the *new*
1237 * root, making it the very first operation that's logged for this root.
1238 */
1239 while (1) {
1240 tm = tree_mod_log_search_oldest(fs_info, root_logical,
1241 time_seq);
1242 if (!looped && !tm)
Stefan Behrens35a36212013-08-14 18:12:25 +02001243 return NULL;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001244 /*
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001245 * if there are no tree operation for the oldest root, we simply
1246 * return it. this should only happen if that (old) root is at
1247 * level 0.
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001248 */
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001249 if (!tm)
1250 break;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001251
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001252 /*
1253 * if there's an operation that's not a root replacement, we
1254 * found the oldest version of our root. normally, we'll find a
1255 * MOD_LOG_KEY_REMOVE_WHILE_FREEING operation here.
1256 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001257 if (tm->op != MOD_LOG_ROOT_REPLACE)
1258 break;
1259
1260 found = tm;
1261 root_logical = tm->old_root.logical;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001262 looped = 1;
1263 }
1264
Jan Schmidta95236d2012-06-05 16:41:24 +02001265 /* if there's no old root to return, return what we found instead */
1266 if (!found)
1267 found = tm;
1268
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001269 return found;
1270}
1271
1272/*
1273 * tm is a pointer to the first operation to rewind within eb. then, all
1274 * previous operations will be rewinded (until we reach something older than
1275 * time_seq).
1276 */
1277static void
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001278__tree_mod_log_rewind(struct btrfs_fs_info *fs_info, struct extent_buffer *eb,
1279 u64 time_seq, struct tree_mod_elem *first_tm)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001280{
1281 u32 n;
1282 struct rb_node *next;
1283 struct tree_mod_elem *tm = first_tm;
1284 unsigned long o_dst;
1285 unsigned long o_src;
1286 unsigned long p_size = sizeof(struct btrfs_key_ptr);
1287
1288 n = btrfs_header_nritems(eb);
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001289 tree_mod_log_read_lock(fs_info);
Jan Schmidt097b8a72012-06-21 11:08:04 +02001290 while (tm && tm->seq >= time_seq) {
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001291 /*
1292 * all the operations are recorded with the operator used for
1293 * the modification. as we're going backwards, we do the
1294 * opposite of each operation here.
1295 */
1296 switch (tm->op) {
1297 case MOD_LOG_KEY_REMOVE_WHILE_FREEING:
1298 BUG_ON(tm->slot < n);
Eric Sandeen1c697d42013-01-31 00:54:56 +00001299 /* Fallthrough */
Liu Bo95c80bb2012-10-19 09:50:52 +00001300 case MOD_LOG_KEY_REMOVE_WHILE_MOVING:
Chris Mason4c3e6962012-12-18 15:43:18 -05001301 case MOD_LOG_KEY_REMOVE:
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001302 btrfs_set_node_key(eb, &tm->key, tm->slot);
1303 btrfs_set_node_blockptr(eb, tm->slot, tm->blockptr);
1304 btrfs_set_node_ptr_generation(eb, tm->slot,
1305 tm->generation);
Chris Mason4c3e6962012-12-18 15:43:18 -05001306 n++;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001307 break;
1308 case MOD_LOG_KEY_REPLACE:
1309 BUG_ON(tm->slot >= n);
1310 btrfs_set_node_key(eb, &tm->key, tm->slot);
1311 btrfs_set_node_blockptr(eb, tm->slot, tm->blockptr);
1312 btrfs_set_node_ptr_generation(eb, tm->slot,
1313 tm->generation);
1314 break;
1315 case MOD_LOG_KEY_ADD:
Jan Schmidt19956c72012-06-22 14:52:13 +02001316 /* if a move operation is needed it's in the log */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001317 n--;
1318 break;
1319 case MOD_LOG_MOVE_KEYS:
Jan Schmidtc3193102012-05-31 19:24:36 +02001320 o_dst = btrfs_node_key_ptr_offset(tm->slot);
1321 o_src = btrfs_node_key_ptr_offset(tm->move.dst_slot);
1322 memmove_extent_buffer(eb, o_dst, o_src,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001323 tm->move.nr_items * p_size);
1324 break;
1325 case MOD_LOG_ROOT_REPLACE:
1326 /*
1327 * this operation is special. for roots, this must be
1328 * handled explicitly before rewinding.
1329 * for non-roots, this operation may exist if the node
1330 * was a root: root A -> child B; then A gets empty and
1331 * B is promoted to the new root. in the mod log, we'll
1332 * have a root-replace operation for B, a tree block
1333 * that is no root. we simply ignore that operation.
1334 */
1335 break;
1336 }
1337 next = rb_next(&tm->node);
1338 if (!next)
1339 break;
1340 tm = container_of(next, struct tree_mod_elem, node);
1341 if (tm->index != first_tm->index)
1342 break;
1343 }
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001344 tree_mod_log_read_unlock(fs_info);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001345 btrfs_set_header_nritems(eb, n);
1346}
1347
Jan Schmidt47fb0912013-04-13 13:19:55 +00001348/*
1349 * Called with eb read locked. If the buffer cannot be rewinded, the same buffer
1350 * is returned. If rewind operations happen, a fresh buffer is returned. The
1351 * returned buffer is always read-locked. If the returned buffer is not the
1352 * input buffer, the lock on the input buffer is released and the input buffer
1353 * is freed (its refcount is decremented).
1354 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001355static struct extent_buffer *
Josef Bacik9ec72672013-08-07 16:57:23 -04001356tree_mod_log_rewind(struct btrfs_fs_info *fs_info, struct btrfs_path *path,
1357 struct extent_buffer *eb, u64 time_seq)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001358{
1359 struct extent_buffer *eb_rewin;
1360 struct tree_mod_elem *tm;
1361
1362 if (!time_seq)
1363 return eb;
1364
1365 if (btrfs_header_level(eb) == 0)
1366 return eb;
1367
1368 tm = tree_mod_log_search(fs_info, eb->start, time_seq);
1369 if (!tm)
1370 return eb;
1371
Josef Bacik9ec72672013-08-07 16:57:23 -04001372 btrfs_set_path_blocking(path);
1373 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
1374
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001375 if (tm->op == MOD_LOG_KEY_REMOVE_WHILE_FREEING) {
1376 BUG_ON(tm->slot != 0);
1377 eb_rewin = alloc_dummy_extent_buffer(eb->start,
1378 fs_info->tree_root->nodesize);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001379 if (!eb_rewin) {
Josef Bacik9ec72672013-08-07 16:57:23 -04001380 btrfs_tree_read_unlock_blocking(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001381 free_extent_buffer(eb);
1382 return NULL;
1383 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001384 btrfs_set_header_bytenr(eb_rewin, eb->start);
1385 btrfs_set_header_backref_rev(eb_rewin,
1386 btrfs_header_backref_rev(eb));
1387 btrfs_set_header_owner(eb_rewin, btrfs_header_owner(eb));
Jan Schmidtc3193102012-05-31 19:24:36 +02001388 btrfs_set_header_level(eb_rewin, btrfs_header_level(eb));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001389 } else {
1390 eb_rewin = btrfs_clone_extent_buffer(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001391 if (!eb_rewin) {
Josef Bacik9ec72672013-08-07 16:57:23 -04001392 btrfs_tree_read_unlock_blocking(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001393 free_extent_buffer(eb);
1394 return NULL;
1395 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001396 }
1397
Josef Bacik9ec72672013-08-07 16:57:23 -04001398 btrfs_clear_path_blocking(path, NULL, BTRFS_READ_LOCK);
1399 btrfs_tree_read_unlock_blocking(eb);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001400 free_extent_buffer(eb);
1401
Jan Schmidt47fb0912013-04-13 13:19:55 +00001402 extent_buffer_get(eb_rewin);
1403 btrfs_tree_read_lock(eb_rewin);
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001404 __tree_mod_log_rewind(fs_info, eb_rewin, time_seq, tm);
Jan Schmidt57911b82012-10-19 09:22:03 +02001405 WARN_ON(btrfs_header_nritems(eb_rewin) >
Arne Jansen2a745b12013-02-13 04:20:01 -07001406 BTRFS_NODEPTRS_PER_BLOCK(fs_info->tree_root));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001407
1408 return eb_rewin;
1409}
1410
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001411/*
1412 * get_old_root() rewinds the state of @root's root node to the given @time_seq
1413 * value. If there are no changes, the current root->root_node is returned. If
1414 * anything changed in between, there's a fresh buffer allocated on which the
1415 * rewind operations are done. In any case, the returned buffer is read locked.
1416 * Returns NULL on error (with no locks held).
1417 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001418static inline struct extent_buffer *
1419get_old_root(struct btrfs_root *root, u64 time_seq)
1420{
1421 struct tree_mod_elem *tm;
Jan Schmidt30b04632013-04-13 13:19:54 +00001422 struct extent_buffer *eb = NULL;
1423 struct extent_buffer *eb_root;
Liu Bo7bfdcf72012-10-25 07:30:19 -06001424 struct extent_buffer *old;
Jan Schmidta95236d2012-06-05 16:41:24 +02001425 struct tree_mod_root *old_root = NULL;
Chris Mason4325edd2012-06-15 20:02:02 -04001426 u64 old_generation = 0;
Jan Schmidta95236d2012-06-05 16:41:24 +02001427 u64 logical;
Jan Schmidt834328a2012-10-23 11:27:33 +02001428 u32 blocksize;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001429
Jan Schmidt30b04632013-04-13 13:19:54 +00001430 eb_root = btrfs_read_lock_root_node(root);
1431 tm = __tree_mod_log_oldest_root(root->fs_info, eb_root, time_seq);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001432 if (!tm)
Jan Schmidt30b04632013-04-13 13:19:54 +00001433 return eb_root;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001434
Jan Schmidta95236d2012-06-05 16:41:24 +02001435 if (tm->op == MOD_LOG_ROOT_REPLACE) {
1436 old_root = &tm->old_root;
1437 old_generation = tm->generation;
1438 logical = old_root->logical;
1439 } else {
Jan Schmidt30b04632013-04-13 13:19:54 +00001440 logical = eb_root->start;
Jan Schmidta95236d2012-06-05 16:41:24 +02001441 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001442
Jan Schmidta95236d2012-06-05 16:41:24 +02001443 tm = tree_mod_log_search(root->fs_info, logical, time_seq);
Jan Schmidt834328a2012-10-23 11:27:33 +02001444 if (old_root && tm && tm->op != MOD_LOG_KEY_REMOVE_WHILE_FREEING) {
Jan Schmidt30b04632013-04-13 13:19:54 +00001445 btrfs_tree_read_unlock(eb_root);
1446 free_extent_buffer(eb_root);
David Sterba707e8a02014-06-04 19:22:26 +02001447 blocksize = root->nodesize;
Liu Bo7bfdcf72012-10-25 07:30:19 -06001448 old = read_tree_block(root, logical, blocksize, 0);
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301449 if (WARN_ON(!old || !extent_buffer_uptodate(old))) {
Josef Bacik416bc652013-04-23 14:17:42 -04001450 free_extent_buffer(old);
Frank Holtonefe120a2013-12-20 11:37:06 -05001451 btrfs_warn(root->fs_info,
1452 "failed to read tree block %llu from get_old_root", logical);
Jan Schmidt834328a2012-10-23 11:27:33 +02001453 } else {
Liu Bo7bfdcf72012-10-25 07:30:19 -06001454 eb = btrfs_clone_extent_buffer(old);
1455 free_extent_buffer(old);
Jan Schmidt834328a2012-10-23 11:27:33 +02001456 }
1457 } else if (old_root) {
Jan Schmidt30b04632013-04-13 13:19:54 +00001458 btrfs_tree_read_unlock(eb_root);
1459 free_extent_buffer(eb_root);
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001460 eb = alloc_dummy_extent_buffer(logical, root->nodesize);
Jan Schmidt834328a2012-10-23 11:27:33 +02001461 } else {
Josef Bacik9ec72672013-08-07 16:57:23 -04001462 btrfs_set_lock_blocking_rw(eb_root, BTRFS_READ_LOCK);
Jan Schmidt30b04632013-04-13 13:19:54 +00001463 eb = btrfs_clone_extent_buffer(eb_root);
Josef Bacik9ec72672013-08-07 16:57:23 -04001464 btrfs_tree_read_unlock_blocking(eb_root);
Jan Schmidt30b04632013-04-13 13:19:54 +00001465 free_extent_buffer(eb_root);
Jan Schmidt834328a2012-10-23 11:27:33 +02001466 }
1467
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001468 if (!eb)
1469 return NULL;
Jan Schmidtd6381082012-10-23 14:21:05 +02001470 extent_buffer_get(eb);
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001471 btrfs_tree_read_lock(eb);
Jan Schmidta95236d2012-06-05 16:41:24 +02001472 if (old_root) {
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001473 btrfs_set_header_bytenr(eb, eb->start);
1474 btrfs_set_header_backref_rev(eb, BTRFS_MIXED_BACKREF_REV);
Jan Schmidt30b04632013-04-13 13:19:54 +00001475 btrfs_set_header_owner(eb, btrfs_header_owner(eb_root));
Jan Schmidta95236d2012-06-05 16:41:24 +02001476 btrfs_set_header_level(eb, old_root->level);
1477 btrfs_set_header_generation(eb, old_generation);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001478 }
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001479 if (tm)
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001480 __tree_mod_log_rewind(root->fs_info, eb, time_seq, tm);
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001481 else
1482 WARN_ON(btrfs_header_level(eb) != 0);
Jan Schmidt57911b82012-10-19 09:22:03 +02001483 WARN_ON(btrfs_header_nritems(eb) > BTRFS_NODEPTRS_PER_BLOCK(root));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001484
1485 return eb;
1486}
1487
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001488int btrfs_old_root_level(struct btrfs_root *root, u64 time_seq)
1489{
1490 struct tree_mod_elem *tm;
1491 int level;
Jan Schmidt30b04632013-04-13 13:19:54 +00001492 struct extent_buffer *eb_root = btrfs_root_node(root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001493
Jan Schmidt30b04632013-04-13 13:19:54 +00001494 tm = __tree_mod_log_oldest_root(root->fs_info, eb_root, time_seq);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001495 if (tm && tm->op == MOD_LOG_ROOT_REPLACE) {
1496 level = tm->old_root.level;
1497 } else {
Jan Schmidt30b04632013-04-13 13:19:54 +00001498 level = btrfs_header_level(eb_root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001499 }
Jan Schmidt30b04632013-04-13 13:19:54 +00001500 free_extent_buffer(eb_root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001501
1502 return level;
1503}
1504
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001505static inline int should_cow_block(struct btrfs_trans_handle *trans,
1506 struct btrfs_root *root,
1507 struct extent_buffer *buf)
1508{
David Sterbafccb84c2014-09-29 23:53:21 +02001509 if (btrfs_test_is_dummy_root(root))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04001510 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02001511
Liu Bof1ebcc72011-11-14 20:48:06 -05001512 /* ensure we can see the force_cow */
1513 smp_rmb();
1514
1515 /*
1516 * We do not need to cow a block if
1517 * 1) this block is not created or changed in this transaction;
1518 * 2) this block does not belong to TREE_RELOC tree;
1519 * 3) the root is not forced COW.
1520 *
1521 * What is forced COW:
1522 * when we create snapshot during commiting the transaction,
1523 * after we've finished coping src root, we must COW the shared
1524 * block to ensure the metadata consistency.
1525 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001526 if (btrfs_header_generation(buf) == trans->transid &&
1527 !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN) &&
1528 !(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
Liu Bof1ebcc72011-11-14 20:48:06 -05001529 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)) &&
Miao Xie27cdeb72014-04-02 19:51:05 +08001530 !test_bit(BTRFS_ROOT_FORCE_COW, &root->state))
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001531 return 0;
1532 return 1;
1533}
1534
Chris Masond352ac62008-09-29 15:18:18 -04001535/*
1536 * cows a single block, see __btrfs_cow_block for the real work.
1537 * This version of it has extra checks so that a block isn't cow'd more than
1538 * once per transaction, as long as it hasn't been written yet
1539 */
Chris Masond3977122009-01-05 21:25:51 -05001540noinline int btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001541 struct btrfs_root *root, struct extent_buffer *buf,
1542 struct extent_buffer *parent, int parent_slot,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001543 struct extent_buffer **cow_ret)
Chris Mason02217ed2007-03-02 16:08:05 -05001544{
Chris Mason6702ed42007-08-07 16:15:09 -04001545 u64 search_start;
Chris Masonf510cfe2007-10-15 16:14:48 -04001546 int ret;
Chris Masondc17ff82008-01-08 15:46:30 -05001547
Julia Lawall31b1a2b2012-11-03 10:58:34 +00001548 if (trans->transaction != root->fs_info->running_transaction)
1549 WARN(1, KERN_CRIT "trans %llu running %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001550 trans->transid,
Chris Masonccd467d2007-06-28 15:57:36 -04001551 root->fs_info->running_transaction->transid);
Julia Lawall31b1a2b2012-11-03 10:58:34 +00001552
1553 if (trans->transid != root->fs_info->generation)
1554 WARN(1, KERN_CRIT "trans %llu running %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001555 trans->transid, root->fs_info->generation);
Chris Masondc17ff82008-01-08 15:46:30 -05001556
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001557 if (!should_cow_block(trans, root, buf)) {
Chris Mason02217ed2007-03-02 16:08:05 -05001558 *cow_ret = buf;
1559 return 0;
1560 }
Chris Masonc4876852009-02-04 09:24:25 -05001561
Chris Mason0b86a832008-03-24 15:01:56 -04001562 search_start = buf->start & ~((u64)(1024 * 1024 * 1024) - 1);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001563
1564 if (parent)
1565 btrfs_set_lock_blocking(parent);
1566 btrfs_set_lock_blocking(buf);
1567
Chris Masonf510cfe2007-10-15 16:14:48 -04001568 ret = __btrfs_cow_block(trans, root, buf, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001569 parent_slot, cow_ret, search_start, 0);
liubo1abe9b82011-03-24 11:18:59 +00001570
1571 trace_btrfs_cow_block(root, buf, *cow_ret);
1572
Chris Masonf510cfe2007-10-15 16:14:48 -04001573 return ret;
Chris Mason6702ed42007-08-07 16:15:09 -04001574}
1575
Chris Masond352ac62008-09-29 15:18:18 -04001576/*
1577 * helper function for defrag to decide if two blocks pointed to by a
1578 * node are actually close by
1579 */
Chris Mason6b800532007-10-15 16:17:34 -04001580static int close_blocks(u64 blocknr, u64 other, u32 blocksize)
Chris Mason6702ed42007-08-07 16:15:09 -04001581{
Chris Mason6b800532007-10-15 16:17:34 -04001582 if (blocknr < other && other - (blocknr + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -04001583 return 1;
Chris Mason6b800532007-10-15 16:17:34 -04001584 if (blocknr > other && blocknr - (other + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -04001585 return 1;
Chris Mason02217ed2007-03-02 16:08:05 -05001586 return 0;
1587}
1588
Chris Mason081e9572007-11-06 10:26:24 -05001589/*
1590 * compare two keys in a memcmp fashion
1591 */
1592static int comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2)
1593{
1594 struct btrfs_key k1;
1595
1596 btrfs_disk_key_to_cpu(&k1, disk);
1597
Diego Calleja20736ab2009-07-24 11:06:52 -04001598 return btrfs_comp_cpu_keys(&k1, k2);
Chris Mason081e9572007-11-06 10:26:24 -05001599}
1600
Josef Bacikf3465ca2008-11-12 14:19:50 -05001601/*
1602 * same as comp_keys only with two btrfs_key's
1603 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001604int btrfs_comp_cpu_keys(struct btrfs_key *k1, struct btrfs_key *k2)
Josef Bacikf3465ca2008-11-12 14:19:50 -05001605{
1606 if (k1->objectid > k2->objectid)
1607 return 1;
1608 if (k1->objectid < k2->objectid)
1609 return -1;
1610 if (k1->type > k2->type)
1611 return 1;
1612 if (k1->type < k2->type)
1613 return -1;
1614 if (k1->offset > k2->offset)
1615 return 1;
1616 if (k1->offset < k2->offset)
1617 return -1;
1618 return 0;
1619}
Chris Mason081e9572007-11-06 10:26:24 -05001620
Chris Masond352ac62008-09-29 15:18:18 -04001621/*
1622 * this is used by the defrag code to go through all the
1623 * leaves pointed to by a node and reallocate them so that
1624 * disk order is close to key order
1625 */
Chris Mason6702ed42007-08-07 16:15:09 -04001626int btrfs_realloc_node(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001627 struct btrfs_root *root, struct extent_buffer *parent,
Eric Sandeende78b512013-01-31 18:21:12 +00001628 int start_slot, u64 *last_ret,
Chris Masona6b6e752007-10-15 16:22:39 -04001629 struct btrfs_key *progress)
Chris Mason6702ed42007-08-07 16:15:09 -04001630{
Chris Mason6b800532007-10-15 16:17:34 -04001631 struct extent_buffer *cur;
Chris Mason6702ed42007-08-07 16:15:09 -04001632 u64 blocknr;
Chris Masonca7a79a2008-05-12 12:59:19 -04001633 u64 gen;
Chris Masone9d0b132007-08-10 14:06:19 -04001634 u64 search_start = *last_ret;
1635 u64 last_block = 0;
Chris Mason6702ed42007-08-07 16:15:09 -04001636 u64 other;
1637 u32 parent_nritems;
Chris Mason6702ed42007-08-07 16:15:09 -04001638 int end_slot;
1639 int i;
1640 int err = 0;
Chris Masonf2183bd2007-08-10 14:42:37 -04001641 int parent_level;
Chris Mason6b800532007-10-15 16:17:34 -04001642 int uptodate;
1643 u32 blocksize;
Chris Mason081e9572007-11-06 10:26:24 -05001644 int progress_passed = 0;
1645 struct btrfs_disk_key disk_key;
Chris Mason6702ed42007-08-07 16:15:09 -04001646
Chris Mason5708b952007-10-25 15:43:18 -04001647 parent_level = btrfs_header_level(parent);
Chris Mason5708b952007-10-25 15:43:18 -04001648
Julia Lawall6c1500f2012-11-03 20:30:18 +00001649 WARN_ON(trans->transaction != root->fs_info->running_transaction);
1650 WARN_ON(trans->transid != root->fs_info->generation);
Chris Mason86479a02007-09-10 19:58:16 -04001651
Chris Mason6b800532007-10-15 16:17:34 -04001652 parent_nritems = btrfs_header_nritems(parent);
David Sterba707e8a02014-06-04 19:22:26 +02001653 blocksize = root->nodesize;
Chris Mason6702ed42007-08-07 16:15:09 -04001654 end_slot = parent_nritems;
1655
1656 if (parent_nritems == 1)
1657 return 0;
1658
Chris Masonb4ce94d2009-02-04 09:25:08 -05001659 btrfs_set_lock_blocking(parent);
1660
Chris Mason6702ed42007-08-07 16:15:09 -04001661 for (i = start_slot; i < end_slot; i++) {
1662 int close = 1;
Chris Masona6b6e752007-10-15 16:22:39 -04001663
Chris Mason081e9572007-11-06 10:26:24 -05001664 btrfs_node_key(parent, &disk_key, i);
1665 if (!progress_passed && comp_keys(&disk_key, progress) < 0)
1666 continue;
1667
1668 progress_passed = 1;
Chris Mason6b800532007-10-15 16:17:34 -04001669 blocknr = btrfs_node_blockptr(parent, i);
Chris Masonca7a79a2008-05-12 12:59:19 -04001670 gen = btrfs_node_ptr_generation(parent, i);
Chris Masone9d0b132007-08-10 14:06:19 -04001671 if (last_block == 0)
1672 last_block = blocknr;
Chris Mason5708b952007-10-25 15:43:18 -04001673
Chris Mason6702ed42007-08-07 16:15:09 -04001674 if (i > 0) {
Chris Mason6b800532007-10-15 16:17:34 -04001675 other = btrfs_node_blockptr(parent, i - 1);
1676 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -04001677 }
Chris Mason0ef3e662008-05-24 14:04:53 -04001678 if (!close && i < end_slot - 2) {
Chris Mason6b800532007-10-15 16:17:34 -04001679 other = btrfs_node_blockptr(parent, i + 1);
1680 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -04001681 }
Chris Masone9d0b132007-08-10 14:06:19 -04001682 if (close) {
1683 last_block = blocknr;
Chris Mason6702ed42007-08-07 16:15:09 -04001684 continue;
Chris Masone9d0b132007-08-10 14:06:19 -04001685 }
Chris Mason6702ed42007-08-07 16:15:09 -04001686
Chris Mason6b800532007-10-15 16:17:34 -04001687 cur = btrfs_find_tree_block(root, blocknr, blocksize);
1688 if (cur)
Chris Masonb9fab912012-05-06 07:23:47 -04001689 uptodate = btrfs_buffer_uptodate(cur, gen, 0);
Chris Mason6b800532007-10-15 16:17:34 -04001690 else
1691 uptodate = 0;
Chris Mason5708b952007-10-25 15:43:18 -04001692 if (!cur || !uptodate) {
Chris Mason6b800532007-10-15 16:17:34 -04001693 if (!cur) {
1694 cur = read_tree_block(root, blocknr,
Chris Masonca7a79a2008-05-12 12:59:19 -04001695 blocksize, gen);
Josef Bacik416bc652013-04-23 14:17:42 -04001696 if (!cur || !extent_buffer_uptodate(cur)) {
1697 free_extent_buffer(cur);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00001698 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04001699 }
Chris Mason6b800532007-10-15 16:17:34 -04001700 } else if (!uptodate) {
Tsutomu Itoh018642a2012-05-29 18:10:13 +09001701 err = btrfs_read_buffer(cur, gen);
1702 if (err) {
1703 free_extent_buffer(cur);
1704 return err;
1705 }
Chris Masonf2183bd2007-08-10 14:42:37 -04001706 }
Chris Mason6702ed42007-08-07 16:15:09 -04001707 }
Chris Masone9d0b132007-08-10 14:06:19 -04001708 if (search_start == 0)
Chris Mason6b800532007-10-15 16:17:34 -04001709 search_start = last_block;
Chris Masone9d0b132007-08-10 14:06:19 -04001710
Chris Masone7a84562008-06-25 16:01:31 -04001711 btrfs_tree_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001712 btrfs_set_lock_blocking(cur);
Chris Mason6b800532007-10-15 16:17:34 -04001713 err = __btrfs_cow_block(trans, root, cur, parent, i,
Chris Masone7a84562008-06-25 16:01:31 -04001714 &cur, search_start,
Chris Mason6b800532007-10-15 16:17:34 -04001715 min(16 * blocksize,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001716 (end_slot - i) * blocksize));
Yan252c38f2007-08-29 09:11:44 -04001717 if (err) {
Chris Masone7a84562008-06-25 16:01:31 -04001718 btrfs_tree_unlock(cur);
Chris Mason6b800532007-10-15 16:17:34 -04001719 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -04001720 break;
Yan252c38f2007-08-29 09:11:44 -04001721 }
Chris Masone7a84562008-06-25 16:01:31 -04001722 search_start = cur->start;
1723 last_block = cur->start;
Chris Masonf2183bd2007-08-10 14:42:37 -04001724 *last_ret = search_start;
Chris Masone7a84562008-06-25 16:01:31 -04001725 btrfs_tree_unlock(cur);
1726 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -04001727 }
1728 return err;
1729}
1730
Chris Mason74123bd2007-02-02 11:05:29 -05001731/*
1732 * The leaf data grows from end-to-front in the node.
1733 * this returns the address of the start of the last item,
1734 * which is the stop of the leaf data stack
1735 */
Chris Mason123abc82007-03-14 14:14:43 -04001736static inline unsigned int leaf_data_end(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -04001737 struct extent_buffer *leaf)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001738{
Chris Mason5f39d392007-10-15 16:14:19 -04001739 u32 nr = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001740 if (nr == 0)
Chris Mason123abc82007-03-14 14:14:43 -04001741 return BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -04001742 return btrfs_item_offset_nr(leaf, nr - 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001743}
1744
Chris Masonaa5d6be2007-02-28 16:35:06 -05001745
Chris Mason74123bd2007-02-02 11:05:29 -05001746/*
Chris Mason5f39d392007-10-15 16:14:19 -04001747 * search for key in the extent_buffer. The items start at offset p,
1748 * and they are item_size apart. There are 'max' items in p.
1749 *
Chris Mason74123bd2007-02-02 11:05:29 -05001750 * the slot in the array is returned via slot, and it points to
1751 * the place where you would insert key if it is not found in
1752 * the array.
1753 *
1754 * slot may point to max if the key is bigger than all of the keys
1755 */
Chris Masone02119d2008-09-05 16:13:11 -04001756static noinline int generic_bin_search(struct extent_buffer *eb,
1757 unsigned long p,
1758 int item_size, struct btrfs_key *key,
1759 int max, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001760{
1761 int low = 0;
1762 int high = max;
1763 int mid;
1764 int ret;
Chris Mason479965d2007-10-15 16:14:27 -04001765 struct btrfs_disk_key *tmp = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001766 struct btrfs_disk_key unaligned;
1767 unsigned long offset;
Chris Mason5f39d392007-10-15 16:14:19 -04001768 char *kaddr = NULL;
1769 unsigned long map_start = 0;
1770 unsigned long map_len = 0;
Chris Mason479965d2007-10-15 16:14:27 -04001771 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001772
Chris Masond3977122009-01-05 21:25:51 -05001773 while (low < high) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001774 mid = (low + high) / 2;
Chris Mason5f39d392007-10-15 16:14:19 -04001775 offset = p + mid * item_size;
1776
Chris Masona6591712011-07-19 12:04:14 -04001777 if (!kaddr || offset < map_start ||
Chris Mason5f39d392007-10-15 16:14:19 -04001778 (offset + sizeof(struct btrfs_disk_key)) >
1779 map_start + map_len) {
Chris Mason934d3752008-12-08 16:43:10 -05001780
1781 err = map_private_extent_buffer(eb, offset,
Chris Mason479965d2007-10-15 16:14:27 -04001782 sizeof(struct btrfs_disk_key),
Chris Masona6591712011-07-19 12:04:14 -04001783 &kaddr, &map_start, &map_len);
Chris Mason5f39d392007-10-15 16:14:19 -04001784
Chris Mason479965d2007-10-15 16:14:27 -04001785 if (!err) {
1786 tmp = (struct btrfs_disk_key *)(kaddr + offset -
1787 map_start);
1788 } else {
1789 read_extent_buffer(eb, &unaligned,
1790 offset, sizeof(unaligned));
1791 tmp = &unaligned;
1792 }
1793
Chris Mason5f39d392007-10-15 16:14:19 -04001794 } else {
1795 tmp = (struct btrfs_disk_key *)(kaddr + offset -
1796 map_start);
1797 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001798 ret = comp_keys(tmp, key);
1799
1800 if (ret < 0)
1801 low = mid + 1;
1802 else if (ret > 0)
1803 high = mid;
1804 else {
1805 *slot = mid;
1806 return 0;
1807 }
1808 }
1809 *slot = low;
1810 return 1;
1811}
1812
Chris Mason97571fd2007-02-24 13:39:08 -05001813/*
1814 * simple bin_search frontend that does the right thing for
1815 * leaves vs nodes
1816 */
Chris Mason5f39d392007-10-15 16:14:19 -04001817static int bin_search(struct extent_buffer *eb, struct btrfs_key *key,
1818 int level, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001819{
Wang Sheng-Huif7757382012-03-30 15:14:27 +08001820 if (level == 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001821 return generic_bin_search(eb,
1822 offsetof(struct btrfs_leaf, items),
Chris Mason0783fcf2007-03-12 20:12:07 -04001823 sizeof(struct btrfs_item),
Chris Mason5f39d392007-10-15 16:14:19 -04001824 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -04001825 slot);
Wang Sheng-Huif7757382012-03-30 15:14:27 +08001826 else
Chris Mason5f39d392007-10-15 16:14:19 -04001827 return generic_bin_search(eb,
1828 offsetof(struct btrfs_node, ptrs),
Chris Mason123abc82007-03-14 14:14:43 -04001829 sizeof(struct btrfs_key_ptr),
Chris Mason5f39d392007-10-15 16:14:19 -04001830 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -04001831 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001832}
1833
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001834int btrfs_bin_search(struct extent_buffer *eb, struct btrfs_key *key,
1835 int level, int *slot)
1836{
1837 return bin_search(eb, key, level, slot);
1838}
1839
Yan, Zhengf0486c62010-05-16 10:46:25 -04001840static void root_add_used(struct btrfs_root *root, u32 size)
1841{
1842 spin_lock(&root->accounting_lock);
1843 btrfs_set_root_used(&root->root_item,
1844 btrfs_root_used(&root->root_item) + size);
1845 spin_unlock(&root->accounting_lock);
1846}
1847
1848static void root_sub_used(struct btrfs_root *root, u32 size)
1849{
1850 spin_lock(&root->accounting_lock);
1851 btrfs_set_root_used(&root->root_item,
1852 btrfs_root_used(&root->root_item) - size);
1853 spin_unlock(&root->accounting_lock);
1854}
1855
Chris Masond352ac62008-09-29 15:18:18 -04001856/* given a node and slot number, this reads the blocks it points to. The
1857 * extent buffer is returned with a reference taken (but unlocked).
1858 * NULL is returned on error.
1859 */
Chris Masone02119d2008-09-05 16:13:11 -04001860static noinline struct extent_buffer *read_node_slot(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -04001861 struct extent_buffer *parent, int slot)
Chris Masonbb803952007-03-01 12:04:21 -05001862{
Chris Masonca7a79a2008-05-12 12:59:19 -04001863 int level = btrfs_header_level(parent);
Josef Bacik416bc652013-04-23 14:17:42 -04001864 struct extent_buffer *eb;
1865
Chris Masonbb803952007-03-01 12:04:21 -05001866 if (slot < 0)
1867 return NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001868 if (slot >= btrfs_header_nritems(parent))
Chris Masonbb803952007-03-01 12:04:21 -05001869 return NULL;
Chris Masonca7a79a2008-05-12 12:59:19 -04001870
1871 BUG_ON(level == 0);
1872
Josef Bacik416bc652013-04-23 14:17:42 -04001873 eb = read_tree_block(root, btrfs_node_blockptr(parent, slot),
David Sterba707e8a02014-06-04 19:22:26 +02001874 root->nodesize,
Josef Bacik416bc652013-04-23 14:17:42 -04001875 btrfs_node_ptr_generation(parent, slot));
1876 if (eb && !extent_buffer_uptodate(eb)) {
1877 free_extent_buffer(eb);
1878 eb = NULL;
1879 }
1880
1881 return eb;
Chris Masonbb803952007-03-01 12:04:21 -05001882}
1883
Chris Masond352ac62008-09-29 15:18:18 -04001884/*
1885 * node level balancing, used to make sure nodes are in proper order for
1886 * item deletion. We balance from the top down, so we have to make sure
1887 * that a deletion won't leave an node completely empty later on.
1888 */
Chris Masone02119d2008-09-05 16:13:11 -04001889static noinline int balance_level(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05001890 struct btrfs_root *root,
1891 struct btrfs_path *path, int level)
Chris Masonbb803952007-03-01 12:04:21 -05001892{
Chris Mason5f39d392007-10-15 16:14:19 -04001893 struct extent_buffer *right = NULL;
1894 struct extent_buffer *mid;
1895 struct extent_buffer *left = NULL;
1896 struct extent_buffer *parent = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05001897 int ret = 0;
1898 int wret;
1899 int pslot;
Chris Masonbb803952007-03-01 12:04:21 -05001900 int orig_slot = path->slots[level];
Chris Mason79f95c82007-03-01 15:16:26 -05001901 u64 orig_ptr;
Chris Masonbb803952007-03-01 12:04:21 -05001902
1903 if (level == 0)
1904 return 0;
1905
Chris Mason5f39d392007-10-15 16:14:19 -04001906 mid = path->nodes[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001907
Chris Masonbd681512011-07-16 15:23:14 -04001908 WARN_ON(path->locks[level] != BTRFS_WRITE_LOCK &&
1909 path->locks[level] != BTRFS_WRITE_LOCK_BLOCKING);
Chris Mason7bb86312007-12-11 09:25:06 -05001910 WARN_ON(btrfs_header_generation(mid) != trans->transid);
1911
Chris Mason1d4f8a02007-03-13 09:28:32 -04001912 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
Chris Mason79f95c82007-03-01 15:16:26 -05001913
Li Zefana05a9bb2011-09-06 16:55:34 +08001914 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001915 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +08001916 pslot = path->slots[level + 1];
1917 }
Chris Masonbb803952007-03-01 12:04:21 -05001918
Chris Mason40689472007-03-17 14:29:23 -04001919 /*
1920 * deal with the case where there is only one pointer in the root
1921 * by promoting the node below to a root
1922 */
Chris Mason5f39d392007-10-15 16:14:19 -04001923 if (!parent) {
1924 struct extent_buffer *child;
Chris Masonbb803952007-03-01 12:04:21 -05001925
Chris Mason5f39d392007-10-15 16:14:19 -04001926 if (btrfs_header_nritems(mid) != 1)
Chris Masonbb803952007-03-01 12:04:21 -05001927 return 0;
1928
1929 /* promote the child to a root */
Chris Mason5f39d392007-10-15 16:14:19 -04001930 child = read_node_slot(root, mid, 0);
Mark Fasheh305a26a2011-09-01 11:27:57 -07001931 if (!child) {
1932 ret = -EROFS;
1933 btrfs_std_error(root->fs_info, ret);
1934 goto enospc;
1935 }
1936
Chris Mason925baed2008-06-25 16:01:30 -04001937 btrfs_tree_lock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001938 btrfs_set_lock_blocking(child);
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001939 ret = btrfs_cow_block(trans, root, child, mid, 0, &child);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001940 if (ret) {
1941 btrfs_tree_unlock(child);
1942 free_extent_buffer(child);
1943 goto enospc;
1944 }
Yan2f375ab2008-02-01 14:58:07 -05001945
Jan Schmidt90f8d622013-04-13 13:19:53 +00001946 tree_mod_log_set_root_pointer(root, child, 1);
Chris Mason240f62c2011-03-23 14:54:42 -04001947 rcu_assign_pointer(root->node, child);
Chris Mason925baed2008-06-25 16:01:30 -04001948
Chris Mason0b86a832008-03-24 15:01:56 -04001949 add_root_to_dirty_list(root);
Chris Mason925baed2008-06-25 16:01:30 -04001950 btrfs_tree_unlock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001951
Chris Mason925baed2008-06-25 16:01:30 -04001952 path->locks[level] = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001953 path->nodes[level] = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001954 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001955 btrfs_tree_unlock(mid);
Chris Masonbb803952007-03-01 12:04:21 -05001956 /* once for the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001957 free_extent_buffer(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001958
1959 root_sub_used(root, mid->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02001960 btrfs_free_tree_block(trans, root, mid, 0, 1);
Chris Masonbb803952007-03-01 12:04:21 -05001961 /* once for the root ptr */
Josef Bacik3083ee22012-03-09 16:01:49 -05001962 free_extent_buffer_stale(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001963 return 0;
Chris Masonbb803952007-03-01 12:04:21 -05001964 }
Chris Mason5f39d392007-10-15 16:14:19 -04001965 if (btrfs_header_nritems(mid) >
Chris Mason123abc82007-03-14 14:14:43 -04001966 BTRFS_NODEPTRS_PER_BLOCK(root) / 4)
Chris Masonbb803952007-03-01 12:04:21 -05001967 return 0;
1968
Chris Mason5f39d392007-10-15 16:14:19 -04001969 left = read_node_slot(root, parent, pslot - 1);
1970 if (left) {
Chris Mason925baed2008-06-25 16:01:30 -04001971 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001972 btrfs_set_lock_blocking(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001973 wret = btrfs_cow_block(trans, root, left,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001974 parent, pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001975 if (wret) {
1976 ret = wret;
1977 goto enospc;
1978 }
Chris Mason2cc58cf2007-08-27 16:49:44 -04001979 }
Chris Mason5f39d392007-10-15 16:14:19 -04001980 right = read_node_slot(root, parent, pslot + 1);
1981 if (right) {
Chris Mason925baed2008-06-25 16:01:30 -04001982 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001983 btrfs_set_lock_blocking(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001984 wret = btrfs_cow_block(trans, root, right,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001985 parent, pslot + 1, &right);
Chris Mason2cc58cf2007-08-27 16:49:44 -04001986 if (wret) {
1987 ret = wret;
1988 goto enospc;
1989 }
1990 }
1991
1992 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001993 if (left) {
1994 orig_slot += btrfs_header_nritems(left);
Chris Masonbce4eae2008-04-24 14:42:46 -04001995 wret = push_node_left(trans, root, left, mid, 1);
Chris Mason79f95c82007-03-01 15:16:26 -05001996 if (wret < 0)
1997 ret = wret;
Chris Masonbb803952007-03-01 12:04:21 -05001998 }
Chris Mason79f95c82007-03-01 15:16:26 -05001999
2000 /*
2001 * then try to empty the right most buffer into the middle
2002 */
Chris Mason5f39d392007-10-15 16:14:19 -04002003 if (right) {
Chris Mason971a1f62008-04-24 10:54:32 -04002004 wret = push_node_left(trans, root, mid, right, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04002005 if (wret < 0 && wret != -ENOSPC)
Chris Mason79f95c82007-03-01 15:16:26 -05002006 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04002007 if (btrfs_header_nritems(right) == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002008 clean_tree_block(trans, root, right);
Chris Mason925baed2008-06-25 16:01:30 -04002009 btrfs_tree_unlock(right);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00002010 del_ptr(root, path, level + 1, pslot + 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002011 root_sub_used(root, right->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02002012 btrfs_free_tree_block(trans, root, right, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05002013 free_extent_buffer_stale(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002014 right = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05002015 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002016 struct btrfs_disk_key right_key;
2017 btrfs_node_key(right, &right_key, 0);
Jan Schmidtf2304752012-05-26 11:43:17 +02002018 tree_mod_log_set_node_key(root->fs_info, parent,
Liu Bo32adf092012-10-19 12:52:15 +00002019 pslot + 1, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002020 btrfs_set_node_key(parent, &right_key, pslot + 1);
2021 btrfs_mark_buffer_dirty(parent);
Chris Masonbb803952007-03-01 12:04:21 -05002022 }
2023 }
Chris Mason5f39d392007-10-15 16:14:19 -04002024 if (btrfs_header_nritems(mid) == 1) {
Chris Mason79f95c82007-03-01 15:16:26 -05002025 /*
2026 * we're not allowed to leave a node with one item in the
2027 * tree during a delete. A deletion from lower in the tree
2028 * could try to delete the only pointer in this node.
2029 * So, pull some keys from the left.
2030 * There has to be a left pointer at this point because
2031 * otherwise we would have pulled some pointers from the
2032 * right
2033 */
Mark Fasheh305a26a2011-09-01 11:27:57 -07002034 if (!left) {
2035 ret = -EROFS;
2036 btrfs_std_error(root->fs_info, ret);
2037 goto enospc;
2038 }
Chris Mason5f39d392007-10-15 16:14:19 -04002039 wret = balance_node_right(trans, root, mid, left);
Chris Mason54aa1f42007-06-22 14:16:25 -04002040 if (wret < 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05002041 ret = wret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002042 goto enospc;
2043 }
Chris Masonbce4eae2008-04-24 14:42:46 -04002044 if (wret == 1) {
2045 wret = push_node_left(trans, root, left, mid, 1);
2046 if (wret < 0)
2047 ret = wret;
2048 }
Chris Mason79f95c82007-03-01 15:16:26 -05002049 BUG_ON(wret == 1);
2050 }
Chris Mason5f39d392007-10-15 16:14:19 -04002051 if (btrfs_header_nritems(mid) == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002052 clean_tree_block(trans, root, mid);
Chris Mason925baed2008-06-25 16:01:30 -04002053 btrfs_tree_unlock(mid);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00002054 del_ptr(root, path, level + 1, pslot);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002055 root_sub_used(root, mid->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02002056 btrfs_free_tree_block(trans, root, mid, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05002057 free_extent_buffer_stale(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002058 mid = NULL;
Chris Mason79f95c82007-03-01 15:16:26 -05002059 } else {
2060 /* update the parent key to reflect our changes */
Chris Mason5f39d392007-10-15 16:14:19 -04002061 struct btrfs_disk_key mid_key;
2062 btrfs_node_key(mid, &mid_key, 0);
Liu Bo32adf092012-10-19 12:52:15 +00002063 tree_mod_log_set_node_key(root->fs_info, parent,
Jan Schmidtf2304752012-05-26 11:43:17 +02002064 pslot, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002065 btrfs_set_node_key(parent, &mid_key, pslot);
2066 btrfs_mark_buffer_dirty(parent);
Chris Mason79f95c82007-03-01 15:16:26 -05002067 }
Chris Masonbb803952007-03-01 12:04:21 -05002068
Chris Mason79f95c82007-03-01 15:16:26 -05002069 /* update the path */
Chris Mason5f39d392007-10-15 16:14:19 -04002070 if (left) {
2071 if (btrfs_header_nritems(left) > orig_slot) {
2072 extent_buffer_get(left);
Chris Mason925baed2008-06-25 16:01:30 -04002073 /* left was locked after cow */
Chris Mason5f39d392007-10-15 16:14:19 -04002074 path->nodes[level] = left;
Chris Masonbb803952007-03-01 12:04:21 -05002075 path->slots[level + 1] -= 1;
2076 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002077 if (mid) {
2078 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002079 free_extent_buffer(mid);
Chris Mason925baed2008-06-25 16:01:30 -04002080 }
Chris Masonbb803952007-03-01 12:04:21 -05002081 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002082 orig_slot -= btrfs_header_nritems(left);
Chris Masonbb803952007-03-01 12:04:21 -05002083 path->slots[level] = orig_slot;
2084 }
2085 }
Chris Mason79f95c82007-03-01 15:16:26 -05002086 /* double check we haven't messed things up */
Chris Masone20d96d2007-03-22 12:13:20 -04002087 if (orig_ptr !=
Chris Mason5f39d392007-10-15 16:14:19 -04002088 btrfs_node_blockptr(path->nodes[level], path->slots[level]))
Chris Mason79f95c82007-03-01 15:16:26 -05002089 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04002090enospc:
Chris Mason925baed2008-06-25 16:01:30 -04002091 if (right) {
2092 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002093 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04002094 }
2095 if (left) {
2096 if (path->nodes[level] != left)
2097 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002098 free_extent_buffer(left);
Chris Mason925baed2008-06-25 16:01:30 -04002099 }
Chris Masonbb803952007-03-01 12:04:21 -05002100 return ret;
2101}
2102
Chris Masond352ac62008-09-29 15:18:18 -04002103/* Node balancing for insertion. Here we only split or push nodes around
2104 * when they are completely full. This is also done top down, so we
2105 * have to be pessimistic.
2106 */
Chris Masond3977122009-01-05 21:25:51 -05002107static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05002108 struct btrfs_root *root,
2109 struct btrfs_path *path, int level)
Chris Masone66f7092007-04-20 13:16:02 -04002110{
Chris Mason5f39d392007-10-15 16:14:19 -04002111 struct extent_buffer *right = NULL;
2112 struct extent_buffer *mid;
2113 struct extent_buffer *left = NULL;
2114 struct extent_buffer *parent = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04002115 int ret = 0;
2116 int wret;
2117 int pslot;
2118 int orig_slot = path->slots[level];
Chris Masone66f7092007-04-20 13:16:02 -04002119
2120 if (level == 0)
2121 return 1;
2122
Chris Mason5f39d392007-10-15 16:14:19 -04002123 mid = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05002124 WARN_ON(btrfs_header_generation(mid) != trans->transid);
Chris Masone66f7092007-04-20 13:16:02 -04002125
Li Zefana05a9bb2011-09-06 16:55:34 +08002126 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04002127 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +08002128 pslot = path->slots[level + 1];
2129 }
Chris Masone66f7092007-04-20 13:16:02 -04002130
Chris Mason5f39d392007-10-15 16:14:19 -04002131 if (!parent)
Chris Masone66f7092007-04-20 13:16:02 -04002132 return 1;
Chris Masone66f7092007-04-20 13:16:02 -04002133
Chris Mason5f39d392007-10-15 16:14:19 -04002134 left = read_node_slot(root, parent, pslot - 1);
Chris Masone66f7092007-04-20 13:16:02 -04002135
2136 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04002137 if (left) {
Chris Masone66f7092007-04-20 13:16:02 -04002138 u32 left_nr;
Chris Mason925baed2008-06-25 16:01:30 -04002139
2140 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002141 btrfs_set_lock_blocking(left);
2142
Chris Mason5f39d392007-10-15 16:14:19 -04002143 left_nr = btrfs_header_nritems(left);
Chris Mason33ade1f2007-04-20 13:48:57 -04002144 if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
2145 wret = 1;
2146 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002147 ret = btrfs_cow_block(trans, root, left, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04002148 pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04002149 if (ret)
2150 wret = 1;
2151 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04002152 wret = push_node_left(trans, root,
Chris Mason971a1f62008-04-24 10:54:32 -04002153 left, mid, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04002154 }
Chris Mason33ade1f2007-04-20 13:48:57 -04002155 }
Chris Masone66f7092007-04-20 13:16:02 -04002156 if (wret < 0)
2157 ret = wret;
2158 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002159 struct btrfs_disk_key disk_key;
Chris Masone66f7092007-04-20 13:16:02 -04002160 orig_slot += left_nr;
Chris Mason5f39d392007-10-15 16:14:19 -04002161 btrfs_node_key(mid, &disk_key, 0);
Jan Schmidtf2304752012-05-26 11:43:17 +02002162 tree_mod_log_set_node_key(root->fs_info, parent,
Liu Bo32adf092012-10-19 12:52:15 +00002163 pslot, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002164 btrfs_set_node_key(parent, &disk_key, pslot);
2165 btrfs_mark_buffer_dirty(parent);
2166 if (btrfs_header_nritems(left) > orig_slot) {
2167 path->nodes[level] = left;
Chris Masone66f7092007-04-20 13:16:02 -04002168 path->slots[level + 1] -= 1;
2169 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002170 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002171 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04002172 } else {
2173 orig_slot -=
Chris Mason5f39d392007-10-15 16:14:19 -04002174 btrfs_header_nritems(left);
Chris Masone66f7092007-04-20 13:16:02 -04002175 path->slots[level] = orig_slot;
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 Masone66f7092007-04-20 13:16:02 -04002179 return 0;
2180 }
Chris Mason925baed2008-06-25 16:01:30 -04002181 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002182 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04002183 }
Chris Mason925baed2008-06-25 16:01:30 -04002184 right = read_node_slot(root, parent, pslot + 1);
Chris Masone66f7092007-04-20 13:16:02 -04002185
2186 /*
2187 * then try to empty the right most buffer into the middle
2188 */
Chris Mason5f39d392007-10-15 16:14:19 -04002189 if (right) {
Chris Mason33ade1f2007-04-20 13:48:57 -04002190 u32 right_nr;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002191
Chris Mason925baed2008-06-25 16:01:30 -04002192 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002193 btrfs_set_lock_blocking(right);
2194
Chris Mason5f39d392007-10-15 16:14:19 -04002195 right_nr = btrfs_header_nritems(right);
Chris Mason33ade1f2007-04-20 13:48:57 -04002196 if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
2197 wret = 1;
2198 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002199 ret = btrfs_cow_block(trans, root, right,
2200 parent, pslot + 1,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04002201 &right);
Chris Mason54aa1f42007-06-22 14:16:25 -04002202 if (ret)
2203 wret = 1;
2204 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04002205 wret = balance_node_right(trans, root,
Chris Mason5f39d392007-10-15 16:14:19 -04002206 right, mid);
Chris Mason54aa1f42007-06-22 14:16:25 -04002207 }
Chris Mason33ade1f2007-04-20 13:48:57 -04002208 }
Chris Masone66f7092007-04-20 13:16:02 -04002209 if (wret < 0)
2210 ret = wret;
2211 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002212 struct btrfs_disk_key disk_key;
2213
2214 btrfs_node_key(right, &disk_key, 0);
Jan Schmidtf2304752012-05-26 11:43:17 +02002215 tree_mod_log_set_node_key(root->fs_info, parent,
Liu Bo32adf092012-10-19 12:52:15 +00002216 pslot + 1, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002217 btrfs_set_node_key(parent, &disk_key, pslot + 1);
2218 btrfs_mark_buffer_dirty(parent);
2219
2220 if (btrfs_header_nritems(mid) <= orig_slot) {
2221 path->nodes[level] = right;
Chris Masone66f7092007-04-20 13:16:02 -04002222 path->slots[level + 1] += 1;
2223 path->slots[level] = orig_slot -
Chris Mason5f39d392007-10-15 16:14:19 -04002224 btrfs_header_nritems(mid);
Chris Mason925baed2008-06-25 16:01:30 -04002225 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002226 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04002227 } else {
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 0;
2232 }
Chris Mason925baed2008-06-25 16:01:30 -04002233 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002234 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04002235 }
Chris Masone66f7092007-04-20 13:16:02 -04002236 return 1;
2237}
2238
Chris Mason74123bd2007-02-02 11:05:29 -05002239/*
Chris Masond352ac62008-09-29 15:18:18 -04002240 * readahead one full node of leaves, finding things that are close
2241 * to the block in 'slot', and triggering ra on them.
Chris Mason3c69fae2007-08-07 15:52:22 -04002242 */
Chris Masonc8c42862009-04-03 10:14:18 -04002243static void reada_for_search(struct btrfs_root *root,
2244 struct btrfs_path *path,
2245 int level, int slot, u64 objectid)
Chris Mason3c69fae2007-08-07 15:52:22 -04002246{
Chris Mason5f39d392007-10-15 16:14:19 -04002247 struct extent_buffer *node;
Chris Mason01f46652007-12-21 16:24:26 -05002248 struct btrfs_disk_key disk_key;
Chris Mason3c69fae2007-08-07 15:52:22 -04002249 u32 nritems;
Chris Mason3c69fae2007-08-07 15:52:22 -04002250 u64 search;
Chris Masona7175312009-01-22 09:23:10 -05002251 u64 target;
Chris Mason6b800532007-10-15 16:17:34 -04002252 u64 nread = 0;
Josef Bacikcb25c2e2011-05-11 12:17:34 -04002253 u64 gen;
Chris Mason3c69fae2007-08-07 15:52:22 -04002254 int direction = path->reada;
Chris Mason5f39d392007-10-15 16:14:19 -04002255 struct extent_buffer *eb;
Chris Mason6b800532007-10-15 16:17:34 -04002256 u32 nr;
2257 u32 blocksize;
2258 u32 nscan = 0;
Chris Masondb945352007-10-15 16:15:53 -04002259
Chris Masona6b6e752007-10-15 16:22:39 -04002260 if (level != 1)
Chris Mason3c69fae2007-08-07 15:52:22 -04002261 return;
2262
Chris Mason6702ed42007-08-07 16:15:09 -04002263 if (!path->nodes[level])
2264 return;
2265
Chris Mason5f39d392007-10-15 16:14:19 -04002266 node = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04002267
Chris Mason3c69fae2007-08-07 15:52:22 -04002268 search = btrfs_node_blockptr(node, slot);
David Sterba707e8a02014-06-04 19:22:26 +02002269 blocksize = root->nodesize;
Chris Mason6b800532007-10-15 16:17:34 -04002270 eb = btrfs_find_tree_block(root, search, blocksize);
Chris Mason5f39d392007-10-15 16:14:19 -04002271 if (eb) {
2272 free_extent_buffer(eb);
Chris Mason3c69fae2007-08-07 15:52:22 -04002273 return;
2274 }
2275
Chris Masona7175312009-01-22 09:23:10 -05002276 target = search;
Chris Mason6b800532007-10-15 16:17:34 -04002277
Chris Mason5f39d392007-10-15 16:14:19 -04002278 nritems = btrfs_header_nritems(node);
Chris Mason6b800532007-10-15 16:17:34 -04002279 nr = slot;
Josef Bacik25b8b932011-06-08 14:36:54 -04002280
Chris Masond3977122009-01-05 21:25:51 -05002281 while (1) {
Chris Mason6b800532007-10-15 16:17:34 -04002282 if (direction < 0) {
2283 if (nr == 0)
2284 break;
2285 nr--;
2286 } else if (direction > 0) {
2287 nr++;
2288 if (nr >= nritems)
2289 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04002290 }
Chris Mason01f46652007-12-21 16:24:26 -05002291 if (path->reada < 0 && objectid) {
2292 btrfs_node_key(node, &disk_key, nr);
2293 if (btrfs_disk_key_objectid(&disk_key) != objectid)
2294 break;
2295 }
Chris Mason6b800532007-10-15 16:17:34 -04002296 search = btrfs_node_blockptr(node, nr);
Chris Masona7175312009-01-22 09:23:10 -05002297 if ((search <= target && target - search <= 65536) ||
2298 (search > target && search - target <= 65536)) {
Josef Bacikcb25c2e2011-05-11 12:17:34 -04002299 gen = btrfs_node_ptr_generation(node, nr);
Josef Bacikcb25c2e2011-05-11 12:17:34 -04002300 readahead_tree_block(root, search, blocksize, gen);
Chris Mason6b800532007-10-15 16:17:34 -04002301 nread += blocksize;
2302 }
2303 nscan++;
Chris Masona7175312009-01-22 09:23:10 -05002304 if ((nread > 65536 || nscan > 32))
Chris Mason6b800532007-10-15 16:17:34 -04002305 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04002306 }
2307}
Chris Mason925baed2008-06-25 16:01:30 -04002308
Josef Bacik0b088512013-06-17 14:23:02 -04002309static noinline void reada_for_balance(struct btrfs_root *root,
2310 struct btrfs_path *path, int level)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002311{
2312 int slot;
2313 int nritems;
2314 struct extent_buffer *parent;
2315 struct extent_buffer *eb;
2316 u64 gen;
2317 u64 block1 = 0;
2318 u64 block2 = 0;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002319 int blocksize;
2320
Chris Mason8c594ea2009-04-20 15:50:10 -04002321 parent = path->nodes[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002322 if (!parent)
Josef Bacik0b088512013-06-17 14:23:02 -04002323 return;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002324
2325 nritems = btrfs_header_nritems(parent);
Chris Mason8c594ea2009-04-20 15:50:10 -04002326 slot = path->slots[level + 1];
David Sterba707e8a02014-06-04 19:22:26 +02002327 blocksize = root->nodesize;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002328
2329 if (slot > 0) {
2330 block1 = btrfs_node_blockptr(parent, slot - 1);
2331 gen = btrfs_node_ptr_generation(parent, slot - 1);
2332 eb = btrfs_find_tree_block(root, block1, blocksize);
Chris Masonb9fab912012-05-06 07:23:47 -04002333 /*
2334 * if we get -eagain from btrfs_buffer_uptodate, we
2335 * don't want to return eagain here. That will loop
2336 * forever
2337 */
2338 if (eb && btrfs_buffer_uptodate(eb, gen, 1) != 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002339 block1 = 0;
2340 free_extent_buffer(eb);
2341 }
Chris Mason8c594ea2009-04-20 15:50:10 -04002342 if (slot + 1 < nritems) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05002343 block2 = btrfs_node_blockptr(parent, slot + 1);
2344 gen = btrfs_node_ptr_generation(parent, slot + 1);
2345 eb = btrfs_find_tree_block(root, block2, blocksize);
Chris Masonb9fab912012-05-06 07:23:47 -04002346 if (eb && btrfs_buffer_uptodate(eb, gen, 1) != 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002347 block2 = 0;
2348 free_extent_buffer(eb);
2349 }
Chris Mason8c594ea2009-04-20 15:50:10 -04002350
Josef Bacik0b088512013-06-17 14:23:02 -04002351 if (block1)
2352 readahead_tree_block(root, block1, blocksize, 0);
2353 if (block2)
2354 readahead_tree_block(root, block2, blocksize, 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002355}
2356
2357
2358/*
Chris Masond3977122009-01-05 21:25:51 -05002359 * when we walk down the tree, it is usually safe to unlock the higher layers
2360 * in the tree. The exceptions are when our path goes through slot 0, because
2361 * operations on the tree might require changing key pointers higher up in the
2362 * tree.
Chris Masond352ac62008-09-29 15:18:18 -04002363 *
Chris Masond3977122009-01-05 21:25:51 -05002364 * callers might also have set path->keep_locks, which tells this code to keep
2365 * the lock if the path points to the last slot in the block. This is part of
2366 * walking through the tree, and selecting the next slot in the higher block.
Chris Masond352ac62008-09-29 15:18:18 -04002367 *
Chris Masond3977122009-01-05 21:25:51 -05002368 * lowest_unlock sets the lowest level in the tree we're allowed to unlock. so
2369 * if lowest_unlock is 1, level 0 won't be unlocked
Chris Masond352ac62008-09-29 15:18:18 -04002370 */
Chris Masone02119d2008-09-05 16:13:11 -04002371static noinline void unlock_up(struct btrfs_path *path, int level,
Chris Masonf7c79f32012-03-19 15:54:38 -04002372 int lowest_unlock, int min_write_lock_level,
2373 int *write_lock_level)
Chris Mason925baed2008-06-25 16:01:30 -04002374{
2375 int i;
2376 int skip_level = level;
Chris Mason051e1b92008-06-25 16:01:30 -04002377 int no_skips = 0;
Chris Mason925baed2008-06-25 16:01:30 -04002378 struct extent_buffer *t;
2379
2380 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2381 if (!path->nodes[i])
2382 break;
2383 if (!path->locks[i])
2384 break;
Chris Mason051e1b92008-06-25 16:01:30 -04002385 if (!no_skips && path->slots[i] == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002386 skip_level = i + 1;
2387 continue;
2388 }
Chris Mason051e1b92008-06-25 16:01:30 -04002389 if (!no_skips && path->keep_locks) {
Chris Mason925baed2008-06-25 16:01:30 -04002390 u32 nritems;
2391 t = path->nodes[i];
2392 nritems = btrfs_header_nritems(t);
Chris Mason051e1b92008-06-25 16:01:30 -04002393 if (nritems < 1 || path->slots[i] >= nritems - 1) {
Chris Mason925baed2008-06-25 16:01:30 -04002394 skip_level = i + 1;
2395 continue;
2396 }
2397 }
Chris Mason051e1b92008-06-25 16:01:30 -04002398 if (skip_level < i && i >= lowest_unlock)
2399 no_skips = 1;
2400
Chris Mason925baed2008-06-25 16:01:30 -04002401 t = path->nodes[i];
2402 if (i >= lowest_unlock && i > skip_level && path->locks[i]) {
Chris Masonbd681512011-07-16 15:23:14 -04002403 btrfs_tree_unlock_rw(t, path->locks[i]);
Chris Mason925baed2008-06-25 16:01:30 -04002404 path->locks[i] = 0;
Chris Masonf7c79f32012-03-19 15:54:38 -04002405 if (write_lock_level &&
2406 i > min_write_lock_level &&
2407 i <= *write_lock_level) {
2408 *write_lock_level = i - 1;
2409 }
Chris Mason925baed2008-06-25 16:01:30 -04002410 }
2411 }
2412}
2413
Chris Mason3c69fae2007-08-07 15:52:22 -04002414/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05002415 * This releases any locks held in the path starting at level and
2416 * going all the way up to the root.
2417 *
2418 * btrfs_search_slot will keep the lock held on higher nodes in a few
2419 * corner cases, such as COW of the block at slot zero in the node. This
2420 * ignores those rules, and it should only be called when there are no
2421 * more updates to be done higher up in the tree.
2422 */
2423noinline void btrfs_unlock_up_safe(struct btrfs_path *path, int level)
2424{
2425 int i;
2426
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002427 if (path->keep_locks)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002428 return;
2429
2430 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2431 if (!path->nodes[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05002432 continue;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002433 if (!path->locks[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05002434 continue;
Chris Masonbd681512011-07-16 15:23:14 -04002435 btrfs_tree_unlock_rw(path->nodes[i], path->locks[i]);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002436 path->locks[i] = 0;
2437 }
2438}
2439
2440/*
Chris Masonc8c42862009-04-03 10:14:18 -04002441 * helper function for btrfs_search_slot. The goal is to find a block
2442 * in cache without setting the path to blocking. If we find the block
2443 * we return zero and the path is unchanged.
2444 *
2445 * If we can't find the block, we set the path blocking and do some
2446 * reada. -EAGAIN is returned and the search must be repeated.
2447 */
2448static int
2449read_block_for_search(struct btrfs_trans_handle *trans,
2450 struct btrfs_root *root, struct btrfs_path *p,
2451 struct extent_buffer **eb_ret, int level, int slot,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002452 struct btrfs_key *key, u64 time_seq)
Chris Masonc8c42862009-04-03 10:14:18 -04002453{
2454 u64 blocknr;
2455 u64 gen;
2456 u32 blocksize;
2457 struct extent_buffer *b = *eb_ret;
2458 struct extent_buffer *tmp;
Chris Mason76a05b32009-05-14 13:24:30 -04002459 int ret;
Chris Masonc8c42862009-04-03 10:14:18 -04002460
2461 blocknr = btrfs_node_blockptr(b, slot);
2462 gen = btrfs_node_ptr_generation(b, slot);
David Sterba707e8a02014-06-04 19:22:26 +02002463 blocksize = root->nodesize;
Chris Masonc8c42862009-04-03 10:14:18 -04002464
2465 tmp = btrfs_find_tree_block(root, blocknr, blocksize);
Chris Masoncb449212010-10-24 11:01:27 -04002466 if (tmp) {
Chris Masonb9fab912012-05-06 07:23:47 -04002467 /* first we do an atomic uptodate check */
Josef Bacikbdf7c002013-06-17 13:44:48 -04002468 if (btrfs_buffer_uptodate(tmp, gen, 1) > 0) {
2469 *eb_ret = tmp;
2470 return 0;
Chris Masoncb449212010-10-24 11:01:27 -04002471 }
Josef Bacikbdf7c002013-06-17 13:44:48 -04002472
2473 /* the pages were up to date, but we failed
2474 * the generation number check. Do a full
2475 * read for the generation number that is correct.
2476 * We must do this without dropping locks so
2477 * we can trust our generation number
2478 */
2479 btrfs_set_path_blocking(p);
2480
2481 /* now we're allowed to do a blocking uptodate check */
2482 ret = btrfs_read_buffer(tmp, gen);
2483 if (!ret) {
2484 *eb_ret = tmp;
2485 return 0;
2486 }
2487 free_extent_buffer(tmp);
2488 btrfs_release_path(p);
2489 return -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04002490 }
2491
2492 /*
2493 * reduce lock contention at high levels
2494 * of the btree by dropping locks before
Chris Mason76a05b32009-05-14 13:24:30 -04002495 * we read. Don't release the lock on the current
2496 * level because we need to walk this node to figure
2497 * out which blocks to read.
Chris Masonc8c42862009-04-03 10:14:18 -04002498 */
Chris Mason8c594ea2009-04-20 15:50:10 -04002499 btrfs_unlock_up_safe(p, level + 1);
2500 btrfs_set_path_blocking(p);
2501
Chris Masoncb449212010-10-24 11:01:27 -04002502 free_extent_buffer(tmp);
Chris Masonc8c42862009-04-03 10:14:18 -04002503 if (p->reada)
2504 reada_for_search(root, p, level, slot, key->objectid);
2505
David Sterbab3b4aa72011-04-21 01:20:15 +02002506 btrfs_release_path(p);
Chris Mason76a05b32009-05-14 13:24:30 -04002507
2508 ret = -EAGAIN;
Yan, Zheng5bdd3532010-05-26 11:20:30 -04002509 tmp = read_tree_block(root, blocknr, blocksize, 0);
Chris Mason76a05b32009-05-14 13:24:30 -04002510 if (tmp) {
2511 /*
2512 * If the read above didn't mark this buffer up to date,
2513 * it will never end up being up to date. Set ret to EIO now
2514 * and give up so that our caller doesn't loop forever
2515 * on our EAGAINs.
2516 */
Chris Masonb9fab912012-05-06 07:23:47 -04002517 if (!btrfs_buffer_uptodate(tmp, 0, 0))
Chris Mason76a05b32009-05-14 13:24:30 -04002518 ret = -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04002519 free_extent_buffer(tmp);
Chris Mason76a05b32009-05-14 13:24:30 -04002520 }
2521 return ret;
Chris Masonc8c42862009-04-03 10:14:18 -04002522}
2523
2524/*
2525 * helper function for btrfs_search_slot. This does all of the checks
2526 * for node-level blocks and does any balancing required based on
2527 * the ins_len.
2528 *
2529 * If no extra work was required, zero is returned. If we had to
2530 * drop the path, -EAGAIN is returned and btrfs_search_slot must
2531 * start over
2532 */
2533static int
2534setup_nodes_for_search(struct btrfs_trans_handle *trans,
2535 struct btrfs_root *root, struct btrfs_path *p,
Chris Masonbd681512011-07-16 15:23:14 -04002536 struct extent_buffer *b, int level, int ins_len,
2537 int *write_lock_level)
Chris Masonc8c42862009-04-03 10:14:18 -04002538{
2539 int ret;
2540 if ((p->search_for_split || ins_len > 0) && btrfs_header_nritems(b) >=
2541 BTRFS_NODEPTRS_PER_BLOCK(root) - 3) {
2542 int sret;
2543
Chris Masonbd681512011-07-16 15:23:14 -04002544 if (*write_lock_level < level + 1) {
2545 *write_lock_level = level + 1;
2546 btrfs_release_path(p);
2547 goto again;
2548 }
2549
Chris Masonc8c42862009-04-03 10:14:18 -04002550 btrfs_set_path_blocking(p);
Josef Bacik0b088512013-06-17 14:23:02 -04002551 reada_for_balance(root, p, level);
Chris Masonc8c42862009-04-03 10:14:18 -04002552 sret = split_node(trans, root, p, level);
Chris Masonbd681512011-07-16 15:23:14 -04002553 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonc8c42862009-04-03 10:14:18 -04002554
2555 BUG_ON(sret > 0);
2556 if (sret) {
2557 ret = sret;
2558 goto done;
2559 }
2560 b = p->nodes[level];
2561 } else if (ins_len < 0 && btrfs_header_nritems(b) <
Chris Masoncfbb9302009-05-18 10:41:58 -04002562 BTRFS_NODEPTRS_PER_BLOCK(root) / 2) {
Chris Masonc8c42862009-04-03 10:14:18 -04002563 int sret;
2564
Chris Masonbd681512011-07-16 15:23:14 -04002565 if (*write_lock_level < level + 1) {
2566 *write_lock_level = level + 1;
2567 btrfs_release_path(p);
2568 goto again;
2569 }
2570
Chris Masonc8c42862009-04-03 10:14:18 -04002571 btrfs_set_path_blocking(p);
Josef Bacik0b088512013-06-17 14:23:02 -04002572 reada_for_balance(root, p, level);
Chris Masonc8c42862009-04-03 10:14:18 -04002573 sret = balance_level(trans, root, p, level);
Chris Masonbd681512011-07-16 15:23:14 -04002574 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonc8c42862009-04-03 10:14:18 -04002575
2576 if (sret) {
2577 ret = sret;
2578 goto done;
2579 }
2580 b = p->nodes[level];
2581 if (!b) {
David Sterbab3b4aa72011-04-21 01:20:15 +02002582 btrfs_release_path(p);
Chris Masonc8c42862009-04-03 10:14:18 -04002583 goto again;
2584 }
2585 BUG_ON(btrfs_header_nritems(b) == 1);
2586 }
2587 return 0;
2588
2589again:
2590 ret = -EAGAIN;
2591done:
2592 return ret;
2593}
2594
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002595static void key_search_validate(struct extent_buffer *b,
2596 struct btrfs_key *key,
2597 int level)
2598{
2599#ifdef CONFIG_BTRFS_ASSERT
2600 struct btrfs_disk_key disk_key;
2601
2602 btrfs_cpu_key_to_disk(&disk_key, key);
2603
2604 if (level == 0)
2605 ASSERT(!memcmp_extent_buffer(b, &disk_key,
2606 offsetof(struct btrfs_leaf, items[0].key),
2607 sizeof(disk_key)));
2608 else
2609 ASSERT(!memcmp_extent_buffer(b, &disk_key,
2610 offsetof(struct btrfs_node, ptrs[0].key),
2611 sizeof(disk_key)));
2612#endif
2613}
2614
2615static int key_search(struct extent_buffer *b, struct btrfs_key *key,
2616 int level, int *prev_cmp, int *slot)
2617{
2618 if (*prev_cmp != 0) {
2619 *prev_cmp = bin_search(b, key, level, slot);
2620 return *prev_cmp;
2621 }
2622
2623 key_search_validate(b, key, level);
2624 *slot = 0;
2625
2626 return 0;
2627}
2628
Kelley Nielsen3f870c22013-11-04 19:37:39 -08002629int btrfs_find_item(struct btrfs_root *fs_root, struct btrfs_path *found_path,
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002630 u64 iobjectid, u64 ioff, u8 key_type,
2631 struct btrfs_key *found_key)
2632{
2633 int ret;
2634 struct btrfs_key key;
2635 struct extent_buffer *eb;
Kelley Nielsen3f870c22013-11-04 19:37:39 -08002636 struct btrfs_path *path;
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002637
2638 key.type = key_type;
2639 key.objectid = iobjectid;
2640 key.offset = ioff;
2641
Kelley Nielsen3f870c22013-11-04 19:37:39 -08002642 if (found_path == NULL) {
2643 path = btrfs_alloc_path();
2644 if (!path)
2645 return -ENOMEM;
2646 } else
2647 path = found_path;
2648
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002649 ret = btrfs_search_slot(NULL, fs_root, &key, path, 0, 0);
Kelley Nielsen3f870c22013-11-04 19:37:39 -08002650 if ((ret < 0) || (found_key == NULL)) {
2651 if (path != found_path)
2652 btrfs_free_path(path);
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002653 return ret;
Kelley Nielsen3f870c22013-11-04 19:37:39 -08002654 }
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002655
2656 eb = path->nodes[0];
2657 if (ret && path->slots[0] >= btrfs_header_nritems(eb)) {
2658 ret = btrfs_next_leaf(fs_root, path);
2659 if (ret)
2660 return ret;
2661 eb = path->nodes[0];
2662 }
2663
2664 btrfs_item_key_to_cpu(eb, found_key, path->slots[0]);
2665 if (found_key->type != key.type ||
2666 found_key->objectid != key.objectid)
2667 return 1;
2668
2669 return 0;
2670}
2671
Chris Masonc8c42862009-04-03 10:14:18 -04002672/*
Chris Mason74123bd2007-02-02 11:05:29 -05002673 * look for key in the tree. path is filled in with nodes along the way
2674 * if key is found, we return zero and you can find the item in the leaf
2675 * level of the path (level 0)
2676 *
2677 * If the key isn't found, the path points to the slot where it should
Chris Masonaa5d6be2007-02-28 16:35:06 -05002678 * be inserted, and 1 is returned. If there are other errors during the
2679 * search a negative error number is returned.
Chris Mason97571fd2007-02-24 13:39:08 -05002680 *
2681 * if ins_len > 0, nodes and leaves will be split as we walk down the
2682 * tree. if ins_len < 0, nodes will be merged as we walk down the tree (if
2683 * possible)
Chris Mason74123bd2007-02-02 11:05:29 -05002684 */
Chris Masone089f052007-03-16 16:20:31 -04002685int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
2686 *root, struct btrfs_key *key, struct btrfs_path *p, int
2687 ins_len, int cow)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002688{
Chris Mason5f39d392007-10-15 16:14:19 -04002689 struct extent_buffer *b;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002690 int slot;
2691 int ret;
Yan Zheng33c66f42009-07-22 09:59:00 -04002692 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002693 int level;
Chris Mason925baed2008-06-25 16:01:30 -04002694 int lowest_unlock = 1;
Chris Masonbd681512011-07-16 15:23:14 -04002695 int root_lock;
2696 /* everything at write_lock_level or lower must be write locked */
2697 int write_lock_level = 0;
Chris Mason9f3a7422007-08-07 15:52:19 -04002698 u8 lowest_level = 0;
Chris Masonf7c79f32012-03-19 15:54:38 -04002699 int min_write_lock_level;
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002700 int prev_cmp;
Chris Mason9f3a7422007-08-07 15:52:19 -04002701
Chris Mason6702ed42007-08-07 16:15:09 -04002702 lowest_level = p->lowest_level;
Chris Mason323ac952008-10-01 19:05:46 -04002703 WARN_ON(lowest_level && ins_len > 0);
Chris Mason22b0ebd2007-03-30 08:47:31 -04002704 WARN_ON(p->nodes[0] != NULL);
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002705 BUG_ON(!cow && ins_len);
Josef Bacik251792012008-10-29 14:49:05 -04002706
Chris Masonbd681512011-07-16 15:23:14 -04002707 if (ins_len < 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002708 lowest_unlock = 2;
Chris Mason65b51a02008-08-01 15:11:20 -04002709
Chris Masonbd681512011-07-16 15:23:14 -04002710 /* when we are removing items, we might have to go up to level
2711 * two as we update tree pointers Make sure we keep write
2712 * for those levels as well
2713 */
2714 write_lock_level = 2;
2715 } else if (ins_len > 0) {
2716 /*
2717 * for inserting items, make sure we have a write lock on
2718 * level 1 so we can update keys
2719 */
2720 write_lock_level = 1;
2721 }
2722
2723 if (!cow)
2724 write_lock_level = -1;
2725
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002726 if (cow && (p->keep_locks || p->lowest_level))
Chris Masonbd681512011-07-16 15:23:14 -04002727 write_lock_level = BTRFS_MAX_LEVEL;
2728
Chris Masonf7c79f32012-03-19 15:54:38 -04002729 min_write_lock_level = write_lock_level;
2730
Chris Masonbb803952007-03-01 12:04:21 -05002731again:
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002732 prev_cmp = -1;
Chris Masonbd681512011-07-16 15:23:14 -04002733 /*
2734 * we try very hard to do read locks on the root
2735 */
2736 root_lock = BTRFS_READ_LOCK;
2737 level = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002738 if (p->search_commit_root) {
Chris Masonbd681512011-07-16 15:23:14 -04002739 /*
2740 * the commit roots are read only
2741 * so we always do read locks
2742 */
Josef Bacik3f8a18c2014-03-28 17:16:01 -04002743 if (p->need_commit_sem)
2744 down_read(&root->fs_info->commit_root_sem);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002745 b = root->commit_root;
2746 extent_buffer_get(b);
Chris Masonbd681512011-07-16 15:23:14 -04002747 level = btrfs_header_level(b);
Josef Bacik3f8a18c2014-03-28 17:16:01 -04002748 if (p->need_commit_sem)
2749 up_read(&root->fs_info->commit_root_sem);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002750 if (!p->skip_locking)
Chris Masonbd681512011-07-16 15:23:14 -04002751 btrfs_tree_read_lock(b);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002752 } else {
Chris Masonbd681512011-07-16 15:23:14 -04002753 if (p->skip_locking) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002754 b = btrfs_root_node(root);
Chris Masonbd681512011-07-16 15:23:14 -04002755 level = btrfs_header_level(b);
2756 } else {
2757 /* we don't know the level of the root node
2758 * until we actually have it read locked
2759 */
2760 b = btrfs_read_lock_root_node(root);
2761 level = btrfs_header_level(b);
2762 if (level <= write_lock_level) {
2763 /* whoops, must trade for write lock */
2764 btrfs_tree_read_unlock(b);
2765 free_extent_buffer(b);
2766 b = btrfs_lock_root_node(root);
2767 root_lock = BTRFS_WRITE_LOCK;
2768
2769 /* the level might have changed, check again */
2770 level = btrfs_header_level(b);
2771 }
2772 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002773 }
Chris Masonbd681512011-07-16 15:23:14 -04002774 p->nodes[level] = b;
2775 if (!p->skip_locking)
2776 p->locks[level] = root_lock;
Chris Mason925baed2008-06-25 16:01:30 -04002777
Chris Masoneb60cea2007-02-02 09:18:22 -05002778 while (b) {
Chris Mason5f39d392007-10-15 16:14:19 -04002779 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04002780
2781 /*
2782 * setup the path here so we can release it under lock
2783 * contention with the cow code
2784 */
Chris Mason02217ed2007-03-02 16:08:05 -05002785 if (cow) {
Chris Masonc8c42862009-04-03 10:14:18 -04002786 /*
2787 * if we don't really need to cow this block
2788 * then we don't want to set the path blocking,
2789 * so we test it here
2790 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002791 if (!should_cow_block(trans, root, b))
Chris Mason65b51a02008-08-01 15:11:20 -04002792 goto cow_done;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002793
Chris Masonbd681512011-07-16 15:23:14 -04002794 /*
2795 * must have write locks on this node and the
2796 * parent
2797 */
Josef Bacik5124e002012-11-07 13:44:13 -05002798 if (level > write_lock_level ||
2799 (level + 1 > write_lock_level &&
2800 level + 1 < BTRFS_MAX_LEVEL &&
2801 p->nodes[level + 1])) {
Chris Masonbd681512011-07-16 15:23:14 -04002802 write_lock_level = level + 1;
2803 btrfs_release_path(p);
2804 goto again;
2805 }
2806
Filipe Manana160f4082014-07-28 19:37:17 +01002807 btrfs_set_path_blocking(p);
Yan Zheng33c66f42009-07-22 09:59:00 -04002808 err = btrfs_cow_block(trans, root, b,
2809 p->nodes[level + 1],
2810 p->slots[level + 1], &b);
2811 if (err) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002812 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04002813 goto done;
Chris Mason54aa1f42007-06-22 14:16:25 -04002814 }
Chris Mason02217ed2007-03-02 16:08:05 -05002815 }
Chris Mason65b51a02008-08-01 15:11:20 -04002816cow_done:
Chris Masoneb60cea2007-02-02 09:18:22 -05002817 p->nodes[level] = b;
Chris Masonbd681512011-07-16 15:23:14 -04002818 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002819
2820 /*
2821 * we have a lock on b and as long as we aren't changing
2822 * the tree, there is no way to for the items in b to change.
2823 * It is safe to drop the lock on our parent before we
2824 * go through the expensive btree search on b.
2825 *
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002826 * If we're inserting or deleting (ins_len != 0), then we might
2827 * be changing slot zero, which may require changing the parent.
2828 * So, we can't drop the lock until after we know which slot
2829 * we're operating on.
Chris Masonb4ce94d2009-02-04 09:25:08 -05002830 */
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002831 if (!ins_len && !p->keep_locks) {
2832 int u = level + 1;
2833
2834 if (u < BTRFS_MAX_LEVEL && p->locks[u]) {
2835 btrfs_tree_unlock_rw(p->nodes[u], p->locks[u]);
2836 p->locks[u] = 0;
2837 }
2838 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05002839
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002840 ret = key_search(b, key, level, &prev_cmp, &slot);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002841
Chris Mason5f39d392007-10-15 16:14:19 -04002842 if (level != 0) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002843 int dec = 0;
2844 if (ret && slot > 0) {
2845 dec = 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002846 slot -= 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04002847 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002848 p->slots[level] = slot;
Yan Zheng33c66f42009-07-22 09:59:00 -04002849 err = setup_nodes_for_search(trans, root, p, b, level,
Chris Masonbd681512011-07-16 15:23:14 -04002850 ins_len, &write_lock_level);
Yan Zheng33c66f42009-07-22 09:59:00 -04002851 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04002852 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04002853 if (err) {
2854 ret = err;
Chris Masonc8c42862009-04-03 10:14:18 -04002855 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04002856 }
Chris Masonc8c42862009-04-03 10:14:18 -04002857 b = p->nodes[level];
2858 slot = p->slots[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002859
Chris Masonbd681512011-07-16 15:23:14 -04002860 /*
2861 * slot 0 is special, if we change the key
2862 * we have to update the parent pointer
2863 * which means we must have a write lock
2864 * on the parent
2865 */
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002866 if (slot == 0 && ins_len &&
Chris Masonbd681512011-07-16 15:23:14 -04002867 write_lock_level < level + 1) {
2868 write_lock_level = level + 1;
2869 btrfs_release_path(p);
2870 goto again;
2871 }
2872
Chris Masonf7c79f32012-03-19 15:54:38 -04002873 unlock_up(p, level, lowest_unlock,
2874 min_write_lock_level, &write_lock_level);
Chris Masonf9efa9c2008-06-25 16:14:04 -04002875
Chris Mason925baed2008-06-25 16:01:30 -04002876 if (level == lowest_level) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002877 if (dec)
2878 p->slots[level]++;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002879 goto done;
Chris Mason925baed2008-06-25 16:01:30 -04002880 }
Chris Masonca7a79a2008-05-12 12:59:19 -04002881
Yan Zheng33c66f42009-07-22 09:59:00 -04002882 err = read_block_for_search(trans, root, p,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002883 &b, level, slot, key, 0);
Yan Zheng33c66f42009-07-22 09:59:00 -04002884 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04002885 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04002886 if (err) {
2887 ret = err;
Chris Mason76a05b32009-05-14 13:24:30 -04002888 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04002889 }
Chris Mason76a05b32009-05-14 13:24:30 -04002890
Chris Masonb4ce94d2009-02-04 09:25:08 -05002891 if (!p->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04002892 level = btrfs_header_level(b);
2893 if (level <= write_lock_level) {
2894 err = btrfs_try_tree_write_lock(b);
2895 if (!err) {
2896 btrfs_set_path_blocking(p);
2897 btrfs_tree_lock(b);
2898 btrfs_clear_path_blocking(p, b,
2899 BTRFS_WRITE_LOCK);
2900 }
2901 p->locks[level] = BTRFS_WRITE_LOCK;
2902 } else {
2903 err = btrfs_try_tree_read_lock(b);
2904 if (!err) {
2905 btrfs_set_path_blocking(p);
2906 btrfs_tree_read_lock(b);
2907 btrfs_clear_path_blocking(p, b,
2908 BTRFS_READ_LOCK);
2909 }
2910 p->locks[level] = BTRFS_READ_LOCK;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002911 }
Chris Masonbd681512011-07-16 15:23:14 -04002912 p->nodes[level] = b;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002913 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002914 } else {
2915 p->slots[level] = slot;
Yan Zheng87b29b22008-12-17 10:21:48 -05002916 if (ins_len > 0 &&
2917 btrfs_leaf_free_space(root, b) < ins_len) {
Chris Masonbd681512011-07-16 15:23:14 -04002918 if (write_lock_level < 1) {
2919 write_lock_level = 1;
2920 btrfs_release_path(p);
2921 goto again;
2922 }
2923
Chris Masonb4ce94d2009-02-04 09:25:08 -05002924 btrfs_set_path_blocking(p);
Yan Zheng33c66f42009-07-22 09:59:00 -04002925 err = split_leaf(trans, root, key,
2926 p, ins_len, ret == 0);
Chris Masonbd681512011-07-16 15:23:14 -04002927 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002928
Yan Zheng33c66f42009-07-22 09:59:00 -04002929 BUG_ON(err > 0);
2930 if (err) {
2931 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04002932 goto done;
2933 }
Chris Mason5c680ed2007-02-22 11:39:13 -05002934 }
Chris Mason459931e2008-12-10 09:10:46 -05002935 if (!p->search_for_split)
Chris Masonf7c79f32012-03-19 15:54:38 -04002936 unlock_up(p, level, lowest_unlock,
2937 min_write_lock_level, &write_lock_level);
Chris Mason65b51a02008-08-01 15:11:20 -04002938 goto done;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002939 }
2940 }
Chris Mason65b51a02008-08-01 15:11:20 -04002941 ret = 1;
2942done:
Chris Masonb4ce94d2009-02-04 09:25:08 -05002943 /*
2944 * we don't really know what they plan on doing with the path
2945 * from here on, so for now just mark it as blocking
2946 */
Chris Masonb9473432009-03-13 11:00:37 -04002947 if (!p->leave_spinning)
2948 btrfs_set_path_blocking(p);
Chris Mason76a05b32009-05-14 13:24:30 -04002949 if (ret < 0)
David Sterbab3b4aa72011-04-21 01:20:15 +02002950 btrfs_release_path(p);
Chris Mason65b51a02008-08-01 15:11:20 -04002951 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002952}
2953
Chris Mason74123bd2007-02-02 11:05:29 -05002954/*
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002955 * Like btrfs_search_slot, this looks for a key in the given tree. It uses the
2956 * current state of the tree together with the operations recorded in the tree
2957 * modification log to search for the key in a previous version of this tree, as
2958 * denoted by the time_seq parameter.
2959 *
2960 * Naturally, there is no support for insert, delete or cow operations.
2961 *
2962 * The resulting path and return value will be set up as if we called
2963 * btrfs_search_slot at that point in time with ins_len and cow both set to 0.
2964 */
2965int btrfs_search_old_slot(struct btrfs_root *root, struct btrfs_key *key,
2966 struct btrfs_path *p, u64 time_seq)
2967{
2968 struct extent_buffer *b;
2969 int slot;
2970 int ret;
2971 int err;
2972 int level;
2973 int lowest_unlock = 1;
2974 u8 lowest_level = 0;
Josef Bacikd4b40872013-09-24 14:09:34 -04002975 int prev_cmp = -1;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002976
2977 lowest_level = p->lowest_level;
2978 WARN_ON(p->nodes[0] != NULL);
2979
2980 if (p->search_commit_root) {
2981 BUG_ON(time_seq);
2982 return btrfs_search_slot(NULL, root, key, p, 0, 0);
2983 }
2984
2985again:
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002986 b = get_old_root(root, time_seq);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002987 level = btrfs_header_level(b);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002988 p->locks[level] = BTRFS_READ_LOCK;
2989
2990 while (b) {
2991 level = btrfs_header_level(b);
2992 p->nodes[level] = b;
2993 btrfs_clear_path_blocking(p, NULL, 0);
2994
2995 /*
2996 * we have a lock on b and as long as we aren't changing
2997 * the tree, there is no way to for the items in b to change.
2998 * It is safe to drop the lock on our parent before we
2999 * go through the expensive btree search on b.
3000 */
3001 btrfs_unlock_up_safe(p, level + 1);
3002
Josef Bacikd4b40872013-09-24 14:09:34 -04003003 /*
3004 * Since we can unwind eb's we want to do a real search every
3005 * time.
3006 */
3007 prev_cmp = -1;
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01003008 ret = key_search(b, key, level, &prev_cmp, &slot);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02003009
3010 if (level != 0) {
3011 int dec = 0;
3012 if (ret && slot > 0) {
3013 dec = 1;
3014 slot -= 1;
3015 }
3016 p->slots[level] = slot;
3017 unlock_up(p, level, lowest_unlock, 0, NULL);
3018
3019 if (level == lowest_level) {
3020 if (dec)
3021 p->slots[level]++;
3022 goto done;
3023 }
3024
3025 err = read_block_for_search(NULL, root, p, &b, level,
3026 slot, key, time_seq);
3027 if (err == -EAGAIN)
3028 goto again;
3029 if (err) {
3030 ret = err;
3031 goto done;
3032 }
3033
3034 level = btrfs_header_level(b);
3035 err = btrfs_try_tree_read_lock(b);
3036 if (!err) {
3037 btrfs_set_path_blocking(p);
3038 btrfs_tree_read_lock(b);
3039 btrfs_clear_path_blocking(p, b,
3040 BTRFS_READ_LOCK);
3041 }
Josef Bacik9ec72672013-08-07 16:57:23 -04003042 b = tree_mod_log_rewind(root->fs_info, p, b, time_seq);
Josef Bacikdb7f3432013-08-07 14:54:37 -04003043 if (!b) {
3044 ret = -ENOMEM;
3045 goto done;
3046 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02003047 p->locks[level] = BTRFS_READ_LOCK;
3048 p->nodes[level] = b;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02003049 } else {
3050 p->slots[level] = slot;
3051 unlock_up(p, level, lowest_unlock, 0, NULL);
3052 goto done;
3053 }
3054 }
3055 ret = 1;
3056done:
3057 if (!p->leave_spinning)
3058 btrfs_set_path_blocking(p);
3059 if (ret < 0)
3060 btrfs_release_path(p);
3061
3062 return ret;
3063}
3064
3065/*
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003066 * helper to use instead of search slot if no exact match is needed but
3067 * instead the next or previous item should be returned.
3068 * When find_higher is true, the next higher item is returned, the next lower
3069 * otherwise.
3070 * When return_any and find_higher are both true, and no higher item is found,
3071 * return the next lower instead.
3072 * When return_any is true and find_higher is false, and no lower item is found,
3073 * return the next higher instead.
3074 * It returns 0 if any item is found, 1 if none is found (tree empty), and
3075 * < 0 on error
3076 */
3077int btrfs_search_slot_for_read(struct btrfs_root *root,
3078 struct btrfs_key *key, struct btrfs_path *p,
3079 int find_higher, int return_any)
3080{
3081 int ret;
3082 struct extent_buffer *leaf;
3083
3084again:
3085 ret = btrfs_search_slot(NULL, root, key, p, 0, 0);
3086 if (ret <= 0)
3087 return ret;
3088 /*
3089 * a return value of 1 means the path is at the position where the
3090 * item should be inserted. Normally this is the next bigger item,
3091 * but in case the previous item is the last in a leaf, path points
3092 * to the first free slot in the previous leaf, i.e. at an invalid
3093 * item.
3094 */
3095 leaf = p->nodes[0];
3096
3097 if (find_higher) {
3098 if (p->slots[0] >= btrfs_header_nritems(leaf)) {
3099 ret = btrfs_next_leaf(root, p);
3100 if (ret <= 0)
3101 return ret;
3102 if (!return_any)
3103 return 1;
3104 /*
3105 * no higher item found, return the next
3106 * lower instead
3107 */
3108 return_any = 0;
3109 find_higher = 0;
3110 btrfs_release_path(p);
3111 goto again;
3112 }
3113 } else {
Arne Jansene6793762011-09-13 11:18:10 +02003114 if (p->slots[0] == 0) {
3115 ret = btrfs_prev_leaf(root, p);
3116 if (ret < 0)
3117 return ret;
3118 if (!ret) {
Filipe David Borba Manana23c6bf62014-01-11 21:28:54 +00003119 leaf = p->nodes[0];
3120 if (p->slots[0] == btrfs_header_nritems(leaf))
3121 p->slots[0]--;
Arne Jansene6793762011-09-13 11:18:10 +02003122 return 0;
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003123 }
Arne Jansene6793762011-09-13 11:18:10 +02003124 if (!return_any)
3125 return 1;
3126 /*
3127 * no lower item found, return the next
3128 * higher instead
3129 */
3130 return_any = 0;
3131 find_higher = 1;
3132 btrfs_release_path(p);
3133 goto again;
3134 } else {
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003135 --p->slots[0];
3136 }
3137 }
3138 return 0;
3139}
3140
3141/*
Chris Mason74123bd2007-02-02 11:05:29 -05003142 * adjust the pointers going up the tree, starting at level
3143 * making sure the right key of each node is points to 'key'.
3144 * This is used after shifting pointers to the left, so it stops
3145 * fixing up pointers when a given leaf/node is not in slot 0 of the
3146 * higher levels
Chris Masonaa5d6be2007-02-28 16:35:06 -05003147 *
Chris Mason74123bd2007-02-02 11:05:29 -05003148 */
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00003149static void fixup_low_keys(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01003150 struct btrfs_disk_key *key, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003151{
3152 int i;
Chris Mason5f39d392007-10-15 16:14:19 -04003153 struct extent_buffer *t;
3154
Chris Mason234b63a2007-03-13 10:46:10 -04003155 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05003156 int tslot = path->slots[i];
Chris Masoneb60cea2007-02-02 09:18:22 -05003157 if (!path->nodes[i])
Chris Masonbe0e5c02007-01-26 15:51:26 -05003158 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003159 t = path->nodes[i];
Liu Bo32adf092012-10-19 12:52:15 +00003160 tree_mod_log_set_node_key(root->fs_info, t, tslot, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003161 btrfs_set_node_key(t, key, tslot);
Chris Masond6025572007-03-30 14:27:56 -04003162 btrfs_mark_buffer_dirty(path->nodes[i]);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003163 if (tslot != 0)
3164 break;
3165 }
3166}
3167
Chris Mason74123bd2007-02-02 11:05:29 -05003168/*
Zheng Yan31840ae2008-09-23 13:14:14 -04003169 * update item key.
3170 *
3171 * This function isn't completely safe. It's the caller's responsibility
3172 * that the new key won't break the order
3173 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00003174void btrfs_set_item_key_safe(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01003175 struct btrfs_key *new_key)
Zheng Yan31840ae2008-09-23 13:14:14 -04003176{
3177 struct btrfs_disk_key disk_key;
3178 struct extent_buffer *eb;
3179 int slot;
3180
3181 eb = path->nodes[0];
3182 slot = path->slots[0];
3183 if (slot > 0) {
3184 btrfs_item_key(eb, &disk_key, slot - 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003185 BUG_ON(comp_keys(&disk_key, new_key) >= 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003186 }
3187 if (slot < btrfs_header_nritems(eb) - 1) {
3188 btrfs_item_key(eb, &disk_key, slot + 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003189 BUG_ON(comp_keys(&disk_key, new_key) <= 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003190 }
3191
3192 btrfs_cpu_key_to_disk(&disk_key, new_key);
3193 btrfs_set_item_key(eb, &disk_key, slot);
3194 btrfs_mark_buffer_dirty(eb);
3195 if (slot == 0)
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00003196 fixup_low_keys(root, path, &disk_key, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04003197}
3198
3199/*
Chris Mason74123bd2007-02-02 11:05:29 -05003200 * try to push data from one node into the next node left in the
Chris Mason79f95c82007-03-01 15:16:26 -05003201 * tree.
Chris Masonaa5d6be2007-02-28 16:35:06 -05003202 *
3203 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
3204 * error, and > 0 if there was no room in the left hand block.
Chris Mason74123bd2007-02-02 11:05:29 -05003205 */
Chris Mason98ed5172008-01-03 10:01:48 -05003206static int push_node_left(struct btrfs_trans_handle *trans,
3207 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -04003208 struct extent_buffer *src, int empty)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003209{
Chris Masonbe0e5c02007-01-26 15:51:26 -05003210 int push_items = 0;
Chris Masonbb803952007-03-01 12:04:21 -05003211 int src_nritems;
3212 int dst_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003213 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003214
Chris Mason5f39d392007-10-15 16:14:19 -04003215 src_nritems = btrfs_header_nritems(src);
3216 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04003217 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Mason7bb86312007-12-11 09:25:06 -05003218 WARN_ON(btrfs_header_generation(src) != trans->transid);
3219 WARN_ON(btrfs_header_generation(dst) != trans->transid);
Chris Mason54aa1f42007-06-22 14:16:25 -04003220
Chris Masonbce4eae2008-04-24 14:42:46 -04003221 if (!empty && src_nritems <= 8)
Chris Mason971a1f62008-04-24 10:54:32 -04003222 return 1;
3223
Chris Masond3977122009-01-05 21:25:51 -05003224 if (push_items <= 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003225 return 1;
3226
Chris Masonbce4eae2008-04-24 14:42:46 -04003227 if (empty) {
Chris Mason971a1f62008-04-24 10:54:32 -04003228 push_items = min(src_nritems, push_items);
Chris Masonbce4eae2008-04-24 14:42:46 -04003229 if (push_items < src_nritems) {
3230 /* leave at least 8 pointers in the node if
3231 * we aren't going to empty it
3232 */
3233 if (src_nritems - push_items < 8) {
3234 if (push_items <= 8)
3235 return 1;
3236 push_items -= 8;
3237 }
3238 }
3239 } else
3240 push_items = min(src_nritems - 8, push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05003241
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003242 ret = tree_mod_log_eb_copy(root->fs_info, dst, src, dst_nritems, 0,
3243 push_items);
3244 if (ret) {
3245 btrfs_abort_transaction(trans, root, ret);
3246 return ret;
3247 }
Chris Mason5f39d392007-10-15 16:14:19 -04003248 copy_extent_buffer(dst, src,
3249 btrfs_node_key_ptr_offset(dst_nritems),
3250 btrfs_node_key_ptr_offset(0),
Chris Masond3977122009-01-05 21:25:51 -05003251 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason5f39d392007-10-15 16:14:19 -04003252
Chris Masonbb803952007-03-01 12:04:21 -05003253 if (push_items < src_nritems) {
Jan Schmidt57911b82012-10-19 09:22:03 +02003254 /*
3255 * don't call tree_mod_log_eb_move here, key removal was already
3256 * fully logged by tree_mod_log_eb_copy above.
3257 */
Chris Mason5f39d392007-10-15 16:14:19 -04003258 memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0),
3259 btrfs_node_key_ptr_offset(push_items),
3260 (src_nritems - push_items) *
3261 sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -05003262 }
Chris Mason5f39d392007-10-15 16:14:19 -04003263 btrfs_set_header_nritems(src, src_nritems - push_items);
3264 btrfs_set_header_nritems(dst, dst_nritems + push_items);
3265 btrfs_mark_buffer_dirty(src);
3266 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04003267
Chris Masonbb803952007-03-01 12:04:21 -05003268 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003269}
3270
Chris Mason97571fd2007-02-24 13:39:08 -05003271/*
Chris Mason79f95c82007-03-01 15:16:26 -05003272 * try to push data from one node into the next node right in the
3273 * tree.
3274 *
3275 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
3276 * error, and > 0 if there was no room in the right hand block.
3277 *
3278 * this will only push up to 1/2 the contents of the left node over
3279 */
Chris Mason5f39d392007-10-15 16:14:19 -04003280static int balance_node_right(struct btrfs_trans_handle *trans,
3281 struct btrfs_root *root,
3282 struct extent_buffer *dst,
3283 struct extent_buffer *src)
Chris Mason79f95c82007-03-01 15:16:26 -05003284{
Chris Mason79f95c82007-03-01 15:16:26 -05003285 int push_items = 0;
3286 int max_push;
3287 int src_nritems;
3288 int dst_nritems;
3289 int ret = 0;
Chris Mason79f95c82007-03-01 15:16:26 -05003290
Chris Mason7bb86312007-12-11 09:25:06 -05003291 WARN_ON(btrfs_header_generation(src) != trans->transid);
3292 WARN_ON(btrfs_header_generation(dst) != trans->transid);
3293
Chris Mason5f39d392007-10-15 16:14:19 -04003294 src_nritems = btrfs_header_nritems(src);
3295 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04003296 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Masond3977122009-01-05 21:25:51 -05003297 if (push_items <= 0)
Chris Mason79f95c82007-03-01 15:16:26 -05003298 return 1;
Chris Masonbce4eae2008-04-24 14:42:46 -04003299
Chris Masond3977122009-01-05 21:25:51 -05003300 if (src_nritems < 4)
Chris Masonbce4eae2008-04-24 14:42:46 -04003301 return 1;
Chris Mason79f95c82007-03-01 15:16:26 -05003302
3303 max_push = src_nritems / 2 + 1;
3304 /* don't try to empty the node */
Chris Masond3977122009-01-05 21:25:51 -05003305 if (max_push >= src_nritems)
Chris Mason79f95c82007-03-01 15:16:26 -05003306 return 1;
Yan252c38f2007-08-29 09:11:44 -04003307
Chris Mason79f95c82007-03-01 15:16:26 -05003308 if (max_push < push_items)
3309 push_items = max_push;
3310
Jan Schmidtf2304752012-05-26 11:43:17 +02003311 tree_mod_log_eb_move(root->fs_info, dst, push_items, 0, dst_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003312 memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items),
3313 btrfs_node_key_ptr_offset(0),
3314 (dst_nritems) *
3315 sizeof(struct btrfs_key_ptr));
Chris Masond6025572007-03-30 14:27:56 -04003316
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003317 ret = tree_mod_log_eb_copy(root->fs_info, dst, src, 0,
3318 src_nritems - push_items, push_items);
3319 if (ret) {
3320 btrfs_abort_transaction(trans, root, ret);
3321 return ret;
3322 }
Chris Mason5f39d392007-10-15 16:14:19 -04003323 copy_extent_buffer(dst, src,
3324 btrfs_node_key_ptr_offset(0),
3325 btrfs_node_key_ptr_offset(src_nritems - push_items),
Chris Masond3977122009-01-05 21:25:51 -05003326 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason79f95c82007-03-01 15:16:26 -05003327
Chris Mason5f39d392007-10-15 16:14:19 -04003328 btrfs_set_header_nritems(src, src_nritems - push_items);
3329 btrfs_set_header_nritems(dst, dst_nritems + push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05003330
Chris Mason5f39d392007-10-15 16:14:19 -04003331 btrfs_mark_buffer_dirty(src);
3332 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04003333
Chris Mason79f95c82007-03-01 15:16:26 -05003334 return ret;
3335}
3336
3337/*
Chris Mason97571fd2007-02-24 13:39:08 -05003338 * helper function to insert a new root level in the tree.
3339 * A new node is allocated, and a single item is inserted to
3340 * point to the existing root
Chris Masonaa5d6be2007-02-28 16:35:06 -05003341 *
3342 * returns zero on success or < 0 on failure.
Chris Mason97571fd2007-02-24 13:39:08 -05003343 */
Chris Masond3977122009-01-05 21:25:51 -05003344static noinline int insert_new_root(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04003345 struct btrfs_root *root,
Liu Bofdd99c72013-05-22 12:06:51 +00003346 struct btrfs_path *path, int level)
Chris Mason5c680ed2007-02-22 11:39:13 -05003347{
Chris Mason7bb86312007-12-11 09:25:06 -05003348 u64 lower_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04003349 struct extent_buffer *lower;
3350 struct extent_buffer *c;
Chris Mason925baed2008-06-25 16:01:30 -04003351 struct extent_buffer *old;
Chris Mason5f39d392007-10-15 16:14:19 -04003352 struct btrfs_disk_key lower_key;
Chris Mason5c680ed2007-02-22 11:39:13 -05003353
3354 BUG_ON(path->nodes[level]);
3355 BUG_ON(path->nodes[level-1] != root->node);
3356
Chris Mason7bb86312007-12-11 09:25:06 -05003357 lower = path->nodes[level-1];
3358 if (level == 1)
3359 btrfs_item_key(lower, &lower_key, 0);
3360 else
3361 btrfs_node_key(lower, &lower_key, 0);
3362
Zheng Yan31840ae2008-09-23 13:14:14 -04003363 c = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003364 root->root_key.objectid, &lower_key,
Jan Schmidt5581a512012-05-16 17:04:52 +02003365 level, root->node->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003366 if (IS_ERR(c))
3367 return PTR_ERR(c);
Chris Mason925baed2008-06-25 16:01:30 -04003368
Yan, Zhengf0486c62010-05-16 10:46:25 -04003369 root_add_used(root, root->nodesize);
3370
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003371 memset_extent_buffer(c, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04003372 btrfs_set_header_nritems(c, 1);
3373 btrfs_set_header_level(c, level);
Chris Masondb945352007-10-15 16:15:53 -04003374 btrfs_set_header_bytenr(c, c->start);
Chris Mason5f39d392007-10-15 16:14:19 -04003375 btrfs_set_header_generation(c, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003376 btrfs_set_header_backref_rev(c, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04003377 btrfs_set_header_owner(c, root->root_key.objectid);
Chris Masond5719762007-03-23 10:01:08 -04003378
Ross Kirk0a4e5582013-09-24 10:12:38 +01003379 write_extent_buffer(c, root->fs_info->fsid, btrfs_header_fsid(),
Chris Mason5f39d392007-10-15 16:14:19 -04003380 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04003381
3382 write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
Geert Uytterhoevenb308bc22013-08-20 13:20:15 +02003383 btrfs_header_chunk_tree_uuid(c), BTRFS_UUID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04003384
Chris Mason5f39d392007-10-15 16:14:19 -04003385 btrfs_set_node_key(c, &lower_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04003386 btrfs_set_node_blockptr(c, 0, lower->start);
Chris Mason7bb86312007-12-11 09:25:06 -05003387 lower_gen = btrfs_header_generation(lower);
Zheng Yan31840ae2008-09-23 13:14:14 -04003388 WARN_ON(lower_gen != trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05003389
3390 btrfs_set_node_ptr_generation(c, 0, lower_gen);
Chris Mason5f39d392007-10-15 16:14:19 -04003391
3392 btrfs_mark_buffer_dirty(c);
Chris Masond5719762007-03-23 10:01:08 -04003393
Chris Mason925baed2008-06-25 16:01:30 -04003394 old = root->node;
Liu Bofdd99c72013-05-22 12:06:51 +00003395 tree_mod_log_set_root_pointer(root, c, 0);
Chris Mason240f62c2011-03-23 14:54:42 -04003396 rcu_assign_pointer(root->node, c);
Chris Mason925baed2008-06-25 16:01:30 -04003397
3398 /* the super has an extra ref to root->node */
3399 free_extent_buffer(old);
3400
Chris Mason0b86a832008-03-24 15:01:56 -04003401 add_root_to_dirty_list(root);
Chris Mason5f39d392007-10-15 16:14:19 -04003402 extent_buffer_get(c);
3403 path->nodes[level] = c;
Chris Masonbd681512011-07-16 15:23:14 -04003404 path->locks[level] = BTRFS_WRITE_LOCK;
Chris Mason5c680ed2007-02-22 11:39:13 -05003405 path->slots[level] = 0;
3406 return 0;
3407}
3408
Chris Mason74123bd2007-02-02 11:05:29 -05003409/*
3410 * worker function to insert a single pointer in a node.
3411 * the node should have enough room for the pointer already
Chris Mason97571fd2007-02-24 13:39:08 -05003412 *
Chris Mason74123bd2007-02-02 11:05:29 -05003413 * slot and level indicate where you want the key to go, and
3414 * blocknr is the block the key points to.
3415 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01003416static void insert_ptr(struct btrfs_trans_handle *trans,
3417 struct btrfs_root *root, struct btrfs_path *path,
3418 struct btrfs_disk_key *key, u64 bytenr,
Jan Schmidtc3e06962012-06-21 11:01:06 +02003419 int slot, int level)
Chris Mason74123bd2007-02-02 11:05:29 -05003420{
Chris Mason5f39d392007-10-15 16:14:19 -04003421 struct extent_buffer *lower;
Chris Mason74123bd2007-02-02 11:05:29 -05003422 int nritems;
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003423 int ret;
Chris Mason5c680ed2007-02-22 11:39:13 -05003424
3425 BUG_ON(!path->nodes[level]);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003426 btrfs_assert_tree_locked(path->nodes[level]);
Chris Mason5f39d392007-10-15 16:14:19 -04003427 lower = path->nodes[level];
3428 nritems = btrfs_header_nritems(lower);
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04003429 BUG_ON(slot > nritems);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003430 BUG_ON(nritems == BTRFS_NODEPTRS_PER_BLOCK(root));
Chris Mason74123bd2007-02-02 11:05:29 -05003431 if (slot != nritems) {
Jan Schmidtc3e06962012-06-21 11:01:06 +02003432 if (level)
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003433 tree_mod_log_eb_move(root->fs_info, lower, slot + 1,
3434 slot, nritems - slot);
Chris Mason5f39d392007-10-15 16:14:19 -04003435 memmove_extent_buffer(lower,
3436 btrfs_node_key_ptr_offset(slot + 1),
3437 btrfs_node_key_ptr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04003438 (nritems - slot) * sizeof(struct btrfs_key_ptr));
Chris Mason74123bd2007-02-02 11:05:29 -05003439 }
Jan Schmidtc3e06962012-06-21 11:01:06 +02003440 if (level) {
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003441 ret = tree_mod_log_insert_key(root->fs_info, lower, slot,
Josef Bacikc8cc6342013-07-01 16:18:19 -04003442 MOD_LOG_KEY_ADD, GFP_NOFS);
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003443 BUG_ON(ret < 0);
3444 }
Chris Mason5f39d392007-10-15 16:14:19 -04003445 btrfs_set_node_key(lower, key, slot);
Chris Masondb945352007-10-15 16:15:53 -04003446 btrfs_set_node_blockptr(lower, slot, bytenr);
Chris Mason74493f72007-12-11 09:25:06 -05003447 WARN_ON(trans->transid == 0);
3448 btrfs_set_node_ptr_generation(lower, slot, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04003449 btrfs_set_header_nritems(lower, nritems + 1);
3450 btrfs_mark_buffer_dirty(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05003451}
3452
Chris Mason97571fd2007-02-24 13:39:08 -05003453/*
3454 * split the node at the specified level in path in two.
3455 * The path is corrected to point to the appropriate node after the split
3456 *
3457 * Before splitting this tries to make some room in the node by pushing
3458 * left and right, if either one works, it returns right away.
Chris Masonaa5d6be2007-02-28 16:35:06 -05003459 *
3460 * returns 0 on success and < 0 on failure
Chris Mason97571fd2007-02-24 13:39:08 -05003461 */
Chris Masone02119d2008-09-05 16:13:11 -04003462static noinline int split_node(struct btrfs_trans_handle *trans,
3463 struct btrfs_root *root,
3464 struct btrfs_path *path, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003465{
Chris Mason5f39d392007-10-15 16:14:19 -04003466 struct extent_buffer *c;
3467 struct extent_buffer *split;
3468 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003469 int mid;
Chris Mason5c680ed2007-02-22 11:39:13 -05003470 int ret;
Chris Mason7518a232007-03-12 12:01:18 -04003471 u32 c_nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003472
Chris Mason5f39d392007-10-15 16:14:19 -04003473 c = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05003474 WARN_ON(btrfs_header_generation(c) != trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04003475 if (c == root->node) {
Jan Schmidtd9abbf12013-03-20 13:49:48 +00003476 /*
Jan Schmidt90f8d622013-04-13 13:19:53 +00003477 * trying to split the root, lets make a new one
3478 *
Liu Bofdd99c72013-05-22 12:06:51 +00003479 * tree mod log: We don't log_removal old root in
Jan Schmidt90f8d622013-04-13 13:19:53 +00003480 * insert_new_root, because that root buffer will be kept as a
3481 * normal node. We are going to log removal of half of the
3482 * elements below with tree_mod_log_eb_copy. We're holding a
3483 * tree lock on the buffer, which is why we cannot race with
3484 * other tree_mod_log users.
Jan Schmidtd9abbf12013-03-20 13:49:48 +00003485 */
Liu Bofdd99c72013-05-22 12:06:51 +00003486 ret = insert_new_root(trans, root, path, level + 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05003487 if (ret)
3488 return ret;
Chris Masonb3612422009-05-13 19:12:15 -04003489 } else {
Chris Masone66f7092007-04-20 13:16:02 -04003490 ret = push_nodes_for_insert(trans, root, path, level);
Chris Mason5f39d392007-10-15 16:14:19 -04003491 c = path->nodes[level];
3492 if (!ret && btrfs_header_nritems(c) <
Chris Masonc448acf2008-04-24 09:34:34 -04003493 BTRFS_NODEPTRS_PER_BLOCK(root) - 3)
Chris Masone66f7092007-04-20 13:16:02 -04003494 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04003495 if (ret < 0)
3496 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003497 }
Chris Masone66f7092007-04-20 13:16:02 -04003498
Chris Mason5f39d392007-10-15 16:14:19 -04003499 c_nritems = btrfs_header_nritems(c);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003500 mid = (c_nritems + 1) / 2;
3501 btrfs_node_key(c, &disk_key, mid);
Chris Mason7bb86312007-12-11 09:25:06 -05003502
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003503 split = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
Zheng Yan31840ae2008-09-23 13:14:14 -04003504 root->root_key.objectid,
Jan Schmidt5581a512012-05-16 17:04:52 +02003505 &disk_key, level, c->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003506 if (IS_ERR(split))
3507 return PTR_ERR(split);
Chris Mason54aa1f42007-06-22 14:16:25 -04003508
Yan, Zhengf0486c62010-05-16 10:46:25 -04003509 root_add_used(root, root->nodesize);
3510
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003511 memset_extent_buffer(split, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04003512 btrfs_set_header_level(split, btrfs_header_level(c));
Chris Masondb945352007-10-15 16:15:53 -04003513 btrfs_set_header_bytenr(split, split->start);
Chris Mason5f39d392007-10-15 16:14:19 -04003514 btrfs_set_header_generation(split, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003515 btrfs_set_header_backref_rev(split, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04003516 btrfs_set_header_owner(split, root->root_key.objectid);
3517 write_extent_buffer(split, root->fs_info->fsid,
Ross Kirk0a4e5582013-09-24 10:12:38 +01003518 btrfs_header_fsid(), BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04003519 write_extent_buffer(split, root->fs_info->chunk_tree_uuid,
Geert Uytterhoevenb308bc22013-08-20 13:20:15 +02003520 btrfs_header_chunk_tree_uuid(split),
Chris Masone17cade2008-04-15 15:41:47 -04003521 BTRFS_UUID_SIZE);
Chris Mason5f39d392007-10-15 16:14:19 -04003522
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003523 ret = tree_mod_log_eb_copy(root->fs_info, split, c, 0,
3524 mid, c_nritems - mid);
3525 if (ret) {
3526 btrfs_abort_transaction(trans, root, ret);
3527 return ret;
3528 }
Chris Mason5f39d392007-10-15 16:14:19 -04003529 copy_extent_buffer(split, c,
3530 btrfs_node_key_ptr_offset(0),
3531 btrfs_node_key_ptr_offset(mid),
3532 (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
3533 btrfs_set_header_nritems(split, c_nritems - mid);
3534 btrfs_set_header_nritems(c, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003535 ret = 0;
3536
Chris Mason5f39d392007-10-15 16:14:19 -04003537 btrfs_mark_buffer_dirty(c);
3538 btrfs_mark_buffer_dirty(split);
3539
Jeff Mahoney143bede2012-03-01 14:56:26 +01003540 insert_ptr(trans, root, path, &disk_key, split->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02003541 path->slots[level + 1] + 1, level + 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003542
Chris Mason5de08d72007-02-24 06:24:44 -05003543 if (path->slots[level] >= mid) {
Chris Mason5c680ed2007-02-22 11:39:13 -05003544 path->slots[level] -= mid;
Chris Mason925baed2008-06-25 16:01:30 -04003545 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04003546 free_extent_buffer(c);
3547 path->nodes[level] = split;
Chris Mason5c680ed2007-02-22 11:39:13 -05003548 path->slots[level + 1] += 1;
3549 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003550 btrfs_tree_unlock(split);
Chris Mason5f39d392007-10-15 16:14:19 -04003551 free_extent_buffer(split);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003552 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003553 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003554}
3555
Chris Mason74123bd2007-02-02 11:05:29 -05003556/*
3557 * how many bytes are required to store the items in a leaf. start
3558 * and nr indicate which items in the leaf to check. This totals up the
3559 * space used both by the item structs and the item data
3560 */
Chris Mason5f39d392007-10-15 16:14:19 -04003561static int leaf_space_used(struct extent_buffer *l, int start, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003562{
Josef Bacik41be1f32012-10-15 13:43:18 -04003563 struct btrfs_item *start_item;
3564 struct btrfs_item *end_item;
3565 struct btrfs_map_token token;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003566 int data_len;
Chris Mason5f39d392007-10-15 16:14:19 -04003567 int nritems = btrfs_header_nritems(l);
Chris Masond4dbff92007-04-04 14:08:15 -04003568 int end = min(nritems, start + nr) - 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003569
3570 if (!nr)
3571 return 0;
Josef Bacik41be1f32012-10-15 13:43:18 -04003572 btrfs_init_map_token(&token);
Ross Kirkdd3cc162013-09-16 15:58:09 +01003573 start_item = btrfs_item_nr(start);
3574 end_item = btrfs_item_nr(end);
Josef Bacik41be1f32012-10-15 13:43:18 -04003575 data_len = btrfs_token_item_offset(l, start_item, &token) +
3576 btrfs_token_item_size(l, start_item, &token);
3577 data_len = data_len - btrfs_token_item_offset(l, end_item, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04003578 data_len += sizeof(struct btrfs_item) * nr;
Chris Masond4dbff92007-04-04 14:08:15 -04003579 WARN_ON(data_len < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003580 return data_len;
3581}
3582
Chris Mason74123bd2007-02-02 11:05:29 -05003583/*
Chris Masond4dbff92007-04-04 14:08:15 -04003584 * The space between the end of the leaf items and
3585 * the start of the leaf data. IOW, how much room
3586 * the leaf has left for both items and data
3587 */
Chris Masond3977122009-01-05 21:25:51 -05003588noinline int btrfs_leaf_free_space(struct btrfs_root *root,
Chris Masone02119d2008-09-05 16:13:11 -04003589 struct extent_buffer *leaf)
Chris Masond4dbff92007-04-04 14:08:15 -04003590{
Chris Mason5f39d392007-10-15 16:14:19 -04003591 int nritems = btrfs_header_nritems(leaf);
3592 int ret;
3593 ret = BTRFS_LEAF_DATA_SIZE(root) - leaf_space_used(leaf, 0, nritems);
3594 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003595 btrfs_crit(root->fs_info,
3596 "leaf free space ret %d, leaf data size %lu, used %d nritems %d",
Jens Axboeae2f5412007-10-19 09:22:59 -04003597 ret, (unsigned long) BTRFS_LEAF_DATA_SIZE(root),
Chris Mason5f39d392007-10-15 16:14:19 -04003598 leaf_space_used(leaf, 0, nritems), nritems);
3599 }
3600 return ret;
Chris Masond4dbff92007-04-04 14:08:15 -04003601}
3602
Chris Mason99d8f832010-07-07 10:51:48 -04003603/*
3604 * min slot controls the lowest index we're willing to push to the
3605 * right. We'll push up to and including min_slot, but no lower
3606 */
Chris Mason44871b12009-03-13 10:04:31 -04003607static noinline int __push_leaf_right(struct btrfs_trans_handle *trans,
3608 struct btrfs_root *root,
3609 struct btrfs_path *path,
3610 int data_size, int empty,
3611 struct extent_buffer *right,
Chris Mason99d8f832010-07-07 10:51:48 -04003612 int free_space, u32 left_nritems,
3613 u32 min_slot)
Chris Mason00ec4c52007-02-24 12:47:20 -05003614{
Chris Mason5f39d392007-10-15 16:14:19 -04003615 struct extent_buffer *left = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04003616 struct extent_buffer *upper = path->nodes[1];
Chris Masoncfed81a2012-03-03 07:40:03 -05003617 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003618 struct btrfs_disk_key disk_key;
Chris Mason00ec4c52007-02-24 12:47:20 -05003619 int slot;
Chris Mason34a38212007-11-07 13:31:03 -05003620 u32 i;
Chris Mason00ec4c52007-02-24 12:47:20 -05003621 int push_space = 0;
3622 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04003623 struct btrfs_item *item;
Chris Mason34a38212007-11-07 13:31:03 -05003624 u32 nr;
Chris Mason7518a232007-03-12 12:01:18 -04003625 u32 right_nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04003626 u32 data_end;
Chris Masondb945352007-10-15 16:15:53 -04003627 u32 this_item_size;
Chris Mason00ec4c52007-02-24 12:47:20 -05003628
Chris Masoncfed81a2012-03-03 07:40:03 -05003629 btrfs_init_map_token(&token);
3630
Chris Mason34a38212007-11-07 13:31:03 -05003631 if (empty)
3632 nr = 0;
3633 else
Chris Mason99d8f832010-07-07 10:51:48 -04003634 nr = max_t(u32, 1, min_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003635
Zheng Yan31840ae2008-09-23 13:14:14 -04003636 if (path->slots[0] >= left_nritems)
Yan Zheng87b29b22008-12-17 10:21:48 -05003637 push_space += data_size;
Zheng Yan31840ae2008-09-23 13:14:14 -04003638
Chris Mason44871b12009-03-13 10:04:31 -04003639 slot = path->slots[1];
Chris Mason34a38212007-11-07 13:31:03 -05003640 i = left_nritems - 1;
3641 while (i >= nr) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003642 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003643
Zheng Yan31840ae2008-09-23 13:14:14 -04003644 if (!empty && push_items > 0) {
3645 if (path->slots[0] > i)
3646 break;
3647 if (path->slots[0] == i) {
3648 int space = btrfs_leaf_free_space(root, left);
3649 if (space + push_space * 2 > free_space)
3650 break;
3651 }
3652 }
3653
Chris Mason00ec4c52007-02-24 12:47:20 -05003654 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05003655 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04003656
Chris Masondb945352007-10-15 16:15:53 -04003657 this_item_size = btrfs_item_size(left, item);
3658 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Mason00ec4c52007-02-24 12:47:20 -05003659 break;
Zheng Yan31840ae2008-09-23 13:14:14 -04003660
Chris Mason00ec4c52007-02-24 12:47:20 -05003661 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04003662 push_space += this_item_size + sizeof(*item);
Chris Mason34a38212007-11-07 13:31:03 -05003663 if (i == 0)
3664 break;
3665 i--;
Chris Masondb945352007-10-15 16:15:53 -04003666 }
Chris Mason5f39d392007-10-15 16:14:19 -04003667
Chris Mason925baed2008-06-25 16:01:30 -04003668 if (push_items == 0)
3669 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04003670
Julia Lawall6c1500f2012-11-03 20:30:18 +00003671 WARN_ON(!empty && push_items == left_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003672
Chris Mason00ec4c52007-02-24 12:47:20 -05003673 /* push left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04003674 right_nritems = btrfs_header_nritems(right);
Chris Mason34a38212007-11-07 13:31:03 -05003675
Chris Mason5f39d392007-10-15 16:14:19 -04003676 push_space = btrfs_item_end_nr(left, left_nritems - push_items);
Chris Mason123abc82007-03-14 14:14:43 -04003677 push_space -= leaf_data_end(root, left);
Chris Mason5f39d392007-10-15 16:14:19 -04003678
Chris Mason00ec4c52007-02-24 12:47:20 -05003679 /* make room in the right data area */
Chris Mason5f39d392007-10-15 16:14:19 -04003680 data_end = leaf_data_end(root, right);
3681 memmove_extent_buffer(right,
3682 btrfs_leaf_data(right) + data_end - push_space,
3683 btrfs_leaf_data(right) + data_end,
3684 BTRFS_LEAF_DATA_SIZE(root) - data_end);
3685
Chris Mason00ec4c52007-02-24 12:47:20 -05003686 /* copy from the left data area */
Chris Mason5f39d392007-10-15 16:14:19 -04003687 copy_extent_buffer(right, left, btrfs_leaf_data(right) +
Chris Masond6025572007-03-30 14:27:56 -04003688 BTRFS_LEAF_DATA_SIZE(root) - push_space,
3689 btrfs_leaf_data(left) + leaf_data_end(root, left),
3690 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04003691
3692 memmove_extent_buffer(right, btrfs_item_nr_offset(push_items),
3693 btrfs_item_nr_offset(0),
3694 right_nritems * sizeof(struct btrfs_item));
3695
Chris Mason00ec4c52007-02-24 12:47:20 -05003696 /* copy the items from left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04003697 copy_extent_buffer(right, left, btrfs_item_nr_offset(0),
3698 btrfs_item_nr_offset(left_nritems - push_items),
3699 push_items * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -05003700
3701 /* update the item pointers */
Chris Mason7518a232007-03-12 12:01:18 -04003702 right_nritems += push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04003703 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04003704 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason7518a232007-03-12 12:01:18 -04003705 for (i = 0; i < right_nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003706 item = btrfs_item_nr(i);
Chris Masoncfed81a2012-03-03 07:40:03 -05003707 push_space -= btrfs_token_item_size(right, item, &token);
3708 btrfs_set_token_item_offset(right, item, push_space, &token);
Chris Masondb945352007-10-15 16:15:53 -04003709 }
3710
Chris Mason7518a232007-03-12 12:01:18 -04003711 left_nritems -= push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04003712 btrfs_set_header_nritems(left, left_nritems);
Chris Mason00ec4c52007-02-24 12:47:20 -05003713
Chris Mason34a38212007-11-07 13:31:03 -05003714 if (left_nritems)
3715 btrfs_mark_buffer_dirty(left);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003716 else
3717 clean_tree_block(trans, root, left);
3718
Chris Mason5f39d392007-10-15 16:14:19 -04003719 btrfs_mark_buffer_dirty(right);
Chris Masona429e512007-04-18 16:15:28 -04003720
Chris Mason5f39d392007-10-15 16:14:19 -04003721 btrfs_item_key(right, &disk_key, 0);
3722 btrfs_set_node_key(upper, &disk_key, slot + 1);
Chris Masond6025572007-03-30 14:27:56 -04003723 btrfs_mark_buffer_dirty(upper);
Chris Mason02217ed2007-03-02 16:08:05 -05003724
Chris Mason00ec4c52007-02-24 12:47:20 -05003725 /* then fixup the leaf pointer in the path */
Chris Mason7518a232007-03-12 12:01:18 -04003726 if (path->slots[0] >= left_nritems) {
3727 path->slots[0] -= left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04003728 if (btrfs_header_nritems(path->nodes[0]) == 0)
3729 clean_tree_block(trans, root, path->nodes[0]);
3730 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04003731 free_extent_buffer(path->nodes[0]);
3732 path->nodes[0] = right;
Chris Mason00ec4c52007-02-24 12:47:20 -05003733 path->slots[1] += 1;
3734 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003735 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04003736 free_extent_buffer(right);
Chris Mason00ec4c52007-02-24 12:47:20 -05003737 }
3738 return 0;
Chris Mason925baed2008-06-25 16:01:30 -04003739
3740out_unlock:
3741 btrfs_tree_unlock(right);
3742 free_extent_buffer(right);
3743 return 1;
Chris Mason00ec4c52007-02-24 12:47:20 -05003744}
Chris Mason925baed2008-06-25 16:01:30 -04003745
Chris Mason00ec4c52007-02-24 12:47:20 -05003746/*
Chris Mason44871b12009-03-13 10:04:31 -04003747 * push some data in the path leaf to the right, trying to free up at
3748 * least data_size bytes. returns zero if the push worked, nonzero otherwise
3749 *
3750 * returns 1 if the push failed because the other node didn't have enough
3751 * room, 0 if everything worked out and < 0 if there were major errors.
Chris Mason99d8f832010-07-07 10:51:48 -04003752 *
3753 * this will push starting from min_slot to the end of the leaf. It won't
3754 * push any slot lower than min_slot
Chris Mason44871b12009-03-13 10:04:31 -04003755 */
3756static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04003757 *root, struct btrfs_path *path,
3758 int min_data_size, int data_size,
3759 int empty, u32 min_slot)
Chris Mason44871b12009-03-13 10:04:31 -04003760{
3761 struct extent_buffer *left = path->nodes[0];
3762 struct extent_buffer *right;
3763 struct extent_buffer *upper;
3764 int slot;
3765 int free_space;
3766 u32 left_nritems;
3767 int ret;
3768
3769 if (!path->nodes[1])
3770 return 1;
3771
3772 slot = path->slots[1];
3773 upper = path->nodes[1];
3774 if (slot >= btrfs_header_nritems(upper) - 1)
3775 return 1;
3776
3777 btrfs_assert_tree_locked(path->nodes[1]);
3778
3779 right = read_node_slot(root, upper, slot + 1);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00003780 if (right == NULL)
3781 return 1;
3782
Chris Mason44871b12009-03-13 10:04:31 -04003783 btrfs_tree_lock(right);
3784 btrfs_set_lock_blocking(right);
3785
3786 free_space = btrfs_leaf_free_space(root, right);
3787 if (free_space < data_size)
3788 goto out_unlock;
3789
3790 /* cow and double check */
3791 ret = btrfs_cow_block(trans, root, right, upper,
3792 slot + 1, &right);
3793 if (ret)
3794 goto out_unlock;
3795
3796 free_space = btrfs_leaf_free_space(root, right);
3797 if (free_space < data_size)
3798 goto out_unlock;
3799
3800 left_nritems = btrfs_header_nritems(left);
3801 if (left_nritems == 0)
3802 goto out_unlock;
3803
Filipe David Borba Manana2ef1fed2013-12-04 22:17:39 +00003804 if (path->slots[0] == left_nritems && !empty) {
3805 /* Key greater than all keys in the leaf, right neighbor has
3806 * enough room for it and we're not emptying our leaf to delete
3807 * it, therefore use right neighbor to insert the new item and
3808 * no need to touch/dirty our left leaft. */
3809 btrfs_tree_unlock(left);
3810 free_extent_buffer(left);
3811 path->nodes[0] = right;
3812 path->slots[0] = 0;
3813 path->slots[1]++;
3814 return 0;
3815 }
3816
Chris Mason99d8f832010-07-07 10:51:48 -04003817 return __push_leaf_right(trans, root, path, min_data_size, empty,
3818 right, free_space, left_nritems, min_slot);
Chris Mason44871b12009-03-13 10:04:31 -04003819out_unlock:
3820 btrfs_tree_unlock(right);
3821 free_extent_buffer(right);
3822 return 1;
3823}
3824
3825/*
Chris Mason74123bd2007-02-02 11:05:29 -05003826 * push some data in the path leaf to the left, trying to free up at
3827 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04003828 *
3829 * max_slot can put a limit on how far into the leaf we'll push items. The
3830 * item at 'max_slot' won't be touched. Use (u32)-1 to make us do all the
3831 * items
Chris Mason74123bd2007-02-02 11:05:29 -05003832 */
Chris Mason44871b12009-03-13 10:04:31 -04003833static noinline int __push_leaf_left(struct btrfs_trans_handle *trans,
3834 struct btrfs_root *root,
3835 struct btrfs_path *path, int data_size,
3836 int empty, struct extent_buffer *left,
Chris Mason99d8f832010-07-07 10:51:48 -04003837 int free_space, u32 right_nritems,
3838 u32 max_slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003839{
Chris Mason5f39d392007-10-15 16:14:19 -04003840 struct btrfs_disk_key disk_key;
3841 struct extent_buffer *right = path->nodes[0];
Chris Masonbe0e5c02007-01-26 15:51:26 -05003842 int i;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003843 int push_space = 0;
3844 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04003845 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -04003846 u32 old_left_nritems;
Chris Mason34a38212007-11-07 13:31:03 -05003847 u32 nr;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003848 int ret = 0;
Chris Masondb945352007-10-15 16:15:53 -04003849 u32 this_item_size;
3850 u32 old_left_item_size;
Chris Masoncfed81a2012-03-03 07:40:03 -05003851 struct btrfs_map_token token;
3852
3853 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003854
Chris Mason34a38212007-11-07 13:31:03 -05003855 if (empty)
Chris Mason99d8f832010-07-07 10:51:48 -04003856 nr = min(right_nritems, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003857 else
Chris Mason99d8f832010-07-07 10:51:48 -04003858 nr = min(right_nritems - 1, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003859
3860 for (i = 0; i < nr; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003861 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003862
Zheng Yan31840ae2008-09-23 13:14:14 -04003863 if (!empty && push_items > 0) {
3864 if (path->slots[0] < i)
3865 break;
3866 if (path->slots[0] == i) {
3867 int space = btrfs_leaf_free_space(root, right);
3868 if (space + push_space * 2 > free_space)
3869 break;
3870 }
3871 }
3872
Chris Masonbe0e5c02007-01-26 15:51:26 -05003873 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05003874 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04003875
3876 this_item_size = btrfs_item_size(right, item);
3877 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003878 break;
Chris Masondb945352007-10-15 16:15:53 -04003879
Chris Masonbe0e5c02007-01-26 15:51:26 -05003880 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04003881 push_space += this_item_size + sizeof(*item);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003882 }
Chris Masondb945352007-10-15 16:15:53 -04003883
Chris Masonbe0e5c02007-01-26 15:51:26 -05003884 if (push_items == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04003885 ret = 1;
3886 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003887 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303888 WARN_ON(!empty && push_items == btrfs_header_nritems(right));
Chris Mason5f39d392007-10-15 16:14:19 -04003889
Chris Masonbe0e5c02007-01-26 15:51:26 -05003890 /* push data from right to left */
Chris Mason5f39d392007-10-15 16:14:19 -04003891 copy_extent_buffer(left, right,
3892 btrfs_item_nr_offset(btrfs_header_nritems(left)),
3893 btrfs_item_nr_offset(0),
3894 push_items * sizeof(struct btrfs_item));
3895
Chris Mason123abc82007-03-14 14:14:43 -04003896 push_space = BTRFS_LEAF_DATA_SIZE(root) -
Chris Masond3977122009-01-05 21:25:51 -05003897 btrfs_item_offset_nr(right, push_items - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003898
3899 copy_extent_buffer(left, right, btrfs_leaf_data(left) +
Chris Masond6025572007-03-30 14:27:56 -04003900 leaf_data_end(root, left) - push_space,
3901 btrfs_leaf_data(right) +
Chris Mason5f39d392007-10-15 16:14:19 -04003902 btrfs_item_offset_nr(right, push_items - 1),
Chris Masond6025572007-03-30 14:27:56 -04003903 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04003904 old_left_nritems = btrfs_header_nritems(left);
Yan Zheng87b29b22008-12-17 10:21:48 -05003905 BUG_ON(old_left_nritems <= 0);
Chris Masoneb60cea2007-02-02 09:18:22 -05003906
Chris Masondb945352007-10-15 16:15:53 -04003907 old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1);
Chris Mason0783fcf2007-03-12 20:12:07 -04003908 for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003909 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003910
Ross Kirkdd3cc162013-09-16 15:58:09 +01003911 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003912
Chris Masoncfed81a2012-03-03 07:40:03 -05003913 ioff = btrfs_token_item_offset(left, item, &token);
3914 btrfs_set_token_item_offset(left, item,
3915 ioff - (BTRFS_LEAF_DATA_SIZE(root) - old_left_item_size),
3916 &token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003917 }
Chris Mason5f39d392007-10-15 16:14:19 -04003918 btrfs_set_header_nritems(left, old_left_nritems + push_items);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003919
3920 /* fixup right node */
Julia Lawall31b1a2b2012-11-03 10:58:34 +00003921 if (push_items > right_nritems)
3922 WARN(1, KERN_CRIT "push items %d nr %u\n", push_items,
Chris Masond3977122009-01-05 21:25:51 -05003923 right_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003924
Chris Mason34a38212007-11-07 13:31:03 -05003925 if (push_items < right_nritems) {
3926 push_space = btrfs_item_offset_nr(right, push_items - 1) -
3927 leaf_data_end(root, right);
3928 memmove_extent_buffer(right, btrfs_leaf_data(right) +
3929 BTRFS_LEAF_DATA_SIZE(root) - push_space,
3930 btrfs_leaf_data(right) +
3931 leaf_data_end(root, right), push_space);
3932
3933 memmove_extent_buffer(right, btrfs_item_nr_offset(0),
Chris Mason5f39d392007-10-15 16:14:19 -04003934 btrfs_item_nr_offset(push_items),
3935 (btrfs_header_nritems(right) - push_items) *
3936 sizeof(struct btrfs_item));
Chris Mason34a38212007-11-07 13:31:03 -05003937 }
Yaneef1c492007-11-26 10:58:13 -05003938 right_nritems -= push_items;
3939 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04003940 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -04003941 for (i = 0; i < right_nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003942 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003943
Chris Masoncfed81a2012-03-03 07:40:03 -05003944 push_space = push_space - btrfs_token_item_size(right,
3945 item, &token);
3946 btrfs_set_token_item_offset(right, item, push_space, &token);
Chris Masondb945352007-10-15 16:15:53 -04003947 }
Chris Masoneb60cea2007-02-02 09:18:22 -05003948
Chris Mason5f39d392007-10-15 16:14:19 -04003949 btrfs_mark_buffer_dirty(left);
Chris Mason34a38212007-11-07 13:31:03 -05003950 if (right_nritems)
3951 btrfs_mark_buffer_dirty(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003952 else
3953 clean_tree_block(trans, root, right);
Chris Mason098f59c2007-05-11 11:33:21 -04003954
Chris Mason5f39d392007-10-15 16:14:19 -04003955 btrfs_item_key(right, &disk_key, 0);
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00003956 fixup_low_keys(root, path, &disk_key, 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003957
3958 /* then fixup the leaf pointer in the path */
3959 if (path->slots[0] < push_items) {
3960 path->slots[0] += old_left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04003961 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04003962 free_extent_buffer(path->nodes[0]);
3963 path->nodes[0] = left;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003964 path->slots[1] -= 1;
3965 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003966 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04003967 free_extent_buffer(left);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003968 path->slots[0] -= push_items;
3969 }
Chris Masoneb60cea2007-02-02 09:18:22 -05003970 BUG_ON(path->slots[0] < 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003971 return ret;
Chris Mason925baed2008-06-25 16:01:30 -04003972out:
3973 btrfs_tree_unlock(left);
3974 free_extent_buffer(left);
3975 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003976}
3977
Chris Mason74123bd2007-02-02 11:05:29 -05003978/*
Chris Mason44871b12009-03-13 10:04:31 -04003979 * push some data in the path leaf to the left, trying to free up at
3980 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04003981 *
3982 * max_slot can put a limit on how far into the leaf we'll push items. The
3983 * item at 'max_slot' won't be touched. Use (u32)-1 to make us push all the
3984 * items
Chris Mason44871b12009-03-13 10:04:31 -04003985 */
3986static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04003987 *root, struct btrfs_path *path, int min_data_size,
3988 int data_size, int empty, u32 max_slot)
Chris Mason44871b12009-03-13 10:04:31 -04003989{
3990 struct extent_buffer *right = path->nodes[0];
3991 struct extent_buffer *left;
3992 int slot;
3993 int free_space;
3994 u32 right_nritems;
3995 int ret = 0;
3996
3997 slot = path->slots[1];
3998 if (slot == 0)
3999 return 1;
4000 if (!path->nodes[1])
4001 return 1;
4002
4003 right_nritems = btrfs_header_nritems(right);
4004 if (right_nritems == 0)
4005 return 1;
4006
4007 btrfs_assert_tree_locked(path->nodes[1]);
4008
4009 left = read_node_slot(root, path->nodes[1], slot - 1);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00004010 if (left == NULL)
4011 return 1;
4012
Chris Mason44871b12009-03-13 10:04:31 -04004013 btrfs_tree_lock(left);
4014 btrfs_set_lock_blocking(left);
4015
4016 free_space = btrfs_leaf_free_space(root, left);
4017 if (free_space < data_size) {
4018 ret = 1;
4019 goto out;
4020 }
4021
4022 /* cow and double check */
4023 ret = btrfs_cow_block(trans, root, left,
4024 path->nodes[1], slot - 1, &left);
4025 if (ret) {
4026 /* we hit -ENOSPC, but it isn't fatal here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004027 if (ret == -ENOSPC)
4028 ret = 1;
Chris Mason44871b12009-03-13 10:04:31 -04004029 goto out;
4030 }
4031
4032 free_space = btrfs_leaf_free_space(root, left);
4033 if (free_space < data_size) {
4034 ret = 1;
4035 goto out;
4036 }
4037
Chris Mason99d8f832010-07-07 10:51:48 -04004038 return __push_leaf_left(trans, root, path, min_data_size,
4039 empty, left, free_space, right_nritems,
4040 max_slot);
Chris Mason44871b12009-03-13 10:04:31 -04004041out:
4042 btrfs_tree_unlock(left);
4043 free_extent_buffer(left);
4044 return ret;
4045}
4046
4047/*
Chris Mason74123bd2007-02-02 11:05:29 -05004048 * split the path's leaf in two, making sure there is at least data_size
4049 * available for the resulting leaf level of the path.
4050 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01004051static noinline void copy_for_split(struct btrfs_trans_handle *trans,
4052 struct btrfs_root *root,
4053 struct btrfs_path *path,
4054 struct extent_buffer *l,
4055 struct extent_buffer *right,
4056 int slot, int mid, int nritems)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004057{
Chris Masonbe0e5c02007-01-26 15:51:26 -05004058 int data_copy_size;
4059 int rt_data_off;
4060 int i;
Chris Masond4dbff92007-04-04 14:08:15 -04004061 struct btrfs_disk_key disk_key;
Chris Masoncfed81a2012-03-03 07:40:03 -05004062 struct btrfs_map_token token;
4063
4064 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004065
Chris Mason5f39d392007-10-15 16:14:19 -04004066 nritems = nritems - mid;
4067 btrfs_set_header_nritems(right, nritems);
4068 data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(root, l);
4069
4070 copy_extent_buffer(right, l, btrfs_item_nr_offset(0),
4071 btrfs_item_nr_offset(mid),
4072 nritems * sizeof(struct btrfs_item));
4073
4074 copy_extent_buffer(right, l,
Chris Masond6025572007-03-30 14:27:56 -04004075 btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
4076 data_copy_size, btrfs_leaf_data(l) +
4077 leaf_data_end(root, l), data_copy_size);
Chris Mason74123bd2007-02-02 11:05:29 -05004078
Chris Mason5f39d392007-10-15 16:14:19 -04004079 rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
4080 btrfs_item_end_nr(l, mid);
4081
4082 for (i = 0; i < nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01004083 struct btrfs_item *item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04004084 u32 ioff;
4085
Chris Masoncfed81a2012-03-03 07:40:03 -05004086 ioff = btrfs_token_item_offset(right, item, &token);
4087 btrfs_set_token_item_offset(right, item,
4088 ioff + rt_data_off, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004089 }
Chris Mason74123bd2007-02-02 11:05:29 -05004090
Chris Mason5f39d392007-10-15 16:14:19 -04004091 btrfs_set_header_nritems(l, mid);
Chris Mason5f39d392007-10-15 16:14:19 -04004092 btrfs_item_key(right, &disk_key, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004093 insert_ptr(trans, root, path, &disk_key, right->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02004094 path->slots[1] + 1, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004095
4096 btrfs_mark_buffer_dirty(right);
4097 btrfs_mark_buffer_dirty(l);
Chris Masoneb60cea2007-02-02 09:18:22 -05004098 BUG_ON(path->slots[0] != slot);
Chris Mason5f39d392007-10-15 16:14:19 -04004099
Chris Masonbe0e5c02007-01-26 15:51:26 -05004100 if (mid <= slot) {
Chris Mason925baed2008-06-25 16:01:30 -04004101 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04004102 free_extent_buffer(path->nodes[0]);
4103 path->nodes[0] = right;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004104 path->slots[0] -= mid;
4105 path->slots[1] += 1;
Chris Mason925baed2008-06-25 16:01:30 -04004106 } else {
4107 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04004108 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04004109 }
Chris Mason5f39d392007-10-15 16:14:19 -04004110
Chris Masoneb60cea2007-02-02 09:18:22 -05004111 BUG_ON(path->slots[0] < 0);
Chris Mason44871b12009-03-13 10:04:31 -04004112}
4113
4114/*
Chris Mason99d8f832010-07-07 10:51:48 -04004115 * double splits happen when we need to insert a big item in the middle
4116 * of a leaf. A double split can leave us with 3 mostly empty leaves:
4117 * leaf: [ slots 0 - N] [ our target ] [ N + 1 - total in leaf ]
4118 * A B C
4119 *
4120 * We avoid this by trying to push the items on either side of our target
4121 * into the adjacent leaves. If all goes well we can avoid the double split
4122 * completely.
4123 */
4124static noinline int push_for_double_split(struct btrfs_trans_handle *trans,
4125 struct btrfs_root *root,
4126 struct btrfs_path *path,
4127 int data_size)
4128{
4129 int ret;
4130 int progress = 0;
4131 int slot;
4132 u32 nritems;
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004133 int space_needed = data_size;
Chris Mason99d8f832010-07-07 10:51:48 -04004134
4135 slot = path->slots[0];
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004136 if (slot < btrfs_header_nritems(path->nodes[0]))
4137 space_needed -= btrfs_leaf_free_space(root, path->nodes[0]);
Chris Mason99d8f832010-07-07 10:51:48 -04004138
4139 /*
4140 * try to push all the items after our slot into the
4141 * right leaf
4142 */
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004143 ret = push_leaf_right(trans, root, path, 1, space_needed, 0, slot);
Chris Mason99d8f832010-07-07 10:51:48 -04004144 if (ret < 0)
4145 return ret;
4146
4147 if (ret == 0)
4148 progress++;
4149
4150 nritems = btrfs_header_nritems(path->nodes[0]);
4151 /*
4152 * our goal is to get our slot at the start or end of a leaf. If
4153 * we've done so we're done
4154 */
4155 if (path->slots[0] == 0 || path->slots[0] == nritems)
4156 return 0;
4157
4158 if (btrfs_leaf_free_space(root, path->nodes[0]) >= data_size)
4159 return 0;
4160
4161 /* try to push all the items before our slot into the next leaf */
4162 slot = path->slots[0];
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004163 ret = push_leaf_left(trans, root, path, 1, space_needed, 0, slot);
Chris Mason99d8f832010-07-07 10:51:48 -04004164 if (ret < 0)
4165 return ret;
4166
4167 if (ret == 0)
4168 progress++;
4169
4170 if (progress)
4171 return 0;
4172 return 1;
4173}
4174
4175/*
Chris Mason44871b12009-03-13 10:04:31 -04004176 * split the path's leaf in two, making sure there is at least data_size
4177 * available for the resulting leaf level of the path.
4178 *
4179 * returns 0 if all went well and < 0 on failure.
4180 */
4181static noinline int split_leaf(struct btrfs_trans_handle *trans,
4182 struct btrfs_root *root,
4183 struct btrfs_key *ins_key,
4184 struct btrfs_path *path, int data_size,
4185 int extend)
4186{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004187 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04004188 struct extent_buffer *l;
4189 u32 nritems;
4190 int mid;
4191 int slot;
4192 struct extent_buffer *right;
4193 int ret = 0;
4194 int wret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004195 int split;
Chris Mason44871b12009-03-13 10:04:31 -04004196 int num_doubles = 0;
Chris Mason99d8f832010-07-07 10:51:48 -04004197 int tried_avoid_double = 0;
Chris Mason44871b12009-03-13 10:04:31 -04004198
Yan, Zhenga5719522009-09-24 09:17:31 -04004199 l = path->nodes[0];
4200 slot = path->slots[0];
4201 if (extend && data_size + btrfs_item_size_nr(l, slot) +
4202 sizeof(struct btrfs_item) > BTRFS_LEAF_DATA_SIZE(root))
4203 return -EOVERFLOW;
4204
Chris Mason44871b12009-03-13 10:04:31 -04004205 /* first try to make some room by pushing left and right */
Liu Bo33157e02013-05-22 12:07:06 +00004206 if (data_size && path->nodes[1]) {
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004207 int space_needed = data_size;
4208
4209 if (slot < btrfs_header_nritems(l))
4210 space_needed -= btrfs_leaf_free_space(root, l);
4211
4212 wret = push_leaf_right(trans, root, path, space_needed,
4213 space_needed, 0, 0);
Chris Mason44871b12009-03-13 10:04:31 -04004214 if (wret < 0)
4215 return wret;
4216 if (wret) {
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004217 wret = push_leaf_left(trans, root, path, space_needed,
4218 space_needed, 0, (u32)-1);
Chris Mason44871b12009-03-13 10:04:31 -04004219 if (wret < 0)
4220 return wret;
4221 }
4222 l = path->nodes[0];
4223
4224 /* did the pushes work? */
4225 if (btrfs_leaf_free_space(root, l) >= data_size)
4226 return 0;
4227 }
4228
4229 if (!path->nodes[1]) {
Liu Bofdd99c72013-05-22 12:06:51 +00004230 ret = insert_new_root(trans, root, path, 1);
Chris Mason44871b12009-03-13 10:04:31 -04004231 if (ret)
4232 return ret;
4233 }
4234again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004235 split = 1;
Chris Mason44871b12009-03-13 10:04:31 -04004236 l = path->nodes[0];
4237 slot = path->slots[0];
4238 nritems = btrfs_header_nritems(l);
4239 mid = (nritems + 1) / 2;
4240
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004241 if (mid <= slot) {
4242 if (nritems == 1 ||
4243 leaf_space_used(l, mid, nritems - mid) + data_size >
4244 BTRFS_LEAF_DATA_SIZE(root)) {
4245 if (slot >= nritems) {
4246 split = 0;
4247 } else {
4248 mid = slot;
4249 if (mid != nritems &&
4250 leaf_space_used(l, mid, nritems - mid) +
4251 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason99d8f832010-07-07 10:51:48 -04004252 if (data_size && !tried_avoid_double)
4253 goto push_for_double;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004254 split = 2;
4255 }
4256 }
4257 }
4258 } else {
4259 if (leaf_space_used(l, 0, mid) + data_size >
4260 BTRFS_LEAF_DATA_SIZE(root)) {
4261 if (!extend && data_size && slot == 0) {
4262 split = 0;
4263 } else if ((extend || !data_size) && slot == 0) {
4264 mid = 1;
4265 } else {
4266 mid = slot;
4267 if (mid != nritems &&
4268 leaf_space_used(l, mid, nritems - mid) +
4269 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason99d8f832010-07-07 10:51:48 -04004270 if (data_size && !tried_avoid_double)
4271 goto push_for_double;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304272 split = 2;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004273 }
4274 }
4275 }
4276 }
4277
4278 if (split == 0)
4279 btrfs_cpu_key_to_disk(&disk_key, ins_key);
4280 else
4281 btrfs_item_key(l, &disk_key, mid);
4282
David Sterba707e8a02014-06-04 19:22:26 +02004283 right = btrfs_alloc_free_block(trans, root, root->nodesize, 0,
Chris Mason44871b12009-03-13 10:04:31 -04004284 root->root_key.objectid,
Jan Schmidt5581a512012-05-16 17:04:52 +02004285 &disk_key, 0, l->start, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004286 if (IS_ERR(right))
Chris Mason44871b12009-03-13 10:04:31 -04004287 return PTR_ERR(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004288
David Sterba707e8a02014-06-04 19:22:26 +02004289 root_add_used(root, root->nodesize);
Chris Mason44871b12009-03-13 10:04:31 -04004290
4291 memset_extent_buffer(right, 0, 0, sizeof(struct btrfs_header));
4292 btrfs_set_header_bytenr(right, right->start);
4293 btrfs_set_header_generation(right, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004294 btrfs_set_header_backref_rev(right, BTRFS_MIXED_BACKREF_REV);
Chris Mason44871b12009-03-13 10:04:31 -04004295 btrfs_set_header_owner(right, root->root_key.objectid);
4296 btrfs_set_header_level(right, 0);
4297 write_extent_buffer(right, root->fs_info->fsid,
Ross Kirk0a4e5582013-09-24 10:12:38 +01004298 btrfs_header_fsid(), BTRFS_FSID_SIZE);
Chris Mason44871b12009-03-13 10:04:31 -04004299
4300 write_extent_buffer(right, root->fs_info->chunk_tree_uuid,
Geert Uytterhoevenb308bc22013-08-20 13:20:15 +02004301 btrfs_header_chunk_tree_uuid(right),
Chris Mason44871b12009-03-13 10:04:31 -04004302 BTRFS_UUID_SIZE);
4303
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004304 if (split == 0) {
4305 if (mid <= slot) {
4306 btrfs_set_header_nritems(right, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004307 insert_ptr(trans, root, path, &disk_key, right->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02004308 path->slots[1] + 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004309 btrfs_tree_unlock(path->nodes[0]);
4310 free_extent_buffer(path->nodes[0]);
4311 path->nodes[0] = right;
4312 path->slots[0] = 0;
4313 path->slots[1] += 1;
4314 } else {
4315 btrfs_set_header_nritems(right, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004316 insert_ptr(trans, root, path, &disk_key, right->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02004317 path->slots[1], 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004318 btrfs_tree_unlock(path->nodes[0]);
4319 free_extent_buffer(path->nodes[0]);
4320 path->nodes[0] = right;
4321 path->slots[0] = 0;
Jeff Mahoney143bede2012-03-01 14:56:26 +01004322 if (path->slots[1] == 0)
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00004323 fixup_low_keys(root, path, &disk_key, 1);
Chris Mason44871b12009-03-13 10:04:31 -04004324 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004325 btrfs_mark_buffer_dirty(right);
4326 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04004327 }
4328
Jeff Mahoney143bede2012-03-01 14:56:26 +01004329 copy_for_split(trans, root, path, l, right, slot, mid, nritems);
Chris Mason44871b12009-03-13 10:04:31 -04004330
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004331 if (split == 2) {
Chris Masoncc0c5532007-10-25 15:42:57 -04004332 BUG_ON(num_doubles != 0);
4333 num_doubles++;
4334 goto again;
Chris Mason3326d1b2007-10-15 16:18:25 -04004335 }
Chris Mason44871b12009-03-13 10:04:31 -04004336
Jeff Mahoney143bede2012-03-01 14:56:26 +01004337 return 0;
Chris Mason99d8f832010-07-07 10:51:48 -04004338
4339push_for_double:
4340 push_for_double_split(trans, root, path, data_size);
4341 tried_avoid_double = 1;
4342 if (btrfs_leaf_free_space(root, path->nodes[0]) >= data_size)
4343 return 0;
4344 goto again;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004345}
4346
Yan, Zhengad48fd752009-11-12 09:33:58 +00004347static noinline int setup_leaf_for_split(struct btrfs_trans_handle *trans,
4348 struct btrfs_root *root,
4349 struct btrfs_path *path, int ins_len)
Chris Mason459931e2008-12-10 09:10:46 -05004350{
Yan, Zhengad48fd752009-11-12 09:33:58 +00004351 struct btrfs_key key;
Chris Mason459931e2008-12-10 09:10:46 -05004352 struct extent_buffer *leaf;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004353 struct btrfs_file_extent_item *fi;
4354 u64 extent_len = 0;
4355 u32 item_size;
4356 int ret;
Chris Mason459931e2008-12-10 09:10:46 -05004357
4358 leaf = path->nodes[0];
Yan, Zhengad48fd752009-11-12 09:33:58 +00004359 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4360
4361 BUG_ON(key.type != BTRFS_EXTENT_DATA_KEY &&
4362 key.type != BTRFS_EXTENT_CSUM_KEY);
4363
4364 if (btrfs_leaf_free_space(root, leaf) >= ins_len)
4365 return 0;
Chris Mason459931e2008-12-10 09:10:46 -05004366
4367 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004368 if (key.type == BTRFS_EXTENT_DATA_KEY) {
4369 fi = btrfs_item_ptr(leaf, path->slots[0],
4370 struct btrfs_file_extent_item);
4371 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
4372 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004373 btrfs_release_path(path);
Chris Mason459931e2008-12-10 09:10:46 -05004374
Chris Mason459931e2008-12-10 09:10:46 -05004375 path->keep_locks = 1;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004376 path->search_for_split = 1;
4377 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Chris Mason459931e2008-12-10 09:10:46 -05004378 path->search_for_split = 0;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004379 if (ret < 0)
4380 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004381
Yan, Zhengad48fd752009-11-12 09:33:58 +00004382 ret = -EAGAIN;
4383 leaf = path->nodes[0];
Chris Mason459931e2008-12-10 09:10:46 -05004384 /* if our item isn't there or got smaller, return now */
Yan, Zhengad48fd752009-11-12 09:33:58 +00004385 if (ret > 0 || item_size != btrfs_item_size_nr(leaf, path->slots[0]))
4386 goto err;
4387
Chris Mason109f6ae2010-04-02 09:20:18 -04004388 /* the leaf has changed, it now has room. return now */
4389 if (btrfs_leaf_free_space(root, path->nodes[0]) >= ins_len)
4390 goto err;
4391
Yan, Zhengad48fd752009-11-12 09:33:58 +00004392 if (key.type == BTRFS_EXTENT_DATA_KEY) {
4393 fi = btrfs_item_ptr(leaf, path->slots[0],
4394 struct btrfs_file_extent_item);
4395 if (extent_len != btrfs_file_extent_num_bytes(leaf, fi))
4396 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004397 }
4398
Chris Masonb9473432009-03-13 11:00:37 -04004399 btrfs_set_path_blocking(path);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004400 ret = split_leaf(trans, root, &key, path, ins_len, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004401 if (ret)
4402 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004403
Yan, Zhengad48fd752009-11-12 09:33:58 +00004404 path->keep_locks = 0;
Chris Masonb9473432009-03-13 11:00:37 -04004405 btrfs_unlock_up_safe(path, 1);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004406 return 0;
4407err:
4408 path->keep_locks = 0;
4409 return ret;
4410}
4411
4412static noinline int split_item(struct btrfs_trans_handle *trans,
4413 struct btrfs_root *root,
4414 struct btrfs_path *path,
4415 struct btrfs_key *new_key,
4416 unsigned long split_offset)
4417{
4418 struct extent_buffer *leaf;
4419 struct btrfs_item *item;
4420 struct btrfs_item *new_item;
4421 int slot;
4422 char *buf;
4423 u32 nritems;
4424 u32 item_size;
4425 u32 orig_offset;
4426 struct btrfs_disk_key disk_key;
4427
Chris Masonb9473432009-03-13 11:00:37 -04004428 leaf = path->nodes[0];
4429 BUG_ON(btrfs_leaf_free_space(root, leaf) < sizeof(struct btrfs_item));
4430
Chris Masonb4ce94d2009-02-04 09:25:08 -05004431 btrfs_set_path_blocking(path);
4432
Ross Kirkdd3cc162013-09-16 15:58:09 +01004433 item = btrfs_item_nr(path->slots[0]);
Chris Mason459931e2008-12-10 09:10:46 -05004434 orig_offset = btrfs_item_offset(leaf, item);
4435 item_size = btrfs_item_size(leaf, item);
4436
Chris Mason459931e2008-12-10 09:10:46 -05004437 buf = kmalloc(item_size, GFP_NOFS);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004438 if (!buf)
4439 return -ENOMEM;
4440
Chris Mason459931e2008-12-10 09:10:46 -05004441 read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf,
4442 path->slots[0]), item_size);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004443
Chris Mason459931e2008-12-10 09:10:46 -05004444 slot = path->slots[0] + 1;
Chris Mason459931e2008-12-10 09:10:46 -05004445 nritems = btrfs_header_nritems(leaf);
Chris Mason459931e2008-12-10 09:10:46 -05004446 if (slot != nritems) {
4447 /* shift the items */
4448 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1),
Yan, Zhengad48fd752009-11-12 09:33:58 +00004449 btrfs_item_nr_offset(slot),
4450 (nritems - slot) * sizeof(struct btrfs_item));
Chris Mason459931e2008-12-10 09:10:46 -05004451 }
4452
4453 btrfs_cpu_key_to_disk(&disk_key, new_key);
4454 btrfs_set_item_key(leaf, &disk_key, slot);
4455
Ross Kirkdd3cc162013-09-16 15:58:09 +01004456 new_item = btrfs_item_nr(slot);
Chris Mason459931e2008-12-10 09:10:46 -05004457
4458 btrfs_set_item_offset(leaf, new_item, orig_offset);
4459 btrfs_set_item_size(leaf, new_item, item_size - split_offset);
4460
4461 btrfs_set_item_offset(leaf, item,
4462 orig_offset + item_size - split_offset);
4463 btrfs_set_item_size(leaf, item, split_offset);
4464
4465 btrfs_set_header_nritems(leaf, nritems + 1);
4466
4467 /* write the data for the start of the original item */
4468 write_extent_buffer(leaf, buf,
4469 btrfs_item_ptr_offset(leaf, path->slots[0]),
4470 split_offset);
4471
4472 /* write the data for the new item */
4473 write_extent_buffer(leaf, buf + split_offset,
4474 btrfs_item_ptr_offset(leaf, slot),
4475 item_size - split_offset);
4476 btrfs_mark_buffer_dirty(leaf);
4477
Yan, Zhengad48fd752009-11-12 09:33:58 +00004478 BUG_ON(btrfs_leaf_free_space(root, leaf) < 0);
Chris Mason459931e2008-12-10 09:10:46 -05004479 kfree(buf);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004480 return 0;
4481}
4482
4483/*
4484 * This function splits a single item into two items,
4485 * giving 'new_key' to the new item and splitting the
4486 * old one at split_offset (from the start of the item).
4487 *
4488 * The path may be released by this operation. After
4489 * the split, the path is pointing to the old item. The
4490 * new item is going to be in the same node as the old one.
4491 *
4492 * Note, the item being split must be smaller enough to live alone on
4493 * a tree block with room for one extra struct btrfs_item
4494 *
4495 * This allows us to split the item in place, keeping a lock on the
4496 * leaf the entire time.
4497 */
4498int btrfs_split_item(struct btrfs_trans_handle *trans,
4499 struct btrfs_root *root,
4500 struct btrfs_path *path,
4501 struct btrfs_key *new_key,
4502 unsigned long split_offset)
4503{
4504 int ret;
4505 ret = setup_leaf_for_split(trans, root, path,
4506 sizeof(struct btrfs_item));
4507 if (ret)
4508 return ret;
4509
4510 ret = split_item(trans, root, path, new_key, split_offset);
Chris Mason459931e2008-12-10 09:10:46 -05004511 return ret;
4512}
4513
4514/*
Yan, Zhengad48fd752009-11-12 09:33:58 +00004515 * This function duplicate a item, giving 'new_key' to the new item.
4516 * It guarantees both items live in the same tree leaf and the new item
4517 * is contiguous with the original item.
4518 *
4519 * This allows us to split file extent in place, keeping a lock on the
4520 * leaf the entire time.
4521 */
4522int btrfs_duplicate_item(struct btrfs_trans_handle *trans,
4523 struct btrfs_root *root,
4524 struct btrfs_path *path,
4525 struct btrfs_key *new_key)
4526{
4527 struct extent_buffer *leaf;
4528 int ret;
4529 u32 item_size;
4530
4531 leaf = path->nodes[0];
4532 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
4533 ret = setup_leaf_for_split(trans, root, path,
4534 item_size + sizeof(struct btrfs_item));
4535 if (ret)
4536 return ret;
4537
4538 path->slots[0]++;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004539 setup_items_for_insert(root, path, new_key, &item_size,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004540 item_size, item_size +
4541 sizeof(struct btrfs_item), 1);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004542 leaf = path->nodes[0];
4543 memcpy_extent_buffer(leaf,
4544 btrfs_item_ptr_offset(leaf, path->slots[0]),
4545 btrfs_item_ptr_offset(leaf, path->slots[0] - 1),
4546 item_size);
4547 return 0;
4548}
4549
4550/*
Chris Masond352ac62008-09-29 15:18:18 -04004551 * make the item pointed to by the path smaller. new_size indicates
4552 * how small to make it, and from_end tells us if we just chop bytes
4553 * off the end of the item or if we shift the item to chop bytes off
4554 * the front.
4555 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004556void btrfs_truncate_item(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004557 u32 new_size, int from_end)
Chris Masonb18c6682007-04-17 13:26:50 -04004558{
Chris Masonb18c6682007-04-17 13:26:50 -04004559 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04004560 struct extent_buffer *leaf;
4561 struct btrfs_item *item;
Chris Masonb18c6682007-04-17 13:26:50 -04004562 u32 nritems;
4563 unsigned int data_end;
4564 unsigned int old_data_start;
4565 unsigned int old_size;
4566 unsigned int size_diff;
4567 int i;
Chris Masoncfed81a2012-03-03 07:40:03 -05004568 struct btrfs_map_token token;
4569
4570 btrfs_init_map_token(&token);
Chris Masonb18c6682007-04-17 13:26:50 -04004571
Chris Mason5f39d392007-10-15 16:14:19 -04004572 leaf = path->nodes[0];
Chris Mason179e29e2007-11-01 11:28:41 -04004573 slot = path->slots[0];
4574
4575 old_size = btrfs_item_size_nr(leaf, slot);
4576 if (old_size == new_size)
Jeff Mahoney143bede2012-03-01 14:56:26 +01004577 return;
Chris Masonb18c6682007-04-17 13:26:50 -04004578
Chris Mason5f39d392007-10-15 16:14:19 -04004579 nritems = btrfs_header_nritems(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004580 data_end = leaf_data_end(root, leaf);
4581
Chris Mason5f39d392007-10-15 16:14:19 -04004582 old_data_start = btrfs_item_offset_nr(leaf, slot);
Chris Mason179e29e2007-11-01 11:28:41 -04004583
Chris Masonb18c6682007-04-17 13:26:50 -04004584 size_diff = old_size - new_size;
4585
4586 BUG_ON(slot < 0);
4587 BUG_ON(slot >= nritems);
4588
4589 /*
4590 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4591 */
4592 /* first correct the data pointers */
4593 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004594 u32 ioff;
Ross Kirkdd3cc162013-09-16 15:58:09 +01004595 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04004596
Chris Masoncfed81a2012-03-03 07:40:03 -05004597 ioff = btrfs_token_item_offset(leaf, item, &token);
4598 btrfs_set_token_item_offset(leaf, item,
4599 ioff + size_diff, &token);
Chris Masonb18c6682007-04-17 13:26:50 -04004600 }
Chris Masondb945352007-10-15 16:15:53 -04004601
Chris Masonb18c6682007-04-17 13:26:50 -04004602 /* shift the data */
Chris Mason179e29e2007-11-01 11:28:41 -04004603 if (from_end) {
4604 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
4605 data_end + size_diff, btrfs_leaf_data(leaf) +
4606 data_end, old_data_start + new_size - data_end);
4607 } else {
4608 struct btrfs_disk_key disk_key;
4609 u64 offset;
4610
4611 btrfs_item_key(leaf, &disk_key, slot);
4612
4613 if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) {
4614 unsigned long ptr;
4615 struct btrfs_file_extent_item *fi;
4616
4617 fi = btrfs_item_ptr(leaf, slot,
4618 struct btrfs_file_extent_item);
4619 fi = (struct btrfs_file_extent_item *)(
4620 (unsigned long)fi - size_diff);
4621
4622 if (btrfs_file_extent_type(leaf, fi) ==
4623 BTRFS_FILE_EXTENT_INLINE) {
4624 ptr = btrfs_item_ptr_offset(leaf, slot);
4625 memmove_extent_buffer(leaf, ptr,
Chris Masond3977122009-01-05 21:25:51 -05004626 (unsigned long)fi,
David Sterba7ec20af2014-07-24 17:34:58 +02004627 BTRFS_FILE_EXTENT_INLINE_DATA_START);
Chris Mason179e29e2007-11-01 11:28:41 -04004628 }
4629 }
4630
4631 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
4632 data_end + size_diff, btrfs_leaf_data(leaf) +
4633 data_end, old_data_start - data_end);
4634
4635 offset = btrfs_disk_key_offset(&disk_key);
4636 btrfs_set_disk_key_offset(&disk_key, offset + size_diff);
4637 btrfs_set_item_key(leaf, &disk_key, slot);
4638 if (slot == 0)
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00004639 fixup_low_keys(root, path, &disk_key, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04004640 }
Chris Mason5f39d392007-10-15 16:14:19 -04004641
Ross Kirkdd3cc162013-09-16 15:58:09 +01004642 item = btrfs_item_nr(slot);
Chris Mason5f39d392007-10-15 16:14:19 -04004643 btrfs_set_item_size(leaf, item, new_size);
4644 btrfs_mark_buffer_dirty(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004645
Chris Mason5f39d392007-10-15 16:14:19 -04004646 if (btrfs_leaf_free_space(root, leaf) < 0) {
4647 btrfs_print_leaf(root, leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004648 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004649 }
Chris Masonb18c6682007-04-17 13:26:50 -04004650}
4651
Chris Masond352ac62008-09-29 15:18:18 -04004652/*
Stefan Behrens8f69dbd2013-05-07 10:23:30 +00004653 * make the item pointed to by the path bigger, data_size is the added size.
Chris Masond352ac62008-09-29 15:18:18 -04004654 */
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00004655void btrfs_extend_item(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004656 u32 data_size)
Chris Mason6567e832007-04-16 09:22:45 -04004657{
Chris Mason6567e832007-04-16 09:22:45 -04004658 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04004659 struct extent_buffer *leaf;
4660 struct btrfs_item *item;
Chris Mason6567e832007-04-16 09:22:45 -04004661 u32 nritems;
4662 unsigned int data_end;
4663 unsigned int old_data;
4664 unsigned int old_size;
4665 int i;
Chris Masoncfed81a2012-03-03 07:40:03 -05004666 struct btrfs_map_token token;
4667
4668 btrfs_init_map_token(&token);
Chris Mason6567e832007-04-16 09:22:45 -04004669
Chris Mason5f39d392007-10-15 16:14:19 -04004670 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -04004671
Chris Mason5f39d392007-10-15 16:14:19 -04004672 nritems = btrfs_header_nritems(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004673 data_end = leaf_data_end(root, leaf);
4674
Chris Mason5f39d392007-10-15 16:14:19 -04004675 if (btrfs_leaf_free_space(root, leaf) < data_size) {
4676 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004677 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004678 }
Chris Mason6567e832007-04-16 09:22:45 -04004679 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04004680 old_data = btrfs_item_end_nr(leaf, slot);
Chris Mason6567e832007-04-16 09:22:45 -04004681
4682 BUG_ON(slot < 0);
Chris Mason3326d1b2007-10-15 16:18:25 -04004683 if (slot >= nritems) {
4684 btrfs_print_leaf(root, leaf);
Frank Holtonefe120a2013-12-20 11:37:06 -05004685 btrfs_crit(root->fs_info, "slot %d too large, nritems %d",
Chris Masond3977122009-01-05 21:25:51 -05004686 slot, nritems);
Chris Mason3326d1b2007-10-15 16:18:25 -04004687 BUG_ON(1);
4688 }
Chris Mason6567e832007-04-16 09:22:45 -04004689
4690 /*
4691 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4692 */
4693 /* first correct the data pointers */
4694 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004695 u32 ioff;
Ross Kirkdd3cc162013-09-16 15:58:09 +01004696 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04004697
Chris Masoncfed81a2012-03-03 07:40:03 -05004698 ioff = btrfs_token_item_offset(leaf, item, &token);
4699 btrfs_set_token_item_offset(leaf, item,
4700 ioff - data_size, &token);
Chris Mason6567e832007-04-16 09:22:45 -04004701 }
Chris Mason5f39d392007-10-15 16:14:19 -04004702
Chris Mason6567e832007-04-16 09:22:45 -04004703 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04004704 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason6567e832007-04-16 09:22:45 -04004705 data_end - data_size, btrfs_leaf_data(leaf) +
4706 data_end, old_data - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04004707
Chris Mason6567e832007-04-16 09:22:45 -04004708 data_end = old_data;
Chris Mason5f39d392007-10-15 16:14:19 -04004709 old_size = btrfs_item_size_nr(leaf, slot);
Ross Kirkdd3cc162013-09-16 15:58:09 +01004710 item = btrfs_item_nr(slot);
Chris Mason5f39d392007-10-15 16:14:19 -04004711 btrfs_set_item_size(leaf, item, old_size + data_size);
4712 btrfs_mark_buffer_dirty(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004713
Chris Mason5f39d392007-10-15 16:14:19 -04004714 if (btrfs_leaf_free_space(root, leaf) < 0) {
4715 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004716 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004717 }
Chris Mason6567e832007-04-16 09:22:45 -04004718}
4719
Chris Mason74123bd2007-02-02 11:05:29 -05004720/*
Chris Mason44871b12009-03-13 10:04:31 -04004721 * this is a helper for btrfs_insert_empty_items, the main goal here is
4722 * to save stack depth by doing the bulk of the work in a function
4723 * that doesn't call btrfs_search_slot
Chris Mason74123bd2007-02-02 11:05:29 -05004724 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004725void setup_items_for_insert(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004726 struct btrfs_key *cpu_key, u32 *data_size,
4727 u32 total_data, u32 total_size, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004728{
Chris Mason5f39d392007-10-15 16:14:19 -04004729 struct btrfs_item *item;
Chris Mason9c583092008-01-29 15:15:18 -05004730 int i;
Chris Mason7518a232007-03-12 12:01:18 -04004731 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004732 unsigned int data_end;
Chris Masone2fa7222007-03-12 16:22:34 -04004733 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04004734 struct extent_buffer *leaf;
4735 int slot;
Chris Masoncfed81a2012-03-03 07:40:03 -05004736 struct btrfs_map_token token;
4737
Filipe Manana24cdc842014-07-28 19:34:35 +01004738 if (path->slots[0] == 0) {
4739 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
4740 fixup_low_keys(root, path, &disk_key, 1);
4741 }
4742 btrfs_unlock_up_safe(path, 1);
4743
Chris Masoncfed81a2012-03-03 07:40:03 -05004744 btrfs_init_map_token(&token);
Chris Masone2fa7222007-03-12 16:22:34 -04004745
Chris Mason5f39d392007-10-15 16:14:19 -04004746 leaf = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04004747 slot = path->slots[0];
Chris Mason74123bd2007-02-02 11:05:29 -05004748
Chris Mason5f39d392007-10-15 16:14:19 -04004749 nritems = btrfs_header_nritems(leaf);
Chris Mason123abc82007-03-14 14:14:43 -04004750 data_end = leaf_data_end(root, leaf);
Chris Masoneb60cea2007-02-02 09:18:22 -05004751
Chris Masonf25956c2008-09-12 15:32:53 -04004752 if (btrfs_leaf_free_space(root, leaf) < total_size) {
Chris Mason3326d1b2007-10-15 16:18:25 -04004753 btrfs_print_leaf(root, leaf);
Frank Holtonefe120a2013-12-20 11:37:06 -05004754 btrfs_crit(root->fs_info, "not enough freespace need %u have %d",
Chris Mason9c583092008-01-29 15:15:18 -05004755 total_size, btrfs_leaf_free_space(root, leaf));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004756 BUG();
Chris Masond4dbff92007-04-04 14:08:15 -04004757 }
Chris Mason5f39d392007-10-15 16:14:19 -04004758
Chris Masonbe0e5c02007-01-26 15:51:26 -05004759 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04004760 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004761
Chris Mason5f39d392007-10-15 16:14:19 -04004762 if (old_data < data_end) {
4763 btrfs_print_leaf(root, leaf);
Frank Holtonefe120a2013-12-20 11:37:06 -05004764 btrfs_crit(root->fs_info, "slot %d old_data %d data_end %d",
Chris Mason5f39d392007-10-15 16:14:19 -04004765 slot, old_data, data_end);
4766 BUG_ON(1);
4767 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004768 /*
4769 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4770 */
4771 /* first correct the data pointers */
Chris Mason0783fcf2007-03-12 20:12:07 -04004772 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004773 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04004774
Ross Kirkdd3cc162013-09-16 15:58:09 +01004775 item = btrfs_item_nr( i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004776 ioff = btrfs_token_item_offset(leaf, item, &token);
4777 btrfs_set_token_item_offset(leaf, item,
4778 ioff - total_data, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004779 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004780 /* shift the items */
Chris Mason9c583092008-01-29 15:15:18 -05004781 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
Chris Mason5f39d392007-10-15 16:14:19 -04004782 btrfs_item_nr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04004783 (nritems - slot) * sizeof(struct btrfs_item));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004784
4785 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04004786 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason9c583092008-01-29 15:15:18 -05004787 data_end - total_data, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04004788 data_end, old_data - data_end);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004789 data_end = old_data;
4790 }
Chris Mason5f39d392007-10-15 16:14:19 -04004791
Chris Mason62e27492007-03-15 12:56:47 -04004792 /* setup the item for the new data */
Chris Mason9c583092008-01-29 15:15:18 -05004793 for (i = 0; i < nr; i++) {
4794 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
4795 btrfs_set_item_key(leaf, &disk_key, slot + i);
Ross Kirkdd3cc162013-09-16 15:58:09 +01004796 item = btrfs_item_nr(slot + i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004797 btrfs_set_token_item_offset(leaf, item,
4798 data_end - data_size[i], &token);
Chris Mason9c583092008-01-29 15:15:18 -05004799 data_end -= data_size[i];
Chris Masoncfed81a2012-03-03 07:40:03 -05004800 btrfs_set_token_item_size(leaf, item, data_size[i], &token);
Chris Mason9c583092008-01-29 15:15:18 -05004801 }
Chris Mason44871b12009-03-13 10:04:31 -04004802
Chris Mason9c583092008-01-29 15:15:18 -05004803 btrfs_set_header_nritems(leaf, nritems + nr);
Chris Masonb9473432009-03-13 11:00:37 -04004804 btrfs_mark_buffer_dirty(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004805
Chris Mason5f39d392007-10-15 16:14:19 -04004806 if (btrfs_leaf_free_space(root, leaf) < 0) {
4807 btrfs_print_leaf(root, leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004808 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004809 }
Chris Mason44871b12009-03-13 10:04:31 -04004810}
4811
4812/*
4813 * Given a key and some data, insert items into the tree.
4814 * This does all the path init required, making room in the tree if needed.
4815 */
4816int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
4817 struct btrfs_root *root,
4818 struct btrfs_path *path,
4819 struct btrfs_key *cpu_key, u32 *data_size,
4820 int nr)
4821{
Chris Mason44871b12009-03-13 10:04:31 -04004822 int ret = 0;
4823 int slot;
4824 int i;
4825 u32 total_size = 0;
4826 u32 total_data = 0;
4827
4828 for (i = 0; i < nr; i++)
4829 total_data += data_size[i];
4830
4831 total_size = total_data + (nr * sizeof(struct btrfs_item));
4832 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
4833 if (ret == 0)
4834 return -EEXIST;
4835 if (ret < 0)
Jeff Mahoney143bede2012-03-01 14:56:26 +01004836 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04004837
Chris Mason44871b12009-03-13 10:04:31 -04004838 slot = path->slots[0];
4839 BUG_ON(slot < 0);
4840
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004841 setup_items_for_insert(root, path, cpu_key, data_size,
Chris Mason44871b12009-03-13 10:04:31 -04004842 total_data, total_size, nr);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004843 return 0;
Chris Mason62e27492007-03-15 12:56:47 -04004844}
4845
4846/*
4847 * Given a key and some data, insert an item into the tree.
4848 * This does all the path init required, making room in the tree if needed.
4849 */
Chris Masone089f052007-03-16 16:20:31 -04004850int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
4851 *root, struct btrfs_key *cpu_key, void *data, u32
4852 data_size)
Chris Mason62e27492007-03-15 12:56:47 -04004853{
4854 int ret = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -04004855 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004856 struct extent_buffer *leaf;
4857 unsigned long ptr;
Chris Mason62e27492007-03-15 12:56:47 -04004858
Chris Mason2c90e5d2007-04-02 10:50:19 -04004859 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004860 if (!path)
4861 return -ENOMEM;
Chris Mason2c90e5d2007-04-02 10:50:19 -04004862 ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -04004863 if (!ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04004864 leaf = path->nodes[0];
4865 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
4866 write_extent_buffer(leaf, data, ptr, data_size);
4867 btrfs_mark_buffer_dirty(leaf);
Chris Mason62e27492007-03-15 12:56:47 -04004868 }
Chris Mason2c90e5d2007-04-02 10:50:19 -04004869 btrfs_free_path(path);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004870 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004871}
4872
Chris Mason74123bd2007-02-02 11:05:29 -05004873/*
Chris Mason5de08d72007-02-24 06:24:44 -05004874 * delete the pointer from a given node.
Chris Mason74123bd2007-02-02 11:05:29 -05004875 *
Chris Masond352ac62008-09-29 15:18:18 -04004876 * the tree should have been previously balanced so the deletion does not
4877 * empty a node.
Chris Mason74123bd2007-02-02 11:05:29 -05004878 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004879static void del_ptr(struct btrfs_root *root, struct btrfs_path *path,
4880 int level, int slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004881{
Chris Mason5f39d392007-10-15 16:14:19 -04004882 struct extent_buffer *parent = path->nodes[level];
Chris Mason7518a232007-03-12 12:01:18 -04004883 u32 nritems;
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004884 int ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004885
Chris Mason5f39d392007-10-15 16:14:19 -04004886 nritems = btrfs_header_nritems(parent);
Chris Masond3977122009-01-05 21:25:51 -05004887 if (slot != nritems - 1) {
Liu Bo0e411ec2012-10-19 09:50:54 +00004888 if (level)
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004889 tree_mod_log_eb_move(root->fs_info, parent, slot,
4890 slot + 1, nritems - slot - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004891 memmove_extent_buffer(parent,
4892 btrfs_node_key_ptr_offset(slot),
4893 btrfs_node_key_ptr_offset(slot + 1),
Chris Masond6025572007-03-30 14:27:56 -04004894 sizeof(struct btrfs_key_ptr) *
4895 (nritems - slot - 1));
Chris Mason57ba86c2012-12-18 19:35:32 -05004896 } else if (level) {
4897 ret = tree_mod_log_insert_key(root->fs_info, parent, slot,
Josef Bacikc8cc6342013-07-01 16:18:19 -04004898 MOD_LOG_KEY_REMOVE, GFP_NOFS);
Chris Mason57ba86c2012-12-18 19:35:32 -05004899 BUG_ON(ret < 0);
Chris Masonbb803952007-03-01 12:04:21 -05004900 }
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004901
Chris Mason7518a232007-03-12 12:01:18 -04004902 nritems--;
Chris Mason5f39d392007-10-15 16:14:19 -04004903 btrfs_set_header_nritems(parent, nritems);
Chris Mason7518a232007-03-12 12:01:18 -04004904 if (nritems == 0 && parent == root->node) {
Chris Mason5f39d392007-10-15 16:14:19 -04004905 BUG_ON(btrfs_header_level(root->node) != 1);
Chris Masonbb803952007-03-01 12:04:21 -05004906 /* just turn the root into a leaf and break */
Chris Mason5f39d392007-10-15 16:14:19 -04004907 btrfs_set_header_level(root->node, 0);
Chris Masonbb803952007-03-01 12:04:21 -05004908 } else if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004909 struct btrfs_disk_key disk_key;
4910
4911 btrfs_node_key(parent, &disk_key, 0);
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00004912 fixup_low_keys(root, path, &disk_key, level + 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004913 }
Chris Masond6025572007-03-30 14:27:56 -04004914 btrfs_mark_buffer_dirty(parent);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004915}
4916
Chris Mason74123bd2007-02-02 11:05:29 -05004917/*
Chris Mason323ac952008-10-01 19:05:46 -04004918 * a helper function to delete the leaf pointed to by path->slots[1] and
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004919 * path->nodes[1].
Chris Mason323ac952008-10-01 19:05:46 -04004920 *
4921 * This deletes the pointer in path->nodes[1] and frees the leaf
4922 * block extent. zero is returned if it all worked out, < 0 otherwise.
4923 *
4924 * The path must have already been setup for deleting the leaf, including
4925 * all the proper balancing. path->nodes[1] must be locked.
4926 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01004927static noinline void btrfs_del_leaf(struct btrfs_trans_handle *trans,
4928 struct btrfs_root *root,
4929 struct btrfs_path *path,
4930 struct extent_buffer *leaf)
Chris Mason323ac952008-10-01 19:05:46 -04004931{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004932 WARN_ON(btrfs_header_generation(leaf) != trans->transid);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004933 del_ptr(root, path, 1, path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04004934
Chris Mason4d081c42009-02-04 09:31:28 -05004935 /*
4936 * btrfs_free_extent is expensive, we want to make sure we
4937 * aren't holding any locks when we call it
4938 */
4939 btrfs_unlock_up_safe(path, 0);
4940
Yan, Zhengf0486c62010-05-16 10:46:25 -04004941 root_sub_used(root, leaf->len);
4942
Josef Bacik3083ee22012-03-09 16:01:49 -05004943 extent_buffer_get(leaf);
Jan Schmidt5581a512012-05-16 17:04:52 +02004944 btrfs_free_tree_block(trans, root, leaf, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05004945 free_extent_buffer_stale(leaf);
Chris Mason323ac952008-10-01 19:05:46 -04004946}
4947/*
Chris Mason74123bd2007-02-02 11:05:29 -05004948 * delete the item at the leaf level in path. If that empties
4949 * the leaf, remove it from the tree
4950 */
Chris Mason85e21ba2008-01-29 15:11:36 -05004951int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
4952 struct btrfs_path *path, int slot, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004953{
Chris Mason5f39d392007-10-15 16:14:19 -04004954 struct extent_buffer *leaf;
4955 struct btrfs_item *item;
Chris Mason85e21ba2008-01-29 15:11:36 -05004956 int last_off;
4957 int dsize = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05004958 int ret = 0;
4959 int wret;
Chris Mason85e21ba2008-01-29 15:11:36 -05004960 int i;
Chris Mason7518a232007-03-12 12:01:18 -04004961 u32 nritems;
Chris Masoncfed81a2012-03-03 07:40:03 -05004962 struct btrfs_map_token token;
4963
4964 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004965
Chris Mason5f39d392007-10-15 16:14:19 -04004966 leaf = path->nodes[0];
Chris Mason85e21ba2008-01-29 15:11:36 -05004967 last_off = btrfs_item_offset_nr(leaf, slot + nr - 1);
4968
4969 for (i = 0; i < nr; i++)
4970 dsize += btrfs_item_size_nr(leaf, slot + i);
4971
Chris Mason5f39d392007-10-15 16:14:19 -04004972 nritems = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004973
Chris Mason85e21ba2008-01-29 15:11:36 -05004974 if (slot + nr != nritems) {
Chris Mason123abc82007-03-14 14:14:43 -04004975 int data_end = leaf_data_end(root, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04004976
4977 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04004978 data_end + dsize,
4979 btrfs_leaf_data(leaf) + data_end,
Chris Mason85e21ba2008-01-29 15:11:36 -05004980 last_off - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04004981
Chris Mason85e21ba2008-01-29 15:11:36 -05004982 for (i = slot + nr; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004983 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04004984
Ross Kirkdd3cc162013-09-16 15:58:09 +01004985 item = btrfs_item_nr(i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004986 ioff = btrfs_token_item_offset(leaf, item, &token);
4987 btrfs_set_token_item_offset(leaf, item,
4988 ioff + dsize, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004989 }
Chris Masondb945352007-10-15 16:15:53 -04004990
Chris Mason5f39d392007-10-15 16:14:19 -04004991 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
Chris Mason85e21ba2008-01-29 15:11:36 -05004992 btrfs_item_nr_offset(slot + nr),
Chris Masond6025572007-03-30 14:27:56 -04004993 sizeof(struct btrfs_item) *
Chris Mason85e21ba2008-01-29 15:11:36 -05004994 (nritems - slot - nr));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004995 }
Chris Mason85e21ba2008-01-29 15:11:36 -05004996 btrfs_set_header_nritems(leaf, nritems - nr);
4997 nritems -= nr;
Chris Mason5f39d392007-10-15 16:14:19 -04004998
Chris Mason74123bd2007-02-02 11:05:29 -05004999 /* delete the leaf if we've emptied it */
Chris Mason7518a232007-03-12 12:01:18 -04005000 if (nritems == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005001 if (leaf == root->node) {
5002 btrfs_set_header_level(leaf, 0);
Chris Mason9a8dd152007-02-23 08:38:36 -05005003 } else {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005004 btrfs_set_path_blocking(path);
5005 clean_tree_block(trans, root, leaf);
Jeff Mahoney143bede2012-03-01 14:56:26 +01005006 btrfs_del_leaf(trans, root, path, leaf);
Chris Mason9a8dd152007-02-23 08:38:36 -05005007 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05005008 } else {
Chris Mason7518a232007-03-12 12:01:18 -04005009 int used = leaf_space_used(leaf, 0, nritems);
Chris Masonaa5d6be2007-02-28 16:35:06 -05005010 if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005011 struct btrfs_disk_key disk_key;
5012
5013 btrfs_item_key(leaf, &disk_key, 0);
Tsutomu Itohd6a0a122013-04-16 05:18:02 +00005014 fixup_low_keys(root, path, &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05005015 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05005016
Chris Mason74123bd2007-02-02 11:05:29 -05005017 /* delete the leaf if it is mostly empty */
Yan Zhengd717aa12009-07-24 12:42:46 -04005018 if (used < BTRFS_LEAF_DATA_SIZE(root) / 3) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05005019 /* push_leaf_left fixes the path.
5020 * make sure the path still points to our leaf
5021 * for possible call to del_ptr below
5022 */
Chris Mason4920c9a2007-01-26 16:38:42 -05005023 slot = path->slots[1];
Chris Mason5f39d392007-10-15 16:14:19 -04005024 extent_buffer_get(leaf);
5025
Chris Masonb9473432009-03-13 11:00:37 -04005026 btrfs_set_path_blocking(path);
Chris Mason99d8f832010-07-07 10:51:48 -04005027 wret = push_leaf_left(trans, root, path, 1, 1,
5028 1, (u32)-1);
Chris Mason54aa1f42007-06-22 14:16:25 -04005029 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05005030 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04005031
5032 if (path->nodes[0] == leaf &&
5033 btrfs_header_nritems(leaf)) {
Chris Mason99d8f832010-07-07 10:51:48 -04005034 wret = push_leaf_right(trans, root, path, 1,
5035 1, 1, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04005036 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05005037 ret = wret;
5038 }
Chris Mason5f39d392007-10-15 16:14:19 -04005039
5040 if (btrfs_header_nritems(leaf) == 0) {
Chris Mason323ac952008-10-01 19:05:46 -04005041 path->slots[1] = slot;
Jeff Mahoney143bede2012-03-01 14:56:26 +01005042 btrfs_del_leaf(trans, root, path, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04005043 free_extent_buffer(leaf);
Jeff Mahoney143bede2012-03-01 14:56:26 +01005044 ret = 0;
Chris Mason5de08d72007-02-24 06:24:44 -05005045 } else {
Chris Mason925baed2008-06-25 16:01:30 -04005046 /* if we're still in the path, make sure
5047 * we're dirty. Otherwise, one of the
5048 * push_leaf functions must have already
5049 * dirtied this buffer
5050 */
5051 if (path->nodes[0] == leaf)
5052 btrfs_mark_buffer_dirty(leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04005053 free_extent_buffer(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05005054 }
Chris Masond5719762007-03-23 10:01:08 -04005055 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04005056 btrfs_mark_buffer_dirty(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05005057 }
5058 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05005059 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05005060}
5061
Chris Mason97571fd2007-02-24 13:39:08 -05005062/*
Chris Mason925baed2008-06-25 16:01:30 -04005063 * search the tree again to find a leaf with lesser keys
Chris Mason7bb86312007-12-11 09:25:06 -05005064 * returns 0 if it found something or 1 if there are no lesser leaves.
5065 * returns < 0 on io errors.
Chris Masond352ac62008-09-29 15:18:18 -04005066 *
5067 * This may release the path, and so you may lose any locks held at the
5068 * time you call it.
Chris Mason7bb86312007-12-11 09:25:06 -05005069 */
Josef Bacik16e75492013-10-22 12:18:51 -04005070int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Mason7bb86312007-12-11 09:25:06 -05005071{
Chris Mason925baed2008-06-25 16:01:30 -04005072 struct btrfs_key key;
5073 struct btrfs_disk_key found_key;
5074 int ret;
Chris Mason7bb86312007-12-11 09:25:06 -05005075
Chris Mason925baed2008-06-25 16:01:30 -04005076 btrfs_item_key_to_cpu(path->nodes[0], &key, 0);
Chris Mason7bb86312007-12-11 09:25:06 -05005077
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005078 if (key.offset > 0) {
Chris Mason925baed2008-06-25 16:01:30 -04005079 key.offset--;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005080 } else if (key.type > 0) {
Chris Mason925baed2008-06-25 16:01:30 -04005081 key.type--;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005082 key.offset = (u64)-1;
5083 } else if (key.objectid > 0) {
Chris Mason925baed2008-06-25 16:01:30 -04005084 key.objectid--;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005085 key.type = (u8)-1;
5086 key.offset = (u64)-1;
5087 } else {
Chris Mason925baed2008-06-25 16:01:30 -04005088 return 1;
Filipe David Borba Mananae8b0d7242013-10-15 00:12:27 +01005089 }
Chris Mason7bb86312007-12-11 09:25:06 -05005090
David Sterbab3b4aa72011-04-21 01:20:15 +02005091 btrfs_release_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04005092 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5093 if (ret < 0)
5094 return ret;
5095 btrfs_item_key(path->nodes[0], &found_key, 0);
5096 ret = comp_keys(&found_key, &key);
Filipe Manana337c6f62014-06-09 13:22:13 +01005097 /*
5098 * We might have had an item with the previous key in the tree right
5099 * before we released our path. And after we released our path, that
5100 * item might have been pushed to the first slot (0) of the leaf we
5101 * were holding due to a tree balance. Alternatively, an item with the
5102 * previous key can exist as the only element of a leaf (big fat item).
5103 * Therefore account for these 2 cases, so that our callers (like
5104 * btrfs_previous_item) don't miss an existing item with a key matching
5105 * the previous key we computed above.
5106 */
5107 if (ret <= 0)
Chris Mason925baed2008-06-25 16:01:30 -04005108 return 0;
5109 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05005110}
5111
Chris Mason3f157a22008-06-25 16:01:31 -04005112/*
5113 * A helper function to walk down the tree starting at min_key, and looking
Eric Sandeende78b512013-01-31 18:21:12 +00005114 * for nodes or leaves that are have a minimum transaction id.
5115 * This is used by the btree defrag code, and tree logging
Chris Mason3f157a22008-06-25 16:01:31 -04005116 *
5117 * This does not cow, but it does stuff the starting key it finds back
5118 * into min_key, so you can call btrfs_search_slot with cow=1 on the
5119 * key and get a writable path.
5120 *
5121 * This does lock as it descends, and path->keep_locks should be set
5122 * to 1 by the caller.
5123 *
5124 * This honors path->lowest_level to prevent descent past a given level
5125 * of the tree.
5126 *
Chris Masond352ac62008-09-29 15:18:18 -04005127 * min_trans indicates the oldest transaction that you are interested
5128 * in walking through. Any nodes or leaves older than min_trans are
5129 * skipped over (without reading them).
5130 *
Chris Mason3f157a22008-06-25 16:01:31 -04005131 * returns zero if something useful was found, < 0 on error and 1 if there
5132 * was nothing in the tree that matched the search criteria.
5133 */
5134int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
Eric Sandeende78b512013-01-31 18:21:12 +00005135 struct btrfs_path *path,
Chris Mason3f157a22008-06-25 16:01:31 -04005136 u64 min_trans)
5137{
5138 struct extent_buffer *cur;
5139 struct btrfs_key found_key;
5140 int slot;
Yan96524802008-07-24 12:19:49 -04005141 int sret;
Chris Mason3f157a22008-06-25 16:01:31 -04005142 u32 nritems;
5143 int level;
5144 int ret = 1;
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005145 int keep_locks = path->keep_locks;
Chris Mason3f157a22008-06-25 16:01:31 -04005146
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005147 path->keep_locks = 1;
Chris Mason3f157a22008-06-25 16:01:31 -04005148again:
Chris Masonbd681512011-07-16 15:23:14 -04005149 cur = btrfs_read_lock_root_node(root);
Chris Mason3f157a22008-06-25 16:01:31 -04005150 level = btrfs_header_level(cur);
Chris Masone02119d2008-09-05 16:13:11 -04005151 WARN_ON(path->nodes[level]);
Chris Mason3f157a22008-06-25 16:01:31 -04005152 path->nodes[level] = cur;
Chris Masonbd681512011-07-16 15:23:14 -04005153 path->locks[level] = BTRFS_READ_LOCK;
Chris Mason3f157a22008-06-25 16:01:31 -04005154
5155 if (btrfs_header_generation(cur) < min_trans) {
5156 ret = 1;
5157 goto out;
5158 }
Chris Masond3977122009-01-05 21:25:51 -05005159 while (1) {
Chris Mason3f157a22008-06-25 16:01:31 -04005160 nritems = btrfs_header_nritems(cur);
5161 level = btrfs_header_level(cur);
Yan96524802008-07-24 12:19:49 -04005162 sret = bin_search(cur, min_key, level, &slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005163
Chris Mason323ac952008-10-01 19:05:46 -04005164 /* at the lowest level, we're done, setup the path and exit */
5165 if (level == path->lowest_level) {
Chris Masone02119d2008-09-05 16:13:11 -04005166 if (slot >= nritems)
5167 goto find_next_key;
Chris Mason3f157a22008-06-25 16:01:31 -04005168 ret = 0;
5169 path->slots[level] = slot;
5170 btrfs_item_key_to_cpu(cur, &found_key, slot);
5171 goto out;
5172 }
Yan96524802008-07-24 12:19:49 -04005173 if (sret && slot > 0)
5174 slot--;
Chris Mason3f157a22008-06-25 16:01:31 -04005175 /*
Eric Sandeende78b512013-01-31 18:21:12 +00005176 * check this node pointer against the min_trans parameters.
5177 * If it is too old, old, skip to the next one.
Chris Mason3f157a22008-06-25 16:01:31 -04005178 */
Chris Masond3977122009-01-05 21:25:51 -05005179 while (slot < nritems) {
Chris Mason3f157a22008-06-25 16:01:31 -04005180 u64 gen;
Chris Masone02119d2008-09-05 16:13:11 -04005181
Chris Mason3f157a22008-06-25 16:01:31 -04005182 gen = btrfs_node_ptr_generation(cur, slot);
5183 if (gen < min_trans) {
5184 slot++;
5185 continue;
5186 }
Eric Sandeende78b512013-01-31 18:21:12 +00005187 break;
Chris Mason3f157a22008-06-25 16:01:31 -04005188 }
Chris Masone02119d2008-09-05 16:13:11 -04005189find_next_key:
Chris Mason3f157a22008-06-25 16:01:31 -04005190 /*
5191 * we didn't find a candidate key in this node, walk forward
5192 * and find another one
5193 */
5194 if (slot >= nritems) {
Chris Masone02119d2008-09-05 16:13:11 -04005195 path->slots[level] = slot;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005196 btrfs_set_path_blocking(path);
Chris Masone02119d2008-09-05 16:13:11 -04005197 sret = btrfs_find_next_key(root, path, min_key, level,
Eric Sandeende78b512013-01-31 18:21:12 +00005198 min_trans);
Chris Masone02119d2008-09-05 16:13:11 -04005199 if (sret == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005200 btrfs_release_path(path);
Chris Mason3f157a22008-06-25 16:01:31 -04005201 goto again;
5202 } else {
5203 goto out;
5204 }
5205 }
5206 /* save our key for returning back */
5207 btrfs_node_key_to_cpu(cur, &found_key, slot);
5208 path->slots[level] = slot;
5209 if (level == path->lowest_level) {
5210 ret = 0;
Chris Mason3f157a22008-06-25 16:01:31 -04005211 goto out;
5212 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05005213 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04005214 cur = read_node_slot(root, cur, slot);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005215 BUG_ON(!cur); /* -ENOMEM */
Chris Mason3f157a22008-06-25 16:01:31 -04005216
Chris Masonbd681512011-07-16 15:23:14 -04005217 btrfs_tree_read_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05005218
Chris Masonbd681512011-07-16 15:23:14 -04005219 path->locks[level - 1] = BTRFS_READ_LOCK;
Chris Mason3f157a22008-06-25 16:01:31 -04005220 path->nodes[level - 1] = cur;
Chris Masonf7c79f32012-03-19 15:54:38 -04005221 unlock_up(path, level, 1, 0, NULL);
Chris Masonbd681512011-07-16 15:23:14 -04005222 btrfs_clear_path_blocking(path, NULL, 0);
Chris Mason3f157a22008-06-25 16:01:31 -04005223 }
5224out:
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005225 path->keep_locks = keep_locks;
5226 if (ret == 0) {
5227 btrfs_unlock_up_safe(path, path->lowest_level + 1);
5228 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04005229 memcpy(min_key, &found_key, sizeof(found_key));
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005230 }
Chris Mason3f157a22008-06-25 16:01:31 -04005231 return ret;
5232}
5233
Alexander Block70698302012-06-05 21:07:48 +02005234static void tree_move_down(struct btrfs_root *root,
5235 struct btrfs_path *path,
5236 int *level, int root_level)
5237{
Chris Mason74dd17f2012-08-07 16:25:13 -04005238 BUG_ON(*level == 0);
Alexander Block70698302012-06-05 21:07:48 +02005239 path->nodes[*level - 1] = read_node_slot(root, path->nodes[*level],
5240 path->slots[*level]);
5241 path->slots[*level - 1] = 0;
5242 (*level)--;
5243}
5244
5245static int tree_move_next_or_upnext(struct btrfs_root *root,
5246 struct btrfs_path *path,
5247 int *level, int root_level)
5248{
5249 int ret = 0;
5250 int nritems;
5251 nritems = btrfs_header_nritems(path->nodes[*level]);
5252
5253 path->slots[*level]++;
5254
Chris Mason74dd17f2012-08-07 16:25:13 -04005255 while (path->slots[*level] >= nritems) {
Alexander Block70698302012-06-05 21:07:48 +02005256 if (*level == root_level)
5257 return -1;
5258
5259 /* move upnext */
5260 path->slots[*level] = 0;
5261 free_extent_buffer(path->nodes[*level]);
5262 path->nodes[*level] = NULL;
5263 (*level)++;
5264 path->slots[*level]++;
5265
5266 nritems = btrfs_header_nritems(path->nodes[*level]);
5267 ret = 1;
5268 }
5269 return ret;
5270}
5271
5272/*
5273 * Returns 1 if it had to move up and next. 0 is returned if it moved only next
5274 * or down.
5275 */
5276static int tree_advance(struct btrfs_root *root,
5277 struct btrfs_path *path,
5278 int *level, int root_level,
5279 int allow_down,
5280 struct btrfs_key *key)
5281{
5282 int ret;
5283
5284 if (*level == 0 || !allow_down) {
5285 ret = tree_move_next_or_upnext(root, path, level, root_level);
5286 } else {
5287 tree_move_down(root, path, level, root_level);
5288 ret = 0;
5289 }
5290 if (ret >= 0) {
5291 if (*level == 0)
5292 btrfs_item_key_to_cpu(path->nodes[*level], key,
5293 path->slots[*level]);
5294 else
5295 btrfs_node_key_to_cpu(path->nodes[*level], key,
5296 path->slots[*level]);
5297 }
5298 return ret;
5299}
5300
5301static int tree_compare_item(struct btrfs_root *left_root,
5302 struct btrfs_path *left_path,
5303 struct btrfs_path *right_path,
5304 char *tmp_buf)
5305{
5306 int cmp;
5307 int len1, len2;
5308 unsigned long off1, off2;
5309
5310 len1 = btrfs_item_size_nr(left_path->nodes[0], left_path->slots[0]);
5311 len2 = btrfs_item_size_nr(right_path->nodes[0], right_path->slots[0]);
5312 if (len1 != len2)
5313 return 1;
5314
5315 off1 = btrfs_item_ptr_offset(left_path->nodes[0], left_path->slots[0]);
5316 off2 = btrfs_item_ptr_offset(right_path->nodes[0],
5317 right_path->slots[0]);
5318
5319 read_extent_buffer(left_path->nodes[0], tmp_buf, off1, len1);
5320
5321 cmp = memcmp_extent_buffer(right_path->nodes[0], tmp_buf, off2, len1);
5322 if (cmp)
5323 return 1;
5324 return 0;
5325}
5326
5327#define ADVANCE 1
5328#define ADVANCE_ONLY_NEXT -1
5329
5330/*
5331 * This function compares two trees and calls the provided callback for
5332 * every changed/new/deleted item it finds.
5333 * If shared tree blocks are encountered, whole subtrees are skipped, making
5334 * the compare pretty fast on snapshotted subvolumes.
5335 *
5336 * This currently works on commit roots only. As commit roots are read only,
5337 * we don't do any locking. The commit roots are protected with transactions.
5338 * Transactions are ended and rejoined when a commit is tried in between.
5339 *
5340 * This function checks for modifications done to the trees while comparing.
5341 * If it detects a change, it aborts immediately.
5342 */
5343int btrfs_compare_trees(struct btrfs_root *left_root,
5344 struct btrfs_root *right_root,
5345 btrfs_changed_cb_t changed_cb, void *ctx)
5346{
5347 int ret;
5348 int cmp;
Alexander Block70698302012-06-05 21:07:48 +02005349 struct btrfs_path *left_path = NULL;
5350 struct btrfs_path *right_path = NULL;
5351 struct btrfs_key left_key;
5352 struct btrfs_key right_key;
5353 char *tmp_buf = NULL;
5354 int left_root_level;
5355 int right_root_level;
5356 int left_level;
5357 int right_level;
5358 int left_end_reached;
5359 int right_end_reached;
5360 int advance_left;
5361 int advance_right;
5362 u64 left_blockptr;
5363 u64 right_blockptr;
Filipe Manana6baa4292014-02-20 21:15:25 +00005364 u64 left_gen;
5365 u64 right_gen;
Alexander Block70698302012-06-05 21:07:48 +02005366
5367 left_path = btrfs_alloc_path();
5368 if (!left_path) {
5369 ret = -ENOMEM;
5370 goto out;
5371 }
5372 right_path = btrfs_alloc_path();
5373 if (!right_path) {
5374 ret = -ENOMEM;
5375 goto out;
5376 }
5377
David Sterba707e8a02014-06-04 19:22:26 +02005378 tmp_buf = kmalloc(left_root->nodesize, GFP_NOFS);
Alexander Block70698302012-06-05 21:07:48 +02005379 if (!tmp_buf) {
5380 ret = -ENOMEM;
5381 goto out;
5382 }
5383
5384 left_path->search_commit_root = 1;
5385 left_path->skip_locking = 1;
5386 right_path->search_commit_root = 1;
5387 right_path->skip_locking = 1;
5388
Alexander Block70698302012-06-05 21:07:48 +02005389 /*
5390 * Strategy: Go to the first items of both trees. Then do
5391 *
5392 * If both trees are at level 0
5393 * Compare keys of current items
5394 * If left < right treat left item as new, advance left tree
5395 * and repeat
5396 * If left > right treat right item as deleted, advance right tree
5397 * and repeat
5398 * If left == right do deep compare of items, treat as changed if
5399 * needed, advance both trees and repeat
5400 * If both trees are at the same level but not at level 0
5401 * Compare keys of current nodes/leafs
5402 * If left < right advance left tree and repeat
5403 * If left > right advance right tree and repeat
5404 * If left == right compare blockptrs of the next nodes/leafs
5405 * If they match advance both trees but stay at the same level
5406 * and repeat
5407 * If they don't match advance both trees while allowing to go
5408 * deeper and repeat
5409 * If tree levels are different
5410 * Advance the tree that needs it and repeat
5411 *
5412 * Advancing a tree means:
5413 * If we are at level 0, try to go to the next slot. If that's not
5414 * possible, go one level up and repeat. Stop when we found a level
5415 * where we could go to the next slot. We may at this point be on a
5416 * node or a leaf.
5417 *
5418 * If we are not at level 0 and not on shared tree blocks, go one
5419 * level deeper.
5420 *
5421 * If we are not at level 0 and on shared tree blocks, go one slot to
5422 * the right if possible or go up and right.
5423 */
5424
Josef Bacik3f8a18c2014-03-28 17:16:01 -04005425 down_read(&left_root->fs_info->commit_root_sem);
Alexander Block70698302012-06-05 21:07:48 +02005426 left_level = btrfs_header_level(left_root->commit_root);
5427 left_root_level = left_level;
5428 left_path->nodes[left_level] = left_root->commit_root;
5429 extent_buffer_get(left_path->nodes[left_level]);
5430
5431 right_level = btrfs_header_level(right_root->commit_root);
5432 right_root_level = right_level;
5433 right_path->nodes[right_level] = right_root->commit_root;
5434 extent_buffer_get(right_path->nodes[right_level]);
Josef Bacik3f8a18c2014-03-28 17:16:01 -04005435 up_read(&left_root->fs_info->commit_root_sem);
Alexander Block70698302012-06-05 21:07:48 +02005436
5437 if (left_level == 0)
5438 btrfs_item_key_to_cpu(left_path->nodes[left_level],
5439 &left_key, left_path->slots[left_level]);
5440 else
5441 btrfs_node_key_to_cpu(left_path->nodes[left_level],
5442 &left_key, left_path->slots[left_level]);
5443 if (right_level == 0)
5444 btrfs_item_key_to_cpu(right_path->nodes[right_level],
5445 &right_key, right_path->slots[right_level]);
5446 else
5447 btrfs_node_key_to_cpu(right_path->nodes[right_level],
5448 &right_key, right_path->slots[right_level]);
5449
5450 left_end_reached = right_end_reached = 0;
5451 advance_left = advance_right = 0;
5452
5453 while (1) {
Alexander Block70698302012-06-05 21:07:48 +02005454 if (advance_left && !left_end_reached) {
5455 ret = tree_advance(left_root, left_path, &left_level,
5456 left_root_level,
5457 advance_left != ADVANCE_ONLY_NEXT,
5458 &left_key);
5459 if (ret < 0)
5460 left_end_reached = ADVANCE;
5461 advance_left = 0;
5462 }
5463 if (advance_right && !right_end_reached) {
5464 ret = tree_advance(right_root, right_path, &right_level,
5465 right_root_level,
5466 advance_right != ADVANCE_ONLY_NEXT,
5467 &right_key);
5468 if (ret < 0)
5469 right_end_reached = ADVANCE;
5470 advance_right = 0;
5471 }
5472
5473 if (left_end_reached && right_end_reached) {
5474 ret = 0;
5475 goto out;
5476 } else if (left_end_reached) {
5477 if (right_level == 0) {
5478 ret = changed_cb(left_root, right_root,
5479 left_path, right_path,
5480 &right_key,
5481 BTRFS_COMPARE_TREE_DELETED,
5482 ctx);
5483 if (ret < 0)
5484 goto out;
5485 }
5486 advance_right = ADVANCE;
5487 continue;
5488 } else if (right_end_reached) {
5489 if (left_level == 0) {
5490 ret = changed_cb(left_root, right_root,
5491 left_path, right_path,
5492 &left_key,
5493 BTRFS_COMPARE_TREE_NEW,
5494 ctx);
5495 if (ret < 0)
5496 goto out;
5497 }
5498 advance_left = ADVANCE;
5499 continue;
5500 }
5501
5502 if (left_level == 0 && right_level == 0) {
5503 cmp = btrfs_comp_cpu_keys(&left_key, &right_key);
5504 if (cmp < 0) {
5505 ret = changed_cb(left_root, right_root,
5506 left_path, right_path,
5507 &left_key,
5508 BTRFS_COMPARE_TREE_NEW,
5509 ctx);
5510 if (ret < 0)
5511 goto out;
5512 advance_left = ADVANCE;
5513 } else if (cmp > 0) {
5514 ret = changed_cb(left_root, right_root,
5515 left_path, right_path,
5516 &right_key,
5517 BTRFS_COMPARE_TREE_DELETED,
5518 ctx);
5519 if (ret < 0)
5520 goto out;
5521 advance_right = ADVANCE;
5522 } else {
Josef Bacikba5e8f22013-08-16 16:52:55 -04005523 enum btrfs_compare_tree_result cmp;
5524
Chris Mason74dd17f2012-08-07 16:25:13 -04005525 WARN_ON(!extent_buffer_uptodate(left_path->nodes[0]));
Alexander Block70698302012-06-05 21:07:48 +02005526 ret = tree_compare_item(left_root, left_path,
5527 right_path, tmp_buf);
Josef Bacikba5e8f22013-08-16 16:52:55 -04005528 if (ret)
5529 cmp = BTRFS_COMPARE_TREE_CHANGED;
5530 else
5531 cmp = BTRFS_COMPARE_TREE_SAME;
5532 ret = changed_cb(left_root, right_root,
5533 left_path, right_path,
5534 &left_key, cmp, ctx);
5535 if (ret < 0)
5536 goto out;
Alexander Block70698302012-06-05 21:07:48 +02005537 advance_left = ADVANCE;
5538 advance_right = ADVANCE;
5539 }
5540 } else if (left_level == right_level) {
5541 cmp = btrfs_comp_cpu_keys(&left_key, &right_key);
5542 if (cmp < 0) {
5543 advance_left = ADVANCE;
5544 } else if (cmp > 0) {
5545 advance_right = ADVANCE;
5546 } else {
5547 left_blockptr = btrfs_node_blockptr(
5548 left_path->nodes[left_level],
5549 left_path->slots[left_level]);
5550 right_blockptr = btrfs_node_blockptr(
5551 right_path->nodes[right_level],
5552 right_path->slots[right_level]);
Filipe Manana6baa4292014-02-20 21:15:25 +00005553 left_gen = btrfs_node_ptr_generation(
5554 left_path->nodes[left_level],
5555 left_path->slots[left_level]);
5556 right_gen = btrfs_node_ptr_generation(
5557 right_path->nodes[right_level],
5558 right_path->slots[right_level]);
5559 if (left_blockptr == right_blockptr &&
5560 left_gen == right_gen) {
Alexander Block70698302012-06-05 21:07:48 +02005561 /*
5562 * As we're on a shared block, don't
5563 * allow to go deeper.
5564 */
5565 advance_left = ADVANCE_ONLY_NEXT;
5566 advance_right = ADVANCE_ONLY_NEXT;
5567 } else {
5568 advance_left = ADVANCE;
5569 advance_right = ADVANCE;
5570 }
5571 }
5572 } else if (left_level < right_level) {
5573 advance_right = ADVANCE;
5574 } else {
5575 advance_left = ADVANCE;
5576 }
5577 }
5578
5579out:
5580 btrfs_free_path(left_path);
5581 btrfs_free_path(right_path);
5582 kfree(tmp_buf);
Alexander Block70698302012-06-05 21:07:48 +02005583 return ret;
5584}
5585
Chris Mason3f157a22008-06-25 16:01:31 -04005586/*
5587 * this is similar to btrfs_next_leaf, but does not try to preserve
5588 * and fixup the path. It looks for and returns the next key in the
Eric Sandeende78b512013-01-31 18:21:12 +00005589 * tree based on the current path and the min_trans parameters.
Chris Mason3f157a22008-06-25 16:01:31 -04005590 *
5591 * 0 is returned if another key is found, < 0 if there are any errors
5592 * and 1 is returned if there are no higher keys in the tree
5593 *
5594 * path->keep_locks should be set to 1 on the search made before
5595 * calling this function.
5596 */
Chris Masone7a84562008-06-25 16:01:31 -04005597int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
Eric Sandeende78b512013-01-31 18:21:12 +00005598 struct btrfs_key *key, int level, u64 min_trans)
Chris Masone7a84562008-06-25 16:01:31 -04005599{
Chris Masone7a84562008-06-25 16:01:31 -04005600 int slot;
5601 struct extent_buffer *c;
5602
Chris Mason934d3752008-12-08 16:43:10 -05005603 WARN_ON(!path->keep_locks);
Chris Masond3977122009-01-05 21:25:51 -05005604 while (level < BTRFS_MAX_LEVEL) {
Chris Masone7a84562008-06-25 16:01:31 -04005605 if (!path->nodes[level])
5606 return 1;
5607
5608 slot = path->slots[level] + 1;
5609 c = path->nodes[level];
Chris Mason3f157a22008-06-25 16:01:31 -04005610next:
Chris Masone7a84562008-06-25 16:01:31 -04005611 if (slot >= btrfs_header_nritems(c)) {
Yan Zheng33c66f42009-07-22 09:59:00 -04005612 int ret;
5613 int orig_lowest;
5614 struct btrfs_key cur_key;
5615 if (level + 1 >= BTRFS_MAX_LEVEL ||
5616 !path->nodes[level + 1])
Chris Masone7a84562008-06-25 16:01:31 -04005617 return 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04005618
5619 if (path->locks[level + 1]) {
5620 level++;
5621 continue;
5622 }
5623
5624 slot = btrfs_header_nritems(c) - 1;
5625 if (level == 0)
5626 btrfs_item_key_to_cpu(c, &cur_key, slot);
5627 else
5628 btrfs_node_key_to_cpu(c, &cur_key, slot);
5629
5630 orig_lowest = path->lowest_level;
David Sterbab3b4aa72011-04-21 01:20:15 +02005631 btrfs_release_path(path);
Yan Zheng33c66f42009-07-22 09:59:00 -04005632 path->lowest_level = level;
5633 ret = btrfs_search_slot(NULL, root, &cur_key, path,
5634 0, 0);
5635 path->lowest_level = orig_lowest;
5636 if (ret < 0)
5637 return ret;
5638
5639 c = path->nodes[level];
5640 slot = path->slots[level];
5641 if (ret == 0)
5642 slot++;
5643 goto next;
Chris Masone7a84562008-06-25 16:01:31 -04005644 }
Yan Zheng33c66f42009-07-22 09:59:00 -04005645
Chris Masone7a84562008-06-25 16:01:31 -04005646 if (level == 0)
5647 btrfs_item_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005648 else {
Chris Mason3f157a22008-06-25 16:01:31 -04005649 u64 gen = btrfs_node_ptr_generation(c, slot);
5650
Chris Mason3f157a22008-06-25 16:01:31 -04005651 if (gen < min_trans) {
5652 slot++;
5653 goto next;
5654 }
Chris Masone7a84562008-06-25 16:01:31 -04005655 btrfs_node_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005656 }
Chris Masone7a84562008-06-25 16:01:31 -04005657 return 0;
5658 }
5659 return 1;
5660}
5661
Chris Mason7bb86312007-12-11 09:25:06 -05005662/*
Chris Mason925baed2008-06-25 16:01:30 -04005663 * search the tree again to find a leaf with greater keys
Chris Mason0f70abe2007-02-28 16:46:22 -05005664 * returns 0 if it found something or 1 if there are no greater leaves.
5665 * returns < 0 on io errors.
Chris Mason97571fd2007-02-24 13:39:08 -05005666 */
Chris Mason234b63a2007-03-13 10:46:10 -04005667int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Masond97e63b2007-02-20 16:40:44 -05005668{
Jan Schmidt3d7806e2012-06-11 08:29:29 +02005669 return btrfs_next_old_leaf(root, path, 0);
5670}
5671
5672int btrfs_next_old_leaf(struct btrfs_root *root, struct btrfs_path *path,
5673 u64 time_seq)
5674{
Chris Masond97e63b2007-02-20 16:40:44 -05005675 int slot;
Chris Mason8e73f272009-04-03 10:14:18 -04005676 int level;
Chris Mason5f39d392007-10-15 16:14:19 -04005677 struct extent_buffer *c;
Chris Mason8e73f272009-04-03 10:14:18 -04005678 struct extent_buffer *next;
Chris Mason925baed2008-06-25 16:01:30 -04005679 struct btrfs_key key;
5680 u32 nritems;
5681 int ret;
Chris Mason8e73f272009-04-03 10:14:18 -04005682 int old_spinning = path->leave_spinning;
Chris Masonbd681512011-07-16 15:23:14 -04005683 int next_rw_lock = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005684
5685 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Masond3977122009-01-05 21:25:51 -05005686 if (nritems == 0)
Chris Mason925baed2008-06-25 16:01:30 -04005687 return 1;
Chris Mason925baed2008-06-25 16:01:30 -04005688
Chris Mason8e73f272009-04-03 10:14:18 -04005689 btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1);
5690again:
5691 level = 1;
5692 next = NULL;
Chris Masonbd681512011-07-16 15:23:14 -04005693 next_rw_lock = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02005694 btrfs_release_path(path);
Chris Mason8e73f272009-04-03 10:14:18 -04005695
Chris Masona2135012008-06-25 16:01:30 -04005696 path->keep_locks = 1;
Chris Mason31533fb2011-07-26 16:01:59 -04005697 path->leave_spinning = 1;
Chris Mason8e73f272009-04-03 10:14:18 -04005698
Jan Schmidt3d7806e2012-06-11 08:29:29 +02005699 if (time_seq)
5700 ret = btrfs_search_old_slot(root, &key, path, time_seq);
5701 else
5702 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason925baed2008-06-25 16:01:30 -04005703 path->keep_locks = 0;
5704
5705 if (ret < 0)
5706 return ret;
5707
Chris Masona2135012008-06-25 16:01:30 -04005708 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Mason168fd7d2008-06-25 16:01:30 -04005709 /*
5710 * by releasing the path above we dropped all our locks. A balance
5711 * could have added more items next to the key that used to be
5712 * at the very end of the block. So, check again here and
5713 * advance the path if there are now more items available.
5714 */
Chris Masona2135012008-06-25 16:01:30 -04005715 if (nritems > 0 && path->slots[0] < nritems - 1) {
Yan Zhenge457afe2009-07-22 09:59:00 -04005716 if (ret == 0)
5717 path->slots[0]++;
Chris Mason8e73f272009-04-03 10:14:18 -04005718 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005719 goto done;
5720 }
Liu Bo0b43e042014-06-09 11:04:49 +08005721 /*
5722 * So the above check misses one case:
5723 * - after releasing the path above, someone has removed the item that
5724 * used to be at the very end of the block, and balance between leafs
5725 * gets another one with bigger key.offset to replace it.
5726 *
5727 * This one should be returned as well, or we can get leaf corruption
5728 * later(esp. in __btrfs_drop_extents()).
5729 *
5730 * And a bit more explanation about this check,
5731 * with ret > 0, the key isn't found, the path points to the slot
5732 * where it should be inserted, so the path->slots[0] item must be the
5733 * bigger one.
5734 */
5735 if (nritems > 0 && ret > 0 && path->slots[0] == nritems - 1) {
5736 ret = 0;
5737 goto done;
5738 }
Chris Masond97e63b2007-02-20 16:40:44 -05005739
Chris Masond3977122009-01-05 21:25:51 -05005740 while (level < BTRFS_MAX_LEVEL) {
Chris Mason8e73f272009-04-03 10:14:18 -04005741 if (!path->nodes[level]) {
5742 ret = 1;
5743 goto done;
5744 }
Chris Mason5f39d392007-10-15 16:14:19 -04005745
Chris Masond97e63b2007-02-20 16:40:44 -05005746 slot = path->slots[level] + 1;
5747 c = path->nodes[level];
Chris Mason5f39d392007-10-15 16:14:19 -04005748 if (slot >= btrfs_header_nritems(c)) {
Chris Masond97e63b2007-02-20 16:40:44 -05005749 level++;
Chris Mason8e73f272009-04-03 10:14:18 -04005750 if (level == BTRFS_MAX_LEVEL) {
5751 ret = 1;
5752 goto done;
5753 }
Chris Masond97e63b2007-02-20 16:40:44 -05005754 continue;
5755 }
Chris Mason5f39d392007-10-15 16:14:19 -04005756
Chris Mason925baed2008-06-25 16:01:30 -04005757 if (next) {
Chris Masonbd681512011-07-16 15:23:14 -04005758 btrfs_tree_unlock_rw(next, next_rw_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04005759 free_extent_buffer(next);
Chris Mason925baed2008-06-25 16:01:30 -04005760 }
Chris Mason5f39d392007-10-15 16:14:19 -04005761
Chris Mason8e73f272009-04-03 10:14:18 -04005762 next = c;
Chris Masonbd681512011-07-16 15:23:14 -04005763 next_rw_lock = path->locks[level];
Chris Mason8e73f272009-04-03 10:14:18 -04005764 ret = read_block_for_search(NULL, root, path, &next, level,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02005765 slot, &key, 0);
Chris Mason8e73f272009-04-03 10:14:18 -04005766 if (ret == -EAGAIN)
5767 goto again;
Chris Mason5f39d392007-10-15 16:14:19 -04005768
Chris Mason76a05b32009-05-14 13:24:30 -04005769 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005770 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04005771 goto done;
5772 }
5773
Chris Mason5cd57b22008-06-25 16:01:30 -04005774 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04005775 ret = btrfs_try_tree_read_lock(next);
Jan Schmidtd42244a2012-06-22 14:51:15 +02005776 if (!ret && time_seq) {
5777 /*
5778 * If we don't get the lock, we may be racing
5779 * with push_leaf_left, holding that lock while
5780 * itself waiting for the leaf we've currently
5781 * locked. To solve this situation, we give up
5782 * on our lock and cycle.
5783 */
Jan Schmidtcf538832012-07-04 15:42:48 +02005784 free_extent_buffer(next);
Jan Schmidtd42244a2012-06-22 14:51:15 +02005785 btrfs_release_path(path);
5786 cond_resched();
5787 goto again;
5788 }
Chris Mason8e73f272009-04-03 10:14:18 -04005789 if (!ret) {
5790 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04005791 btrfs_tree_read_lock(next);
Chris Mason31533fb2011-07-26 16:01:59 -04005792 btrfs_clear_path_blocking(path, next,
Chris Masonbd681512011-07-16 15:23:14 -04005793 BTRFS_READ_LOCK);
Chris Mason8e73f272009-04-03 10:14:18 -04005794 }
Chris Mason31533fb2011-07-26 16:01:59 -04005795 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04005796 }
Chris Masond97e63b2007-02-20 16:40:44 -05005797 break;
5798 }
5799 path->slots[level] = slot;
Chris Masond3977122009-01-05 21:25:51 -05005800 while (1) {
Chris Masond97e63b2007-02-20 16:40:44 -05005801 level--;
5802 c = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04005803 if (path->locks[level])
Chris Masonbd681512011-07-16 15:23:14 -04005804 btrfs_tree_unlock_rw(c, path->locks[level]);
Chris Mason8e73f272009-04-03 10:14:18 -04005805
Chris Mason5f39d392007-10-15 16:14:19 -04005806 free_extent_buffer(c);
Chris Masond97e63b2007-02-20 16:40:44 -05005807 path->nodes[level] = next;
5808 path->slots[level] = 0;
Chris Masona74a4b92008-06-25 16:01:31 -04005809 if (!path->skip_locking)
Chris Masonbd681512011-07-16 15:23:14 -04005810 path->locks[level] = next_rw_lock;
Chris Masond97e63b2007-02-20 16:40:44 -05005811 if (!level)
5812 break;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005813
Chris Mason8e73f272009-04-03 10:14:18 -04005814 ret = read_block_for_search(NULL, root, path, &next, level,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02005815 0, &key, 0);
Chris Mason8e73f272009-04-03 10:14:18 -04005816 if (ret == -EAGAIN)
5817 goto again;
5818
Chris Mason76a05b32009-05-14 13:24:30 -04005819 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005820 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04005821 goto done;
5822 }
5823
Chris Mason5cd57b22008-06-25 16:01:30 -04005824 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04005825 ret = btrfs_try_tree_read_lock(next);
Chris Mason8e73f272009-04-03 10:14:18 -04005826 if (!ret) {
5827 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04005828 btrfs_tree_read_lock(next);
Chris Mason31533fb2011-07-26 16:01:59 -04005829 btrfs_clear_path_blocking(path, next,
Chris Masonbd681512011-07-16 15:23:14 -04005830 BTRFS_READ_LOCK);
Chris Mason8e73f272009-04-03 10:14:18 -04005831 }
Chris Mason31533fb2011-07-26 16:01:59 -04005832 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04005833 }
Chris Masond97e63b2007-02-20 16:40:44 -05005834 }
Chris Mason8e73f272009-04-03 10:14:18 -04005835 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005836done:
Chris Masonf7c79f32012-03-19 15:54:38 -04005837 unlock_up(path, 0, 1, 0, NULL);
Chris Mason8e73f272009-04-03 10:14:18 -04005838 path->leave_spinning = old_spinning;
5839 if (!old_spinning)
5840 btrfs_set_path_blocking(path);
5841
5842 return ret;
Chris Masond97e63b2007-02-20 16:40:44 -05005843}
Chris Mason0b86a832008-03-24 15:01:56 -04005844
Chris Mason3f157a22008-06-25 16:01:31 -04005845/*
5846 * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps
5847 * searching until it gets past min_objectid or finds an item of 'type'
5848 *
5849 * returns 0 if something is found, 1 if nothing was found and < 0 on error
5850 */
Chris Mason0b86a832008-03-24 15:01:56 -04005851int btrfs_previous_item(struct btrfs_root *root,
5852 struct btrfs_path *path, u64 min_objectid,
5853 int type)
5854{
5855 struct btrfs_key found_key;
5856 struct extent_buffer *leaf;
Chris Masone02119d2008-09-05 16:13:11 -04005857 u32 nritems;
Chris Mason0b86a832008-03-24 15:01:56 -04005858 int ret;
5859
Chris Masond3977122009-01-05 21:25:51 -05005860 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04005861 if (path->slots[0] == 0) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05005862 btrfs_set_path_blocking(path);
Chris Mason0b86a832008-03-24 15:01:56 -04005863 ret = btrfs_prev_leaf(root, path);
5864 if (ret != 0)
5865 return ret;
5866 } else {
5867 path->slots[0]--;
5868 }
5869 leaf = path->nodes[0];
Chris Masone02119d2008-09-05 16:13:11 -04005870 nritems = btrfs_header_nritems(leaf);
5871 if (nritems == 0)
5872 return 1;
5873 if (path->slots[0] == nritems)
5874 path->slots[0]--;
5875
Chris Mason0b86a832008-03-24 15:01:56 -04005876 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masone02119d2008-09-05 16:13:11 -04005877 if (found_key.objectid < min_objectid)
5878 break;
Yan Zheng0a4eefb2009-07-24 11:06:53 -04005879 if (found_key.type == type)
5880 return 0;
Chris Masone02119d2008-09-05 16:13:11 -04005881 if (found_key.objectid == min_objectid &&
5882 found_key.type < type)
5883 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005884 }
5885 return 1;
5886}
Wang Shilongade2e0b2014-01-12 21:38:33 +08005887
5888/*
5889 * search in extent tree to find a previous Metadata/Data extent item with
5890 * min objecitd.
5891 *
5892 * returns 0 if something is found, 1 if nothing was found and < 0 on error
5893 */
5894int btrfs_previous_extent_item(struct btrfs_root *root,
5895 struct btrfs_path *path, u64 min_objectid)
5896{
5897 struct btrfs_key found_key;
5898 struct extent_buffer *leaf;
5899 u32 nritems;
5900 int ret;
5901
5902 while (1) {
5903 if (path->slots[0] == 0) {
5904 btrfs_set_path_blocking(path);
5905 ret = btrfs_prev_leaf(root, path);
5906 if (ret != 0)
5907 return ret;
5908 } else {
5909 path->slots[0]--;
5910 }
5911 leaf = path->nodes[0];
5912 nritems = btrfs_header_nritems(leaf);
5913 if (nritems == 0)
5914 return 1;
5915 if (path->slots[0] == nritems)
5916 path->slots[0]--;
5917
5918 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5919 if (found_key.objectid < min_objectid)
5920 break;
5921 if (found_key.type == BTRFS_EXTENT_ITEM_KEY ||
5922 found_key.type == BTRFS_METADATA_ITEM_KEY)
5923 return 0;
5924 if (found_key.objectid == min_objectid &&
5925 found_key.type < BTRFS_EXTENT_ITEM_KEY)
5926 break;
5927 }
5928 return 1;
5929}