xref: /openbmc/linux/fs/xfs/libxfs/xfs_da_btree.c (revision ba61bb17)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (c) 2000-2005 Silicon Graphics, Inc.
4  * Copyright (c) 2013 Red Hat, Inc.
5  * All Rights Reserved.
6  */
7 #include "xfs.h"
8 #include "xfs_fs.h"
9 #include "xfs_shared.h"
10 #include "xfs_format.h"
11 #include "xfs_log_format.h"
12 #include "xfs_trans_resv.h"
13 #include "xfs_bit.h"
14 #include "xfs_mount.h"
15 #include "xfs_da_format.h"
16 #include "xfs_da_btree.h"
17 #include "xfs_dir2.h"
18 #include "xfs_dir2_priv.h"
19 #include "xfs_inode.h"
20 #include "xfs_trans.h"
21 #include "xfs_inode_item.h"
22 #include "xfs_alloc.h"
23 #include "xfs_bmap.h"
24 #include "xfs_attr.h"
25 #include "xfs_attr_leaf.h"
26 #include "xfs_error.h"
27 #include "xfs_trace.h"
28 #include "xfs_cksum.h"
29 #include "xfs_buf_item.h"
30 #include "xfs_log.h"
31 
32 /*
33  * xfs_da_btree.c
34  *
35  * Routines to implement directories as Btrees of hashed names.
36  */
37 
38 /*========================================================================
39  * Function prototypes for the kernel.
40  *========================================================================*/
41 
42 /*
43  * Routines used for growing the Btree.
44  */
45 STATIC int xfs_da3_root_split(xfs_da_state_t *state,
46 					    xfs_da_state_blk_t *existing_root,
47 					    xfs_da_state_blk_t *new_child);
48 STATIC int xfs_da3_node_split(xfs_da_state_t *state,
49 					    xfs_da_state_blk_t *existing_blk,
50 					    xfs_da_state_blk_t *split_blk,
51 					    xfs_da_state_blk_t *blk_to_add,
52 					    int treelevel,
53 					    int *result);
54 STATIC void xfs_da3_node_rebalance(xfs_da_state_t *state,
55 					 xfs_da_state_blk_t *node_blk_1,
56 					 xfs_da_state_blk_t *node_blk_2);
57 STATIC void xfs_da3_node_add(xfs_da_state_t *state,
58 				   xfs_da_state_blk_t *old_node_blk,
59 				   xfs_da_state_blk_t *new_node_blk);
60 
61 /*
62  * Routines used for shrinking the Btree.
63  */
64 STATIC int xfs_da3_root_join(xfs_da_state_t *state,
65 					   xfs_da_state_blk_t *root_blk);
66 STATIC int xfs_da3_node_toosmall(xfs_da_state_t *state, int *retval);
67 STATIC void xfs_da3_node_remove(xfs_da_state_t *state,
68 					      xfs_da_state_blk_t *drop_blk);
69 STATIC void xfs_da3_node_unbalance(xfs_da_state_t *state,
70 					 xfs_da_state_blk_t *src_node_blk,
71 					 xfs_da_state_blk_t *dst_node_blk);
72 
73 /*
74  * Utility routines.
75  */
76 STATIC int	xfs_da3_blk_unlink(xfs_da_state_t *state,
77 				  xfs_da_state_blk_t *drop_blk,
78 				  xfs_da_state_blk_t *save_blk);
79 
80 
81 kmem_zone_t *xfs_da_state_zone;	/* anchor for state struct zone */
82 
83 /*
84  * Allocate a dir-state structure.
85  * We don't put them on the stack since they're large.
86  */
87 xfs_da_state_t *
88 xfs_da_state_alloc(void)
89 {
90 	return kmem_zone_zalloc(xfs_da_state_zone, KM_NOFS);
91 }
92 
93 /*
94  * Kill the altpath contents of a da-state structure.
95  */
96 STATIC void
97 xfs_da_state_kill_altpath(xfs_da_state_t *state)
98 {
99 	int	i;
100 
101 	for (i = 0; i < state->altpath.active; i++)
102 		state->altpath.blk[i].bp = NULL;
103 	state->altpath.active = 0;
104 }
105 
106 /*
107  * Free a da-state structure.
108  */
109 void
110 xfs_da_state_free(xfs_da_state_t *state)
111 {
112 	xfs_da_state_kill_altpath(state);
113 #ifdef DEBUG
114 	memset((char *)state, 0, sizeof(*state));
115 #endif /* DEBUG */
116 	kmem_zone_free(xfs_da_state_zone, state);
117 }
118 
119 static xfs_failaddr_t
120 xfs_da3_node_verify(
121 	struct xfs_buf		*bp)
122 {
123 	struct xfs_mount	*mp = bp->b_target->bt_mount;
124 	struct xfs_da_intnode	*hdr = bp->b_addr;
125 	struct xfs_da3_icnode_hdr ichdr;
126 	const struct xfs_dir_ops *ops;
127 
128 	ops = xfs_dir_get_ops(mp, NULL);
129 
130 	ops->node_hdr_from_disk(&ichdr, hdr);
131 
132 	if (xfs_sb_version_hascrc(&mp->m_sb)) {
133 		struct xfs_da3_node_hdr *hdr3 = bp->b_addr;
134 
135 		if (ichdr.magic != XFS_DA3_NODE_MAGIC)
136 			return __this_address;
137 
138 		if (!uuid_equal(&hdr3->info.uuid, &mp->m_sb.sb_meta_uuid))
139 			return __this_address;
140 		if (be64_to_cpu(hdr3->info.blkno) != bp->b_bn)
141 			return __this_address;
142 		if (!xfs_log_check_lsn(mp, be64_to_cpu(hdr3->info.lsn)))
143 			return __this_address;
144 	} else {
145 		if (ichdr.magic != XFS_DA_NODE_MAGIC)
146 			return __this_address;
147 	}
148 	if (ichdr.level == 0)
149 		return __this_address;
150 	if (ichdr.level > XFS_DA_NODE_MAXDEPTH)
151 		return __this_address;
152 	if (ichdr.count == 0)
153 		return __this_address;
154 
155 	/*
156 	 * we don't know if the node is for and attribute or directory tree,
157 	 * so only fail if the count is outside both bounds
158 	 */
159 	if (ichdr.count > mp->m_dir_geo->node_ents &&
160 	    ichdr.count > mp->m_attr_geo->node_ents)
161 		return __this_address;
162 
163 	/* XXX: hash order check? */
164 
165 	return NULL;
166 }
167 
168 static void
169 xfs_da3_node_write_verify(
170 	struct xfs_buf	*bp)
171 {
172 	struct xfs_mount	*mp = bp->b_target->bt_mount;
173 	struct xfs_buf_log_item	*bip = bp->b_log_item;
174 	struct xfs_da3_node_hdr *hdr3 = bp->b_addr;
175 	xfs_failaddr_t		fa;
176 
177 	fa = xfs_da3_node_verify(bp);
178 	if (fa) {
179 		xfs_verifier_error(bp, -EFSCORRUPTED, fa);
180 		return;
181 	}
182 
183 	if (!xfs_sb_version_hascrc(&mp->m_sb))
184 		return;
185 
186 	if (bip)
187 		hdr3->info.lsn = cpu_to_be64(bip->bli_item.li_lsn);
188 
189 	xfs_buf_update_cksum(bp, XFS_DA3_NODE_CRC_OFF);
190 }
191 
192 /*
193  * leaf/node format detection on trees is sketchy, so a node read can be done on
194  * leaf level blocks when detection identifies the tree as a node format tree
195  * incorrectly. In this case, we need to swap the verifier to match the correct
196  * format of the block being read.
197  */
198 static void
199 xfs_da3_node_read_verify(
200 	struct xfs_buf		*bp)
201 {
202 	struct xfs_da_blkinfo	*info = bp->b_addr;
203 	xfs_failaddr_t		fa;
204 
205 	switch (be16_to_cpu(info->magic)) {
206 		case XFS_DA3_NODE_MAGIC:
207 			if (!xfs_buf_verify_cksum(bp, XFS_DA3_NODE_CRC_OFF)) {
208 				xfs_verifier_error(bp, -EFSBADCRC,
209 						__this_address);
210 				break;
211 			}
212 			/* fall through */
213 		case XFS_DA_NODE_MAGIC:
214 			fa = xfs_da3_node_verify(bp);
215 			if (fa)
216 				xfs_verifier_error(bp, -EFSCORRUPTED, fa);
217 			return;
218 		case XFS_ATTR_LEAF_MAGIC:
219 		case XFS_ATTR3_LEAF_MAGIC:
220 			bp->b_ops = &xfs_attr3_leaf_buf_ops;
221 			bp->b_ops->verify_read(bp);
222 			return;
223 		case XFS_DIR2_LEAFN_MAGIC:
224 		case XFS_DIR3_LEAFN_MAGIC:
225 			bp->b_ops = &xfs_dir3_leafn_buf_ops;
226 			bp->b_ops->verify_read(bp);
227 			return;
228 		default:
229 			xfs_verifier_error(bp, -EFSCORRUPTED, __this_address);
230 			break;
231 	}
232 }
233 
234 /* Verify the structure of a da3 block. */
235 static xfs_failaddr_t
236 xfs_da3_node_verify_struct(
237 	struct xfs_buf		*bp)
238 {
239 	struct xfs_da_blkinfo	*info = bp->b_addr;
240 
241 	switch (be16_to_cpu(info->magic)) {
242 	case XFS_DA3_NODE_MAGIC:
243 	case XFS_DA_NODE_MAGIC:
244 		return xfs_da3_node_verify(bp);
245 	case XFS_ATTR_LEAF_MAGIC:
246 	case XFS_ATTR3_LEAF_MAGIC:
247 		bp->b_ops = &xfs_attr3_leaf_buf_ops;
248 		return bp->b_ops->verify_struct(bp);
249 	case XFS_DIR2_LEAFN_MAGIC:
250 	case XFS_DIR3_LEAFN_MAGIC:
251 		bp->b_ops = &xfs_dir3_leafn_buf_ops;
252 		return bp->b_ops->verify_struct(bp);
253 	default:
254 		return __this_address;
255 	}
256 }
257 
258 const struct xfs_buf_ops xfs_da3_node_buf_ops = {
259 	.name = "xfs_da3_node",
260 	.verify_read = xfs_da3_node_read_verify,
261 	.verify_write = xfs_da3_node_write_verify,
262 	.verify_struct = xfs_da3_node_verify_struct,
263 };
264 
265 int
266 xfs_da3_node_read(
267 	struct xfs_trans	*tp,
268 	struct xfs_inode	*dp,
269 	xfs_dablk_t		bno,
270 	xfs_daddr_t		mappedbno,
271 	struct xfs_buf		**bpp,
272 	int			which_fork)
273 {
274 	int			err;
275 
276 	err = xfs_da_read_buf(tp, dp, bno, mappedbno, bpp,
277 					which_fork, &xfs_da3_node_buf_ops);
278 	if (!err && tp && *bpp) {
279 		struct xfs_da_blkinfo	*info = (*bpp)->b_addr;
280 		int			type;
281 
282 		switch (be16_to_cpu(info->magic)) {
283 		case XFS_DA_NODE_MAGIC:
284 		case XFS_DA3_NODE_MAGIC:
285 			type = XFS_BLFT_DA_NODE_BUF;
286 			break;
287 		case XFS_ATTR_LEAF_MAGIC:
288 		case XFS_ATTR3_LEAF_MAGIC:
289 			type = XFS_BLFT_ATTR_LEAF_BUF;
290 			break;
291 		case XFS_DIR2_LEAFN_MAGIC:
292 		case XFS_DIR3_LEAFN_MAGIC:
293 			type = XFS_BLFT_DIR_LEAFN_BUF;
294 			break;
295 		default:
296 			XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW,
297 					tp->t_mountp, info, sizeof(*info));
298 			xfs_trans_brelse(tp, *bpp);
299 			*bpp = NULL;
300 			return -EFSCORRUPTED;
301 		}
302 		xfs_trans_buf_set_type(tp, *bpp, type);
303 	}
304 	return err;
305 }
306 
307 /*========================================================================
308  * Routines used for growing the Btree.
309  *========================================================================*/
310 
311 /*
312  * Create the initial contents of an intermediate node.
313  */
314 int
315 xfs_da3_node_create(
316 	struct xfs_da_args	*args,
317 	xfs_dablk_t		blkno,
318 	int			level,
319 	struct xfs_buf		**bpp,
320 	int			whichfork)
321 {
322 	struct xfs_da_intnode	*node;
323 	struct xfs_trans	*tp = args->trans;
324 	struct xfs_mount	*mp = tp->t_mountp;
325 	struct xfs_da3_icnode_hdr ichdr = {0};
326 	struct xfs_buf		*bp;
327 	int			error;
328 	struct xfs_inode	*dp = args->dp;
329 
330 	trace_xfs_da_node_create(args);
331 	ASSERT(level <= XFS_DA_NODE_MAXDEPTH);
332 
333 	error = xfs_da_get_buf(tp, dp, blkno, -1, &bp, whichfork);
334 	if (error)
335 		return error;
336 	bp->b_ops = &xfs_da3_node_buf_ops;
337 	xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DA_NODE_BUF);
338 	node = bp->b_addr;
339 
340 	if (xfs_sb_version_hascrc(&mp->m_sb)) {
341 		struct xfs_da3_node_hdr *hdr3 = bp->b_addr;
342 
343 		memset(hdr3, 0, sizeof(struct xfs_da3_node_hdr));
344 		ichdr.magic = XFS_DA3_NODE_MAGIC;
345 		hdr3->info.blkno = cpu_to_be64(bp->b_bn);
346 		hdr3->info.owner = cpu_to_be64(args->dp->i_ino);
347 		uuid_copy(&hdr3->info.uuid, &mp->m_sb.sb_meta_uuid);
348 	} else {
349 		ichdr.magic = XFS_DA_NODE_MAGIC;
350 	}
351 	ichdr.level = level;
352 
353 	dp->d_ops->node_hdr_to_disk(node, &ichdr);
354 	xfs_trans_log_buf(tp, bp,
355 		XFS_DA_LOGRANGE(node, &node->hdr, dp->d_ops->node_hdr_size));
356 
357 	*bpp = bp;
358 	return 0;
359 }
360 
361 /*
362  * Split a leaf node, rebalance, then possibly split
363  * intermediate nodes, rebalance, etc.
364  */
365 int							/* error */
366 xfs_da3_split(
367 	struct xfs_da_state	*state)
368 {
369 	struct xfs_da_state_blk	*oldblk;
370 	struct xfs_da_state_blk	*newblk;
371 	struct xfs_da_state_blk	*addblk;
372 	struct xfs_da_intnode	*node;
373 	int			max;
374 	int			action = 0;
375 	int			error;
376 	int			i;
377 
378 	trace_xfs_da_split(state->args);
379 
380 	/*
381 	 * Walk back up the tree splitting/inserting/adjusting as necessary.
382 	 * If we need to insert and there isn't room, split the node, then
383 	 * decide which fragment to insert the new block from below into.
384 	 * Note that we may split the root this way, but we need more fixup.
385 	 */
386 	max = state->path.active - 1;
387 	ASSERT((max >= 0) && (max < XFS_DA_NODE_MAXDEPTH));
388 	ASSERT(state->path.blk[max].magic == XFS_ATTR_LEAF_MAGIC ||
389 	       state->path.blk[max].magic == XFS_DIR2_LEAFN_MAGIC);
390 
391 	addblk = &state->path.blk[max];		/* initial dummy value */
392 	for (i = max; (i >= 0) && addblk; state->path.active--, i--) {
393 		oldblk = &state->path.blk[i];
394 		newblk = &state->altpath.blk[i];
395 
396 		/*
397 		 * If a leaf node then
398 		 *     Allocate a new leaf node, then rebalance across them.
399 		 * else if an intermediate node then
400 		 *     We split on the last layer, must we split the node?
401 		 */
402 		switch (oldblk->magic) {
403 		case XFS_ATTR_LEAF_MAGIC:
404 			error = xfs_attr3_leaf_split(state, oldblk, newblk);
405 			if ((error != 0) && (error != -ENOSPC)) {
406 				return error;	/* GROT: attr is inconsistent */
407 			}
408 			if (!error) {
409 				addblk = newblk;
410 				break;
411 			}
412 			/*
413 			 * Entry wouldn't fit, split the leaf again. The new
414 			 * extrablk will be consumed by xfs_da3_node_split if
415 			 * the node is split.
416 			 */
417 			state->extravalid = 1;
418 			if (state->inleaf) {
419 				state->extraafter = 0;	/* before newblk */
420 				trace_xfs_attr_leaf_split_before(state->args);
421 				error = xfs_attr3_leaf_split(state, oldblk,
422 							    &state->extrablk);
423 			} else {
424 				state->extraafter = 1;	/* after newblk */
425 				trace_xfs_attr_leaf_split_after(state->args);
426 				error = xfs_attr3_leaf_split(state, newblk,
427 							    &state->extrablk);
428 			}
429 			if (error)
430 				return error;	/* GROT: attr inconsistent */
431 			addblk = newblk;
432 			break;
433 		case XFS_DIR2_LEAFN_MAGIC:
434 			error = xfs_dir2_leafn_split(state, oldblk, newblk);
435 			if (error)
436 				return error;
437 			addblk = newblk;
438 			break;
439 		case XFS_DA_NODE_MAGIC:
440 			error = xfs_da3_node_split(state, oldblk, newblk, addblk,
441 							 max - i, &action);
442 			addblk->bp = NULL;
443 			if (error)
444 				return error;	/* GROT: dir is inconsistent */
445 			/*
446 			 * Record the newly split block for the next time thru?
447 			 */
448 			if (action)
449 				addblk = newblk;
450 			else
451 				addblk = NULL;
452 			break;
453 		}
454 
455 		/*
456 		 * Update the btree to show the new hashval for this child.
457 		 */
458 		xfs_da3_fixhashpath(state, &state->path);
459 	}
460 	if (!addblk)
461 		return 0;
462 
463 	/*
464 	 * xfs_da3_node_split() should have consumed any extra blocks we added
465 	 * during a double leaf split in the attr fork. This is guaranteed as
466 	 * we can't be here if the attr fork only has a single leaf block.
467 	 */
468 	ASSERT(state->extravalid == 0 ||
469 	       state->path.blk[max].magic == XFS_DIR2_LEAFN_MAGIC);
470 
471 	/*
472 	 * Split the root node.
473 	 */
474 	ASSERT(state->path.active == 0);
475 	oldblk = &state->path.blk[0];
476 	error = xfs_da3_root_split(state, oldblk, addblk);
477 	if (error) {
478 		addblk->bp = NULL;
479 		return error;	/* GROT: dir is inconsistent */
480 	}
481 
482 	/*
483 	 * Update pointers to the node which used to be block 0 and just got
484 	 * bumped because of the addition of a new root node.  Note that the
485 	 * original block 0 could be at any position in the list of blocks in
486 	 * the tree.
487 	 *
488 	 * Note: the magic numbers and sibling pointers are in the same physical
489 	 * place for both v2 and v3 headers (by design). Hence it doesn't matter
490 	 * which version of the xfs_da_intnode structure we use here as the
491 	 * result will be the same using either structure.
492 	 */
493 	node = oldblk->bp->b_addr;
494 	if (node->hdr.info.forw) {
495 		ASSERT(be32_to_cpu(node->hdr.info.forw) == addblk->blkno);
496 		node = addblk->bp->b_addr;
497 		node->hdr.info.back = cpu_to_be32(oldblk->blkno);
498 		xfs_trans_log_buf(state->args->trans, addblk->bp,
499 				  XFS_DA_LOGRANGE(node, &node->hdr.info,
500 				  sizeof(node->hdr.info)));
501 	}
502 	node = oldblk->bp->b_addr;
503 	if (node->hdr.info.back) {
504 		ASSERT(be32_to_cpu(node->hdr.info.back) == addblk->blkno);
505 		node = addblk->bp->b_addr;
506 		node->hdr.info.forw = cpu_to_be32(oldblk->blkno);
507 		xfs_trans_log_buf(state->args->trans, addblk->bp,
508 				  XFS_DA_LOGRANGE(node, &node->hdr.info,
509 				  sizeof(node->hdr.info)));
510 	}
511 	addblk->bp = NULL;
512 	return 0;
513 }
514 
515 /*
516  * Split the root.  We have to create a new root and point to the two
517  * parts (the split old root) that we just created.  Copy block zero to
518  * the EOF, extending the inode in process.
519  */
520 STATIC int						/* error */
521 xfs_da3_root_split(
522 	struct xfs_da_state	*state,
523 	struct xfs_da_state_blk	*blk1,
524 	struct xfs_da_state_blk	*blk2)
525 {
526 	struct xfs_da_intnode	*node;
527 	struct xfs_da_intnode	*oldroot;
528 	struct xfs_da_node_entry *btree;
529 	struct xfs_da3_icnode_hdr nodehdr;
530 	struct xfs_da_args	*args;
531 	struct xfs_buf		*bp;
532 	struct xfs_inode	*dp;
533 	struct xfs_trans	*tp;
534 	struct xfs_dir2_leaf	*leaf;
535 	xfs_dablk_t		blkno;
536 	int			level;
537 	int			error;
538 	int			size;
539 
540 	trace_xfs_da_root_split(state->args);
541 
542 	/*
543 	 * Copy the existing (incorrect) block from the root node position
544 	 * to a free space somewhere.
545 	 */
546 	args = state->args;
547 	error = xfs_da_grow_inode(args, &blkno);
548 	if (error)
549 		return error;
550 
551 	dp = args->dp;
552 	tp = args->trans;
553 	error = xfs_da_get_buf(tp, dp, blkno, -1, &bp, args->whichfork);
554 	if (error)
555 		return error;
556 	node = bp->b_addr;
557 	oldroot = blk1->bp->b_addr;
558 	if (oldroot->hdr.info.magic == cpu_to_be16(XFS_DA_NODE_MAGIC) ||
559 	    oldroot->hdr.info.magic == cpu_to_be16(XFS_DA3_NODE_MAGIC)) {
560 		struct xfs_da3_icnode_hdr icnodehdr;
561 
562 		dp->d_ops->node_hdr_from_disk(&icnodehdr, oldroot);
563 		btree = dp->d_ops->node_tree_p(oldroot);
564 		size = (int)((char *)&btree[icnodehdr.count] - (char *)oldroot);
565 		level = icnodehdr.level;
566 
567 		/*
568 		 * we are about to copy oldroot to bp, so set up the type
569 		 * of bp while we know exactly what it will be.
570 		 */
571 		xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DA_NODE_BUF);
572 	} else {
573 		struct xfs_dir3_icleaf_hdr leafhdr;
574 		struct xfs_dir2_leaf_entry *ents;
575 
576 		leaf = (xfs_dir2_leaf_t *)oldroot;
577 		dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
578 		ents = dp->d_ops->leaf_ents_p(leaf);
579 
580 		ASSERT(leafhdr.magic == XFS_DIR2_LEAFN_MAGIC ||
581 		       leafhdr.magic == XFS_DIR3_LEAFN_MAGIC);
582 		size = (int)((char *)&ents[leafhdr.count] - (char *)leaf);
583 		level = 0;
584 
585 		/*
586 		 * we are about to copy oldroot to bp, so set up the type
587 		 * of bp while we know exactly what it will be.
588 		 */
589 		xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_LEAFN_BUF);
590 	}
591 
592 	/*
593 	 * we can copy most of the information in the node from one block to
594 	 * another, but for CRC enabled headers we have to make sure that the
595 	 * block specific identifiers are kept intact. We update the buffer
596 	 * directly for this.
597 	 */
598 	memcpy(node, oldroot, size);
599 	if (oldroot->hdr.info.magic == cpu_to_be16(XFS_DA3_NODE_MAGIC) ||
600 	    oldroot->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC)) {
601 		struct xfs_da3_intnode *node3 = (struct xfs_da3_intnode *)node;
602 
603 		node3->hdr.info.blkno = cpu_to_be64(bp->b_bn);
604 	}
605 	xfs_trans_log_buf(tp, bp, 0, size - 1);
606 
607 	bp->b_ops = blk1->bp->b_ops;
608 	xfs_trans_buf_copy_type(bp, blk1->bp);
609 	blk1->bp = bp;
610 	blk1->blkno = blkno;
611 
612 	/*
613 	 * Set up the new root node.
614 	 */
615 	error = xfs_da3_node_create(args,
616 		(args->whichfork == XFS_DATA_FORK) ? args->geo->leafblk : 0,
617 		level + 1, &bp, args->whichfork);
618 	if (error)
619 		return error;
620 
621 	node = bp->b_addr;
622 	dp->d_ops->node_hdr_from_disk(&nodehdr, node);
623 	btree = dp->d_ops->node_tree_p(node);
624 	btree[0].hashval = cpu_to_be32(blk1->hashval);
625 	btree[0].before = cpu_to_be32(blk1->blkno);
626 	btree[1].hashval = cpu_to_be32(blk2->hashval);
627 	btree[1].before = cpu_to_be32(blk2->blkno);
628 	nodehdr.count = 2;
629 	dp->d_ops->node_hdr_to_disk(node, &nodehdr);
630 
631 #ifdef DEBUG
632 	if (oldroot->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
633 	    oldroot->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC)) {
634 		ASSERT(blk1->blkno >= args->geo->leafblk &&
635 		       blk1->blkno < args->geo->freeblk);
636 		ASSERT(blk2->blkno >= args->geo->leafblk &&
637 		       blk2->blkno < args->geo->freeblk);
638 	}
639 #endif
640 
641 	/* Header is already logged by xfs_da_node_create */
642 	xfs_trans_log_buf(tp, bp,
643 		XFS_DA_LOGRANGE(node, btree, sizeof(xfs_da_node_entry_t) * 2));
644 
645 	return 0;
646 }
647 
648 /*
649  * Split the node, rebalance, then add the new entry.
650  */
651 STATIC int						/* error */
652 xfs_da3_node_split(
653 	struct xfs_da_state	*state,
654 	struct xfs_da_state_blk	*oldblk,
655 	struct xfs_da_state_blk	*newblk,
656 	struct xfs_da_state_blk	*addblk,
657 	int			treelevel,
658 	int			*result)
659 {
660 	struct xfs_da_intnode	*node;
661 	struct xfs_da3_icnode_hdr nodehdr;
662 	xfs_dablk_t		blkno;
663 	int			newcount;
664 	int			error;
665 	int			useextra;
666 	struct xfs_inode	*dp = state->args->dp;
667 
668 	trace_xfs_da_node_split(state->args);
669 
670 	node = oldblk->bp->b_addr;
671 	dp->d_ops->node_hdr_from_disk(&nodehdr, node);
672 
673 	/*
674 	 * With V2 dirs the extra block is data or freespace.
675 	 */
676 	useextra = state->extravalid && state->args->whichfork == XFS_ATTR_FORK;
677 	newcount = 1 + useextra;
678 	/*
679 	 * Do we have to split the node?
680 	 */
681 	if (nodehdr.count + newcount > state->args->geo->node_ents) {
682 		/*
683 		 * Allocate a new node, add to the doubly linked chain of
684 		 * nodes, then move some of our excess entries into it.
685 		 */
686 		error = xfs_da_grow_inode(state->args, &blkno);
687 		if (error)
688 			return error;	/* GROT: dir is inconsistent */
689 
690 		error = xfs_da3_node_create(state->args, blkno, treelevel,
691 					   &newblk->bp, state->args->whichfork);
692 		if (error)
693 			return error;	/* GROT: dir is inconsistent */
694 		newblk->blkno = blkno;
695 		newblk->magic = XFS_DA_NODE_MAGIC;
696 		xfs_da3_node_rebalance(state, oldblk, newblk);
697 		error = xfs_da3_blk_link(state, oldblk, newblk);
698 		if (error)
699 			return error;
700 		*result = 1;
701 	} else {
702 		*result = 0;
703 	}
704 
705 	/*
706 	 * Insert the new entry(s) into the correct block
707 	 * (updating last hashval in the process).
708 	 *
709 	 * xfs_da3_node_add() inserts BEFORE the given index,
710 	 * and as a result of using node_lookup_int() we always
711 	 * point to a valid entry (not after one), but a split
712 	 * operation always results in a new block whose hashvals
713 	 * FOLLOW the current block.
714 	 *
715 	 * If we had double-split op below us, then add the extra block too.
716 	 */
717 	node = oldblk->bp->b_addr;
718 	dp->d_ops->node_hdr_from_disk(&nodehdr, node);
719 	if (oldblk->index <= nodehdr.count) {
720 		oldblk->index++;
721 		xfs_da3_node_add(state, oldblk, addblk);
722 		if (useextra) {
723 			if (state->extraafter)
724 				oldblk->index++;
725 			xfs_da3_node_add(state, oldblk, &state->extrablk);
726 			state->extravalid = 0;
727 		}
728 	} else {
729 		newblk->index++;
730 		xfs_da3_node_add(state, newblk, addblk);
731 		if (useextra) {
732 			if (state->extraafter)
733 				newblk->index++;
734 			xfs_da3_node_add(state, newblk, &state->extrablk);
735 			state->extravalid = 0;
736 		}
737 	}
738 
739 	return 0;
740 }
741 
742 /*
743  * Balance the btree elements between two intermediate nodes,
744  * usually one full and one empty.
745  *
746  * NOTE: if blk2 is empty, then it will get the upper half of blk1.
747  */
748 STATIC void
749 xfs_da3_node_rebalance(
750 	struct xfs_da_state	*state,
751 	struct xfs_da_state_blk	*blk1,
752 	struct xfs_da_state_blk	*blk2)
753 {
754 	struct xfs_da_intnode	*node1;
755 	struct xfs_da_intnode	*node2;
756 	struct xfs_da_intnode	*tmpnode;
757 	struct xfs_da_node_entry *btree1;
758 	struct xfs_da_node_entry *btree2;
759 	struct xfs_da_node_entry *btree_s;
760 	struct xfs_da_node_entry *btree_d;
761 	struct xfs_da3_icnode_hdr nodehdr1;
762 	struct xfs_da3_icnode_hdr nodehdr2;
763 	struct xfs_trans	*tp;
764 	int			count;
765 	int			tmp;
766 	int			swap = 0;
767 	struct xfs_inode	*dp = state->args->dp;
768 
769 	trace_xfs_da_node_rebalance(state->args);
770 
771 	node1 = blk1->bp->b_addr;
772 	node2 = blk2->bp->b_addr;
773 	dp->d_ops->node_hdr_from_disk(&nodehdr1, node1);
774 	dp->d_ops->node_hdr_from_disk(&nodehdr2, node2);
775 	btree1 = dp->d_ops->node_tree_p(node1);
776 	btree2 = dp->d_ops->node_tree_p(node2);
777 
778 	/*
779 	 * Figure out how many entries need to move, and in which direction.
780 	 * Swap the nodes around if that makes it simpler.
781 	 */
782 	if (nodehdr1.count > 0 && nodehdr2.count > 0 &&
783 	    ((be32_to_cpu(btree2[0].hashval) < be32_to_cpu(btree1[0].hashval)) ||
784 	     (be32_to_cpu(btree2[nodehdr2.count - 1].hashval) <
785 			be32_to_cpu(btree1[nodehdr1.count - 1].hashval)))) {
786 		tmpnode = node1;
787 		node1 = node2;
788 		node2 = tmpnode;
789 		dp->d_ops->node_hdr_from_disk(&nodehdr1, node1);
790 		dp->d_ops->node_hdr_from_disk(&nodehdr2, node2);
791 		btree1 = dp->d_ops->node_tree_p(node1);
792 		btree2 = dp->d_ops->node_tree_p(node2);
793 		swap = 1;
794 	}
795 
796 	count = (nodehdr1.count - nodehdr2.count) / 2;
797 	if (count == 0)
798 		return;
799 	tp = state->args->trans;
800 	/*
801 	 * Two cases: high-to-low and low-to-high.
802 	 */
803 	if (count > 0) {
804 		/*
805 		 * Move elements in node2 up to make a hole.
806 		 */
807 		tmp = nodehdr2.count;
808 		if (tmp > 0) {
809 			tmp *= (uint)sizeof(xfs_da_node_entry_t);
810 			btree_s = &btree2[0];
811 			btree_d = &btree2[count];
812 			memmove(btree_d, btree_s, tmp);
813 		}
814 
815 		/*
816 		 * Move the req'd B-tree elements from high in node1 to
817 		 * low in node2.
818 		 */
819 		nodehdr2.count += count;
820 		tmp = count * (uint)sizeof(xfs_da_node_entry_t);
821 		btree_s = &btree1[nodehdr1.count - count];
822 		btree_d = &btree2[0];
823 		memcpy(btree_d, btree_s, tmp);
824 		nodehdr1.count -= count;
825 	} else {
826 		/*
827 		 * Move the req'd B-tree elements from low in node2 to
828 		 * high in node1.
829 		 */
830 		count = -count;
831 		tmp = count * (uint)sizeof(xfs_da_node_entry_t);
832 		btree_s = &btree2[0];
833 		btree_d = &btree1[nodehdr1.count];
834 		memcpy(btree_d, btree_s, tmp);
835 		nodehdr1.count += count;
836 
837 		xfs_trans_log_buf(tp, blk1->bp,
838 			XFS_DA_LOGRANGE(node1, btree_d, tmp));
839 
840 		/*
841 		 * Move elements in node2 down to fill the hole.
842 		 */
843 		tmp  = nodehdr2.count - count;
844 		tmp *= (uint)sizeof(xfs_da_node_entry_t);
845 		btree_s = &btree2[count];
846 		btree_d = &btree2[0];
847 		memmove(btree_d, btree_s, tmp);
848 		nodehdr2.count -= count;
849 	}
850 
851 	/*
852 	 * Log header of node 1 and all current bits of node 2.
853 	 */
854 	dp->d_ops->node_hdr_to_disk(node1, &nodehdr1);
855 	xfs_trans_log_buf(tp, blk1->bp,
856 		XFS_DA_LOGRANGE(node1, &node1->hdr, dp->d_ops->node_hdr_size));
857 
858 	dp->d_ops->node_hdr_to_disk(node2, &nodehdr2);
859 	xfs_trans_log_buf(tp, blk2->bp,
860 		XFS_DA_LOGRANGE(node2, &node2->hdr,
861 				dp->d_ops->node_hdr_size +
862 				(sizeof(btree2[0]) * nodehdr2.count)));
863 
864 	/*
865 	 * Record the last hashval from each block for upward propagation.
866 	 * (note: don't use the swapped node pointers)
867 	 */
868 	if (swap) {
869 		node1 = blk1->bp->b_addr;
870 		node2 = blk2->bp->b_addr;
871 		dp->d_ops->node_hdr_from_disk(&nodehdr1, node1);
872 		dp->d_ops->node_hdr_from_disk(&nodehdr2, node2);
873 		btree1 = dp->d_ops->node_tree_p(node1);
874 		btree2 = dp->d_ops->node_tree_p(node2);
875 	}
876 	blk1->hashval = be32_to_cpu(btree1[nodehdr1.count - 1].hashval);
877 	blk2->hashval = be32_to_cpu(btree2[nodehdr2.count - 1].hashval);
878 
879 	/*
880 	 * Adjust the expected index for insertion.
881 	 */
882 	if (blk1->index >= nodehdr1.count) {
883 		blk2->index = blk1->index - nodehdr1.count;
884 		blk1->index = nodehdr1.count + 1;	/* make it invalid */
885 	}
886 }
887 
888 /*
889  * Add a new entry to an intermediate node.
890  */
891 STATIC void
892 xfs_da3_node_add(
893 	struct xfs_da_state	*state,
894 	struct xfs_da_state_blk	*oldblk,
895 	struct xfs_da_state_blk	*newblk)
896 {
897 	struct xfs_da_intnode	*node;
898 	struct xfs_da3_icnode_hdr nodehdr;
899 	struct xfs_da_node_entry *btree;
900 	int			tmp;
901 	struct xfs_inode	*dp = state->args->dp;
902 
903 	trace_xfs_da_node_add(state->args);
904 
905 	node = oldblk->bp->b_addr;
906 	dp->d_ops->node_hdr_from_disk(&nodehdr, node);
907 	btree = dp->d_ops->node_tree_p(node);
908 
909 	ASSERT(oldblk->index >= 0 && oldblk->index <= nodehdr.count);
910 	ASSERT(newblk->blkno != 0);
911 	if (state->args->whichfork == XFS_DATA_FORK)
912 		ASSERT(newblk->blkno >= state->args->geo->leafblk &&
913 		       newblk->blkno < state->args->geo->freeblk);
914 
915 	/*
916 	 * We may need to make some room before we insert the new node.
917 	 */
918 	tmp = 0;
919 	if (oldblk->index < nodehdr.count) {
920 		tmp = (nodehdr.count - oldblk->index) * (uint)sizeof(*btree);
921 		memmove(&btree[oldblk->index + 1], &btree[oldblk->index], tmp);
922 	}
923 	btree[oldblk->index].hashval = cpu_to_be32(newblk->hashval);
924 	btree[oldblk->index].before = cpu_to_be32(newblk->blkno);
925 	xfs_trans_log_buf(state->args->trans, oldblk->bp,
926 		XFS_DA_LOGRANGE(node, &btree[oldblk->index],
927 				tmp + sizeof(*btree)));
928 
929 	nodehdr.count += 1;
930 	dp->d_ops->node_hdr_to_disk(node, &nodehdr);
931 	xfs_trans_log_buf(state->args->trans, oldblk->bp,
932 		XFS_DA_LOGRANGE(node, &node->hdr, dp->d_ops->node_hdr_size));
933 
934 	/*
935 	 * Copy the last hash value from the oldblk to propagate upwards.
936 	 */
937 	oldblk->hashval = be32_to_cpu(btree[nodehdr.count - 1].hashval);
938 }
939 
940 /*========================================================================
941  * Routines used for shrinking the Btree.
942  *========================================================================*/
943 
944 /*
945  * Deallocate an empty leaf node, remove it from its parent,
946  * possibly deallocating that block, etc...
947  */
948 int
949 xfs_da3_join(
950 	struct xfs_da_state	*state)
951 {
952 	struct xfs_da_state_blk	*drop_blk;
953 	struct xfs_da_state_blk	*save_blk;
954 	int			action = 0;
955 	int			error;
956 
957 	trace_xfs_da_join(state->args);
958 
959 	drop_blk = &state->path.blk[ state->path.active-1 ];
960 	save_blk = &state->altpath.blk[ state->path.active-1 ];
961 	ASSERT(state->path.blk[0].magic == XFS_DA_NODE_MAGIC);
962 	ASSERT(drop_blk->magic == XFS_ATTR_LEAF_MAGIC ||
963 	       drop_blk->magic == XFS_DIR2_LEAFN_MAGIC);
964 
965 	/*
966 	 * Walk back up the tree joining/deallocating as necessary.
967 	 * When we stop dropping blocks, break out.
968 	 */
969 	for (  ; state->path.active >= 2; drop_blk--, save_blk--,
970 		 state->path.active--) {
971 		/*
972 		 * See if we can combine the block with a neighbor.
973 		 *   (action == 0) => no options, just leave
974 		 *   (action == 1) => coalesce, then unlink
975 		 *   (action == 2) => block empty, unlink it
976 		 */
977 		switch (drop_blk->magic) {
978 		case XFS_ATTR_LEAF_MAGIC:
979 			error = xfs_attr3_leaf_toosmall(state, &action);
980 			if (error)
981 				return error;
982 			if (action == 0)
983 				return 0;
984 			xfs_attr3_leaf_unbalance(state, drop_blk, save_blk);
985 			break;
986 		case XFS_DIR2_LEAFN_MAGIC:
987 			error = xfs_dir2_leafn_toosmall(state, &action);
988 			if (error)
989 				return error;
990 			if (action == 0)
991 				return 0;
992 			xfs_dir2_leafn_unbalance(state, drop_blk, save_blk);
993 			break;
994 		case XFS_DA_NODE_MAGIC:
995 			/*
996 			 * Remove the offending node, fixup hashvals,
997 			 * check for a toosmall neighbor.
998 			 */
999 			xfs_da3_node_remove(state, drop_blk);
1000 			xfs_da3_fixhashpath(state, &state->path);
1001 			error = xfs_da3_node_toosmall(state, &action);
1002 			if (error)
1003 				return error;
1004 			if (action == 0)
1005 				return 0;
1006 			xfs_da3_node_unbalance(state, drop_blk, save_blk);
1007 			break;
1008 		}
1009 		xfs_da3_fixhashpath(state, &state->altpath);
1010 		error = xfs_da3_blk_unlink(state, drop_blk, save_blk);
1011 		xfs_da_state_kill_altpath(state);
1012 		if (error)
1013 			return error;
1014 		error = xfs_da_shrink_inode(state->args, drop_blk->blkno,
1015 							 drop_blk->bp);
1016 		drop_blk->bp = NULL;
1017 		if (error)
1018 			return error;
1019 	}
1020 	/*
1021 	 * We joined all the way to the top.  If it turns out that
1022 	 * we only have one entry in the root, make the child block
1023 	 * the new root.
1024 	 */
1025 	xfs_da3_node_remove(state, drop_blk);
1026 	xfs_da3_fixhashpath(state, &state->path);
1027 	error = xfs_da3_root_join(state, &state->path.blk[0]);
1028 	return error;
1029 }
1030 
1031 #ifdef	DEBUG
1032 static void
1033 xfs_da_blkinfo_onlychild_validate(struct xfs_da_blkinfo *blkinfo, __u16 level)
1034 {
1035 	__be16	magic = blkinfo->magic;
1036 
1037 	if (level == 1) {
1038 		ASSERT(magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
1039 		       magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC) ||
1040 		       magic == cpu_to_be16(XFS_ATTR_LEAF_MAGIC) ||
1041 		       magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC));
1042 	} else {
1043 		ASSERT(magic == cpu_to_be16(XFS_DA_NODE_MAGIC) ||
1044 		       magic == cpu_to_be16(XFS_DA3_NODE_MAGIC));
1045 	}
1046 	ASSERT(!blkinfo->forw);
1047 	ASSERT(!blkinfo->back);
1048 }
1049 #else	/* !DEBUG */
1050 #define	xfs_da_blkinfo_onlychild_validate(blkinfo, level)
1051 #endif	/* !DEBUG */
1052 
1053 /*
1054  * We have only one entry in the root.  Copy the only remaining child of
1055  * the old root to block 0 as the new root node.
1056  */
1057 STATIC int
1058 xfs_da3_root_join(
1059 	struct xfs_da_state	*state,
1060 	struct xfs_da_state_blk	*root_blk)
1061 {
1062 	struct xfs_da_intnode	*oldroot;
1063 	struct xfs_da_args	*args;
1064 	xfs_dablk_t		child;
1065 	struct xfs_buf		*bp;
1066 	struct xfs_da3_icnode_hdr oldroothdr;
1067 	struct xfs_da_node_entry *btree;
1068 	int			error;
1069 	struct xfs_inode	*dp = state->args->dp;
1070 
1071 	trace_xfs_da_root_join(state->args);
1072 
1073 	ASSERT(root_blk->magic == XFS_DA_NODE_MAGIC);
1074 
1075 	args = state->args;
1076 	oldroot = root_blk->bp->b_addr;
1077 	dp->d_ops->node_hdr_from_disk(&oldroothdr, oldroot);
1078 	ASSERT(oldroothdr.forw == 0);
1079 	ASSERT(oldroothdr.back == 0);
1080 
1081 	/*
1082 	 * If the root has more than one child, then don't do anything.
1083 	 */
1084 	if (oldroothdr.count > 1)
1085 		return 0;
1086 
1087 	/*
1088 	 * Read in the (only) child block, then copy those bytes into
1089 	 * the root block's buffer and free the original child block.
1090 	 */
1091 	btree = dp->d_ops->node_tree_p(oldroot);
1092 	child = be32_to_cpu(btree[0].before);
1093 	ASSERT(child != 0);
1094 	error = xfs_da3_node_read(args->trans, dp, child, -1, &bp,
1095 					     args->whichfork);
1096 	if (error)
1097 		return error;
1098 	xfs_da_blkinfo_onlychild_validate(bp->b_addr, oldroothdr.level);
1099 
1100 	/*
1101 	 * This could be copying a leaf back into the root block in the case of
1102 	 * there only being a single leaf block left in the tree. Hence we have
1103 	 * to update the b_ops pointer as well to match the buffer type change
1104 	 * that could occur. For dir3 blocks we also need to update the block
1105 	 * number in the buffer header.
1106 	 */
1107 	memcpy(root_blk->bp->b_addr, bp->b_addr, args->geo->blksize);
1108 	root_blk->bp->b_ops = bp->b_ops;
1109 	xfs_trans_buf_copy_type(root_blk->bp, bp);
1110 	if (oldroothdr.magic == XFS_DA3_NODE_MAGIC) {
1111 		struct xfs_da3_blkinfo *da3 = root_blk->bp->b_addr;
1112 		da3->blkno = cpu_to_be64(root_blk->bp->b_bn);
1113 	}
1114 	xfs_trans_log_buf(args->trans, root_blk->bp, 0,
1115 			  args->geo->blksize - 1);
1116 	error = xfs_da_shrink_inode(args, child, bp);
1117 	return error;
1118 }
1119 
1120 /*
1121  * Check a node block and its neighbors to see if the block should be
1122  * collapsed into one or the other neighbor.  Always keep the block
1123  * with the smaller block number.
1124  * If the current block is over 50% full, don't try to join it, return 0.
1125  * If the block is empty, fill in the state structure and return 2.
1126  * If it can be collapsed, fill in the state structure and return 1.
1127  * If nothing can be done, return 0.
1128  */
1129 STATIC int
1130 xfs_da3_node_toosmall(
1131 	struct xfs_da_state	*state,
1132 	int			*action)
1133 {
1134 	struct xfs_da_intnode	*node;
1135 	struct xfs_da_state_blk	*blk;
1136 	struct xfs_da_blkinfo	*info;
1137 	xfs_dablk_t		blkno;
1138 	struct xfs_buf		*bp;
1139 	struct xfs_da3_icnode_hdr nodehdr;
1140 	int			count;
1141 	int			forward;
1142 	int			error;
1143 	int			retval;
1144 	int			i;
1145 	struct xfs_inode	*dp = state->args->dp;
1146 
1147 	trace_xfs_da_node_toosmall(state->args);
1148 
1149 	/*
1150 	 * Check for the degenerate case of the block being over 50% full.
1151 	 * If so, it's not worth even looking to see if we might be able
1152 	 * to coalesce with a sibling.
1153 	 */
1154 	blk = &state->path.blk[ state->path.active-1 ];
1155 	info = blk->bp->b_addr;
1156 	node = (xfs_da_intnode_t *)info;
1157 	dp->d_ops->node_hdr_from_disk(&nodehdr, node);
1158 	if (nodehdr.count > (state->args->geo->node_ents >> 1)) {
1159 		*action = 0;	/* blk over 50%, don't try to join */
1160 		return 0;	/* blk over 50%, don't try to join */
1161 	}
1162 
1163 	/*
1164 	 * Check for the degenerate case of the block being empty.
1165 	 * If the block is empty, we'll simply delete it, no need to
1166 	 * coalesce it with a sibling block.  We choose (arbitrarily)
1167 	 * to merge with the forward block unless it is NULL.
1168 	 */
1169 	if (nodehdr.count == 0) {
1170 		/*
1171 		 * Make altpath point to the block we want to keep and
1172 		 * path point to the block we want to drop (this one).
1173 		 */
1174 		forward = (info->forw != 0);
1175 		memcpy(&state->altpath, &state->path, sizeof(state->path));
1176 		error = xfs_da3_path_shift(state, &state->altpath, forward,
1177 						 0, &retval);
1178 		if (error)
1179 			return error;
1180 		if (retval) {
1181 			*action = 0;
1182 		} else {
1183 			*action = 2;
1184 		}
1185 		return 0;
1186 	}
1187 
1188 	/*
1189 	 * Examine each sibling block to see if we can coalesce with
1190 	 * at least 25% free space to spare.  We need to figure out
1191 	 * whether to merge with the forward or the backward block.
1192 	 * We prefer coalescing with the lower numbered sibling so as
1193 	 * to shrink a directory over time.
1194 	 */
1195 	count  = state->args->geo->node_ents;
1196 	count -= state->args->geo->node_ents >> 2;
1197 	count -= nodehdr.count;
1198 
1199 	/* start with smaller blk num */
1200 	forward = nodehdr.forw < nodehdr.back;
1201 	for (i = 0; i < 2; forward = !forward, i++) {
1202 		struct xfs_da3_icnode_hdr thdr;
1203 		if (forward)
1204 			blkno = nodehdr.forw;
1205 		else
1206 			blkno = nodehdr.back;
1207 		if (blkno == 0)
1208 			continue;
1209 		error = xfs_da3_node_read(state->args->trans, dp,
1210 					blkno, -1, &bp, state->args->whichfork);
1211 		if (error)
1212 			return error;
1213 
1214 		node = bp->b_addr;
1215 		dp->d_ops->node_hdr_from_disk(&thdr, node);
1216 		xfs_trans_brelse(state->args->trans, bp);
1217 
1218 		if (count - thdr.count >= 0)
1219 			break;	/* fits with at least 25% to spare */
1220 	}
1221 	if (i >= 2) {
1222 		*action = 0;
1223 		return 0;
1224 	}
1225 
1226 	/*
1227 	 * Make altpath point to the block we want to keep (the lower
1228 	 * numbered block) and path point to the block we want to drop.
1229 	 */
1230 	memcpy(&state->altpath, &state->path, sizeof(state->path));
1231 	if (blkno < blk->blkno) {
1232 		error = xfs_da3_path_shift(state, &state->altpath, forward,
1233 						 0, &retval);
1234 	} else {
1235 		error = xfs_da3_path_shift(state, &state->path, forward,
1236 						 0, &retval);
1237 	}
1238 	if (error)
1239 		return error;
1240 	if (retval) {
1241 		*action = 0;
1242 		return 0;
1243 	}
1244 	*action = 1;
1245 	return 0;
1246 }
1247 
1248 /*
1249  * Pick up the last hashvalue from an intermediate node.
1250  */
1251 STATIC uint
1252 xfs_da3_node_lasthash(
1253 	struct xfs_inode	*dp,
1254 	struct xfs_buf		*bp,
1255 	int			*count)
1256 {
1257 	struct xfs_da_intnode	 *node;
1258 	struct xfs_da_node_entry *btree;
1259 	struct xfs_da3_icnode_hdr nodehdr;
1260 
1261 	node = bp->b_addr;
1262 	dp->d_ops->node_hdr_from_disk(&nodehdr, node);
1263 	if (count)
1264 		*count = nodehdr.count;
1265 	if (!nodehdr.count)
1266 		return 0;
1267 	btree = dp->d_ops->node_tree_p(node);
1268 	return be32_to_cpu(btree[nodehdr.count - 1].hashval);
1269 }
1270 
1271 /*
1272  * Walk back up the tree adjusting hash values as necessary,
1273  * when we stop making changes, return.
1274  */
1275 void
1276 xfs_da3_fixhashpath(
1277 	struct xfs_da_state	*state,
1278 	struct xfs_da_state_path *path)
1279 {
1280 	struct xfs_da_state_blk	*blk;
1281 	struct xfs_da_intnode	*node;
1282 	struct xfs_da_node_entry *btree;
1283 	xfs_dahash_t		lasthash=0;
1284 	int			level;
1285 	int			count;
1286 	struct xfs_inode	*dp = state->args->dp;
1287 
1288 	trace_xfs_da_fixhashpath(state->args);
1289 
1290 	level = path->active-1;
1291 	blk = &path->blk[ level ];
1292 	switch (blk->magic) {
1293 	case XFS_ATTR_LEAF_MAGIC:
1294 		lasthash = xfs_attr_leaf_lasthash(blk->bp, &count);
1295 		if (count == 0)
1296 			return;
1297 		break;
1298 	case XFS_DIR2_LEAFN_MAGIC:
1299 		lasthash = xfs_dir2_leaf_lasthash(dp, blk->bp, &count);
1300 		if (count == 0)
1301 			return;
1302 		break;
1303 	case XFS_DA_NODE_MAGIC:
1304 		lasthash = xfs_da3_node_lasthash(dp, blk->bp, &count);
1305 		if (count == 0)
1306 			return;
1307 		break;
1308 	}
1309 	for (blk--, level--; level >= 0; blk--, level--) {
1310 		struct xfs_da3_icnode_hdr nodehdr;
1311 
1312 		node = blk->bp->b_addr;
1313 		dp->d_ops->node_hdr_from_disk(&nodehdr, node);
1314 		btree = dp->d_ops->node_tree_p(node);
1315 		if (be32_to_cpu(btree[blk->index].hashval) == lasthash)
1316 			break;
1317 		blk->hashval = lasthash;
1318 		btree[blk->index].hashval = cpu_to_be32(lasthash);
1319 		xfs_trans_log_buf(state->args->trans, blk->bp,
1320 				  XFS_DA_LOGRANGE(node, &btree[blk->index],
1321 						  sizeof(*btree)));
1322 
1323 		lasthash = be32_to_cpu(btree[nodehdr.count - 1].hashval);
1324 	}
1325 }
1326 
1327 /*
1328  * Remove an entry from an intermediate node.
1329  */
1330 STATIC void
1331 xfs_da3_node_remove(
1332 	struct xfs_da_state	*state,
1333 	struct xfs_da_state_blk	*drop_blk)
1334 {
1335 	struct xfs_da_intnode	*node;
1336 	struct xfs_da3_icnode_hdr nodehdr;
1337 	struct xfs_da_node_entry *btree;
1338 	int			index;
1339 	int			tmp;
1340 	struct xfs_inode	*dp = state->args->dp;
1341 
1342 	trace_xfs_da_node_remove(state->args);
1343 
1344 	node = drop_blk->bp->b_addr;
1345 	dp->d_ops->node_hdr_from_disk(&nodehdr, node);
1346 	ASSERT(drop_blk->index < nodehdr.count);
1347 	ASSERT(drop_blk->index >= 0);
1348 
1349 	/*
1350 	 * Copy over the offending entry, or just zero it out.
1351 	 */
1352 	index = drop_blk->index;
1353 	btree = dp->d_ops->node_tree_p(node);
1354 	if (index < nodehdr.count - 1) {
1355 		tmp  = nodehdr.count - index - 1;
1356 		tmp *= (uint)sizeof(xfs_da_node_entry_t);
1357 		memmove(&btree[index], &btree[index + 1], tmp);
1358 		xfs_trans_log_buf(state->args->trans, drop_blk->bp,
1359 		    XFS_DA_LOGRANGE(node, &btree[index], tmp));
1360 		index = nodehdr.count - 1;
1361 	}
1362 	memset(&btree[index], 0, sizeof(xfs_da_node_entry_t));
1363 	xfs_trans_log_buf(state->args->trans, drop_blk->bp,
1364 	    XFS_DA_LOGRANGE(node, &btree[index], sizeof(btree[index])));
1365 	nodehdr.count -= 1;
1366 	dp->d_ops->node_hdr_to_disk(node, &nodehdr);
1367 	xfs_trans_log_buf(state->args->trans, drop_blk->bp,
1368 	    XFS_DA_LOGRANGE(node, &node->hdr, dp->d_ops->node_hdr_size));
1369 
1370 	/*
1371 	 * Copy the last hash value from the block to propagate upwards.
1372 	 */
1373 	drop_blk->hashval = be32_to_cpu(btree[index - 1].hashval);
1374 }
1375 
1376 /*
1377  * Unbalance the elements between two intermediate nodes,
1378  * move all Btree elements from one node into another.
1379  */
1380 STATIC void
1381 xfs_da3_node_unbalance(
1382 	struct xfs_da_state	*state,
1383 	struct xfs_da_state_blk	*drop_blk,
1384 	struct xfs_da_state_blk	*save_blk)
1385 {
1386 	struct xfs_da_intnode	*drop_node;
1387 	struct xfs_da_intnode	*save_node;
1388 	struct xfs_da_node_entry *drop_btree;
1389 	struct xfs_da_node_entry *save_btree;
1390 	struct xfs_da3_icnode_hdr drop_hdr;
1391 	struct xfs_da3_icnode_hdr save_hdr;
1392 	struct xfs_trans	*tp;
1393 	int			sindex;
1394 	int			tmp;
1395 	struct xfs_inode	*dp = state->args->dp;
1396 
1397 	trace_xfs_da_node_unbalance(state->args);
1398 
1399 	drop_node = drop_blk->bp->b_addr;
1400 	save_node = save_blk->bp->b_addr;
1401 	dp->d_ops->node_hdr_from_disk(&drop_hdr, drop_node);
1402 	dp->d_ops->node_hdr_from_disk(&save_hdr, save_node);
1403 	drop_btree = dp->d_ops->node_tree_p(drop_node);
1404 	save_btree = dp->d_ops->node_tree_p(save_node);
1405 	tp = state->args->trans;
1406 
1407 	/*
1408 	 * If the dying block has lower hashvals, then move all the
1409 	 * elements in the remaining block up to make a hole.
1410 	 */
1411 	if ((be32_to_cpu(drop_btree[0].hashval) <
1412 			be32_to_cpu(save_btree[0].hashval)) ||
1413 	    (be32_to_cpu(drop_btree[drop_hdr.count - 1].hashval) <
1414 			be32_to_cpu(save_btree[save_hdr.count - 1].hashval))) {
1415 		/* XXX: check this - is memmove dst correct? */
1416 		tmp = save_hdr.count * sizeof(xfs_da_node_entry_t);
1417 		memmove(&save_btree[drop_hdr.count], &save_btree[0], tmp);
1418 
1419 		sindex = 0;
1420 		xfs_trans_log_buf(tp, save_blk->bp,
1421 			XFS_DA_LOGRANGE(save_node, &save_btree[0],
1422 				(save_hdr.count + drop_hdr.count) *
1423 						sizeof(xfs_da_node_entry_t)));
1424 	} else {
1425 		sindex = save_hdr.count;
1426 		xfs_trans_log_buf(tp, save_blk->bp,
1427 			XFS_DA_LOGRANGE(save_node, &save_btree[sindex],
1428 				drop_hdr.count * sizeof(xfs_da_node_entry_t)));
1429 	}
1430 
1431 	/*
1432 	 * Move all the B-tree elements from drop_blk to save_blk.
1433 	 */
1434 	tmp = drop_hdr.count * (uint)sizeof(xfs_da_node_entry_t);
1435 	memcpy(&save_btree[sindex], &drop_btree[0], tmp);
1436 	save_hdr.count += drop_hdr.count;
1437 
1438 	dp->d_ops->node_hdr_to_disk(save_node, &save_hdr);
1439 	xfs_trans_log_buf(tp, save_blk->bp,
1440 		XFS_DA_LOGRANGE(save_node, &save_node->hdr,
1441 				dp->d_ops->node_hdr_size));
1442 
1443 	/*
1444 	 * Save the last hashval in the remaining block for upward propagation.
1445 	 */
1446 	save_blk->hashval = be32_to_cpu(save_btree[save_hdr.count - 1].hashval);
1447 }
1448 
1449 /*========================================================================
1450  * Routines used for finding things in the Btree.
1451  *========================================================================*/
1452 
1453 /*
1454  * Walk down the Btree looking for a particular filename, filling
1455  * in the state structure as we go.
1456  *
1457  * We will set the state structure to point to each of the elements
1458  * in each of the nodes where either the hashval is or should be.
1459  *
1460  * We support duplicate hashval's so for each entry in the current
1461  * node that could contain the desired hashval, descend.  This is a
1462  * pruned depth-first tree search.
1463  */
1464 int							/* error */
1465 xfs_da3_node_lookup_int(
1466 	struct xfs_da_state	*state,
1467 	int			*result)
1468 {
1469 	struct xfs_da_state_blk	*blk;
1470 	struct xfs_da_blkinfo	*curr;
1471 	struct xfs_da_intnode	*node;
1472 	struct xfs_da_node_entry *btree;
1473 	struct xfs_da3_icnode_hdr nodehdr;
1474 	struct xfs_da_args	*args;
1475 	xfs_dablk_t		blkno;
1476 	xfs_dahash_t		hashval;
1477 	xfs_dahash_t		btreehashval;
1478 	int			probe;
1479 	int			span;
1480 	int			max;
1481 	int			error;
1482 	int			retval;
1483 	unsigned int		expected_level = 0;
1484 	struct xfs_inode	*dp = state->args->dp;
1485 
1486 	args = state->args;
1487 
1488 	/*
1489 	 * Descend thru the B-tree searching each level for the right
1490 	 * node to use, until the right hashval is found.
1491 	 */
1492 	blkno = args->geo->leafblk;
1493 	for (blk = &state->path.blk[0], state->path.active = 1;
1494 			 state->path.active <= XFS_DA_NODE_MAXDEPTH;
1495 			 blk++, state->path.active++) {
1496 		/*
1497 		 * Read the next node down in the tree.
1498 		 */
1499 		blk->blkno = blkno;
1500 		error = xfs_da3_node_read(args->trans, args->dp, blkno,
1501 					-1, &blk->bp, args->whichfork);
1502 		if (error) {
1503 			blk->blkno = 0;
1504 			state->path.active--;
1505 			return error;
1506 		}
1507 		curr = blk->bp->b_addr;
1508 		blk->magic = be16_to_cpu(curr->magic);
1509 
1510 		if (blk->magic == XFS_ATTR_LEAF_MAGIC ||
1511 		    blk->magic == XFS_ATTR3_LEAF_MAGIC) {
1512 			blk->magic = XFS_ATTR_LEAF_MAGIC;
1513 			blk->hashval = xfs_attr_leaf_lasthash(blk->bp, NULL);
1514 			break;
1515 		}
1516 
1517 		if (blk->magic == XFS_DIR2_LEAFN_MAGIC ||
1518 		    blk->magic == XFS_DIR3_LEAFN_MAGIC) {
1519 			blk->magic = XFS_DIR2_LEAFN_MAGIC;
1520 			blk->hashval = xfs_dir2_leaf_lasthash(args->dp,
1521 							      blk->bp, NULL);
1522 			break;
1523 		}
1524 
1525 		blk->magic = XFS_DA_NODE_MAGIC;
1526 
1527 
1528 		/*
1529 		 * Search an intermediate node for a match.
1530 		 */
1531 		node = blk->bp->b_addr;
1532 		dp->d_ops->node_hdr_from_disk(&nodehdr, node);
1533 		btree = dp->d_ops->node_tree_p(node);
1534 
1535 		/* Tree taller than we can handle; bail out! */
1536 		if (nodehdr.level >= XFS_DA_NODE_MAXDEPTH)
1537 			return -EFSCORRUPTED;
1538 
1539 		/* Check the level from the root. */
1540 		if (blkno == args->geo->leafblk)
1541 			expected_level = nodehdr.level - 1;
1542 		else if (expected_level != nodehdr.level)
1543 			return -EFSCORRUPTED;
1544 		else
1545 			expected_level--;
1546 
1547 		max = nodehdr.count;
1548 		blk->hashval = be32_to_cpu(btree[max - 1].hashval);
1549 
1550 		/*
1551 		 * Binary search.  (note: small blocks will skip loop)
1552 		 */
1553 		probe = span = max / 2;
1554 		hashval = args->hashval;
1555 		while (span > 4) {
1556 			span /= 2;
1557 			btreehashval = be32_to_cpu(btree[probe].hashval);
1558 			if (btreehashval < hashval)
1559 				probe += span;
1560 			else if (btreehashval > hashval)
1561 				probe -= span;
1562 			else
1563 				break;
1564 		}
1565 		ASSERT((probe >= 0) && (probe < max));
1566 		ASSERT((span <= 4) ||
1567 			(be32_to_cpu(btree[probe].hashval) == hashval));
1568 
1569 		/*
1570 		 * Since we may have duplicate hashval's, find the first
1571 		 * matching hashval in the node.
1572 		 */
1573 		while (probe > 0 &&
1574 		       be32_to_cpu(btree[probe].hashval) >= hashval) {
1575 			probe--;
1576 		}
1577 		while (probe < max &&
1578 		       be32_to_cpu(btree[probe].hashval) < hashval) {
1579 			probe++;
1580 		}
1581 
1582 		/*
1583 		 * Pick the right block to descend on.
1584 		 */
1585 		if (probe == max) {
1586 			blk->index = max - 1;
1587 			blkno = be32_to_cpu(btree[max - 1].before);
1588 		} else {
1589 			blk->index = probe;
1590 			blkno = be32_to_cpu(btree[probe].before);
1591 		}
1592 
1593 		/* We can't point back to the root. */
1594 		if (blkno == args->geo->leafblk)
1595 			return -EFSCORRUPTED;
1596 	}
1597 
1598 	if (expected_level != 0)
1599 		return -EFSCORRUPTED;
1600 
1601 	/*
1602 	 * A leaf block that ends in the hashval that we are interested in
1603 	 * (final hashval == search hashval) means that the next block may
1604 	 * contain more entries with the same hashval, shift upward to the
1605 	 * next leaf and keep searching.
1606 	 */
1607 	for (;;) {
1608 		if (blk->magic == XFS_DIR2_LEAFN_MAGIC) {
1609 			retval = xfs_dir2_leafn_lookup_int(blk->bp, args,
1610 							&blk->index, state);
1611 		} else if (blk->magic == XFS_ATTR_LEAF_MAGIC) {
1612 			retval = xfs_attr3_leaf_lookup_int(blk->bp, args);
1613 			blk->index = args->index;
1614 			args->blkno = blk->blkno;
1615 		} else {
1616 			ASSERT(0);
1617 			return -EFSCORRUPTED;
1618 		}
1619 		if (((retval == -ENOENT) || (retval == -ENOATTR)) &&
1620 		    (blk->hashval == args->hashval)) {
1621 			error = xfs_da3_path_shift(state, &state->path, 1, 1,
1622 							 &retval);
1623 			if (error)
1624 				return error;
1625 			if (retval == 0) {
1626 				continue;
1627 			} else if (blk->magic == XFS_ATTR_LEAF_MAGIC) {
1628 				/* path_shift() gives ENOENT */
1629 				retval = -ENOATTR;
1630 			}
1631 		}
1632 		break;
1633 	}
1634 	*result = retval;
1635 	return 0;
1636 }
1637 
1638 /*========================================================================
1639  * Utility routines.
1640  *========================================================================*/
1641 
1642 /*
1643  * Compare two intermediate nodes for "order".
1644  */
1645 STATIC int
1646 xfs_da3_node_order(
1647 	struct xfs_inode *dp,
1648 	struct xfs_buf	*node1_bp,
1649 	struct xfs_buf	*node2_bp)
1650 {
1651 	struct xfs_da_intnode	*node1;
1652 	struct xfs_da_intnode	*node2;
1653 	struct xfs_da_node_entry *btree1;
1654 	struct xfs_da_node_entry *btree2;
1655 	struct xfs_da3_icnode_hdr node1hdr;
1656 	struct xfs_da3_icnode_hdr node2hdr;
1657 
1658 	node1 = node1_bp->b_addr;
1659 	node2 = node2_bp->b_addr;
1660 	dp->d_ops->node_hdr_from_disk(&node1hdr, node1);
1661 	dp->d_ops->node_hdr_from_disk(&node2hdr, node2);
1662 	btree1 = dp->d_ops->node_tree_p(node1);
1663 	btree2 = dp->d_ops->node_tree_p(node2);
1664 
1665 	if (node1hdr.count > 0 && node2hdr.count > 0 &&
1666 	    ((be32_to_cpu(btree2[0].hashval) < be32_to_cpu(btree1[0].hashval)) ||
1667 	     (be32_to_cpu(btree2[node2hdr.count - 1].hashval) <
1668 	      be32_to_cpu(btree1[node1hdr.count - 1].hashval)))) {
1669 		return 1;
1670 	}
1671 	return 0;
1672 }
1673 
1674 /*
1675  * Link a new block into a doubly linked list of blocks (of whatever type).
1676  */
1677 int							/* error */
1678 xfs_da3_blk_link(
1679 	struct xfs_da_state	*state,
1680 	struct xfs_da_state_blk	*old_blk,
1681 	struct xfs_da_state_blk	*new_blk)
1682 {
1683 	struct xfs_da_blkinfo	*old_info;
1684 	struct xfs_da_blkinfo	*new_info;
1685 	struct xfs_da_blkinfo	*tmp_info;
1686 	struct xfs_da_args	*args;
1687 	struct xfs_buf		*bp;
1688 	int			before = 0;
1689 	int			error;
1690 	struct xfs_inode	*dp = state->args->dp;
1691 
1692 	/*
1693 	 * Set up environment.
1694 	 */
1695 	args = state->args;
1696 	ASSERT(args != NULL);
1697 	old_info = old_blk->bp->b_addr;
1698 	new_info = new_blk->bp->b_addr;
1699 	ASSERT(old_blk->magic == XFS_DA_NODE_MAGIC ||
1700 	       old_blk->magic == XFS_DIR2_LEAFN_MAGIC ||
1701 	       old_blk->magic == XFS_ATTR_LEAF_MAGIC);
1702 
1703 	switch (old_blk->magic) {
1704 	case XFS_ATTR_LEAF_MAGIC:
1705 		before = xfs_attr_leaf_order(old_blk->bp, new_blk->bp);
1706 		break;
1707 	case XFS_DIR2_LEAFN_MAGIC:
1708 		before = xfs_dir2_leafn_order(dp, old_blk->bp, new_blk->bp);
1709 		break;
1710 	case XFS_DA_NODE_MAGIC:
1711 		before = xfs_da3_node_order(dp, old_blk->bp, new_blk->bp);
1712 		break;
1713 	}
1714 
1715 	/*
1716 	 * Link blocks in appropriate order.
1717 	 */
1718 	if (before) {
1719 		/*
1720 		 * Link new block in before existing block.
1721 		 */
1722 		trace_xfs_da_link_before(args);
1723 		new_info->forw = cpu_to_be32(old_blk->blkno);
1724 		new_info->back = old_info->back;
1725 		if (old_info->back) {
1726 			error = xfs_da3_node_read(args->trans, dp,
1727 						be32_to_cpu(old_info->back),
1728 						-1, &bp, args->whichfork);
1729 			if (error)
1730 				return error;
1731 			ASSERT(bp != NULL);
1732 			tmp_info = bp->b_addr;
1733 			ASSERT(tmp_info->magic == old_info->magic);
1734 			ASSERT(be32_to_cpu(tmp_info->forw) == old_blk->blkno);
1735 			tmp_info->forw = cpu_to_be32(new_blk->blkno);
1736 			xfs_trans_log_buf(args->trans, bp, 0, sizeof(*tmp_info)-1);
1737 		}
1738 		old_info->back = cpu_to_be32(new_blk->blkno);
1739 	} else {
1740 		/*
1741 		 * Link new block in after existing block.
1742 		 */
1743 		trace_xfs_da_link_after(args);
1744 		new_info->forw = old_info->forw;
1745 		new_info->back = cpu_to_be32(old_blk->blkno);
1746 		if (old_info->forw) {
1747 			error = xfs_da3_node_read(args->trans, dp,
1748 						be32_to_cpu(old_info->forw),
1749 						-1, &bp, args->whichfork);
1750 			if (error)
1751 				return error;
1752 			ASSERT(bp != NULL);
1753 			tmp_info = bp->b_addr;
1754 			ASSERT(tmp_info->magic == old_info->magic);
1755 			ASSERT(be32_to_cpu(tmp_info->back) == old_blk->blkno);
1756 			tmp_info->back = cpu_to_be32(new_blk->blkno);
1757 			xfs_trans_log_buf(args->trans, bp, 0, sizeof(*tmp_info)-1);
1758 		}
1759 		old_info->forw = cpu_to_be32(new_blk->blkno);
1760 	}
1761 
1762 	xfs_trans_log_buf(args->trans, old_blk->bp, 0, sizeof(*tmp_info) - 1);
1763 	xfs_trans_log_buf(args->trans, new_blk->bp, 0, sizeof(*tmp_info) - 1);
1764 	return 0;
1765 }
1766 
1767 /*
1768  * Unlink a block from a doubly linked list of blocks.
1769  */
1770 STATIC int						/* error */
1771 xfs_da3_blk_unlink(
1772 	struct xfs_da_state	*state,
1773 	struct xfs_da_state_blk	*drop_blk,
1774 	struct xfs_da_state_blk	*save_blk)
1775 {
1776 	struct xfs_da_blkinfo	*drop_info;
1777 	struct xfs_da_blkinfo	*save_info;
1778 	struct xfs_da_blkinfo	*tmp_info;
1779 	struct xfs_da_args	*args;
1780 	struct xfs_buf		*bp;
1781 	int			error;
1782 
1783 	/*
1784 	 * Set up environment.
1785 	 */
1786 	args = state->args;
1787 	ASSERT(args != NULL);
1788 	save_info = save_blk->bp->b_addr;
1789 	drop_info = drop_blk->bp->b_addr;
1790 	ASSERT(save_blk->magic == XFS_DA_NODE_MAGIC ||
1791 	       save_blk->magic == XFS_DIR2_LEAFN_MAGIC ||
1792 	       save_blk->magic == XFS_ATTR_LEAF_MAGIC);
1793 	ASSERT(save_blk->magic == drop_blk->magic);
1794 	ASSERT((be32_to_cpu(save_info->forw) == drop_blk->blkno) ||
1795 	       (be32_to_cpu(save_info->back) == drop_blk->blkno));
1796 	ASSERT((be32_to_cpu(drop_info->forw) == save_blk->blkno) ||
1797 	       (be32_to_cpu(drop_info->back) == save_blk->blkno));
1798 
1799 	/*
1800 	 * Unlink the leaf block from the doubly linked chain of leaves.
1801 	 */
1802 	if (be32_to_cpu(save_info->back) == drop_blk->blkno) {
1803 		trace_xfs_da_unlink_back(args);
1804 		save_info->back = drop_info->back;
1805 		if (drop_info->back) {
1806 			error = xfs_da3_node_read(args->trans, args->dp,
1807 						be32_to_cpu(drop_info->back),
1808 						-1, &bp, args->whichfork);
1809 			if (error)
1810 				return error;
1811 			ASSERT(bp != NULL);
1812 			tmp_info = bp->b_addr;
1813 			ASSERT(tmp_info->magic == save_info->magic);
1814 			ASSERT(be32_to_cpu(tmp_info->forw) == drop_blk->blkno);
1815 			tmp_info->forw = cpu_to_be32(save_blk->blkno);
1816 			xfs_trans_log_buf(args->trans, bp, 0,
1817 						    sizeof(*tmp_info) - 1);
1818 		}
1819 	} else {
1820 		trace_xfs_da_unlink_forward(args);
1821 		save_info->forw = drop_info->forw;
1822 		if (drop_info->forw) {
1823 			error = xfs_da3_node_read(args->trans, args->dp,
1824 						be32_to_cpu(drop_info->forw),
1825 						-1, &bp, args->whichfork);
1826 			if (error)
1827 				return error;
1828 			ASSERT(bp != NULL);
1829 			tmp_info = bp->b_addr;
1830 			ASSERT(tmp_info->magic == save_info->magic);
1831 			ASSERT(be32_to_cpu(tmp_info->back) == drop_blk->blkno);
1832 			tmp_info->back = cpu_to_be32(save_blk->blkno);
1833 			xfs_trans_log_buf(args->trans, bp, 0,
1834 						    sizeof(*tmp_info) - 1);
1835 		}
1836 	}
1837 
1838 	xfs_trans_log_buf(args->trans, save_blk->bp, 0, sizeof(*save_info) - 1);
1839 	return 0;
1840 }
1841 
1842 /*
1843  * Move a path "forward" or "!forward" one block at the current level.
1844  *
1845  * This routine will adjust a "path" to point to the next block
1846  * "forward" (higher hashvalues) or "!forward" (lower hashvals) in the
1847  * Btree, including updating pointers to the intermediate nodes between
1848  * the new bottom and the root.
1849  */
1850 int							/* error */
1851 xfs_da3_path_shift(
1852 	struct xfs_da_state	*state,
1853 	struct xfs_da_state_path *path,
1854 	int			forward,
1855 	int			release,
1856 	int			*result)
1857 {
1858 	struct xfs_da_state_blk	*blk;
1859 	struct xfs_da_blkinfo	*info;
1860 	struct xfs_da_intnode	*node;
1861 	struct xfs_da_args	*args;
1862 	struct xfs_da_node_entry *btree;
1863 	struct xfs_da3_icnode_hdr nodehdr;
1864 	struct xfs_buf		*bp;
1865 	xfs_dablk_t		blkno = 0;
1866 	int			level;
1867 	int			error;
1868 	struct xfs_inode	*dp = state->args->dp;
1869 
1870 	trace_xfs_da_path_shift(state->args);
1871 
1872 	/*
1873 	 * Roll up the Btree looking for the first block where our
1874 	 * current index is not at the edge of the block.  Note that
1875 	 * we skip the bottom layer because we want the sibling block.
1876 	 */
1877 	args = state->args;
1878 	ASSERT(args != NULL);
1879 	ASSERT(path != NULL);
1880 	ASSERT((path->active > 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1881 	level = (path->active-1) - 1;	/* skip bottom layer in path */
1882 	for (blk = &path->blk[level]; level >= 0; blk--, level--) {
1883 		node = blk->bp->b_addr;
1884 		dp->d_ops->node_hdr_from_disk(&nodehdr, node);
1885 		btree = dp->d_ops->node_tree_p(node);
1886 
1887 		if (forward && (blk->index < nodehdr.count - 1)) {
1888 			blk->index++;
1889 			blkno = be32_to_cpu(btree[blk->index].before);
1890 			break;
1891 		} else if (!forward && (blk->index > 0)) {
1892 			blk->index--;
1893 			blkno = be32_to_cpu(btree[blk->index].before);
1894 			break;
1895 		}
1896 	}
1897 	if (level < 0) {
1898 		*result = -ENOENT;	/* we're out of our tree */
1899 		ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
1900 		return 0;
1901 	}
1902 
1903 	/*
1904 	 * Roll down the edge of the subtree until we reach the
1905 	 * same depth we were at originally.
1906 	 */
1907 	for (blk++, level++; level < path->active; blk++, level++) {
1908 		/*
1909 		 * Read the next child block into a local buffer.
1910 		 */
1911 		error = xfs_da3_node_read(args->trans, dp, blkno, -1, &bp,
1912 					  args->whichfork);
1913 		if (error)
1914 			return error;
1915 
1916 		/*
1917 		 * Release the old block (if it's dirty, the trans doesn't
1918 		 * actually let go) and swap the local buffer into the path
1919 		 * structure. This ensures failure of the above read doesn't set
1920 		 * a NULL buffer in an active slot in the path.
1921 		 */
1922 		if (release)
1923 			xfs_trans_brelse(args->trans, blk->bp);
1924 		blk->blkno = blkno;
1925 		blk->bp = bp;
1926 
1927 		info = blk->bp->b_addr;
1928 		ASSERT(info->magic == cpu_to_be16(XFS_DA_NODE_MAGIC) ||
1929 		       info->magic == cpu_to_be16(XFS_DA3_NODE_MAGIC) ||
1930 		       info->magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
1931 		       info->magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC) ||
1932 		       info->magic == cpu_to_be16(XFS_ATTR_LEAF_MAGIC) ||
1933 		       info->magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC));
1934 
1935 
1936 		/*
1937 		 * Note: we flatten the magic number to a single type so we
1938 		 * don't have to compare against crc/non-crc types elsewhere.
1939 		 */
1940 		switch (be16_to_cpu(info->magic)) {
1941 		case XFS_DA_NODE_MAGIC:
1942 		case XFS_DA3_NODE_MAGIC:
1943 			blk->magic = XFS_DA_NODE_MAGIC;
1944 			node = (xfs_da_intnode_t *)info;
1945 			dp->d_ops->node_hdr_from_disk(&nodehdr, node);
1946 			btree = dp->d_ops->node_tree_p(node);
1947 			blk->hashval = be32_to_cpu(btree[nodehdr.count - 1].hashval);
1948 			if (forward)
1949 				blk->index = 0;
1950 			else
1951 				blk->index = nodehdr.count - 1;
1952 			blkno = be32_to_cpu(btree[blk->index].before);
1953 			break;
1954 		case XFS_ATTR_LEAF_MAGIC:
1955 		case XFS_ATTR3_LEAF_MAGIC:
1956 			blk->magic = XFS_ATTR_LEAF_MAGIC;
1957 			ASSERT(level == path->active-1);
1958 			blk->index = 0;
1959 			blk->hashval = xfs_attr_leaf_lasthash(blk->bp, NULL);
1960 			break;
1961 		case XFS_DIR2_LEAFN_MAGIC:
1962 		case XFS_DIR3_LEAFN_MAGIC:
1963 			blk->magic = XFS_DIR2_LEAFN_MAGIC;
1964 			ASSERT(level == path->active-1);
1965 			blk->index = 0;
1966 			blk->hashval = xfs_dir2_leaf_lasthash(args->dp,
1967 							      blk->bp, NULL);
1968 			break;
1969 		default:
1970 			ASSERT(0);
1971 			break;
1972 		}
1973 	}
1974 	*result = 0;
1975 	return 0;
1976 }
1977 
1978 
1979 /*========================================================================
1980  * Utility routines.
1981  *========================================================================*/
1982 
1983 /*
1984  * Implement a simple hash on a character string.
1985  * Rotate the hash value by 7 bits, then XOR each character in.
1986  * This is implemented with some source-level loop unrolling.
1987  */
1988 xfs_dahash_t
1989 xfs_da_hashname(const uint8_t *name, int namelen)
1990 {
1991 	xfs_dahash_t hash;
1992 
1993 	/*
1994 	 * Do four characters at a time as long as we can.
1995 	 */
1996 	for (hash = 0; namelen >= 4; namelen -= 4, name += 4)
1997 		hash = (name[0] << 21) ^ (name[1] << 14) ^ (name[2] << 7) ^
1998 		       (name[3] << 0) ^ rol32(hash, 7 * 4);
1999 
2000 	/*
2001 	 * Now do the rest of the characters.
2002 	 */
2003 	switch (namelen) {
2004 	case 3:
2005 		return (name[0] << 14) ^ (name[1] << 7) ^ (name[2] << 0) ^
2006 		       rol32(hash, 7 * 3);
2007 	case 2:
2008 		return (name[0] << 7) ^ (name[1] << 0) ^ rol32(hash, 7 * 2);
2009 	case 1:
2010 		return (name[0] << 0) ^ rol32(hash, 7 * 1);
2011 	default: /* case 0: */
2012 		return hash;
2013 	}
2014 }
2015 
2016 enum xfs_dacmp
2017 xfs_da_compname(
2018 	struct xfs_da_args *args,
2019 	const unsigned char *name,
2020 	int		len)
2021 {
2022 	return (args->namelen == len && memcmp(args->name, name, len) == 0) ?
2023 					XFS_CMP_EXACT : XFS_CMP_DIFFERENT;
2024 }
2025 
2026 static xfs_dahash_t
2027 xfs_default_hashname(
2028 	struct xfs_name	*name)
2029 {
2030 	return xfs_da_hashname(name->name, name->len);
2031 }
2032 
2033 const struct xfs_nameops xfs_default_nameops = {
2034 	.hashname	= xfs_default_hashname,
2035 	.compname	= xfs_da_compname
2036 };
2037 
2038 int
2039 xfs_da_grow_inode_int(
2040 	struct xfs_da_args	*args,
2041 	xfs_fileoff_t		*bno,
2042 	int			count)
2043 {
2044 	struct xfs_trans	*tp = args->trans;
2045 	struct xfs_inode	*dp = args->dp;
2046 	int			w = args->whichfork;
2047 	xfs_rfsblock_t		nblks = dp->i_d.di_nblocks;
2048 	struct xfs_bmbt_irec	map, *mapp;
2049 	int			nmap, error, got, i, mapi;
2050 
2051 	/*
2052 	 * Find a spot in the file space to put the new block.
2053 	 */
2054 	error = xfs_bmap_first_unused(tp, dp, count, bno, w);
2055 	if (error)
2056 		return error;
2057 
2058 	/*
2059 	 * Try mapping it in one filesystem block.
2060 	 */
2061 	nmap = 1;
2062 	ASSERT(args->firstblock != NULL);
2063 	error = xfs_bmapi_write(tp, dp, *bno, count,
2064 			xfs_bmapi_aflag(w)|XFS_BMAPI_METADATA|XFS_BMAPI_CONTIG,
2065 			args->firstblock, args->total, &map, &nmap,
2066 			args->dfops);
2067 	if (error)
2068 		return error;
2069 
2070 	ASSERT(nmap <= 1);
2071 	if (nmap == 1) {
2072 		mapp = &map;
2073 		mapi = 1;
2074 	} else if (nmap == 0 && count > 1) {
2075 		xfs_fileoff_t		b;
2076 		int			c;
2077 
2078 		/*
2079 		 * If we didn't get it and the block might work if fragmented,
2080 		 * try without the CONTIG flag.  Loop until we get it all.
2081 		 */
2082 		mapp = kmem_alloc(sizeof(*mapp) * count, KM_SLEEP);
2083 		for (b = *bno, mapi = 0; b < *bno + count; ) {
2084 			nmap = min(XFS_BMAP_MAX_NMAP, count);
2085 			c = (int)(*bno + count - b);
2086 			error = xfs_bmapi_write(tp, dp, b, c,
2087 					xfs_bmapi_aflag(w)|XFS_BMAPI_METADATA,
2088 					args->firstblock, args->total,
2089 					&mapp[mapi], &nmap, args->dfops);
2090 			if (error)
2091 				goto out_free_map;
2092 			if (nmap < 1)
2093 				break;
2094 			mapi += nmap;
2095 			b = mapp[mapi - 1].br_startoff +
2096 			    mapp[mapi - 1].br_blockcount;
2097 		}
2098 	} else {
2099 		mapi = 0;
2100 		mapp = NULL;
2101 	}
2102 
2103 	/*
2104 	 * Count the blocks we got, make sure it matches the total.
2105 	 */
2106 	for (i = 0, got = 0; i < mapi; i++)
2107 		got += mapp[i].br_blockcount;
2108 	if (got != count || mapp[0].br_startoff != *bno ||
2109 	    mapp[mapi - 1].br_startoff + mapp[mapi - 1].br_blockcount !=
2110 	    *bno + count) {
2111 		error = -ENOSPC;
2112 		goto out_free_map;
2113 	}
2114 
2115 	/* account for newly allocated blocks in reserved blocks total */
2116 	args->total -= dp->i_d.di_nblocks - nblks;
2117 
2118 out_free_map:
2119 	if (mapp != &map)
2120 		kmem_free(mapp);
2121 	return error;
2122 }
2123 
2124 /*
2125  * Add a block to the btree ahead of the file.
2126  * Return the new block number to the caller.
2127  */
2128 int
2129 xfs_da_grow_inode(
2130 	struct xfs_da_args	*args,
2131 	xfs_dablk_t		*new_blkno)
2132 {
2133 	xfs_fileoff_t		bno;
2134 	int			error;
2135 
2136 	trace_xfs_da_grow_inode(args);
2137 
2138 	bno = args->geo->leafblk;
2139 	error = xfs_da_grow_inode_int(args, &bno, args->geo->fsbcount);
2140 	if (!error)
2141 		*new_blkno = (xfs_dablk_t)bno;
2142 	return error;
2143 }
2144 
2145 /*
2146  * Ick.  We need to always be able to remove a btree block, even
2147  * if there's no space reservation because the filesystem is full.
2148  * This is called if xfs_bunmapi on a btree block fails due to ENOSPC.
2149  * It swaps the target block with the last block in the file.  The
2150  * last block in the file can always be removed since it can't cause
2151  * a bmap btree split to do that.
2152  */
2153 STATIC int
2154 xfs_da3_swap_lastblock(
2155 	struct xfs_da_args	*args,
2156 	xfs_dablk_t		*dead_blknop,
2157 	struct xfs_buf		**dead_bufp)
2158 {
2159 	struct xfs_da_blkinfo	*dead_info;
2160 	struct xfs_da_blkinfo	*sib_info;
2161 	struct xfs_da_intnode	*par_node;
2162 	struct xfs_da_intnode	*dead_node;
2163 	struct xfs_dir2_leaf	*dead_leaf2;
2164 	struct xfs_da_node_entry *btree;
2165 	struct xfs_da3_icnode_hdr par_hdr;
2166 	struct xfs_inode	*dp;
2167 	struct xfs_trans	*tp;
2168 	struct xfs_mount	*mp;
2169 	struct xfs_buf		*dead_buf;
2170 	struct xfs_buf		*last_buf;
2171 	struct xfs_buf		*sib_buf;
2172 	struct xfs_buf		*par_buf;
2173 	xfs_dahash_t		dead_hash;
2174 	xfs_fileoff_t		lastoff;
2175 	xfs_dablk_t		dead_blkno;
2176 	xfs_dablk_t		last_blkno;
2177 	xfs_dablk_t		sib_blkno;
2178 	xfs_dablk_t		par_blkno;
2179 	int			error;
2180 	int			w;
2181 	int			entno;
2182 	int			level;
2183 	int			dead_level;
2184 
2185 	trace_xfs_da_swap_lastblock(args);
2186 
2187 	dead_buf = *dead_bufp;
2188 	dead_blkno = *dead_blknop;
2189 	tp = args->trans;
2190 	dp = args->dp;
2191 	w = args->whichfork;
2192 	ASSERT(w == XFS_DATA_FORK);
2193 	mp = dp->i_mount;
2194 	lastoff = args->geo->freeblk;
2195 	error = xfs_bmap_last_before(tp, dp, &lastoff, w);
2196 	if (error)
2197 		return error;
2198 	if (unlikely(lastoff == 0)) {
2199 		XFS_ERROR_REPORT("xfs_da_swap_lastblock(1)", XFS_ERRLEVEL_LOW,
2200 				 mp);
2201 		return -EFSCORRUPTED;
2202 	}
2203 	/*
2204 	 * Read the last block in the btree space.
2205 	 */
2206 	last_blkno = (xfs_dablk_t)lastoff - args->geo->fsbcount;
2207 	error = xfs_da3_node_read(tp, dp, last_blkno, -1, &last_buf, w);
2208 	if (error)
2209 		return error;
2210 	/*
2211 	 * Copy the last block into the dead buffer and log it.
2212 	 */
2213 	memcpy(dead_buf->b_addr, last_buf->b_addr, args->geo->blksize);
2214 	xfs_trans_log_buf(tp, dead_buf, 0, args->geo->blksize - 1);
2215 	dead_info = dead_buf->b_addr;
2216 	/*
2217 	 * Get values from the moved block.
2218 	 */
2219 	if (dead_info->magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
2220 	    dead_info->magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC)) {
2221 		struct xfs_dir3_icleaf_hdr leafhdr;
2222 		struct xfs_dir2_leaf_entry *ents;
2223 
2224 		dead_leaf2 = (xfs_dir2_leaf_t *)dead_info;
2225 		dp->d_ops->leaf_hdr_from_disk(&leafhdr, dead_leaf2);
2226 		ents = dp->d_ops->leaf_ents_p(dead_leaf2);
2227 		dead_level = 0;
2228 		dead_hash = be32_to_cpu(ents[leafhdr.count - 1].hashval);
2229 	} else {
2230 		struct xfs_da3_icnode_hdr deadhdr;
2231 
2232 		dead_node = (xfs_da_intnode_t *)dead_info;
2233 		dp->d_ops->node_hdr_from_disk(&deadhdr, dead_node);
2234 		btree = dp->d_ops->node_tree_p(dead_node);
2235 		dead_level = deadhdr.level;
2236 		dead_hash = be32_to_cpu(btree[deadhdr.count - 1].hashval);
2237 	}
2238 	sib_buf = par_buf = NULL;
2239 	/*
2240 	 * If the moved block has a left sibling, fix up the pointers.
2241 	 */
2242 	if ((sib_blkno = be32_to_cpu(dead_info->back))) {
2243 		error = xfs_da3_node_read(tp, dp, sib_blkno, -1, &sib_buf, w);
2244 		if (error)
2245 			goto done;
2246 		sib_info = sib_buf->b_addr;
2247 		if (unlikely(
2248 		    be32_to_cpu(sib_info->forw) != last_blkno ||
2249 		    sib_info->magic != dead_info->magic)) {
2250 			XFS_ERROR_REPORT("xfs_da_swap_lastblock(2)",
2251 					 XFS_ERRLEVEL_LOW, mp);
2252 			error = -EFSCORRUPTED;
2253 			goto done;
2254 		}
2255 		sib_info->forw = cpu_to_be32(dead_blkno);
2256 		xfs_trans_log_buf(tp, sib_buf,
2257 			XFS_DA_LOGRANGE(sib_info, &sib_info->forw,
2258 					sizeof(sib_info->forw)));
2259 		sib_buf = NULL;
2260 	}
2261 	/*
2262 	 * If the moved block has a right sibling, fix up the pointers.
2263 	 */
2264 	if ((sib_blkno = be32_to_cpu(dead_info->forw))) {
2265 		error = xfs_da3_node_read(tp, dp, sib_blkno, -1, &sib_buf, w);
2266 		if (error)
2267 			goto done;
2268 		sib_info = sib_buf->b_addr;
2269 		if (unlikely(
2270 		       be32_to_cpu(sib_info->back) != last_blkno ||
2271 		       sib_info->magic != dead_info->magic)) {
2272 			XFS_ERROR_REPORT("xfs_da_swap_lastblock(3)",
2273 					 XFS_ERRLEVEL_LOW, mp);
2274 			error = -EFSCORRUPTED;
2275 			goto done;
2276 		}
2277 		sib_info->back = cpu_to_be32(dead_blkno);
2278 		xfs_trans_log_buf(tp, sib_buf,
2279 			XFS_DA_LOGRANGE(sib_info, &sib_info->back,
2280 					sizeof(sib_info->back)));
2281 		sib_buf = NULL;
2282 	}
2283 	par_blkno = args->geo->leafblk;
2284 	level = -1;
2285 	/*
2286 	 * Walk down the tree looking for the parent of the moved block.
2287 	 */
2288 	for (;;) {
2289 		error = xfs_da3_node_read(tp, dp, par_blkno, -1, &par_buf, w);
2290 		if (error)
2291 			goto done;
2292 		par_node = par_buf->b_addr;
2293 		dp->d_ops->node_hdr_from_disk(&par_hdr, par_node);
2294 		if (level >= 0 && level != par_hdr.level + 1) {
2295 			XFS_ERROR_REPORT("xfs_da_swap_lastblock(4)",
2296 					 XFS_ERRLEVEL_LOW, mp);
2297 			error = -EFSCORRUPTED;
2298 			goto done;
2299 		}
2300 		level = par_hdr.level;
2301 		btree = dp->d_ops->node_tree_p(par_node);
2302 		for (entno = 0;
2303 		     entno < par_hdr.count &&
2304 		     be32_to_cpu(btree[entno].hashval) < dead_hash;
2305 		     entno++)
2306 			continue;
2307 		if (entno == par_hdr.count) {
2308 			XFS_ERROR_REPORT("xfs_da_swap_lastblock(5)",
2309 					 XFS_ERRLEVEL_LOW, mp);
2310 			error = -EFSCORRUPTED;
2311 			goto done;
2312 		}
2313 		par_blkno = be32_to_cpu(btree[entno].before);
2314 		if (level == dead_level + 1)
2315 			break;
2316 		xfs_trans_brelse(tp, par_buf);
2317 		par_buf = NULL;
2318 	}
2319 	/*
2320 	 * We're in the right parent block.
2321 	 * Look for the right entry.
2322 	 */
2323 	for (;;) {
2324 		for (;
2325 		     entno < par_hdr.count &&
2326 		     be32_to_cpu(btree[entno].before) != last_blkno;
2327 		     entno++)
2328 			continue;
2329 		if (entno < par_hdr.count)
2330 			break;
2331 		par_blkno = par_hdr.forw;
2332 		xfs_trans_brelse(tp, par_buf);
2333 		par_buf = NULL;
2334 		if (unlikely(par_blkno == 0)) {
2335 			XFS_ERROR_REPORT("xfs_da_swap_lastblock(6)",
2336 					 XFS_ERRLEVEL_LOW, mp);
2337 			error = -EFSCORRUPTED;
2338 			goto done;
2339 		}
2340 		error = xfs_da3_node_read(tp, dp, par_blkno, -1, &par_buf, w);
2341 		if (error)
2342 			goto done;
2343 		par_node = par_buf->b_addr;
2344 		dp->d_ops->node_hdr_from_disk(&par_hdr, par_node);
2345 		if (par_hdr.level != level) {
2346 			XFS_ERROR_REPORT("xfs_da_swap_lastblock(7)",
2347 					 XFS_ERRLEVEL_LOW, mp);
2348 			error = -EFSCORRUPTED;
2349 			goto done;
2350 		}
2351 		btree = dp->d_ops->node_tree_p(par_node);
2352 		entno = 0;
2353 	}
2354 	/*
2355 	 * Update the parent entry pointing to the moved block.
2356 	 */
2357 	btree[entno].before = cpu_to_be32(dead_blkno);
2358 	xfs_trans_log_buf(tp, par_buf,
2359 		XFS_DA_LOGRANGE(par_node, &btree[entno].before,
2360 				sizeof(btree[entno].before)));
2361 	*dead_blknop = last_blkno;
2362 	*dead_bufp = last_buf;
2363 	return 0;
2364 done:
2365 	if (par_buf)
2366 		xfs_trans_brelse(tp, par_buf);
2367 	if (sib_buf)
2368 		xfs_trans_brelse(tp, sib_buf);
2369 	xfs_trans_brelse(tp, last_buf);
2370 	return error;
2371 }
2372 
2373 /*
2374  * Remove a btree block from a directory or attribute.
2375  */
2376 int
2377 xfs_da_shrink_inode(
2378 	xfs_da_args_t	*args,
2379 	xfs_dablk_t	dead_blkno,
2380 	struct xfs_buf	*dead_buf)
2381 {
2382 	xfs_inode_t *dp;
2383 	int done, error, w, count;
2384 	xfs_trans_t *tp;
2385 
2386 	trace_xfs_da_shrink_inode(args);
2387 
2388 	dp = args->dp;
2389 	w = args->whichfork;
2390 	tp = args->trans;
2391 	count = args->geo->fsbcount;
2392 	for (;;) {
2393 		/*
2394 		 * Remove extents.  If we get ENOSPC for a dir we have to move
2395 		 * the last block to the place we want to kill.
2396 		 */
2397 		error = xfs_bunmapi(tp, dp, dead_blkno, count,
2398 				    xfs_bmapi_aflag(w), 0, args->firstblock,
2399 				    args->dfops, &done);
2400 		if (error == -ENOSPC) {
2401 			if (w != XFS_DATA_FORK)
2402 				break;
2403 			error = xfs_da3_swap_lastblock(args, &dead_blkno,
2404 						      &dead_buf);
2405 			if (error)
2406 				break;
2407 		} else {
2408 			break;
2409 		}
2410 	}
2411 	xfs_trans_binval(tp, dead_buf);
2412 	return error;
2413 }
2414 
2415 /*
2416  * See if the mapping(s) for this btree block are valid, i.e.
2417  * don't contain holes, are logically contiguous, and cover the whole range.
2418  */
2419 STATIC int
2420 xfs_da_map_covers_blocks(
2421 	int		nmap,
2422 	xfs_bmbt_irec_t	*mapp,
2423 	xfs_dablk_t	bno,
2424 	int		count)
2425 {
2426 	int		i;
2427 	xfs_fileoff_t	off;
2428 
2429 	for (i = 0, off = bno; i < nmap; i++) {
2430 		if (mapp[i].br_startblock == HOLESTARTBLOCK ||
2431 		    mapp[i].br_startblock == DELAYSTARTBLOCK) {
2432 			return 0;
2433 		}
2434 		if (off != mapp[i].br_startoff) {
2435 			return 0;
2436 		}
2437 		off += mapp[i].br_blockcount;
2438 	}
2439 	return off == bno + count;
2440 }
2441 
2442 /*
2443  * Convert a struct xfs_bmbt_irec to a struct xfs_buf_map.
2444  *
2445  * For the single map case, it is assumed that the caller has provided a pointer
2446  * to a valid xfs_buf_map.  For the multiple map case, this function will
2447  * allocate the xfs_buf_map to hold all the maps and replace the caller's single
2448  * map pointer with the allocated map.
2449  */
2450 static int
2451 xfs_buf_map_from_irec(
2452 	struct xfs_mount	*mp,
2453 	struct xfs_buf_map	**mapp,
2454 	int			*nmaps,
2455 	struct xfs_bmbt_irec	*irecs,
2456 	int			nirecs)
2457 {
2458 	struct xfs_buf_map	*map;
2459 	int			i;
2460 
2461 	ASSERT(*nmaps == 1);
2462 	ASSERT(nirecs >= 1);
2463 
2464 	if (nirecs > 1) {
2465 		map = kmem_zalloc(nirecs * sizeof(struct xfs_buf_map),
2466 				  KM_SLEEP | KM_NOFS);
2467 		if (!map)
2468 			return -ENOMEM;
2469 		*mapp = map;
2470 	}
2471 
2472 	*nmaps = nirecs;
2473 	map = *mapp;
2474 	for (i = 0; i < *nmaps; i++) {
2475 		ASSERT(irecs[i].br_startblock != DELAYSTARTBLOCK &&
2476 		       irecs[i].br_startblock != HOLESTARTBLOCK);
2477 		map[i].bm_bn = XFS_FSB_TO_DADDR(mp, irecs[i].br_startblock);
2478 		map[i].bm_len = XFS_FSB_TO_BB(mp, irecs[i].br_blockcount);
2479 	}
2480 	return 0;
2481 }
2482 
2483 /*
2484  * Map the block we are given ready for reading. There are three possible return
2485  * values:
2486  *	-1 - will be returned if we land in a hole and mappedbno == -2 so the
2487  *	     caller knows not to execute a subsequent read.
2488  *	 0 - if we mapped the block successfully
2489  *	>0 - positive error number if there was an error.
2490  */
2491 static int
2492 xfs_dabuf_map(
2493 	struct xfs_inode	*dp,
2494 	xfs_dablk_t		bno,
2495 	xfs_daddr_t		mappedbno,
2496 	int			whichfork,
2497 	struct xfs_buf_map	**map,
2498 	int			*nmaps)
2499 {
2500 	struct xfs_mount	*mp = dp->i_mount;
2501 	int			nfsb;
2502 	int			error = 0;
2503 	struct xfs_bmbt_irec	irec;
2504 	struct xfs_bmbt_irec	*irecs = &irec;
2505 	int			nirecs;
2506 
2507 	ASSERT(map && *map);
2508 	ASSERT(*nmaps == 1);
2509 
2510 	if (whichfork == XFS_DATA_FORK)
2511 		nfsb = mp->m_dir_geo->fsbcount;
2512 	else
2513 		nfsb = mp->m_attr_geo->fsbcount;
2514 
2515 	/*
2516 	 * Caller doesn't have a mapping.  -2 means don't complain
2517 	 * if we land in a hole.
2518 	 */
2519 	if (mappedbno == -1 || mappedbno == -2) {
2520 		/*
2521 		 * Optimize the one-block case.
2522 		 */
2523 		if (nfsb != 1)
2524 			irecs = kmem_zalloc(sizeof(irec) * nfsb,
2525 					    KM_SLEEP | KM_NOFS);
2526 
2527 		nirecs = nfsb;
2528 		error = xfs_bmapi_read(dp, (xfs_fileoff_t)bno, nfsb, irecs,
2529 				       &nirecs, xfs_bmapi_aflag(whichfork));
2530 		if (error)
2531 			goto out;
2532 	} else {
2533 		irecs->br_startblock = XFS_DADDR_TO_FSB(mp, mappedbno);
2534 		irecs->br_startoff = (xfs_fileoff_t)bno;
2535 		irecs->br_blockcount = nfsb;
2536 		irecs->br_state = 0;
2537 		nirecs = 1;
2538 	}
2539 
2540 	if (!xfs_da_map_covers_blocks(nirecs, irecs, bno, nfsb)) {
2541 		error = mappedbno == -2 ? -1 : -EFSCORRUPTED;
2542 		if (unlikely(error == -EFSCORRUPTED)) {
2543 			if (xfs_error_level >= XFS_ERRLEVEL_LOW) {
2544 				int i;
2545 				xfs_alert(mp, "%s: bno %lld dir: inode %lld",
2546 					__func__, (long long)bno,
2547 					(long long)dp->i_ino);
2548 				for (i = 0; i < *nmaps; i++) {
2549 					xfs_alert(mp,
2550 "[%02d] br_startoff %lld br_startblock %lld br_blockcount %lld br_state %d",
2551 						i,
2552 						(long long)irecs[i].br_startoff,
2553 						(long long)irecs[i].br_startblock,
2554 						(long long)irecs[i].br_blockcount,
2555 						irecs[i].br_state);
2556 				}
2557 			}
2558 			XFS_ERROR_REPORT("xfs_da_do_buf(1)",
2559 					 XFS_ERRLEVEL_LOW, mp);
2560 		}
2561 		goto out;
2562 	}
2563 	error = xfs_buf_map_from_irec(mp, map, nmaps, irecs, nirecs);
2564 out:
2565 	if (irecs != &irec)
2566 		kmem_free(irecs);
2567 	return error;
2568 }
2569 
2570 /*
2571  * Get a buffer for the dir/attr block.
2572  */
2573 int
2574 xfs_da_get_buf(
2575 	struct xfs_trans	*trans,
2576 	struct xfs_inode	*dp,
2577 	xfs_dablk_t		bno,
2578 	xfs_daddr_t		mappedbno,
2579 	struct xfs_buf		**bpp,
2580 	int			whichfork)
2581 {
2582 	struct xfs_buf		*bp;
2583 	struct xfs_buf_map	map;
2584 	struct xfs_buf_map	*mapp;
2585 	int			nmap;
2586 	int			error;
2587 
2588 	*bpp = NULL;
2589 	mapp = &map;
2590 	nmap = 1;
2591 	error = xfs_dabuf_map(dp, bno, mappedbno, whichfork,
2592 				&mapp, &nmap);
2593 	if (error) {
2594 		/* mapping a hole is not an error, but we don't continue */
2595 		if (error == -1)
2596 			error = 0;
2597 		goto out_free;
2598 	}
2599 
2600 	bp = xfs_trans_get_buf_map(trans, dp->i_mount->m_ddev_targp,
2601 				    mapp, nmap, 0);
2602 	error = bp ? bp->b_error : -EIO;
2603 	if (error) {
2604 		if (bp)
2605 			xfs_trans_brelse(trans, bp);
2606 		goto out_free;
2607 	}
2608 
2609 	*bpp = bp;
2610 
2611 out_free:
2612 	if (mapp != &map)
2613 		kmem_free(mapp);
2614 
2615 	return error;
2616 }
2617 
2618 /*
2619  * Get a buffer for the dir/attr block, fill in the contents.
2620  */
2621 int
2622 xfs_da_read_buf(
2623 	struct xfs_trans	*trans,
2624 	struct xfs_inode	*dp,
2625 	xfs_dablk_t		bno,
2626 	xfs_daddr_t		mappedbno,
2627 	struct xfs_buf		**bpp,
2628 	int			whichfork,
2629 	const struct xfs_buf_ops *ops)
2630 {
2631 	struct xfs_buf		*bp;
2632 	struct xfs_buf_map	map;
2633 	struct xfs_buf_map	*mapp;
2634 	int			nmap;
2635 	int			error;
2636 
2637 	*bpp = NULL;
2638 	mapp = &map;
2639 	nmap = 1;
2640 	error = xfs_dabuf_map(dp, bno, mappedbno, whichfork,
2641 				&mapp, &nmap);
2642 	if (error) {
2643 		/* mapping a hole is not an error, but we don't continue */
2644 		if (error == -1)
2645 			error = 0;
2646 		goto out_free;
2647 	}
2648 
2649 	error = xfs_trans_read_buf_map(dp->i_mount, trans,
2650 					dp->i_mount->m_ddev_targp,
2651 					mapp, nmap, 0, &bp, ops);
2652 	if (error)
2653 		goto out_free;
2654 
2655 	if (whichfork == XFS_ATTR_FORK)
2656 		xfs_buf_set_ref(bp, XFS_ATTR_BTREE_REF);
2657 	else
2658 		xfs_buf_set_ref(bp, XFS_DIR_BTREE_REF);
2659 	*bpp = bp;
2660 out_free:
2661 	if (mapp != &map)
2662 		kmem_free(mapp);
2663 
2664 	return error;
2665 }
2666 
2667 /*
2668  * Readahead the dir/attr block.
2669  */
2670 int
2671 xfs_da_reada_buf(
2672 	struct xfs_inode	*dp,
2673 	xfs_dablk_t		bno,
2674 	xfs_daddr_t		mappedbno,
2675 	int			whichfork,
2676 	const struct xfs_buf_ops *ops)
2677 {
2678 	struct xfs_buf_map	map;
2679 	struct xfs_buf_map	*mapp;
2680 	int			nmap;
2681 	int			error;
2682 
2683 	mapp = &map;
2684 	nmap = 1;
2685 	error = xfs_dabuf_map(dp, bno, mappedbno, whichfork,
2686 				&mapp, &nmap);
2687 	if (error) {
2688 		/* mapping a hole is not an error, but we don't continue */
2689 		if (error == -1)
2690 			error = 0;
2691 		goto out_free;
2692 	}
2693 
2694 	mappedbno = mapp[0].bm_bn;
2695 	xfs_buf_readahead_map(dp->i_mount->m_ddev_targp, mapp, nmap, ops);
2696 
2697 out_free:
2698 	if (mapp != &map)
2699 		kmem_free(mapp);
2700 
2701 	return error;
2702 }
2703