blob: 305deb6e59c36de35bab4cd43cf4359747194cd7 [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>
David Sterba8f282f72016-03-30 16:01:12 +020022#include <linux/vmalloc.h>
Chris Masoneb60cea2007-02-02 09:18:22 -050023#include "ctree.h"
24#include "disk-io.h"
Chris Mason7f5c1512007-03-23 15:56:19 -040025#include "transaction.h"
Chris Mason5f39d392007-10-15 16:14:19 -040026#include "print-tree.h"
Chris Mason925baed2008-06-25 16:01:30 -040027#include "locking.h"
Chris Mason9a8dd152007-02-23 08:38:36 -050028
Chris Masone089f052007-03-16 16:20:31 -040029static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
30 *root, struct btrfs_path *path, int level);
31static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masond4dbff92007-04-04 14:08:15 -040032 *root, struct btrfs_key *ins_key,
Chris Masoncc0c5532007-10-25 15:42:57 -040033 struct btrfs_path *path, int data_size, int extend);
Chris Mason5f39d392007-10-15 16:14:19 -040034static int push_node_left(struct btrfs_trans_handle *trans,
35 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -040036 struct extent_buffer *src, int empty);
Chris Mason5f39d392007-10-15 16:14:19 -040037static int balance_node_right(struct btrfs_trans_handle *trans,
38 struct btrfs_root *root,
39 struct extent_buffer *dst_buf,
40 struct extent_buffer *src_buf);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +000041static void del_ptr(struct btrfs_root *root, struct btrfs_path *path,
42 int level, int slot);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +000043static int tree_mod_log_free_eb(struct btrfs_fs_info *fs_info,
Jan Schmidtf2304752012-05-26 11:43:17 +020044 struct extent_buffer *eb);
Chris Masond97e63b2007-02-20 16:40:44 -050045
Chris Mason2c90e5d2007-04-02 10:50:19 -040046struct btrfs_path *btrfs_alloc_path(void)
47{
Masahiro Yamadae2c89902016-09-13 04:35:52 +090048 return kmem_cache_zalloc(btrfs_path_cachep, GFP_NOFS);
Chris Mason2c90e5d2007-04-02 10:50:19 -040049}
50
Chris Masonb4ce94d2009-02-04 09:25:08 -050051/*
52 * set all locked nodes in the path to blocking locks. This should
53 * be done before scheduling
54 */
55noinline void btrfs_set_path_blocking(struct btrfs_path *p)
56{
57 int i;
58 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbd681512011-07-16 15:23:14 -040059 if (!p->nodes[i] || !p->locks[i])
60 continue;
61 btrfs_set_lock_blocking_rw(p->nodes[i], p->locks[i]);
62 if (p->locks[i] == BTRFS_READ_LOCK)
63 p->locks[i] = BTRFS_READ_LOCK_BLOCKING;
64 else if (p->locks[i] == BTRFS_WRITE_LOCK)
65 p->locks[i] = BTRFS_WRITE_LOCK_BLOCKING;
Chris Masonb4ce94d2009-02-04 09:25:08 -050066 }
67}
68
69/*
70 * reset all the locked nodes in the patch to spinning locks.
Chris Mason4008c042009-02-12 14:09:45 -050071 *
72 * held is used to keep lockdep happy, when lockdep is enabled
73 * we set held to a blocking lock before we go around and
74 * retake all the spinlocks in the path. You can safely use NULL
75 * for held
Chris Masonb4ce94d2009-02-04 09:25:08 -050076 */
Chris Mason4008c042009-02-12 14:09:45 -050077noinline void btrfs_clear_path_blocking(struct btrfs_path *p,
Chris Masonbd681512011-07-16 15:23:14 -040078 struct extent_buffer *held, int held_rw)
Chris Masonb4ce94d2009-02-04 09:25:08 -050079{
80 int i;
Chris Mason4008c042009-02-12 14:09:45 -050081
Chris Masonbd681512011-07-16 15:23:14 -040082 if (held) {
83 btrfs_set_lock_blocking_rw(held, held_rw);
84 if (held_rw == BTRFS_WRITE_LOCK)
85 held_rw = BTRFS_WRITE_LOCK_BLOCKING;
86 else if (held_rw == BTRFS_READ_LOCK)
87 held_rw = BTRFS_READ_LOCK_BLOCKING;
88 }
Chris Mason4008c042009-02-12 14:09:45 -050089 btrfs_set_path_blocking(p);
Chris Mason4008c042009-02-12 14:09:45 -050090
91 for (i = BTRFS_MAX_LEVEL - 1; i >= 0; i--) {
Chris Masonbd681512011-07-16 15:23:14 -040092 if (p->nodes[i] && p->locks[i]) {
93 btrfs_clear_lock_blocking_rw(p->nodes[i], p->locks[i]);
94 if (p->locks[i] == BTRFS_WRITE_LOCK_BLOCKING)
95 p->locks[i] = BTRFS_WRITE_LOCK;
96 else if (p->locks[i] == BTRFS_READ_LOCK_BLOCKING)
97 p->locks[i] = BTRFS_READ_LOCK;
98 }
Chris Masonb4ce94d2009-02-04 09:25:08 -050099 }
Chris Mason4008c042009-02-12 14:09:45 -0500100
Chris Mason4008c042009-02-12 14:09:45 -0500101 if (held)
Chris Masonbd681512011-07-16 15:23:14 -0400102 btrfs_clear_lock_blocking_rw(held, held_rw);
Chris Masonb4ce94d2009-02-04 09:25:08 -0500103}
104
Chris Masond352ac62008-09-29 15:18:18 -0400105/* this also releases the path */
Chris Mason2c90e5d2007-04-02 10:50:19 -0400106void btrfs_free_path(struct btrfs_path *p)
107{
Jesper Juhlff175d52010-12-25 21:22:30 +0000108 if (!p)
109 return;
David Sterbab3b4aa72011-04-21 01:20:15 +0200110 btrfs_release_path(p);
Chris Mason2c90e5d2007-04-02 10:50:19 -0400111 kmem_cache_free(btrfs_path_cachep, p);
112}
113
Chris Masond352ac62008-09-29 15:18:18 -0400114/*
115 * path release drops references on the extent buffers in the path
116 * and it drops any locks held by this path
117 *
118 * It is safe to call this on paths that no locks or extent buffers held.
119 */
David Sterbab3b4aa72011-04-21 01:20:15 +0200120noinline void btrfs_release_path(struct btrfs_path *p)
Chris Masoneb60cea2007-02-02 09:18:22 -0500121{
122 int i;
Chris Masona2135012008-06-25 16:01:30 -0400123
Chris Mason234b63a2007-03-13 10:46:10 -0400124 for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
Chris Mason3f157a22008-06-25 16:01:31 -0400125 p->slots[i] = 0;
Chris Masoneb60cea2007-02-02 09:18:22 -0500126 if (!p->nodes[i])
Chris Mason925baed2008-06-25 16:01:30 -0400127 continue;
128 if (p->locks[i]) {
Chris Masonbd681512011-07-16 15:23:14 -0400129 btrfs_tree_unlock_rw(p->nodes[i], p->locks[i]);
Chris Mason925baed2008-06-25 16:01:30 -0400130 p->locks[i] = 0;
131 }
Chris Mason5f39d392007-10-15 16:14:19 -0400132 free_extent_buffer(p->nodes[i]);
Chris Mason3f157a22008-06-25 16:01:31 -0400133 p->nodes[i] = NULL;
Chris Masoneb60cea2007-02-02 09:18:22 -0500134 }
135}
136
Chris Masond352ac62008-09-29 15:18:18 -0400137/*
138 * safely gets a reference on the root node of a tree. A lock
139 * is not taken, so a concurrent writer may put a different node
140 * at the root of the tree. See btrfs_lock_root_node for the
141 * looping required.
142 *
143 * The extent buffer returned by this has a reference taken, so
144 * it won't disappear. It may stop being the root of the tree
145 * at any time because there are no locks held.
146 */
Chris Mason925baed2008-06-25 16:01:30 -0400147struct extent_buffer *btrfs_root_node(struct btrfs_root *root)
148{
149 struct extent_buffer *eb;
Chris Mason240f62c2011-03-23 14:54:42 -0400150
Josef Bacik3083ee22012-03-09 16:01:49 -0500151 while (1) {
152 rcu_read_lock();
153 eb = rcu_dereference(root->node);
154
155 /*
156 * RCU really hurts here, we could free up the root node because
Nicholas D Steeves01327612016-05-19 21:18:45 -0400157 * it was COWed but we may not get the new root node yet so do
Josef Bacik3083ee22012-03-09 16:01:49 -0500158 * the inc_not_zero dance and if it doesn't work then
159 * synchronize_rcu and try again.
160 */
161 if (atomic_inc_not_zero(&eb->refs)) {
162 rcu_read_unlock();
163 break;
164 }
165 rcu_read_unlock();
166 synchronize_rcu();
167 }
Chris Mason925baed2008-06-25 16:01:30 -0400168 return eb;
169}
170
Chris Masond352ac62008-09-29 15:18:18 -0400171/* loop around taking references on and locking the root node of the
172 * tree until you end up with a lock on the root. A locked buffer
173 * is returned, with a reference held.
174 */
Chris Mason925baed2008-06-25 16:01:30 -0400175struct extent_buffer *btrfs_lock_root_node(struct btrfs_root *root)
176{
177 struct extent_buffer *eb;
178
Chris Masond3977122009-01-05 21:25:51 -0500179 while (1) {
Chris Mason925baed2008-06-25 16:01:30 -0400180 eb = btrfs_root_node(root);
181 btrfs_tree_lock(eb);
Chris Mason240f62c2011-03-23 14:54:42 -0400182 if (eb == root->node)
Chris Mason925baed2008-06-25 16:01:30 -0400183 break;
Chris Mason925baed2008-06-25 16:01:30 -0400184 btrfs_tree_unlock(eb);
185 free_extent_buffer(eb);
186 }
187 return eb;
188}
189
Chris Masonbd681512011-07-16 15:23:14 -0400190/* loop around taking references on and locking the root node of the
191 * tree until you end up with a lock on the root. A locked buffer
192 * is returned, with a reference held.
193 */
Eric Sandeen48a3b632013-04-25 20:41:01 +0000194static struct extent_buffer *btrfs_read_lock_root_node(struct btrfs_root *root)
Chris Masonbd681512011-07-16 15:23:14 -0400195{
196 struct extent_buffer *eb;
197
198 while (1) {
199 eb = btrfs_root_node(root);
200 btrfs_tree_read_lock(eb);
201 if (eb == root->node)
202 break;
203 btrfs_tree_read_unlock(eb);
204 free_extent_buffer(eb);
205 }
206 return eb;
207}
208
Chris Masond352ac62008-09-29 15:18:18 -0400209/* cowonly root (everything not a reference counted cow subvolume), just get
210 * put onto a simple dirty list. transaction.c walks this to make sure they
211 * get properly updated on disk.
212 */
Chris Mason0b86a832008-03-24 15:01:56 -0400213static void add_root_to_dirty_list(struct btrfs_root *root)
214{
Josef Bacike7070be2014-12-16 08:54:43 -0800215 if (test_bit(BTRFS_ROOT_DIRTY, &root->state) ||
216 !test_bit(BTRFS_ROOT_TRACK_DIRTY, &root->state))
217 return;
218
Chris Masone5846fc2012-05-03 12:08:48 -0400219 spin_lock(&root->fs_info->trans_lock);
Josef Bacike7070be2014-12-16 08:54:43 -0800220 if (!test_and_set_bit(BTRFS_ROOT_DIRTY, &root->state)) {
221 /* Want the extent tree to be the last on the list */
222 if (root->objectid == BTRFS_EXTENT_TREE_OBJECTID)
223 list_move_tail(&root->dirty_list,
224 &root->fs_info->dirty_cowonly_roots);
225 else
226 list_move(&root->dirty_list,
227 &root->fs_info->dirty_cowonly_roots);
Chris Mason0b86a832008-03-24 15:01:56 -0400228 }
Chris Masone5846fc2012-05-03 12:08:48 -0400229 spin_unlock(&root->fs_info->trans_lock);
Chris Mason0b86a832008-03-24 15:01:56 -0400230}
231
Chris Masond352ac62008-09-29 15:18:18 -0400232/*
233 * used by snapshot creation to make a copy of a root for a tree with
234 * a given objectid. The buffer with the new root node is returned in
235 * cow_ret, and this func returns zero on success or a negative error code.
236 */
Chris Masonbe20aa92007-12-17 20:14:01 -0500237int btrfs_copy_root(struct btrfs_trans_handle *trans,
238 struct btrfs_root *root,
239 struct extent_buffer *buf,
240 struct extent_buffer **cow_ret, u64 new_root_objectid)
241{
242 struct extent_buffer *cow;
Chris Masonbe20aa92007-12-17 20:14:01 -0500243 int ret = 0;
244 int level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400245 struct btrfs_disk_key disk_key;
Chris Masonbe20aa92007-12-17 20:14:01 -0500246
Miao Xie27cdeb72014-04-02 19:51:05 +0800247 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
248 trans->transid != root->fs_info->running_transaction->transid);
249 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
250 trans->transid != root->last_trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500251
252 level = btrfs_header_level(buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400253 if (level == 0)
254 btrfs_item_key(buf, &disk_key, 0);
255 else
256 btrfs_node_key(buf, &disk_key, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400257
David Sterba4d75f8a2014-06-15 01:54:12 +0200258 cow = btrfs_alloc_tree_block(trans, root, 0, new_root_objectid,
259 &disk_key, level, buf->start, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400260 if (IS_ERR(cow))
Chris Masonbe20aa92007-12-17 20:14:01 -0500261 return PTR_ERR(cow);
262
263 copy_extent_buffer(cow, buf, 0, 0, cow->len);
264 btrfs_set_header_bytenr(cow, cow->start);
265 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400266 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
267 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
268 BTRFS_HEADER_FLAG_RELOC);
269 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
270 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
271 else
272 btrfs_set_header_owner(cow, new_root_objectid);
Chris Masonbe20aa92007-12-17 20:14:01 -0500273
Ross Kirk0a4e5582013-09-24 10:12:38 +0100274 write_extent_buffer(cow, root->fs_info->fsid, btrfs_header_fsid(),
Yan Zheng2b820322008-11-17 21:11:30 -0500275 BTRFS_FSID_SIZE);
276
Chris Masonbe20aa92007-12-17 20:14:01 -0500277 WARN_ON(btrfs_header_generation(buf) > trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400278 if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
Josef Bacike339a6b2014-07-02 10:54:25 -0700279 ret = btrfs_inc_ref(trans, root, cow, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400280 else
Josef Bacike339a6b2014-07-02 10:54:25 -0700281 ret = btrfs_inc_ref(trans, root, cow, 0);
Chris Mason4aec2b52007-12-18 16:25:45 -0500282
Chris Masonbe20aa92007-12-17 20:14:01 -0500283 if (ret)
284 return ret;
285
286 btrfs_mark_buffer_dirty(cow);
287 *cow_ret = cow;
288 return 0;
289}
290
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200291enum mod_log_op {
292 MOD_LOG_KEY_REPLACE,
293 MOD_LOG_KEY_ADD,
294 MOD_LOG_KEY_REMOVE,
295 MOD_LOG_KEY_REMOVE_WHILE_FREEING,
296 MOD_LOG_KEY_REMOVE_WHILE_MOVING,
297 MOD_LOG_MOVE_KEYS,
298 MOD_LOG_ROOT_REPLACE,
299};
300
301struct tree_mod_move {
302 int dst_slot;
303 int nr_items;
304};
305
306struct tree_mod_root {
307 u64 logical;
308 u8 level;
309};
310
311struct tree_mod_elem {
312 struct rb_node node;
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530313 u64 logical;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200314 u64 seq;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200315 enum mod_log_op op;
316
317 /* this is used for MOD_LOG_KEY_* and MOD_LOG_MOVE_KEYS operations */
318 int slot;
319
320 /* this is used for MOD_LOG_KEY* and MOD_LOG_ROOT_REPLACE */
321 u64 generation;
322
323 /* those are used for op == MOD_LOG_KEY_{REPLACE,REMOVE} */
324 struct btrfs_disk_key key;
325 u64 blockptr;
326
327 /* this is used for op == MOD_LOG_MOVE_KEYS */
328 struct tree_mod_move move;
329
330 /* this is used for op == MOD_LOG_ROOT_REPLACE */
331 struct tree_mod_root old_root;
332};
333
Jan Schmidt097b8a72012-06-21 11:08:04 +0200334static inline void tree_mod_log_read_lock(struct btrfs_fs_info *fs_info)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200335{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200336 read_lock(&fs_info->tree_mod_log_lock);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200337}
338
Jan Schmidt097b8a72012-06-21 11:08:04 +0200339static inline void tree_mod_log_read_unlock(struct btrfs_fs_info *fs_info)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200340{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200341 read_unlock(&fs_info->tree_mod_log_lock);
342}
343
344static inline void tree_mod_log_write_lock(struct btrfs_fs_info *fs_info)
345{
346 write_lock(&fs_info->tree_mod_log_lock);
347}
348
349static inline void tree_mod_log_write_unlock(struct btrfs_fs_info *fs_info)
350{
351 write_unlock(&fs_info->tree_mod_log_lock);
352}
353
354/*
Josef Bacikfcebe452014-05-13 17:30:47 -0700355 * Pull a new tree mod seq number for our operation.
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +0000356 */
Josef Bacikfcebe452014-05-13 17:30:47 -0700357static inline u64 btrfs_inc_tree_mod_seq(struct btrfs_fs_info *fs_info)
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +0000358{
359 return atomic64_inc_return(&fs_info->tree_mod_seq);
360}
361
362/*
Jan Schmidt097b8a72012-06-21 11:08:04 +0200363 * This adds a new blocker to the tree mod log's blocker list if the @elem
364 * passed does not already have a sequence number set. So when a caller expects
365 * to record tree modifications, it should ensure to set elem->seq to zero
366 * before calling btrfs_get_tree_mod_seq.
367 * Returns a fresh, unused tree log modification sequence number, even if no new
368 * blocker was added.
369 */
370u64 btrfs_get_tree_mod_seq(struct btrfs_fs_info *fs_info,
371 struct seq_list *elem)
372{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200373 tree_mod_log_write_lock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200374 spin_lock(&fs_info->tree_mod_seq_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200375 if (!elem->seq) {
Josef Bacikfcebe452014-05-13 17:30:47 -0700376 elem->seq = btrfs_inc_tree_mod_seq(fs_info);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200377 list_add_tail(&elem->list, &fs_info->tree_mod_seq_list);
378 }
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200379 spin_unlock(&fs_info->tree_mod_seq_lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200380 tree_mod_log_write_unlock(fs_info);
381
Josef Bacikfcebe452014-05-13 17:30:47 -0700382 return elem->seq;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200383}
384
385void btrfs_put_tree_mod_seq(struct btrfs_fs_info *fs_info,
386 struct seq_list *elem)
387{
388 struct rb_root *tm_root;
389 struct rb_node *node;
390 struct rb_node *next;
391 struct seq_list *cur_elem;
392 struct tree_mod_elem *tm;
393 u64 min_seq = (u64)-1;
394 u64 seq_putting = elem->seq;
395
396 if (!seq_putting)
397 return;
398
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200399 spin_lock(&fs_info->tree_mod_seq_lock);
400 list_del(&elem->list);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200401 elem->seq = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200402
403 list_for_each_entry(cur_elem, &fs_info->tree_mod_seq_list, list) {
Jan Schmidt097b8a72012-06-21 11:08:04 +0200404 if (cur_elem->seq < min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200405 if (seq_putting > cur_elem->seq) {
406 /*
407 * blocker with lower sequence number exists, we
408 * cannot remove anything from the log
409 */
Jan Schmidt097b8a72012-06-21 11:08:04 +0200410 spin_unlock(&fs_info->tree_mod_seq_lock);
411 return;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200412 }
413 min_seq = cur_elem->seq;
414 }
415 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200416 spin_unlock(&fs_info->tree_mod_seq_lock);
417
418 /*
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200419 * anything that's lower than the lowest existing (read: blocked)
420 * sequence number can be removed from the tree.
421 */
Jan Schmidt097b8a72012-06-21 11:08:04 +0200422 tree_mod_log_write_lock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200423 tm_root = &fs_info->tree_mod_log;
424 for (node = rb_first(tm_root); node; node = next) {
425 next = rb_next(node);
426 tm = container_of(node, struct tree_mod_elem, node);
Filipe Mananabe9a42b2019-12-06 12:27:39 +0000427 if (tm->seq >= min_seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200428 continue;
429 rb_erase(node, tm_root);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200430 kfree(tm);
431 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200432 tree_mod_log_write_unlock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200433}
434
435/*
436 * key order of the log:
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530437 * node/leaf start address -> sequence
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200438 *
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530439 * The 'start address' is the logical address of the *new* root node
440 * for root replace operations, or the logical address of the affected
441 * block for all other operations.
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000442 *
443 * Note: must be called with write lock (tree_mod_log_write_lock).
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200444 */
445static noinline int
446__tree_mod_log_insert(struct btrfs_fs_info *fs_info, struct tree_mod_elem *tm)
447{
448 struct rb_root *tm_root;
449 struct rb_node **new;
450 struct rb_node *parent = NULL;
451 struct tree_mod_elem *cur;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200452
Josef Bacikc8cc6342013-07-01 16:18:19 -0400453 BUG_ON(!tm);
454
Josef Bacikfcebe452014-05-13 17:30:47 -0700455 tm->seq = btrfs_inc_tree_mod_seq(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200456
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200457 tm_root = &fs_info->tree_mod_log;
458 new = &tm_root->rb_node;
459 while (*new) {
460 cur = container_of(*new, struct tree_mod_elem, node);
461 parent = *new;
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530462 if (cur->logical < tm->logical)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200463 new = &((*new)->rb_left);
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530464 else if (cur->logical > tm->logical)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200465 new = &((*new)->rb_right);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200466 else if (cur->seq < tm->seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200467 new = &((*new)->rb_left);
Jan Schmidt097b8a72012-06-21 11:08:04 +0200468 else if (cur->seq > tm->seq)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200469 new = &((*new)->rb_right);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000470 else
471 return -EEXIST;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200472 }
473
474 rb_link_node(&tm->node, parent, new);
475 rb_insert_color(&tm->node, tm_root);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000476 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200477}
478
Jan Schmidt097b8a72012-06-21 11:08:04 +0200479/*
480 * Determines if logging can be omitted. Returns 1 if it can. Otherwise, it
481 * returns zero with the tree_mod_log_lock acquired. The caller must hold
482 * this until all tree mod log insertions are recorded in the rb tree and then
483 * call tree_mod_log_write_unlock() to release.
484 */
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200485static inline int tree_mod_dont_log(struct btrfs_fs_info *fs_info,
486 struct extent_buffer *eb) {
487 smp_mb();
488 if (list_empty(&(fs_info)->tree_mod_seq_list))
489 return 1;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200490 if (eb && btrfs_header_level(eb) == 0)
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200491 return 1;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000492
493 tree_mod_log_write_lock(fs_info);
494 if (list_empty(&(fs_info)->tree_mod_seq_list)) {
495 tree_mod_log_write_unlock(fs_info);
496 return 1;
497 }
498
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200499 return 0;
500}
501
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000502/* Similar to tree_mod_dont_log, but doesn't acquire any locks. */
503static inline int tree_mod_need_log(const struct btrfs_fs_info *fs_info,
504 struct extent_buffer *eb)
505{
506 smp_mb();
507 if (list_empty(&(fs_info)->tree_mod_seq_list))
508 return 0;
509 if (eb && btrfs_header_level(eb) == 0)
510 return 0;
511
512 return 1;
513}
514
515static struct tree_mod_elem *
516alloc_tree_mod_elem(struct extent_buffer *eb, int slot,
517 enum mod_log_op op, gfp_t flags)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200518{
Jan Schmidt097b8a72012-06-21 11:08:04 +0200519 struct tree_mod_elem *tm;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200520
Josef Bacikc8cc6342013-07-01 16:18:19 -0400521 tm = kzalloc(sizeof(*tm), flags);
522 if (!tm)
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000523 return NULL;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200524
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530525 tm->logical = eb->start;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200526 if (op != MOD_LOG_KEY_ADD) {
527 btrfs_node_key(eb, &tm->key, slot);
528 tm->blockptr = btrfs_node_blockptr(eb, slot);
529 }
530 tm->op = op;
531 tm->slot = slot;
532 tm->generation = btrfs_node_ptr_generation(eb, slot);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000533 RB_CLEAR_NODE(&tm->node);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200534
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000535 return tm;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200536}
537
538static noinline int
Josef Bacikc8cc6342013-07-01 16:18:19 -0400539tree_mod_log_insert_key(struct btrfs_fs_info *fs_info,
540 struct extent_buffer *eb, int slot,
541 enum mod_log_op op, gfp_t flags)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200542{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000543 struct tree_mod_elem *tm;
544 int ret;
545
546 if (!tree_mod_need_log(fs_info, eb))
Jan Schmidt097b8a72012-06-21 11:08:04 +0200547 return 0;
548
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000549 tm = alloc_tree_mod_elem(eb, slot, op, flags);
550 if (!tm)
551 return -ENOMEM;
552
553 if (tree_mod_dont_log(fs_info, eb)) {
554 kfree(tm);
555 return 0;
556 }
557
558 ret = __tree_mod_log_insert(fs_info, tm);
559 tree_mod_log_write_unlock(fs_info);
560 if (ret)
561 kfree(tm);
562
563 return ret;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200564}
565
566static noinline int
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200567tree_mod_log_insert_move(struct btrfs_fs_info *fs_info,
568 struct extent_buffer *eb, int dst_slot, int src_slot,
569 int nr_items, gfp_t flags)
570{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000571 struct tree_mod_elem *tm = NULL;
572 struct tree_mod_elem **tm_list = NULL;
573 int ret = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200574 int i;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000575 int locked = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200576
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000577 if (!tree_mod_need_log(fs_info, eb))
Jan Schmidtf3956942012-05-31 15:02:32 +0200578 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200579
David Sterba31e818f2015-02-20 18:00:26 +0100580 tm_list = kcalloc(nr_items, sizeof(struct tree_mod_elem *), flags);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000581 if (!tm_list)
582 return -ENOMEM;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200583
Josef Bacikc8cc6342013-07-01 16:18:19 -0400584 tm = kzalloc(sizeof(*tm), flags);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000585 if (!tm) {
586 ret = -ENOMEM;
587 goto free_tms;
588 }
Jan Schmidtf3956942012-05-31 15:02:32 +0200589
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530590 tm->logical = eb->start;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200591 tm->slot = src_slot;
592 tm->move.dst_slot = dst_slot;
593 tm->move.nr_items = nr_items;
594 tm->op = MOD_LOG_MOVE_KEYS;
595
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000596 for (i = 0; i + dst_slot < src_slot && i < nr_items; i++) {
597 tm_list[i] = alloc_tree_mod_elem(eb, i + dst_slot,
598 MOD_LOG_KEY_REMOVE_WHILE_MOVING, flags);
599 if (!tm_list[i]) {
600 ret = -ENOMEM;
601 goto free_tms;
602 }
603 }
604
605 if (tree_mod_dont_log(fs_info, eb))
606 goto free_tms;
607 locked = 1;
608
609 /*
610 * When we override something during the move, we log these removals.
611 * This can only happen when we move towards the beginning of the
612 * buffer, i.e. dst_slot < src_slot.
613 */
614 for (i = 0; i + dst_slot < src_slot && i < nr_items; i++) {
615 ret = __tree_mod_log_insert(fs_info, tm_list[i]);
616 if (ret)
617 goto free_tms;
618 }
619
620 ret = __tree_mod_log_insert(fs_info, tm);
621 if (ret)
622 goto free_tms;
623 tree_mod_log_write_unlock(fs_info);
624 kfree(tm_list);
625
626 return 0;
627free_tms:
628 for (i = 0; i < nr_items; i++) {
629 if (tm_list[i] && !RB_EMPTY_NODE(&tm_list[i]->node))
630 rb_erase(&tm_list[i]->node, &fs_info->tree_mod_log);
631 kfree(tm_list[i]);
632 }
633 if (locked)
634 tree_mod_log_write_unlock(fs_info);
635 kfree(tm_list);
636 kfree(tm);
637
638 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200639}
640
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000641static inline int
642__tree_mod_log_free_eb(struct btrfs_fs_info *fs_info,
643 struct tree_mod_elem **tm_list,
644 int nritems)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200645{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000646 int i, j;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200647 int ret;
648
Jan Schmidt097b8a72012-06-21 11:08:04 +0200649 for (i = nritems - 1; i >= 0; i--) {
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000650 ret = __tree_mod_log_insert(fs_info, tm_list[i]);
651 if (ret) {
652 for (j = nritems - 1; j > i; j--)
653 rb_erase(&tm_list[j]->node,
654 &fs_info->tree_mod_log);
655 return ret;
656 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200657 }
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000658
659 return 0;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200660}
661
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200662static noinline int
663tree_mod_log_insert_root(struct btrfs_fs_info *fs_info,
664 struct extent_buffer *old_root,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000665 struct extent_buffer *new_root, gfp_t flags,
666 int log_removal)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200667{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000668 struct tree_mod_elem *tm = NULL;
669 struct tree_mod_elem **tm_list = NULL;
670 int nritems = 0;
671 int ret = 0;
672 int i;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200673
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000674 if (!tree_mod_need_log(fs_info, NULL))
Jan Schmidt097b8a72012-06-21 11:08:04 +0200675 return 0;
676
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000677 if (log_removal && btrfs_header_level(old_root) > 0) {
678 nritems = btrfs_header_nritems(old_root);
David Sterba31e818f2015-02-20 18:00:26 +0100679 tm_list = kcalloc(nritems, sizeof(struct tree_mod_elem *),
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000680 flags);
681 if (!tm_list) {
682 ret = -ENOMEM;
683 goto free_tms;
684 }
685 for (i = 0; i < nritems; i++) {
686 tm_list[i] = alloc_tree_mod_elem(old_root, i,
687 MOD_LOG_KEY_REMOVE_WHILE_FREEING, flags);
688 if (!tm_list[i]) {
689 ret = -ENOMEM;
690 goto free_tms;
691 }
692 }
693 }
Jan Schmidtd9abbf12013-03-20 13:49:48 +0000694
Josef Bacikc8cc6342013-07-01 16:18:19 -0400695 tm = kzalloc(sizeof(*tm), flags);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000696 if (!tm) {
697 ret = -ENOMEM;
698 goto free_tms;
699 }
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200700
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530701 tm->logical = new_root->start;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200702 tm->old_root.logical = old_root->start;
703 tm->old_root.level = btrfs_header_level(old_root);
704 tm->generation = btrfs_header_generation(old_root);
705 tm->op = MOD_LOG_ROOT_REPLACE;
706
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000707 if (tree_mod_dont_log(fs_info, NULL))
708 goto free_tms;
709
710 if (tm_list)
711 ret = __tree_mod_log_free_eb(fs_info, tm_list, nritems);
712 if (!ret)
713 ret = __tree_mod_log_insert(fs_info, tm);
714
715 tree_mod_log_write_unlock(fs_info);
716 if (ret)
717 goto free_tms;
718 kfree(tm_list);
719
720 return ret;
721
722free_tms:
723 if (tm_list) {
724 for (i = 0; i < nritems; i++)
725 kfree(tm_list[i]);
726 kfree(tm_list);
727 }
728 kfree(tm);
729
730 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200731}
732
733static struct tree_mod_elem *
734__tree_mod_log_search(struct btrfs_fs_info *fs_info, u64 start, u64 min_seq,
735 int smallest)
736{
737 struct rb_root *tm_root;
738 struct rb_node *node;
739 struct tree_mod_elem *cur = NULL;
740 struct tree_mod_elem *found = NULL;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200741
Jan Schmidt097b8a72012-06-21 11:08:04 +0200742 tree_mod_log_read_lock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200743 tm_root = &fs_info->tree_mod_log;
744 node = tm_root->rb_node;
745 while (node) {
746 cur = container_of(node, struct tree_mod_elem, node);
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530747 if (cur->logical < start) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200748 node = node->rb_left;
Chandan Rajendra298cfd32016-01-21 15:55:59 +0530749 } else if (cur->logical > start) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200750 node = node->rb_right;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200751 } else if (cur->seq < min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200752 node = node->rb_left;
753 } else if (!smallest) {
754 /* we want the node with the highest seq */
755 if (found)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200756 BUG_ON(found->seq > cur->seq);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200757 found = cur;
758 node = node->rb_left;
Jan Schmidt097b8a72012-06-21 11:08:04 +0200759 } else if (cur->seq > min_seq) {
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200760 /* we want the node with the smallest seq */
761 if (found)
Jan Schmidt097b8a72012-06-21 11:08:04 +0200762 BUG_ON(found->seq < cur->seq);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200763 found = cur;
764 node = node->rb_right;
765 } else {
766 found = cur;
767 break;
768 }
769 }
Jan Schmidt097b8a72012-06-21 11:08:04 +0200770 tree_mod_log_read_unlock(fs_info);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200771
772 return found;
773}
774
775/*
776 * this returns the element from the log with the smallest time sequence
777 * value that's in the log (the oldest log item). any element with a time
778 * sequence lower than min_seq will be ignored.
779 */
780static struct tree_mod_elem *
781tree_mod_log_search_oldest(struct btrfs_fs_info *fs_info, u64 start,
782 u64 min_seq)
783{
784 return __tree_mod_log_search(fs_info, start, min_seq, 1);
785}
786
787/*
788 * this returns the element from the log with the largest time sequence
789 * value that's in the log (the most recent log item). any element with
790 * a time sequence lower than min_seq will be ignored.
791 */
792static struct tree_mod_elem *
793tree_mod_log_search(struct btrfs_fs_info *fs_info, u64 start, u64 min_seq)
794{
795 return __tree_mod_log_search(fs_info, start, min_seq, 0);
796}
797
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000798static noinline int
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200799tree_mod_log_eb_copy(struct btrfs_fs_info *fs_info, struct extent_buffer *dst,
800 struct extent_buffer *src, unsigned long dst_offset,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000801 unsigned long src_offset, int nr_items)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200802{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000803 int ret = 0;
804 struct tree_mod_elem **tm_list = NULL;
805 struct tree_mod_elem **tm_list_add, **tm_list_rem;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200806 int i;
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000807 int locked = 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200808
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000809 if (!tree_mod_need_log(fs_info, NULL))
810 return 0;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200811
Josef Bacikc8cc6342013-07-01 16:18:19 -0400812 if (btrfs_header_level(dst) == 0 && btrfs_header_level(src) == 0)
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000813 return 0;
814
David Sterba31e818f2015-02-20 18:00:26 +0100815 tm_list = kcalloc(nr_items * 2, sizeof(struct tree_mod_elem *),
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000816 GFP_NOFS);
817 if (!tm_list)
818 return -ENOMEM;
819
820 tm_list_add = tm_list;
821 tm_list_rem = tm_list + nr_items;
822 for (i = 0; i < nr_items; i++) {
823 tm_list_rem[i] = alloc_tree_mod_elem(src, i + src_offset,
824 MOD_LOG_KEY_REMOVE, GFP_NOFS);
825 if (!tm_list_rem[i]) {
826 ret = -ENOMEM;
827 goto free_tms;
828 }
829
830 tm_list_add[i] = alloc_tree_mod_elem(dst, i + dst_offset,
831 MOD_LOG_KEY_ADD, GFP_NOFS);
832 if (!tm_list_add[i]) {
833 ret = -ENOMEM;
834 goto free_tms;
835 }
836 }
837
838 if (tree_mod_dont_log(fs_info, NULL))
839 goto free_tms;
840 locked = 1;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200841
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200842 for (i = 0; i < nr_items; i++) {
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000843 ret = __tree_mod_log_insert(fs_info, tm_list_rem[i]);
844 if (ret)
845 goto free_tms;
846 ret = __tree_mod_log_insert(fs_info, tm_list_add[i]);
847 if (ret)
848 goto free_tms;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200849 }
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000850
851 tree_mod_log_write_unlock(fs_info);
852 kfree(tm_list);
853
854 return 0;
855
856free_tms:
857 for (i = 0; i < nr_items * 2; i++) {
858 if (tm_list[i] && !RB_EMPTY_NODE(&tm_list[i]->node))
859 rb_erase(&tm_list[i]->node, &fs_info->tree_mod_log);
860 kfree(tm_list[i]);
861 }
862 if (locked)
863 tree_mod_log_write_unlock(fs_info);
864 kfree(tm_list);
865
866 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200867}
868
869static inline void
870tree_mod_log_eb_move(struct btrfs_fs_info *fs_info, struct extent_buffer *dst,
871 int dst_offset, int src_offset, int nr_items)
872{
873 int ret;
874 ret = tree_mod_log_insert_move(fs_info, dst, dst_offset, src_offset,
875 nr_items, GFP_NOFS);
876 BUG_ON(ret < 0);
877}
878
Jan Schmidt097b8a72012-06-21 11:08:04 +0200879static noinline void
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200880tree_mod_log_set_node_key(struct btrfs_fs_info *fs_info,
Liu Bo32adf092012-10-19 12:52:15 +0000881 struct extent_buffer *eb, int slot, int atomic)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200882{
883 int ret;
884
Filipe David Borba Manana78357762013-12-12 19:19:52 +0000885 ret = tree_mod_log_insert_key(fs_info, eb, slot,
Josef Bacikc8cc6342013-07-01 16:18:19 -0400886 MOD_LOG_KEY_REPLACE,
887 atomic ? GFP_ATOMIC : GFP_NOFS);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200888 BUG_ON(ret < 0);
889}
890
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000891static noinline int
Jan Schmidt097b8a72012-06-21 11:08:04 +0200892tree_mod_log_free_eb(struct btrfs_fs_info *fs_info, struct extent_buffer *eb)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200893{
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000894 struct tree_mod_elem **tm_list = NULL;
895 int nritems = 0;
896 int i;
897 int ret = 0;
898
899 if (btrfs_header_level(eb) == 0)
900 return 0;
901
902 if (!tree_mod_need_log(fs_info, NULL))
903 return 0;
904
905 nritems = btrfs_header_nritems(eb);
David Sterba31e818f2015-02-20 18:00:26 +0100906 tm_list = kcalloc(nritems, sizeof(struct tree_mod_elem *), GFP_NOFS);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000907 if (!tm_list)
908 return -ENOMEM;
909
910 for (i = 0; i < nritems; i++) {
911 tm_list[i] = alloc_tree_mod_elem(eb, i,
912 MOD_LOG_KEY_REMOVE_WHILE_FREEING, GFP_NOFS);
913 if (!tm_list[i]) {
914 ret = -ENOMEM;
915 goto free_tms;
916 }
917 }
918
Jan Schmidte9b7fd42012-05-31 14:59:09 +0200919 if (tree_mod_dont_log(fs_info, eb))
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +0000920 goto free_tms;
921
922 ret = __tree_mod_log_free_eb(fs_info, tm_list, nritems);
923 tree_mod_log_write_unlock(fs_info);
924 if (ret)
925 goto free_tms;
926 kfree(tm_list);
927
928 return 0;
929
930free_tms:
931 for (i = 0; i < nritems; i++)
932 kfree(tm_list[i]);
933 kfree(tm_list);
934
935 return ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200936}
937
Jan Schmidt097b8a72012-06-21 11:08:04 +0200938static noinline void
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200939tree_mod_log_set_root_pointer(struct btrfs_root *root,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000940 struct extent_buffer *new_root_node,
941 int log_removal)
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200942{
943 int ret;
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200944 ret = tree_mod_log_insert_root(root->fs_info, root->node,
Jan Schmidt90f8d622013-04-13 13:19:53 +0000945 new_root_node, GFP_NOFS, log_removal);
Jan Schmidtbd989ba2012-05-16 17:18:50 +0200946 BUG_ON(ret < 0);
947}
948
Chris Masond352ac62008-09-29 15:18:18 -0400949/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400950 * check if the tree block can be shared by multiple trees
951 */
952int btrfs_block_can_be_shared(struct btrfs_root *root,
953 struct extent_buffer *buf)
954{
955 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -0400956 * Tree blocks not in reference counted trees and tree roots
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400957 * are never shared. If a block was allocated after the last
958 * snapshot and the block was not allocated by tree relocation,
959 * we know the block is not shared.
960 */
Miao Xie27cdeb72014-04-02 19:51:05 +0800961 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400962 buf != root->node && buf != root->commit_root &&
963 (btrfs_header_generation(buf) <=
964 btrfs_root_last_snapshot(&root->root_item) ||
965 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)))
966 return 1;
967#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
Miao Xie27cdeb72014-04-02 19:51:05 +0800968 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400969 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
970 return 1;
971#endif
972 return 0;
973}
974
975static noinline int update_ref_for_cow(struct btrfs_trans_handle *trans,
976 struct btrfs_root *root,
977 struct extent_buffer *buf,
Yan, Zhengf0486c62010-05-16 10:46:25 -0400978 struct extent_buffer *cow,
979 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400980{
981 u64 refs;
982 u64 owner;
983 u64 flags;
984 u64 new_flags = 0;
985 int ret;
986
987 /*
988 * Backrefs update rules:
989 *
990 * Always use full backrefs for extent pointers in tree block
991 * allocated by tree relocation.
992 *
993 * If a shared tree block is no longer referenced by its owner
994 * tree (btrfs_header_owner(buf) == root->root_key.objectid),
995 * use full backrefs for extent pointers in tree block.
996 *
997 * If a tree block is been relocating
998 * (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID),
999 * use full backrefs for extent pointers in tree block.
1000 * The reason for this is some operations (such as drop tree)
1001 * are only allowed for blocks use full backrefs.
1002 */
1003
1004 if (btrfs_block_can_be_shared(root, buf)) {
1005 ret = btrfs_lookup_extent_info(trans, root, buf->start,
Josef Bacik3173a182013-03-07 14:22:04 -05001006 btrfs_header_level(buf), 1,
1007 &refs, &flags);
Mark Fashehbe1a5562011-08-08 13:20:18 -07001008 if (ret)
1009 return ret;
Mark Fashehe5df9572011-08-29 14:17:04 -07001010 if (refs == 0) {
1011 ret = -EROFS;
Anand Jain34d97002016-03-16 16:43:06 +08001012 btrfs_handle_fs_error(root->fs_info, ret, NULL);
Mark Fashehe5df9572011-08-29 14:17:04 -07001013 return ret;
1014 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001015 } else {
1016 refs = 1;
1017 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
1018 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
1019 flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
1020 else
1021 flags = 0;
1022 }
1023
1024 owner = btrfs_header_owner(buf);
1025 BUG_ON(owner == BTRFS_TREE_RELOC_OBJECTID &&
1026 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
1027
1028 if (refs > 1) {
1029 if ((owner == root->root_key.objectid ||
1030 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) &&
1031 !(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) {
Josef Bacike339a6b2014-07-02 10:54:25 -07001032 ret = btrfs_inc_ref(trans, root, buf, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001033 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001034
1035 if (root->root_key.objectid ==
1036 BTRFS_TREE_RELOC_OBJECTID) {
Josef Bacike339a6b2014-07-02 10:54:25 -07001037 ret = btrfs_dec_ref(trans, root, buf, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001038 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07001039 ret = btrfs_inc_ref(trans, root, cow, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001040 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001041 }
1042 new_flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
1043 } else {
1044
1045 if (root->root_key.objectid ==
1046 BTRFS_TREE_RELOC_OBJECTID)
Josef Bacike339a6b2014-07-02 10:54:25 -07001047 ret = btrfs_inc_ref(trans, root, cow, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001048 else
Josef Bacike339a6b2014-07-02 10:54:25 -07001049 ret = btrfs_inc_ref(trans, root, cow, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001050 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001051 }
1052 if (new_flags != 0) {
Josef Bacikb1c79e02013-05-09 13:49:30 -04001053 int level = btrfs_header_level(buf);
1054
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001055 ret = btrfs_set_disk_extent_flags(trans, root,
1056 buf->start,
1057 buf->len,
Josef Bacikb1c79e02013-05-09 13:49:30 -04001058 new_flags, level, 0);
Mark Fashehbe1a5562011-08-08 13:20:18 -07001059 if (ret)
1060 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001061 }
1062 } else {
1063 if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
1064 if (root->root_key.objectid ==
1065 BTRFS_TREE_RELOC_OBJECTID)
Josef Bacike339a6b2014-07-02 10:54:25 -07001066 ret = btrfs_inc_ref(trans, root, cow, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001067 else
Josef Bacike339a6b2014-07-02 10:54:25 -07001068 ret = btrfs_inc_ref(trans, root, cow, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001069 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07001070 ret = btrfs_dec_ref(trans, root, buf, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001071 BUG_ON(ret); /* -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001072 }
Daniel Dressler01d58472014-11-21 17:15:07 +09001073 clean_tree_block(trans, root->fs_info, buf);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001074 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001075 }
1076 return 0;
1077}
1078
1079/*
Chris Masond3977122009-01-05 21:25:51 -05001080 * does the dirty work in cow of a single block. The parent block (if
1081 * supplied) is updated to point to the new cow copy. The new buffer is marked
1082 * dirty and returned locked. If you modify the block it needs to be marked
1083 * dirty again.
Chris Masond352ac62008-09-29 15:18:18 -04001084 *
1085 * search_start -- an allocation hint for the new block
1086 *
Chris Masond3977122009-01-05 21:25:51 -05001087 * empty_size -- a hint that you plan on doing more cow. This is the size in
1088 * bytes the allocator should try to find free next to the block it returns.
1089 * This is just a hint and may be ignored by the allocator.
Chris Masond352ac62008-09-29 15:18:18 -04001090 */
Chris Masond3977122009-01-05 21:25:51 -05001091static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001092 struct btrfs_root *root,
1093 struct extent_buffer *buf,
1094 struct extent_buffer *parent, int parent_slot,
1095 struct extent_buffer **cow_ret,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001096 u64 search_start, u64 empty_size)
Chris Mason6702ed42007-08-07 16:15:09 -04001097{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001098 struct btrfs_disk_key disk_key;
Chris Mason5f39d392007-10-15 16:14:19 -04001099 struct extent_buffer *cow;
Mark Fashehbe1a5562011-08-08 13:20:18 -07001100 int level, ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04001101 int last_ref = 0;
Chris Mason925baed2008-06-25 16:01:30 -04001102 int unlock_orig = 0;
Goldwyn Rodrigues0f5053e2016-09-22 14:11:34 -05001103 u64 parent_start = 0;
Chris Mason6702ed42007-08-07 16:15:09 -04001104
Chris Mason925baed2008-06-25 16:01:30 -04001105 if (*cow_ret == buf)
1106 unlock_orig = 1;
1107
Chris Masonb9447ef2009-03-09 11:45:38 -04001108 btrfs_assert_tree_locked(buf);
Chris Mason925baed2008-06-25 16:01:30 -04001109
Miao Xie27cdeb72014-04-02 19:51:05 +08001110 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
1111 trans->transid != root->fs_info->running_transaction->transid);
1112 WARN_ON(test_bit(BTRFS_ROOT_REF_COWS, &root->state) &&
1113 trans->transid != root->last_trans);
Chris Mason5f39d392007-10-15 16:14:19 -04001114
Chris Mason7bb86312007-12-11 09:25:06 -05001115 level = btrfs_header_level(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04001116
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001117 if (level == 0)
1118 btrfs_item_key(buf, &disk_key, 0);
1119 else
1120 btrfs_node_key(buf, &disk_key, 0);
1121
Goldwyn Rodrigues0f5053e2016-09-22 14:11:34 -05001122 if ((root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) && parent)
1123 parent_start = parent->start;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001124
David Sterba4d75f8a2014-06-15 01:54:12 +02001125 cow = btrfs_alloc_tree_block(trans, root, parent_start,
1126 root->root_key.objectid, &disk_key, level,
1127 search_start, empty_size);
Chris Mason6702ed42007-08-07 16:15:09 -04001128 if (IS_ERR(cow))
1129 return PTR_ERR(cow);
1130
Chris Masonb4ce94d2009-02-04 09:25:08 -05001131 /* cow is set to blocking by btrfs_init_new_buffer */
1132
Chris Mason5f39d392007-10-15 16:14:19 -04001133 copy_extent_buffer(cow, buf, 0, 0, cow->len);
Chris Masondb945352007-10-15 16:15:53 -04001134 btrfs_set_header_bytenr(cow, cow->start);
Chris Mason5f39d392007-10-15 16:14:19 -04001135 btrfs_set_header_generation(cow, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001136 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
1137 btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
1138 BTRFS_HEADER_FLAG_RELOC);
1139 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
1140 btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
1141 else
1142 btrfs_set_header_owner(cow, root->root_key.objectid);
Chris Mason6702ed42007-08-07 16:15:09 -04001143
Ross Kirk0a4e5582013-09-24 10:12:38 +01001144 write_extent_buffer(cow, root->fs_info->fsid, btrfs_header_fsid(),
Yan Zheng2b820322008-11-17 21:11:30 -05001145 BTRFS_FSID_SIZE);
1146
Mark Fashehbe1a5562011-08-08 13:20:18 -07001147 ret = update_ref_for_cow(trans, root, buf, cow, &last_ref);
Mark Fashehb68dc2a2011-08-29 14:30:39 -07001148 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001149 btrfs_abort_transaction(trans, ret);
Mark Fashehb68dc2a2011-08-29 14:30:39 -07001150 return ret;
1151 }
Zheng Yan1a40e232008-09-26 10:09:34 -04001152
Miao Xie27cdeb72014-04-02 19:51:05 +08001153 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state)) {
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001154 ret = btrfs_reloc_cow_block(trans, root, buf, cow);
Zhaolei93314e32015-08-06 21:56:58 +08001155 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001156 btrfs_abort_transaction(trans, ret);
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001157 return ret;
Zhaolei93314e32015-08-06 21:56:58 +08001158 }
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001159 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001160
Chris Mason6702ed42007-08-07 16:15:09 -04001161 if (buf == root->node) {
Chris Mason925baed2008-06-25 16:01:30 -04001162 WARN_ON(parent && parent != buf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001163 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
1164 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
1165 parent_start = buf->start;
Chris Mason925baed2008-06-25 16:01:30 -04001166
Chris Mason5f39d392007-10-15 16:14:19 -04001167 extent_buffer_get(cow);
Jan Schmidt90f8d622013-04-13 13:19:53 +00001168 tree_mod_log_set_root_pointer(root, cow, 1);
Chris Mason240f62c2011-03-23 14:54:42 -04001169 rcu_assign_pointer(root->node, cow);
Chris Mason925baed2008-06-25 16:01:30 -04001170
Yan, Zhengf0486c62010-05-16 10:46:25 -04001171 btrfs_free_tree_block(trans, root, buf, parent_start,
Jan Schmidt5581a512012-05-16 17:04:52 +02001172 last_ref);
Chris Mason5f39d392007-10-15 16:14:19 -04001173 free_extent_buffer(buf);
Chris Mason0b86a832008-03-24 15:01:56 -04001174 add_root_to_dirty_list(root);
Chris Mason6702ed42007-08-07 16:15:09 -04001175 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001176 WARN_ON(trans->transid != btrfs_header_generation(parent));
Jan Schmidtf2304752012-05-26 11:43:17 +02001177 tree_mod_log_insert_key(root->fs_info, parent, parent_slot,
Josef Bacikc8cc6342013-07-01 16:18:19 -04001178 MOD_LOG_KEY_REPLACE, GFP_NOFS);
Chris Mason5f39d392007-10-15 16:14:19 -04001179 btrfs_set_node_blockptr(parent, parent_slot,
Chris Masondb945352007-10-15 16:15:53 -04001180 cow->start);
Chris Mason74493f72007-12-11 09:25:06 -05001181 btrfs_set_node_ptr_generation(parent, parent_slot,
1182 trans->transid);
Chris Mason6702ed42007-08-07 16:15:09 -04001183 btrfs_mark_buffer_dirty(parent);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00001184 if (last_ref) {
1185 ret = tree_mod_log_free_eb(root->fs_info, buf);
1186 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001187 btrfs_abort_transaction(trans, ret);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00001188 return ret;
1189 }
1190 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04001191 btrfs_free_tree_block(trans, root, buf, parent_start,
Jan Schmidt5581a512012-05-16 17:04:52 +02001192 last_ref);
Chris Mason6702ed42007-08-07 16:15:09 -04001193 }
Chris Mason925baed2008-06-25 16:01:30 -04001194 if (unlock_orig)
1195 btrfs_tree_unlock(buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05001196 free_extent_buffer_stale(buf);
Chris Mason6702ed42007-08-07 16:15:09 -04001197 btrfs_mark_buffer_dirty(cow);
1198 *cow_ret = cow;
1199 return 0;
1200}
1201
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001202/*
1203 * returns the logical address of the oldest predecessor of the given root.
1204 * entries older than time_seq are ignored.
1205 */
1206static struct tree_mod_elem *
1207__tree_mod_log_oldest_root(struct btrfs_fs_info *fs_info,
Jan Schmidt30b04632013-04-13 13:19:54 +00001208 struct extent_buffer *eb_root, u64 time_seq)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001209{
1210 struct tree_mod_elem *tm;
1211 struct tree_mod_elem *found = NULL;
Jan Schmidt30b04632013-04-13 13:19:54 +00001212 u64 root_logical = eb_root->start;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001213 int looped = 0;
1214
1215 if (!time_seq)
Stefan Behrens35a36212013-08-14 18:12:25 +02001216 return NULL;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001217
1218 /*
Chandan Rajendra298cfd32016-01-21 15:55:59 +05301219 * the very last operation that's logged for a root is the
1220 * replacement operation (if it is replaced at all). this has
1221 * the logical address of the *new* root, making it the very
1222 * first operation that's logged for this root.
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001223 */
1224 while (1) {
1225 tm = tree_mod_log_search_oldest(fs_info, root_logical,
1226 time_seq);
1227 if (!looped && !tm)
Stefan Behrens35a36212013-08-14 18:12:25 +02001228 return NULL;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001229 /*
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001230 * if there are no tree operation for the oldest root, we simply
1231 * return it. this should only happen if that (old) root is at
1232 * level 0.
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001233 */
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001234 if (!tm)
1235 break;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001236
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001237 /*
1238 * if there's an operation that's not a root replacement, we
1239 * found the oldest version of our root. normally, we'll find a
1240 * MOD_LOG_KEY_REMOVE_WHILE_FREEING operation here.
1241 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001242 if (tm->op != MOD_LOG_ROOT_REPLACE)
1243 break;
1244
1245 found = tm;
1246 root_logical = tm->old_root.logical;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001247 looped = 1;
1248 }
1249
Jan Schmidta95236d2012-06-05 16:41:24 +02001250 /* if there's no old root to return, return what we found instead */
1251 if (!found)
1252 found = tm;
1253
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001254 return found;
1255}
1256
1257/*
1258 * tm is a pointer to the first operation to rewind within eb. then, all
Nicholas D Steeves01327612016-05-19 21:18:45 -04001259 * previous operations will be rewound (until we reach something older than
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001260 * time_seq).
1261 */
1262static void
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001263__tree_mod_log_rewind(struct btrfs_fs_info *fs_info, struct extent_buffer *eb,
1264 u64 time_seq, struct tree_mod_elem *first_tm)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001265{
1266 u32 n;
1267 struct rb_node *next;
1268 struct tree_mod_elem *tm = first_tm;
1269 unsigned long o_dst;
1270 unsigned long o_src;
1271 unsigned long p_size = sizeof(struct btrfs_key_ptr);
1272
1273 n = btrfs_header_nritems(eb);
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001274 tree_mod_log_read_lock(fs_info);
Jan Schmidt097b8a72012-06-21 11:08:04 +02001275 while (tm && tm->seq >= time_seq) {
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001276 /*
1277 * all the operations are recorded with the operator used for
1278 * the modification. as we're going backwards, we do the
1279 * opposite of each operation here.
1280 */
1281 switch (tm->op) {
1282 case MOD_LOG_KEY_REMOVE_WHILE_FREEING:
1283 BUG_ON(tm->slot < n);
Eric Sandeen1c697d42013-01-31 00:54:56 +00001284 /* Fallthrough */
Liu Bo95c80bb2012-10-19 09:50:52 +00001285 case MOD_LOG_KEY_REMOVE_WHILE_MOVING:
Chris Mason4c3e6962012-12-18 15:43:18 -05001286 case MOD_LOG_KEY_REMOVE:
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001287 btrfs_set_node_key(eb, &tm->key, tm->slot);
1288 btrfs_set_node_blockptr(eb, tm->slot, tm->blockptr);
1289 btrfs_set_node_ptr_generation(eb, tm->slot,
1290 tm->generation);
Chris Mason4c3e6962012-12-18 15:43:18 -05001291 n++;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001292 break;
1293 case MOD_LOG_KEY_REPLACE:
1294 BUG_ON(tm->slot >= n);
1295 btrfs_set_node_key(eb, &tm->key, tm->slot);
1296 btrfs_set_node_blockptr(eb, tm->slot, tm->blockptr);
1297 btrfs_set_node_ptr_generation(eb, tm->slot,
1298 tm->generation);
1299 break;
1300 case MOD_LOG_KEY_ADD:
Jan Schmidt19956c72012-06-22 14:52:13 +02001301 /* if a move operation is needed it's in the log */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001302 n--;
1303 break;
1304 case MOD_LOG_MOVE_KEYS:
Jan Schmidtc3193102012-05-31 19:24:36 +02001305 o_dst = btrfs_node_key_ptr_offset(tm->slot);
1306 o_src = btrfs_node_key_ptr_offset(tm->move.dst_slot);
1307 memmove_extent_buffer(eb, o_dst, o_src,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001308 tm->move.nr_items * p_size);
1309 break;
1310 case MOD_LOG_ROOT_REPLACE:
1311 /*
1312 * this operation is special. for roots, this must be
1313 * handled explicitly before rewinding.
1314 * for non-roots, this operation may exist if the node
1315 * was a root: root A -> child B; then A gets empty and
1316 * B is promoted to the new root. in the mod log, we'll
1317 * have a root-replace operation for B, a tree block
1318 * that is no root. we simply ignore that operation.
1319 */
1320 break;
1321 }
1322 next = rb_next(&tm->node);
1323 if (!next)
1324 break;
1325 tm = container_of(next, struct tree_mod_elem, node);
Chandan Rajendra298cfd32016-01-21 15:55:59 +05301326 if (tm->logical != first_tm->logical)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001327 break;
1328 }
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001329 tree_mod_log_read_unlock(fs_info);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001330 btrfs_set_header_nritems(eb, n);
1331}
1332
Jan Schmidt47fb0912013-04-13 13:19:55 +00001333/*
Nicholas D Steeves01327612016-05-19 21:18:45 -04001334 * Called with eb read locked. If the buffer cannot be rewound, the same buffer
Jan Schmidt47fb0912013-04-13 13:19:55 +00001335 * is returned. If rewind operations happen, a fresh buffer is returned. The
1336 * returned buffer is always read-locked. If the returned buffer is not the
1337 * input buffer, the lock on the input buffer is released and the input buffer
1338 * is freed (its refcount is decremented).
1339 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001340static struct extent_buffer *
Josef Bacik9ec72672013-08-07 16:57:23 -04001341tree_mod_log_rewind(struct btrfs_fs_info *fs_info, struct btrfs_path *path,
1342 struct extent_buffer *eb, u64 time_seq)
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001343{
1344 struct extent_buffer *eb_rewin;
1345 struct tree_mod_elem *tm;
1346
1347 if (!time_seq)
1348 return eb;
1349
1350 if (btrfs_header_level(eb) == 0)
1351 return eb;
1352
1353 tm = tree_mod_log_search(fs_info, eb->start, time_seq);
1354 if (!tm)
1355 return eb;
1356
Josef Bacik9ec72672013-08-07 16:57:23 -04001357 btrfs_set_path_blocking(path);
1358 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
1359
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001360 if (tm->op == MOD_LOG_KEY_REMOVE_WHILE_FREEING) {
1361 BUG_ON(tm->slot != 0);
Feifei Xub9ef22d2016-06-01 19:18:25 +08001362 eb_rewin = alloc_dummy_extent_buffer(fs_info, eb->start,
1363 eb->len);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001364 if (!eb_rewin) {
Josef Bacik9ec72672013-08-07 16:57:23 -04001365 btrfs_tree_read_unlock_blocking(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001366 free_extent_buffer(eb);
1367 return NULL;
1368 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001369 btrfs_set_header_bytenr(eb_rewin, eb->start);
1370 btrfs_set_header_backref_rev(eb_rewin,
1371 btrfs_header_backref_rev(eb));
1372 btrfs_set_header_owner(eb_rewin, btrfs_header_owner(eb));
Jan Schmidtc3193102012-05-31 19:24:36 +02001373 btrfs_set_header_level(eb_rewin, btrfs_header_level(eb));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001374 } else {
1375 eb_rewin = btrfs_clone_extent_buffer(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001376 if (!eb_rewin) {
Josef Bacik9ec72672013-08-07 16:57:23 -04001377 btrfs_tree_read_unlock_blocking(eb);
Josef Bacikdb7f3432013-08-07 14:54:37 -04001378 free_extent_buffer(eb);
1379 return NULL;
1380 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001381 }
1382
Josef Bacik9ec72672013-08-07 16:57:23 -04001383 btrfs_clear_path_blocking(path, NULL, BTRFS_READ_LOCK);
1384 btrfs_tree_read_unlock_blocking(eb);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001385 free_extent_buffer(eb);
1386
Jan Schmidt47fb0912013-04-13 13:19:55 +00001387 extent_buffer_get(eb_rewin);
1388 btrfs_tree_read_lock(eb_rewin);
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001389 __tree_mod_log_rewind(fs_info, eb_rewin, time_seq, tm);
Jan Schmidt57911b82012-10-19 09:22:03 +02001390 WARN_ON(btrfs_header_nritems(eb_rewin) >
Arne Jansen2a745b12013-02-13 04:20:01 -07001391 BTRFS_NODEPTRS_PER_BLOCK(fs_info->tree_root));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001392
1393 return eb_rewin;
1394}
1395
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001396/*
1397 * get_old_root() rewinds the state of @root's root node to the given @time_seq
1398 * value. If there are no changes, the current root->root_node is returned. If
1399 * anything changed in between, there's a fresh buffer allocated on which the
1400 * rewind operations are done. In any case, the returned buffer is read locked.
1401 * Returns NULL on error (with no locks held).
1402 */
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001403static inline struct extent_buffer *
1404get_old_root(struct btrfs_root *root, u64 time_seq)
1405{
1406 struct tree_mod_elem *tm;
Jan Schmidt30b04632013-04-13 13:19:54 +00001407 struct extent_buffer *eb = NULL;
1408 struct extent_buffer *eb_root;
Filipe Mananaf0ed93d2019-08-12 19:14:29 +01001409 u64 eb_root_owner = 0;
Liu Bo7bfdcf72012-10-25 07:30:19 -06001410 struct extent_buffer *old;
Jan Schmidta95236d2012-06-05 16:41:24 +02001411 struct tree_mod_root *old_root = NULL;
Chris Mason4325edd2012-06-15 20:02:02 -04001412 u64 old_generation = 0;
Jan Schmidta95236d2012-06-05 16:41:24 +02001413 u64 logical;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001414
Jan Schmidt30b04632013-04-13 13:19:54 +00001415 eb_root = btrfs_read_lock_root_node(root);
1416 tm = __tree_mod_log_oldest_root(root->fs_info, eb_root, time_seq);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001417 if (!tm)
Jan Schmidt30b04632013-04-13 13:19:54 +00001418 return eb_root;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001419
Jan Schmidta95236d2012-06-05 16:41:24 +02001420 if (tm->op == MOD_LOG_ROOT_REPLACE) {
1421 old_root = &tm->old_root;
1422 old_generation = tm->generation;
1423 logical = old_root->logical;
1424 } else {
Jan Schmidt30b04632013-04-13 13:19:54 +00001425 logical = eb_root->start;
Jan Schmidta95236d2012-06-05 16:41:24 +02001426 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001427
Jan Schmidta95236d2012-06-05 16:41:24 +02001428 tm = tree_mod_log_search(root->fs_info, logical, time_seq);
Jan Schmidt834328a2012-10-23 11:27:33 +02001429 if (old_root && tm && tm->op != MOD_LOG_KEY_REMOVE_WHILE_FREEING) {
Jan Schmidt30b04632013-04-13 13:19:54 +00001430 btrfs_tree_read_unlock(eb_root);
1431 free_extent_buffer(eb_root);
David Sterbace86cd52014-06-15 01:07:32 +02001432 old = read_tree_block(root, logical, 0);
Liu Bo64c043d2015-05-25 17:30:15 +08001433 if (WARN_ON(IS_ERR(old) || !extent_buffer_uptodate(old))) {
1434 if (!IS_ERR(old))
1435 free_extent_buffer(old);
Frank Holtonefe120a2013-12-20 11:37:06 -05001436 btrfs_warn(root->fs_info,
1437 "failed to read tree block %llu from get_old_root", logical);
Jan Schmidt834328a2012-10-23 11:27:33 +02001438 } else {
Liu Bo7bfdcf72012-10-25 07:30:19 -06001439 eb = btrfs_clone_extent_buffer(old);
1440 free_extent_buffer(old);
Jan Schmidt834328a2012-10-23 11:27:33 +02001441 }
1442 } else if (old_root) {
Filipe Mananaf0ed93d2019-08-12 19:14:29 +01001443 eb_root_owner = btrfs_header_owner(eb_root);
Jan Schmidt30b04632013-04-13 13:19:54 +00001444 btrfs_tree_read_unlock(eb_root);
1445 free_extent_buffer(eb_root);
Feifei Xub9ef22d2016-06-01 19:18:25 +08001446 eb = alloc_dummy_extent_buffer(root->fs_info, logical,
1447 root->nodesize);
Jan Schmidt834328a2012-10-23 11:27:33 +02001448 } else {
Josef Bacik9ec72672013-08-07 16:57:23 -04001449 btrfs_set_lock_blocking_rw(eb_root, BTRFS_READ_LOCK);
Jan Schmidt30b04632013-04-13 13:19:54 +00001450 eb = btrfs_clone_extent_buffer(eb_root);
Josef Bacik9ec72672013-08-07 16:57:23 -04001451 btrfs_tree_read_unlock_blocking(eb_root);
Jan Schmidt30b04632013-04-13 13:19:54 +00001452 free_extent_buffer(eb_root);
Jan Schmidt834328a2012-10-23 11:27:33 +02001453 }
1454
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001455 if (!eb)
1456 return NULL;
Jan Schmidtd6381082012-10-23 14:21:05 +02001457 extent_buffer_get(eb);
Jan Schmidt8ba97a12012-06-04 16:54:57 +02001458 btrfs_tree_read_lock(eb);
Jan Schmidta95236d2012-06-05 16:41:24 +02001459 if (old_root) {
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001460 btrfs_set_header_bytenr(eb, eb->start);
1461 btrfs_set_header_backref_rev(eb, BTRFS_MIXED_BACKREF_REV);
Filipe Mananaf0ed93d2019-08-12 19:14:29 +01001462 btrfs_set_header_owner(eb, eb_root_owner);
Jan Schmidta95236d2012-06-05 16:41:24 +02001463 btrfs_set_header_level(eb, old_root->level);
1464 btrfs_set_header_generation(eb, old_generation);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001465 }
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001466 if (tm)
Josef Bacikf1ca7e982013-06-29 23:15:19 -04001467 __tree_mod_log_rewind(root->fs_info, eb, time_seq, tm);
Jan Schmidt28da9fb2012-06-21 10:59:13 +02001468 else
1469 WARN_ON(btrfs_header_level(eb) != 0);
Jan Schmidt57911b82012-10-19 09:22:03 +02001470 WARN_ON(btrfs_header_nritems(eb) > BTRFS_NODEPTRS_PER_BLOCK(root));
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02001471
1472 return eb;
1473}
1474
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001475int btrfs_old_root_level(struct btrfs_root *root, u64 time_seq)
1476{
1477 struct tree_mod_elem *tm;
1478 int level;
Jan Schmidt30b04632013-04-13 13:19:54 +00001479 struct extent_buffer *eb_root = btrfs_root_node(root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001480
Jan Schmidt30b04632013-04-13 13:19:54 +00001481 tm = __tree_mod_log_oldest_root(root->fs_info, eb_root, time_seq);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001482 if (tm && tm->op == MOD_LOG_ROOT_REPLACE) {
1483 level = tm->old_root.level;
1484 } else {
Jan Schmidt30b04632013-04-13 13:19:54 +00001485 level = btrfs_header_level(eb_root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001486 }
Jan Schmidt30b04632013-04-13 13:19:54 +00001487 free_extent_buffer(eb_root);
Jan Schmidt5b6602e2012-10-23 11:28:27 +02001488
1489 return level;
1490}
1491
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001492static inline int should_cow_block(struct btrfs_trans_handle *trans,
1493 struct btrfs_root *root,
1494 struct extent_buffer *buf)
1495{
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04001496 if (btrfs_is_testing(root->fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04001497 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02001498
Liu Bof1ebcc72011-11-14 20:48:06 -05001499 /* ensure we can see the force_cow */
1500 smp_rmb();
1501
1502 /*
1503 * We do not need to cow a block if
1504 * 1) this block is not created or changed in this transaction;
1505 * 2) this block does not belong to TREE_RELOC tree;
1506 * 3) the root is not forced COW.
1507 *
1508 * What is forced COW:
Nicholas D Steeves01327612016-05-19 21:18:45 -04001509 * when we create snapshot during committing the transaction,
Liu Bof1ebcc72011-11-14 20:48:06 -05001510 * after we've finished coping src root, we must COW the shared
1511 * block to ensure the metadata consistency.
1512 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001513 if (btrfs_header_generation(buf) == trans->transid &&
1514 !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN) &&
1515 !(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
Liu Bof1ebcc72011-11-14 20:48:06 -05001516 btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)) &&
Miao Xie27cdeb72014-04-02 19:51:05 +08001517 !test_bit(BTRFS_ROOT_FORCE_COW, &root->state))
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001518 return 0;
1519 return 1;
1520}
1521
Chris Masond352ac62008-09-29 15:18:18 -04001522/*
1523 * cows a single block, see __btrfs_cow_block for the real work.
Nicholas D Steeves01327612016-05-19 21:18:45 -04001524 * This version of it has extra checks so that a block isn't COWed more than
Chris Masond352ac62008-09-29 15:18:18 -04001525 * once per transaction, as long as it hasn't been written yet
1526 */
Chris Masond3977122009-01-05 21:25:51 -05001527noinline int btrfs_cow_block(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001528 struct btrfs_root *root, struct extent_buffer *buf,
1529 struct extent_buffer *parent, int parent_slot,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001530 struct extent_buffer **cow_ret)
Chris Mason02217ed2007-03-02 16:08:05 -05001531{
Chris Mason6702ed42007-08-07 16:15:09 -04001532 u64 search_start;
Chris Masonf510cfe2007-10-15 16:14:48 -04001533 int ret;
Chris Masondc17ff82008-01-08 15:46:30 -05001534
Julia Lawall31b1a2b2012-11-03 10:58:34 +00001535 if (trans->transaction != root->fs_info->running_transaction)
1536 WARN(1, KERN_CRIT "trans %llu running %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001537 trans->transid,
Chris Masonccd467d2007-06-28 15:57:36 -04001538 root->fs_info->running_transaction->transid);
Julia Lawall31b1a2b2012-11-03 10:58:34 +00001539
1540 if (trans->transid != root->fs_info->generation)
1541 WARN(1, KERN_CRIT "trans %llu running %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001542 trans->transid, root->fs_info->generation);
Chris Masondc17ff82008-01-08 15:46:30 -05001543
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001544 if (!should_cow_block(trans, root, buf)) {
Jeff Mahoney64c12922016-06-08 00:36:38 -04001545 trans->dirty = true;
Chris Mason02217ed2007-03-02 16:08:05 -05001546 *cow_ret = buf;
1547 return 0;
1548 }
Chris Masonc4876852009-02-04 09:24:25 -05001549
Byongho Leeee221842015-12-15 01:42:10 +09001550 search_start = buf->start & ~((u64)SZ_1G - 1);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001551
1552 if (parent)
1553 btrfs_set_lock_blocking(parent);
1554 btrfs_set_lock_blocking(buf);
1555
Chris Masonf510cfe2007-10-15 16:14:48 -04001556 ret = __btrfs_cow_block(trans, root, buf, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001557 parent_slot, cow_ret, search_start, 0);
liubo1abe9b82011-03-24 11:18:59 +00001558
1559 trace_btrfs_cow_block(root, buf, *cow_ret);
1560
Chris Masonf510cfe2007-10-15 16:14:48 -04001561 return ret;
Chris Mason6702ed42007-08-07 16:15:09 -04001562}
1563
Chris Masond352ac62008-09-29 15:18:18 -04001564/*
1565 * helper function for defrag to decide if two blocks pointed to by a
1566 * node are actually close by
1567 */
Chris Mason6b800532007-10-15 16:17:34 -04001568static int close_blocks(u64 blocknr, u64 other, u32 blocksize)
Chris Mason6702ed42007-08-07 16:15:09 -04001569{
Chris Mason6b800532007-10-15 16:17:34 -04001570 if (blocknr < other && other - (blocknr + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -04001571 return 1;
Chris Mason6b800532007-10-15 16:17:34 -04001572 if (blocknr > other && blocknr - (other + blocksize) < 32768)
Chris Mason6702ed42007-08-07 16:15:09 -04001573 return 1;
Chris Mason02217ed2007-03-02 16:08:05 -05001574 return 0;
1575}
1576
Chris Mason081e9572007-11-06 10:26:24 -05001577/*
1578 * compare two keys in a memcmp fashion
1579 */
1580static int comp_keys(struct btrfs_disk_key *disk, struct btrfs_key *k2)
1581{
1582 struct btrfs_key k1;
1583
1584 btrfs_disk_key_to_cpu(&k1, disk);
1585
Diego Calleja20736ab2009-07-24 11:06:52 -04001586 return btrfs_comp_cpu_keys(&k1, k2);
Chris Mason081e9572007-11-06 10:26:24 -05001587}
1588
Josef Bacikf3465ca2008-11-12 14:19:50 -05001589/*
1590 * same as comp_keys only with two btrfs_key's
1591 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001592int btrfs_comp_cpu_keys(struct btrfs_key *k1, struct btrfs_key *k2)
Josef Bacikf3465ca2008-11-12 14:19:50 -05001593{
1594 if (k1->objectid > k2->objectid)
1595 return 1;
1596 if (k1->objectid < k2->objectid)
1597 return -1;
1598 if (k1->type > k2->type)
1599 return 1;
1600 if (k1->type < k2->type)
1601 return -1;
1602 if (k1->offset > k2->offset)
1603 return 1;
1604 if (k1->offset < k2->offset)
1605 return -1;
1606 return 0;
1607}
Chris Mason081e9572007-11-06 10:26:24 -05001608
Chris Masond352ac62008-09-29 15:18:18 -04001609/*
1610 * this is used by the defrag code to go through all the
1611 * leaves pointed to by a node and reallocate them so that
1612 * disk order is close to key order
1613 */
Chris Mason6702ed42007-08-07 16:15:09 -04001614int btrfs_realloc_node(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04001615 struct btrfs_root *root, struct extent_buffer *parent,
Eric Sandeende78b512013-01-31 18:21:12 +00001616 int start_slot, u64 *last_ret,
Chris Masona6b6e752007-10-15 16:22:39 -04001617 struct btrfs_key *progress)
Chris Mason6702ed42007-08-07 16:15:09 -04001618{
Chris Mason6b800532007-10-15 16:17:34 -04001619 struct extent_buffer *cur;
Chris Mason6702ed42007-08-07 16:15:09 -04001620 u64 blocknr;
Chris Masonca7a79a2008-05-12 12:59:19 -04001621 u64 gen;
Chris Masone9d0b132007-08-10 14:06:19 -04001622 u64 search_start = *last_ret;
1623 u64 last_block = 0;
Chris Mason6702ed42007-08-07 16:15:09 -04001624 u64 other;
1625 u32 parent_nritems;
Chris Mason6702ed42007-08-07 16:15:09 -04001626 int end_slot;
1627 int i;
1628 int err = 0;
Chris Masonf2183bd2007-08-10 14:42:37 -04001629 int parent_level;
Chris Mason6b800532007-10-15 16:17:34 -04001630 int uptodate;
1631 u32 blocksize;
Chris Mason081e9572007-11-06 10:26:24 -05001632 int progress_passed = 0;
1633 struct btrfs_disk_key disk_key;
Chris Mason6702ed42007-08-07 16:15:09 -04001634
Chris Mason5708b952007-10-25 15:43:18 -04001635 parent_level = btrfs_header_level(parent);
Chris Mason5708b952007-10-25 15:43:18 -04001636
Julia Lawall6c1500f2012-11-03 20:30:18 +00001637 WARN_ON(trans->transaction != root->fs_info->running_transaction);
1638 WARN_ON(trans->transid != root->fs_info->generation);
Chris Mason86479a02007-09-10 19:58:16 -04001639
Chris Mason6b800532007-10-15 16:17:34 -04001640 parent_nritems = btrfs_header_nritems(parent);
David Sterba707e8a02014-06-04 19:22:26 +02001641 blocksize = root->nodesize;
Filipe Manana5dfe2be2015-02-23 19:48:52 +00001642 end_slot = parent_nritems - 1;
Chris Mason6702ed42007-08-07 16:15:09 -04001643
Filipe Manana5dfe2be2015-02-23 19:48:52 +00001644 if (parent_nritems <= 1)
Chris Mason6702ed42007-08-07 16:15:09 -04001645 return 0;
1646
Chris Masonb4ce94d2009-02-04 09:25:08 -05001647 btrfs_set_lock_blocking(parent);
1648
Filipe Manana5dfe2be2015-02-23 19:48:52 +00001649 for (i = start_slot; i <= end_slot; i++) {
Chris Mason6702ed42007-08-07 16:15:09 -04001650 int close = 1;
Chris Masona6b6e752007-10-15 16:22:39 -04001651
Chris Mason081e9572007-11-06 10:26:24 -05001652 btrfs_node_key(parent, &disk_key, i);
1653 if (!progress_passed && comp_keys(&disk_key, progress) < 0)
1654 continue;
1655
1656 progress_passed = 1;
Chris Mason6b800532007-10-15 16:17:34 -04001657 blocknr = btrfs_node_blockptr(parent, i);
Chris Masonca7a79a2008-05-12 12:59:19 -04001658 gen = btrfs_node_ptr_generation(parent, i);
Chris Masone9d0b132007-08-10 14:06:19 -04001659 if (last_block == 0)
1660 last_block = blocknr;
Chris Mason5708b952007-10-25 15:43:18 -04001661
Chris Mason6702ed42007-08-07 16:15:09 -04001662 if (i > 0) {
Chris Mason6b800532007-10-15 16:17:34 -04001663 other = btrfs_node_blockptr(parent, i - 1);
1664 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -04001665 }
Filipe Manana5dfe2be2015-02-23 19:48:52 +00001666 if (!close && i < end_slot) {
Chris Mason6b800532007-10-15 16:17:34 -04001667 other = btrfs_node_blockptr(parent, i + 1);
1668 close = close_blocks(blocknr, other, blocksize);
Chris Mason6702ed42007-08-07 16:15:09 -04001669 }
Chris Masone9d0b132007-08-10 14:06:19 -04001670 if (close) {
1671 last_block = blocknr;
Chris Mason6702ed42007-08-07 16:15:09 -04001672 continue;
Chris Masone9d0b132007-08-10 14:06:19 -04001673 }
Chris Mason6702ed42007-08-07 16:15:09 -04001674
Daniel Dressler01d58472014-11-21 17:15:07 +09001675 cur = btrfs_find_tree_block(root->fs_info, blocknr);
Chris Mason6b800532007-10-15 16:17:34 -04001676 if (cur)
Chris Masonb9fab912012-05-06 07:23:47 -04001677 uptodate = btrfs_buffer_uptodate(cur, gen, 0);
Chris Mason6b800532007-10-15 16:17:34 -04001678 else
1679 uptodate = 0;
Chris Mason5708b952007-10-25 15:43:18 -04001680 if (!cur || !uptodate) {
Chris Mason6b800532007-10-15 16:17:34 -04001681 if (!cur) {
David Sterbace86cd52014-06-15 01:07:32 +02001682 cur = read_tree_block(root, blocknr, gen);
Liu Bo64c043d2015-05-25 17:30:15 +08001683 if (IS_ERR(cur)) {
1684 return PTR_ERR(cur);
1685 } else if (!extent_buffer_uptodate(cur)) {
Josef Bacik416bc652013-04-23 14:17:42 -04001686 free_extent_buffer(cur);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00001687 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04001688 }
Chris Mason6b800532007-10-15 16:17:34 -04001689 } else if (!uptodate) {
Tsutomu Itoh018642a2012-05-29 18:10:13 +09001690 err = btrfs_read_buffer(cur, gen);
1691 if (err) {
1692 free_extent_buffer(cur);
1693 return err;
1694 }
Chris Masonf2183bd2007-08-10 14:42:37 -04001695 }
Chris Mason6702ed42007-08-07 16:15:09 -04001696 }
Chris Masone9d0b132007-08-10 14:06:19 -04001697 if (search_start == 0)
Chris Mason6b800532007-10-15 16:17:34 -04001698 search_start = last_block;
Chris Masone9d0b132007-08-10 14:06:19 -04001699
Chris Masone7a84562008-06-25 16:01:31 -04001700 btrfs_tree_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001701 btrfs_set_lock_blocking(cur);
Chris Mason6b800532007-10-15 16:17:34 -04001702 err = __btrfs_cow_block(trans, root, cur, parent, i,
Chris Masone7a84562008-06-25 16:01:31 -04001703 &cur, search_start,
Chris Mason6b800532007-10-15 16:17:34 -04001704 min(16 * blocksize,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001705 (end_slot - i) * blocksize));
Yan252c38f2007-08-29 09:11:44 -04001706 if (err) {
Chris Masone7a84562008-06-25 16:01:31 -04001707 btrfs_tree_unlock(cur);
Chris Mason6b800532007-10-15 16:17:34 -04001708 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -04001709 break;
Yan252c38f2007-08-29 09:11:44 -04001710 }
Chris Masone7a84562008-06-25 16:01:31 -04001711 search_start = cur->start;
1712 last_block = cur->start;
Chris Masonf2183bd2007-08-10 14:42:37 -04001713 *last_ret = search_start;
Chris Masone7a84562008-06-25 16:01:31 -04001714 btrfs_tree_unlock(cur);
1715 free_extent_buffer(cur);
Chris Mason6702ed42007-08-07 16:15:09 -04001716 }
1717 return err;
1718}
1719
Chris Masonaa5d6be2007-02-28 16:35:06 -05001720
Chris Mason74123bd2007-02-02 11:05:29 -05001721/*
Chris Mason5f39d392007-10-15 16:14:19 -04001722 * search for key in the extent_buffer. The items start at offset p,
1723 * and they are item_size apart. There are 'max' items in p.
1724 *
Chris Mason74123bd2007-02-02 11:05:29 -05001725 * the slot in the array is returned via slot, and it points to
1726 * the place where you would insert key if it is not found in
1727 * the array.
1728 *
1729 * slot may point to max if the key is bigger than all of the keys
1730 */
Chris Masone02119d2008-09-05 16:13:11 -04001731static noinline int generic_bin_search(struct extent_buffer *eb,
1732 unsigned long p,
1733 int item_size, struct btrfs_key *key,
1734 int max, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001735{
1736 int low = 0;
1737 int high = max;
1738 int mid;
1739 int ret;
Chris Mason479965d2007-10-15 16:14:27 -04001740 struct btrfs_disk_key *tmp = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001741 struct btrfs_disk_key unaligned;
1742 unsigned long offset;
Chris Mason5f39d392007-10-15 16:14:19 -04001743 char *kaddr = NULL;
1744 unsigned long map_start = 0;
1745 unsigned long map_len = 0;
Chris Mason479965d2007-10-15 16:14:27 -04001746 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05001747
Liu Bo5e24e9a2016-06-23 16:32:45 -07001748 if (low > high) {
1749 btrfs_err(eb->fs_info,
1750 "%s: low (%d) > high (%d) eb %llu owner %llu level %d",
1751 __func__, low, high, eb->start,
1752 btrfs_header_owner(eb), btrfs_header_level(eb));
1753 return -EINVAL;
1754 }
1755
Chris Masond3977122009-01-05 21:25:51 -05001756 while (low < high) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05001757 mid = (low + high) / 2;
Chris Mason5f39d392007-10-15 16:14:19 -04001758 offset = p + mid * item_size;
1759
Chris Masona6591712011-07-19 12:04:14 -04001760 if (!kaddr || offset < map_start ||
Chris Mason5f39d392007-10-15 16:14:19 -04001761 (offset + sizeof(struct btrfs_disk_key)) >
1762 map_start + map_len) {
Chris Mason934d3752008-12-08 16:43:10 -05001763
1764 err = map_private_extent_buffer(eb, offset,
Chris Mason479965d2007-10-15 16:14:27 -04001765 sizeof(struct btrfs_disk_key),
Chris Masona6591712011-07-19 12:04:14 -04001766 &kaddr, &map_start, &map_len);
Chris Mason5f39d392007-10-15 16:14:19 -04001767
Chris Mason479965d2007-10-15 16:14:27 -04001768 if (!err) {
1769 tmp = (struct btrfs_disk_key *)(kaddr + offset -
1770 map_start);
Liu Bo415b35a2016-06-17 19:16:21 -07001771 } else if (err == 1) {
Chris Mason479965d2007-10-15 16:14:27 -04001772 read_extent_buffer(eb, &unaligned,
1773 offset, sizeof(unaligned));
1774 tmp = &unaligned;
Liu Bo415b35a2016-06-17 19:16:21 -07001775 } else {
1776 return err;
Chris Mason479965d2007-10-15 16:14:27 -04001777 }
1778
Chris Mason5f39d392007-10-15 16:14:19 -04001779 } else {
1780 tmp = (struct btrfs_disk_key *)(kaddr + offset -
1781 map_start);
1782 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05001783 ret = comp_keys(tmp, key);
1784
1785 if (ret < 0)
1786 low = mid + 1;
1787 else if (ret > 0)
1788 high = mid;
1789 else {
1790 *slot = mid;
1791 return 0;
1792 }
1793 }
1794 *slot = low;
1795 return 1;
1796}
1797
Chris Mason97571fd2007-02-24 13:39:08 -05001798/*
1799 * simple bin_search frontend that does the right thing for
1800 * leaves vs nodes
1801 */
Chris Mason5f39d392007-10-15 16:14:19 -04001802static int bin_search(struct extent_buffer *eb, struct btrfs_key *key,
1803 int level, int *slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05001804{
Wang Sheng-Huif7757382012-03-30 15:14:27 +08001805 if (level == 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001806 return generic_bin_search(eb,
1807 offsetof(struct btrfs_leaf, items),
Chris Mason0783fcf2007-03-12 20:12:07 -04001808 sizeof(struct btrfs_item),
Chris Mason5f39d392007-10-15 16:14:19 -04001809 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -04001810 slot);
Wang Sheng-Huif7757382012-03-30 15:14:27 +08001811 else
Chris Mason5f39d392007-10-15 16:14:19 -04001812 return generic_bin_search(eb,
1813 offsetof(struct btrfs_node, ptrs),
Chris Mason123abc82007-03-14 14:14:43 -04001814 sizeof(struct btrfs_key_ptr),
Chris Mason5f39d392007-10-15 16:14:19 -04001815 key, btrfs_header_nritems(eb),
Chris Mason7518a232007-03-12 12:01:18 -04001816 slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05001817}
1818
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001819int btrfs_bin_search(struct extent_buffer *eb, struct btrfs_key *key,
1820 int level, int *slot)
1821{
1822 return bin_search(eb, key, level, slot);
1823}
1824
Yan, Zhengf0486c62010-05-16 10:46:25 -04001825static void root_add_used(struct btrfs_root *root, u32 size)
1826{
1827 spin_lock(&root->accounting_lock);
1828 btrfs_set_root_used(&root->root_item,
1829 btrfs_root_used(&root->root_item) + size);
1830 spin_unlock(&root->accounting_lock);
1831}
1832
1833static void root_sub_used(struct btrfs_root *root, u32 size)
1834{
1835 spin_lock(&root->accounting_lock);
1836 btrfs_set_root_used(&root->root_item,
1837 btrfs_root_used(&root->root_item) - size);
1838 spin_unlock(&root->accounting_lock);
1839}
1840
Chris Masond352ac62008-09-29 15:18:18 -04001841/* given a node and slot number, this reads the blocks it points to. The
1842 * extent buffer is returned with a reference taken (but unlocked).
Chris Masond352ac62008-09-29 15:18:18 -04001843 */
Chris Masone02119d2008-09-05 16:13:11 -04001844static noinline struct extent_buffer *read_node_slot(struct btrfs_root *root,
Chris Mason5f39d392007-10-15 16:14:19 -04001845 struct extent_buffer *parent, int slot)
Chris Masonbb803952007-03-01 12:04:21 -05001846{
Chris Masonca7a79a2008-05-12 12:59:19 -04001847 int level = btrfs_header_level(parent);
Josef Bacik416bc652013-04-23 14:17:42 -04001848 struct extent_buffer *eb;
1849
Liu Bofb770ae2016-07-05 12:10:14 -07001850 if (slot < 0 || slot >= btrfs_header_nritems(parent))
1851 return ERR_PTR(-ENOENT);
Chris Masonca7a79a2008-05-12 12:59:19 -04001852
1853 BUG_ON(level == 0);
1854
Josef Bacik416bc652013-04-23 14:17:42 -04001855 eb = read_tree_block(root, btrfs_node_blockptr(parent, slot),
Josef Bacik416bc652013-04-23 14:17:42 -04001856 btrfs_node_ptr_generation(parent, slot));
Liu Bofb770ae2016-07-05 12:10:14 -07001857 if (!IS_ERR(eb) && !extent_buffer_uptodate(eb)) {
1858 free_extent_buffer(eb);
1859 eb = ERR_PTR(-EIO);
Josef Bacik416bc652013-04-23 14:17:42 -04001860 }
1861
1862 return eb;
Chris Masonbb803952007-03-01 12:04:21 -05001863}
1864
Chris Masond352ac62008-09-29 15:18:18 -04001865/*
1866 * node level balancing, used to make sure nodes are in proper order for
1867 * item deletion. We balance from the top down, so we have to make sure
1868 * that a deletion won't leave an node completely empty later on.
1869 */
Chris Masone02119d2008-09-05 16:13:11 -04001870static noinline int balance_level(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05001871 struct btrfs_root *root,
1872 struct btrfs_path *path, int level)
Chris Masonbb803952007-03-01 12:04:21 -05001873{
Chris Mason5f39d392007-10-15 16:14:19 -04001874 struct extent_buffer *right = NULL;
1875 struct extent_buffer *mid;
1876 struct extent_buffer *left = NULL;
1877 struct extent_buffer *parent = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05001878 int ret = 0;
1879 int wret;
1880 int pslot;
Chris Masonbb803952007-03-01 12:04:21 -05001881 int orig_slot = path->slots[level];
Chris Mason79f95c82007-03-01 15:16:26 -05001882 u64 orig_ptr;
Chris Masonbb803952007-03-01 12:04:21 -05001883
1884 if (level == 0)
1885 return 0;
1886
Chris Mason5f39d392007-10-15 16:14:19 -04001887 mid = path->nodes[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05001888
Chris Masonbd681512011-07-16 15:23:14 -04001889 WARN_ON(path->locks[level] != BTRFS_WRITE_LOCK &&
1890 path->locks[level] != BTRFS_WRITE_LOCK_BLOCKING);
Chris Mason7bb86312007-12-11 09:25:06 -05001891 WARN_ON(btrfs_header_generation(mid) != trans->transid);
1892
Chris Mason1d4f8a02007-03-13 09:28:32 -04001893 orig_ptr = btrfs_node_blockptr(mid, orig_slot);
Chris Mason79f95c82007-03-01 15:16:26 -05001894
Li Zefana05a9bb2011-09-06 16:55:34 +08001895 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001896 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +08001897 pslot = path->slots[level + 1];
1898 }
Chris Masonbb803952007-03-01 12:04:21 -05001899
Chris Mason40689472007-03-17 14:29:23 -04001900 /*
1901 * deal with the case where there is only one pointer in the root
1902 * by promoting the node below to a root
1903 */
Chris Mason5f39d392007-10-15 16:14:19 -04001904 if (!parent) {
1905 struct extent_buffer *child;
Chris Masonbb803952007-03-01 12:04:21 -05001906
Chris Mason5f39d392007-10-15 16:14:19 -04001907 if (btrfs_header_nritems(mid) != 1)
Chris Masonbb803952007-03-01 12:04:21 -05001908 return 0;
1909
1910 /* promote the child to a root */
Chris Mason5f39d392007-10-15 16:14:19 -04001911 child = read_node_slot(root, mid, 0);
Liu Bofb770ae2016-07-05 12:10:14 -07001912 if (IS_ERR(child)) {
1913 ret = PTR_ERR(child);
Anand Jain34d97002016-03-16 16:43:06 +08001914 btrfs_handle_fs_error(root->fs_info, ret, NULL);
Mark Fasheh305a26a2011-09-01 11:27:57 -07001915 goto enospc;
1916 }
1917
Chris Mason925baed2008-06-25 16:01:30 -04001918 btrfs_tree_lock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001919 btrfs_set_lock_blocking(child);
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001920 ret = btrfs_cow_block(trans, root, child, mid, 0, &child);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001921 if (ret) {
1922 btrfs_tree_unlock(child);
1923 free_extent_buffer(child);
1924 goto enospc;
1925 }
Yan2f375ab2008-02-01 14:58:07 -05001926
Jan Schmidt90f8d622013-04-13 13:19:53 +00001927 tree_mod_log_set_root_pointer(root, child, 1);
Chris Mason240f62c2011-03-23 14:54:42 -04001928 rcu_assign_pointer(root->node, child);
Chris Mason925baed2008-06-25 16:01:30 -04001929
Chris Mason0b86a832008-03-24 15:01:56 -04001930 add_root_to_dirty_list(root);
Chris Mason925baed2008-06-25 16:01:30 -04001931 btrfs_tree_unlock(child);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001932
Chris Mason925baed2008-06-25 16:01:30 -04001933 path->locks[level] = 0;
Chris Masonbb803952007-03-01 12:04:21 -05001934 path->nodes[level] = NULL;
Daniel Dressler01d58472014-11-21 17:15:07 +09001935 clean_tree_block(trans, root->fs_info, mid);
Chris Mason925baed2008-06-25 16:01:30 -04001936 btrfs_tree_unlock(mid);
Chris Masonbb803952007-03-01 12:04:21 -05001937 /* once for the path */
Chris Mason5f39d392007-10-15 16:14:19 -04001938 free_extent_buffer(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001939
1940 root_sub_used(root, mid->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02001941 btrfs_free_tree_block(trans, root, mid, 0, 1);
Chris Masonbb803952007-03-01 12:04:21 -05001942 /* once for the root ptr */
Josef Bacik3083ee22012-03-09 16:01:49 -05001943 free_extent_buffer_stale(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001944 return 0;
Chris Masonbb803952007-03-01 12:04:21 -05001945 }
Chris Mason5f39d392007-10-15 16:14:19 -04001946 if (btrfs_header_nritems(mid) >
Chris Mason123abc82007-03-14 14:14:43 -04001947 BTRFS_NODEPTRS_PER_BLOCK(root) / 4)
Chris Masonbb803952007-03-01 12:04:21 -05001948 return 0;
1949
Chris Mason5f39d392007-10-15 16:14:19 -04001950 left = read_node_slot(root, parent, pslot - 1);
Liu Bofb770ae2016-07-05 12:10:14 -07001951 if (IS_ERR(left))
1952 left = NULL;
1953
Chris Mason5f39d392007-10-15 16:14:19 -04001954 if (left) {
Chris Mason925baed2008-06-25 16:01:30 -04001955 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001956 btrfs_set_lock_blocking(left);
Chris Mason5f39d392007-10-15 16:14:19 -04001957 wret = btrfs_cow_block(trans, root, left,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001958 parent, pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04001959 if (wret) {
1960 ret = wret;
1961 goto enospc;
1962 }
Chris Mason2cc58cf2007-08-27 16:49:44 -04001963 }
Liu Bofb770ae2016-07-05 12:10:14 -07001964
Chris Mason5f39d392007-10-15 16:14:19 -04001965 right = read_node_slot(root, parent, pslot + 1);
Liu Bofb770ae2016-07-05 12:10:14 -07001966 if (IS_ERR(right))
1967 right = NULL;
1968
Chris Mason5f39d392007-10-15 16:14:19 -04001969 if (right) {
Chris Mason925baed2008-06-25 16:01:30 -04001970 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05001971 btrfs_set_lock_blocking(right);
Chris Mason5f39d392007-10-15 16:14:19 -04001972 wret = btrfs_cow_block(trans, root, right,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04001973 parent, pslot + 1, &right);
Chris Mason2cc58cf2007-08-27 16:49:44 -04001974 if (wret) {
1975 ret = wret;
1976 goto enospc;
1977 }
1978 }
1979
1980 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04001981 if (left) {
1982 orig_slot += btrfs_header_nritems(left);
Chris Masonbce4eae2008-04-24 14:42:46 -04001983 wret = push_node_left(trans, root, left, mid, 1);
Chris Mason79f95c82007-03-01 15:16:26 -05001984 if (wret < 0)
1985 ret = wret;
Chris Masonbb803952007-03-01 12:04:21 -05001986 }
Chris Mason79f95c82007-03-01 15:16:26 -05001987
1988 /*
1989 * then try to empty the right most buffer into the middle
1990 */
Chris Mason5f39d392007-10-15 16:14:19 -04001991 if (right) {
Chris Mason971a1f62008-04-24 10:54:32 -04001992 wret = push_node_left(trans, root, mid, right, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04001993 if (wret < 0 && wret != -ENOSPC)
Chris Mason79f95c82007-03-01 15:16:26 -05001994 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04001995 if (btrfs_header_nritems(right) == 0) {
Daniel Dressler01d58472014-11-21 17:15:07 +09001996 clean_tree_block(trans, root->fs_info, right);
Chris Mason925baed2008-06-25 16:01:30 -04001997 btrfs_tree_unlock(right);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001998 del_ptr(root, path, level + 1, pslot + 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04001999 root_sub_used(root, right->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02002000 btrfs_free_tree_block(trans, root, right, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05002001 free_extent_buffer_stale(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002002 right = NULL;
Chris Masonbb803952007-03-01 12:04:21 -05002003 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002004 struct btrfs_disk_key right_key;
2005 btrfs_node_key(right, &right_key, 0);
Jan Schmidtf2304752012-05-26 11:43:17 +02002006 tree_mod_log_set_node_key(root->fs_info, parent,
Liu Bo32adf092012-10-19 12:52:15 +00002007 pslot + 1, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002008 btrfs_set_node_key(parent, &right_key, pslot + 1);
2009 btrfs_mark_buffer_dirty(parent);
Chris Masonbb803952007-03-01 12:04:21 -05002010 }
2011 }
Chris Mason5f39d392007-10-15 16:14:19 -04002012 if (btrfs_header_nritems(mid) == 1) {
Chris Mason79f95c82007-03-01 15:16:26 -05002013 /*
2014 * we're not allowed to leave a node with one item in the
2015 * tree during a delete. A deletion from lower in the tree
2016 * could try to delete the only pointer in this node.
2017 * So, pull some keys from the left.
2018 * There has to be a left pointer at this point because
2019 * otherwise we would have pulled some pointers from the
2020 * right
2021 */
Mark Fasheh305a26a2011-09-01 11:27:57 -07002022 if (!left) {
2023 ret = -EROFS;
Anand Jain34d97002016-03-16 16:43:06 +08002024 btrfs_handle_fs_error(root->fs_info, ret, NULL);
Mark Fasheh305a26a2011-09-01 11:27:57 -07002025 goto enospc;
2026 }
Chris Mason5f39d392007-10-15 16:14:19 -04002027 wret = balance_node_right(trans, root, mid, left);
Chris Mason54aa1f42007-06-22 14:16:25 -04002028 if (wret < 0) {
Chris Mason79f95c82007-03-01 15:16:26 -05002029 ret = wret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002030 goto enospc;
2031 }
Chris Masonbce4eae2008-04-24 14:42:46 -04002032 if (wret == 1) {
2033 wret = push_node_left(trans, root, left, mid, 1);
2034 if (wret < 0)
2035 ret = wret;
2036 }
Chris Mason79f95c82007-03-01 15:16:26 -05002037 BUG_ON(wret == 1);
2038 }
Chris Mason5f39d392007-10-15 16:14:19 -04002039 if (btrfs_header_nritems(mid) == 0) {
Daniel Dressler01d58472014-11-21 17:15:07 +09002040 clean_tree_block(trans, root->fs_info, mid);
Chris Mason925baed2008-06-25 16:01:30 -04002041 btrfs_tree_unlock(mid);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00002042 del_ptr(root, path, level + 1, pslot);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002043 root_sub_used(root, mid->len);
Jan Schmidt5581a512012-05-16 17:04:52 +02002044 btrfs_free_tree_block(trans, root, mid, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05002045 free_extent_buffer_stale(mid);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002046 mid = NULL;
Chris Mason79f95c82007-03-01 15:16:26 -05002047 } else {
2048 /* update the parent key to reflect our changes */
Chris Mason5f39d392007-10-15 16:14:19 -04002049 struct btrfs_disk_key mid_key;
2050 btrfs_node_key(mid, &mid_key, 0);
Liu Bo32adf092012-10-19 12:52:15 +00002051 tree_mod_log_set_node_key(root->fs_info, parent,
Jan Schmidtf2304752012-05-26 11:43:17 +02002052 pslot, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002053 btrfs_set_node_key(parent, &mid_key, pslot);
2054 btrfs_mark_buffer_dirty(parent);
Chris Mason79f95c82007-03-01 15:16:26 -05002055 }
Chris Masonbb803952007-03-01 12:04:21 -05002056
Chris Mason79f95c82007-03-01 15:16:26 -05002057 /* update the path */
Chris Mason5f39d392007-10-15 16:14:19 -04002058 if (left) {
2059 if (btrfs_header_nritems(left) > orig_slot) {
2060 extent_buffer_get(left);
Chris Mason925baed2008-06-25 16:01:30 -04002061 /* left was locked after cow */
Chris Mason5f39d392007-10-15 16:14:19 -04002062 path->nodes[level] = left;
Chris Masonbb803952007-03-01 12:04:21 -05002063 path->slots[level + 1] -= 1;
2064 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002065 if (mid) {
2066 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002067 free_extent_buffer(mid);
Chris Mason925baed2008-06-25 16:01:30 -04002068 }
Chris Masonbb803952007-03-01 12:04:21 -05002069 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002070 orig_slot -= btrfs_header_nritems(left);
Chris Masonbb803952007-03-01 12:04:21 -05002071 path->slots[level] = orig_slot;
2072 }
2073 }
Chris Mason79f95c82007-03-01 15:16:26 -05002074 /* double check we haven't messed things up */
Chris Masone20d96d2007-03-22 12:13:20 -04002075 if (orig_ptr !=
Chris Mason5f39d392007-10-15 16:14:19 -04002076 btrfs_node_blockptr(path->nodes[level], path->slots[level]))
Chris Mason79f95c82007-03-01 15:16:26 -05002077 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04002078enospc:
Chris Mason925baed2008-06-25 16:01:30 -04002079 if (right) {
2080 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002081 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04002082 }
2083 if (left) {
2084 if (path->nodes[level] != left)
2085 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002086 free_extent_buffer(left);
Chris Mason925baed2008-06-25 16:01:30 -04002087 }
Chris Masonbb803952007-03-01 12:04:21 -05002088 return ret;
2089}
2090
Chris Masond352ac62008-09-29 15:18:18 -04002091/* Node balancing for insertion. Here we only split or push nodes around
2092 * when they are completely full. This is also done top down, so we
2093 * have to be pessimistic.
2094 */
Chris Masond3977122009-01-05 21:25:51 -05002095static noinline int push_nodes_for_insert(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05002096 struct btrfs_root *root,
2097 struct btrfs_path *path, int level)
Chris Masone66f7092007-04-20 13:16:02 -04002098{
Chris Mason5f39d392007-10-15 16:14:19 -04002099 struct extent_buffer *right = NULL;
2100 struct extent_buffer *mid;
2101 struct extent_buffer *left = NULL;
2102 struct extent_buffer *parent = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04002103 int ret = 0;
2104 int wret;
2105 int pslot;
2106 int orig_slot = path->slots[level];
Chris Masone66f7092007-04-20 13:16:02 -04002107
2108 if (level == 0)
2109 return 1;
2110
Chris Mason5f39d392007-10-15 16:14:19 -04002111 mid = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05002112 WARN_ON(btrfs_header_generation(mid) != trans->transid);
Chris Masone66f7092007-04-20 13:16:02 -04002113
Li Zefana05a9bb2011-09-06 16:55:34 +08002114 if (level < BTRFS_MAX_LEVEL - 1) {
Chris Mason5f39d392007-10-15 16:14:19 -04002115 parent = path->nodes[level + 1];
Li Zefana05a9bb2011-09-06 16:55:34 +08002116 pslot = path->slots[level + 1];
2117 }
Chris Masone66f7092007-04-20 13:16:02 -04002118
Chris Mason5f39d392007-10-15 16:14:19 -04002119 if (!parent)
Chris Masone66f7092007-04-20 13:16:02 -04002120 return 1;
Chris Masone66f7092007-04-20 13:16:02 -04002121
Chris Mason5f39d392007-10-15 16:14:19 -04002122 left = read_node_slot(root, parent, pslot - 1);
Liu Bofb770ae2016-07-05 12:10:14 -07002123 if (IS_ERR(left))
2124 left = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04002125
2126 /* first, try to make some room in the middle buffer */
Chris Mason5f39d392007-10-15 16:14:19 -04002127 if (left) {
Chris Masone66f7092007-04-20 13:16:02 -04002128 u32 left_nr;
Chris Mason925baed2008-06-25 16:01:30 -04002129
2130 btrfs_tree_lock(left);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002131 btrfs_set_lock_blocking(left);
2132
Chris Mason5f39d392007-10-15 16:14:19 -04002133 left_nr = btrfs_header_nritems(left);
Chris Mason33ade1f2007-04-20 13:48:57 -04002134 if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
2135 wret = 1;
2136 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002137 ret = btrfs_cow_block(trans, root, left, parent,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04002138 pslot - 1, &left);
Chris Mason54aa1f42007-06-22 14:16:25 -04002139 if (ret)
2140 wret = 1;
2141 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04002142 wret = push_node_left(trans, root,
Chris Mason971a1f62008-04-24 10:54:32 -04002143 left, mid, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04002144 }
Chris Mason33ade1f2007-04-20 13:48:57 -04002145 }
Chris Masone66f7092007-04-20 13:16:02 -04002146 if (wret < 0)
2147 ret = wret;
2148 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002149 struct btrfs_disk_key disk_key;
Chris Masone66f7092007-04-20 13:16:02 -04002150 orig_slot += left_nr;
Chris Mason5f39d392007-10-15 16:14:19 -04002151 btrfs_node_key(mid, &disk_key, 0);
Jan Schmidtf2304752012-05-26 11:43:17 +02002152 tree_mod_log_set_node_key(root->fs_info, parent,
Liu Bo32adf092012-10-19 12:52:15 +00002153 pslot, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002154 btrfs_set_node_key(parent, &disk_key, pslot);
2155 btrfs_mark_buffer_dirty(parent);
2156 if (btrfs_header_nritems(left) > orig_slot) {
2157 path->nodes[level] = left;
Chris Masone66f7092007-04-20 13:16:02 -04002158 path->slots[level + 1] -= 1;
2159 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002160 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002161 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04002162 } else {
2163 orig_slot -=
Chris Mason5f39d392007-10-15 16:14:19 -04002164 btrfs_header_nritems(left);
Chris Masone66f7092007-04-20 13:16:02 -04002165 path->slots[level] = orig_slot;
Chris Mason925baed2008-06-25 16:01:30 -04002166 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002167 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04002168 }
Chris Masone66f7092007-04-20 13:16:02 -04002169 return 0;
2170 }
Chris Mason925baed2008-06-25 16:01:30 -04002171 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04002172 free_extent_buffer(left);
Chris Masone66f7092007-04-20 13:16:02 -04002173 }
Chris Mason925baed2008-06-25 16:01:30 -04002174 right = read_node_slot(root, parent, pslot + 1);
Liu Bofb770ae2016-07-05 12:10:14 -07002175 if (IS_ERR(right))
2176 right = NULL;
Chris Masone66f7092007-04-20 13:16:02 -04002177
2178 /*
2179 * then try to empty the right most buffer into the middle
2180 */
Chris Mason5f39d392007-10-15 16:14:19 -04002181 if (right) {
Chris Mason33ade1f2007-04-20 13:48:57 -04002182 u32 right_nr;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002183
Chris Mason925baed2008-06-25 16:01:30 -04002184 btrfs_tree_lock(right);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002185 btrfs_set_lock_blocking(right);
2186
Chris Mason5f39d392007-10-15 16:14:19 -04002187 right_nr = btrfs_header_nritems(right);
Chris Mason33ade1f2007-04-20 13:48:57 -04002188 if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(root) - 1) {
2189 wret = 1;
2190 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04002191 ret = btrfs_cow_block(trans, root, right,
2192 parent, pslot + 1,
Chris Mason9fa8cfe2009-03-13 10:24:59 -04002193 &right);
Chris Mason54aa1f42007-06-22 14:16:25 -04002194 if (ret)
2195 wret = 1;
2196 else {
Chris Mason54aa1f42007-06-22 14:16:25 -04002197 wret = balance_node_right(trans, root,
Chris Mason5f39d392007-10-15 16:14:19 -04002198 right, mid);
Chris Mason54aa1f42007-06-22 14:16:25 -04002199 }
Chris Mason33ade1f2007-04-20 13:48:57 -04002200 }
Chris Masone66f7092007-04-20 13:16:02 -04002201 if (wret < 0)
2202 ret = wret;
2203 if (wret == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002204 struct btrfs_disk_key disk_key;
2205
2206 btrfs_node_key(right, &disk_key, 0);
Jan Schmidtf2304752012-05-26 11:43:17 +02002207 tree_mod_log_set_node_key(root->fs_info, parent,
Liu Bo32adf092012-10-19 12:52:15 +00002208 pslot + 1, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002209 btrfs_set_node_key(parent, &disk_key, pslot + 1);
2210 btrfs_mark_buffer_dirty(parent);
2211
2212 if (btrfs_header_nritems(mid) <= orig_slot) {
2213 path->nodes[level] = right;
Chris Masone66f7092007-04-20 13:16:02 -04002214 path->slots[level + 1] += 1;
2215 path->slots[level] = orig_slot -
Chris Mason5f39d392007-10-15 16:14:19 -04002216 btrfs_header_nritems(mid);
Chris Mason925baed2008-06-25 16:01:30 -04002217 btrfs_tree_unlock(mid);
Chris Mason5f39d392007-10-15 16:14:19 -04002218 free_extent_buffer(mid);
Chris Masone66f7092007-04-20 13:16:02 -04002219 } else {
Chris Mason925baed2008-06-25 16:01:30 -04002220 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002221 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04002222 }
Chris Masone66f7092007-04-20 13:16:02 -04002223 return 0;
2224 }
Chris Mason925baed2008-06-25 16:01:30 -04002225 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04002226 free_extent_buffer(right);
Chris Masone66f7092007-04-20 13:16:02 -04002227 }
Chris Masone66f7092007-04-20 13:16:02 -04002228 return 1;
2229}
2230
Chris Mason74123bd2007-02-02 11:05:29 -05002231/*
Chris Masond352ac62008-09-29 15:18:18 -04002232 * readahead one full node of leaves, finding things that are close
2233 * to the block in 'slot', and triggering ra on them.
Chris Mason3c69fae2007-08-07 15:52:22 -04002234 */
Chris Masonc8c42862009-04-03 10:14:18 -04002235static void reada_for_search(struct btrfs_root *root,
2236 struct btrfs_path *path,
2237 int level, int slot, u64 objectid)
Chris Mason3c69fae2007-08-07 15:52:22 -04002238{
Chris Mason5f39d392007-10-15 16:14:19 -04002239 struct extent_buffer *node;
Chris Mason01f46652007-12-21 16:24:26 -05002240 struct btrfs_disk_key disk_key;
Chris Mason3c69fae2007-08-07 15:52:22 -04002241 u32 nritems;
Chris Mason3c69fae2007-08-07 15:52:22 -04002242 u64 search;
Chris Masona7175312009-01-22 09:23:10 -05002243 u64 target;
Chris Mason6b800532007-10-15 16:17:34 -04002244 u64 nread = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002245 struct extent_buffer *eb;
Chris Mason6b800532007-10-15 16:17:34 -04002246 u32 nr;
2247 u32 blocksize;
2248 u32 nscan = 0;
Chris Masondb945352007-10-15 16:15:53 -04002249
Chris Masona6b6e752007-10-15 16:22:39 -04002250 if (level != 1)
Chris Mason3c69fae2007-08-07 15:52:22 -04002251 return;
2252
Chris Mason6702ed42007-08-07 16:15:09 -04002253 if (!path->nodes[level])
2254 return;
2255
Chris Mason5f39d392007-10-15 16:14:19 -04002256 node = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04002257
Chris Mason3c69fae2007-08-07 15:52:22 -04002258 search = btrfs_node_blockptr(node, slot);
David Sterba707e8a02014-06-04 19:22:26 +02002259 blocksize = root->nodesize;
Daniel Dressler01d58472014-11-21 17:15:07 +09002260 eb = btrfs_find_tree_block(root->fs_info, search);
Chris Mason5f39d392007-10-15 16:14:19 -04002261 if (eb) {
2262 free_extent_buffer(eb);
Chris Mason3c69fae2007-08-07 15:52:22 -04002263 return;
2264 }
2265
Chris Masona7175312009-01-22 09:23:10 -05002266 target = search;
Chris Mason6b800532007-10-15 16:17:34 -04002267
Chris Mason5f39d392007-10-15 16:14:19 -04002268 nritems = btrfs_header_nritems(node);
Chris Mason6b800532007-10-15 16:17:34 -04002269 nr = slot;
Josef Bacik25b8b932011-06-08 14:36:54 -04002270
Chris Masond3977122009-01-05 21:25:51 -05002271 while (1) {
David Sterbae4058b52015-11-27 16:31:35 +01002272 if (path->reada == READA_BACK) {
Chris Mason6b800532007-10-15 16:17:34 -04002273 if (nr == 0)
2274 break;
2275 nr--;
David Sterbae4058b52015-11-27 16:31:35 +01002276 } else if (path->reada == READA_FORWARD) {
Chris Mason6b800532007-10-15 16:17:34 -04002277 nr++;
2278 if (nr >= nritems)
2279 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04002280 }
David Sterbae4058b52015-11-27 16:31:35 +01002281 if (path->reada == READA_BACK && objectid) {
Chris Mason01f46652007-12-21 16:24:26 -05002282 btrfs_node_key(node, &disk_key, nr);
2283 if (btrfs_disk_key_objectid(&disk_key) != objectid)
2284 break;
2285 }
Chris Mason6b800532007-10-15 16:17:34 -04002286 search = btrfs_node_blockptr(node, nr);
Chris Masona7175312009-01-22 09:23:10 -05002287 if ((search <= target && target - search <= 65536) ||
2288 (search > target && search - target <= 65536)) {
David Sterbad3e46fe2014-06-15 02:04:19 +02002289 readahead_tree_block(root, search);
Chris Mason6b800532007-10-15 16:17:34 -04002290 nread += blocksize;
2291 }
2292 nscan++;
Chris Masona7175312009-01-22 09:23:10 -05002293 if ((nread > 65536 || nscan > 32))
Chris Mason6b800532007-10-15 16:17:34 -04002294 break;
Chris Mason3c69fae2007-08-07 15:52:22 -04002295 }
2296}
Chris Mason925baed2008-06-25 16:01:30 -04002297
Josef Bacik0b088512013-06-17 14:23:02 -04002298static noinline void reada_for_balance(struct btrfs_root *root,
2299 struct btrfs_path *path, int level)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002300{
2301 int slot;
2302 int nritems;
2303 struct extent_buffer *parent;
2304 struct extent_buffer *eb;
2305 u64 gen;
2306 u64 block1 = 0;
2307 u64 block2 = 0;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002308
Chris Mason8c594ea2009-04-20 15:50:10 -04002309 parent = path->nodes[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002310 if (!parent)
Josef Bacik0b088512013-06-17 14:23:02 -04002311 return;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002312
2313 nritems = btrfs_header_nritems(parent);
Chris Mason8c594ea2009-04-20 15:50:10 -04002314 slot = path->slots[level + 1];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002315
2316 if (slot > 0) {
2317 block1 = btrfs_node_blockptr(parent, slot - 1);
2318 gen = btrfs_node_ptr_generation(parent, slot - 1);
Daniel Dressler01d58472014-11-21 17:15:07 +09002319 eb = btrfs_find_tree_block(root->fs_info, block1);
Chris Masonb9fab912012-05-06 07:23:47 -04002320 /*
2321 * if we get -eagain from btrfs_buffer_uptodate, we
2322 * don't want to return eagain here. That will loop
2323 * forever
2324 */
2325 if (eb && btrfs_buffer_uptodate(eb, gen, 1) != 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002326 block1 = 0;
2327 free_extent_buffer(eb);
2328 }
Chris Mason8c594ea2009-04-20 15:50:10 -04002329 if (slot + 1 < nritems) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05002330 block2 = btrfs_node_blockptr(parent, slot + 1);
2331 gen = btrfs_node_ptr_generation(parent, slot + 1);
Daniel Dressler01d58472014-11-21 17:15:07 +09002332 eb = btrfs_find_tree_block(root->fs_info, block2);
Chris Masonb9fab912012-05-06 07:23:47 -04002333 if (eb && btrfs_buffer_uptodate(eb, gen, 1) != 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002334 block2 = 0;
2335 free_extent_buffer(eb);
2336 }
Chris Mason8c594ea2009-04-20 15:50:10 -04002337
Josef Bacik0b088512013-06-17 14:23:02 -04002338 if (block1)
David Sterbad3e46fe2014-06-15 02:04:19 +02002339 readahead_tree_block(root, block1);
Josef Bacik0b088512013-06-17 14:23:02 -04002340 if (block2)
David Sterbad3e46fe2014-06-15 02:04:19 +02002341 readahead_tree_block(root, block2);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002342}
2343
2344
2345/*
Chris Masond3977122009-01-05 21:25:51 -05002346 * when we walk down the tree, it is usually safe to unlock the higher layers
2347 * in the tree. The exceptions are when our path goes through slot 0, because
2348 * operations on the tree might require changing key pointers higher up in the
2349 * tree.
Chris Masond352ac62008-09-29 15:18:18 -04002350 *
Chris Masond3977122009-01-05 21:25:51 -05002351 * callers might also have set path->keep_locks, which tells this code to keep
2352 * the lock if the path points to the last slot in the block. This is part of
2353 * walking through the tree, and selecting the next slot in the higher block.
Chris Masond352ac62008-09-29 15:18:18 -04002354 *
Chris Masond3977122009-01-05 21:25:51 -05002355 * lowest_unlock sets the lowest level in the tree we're allowed to unlock. so
2356 * if lowest_unlock is 1, level 0 won't be unlocked
Chris Masond352ac62008-09-29 15:18:18 -04002357 */
Chris Masone02119d2008-09-05 16:13:11 -04002358static noinline void unlock_up(struct btrfs_path *path, int level,
Chris Masonf7c79f32012-03-19 15:54:38 -04002359 int lowest_unlock, int min_write_lock_level,
2360 int *write_lock_level)
Chris Mason925baed2008-06-25 16:01:30 -04002361{
2362 int i;
2363 int skip_level = level;
Chris Mason051e1b92008-06-25 16:01:30 -04002364 int no_skips = 0;
Chris Mason925baed2008-06-25 16:01:30 -04002365 struct extent_buffer *t;
2366
2367 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2368 if (!path->nodes[i])
2369 break;
2370 if (!path->locks[i])
2371 break;
Chris Mason051e1b92008-06-25 16:01:30 -04002372 if (!no_skips && path->slots[i] == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002373 skip_level = i + 1;
2374 continue;
2375 }
Chris Mason051e1b92008-06-25 16:01:30 -04002376 if (!no_skips && path->keep_locks) {
Chris Mason925baed2008-06-25 16:01:30 -04002377 u32 nritems;
2378 t = path->nodes[i];
2379 nritems = btrfs_header_nritems(t);
Chris Mason051e1b92008-06-25 16:01:30 -04002380 if (nritems < 1 || path->slots[i] >= nritems - 1) {
Chris Mason925baed2008-06-25 16:01:30 -04002381 skip_level = i + 1;
2382 continue;
2383 }
2384 }
Chris Mason051e1b92008-06-25 16:01:30 -04002385 if (skip_level < i && i >= lowest_unlock)
2386 no_skips = 1;
2387
Chris Mason925baed2008-06-25 16:01:30 -04002388 t = path->nodes[i];
2389 if (i >= lowest_unlock && i > skip_level && path->locks[i]) {
Chris Masonbd681512011-07-16 15:23:14 -04002390 btrfs_tree_unlock_rw(t, path->locks[i]);
Chris Mason925baed2008-06-25 16:01:30 -04002391 path->locks[i] = 0;
Chris Masonf7c79f32012-03-19 15:54:38 -04002392 if (write_lock_level &&
2393 i > min_write_lock_level &&
2394 i <= *write_lock_level) {
2395 *write_lock_level = i - 1;
2396 }
Chris Mason925baed2008-06-25 16:01:30 -04002397 }
2398 }
2399}
2400
Chris Mason3c69fae2007-08-07 15:52:22 -04002401/*
Chris Masonb4ce94d2009-02-04 09:25:08 -05002402 * This releases any locks held in the path starting at level and
2403 * going all the way up to the root.
2404 *
2405 * btrfs_search_slot will keep the lock held on higher nodes in a few
2406 * corner cases, such as COW of the block at slot zero in the node. This
2407 * ignores those rules, and it should only be called when there are no
2408 * more updates to be done higher up in the tree.
2409 */
2410noinline void btrfs_unlock_up_safe(struct btrfs_path *path, int level)
2411{
2412 int i;
2413
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002414 if (path->keep_locks)
Chris Masonb4ce94d2009-02-04 09:25:08 -05002415 return;
2416
2417 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
2418 if (!path->nodes[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05002419 continue;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002420 if (!path->locks[i])
Chris Mason12f4dac2009-02-04 09:31:42 -05002421 continue;
Chris Masonbd681512011-07-16 15:23:14 -04002422 btrfs_tree_unlock_rw(path->nodes[i], path->locks[i]);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002423 path->locks[i] = 0;
2424 }
2425}
2426
2427/*
Chris Masonc8c42862009-04-03 10:14:18 -04002428 * helper function for btrfs_search_slot. The goal is to find a block
2429 * in cache without setting the path to blocking. If we find the block
2430 * we return zero and the path is unchanged.
2431 *
2432 * If we can't find the block, we set the path blocking and do some
2433 * reada. -EAGAIN is returned and the search must be repeated.
2434 */
2435static int
2436read_block_for_search(struct btrfs_trans_handle *trans,
2437 struct btrfs_root *root, struct btrfs_path *p,
2438 struct extent_buffer **eb_ret, int level, int slot,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002439 struct btrfs_key *key, u64 time_seq)
Chris Masonc8c42862009-04-03 10:14:18 -04002440{
2441 u64 blocknr;
2442 u64 gen;
Chris Masonc8c42862009-04-03 10:14:18 -04002443 struct extent_buffer *b = *eb_ret;
2444 struct extent_buffer *tmp;
Chris Mason76a05b32009-05-14 13:24:30 -04002445 int ret;
Chris Masonc8c42862009-04-03 10:14:18 -04002446
2447 blocknr = btrfs_node_blockptr(b, slot);
2448 gen = btrfs_node_ptr_generation(b, slot);
Chris Masonc8c42862009-04-03 10:14:18 -04002449
Daniel Dressler01d58472014-11-21 17:15:07 +09002450 tmp = btrfs_find_tree_block(root->fs_info, blocknr);
Chris Masoncb449212010-10-24 11:01:27 -04002451 if (tmp) {
Chris Masonb9fab912012-05-06 07:23:47 -04002452 /* first we do an atomic uptodate check */
Josef Bacikbdf7c002013-06-17 13:44:48 -04002453 if (btrfs_buffer_uptodate(tmp, gen, 1) > 0) {
2454 *eb_ret = tmp;
2455 return 0;
Chris Masoncb449212010-10-24 11:01:27 -04002456 }
Josef Bacikbdf7c002013-06-17 13:44:48 -04002457
2458 /* the pages were up to date, but we failed
2459 * the generation number check. Do a full
2460 * read for the generation number that is correct.
2461 * We must do this without dropping locks so
2462 * we can trust our generation number
2463 */
2464 btrfs_set_path_blocking(p);
2465
2466 /* now we're allowed to do a blocking uptodate check */
2467 ret = btrfs_read_buffer(tmp, gen);
2468 if (!ret) {
2469 *eb_ret = tmp;
2470 return 0;
2471 }
2472 free_extent_buffer(tmp);
2473 btrfs_release_path(p);
2474 return -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04002475 }
2476
2477 /*
2478 * reduce lock contention at high levels
2479 * of the btree by dropping locks before
Chris Mason76a05b32009-05-14 13:24:30 -04002480 * we read. Don't release the lock on the current
2481 * level because we need to walk this node to figure
2482 * out which blocks to read.
Chris Masonc8c42862009-04-03 10:14:18 -04002483 */
Chris Mason8c594ea2009-04-20 15:50:10 -04002484 btrfs_unlock_up_safe(p, level + 1);
2485 btrfs_set_path_blocking(p);
2486
Chris Masoncb449212010-10-24 11:01:27 -04002487 free_extent_buffer(tmp);
David Sterbae4058b52015-11-27 16:31:35 +01002488 if (p->reada != READA_NONE)
Chris Masonc8c42862009-04-03 10:14:18 -04002489 reada_for_search(root, p, level, slot, key->objectid);
2490
Chris Mason76a05b32009-05-14 13:24:30 -04002491 ret = -EAGAIN;
Liu Bo298d5db2018-05-16 01:37:36 +08002492 tmp = read_tree_block(root, blocknr, gen);
Liu Bo64c043d2015-05-25 17:30:15 +08002493 if (!IS_ERR(tmp)) {
Chris Mason76a05b32009-05-14 13:24:30 -04002494 /*
2495 * If the read above didn't mark this buffer up to date,
2496 * it will never end up being up to date. Set ret to EIO now
2497 * and give up so that our caller doesn't loop forever
2498 * on our EAGAINs.
2499 */
Chris Masonb9fab912012-05-06 07:23:47 -04002500 if (!btrfs_buffer_uptodate(tmp, 0, 0))
Chris Mason76a05b32009-05-14 13:24:30 -04002501 ret = -EIO;
Chris Masonc8c42862009-04-03 10:14:18 -04002502 free_extent_buffer(tmp);
Liu Boc871b0f2016-06-06 12:01:23 -07002503 } else {
2504 ret = PTR_ERR(tmp);
Chris Mason76a05b32009-05-14 13:24:30 -04002505 }
Liu Bo298d5db2018-05-16 01:37:36 +08002506
2507 btrfs_release_path(p);
Chris Mason76a05b32009-05-14 13:24:30 -04002508 return ret;
Chris Masonc8c42862009-04-03 10:14:18 -04002509}
2510
2511/*
2512 * helper function for btrfs_search_slot. This does all of the checks
2513 * for node-level blocks and does any balancing required based on
2514 * the ins_len.
2515 *
2516 * If no extra work was required, zero is returned. If we had to
2517 * drop the path, -EAGAIN is returned and btrfs_search_slot must
2518 * start over
2519 */
2520static int
2521setup_nodes_for_search(struct btrfs_trans_handle *trans,
2522 struct btrfs_root *root, struct btrfs_path *p,
Chris Masonbd681512011-07-16 15:23:14 -04002523 struct extent_buffer *b, int level, int ins_len,
2524 int *write_lock_level)
Chris Masonc8c42862009-04-03 10:14:18 -04002525{
2526 int ret;
2527 if ((p->search_for_split || ins_len > 0) && btrfs_header_nritems(b) >=
2528 BTRFS_NODEPTRS_PER_BLOCK(root) - 3) {
2529 int sret;
2530
Chris Masonbd681512011-07-16 15:23:14 -04002531 if (*write_lock_level < level + 1) {
2532 *write_lock_level = level + 1;
2533 btrfs_release_path(p);
2534 goto again;
2535 }
2536
Chris Masonc8c42862009-04-03 10:14:18 -04002537 btrfs_set_path_blocking(p);
Josef Bacik0b088512013-06-17 14:23:02 -04002538 reada_for_balance(root, p, level);
Chris Masonc8c42862009-04-03 10:14:18 -04002539 sret = split_node(trans, root, p, level);
Chris Masonbd681512011-07-16 15:23:14 -04002540 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonc8c42862009-04-03 10:14:18 -04002541
2542 BUG_ON(sret > 0);
2543 if (sret) {
2544 ret = sret;
2545 goto done;
2546 }
2547 b = p->nodes[level];
2548 } else if (ins_len < 0 && btrfs_header_nritems(b) <
Chris Masoncfbb9302009-05-18 10:41:58 -04002549 BTRFS_NODEPTRS_PER_BLOCK(root) / 2) {
Chris Masonc8c42862009-04-03 10:14:18 -04002550 int sret;
2551
Chris Masonbd681512011-07-16 15:23:14 -04002552 if (*write_lock_level < level + 1) {
2553 *write_lock_level = level + 1;
2554 btrfs_release_path(p);
2555 goto again;
2556 }
2557
Chris Masonc8c42862009-04-03 10:14:18 -04002558 btrfs_set_path_blocking(p);
Josef Bacik0b088512013-06-17 14:23:02 -04002559 reada_for_balance(root, p, level);
Chris Masonc8c42862009-04-03 10:14:18 -04002560 sret = balance_level(trans, root, p, level);
Chris Masonbd681512011-07-16 15:23:14 -04002561 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonc8c42862009-04-03 10:14:18 -04002562
2563 if (sret) {
2564 ret = sret;
2565 goto done;
2566 }
2567 b = p->nodes[level];
2568 if (!b) {
David Sterbab3b4aa72011-04-21 01:20:15 +02002569 btrfs_release_path(p);
Chris Masonc8c42862009-04-03 10:14:18 -04002570 goto again;
2571 }
2572 BUG_ON(btrfs_header_nritems(b) == 1);
2573 }
2574 return 0;
2575
2576again:
2577 ret = -EAGAIN;
2578done:
2579 return ret;
2580}
2581
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002582static void key_search_validate(struct extent_buffer *b,
2583 struct btrfs_key *key,
2584 int level)
2585{
2586#ifdef CONFIG_BTRFS_ASSERT
2587 struct btrfs_disk_key disk_key;
2588
2589 btrfs_cpu_key_to_disk(&disk_key, key);
2590
2591 if (level == 0)
2592 ASSERT(!memcmp_extent_buffer(b, &disk_key,
2593 offsetof(struct btrfs_leaf, items[0].key),
2594 sizeof(disk_key)));
2595 else
2596 ASSERT(!memcmp_extent_buffer(b, &disk_key,
2597 offsetof(struct btrfs_node, ptrs[0].key),
2598 sizeof(disk_key)));
2599#endif
2600}
2601
2602static int key_search(struct extent_buffer *b, struct btrfs_key *key,
2603 int level, int *prev_cmp, int *slot)
2604{
2605 if (*prev_cmp != 0) {
2606 *prev_cmp = bin_search(b, key, level, slot);
2607 return *prev_cmp;
2608 }
2609
2610 key_search_validate(b, key, level);
2611 *slot = 0;
2612
2613 return 0;
2614}
2615
David Sterba381cf652015-01-02 18:45:16 +01002616int btrfs_find_item(struct btrfs_root *fs_root, struct btrfs_path *path,
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002617 u64 iobjectid, u64 ioff, u8 key_type,
2618 struct btrfs_key *found_key)
2619{
2620 int ret;
2621 struct btrfs_key key;
2622 struct extent_buffer *eb;
David Sterba381cf652015-01-02 18:45:16 +01002623
2624 ASSERT(path);
David Sterba1d4c08e2015-01-02 19:36:14 +01002625 ASSERT(found_key);
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002626
2627 key.type = key_type;
2628 key.objectid = iobjectid;
2629 key.offset = ioff;
2630
2631 ret = btrfs_search_slot(NULL, fs_root, &key, path, 0, 0);
David Sterba1d4c08e2015-01-02 19:36:14 +01002632 if (ret < 0)
Kelley Nielsene33d5c32013-11-04 19:33:33 -08002633 return ret;
2634
2635 eb = path->nodes[0];
2636 if (ret && path->slots[0] >= btrfs_header_nritems(eb)) {
2637 ret = btrfs_next_leaf(fs_root, path);
2638 if (ret)
2639 return ret;
2640 eb = path->nodes[0];
2641 }
2642
2643 btrfs_item_key_to_cpu(eb, found_key, path->slots[0]);
2644 if (found_key->type != key.type ||
2645 found_key->objectid != key.objectid)
2646 return 1;
2647
2648 return 0;
2649}
2650
Chris Masonc8c42862009-04-03 10:14:18 -04002651/*
Chris Mason74123bd2007-02-02 11:05:29 -05002652 * look for key in the tree. path is filled in with nodes along the way
2653 * if key is found, we return zero and you can find the item in the leaf
2654 * level of the path (level 0)
2655 *
2656 * If the key isn't found, the path points to the slot where it should
Chris Masonaa5d6be2007-02-28 16:35:06 -05002657 * be inserted, and 1 is returned. If there are other errors during the
2658 * search a negative error number is returned.
Chris Mason97571fd2007-02-24 13:39:08 -05002659 *
2660 * if ins_len > 0, nodes and leaves will be split as we walk down the
2661 * tree. if ins_len < 0, nodes will be merged as we walk down the tree (if
2662 * possible)
Chris Mason74123bd2007-02-02 11:05:29 -05002663 */
Chris Masone089f052007-03-16 16:20:31 -04002664int btrfs_search_slot(struct btrfs_trans_handle *trans, struct btrfs_root
2665 *root, struct btrfs_key *key, struct btrfs_path *p, int
2666 ins_len, int cow)
Chris Masonbe0e5c02007-01-26 15:51:26 -05002667{
Chris Mason5f39d392007-10-15 16:14:19 -04002668 struct extent_buffer *b;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002669 int slot;
2670 int ret;
Yan Zheng33c66f42009-07-22 09:59:00 -04002671 int err;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002672 int level;
Chris Mason925baed2008-06-25 16:01:30 -04002673 int lowest_unlock = 1;
Chris Masonbd681512011-07-16 15:23:14 -04002674 int root_lock;
2675 /* everything at write_lock_level or lower must be write locked */
2676 int write_lock_level = 0;
Chris Mason9f3a7422007-08-07 15:52:19 -04002677 u8 lowest_level = 0;
Chris Masonf7c79f32012-03-19 15:54:38 -04002678 int min_write_lock_level;
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002679 int prev_cmp;
Chris Mason9f3a7422007-08-07 15:52:19 -04002680
Chris Mason6702ed42007-08-07 16:15:09 -04002681 lowest_level = p->lowest_level;
Chris Mason323ac952008-10-01 19:05:46 -04002682 WARN_ON(lowest_level && ins_len > 0);
Chris Mason22b0ebd2007-03-30 08:47:31 -04002683 WARN_ON(p->nodes[0] != NULL);
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002684 BUG_ON(!cow && ins_len);
Josef Bacik25179202008-10-29 14:49:05 -04002685
Chris Masonbd681512011-07-16 15:23:14 -04002686 if (ins_len < 0) {
Chris Mason925baed2008-06-25 16:01:30 -04002687 lowest_unlock = 2;
Chris Mason65b51a02008-08-01 15:11:20 -04002688
Chris Masonbd681512011-07-16 15:23:14 -04002689 /* when we are removing items, we might have to go up to level
2690 * two as we update tree pointers Make sure we keep write
2691 * for those levels as well
2692 */
2693 write_lock_level = 2;
2694 } else if (ins_len > 0) {
2695 /*
2696 * for inserting items, make sure we have a write lock on
2697 * level 1 so we can update keys
2698 */
2699 write_lock_level = 1;
2700 }
2701
2702 if (!cow)
2703 write_lock_level = -1;
2704
Josef Bacik09a2a8f92013-04-05 16:51:15 -04002705 if (cow && (p->keep_locks || p->lowest_level))
Chris Masonbd681512011-07-16 15:23:14 -04002706 write_lock_level = BTRFS_MAX_LEVEL;
2707
Chris Masonf7c79f32012-03-19 15:54:38 -04002708 min_write_lock_level = write_lock_level;
2709
Chris Masonbb803952007-03-01 12:04:21 -05002710again:
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002711 prev_cmp = -1;
Chris Masonbd681512011-07-16 15:23:14 -04002712 /*
2713 * we try very hard to do read locks on the root
2714 */
2715 root_lock = BTRFS_READ_LOCK;
2716 level = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002717 if (p->search_commit_root) {
Chris Masonbd681512011-07-16 15:23:14 -04002718 /*
2719 * the commit roots are read only
2720 * so we always do read locks
2721 */
Josef Bacik3f8a18c2014-03-28 17:16:01 -04002722 if (p->need_commit_sem)
2723 down_read(&root->fs_info->commit_root_sem);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002724 b = root->commit_root;
2725 extent_buffer_get(b);
Chris Masonbd681512011-07-16 15:23:14 -04002726 level = btrfs_header_level(b);
Josef Bacik3f8a18c2014-03-28 17:16:01 -04002727 if (p->need_commit_sem)
2728 up_read(&root->fs_info->commit_root_sem);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002729 if (!p->skip_locking)
Chris Masonbd681512011-07-16 15:23:14 -04002730 btrfs_tree_read_lock(b);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002731 } else {
Chris Masonbd681512011-07-16 15:23:14 -04002732 if (p->skip_locking) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002733 b = btrfs_root_node(root);
Chris Masonbd681512011-07-16 15:23:14 -04002734 level = btrfs_header_level(b);
2735 } else {
2736 /* we don't know the level of the root node
2737 * until we actually have it read locked
2738 */
2739 b = btrfs_read_lock_root_node(root);
2740 level = btrfs_header_level(b);
2741 if (level <= write_lock_level) {
2742 /* whoops, must trade for write lock */
2743 btrfs_tree_read_unlock(b);
2744 free_extent_buffer(b);
2745 b = btrfs_lock_root_node(root);
2746 root_lock = BTRFS_WRITE_LOCK;
2747
2748 /* the level might have changed, check again */
2749 level = btrfs_header_level(b);
2750 }
2751 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002752 }
Chris Masonbd681512011-07-16 15:23:14 -04002753 p->nodes[level] = b;
2754 if (!p->skip_locking)
2755 p->locks[level] = root_lock;
Chris Mason925baed2008-06-25 16:01:30 -04002756
Chris Masoneb60cea2007-02-02 09:18:22 -05002757 while (b) {
Chris Mason5f39d392007-10-15 16:14:19 -04002758 level = btrfs_header_level(b);
Chris Mason65b51a02008-08-01 15:11:20 -04002759
2760 /*
2761 * setup the path here so we can release it under lock
2762 * contention with the cow code
2763 */
Chris Mason02217ed2007-03-02 16:08:05 -05002764 if (cow) {
Nikolay Borisove23c0972017-12-12 11:14:49 +02002765 bool last_level = (level == (BTRFS_MAX_LEVEL - 1));
2766
Chris Masonc8c42862009-04-03 10:14:18 -04002767 /*
2768 * if we don't really need to cow this block
2769 * then we don't want to set the path blocking,
2770 * so we test it here
2771 */
Jeff Mahoney64c12922016-06-08 00:36:38 -04002772 if (!should_cow_block(trans, root, b)) {
2773 trans->dirty = true;
Chris Mason65b51a02008-08-01 15:11:20 -04002774 goto cow_done;
Jeff Mahoney64c12922016-06-08 00:36:38 -04002775 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002776
Chris Masonbd681512011-07-16 15:23:14 -04002777 /*
2778 * must have write locks on this node and the
2779 * parent
2780 */
Josef Bacik5124e002012-11-07 13:44:13 -05002781 if (level > write_lock_level ||
2782 (level + 1 > write_lock_level &&
2783 level + 1 < BTRFS_MAX_LEVEL &&
2784 p->nodes[level + 1])) {
Chris Masonbd681512011-07-16 15:23:14 -04002785 write_lock_level = level + 1;
2786 btrfs_release_path(p);
2787 goto again;
2788 }
2789
Filipe Manana160f4082014-07-28 19:37:17 +01002790 btrfs_set_path_blocking(p);
Nikolay Borisove23c0972017-12-12 11:14:49 +02002791 if (last_level)
2792 err = btrfs_cow_block(trans, root, b, NULL, 0,
2793 &b);
2794 else
2795 err = btrfs_cow_block(trans, root, b,
2796 p->nodes[level + 1],
2797 p->slots[level + 1], &b);
Yan Zheng33c66f42009-07-22 09:59:00 -04002798 if (err) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002799 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04002800 goto done;
Chris Mason54aa1f42007-06-22 14:16:25 -04002801 }
Chris Mason02217ed2007-03-02 16:08:05 -05002802 }
Chris Mason65b51a02008-08-01 15:11:20 -04002803cow_done:
Chris Masoneb60cea2007-02-02 09:18:22 -05002804 p->nodes[level] = b;
Chris Masonbd681512011-07-16 15:23:14 -04002805 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002806
2807 /*
2808 * we have a lock on b and as long as we aren't changing
2809 * the tree, there is no way to for the items in b to change.
2810 * It is safe to drop the lock on our parent before we
2811 * go through the expensive btree search on b.
2812 *
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002813 * If we're inserting or deleting (ins_len != 0), then we might
2814 * be changing slot zero, which may require changing the parent.
2815 * So, we can't drop the lock until after we know which slot
2816 * we're operating on.
Chris Masonb4ce94d2009-02-04 09:25:08 -05002817 */
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002818 if (!ins_len && !p->keep_locks) {
2819 int u = level + 1;
2820
2821 if (u < BTRFS_MAX_LEVEL && p->locks[u]) {
2822 btrfs_tree_unlock_rw(p->nodes[u], p->locks[u]);
2823 p->locks[u] = 0;
2824 }
2825 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05002826
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01002827 ret = key_search(b, key, level, &prev_cmp, &slot);
Liu Bo415b35a2016-06-17 19:16:21 -07002828 if (ret < 0)
2829 goto done;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002830
Chris Mason5f39d392007-10-15 16:14:19 -04002831 if (level != 0) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002832 int dec = 0;
2833 if (ret && slot > 0) {
2834 dec = 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002835 slot -= 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04002836 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002837 p->slots[level] = slot;
Yan Zheng33c66f42009-07-22 09:59:00 -04002838 err = setup_nodes_for_search(trans, root, p, b, level,
Chris Masonbd681512011-07-16 15:23:14 -04002839 ins_len, &write_lock_level);
Yan Zheng33c66f42009-07-22 09:59:00 -04002840 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04002841 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04002842 if (err) {
2843 ret = err;
Chris Masonc8c42862009-04-03 10:14:18 -04002844 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04002845 }
Chris Masonc8c42862009-04-03 10:14:18 -04002846 b = p->nodes[level];
2847 slot = p->slots[level];
Chris Masonb4ce94d2009-02-04 09:25:08 -05002848
Chris Masonbd681512011-07-16 15:23:14 -04002849 /*
2850 * slot 0 is special, if we change the key
2851 * we have to update the parent pointer
2852 * which means we must have a write lock
2853 * on the parent
2854 */
Filipe David Borba Mananaeb653de2013-12-23 11:53:02 +00002855 if (slot == 0 && ins_len &&
Chris Masonbd681512011-07-16 15:23:14 -04002856 write_lock_level < level + 1) {
2857 write_lock_level = level + 1;
2858 btrfs_release_path(p);
2859 goto again;
2860 }
2861
Chris Masonf7c79f32012-03-19 15:54:38 -04002862 unlock_up(p, level, lowest_unlock,
2863 min_write_lock_level, &write_lock_level);
Chris Masonf9efa9c2008-06-25 16:14:04 -04002864
Chris Mason925baed2008-06-25 16:01:30 -04002865 if (level == lowest_level) {
Yan Zheng33c66f42009-07-22 09:59:00 -04002866 if (dec)
2867 p->slots[level]++;
Zheng Yan5b21f2e2008-09-26 10:05:38 -04002868 goto done;
Chris Mason925baed2008-06-25 16:01:30 -04002869 }
Chris Masonca7a79a2008-05-12 12:59:19 -04002870
Yan Zheng33c66f42009-07-22 09:59:00 -04002871 err = read_block_for_search(trans, root, p,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002872 &b, level, slot, key, 0);
Yan Zheng33c66f42009-07-22 09:59:00 -04002873 if (err == -EAGAIN)
Chris Masonc8c42862009-04-03 10:14:18 -04002874 goto again;
Yan Zheng33c66f42009-07-22 09:59:00 -04002875 if (err) {
2876 ret = err;
Chris Mason76a05b32009-05-14 13:24:30 -04002877 goto done;
Yan Zheng33c66f42009-07-22 09:59:00 -04002878 }
Chris Mason76a05b32009-05-14 13:24:30 -04002879
Chris Masonb4ce94d2009-02-04 09:25:08 -05002880 if (!p->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04002881 level = btrfs_header_level(b);
2882 if (level <= write_lock_level) {
2883 err = btrfs_try_tree_write_lock(b);
2884 if (!err) {
2885 btrfs_set_path_blocking(p);
2886 btrfs_tree_lock(b);
2887 btrfs_clear_path_blocking(p, b,
2888 BTRFS_WRITE_LOCK);
2889 }
2890 p->locks[level] = BTRFS_WRITE_LOCK;
2891 } else {
Chris Masonf82c4582014-11-19 10:25:09 -08002892 err = btrfs_tree_read_lock_atomic(b);
Chris Masonbd681512011-07-16 15:23:14 -04002893 if (!err) {
2894 btrfs_set_path_blocking(p);
2895 btrfs_tree_read_lock(b);
2896 btrfs_clear_path_blocking(p, b,
2897 BTRFS_READ_LOCK);
2898 }
2899 p->locks[level] = BTRFS_READ_LOCK;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002900 }
Chris Masonbd681512011-07-16 15:23:14 -04002901 p->nodes[level] = b;
Chris Masonb4ce94d2009-02-04 09:25:08 -05002902 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05002903 } else {
2904 p->slots[level] = slot;
Yan Zheng87b29b22008-12-17 10:21:48 -05002905 if (ins_len > 0 &&
2906 btrfs_leaf_free_space(root, b) < ins_len) {
Chris Masonbd681512011-07-16 15:23:14 -04002907 if (write_lock_level < 1) {
2908 write_lock_level = 1;
2909 btrfs_release_path(p);
2910 goto again;
2911 }
2912
Chris Masonb4ce94d2009-02-04 09:25:08 -05002913 btrfs_set_path_blocking(p);
Yan Zheng33c66f42009-07-22 09:59:00 -04002914 err = split_leaf(trans, root, key,
2915 p, ins_len, ret == 0);
Chris Masonbd681512011-07-16 15:23:14 -04002916 btrfs_clear_path_blocking(p, NULL, 0);
Chris Masonb4ce94d2009-02-04 09:25:08 -05002917
Yan Zheng33c66f42009-07-22 09:59:00 -04002918 BUG_ON(err > 0);
2919 if (err) {
2920 ret = err;
Chris Mason65b51a02008-08-01 15:11:20 -04002921 goto done;
2922 }
Chris Mason5c680ed2007-02-22 11:39:13 -05002923 }
Chris Mason459931e2008-12-10 09:10:46 -05002924 if (!p->search_for_split)
Chris Masonf7c79f32012-03-19 15:54:38 -04002925 unlock_up(p, level, lowest_unlock,
2926 min_write_lock_level, &write_lock_level);
Chris Mason65b51a02008-08-01 15:11:20 -04002927 goto done;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002928 }
2929 }
Chris Mason65b51a02008-08-01 15:11:20 -04002930 ret = 1;
2931done:
Chris Masonb4ce94d2009-02-04 09:25:08 -05002932 /*
2933 * we don't really know what they plan on doing with the path
2934 * from here on, so for now just mark it as blocking
2935 */
Chris Masonb9473432009-03-13 11:00:37 -04002936 if (!p->leave_spinning)
2937 btrfs_set_path_blocking(p);
Filipe Manana5f5bc6b2014-11-09 08:38:39 +00002938 if (ret < 0 && !p->skip_release_on_error)
David Sterbab3b4aa72011-04-21 01:20:15 +02002939 btrfs_release_path(p);
Chris Mason65b51a02008-08-01 15:11:20 -04002940 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05002941}
2942
Chris Mason74123bd2007-02-02 11:05:29 -05002943/*
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002944 * Like btrfs_search_slot, this looks for a key in the given tree. It uses the
2945 * current state of the tree together with the operations recorded in the tree
2946 * modification log to search for the key in a previous version of this tree, as
2947 * denoted by the time_seq parameter.
2948 *
2949 * Naturally, there is no support for insert, delete or cow operations.
2950 *
2951 * The resulting path and return value will be set up as if we called
2952 * btrfs_search_slot at that point in time with ins_len and cow both set to 0.
2953 */
2954int btrfs_search_old_slot(struct btrfs_root *root, struct btrfs_key *key,
2955 struct btrfs_path *p, u64 time_seq)
2956{
2957 struct extent_buffer *b;
2958 int slot;
2959 int ret;
2960 int err;
2961 int level;
2962 int lowest_unlock = 1;
2963 u8 lowest_level = 0;
Josef Bacikd4b40872013-09-24 14:09:34 -04002964 int prev_cmp = -1;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002965
2966 lowest_level = p->lowest_level;
2967 WARN_ON(p->nodes[0] != NULL);
2968
2969 if (p->search_commit_root) {
2970 BUG_ON(time_seq);
2971 return btrfs_search_slot(NULL, root, key, p, 0, 0);
2972 }
2973
2974again:
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002975 b = get_old_root(root, time_seq);
Nikolay Borisov56af2412018-09-13 11:35:10 +03002976 if (!b) {
2977 ret = -EIO;
2978 goto done;
2979 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002980 level = btrfs_header_level(b);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02002981 p->locks[level] = BTRFS_READ_LOCK;
2982
2983 while (b) {
2984 level = btrfs_header_level(b);
2985 p->nodes[level] = b;
2986 btrfs_clear_path_blocking(p, NULL, 0);
2987
2988 /*
2989 * we have a lock on b and as long as we aren't changing
2990 * the tree, there is no way to for the items in b to change.
2991 * It is safe to drop the lock on our parent before we
2992 * go through the expensive btree search on b.
2993 */
2994 btrfs_unlock_up_safe(p, level + 1);
2995
Josef Bacikd4b40872013-09-24 14:09:34 -04002996 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002997 * Since we can unwind ebs we want to do a real search every
Josef Bacikd4b40872013-09-24 14:09:34 -04002998 * time.
2999 */
3000 prev_cmp = -1;
Filipe David Borba Mananad7396f02013-08-30 15:46:43 +01003001 ret = key_search(b, key, level, &prev_cmp, &slot);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02003002
3003 if (level != 0) {
3004 int dec = 0;
3005 if (ret && slot > 0) {
3006 dec = 1;
3007 slot -= 1;
3008 }
3009 p->slots[level] = slot;
3010 unlock_up(p, level, lowest_unlock, 0, NULL);
3011
3012 if (level == lowest_level) {
3013 if (dec)
3014 p->slots[level]++;
3015 goto done;
3016 }
3017
3018 err = read_block_for_search(NULL, root, p, &b, level,
3019 slot, key, time_seq);
3020 if (err == -EAGAIN)
3021 goto again;
3022 if (err) {
3023 ret = err;
3024 goto done;
3025 }
3026
3027 level = btrfs_header_level(b);
Chris Masonf82c4582014-11-19 10:25:09 -08003028 err = btrfs_tree_read_lock_atomic(b);
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02003029 if (!err) {
3030 btrfs_set_path_blocking(p);
3031 btrfs_tree_read_lock(b);
3032 btrfs_clear_path_blocking(p, b,
3033 BTRFS_READ_LOCK);
3034 }
Josef Bacik9ec72672013-08-07 16:57:23 -04003035 b = tree_mod_log_rewind(root->fs_info, p, b, time_seq);
Josef Bacikdb7f3432013-08-07 14:54:37 -04003036 if (!b) {
3037 ret = -ENOMEM;
3038 goto done;
3039 }
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02003040 p->locks[level] = BTRFS_READ_LOCK;
3041 p->nodes[level] = b;
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02003042 } else {
3043 p->slots[level] = slot;
3044 unlock_up(p, level, lowest_unlock, 0, NULL);
3045 goto done;
3046 }
3047 }
3048 ret = 1;
3049done:
3050 if (!p->leave_spinning)
3051 btrfs_set_path_blocking(p);
3052 if (ret < 0)
3053 btrfs_release_path(p);
3054
3055 return ret;
3056}
3057
3058/*
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003059 * helper to use instead of search slot if no exact match is needed but
3060 * instead the next or previous item should be returned.
3061 * When find_higher is true, the next higher item is returned, the next lower
3062 * otherwise.
3063 * When return_any and find_higher are both true, and no higher item is found,
3064 * return the next lower instead.
3065 * When return_any is true and find_higher is false, and no lower item is found,
3066 * return the next higher instead.
3067 * It returns 0 if any item is found, 1 if none is found (tree empty), and
3068 * < 0 on error
3069 */
3070int btrfs_search_slot_for_read(struct btrfs_root *root,
3071 struct btrfs_key *key, struct btrfs_path *p,
3072 int find_higher, int return_any)
3073{
3074 int ret;
3075 struct extent_buffer *leaf;
3076
3077again:
3078 ret = btrfs_search_slot(NULL, root, key, p, 0, 0);
3079 if (ret <= 0)
3080 return ret;
3081 /*
3082 * a return value of 1 means the path is at the position where the
3083 * item should be inserted. Normally this is the next bigger item,
3084 * but in case the previous item is the last in a leaf, path points
3085 * to the first free slot in the previous leaf, i.e. at an invalid
3086 * item.
3087 */
3088 leaf = p->nodes[0];
3089
3090 if (find_higher) {
3091 if (p->slots[0] >= btrfs_header_nritems(leaf)) {
3092 ret = btrfs_next_leaf(root, p);
3093 if (ret <= 0)
3094 return ret;
3095 if (!return_any)
3096 return 1;
3097 /*
3098 * no higher item found, return the next
3099 * lower instead
3100 */
3101 return_any = 0;
3102 find_higher = 0;
3103 btrfs_release_path(p);
3104 goto again;
3105 }
3106 } else {
Arne Jansene6793762011-09-13 11:18:10 +02003107 if (p->slots[0] == 0) {
3108 ret = btrfs_prev_leaf(root, p);
3109 if (ret < 0)
3110 return ret;
3111 if (!ret) {
Filipe David Borba Manana23c6bf62014-01-11 21:28:54 +00003112 leaf = p->nodes[0];
3113 if (p->slots[0] == btrfs_header_nritems(leaf))
3114 p->slots[0]--;
Arne Jansene6793762011-09-13 11:18:10 +02003115 return 0;
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003116 }
Arne Jansene6793762011-09-13 11:18:10 +02003117 if (!return_any)
3118 return 1;
3119 /*
3120 * no lower item found, return the next
3121 * higher instead
3122 */
3123 return_any = 0;
3124 find_higher = 1;
3125 btrfs_release_path(p);
3126 goto again;
3127 } else {
Arne Jansen2f38b3e2011-09-13 11:18:10 +02003128 --p->slots[0];
3129 }
3130 }
3131 return 0;
3132}
3133
3134/*
Chris Mason74123bd2007-02-02 11:05:29 -05003135 * adjust the pointers going up the tree, starting at level
3136 * making sure the right key of each node is points to 'key'.
3137 * This is used after shifting pointers to the left, so it stops
3138 * fixing up pointers when a given leaf/node is not in slot 0 of the
3139 * higher levels
Chris Masonaa5d6be2007-02-28 16:35:06 -05003140 *
Chris Mason74123bd2007-02-02 11:05:29 -05003141 */
Daniel Dresslerb7a03652014-11-12 13:43:09 +09003142static void fixup_low_keys(struct btrfs_fs_info *fs_info,
3143 struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01003144 struct btrfs_disk_key *key, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003145{
3146 int i;
Chris Mason5f39d392007-10-15 16:14:19 -04003147 struct extent_buffer *t;
3148
Chris Mason234b63a2007-03-13 10:46:10 -04003149 for (i = level; i < BTRFS_MAX_LEVEL; i++) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05003150 int tslot = path->slots[i];
Chris Masoneb60cea2007-02-02 09:18:22 -05003151 if (!path->nodes[i])
Chris Masonbe0e5c02007-01-26 15:51:26 -05003152 break;
Chris Mason5f39d392007-10-15 16:14:19 -04003153 t = path->nodes[i];
Daniel Dresslerb7a03652014-11-12 13:43:09 +09003154 tree_mod_log_set_node_key(fs_info, t, tslot, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003155 btrfs_set_node_key(t, key, tslot);
Chris Masond6025572007-03-30 14:27:56 -04003156 btrfs_mark_buffer_dirty(path->nodes[i]);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003157 if (tslot != 0)
3158 break;
3159 }
3160}
3161
Chris Mason74123bd2007-02-02 11:05:29 -05003162/*
Zheng Yan31840ae2008-09-23 13:14:14 -04003163 * update item key.
3164 *
3165 * This function isn't completely safe. It's the caller's responsibility
3166 * that the new key won't break the order
3167 */
Daniel Dresslerb7a03652014-11-12 13:43:09 +09003168void btrfs_set_item_key_safe(struct btrfs_fs_info *fs_info,
3169 struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01003170 struct btrfs_key *new_key)
Zheng Yan31840ae2008-09-23 13:14:14 -04003171{
3172 struct btrfs_disk_key disk_key;
3173 struct extent_buffer *eb;
3174 int slot;
3175
3176 eb = path->nodes[0];
3177 slot = path->slots[0];
3178 if (slot > 0) {
3179 btrfs_item_key(eb, &disk_key, slot - 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003180 BUG_ON(comp_keys(&disk_key, new_key) >= 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003181 }
3182 if (slot < btrfs_header_nritems(eb) - 1) {
3183 btrfs_item_key(eb, &disk_key, slot + 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003184 BUG_ON(comp_keys(&disk_key, new_key) <= 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003185 }
3186
3187 btrfs_cpu_key_to_disk(&disk_key, new_key);
3188 btrfs_set_item_key(eb, &disk_key, slot);
3189 btrfs_mark_buffer_dirty(eb);
3190 if (slot == 0)
Daniel Dresslerb7a03652014-11-12 13:43:09 +09003191 fixup_low_keys(fs_info, path, &disk_key, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04003192}
3193
3194/*
Chris Mason74123bd2007-02-02 11:05:29 -05003195 * try to push data from one node into the next node left in the
Chris Mason79f95c82007-03-01 15:16:26 -05003196 * tree.
Chris Masonaa5d6be2007-02-28 16:35:06 -05003197 *
3198 * returns 0 if some ptrs were pushed left, < 0 if there was some horrible
3199 * error, and > 0 if there was no room in the left hand block.
Chris Mason74123bd2007-02-02 11:05:29 -05003200 */
Chris Mason98ed5172008-01-03 10:01:48 -05003201static int push_node_left(struct btrfs_trans_handle *trans,
3202 struct btrfs_root *root, struct extent_buffer *dst,
Chris Mason971a1f62008-04-24 10:54:32 -04003203 struct extent_buffer *src, int empty)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003204{
Chris Masonbe0e5c02007-01-26 15:51:26 -05003205 int push_items = 0;
Chris Masonbb803952007-03-01 12:04:21 -05003206 int src_nritems;
3207 int dst_nritems;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003208 int ret = 0;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003209
Chris Mason5f39d392007-10-15 16:14:19 -04003210 src_nritems = btrfs_header_nritems(src);
3211 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04003212 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Mason7bb86312007-12-11 09:25:06 -05003213 WARN_ON(btrfs_header_generation(src) != trans->transid);
3214 WARN_ON(btrfs_header_generation(dst) != trans->transid);
Chris Mason54aa1f42007-06-22 14:16:25 -04003215
Chris Masonbce4eae2008-04-24 14:42:46 -04003216 if (!empty && src_nritems <= 8)
Chris Mason971a1f62008-04-24 10:54:32 -04003217 return 1;
3218
Chris Masond3977122009-01-05 21:25:51 -05003219 if (push_items <= 0)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003220 return 1;
3221
Chris Masonbce4eae2008-04-24 14:42:46 -04003222 if (empty) {
Chris Mason971a1f62008-04-24 10:54:32 -04003223 push_items = min(src_nritems, push_items);
Chris Masonbce4eae2008-04-24 14:42:46 -04003224 if (push_items < src_nritems) {
3225 /* leave at least 8 pointers in the node if
3226 * we aren't going to empty it
3227 */
3228 if (src_nritems - push_items < 8) {
3229 if (push_items <= 8)
3230 return 1;
3231 push_items -= 8;
3232 }
3233 }
3234 } else
3235 push_items = min(src_nritems - 8, push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05003236
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003237 ret = tree_mod_log_eb_copy(root->fs_info, dst, src, dst_nritems, 0,
3238 push_items);
3239 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003240 btrfs_abort_transaction(trans, ret);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003241 return ret;
3242 }
Chris Mason5f39d392007-10-15 16:14:19 -04003243 copy_extent_buffer(dst, src,
3244 btrfs_node_key_ptr_offset(dst_nritems),
3245 btrfs_node_key_ptr_offset(0),
Chris Masond3977122009-01-05 21:25:51 -05003246 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason5f39d392007-10-15 16:14:19 -04003247
Chris Masonbb803952007-03-01 12:04:21 -05003248 if (push_items < src_nritems) {
Jan Schmidt57911b82012-10-19 09:22:03 +02003249 /*
3250 * don't call tree_mod_log_eb_move here, key removal was already
3251 * fully logged by tree_mod_log_eb_copy above.
3252 */
Chris Mason5f39d392007-10-15 16:14:19 -04003253 memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0),
3254 btrfs_node_key_ptr_offset(push_items),
3255 (src_nritems - push_items) *
3256 sizeof(struct btrfs_key_ptr));
Chris Masonbb803952007-03-01 12:04:21 -05003257 }
Chris Mason5f39d392007-10-15 16:14:19 -04003258 btrfs_set_header_nritems(src, src_nritems - push_items);
3259 btrfs_set_header_nritems(dst, dst_nritems + push_items);
3260 btrfs_mark_buffer_dirty(src);
3261 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04003262
Chris Masonbb803952007-03-01 12:04:21 -05003263 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003264}
3265
Chris Mason97571fd2007-02-24 13:39:08 -05003266/*
Chris Mason79f95c82007-03-01 15:16:26 -05003267 * try to push data from one node into the next node right in the
3268 * tree.
3269 *
3270 * returns 0 if some ptrs were pushed, < 0 if there was some horrible
3271 * error, and > 0 if there was no room in the right hand block.
3272 *
3273 * this will only push up to 1/2 the contents of the left node over
3274 */
Chris Mason5f39d392007-10-15 16:14:19 -04003275static int balance_node_right(struct btrfs_trans_handle *trans,
3276 struct btrfs_root *root,
3277 struct extent_buffer *dst,
3278 struct extent_buffer *src)
Chris Mason79f95c82007-03-01 15:16:26 -05003279{
Chris Mason79f95c82007-03-01 15:16:26 -05003280 int push_items = 0;
3281 int max_push;
3282 int src_nritems;
3283 int dst_nritems;
3284 int ret = 0;
Chris Mason79f95c82007-03-01 15:16:26 -05003285
Chris Mason7bb86312007-12-11 09:25:06 -05003286 WARN_ON(btrfs_header_generation(src) != trans->transid);
3287 WARN_ON(btrfs_header_generation(dst) != trans->transid);
3288
Chris Mason5f39d392007-10-15 16:14:19 -04003289 src_nritems = btrfs_header_nritems(src);
3290 dst_nritems = btrfs_header_nritems(dst);
Chris Mason123abc82007-03-14 14:14:43 -04003291 push_items = BTRFS_NODEPTRS_PER_BLOCK(root) - dst_nritems;
Chris Masond3977122009-01-05 21:25:51 -05003292 if (push_items <= 0)
Chris Mason79f95c82007-03-01 15:16:26 -05003293 return 1;
Chris Masonbce4eae2008-04-24 14:42:46 -04003294
Chris Masond3977122009-01-05 21:25:51 -05003295 if (src_nritems < 4)
Chris Masonbce4eae2008-04-24 14:42:46 -04003296 return 1;
Chris Mason79f95c82007-03-01 15:16:26 -05003297
3298 max_push = src_nritems / 2 + 1;
3299 /* don't try to empty the node */
Chris Masond3977122009-01-05 21:25:51 -05003300 if (max_push >= src_nritems)
Chris Mason79f95c82007-03-01 15:16:26 -05003301 return 1;
Yan252c38f2007-08-29 09:11:44 -04003302
Chris Mason79f95c82007-03-01 15:16:26 -05003303 if (max_push < push_items)
3304 push_items = max_push;
3305
Jan Schmidtf2304752012-05-26 11:43:17 +02003306 tree_mod_log_eb_move(root->fs_info, dst, push_items, 0, dst_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003307 memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items),
3308 btrfs_node_key_ptr_offset(0),
3309 (dst_nritems) *
3310 sizeof(struct btrfs_key_ptr));
Chris Masond6025572007-03-30 14:27:56 -04003311
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003312 ret = tree_mod_log_eb_copy(root->fs_info, dst, src, 0,
3313 src_nritems - push_items, push_items);
3314 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003315 btrfs_abort_transaction(trans, ret);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003316 return ret;
3317 }
Chris Mason5f39d392007-10-15 16:14:19 -04003318 copy_extent_buffer(dst, src,
3319 btrfs_node_key_ptr_offset(0),
3320 btrfs_node_key_ptr_offset(src_nritems - push_items),
Chris Masond3977122009-01-05 21:25:51 -05003321 push_items * sizeof(struct btrfs_key_ptr));
Chris Mason79f95c82007-03-01 15:16:26 -05003322
Chris Mason5f39d392007-10-15 16:14:19 -04003323 btrfs_set_header_nritems(src, src_nritems - push_items);
3324 btrfs_set_header_nritems(dst, dst_nritems + push_items);
Chris Mason79f95c82007-03-01 15:16:26 -05003325
Chris Mason5f39d392007-10-15 16:14:19 -04003326 btrfs_mark_buffer_dirty(src);
3327 btrfs_mark_buffer_dirty(dst);
Zheng Yan31840ae2008-09-23 13:14:14 -04003328
Chris Mason79f95c82007-03-01 15:16:26 -05003329 return ret;
3330}
3331
3332/*
Chris Mason97571fd2007-02-24 13:39:08 -05003333 * helper function to insert a new root level in the tree.
3334 * A new node is allocated, and a single item is inserted to
3335 * point to the existing root
Chris Masonaa5d6be2007-02-28 16:35:06 -05003336 *
3337 * returns zero on success or < 0 on failure.
Chris Mason97571fd2007-02-24 13:39:08 -05003338 */
Chris Masond3977122009-01-05 21:25:51 -05003339static noinline int insert_new_root(struct btrfs_trans_handle *trans,
Chris Mason5f39d392007-10-15 16:14:19 -04003340 struct btrfs_root *root,
Liu Bofdd99c72013-05-22 12:06:51 +00003341 struct btrfs_path *path, int level)
Chris Mason5c680ed2007-02-22 11:39:13 -05003342{
Chris Mason7bb86312007-12-11 09:25:06 -05003343 u64 lower_gen;
Chris Mason5f39d392007-10-15 16:14:19 -04003344 struct extent_buffer *lower;
3345 struct extent_buffer *c;
Chris Mason925baed2008-06-25 16:01:30 -04003346 struct extent_buffer *old;
Chris Mason5f39d392007-10-15 16:14:19 -04003347 struct btrfs_disk_key lower_key;
Chris Mason5c680ed2007-02-22 11:39:13 -05003348
3349 BUG_ON(path->nodes[level]);
3350 BUG_ON(path->nodes[level-1] != root->node);
3351
Chris Mason7bb86312007-12-11 09:25:06 -05003352 lower = path->nodes[level-1];
3353 if (level == 1)
3354 btrfs_item_key(lower, &lower_key, 0);
3355 else
3356 btrfs_node_key(lower, &lower_key, 0);
3357
David Sterba4d75f8a2014-06-15 01:54:12 +02003358 c = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid,
3359 &lower_key, level, root->node->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003360 if (IS_ERR(c))
3361 return PTR_ERR(c);
Chris Mason925baed2008-06-25 16:01:30 -04003362
Yan, Zhengf0486c62010-05-16 10:46:25 -04003363 root_add_used(root, root->nodesize);
3364
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003365 memset_extent_buffer(c, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04003366 btrfs_set_header_nritems(c, 1);
3367 btrfs_set_header_level(c, level);
Chris Masondb945352007-10-15 16:15:53 -04003368 btrfs_set_header_bytenr(c, c->start);
Chris Mason5f39d392007-10-15 16:14:19 -04003369 btrfs_set_header_generation(c, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003370 btrfs_set_header_backref_rev(c, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04003371 btrfs_set_header_owner(c, root->root_key.objectid);
Chris Masond5719762007-03-23 10:01:08 -04003372
Ross Kirk0a4e5582013-09-24 10:12:38 +01003373 write_extent_buffer(c, root->fs_info->fsid, btrfs_header_fsid(),
Chris Mason5f39d392007-10-15 16:14:19 -04003374 BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04003375
3376 write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
Geert Uytterhoevenb308bc22013-08-20 13:20:15 +02003377 btrfs_header_chunk_tree_uuid(c), BTRFS_UUID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04003378
Chris Mason5f39d392007-10-15 16:14:19 -04003379 btrfs_set_node_key(c, &lower_key, 0);
Chris Masondb945352007-10-15 16:15:53 -04003380 btrfs_set_node_blockptr(c, 0, lower->start);
Chris Mason7bb86312007-12-11 09:25:06 -05003381 lower_gen = btrfs_header_generation(lower);
Zheng Yan31840ae2008-09-23 13:14:14 -04003382 WARN_ON(lower_gen != trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05003383
3384 btrfs_set_node_ptr_generation(c, 0, lower_gen);
Chris Mason5f39d392007-10-15 16:14:19 -04003385
3386 btrfs_mark_buffer_dirty(c);
Chris Masond5719762007-03-23 10:01:08 -04003387
Chris Mason925baed2008-06-25 16:01:30 -04003388 old = root->node;
Liu Bofdd99c72013-05-22 12:06:51 +00003389 tree_mod_log_set_root_pointer(root, c, 0);
Chris Mason240f62c2011-03-23 14:54:42 -04003390 rcu_assign_pointer(root->node, c);
Chris Mason925baed2008-06-25 16:01:30 -04003391
3392 /* the super has an extra ref to root->node */
3393 free_extent_buffer(old);
3394
Chris Mason0b86a832008-03-24 15:01:56 -04003395 add_root_to_dirty_list(root);
Chris Mason5f39d392007-10-15 16:14:19 -04003396 extent_buffer_get(c);
3397 path->nodes[level] = c;
chandan95449a12015-01-15 12:22:03 +05303398 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Chris Mason5c680ed2007-02-22 11:39:13 -05003399 path->slots[level] = 0;
3400 return 0;
3401}
3402
Chris Mason74123bd2007-02-02 11:05:29 -05003403/*
3404 * worker function to insert a single pointer in a node.
3405 * the node should have enough room for the pointer already
Chris Mason97571fd2007-02-24 13:39:08 -05003406 *
Chris Mason74123bd2007-02-02 11:05:29 -05003407 * slot and level indicate where you want the key to go, and
3408 * blocknr is the block the key points to.
3409 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01003410static void insert_ptr(struct btrfs_trans_handle *trans,
3411 struct btrfs_root *root, struct btrfs_path *path,
3412 struct btrfs_disk_key *key, u64 bytenr,
Jan Schmidtc3e06962012-06-21 11:01:06 +02003413 int slot, int level)
Chris Mason74123bd2007-02-02 11:05:29 -05003414{
Chris Mason5f39d392007-10-15 16:14:19 -04003415 struct extent_buffer *lower;
Chris Mason74123bd2007-02-02 11:05:29 -05003416 int nritems;
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003417 int ret;
Chris Mason5c680ed2007-02-22 11:39:13 -05003418
3419 BUG_ON(!path->nodes[level]);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003420 btrfs_assert_tree_locked(path->nodes[level]);
Chris Mason5f39d392007-10-15 16:14:19 -04003421 lower = path->nodes[level];
3422 nritems = btrfs_header_nritems(lower);
Stoyan Gaydarovc2934982009-04-02 17:05:11 -04003423 BUG_ON(slot > nritems);
Jeff Mahoney143bede2012-03-01 14:56:26 +01003424 BUG_ON(nritems == BTRFS_NODEPTRS_PER_BLOCK(root));
Chris Mason74123bd2007-02-02 11:05:29 -05003425 if (slot != nritems) {
Jan Schmidtc3e06962012-06-21 11:01:06 +02003426 if (level)
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003427 tree_mod_log_eb_move(root->fs_info, lower, slot + 1,
3428 slot, nritems - slot);
Chris Mason5f39d392007-10-15 16:14:19 -04003429 memmove_extent_buffer(lower,
3430 btrfs_node_key_ptr_offset(slot + 1),
3431 btrfs_node_key_ptr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04003432 (nritems - slot) * sizeof(struct btrfs_key_ptr));
Chris Mason74123bd2007-02-02 11:05:29 -05003433 }
Jan Schmidtc3e06962012-06-21 11:01:06 +02003434 if (level) {
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003435 ret = tree_mod_log_insert_key(root->fs_info, lower, slot,
Josef Bacikc8cc6342013-07-01 16:18:19 -04003436 MOD_LOG_KEY_ADD, GFP_NOFS);
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02003437 BUG_ON(ret < 0);
3438 }
Chris Mason5f39d392007-10-15 16:14:19 -04003439 btrfs_set_node_key(lower, key, slot);
Chris Masondb945352007-10-15 16:15:53 -04003440 btrfs_set_node_blockptr(lower, slot, bytenr);
Chris Mason74493f72007-12-11 09:25:06 -05003441 WARN_ON(trans->transid == 0);
3442 btrfs_set_node_ptr_generation(lower, slot, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04003443 btrfs_set_header_nritems(lower, nritems + 1);
3444 btrfs_mark_buffer_dirty(lower);
Chris Mason74123bd2007-02-02 11:05:29 -05003445}
3446
Chris Mason97571fd2007-02-24 13:39:08 -05003447/*
3448 * split the node at the specified level in path in two.
3449 * The path is corrected to point to the appropriate node after the split
3450 *
3451 * Before splitting this tries to make some room in the node by pushing
3452 * left and right, if either one works, it returns right away.
Chris Masonaa5d6be2007-02-28 16:35:06 -05003453 *
3454 * returns 0 on success and < 0 on failure
Chris Mason97571fd2007-02-24 13:39:08 -05003455 */
Chris Masone02119d2008-09-05 16:13:11 -04003456static noinline int split_node(struct btrfs_trans_handle *trans,
3457 struct btrfs_root *root,
3458 struct btrfs_path *path, int level)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003459{
Chris Mason5f39d392007-10-15 16:14:19 -04003460 struct extent_buffer *c;
3461 struct extent_buffer *split;
3462 struct btrfs_disk_key disk_key;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003463 int mid;
Chris Mason5c680ed2007-02-22 11:39:13 -05003464 int ret;
Chris Mason7518a232007-03-12 12:01:18 -04003465 u32 c_nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003466
Chris Mason5f39d392007-10-15 16:14:19 -04003467 c = path->nodes[level];
Chris Mason7bb86312007-12-11 09:25:06 -05003468 WARN_ON(btrfs_header_generation(c) != trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04003469 if (c == root->node) {
Jan Schmidtd9abbf12013-03-20 13:49:48 +00003470 /*
Jan Schmidt90f8d622013-04-13 13:19:53 +00003471 * trying to split the root, lets make a new one
3472 *
Liu Bofdd99c72013-05-22 12:06:51 +00003473 * tree mod log: We don't log_removal old root in
Jan Schmidt90f8d622013-04-13 13:19:53 +00003474 * insert_new_root, because that root buffer will be kept as a
3475 * normal node. We are going to log removal of half of the
3476 * elements below with tree_mod_log_eb_copy. We're holding a
3477 * tree lock on the buffer, which is why we cannot race with
3478 * other tree_mod_log users.
Jan Schmidtd9abbf12013-03-20 13:49:48 +00003479 */
Liu Bofdd99c72013-05-22 12:06:51 +00003480 ret = insert_new_root(trans, root, path, level + 1);
Chris Mason5c680ed2007-02-22 11:39:13 -05003481 if (ret)
3482 return ret;
Chris Masonb3612422009-05-13 19:12:15 -04003483 } else {
Chris Masone66f7092007-04-20 13:16:02 -04003484 ret = push_nodes_for_insert(trans, root, path, level);
Chris Mason5f39d392007-10-15 16:14:19 -04003485 c = path->nodes[level];
3486 if (!ret && btrfs_header_nritems(c) <
Chris Masonc448acf2008-04-24 09:34:34 -04003487 BTRFS_NODEPTRS_PER_BLOCK(root) - 3)
Chris Masone66f7092007-04-20 13:16:02 -04003488 return 0;
Chris Mason54aa1f42007-06-22 14:16:25 -04003489 if (ret < 0)
3490 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003491 }
Chris Masone66f7092007-04-20 13:16:02 -04003492
Chris Mason5f39d392007-10-15 16:14:19 -04003493 c_nritems = btrfs_header_nritems(c);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003494 mid = (c_nritems + 1) / 2;
3495 btrfs_node_key(c, &disk_key, mid);
Chris Mason7bb86312007-12-11 09:25:06 -05003496
David Sterba4d75f8a2014-06-15 01:54:12 +02003497 split = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid,
3498 &disk_key, level, c->start, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04003499 if (IS_ERR(split))
3500 return PTR_ERR(split);
Chris Mason54aa1f42007-06-22 14:16:25 -04003501
Yan, Zhengf0486c62010-05-16 10:46:25 -04003502 root_add_used(root, root->nodesize);
3503
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003504 memset_extent_buffer(split, 0, 0, sizeof(struct btrfs_header));
Chris Mason5f39d392007-10-15 16:14:19 -04003505 btrfs_set_header_level(split, btrfs_header_level(c));
Chris Masondb945352007-10-15 16:15:53 -04003506 btrfs_set_header_bytenr(split, split->start);
Chris Mason5f39d392007-10-15 16:14:19 -04003507 btrfs_set_header_generation(split, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003508 btrfs_set_header_backref_rev(split, BTRFS_MIXED_BACKREF_REV);
Chris Mason5f39d392007-10-15 16:14:19 -04003509 btrfs_set_header_owner(split, root->root_key.objectid);
3510 write_extent_buffer(split, root->fs_info->fsid,
Ross Kirk0a4e5582013-09-24 10:12:38 +01003511 btrfs_header_fsid(), BTRFS_FSID_SIZE);
Chris Masone17cade2008-04-15 15:41:47 -04003512 write_extent_buffer(split, root->fs_info->chunk_tree_uuid,
Geert Uytterhoevenb308bc22013-08-20 13:20:15 +02003513 btrfs_header_chunk_tree_uuid(split),
Chris Masone17cade2008-04-15 15:41:47 -04003514 BTRFS_UUID_SIZE);
Chris Mason5f39d392007-10-15 16:14:19 -04003515
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003516 ret = tree_mod_log_eb_copy(root->fs_info, split, c, 0,
3517 mid, c_nritems - mid);
3518 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003519 btrfs_abort_transaction(trans, ret);
Filipe David Borba Manana5de865e2013-12-20 15:17:46 +00003520 return ret;
3521 }
Chris Mason5f39d392007-10-15 16:14:19 -04003522 copy_extent_buffer(split, c,
3523 btrfs_node_key_ptr_offset(0),
3524 btrfs_node_key_ptr_offset(mid),
3525 (c_nritems - mid) * sizeof(struct btrfs_key_ptr));
3526 btrfs_set_header_nritems(split, c_nritems - mid);
3527 btrfs_set_header_nritems(c, mid);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003528 ret = 0;
3529
Chris Mason5f39d392007-10-15 16:14:19 -04003530 btrfs_mark_buffer_dirty(c);
3531 btrfs_mark_buffer_dirty(split);
3532
Jeff Mahoney143bede2012-03-01 14:56:26 +01003533 insert_ptr(trans, root, path, &disk_key, split->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02003534 path->slots[level + 1] + 1, level + 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003535
Chris Mason5de08d72007-02-24 06:24:44 -05003536 if (path->slots[level] >= mid) {
Chris Mason5c680ed2007-02-22 11:39:13 -05003537 path->slots[level] -= mid;
Chris Mason925baed2008-06-25 16:01:30 -04003538 btrfs_tree_unlock(c);
Chris Mason5f39d392007-10-15 16:14:19 -04003539 free_extent_buffer(c);
3540 path->nodes[level] = split;
Chris Mason5c680ed2007-02-22 11:39:13 -05003541 path->slots[level + 1] += 1;
3542 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003543 btrfs_tree_unlock(split);
Chris Mason5f39d392007-10-15 16:14:19 -04003544 free_extent_buffer(split);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003545 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05003546 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003547}
3548
Chris Mason74123bd2007-02-02 11:05:29 -05003549/*
3550 * how many bytes are required to store the items in a leaf. start
3551 * and nr indicate which items in the leaf to check. This totals up the
3552 * space used both by the item structs and the item data
3553 */
Chris Mason5f39d392007-10-15 16:14:19 -04003554static int leaf_space_used(struct extent_buffer *l, int start, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003555{
Josef Bacik41be1f32012-10-15 13:43:18 -04003556 struct btrfs_item *start_item;
3557 struct btrfs_item *end_item;
3558 struct btrfs_map_token token;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003559 int data_len;
Chris Mason5f39d392007-10-15 16:14:19 -04003560 int nritems = btrfs_header_nritems(l);
Chris Masond4dbff92007-04-04 14:08:15 -04003561 int end = min(nritems, start + nr) - 1;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003562
3563 if (!nr)
3564 return 0;
Josef Bacik41be1f32012-10-15 13:43:18 -04003565 btrfs_init_map_token(&token);
Ross Kirkdd3cc162013-09-16 15:58:09 +01003566 start_item = btrfs_item_nr(start);
3567 end_item = btrfs_item_nr(end);
Josef Bacik41be1f32012-10-15 13:43:18 -04003568 data_len = btrfs_token_item_offset(l, start_item, &token) +
3569 btrfs_token_item_size(l, start_item, &token);
3570 data_len = data_len - btrfs_token_item_offset(l, end_item, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04003571 data_len += sizeof(struct btrfs_item) * nr;
Chris Masond4dbff92007-04-04 14:08:15 -04003572 WARN_ON(data_len < 0);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003573 return data_len;
3574}
3575
Chris Mason74123bd2007-02-02 11:05:29 -05003576/*
Chris Masond4dbff92007-04-04 14:08:15 -04003577 * The space between the end of the leaf items and
3578 * the start of the leaf data. IOW, how much room
3579 * the leaf has left for both items and data
3580 */
Chris Masond3977122009-01-05 21:25:51 -05003581noinline int btrfs_leaf_free_space(struct btrfs_root *root,
Chris Masone02119d2008-09-05 16:13:11 -04003582 struct extent_buffer *leaf)
Chris Masond4dbff92007-04-04 14:08:15 -04003583{
Chris Mason5f39d392007-10-15 16:14:19 -04003584 int nritems = btrfs_header_nritems(leaf);
3585 int ret;
3586 ret = BTRFS_LEAF_DATA_SIZE(root) - leaf_space_used(leaf, 0, nritems);
3587 if (ret < 0) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003588 btrfs_crit(root->fs_info,
3589 "leaf free space ret %d, leaf data size %lu, used %d nritems %d",
Jens Axboeae2f5412007-10-19 09:22:59 -04003590 ret, (unsigned long) BTRFS_LEAF_DATA_SIZE(root),
Chris Mason5f39d392007-10-15 16:14:19 -04003591 leaf_space_used(leaf, 0, nritems), nritems);
3592 }
3593 return ret;
Chris Masond4dbff92007-04-04 14:08:15 -04003594}
3595
Chris Mason99d8f832010-07-07 10:51:48 -04003596/*
3597 * min slot controls the lowest index we're willing to push to the
3598 * right. We'll push up to and including min_slot, but no lower
3599 */
Chris Mason44871b12009-03-13 10:04:31 -04003600static noinline int __push_leaf_right(struct btrfs_trans_handle *trans,
3601 struct btrfs_root *root,
3602 struct btrfs_path *path,
3603 int data_size, int empty,
3604 struct extent_buffer *right,
Chris Mason99d8f832010-07-07 10:51:48 -04003605 int free_space, u32 left_nritems,
3606 u32 min_slot)
Chris Mason00ec4c52007-02-24 12:47:20 -05003607{
Chris Mason5f39d392007-10-15 16:14:19 -04003608 struct extent_buffer *left = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04003609 struct extent_buffer *upper = path->nodes[1];
Chris Masoncfed81a2012-03-03 07:40:03 -05003610 struct btrfs_map_token token;
Chris Mason5f39d392007-10-15 16:14:19 -04003611 struct btrfs_disk_key disk_key;
Chris Mason00ec4c52007-02-24 12:47:20 -05003612 int slot;
Chris Mason34a38212007-11-07 13:31:03 -05003613 u32 i;
Chris Mason00ec4c52007-02-24 12:47:20 -05003614 int push_space = 0;
3615 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04003616 struct btrfs_item *item;
Chris Mason34a38212007-11-07 13:31:03 -05003617 u32 nr;
Chris Mason7518a232007-03-12 12:01:18 -04003618 u32 right_nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04003619 u32 data_end;
Chris Masondb945352007-10-15 16:15:53 -04003620 u32 this_item_size;
Chris Mason00ec4c52007-02-24 12:47:20 -05003621
Chris Masoncfed81a2012-03-03 07:40:03 -05003622 btrfs_init_map_token(&token);
3623
Chris Mason34a38212007-11-07 13:31:03 -05003624 if (empty)
3625 nr = 0;
3626 else
Chris Mason99d8f832010-07-07 10:51:48 -04003627 nr = max_t(u32, 1, min_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003628
Zheng Yan31840ae2008-09-23 13:14:14 -04003629 if (path->slots[0] >= left_nritems)
Yan Zheng87b29b22008-12-17 10:21:48 -05003630 push_space += data_size;
Zheng Yan31840ae2008-09-23 13:14:14 -04003631
Chris Mason44871b12009-03-13 10:04:31 -04003632 slot = path->slots[1];
Chris Mason34a38212007-11-07 13:31:03 -05003633 i = left_nritems - 1;
3634 while (i >= nr) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003635 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003636
Zheng Yan31840ae2008-09-23 13:14:14 -04003637 if (!empty && push_items > 0) {
3638 if (path->slots[0] > i)
3639 break;
3640 if (path->slots[0] == i) {
3641 int space = btrfs_leaf_free_space(root, left);
3642 if (space + push_space * 2 > free_space)
3643 break;
3644 }
3645 }
3646
Chris Mason00ec4c52007-02-24 12:47:20 -05003647 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05003648 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04003649
Chris Masondb945352007-10-15 16:15:53 -04003650 this_item_size = btrfs_item_size(left, item);
3651 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Mason00ec4c52007-02-24 12:47:20 -05003652 break;
Zheng Yan31840ae2008-09-23 13:14:14 -04003653
Chris Mason00ec4c52007-02-24 12:47:20 -05003654 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04003655 push_space += this_item_size + sizeof(*item);
Chris Mason34a38212007-11-07 13:31:03 -05003656 if (i == 0)
3657 break;
3658 i--;
Chris Masondb945352007-10-15 16:15:53 -04003659 }
Chris Mason5f39d392007-10-15 16:14:19 -04003660
Chris Mason925baed2008-06-25 16:01:30 -04003661 if (push_items == 0)
3662 goto out_unlock;
Chris Mason5f39d392007-10-15 16:14:19 -04003663
Julia Lawall6c1500f2012-11-03 20:30:18 +00003664 WARN_ON(!empty && push_items == left_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003665
Chris Mason00ec4c52007-02-24 12:47:20 -05003666 /* push left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04003667 right_nritems = btrfs_header_nritems(right);
Chris Mason34a38212007-11-07 13:31:03 -05003668
Chris Mason5f39d392007-10-15 16:14:19 -04003669 push_space = btrfs_item_end_nr(left, left_nritems - push_items);
Chris Mason123abc82007-03-14 14:14:43 -04003670 push_space -= leaf_data_end(root, left);
Chris Mason5f39d392007-10-15 16:14:19 -04003671
Chris Mason00ec4c52007-02-24 12:47:20 -05003672 /* make room in the right data area */
Chris Mason5f39d392007-10-15 16:14:19 -04003673 data_end = leaf_data_end(root, right);
3674 memmove_extent_buffer(right,
3675 btrfs_leaf_data(right) + data_end - push_space,
3676 btrfs_leaf_data(right) + data_end,
3677 BTRFS_LEAF_DATA_SIZE(root) - data_end);
3678
Chris Mason00ec4c52007-02-24 12:47:20 -05003679 /* copy from the left data area */
Chris Mason5f39d392007-10-15 16:14:19 -04003680 copy_extent_buffer(right, left, btrfs_leaf_data(right) +
Chris Masond6025572007-03-30 14:27:56 -04003681 BTRFS_LEAF_DATA_SIZE(root) - push_space,
3682 btrfs_leaf_data(left) + leaf_data_end(root, left),
3683 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04003684
3685 memmove_extent_buffer(right, btrfs_item_nr_offset(push_items),
3686 btrfs_item_nr_offset(0),
3687 right_nritems * sizeof(struct btrfs_item));
3688
Chris Mason00ec4c52007-02-24 12:47:20 -05003689 /* copy the items from left to right */
Chris Mason5f39d392007-10-15 16:14:19 -04003690 copy_extent_buffer(right, left, btrfs_item_nr_offset(0),
3691 btrfs_item_nr_offset(left_nritems - push_items),
3692 push_items * sizeof(struct btrfs_item));
Chris Mason00ec4c52007-02-24 12:47:20 -05003693
3694 /* update the item pointers */
Chris Mason7518a232007-03-12 12:01:18 -04003695 right_nritems += push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04003696 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04003697 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason7518a232007-03-12 12:01:18 -04003698 for (i = 0; i < right_nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003699 item = btrfs_item_nr(i);
Chris Masoncfed81a2012-03-03 07:40:03 -05003700 push_space -= btrfs_token_item_size(right, item, &token);
3701 btrfs_set_token_item_offset(right, item, push_space, &token);
Chris Masondb945352007-10-15 16:15:53 -04003702 }
3703
Chris Mason7518a232007-03-12 12:01:18 -04003704 left_nritems -= push_items;
Chris Mason5f39d392007-10-15 16:14:19 -04003705 btrfs_set_header_nritems(left, left_nritems);
Chris Mason00ec4c52007-02-24 12:47:20 -05003706
Chris Mason34a38212007-11-07 13:31:03 -05003707 if (left_nritems)
3708 btrfs_mark_buffer_dirty(left);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003709 else
Daniel Dressler01d58472014-11-21 17:15:07 +09003710 clean_tree_block(trans, root->fs_info, left);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003711
Chris Mason5f39d392007-10-15 16:14:19 -04003712 btrfs_mark_buffer_dirty(right);
Chris Masona429e512007-04-18 16:15:28 -04003713
Chris Mason5f39d392007-10-15 16:14:19 -04003714 btrfs_item_key(right, &disk_key, 0);
3715 btrfs_set_node_key(upper, &disk_key, slot + 1);
Chris Masond6025572007-03-30 14:27:56 -04003716 btrfs_mark_buffer_dirty(upper);
Chris Mason02217ed2007-03-02 16:08:05 -05003717
Chris Mason00ec4c52007-02-24 12:47:20 -05003718 /* then fixup the leaf pointer in the path */
Chris Mason7518a232007-03-12 12:01:18 -04003719 if (path->slots[0] >= left_nritems) {
3720 path->slots[0] -= left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04003721 if (btrfs_header_nritems(path->nodes[0]) == 0)
Daniel Dressler01d58472014-11-21 17:15:07 +09003722 clean_tree_block(trans, root->fs_info, path->nodes[0]);
Chris Mason925baed2008-06-25 16:01:30 -04003723 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04003724 free_extent_buffer(path->nodes[0]);
3725 path->nodes[0] = right;
Chris Mason00ec4c52007-02-24 12:47:20 -05003726 path->slots[1] += 1;
3727 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003728 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04003729 free_extent_buffer(right);
Chris Mason00ec4c52007-02-24 12:47:20 -05003730 }
3731 return 0;
Chris Mason925baed2008-06-25 16:01:30 -04003732
3733out_unlock:
3734 btrfs_tree_unlock(right);
3735 free_extent_buffer(right);
3736 return 1;
Chris Mason00ec4c52007-02-24 12:47:20 -05003737}
Chris Mason925baed2008-06-25 16:01:30 -04003738
Chris Mason00ec4c52007-02-24 12:47:20 -05003739/*
Chris Mason44871b12009-03-13 10:04:31 -04003740 * push some data in the path leaf to the right, trying to free up at
3741 * least data_size bytes. returns zero if the push worked, nonzero otherwise
3742 *
3743 * returns 1 if the push failed because the other node didn't have enough
3744 * room, 0 if everything worked out and < 0 if there were major errors.
Chris Mason99d8f832010-07-07 10:51:48 -04003745 *
3746 * this will push starting from min_slot to the end of the leaf. It won't
3747 * push any slot lower than min_slot
Chris Mason44871b12009-03-13 10:04:31 -04003748 */
3749static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04003750 *root, struct btrfs_path *path,
3751 int min_data_size, int data_size,
3752 int empty, u32 min_slot)
Chris Mason44871b12009-03-13 10:04:31 -04003753{
3754 struct extent_buffer *left = path->nodes[0];
3755 struct extent_buffer *right;
3756 struct extent_buffer *upper;
3757 int slot;
3758 int free_space;
3759 u32 left_nritems;
3760 int ret;
3761
3762 if (!path->nodes[1])
3763 return 1;
3764
3765 slot = path->slots[1];
3766 upper = path->nodes[1];
3767 if (slot >= btrfs_header_nritems(upper) - 1)
3768 return 1;
3769
3770 btrfs_assert_tree_locked(path->nodes[1]);
3771
3772 right = read_node_slot(root, upper, slot + 1);
Liu Bofb770ae2016-07-05 12:10:14 -07003773 /*
3774 * slot + 1 is not valid or we fail to read the right node,
3775 * no big deal, just return.
3776 */
3777 if (IS_ERR(right))
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00003778 return 1;
3779
Chris Mason44871b12009-03-13 10:04:31 -04003780 btrfs_tree_lock(right);
3781 btrfs_set_lock_blocking(right);
3782
3783 free_space = btrfs_leaf_free_space(root, right);
3784 if (free_space < data_size)
3785 goto out_unlock;
3786
3787 /* cow and double check */
3788 ret = btrfs_cow_block(trans, root, right, upper,
3789 slot + 1, &right);
3790 if (ret)
3791 goto out_unlock;
3792
3793 free_space = btrfs_leaf_free_space(root, right);
3794 if (free_space < data_size)
3795 goto out_unlock;
3796
3797 left_nritems = btrfs_header_nritems(left);
3798 if (left_nritems == 0)
3799 goto out_unlock;
3800
Filipe David Borba Manana2ef1fed2013-12-04 22:17:39 +00003801 if (path->slots[0] == left_nritems && !empty) {
3802 /* Key greater than all keys in the leaf, right neighbor has
3803 * enough room for it and we're not emptying our leaf to delete
3804 * it, therefore use right neighbor to insert the new item and
3805 * no need to touch/dirty our left leaft. */
3806 btrfs_tree_unlock(left);
3807 free_extent_buffer(left);
3808 path->nodes[0] = right;
3809 path->slots[0] = 0;
3810 path->slots[1]++;
3811 return 0;
3812 }
3813
Chris Mason99d8f832010-07-07 10:51:48 -04003814 return __push_leaf_right(trans, root, path, min_data_size, empty,
3815 right, free_space, left_nritems, min_slot);
Chris Mason44871b12009-03-13 10:04:31 -04003816out_unlock:
3817 btrfs_tree_unlock(right);
3818 free_extent_buffer(right);
3819 return 1;
3820}
3821
3822/*
Chris Mason74123bd2007-02-02 11:05:29 -05003823 * push some data in the path leaf to the left, trying to free up at
3824 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04003825 *
3826 * max_slot can put a limit on how far into the leaf we'll push items. The
3827 * item at 'max_slot' won't be touched. Use (u32)-1 to make us do all the
3828 * items
Chris Mason74123bd2007-02-02 11:05:29 -05003829 */
Chris Mason44871b12009-03-13 10:04:31 -04003830static noinline int __push_leaf_left(struct btrfs_trans_handle *trans,
3831 struct btrfs_root *root,
3832 struct btrfs_path *path, int data_size,
3833 int empty, struct extent_buffer *left,
Chris Mason99d8f832010-07-07 10:51:48 -04003834 int free_space, u32 right_nritems,
3835 u32 max_slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003836{
Chris Mason5f39d392007-10-15 16:14:19 -04003837 struct btrfs_disk_key disk_key;
3838 struct extent_buffer *right = path->nodes[0];
Chris Masonbe0e5c02007-01-26 15:51:26 -05003839 int i;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003840 int push_space = 0;
3841 int push_items = 0;
Chris Mason0783fcf2007-03-12 20:12:07 -04003842 struct btrfs_item *item;
Chris Mason7518a232007-03-12 12:01:18 -04003843 u32 old_left_nritems;
Chris Mason34a38212007-11-07 13:31:03 -05003844 u32 nr;
Chris Masonaa5d6be2007-02-28 16:35:06 -05003845 int ret = 0;
Chris Masondb945352007-10-15 16:15:53 -04003846 u32 this_item_size;
3847 u32 old_left_item_size;
Chris Masoncfed81a2012-03-03 07:40:03 -05003848 struct btrfs_map_token token;
3849
3850 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003851
Chris Mason34a38212007-11-07 13:31:03 -05003852 if (empty)
Chris Mason99d8f832010-07-07 10:51:48 -04003853 nr = min(right_nritems, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003854 else
Chris Mason99d8f832010-07-07 10:51:48 -04003855 nr = min(right_nritems - 1, max_slot);
Chris Mason34a38212007-11-07 13:31:03 -05003856
3857 for (i = 0; i < nr; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003858 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003859
Zheng Yan31840ae2008-09-23 13:14:14 -04003860 if (!empty && push_items > 0) {
3861 if (path->slots[0] < i)
3862 break;
3863 if (path->slots[0] == i) {
3864 int space = btrfs_leaf_free_space(root, right);
3865 if (space + push_space * 2 > free_space)
3866 break;
3867 }
3868 }
3869
Chris Masonbe0e5c02007-01-26 15:51:26 -05003870 if (path->slots[0] == i)
Yan Zheng87b29b22008-12-17 10:21:48 -05003871 push_space += data_size;
Chris Masondb945352007-10-15 16:15:53 -04003872
3873 this_item_size = btrfs_item_size(right, item);
3874 if (this_item_size + sizeof(*item) + push_space > free_space)
Chris Masonbe0e5c02007-01-26 15:51:26 -05003875 break;
Chris Masondb945352007-10-15 16:15:53 -04003876
Chris Masonbe0e5c02007-01-26 15:51:26 -05003877 push_items++;
Chris Masondb945352007-10-15 16:15:53 -04003878 push_space += this_item_size + sizeof(*item);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003879 }
Chris Masondb945352007-10-15 16:15:53 -04003880
Chris Masonbe0e5c02007-01-26 15:51:26 -05003881 if (push_items == 0) {
Chris Mason925baed2008-06-25 16:01:30 -04003882 ret = 1;
3883 goto out;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003884 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303885 WARN_ON(!empty && push_items == btrfs_header_nritems(right));
Chris Mason5f39d392007-10-15 16:14:19 -04003886
Chris Masonbe0e5c02007-01-26 15:51:26 -05003887 /* push data from right to left */
Chris Mason5f39d392007-10-15 16:14:19 -04003888 copy_extent_buffer(left, right,
3889 btrfs_item_nr_offset(btrfs_header_nritems(left)),
3890 btrfs_item_nr_offset(0),
3891 push_items * sizeof(struct btrfs_item));
3892
Chris Mason123abc82007-03-14 14:14:43 -04003893 push_space = BTRFS_LEAF_DATA_SIZE(root) -
Chris Masond3977122009-01-05 21:25:51 -05003894 btrfs_item_offset_nr(right, push_items - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003895
3896 copy_extent_buffer(left, right, btrfs_leaf_data(left) +
Chris Masond6025572007-03-30 14:27:56 -04003897 leaf_data_end(root, left) - push_space,
3898 btrfs_leaf_data(right) +
Chris Mason5f39d392007-10-15 16:14:19 -04003899 btrfs_item_offset_nr(right, push_items - 1),
Chris Masond6025572007-03-30 14:27:56 -04003900 push_space);
Chris Mason5f39d392007-10-15 16:14:19 -04003901 old_left_nritems = btrfs_header_nritems(left);
Yan Zheng87b29b22008-12-17 10:21:48 -05003902 BUG_ON(old_left_nritems <= 0);
Chris Masoneb60cea2007-02-02 09:18:22 -05003903
Chris Masondb945352007-10-15 16:15:53 -04003904 old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1);
Chris Mason0783fcf2007-03-12 20:12:07 -04003905 for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04003906 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04003907
Ross Kirkdd3cc162013-09-16 15:58:09 +01003908 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003909
Chris Masoncfed81a2012-03-03 07:40:03 -05003910 ioff = btrfs_token_item_offset(left, item, &token);
3911 btrfs_set_token_item_offset(left, item,
3912 ioff - (BTRFS_LEAF_DATA_SIZE(root) - old_left_item_size),
3913 &token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003914 }
Chris Mason5f39d392007-10-15 16:14:19 -04003915 btrfs_set_header_nritems(left, old_left_nritems + push_items);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003916
3917 /* fixup right node */
Julia Lawall31b1a2b2012-11-03 10:58:34 +00003918 if (push_items > right_nritems)
3919 WARN(1, KERN_CRIT "push items %d nr %u\n", push_items,
Chris Masond3977122009-01-05 21:25:51 -05003920 right_nritems);
Chris Mason5f39d392007-10-15 16:14:19 -04003921
Chris Mason34a38212007-11-07 13:31:03 -05003922 if (push_items < right_nritems) {
3923 push_space = btrfs_item_offset_nr(right, push_items - 1) -
3924 leaf_data_end(root, right);
3925 memmove_extent_buffer(right, btrfs_leaf_data(right) +
3926 BTRFS_LEAF_DATA_SIZE(root) - push_space,
3927 btrfs_leaf_data(right) +
3928 leaf_data_end(root, right), push_space);
3929
3930 memmove_extent_buffer(right, btrfs_item_nr_offset(0),
Chris Mason5f39d392007-10-15 16:14:19 -04003931 btrfs_item_nr_offset(push_items),
3932 (btrfs_header_nritems(right) - push_items) *
3933 sizeof(struct btrfs_item));
Chris Mason34a38212007-11-07 13:31:03 -05003934 }
Yaneef1c492007-11-26 10:58:13 -05003935 right_nritems -= push_items;
3936 btrfs_set_header_nritems(right, right_nritems);
Chris Mason123abc82007-03-14 14:14:43 -04003937 push_space = BTRFS_LEAF_DATA_SIZE(root);
Chris Mason5f39d392007-10-15 16:14:19 -04003938 for (i = 0; i < right_nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01003939 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04003940
Chris Masoncfed81a2012-03-03 07:40:03 -05003941 push_space = push_space - btrfs_token_item_size(right,
3942 item, &token);
3943 btrfs_set_token_item_offset(right, item, push_space, &token);
Chris Masondb945352007-10-15 16:15:53 -04003944 }
Chris Masoneb60cea2007-02-02 09:18:22 -05003945
Chris Mason5f39d392007-10-15 16:14:19 -04003946 btrfs_mark_buffer_dirty(left);
Chris Mason34a38212007-11-07 13:31:03 -05003947 if (right_nritems)
3948 btrfs_mark_buffer_dirty(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003949 else
Daniel Dressler01d58472014-11-21 17:15:07 +09003950 clean_tree_block(trans, root->fs_info, right);
Chris Mason098f59c2007-05-11 11:33:21 -04003951
Chris Mason5f39d392007-10-15 16:14:19 -04003952 btrfs_item_key(right, &disk_key, 0);
Daniel Dresslerb7a03652014-11-12 13:43:09 +09003953 fixup_low_keys(root->fs_info, path, &disk_key, 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003954
3955 /* then fixup the leaf pointer in the path */
3956 if (path->slots[0] < push_items) {
3957 path->slots[0] += old_left_nritems;
Chris Mason925baed2008-06-25 16:01:30 -04003958 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04003959 free_extent_buffer(path->nodes[0]);
3960 path->nodes[0] = left;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003961 path->slots[1] -= 1;
3962 } else {
Chris Mason925baed2008-06-25 16:01:30 -04003963 btrfs_tree_unlock(left);
Chris Mason5f39d392007-10-15 16:14:19 -04003964 free_extent_buffer(left);
Chris Masonbe0e5c02007-01-26 15:51:26 -05003965 path->slots[0] -= push_items;
3966 }
Chris Masoneb60cea2007-02-02 09:18:22 -05003967 BUG_ON(path->slots[0] < 0);
Chris Masonaa5d6be2007-02-28 16:35:06 -05003968 return ret;
Chris Mason925baed2008-06-25 16:01:30 -04003969out:
3970 btrfs_tree_unlock(left);
3971 free_extent_buffer(left);
3972 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05003973}
3974
Chris Mason74123bd2007-02-02 11:05:29 -05003975/*
Chris Mason44871b12009-03-13 10:04:31 -04003976 * push some data in the path leaf to the left, trying to free up at
3977 * least data_size bytes. returns zero if the push worked, nonzero otherwise
Chris Mason99d8f832010-07-07 10:51:48 -04003978 *
3979 * max_slot can put a limit on how far into the leaf we'll push items. The
3980 * item at 'max_slot' won't be touched. Use (u32)-1 to make us push all the
3981 * items
Chris Mason44871b12009-03-13 10:04:31 -04003982 */
3983static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Mason99d8f832010-07-07 10:51:48 -04003984 *root, struct btrfs_path *path, int min_data_size,
3985 int data_size, int empty, u32 max_slot)
Chris Mason44871b12009-03-13 10:04:31 -04003986{
3987 struct extent_buffer *right = path->nodes[0];
3988 struct extent_buffer *left;
3989 int slot;
3990 int free_space;
3991 u32 right_nritems;
3992 int ret = 0;
3993
3994 slot = path->slots[1];
3995 if (slot == 0)
3996 return 1;
3997 if (!path->nodes[1])
3998 return 1;
3999
4000 right_nritems = btrfs_header_nritems(right);
4001 if (right_nritems == 0)
4002 return 1;
4003
4004 btrfs_assert_tree_locked(path->nodes[1]);
4005
4006 left = read_node_slot(root, path->nodes[1], slot - 1);
Liu Bofb770ae2016-07-05 12:10:14 -07004007 /*
4008 * slot - 1 is not valid or we fail to read the left node,
4009 * no big deal, just return.
4010 */
4011 if (IS_ERR(left))
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00004012 return 1;
4013
Chris Mason44871b12009-03-13 10:04:31 -04004014 btrfs_tree_lock(left);
4015 btrfs_set_lock_blocking(left);
4016
4017 free_space = btrfs_leaf_free_space(root, left);
4018 if (free_space < data_size) {
4019 ret = 1;
4020 goto out;
4021 }
4022
4023 /* cow and double check */
4024 ret = btrfs_cow_block(trans, root, left,
4025 path->nodes[1], slot - 1, &left);
4026 if (ret) {
4027 /* we hit -ENOSPC, but it isn't fatal here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004028 if (ret == -ENOSPC)
4029 ret = 1;
Chris Mason44871b12009-03-13 10:04:31 -04004030 goto out;
4031 }
4032
4033 free_space = btrfs_leaf_free_space(root, left);
4034 if (free_space < data_size) {
4035 ret = 1;
4036 goto out;
4037 }
4038
Chris Mason99d8f832010-07-07 10:51:48 -04004039 return __push_leaf_left(trans, root, path, min_data_size,
4040 empty, left, free_space, right_nritems,
4041 max_slot);
Chris Mason44871b12009-03-13 10:04:31 -04004042out:
4043 btrfs_tree_unlock(left);
4044 free_extent_buffer(left);
4045 return ret;
4046}
4047
4048/*
Chris Mason74123bd2007-02-02 11:05:29 -05004049 * split the path's leaf in two, making sure there is at least data_size
4050 * available for the resulting leaf level of the path.
4051 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01004052static noinline void copy_for_split(struct btrfs_trans_handle *trans,
4053 struct btrfs_root *root,
4054 struct btrfs_path *path,
4055 struct extent_buffer *l,
4056 struct extent_buffer *right,
4057 int slot, int mid, int nritems)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004058{
Chris Masonbe0e5c02007-01-26 15:51:26 -05004059 int data_copy_size;
4060 int rt_data_off;
4061 int i;
Chris Masond4dbff92007-04-04 14:08:15 -04004062 struct btrfs_disk_key disk_key;
Chris Masoncfed81a2012-03-03 07:40:03 -05004063 struct btrfs_map_token token;
4064
4065 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004066
Chris Mason5f39d392007-10-15 16:14:19 -04004067 nritems = nritems - mid;
4068 btrfs_set_header_nritems(right, nritems);
4069 data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(root, l);
4070
4071 copy_extent_buffer(right, l, btrfs_item_nr_offset(0),
4072 btrfs_item_nr_offset(mid),
4073 nritems * sizeof(struct btrfs_item));
4074
4075 copy_extent_buffer(right, l,
Chris Masond6025572007-03-30 14:27:56 -04004076 btrfs_leaf_data(right) + BTRFS_LEAF_DATA_SIZE(root) -
4077 data_copy_size, btrfs_leaf_data(l) +
4078 leaf_data_end(root, l), data_copy_size);
Chris Mason74123bd2007-02-02 11:05:29 -05004079
Chris Mason5f39d392007-10-15 16:14:19 -04004080 rt_data_off = BTRFS_LEAF_DATA_SIZE(root) -
4081 btrfs_item_end_nr(l, mid);
4082
4083 for (i = 0; i < nritems; i++) {
Ross Kirkdd3cc162013-09-16 15:58:09 +01004084 struct btrfs_item *item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04004085 u32 ioff;
4086
Chris Masoncfed81a2012-03-03 07:40:03 -05004087 ioff = btrfs_token_item_offset(right, item, &token);
4088 btrfs_set_token_item_offset(right, item,
4089 ioff + rt_data_off, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004090 }
Chris Mason74123bd2007-02-02 11:05:29 -05004091
Chris Mason5f39d392007-10-15 16:14:19 -04004092 btrfs_set_header_nritems(l, mid);
Chris Mason5f39d392007-10-15 16:14:19 -04004093 btrfs_item_key(right, &disk_key, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004094 insert_ptr(trans, root, path, &disk_key, right->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02004095 path->slots[1] + 1, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004096
4097 btrfs_mark_buffer_dirty(right);
4098 btrfs_mark_buffer_dirty(l);
Chris Masoneb60cea2007-02-02 09:18:22 -05004099 BUG_ON(path->slots[0] != slot);
Chris Mason5f39d392007-10-15 16:14:19 -04004100
Chris Masonbe0e5c02007-01-26 15:51:26 -05004101 if (mid <= slot) {
Chris Mason925baed2008-06-25 16:01:30 -04004102 btrfs_tree_unlock(path->nodes[0]);
Chris Mason5f39d392007-10-15 16:14:19 -04004103 free_extent_buffer(path->nodes[0]);
4104 path->nodes[0] = right;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004105 path->slots[0] -= mid;
4106 path->slots[1] += 1;
Chris Mason925baed2008-06-25 16:01:30 -04004107 } else {
4108 btrfs_tree_unlock(right);
Chris Mason5f39d392007-10-15 16:14:19 -04004109 free_extent_buffer(right);
Chris Mason925baed2008-06-25 16:01:30 -04004110 }
Chris Mason5f39d392007-10-15 16:14:19 -04004111
Chris Masoneb60cea2007-02-02 09:18:22 -05004112 BUG_ON(path->slots[0] < 0);
Chris Mason44871b12009-03-13 10:04:31 -04004113}
4114
4115/*
Chris Mason99d8f832010-07-07 10:51:48 -04004116 * double splits happen when we need to insert a big item in the middle
4117 * of a leaf. A double split can leave us with 3 mostly empty leaves:
4118 * leaf: [ slots 0 - N] [ our target ] [ N + 1 - total in leaf ]
4119 * A B C
4120 *
4121 * We avoid this by trying to push the items on either side of our target
4122 * into the adjacent leaves. If all goes well we can avoid the double split
4123 * completely.
4124 */
4125static noinline int push_for_double_split(struct btrfs_trans_handle *trans,
4126 struct btrfs_root *root,
4127 struct btrfs_path *path,
4128 int data_size)
4129{
4130 int ret;
4131 int progress = 0;
4132 int slot;
4133 u32 nritems;
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004134 int space_needed = data_size;
Chris Mason99d8f832010-07-07 10:51:48 -04004135
4136 slot = path->slots[0];
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004137 if (slot < btrfs_header_nritems(path->nodes[0]))
4138 space_needed -= btrfs_leaf_free_space(root, path->nodes[0]);
Chris Mason99d8f832010-07-07 10:51:48 -04004139
4140 /*
4141 * try to push all the items after our slot into the
4142 * right leaf
4143 */
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004144 ret = push_leaf_right(trans, root, path, 1, space_needed, 0, slot);
Chris Mason99d8f832010-07-07 10:51:48 -04004145 if (ret < 0)
4146 return ret;
4147
4148 if (ret == 0)
4149 progress++;
4150
4151 nritems = btrfs_header_nritems(path->nodes[0]);
4152 /*
4153 * our goal is to get our slot at the start or end of a leaf. If
4154 * we've done so we're done
4155 */
4156 if (path->slots[0] == 0 || path->slots[0] == nritems)
4157 return 0;
4158
4159 if (btrfs_leaf_free_space(root, path->nodes[0]) >= data_size)
4160 return 0;
4161
4162 /* try to push all the items before our slot into the next leaf */
4163 slot = path->slots[0];
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004164 ret = push_leaf_left(trans, root, path, 1, space_needed, 0, slot);
Chris Mason99d8f832010-07-07 10:51:48 -04004165 if (ret < 0)
4166 return ret;
4167
4168 if (ret == 0)
4169 progress++;
4170
4171 if (progress)
4172 return 0;
4173 return 1;
4174}
4175
4176/*
Chris Mason44871b12009-03-13 10:04:31 -04004177 * split the path's leaf in two, making sure there is at least data_size
4178 * available for the resulting leaf level of the path.
4179 *
4180 * returns 0 if all went well and < 0 on failure.
4181 */
4182static noinline int split_leaf(struct btrfs_trans_handle *trans,
4183 struct btrfs_root *root,
4184 struct btrfs_key *ins_key,
4185 struct btrfs_path *path, int data_size,
4186 int extend)
4187{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004188 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04004189 struct extent_buffer *l;
4190 u32 nritems;
4191 int mid;
4192 int slot;
4193 struct extent_buffer *right;
Daniel Dresslerb7a03652014-11-12 13:43:09 +09004194 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason44871b12009-03-13 10:04:31 -04004195 int ret = 0;
4196 int wret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004197 int split;
Chris Mason44871b12009-03-13 10:04:31 -04004198 int num_doubles = 0;
Chris Mason99d8f832010-07-07 10:51:48 -04004199 int tried_avoid_double = 0;
Chris Mason44871b12009-03-13 10:04:31 -04004200
Yan, Zhenga5719522009-09-24 09:17:31 -04004201 l = path->nodes[0];
4202 slot = path->slots[0];
4203 if (extend && data_size + btrfs_item_size_nr(l, slot) +
4204 sizeof(struct btrfs_item) > BTRFS_LEAF_DATA_SIZE(root))
4205 return -EOVERFLOW;
4206
Chris Mason44871b12009-03-13 10:04:31 -04004207 /* first try to make some room by pushing left and right */
Liu Bo33157e02013-05-22 12:07:06 +00004208 if (data_size && path->nodes[1]) {
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004209 int space_needed = data_size;
4210
4211 if (slot < btrfs_header_nritems(l))
4212 space_needed -= btrfs_leaf_free_space(root, l);
4213
4214 wret = push_leaf_right(trans, root, path, space_needed,
4215 space_needed, 0, 0);
Chris Mason44871b12009-03-13 10:04:31 -04004216 if (wret < 0)
4217 return wret;
4218 if (wret) {
Filipe David Borba Manana5a4267c2013-11-25 03:20:46 +00004219 wret = push_leaf_left(trans, root, path, space_needed,
4220 space_needed, 0, (u32)-1);
Chris Mason44871b12009-03-13 10:04:31 -04004221 if (wret < 0)
4222 return wret;
4223 }
4224 l = path->nodes[0];
4225
4226 /* did the pushes work? */
4227 if (btrfs_leaf_free_space(root, l) >= data_size)
4228 return 0;
4229 }
4230
4231 if (!path->nodes[1]) {
Liu Bofdd99c72013-05-22 12:06:51 +00004232 ret = insert_new_root(trans, root, path, 1);
Chris Mason44871b12009-03-13 10:04:31 -04004233 if (ret)
4234 return ret;
4235 }
4236again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004237 split = 1;
Chris Mason44871b12009-03-13 10:04:31 -04004238 l = path->nodes[0];
4239 slot = path->slots[0];
4240 nritems = btrfs_header_nritems(l);
4241 mid = (nritems + 1) / 2;
4242
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004243 if (mid <= slot) {
4244 if (nritems == 1 ||
4245 leaf_space_used(l, mid, nritems - mid) + data_size >
4246 BTRFS_LEAF_DATA_SIZE(root)) {
4247 if (slot >= nritems) {
4248 split = 0;
4249 } else {
4250 mid = slot;
4251 if (mid != nritems &&
4252 leaf_space_used(l, mid, nritems - mid) +
4253 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason99d8f832010-07-07 10:51:48 -04004254 if (data_size && !tried_avoid_double)
4255 goto push_for_double;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004256 split = 2;
4257 }
4258 }
4259 }
4260 } else {
4261 if (leaf_space_used(l, 0, mid) + data_size >
4262 BTRFS_LEAF_DATA_SIZE(root)) {
4263 if (!extend && data_size && slot == 0) {
4264 split = 0;
4265 } else if ((extend || !data_size) && slot == 0) {
4266 mid = 1;
4267 } else {
4268 mid = slot;
4269 if (mid != nritems &&
4270 leaf_space_used(l, mid, nritems - mid) +
4271 data_size > BTRFS_LEAF_DATA_SIZE(root)) {
Chris Mason99d8f832010-07-07 10:51:48 -04004272 if (data_size && !tried_avoid_double)
4273 goto push_for_double;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304274 split = 2;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004275 }
4276 }
4277 }
4278 }
4279
4280 if (split == 0)
4281 btrfs_cpu_key_to_disk(&disk_key, ins_key);
4282 else
4283 btrfs_item_key(l, &disk_key, mid);
4284
David Sterba4d75f8a2014-06-15 01:54:12 +02004285 right = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid,
4286 &disk_key, 0, l->start, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004287 if (IS_ERR(right))
Chris Mason44871b12009-03-13 10:04:31 -04004288 return PTR_ERR(right);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004289
David Sterba707e8a02014-06-04 19:22:26 +02004290 root_add_used(root, root->nodesize);
Chris Mason44871b12009-03-13 10:04:31 -04004291
4292 memset_extent_buffer(right, 0, 0, sizeof(struct btrfs_header));
4293 btrfs_set_header_bytenr(right, right->start);
4294 btrfs_set_header_generation(right, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004295 btrfs_set_header_backref_rev(right, BTRFS_MIXED_BACKREF_REV);
Chris Mason44871b12009-03-13 10:04:31 -04004296 btrfs_set_header_owner(right, root->root_key.objectid);
4297 btrfs_set_header_level(right, 0);
Daniel Dresslerb7a03652014-11-12 13:43:09 +09004298 write_extent_buffer(right, fs_info->fsid,
Ross Kirk0a4e5582013-09-24 10:12:38 +01004299 btrfs_header_fsid(), BTRFS_FSID_SIZE);
Chris Mason44871b12009-03-13 10:04:31 -04004300
Daniel Dresslerb7a03652014-11-12 13:43:09 +09004301 write_extent_buffer(right, fs_info->chunk_tree_uuid,
Geert Uytterhoevenb308bc22013-08-20 13:20:15 +02004302 btrfs_header_chunk_tree_uuid(right),
Chris Mason44871b12009-03-13 10:04:31 -04004303 BTRFS_UUID_SIZE);
4304
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004305 if (split == 0) {
4306 if (mid <= slot) {
4307 btrfs_set_header_nritems(right, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004308 insert_ptr(trans, root, path, &disk_key, right->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02004309 path->slots[1] + 1, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004310 btrfs_tree_unlock(path->nodes[0]);
4311 free_extent_buffer(path->nodes[0]);
4312 path->nodes[0] = right;
4313 path->slots[0] = 0;
4314 path->slots[1] += 1;
4315 } else {
4316 btrfs_set_header_nritems(right, 0);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004317 insert_ptr(trans, root, path, &disk_key, right->start,
Jan Schmidtc3e06962012-06-21 11:01:06 +02004318 path->slots[1], 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004319 btrfs_tree_unlock(path->nodes[0]);
4320 free_extent_buffer(path->nodes[0]);
4321 path->nodes[0] = right;
4322 path->slots[0] = 0;
Jeff Mahoney143bede2012-03-01 14:56:26 +01004323 if (path->slots[1] == 0)
Daniel Dresslerb7a03652014-11-12 13:43:09 +09004324 fixup_low_keys(fs_info, path, &disk_key, 1);
Chris Mason44871b12009-03-13 10:04:31 -04004325 }
Liu Bo196e0242016-09-07 14:48:28 -07004326 /*
4327 * We create a new leaf 'right' for the required ins_len and
4328 * we'll do btrfs_mark_buffer_dirty() on this leaf after copying
4329 * the content of ins_len to 'right'.
4330 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004331 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04004332 }
4333
Jeff Mahoney143bede2012-03-01 14:56:26 +01004334 copy_for_split(trans, root, path, l, right, slot, mid, nritems);
Chris Mason44871b12009-03-13 10:04:31 -04004335
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004336 if (split == 2) {
Chris Masoncc0c5532007-10-25 15:42:57 -04004337 BUG_ON(num_doubles != 0);
4338 num_doubles++;
4339 goto again;
Chris Mason3326d1b2007-10-15 16:18:25 -04004340 }
Chris Mason44871b12009-03-13 10:04:31 -04004341
Jeff Mahoney143bede2012-03-01 14:56:26 +01004342 return 0;
Chris Mason99d8f832010-07-07 10:51:48 -04004343
4344push_for_double:
4345 push_for_double_split(trans, root, path, data_size);
4346 tried_avoid_double = 1;
4347 if (btrfs_leaf_free_space(root, path->nodes[0]) >= data_size)
4348 return 0;
4349 goto again;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004350}
4351
Yan, Zhengad48fd752009-11-12 09:33:58 +00004352static noinline int setup_leaf_for_split(struct btrfs_trans_handle *trans,
4353 struct btrfs_root *root,
4354 struct btrfs_path *path, int ins_len)
Chris Mason459931e2008-12-10 09:10:46 -05004355{
Yan, Zhengad48fd752009-11-12 09:33:58 +00004356 struct btrfs_key key;
Chris Mason459931e2008-12-10 09:10:46 -05004357 struct extent_buffer *leaf;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004358 struct btrfs_file_extent_item *fi;
4359 u64 extent_len = 0;
4360 u32 item_size;
4361 int ret;
Chris Mason459931e2008-12-10 09:10:46 -05004362
4363 leaf = path->nodes[0];
Yan, Zhengad48fd752009-11-12 09:33:58 +00004364 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4365
4366 BUG_ON(key.type != BTRFS_EXTENT_DATA_KEY &&
4367 key.type != BTRFS_EXTENT_CSUM_KEY);
4368
4369 if (btrfs_leaf_free_space(root, leaf) >= ins_len)
4370 return 0;
Chris Mason459931e2008-12-10 09:10:46 -05004371
4372 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004373 if (key.type == BTRFS_EXTENT_DATA_KEY) {
4374 fi = btrfs_item_ptr(leaf, path->slots[0],
4375 struct btrfs_file_extent_item);
4376 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
4377 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004378 btrfs_release_path(path);
Chris Mason459931e2008-12-10 09:10:46 -05004379
Chris Mason459931e2008-12-10 09:10:46 -05004380 path->keep_locks = 1;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004381 path->search_for_split = 1;
4382 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
Chris Mason459931e2008-12-10 09:10:46 -05004383 path->search_for_split = 0;
Filipe Mananaa8df6fe2015-01-20 12:40:53 +00004384 if (ret > 0)
4385 ret = -EAGAIN;
Yan, Zhengad48fd752009-11-12 09:33:58 +00004386 if (ret < 0)
4387 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004388
Yan, Zhengad48fd752009-11-12 09:33:58 +00004389 ret = -EAGAIN;
4390 leaf = path->nodes[0];
Filipe Mananaa8df6fe2015-01-20 12:40:53 +00004391 /* if our item isn't there, return now */
4392 if (item_size != btrfs_item_size_nr(leaf, path->slots[0]))
Yan, Zhengad48fd752009-11-12 09:33:58 +00004393 goto err;
4394
Chris Mason109f6ae2010-04-02 09:20:18 -04004395 /* the leaf has changed, it now has room. return now */
4396 if (btrfs_leaf_free_space(root, path->nodes[0]) >= ins_len)
4397 goto err;
4398
Yan, Zhengad48fd752009-11-12 09:33:58 +00004399 if (key.type == BTRFS_EXTENT_DATA_KEY) {
4400 fi = btrfs_item_ptr(leaf, path->slots[0],
4401 struct btrfs_file_extent_item);
4402 if (extent_len != btrfs_file_extent_num_bytes(leaf, fi))
4403 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004404 }
4405
Chris Masonb9473432009-03-13 11:00:37 -04004406 btrfs_set_path_blocking(path);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004407 ret = split_leaf(trans, root, &key, path, ins_len, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004408 if (ret)
4409 goto err;
Chris Mason459931e2008-12-10 09:10:46 -05004410
Yan, Zhengad48fd752009-11-12 09:33:58 +00004411 path->keep_locks = 0;
Chris Masonb9473432009-03-13 11:00:37 -04004412 btrfs_unlock_up_safe(path, 1);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004413 return 0;
4414err:
4415 path->keep_locks = 0;
4416 return ret;
4417}
4418
4419static noinline int split_item(struct btrfs_trans_handle *trans,
4420 struct btrfs_root *root,
4421 struct btrfs_path *path,
4422 struct btrfs_key *new_key,
4423 unsigned long split_offset)
4424{
4425 struct extent_buffer *leaf;
4426 struct btrfs_item *item;
4427 struct btrfs_item *new_item;
4428 int slot;
4429 char *buf;
4430 u32 nritems;
4431 u32 item_size;
4432 u32 orig_offset;
4433 struct btrfs_disk_key disk_key;
4434
Chris Masonb9473432009-03-13 11:00:37 -04004435 leaf = path->nodes[0];
4436 BUG_ON(btrfs_leaf_free_space(root, leaf) < sizeof(struct btrfs_item));
4437
Chris Masonb4ce94d2009-02-04 09:25:08 -05004438 btrfs_set_path_blocking(path);
4439
Ross Kirkdd3cc162013-09-16 15:58:09 +01004440 item = btrfs_item_nr(path->slots[0]);
Chris Mason459931e2008-12-10 09:10:46 -05004441 orig_offset = btrfs_item_offset(leaf, item);
4442 item_size = btrfs_item_size(leaf, item);
4443
Chris Mason459931e2008-12-10 09:10:46 -05004444 buf = kmalloc(item_size, GFP_NOFS);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004445 if (!buf)
4446 return -ENOMEM;
4447
Chris Mason459931e2008-12-10 09:10:46 -05004448 read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf,
4449 path->slots[0]), item_size);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004450
Chris Mason459931e2008-12-10 09:10:46 -05004451 slot = path->slots[0] + 1;
Chris Mason459931e2008-12-10 09:10:46 -05004452 nritems = btrfs_header_nritems(leaf);
Chris Mason459931e2008-12-10 09:10:46 -05004453 if (slot != nritems) {
4454 /* shift the items */
4455 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1),
Yan, Zhengad48fd752009-11-12 09:33:58 +00004456 btrfs_item_nr_offset(slot),
4457 (nritems - slot) * sizeof(struct btrfs_item));
Chris Mason459931e2008-12-10 09:10:46 -05004458 }
4459
4460 btrfs_cpu_key_to_disk(&disk_key, new_key);
4461 btrfs_set_item_key(leaf, &disk_key, slot);
4462
Ross Kirkdd3cc162013-09-16 15:58:09 +01004463 new_item = btrfs_item_nr(slot);
Chris Mason459931e2008-12-10 09:10:46 -05004464
4465 btrfs_set_item_offset(leaf, new_item, orig_offset);
4466 btrfs_set_item_size(leaf, new_item, item_size - split_offset);
4467
4468 btrfs_set_item_offset(leaf, item,
4469 orig_offset + item_size - split_offset);
4470 btrfs_set_item_size(leaf, item, split_offset);
4471
4472 btrfs_set_header_nritems(leaf, nritems + 1);
4473
4474 /* write the data for the start of the original item */
4475 write_extent_buffer(leaf, buf,
4476 btrfs_item_ptr_offset(leaf, path->slots[0]),
4477 split_offset);
4478
4479 /* write the data for the new item */
4480 write_extent_buffer(leaf, buf + split_offset,
4481 btrfs_item_ptr_offset(leaf, slot),
4482 item_size - split_offset);
4483 btrfs_mark_buffer_dirty(leaf);
4484
Yan, Zhengad48fd752009-11-12 09:33:58 +00004485 BUG_ON(btrfs_leaf_free_space(root, leaf) < 0);
Chris Mason459931e2008-12-10 09:10:46 -05004486 kfree(buf);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004487 return 0;
4488}
4489
4490/*
4491 * This function splits a single item into two items,
4492 * giving 'new_key' to the new item and splitting the
4493 * old one at split_offset (from the start of the item).
4494 *
4495 * The path may be released by this operation. After
4496 * the split, the path is pointing to the old item. The
4497 * new item is going to be in the same node as the old one.
4498 *
4499 * Note, the item being split must be smaller enough to live alone on
4500 * a tree block with room for one extra struct btrfs_item
4501 *
4502 * This allows us to split the item in place, keeping a lock on the
4503 * leaf the entire time.
4504 */
4505int btrfs_split_item(struct btrfs_trans_handle *trans,
4506 struct btrfs_root *root,
4507 struct btrfs_path *path,
4508 struct btrfs_key *new_key,
4509 unsigned long split_offset)
4510{
4511 int ret;
4512 ret = setup_leaf_for_split(trans, root, path,
4513 sizeof(struct btrfs_item));
4514 if (ret)
4515 return ret;
4516
4517 ret = split_item(trans, root, path, new_key, split_offset);
Chris Mason459931e2008-12-10 09:10:46 -05004518 return ret;
4519}
4520
4521/*
Yan, Zhengad48fd752009-11-12 09:33:58 +00004522 * This function duplicate a item, giving 'new_key' to the new item.
4523 * It guarantees both items live in the same tree leaf and the new item
4524 * is contiguous with the original item.
4525 *
4526 * This allows us to split file extent in place, keeping a lock on the
4527 * leaf the entire time.
4528 */
4529int btrfs_duplicate_item(struct btrfs_trans_handle *trans,
4530 struct btrfs_root *root,
4531 struct btrfs_path *path,
4532 struct btrfs_key *new_key)
4533{
4534 struct extent_buffer *leaf;
4535 int ret;
4536 u32 item_size;
4537
4538 leaf = path->nodes[0];
4539 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
4540 ret = setup_leaf_for_split(trans, root, path,
4541 item_size + sizeof(struct btrfs_item));
4542 if (ret)
4543 return ret;
4544
4545 path->slots[0]++;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004546 setup_items_for_insert(root, path, new_key, &item_size,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004547 item_size, item_size +
4548 sizeof(struct btrfs_item), 1);
Yan, Zhengad48fd752009-11-12 09:33:58 +00004549 leaf = path->nodes[0];
4550 memcpy_extent_buffer(leaf,
4551 btrfs_item_ptr_offset(leaf, path->slots[0]),
4552 btrfs_item_ptr_offset(leaf, path->slots[0] - 1),
4553 item_size);
4554 return 0;
4555}
4556
4557/*
Chris Masond352ac62008-09-29 15:18:18 -04004558 * make the item pointed to by the path smaller. new_size indicates
4559 * how small to make it, and from_end tells us if we just chop bytes
4560 * off the end of the item or if we shift the item to chop bytes off
4561 * the front.
4562 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004563void btrfs_truncate_item(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004564 u32 new_size, int from_end)
Chris Masonb18c6682007-04-17 13:26:50 -04004565{
Chris Masonb18c6682007-04-17 13:26:50 -04004566 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04004567 struct extent_buffer *leaf;
4568 struct btrfs_item *item;
Chris Masonb18c6682007-04-17 13:26:50 -04004569 u32 nritems;
4570 unsigned int data_end;
4571 unsigned int old_data_start;
4572 unsigned int old_size;
4573 unsigned int size_diff;
4574 int i;
Chris Masoncfed81a2012-03-03 07:40:03 -05004575 struct btrfs_map_token token;
4576
4577 btrfs_init_map_token(&token);
Chris Masonb18c6682007-04-17 13:26:50 -04004578
Chris Mason5f39d392007-10-15 16:14:19 -04004579 leaf = path->nodes[0];
Chris Mason179e29e2007-11-01 11:28:41 -04004580 slot = path->slots[0];
4581
4582 old_size = btrfs_item_size_nr(leaf, slot);
4583 if (old_size == new_size)
Jeff Mahoney143bede2012-03-01 14:56:26 +01004584 return;
Chris Masonb18c6682007-04-17 13:26:50 -04004585
Chris Mason5f39d392007-10-15 16:14:19 -04004586 nritems = btrfs_header_nritems(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004587 data_end = leaf_data_end(root, leaf);
4588
Chris Mason5f39d392007-10-15 16:14:19 -04004589 old_data_start = btrfs_item_offset_nr(leaf, slot);
Chris Mason179e29e2007-11-01 11:28:41 -04004590
Chris Masonb18c6682007-04-17 13:26:50 -04004591 size_diff = old_size - new_size;
4592
4593 BUG_ON(slot < 0);
4594 BUG_ON(slot >= nritems);
4595
4596 /*
4597 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4598 */
4599 /* first correct the data pointers */
4600 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004601 u32 ioff;
Ross Kirkdd3cc162013-09-16 15:58:09 +01004602 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04004603
Chris Masoncfed81a2012-03-03 07:40:03 -05004604 ioff = btrfs_token_item_offset(leaf, item, &token);
4605 btrfs_set_token_item_offset(leaf, item,
4606 ioff + size_diff, &token);
Chris Masonb18c6682007-04-17 13:26:50 -04004607 }
Chris Masondb945352007-10-15 16:15:53 -04004608
Chris Masonb18c6682007-04-17 13:26:50 -04004609 /* shift the data */
Chris Mason179e29e2007-11-01 11:28:41 -04004610 if (from_end) {
4611 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
4612 data_end + size_diff, btrfs_leaf_data(leaf) +
4613 data_end, old_data_start + new_size - data_end);
4614 } else {
4615 struct btrfs_disk_key disk_key;
4616 u64 offset;
4617
4618 btrfs_item_key(leaf, &disk_key, slot);
4619
4620 if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) {
4621 unsigned long ptr;
4622 struct btrfs_file_extent_item *fi;
4623
4624 fi = btrfs_item_ptr(leaf, slot,
4625 struct btrfs_file_extent_item);
4626 fi = (struct btrfs_file_extent_item *)(
4627 (unsigned long)fi - size_diff);
4628
4629 if (btrfs_file_extent_type(leaf, fi) ==
4630 BTRFS_FILE_EXTENT_INLINE) {
4631 ptr = btrfs_item_ptr_offset(leaf, slot);
4632 memmove_extent_buffer(leaf, ptr,
Chris Masond3977122009-01-05 21:25:51 -05004633 (unsigned long)fi,
David Sterba7ec20af2014-07-24 17:34:58 +02004634 BTRFS_FILE_EXTENT_INLINE_DATA_START);
Chris Mason179e29e2007-11-01 11:28:41 -04004635 }
4636 }
4637
4638 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
4639 data_end + size_diff, btrfs_leaf_data(leaf) +
4640 data_end, old_data_start - data_end);
4641
4642 offset = btrfs_disk_key_offset(&disk_key);
4643 btrfs_set_disk_key_offset(&disk_key, offset + size_diff);
4644 btrfs_set_item_key(leaf, &disk_key, slot);
4645 if (slot == 0)
Daniel Dresslerb7a03652014-11-12 13:43:09 +09004646 fixup_low_keys(root->fs_info, path, &disk_key, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04004647 }
Chris Mason5f39d392007-10-15 16:14:19 -04004648
Ross Kirkdd3cc162013-09-16 15:58:09 +01004649 item = btrfs_item_nr(slot);
Chris Mason5f39d392007-10-15 16:14:19 -04004650 btrfs_set_item_size(leaf, item, new_size);
4651 btrfs_mark_buffer_dirty(leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004652
Chris Mason5f39d392007-10-15 16:14:19 -04004653 if (btrfs_leaf_free_space(root, leaf) < 0) {
4654 btrfs_print_leaf(root, leaf);
Chris Masonb18c6682007-04-17 13:26:50 -04004655 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004656 }
Chris Masonb18c6682007-04-17 13:26:50 -04004657}
4658
Chris Masond352ac62008-09-29 15:18:18 -04004659/*
Stefan Behrens8f69dbd2013-05-07 10:23:30 +00004660 * make the item pointed to by the path bigger, data_size is the added size.
Chris Masond352ac62008-09-29 15:18:18 -04004661 */
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00004662void btrfs_extend_item(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004663 u32 data_size)
Chris Mason6567e832007-04-16 09:22:45 -04004664{
Chris Mason6567e832007-04-16 09:22:45 -04004665 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -04004666 struct extent_buffer *leaf;
4667 struct btrfs_item *item;
Chris Mason6567e832007-04-16 09:22:45 -04004668 u32 nritems;
4669 unsigned int data_end;
4670 unsigned int old_data;
4671 unsigned int old_size;
4672 int i;
Chris Masoncfed81a2012-03-03 07:40:03 -05004673 struct btrfs_map_token token;
4674
4675 btrfs_init_map_token(&token);
Chris Mason6567e832007-04-16 09:22:45 -04004676
Chris Mason5f39d392007-10-15 16:14:19 -04004677 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -04004678
Chris Mason5f39d392007-10-15 16:14:19 -04004679 nritems = btrfs_header_nritems(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004680 data_end = leaf_data_end(root, leaf);
4681
Chris Mason5f39d392007-10-15 16:14:19 -04004682 if (btrfs_leaf_free_space(root, leaf) < data_size) {
4683 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004684 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004685 }
Chris Mason6567e832007-04-16 09:22:45 -04004686 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -04004687 old_data = btrfs_item_end_nr(leaf, slot);
Chris Mason6567e832007-04-16 09:22:45 -04004688
4689 BUG_ON(slot < 0);
Chris Mason3326d1b2007-10-15 16:18:25 -04004690 if (slot >= nritems) {
4691 btrfs_print_leaf(root, leaf);
Frank Holtonefe120a2013-12-20 11:37:06 -05004692 btrfs_crit(root->fs_info, "slot %d too large, nritems %d",
Chris Masond3977122009-01-05 21:25:51 -05004693 slot, nritems);
Chris Mason3326d1b2007-10-15 16:18:25 -04004694 BUG_ON(1);
4695 }
Chris Mason6567e832007-04-16 09:22:45 -04004696
4697 /*
4698 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4699 */
4700 /* first correct the data pointers */
4701 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004702 u32 ioff;
Ross Kirkdd3cc162013-09-16 15:58:09 +01004703 item = btrfs_item_nr(i);
Chris Masondb945352007-10-15 16:15:53 -04004704
Chris Masoncfed81a2012-03-03 07:40:03 -05004705 ioff = btrfs_token_item_offset(leaf, item, &token);
4706 btrfs_set_token_item_offset(leaf, item,
4707 ioff - data_size, &token);
Chris Mason6567e832007-04-16 09:22:45 -04004708 }
Chris Mason5f39d392007-10-15 16:14:19 -04004709
Chris Mason6567e832007-04-16 09:22:45 -04004710 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04004711 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason6567e832007-04-16 09:22:45 -04004712 data_end - data_size, btrfs_leaf_data(leaf) +
4713 data_end, old_data - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04004714
Chris Mason6567e832007-04-16 09:22:45 -04004715 data_end = old_data;
Chris Mason5f39d392007-10-15 16:14:19 -04004716 old_size = btrfs_item_size_nr(leaf, slot);
Ross Kirkdd3cc162013-09-16 15:58:09 +01004717 item = btrfs_item_nr(slot);
Chris Mason5f39d392007-10-15 16:14:19 -04004718 btrfs_set_item_size(leaf, item, old_size + data_size);
4719 btrfs_mark_buffer_dirty(leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004720
Chris Mason5f39d392007-10-15 16:14:19 -04004721 if (btrfs_leaf_free_space(root, leaf) < 0) {
4722 btrfs_print_leaf(root, leaf);
Chris Mason6567e832007-04-16 09:22:45 -04004723 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004724 }
Chris Mason6567e832007-04-16 09:22:45 -04004725}
4726
Chris Mason74123bd2007-02-02 11:05:29 -05004727/*
Chris Mason44871b12009-03-13 10:04:31 -04004728 * this is a helper for btrfs_insert_empty_items, the main goal here is
4729 * to save stack depth by doing the bulk of the work in a function
4730 * that doesn't call btrfs_search_slot
Chris Mason74123bd2007-02-02 11:05:29 -05004731 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004732void setup_items_for_insert(struct btrfs_root *root, struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01004733 struct btrfs_key *cpu_key, u32 *data_size,
4734 u32 total_data, u32 total_size, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004735{
Chris Mason5f39d392007-10-15 16:14:19 -04004736 struct btrfs_item *item;
Chris Mason9c583092008-01-29 15:15:18 -05004737 int i;
Chris Mason7518a232007-03-12 12:01:18 -04004738 u32 nritems;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004739 unsigned int data_end;
Chris Masone2fa7222007-03-12 16:22:34 -04004740 struct btrfs_disk_key disk_key;
Chris Mason44871b12009-03-13 10:04:31 -04004741 struct extent_buffer *leaf;
4742 int slot;
Chris Masoncfed81a2012-03-03 07:40:03 -05004743 struct btrfs_map_token token;
4744
Filipe Manana24cdc842014-07-28 19:34:35 +01004745 if (path->slots[0] == 0) {
4746 btrfs_cpu_key_to_disk(&disk_key, cpu_key);
Daniel Dresslerb7a03652014-11-12 13:43:09 +09004747 fixup_low_keys(root->fs_info, path, &disk_key, 1);
Filipe Manana24cdc842014-07-28 19:34:35 +01004748 }
4749 btrfs_unlock_up_safe(path, 1);
4750
Chris Masoncfed81a2012-03-03 07:40:03 -05004751 btrfs_init_map_token(&token);
Chris Masone2fa7222007-03-12 16:22:34 -04004752
Chris Mason5f39d392007-10-15 16:14:19 -04004753 leaf = path->nodes[0];
Chris Mason44871b12009-03-13 10:04:31 -04004754 slot = path->slots[0];
Chris Mason74123bd2007-02-02 11:05:29 -05004755
Chris Mason5f39d392007-10-15 16:14:19 -04004756 nritems = btrfs_header_nritems(leaf);
Chris Mason123abc82007-03-14 14:14:43 -04004757 data_end = leaf_data_end(root, leaf);
Chris Masoneb60cea2007-02-02 09:18:22 -05004758
Chris Masonf25956c2008-09-12 15:32:53 -04004759 if (btrfs_leaf_free_space(root, leaf) < total_size) {
Chris Mason3326d1b2007-10-15 16:18:25 -04004760 btrfs_print_leaf(root, leaf);
Jeff Mahoney5d163e02016-09-20 10:05:00 -04004761 btrfs_crit(root->fs_info,
4762 "not enough freespace need %u have %d",
4763 total_size, btrfs_leaf_free_space(root, leaf));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004764 BUG();
Chris Masond4dbff92007-04-04 14:08:15 -04004765 }
Chris Mason5f39d392007-10-15 16:14:19 -04004766
Chris Masonbe0e5c02007-01-26 15:51:26 -05004767 if (slot != nritems) {
Chris Mason5f39d392007-10-15 16:14:19 -04004768 unsigned int old_data = btrfs_item_end_nr(leaf, slot);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004769
Chris Mason5f39d392007-10-15 16:14:19 -04004770 if (old_data < data_end) {
4771 btrfs_print_leaf(root, leaf);
Jeff Mahoney5d163e02016-09-20 10:05:00 -04004772 btrfs_crit(root->fs_info,
4773 "slot %d old_data %d data_end %d",
4774 slot, old_data, data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04004775 BUG_ON(1);
4776 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004777 /*
4778 * item0..itemN ... dataN.offset..dataN.size .. data0.size
4779 */
4780 /* first correct the data pointers */
Chris Mason0783fcf2007-03-12 20:12:07 -04004781 for (i = slot; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004782 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04004783
Jeff Mahoney62e85572016-09-20 10:05:01 -04004784 item = btrfs_item_nr(i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004785 ioff = btrfs_token_item_offset(leaf, item, &token);
4786 btrfs_set_token_item_offset(leaf, item,
4787 ioff - total_data, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004788 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05004789 /* shift the items */
Chris Mason9c583092008-01-29 15:15:18 -05004790 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
Chris Mason5f39d392007-10-15 16:14:19 -04004791 btrfs_item_nr_offset(slot),
Chris Masond6025572007-03-30 14:27:56 -04004792 (nritems - slot) * sizeof(struct btrfs_item));
Chris Masonbe0e5c02007-01-26 15:51:26 -05004793
4794 /* shift the data */
Chris Mason5f39d392007-10-15 16:14:19 -04004795 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Mason9c583092008-01-29 15:15:18 -05004796 data_end - total_data, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04004797 data_end, old_data - data_end);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004798 data_end = old_data;
4799 }
Chris Mason5f39d392007-10-15 16:14:19 -04004800
Chris Mason62e27492007-03-15 12:56:47 -04004801 /* setup the item for the new data */
Chris Mason9c583092008-01-29 15:15:18 -05004802 for (i = 0; i < nr; i++) {
4803 btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
4804 btrfs_set_item_key(leaf, &disk_key, slot + i);
Ross Kirkdd3cc162013-09-16 15:58:09 +01004805 item = btrfs_item_nr(slot + i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004806 btrfs_set_token_item_offset(leaf, item,
4807 data_end - data_size[i], &token);
Chris Mason9c583092008-01-29 15:15:18 -05004808 data_end -= data_size[i];
Chris Masoncfed81a2012-03-03 07:40:03 -05004809 btrfs_set_token_item_size(leaf, item, data_size[i], &token);
Chris Mason9c583092008-01-29 15:15:18 -05004810 }
Chris Mason44871b12009-03-13 10:04:31 -04004811
Chris Mason9c583092008-01-29 15:15:18 -05004812 btrfs_set_header_nritems(leaf, nritems + nr);
Chris Masonb9473432009-03-13 11:00:37 -04004813 btrfs_mark_buffer_dirty(leaf);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004814
Chris Mason5f39d392007-10-15 16:14:19 -04004815 if (btrfs_leaf_free_space(root, leaf) < 0) {
4816 btrfs_print_leaf(root, leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004817 BUG();
Chris Mason5f39d392007-10-15 16:14:19 -04004818 }
Chris Mason44871b12009-03-13 10:04:31 -04004819}
4820
4821/*
4822 * Given a key and some data, insert items into the tree.
4823 * This does all the path init required, making room in the tree if needed.
4824 */
4825int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
4826 struct btrfs_root *root,
4827 struct btrfs_path *path,
4828 struct btrfs_key *cpu_key, u32 *data_size,
4829 int nr)
4830{
Chris Mason44871b12009-03-13 10:04:31 -04004831 int ret = 0;
4832 int slot;
4833 int i;
4834 u32 total_size = 0;
4835 u32 total_data = 0;
4836
4837 for (i = 0; i < nr; i++)
4838 total_data += data_size[i];
4839
4840 total_size = total_data + (nr * sizeof(struct btrfs_item));
4841 ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
4842 if (ret == 0)
4843 return -EEXIST;
4844 if (ret < 0)
Jeff Mahoney143bede2012-03-01 14:56:26 +01004845 return ret;
Chris Mason44871b12009-03-13 10:04:31 -04004846
Chris Mason44871b12009-03-13 10:04:31 -04004847 slot = path->slots[0];
4848 BUG_ON(slot < 0);
4849
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004850 setup_items_for_insert(root, path, cpu_key, data_size,
Chris Mason44871b12009-03-13 10:04:31 -04004851 total_data, total_size, nr);
Jeff Mahoney143bede2012-03-01 14:56:26 +01004852 return 0;
Chris Mason62e27492007-03-15 12:56:47 -04004853}
4854
4855/*
4856 * Given a key and some data, insert an item into the tree.
4857 * This does all the path init required, making room in the tree if needed.
4858 */
Chris Masone089f052007-03-16 16:20:31 -04004859int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
4860 *root, struct btrfs_key *cpu_key, void *data, u32
4861 data_size)
Chris Mason62e27492007-03-15 12:56:47 -04004862{
4863 int ret = 0;
Chris Mason2c90e5d2007-04-02 10:50:19 -04004864 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04004865 struct extent_buffer *leaf;
4866 unsigned long ptr;
Chris Mason62e27492007-03-15 12:56:47 -04004867
Chris Mason2c90e5d2007-04-02 10:50:19 -04004868 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004869 if (!path)
4870 return -ENOMEM;
Chris Mason2c90e5d2007-04-02 10:50:19 -04004871 ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -04004872 if (!ret) {
Chris Mason5f39d392007-10-15 16:14:19 -04004873 leaf = path->nodes[0];
4874 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
4875 write_extent_buffer(leaf, data, ptr, data_size);
4876 btrfs_mark_buffer_dirty(leaf);
Chris Mason62e27492007-03-15 12:56:47 -04004877 }
Chris Mason2c90e5d2007-04-02 10:50:19 -04004878 btrfs_free_path(path);
Chris Masonaa5d6be2007-02-28 16:35:06 -05004879 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004880}
4881
Chris Mason74123bd2007-02-02 11:05:29 -05004882/*
Chris Mason5de08d72007-02-24 06:24:44 -05004883 * delete the pointer from a given node.
Chris Mason74123bd2007-02-02 11:05:29 -05004884 *
Chris Masond352ac62008-09-29 15:18:18 -04004885 * the tree should have been previously balanced so the deletion does not
4886 * empty a node.
Chris Mason74123bd2007-02-02 11:05:29 -05004887 */
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004888static void del_ptr(struct btrfs_root *root, struct btrfs_path *path,
4889 int level, int slot)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004890{
Chris Mason5f39d392007-10-15 16:14:19 -04004891 struct extent_buffer *parent = path->nodes[level];
Chris Mason7518a232007-03-12 12:01:18 -04004892 u32 nritems;
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004893 int ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05004894
Chris Mason5f39d392007-10-15 16:14:19 -04004895 nritems = btrfs_header_nritems(parent);
Chris Masond3977122009-01-05 21:25:51 -05004896 if (slot != nritems - 1) {
Liu Bo0e411ec2012-10-19 09:50:54 +00004897 if (level)
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004898 tree_mod_log_eb_move(root->fs_info, parent, slot,
4899 slot + 1, nritems - slot - 1);
Chris Mason5f39d392007-10-15 16:14:19 -04004900 memmove_extent_buffer(parent,
4901 btrfs_node_key_ptr_offset(slot),
4902 btrfs_node_key_ptr_offset(slot + 1),
Chris Masond6025572007-03-30 14:27:56 -04004903 sizeof(struct btrfs_key_ptr) *
4904 (nritems - slot - 1));
Chris Mason57ba86c2012-12-18 19:35:32 -05004905 } else if (level) {
4906 ret = tree_mod_log_insert_key(root->fs_info, parent, slot,
Josef Bacikc8cc6342013-07-01 16:18:19 -04004907 MOD_LOG_KEY_REMOVE, GFP_NOFS);
Chris Mason57ba86c2012-12-18 19:35:32 -05004908 BUG_ON(ret < 0);
Chris Masonbb803952007-03-01 12:04:21 -05004909 }
Jan Schmidtf3ea38d2012-05-26 11:45:21 +02004910
Chris Mason7518a232007-03-12 12:01:18 -04004911 nritems--;
Chris Mason5f39d392007-10-15 16:14:19 -04004912 btrfs_set_header_nritems(parent, nritems);
Chris Mason7518a232007-03-12 12:01:18 -04004913 if (nritems == 0 && parent == root->node) {
Chris Mason5f39d392007-10-15 16:14:19 -04004914 BUG_ON(btrfs_header_level(root->node) != 1);
Chris Masonbb803952007-03-01 12:04:21 -05004915 /* just turn the root into a leaf and break */
Chris Mason5f39d392007-10-15 16:14:19 -04004916 btrfs_set_header_level(root->node, 0);
Chris Masonbb803952007-03-01 12:04:21 -05004917 } else if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04004918 struct btrfs_disk_key disk_key;
4919
4920 btrfs_node_key(parent, &disk_key, 0);
Daniel Dresslerb7a03652014-11-12 13:43:09 +09004921 fixup_low_keys(root->fs_info, path, &disk_key, level + 1);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004922 }
Chris Masond6025572007-03-30 14:27:56 -04004923 btrfs_mark_buffer_dirty(parent);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004924}
4925
Chris Mason74123bd2007-02-02 11:05:29 -05004926/*
Chris Mason323ac952008-10-01 19:05:46 -04004927 * a helper function to delete the leaf pointed to by path->slots[1] and
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004928 * path->nodes[1].
Chris Mason323ac952008-10-01 19:05:46 -04004929 *
4930 * This deletes the pointer in path->nodes[1] and frees the leaf
4931 * block extent. zero is returned if it all worked out, < 0 otherwise.
4932 *
4933 * The path must have already been setup for deleting the leaf, including
4934 * all the proper balancing. path->nodes[1] must be locked.
4935 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01004936static noinline void btrfs_del_leaf(struct btrfs_trans_handle *trans,
4937 struct btrfs_root *root,
4938 struct btrfs_path *path,
4939 struct extent_buffer *leaf)
Chris Mason323ac952008-10-01 19:05:46 -04004940{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004941 WARN_ON(btrfs_header_generation(leaf) != trans->transid);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00004942 del_ptr(root, path, 1, path->slots[1]);
Chris Mason323ac952008-10-01 19:05:46 -04004943
Chris Mason4d081c42009-02-04 09:31:28 -05004944 /*
4945 * btrfs_free_extent is expensive, we want to make sure we
4946 * aren't holding any locks when we call it
4947 */
4948 btrfs_unlock_up_safe(path, 0);
4949
Yan, Zhengf0486c62010-05-16 10:46:25 -04004950 root_sub_used(root, leaf->len);
4951
Josef Bacik3083ee22012-03-09 16:01:49 -05004952 extent_buffer_get(leaf);
Jan Schmidt5581a512012-05-16 17:04:52 +02004953 btrfs_free_tree_block(trans, root, leaf, 0, 1);
Josef Bacik3083ee22012-03-09 16:01:49 -05004954 free_extent_buffer_stale(leaf);
Chris Mason323ac952008-10-01 19:05:46 -04004955}
4956/*
Chris Mason74123bd2007-02-02 11:05:29 -05004957 * delete the item at the leaf level in path. If that empties
4958 * the leaf, remove it from the tree
4959 */
Chris Mason85e21ba2008-01-29 15:11:36 -05004960int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
4961 struct btrfs_path *path, int slot, int nr)
Chris Masonbe0e5c02007-01-26 15:51:26 -05004962{
Chris Mason5f39d392007-10-15 16:14:19 -04004963 struct extent_buffer *leaf;
4964 struct btrfs_item *item;
Alexandru Moisece0eac22015-08-23 16:01:42 +00004965 u32 last_off;
4966 u32 dsize = 0;
Chris Masonaa5d6be2007-02-28 16:35:06 -05004967 int ret = 0;
4968 int wret;
Chris Mason85e21ba2008-01-29 15:11:36 -05004969 int i;
Chris Mason7518a232007-03-12 12:01:18 -04004970 u32 nritems;
Chris Masoncfed81a2012-03-03 07:40:03 -05004971 struct btrfs_map_token token;
4972
4973 btrfs_init_map_token(&token);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004974
Chris Mason5f39d392007-10-15 16:14:19 -04004975 leaf = path->nodes[0];
Chris Mason85e21ba2008-01-29 15:11:36 -05004976 last_off = btrfs_item_offset_nr(leaf, slot + nr - 1);
4977
4978 for (i = 0; i < nr; i++)
4979 dsize += btrfs_item_size_nr(leaf, slot + i);
4980
Chris Mason5f39d392007-10-15 16:14:19 -04004981 nritems = btrfs_header_nritems(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05004982
Chris Mason85e21ba2008-01-29 15:11:36 -05004983 if (slot + nr != nritems) {
Chris Mason123abc82007-03-14 14:14:43 -04004984 int data_end = leaf_data_end(root, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04004985
4986 memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
Chris Masond6025572007-03-30 14:27:56 -04004987 data_end + dsize,
4988 btrfs_leaf_data(leaf) + data_end,
Chris Mason85e21ba2008-01-29 15:11:36 -05004989 last_off - data_end);
Chris Mason5f39d392007-10-15 16:14:19 -04004990
Chris Mason85e21ba2008-01-29 15:11:36 -05004991 for (i = slot + nr; i < nritems; i++) {
Chris Mason5f39d392007-10-15 16:14:19 -04004992 u32 ioff;
Chris Masondb945352007-10-15 16:15:53 -04004993
Ross Kirkdd3cc162013-09-16 15:58:09 +01004994 item = btrfs_item_nr(i);
Chris Masoncfed81a2012-03-03 07:40:03 -05004995 ioff = btrfs_token_item_offset(leaf, item, &token);
4996 btrfs_set_token_item_offset(leaf, item,
4997 ioff + dsize, &token);
Chris Mason0783fcf2007-03-12 20:12:07 -04004998 }
Chris Masondb945352007-10-15 16:15:53 -04004999
Chris Mason5f39d392007-10-15 16:14:19 -04005000 memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
Chris Mason85e21ba2008-01-29 15:11:36 -05005001 btrfs_item_nr_offset(slot + nr),
Chris Masond6025572007-03-30 14:27:56 -04005002 sizeof(struct btrfs_item) *
Chris Mason85e21ba2008-01-29 15:11:36 -05005003 (nritems - slot - nr));
Chris Masonbe0e5c02007-01-26 15:51:26 -05005004 }
Chris Mason85e21ba2008-01-29 15:11:36 -05005005 btrfs_set_header_nritems(leaf, nritems - nr);
5006 nritems -= nr;
Chris Mason5f39d392007-10-15 16:14:19 -04005007
Chris Mason74123bd2007-02-02 11:05:29 -05005008 /* delete the leaf if we've emptied it */
Chris Mason7518a232007-03-12 12:01:18 -04005009 if (nritems == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005010 if (leaf == root->node) {
5011 btrfs_set_header_level(leaf, 0);
Chris Mason9a8dd152007-02-23 08:38:36 -05005012 } else {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005013 btrfs_set_path_blocking(path);
Daniel Dressler01d58472014-11-21 17:15:07 +09005014 clean_tree_block(trans, root->fs_info, leaf);
Jeff Mahoney143bede2012-03-01 14:56:26 +01005015 btrfs_del_leaf(trans, root, path, leaf);
Chris Mason9a8dd152007-02-23 08:38:36 -05005016 }
Chris Masonbe0e5c02007-01-26 15:51:26 -05005017 } else {
Chris Mason7518a232007-03-12 12:01:18 -04005018 int used = leaf_space_used(leaf, 0, nritems);
Chris Masonaa5d6be2007-02-28 16:35:06 -05005019 if (slot == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04005020 struct btrfs_disk_key disk_key;
5021
5022 btrfs_item_key(leaf, &disk_key, 0);
Daniel Dresslerb7a03652014-11-12 13:43:09 +09005023 fixup_low_keys(root->fs_info, path, &disk_key, 1);
Chris Masonaa5d6be2007-02-28 16:35:06 -05005024 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05005025
Chris Mason74123bd2007-02-02 11:05:29 -05005026 /* delete the leaf if it is mostly empty */
Yan Zhengd717aa12009-07-24 12:42:46 -04005027 if (used < BTRFS_LEAF_DATA_SIZE(root) / 3) {
Chris Masonbe0e5c02007-01-26 15:51:26 -05005028 /* push_leaf_left fixes the path.
5029 * make sure the path still points to our leaf
5030 * for possible call to del_ptr below
5031 */
Chris Mason4920c9a2007-01-26 16:38:42 -05005032 slot = path->slots[1];
Chris Mason5f39d392007-10-15 16:14:19 -04005033 extent_buffer_get(leaf);
5034
Chris Masonb9473432009-03-13 11:00:37 -04005035 btrfs_set_path_blocking(path);
Chris Mason99d8f832010-07-07 10:51:48 -04005036 wret = push_leaf_left(trans, root, path, 1, 1,
5037 1, (u32)-1);
Chris Mason54aa1f42007-06-22 14:16:25 -04005038 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05005039 ret = wret;
Chris Mason5f39d392007-10-15 16:14:19 -04005040
5041 if (path->nodes[0] == leaf &&
5042 btrfs_header_nritems(leaf)) {
Chris Mason99d8f832010-07-07 10:51:48 -04005043 wret = push_leaf_right(trans, root, path, 1,
5044 1, 1, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04005045 if (wret < 0 && wret != -ENOSPC)
Chris Masonaa5d6be2007-02-28 16:35:06 -05005046 ret = wret;
5047 }
Chris Mason5f39d392007-10-15 16:14:19 -04005048
5049 if (btrfs_header_nritems(leaf) == 0) {
Chris Mason323ac952008-10-01 19:05:46 -04005050 path->slots[1] = slot;
Jeff Mahoney143bede2012-03-01 14:56:26 +01005051 btrfs_del_leaf(trans, root, path, leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04005052 free_extent_buffer(leaf);
Jeff Mahoney143bede2012-03-01 14:56:26 +01005053 ret = 0;
Chris Mason5de08d72007-02-24 06:24:44 -05005054 } else {
Chris Mason925baed2008-06-25 16:01:30 -04005055 /* if we're still in the path, make sure
5056 * we're dirty. Otherwise, one of the
5057 * push_leaf functions must have already
5058 * dirtied this buffer
5059 */
5060 if (path->nodes[0] == leaf)
5061 btrfs_mark_buffer_dirty(leaf);
Chris Mason5f39d392007-10-15 16:14:19 -04005062 free_extent_buffer(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05005063 }
Chris Masond5719762007-03-23 10:01:08 -04005064 } else {
Chris Mason5f39d392007-10-15 16:14:19 -04005065 btrfs_mark_buffer_dirty(leaf);
Chris Masonbe0e5c02007-01-26 15:51:26 -05005066 }
5067 }
Chris Masonaa5d6be2007-02-28 16:35:06 -05005068 return ret;
Chris Masonbe0e5c02007-01-26 15:51:26 -05005069}
5070
Chris Mason97571fd2007-02-24 13:39:08 -05005071/*
Chris Mason925baed2008-06-25 16:01:30 -04005072 * search the tree again to find a leaf with lesser keys
Chris Mason7bb86312007-12-11 09:25:06 -05005073 * returns 0 if it found something or 1 if there are no lesser leaves.
5074 * returns < 0 on io errors.
Chris Masond352ac62008-09-29 15:18:18 -04005075 *
5076 * This may release the path, and so you may lose any locks held at the
5077 * time you call it.
Chris Mason7bb86312007-12-11 09:25:06 -05005078 */
Josef Bacik16e75492013-10-22 12:18:51 -04005079int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Mason7bb86312007-12-11 09:25:06 -05005080{
Chris Mason925baed2008-06-25 16:01:30 -04005081 struct btrfs_key key;
5082 struct btrfs_disk_key found_key;
5083 int ret;
Chris Mason7bb86312007-12-11 09:25:06 -05005084
Chris Mason925baed2008-06-25 16:01:30 -04005085 btrfs_item_key_to_cpu(path->nodes[0], &key, 0);
Chris Mason7bb86312007-12-11 09:25:06 -05005086
Filipe David Borba Mananae8b0d722013-10-15 00:12:27 +01005087 if (key.offset > 0) {
Chris Mason925baed2008-06-25 16:01:30 -04005088 key.offset--;
Filipe David Borba Mananae8b0d722013-10-15 00:12:27 +01005089 } else if (key.type > 0) {
Chris Mason925baed2008-06-25 16:01:30 -04005090 key.type--;
Filipe David Borba Mananae8b0d722013-10-15 00:12:27 +01005091 key.offset = (u64)-1;
5092 } else if (key.objectid > 0) {
Chris Mason925baed2008-06-25 16:01:30 -04005093 key.objectid--;
Filipe David Borba Mananae8b0d722013-10-15 00:12:27 +01005094 key.type = (u8)-1;
5095 key.offset = (u64)-1;
5096 } else {
Chris Mason925baed2008-06-25 16:01:30 -04005097 return 1;
Filipe David Borba Mananae8b0d722013-10-15 00:12:27 +01005098 }
Chris Mason7bb86312007-12-11 09:25:06 -05005099
David Sterbab3b4aa72011-04-21 01:20:15 +02005100 btrfs_release_path(path);
Chris Mason925baed2008-06-25 16:01:30 -04005101 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5102 if (ret < 0)
5103 return ret;
5104 btrfs_item_key(path->nodes[0], &found_key, 0);
5105 ret = comp_keys(&found_key, &key);
Filipe Manana337c6f62014-06-09 13:22:13 +01005106 /*
5107 * We might have had an item with the previous key in the tree right
5108 * before we released our path. And after we released our path, that
5109 * item might have been pushed to the first slot (0) of the leaf we
5110 * were holding due to a tree balance. Alternatively, an item with the
5111 * previous key can exist as the only element of a leaf (big fat item).
5112 * Therefore account for these 2 cases, so that our callers (like
5113 * btrfs_previous_item) don't miss an existing item with a key matching
5114 * the previous key we computed above.
5115 */
5116 if (ret <= 0)
Chris Mason925baed2008-06-25 16:01:30 -04005117 return 0;
5118 return 1;
Chris Mason7bb86312007-12-11 09:25:06 -05005119}
5120
Chris Mason3f157a22008-06-25 16:01:31 -04005121/*
5122 * A helper function to walk down the tree starting at min_key, and looking
Eric Sandeende78b512013-01-31 18:21:12 +00005123 * for nodes or leaves that are have a minimum transaction id.
5124 * This is used by the btree defrag code, and tree logging
Chris Mason3f157a22008-06-25 16:01:31 -04005125 *
5126 * This does not cow, but it does stuff the starting key it finds back
5127 * into min_key, so you can call btrfs_search_slot with cow=1 on the
5128 * key and get a writable path.
5129 *
5130 * This does lock as it descends, and path->keep_locks should be set
5131 * to 1 by the caller.
5132 *
5133 * This honors path->lowest_level to prevent descent past a given level
5134 * of the tree.
5135 *
Chris Masond352ac62008-09-29 15:18:18 -04005136 * min_trans indicates the oldest transaction that you are interested
5137 * in walking through. Any nodes or leaves older than min_trans are
5138 * skipped over (without reading them).
5139 *
Chris Mason3f157a22008-06-25 16:01:31 -04005140 * returns zero if something useful was found, < 0 on error and 1 if there
5141 * was nothing in the tree that matched the search criteria.
5142 */
5143int btrfs_search_forward(struct btrfs_root *root, struct btrfs_key *min_key,
Eric Sandeende78b512013-01-31 18:21:12 +00005144 struct btrfs_path *path,
Chris Mason3f157a22008-06-25 16:01:31 -04005145 u64 min_trans)
5146{
5147 struct extent_buffer *cur;
5148 struct btrfs_key found_key;
5149 int slot;
Yan96524802008-07-24 12:19:49 -04005150 int sret;
Chris Mason3f157a22008-06-25 16:01:31 -04005151 u32 nritems;
5152 int level;
5153 int ret = 1;
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005154 int keep_locks = path->keep_locks;
Chris Mason3f157a22008-06-25 16:01:31 -04005155
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005156 path->keep_locks = 1;
Chris Mason3f157a22008-06-25 16:01:31 -04005157again:
Chris Masonbd681512011-07-16 15:23:14 -04005158 cur = btrfs_read_lock_root_node(root);
Chris Mason3f157a22008-06-25 16:01:31 -04005159 level = btrfs_header_level(cur);
Chris Masone02119d2008-09-05 16:13:11 -04005160 WARN_ON(path->nodes[level]);
Chris Mason3f157a22008-06-25 16:01:31 -04005161 path->nodes[level] = cur;
Chris Masonbd681512011-07-16 15:23:14 -04005162 path->locks[level] = BTRFS_READ_LOCK;
Chris Mason3f157a22008-06-25 16:01:31 -04005163
5164 if (btrfs_header_generation(cur) < min_trans) {
5165 ret = 1;
5166 goto out;
5167 }
Chris Masond3977122009-01-05 21:25:51 -05005168 while (1) {
Chris Mason3f157a22008-06-25 16:01:31 -04005169 nritems = btrfs_header_nritems(cur);
5170 level = btrfs_header_level(cur);
Yan96524802008-07-24 12:19:49 -04005171 sret = bin_search(cur, min_key, level, &slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005172
Chris Mason323ac952008-10-01 19:05:46 -04005173 /* at the lowest level, we're done, setup the path and exit */
5174 if (level == path->lowest_level) {
Chris Masone02119d2008-09-05 16:13:11 -04005175 if (slot >= nritems)
5176 goto find_next_key;
Chris Mason3f157a22008-06-25 16:01:31 -04005177 ret = 0;
5178 path->slots[level] = slot;
5179 btrfs_item_key_to_cpu(cur, &found_key, slot);
5180 goto out;
5181 }
Yan96524802008-07-24 12:19:49 -04005182 if (sret && slot > 0)
5183 slot--;
Chris Mason3f157a22008-06-25 16:01:31 -04005184 /*
Eric Sandeende78b512013-01-31 18:21:12 +00005185 * check this node pointer against the min_trans parameters.
5186 * If it is too old, old, skip to the next one.
Chris Mason3f157a22008-06-25 16:01:31 -04005187 */
Chris Masond3977122009-01-05 21:25:51 -05005188 while (slot < nritems) {
Chris Mason3f157a22008-06-25 16:01:31 -04005189 u64 gen;
Chris Masone02119d2008-09-05 16:13:11 -04005190
Chris Mason3f157a22008-06-25 16:01:31 -04005191 gen = btrfs_node_ptr_generation(cur, slot);
5192 if (gen < min_trans) {
5193 slot++;
5194 continue;
5195 }
Eric Sandeende78b512013-01-31 18:21:12 +00005196 break;
Chris Mason3f157a22008-06-25 16:01:31 -04005197 }
Chris Masone02119d2008-09-05 16:13:11 -04005198find_next_key:
Chris Mason3f157a22008-06-25 16:01:31 -04005199 /*
5200 * we didn't find a candidate key in this node, walk forward
5201 * and find another one
5202 */
5203 if (slot >= nritems) {
Chris Masone02119d2008-09-05 16:13:11 -04005204 path->slots[level] = slot;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005205 btrfs_set_path_blocking(path);
Chris Masone02119d2008-09-05 16:13:11 -04005206 sret = btrfs_find_next_key(root, path, min_key, level,
Eric Sandeende78b512013-01-31 18:21:12 +00005207 min_trans);
Chris Masone02119d2008-09-05 16:13:11 -04005208 if (sret == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005209 btrfs_release_path(path);
Chris Mason3f157a22008-06-25 16:01:31 -04005210 goto again;
5211 } else {
5212 goto out;
5213 }
5214 }
5215 /* save our key for returning back */
5216 btrfs_node_key_to_cpu(cur, &found_key, slot);
5217 path->slots[level] = slot;
5218 if (level == path->lowest_level) {
5219 ret = 0;
Chris Mason3f157a22008-06-25 16:01:31 -04005220 goto out;
5221 }
Chris Masonb4ce94d2009-02-04 09:25:08 -05005222 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04005223 cur = read_node_slot(root, cur, slot);
Liu Bofb770ae2016-07-05 12:10:14 -07005224 if (IS_ERR(cur)) {
5225 ret = PTR_ERR(cur);
5226 goto out;
5227 }
Chris Mason3f157a22008-06-25 16:01:31 -04005228
Chris Masonbd681512011-07-16 15:23:14 -04005229 btrfs_tree_read_lock(cur);
Chris Masonb4ce94d2009-02-04 09:25:08 -05005230
Chris Masonbd681512011-07-16 15:23:14 -04005231 path->locks[level - 1] = BTRFS_READ_LOCK;
Chris Mason3f157a22008-06-25 16:01:31 -04005232 path->nodes[level - 1] = cur;
Chris Masonf7c79f32012-03-19 15:54:38 -04005233 unlock_up(path, level, 1, 0, NULL);
Chris Masonbd681512011-07-16 15:23:14 -04005234 btrfs_clear_path_blocking(path, NULL, 0);
Chris Mason3f157a22008-06-25 16:01:31 -04005235 }
5236out:
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005237 path->keep_locks = keep_locks;
5238 if (ret == 0) {
5239 btrfs_unlock_up_safe(path, path->lowest_level + 1);
5240 btrfs_set_path_blocking(path);
Chris Mason3f157a22008-06-25 16:01:31 -04005241 memcpy(min_key, &found_key, sizeof(found_key));
Filipe Mananaf98de9b2014-08-04 19:37:21 +01005242 }
Chris Mason3f157a22008-06-25 16:01:31 -04005243 return ret;
5244}
5245
Liu Bofb770ae2016-07-05 12:10:14 -07005246static int tree_move_down(struct btrfs_root *root,
Alexander Block70698302012-06-05 21:07:48 +02005247 struct btrfs_path *path,
5248 int *level, int root_level)
5249{
Liu Bofb770ae2016-07-05 12:10:14 -07005250 struct extent_buffer *eb;
5251
Chris Mason74dd17f2012-08-07 16:25:13 -04005252 BUG_ON(*level == 0);
Liu Bofb770ae2016-07-05 12:10:14 -07005253 eb = read_node_slot(root, path->nodes[*level], path->slots[*level]);
5254 if (IS_ERR(eb))
5255 return PTR_ERR(eb);
5256
5257 path->nodes[*level - 1] = eb;
Alexander Block70698302012-06-05 21:07:48 +02005258 path->slots[*level - 1] = 0;
5259 (*level)--;
Liu Bofb770ae2016-07-05 12:10:14 -07005260 return 0;
Alexander Block70698302012-06-05 21:07:48 +02005261}
5262
5263static int tree_move_next_or_upnext(struct btrfs_root *root,
5264 struct btrfs_path *path,
5265 int *level, int root_level)
5266{
5267 int ret = 0;
5268 int nritems;
5269 nritems = btrfs_header_nritems(path->nodes[*level]);
5270
5271 path->slots[*level]++;
5272
Chris Mason74dd17f2012-08-07 16:25:13 -04005273 while (path->slots[*level] >= nritems) {
Alexander Block70698302012-06-05 21:07:48 +02005274 if (*level == root_level)
5275 return -1;
5276
5277 /* move upnext */
5278 path->slots[*level] = 0;
5279 free_extent_buffer(path->nodes[*level]);
5280 path->nodes[*level] = NULL;
5281 (*level)++;
5282 path->slots[*level]++;
5283
5284 nritems = btrfs_header_nritems(path->nodes[*level]);
5285 ret = 1;
5286 }
5287 return ret;
5288}
5289
5290/*
5291 * Returns 1 if it had to move up and next. 0 is returned if it moved only next
5292 * or down.
5293 */
5294static int tree_advance(struct btrfs_root *root,
5295 struct btrfs_path *path,
5296 int *level, int root_level,
5297 int allow_down,
5298 struct btrfs_key *key)
5299{
5300 int ret;
5301
5302 if (*level == 0 || !allow_down) {
5303 ret = tree_move_next_or_upnext(root, path, level, root_level);
5304 } else {
Liu Bofb770ae2016-07-05 12:10:14 -07005305 ret = tree_move_down(root, path, level, root_level);
Alexander Block70698302012-06-05 21:07:48 +02005306 }
5307 if (ret >= 0) {
5308 if (*level == 0)
5309 btrfs_item_key_to_cpu(path->nodes[*level], key,
5310 path->slots[*level]);
5311 else
5312 btrfs_node_key_to_cpu(path->nodes[*level], key,
5313 path->slots[*level]);
5314 }
5315 return ret;
5316}
5317
5318static int tree_compare_item(struct btrfs_root *left_root,
5319 struct btrfs_path *left_path,
5320 struct btrfs_path *right_path,
5321 char *tmp_buf)
5322{
5323 int cmp;
5324 int len1, len2;
5325 unsigned long off1, off2;
5326
5327 len1 = btrfs_item_size_nr(left_path->nodes[0], left_path->slots[0]);
5328 len2 = btrfs_item_size_nr(right_path->nodes[0], right_path->slots[0]);
5329 if (len1 != len2)
5330 return 1;
5331
5332 off1 = btrfs_item_ptr_offset(left_path->nodes[0], left_path->slots[0]);
5333 off2 = btrfs_item_ptr_offset(right_path->nodes[0],
5334 right_path->slots[0]);
5335
5336 read_extent_buffer(left_path->nodes[0], tmp_buf, off1, len1);
5337
5338 cmp = memcmp_extent_buffer(right_path->nodes[0], tmp_buf, off2, len1);
5339 if (cmp)
5340 return 1;
5341 return 0;
5342}
5343
5344#define ADVANCE 1
5345#define ADVANCE_ONLY_NEXT -1
5346
5347/*
5348 * This function compares two trees and calls the provided callback for
5349 * every changed/new/deleted item it finds.
5350 * If shared tree blocks are encountered, whole subtrees are skipped, making
5351 * the compare pretty fast on snapshotted subvolumes.
5352 *
5353 * This currently works on commit roots only. As commit roots are read only,
5354 * we don't do any locking. The commit roots are protected with transactions.
5355 * Transactions are ended and rejoined when a commit is tried in between.
5356 *
5357 * This function checks for modifications done to the trees while comparing.
5358 * If it detects a change, it aborts immediately.
5359 */
5360int btrfs_compare_trees(struct btrfs_root *left_root,
5361 struct btrfs_root *right_root,
5362 btrfs_changed_cb_t changed_cb, void *ctx)
5363{
5364 int ret;
5365 int cmp;
Alexander Block70698302012-06-05 21:07:48 +02005366 struct btrfs_path *left_path = NULL;
5367 struct btrfs_path *right_path = NULL;
5368 struct btrfs_key left_key;
5369 struct btrfs_key right_key;
5370 char *tmp_buf = NULL;
5371 int left_root_level;
5372 int right_root_level;
5373 int left_level;
5374 int right_level;
5375 int left_end_reached;
5376 int right_end_reached;
5377 int advance_left;
5378 int advance_right;
5379 u64 left_blockptr;
5380 u64 right_blockptr;
Filipe Manana6baa4292014-02-20 21:15:25 +00005381 u64 left_gen;
5382 u64 right_gen;
Alexander Block70698302012-06-05 21:07:48 +02005383
5384 left_path = btrfs_alloc_path();
5385 if (!left_path) {
5386 ret = -ENOMEM;
5387 goto out;
5388 }
5389 right_path = btrfs_alloc_path();
5390 if (!right_path) {
5391 ret = -ENOMEM;
5392 goto out;
5393 }
5394
David Sterba8f282f72016-03-30 16:01:12 +02005395 tmp_buf = kmalloc(left_root->nodesize, GFP_KERNEL | __GFP_NOWARN);
Alexander Block70698302012-06-05 21:07:48 +02005396 if (!tmp_buf) {
David Sterba8f282f72016-03-30 16:01:12 +02005397 tmp_buf = vmalloc(left_root->nodesize);
5398 if (!tmp_buf) {
5399 ret = -ENOMEM;
5400 goto out;
5401 }
Alexander Block70698302012-06-05 21:07:48 +02005402 }
5403
5404 left_path->search_commit_root = 1;
5405 left_path->skip_locking = 1;
5406 right_path->search_commit_root = 1;
5407 right_path->skip_locking = 1;
5408
Alexander Block70698302012-06-05 21:07:48 +02005409 /*
5410 * Strategy: Go to the first items of both trees. Then do
5411 *
5412 * If both trees are at level 0
5413 * Compare keys of current items
5414 * If left < right treat left item as new, advance left tree
5415 * and repeat
5416 * If left > right treat right item as deleted, advance right tree
5417 * and repeat
5418 * If left == right do deep compare of items, treat as changed if
5419 * needed, advance both trees and repeat
5420 * If both trees are at the same level but not at level 0
5421 * Compare keys of current nodes/leafs
5422 * If left < right advance left tree and repeat
5423 * If left > right advance right tree and repeat
5424 * If left == right compare blockptrs of the next nodes/leafs
5425 * If they match advance both trees but stay at the same level
5426 * and repeat
5427 * If they don't match advance both trees while allowing to go
5428 * deeper and repeat
5429 * If tree levels are different
5430 * Advance the tree that needs it and repeat
5431 *
5432 * Advancing a tree means:
5433 * If we are at level 0, try to go to the next slot. If that's not
5434 * possible, go one level up and repeat. Stop when we found a level
5435 * where we could go to the next slot. We may at this point be on a
5436 * node or a leaf.
5437 *
5438 * If we are not at level 0 and not on shared tree blocks, go one
5439 * level deeper.
5440 *
5441 * If we are not at level 0 and on shared tree blocks, go one slot to
5442 * the right if possible or go up and right.
5443 */
5444
Josef Bacik3f8a18c2014-03-28 17:16:01 -04005445 down_read(&left_root->fs_info->commit_root_sem);
Alexander Block70698302012-06-05 21:07:48 +02005446 left_level = btrfs_header_level(left_root->commit_root);
5447 left_root_level = left_level;
5448 left_path->nodes[left_level] = left_root->commit_root;
5449 extent_buffer_get(left_path->nodes[left_level]);
5450
5451 right_level = btrfs_header_level(right_root->commit_root);
5452 right_root_level = right_level;
5453 right_path->nodes[right_level] = right_root->commit_root;
5454 extent_buffer_get(right_path->nodes[right_level]);
Josef Bacik3f8a18c2014-03-28 17:16:01 -04005455 up_read(&left_root->fs_info->commit_root_sem);
Alexander Block70698302012-06-05 21:07:48 +02005456
5457 if (left_level == 0)
5458 btrfs_item_key_to_cpu(left_path->nodes[left_level],
5459 &left_key, left_path->slots[left_level]);
5460 else
5461 btrfs_node_key_to_cpu(left_path->nodes[left_level],
5462 &left_key, left_path->slots[left_level]);
5463 if (right_level == 0)
5464 btrfs_item_key_to_cpu(right_path->nodes[right_level],
5465 &right_key, right_path->slots[right_level]);
5466 else
5467 btrfs_node_key_to_cpu(right_path->nodes[right_level],
5468 &right_key, right_path->slots[right_level]);
5469
5470 left_end_reached = right_end_reached = 0;
5471 advance_left = advance_right = 0;
5472
5473 while (1) {
Nikolay Borisov13f99142019-09-04 19:33:58 +03005474 cond_resched();
Alexander Block70698302012-06-05 21:07:48 +02005475 if (advance_left && !left_end_reached) {
5476 ret = tree_advance(left_root, left_path, &left_level,
5477 left_root_level,
5478 advance_left != ADVANCE_ONLY_NEXT,
5479 &left_key);
Liu Bofb770ae2016-07-05 12:10:14 -07005480 if (ret == -1)
Alexander Block70698302012-06-05 21:07:48 +02005481 left_end_reached = ADVANCE;
Liu Bofb770ae2016-07-05 12:10:14 -07005482 else if (ret < 0)
5483 goto out;
Alexander Block70698302012-06-05 21:07:48 +02005484 advance_left = 0;
5485 }
5486 if (advance_right && !right_end_reached) {
5487 ret = tree_advance(right_root, right_path, &right_level,
5488 right_root_level,
5489 advance_right != ADVANCE_ONLY_NEXT,
5490 &right_key);
Liu Bofb770ae2016-07-05 12:10:14 -07005491 if (ret == -1)
Alexander Block70698302012-06-05 21:07:48 +02005492 right_end_reached = ADVANCE;
Liu Bofb770ae2016-07-05 12:10:14 -07005493 else if (ret < 0)
5494 goto out;
Alexander Block70698302012-06-05 21:07:48 +02005495 advance_right = 0;
5496 }
5497
5498 if (left_end_reached && right_end_reached) {
5499 ret = 0;
5500 goto out;
5501 } else if (left_end_reached) {
5502 if (right_level == 0) {
5503 ret = changed_cb(left_root, right_root,
5504 left_path, right_path,
5505 &right_key,
5506 BTRFS_COMPARE_TREE_DELETED,
5507 ctx);
5508 if (ret < 0)
5509 goto out;
5510 }
5511 advance_right = ADVANCE;
5512 continue;
5513 } else if (right_end_reached) {
5514 if (left_level == 0) {
5515 ret = changed_cb(left_root, right_root,
5516 left_path, right_path,
5517 &left_key,
5518 BTRFS_COMPARE_TREE_NEW,
5519 ctx);
5520 if (ret < 0)
5521 goto out;
5522 }
5523 advance_left = ADVANCE;
5524 continue;
5525 }
5526
5527 if (left_level == 0 && right_level == 0) {
5528 cmp = btrfs_comp_cpu_keys(&left_key, &right_key);
5529 if (cmp < 0) {
5530 ret = changed_cb(left_root, right_root,
5531 left_path, right_path,
5532 &left_key,
5533 BTRFS_COMPARE_TREE_NEW,
5534 ctx);
5535 if (ret < 0)
5536 goto out;
5537 advance_left = ADVANCE;
5538 } else if (cmp > 0) {
5539 ret = changed_cb(left_root, right_root,
5540 left_path, right_path,
5541 &right_key,
5542 BTRFS_COMPARE_TREE_DELETED,
5543 ctx);
5544 if (ret < 0)
5545 goto out;
5546 advance_right = ADVANCE;
5547 } else {
Fabian Frederickb99d9a62014-09-25 19:35:02 +02005548 enum btrfs_compare_tree_result result;
Josef Bacikba5e8f22013-08-16 16:52:55 -04005549
Chris Mason74dd17f2012-08-07 16:25:13 -04005550 WARN_ON(!extent_buffer_uptodate(left_path->nodes[0]));
Alexander Block70698302012-06-05 21:07:48 +02005551 ret = tree_compare_item(left_root, left_path,
5552 right_path, tmp_buf);
Josef Bacikba5e8f22013-08-16 16:52:55 -04005553 if (ret)
Fabian Frederickb99d9a62014-09-25 19:35:02 +02005554 result = BTRFS_COMPARE_TREE_CHANGED;
Josef Bacikba5e8f22013-08-16 16:52:55 -04005555 else
Fabian Frederickb99d9a62014-09-25 19:35:02 +02005556 result = BTRFS_COMPARE_TREE_SAME;
Josef Bacikba5e8f22013-08-16 16:52:55 -04005557 ret = changed_cb(left_root, right_root,
5558 left_path, right_path,
Fabian Frederickb99d9a62014-09-25 19:35:02 +02005559 &left_key, result, ctx);
Josef Bacikba5e8f22013-08-16 16:52:55 -04005560 if (ret < 0)
5561 goto out;
Alexander Block70698302012-06-05 21:07:48 +02005562 advance_left = ADVANCE;
5563 advance_right = ADVANCE;
5564 }
5565 } else if (left_level == right_level) {
5566 cmp = btrfs_comp_cpu_keys(&left_key, &right_key);
5567 if (cmp < 0) {
5568 advance_left = ADVANCE;
5569 } else if (cmp > 0) {
5570 advance_right = ADVANCE;
5571 } else {
5572 left_blockptr = btrfs_node_blockptr(
5573 left_path->nodes[left_level],
5574 left_path->slots[left_level]);
5575 right_blockptr = btrfs_node_blockptr(
5576 right_path->nodes[right_level],
5577 right_path->slots[right_level]);
Filipe Manana6baa4292014-02-20 21:15:25 +00005578 left_gen = btrfs_node_ptr_generation(
5579 left_path->nodes[left_level],
5580 left_path->slots[left_level]);
5581 right_gen = btrfs_node_ptr_generation(
5582 right_path->nodes[right_level],
5583 right_path->slots[right_level]);
5584 if (left_blockptr == right_blockptr &&
5585 left_gen == right_gen) {
Alexander Block70698302012-06-05 21:07:48 +02005586 /*
5587 * As we're on a shared block, don't
5588 * allow to go deeper.
5589 */
5590 advance_left = ADVANCE_ONLY_NEXT;
5591 advance_right = ADVANCE_ONLY_NEXT;
5592 } else {
5593 advance_left = ADVANCE;
5594 advance_right = ADVANCE;
5595 }
5596 }
5597 } else if (left_level < right_level) {
5598 advance_right = ADVANCE;
5599 } else {
5600 advance_left = ADVANCE;
5601 }
5602 }
5603
5604out:
5605 btrfs_free_path(left_path);
5606 btrfs_free_path(right_path);
David Sterba8f282f72016-03-30 16:01:12 +02005607 kvfree(tmp_buf);
Alexander Block70698302012-06-05 21:07:48 +02005608 return ret;
5609}
5610
Chris Mason3f157a22008-06-25 16:01:31 -04005611/*
5612 * this is similar to btrfs_next_leaf, but does not try to preserve
5613 * and fixup the path. It looks for and returns the next key in the
Eric Sandeende78b512013-01-31 18:21:12 +00005614 * tree based on the current path and the min_trans parameters.
Chris Mason3f157a22008-06-25 16:01:31 -04005615 *
5616 * 0 is returned if another key is found, < 0 if there are any errors
5617 * and 1 is returned if there are no higher keys in the tree
5618 *
5619 * path->keep_locks should be set to 1 on the search made before
5620 * calling this function.
5621 */
Chris Masone7a84562008-06-25 16:01:31 -04005622int btrfs_find_next_key(struct btrfs_root *root, struct btrfs_path *path,
Eric Sandeende78b512013-01-31 18:21:12 +00005623 struct btrfs_key *key, int level, u64 min_trans)
Chris Masone7a84562008-06-25 16:01:31 -04005624{
Chris Masone7a84562008-06-25 16:01:31 -04005625 int slot;
5626 struct extent_buffer *c;
5627
Chris Mason934d3752008-12-08 16:43:10 -05005628 WARN_ON(!path->keep_locks);
Chris Masond3977122009-01-05 21:25:51 -05005629 while (level < BTRFS_MAX_LEVEL) {
Chris Masone7a84562008-06-25 16:01:31 -04005630 if (!path->nodes[level])
5631 return 1;
5632
5633 slot = path->slots[level] + 1;
5634 c = path->nodes[level];
Chris Mason3f157a22008-06-25 16:01:31 -04005635next:
Chris Masone7a84562008-06-25 16:01:31 -04005636 if (slot >= btrfs_header_nritems(c)) {
Yan Zheng33c66f42009-07-22 09:59:00 -04005637 int ret;
5638 int orig_lowest;
5639 struct btrfs_key cur_key;
5640 if (level + 1 >= BTRFS_MAX_LEVEL ||
5641 !path->nodes[level + 1])
Chris Masone7a84562008-06-25 16:01:31 -04005642 return 1;
Yan Zheng33c66f42009-07-22 09:59:00 -04005643
5644 if (path->locks[level + 1]) {
5645 level++;
5646 continue;
5647 }
5648
5649 slot = btrfs_header_nritems(c) - 1;
5650 if (level == 0)
5651 btrfs_item_key_to_cpu(c, &cur_key, slot);
5652 else
5653 btrfs_node_key_to_cpu(c, &cur_key, slot);
5654
5655 orig_lowest = path->lowest_level;
David Sterbab3b4aa72011-04-21 01:20:15 +02005656 btrfs_release_path(path);
Yan Zheng33c66f42009-07-22 09:59:00 -04005657 path->lowest_level = level;
5658 ret = btrfs_search_slot(NULL, root, &cur_key, path,
5659 0, 0);
5660 path->lowest_level = orig_lowest;
5661 if (ret < 0)
5662 return ret;
5663
5664 c = path->nodes[level];
5665 slot = path->slots[level];
5666 if (ret == 0)
5667 slot++;
5668 goto next;
Chris Masone7a84562008-06-25 16:01:31 -04005669 }
Yan Zheng33c66f42009-07-22 09:59:00 -04005670
Chris Masone7a84562008-06-25 16:01:31 -04005671 if (level == 0)
5672 btrfs_item_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005673 else {
Chris Mason3f157a22008-06-25 16:01:31 -04005674 u64 gen = btrfs_node_ptr_generation(c, slot);
5675
Chris Mason3f157a22008-06-25 16:01:31 -04005676 if (gen < min_trans) {
5677 slot++;
5678 goto next;
5679 }
Chris Masone7a84562008-06-25 16:01:31 -04005680 btrfs_node_key_to_cpu(c, key, slot);
Chris Mason3f157a22008-06-25 16:01:31 -04005681 }
Chris Masone7a84562008-06-25 16:01:31 -04005682 return 0;
5683 }
5684 return 1;
5685}
5686
Chris Mason7bb86312007-12-11 09:25:06 -05005687/*
Chris Mason925baed2008-06-25 16:01:30 -04005688 * search the tree again to find a leaf with greater keys
Chris Mason0f70abe2007-02-28 16:46:22 -05005689 * returns 0 if it found something or 1 if there are no greater leaves.
5690 * returns < 0 on io errors.
Chris Mason97571fd2007-02-24 13:39:08 -05005691 */
Chris Mason234b63a2007-03-13 10:46:10 -04005692int btrfs_next_leaf(struct btrfs_root *root, struct btrfs_path *path)
Chris Masond97e63b2007-02-20 16:40:44 -05005693{
Jan Schmidt3d7806e2012-06-11 08:29:29 +02005694 return btrfs_next_old_leaf(root, path, 0);
5695}
5696
5697int btrfs_next_old_leaf(struct btrfs_root *root, struct btrfs_path *path,
5698 u64 time_seq)
5699{
Chris Masond97e63b2007-02-20 16:40:44 -05005700 int slot;
Chris Mason8e73f272009-04-03 10:14:18 -04005701 int level;
Chris Mason5f39d392007-10-15 16:14:19 -04005702 struct extent_buffer *c;
Chris Mason8e73f272009-04-03 10:14:18 -04005703 struct extent_buffer *next;
Chris Mason925baed2008-06-25 16:01:30 -04005704 struct btrfs_key key;
5705 u32 nritems;
5706 int ret;
Chris Mason8e73f272009-04-03 10:14:18 -04005707 int old_spinning = path->leave_spinning;
Chris Masonbd681512011-07-16 15:23:14 -04005708 int next_rw_lock = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005709
5710 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Masond3977122009-01-05 21:25:51 -05005711 if (nritems == 0)
Chris Mason925baed2008-06-25 16:01:30 -04005712 return 1;
Chris Mason925baed2008-06-25 16:01:30 -04005713
Chris Mason8e73f272009-04-03 10:14:18 -04005714 btrfs_item_key_to_cpu(path->nodes[0], &key, nritems - 1);
5715again:
5716 level = 1;
5717 next = NULL;
Chris Masonbd681512011-07-16 15:23:14 -04005718 next_rw_lock = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02005719 btrfs_release_path(path);
Chris Mason8e73f272009-04-03 10:14:18 -04005720
Chris Masona2135012008-06-25 16:01:30 -04005721 path->keep_locks = 1;
Chris Mason31533fb2011-07-26 16:01:59 -04005722 path->leave_spinning = 1;
Chris Mason8e73f272009-04-03 10:14:18 -04005723
Jan Schmidt3d7806e2012-06-11 08:29:29 +02005724 if (time_seq)
5725 ret = btrfs_search_old_slot(root, &key, path, time_seq);
5726 else
5727 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Chris Mason925baed2008-06-25 16:01:30 -04005728 path->keep_locks = 0;
5729
5730 if (ret < 0)
5731 return ret;
5732
Chris Masona2135012008-06-25 16:01:30 -04005733 nritems = btrfs_header_nritems(path->nodes[0]);
Chris Mason168fd7d2008-06-25 16:01:30 -04005734 /*
5735 * by releasing the path above we dropped all our locks. A balance
5736 * could have added more items next to the key that used to be
5737 * at the very end of the block. So, check again here and
5738 * advance the path if there are now more items available.
5739 */
Chris Masona2135012008-06-25 16:01:30 -04005740 if (nritems > 0 && path->slots[0] < nritems - 1) {
Yan Zhenge457afe2009-07-22 09:59:00 -04005741 if (ret == 0)
5742 path->slots[0]++;
Chris Mason8e73f272009-04-03 10:14:18 -04005743 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005744 goto done;
5745 }
Liu Bo0b43e042014-06-09 11:04:49 +08005746 /*
5747 * So the above check misses one case:
5748 * - after releasing the path above, someone has removed the item that
5749 * used to be at the very end of the block, and balance between leafs
5750 * gets another one with bigger key.offset to replace it.
5751 *
5752 * This one should be returned as well, or we can get leaf corruption
5753 * later(esp. in __btrfs_drop_extents()).
5754 *
5755 * And a bit more explanation about this check,
5756 * with ret > 0, the key isn't found, the path points to the slot
5757 * where it should be inserted, so the path->slots[0] item must be the
5758 * bigger one.
5759 */
5760 if (nritems > 0 && ret > 0 && path->slots[0] == nritems - 1) {
5761 ret = 0;
5762 goto done;
5763 }
Chris Masond97e63b2007-02-20 16:40:44 -05005764
Chris Masond3977122009-01-05 21:25:51 -05005765 while (level < BTRFS_MAX_LEVEL) {
Chris Mason8e73f272009-04-03 10:14:18 -04005766 if (!path->nodes[level]) {
5767 ret = 1;
5768 goto done;
5769 }
Chris Mason5f39d392007-10-15 16:14:19 -04005770
Chris Masond97e63b2007-02-20 16:40:44 -05005771 slot = path->slots[level] + 1;
5772 c = path->nodes[level];
Chris Mason5f39d392007-10-15 16:14:19 -04005773 if (slot >= btrfs_header_nritems(c)) {
Chris Masond97e63b2007-02-20 16:40:44 -05005774 level++;
Chris Mason8e73f272009-04-03 10:14:18 -04005775 if (level == BTRFS_MAX_LEVEL) {
5776 ret = 1;
5777 goto done;
5778 }
Chris Masond97e63b2007-02-20 16:40:44 -05005779 continue;
5780 }
Chris Mason5f39d392007-10-15 16:14:19 -04005781
Chris Mason925baed2008-06-25 16:01:30 -04005782 if (next) {
Chris Masonbd681512011-07-16 15:23:14 -04005783 btrfs_tree_unlock_rw(next, next_rw_lock);
Chris Mason5f39d392007-10-15 16:14:19 -04005784 free_extent_buffer(next);
Chris Mason925baed2008-06-25 16:01:30 -04005785 }
Chris Mason5f39d392007-10-15 16:14:19 -04005786
Chris Mason8e73f272009-04-03 10:14:18 -04005787 next = c;
Chris Masonbd681512011-07-16 15:23:14 -04005788 next_rw_lock = path->locks[level];
Chris Mason8e73f272009-04-03 10:14:18 -04005789 ret = read_block_for_search(NULL, root, path, &next, level,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02005790 slot, &key, 0);
Chris Mason8e73f272009-04-03 10:14:18 -04005791 if (ret == -EAGAIN)
5792 goto again;
Chris Mason5f39d392007-10-15 16:14:19 -04005793
Chris Mason76a05b32009-05-14 13:24:30 -04005794 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005795 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04005796 goto done;
5797 }
5798
Chris Mason5cd57b22008-06-25 16:01:30 -04005799 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04005800 ret = btrfs_try_tree_read_lock(next);
Jan Schmidtd42244a2012-06-22 14:51:15 +02005801 if (!ret && time_seq) {
5802 /*
5803 * If we don't get the lock, we may be racing
5804 * with push_leaf_left, holding that lock while
5805 * itself waiting for the leaf we've currently
5806 * locked. To solve this situation, we give up
5807 * on our lock and cycle.
5808 */
Jan Schmidtcf538832012-07-04 15:42:48 +02005809 free_extent_buffer(next);
Jan Schmidtd42244a2012-06-22 14:51:15 +02005810 btrfs_release_path(path);
5811 cond_resched();
5812 goto again;
5813 }
Chris Mason8e73f272009-04-03 10:14:18 -04005814 if (!ret) {
5815 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04005816 btrfs_tree_read_lock(next);
Chris Mason31533fb2011-07-26 16:01:59 -04005817 btrfs_clear_path_blocking(path, next,
Chris Masonbd681512011-07-16 15:23:14 -04005818 BTRFS_READ_LOCK);
Chris Mason8e73f272009-04-03 10:14:18 -04005819 }
Chris Mason31533fb2011-07-26 16:01:59 -04005820 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04005821 }
Chris Masond97e63b2007-02-20 16:40:44 -05005822 break;
5823 }
5824 path->slots[level] = slot;
Chris Masond3977122009-01-05 21:25:51 -05005825 while (1) {
Chris Masond97e63b2007-02-20 16:40:44 -05005826 level--;
5827 c = path->nodes[level];
Chris Mason925baed2008-06-25 16:01:30 -04005828 if (path->locks[level])
Chris Masonbd681512011-07-16 15:23:14 -04005829 btrfs_tree_unlock_rw(c, path->locks[level]);
Chris Mason8e73f272009-04-03 10:14:18 -04005830
Chris Mason5f39d392007-10-15 16:14:19 -04005831 free_extent_buffer(c);
Chris Masond97e63b2007-02-20 16:40:44 -05005832 path->nodes[level] = next;
5833 path->slots[level] = 0;
Chris Masona74a4b92008-06-25 16:01:31 -04005834 if (!path->skip_locking)
Chris Masonbd681512011-07-16 15:23:14 -04005835 path->locks[level] = next_rw_lock;
Chris Masond97e63b2007-02-20 16:40:44 -05005836 if (!level)
5837 break;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005838
Chris Mason8e73f272009-04-03 10:14:18 -04005839 ret = read_block_for_search(NULL, root, path, &next, level,
Jan Schmidt5d9e75c42012-05-16 18:25:47 +02005840 0, &key, 0);
Chris Mason8e73f272009-04-03 10:14:18 -04005841 if (ret == -EAGAIN)
5842 goto again;
5843
Chris Mason76a05b32009-05-14 13:24:30 -04005844 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02005845 btrfs_release_path(path);
Chris Mason76a05b32009-05-14 13:24:30 -04005846 goto done;
5847 }
5848
Chris Mason5cd57b22008-06-25 16:01:30 -04005849 if (!path->skip_locking) {
Chris Masonbd681512011-07-16 15:23:14 -04005850 ret = btrfs_try_tree_read_lock(next);
Chris Mason8e73f272009-04-03 10:14:18 -04005851 if (!ret) {
5852 btrfs_set_path_blocking(path);
Chris Masonbd681512011-07-16 15:23:14 -04005853 btrfs_tree_read_lock(next);
Chris Mason31533fb2011-07-26 16:01:59 -04005854 btrfs_clear_path_blocking(path, next,
Chris Masonbd681512011-07-16 15:23:14 -04005855 BTRFS_READ_LOCK);
Chris Mason8e73f272009-04-03 10:14:18 -04005856 }
Chris Mason31533fb2011-07-26 16:01:59 -04005857 next_rw_lock = BTRFS_READ_LOCK;
Chris Mason5cd57b22008-06-25 16:01:30 -04005858 }
Chris Masond97e63b2007-02-20 16:40:44 -05005859 }
Chris Mason8e73f272009-04-03 10:14:18 -04005860 ret = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005861done:
Chris Masonf7c79f32012-03-19 15:54:38 -04005862 unlock_up(path, 0, 1, 0, NULL);
Chris Mason8e73f272009-04-03 10:14:18 -04005863 path->leave_spinning = old_spinning;
5864 if (!old_spinning)
5865 btrfs_set_path_blocking(path);
5866
5867 return ret;
Chris Masond97e63b2007-02-20 16:40:44 -05005868}
Chris Mason0b86a832008-03-24 15:01:56 -04005869
Chris Mason3f157a22008-06-25 16:01:31 -04005870/*
5871 * this uses btrfs_prev_leaf to walk backwards in the tree, and keeps
5872 * searching until it gets past min_objectid or finds an item of 'type'
5873 *
5874 * returns 0 if something is found, 1 if nothing was found and < 0 on error
5875 */
Chris Mason0b86a832008-03-24 15:01:56 -04005876int btrfs_previous_item(struct btrfs_root *root,
5877 struct btrfs_path *path, u64 min_objectid,
5878 int type)
5879{
5880 struct btrfs_key found_key;
5881 struct extent_buffer *leaf;
Chris Masone02119d2008-09-05 16:13:11 -04005882 u32 nritems;
Chris Mason0b86a832008-03-24 15:01:56 -04005883 int ret;
5884
Chris Masond3977122009-01-05 21:25:51 -05005885 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04005886 if (path->slots[0] == 0) {
Chris Masonb4ce94d2009-02-04 09:25:08 -05005887 btrfs_set_path_blocking(path);
Chris Mason0b86a832008-03-24 15:01:56 -04005888 ret = btrfs_prev_leaf(root, path);
5889 if (ret != 0)
5890 return ret;
5891 } else {
5892 path->slots[0]--;
5893 }
5894 leaf = path->nodes[0];
Chris Masone02119d2008-09-05 16:13:11 -04005895 nritems = btrfs_header_nritems(leaf);
5896 if (nritems == 0)
5897 return 1;
5898 if (path->slots[0] == nritems)
5899 path->slots[0]--;
5900
Chris Mason0b86a832008-03-24 15:01:56 -04005901 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masone02119d2008-09-05 16:13:11 -04005902 if (found_key.objectid < min_objectid)
5903 break;
Yan Zheng0a4eefb2009-07-24 11:06:53 -04005904 if (found_key.type == type)
5905 return 0;
Chris Masone02119d2008-09-05 16:13:11 -04005906 if (found_key.objectid == min_objectid &&
5907 found_key.type < type)
5908 break;
Chris Mason0b86a832008-03-24 15:01:56 -04005909 }
5910 return 1;
5911}
Wang Shilongade2e0b2014-01-12 21:38:33 +08005912
5913/*
5914 * search in extent tree to find a previous Metadata/Data extent item with
5915 * min objecitd.
5916 *
5917 * returns 0 if something is found, 1 if nothing was found and < 0 on error
5918 */
5919int btrfs_previous_extent_item(struct btrfs_root *root,
5920 struct btrfs_path *path, u64 min_objectid)
5921{
5922 struct btrfs_key found_key;
5923 struct extent_buffer *leaf;
5924 u32 nritems;
5925 int ret;
5926
5927 while (1) {
5928 if (path->slots[0] == 0) {
5929 btrfs_set_path_blocking(path);
5930 ret = btrfs_prev_leaf(root, path);
5931 if (ret != 0)
5932 return ret;
5933 } else {
5934 path->slots[0]--;
5935 }
5936 leaf = path->nodes[0];
5937 nritems = btrfs_header_nritems(leaf);
5938 if (nritems == 0)
5939 return 1;
5940 if (path->slots[0] == nritems)
5941 path->slots[0]--;
5942
5943 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5944 if (found_key.objectid < min_objectid)
5945 break;
5946 if (found_key.type == BTRFS_EXTENT_ITEM_KEY ||
5947 found_key.type == BTRFS_METADATA_ITEM_KEY)
5948 return 0;
5949 if (found_key.objectid == min_objectid &&
5950 found_key.type < BTRFS_EXTENT_ITEM_KEY)
5951 break;
5952 }
5953 return 1;
5954}