blob: cf07585b9d83de46a6c88787a595ff8dcb374452 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
Dave Chinnerf5ea1102013-04-24 18:58:02 +10003 * Copyright (c) 2013 Red Hat, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11004 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Nathan Scott7b718762005-11-02 14:58:39 +11006 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * published by the Free Software Foundation.
9 *
Nathan Scott7b718762005-11-02 14:58:39 +110010 * This program is distributed in the hope that it would be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
Nathan Scott7b718762005-11-02 14:58:39 +110015 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_fs.h"
Dave Chinner70a98832013-10-23 10:36:05 +110021#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +110022#include "xfs_format.h"
23#include "xfs_log_format.h"
24#include "xfs_trans_resv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110025#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110027#include "xfs_da_format.h"
Nathan Scotta844f452005-11-02 14:38:42 +110028#include "xfs_da_btree.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100029#include "xfs_dir2.h"
Christoph Hellwig57926642011-07-13 13:43:48 +020030#include "xfs_dir2_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_inode.h"
Dave Chinner239880e2013-10-23 10:50:10 +110032#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_inode_item.h"
34#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_attr.h"
37#include "xfs_attr_leaf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000039#include "xfs_trace.h"
Dave Chinnerf5ea1102013-04-24 18:58:02 +100040#include "xfs_cksum.h"
41#include "xfs_buf_item.h"
Brian Fostera45086e2015-10-12 15:59:25 +110042#include "xfs_log.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44/*
45 * xfs_da_btree.c
46 *
47 * Routines to implement directories as Btrees of hashed names.
48 */
49
50/*========================================================================
51 * Function prototypes for the kernel.
52 *========================================================================*/
53
54/*
55 * Routines used for growing the Btree.
56 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +100057STATIC int xfs_da3_root_split(xfs_da_state_t *state,
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 xfs_da_state_blk_t *existing_root,
59 xfs_da_state_blk_t *new_child);
Dave Chinnerf5ea1102013-04-24 18:58:02 +100060STATIC int xfs_da3_node_split(xfs_da_state_t *state,
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 xfs_da_state_blk_t *existing_blk,
62 xfs_da_state_blk_t *split_blk,
63 xfs_da_state_blk_t *blk_to_add,
64 int treelevel,
65 int *result);
Dave Chinnerf5ea1102013-04-24 18:58:02 +100066STATIC void xfs_da3_node_rebalance(xfs_da_state_t *state,
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 xfs_da_state_blk_t *node_blk_1,
68 xfs_da_state_blk_t *node_blk_2);
Dave Chinnerf5ea1102013-04-24 18:58:02 +100069STATIC void xfs_da3_node_add(xfs_da_state_t *state,
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 xfs_da_state_blk_t *old_node_blk,
71 xfs_da_state_blk_t *new_node_blk);
72
73/*
74 * Routines used for shrinking the Btree.
75 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +100076STATIC int xfs_da3_root_join(xfs_da_state_t *state,
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 xfs_da_state_blk_t *root_blk);
Dave Chinnerf5ea1102013-04-24 18:58:02 +100078STATIC int xfs_da3_node_toosmall(xfs_da_state_t *state, int *retval);
79STATIC void xfs_da3_node_remove(xfs_da_state_t *state,
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 xfs_da_state_blk_t *drop_blk);
Dave Chinnerf5ea1102013-04-24 18:58:02 +100081STATIC void xfs_da3_node_unbalance(xfs_da_state_t *state,
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 xfs_da_state_blk_t *src_node_blk,
83 xfs_da_state_blk_t *dst_node_blk);
84
85/*
86 * Utility routines.
87 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +100088STATIC int xfs_da3_blk_unlink(xfs_da_state_t *state,
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100089 xfs_da_state_blk_t *drop_blk,
90 xfs_da_state_blk_t *save_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Dave Chinnerf5ea1102013-04-24 18:58:02 +100092
93kmem_zone_t *xfs_da_state_zone; /* anchor for state struct zone */
94
95/*
96 * Allocate a dir-state structure.
97 * We don't put them on the stack since they're large.
98 */
99xfs_da_state_t *
100xfs_da_state_alloc(void)
101{
102 return kmem_zone_zalloc(xfs_da_state_zone, KM_NOFS);
103}
104
105/*
106 * Kill the altpath contents of a da-state structure.
107 */
108STATIC void
109xfs_da_state_kill_altpath(xfs_da_state_t *state)
110{
111 int i;
112
113 for (i = 0; i < state->altpath.active; i++)
114 state->altpath.blk[i].bp = NULL;
115 state->altpath.active = 0;
116}
117
118/*
119 * Free a da-state structure.
120 */
121void
122xfs_da_state_free(xfs_da_state_t *state)
123{
124 xfs_da_state_kill_altpath(state);
125#ifdef DEBUG
126 memset((char *)state, 0, sizeof(*state));
127#endif /* DEBUG */
128 kmem_zone_free(xfs_da_state_zone, state);
129}
130
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800131static xfs_failaddr_t
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000132xfs_da3_node_verify(
Dave Chinnerd9392a42012-11-12 22:54:17 +1100133 struct xfs_buf *bp)
134{
135 struct xfs_mount *mp = bp->b_target->bt_mount;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000136 struct xfs_da_intnode *hdr = bp->b_addr;
137 struct xfs_da3_icnode_hdr ichdr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100138 const struct xfs_dir_ops *ops;
Dave Chinnerd9392a42012-11-12 22:54:17 +1100139
Dave Chinner01ba43b2013-10-29 22:11:52 +1100140 ops = xfs_dir_get_ops(mp, NULL);
141
142 ops->node_hdr_from_disk(&ichdr, hdr);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000143
144 if (xfs_sb_version_hascrc(&mp->m_sb)) {
145 struct xfs_da3_node_hdr *hdr3 = bp->b_addr;
146
147 if (ichdr.magic != XFS_DA3_NODE_MAGIC)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800148 return __this_address;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000149
Eric Sandeence748ea2015-07-29 11:53:31 +1000150 if (!uuid_equal(&hdr3->info.uuid, &mp->m_sb.sb_meta_uuid))
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800151 return __this_address;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000152 if (be64_to_cpu(hdr3->info.blkno) != bp->b_bn)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800153 return __this_address;
Brian Fostera45086e2015-10-12 15:59:25 +1100154 if (!xfs_log_check_lsn(mp, be64_to_cpu(hdr3->info.lsn)))
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800155 return __this_address;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000156 } else {
157 if (ichdr.magic != XFS_DA_NODE_MAGIC)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800158 return __this_address;
Dave Chinnerd9392a42012-11-12 22:54:17 +1100159 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000160 if (ichdr.level == 0)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800161 return __this_address;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000162 if (ichdr.level > XFS_DA_NODE_MAXDEPTH)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800163 return __this_address;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000164 if (ichdr.count == 0)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800165 return __this_address;
Dave Chinnerd9392a42012-11-12 22:54:17 +1100166
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000167 /*
168 * we don't know if the node is for and attribute or directory tree,
169 * so only fail if the count is outside both bounds
170 */
Dave Chinner7ab610f2014-06-06 15:20:02 +1000171 if (ichdr.count > mp->m_dir_geo->node_ents &&
172 ichdr.count > mp->m_attr_geo->node_ents)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800173 return __this_address;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000174
175 /* XXX: hash order check? */
176
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800177 return NULL;
Dave Chinnerd9392a42012-11-12 22:54:17 +1100178}
179
180static void
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000181xfs_da3_node_write_verify(
Dave Chinner612cfbf2012-11-14 17:52:32 +1100182 struct xfs_buf *bp)
183{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000184 struct xfs_mount *mp = bp->b_target->bt_mount;
185 struct xfs_buf_log_item *bip = bp->b_fspriv;
186 struct xfs_da3_node_hdr *hdr3 = bp->b_addr;
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800187 xfs_failaddr_t fa;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000188
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800189 fa = xfs_da3_node_verify(bp);
190 if (fa) {
191 xfs_verifier_error(bp, -EFSCORRUPTED, fa);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000192 return;
193 }
194
195 if (!xfs_sb_version_hascrc(&mp->m_sb))
196 return;
197
198 if (bip)
199 hdr3->info.lsn = cpu_to_be64(bip->bli_item.li_lsn);
200
Eric Sandeenf1dbcd72014-02-27 15:18:23 +1100201 xfs_buf_update_cksum(bp, XFS_DA3_NODE_CRC_OFF);
Dave Chinner612cfbf2012-11-14 17:52:32 +1100202}
203
Dave Chinner1813dd62012-11-14 17:54:40 +1100204/*
205 * leaf/node format detection on trees is sketchy, so a node read can be done on
206 * leaf level blocks when detection identifies the tree as a node format tree
207 * incorrectly. In this case, we need to swap the verifier to match the correct
208 * format of the block being read.
209 */
Dave Chinner612cfbf2012-11-14 17:52:32 +1100210static void
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000211xfs_da3_node_read_verify(
Dave Chinnerd9392a42012-11-12 22:54:17 +1100212 struct xfs_buf *bp)
213{
Dave Chinnerd9392a42012-11-12 22:54:17 +1100214 struct xfs_da_blkinfo *info = bp->b_addr;
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800215 xfs_failaddr_t fa;
Dave Chinnerd9392a42012-11-12 22:54:17 +1100216
217 switch (be16_to_cpu(info->magic)) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000218 case XFS_DA3_NODE_MAGIC:
Eric Sandeence5028c2014-02-27 15:23:10 +1100219 if (!xfs_buf_verify_cksum(bp, XFS_DA3_NODE_CRC_OFF)) {
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800220 xfs_verifier_error(bp, -EFSBADCRC,
221 __this_address);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000222 break;
Eric Sandeence5028c2014-02-27 15:23:10 +1100223 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000224 /* fall through */
Dave Chinnerd9392a42012-11-12 22:54:17 +1100225 case XFS_DA_NODE_MAGIC:
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800226 fa = xfs_da3_node_verify(bp);
227 if (fa)
228 xfs_verifier_error(bp, -EFSCORRUPTED, fa);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000229 return;
Dave Chinnerd9392a42012-11-12 22:54:17 +1100230 case XFS_ATTR_LEAF_MAGIC:
Dave Chinner7ced60c2013-05-20 09:51:13 +1000231 case XFS_ATTR3_LEAF_MAGIC:
Dave Chinner517c2222013-04-24 18:58:55 +1000232 bp->b_ops = &xfs_attr3_leaf_buf_ops;
Dave Chinner1813dd62012-11-14 17:54:40 +1100233 bp->b_ops->verify_read(bp);
Dave Chinnerd9392a42012-11-12 22:54:17 +1100234 return;
235 case XFS_DIR2_LEAFN_MAGIC:
Dave Chinner24df33b2013-04-12 07:30:21 +1000236 case XFS_DIR3_LEAFN_MAGIC:
237 bp->b_ops = &xfs_dir3_leafn_buf_ops;
Dave Chinner1813dd62012-11-14 17:54:40 +1100238 bp->b_ops->verify_read(bp);
Dave Chinnerd9392a42012-11-12 22:54:17 +1100239 return;
240 default:
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800241 xfs_verifier_error(bp, -EFSCORRUPTED, __this_address);
Dave Chinnerd9392a42012-11-12 22:54:17 +1100242 break;
243 }
Dave Chinnerd9392a42012-11-12 22:54:17 +1100244}
245
Darrick J. Wongb5572592018-01-08 10:51:08 -0800246/* Verify the structure of a da3 block. */
247static xfs_failaddr_t
248xfs_da3_node_verify_struct(
249 struct xfs_buf *bp)
250{
251 struct xfs_da_blkinfo *info = bp->b_addr;
252
253 switch (be16_to_cpu(info->magic)) {
254 case XFS_DA3_NODE_MAGIC:
255 case XFS_DA_NODE_MAGIC:
256 return xfs_da3_node_verify(bp);
257 case XFS_ATTR_LEAF_MAGIC:
258 case XFS_ATTR3_LEAF_MAGIC:
259 bp->b_ops = &xfs_attr3_leaf_buf_ops;
260 return bp->b_ops->verify_struct(bp);
261 case XFS_DIR2_LEAFN_MAGIC:
262 case XFS_DIR3_LEAFN_MAGIC:
263 bp->b_ops = &xfs_dir3_leafn_buf_ops;
264 return bp->b_ops->verify_struct(bp);
265 default:
266 return __this_address;
267 }
268}
269
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000270const struct xfs_buf_ops xfs_da3_node_buf_ops = {
Eric Sandeen233135b2016-01-04 16:10:19 +1100271 .name = "xfs_da3_node",
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000272 .verify_read = xfs_da3_node_read_verify,
273 .verify_write = xfs_da3_node_write_verify,
Darrick J. Wongb5572592018-01-08 10:51:08 -0800274 .verify_struct = xfs_da3_node_verify_struct,
Dave Chinner1813dd62012-11-14 17:54:40 +1100275};
276
Dave Chinnerd9392a42012-11-12 22:54:17 +1100277int
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000278xfs_da3_node_read(
Dave Chinnerd9392a42012-11-12 22:54:17 +1100279 struct xfs_trans *tp,
280 struct xfs_inode *dp,
281 xfs_dablk_t bno,
282 xfs_daddr_t mappedbno,
283 struct xfs_buf **bpp,
284 int which_fork)
285{
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100286 int err;
287
288 err = xfs_da_read_buf(tp, dp, bno, mappedbno, bpp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000289 which_fork, &xfs_da3_node_buf_ops);
Darrick J. Wongcd87d862017-07-07 18:55:17 -0700290 if (!err && tp && *bpp) {
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100291 struct xfs_da_blkinfo *info = (*bpp)->b_addr;
292 int type;
293
294 switch (be16_to_cpu(info->magic)) {
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100295 case XFS_DA_NODE_MAGIC:
Dave Chinnercab09a82013-04-30 21:39:36 +1000296 case XFS_DA3_NODE_MAGIC:
Dave Chinner61fe1352013-04-03 16:11:30 +1100297 type = XFS_BLFT_DA_NODE_BUF;
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100298 break;
299 case XFS_ATTR_LEAF_MAGIC:
300 case XFS_ATTR3_LEAF_MAGIC:
Dave Chinner61fe1352013-04-03 16:11:30 +1100301 type = XFS_BLFT_ATTR_LEAF_BUF;
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100302 break;
303 case XFS_DIR2_LEAFN_MAGIC:
304 case XFS_DIR3_LEAFN_MAGIC:
Dave Chinner61fe1352013-04-03 16:11:30 +1100305 type = XFS_BLFT_DIR_LEAFN_BUF;
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100306 break;
307 default:
308 type = 0;
309 ASSERT(0);
310 break;
311 }
312 xfs_trans_buf_set_type(tp, *bpp, type);
313 }
314 return err;
Dave Chinnerd9392a42012-11-12 22:54:17 +1100315}
316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317/*========================================================================
318 * Routines used for growing the Btree.
319 *========================================================================*/
320
321/*
322 * Create the initial contents of an intermediate node.
323 */
324int
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000325xfs_da3_node_create(
326 struct xfs_da_args *args,
327 xfs_dablk_t blkno,
328 int level,
329 struct xfs_buf **bpp,
330 int whichfork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000332 struct xfs_da_intnode *node;
333 struct xfs_trans *tp = args->trans;
334 struct xfs_mount *mp = tp->t_mountp;
335 struct xfs_da3_icnode_hdr ichdr = {0};
336 struct xfs_buf *bp;
337 int error;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100338 struct xfs_inode *dp = args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Dave Chinner5a5881c2012-03-22 05:15:13 +0000340 trace_xfs_da_node_create(args);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000341 ASSERT(level <= XFS_DA_NODE_MAXDEPTH);
Dave Chinner5a5881c2012-03-22 05:15:13 +0000342
Dave Chinner01ba43b2013-10-29 22:11:52 +1100343 error = xfs_da_get_buf(tp, dp, blkno, -1, &bp, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000345 return error;
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100346 bp->b_ops = &xfs_da3_node_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100347 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DA_NODE_BUF);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000348 node = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000350 if (xfs_sb_version_hascrc(&mp->m_sb)) {
351 struct xfs_da3_node_hdr *hdr3 = bp->b_addr;
352
Brian Fostera45086e2015-10-12 15:59:25 +1100353 memset(hdr3, 0, sizeof(struct xfs_da3_node_hdr));
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000354 ichdr.magic = XFS_DA3_NODE_MAGIC;
355 hdr3->info.blkno = cpu_to_be64(bp->b_bn);
356 hdr3->info.owner = cpu_to_be64(args->dp->i_ino);
Eric Sandeence748ea2015-07-29 11:53:31 +1000357 uuid_copy(&hdr3->info.uuid, &mp->m_sb.sb_meta_uuid);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000358 } else {
359 ichdr.magic = XFS_DA_NODE_MAGIC;
360 }
361 ichdr.level = level;
362
Dave Chinner01ba43b2013-10-29 22:11:52 +1100363 dp->d_ops->node_hdr_to_disk(node, &ichdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000364 xfs_trans_log_buf(tp, bp,
Dave Chinner1c9a5b22013-10-30 09:15:02 +1100365 XFS_DA_LOGRANGE(node, &node->hdr, dp->d_ops->node_hdr_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 *bpp = bp;
Eric Sandeend99831f2014-06-22 15:03:54 +1000368 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
371/*
372 * Split a leaf node, rebalance, then possibly split
373 * intermediate nodes, rebalance, etc.
374 */
375int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000376xfs_da3_split(
377 struct xfs_da_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000379 struct xfs_da_state_blk *oldblk;
380 struct xfs_da_state_blk *newblk;
381 struct xfs_da_state_blk *addblk;
382 struct xfs_da_intnode *node;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000383 int max;
Dave Chinner836a94a2013-08-12 20:49:44 +1000384 int action = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000385 int error;
386 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Dave Chinner5a5881c2012-03-22 05:15:13 +0000388 trace_xfs_da_split(state->args);
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 /*
391 * Walk back up the tree splitting/inserting/adjusting as necessary.
392 * If we need to insert and there isn't room, split the node, then
393 * decide which fragment to insert the new block from below into.
394 * Note that we may split the root this way, but we need more fixup.
395 */
396 max = state->path.active - 1;
397 ASSERT((max >= 0) && (max < XFS_DA_NODE_MAXDEPTH));
398 ASSERT(state->path.blk[max].magic == XFS_ATTR_LEAF_MAGIC ||
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000399 state->path.blk[max].magic == XFS_DIR2_LEAFN_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 addblk = &state->path.blk[max]; /* initial dummy value */
402 for (i = max; (i >= 0) && addblk; state->path.active--, i--) {
403 oldblk = &state->path.blk[i];
404 newblk = &state->altpath.blk[i];
405
406 /*
407 * If a leaf node then
408 * Allocate a new leaf node, then rebalance across them.
409 * else if an intermediate node then
410 * We split on the last layer, must we split the node?
411 */
412 switch (oldblk->magic) {
413 case XFS_ATTR_LEAF_MAGIC:
Dave Chinner517c2222013-04-24 18:58:55 +1000414 error = xfs_attr3_leaf_split(state, oldblk, newblk);
Dave Chinner24513372014-06-25 14:58:08 +1000415 if ((error != 0) && (error != -ENOSPC)) {
Eric Sandeend99831f2014-06-22 15:03:54 +1000416 return error; /* GROT: attr is inconsistent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
418 if (!error) {
419 addblk = newblk;
420 break;
421 }
422 /*
Dave Chinner160ae762016-07-22 09:51:05 +1000423 * Entry wouldn't fit, split the leaf again. The new
424 * extrablk will be consumed by xfs_da3_node_split if
425 * the node is split.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 */
427 state->extravalid = 1;
428 if (state->inleaf) {
429 state->extraafter = 0; /* before newblk */
Dave Chinner5a5881c2012-03-22 05:15:13 +0000430 trace_xfs_attr_leaf_split_before(state->args);
Dave Chinner517c2222013-04-24 18:58:55 +1000431 error = xfs_attr3_leaf_split(state, oldblk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 &state->extrablk);
433 } else {
434 state->extraafter = 1; /* after newblk */
Dave Chinner5a5881c2012-03-22 05:15:13 +0000435 trace_xfs_attr_leaf_split_after(state->args);
Dave Chinner517c2222013-04-24 18:58:55 +1000436 error = xfs_attr3_leaf_split(state, newblk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 &state->extrablk);
438 }
439 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000440 return error; /* GROT: attr inconsistent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 addblk = newblk;
442 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 case XFS_DIR2_LEAFN_MAGIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 error = xfs_dir2_leafn_split(state, oldblk, newblk);
445 if (error)
446 return error;
447 addblk = newblk;
448 break;
449 case XFS_DA_NODE_MAGIC:
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000450 error = xfs_da3_node_split(state, oldblk, newblk, addblk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 max - i, &action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 addblk->bp = NULL;
453 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000454 return error; /* GROT: dir is inconsistent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 /*
456 * Record the newly split block for the next time thru?
457 */
458 if (action)
459 addblk = newblk;
460 else
461 addblk = NULL;
462 break;
463 }
464
465 /*
466 * Update the btree to show the new hashval for this child.
467 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000468 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 }
470 if (!addblk)
Eric Sandeend99831f2014-06-22 15:03:54 +1000471 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 /*
Dave Chinner160ae762016-07-22 09:51:05 +1000474 * xfs_da3_node_split() should have consumed any extra blocks we added
475 * during a double leaf split in the attr fork. This is guaranteed as
476 * we can't be here if the attr fork only has a single leaf block.
477 */
478 ASSERT(state->extravalid == 0 ||
479 state->path.blk[max].magic == XFS_DIR2_LEAFN_MAGIC);
480
481 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 * Split the root node.
483 */
484 ASSERT(state->path.active == 0);
485 oldblk = &state->path.blk[0];
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000486 error = xfs_da3_root_split(state, oldblk, addblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 addblk->bp = NULL;
Eric Sandeend99831f2014-06-22 15:03:54 +1000489 return error; /* GROT: dir is inconsistent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 }
491
492 /*
Dave Chinner160ae762016-07-22 09:51:05 +1000493 * Update pointers to the node which used to be block 0 and just got
494 * bumped because of the addition of a new root node. Note that the
495 * original block 0 could be at any position in the list of blocks in
496 * the tree.
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000497 *
Dave Chinner160ae762016-07-22 09:51:05 +1000498 * Note: the magic numbers and sibling pointers are in the same physical
499 * place for both v2 and v3 headers (by design). Hence it doesn't matter
500 * which version of the xfs_da_intnode structure we use here as the
501 * result will be the same using either structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000503 node = oldblk->bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (node->hdr.info.forw) {
Dave Chinner160ae762016-07-22 09:51:05 +1000505 ASSERT(be32_to_cpu(node->hdr.info.forw) == addblk->blkno);
506 node = addblk->bp->b_addr;
Nathan Scott89da0542006-03-17 17:28:40 +1100507 node->hdr.info.back = cpu_to_be32(oldblk->blkno);
Dave Chinner160ae762016-07-22 09:51:05 +1000508 xfs_trans_log_buf(state->args->trans, addblk->bp,
509 XFS_DA_LOGRANGE(node, &node->hdr.info,
510 sizeof(node->hdr.info)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000512 node = oldblk->bp->b_addr;
Nathan Scott89da0542006-03-17 17:28:40 +1100513 if (node->hdr.info.back) {
Dave Chinner160ae762016-07-22 09:51:05 +1000514 ASSERT(be32_to_cpu(node->hdr.info.back) == addblk->blkno);
515 node = addblk->bp->b_addr;
Nathan Scott89da0542006-03-17 17:28:40 +1100516 node->hdr.info.forw = cpu_to_be32(oldblk->blkno);
Dave Chinner160ae762016-07-22 09:51:05 +1000517 xfs_trans_log_buf(state->args->trans, addblk->bp,
518 XFS_DA_LOGRANGE(node, &node->hdr.info,
519 sizeof(node->hdr.info)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 addblk->bp = NULL;
Eric Sandeend99831f2014-06-22 15:03:54 +1000522 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
524
525/*
526 * Split the root. We have to create a new root and point to the two
527 * parts (the split old root) that we just created. Copy block zero to
528 * the EOF, extending the inode in process.
529 */
530STATIC int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000531xfs_da3_root_split(
532 struct xfs_da_state *state,
533 struct xfs_da_state_blk *blk1,
534 struct xfs_da_state_blk *blk2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000536 struct xfs_da_intnode *node;
537 struct xfs_da_intnode *oldroot;
538 struct xfs_da_node_entry *btree;
539 struct xfs_da3_icnode_hdr nodehdr;
540 struct xfs_da_args *args;
541 struct xfs_buf *bp;
542 struct xfs_inode *dp;
543 struct xfs_trans *tp;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000544 struct xfs_dir2_leaf *leaf;
545 xfs_dablk_t blkno;
546 int level;
547 int error;
548 int size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Dave Chinner5a5881c2012-03-22 05:15:13 +0000550 trace_xfs_da_root_split(state->args);
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 /*
553 * Copy the existing (incorrect) block from the root node position
554 * to a free space somewhere.
555 */
556 args = state->args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 error = xfs_da_grow_inode(args, &blkno);
558 if (error)
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000559 return error;
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 dp = args->dp;
562 tp = args->trans;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 error = xfs_da_get_buf(tp, dp, blkno, -1, &bp, args->whichfork);
564 if (error)
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000565 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000566 node = bp->b_addr;
567 oldroot = blk1->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000568 if (oldroot->hdr.info.magic == cpu_to_be16(XFS_DA_NODE_MAGIC) ||
569 oldroot->hdr.info.magic == cpu_to_be16(XFS_DA3_NODE_MAGIC)) {
Fabian Frederick29916df2015-03-25 14:55:25 +1100570 struct xfs_da3_icnode_hdr icnodehdr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000571
Fabian Frederick29916df2015-03-25 14:55:25 +1100572 dp->d_ops->node_hdr_from_disk(&icnodehdr, oldroot);
Dave Chinner4bceb182013-10-29 22:11:51 +1100573 btree = dp->d_ops->node_tree_p(oldroot);
Fabian Frederick29916df2015-03-25 14:55:25 +1100574 size = (int)((char *)&btree[icnodehdr.count] - (char *)oldroot);
575 level = icnodehdr.level;
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100576
577 /*
578 * we are about to copy oldroot to bp, so set up the type
579 * of bp while we know exactly what it will be.
580 */
Dave Chinner61fe1352013-04-03 16:11:30 +1100581 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DA_NODE_BUF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 } else {
Dave Chinner24df33b2013-04-12 07:30:21 +1000583 struct xfs_dir3_icleaf_hdr leafhdr;
584 struct xfs_dir2_leaf_entry *ents;
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 leaf = (xfs_dir2_leaf_t *)oldroot;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100587 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100588 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000589
590 ASSERT(leafhdr.magic == XFS_DIR2_LEAFN_MAGIC ||
591 leafhdr.magic == XFS_DIR3_LEAFN_MAGIC);
592 size = (int)((char *)&ents[leafhdr.count] - (char *)leaf);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000593 level = 0;
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100594
595 /*
596 * we are about to copy oldroot to bp, so set up the type
597 * of bp while we know exactly what it will be.
598 */
Dave Chinner61fe1352013-04-03 16:11:30 +1100599 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_LEAFN_BUF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000601
602 /*
603 * we can copy most of the information in the node from one block to
604 * another, but for CRC enabled headers we have to make sure that the
605 * block specific identifiers are kept intact. We update the buffer
606 * directly for this.
607 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 memcpy(node, oldroot, size);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000609 if (oldroot->hdr.info.magic == cpu_to_be16(XFS_DA3_NODE_MAGIC) ||
610 oldroot->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC)) {
611 struct xfs_da3_intnode *node3 = (struct xfs_da3_intnode *)node;
612
613 node3->hdr.info.blkno = cpu_to_be64(bp->b_bn);
614 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000615 xfs_trans_log_buf(tp, bp, 0, size - 1);
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100616
Dave Chinner1813dd62012-11-14 17:54:40 +1100617 bp->b_ops = blk1->bp->b_ops;
Dave Chinner0a4edc82013-09-02 10:32:01 +1000618 xfs_trans_buf_copy_type(bp, blk1->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 blk1->bp = bp;
620 blk1->blkno = blkno;
621
622 /*
623 * Set up the new root node.
624 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000625 error = xfs_da3_node_create(args,
Dave Chinner7dda6e82014-06-06 15:11:18 +1000626 (args->whichfork == XFS_DATA_FORK) ? args->geo->leafblk : 0,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000627 level + 1, &bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 if (error)
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000629 return error;
630
Dave Chinner1d9025e2012-06-22 18:50:14 +1000631 node = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100632 dp->d_ops->node_hdr_from_disk(&nodehdr, node);
Dave Chinner4bceb182013-10-29 22:11:51 +1100633 btree = dp->d_ops->node_tree_p(node);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000634 btree[0].hashval = cpu_to_be32(blk1->hashval);
635 btree[0].before = cpu_to_be32(blk1->blkno);
636 btree[1].hashval = cpu_to_be32(blk2->hashval);
637 btree[1].before = cpu_to_be32(blk2->blkno);
638 nodehdr.count = 2;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100639 dp->d_ops->node_hdr_to_disk(node, &nodehdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641#ifdef DEBUG
Dave Chinner24df33b2013-04-12 07:30:21 +1000642 if (oldroot->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
643 oldroot->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC)) {
Dave Chinner7dda6e82014-06-06 15:11:18 +1000644 ASSERT(blk1->blkno >= args->geo->leafblk &&
645 blk1->blkno < args->geo->freeblk);
646 ASSERT(blk2->blkno >= args->geo->leafblk &&
647 blk2->blkno < args->geo->freeblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
649#endif
650
651 /* Header is already logged by xfs_da_node_create */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000652 xfs_trans_log_buf(tp, bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000653 XFS_DA_LOGRANGE(node, btree, sizeof(xfs_da_node_entry_t) * 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000655 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
657
658/*
659 * Split the node, rebalance, then add the new entry.
660 */
661STATIC int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000662xfs_da3_node_split(
663 struct xfs_da_state *state,
664 struct xfs_da_state_blk *oldblk,
665 struct xfs_da_state_blk *newblk,
666 struct xfs_da_state_blk *addblk,
667 int treelevel,
668 int *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000670 struct xfs_da_intnode *node;
671 struct xfs_da3_icnode_hdr nodehdr;
672 xfs_dablk_t blkno;
673 int newcount;
674 int error;
675 int useextra;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100676 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Dave Chinner5a5881c2012-03-22 05:15:13 +0000678 trace_xfs_da_node_split(state->args);
679
Dave Chinner1d9025e2012-06-22 18:50:14 +1000680 node = oldblk->bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100681 dp->d_ops->node_hdr_from_disk(&nodehdr, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 /*
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000684 * With V2 dirs the extra block is data or freespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000686 useextra = state->extravalid && state->args->whichfork == XFS_ATTR_FORK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 newcount = 1 + useextra;
688 /*
689 * Do we have to split the node?
690 */
Dave Chinnerb2a21e72014-06-06 15:22:04 +1000691 if (nodehdr.count + newcount > state->args->geo->node_ents) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 /*
693 * Allocate a new node, add to the doubly linked chain of
694 * nodes, then move some of our excess entries into it.
695 */
696 error = xfs_da_grow_inode(state->args, &blkno);
697 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000698 return error; /* GROT: dir is inconsistent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000700 error = xfs_da3_node_create(state->args, blkno, treelevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 &newblk->bp, state->args->whichfork);
702 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000703 return error; /* GROT: dir is inconsistent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 newblk->blkno = blkno;
705 newblk->magic = XFS_DA_NODE_MAGIC;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000706 xfs_da3_node_rebalance(state, oldblk, newblk);
707 error = xfs_da3_blk_link(state, oldblk, newblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000709 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 *result = 1;
711 } else {
712 *result = 0;
713 }
714
715 /*
716 * Insert the new entry(s) into the correct block
717 * (updating last hashval in the process).
718 *
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000719 * xfs_da3_node_add() inserts BEFORE the given index,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 * and as a result of using node_lookup_int() we always
721 * point to a valid entry (not after one), but a split
722 * operation always results in a new block whose hashvals
723 * FOLLOW the current block.
724 *
725 * If we had double-split op below us, then add the extra block too.
726 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000727 node = oldblk->bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100728 dp->d_ops->node_hdr_from_disk(&nodehdr, node);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000729 if (oldblk->index <= nodehdr.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 oldblk->index++;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000731 xfs_da3_node_add(state, oldblk, addblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 if (useextra) {
733 if (state->extraafter)
734 oldblk->index++;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000735 xfs_da3_node_add(state, oldblk, &state->extrablk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 state->extravalid = 0;
737 }
738 } else {
739 newblk->index++;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000740 xfs_da3_node_add(state, newblk, addblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 if (useextra) {
742 if (state->extraafter)
743 newblk->index++;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000744 xfs_da3_node_add(state, newblk, &state->extrablk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 state->extravalid = 0;
746 }
747 }
748
Eric Sandeend99831f2014-06-22 15:03:54 +1000749 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750}
751
752/*
753 * Balance the btree elements between two intermediate nodes,
754 * usually one full and one empty.
755 *
756 * NOTE: if blk2 is empty, then it will get the upper half of blk1.
757 */
758STATIC void
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000759xfs_da3_node_rebalance(
760 struct xfs_da_state *state,
761 struct xfs_da_state_blk *blk1,
762 struct xfs_da_state_blk *blk2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000764 struct xfs_da_intnode *node1;
765 struct xfs_da_intnode *node2;
766 struct xfs_da_intnode *tmpnode;
767 struct xfs_da_node_entry *btree1;
768 struct xfs_da_node_entry *btree2;
769 struct xfs_da_node_entry *btree_s;
770 struct xfs_da_node_entry *btree_d;
771 struct xfs_da3_icnode_hdr nodehdr1;
772 struct xfs_da3_icnode_hdr nodehdr2;
773 struct xfs_trans *tp;
774 int count;
775 int tmp;
776 int swap = 0;
Dave Chinner4bceb182013-10-29 22:11:51 +1100777 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Dave Chinner5a5881c2012-03-22 05:15:13 +0000779 trace_xfs_da_node_rebalance(state->args);
780
Dave Chinner1d9025e2012-06-22 18:50:14 +1000781 node1 = blk1->bp->b_addr;
782 node2 = blk2->bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100783 dp->d_ops->node_hdr_from_disk(&nodehdr1, node1);
784 dp->d_ops->node_hdr_from_disk(&nodehdr2, node2);
Dave Chinner4bceb182013-10-29 22:11:51 +1100785 btree1 = dp->d_ops->node_tree_p(node1);
786 btree2 = dp->d_ops->node_tree_p(node2);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 /*
789 * Figure out how many entries need to move, and in which direction.
790 * Swap the nodes around if that makes it simpler.
791 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000792 if (nodehdr1.count > 0 && nodehdr2.count > 0 &&
793 ((be32_to_cpu(btree2[0].hashval) < be32_to_cpu(btree1[0].hashval)) ||
794 (be32_to_cpu(btree2[nodehdr2.count - 1].hashval) <
795 be32_to_cpu(btree1[nodehdr1.count - 1].hashval)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 tmpnode = node1;
797 node1 = node2;
798 node2 = tmpnode;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100799 dp->d_ops->node_hdr_from_disk(&nodehdr1, node1);
800 dp->d_ops->node_hdr_from_disk(&nodehdr2, node2);
Dave Chinner4bceb182013-10-29 22:11:51 +1100801 btree1 = dp->d_ops->node_tree_p(node1);
802 btree2 = dp->d_ops->node_tree_p(node2);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000803 swap = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000805
806 count = (nodehdr1.count - nodehdr2.count) / 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 if (count == 0)
808 return;
809 tp = state->args->trans;
810 /*
811 * Two cases: high-to-low and low-to-high.
812 */
813 if (count > 0) {
814 /*
815 * Move elements in node2 up to make a hole.
816 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000817 tmp = nodehdr2.count;
818 if (tmp > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 tmp *= (uint)sizeof(xfs_da_node_entry_t);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000820 btree_s = &btree2[0];
821 btree_d = &btree2[count];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 memmove(btree_d, btree_s, tmp);
823 }
824
825 /*
826 * Move the req'd B-tree elements from high in node1 to
827 * low in node2.
828 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000829 nodehdr2.count += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 tmp = count * (uint)sizeof(xfs_da_node_entry_t);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000831 btree_s = &btree1[nodehdr1.count - count];
832 btree_d = &btree2[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 memcpy(btree_d, btree_s, tmp);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000834 nodehdr1.count -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 } else {
836 /*
837 * Move the req'd B-tree elements from low in node2 to
838 * high in node1.
839 */
840 count = -count;
841 tmp = count * (uint)sizeof(xfs_da_node_entry_t);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000842 btree_s = &btree2[0];
843 btree_d = &btree1[nodehdr1.count];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 memcpy(btree_d, btree_s, tmp);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000845 nodehdr1.count += count;
846
Dave Chinner1d9025e2012-06-22 18:50:14 +1000847 xfs_trans_log_buf(tp, blk1->bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 XFS_DA_LOGRANGE(node1, btree_d, tmp));
849
850 /*
851 * Move elements in node2 down to fill the hole.
852 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000853 tmp = nodehdr2.count - count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 tmp *= (uint)sizeof(xfs_da_node_entry_t);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000855 btree_s = &btree2[count];
856 btree_d = &btree2[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 memmove(btree_d, btree_s, tmp);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000858 nodehdr2.count -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
860
861 /*
862 * Log header of node 1 and all current bits of node 2.
863 */
Dave Chinner01ba43b2013-10-29 22:11:52 +1100864 dp->d_ops->node_hdr_to_disk(node1, &nodehdr1);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000865 xfs_trans_log_buf(tp, blk1->bp,
Dave Chinner1c9a5b22013-10-30 09:15:02 +1100866 XFS_DA_LOGRANGE(node1, &node1->hdr, dp->d_ops->node_hdr_size));
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000867
Dave Chinner01ba43b2013-10-29 22:11:52 +1100868 dp->d_ops->node_hdr_to_disk(node2, &nodehdr2);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000869 xfs_trans_log_buf(tp, blk2->bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 XFS_DA_LOGRANGE(node2, &node2->hdr,
Dave Chinner1c9a5b22013-10-30 09:15:02 +1100871 dp->d_ops->node_hdr_size +
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000872 (sizeof(btree2[0]) * nodehdr2.count)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 /*
875 * Record the last hashval from each block for upward propagation.
876 * (note: don't use the swapped node pointers)
877 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000878 if (swap) {
879 node1 = blk1->bp->b_addr;
880 node2 = blk2->bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100881 dp->d_ops->node_hdr_from_disk(&nodehdr1, node1);
882 dp->d_ops->node_hdr_from_disk(&nodehdr2, node2);
Dave Chinner4bceb182013-10-29 22:11:51 +1100883 btree1 = dp->d_ops->node_tree_p(node1);
884 btree2 = dp->d_ops->node_tree_p(node2);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000885 }
886 blk1->hashval = be32_to_cpu(btree1[nodehdr1.count - 1].hashval);
887 blk2->hashval = be32_to_cpu(btree2[nodehdr2.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 /*
890 * Adjust the expected index for insertion.
891 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000892 if (blk1->index >= nodehdr1.count) {
893 blk2->index = blk1->index - nodehdr1.count;
894 blk1->index = nodehdr1.count + 1; /* make it invalid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 }
896}
897
898/*
899 * Add a new entry to an intermediate node.
900 */
901STATIC void
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000902xfs_da3_node_add(
903 struct xfs_da_state *state,
904 struct xfs_da_state_blk *oldblk,
905 struct xfs_da_state_blk *newblk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000907 struct xfs_da_intnode *node;
908 struct xfs_da3_icnode_hdr nodehdr;
909 struct xfs_da_node_entry *btree;
910 int tmp;
Dave Chinner4bceb182013-10-29 22:11:51 +1100911 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Dave Chinner5a5881c2012-03-22 05:15:13 +0000913 trace_xfs_da_node_add(state->args);
914
Dave Chinner1d9025e2012-06-22 18:50:14 +1000915 node = oldblk->bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100916 dp->d_ops->node_hdr_from_disk(&nodehdr, node);
Dave Chinner4bceb182013-10-29 22:11:51 +1100917 btree = dp->d_ops->node_tree_p(node);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000918
919 ASSERT(oldblk->index >= 0 && oldblk->index <= nodehdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 ASSERT(newblk->blkno != 0);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000921 if (state->args->whichfork == XFS_DATA_FORK)
Dave Chinner7dda6e82014-06-06 15:11:18 +1000922 ASSERT(newblk->blkno >= state->args->geo->leafblk &&
923 newblk->blkno < state->args->geo->freeblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
925 /*
926 * We may need to make some room before we insert the new node.
927 */
928 tmp = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000929 if (oldblk->index < nodehdr.count) {
930 tmp = (nodehdr.count - oldblk->index) * (uint)sizeof(*btree);
931 memmove(&btree[oldblk->index + 1], &btree[oldblk->index], tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000933 btree[oldblk->index].hashval = cpu_to_be32(newblk->hashval);
934 btree[oldblk->index].before = cpu_to_be32(newblk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000935 xfs_trans_log_buf(state->args->trans, oldblk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000936 XFS_DA_LOGRANGE(node, &btree[oldblk->index],
937 tmp + sizeof(*btree)));
938
939 nodehdr.count += 1;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100940 dp->d_ops->node_hdr_to_disk(node, &nodehdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000941 xfs_trans_log_buf(state->args->trans, oldblk->bp,
Dave Chinner1c9a5b22013-10-30 09:15:02 +1100942 XFS_DA_LOGRANGE(node, &node->hdr, dp->d_ops->node_hdr_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944 /*
945 * Copy the last hash value from the oldblk to propagate upwards.
946 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000947 oldblk->hashval = be32_to_cpu(btree[nodehdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948}
949
950/*========================================================================
951 * Routines used for shrinking the Btree.
952 *========================================================================*/
953
954/*
955 * Deallocate an empty leaf node, remove it from its parent,
956 * possibly deallocating that block, etc...
957 */
958int
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000959xfs_da3_join(
960 struct xfs_da_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000962 struct xfs_da_state_blk *drop_blk;
963 struct xfs_da_state_blk *save_blk;
964 int action = 0;
965 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Dave Chinner5a5881c2012-03-22 05:15:13 +0000967 trace_xfs_da_join(state->args);
968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 drop_blk = &state->path.blk[ state->path.active-1 ];
970 save_blk = &state->altpath.blk[ state->path.active-1 ];
971 ASSERT(state->path.blk[0].magic == XFS_DA_NODE_MAGIC);
972 ASSERT(drop_blk->magic == XFS_ATTR_LEAF_MAGIC ||
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000973 drop_blk->magic == XFS_DIR2_LEAFN_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975 /*
976 * Walk back up the tree joining/deallocating as necessary.
977 * When we stop dropping blocks, break out.
978 */
979 for ( ; state->path.active >= 2; drop_blk--, save_blk--,
980 state->path.active--) {
981 /*
982 * See if we can combine the block with a neighbor.
983 * (action == 0) => no options, just leave
984 * (action == 1) => coalesce, then unlink
985 * (action == 2) => block empty, unlink it
986 */
987 switch (drop_blk->magic) {
988 case XFS_ATTR_LEAF_MAGIC:
Dave Chinner517c2222013-04-24 18:58:55 +1000989 error = xfs_attr3_leaf_toosmall(state, &action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000991 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 if (action == 0)
Eric Sandeend99831f2014-06-22 15:03:54 +1000993 return 0;
Dave Chinner517c2222013-04-24 18:58:55 +1000994 xfs_attr3_leaf_unbalance(state, drop_blk, save_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 case XFS_DIR2_LEAFN_MAGIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 error = xfs_dir2_leafn_toosmall(state, &action);
998 if (error)
999 return error;
1000 if (action == 0)
1001 return 0;
1002 xfs_dir2_leafn_unbalance(state, drop_blk, save_blk);
1003 break;
1004 case XFS_DA_NODE_MAGIC:
1005 /*
1006 * Remove the offending node, fixup hashvals,
1007 * check for a toosmall neighbor.
1008 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001009 xfs_da3_node_remove(state, drop_blk);
1010 xfs_da3_fixhashpath(state, &state->path);
1011 error = xfs_da3_node_toosmall(state, &action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001013 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 if (action == 0)
1015 return 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001016 xfs_da3_node_unbalance(state, drop_blk, save_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 break;
1018 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001019 xfs_da3_fixhashpath(state, &state->altpath);
1020 error = xfs_da3_blk_unlink(state, drop_blk, save_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 xfs_da_state_kill_altpath(state);
1022 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001023 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 error = xfs_da_shrink_inode(state->args, drop_blk->blkno,
1025 drop_blk->bp);
1026 drop_blk->bp = NULL;
1027 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001028 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 }
1030 /*
1031 * We joined all the way to the top. If it turns out that
1032 * we only have one entry in the root, make the child block
1033 * the new root.
1034 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001035 xfs_da3_node_remove(state, drop_blk);
1036 xfs_da3_fixhashpath(state, &state->path);
1037 error = xfs_da3_root_join(state, &state->path.blk[0]);
Eric Sandeend99831f2014-06-22 15:03:54 +10001038 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039}
1040
Alex Elder1c4f3322011-07-18 18:14:09 +00001041#ifdef DEBUG
1042static void
1043xfs_da_blkinfo_onlychild_validate(struct xfs_da_blkinfo *blkinfo, __u16 level)
1044{
1045 __be16 magic = blkinfo->magic;
1046
1047 if (level == 1) {
1048 ASSERT(magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
Dave Chinner24df33b2013-04-12 07:30:21 +10001049 magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC) ||
Dave Chinner517c2222013-04-24 18:58:55 +10001050 magic == cpu_to_be16(XFS_ATTR_LEAF_MAGIC) ||
1051 magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC));
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001052 } else {
1053 ASSERT(magic == cpu_to_be16(XFS_DA_NODE_MAGIC) ||
1054 magic == cpu_to_be16(XFS_DA3_NODE_MAGIC));
1055 }
Alex Elder1c4f3322011-07-18 18:14:09 +00001056 ASSERT(!blkinfo->forw);
1057 ASSERT(!blkinfo->back);
1058}
1059#else /* !DEBUG */
1060#define xfs_da_blkinfo_onlychild_validate(blkinfo, level)
1061#endif /* !DEBUG */
1062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063/*
1064 * We have only one entry in the root. Copy the only remaining child of
1065 * the old root to block 0 as the new root node.
1066 */
1067STATIC int
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001068xfs_da3_root_join(
1069 struct xfs_da_state *state,
1070 struct xfs_da_state_blk *root_blk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001072 struct xfs_da_intnode *oldroot;
1073 struct xfs_da_args *args;
1074 xfs_dablk_t child;
1075 struct xfs_buf *bp;
1076 struct xfs_da3_icnode_hdr oldroothdr;
1077 struct xfs_da_node_entry *btree;
1078 int error;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001079 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Dave Chinner5a5881c2012-03-22 05:15:13 +00001081 trace_xfs_da_root_join(state->args);
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 ASSERT(root_blk->magic == XFS_DA_NODE_MAGIC);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001084
1085 args = state->args;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001086 oldroot = root_blk->bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001087 dp->d_ops->node_hdr_from_disk(&oldroothdr, oldroot);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001088 ASSERT(oldroothdr.forw == 0);
1089 ASSERT(oldroothdr.back == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
1091 /*
1092 * If the root has more than one child, then don't do anything.
1093 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001094 if (oldroothdr.count > 1)
1095 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097 /*
1098 * Read in the (only) child block, then copy those bytes into
1099 * the root block's buffer and free the original child block.
1100 */
Dave Chinner01ba43b2013-10-29 22:11:52 +11001101 btree = dp->d_ops->node_tree_p(oldroot);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001102 child = be32_to_cpu(btree[0].before);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 ASSERT(child != 0);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001104 error = xfs_da3_node_read(args->trans, dp, child, -1, &bp,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001105 args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 if (error)
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001107 return error;
1108 xfs_da_blkinfo_onlychild_validate(bp->b_addr, oldroothdr.level);
Alex Elder1c4f3322011-07-18 18:14:09 +00001109
Dave Chinner612cfbf2012-11-14 17:52:32 +11001110 /*
1111 * This could be copying a leaf back into the root block in the case of
1112 * there only being a single leaf block left in the tree. Hence we have
Dave Chinner1813dd62012-11-14 17:54:40 +11001113 * to update the b_ops pointer as well to match the buffer type change
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001114 * that could occur. For dir3 blocks we also need to update the block
1115 * number in the buffer header.
Dave Chinner612cfbf2012-11-14 17:52:32 +11001116 */
Dave Chinnerb2a21e72014-06-06 15:22:04 +10001117 memcpy(root_blk->bp->b_addr, bp->b_addr, args->geo->blksize);
Dave Chinner1813dd62012-11-14 17:54:40 +11001118 root_blk->bp->b_ops = bp->b_ops;
Dave Chinnerd75afeb2013-04-03 16:11:29 +11001119 xfs_trans_buf_copy_type(root_blk->bp, bp);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001120 if (oldroothdr.magic == XFS_DA3_NODE_MAGIC) {
1121 struct xfs_da3_blkinfo *da3 = root_blk->bp->b_addr;
1122 da3->blkno = cpu_to_be64(root_blk->bp->b_bn);
1123 }
Dave Chinnerb2a21e72014-06-06 15:22:04 +10001124 xfs_trans_log_buf(args->trans, root_blk->bp, 0,
1125 args->geo->blksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 error = xfs_da_shrink_inode(args, child, bp);
Eric Sandeend99831f2014-06-22 15:03:54 +10001127 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128}
1129
1130/*
1131 * Check a node block and its neighbors to see if the block should be
1132 * collapsed into one or the other neighbor. Always keep the block
1133 * with the smaller block number.
1134 * If the current block is over 50% full, don't try to join it, return 0.
1135 * If the block is empty, fill in the state structure and return 2.
1136 * If it can be collapsed, fill in the state structure and return 1.
1137 * If nothing can be done, return 0.
1138 */
1139STATIC int
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001140xfs_da3_node_toosmall(
1141 struct xfs_da_state *state,
1142 int *action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001144 struct xfs_da_intnode *node;
1145 struct xfs_da_state_blk *blk;
1146 struct xfs_da_blkinfo *info;
1147 xfs_dablk_t blkno;
1148 struct xfs_buf *bp;
1149 struct xfs_da3_icnode_hdr nodehdr;
1150 int count;
1151 int forward;
1152 int error;
1153 int retval;
1154 int i;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001155 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Dave Chinneree732592012-11-12 22:53:53 +11001157 trace_xfs_da_node_toosmall(state->args);
1158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 /*
1160 * Check for the degenerate case of the block being over 50% full.
1161 * If so, it's not worth even looking to see if we might be able
1162 * to coalesce with a sibling.
1163 */
1164 blk = &state->path.blk[ state->path.active-1 ];
Dave Chinner1d9025e2012-06-22 18:50:14 +10001165 info = blk->bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 node = (xfs_da_intnode_t *)info;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001167 dp->d_ops->node_hdr_from_disk(&nodehdr, node);
Dave Chinnerb2a21e72014-06-06 15:22:04 +10001168 if (nodehdr.count > (state->args->geo->node_ents >> 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 *action = 0; /* blk over 50%, don't try to join */
Eric Sandeend99831f2014-06-22 15:03:54 +10001170 return 0; /* blk over 50%, don't try to join */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 }
1172
1173 /*
1174 * Check for the degenerate case of the block being empty.
1175 * If the block is empty, we'll simply delete it, no need to
Nathan Scottc41564b2006-03-29 08:55:14 +10001176 * coalesce it with a sibling block. We choose (arbitrarily)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 * to merge with the forward block unless it is NULL.
1178 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001179 if (nodehdr.count == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 /*
1181 * Make altpath point to the block we want to keep and
1182 * path point to the block we want to drop (this one).
1183 */
Nathan Scott89da0542006-03-17 17:28:40 +11001184 forward = (info->forw != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 memcpy(&state->altpath, &state->path, sizeof(state->path));
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001186 error = xfs_da3_path_shift(state, &state->altpath, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 0, &retval);
1188 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001189 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 if (retval) {
1191 *action = 0;
1192 } else {
1193 *action = 2;
1194 }
Eric Sandeend99831f2014-06-22 15:03:54 +10001195 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 }
1197
1198 /*
1199 * Examine each sibling block to see if we can coalesce with
1200 * at least 25% free space to spare. We need to figure out
1201 * whether to merge with the forward or the backward block.
1202 * We prefer coalescing with the lower numbered sibling so as
1203 * to shrink a directory over time.
1204 */
Dave Chinnerb2a21e72014-06-06 15:22:04 +10001205 count = state->args->geo->node_ents;
1206 count -= state->args->geo->node_ents >> 2;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001207 count -= nodehdr.count;
1208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 /* start with smaller blk num */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001210 forward = nodehdr.forw < nodehdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 for (i = 0; i < 2; forward = !forward, i++) {
Mark Tinguely997def22013-09-23 12:18:58 -05001212 struct xfs_da3_icnode_hdr thdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 if (forward)
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001214 blkno = nodehdr.forw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 else
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001216 blkno = nodehdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 if (blkno == 0)
1218 continue;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001219 error = xfs_da3_node_read(state->args->trans, dp,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001220 blkno, -1, &bp, state->args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001222 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Dave Chinner1d9025e2012-06-22 18:50:14 +10001224 node = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001225 dp->d_ops->node_hdr_from_disk(&thdr, node);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001226 xfs_trans_brelse(state->args->trans, bp);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001227
Mark Tinguely997def22013-09-23 12:18:58 -05001228 if (count - thdr.count >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 break; /* fits with at least 25% to spare */
1230 }
1231 if (i >= 2) {
1232 *action = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001233 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 }
1235
1236 /*
1237 * Make altpath point to the block we want to keep (the lower
1238 * numbered block) and path point to the block we want to drop.
1239 */
1240 memcpy(&state->altpath, &state->path, sizeof(state->path));
1241 if (blkno < blk->blkno) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001242 error = xfs_da3_path_shift(state, &state->altpath, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 0, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 } else {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001245 error = xfs_da3_path_shift(state, &state->path, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 0, &retval);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001247 }
1248 if (error)
1249 return error;
1250 if (retval) {
1251 *action = 0;
1252 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 }
1254 *action = 1;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001255 return 0;
1256}
1257
1258/*
1259 * Pick up the last hashvalue from an intermediate node.
1260 */
1261STATIC uint
1262xfs_da3_node_lasthash(
Dave Chinner4bceb182013-10-29 22:11:51 +11001263 struct xfs_inode *dp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001264 struct xfs_buf *bp,
1265 int *count)
1266{
1267 struct xfs_da_intnode *node;
1268 struct xfs_da_node_entry *btree;
1269 struct xfs_da3_icnode_hdr nodehdr;
1270
1271 node = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001272 dp->d_ops->node_hdr_from_disk(&nodehdr, node);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001273 if (count)
1274 *count = nodehdr.count;
1275 if (!nodehdr.count)
1276 return 0;
Dave Chinner4bceb182013-10-29 22:11:51 +11001277 btree = dp->d_ops->node_tree_p(node);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001278 return be32_to_cpu(btree[nodehdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279}
1280
1281/*
1282 * Walk back up the tree adjusting hash values as necessary,
1283 * when we stop making changes, return.
1284 */
1285void
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001286xfs_da3_fixhashpath(
1287 struct xfs_da_state *state,
1288 struct xfs_da_state_path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001290 struct xfs_da_state_blk *blk;
1291 struct xfs_da_intnode *node;
1292 struct xfs_da_node_entry *btree;
1293 xfs_dahash_t lasthash=0;
1294 int level;
1295 int count;
Dave Chinner4bceb182013-10-29 22:11:51 +11001296 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Dave Chinneree732592012-11-12 22:53:53 +11001298 trace_xfs_da_fixhashpath(state->args);
1299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 level = path->active-1;
1301 blk = &path->blk[ level ];
1302 switch (blk->magic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 case XFS_ATTR_LEAF_MAGIC:
1304 lasthash = xfs_attr_leaf_lasthash(blk->bp, &count);
1305 if (count == 0)
1306 return;
1307 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 case XFS_DIR2_LEAFN_MAGIC:
Darrick J. Wong8e8877e2017-06-16 11:00:13 -07001309 lasthash = xfs_dir2_leaf_lasthash(dp, blk->bp, &count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 if (count == 0)
1311 return;
1312 break;
1313 case XFS_DA_NODE_MAGIC:
Dave Chinner4bceb182013-10-29 22:11:51 +11001314 lasthash = xfs_da3_node_lasthash(dp, blk->bp, &count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 if (count == 0)
1316 return;
1317 break;
1318 }
1319 for (blk--, level--; level >= 0; blk--, level--) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001320 struct xfs_da3_icnode_hdr nodehdr;
1321
Dave Chinner1d9025e2012-06-22 18:50:14 +10001322 node = blk->bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001323 dp->d_ops->node_hdr_from_disk(&nodehdr, node);
Dave Chinner4bceb182013-10-29 22:11:51 +11001324 btree = dp->d_ops->node_tree_p(node);
Mark Tinguelyc88547a2014-04-04 07:10:49 +11001325 if (be32_to_cpu(btree[blk->index].hashval) == lasthash)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 break;
1327 blk->hashval = lasthash;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001328 btree[blk->index].hashval = cpu_to_be32(lasthash);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001329 xfs_trans_log_buf(state->args->trans, blk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001330 XFS_DA_LOGRANGE(node, &btree[blk->index],
1331 sizeof(*btree)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001333 lasthash = be32_to_cpu(btree[nodehdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 }
1335}
1336
1337/*
1338 * Remove an entry from an intermediate node.
1339 */
1340STATIC void
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001341xfs_da3_node_remove(
1342 struct xfs_da_state *state,
1343 struct xfs_da_state_blk *drop_blk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001345 struct xfs_da_intnode *node;
1346 struct xfs_da3_icnode_hdr nodehdr;
1347 struct xfs_da_node_entry *btree;
1348 int index;
1349 int tmp;
Dave Chinner4bceb182013-10-29 22:11:51 +11001350 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Dave Chinner5a5881c2012-03-22 05:15:13 +00001352 trace_xfs_da_node_remove(state->args);
1353
Dave Chinner1d9025e2012-06-22 18:50:14 +10001354 node = drop_blk->bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001355 dp->d_ops->node_hdr_from_disk(&nodehdr, node);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001356 ASSERT(drop_blk->index < nodehdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 ASSERT(drop_blk->index >= 0);
1358
1359 /*
1360 * Copy over the offending entry, or just zero it out.
1361 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001362 index = drop_blk->index;
Dave Chinner4bceb182013-10-29 22:11:51 +11001363 btree = dp->d_ops->node_tree_p(node);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001364 if (index < nodehdr.count - 1) {
1365 tmp = nodehdr.count - index - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 tmp *= (uint)sizeof(xfs_da_node_entry_t);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001367 memmove(&btree[index], &btree[index + 1], tmp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001368 xfs_trans_log_buf(state->args->trans, drop_blk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001369 XFS_DA_LOGRANGE(node, &btree[index], tmp));
1370 index = nodehdr.count - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001372 memset(&btree[index], 0, sizeof(xfs_da_node_entry_t));
Dave Chinner1d9025e2012-06-22 18:50:14 +10001373 xfs_trans_log_buf(state->args->trans, drop_blk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001374 XFS_DA_LOGRANGE(node, &btree[index], sizeof(btree[index])));
1375 nodehdr.count -= 1;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001376 dp->d_ops->node_hdr_to_disk(node, &nodehdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001377 xfs_trans_log_buf(state->args->trans, drop_blk->bp,
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001378 XFS_DA_LOGRANGE(node, &node->hdr, dp->d_ops->node_hdr_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 /*
1381 * Copy the last hash value from the block to propagate upwards.
1382 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001383 drop_blk->hashval = be32_to_cpu(btree[index - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384}
1385
1386/*
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001387 * Unbalance the elements between two intermediate nodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 * move all Btree elements from one node into another.
1389 */
1390STATIC void
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001391xfs_da3_node_unbalance(
1392 struct xfs_da_state *state,
1393 struct xfs_da_state_blk *drop_blk,
1394 struct xfs_da_state_blk *save_blk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001396 struct xfs_da_intnode *drop_node;
1397 struct xfs_da_intnode *save_node;
1398 struct xfs_da_node_entry *drop_btree;
1399 struct xfs_da_node_entry *save_btree;
1400 struct xfs_da3_icnode_hdr drop_hdr;
1401 struct xfs_da3_icnode_hdr save_hdr;
1402 struct xfs_trans *tp;
1403 int sindex;
1404 int tmp;
Dave Chinner4bceb182013-10-29 22:11:51 +11001405 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Dave Chinner5a5881c2012-03-22 05:15:13 +00001407 trace_xfs_da_node_unbalance(state->args);
1408
Dave Chinner1d9025e2012-06-22 18:50:14 +10001409 drop_node = drop_blk->bp->b_addr;
1410 save_node = save_blk->bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001411 dp->d_ops->node_hdr_from_disk(&drop_hdr, drop_node);
1412 dp->d_ops->node_hdr_from_disk(&save_hdr, save_node);
Dave Chinner4bceb182013-10-29 22:11:51 +11001413 drop_btree = dp->d_ops->node_tree_p(drop_node);
1414 save_btree = dp->d_ops->node_tree_p(save_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 tp = state->args->trans;
1416
1417 /*
1418 * If the dying block has lower hashvals, then move all the
1419 * elements in the remaining block up to make a hole.
1420 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001421 if ((be32_to_cpu(drop_btree[0].hashval) <
1422 be32_to_cpu(save_btree[0].hashval)) ||
1423 (be32_to_cpu(drop_btree[drop_hdr.count - 1].hashval) <
1424 be32_to_cpu(save_btree[save_hdr.count - 1].hashval))) {
1425 /* XXX: check this - is memmove dst correct? */
1426 tmp = save_hdr.count * sizeof(xfs_da_node_entry_t);
1427 memmove(&save_btree[drop_hdr.count], &save_btree[0], tmp);
1428
1429 sindex = 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001430 xfs_trans_log_buf(tp, save_blk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001431 XFS_DA_LOGRANGE(save_node, &save_btree[0],
1432 (save_hdr.count + drop_hdr.count) *
1433 sizeof(xfs_da_node_entry_t)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 } else {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001435 sindex = save_hdr.count;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001436 xfs_trans_log_buf(tp, save_blk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001437 XFS_DA_LOGRANGE(save_node, &save_btree[sindex],
1438 drop_hdr.count * sizeof(xfs_da_node_entry_t)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 }
1440
1441 /*
1442 * Move all the B-tree elements from drop_blk to save_blk.
1443 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001444 tmp = drop_hdr.count * (uint)sizeof(xfs_da_node_entry_t);
1445 memcpy(&save_btree[sindex], &drop_btree[0], tmp);
1446 save_hdr.count += drop_hdr.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Dave Chinner01ba43b2013-10-29 22:11:52 +11001448 dp->d_ops->node_hdr_to_disk(save_node, &save_hdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001449 xfs_trans_log_buf(tp, save_blk->bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 XFS_DA_LOGRANGE(save_node, &save_node->hdr,
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001451 dp->d_ops->node_hdr_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
1453 /*
1454 * Save the last hashval in the remaining block for upward propagation.
1455 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001456 save_blk->hashval = be32_to_cpu(save_btree[save_hdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457}
1458
1459/*========================================================================
1460 * Routines used for finding things in the Btree.
1461 *========================================================================*/
1462
1463/*
1464 * Walk down the Btree looking for a particular filename, filling
1465 * in the state structure as we go.
1466 *
1467 * We will set the state structure to point to each of the elements
1468 * in each of the nodes where either the hashval is or should be.
1469 *
1470 * We support duplicate hashval's so for each entry in the current
1471 * node that could contain the desired hashval, descend. This is a
1472 * pruned depth-first tree search.
1473 */
1474int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001475xfs_da3_node_lookup_int(
1476 struct xfs_da_state *state,
1477 int *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001479 struct xfs_da_state_blk *blk;
1480 struct xfs_da_blkinfo *curr;
1481 struct xfs_da_intnode *node;
1482 struct xfs_da_node_entry *btree;
1483 struct xfs_da3_icnode_hdr nodehdr;
1484 struct xfs_da_args *args;
1485 xfs_dablk_t blkno;
1486 xfs_dahash_t hashval;
1487 xfs_dahash_t btreehashval;
1488 int probe;
1489 int span;
1490 int max;
1491 int error;
1492 int retval;
Darrick J. Wong8210f4d2017-10-25 16:59:43 -07001493 unsigned int expected_level = 0;
Dave Chinner4bceb182013-10-29 22:11:51 +11001494 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
1496 args = state->args;
1497
1498 /*
1499 * Descend thru the B-tree searching each level for the right
1500 * node to use, until the right hashval is found.
1501 */
Darrick J. Wong8210f4d2017-10-25 16:59:43 -07001502 blkno = args->geo->leafblk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 for (blk = &state->path.blk[0], state->path.active = 1;
1504 state->path.active <= XFS_DA_NODE_MAXDEPTH;
1505 blk++, state->path.active++) {
1506 /*
1507 * Read the next node down in the tree.
1508 */
1509 blk->blkno = blkno;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001510 error = xfs_da3_node_read(args->trans, args->dp, blkno,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001511 -1, &blk->bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 if (error) {
1513 blk->blkno = 0;
1514 state->path.active--;
Eric Sandeend99831f2014-06-22 15:03:54 +10001515 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001517 curr = blk->bp->b_addr;
Nathan Scottd432c802006-09-28 11:03:44 +10001518 blk->magic = be16_to_cpu(curr->magic);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001519
Dave Chinner517c2222013-04-24 18:58:55 +10001520 if (blk->magic == XFS_ATTR_LEAF_MAGIC ||
1521 blk->magic == XFS_ATTR3_LEAF_MAGIC) {
1522 blk->magic = XFS_ATTR_LEAF_MAGIC;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001523 blk->hashval = xfs_attr_leaf_lasthash(blk->bp, NULL);
1524 break;
1525 }
1526
1527 if (blk->magic == XFS_DIR2_LEAFN_MAGIC ||
1528 blk->magic == XFS_DIR3_LEAFN_MAGIC) {
1529 blk->magic = XFS_DIR2_LEAFN_MAGIC;
Darrick J. Wong8e8877e2017-06-16 11:00:13 -07001530 blk->hashval = xfs_dir2_leaf_lasthash(args->dp,
1531 blk->bp, NULL);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001532 break;
1533 }
1534
1535 blk->magic = XFS_DA_NODE_MAGIC;
1536
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
1538 /*
1539 * Search an intermediate node for a match.
1540 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001541 node = blk->bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001542 dp->d_ops->node_hdr_from_disk(&nodehdr, node);
Dave Chinner4bceb182013-10-29 22:11:51 +11001543 btree = dp->d_ops->node_tree_p(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Darrick J. Wong8210f4d2017-10-25 16:59:43 -07001545 /* Tree taller than we can handle; bail out! */
1546 if (nodehdr.level >= XFS_DA_NODE_MAXDEPTH)
1547 return -EFSCORRUPTED;
1548
1549 /* Check the level from the root. */
1550 if (blkno == args->geo->leafblk)
1551 expected_level = nodehdr.level - 1;
1552 else if (expected_level != nodehdr.level)
1553 return -EFSCORRUPTED;
1554 else
1555 expected_level--;
1556
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001557 max = nodehdr.count;
1558 blk->hashval = be32_to_cpu(btree[max - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001560 /*
1561 * Binary search. (note: small blocks will skip loop)
1562 */
1563 probe = span = max / 2;
1564 hashval = args->hashval;
1565 while (span > 4) {
1566 span /= 2;
1567 btreehashval = be32_to_cpu(btree[probe].hashval);
1568 if (btreehashval < hashval)
1569 probe += span;
1570 else if (btreehashval > hashval)
1571 probe -= span;
1572 else
1573 break;
1574 }
1575 ASSERT((probe >= 0) && (probe < max));
1576 ASSERT((span <= 4) ||
1577 (be32_to_cpu(btree[probe].hashval) == hashval));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001579 /*
1580 * Since we may have duplicate hashval's, find the first
1581 * matching hashval in the node.
1582 */
1583 while (probe > 0 &&
1584 be32_to_cpu(btree[probe].hashval) >= hashval) {
1585 probe--;
1586 }
1587 while (probe < max &&
1588 be32_to_cpu(btree[probe].hashval) < hashval) {
1589 probe++;
1590 }
1591
1592 /*
1593 * Pick the right block to descend on.
1594 */
1595 if (probe == max) {
1596 blk->index = max - 1;
1597 blkno = be32_to_cpu(btree[max - 1].before);
1598 } else {
1599 blk->index = probe;
1600 blkno = be32_to_cpu(btree[probe].before);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 }
Darrick J. Wong8210f4d2017-10-25 16:59:43 -07001602
1603 /* We can't point back to the root. */
1604 if (blkno == args->geo->leafblk)
1605 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 }
1607
Darrick J. Wong8210f4d2017-10-25 16:59:43 -07001608 if (expected_level != 0)
1609 return -EFSCORRUPTED;
1610
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 /*
1612 * A leaf block that ends in the hashval that we are interested in
1613 * (final hashval == search hashval) means that the next block may
1614 * contain more entries with the same hashval, shift upward to the
1615 * next leaf and keep searching.
1616 */
1617 for (;;) {
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001618 if (blk->magic == XFS_DIR2_LEAFN_MAGIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 retval = xfs_dir2_leafn_lookup_int(blk->bp, args,
1620 &blk->index, state);
Nathan Scottd432c802006-09-28 11:03:44 +10001621 } else if (blk->magic == XFS_ATTR_LEAF_MAGIC) {
Dave Chinner517c2222013-04-24 18:58:55 +10001622 retval = xfs_attr3_leaf_lookup_int(blk->bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 blk->index = args->index;
1624 args->blkno = blk->blkno;
Nathan Scottd432c802006-09-28 11:03:44 +10001625 } else {
1626 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +10001627 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 }
Dave Chinner24513372014-06-25 14:58:08 +10001629 if (((retval == -ENOENT) || (retval == -ENOATTR)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 (blk->hashval == args->hashval)) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001631 error = xfs_da3_path_shift(state, &state->path, 1, 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 &retval);
1633 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001634 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 if (retval == 0) {
1636 continue;
Nathan Scottd432c802006-09-28 11:03:44 +10001637 } else if (blk->magic == XFS_ATTR_LEAF_MAGIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 /* path_shift() gives ENOENT */
Dave Chinner24513372014-06-25 14:58:08 +10001639 retval = -ENOATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 }
1642 break;
1643 }
1644 *result = retval;
Eric Sandeend99831f2014-06-22 15:03:54 +10001645 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646}
1647
1648/*========================================================================
1649 * Utility routines.
1650 *========================================================================*/
1651
1652/*
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001653 * Compare two intermediate nodes for "order".
1654 */
1655STATIC int
1656xfs_da3_node_order(
Dave Chinner4bceb182013-10-29 22:11:51 +11001657 struct xfs_inode *dp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001658 struct xfs_buf *node1_bp,
1659 struct xfs_buf *node2_bp)
1660{
1661 struct xfs_da_intnode *node1;
1662 struct xfs_da_intnode *node2;
1663 struct xfs_da_node_entry *btree1;
1664 struct xfs_da_node_entry *btree2;
1665 struct xfs_da3_icnode_hdr node1hdr;
1666 struct xfs_da3_icnode_hdr node2hdr;
1667
1668 node1 = node1_bp->b_addr;
1669 node2 = node2_bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001670 dp->d_ops->node_hdr_from_disk(&node1hdr, node1);
1671 dp->d_ops->node_hdr_from_disk(&node2hdr, node2);
Dave Chinner4bceb182013-10-29 22:11:51 +11001672 btree1 = dp->d_ops->node_tree_p(node1);
1673 btree2 = dp->d_ops->node_tree_p(node2);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001674
1675 if (node1hdr.count > 0 && node2hdr.count > 0 &&
1676 ((be32_to_cpu(btree2[0].hashval) < be32_to_cpu(btree1[0].hashval)) ||
1677 (be32_to_cpu(btree2[node2hdr.count - 1].hashval) <
1678 be32_to_cpu(btree1[node1hdr.count - 1].hashval)))) {
1679 return 1;
1680 }
1681 return 0;
1682}
1683
1684/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 * Link a new block into a doubly linked list of blocks (of whatever type).
1686 */
1687int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001688xfs_da3_blk_link(
1689 struct xfs_da_state *state,
1690 struct xfs_da_state_blk *old_blk,
1691 struct xfs_da_state_blk *new_blk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001693 struct xfs_da_blkinfo *old_info;
1694 struct xfs_da_blkinfo *new_info;
1695 struct xfs_da_blkinfo *tmp_info;
1696 struct xfs_da_args *args;
1697 struct xfs_buf *bp;
1698 int before = 0;
1699 int error;
Dave Chinner4bceb182013-10-29 22:11:51 +11001700 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
1702 /*
1703 * Set up environment.
1704 */
1705 args = state->args;
1706 ASSERT(args != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001707 old_info = old_blk->bp->b_addr;
1708 new_info = new_blk->bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 ASSERT(old_blk->magic == XFS_DA_NODE_MAGIC ||
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001710 old_blk->magic == XFS_DIR2_LEAFN_MAGIC ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 old_blk->magic == XFS_ATTR_LEAF_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
1713 switch (old_blk->magic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 case XFS_ATTR_LEAF_MAGIC:
1715 before = xfs_attr_leaf_order(old_blk->bp, new_blk->bp);
1716 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 case XFS_DIR2_LEAFN_MAGIC:
Dave Chinner4bceb182013-10-29 22:11:51 +11001718 before = xfs_dir2_leafn_order(dp, old_blk->bp, new_blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 break;
1720 case XFS_DA_NODE_MAGIC:
Dave Chinner4bceb182013-10-29 22:11:51 +11001721 before = xfs_da3_node_order(dp, old_blk->bp, new_blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 break;
1723 }
1724
1725 /*
1726 * Link blocks in appropriate order.
1727 */
1728 if (before) {
1729 /*
1730 * Link new block in before existing block.
1731 */
Dave Chinner5a5881c2012-03-22 05:15:13 +00001732 trace_xfs_da_link_before(args);
Nathan Scott89da0542006-03-17 17:28:40 +11001733 new_info->forw = cpu_to_be32(old_blk->blkno);
1734 new_info->back = old_info->back;
1735 if (old_info->back) {
Dave Chinner4bceb182013-10-29 22:11:51 +11001736 error = xfs_da3_node_read(args->trans, dp,
Nathan Scott89da0542006-03-17 17:28:40 +11001737 be32_to_cpu(old_info->back),
Dave Chinnerd9392a42012-11-12 22:54:17 +11001738 -1, &bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001740 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 ASSERT(bp != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001742 tmp_info = bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001743 ASSERT(tmp_info->magic == old_info->magic);
Nathan Scott89da0542006-03-17 17:28:40 +11001744 ASSERT(be32_to_cpu(tmp_info->forw) == old_blk->blkno);
1745 tmp_info->forw = cpu_to_be32(new_blk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001746 xfs_trans_log_buf(args->trans, bp, 0, sizeof(*tmp_info)-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 }
Nathan Scott89da0542006-03-17 17:28:40 +11001748 old_info->back = cpu_to_be32(new_blk->blkno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 } else {
1750 /*
1751 * Link new block in after existing block.
1752 */
Dave Chinner5a5881c2012-03-22 05:15:13 +00001753 trace_xfs_da_link_after(args);
Nathan Scott89da0542006-03-17 17:28:40 +11001754 new_info->forw = old_info->forw;
1755 new_info->back = cpu_to_be32(old_blk->blkno);
1756 if (old_info->forw) {
Dave Chinner4bceb182013-10-29 22:11:51 +11001757 error = xfs_da3_node_read(args->trans, dp,
Nathan Scott89da0542006-03-17 17:28:40 +11001758 be32_to_cpu(old_info->forw),
Dave Chinnerd9392a42012-11-12 22:54:17 +11001759 -1, &bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001761 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 ASSERT(bp != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001763 tmp_info = bp->b_addr;
Nathan Scott89da0542006-03-17 17:28:40 +11001764 ASSERT(tmp_info->magic == old_info->magic);
1765 ASSERT(be32_to_cpu(tmp_info->back) == old_blk->blkno);
1766 tmp_info->back = cpu_to_be32(new_blk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001767 xfs_trans_log_buf(args->trans, bp, 0, sizeof(*tmp_info)-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 }
Nathan Scott89da0542006-03-17 17:28:40 +11001769 old_info->forw = cpu_to_be32(new_blk->blkno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 }
1771
Dave Chinner1d9025e2012-06-22 18:50:14 +10001772 xfs_trans_log_buf(args->trans, old_blk->bp, 0, sizeof(*tmp_info) - 1);
1773 xfs_trans_log_buf(args->trans, new_blk->bp, 0, sizeof(*tmp_info) - 1);
Eric Sandeend99831f2014-06-22 15:03:54 +10001774 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775}
1776
1777/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 * Unlink a block from a doubly linked list of blocks.
1779 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001780STATIC int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001781xfs_da3_blk_unlink(
1782 struct xfs_da_state *state,
1783 struct xfs_da_state_blk *drop_blk,
1784 struct xfs_da_state_blk *save_blk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001786 struct xfs_da_blkinfo *drop_info;
1787 struct xfs_da_blkinfo *save_info;
1788 struct xfs_da_blkinfo *tmp_info;
1789 struct xfs_da_args *args;
1790 struct xfs_buf *bp;
1791 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
1793 /*
1794 * Set up environment.
1795 */
1796 args = state->args;
1797 ASSERT(args != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001798 save_info = save_blk->bp->b_addr;
1799 drop_info = drop_blk->bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 ASSERT(save_blk->magic == XFS_DA_NODE_MAGIC ||
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001801 save_blk->magic == XFS_DIR2_LEAFN_MAGIC ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 save_blk->magic == XFS_ATTR_LEAF_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 ASSERT(save_blk->magic == drop_blk->magic);
Nathan Scott89da0542006-03-17 17:28:40 +11001804 ASSERT((be32_to_cpu(save_info->forw) == drop_blk->blkno) ||
1805 (be32_to_cpu(save_info->back) == drop_blk->blkno));
1806 ASSERT((be32_to_cpu(drop_info->forw) == save_blk->blkno) ||
1807 (be32_to_cpu(drop_info->back) == save_blk->blkno));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
1809 /*
1810 * Unlink the leaf block from the doubly linked chain of leaves.
1811 */
Nathan Scott89da0542006-03-17 17:28:40 +11001812 if (be32_to_cpu(save_info->back) == drop_blk->blkno) {
Dave Chinner5a5881c2012-03-22 05:15:13 +00001813 trace_xfs_da_unlink_back(args);
Nathan Scott89da0542006-03-17 17:28:40 +11001814 save_info->back = drop_info->back;
1815 if (drop_info->back) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001816 error = xfs_da3_node_read(args->trans, args->dp,
Nathan Scott89da0542006-03-17 17:28:40 +11001817 be32_to_cpu(drop_info->back),
Dave Chinnerd9392a42012-11-12 22:54:17 +11001818 -1, &bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001820 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 ASSERT(bp != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001822 tmp_info = bp->b_addr;
Nathan Scott89da0542006-03-17 17:28:40 +11001823 ASSERT(tmp_info->magic == save_info->magic);
1824 ASSERT(be32_to_cpu(tmp_info->forw) == drop_blk->blkno);
1825 tmp_info->forw = cpu_to_be32(save_blk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001826 xfs_trans_log_buf(args->trans, bp, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 sizeof(*tmp_info) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 }
1829 } else {
Dave Chinner5a5881c2012-03-22 05:15:13 +00001830 trace_xfs_da_unlink_forward(args);
Nathan Scott89da0542006-03-17 17:28:40 +11001831 save_info->forw = drop_info->forw;
1832 if (drop_info->forw) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001833 error = xfs_da3_node_read(args->trans, args->dp,
Nathan Scott89da0542006-03-17 17:28:40 +11001834 be32_to_cpu(drop_info->forw),
Dave Chinnerd9392a42012-11-12 22:54:17 +11001835 -1, &bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001837 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 ASSERT(bp != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001839 tmp_info = bp->b_addr;
Nathan Scott89da0542006-03-17 17:28:40 +11001840 ASSERT(tmp_info->magic == save_info->magic);
1841 ASSERT(be32_to_cpu(tmp_info->back) == drop_blk->blkno);
1842 tmp_info->back = cpu_to_be32(save_blk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001843 xfs_trans_log_buf(args->trans, bp, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 sizeof(*tmp_info) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 }
1846 }
1847
Dave Chinner1d9025e2012-06-22 18:50:14 +10001848 xfs_trans_log_buf(args->trans, save_blk->bp, 0, sizeof(*save_info) - 1);
Eric Sandeend99831f2014-06-22 15:03:54 +10001849 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850}
1851
1852/*
1853 * Move a path "forward" or "!forward" one block at the current level.
1854 *
1855 * This routine will adjust a "path" to point to the next block
1856 * "forward" (higher hashvalues) or "!forward" (lower hashvals) in the
1857 * Btree, including updating pointers to the intermediate nodes between
1858 * the new bottom and the root.
1859 */
1860int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001861xfs_da3_path_shift(
1862 struct xfs_da_state *state,
1863 struct xfs_da_state_path *path,
1864 int forward,
1865 int release,
1866 int *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001868 struct xfs_da_state_blk *blk;
1869 struct xfs_da_blkinfo *info;
1870 struct xfs_da_intnode *node;
1871 struct xfs_da_args *args;
1872 struct xfs_da_node_entry *btree;
1873 struct xfs_da3_icnode_hdr nodehdr;
Brian Foster7df1c172015-08-19 10:32:33 +10001874 struct xfs_buf *bp;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001875 xfs_dablk_t blkno = 0;
1876 int level;
1877 int error;
Dave Chinner4bceb182013-10-29 22:11:51 +11001878 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Dave Chinneree732592012-11-12 22:53:53 +11001880 trace_xfs_da_path_shift(state->args);
1881
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 /*
1883 * Roll up the Btree looking for the first block where our
1884 * current index is not at the edge of the block. Note that
1885 * we skip the bottom layer because we want the sibling block.
1886 */
1887 args = state->args;
1888 ASSERT(args != NULL);
1889 ASSERT(path != NULL);
1890 ASSERT((path->active > 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1891 level = (path->active-1) - 1; /* skip bottom layer in path */
1892 for (blk = &path->blk[level]; level >= 0; blk--, level--) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001893 node = blk->bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001894 dp->d_ops->node_hdr_from_disk(&nodehdr, node);
Dave Chinner4bceb182013-10-29 22:11:51 +11001895 btree = dp->d_ops->node_tree_p(node);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001896
1897 if (forward && (blk->index < nodehdr.count - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 blk->index++;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001899 blkno = be32_to_cpu(btree[blk->index].before);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 break;
1901 } else if (!forward && (blk->index > 0)) {
1902 blk->index--;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001903 blkno = be32_to_cpu(btree[blk->index].before);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 break;
1905 }
1906 }
1907 if (level < 0) {
Dave Chinner24513372014-06-25 14:58:08 +10001908 *result = -ENOENT; /* we're out of our tree */
Barry Naujok6a178102008-05-21 16:42:05 +10001909 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Eric Sandeend99831f2014-06-22 15:03:54 +10001910 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 }
1912
1913 /*
1914 * Roll down the edge of the subtree until we reach the
1915 * same depth we were at originally.
1916 */
1917 for (blk++, level++; level < path->active; blk++, level++) {
1918 /*
Brian Foster7df1c172015-08-19 10:32:33 +10001919 * Read the next child block into a local buffer.
1920 */
1921 error = xfs_da3_node_read(args->trans, dp, blkno, -1, &bp,
1922 args->whichfork);
1923 if (error)
1924 return error;
1925
1926 /*
1927 * Release the old block (if it's dirty, the trans doesn't
1928 * actually let go) and swap the local buffer into the path
1929 * structure. This ensures failure of the above read doesn't set
1930 * a NULL buffer in an active slot in the path.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 */
1932 if (release)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001933 xfs_trans_brelse(args->trans, blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 blk->blkno = blkno;
Brian Foster7df1c172015-08-19 10:32:33 +10001935 blk->bp = bp;
1936
Dave Chinner1d9025e2012-06-22 18:50:14 +10001937 info = blk->bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001938 ASSERT(info->magic == cpu_to_be16(XFS_DA_NODE_MAGIC) ||
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001939 info->magic == cpu_to_be16(XFS_DA3_NODE_MAGIC) ||
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001940 info->magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
Dave Chinner24df33b2013-04-12 07:30:21 +10001941 info->magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC) ||
Dave Chinner517c2222013-04-24 18:58:55 +10001942 info->magic == cpu_to_be16(XFS_ATTR_LEAF_MAGIC) ||
1943 info->magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC));
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001944
1945
1946 /*
1947 * Note: we flatten the magic number to a single type so we
1948 * don't have to compare against crc/non-crc types elsewhere.
1949 */
1950 switch (be16_to_cpu(info->magic)) {
1951 case XFS_DA_NODE_MAGIC:
1952 case XFS_DA3_NODE_MAGIC:
1953 blk->magic = XFS_DA_NODE_MAGIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 node = (xfs_da_intnode_t *)info;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001955 dp->d_ops->node_hdr_from_disk(&nodehdr, node);
Dave Chinner4bceb182013-10-29 22:11:51 +11001956 btree = dp->d_ops->node_tree_p(node);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001957 blk->hashval = be32_to_cpu(btree[nodehdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 if (forward)
1959 blk->index = 0;
1960 else
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001961 blk->index = nodehdr.count - 1;
1962 blkno = be32_to_cpu(btree[blk->index].before);
1963 break;
1964 case XFS_ATTR_LEAF_MAGIC:
Dave Chinner517c2222013-04-24 18:58:55 +10001965 case XFS_ATTR3_LEAF_MAGIC:
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001966 blk->magic = XFS_ATTR_LEAF_MAGIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 ASSERT(level == path->active-1);
1968 blk->index = 0;
Dave Chinner41419562013-10-29 22:11:50 +11001969 blk->hashval = xfs_attr_leaf_lasthash(blk->bp, NULL);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001970 break;
1971 case XFS_DIR2_LEAFN_MAGIC:
1972 case XFS_DIR3_LEAFN_MAGIC:
1973 blk->magic = XFS_DIR2_LEAFN_MAGIC;
1974 ASSERT(level == path->active-1);
1975 blk->index = 0;
Darrick J. Wong8e8877e2017-06-16 11:00:13 -07001976 blk->hashval = xfs_dir2_leaf_lasthash(args->dp,
1977 blk->bp, NULL);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001978 break;
1979 default:
1980 ASSERT(0);
1981 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 }
1983 }
1984 *result = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001985 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986}
1987
1988
1989/*========================================================================
1990 * Utility routines.
1991 *========================================================================*/
1992
1993/*
1994 * Implement a simple hash on a character string.
1995 * Rotate the hash value by 7 bits, then XOR each character in.
1996 * This is implemented with some source-level loop unrolling.
1997 */
1998xfs_dahash_t
Darrick J. Wongc8ce5402017-06-16 11:00:05 -07001999xfs_da_hashname(const uint8_t *name, int namelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000{
2001 xfs_dahash_t hash;
2002
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 /*
2004 * Do four characters at a time as long as we can.
2005 */
2006 for (hash = 0; namelen >= 4; namelen -= 4, name += 4)
2007 hash = (name[0] << 21) ^ (name[1] << 14) ^ (name[2] << 7) ^
2008 (name[3] << 0) ^ rol32(hash, 7 * 4);
2009
2010 /*
2011 * Now do the rest of the characters.
2012 */
2013 switch (namelen) {
2014 case 3:
2015 return (name[0] << 14) ^ (name[1] << 7) ^ (name[2] << 0) ^
2016 rol32(hash, 7 * 3);
2017 case 2:
2018 return (name[0] << 7) ^ (name[1] << 0) ^ rol32(hash, 7 * 2);
2019 case 1:
2020 return (name[0] << 0) ^ rol32(hash, 7 * 1);
Nathan Scott2b3b6d02005-11-02 15:12:28 +11002021 default: /* case 0: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 return hash;
2023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024}
2025
Barry Naujok5163f952008-05-21 16:41:01 +10002026enum xfs_dacmp
2027xfs_da_compname(
2028 struct xfs_da_args *args,
Dave Chinner2bc75422010-01-20 10:47:17 +11002029 const unsigned char *name,
2030 int len)
Barry Naujok5163f952008-05-21 16:41:01 +10002031{
2032 return (args->namelen == len && memcmp(args->name, name, len) == 0) ?
2033 XFS_CMP_EXACT : XFS_CMP_DIFFERENT;
2034}
2035
2036static xfs_dahash_t
2037xfs_default_hashname(
2038 struct xfs_name *name)
2039{
2040 return xfs_da_hashname(name->name, name->len);
2041}
2042
2043const struct xfs_nameops xfs_default_nameops = {
2044 .hashname = xfs_default_hashname,
2045 .compname = xfs_da_compname
2046};
2047
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048int
Christoph Hellwig77936d02011-07-13 13:43:49 +02002049xfs_da_grow_inode_int(
2050 struct xfs_da_args *args,
2051 xfs_fileoff_t *bno,
2052 int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053{
Christoph Hellwig77936d02011-07-13 13:43:49 +02002054 struct xfs_trans *tp = args->trans;
2055 struct xfs_inode *dp = args->dp;
2056 int w = args->whichfork;
Christoph Hellwigd5cf09b2014-07-30 09:12:05 +10002057 xfs_rfsblock_t nblks = dp->i_d.di_nblocks;
Christoph Hellwig77936d02011-07-13 13:43:49 +02002058 struct xfs_bmbt_irec map, *mapp;
2059 int nmap, error, got, i, mapi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 /*
2062 * Find a spot in the file space to put the new block.
2063 */
Christoph Hellwig77936d02011-07-13 13:43:49 +02002064 error = xfs_bmap_first_unused(tp, dp, count, bno, w);
2065 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 return error;
Christoph Hellwig77936d02011-07-13 13:43:49 +02002067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 /*
2069 * Try mapping it in one filesystem block.
2070 */
2071 nmap = 1;
2072 ASSERT(args->firstblock != NULL);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00002073 error = xfs_bmapi_write(tp, dp, *bno, count,
2074 xfs_bmapi_aflag(w)|XFS_BMAPI_METADATA|XFS_BMAPI_CONTIG,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 args->firstblock, args->total, &map, &nmap,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002076 args->dfops);
Christoph Hellwig77936d02011-07-13 13:43:49 +02002077 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 return error;
Christoph Hellwig77936d02011-07-13 13:43:49 +02002079
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 ASSERT(nmap <= 1);
2081 if (nmap == 1) {
2082 mapp = &map;
2083 mapi = 1;
Christoph Hellwig77936d02011-07-13 13:43:49 +02002084 } else if (nmap == 0 && count > 1) {
2085 xfs_fileoff_t b;
2086 int c;
2087
2088 /*
2089 * If we didn't get it and the block might work if fragmented,
2090 * try without the CONTIG flag. Loop until we get it all.
2091 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 mapp = kmem_alloc(sizeof(*mapp) * count, KM_SLEEP);
Christoph Hellwig77936d02011-07-13 13:43:49 +02002093 for (b = *bno, mapi = 0; b < *bno + count; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 nmap = MIN(XFS_BMAP_MAX_NMAP, count);
Christoph Hellwig77936d02011-07-13 13:43:49 +02002095 c = (int)(*bno + count - b);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00002096 error = xfs_bmapi_write(tp, dp, b, c,
2097 xfs_bmapi_aflag(w)|XFS_BMAPI_METADATA,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 args->firstblock, args->total,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002099 &mapp[mapi], &nmap, args->dfops);
Christoph Hellwig77936d02011-07-13 13:43:49 +02002100 if (error)
2101 goto out_free_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 if (nmap < 1)
2103 break;
2104 mapi += nmap;
2105 b = mapp[mapi - 1].br_startoff +
2106 mapp[mapi - 1].br_blockcount;
2107 }
2108 } else {
2109 mapi = 0;
2110 mapp = NULL;
2111 }
Christoph Hellwig77936d02011-07-13 13:43:49 +02002112
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 /*
2114 * Count the blocks we got, make sure it matches the total.
2115 */
2116 for (i = 0, got = 0; i < mapi; i++)
2117 got += mapp[i].br_blockcount;
Christoph Hellwig77936d02011-07-13 13:43:49 +02002118 if (got != count || mapp[0].br_startoff != *bno ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 mapp[mapi - 1].br_startoff + mapp[mapi - 1].br_blockcount !=
Christoph Hellwig77936d02011-07-13 13:43:49 +02002120 *bno + count) {
Dave Chinner24513372014-06-25 14:58:08 +10002121 error = -ENOSPC;
Christoph Hellwig77936d02011-07-13 13:43:49 +02002122 goto out_free_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 }
Christoph Hellwig77936d02011-07-13 13:43:49 +02002124
David Chinnera7444052008-10-30 17:38:12 +11002125 /* account for newly allocated blocks in reserved blocks total */
2126 args->total -= dp->i_d.di_nblocks - nblks;
Christoph Hellwig77936d02011-07-13 13:43:49 +02002127
2128out_free_map:
2129 if (mapp != &map)
2130 kmem_free(mapp);
2131 return error;
2132}
2133
2134/*
2135 * Add a block to the btree ahead of the file.
2136 * Return the new block number to the caller.
2137 */
2138int
2139xfs_da_grow_inode(
2140 struct xfs_da_args *args,
2141 xfs_dablk_t *new_blkno)
2142{
2143 xfs_fileoff_t bno;
Christoph Hellwig77936d02011-07-13 13:43:49 +02002144 int error;
2145
Dave Chinner5a5881c2012-03-22 05:15:13 +00002146 trace_xfs_da_grow_inode(args);
2147
Dave Chinnerd6cf1302014-06-06 15:14:11 +10002148 bno = args->geo->leafblk;
2149 error = xfs_da_grow_inode_int(args, &bno, args->geo->fsbcount);
Christoph Hellwig77936d02011-07-13 13:43:49 +02002150 if (!error)
2151 *new_blkno = (xfs_dablk_t)bno;
2152 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153}
2154
2155/*
2156 * Ick. We need to always be able to remove a btree block, even
2157 * if there's no space reservation because the filesystem is full.
2158 * This is called if xfs_bunmapi on a btree block fails due to ENOSPC.
2159 * It swaps the target block with the last block in the file. The
2160 * last block in the file can always be removed since it can't cause
2161 * a bmap btree split to do that.
2162 */
2163STATIC int
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002164xfs_da3_swap_lastblock(
2165 struct xfs_da_args *args,
2166 xfs_dablk_t *dead_blknop,
2167 struct xfs_buf **dead_bufp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002169 struct xfs_da_blkinfo *dead_info;
2170 struct xfs_da_blkinfo *sib_info;
2171 struct xfs_da_intnode *par_node;
2172 struct xfs_da_intnode *dead_node;
2173 struct xfs_dir2_leaf *dead_leaf2;
2174 struct xfs_da_node_entry *btree;
2175 struct xfs_da3_icnode_hdr par_hdr;
Dave Chinner4bceb182013-10-29 22:11:51 +11002176 struct xfs_inode *dp;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002177 struct xfs_trans *tp;
2178 struct xfs_mount *mp;
2179 struct xfs_buf *dead_buf;
2180 struct xfs_buf *last_buf;
2181 struct xfs_buf *sib_buf;
2182 struct xfs_buf *par_buf;
2183 xfs_dahash_t dead_hash;
2184 xfs_fileoff_t lastoff;
2185 xfs_dablk_t dead_blkno;
2186 xfs_dablk_t last_blkno;
2187 xfs_dablk_t sib_blkno;
2188 xfs_dablk_t par_blkno;
2189 int error;
2190 int w;
2191 int entno;
2192 int level;
2193 int dead_level;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
Dave Chinner5a5881c2012-03-22 05:15:13 +00002195 trace_xfs_da_swap_lastblock(args);
2196
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 dead_buf = *dead_bufp;
2198 dead_blkno = *dead_blknop;
2199 tp = args->trans;
Dave Chinner4bceb182013-10-29 22:11:51 +11002200 dp = args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 w = args->whichfork;
2202 ASSERT(w == XFS_DATA_FORK);
Dave Chinner4bceb182013-10-29 22:11:51 +11002203 mp = dp->i_mount;
Dave Chinner7dda6e82014-06-06 15:11:18 +10002204 lastoff = args->geo->freeblk;
Dave Chinner4bceb182013-10-29 22:11:51 +11002205 error = xfs_bmap_last_before(tp, dp, &lastoff, w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 if (error)
2207 return error;
2208 if (unlikely(lastoff == 0)) {
2209 XFS_ERROR_REPORT("xfs_da_swap_lastblock(1)", XFS_ERRLEVEL_LOW,
2210 mp);
Dave Chinner24513372014-06-25 14:58:08 +10002211 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 }
2213 /*
2214 * Read the last block in the btree space.
2215 */
Dave Chinnerd6cf1302014-06-06 15:14:11 +10002216 last_blkno = (xfs_dablk_t)lastoff - args->geo->fsbcount;
Dave Chinner4bceb182013-10-29 22:11:51 +11002217 error = xfs_da3_node_read(tp, dp, last_blkno, -1, &last_buf, w);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002218 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 return error;
2220 /*
2221 * Copy the last block into the dead buffer and log it.
2222 */
Dave Chinner8f661932014-06-06 15:15:59 +10002223 memcpy(dead_buf->b_addr, last_buf->b_addr, args->geo->blksize);
2224 xfs_trans_log_buf(tp, dead_buf, 0, args->geo->blksize - 1);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002225 dead_info = dead_buf->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 /*
2227 * Get values from the moved block.
2228 */
Dave Chinner24df33b2013-04-12 07:30:21 +10002229 if (dead_info->magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
2230 dead_info->magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC)) {
2231 struct xfs_dir3_icleaf_hdr leafhdr;
2232 struct xfs_dir2_leaf_entry *ents;
2233
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 dead_leaf2 = (xfs_dir2_leaf_t *)dead_info;
Dave Chinner01ba43b2013-10-29 22:11:52 +11002235 dp->d_ops->leaf_hdr_from_disk(&leafhdr, dead_leaf2);
Dave Chinner4bceb182013-10-29 22:11:51 +11002236 ents = dp->d_ops->leaf_ents_p(dead_leaf2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 dead_level = 0;
Dave Chinner24df33b2013-04-12 07:30:21 +10002238 dead_hash = be32_to_cpu(ents[leafhdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 } else {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002240 struct xfs_da3_icnode_hdr deadhdr;
2241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 dead_node = (xfs_da_intnode_t *)dead_info;
Dave Chinner01ba43b2013-10-29 22:11:52 +11002243 dp->d_ops->node_hdr_from_disk(&deadhdr, dead_node);
Dave Chinner4bceb182013-10-29 22:11:51 +11002244 btree = dp->d_ops->node_tree_p(dead_node);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002245 dead_level = deadhdr.level;
2246 dead_hash = be32_to_cpu(btree[deadhdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 }
2248 sib_buf = par_buf = NULL;
2249 /*
2250 * If the moved block has a left sibling, fix up the pointers.
2251 */
Nathan Scott89da0542006-03-17 17:28:40 +11002252 if ((sib_blkno = be32_to_cpu(dead_info->back))) {
Dave Chinner4bceb182013-10-29 22:11:51 +11002253 error = xfs_da3_node_read(tp, dp, sib_blkno, -1, &sib_buf, w);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002254 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 goto done;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002256 sib_info = sib_buf->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 if (unlikely(
Nathan Scott89da0542006-03-17 17:28:40 +11002258 be32_to_cpu(sib_info->forw) != last_blkno ||
2259 sib_info->magic != dead_info->magic)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 XFS_ERROR_REPORT("xfs_da_swap_lastblock(2)",
2261 XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +10002262 error = -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 goto done;
2264 }
Nathan Scott89da0542006-03-17 17:28:40 +11002265 sib_info->forw = cpu_to_be32(dead_blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002266 xfs_trans_log_buf(tp, sib_buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 XFS_DA_LOGRANGE(sib_info, &sib_info->forw,
2268 sizeof(sib_info->forw)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 sib_buf = NULL;
2270 }
2271 /*
2272 * If the moved block has a right sibling, fix up the pointers.
2273 */
Nathan Scott89da0542006-03-17 17:28:40 +11002274 if ((sib_blkno = be32_to_cpu(dead_info->forw))) {
Dave Chinner4bceb182013-10-29 22:11:51 +11002275 error = xfs_da3_node_read(tp, dp, sib_blkno, -1, &sib_buf, w);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002276 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 goto done;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002278 sib_info = sib_buf->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 if (unlikely(
Nathan Scott89da0542006-03-17 17:28:40 +11002280 be32_to_cpu(sib_info->back) != last_blkno ||
2281 sib_info->magic != dead_info->magic)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 XFS_ERROR_REPORT("xfs_da_swap_lastblock(3)",
2283 XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +10002284 error = -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 goto done;
2286 }
Nathan Scott89da0542006-03-17 17:28:40 +11002287 sib_info->back = cpu_to_be32(dead_blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002288 xfs_trans_log_buf(tp, sib_buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 XFS_DA_LOGRANGE(sib_info, &sib_info->back,
2290 sizeof(sib_info->back)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 sib_buf = NULL;
2292 }
Dave Chinner7dda6e82014-06-06 15:11:18 +10002293 par_blkno = args->geo->leafblk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 level = -1;
2295 /*
2296 * Walk down the tree looking for the parent of the moved block.
2297 */
2298 for (;;) {
Dave Chinner4bceb182013-10-29 22:11:51 +11002299 error = xfs_da3_node_read(tp, dp, par_blkno, -1, &par_buf, w);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002300 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 goto done;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002302 par_node = par_buf->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11002303 dp->d_ops->node_hdr_from_disk(&par_hdr, par_node);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002304 if (level >= 0 && level != par_hdr.level + 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 XFS_ERROR_REPORT("xfs_da_swap_lastblock(4)",
2306 XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +10002307 error = -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 goto done;
2309 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002310 level = par_hdr.level;
Dave Chinner4bceb182013-10-29 22:11:51 +11002311 btree = dp->d_ops->node_tree_p(par_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 for (entno = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002313 entno < par_hdr.count &&
2314 be32_to_cpu(btree[entno].hashval) < dead_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 entno++)
2316 continue;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002317 if (entno == par_hdr.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 XFS_ERROR_REPORT("xfs_da_swap_lastblock(5)",
2319 XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +10002320 error = -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 goto done;
2322 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002323 par_blkno = be32_to_cpu(btree[entno].before);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 if (level == dead_level + 1)
2325 break;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002326 xfs_trans_brelse(tp, par_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 par_buf = NULL;
2328 }
2329 /*
2330 * We're in the right parent block.
2331 * Look for the right entry.
2332 */
2333 for (;;) {
2334 for (;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002335 entno < par_hdr.count &&
2336 be32_to_cpu(btree[entno].before) != last_blkno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 entno++)
2338 continue;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002339 if (entno < par_hdr.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 break;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002341 par_blkno = par_hdr.forw;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002342 xfs_trans_brelse(tp, par_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 par_buf = NULL;
2344 if (unlikely(par_blkno == 0)) {
2345 XFS_ERROR_REPORT("xfs_da_swap_lastblock(6)",
2346 XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +10002347 error = -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 goto done;
2349 }
Dave Chinner4bceb182013-10-29 22:11:51 +11002350 error = xfs_da3_node_read(tp, dp, par_blkno, -1, &par_buf, w);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002351 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 goto done;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002353 par_node = par_buf->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11002354 dp->d_ops->node_hdr_from_disk(&par_hdr, par_node);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002355 if (par_hdr.level != level) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 XFS_ERROR_REPORT("xfs_da_swap_lastblock(7)",
2357 XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +10002358 error = -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 goto done;
2360 }
Dave Chinner4bceb182013-10-29 22:11:51 +11002361 btree = dp->d_ops->node_tree_p(par_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 entno = 0;
2363 }
2364 /*
2365 * Update the parent entry pointing to the moved block.
2366 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002367 btree[entno].before = cpu_to_be32(dead_blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002368 xfs_trans_log_buf(tp, par_buf,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002369 XFS_DA_LOGRANGE(par_node, &btree[entno].before,
2370 sizeof(btree[entno].before)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 *dead_blknop = last_blkno;
2372 *dead_bufp = last_buf;
2373 return 0;
2374done:
2375 if (par_buf)
Dave Chinner1d9025e2012-06-22 18:50:14 +10002376 xfs_trans_brelse(tp, par_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 if (sib_buf)
Dave Chinner1d9025e2012-06-22 18:50:14 +10002378 xfs_trans_brelse(tp, sib_buf);
2379 xfs_trans_brelse(tp, last_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 return error;
2381}
2382
2383/*
2384 * Remove a btree block from a directory or attribute.
2385 */
2386int
Dave Chinner1d9025e2012-06-22 18:50:14 +10002387xfs_da_shrink_inode(
2388 xfs_da_args_t *args,
2389 xfs_dablk_t dead_blkno,
2390 struct xfs_buf *dead_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391{
2392 xfs_inode_t *dp;
2393 int done, error, w, count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
Dave Chinner5a5881c2012-03-22 05:15:13 +00002396 trace_xfs_da_shrink_inode(args);
2397
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 dp = args->dp;
2399 w = args->whichfork;
2400 tp = args->trans;
Dave Chinnerd6cf1302014-06-06 15:14:11 +10002401 count = args->geo->fsbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 for (;;) {
2403 /*
2404 * Remove extents. If we get ENOSPC for a dir we have to move
2405 * the last block to the place we want to kill.
2406 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002407 error = xfs_bunmapi(tp, dp, dead_blkno, count,
Dave Chinnerab7bb612015-07-29 11:51:01 +10002408 xfs_bmapi_aflag(w), 0, args->firstblock,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002409 args->dfops, &done);
Dave Chinner24513372014-06-25 14:58:08 +10002410 if (error == -ENOSPC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 if (w != XFS_DATA_FORK)
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002412 break;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002413 error = xfs_da3_swap_lastblock(args, &dead_blkno,
2414 &dead_buf);
2415 if (error)
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002416 break;
2417 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 }
2420 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10002421 xfs_trans_binval(tp, dead_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 return error;
2423}
2424
2425/*
2426 * See if the mapping(s) for this btree block are valid, i.e.
2427 * don't contain holes, are logically contiguous, and cover the whole range.
2428 */
2429STATIC int
2430xfs_da_map_covers_blocks(
2431 int nmap,
2432 xfs_bmbt_irec_t *mapp,
2433 xfs_dablk_t bno,
2434 int count)
2435{
2436 int i;
2437 xfs_fileoff_t off;
2438
2439 for (i = 0, off = bno; i < nmap; i++) {
2440 if (mapp[i].br_startblock == HOLESTARTBLOCK ||
2441 mapp[i].br_startblock == DELAYSTARTBLOCK) {
2442 return 0;
2443 }
2444 if (off != mapp[i].br_startoff) {
2445 return 0;
2446 }
2447 off += mapp[i].br_blockcount;
2448 }
2449 return off == bno + count;
2450}
2451
2452/*
Dave Chinner36054312012-06-22 18:50:13 +10002453 * Convert a struct xfs_bmbt_irec to a struct xfs_buf_map.
2454 *
2455 * For the single map case, it is assumed that the caller has provided a pointer
2456 * to a valid xfs_buf_map. For the multiple map case, this function will
2457 * allocate the xfs_buf_map to hold all the maps and replace the caller's single
2458 * map pointer with the allocated map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 */
Dave Chinner36054312012-06-22 18:50:13 +10002460static int
2461xfs_buf_map_from_irec(
2462 struct xfs_mount *mp,
2463 struct xfs_buf_map **mapp,
Dave Chinner836a94a2013-08-12 20:49:44 +10002464 int *nmaps,
Dave Chinner36054312012-06-22 18:50:13 +10002465 struct xfs_bmbt_irec *irecs,
Dave Chinner836a94a2013-08-12 20:49:44 +10002466 int nirecs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467{
Dave Chinner36054312012-06-22 18:50:13 +10002468 struct xfs_buf_map *map;
2469 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
Dave Chinner36054312012-06-22 18:50:13 +10002471 ASSERT(*nmaps == 1);
2472 ASSERT(nirecs >= 1);
2473
2474 if (nirecs > 1) {
Dave Chinnerb17cb362013-05-20 09:51:12 +10002475 map = kmem_zalloc(nirecs * sizeof(struct xfs_buf_map),
2476 KM_SLEEP | KM_NOFS);
Dave Chinner36054312012-06-22 18:50:13 +10002477 if (!map)
Dave Chinner24513372014-06-25 14:58:08 +10002478 return -ENOMEM;
Dave Chinner36054312012-06-22 18:50:13 +10002479 *mapp = map;
2480 }
2481
2482 *nmaps = nirecs;
2483 map = *mapp;
2484 for (i = 0; i < *nmaps; i++) {
2485 ASSERT(irecs[i].br_startblock != DELAYSTARTBLOCK &&
2486 irecs[i].br_startblock != HOLESTARTBLOCK);
2487 map[i].bm_bn = XFS_FSB_TO_DADDR(mp, irecs[i].br_startblock);
2488 map[i].bm_len = XFS_FSB_TO_BB(mp, irecs[i].br_blockcount);
2489 }
2490 return 0;
2491}
2492
2493/*
2494 * Map the block we are given ready for reading. There are three possible return
2495 * values:
2496 * -1 - will be returned if we land in a hole and mappedbno == -2 so the
2497 * caller knows not to execute a subsequent read.
2498 * 0 - if we mapped the block successfully
2499 * >0 - positive error number if there was an error.
2500 */
2501static int
2502xfs_dabuf_map(
Dave Chinner36054312012-06-22 18:50:13 +10002503 struct xfs_inode *dp,
2504 xfs_dablk_t bno,
2505 xfs_daddr_t mappedbno,
2506 int whichfork,
2507 struct xfs_buf_map **map,
2508 int *nmaps)
2509{
2510 struct xfs_mount *mp = dp->i_mount;
2511 int nfsb;
2512 int error = 0;
2513 struct xfs_bmbt_irec irec;
2514 struct xfs_bmbt_irec *irecs = &irec;
2515 int nirecs;
2516
2517 ASSERT(map && *map);
2518 ASSERT(*nmaps == 1);
2519
Dave Chinnerd6cf1302014-06-06 15:14:11 +10002520 if (whichfork == XFS_DATA_FORK)
2521 nfsb = mp->m_dir_geo->fsbcount;
2522 else
2523 nfsb = mp->m_attr_geo->fsbcount;
Dave Chinner36054312012-06-22 18:50:13 +10002524
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 /*
2526 * Caller doesn't have a mapping. -2 means don't complain
2527 * if we land in a hole.
2528 */
2529 if (mappedbno == -1 || mappedbno == -2) {
2530 /*
2531 * Optimize the one-block case.
2532 */
Dave Chinner36054312012-06-22 18:50:13 +10002533 if (nfsb != 1)
Dave Chinnerb17cb362013-05-20 09:51:12 +10002534 irecs = kmem_zalloc(sizeof(irec) * nfsb,
2535 KM_SLEEP | KM_NOFS);
Dave Chinner5b777ad2011-09-18 20:40:46 +00002536
Dave Chinner36054312012-06-22 18:50:13 +10002537 nirecs = nfsb;
2538 error = xfs_bmapi_read(dp, (xfs_fileoff_t)bno, nfsb, irecs,
2539 &nirecs, xfs_bmapi_aflag(whichfork));
Dave Chinner5b777ad2011-09-18 20:40:46 +00002540 if (error)
Dave Chinner36054312012-06-22 18:50:13 +10002541 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 } else {
Dave Chinner36054312012-06-22 18:50:13 +10002543 irecs->br_startblock = XFS_DADDR_TO_FSB(mp, mappedbno);
2544 irecs->br_startoff = (xfs_fileoff_t)bno;
2545 irecs->br_blockcount = nfsb;
2546 irecs->br_state = 0;
2547 nirecs = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 }
Dave Chinner36054312012-06-22 18:50:13 +10002549
2550 if (!xfs_da_map_covers_blocks(nirecs, irecs, bno, nfsb)) {
Dave Chinner24513372014-06-25 14:58:08 +10002551 error = mappedbno == -2 ? -1 : -EFSCORRUPTED;
2552 if (unlikely(error == -EFSCORRUPTED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 if (xfs_error_level >= XFS_ERRLEVEL_LOW) {
Dave Chinner36054312012-06-22 18:50:13 +10002554 int i;
Dave Chinner0b932cc2011-03-07 10:08:35 +11002555 xfs_alert(mp, "%s: bno %lld dir: inode %lld",
2556 __func__, (long long)bno,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 (long long)dp->i_ino);
Dave Chinner36054312012-06-22 18:50:13 +10002558 for (i = 0; i < *nmaps; i++) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11002559 xfs_alert(mp,
2560"[%02d] br_startoff %lld br_startblock %lld br_blockcount %lld br_state %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 i,
Dave Chinner36054312012-06-22 18:50:13 +10002562 (long long)irecs[i].br_startoff,
2563 (long long)irecs[i].br_startblock,
2564 (long long)irecs[i].br_blockcount,
2565 irecs[i].br_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 }
2567 }
2568 XFS_ERROR_REPORT("xfs_da_do_buf(1)",
2569 XFS_ERRLEVEL_LOW, mp);
2570 }
Dave Chinner36054312012-06-22 18:50:13 +10002571 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 }
Dave Chinner36054312012-06-22 18:50:13 +10002573 error = xfs_buf_map_from_irec(mp, map, nmaps, irecs, nirecs);
2574out:
2575 if (irecs != &irec)
2576 kmem_free(irecs);
2577 return error;
2578}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579
Dave Chinner36054312012-06-22 18:50:13 +10002580/*
2581 * Get a buffer for the dir/attr block.
2582 */
2583int
2584xfs_da_get_buf(
2585 struct xfs_trans *trans,
2586 struct xfs_inode *dp,
2587 xfs_dablk_t bno,
2588 xfs_daddr_t mappedbno,
Dave Chinner1d9025e2012-06-22 18:50:14 +10002589 struct xfs_buf **bpp,
Dave Chinner36054312012-06-22 18:50:13 +10002590 int whichfork)
2591{
2592 struct xfs_buf *bp;
2593 struct xfs_buf_map map;
2594 struct xfs_buf_map *mapp;
2595 int nmap;
2596 int error;
2597
2598 *bpp = NULL;
2599 mapp = &map;
2600 nmap = 1;
Eric Sandeen9df2dd02014-04-14 19:01:59 +10002601 error = xfs_dabuf_map(dp, bno, mappedbno, whichfork,
Dave Chinner36054312012-06-22 18:50:13 +10002602 &mapp, &nmap);
2603 if (error) {
2604 /* mapping a hole is not an error, but we don't continue */
2605 if (error == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 error = 0;
Dave Chinner36054312012-06-22 18:50:13 +10002607 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 }
Dave Chinner36054312012-06-22 18:50:13 +10002609
2610 bp = xfs_trans_get_buf_map(trans, dp->i_mount->m_ddev_targp,
2611 mapp, nmap, 0);
Dave Chinner24513372014-06-25 14:58:08 +10002612 error = bp ? bp->b_error : -EIO;
Dave Chinner36054312012-06-22 18:50:13 +10002613 if (error) {
Eric Sandeen6ee49a22014-10-02 09:23:49 +10002614 if (bp)
2615 xfs_trans_brelse(trans, bp);
Dave Chinner36054312012-06-22 18:50:13 +10002616 goto out_free;
2617 }
2618
Dave Chinner1d9025e2012-06-22 18:50:14 +10002619 *bpp = bp;
Dave Chinner36054312012-06-22 18:50:13 +10002620
2621out_free:
2622 if (mapp != &map)
2623 kmem_free(mapp);
2624
2625 return error;
2626}
2627
2628/*
2629 * Get a buffer for the dir/attr block, fill in the contents.
2630 */
2631int
2632xfs_da_read_buf(
2633 struct xfs_trans *trans,
2634 struct xfs_inode *dp,
2635 xfs_dablk_t bno,
2636 xfs_daddr_t mappedbno,
Dave Chinner1d9025e2012-06-22 18:50:14 +10002637 struct xfs_buf **bpp,
Dave Chinner4bb20a82012-11-12 22:54:10 +11002638 int whichfork,
Dave Chinner1813dd62012-11-14 17:54:40 +11002639 const struct xfs_buf_ops *ops)
Dave Chinner36054312012-06-22 18:50:13 +10002640{
2641 struct xfs_buf *bp;
2642 struct xfs_buf_map map;
2643 struct xfs_buf_map *mapp;
2644 int nmap;
2645 int error;
2646
2647 *bpp = NULL;
2648 mapp = &map;
2649 nmap = 1;
Eric Sandeen9df2dd02014-04-14 19:01:59 +10002650 error = xfs_dabuf_map(dp, bno, mappedbno, whichfork,
Dave Chinner36054312012-06-22 18:50:13 +10002651 &mapp, &nmap);
2652 if (error) {
2653 /* mapping a hole is not an error, but we don't continue */
2654 if (error == -1)
2655 error = 0;
2656 goto out_free;
2657 }
2658
2659 error = xfs_trans_read_buf_map(dp->i_mount, trans,
2660 dp->i_mount->m_ddev_targp,
Dave Chinner1813dd62012-11-14 17:54:40 +11002661 mapp, nmap, 0, &bp, ops);
Dave Chinner36054312012-06-22 18:50:13 +10002662 if (error)
2663 goto out_free;
2664
2665 if (whichfork == XFS_ATTR_FORK)
2666 xfs_buf_set_ref(bp, XFS_ATTR_BTREE_REF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 else
Dave Chinner36054312012-06-22 18:50:13 +10002668 xfs_buf_set_ref(bp, XFS_DIR_BTREE_REF);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002669 *bpp = bp;
Dave Chinner36054312012-06-22 18:50:13 +10002670out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 if (mapp != &map)
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10002672 kmem_free(mapp);
Dave Chinner36054312012-06-22 18:50:13 +10002673
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 return error;
2675}
2676
2677/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 * Readahead the dir/attr block.
2679 */
Darrick J. Wong7a652bb2017-02-02 15:13:58 -08002680int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681xfs_da_reada_buf(
Dave Chinner36054312012-06-22 18:50:13 +10002682 struct xfs_inode *dp,
2683 xfs_dablk_t bno,
Dave Chinnerda6958c2012-11-12 22:54:18 +11002684 xfs_daddr_t mappedbno,
Dave Chinner4bb20a82012-11-12 22:54:10 +11002685 int whichfork,
Dave Chinner1813dd62012-11-14 17:54:40 +11002686 const struct xfs_buf_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687{
Dave Chinner36054312012-06-22 18:50:13 +10002688 struct xfs_buf_map map;
2689 struct xfs_buf_map *mapp;
2690 int nmap;
2691 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692
Dave Chinner36054312012-06-22 18:50:13 +10002693 mapp = &map;
2694 nmap = 1;
Eric Sandeen9df2dd02014-04-14 19:01:59 +10002695 error = xfs_dabuf_map(dp, bno, mappedbno, whichfork,
Dave Chinner36054312012-06-22 18:50:13 +10002696 &mapp, &nmap);
2697 if (error) {
2698 /* mapping a hole is not an error, but we don't continue */
2699 if (error == -1)
2700 error = 0;
2701 goto out_free;
2702 }
2703
2704 mappedbno = mapp[0].bm_bn;
Dave Chinner1813dd62012-11-14 17:54:40 +11002705 xfs_buf_readahead_map(dp->i_mount->m_ddev_targp, mapp, nmap, ops);
Dave Chinner36054312012-06-22 18:50:13 +10002706
2707out_free:
2708 if (mapp != &map)
2709 kmem_free(mapp);
2710
Darrick J. Wong7a652bb2017-02-02 15:13:58 -08002711 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712}