xfs_da_btree.c 62.3 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2 3
 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
 * All Rights Reserved.
L
Linus Torvalds 已提交
4
 *
5 6
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
L
Linus Torvalds 已提交
7 8
 * published by the Free Software Foundation.
 *
9 10 11 12
 * This program is distributed in the hope that it would be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
L
Linus Torvalds 已提交
13
 *
14 15 16
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write the Free Software Foundation,
 * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
L
Linus Torvalds 已提交
17 18
 */
#include "xfs.h"
19
#include "xfs_fs.h"
L
Linus Torvalds 已提交
20
#include "xfs_types.h"
21
#include "xfs_bit.h"
L
Linus Torvalds 已提交
22 23 24 25 26
#include "xfs_log.h"
#include "xfs_trans.h"
#include "xfs_sb.h"
#include "xfs_ag.h"
#include "xfs_mount.h"
27
#include "xfs_da_btree.h"
L
Linus Torvalds 已提交
28
#include "xfs_bmap_btree.h"
C
Christoph Hellwig 已提交
29 30 31
#include "xfs_dir2.h"
#include "xfs_dir2_format.h"
#include "xfs_dir2_priv.h"
L
Linus Torvalds 已提交
32 33
#include "xfs_dinode.h"
#include "xfs_inode.h"
34 35
#include "xfs_inode_item.h"
#include "xfs_alloc.h"
L
Linus Torvalds 已提交
36 37 38 39
#include "xfs_bmap.h"
#include "xfs_attr.h"
#include "xfs_attr_leaf.h"
#include "xfs_error.h"
C
Christoph Hellwig 已提交
40
#include "xfs_trace.h"
L
Linus Torvalds 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85

/*
 * xfs_da_btree.c
 *
 * Routines to implement directories as Btrees of hashed names.
 */

/*========================================================================
 * Function prototypes for the kernel.
 *========================================================================*/

/*
 * Routines used for growing the Btree.
 */
STATIC int xfs_da_root_split(xfs_da_state_t *state,
					    xfs_da_state_blk_t *existing_root,
					    xfs_da_state_blk_t *new_child);
STATIC int xfs_da_node_split(xfs_da_state_t *state,
					    xfs_da_state_blk_t *existing_blk,
					    xfs_da_state_blk_t *split_blk,
					    xfs_da_state_blk_t *blk_to_add,
					    int treelevel,
					    int *result);
STATIC void xfs_da_node_rebalance(xfs_da_state_t *state,
					 xfs_da_state_blk_t *node_blk_1,
					 xfs_da_state_blk_t *node_blk_2);
STATIC void xfs_da_node_add(xfs_da_state_t *state,
				   xfs_da_state_blk_t *old_node_blk,
				   xfs_da_state_blk_t *new_node_blk);

/*
 * Routines used for shrinking the Btree.
 */
STATIC int xfs_da_root_join(xfs_da_state_t *state,
					   xfs_da_state_blk_t *root_blk);
STATIC int xfs_da_node_toosmall(xfs_da_state_t *state, int *retval);
STATIC void xfs_da_node_remove(xfs_da_state_t *state,
					      xfs_da_state_blk_t *drop_blk);
STATIC void xfs_da_node_unbalance(xfs_da_state_t *state,
					 xfs_da_state_blk_t *src_node_blk,
					 xfs_da_state_blk_t *dst_node_blk);

/*
 * Utility routines.
 */
86 87 88
STATIC uint	xfs_da_node_lasthash(struct xfs_buf *bp, int *count);
STATIC int	xfs_da_node_order(struct xfs_buf *node1_bp,
				  struct xfs_buf *node2_bp);
89 90 91 92
STATIC int	xfs_da_blk_unlink(xfs_da_state_t *state,
				  xfs_da_state_blk_t *drop_blk,
				  xfs_da_state_blk_t *save_blk);
STATIC void	xfs_da_state_kill_altpath(xfs_da_state_t *state);
L
Linus Torvalds 已提交
93 94 95 96 97 98 99 100 101 102

/*========================================================================
 * Routines used for growing the Btree.
 *========================================================================*/

/*
 * Create the initial contents of an intermediate node.
 */
int
xfs_da_node_create(xfs_da_args_t *args, xfs_dablk_t blkno, int level,
103
				 struct xfs_buf **bpp, int whichfork)
L
Linus Torvalds 已提交
104 105
{
	xfs_da_intnode_t *node;
106
	struct xfs_buf *bp;
L
Linus Torvalds 已提交
107 108 109
	int error;
	xfs_trans_t *tp;

110 111
	trace_xfs_da_node_create(args);

L
Linus Torvalds 已提交
112 113 114 115 116
	tp = args->trans;
	error = xfs_da_get_buf(tp, args->dp, blkno, -1, &bp, whichfork);
	if (error)
		return(error);
	ASSERT(bp != NULL);
117
	node = bp->b_addr;
L
Linus Torvalds 已提交
118 119
	node->hdr.info.forw = 0;
	node->hdr.info.back = 0;
120
	node->hdr.info.magic = cpu_to_be16(XFS_DA_NODE_MAGIC);
L
Linus Torvalds 已提交
121 122
	node->hdr.info.pad = 0;
	node->hdr.count = 0;
123
	node->hdr.level = cpu_to_be16(level);
L
Linus Torvalds 已提交
124

125
	xfs_trans_log_buf(tp, bp,
L
Linus Torvalds 已提交
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
		XFS_DA_LOGRANGE(node, &node->hdr, sizeof(node->hdr)));

	*bpp = bp;
	return(0);
}

/*
 * Split a leaf node, rebalance, then possibly split
 * intermediate nodes, rebalance, etc.
 */
int							/* error */
xfs_da_split(xfs_da_state_t *state)
{
	xfs_da_state_blk_t *oldblk, *newblk, *addblk;
	xfs_da_intnode_t *node;
141
	struct xfs_buf *bp;
L
Linus Torvalds 已提交
142 143
	int max, action, error, i;

144 145
	trace_xfs_da_split(state->args);

L
Linus Torvalds 已提交
146 147 148 149 150 151 152 153 154
	/*
	 * Walk back up the tree splitting/inserting/adjusting as necessary.
	 * If we need to insert and there isn't room, split the node, then
	 * decide which fragment to insert the new block from below into.
	 * Note that we may split the root this way, but we need more fixup.
	 */
	max = state->path.active - 1;
	ASSERT((max >= 0) && (max < XFS_DA_NODE_MAXDEPTH));
	ASSERT(state->path.blk[max].magic == XFS_ATTR_LEAF_MAGIC ||
155
	       state->path.blk[max].magic == XFS_DIR2_LEAFN_MAGIC);
L
Linus Torvalds 已提交
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183

	addblk = &state->path.blk[max];		/* initial dummy value */
	for (i = max; (i >= 0) && addblk; state->path.active--, i--) {
		oldblk = &state->path.blk[i];
		newblk = &state->altpath.blk[i];

		/*
		 * If a leaf node then
		 *     Allocate a new leaf node, then rebalance across them.
		 * else if an intermediate node then
		 *     We split on the last layer, must we split the node?
		 */
		switch (oldblk->magic) {
		case XFS_ATTR_LEAF_MAGIC:
			error = xfs_attr_leaf_split(state, oldblk, newblk);
			if ((error != 0) && (error != ENOSPC)) {
				return(error);	/* GROT: attr is inconsistent */
			}
			if (!error) {
				addblk = newblk;
				break;
			}
			/*
			 * Entry wouldn't fit, split the leaf again.
			 */
			state->extravalid = 1;
			if (state->inleaf) {
				state->extraafter = 0;	/* before newblk */
184
				trace_xfs_attr_leaf_split_before(state->args);
L
Linus Torvalds 已提交
185 186 187 188
				error = xfs_attr_leaf_split(state, oldblk,
							    &state->extrablk);
			} else {
				state->extraafter = 1;	/* after newblk */
189
				trace_xfs_attr_leaf_split_after(state->args);
L
Linus Torvalds 已提交
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
				error = xfs_attr_leaf_split(state, newblk,
							    &state->extrablk);
			}
			if (error)
				return(error);	/* GROT: attr inconsistent */
			addblk = newblk;
			break;
		case XFS_DIR2_LEAFN_MAGIC:
			error = xfs_dir2_leafn_split(state, oldblk, newblk);
			if (error)
				return error;
			addblk = newblk;
			break;
		case XFS_DA_NODE_MAGIC:
			error = xfs_da_node_split(state, oldblk, newblk, addblk,
							 max - i, &action);
			addblk->bp = NULL;
			if (error)
				return(error);	/* GROT: dir is inconsistent */
			/*
			 * Record the newly split block for the next time thru?
			 */
			if (action)
				addblk = newblk;
			else
				addblk = NULL;
			break;
		}

		/*
		 * Update the btree to show the new hashval for this child.
		 */
		xfs_da_fixhashpath(state, &state->path);
	}
	if (!addblk)
		return(0);

	/*
	 * Split the root node.
	 */
	ASSERT(state->path.active == 0);
	oldblk = &state->path.blk[0];
	error = xfs_da_root_split(state, oldblk, addblk);
	if (error) {
		addblk->bp = NULL;
		return(error);	/* GROT: dir is inconsistent */
	}

	/*
	 * Update pointers to the node which used to be block 0 and
	 * just got bumped because of the addition of a new root node.
	 * There might be three blocks involved if a double split occurred,
	 * and the original block 0 could be at any position in the list.
	 */

245
	node = oldblk->bp->b_addr;
L
Linus Torvalds 已提交
246
	if (node->hdr.info.forw) {
247
		if (be32_to_cpu(node->hdr.info.forw) == addblk->blkno) {
L
Linus Torvalds 已提交
248 249 250 251 252
			bp = addblk->bp;
		} else {
			ASSERT(state->extravalid);
			bp = state->extrablk.bp;
		}
253
		node = bp->b_addr;
254
		node->hdr.info.back = cpu_to_be32(oldblk->blkno);
255
		xfs_trans_log_buf(state->args->trans, bp,
L
Linus Torvalds 已提交
256 257 258
		    XFS_DA_LOGRANGE(node, &node->hdr.info,
		    sizeof(node->hdr.info)));
	}
259
	node = oldblk->bp->b_addr;
260 261
	if (node->hdr.info.back) {
		if (be32_to_cpu(node->hdr.info.back) == addblk->blkno) {
L
Linus Torvalds 已提交
262 263 264 265 266
			bp = addblk->bp;
		} else {
			ASSERT(state->extravalid);
			bp = state->extrablk.bp;
		}
267
		node = bp->b_addr;
268
		node->hdr.info.forw = cpu_to_be32(oldblk->blkno);
269
		xfs_trans_log_buf(state->args->trans, bp,
L
Linus Torvalds 已提交
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
		    XFS_DA_LOGRANGE(node, &node->hdr.info,
		    sizeof(node->hdr.info)));
	}
	addblk->bp = NULL;
	return(0);
}

/*
 * Split the root.  We have to create a new root and point to the two
 * parts (the split old root) that we just created.  Copy block zero to
 * the EOF, extending the inode in process.
 */
STATIC int						/* error */
xfs_da_root_split(xfs_da_state_t *state, xfs_da_state_blk_t *blk1,
				 xfs_da_state_blk_t *blk2)
{
	xfs_da_intnode_t *node, *oldroot;
	xfs_da_args_t *args;
	xfs_dablk_t blkno;
289
	struct xfs_buf *bp;
L
Linus Torvalds 已提交
290 291 292 293 294 295
	int error, size;
	xfs_inode_t *dp;
	xfs_trans_t *tp;
	xfs_mount_t *mp;
	xfs_dir2_leaf_t *leaf;

296 297
	trace_xfs_da_root_split(state->args);

L
Linus Torvalds 已提交
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
	/*
	 * Copy the existing (incorrect) block from the root node position
	 * to a free space somewhere.
	 */
	args = state->args;
	ASSERT(args != NULL);
	error = xfs_da_grow_inode(args, &blkno);
	if (error)
		return(error);
	dp = args->dp;
	tp = args->trans;
	mp = state->mp;
	error = xfs_da_get_buf(tp, dp, blkno, -1, &bp, args->whichfork);
	if (error)
		return(error);
	ASSERT(bp != NULL);
314 315
	node = bp->b_addr;
	oldroot = blk1->bp->b_addr;
316
	if (oldroot->hdr.info.magic == cpu_to_be16(XFS_DA_NODE_MAGIC)) {
317
		size = (int)((char *)&oldroot->btree[be16_to_cpu(oldroot->hdr.count)] -
L
Linus Torvalds 已提交
318 319
			     (char *)oldroot);
	} else {
320
		ASSERT(oldroot->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
L
Linus Torvalds 已提交
321
		leaf = (xfs_dir2_leaf_t *)oldroot;
322
		size = (int)((char *)&leaf->ents[be16_to_cpu(leaf->hdr.count)] -
L
Linus Torvalds 已提交
323 324 325
			     (char *)leaf);
	}
	memcpy(node, oldroot, size);
326
	xfs_trans_log_buf(tp, bp, 0, size - 1);
L
Linus Torvalds 已提交
327 328 329 330 331 332 333
	blk1->bp = bp;
	blk1->blkno = blkno;

	/*
	 * Set up the new root node.
	 */
	error = xfs_da_node_create(args,
334
		(args->whichfork == XFS_DATA_FORK) ? mp->m_dirleafblk : 0,
335
		be16_to_cpu(node->hdr.level) + 1, &bp, args->whichfork);
L
Linus Torvalds 已提交
336 337
	if (error)
		return(error);
338
	node = bp->b_addr;
339 340 341 342
	node->btree[0].hashval = cpu_to_be32(blk1->hashval);
	node->btree[0].before = cpu_to_be32(blk1->blkno);
	node->btree[1].hashval = cpu_to_be32(blk2->hashval);
	node->btree[1].before = cpu_to_be32(blk2->blkno);
343
	node->hdr.count = cpu_to_be16(2);
L
Linus Torvalds 已提交
344 345

#ifdef DEBUG
346
	if (oldroot->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC)) {
L
Linus Torvalds 已提交
347 348 349 350 351 352 353 354
		ASSERT(blk1->blkno >= mp->m_dirleafblk &&
		       blk1->blkno < mp->m_dirfreeblk);
		ASSERT(blk2->blkno >= mp->m_dirleafblk &&
		       blk2->blkno < mp->m_dirfreeblk);
	}
#endif

	/* Header is already logged by xfs_da_node_create */
355
	xfs_trans_log_buf(tp, bp,
L
Linus Torvalds 已提交
356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
		XFS_DA_LOGRANGE(node, node->btree,
			sizeof(xfs_da_node_entry_t) * 2));

	return(0);
}

/*
 * Split the node, rebalance, then add the new entry.
 */
STATIC int						/* error */
xfs_da_node_split(xfs_da_state_t *state, xfs_da_state_blk_t *oldblk,
				 xfs_da_state_blk_t *newblk,
				 xfs_da_state_blk_t *addblk,
				 int treelevel, int *result)
{
	xfs_da_intnode_t *node;
	xfs_dablk_t blkno;
	int newcount, error;
	int useextra;

376 377
	trace_xfs_da_node_split(state->args);

378
	node = oldblk->bp->b_addr;
379
	ASSERT(node->hdr.info.magic == cpu_to_be16(XFS_DA_NODE_MAGIC));
L
Linus Torvalds 已提交
380 381

	/*
382
	 * With V2 dirs the extra block is data or freespace.
L
Linus Torvalds 已提交
383
	 */
384
	useextra = state->extravalid && state->args->whichfork == XFS_ATTR_FORK;
L
Linus Torvalds 已提交
385 386 387 388
	newcount = 1 + useextra;
	/*
	 * Do we have to split the node?
	 */
389
	if ((be16_to_cpu(node->hdr.count) + newcount) > state->node_ents) {
L
Linus Torvalds 已提交
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
		/*
		 * Allocate a new node, add to the doubly linked chain of
		 * nodes, then move some of our excess entries into it.
		 */
		error = xfs_da_grow_inode(state->args, &blkno);
		if (error)
			return(error);	/* GROT: dir is inconsistent */

		error = xfs_da_node_create(state->args, blkno, treelevel,
					   &newblk->bp, state->args->whichfork);
		if (error)
			return(error);	/* GROT: dir is inconsistent */
		newblk->blkno = blkno;
		newblk->magic = XFS_DA_NODE_MAGIC;
		xfs_da_node_rebalance(state, oldblk, newblk);
		error = xfs_da_blk_link(state, oldblk, newblk);
		if (error)
			return(error);
		*result = 1;
	} else {
		*result = 0;
	}

	/*
	 * Insert the new entry(s) into the correct block
	 * (updating last hashval in the process).
	 *
	 * xfs_da_node_add() inserts BEFORE the given index,
	 * and as a result of using node_lookup_int() we always
	 * point to a valid entry (not after one), but a split
	 * operation always results in a new block whose hashvals
	 * FOLLOW the current block.
	 *
	 * If we had double-split op below us, then add the extra block too.
	 */
425
	node = oldblk->bp->b_addr;
426
	if (oldblk->index <= be16_to_cpu(node->hdr.count)) {
L
Linus Torvalds 已提交
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
		oldblk->index++;
		xfs_da_node_add(state, oldblk, addblk);
		if (useextra) {
			if (state->extraafter)
				oldblk->index++;
			xfs_da_node_add(state, oldblk, &state->extrablk);
			state->extravalid = 0;
		}
	} else {
		newblk->index++;
		xfs_da_node_add(state, newblk, addblk);
		if (useextra) {
			if (state->extraafter)
				newblk->index++;
			xfs_da_node_add(state, newblk, &state->extrablk);
			state->extravalid = 0;
		}
	}

	return(0);
}

/*
 * Balance the btree elements between two intermediate nodes,
 * usually one full and one empty.
 *
 * NOTE: if blk2 is empty, then it will get the upper half of blk1.
 */
STATIC void
xfs_da_node_rebalance(xfs_da_state_t *state, xfs_da_state_blk_t *blk1,
				     xfs_da_state_blk_t *blk2)
{
	xfs_da_intnode_t *node1, *node2, *tmpnode;
	xfs_da_node_entry_t *btree_s, *btree_d;
	int count, tmp;
	xfs_trans_t *tp;

464 465
	trace_xfs_da_node_rebalance(state->args);

466 467
	node1 = blk1->bp->b_addr;
	node2 = blk2->bp->b_addr;
L
Linus Torvalds 已提交
468 469 470 471
	/*
	 * Figure out how many entries need to move, and in which direction.
	 * Swap the nodes around if that makes it simpler.
	 */
472
	if ((be16_to_cpu(node1->hdr.count) > 0) && (be16_to_cpu(node2->hdr.count) > 0) &&
473
	    ((be32_to_cpu(node2->btree[0].hashval) < be32_to_cpu(node1->btree[0].hashval)) ||
474 475
	     (be32_to_cpu(node2->btree[be16_to_cpu(node2->hdr.count)-1].hashval) <
	      be32_to_cpu(node1->btree[be16_to_cpu(node1->hdr.count)-1].hashval)))) {
L
Linus Torvalds 已提交
476 477 478 479
		tmpnode = node1;
		node1 = node2;
		node2 = tmpnode;
	}
480 481
	ASSERT(node1->hdr.info.magic == cpu_to_be16(XFS_DA_NODE_MAGIC));
	ASSERT(node2->hdr.info.magic == cpu_to_be16(XFS_DA_NODE_MAGIC));
482
	count = (be16_to_cpu(node1->hdr.count) - be16_to_cpu(node2->hdr.count)) / 2;
L
Linus Torvalds 已提交
483 484 485 486 487 488 489 490 491 492
	if (count == 0)
		return;
	tp = state->args->trans;
	/*
	 * Two cases: high-to-low and low-to-high.
	 */
	if (count > 0) {
		/*
		 * Move elements in node2 up to make a hole.
		 */
493
		if ((tmp = be16_to_cpu(node2->hdr.count)) > 0) {
L
Linus Torvalds 已提交
494 495 496 497 498 499 500 501 502 503
			tmp *= (uint)sizeof(xfs_da_node_entry_t);
			btree_s = &node2->btree[0];
			btree_d = &node2->btree[count];
			memmove(btree_d, btree_s, tmp);
		}

		/*
		 * Move the req'd B-tree elements from high in node1 to
		 * low in node2.
		 */
504
		be16_add_cpu(&node2->hdr.count, count);
L
Linus Torvalds 已提交
505
		tmp = count * (uint)sizeof(xfs_da_node_entry_t);
506
		btree_s = &node1->btree[be16_to_cpu(node1->hdr.count) - count];
L
Linus Torvalds 已提交
507 508
		btree_d = &node2->btree[0];
		memcpy(btree_d, btree_s, tmp);
509
		be16_add_cpu(&node1->hdr.count, -count);
L
Linus Torvalds 已提交
510 511 512 513 514 515 516 517
	} else {
		/*
		 * Move the req'd B-tree elements from low in node2 to
		 * high in node1.
		 */
		count = -count;
		tmp = count * (uint)sizeof(xfs_da_node_entry_t);
		btree_s = &node2->btree[0];
518
		btree_d = &node1->btree[be16_to_cpu(node1->hdr.count)];
L
Linus Torvalds 已提交
519
		memcpy(btree_d, btree_s, tmp);
520
		be16_add_cpu(&node1->hdr.count, count);
521
		xfs_trans_log_buf(tp, blk1->bp,
L
Linus Torvalds 已提交
522 523 524 525 526
			XFS_DA_LOGRANGE(node1, btree_d, tmp));

		/*
		 * Move elements in node2 down to fill the hole.
		 */
527
		tmp  = be16_to_cpu(node2->hdr.count) - count;
L
Linus Torvalds 已提交
528 529 530 531
		tmp *= (uint)sizeof(xfs_da_node_entry_t);
		btree_s = &node2->btree[count];
		btree_d = &node2->btree[0];
		memmove(btree_d, btree_s, tmp);
532
		be16_add_cpu(&node2->hdr.count, -count);
L
Linus Torvalds 已提交
533 534 535 536 537
	}

	/*
	 * Log header of node 1 and all current bits of node 2.
	 */
538
	xfs_trans_log_buf(tp, blk1->bp,
L
Linus Torvalds 已提交
539
		XFS_DA_LOGRANGE(node1, &node1->hdr, sizeof(node1->hdr)));
540
	xfs_trans_log_buf(tp, blk2->bp,
L
Linus Torvalds 已提交
541 542
		XFS_DA_LOGRANGE(node2, &node2->hdr,
			sizeof(node2->hdr) +
543
			sizeof(node2->btree[0]) * be16_to_cpu(node2->hdr.count)));
L
Linus Torvalds 已提交
544 545 546 547 548

	/*
	 * Record the last hashval from each block for upward propagation.
	 * (note: don't use the swapped node pointers)
	 */
549 550
	node1 = blk1->bp->b_addr;
	node2 = blk2->bp->b_addr;
551 552
	blk1->hashval = be32_to_cpu(node1->btree[be16_to_cpu(node1->hdr.count)-1].hashval);
	blk2->hashval = be32_to_cpu(node2->btree[be16_to_cpu(node2->hdr.count)-1].hashval);
L
Linus Torvalds 已提交
553 554 555 556

	/*
	 * Adjust the expected index for insertion.
	 */
557 558 559
	if (blk1->index >= be16_to_cpu(node1->hdr.count)) {
		blk2->index = blk1->index - be16_to_cpu(node1->hdr.count);
		blk1->index = be16_to_cpu(node1->hdr.count) + 1;	/* make it invalid */
L
Linus Torvalds 已提交
560 561 562 563 564 565 566 567 568 569 570 571 572 573
	}
}

/*
 * Add a new entry to an intermediate node.
 */
STATIC void
xfs_da_node_add(xfs_da_state_t *state, xfs_da_state_blk_t *oldblk,
			       xfs_da_state_blk_t *newblk)
{
	xfs_da_intnode_t *node;
	xfs_da_node_entry_t *btree;
	int tmp;

574 575
	trace_xfs_da_node_add(state->args);

576
	node = oldblk->bp->b_addr;
577
	ASSERT(node->hdr.info.magic == cpu_to_be16(XFS_DA_NODE_MAGIC));
578
	ASSERT((oldblk->index >= 0) && (oldblk->index <= be16_to_cpu(node->hdr.count)));
L
Linus Torvalds 已提交
579
	ASSERT(newblk->blkno != 0);
580
	if (state->args->whichfork == XFS_DATA_FORK)
581 582
		ASSERT(newblk->blkno >= state->mp->m_dirleafblk &&
		       newblk->blkno < state->mp->m_dirfreeblk);
L
Linus Torvalds 已提交
583 584 585 586 587 588

	/*
	 * We may need to make some room before we insert the new node.
	 */
	tmp = 0;
	btree = &node->btree[ oldblk->index ];
589 590
	if (oldblk->index < be16_to_cpu(node->hdr.count)) {
		tmp = (be16_to_cpu(node->hdr.count) - oldblk->index) * (uint)sizeof(*btree);
L
Linus Torvalds 已提交
591 592
		memmove(btree + 1, btree, tmp);
	}
593 594
	btree->hashval = cpu_to_be32(newblk->hashval);
	btree->before = cpu_to_be32(newblk->blkno);
595
	xfs_trans_log_buf(state->args->trans, oldblk->bp,
L
Linus Torvalds 已提交
596
		XFS_DA_LOGRANGE(node, btree, tmp + sizeof(*btree)));
597
	be16_add_cpu(&node->hdr.count, 1);
598
	xfs_trans_log_buf(state->args->trans, oldblk->bp,
L
Linus Torvalds 已提交
599 600 601 602 603
		XFS_DA_LOGRANGE(node, &node->hdr, sizeof(node->hdr)));

	/*
	 * Copy the last hash value from the oldblk to propagate upwards.
	 */
604
	oldblk->hashval = be32_to_cpu(node->btree[be16_to_cpu(node->hdr.count)-1 ].hashval);
L
Linus Torvalds 已提交
605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620
}

/*========================================================================
 * Routines used for shrinking the Btree.
 *========================================================================*/

/*
 * Deallocate an empty leaf node, remove it from its parent,
 * possibly deallocating that block, etc...
 */
int
xfs_da_join(xfs_da_state_t *state)
{
	xfs_da_state_blk_t *drop_blk, *save_blk;
	int action, error;

621 622
	trace_xfs_da_join(state->args);

L
Linus Torvalds 已提交
623 624 625 626 627
	action = 0;
	drop_blk = &state->path.blk[ state->path.active-1 ];
	save_blk = &state->altpath.blk[ state->path.active-1 ];
	ASSERT(state->path.blk[0].magic == XFS_DA_NODE_MAGIC);
	ASSERT(drop_blk->magic == XFS_ATTR_LEAF_MAGIC ||
628
	       drop_blk->magic == XFS_DIR2_LEAFN_MAGIC);
L
Linus Torvalds 已提交
629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695

	/*
	 * Walk back up the tree joining/deallocating as necessary.
	 * When we stop dropping blocks, break out.
	 */
	for (  ; state->path.active >= 2; drop_blk--, save_blk--,
		 state->path.active--) {
		/*
		 * See if we can combine the block with a neighbor.
		 *   (action == 0) => no options, just leave
		 *   (action == 1) => coalesce, then unlink
		 *   (action == 2) => block empty, unlink it
		 */
		switch (drop_blk->magic) {
		case XFS_ATTR_LEAF_MAGIC:
			error = xfs_attr_leaf_toosmall(state, &action);
			if (error)
				return(error);
			if (action == 0)
				return(0);
			xfs_attr_leaf_unbalance(state, drop_blk, save_blk);
			break;
		case XFS_DIR2_LEAFN_MAGIC:
			error = xfs_dir2_leafn_toosmall(state, &action);
			if (error)
				return error;
			if (action == 0)
				return 0;
			xfs_dir2_leafn_unbalance(state, drop_blk, save_blk);
			break;
		case XFS_DA_NODE_MAGIC:
			/*
			 * Remove the offending node, fixup hashvals,
			 * check for a toosmall neighbor.
			 */
			xfs_da_node_remove(state, drop_blk);
			xfs_da_fixhashpath(state, &state->path);
			error = xfs_da_node_toosmall(state, &action);
			if (error)
				return(error);
			if (action == 0)
				return 0;
			xfs_da_node_unbalance(state, drop_blk, save_blk);
			break;
		}
		xfs_da_fixhashpath(state, &state->altpath);
		error = xfs_da_blk_unlink(state, drop_blk, save_blk);
		xfs_da_state_kill_altpath(state);
		if (error)
			return(error);
		error = xfs_da_shrink_inode(state->args, drop_blk->blkno,
							 drop_blk->bp);
		drop_blk->bp = NULL;
		if (error)
			return(error);
	}
	/*
	 * We joined all the way to the top.  If it turns out that
	 * we only have one entry in the root, make the child block
	 * the new root.
	 */
	xfs_da_node_remove(state, drop_blk);
	xfs_da_fixhashpath(state, &state->path);
	error = xfs_da_root_join(state, &state->path.blk[0]);
	return(error);
}

696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713
#ifdef	DEBUG
static void
xfs_da_blkinfo_onlychild_validate(struct xfs_da_blkinfo *blkinfo, __u16 level)
{
	__be16	magic = blkinfo->magic;

	if (level == 1) {
		ASSERT(magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
		       magic == cpu_to_be16(XFS_ATTR_LEAF_MAGIC));
	} else
		ASSERT(magic == cpu_to_be16(XFS_DA_NODE_MAGIC));
	ASSERT(!blkinfo->forw);
	ASSERT(!blkinfo->back);
}
#else	/* !DEBUG */
#define	xfs_da_blkinfo_onlychild_validate(blkinfo, level)
#endif	/* !DEBUG */

L
Linus Torvalds 已提交
714 715 716 717 718 719 720 721 722 723
/*
 * We have only one entry in the root.  Copy the only remaining child of
 * the old root to block 0 as the new root node.
 */
STATIC int
xfs_da_root_join(xfs_da_state_t *state, xfs_da_state_blk_t *root_blk)
{
	xfs_da_intnode_t *oldroot;
	xfs_da_args_t *args;
	xfs_dablk_t child;
724
	struct xfs_buf *bp;
L
Linus Torvalds 已提交
725 726
	int error;

727 728
	trace_xfs_da_root_join(state->args);

L
Linus Torvalds 已提交
729 730 731
	args = state->args;
	ASSERT(args != NULL);
	ASSERT(root_blk->magic == XFS_DA_NODE_MAGIC);
732
	oldroot = root_blk->bp->b_addr;
733
	ASSERT(oldroot->hdr.info.magic == cpu_to_be16(XFS_DA_NODE_MAGIC));
L
Linus Torvalds 已提交
734 735 736 737 738 739
	ASSERT(!oldroot->hdr.info.forw);
	ASSERT(!oldroot->hdr.info.back);

	/*
	 * If the root has more than one child, then don't do anything.
	 */
740
	if (be16_to_cpu(oldroot->hdr.count) > 1)
L
Linus Torvalds 已提交
741 742 743 744 745 746
		return(0);

	/*
	 * Read in the (only) child block, then copy those bytes into
	 * the root block's buffer and free the original child block.
	 */
747
	child = be32_to_cpu(oldroot->btree[0].before);
L
Linus Torvalds 已提交
748 749
	ASSERT(child != 0);
	error = xfs_da_read_buf(args->trans, args->dp, child, -1, &bp,
750
					     args->whichfork, NULL);
L
Linus Torvalds 已提交
751 752 753
	if (error)
		return(error);
	ASSERT(bp != NULL);
754
	xfs_da_blkinfo_onlychild_validate(bp->b_addr,
755 756
					be16_to_cpu(oldroot->hdr.level));

757 758
	memcpy(root_blk->bp->b_addr, bp->b_addr, state->blocksize);
	xfs_trans_log_buf(args->trans, root_blk->bp, 0, state->blocksize - 1);
L
Linus Torvalds 已提交
759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779
	error = xfs_da_shrink_inode(args, child, bp);
	return(error);
}

/*
 * Check a node block and its neighbors to see if the block should be
 * collapsed into one or the other neighbor.  Always keep the block
 * with the smaller block number.
 * If the current block is over 50% full, don't try to join it, return 0.
 * If the block is empty, fill in the state structure and return 2.
 * If it can be collapsed, fill in the state structure and return 1.
 * If nothing can be done, return 0.
 */
STATIC int
xfs_da_node_toosmall(xfs_da_state_t *state, int *action)
{
	xfs_da_intnode_t *node;
	xfs_da_state_blk_t *blk;
	xfs_da_blkinfo_t *info;
	int count, forward, error, retval, i;
	xfs_dablk_t blkno;
780
	struct xfs_buf *bp;
L
Linus Torvalds 已提交
781

782 783
	trace_xfs_da_node_toosmall(state->args);

L
Linus Torvalds 已提交
784 785 786 787 788 789
	/*
	 * Check for the degenerate case of the block being over 50% full.
	 * If so, it's not worth even looking to see if we might be able
	 * to coalesce with a sibling.
	 */
	blk = &state->path.blk[ state->path.active-1 ];
790
	info = blk->bp->b_addr;
791
	ASSERT(info->magic == cpu_to_be16(XFS_DA_NODE_MAGIC));
L
Linus Torvalds 已提交
792
	node = (xfs_da_intnode_t *)info;
793
	count = be16_to_cpu(node->hdr.count);
L
Linus Torvalds 已提交
794 795 796 797 798 799 800 801
	if (count > (state->node_ents >> 1)) {
		*action = 0;	/* blk over 50%, don't try to join */
		return(0);	/* blk over 50%, don't try to join */
	}

	/*
	 * Check for the degenerate case of the block being empty.
	 * If the block is empty, we'll simply delete it, no need to
802
	 * coalesce it with a sibling block.  We choose (arbitrarily)
L
Linus Torvalds 已提交
803 804 805 806 807 808 809
	 * to merge with the forward block unless it is NULL.
	 */
	if (count == 0) {
		/*
		 * Make altpath point to the block we want to keep and
		 * path point to the block we want to drop (this one).
		 */
810
		forward = (info->forw != 0);
L
Linus Torvalds 已提交
811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831
		memcpy(&state->altpath, &state->path, sizeof(state->path));
		error = xfs_da_path_shift(state, &state->altpath, forward,
						 0, &retval);
		if (error)
			return(error);
		if (retval) {
			*action = 0;
		} else {
			*action = 2;
		}
		return(0);
	}

	/*
	 * Examine each sibling block to see if we can coalesce with
	 * at least 25% free space to spare.  We need to figure out
	 * whether to merge with the forward or the backward block.
	 * We prefer coalescing with the lower numbered sibling so as
	 * to shrink a directory over time.
	 */
	/* start with smaller blk num */
832
	forward = (be32_to_cpu(info->forw) < be32_to_cpu(info->back));
L
Linus Torvalds 已提交
833 834
	for (i = 0; i < 2; forward = !forward, i++) {
		if (forward)
835
			blkno = be32_to_cpu(info->forw);
L
Linus Torvalds 已提交
836
		else
837
			blkno = be32_to_cpu(info->back);
L
Linus Torvalds 已提交
838 839 840
		if (blkno == 0)
			continue;
		error = xfs_da_read_buf(state->args->trans, state->args->dp,
841 842
					blkno, -1, &bp, state->args->whichfork,
					NULL);
L
Linus Torvalds 已提交
843 844 845 846 847 848 849
		if (error)
			return(error);
		ASSERT(bp != NULL);

		node = (xfs_da_intnode_t *)info;
		count  = state->node_ents;
		count -= state->node_ents >> 2;
850
		count -= be16_to_cpu(node->hdr.count);
851
		node = bp->b_addr;
852
		ASSERT(node->hdr.info.magic == cpu_to_be16(XFS_DA_NODE_MAGIC));
853
		count -= be16_to_cpu(node->hdr.count);
854
		xfs_trans_brelse(state->args->trans, bp);
L
Linus Torvalds 已提交
855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905
		if (count >= 0)
			break;	/* fits with at least 25% to spare */
	}
	if (i >= 2) {
		*action = 0;
		return(0);
	}

	/*
	 * Make altpath point to the block we want to keep (the lower
	 * numbered block) and path point to the block we want to drop.
	 */
	memcpy(&state->altpath, &state->path, sizeof(state->path));
	if (blkno < blk->blkno) {
		error = xfs_da_path_shift(state, &state->altpath, forward,
						 0, &retval);
		if (error) {
			return(error);
		}
		if (retval) {
			*action = 0;
			return(0);
		}
	} else {
		error = xfs_da_path_shift(state, &state->path, forward,
						 0, &retval);
		if (error) {
			return(error);
		}
		if (retval) {
			*action = 0;
			return(0);
		}
	}
	*action = 1;
	return(0);
}

/*
 * Walk back up the tree adjusting hash values as necessary,
 * when we stop making changes, return.
 */
void
xfs_da_fixhashpath(xfs_da_state_t *state, xfs_da_state_path_t *path)
{
	xfs_da_state_blk_t *blk;
	xfs_da_intnode_t *node;
	xfs_da_node_entry_t *btree;
	xfs_dahash_t lasthash=0;
	int level, count;

906 907
	trace_xfs_da_fixhashpath(state->args);

L
Linus Torvalds 已提交
908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927
	level = path->active-1;
	blk = &path->blk[ level ];
	switch (blk->magic) {
	case XFS_ATTR_LEAF_MAGIC:
		lasthash = xfs_attr_leaf_lasthash(blk->bp, &count);
		if (count == 0)
			return;
		break;
	case XFS_DIR2_LEAFN_MAGIC:
		lasthash = xfs_dir2_leafn_lasthash(blk->bp, &count);
		if (count == 0)
			return;
		break;
	case XFS_DA_NODE_MAGIC:
		lasthash = xfs_da_node_lasthash(blk->bp, &count);
		if (count == 0)
			return;
		break;
	}
	for (blk--, level--; level >= 0; blk--, level--) {
928
		node = blk->bp->b_addr;
929
		ASSERT(node->hdr.info.magic == cpu_to_be16(XFS_DA_NODE_MAGIC));
L
Linus Torvalds 已提交
930
		btree = &node->btree[ blk->index ];
931
		if (be32_to_cpu(btree->hashval) == lasthash)
L
Linus Torvalds 已提交
932 933
			break;
		blk->hashval = lasthash;
934
		btree->hashval = cpu_to_be32(lasthash);
935
		xfs_trans_log_buf(state->args->trans, blk->bp,
L
Linus Torvalds 已提交
936 937
				  XFS_DA_LOGRANGE(node, btree, sizeof(*btree)));

938
		lasthash = be32_to_cpu(node->btree[be16_to_cpu(node->hdr.count)-1].hashval);
L
Linus Torvalds 已提交
939 940 941 942 943 944 945 946 947 948 949 950 951
	}
}

/*
 * Remove an entry from an intermediate node.
 */
STATIC void
xfs_da_node_remove(xfs_da_state_t *state, xfs_da_state_blk_t *drop_blk)
{
	xfs_da_intnode_t *node;
	xfs_da_node_entry_t *btree;
	int tmp;

952 953
	trace_xfs_da_node_remove(state->args);

954
	node = drop_blk->bp->b_addr;
955
	ASSERT(drop_blk->index < be16_to_cpu(node->hdr.count));
L
Linus Torvalds 已提交
956 957 958 959 960 961
	ASSERT(drop_blk->index >= 0);

	/*
	 * Copy over the offending entry, or just zero it out.
	 */
	btree = &node->btree[drop_blk->index];
962 963
	if (drop_blk->index < (be16_to_cpu(node->hdr.count)-1)) {
		tmp  = be16_to_cpu(node->hdr.count) - drop_blk->index - 1;
L
Linus Torvalds 已提交
964 965
		tmp *= (uint)sizeof(xfs_da_node_entry_t);
		memmove(btree, btree + 1, tmp);
966
		xfs_trans_log_buf(state->args->trans, drop_blk->bp,
L
Linus Torvalds 已提交
967
		    XFS_DA_LOGRANGE(node, btree, tmp));
968
		btree = &node->btree[be16_to_cpu(node->hdr.count)-1];
L
Linus Torvalds 已提交
969 970
	}
	memset((char *)btree, 0, sizeof(xfs_da_node_entry_t));
971
	xfs_trans_log_buf(state->args->trans, drop_blk->bp,
L
Linus Torvalds 已提交
972
	    XFS_DA_LOGRANGE(node, btree, sizeof(*btree)));
973
	be16_add_cpu(&node->hdr.count, -1);
974
	xfs_trans_log_buf(state->args->trans, drop_blk->bp,
L
Linus Torvalds 已提交
975 976 977 978 979 980
	    XFS_DA_LOGRANGE(node, &node->hdr, sizeof(node->hdr)));

	/*
	 * Copy the last hash value from the block to propagate upwards.
	 */
	btree--;
981
	drop_blk->hashval = be32_to_cpu(btree->hashval);
L
Linus Torvalds 已提交
982 983 984 985 986 987 988 989 990 991 992 993 994 995 996
}

/*
 * Unbalance the btree elements between two intermediate nodes,
 * move all Btree elements from one node into another.
 */
STATIC void
xfs_da_node_unbalance(xfs_da_state_t *state, xfs_da_state_blk_t *drop_blk,
				     xfs_da_state_blk_t *save_blk)
{
	xfs_da_intnode_t *drop_node, *save_node;
	xfs_da_node_entry_t *btree;
	int tmp;
	xfs_trans_t *tp;

997 998
	trace_xfs_da_node_unbalance(state->args);

999 1000
	drop_node = drop_blk->bp->b_addr;
	save_node = save_blk->bp->b_addr;
1001 1002
	ASSERT(drop_node->hdr.info.magic == cpu_to_be16(XFS_DA_NODE_MAGIC));
	ASSERT(save_node->hdr.info.magic == cpu_to_be16(XFS_DA_NODE_MAGIC));
L
Linus Torvalds 已提交
1003 1004 1005 1006 1007 1008
	tp = state->args->trans;

	/*
	 * If the dying block has lower hashvals, then move all the
	 * elements in the remaining block up to make a hole.
	 */
1009
	if ((be32_to_cpu(drop_node->btree[0].hashval) < be32_to_cpu(save_node->btree[ 0 ].hashval)) ||
1010 1011
	    (be32_to_cpu(drop_node->btree[be16_to_cpu(drop_node->hdr.count)-1].hashval) <
	     be32_to_cpu(save_node->btree[be16_to_cpu(save_node->hdr.count)-1].hashval)))
L
Linus Torvalds 已提交
1012
	{
1013 1014
		btree = &save_node->btree[be16_to_cpu(drop_node->hdr.count)];
		tmp = be16_to_cpu(save_node->hdr.count) * (uint)sizeof(xfs_da_node_entry_t);
L
Linus Torvalds 已提交
1015 1016
		memmove(btree, &save_node->btree[0], tmp);
		btree = &save_node->btree[0];
1017
		xfs_trans_log_buf(tp, save_blk->bp,
L
Linus Torvalds 已提交
1018
			XFS_DA_LOGRANGE(save_node, btree,
1019
				(be16_to_cpu(save_node->hdr.count) + be16_to_cpu(drop_node->hdr.count)) *
L
Linus Torvalds 已提交
1020 1021
				sizeof(xfs_da_node_entry_t)));
	} else {
1022
		btree = &save_node->btree[be16_to_cpu(save_node->hdr.count)];
1023
		xfs_trans_log_buf(tp, save_blk->bp,
L
Linus Torvalds 已提交
1024
			XFS_DA_LOGRANGE(save_node, btree,
1025
				be16_to_cpu(drop_node->hdr.count) *
L
Linus Torvalds 已提交
1026 1027 1028 1029 1030 1031
				sizeof(xfs_da_node_entry_t)));
	}

	/*
	 * Move all the B-tree elements from drop_blk to save_blk.
	 */
1032
	tmp = be16_to_cpu(drop_node->hdr.count) * (uint)sizeof(xfs_da_node_entry_t);
L
Linus Torvalds 已提交
1033
	memcpy(btree, &drop_node->btree[0], tmp);
1034
	be16_add_cpu(&save_node->hdr.count, be16_to_cpu(drop_node->hdr.count));
L
Linus Torvalds 已提交
1035

1036
	xfs_trans_log_buf(tp, save_blk->bp,
L
Linus Torvalds 已提交
1037 1038 1039 1040 1041 1042
		XFS_DA_LOGRANGE(save_node, &save_node->hdr,
			sizeof(save_node->hdr)));

	/*
	 * Save the last hashval in the remaining block for upward propagation.
	 */
1043
	save_blk->hashval = be32_to_cpu(save_node->btree[be16_to_cpu(save_node->hdr.count)-1].hashval);
L
Linus Torvalds 已提交
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069
}

/*========================================================================
 * Routines used for finding things in the Btree.
 *========================================================================*/

/*
 * Walk down the Btree looking for a particular filename, filling
 * in the state structure as we go.
 *
 * We will set the state structure to point to each of the elements
 * in each of the nodes where either the hashval is or should be.
 *
 * We support duplicate hashval's so for each entry in the current
 * node that could contain the desired hashval, descend.  This is a
 * pruned depth-first tree search.
 */
int							/* error */
xfs_da_node_lookup_int(xfs_da_state_t *state, int *result)
{
	xfs_da_state_blk_t *blk;
	xfs_da_blkinfo_t *curr;
	xfs_da_intnode_t *node;
	xfs_da_node_entry_t *btree;
	xfs_dablk_t blkno;
	int probe, span, max, error, retval;
1070
	xfs_dahash_t hashval, btreehashval;
L
Linus Torvalds 已提交
1071 1072 1073 1074 1075 1076 1077 1078
	xfs_da_args_t *args;

	args = state->args;

	/*
	 * Descend thru the B-tree searching each level for the right
	 * node to use, until the right hashval is found.
	 */
1079
	blkno = (args->whichfork == XFS_DATA_FORK)? state->mp->m_dirleafblk : 0;
L
Linus Torvalds 已提交
1080 1081 1082 1083 1084 1085 1086 1087
	for (blk = &state->path.blk[0], state->path.active = 1;
			 state->path.active <= XFS_DA_NODE_MAXDEPTH;
			 blk++, state->path.active++) {
		/*
		 * Read the next node down in the tree.
		 */
		blk->blkno = blkno;
		error = xfs_da_read_buf(args->trans, args->dp, blkno,
1088
					-1, &blk->bp, args->whichfork, NULL);
L
Linus Torvalds 已提交
1089 1090 1091 1092 1093
		if (error) {
			blk->blkno = 0;
			state->path.active--;
			return(error);
		}
1094
		curr = blk->bp->b_addr;
1095 1096 1097 1098
		blk->magic = be16_to_cpu(curr->magic);
		ASSERT(blk->magic == XFS_DA_NODE_MAGIC ||
		       blk->magic == XFS_DIR2_LEAFN_MAGIC ||
		       blk->magic == XFS_ATTR_LEAF_MAGIC);
L
Linus Torvalds 已提交
1099 1100 1101 1102

		/*
		 * Search an intermediate node for a match.
		 */
1103
		if (blk->magic == XFS_DA_NODE_MAGIC) {
1104
			node = blk->bp->b_addr;
1105
			max = be16_to_cpu(node->hdr.count);
1106
			blk->hashval = be32_to_cpu(node->btree[max-1].hashval);
L
Linus Torvalds 已提交
1107 1108 1109 1110 1111 1112 1113 1114 1115

			/*
			 * Binary search.  (note: small blocks will skip loop)
			 */
			probe = span = max / 2;
			hashval = args->hashval;
			for (btree = &node->btree[probe]; span > 4;
				   btree = &node->btree[probe]) {
				span /= 2;
1116 1117
				btreehashval = be32_to_cpu(btree->hashval);
				if (btreehashval < hashval)
L
Linus Torvalds 已提交
1118
					probe += span;
1119
				else if (btreehashval > hashval)
L
Linus Torvalds 已提交
1120 1121 1122 1123 1124
					probe -= span;
				else
					break;
			}
			ASSERT((probe >= 0) && (probe < max));
1125
			ASSERT((span <= 4) || (be32_to_cpu(btree->hashval) == hashval));
L
Linus Torvalds 已提交
1126 1127 1128 1129 1130

			/*
			 * Since we may have duplicate hashval's, find the first
			 * matching hashval in the node.
			 */
1131
			while ((probe > 0) && (be32_to_cpu(btree->hashval) >= hashval)) {
L
Linus Torvalds 已提交
1132 1133 1134
				btree--;
				probe--;
			}
1135
			while ((probe < max) && (be32_to_cpu(btree->hashval) < hashval)) {
L
Linus Torvalds 已提交
1136 1137 1138 1139 1140 1141 1142 1143 1144
				btree++;
				probe++;
			}

			/*
			 * Pick the right block to descend on.
			 */
			if (probe == max) {
				blk->index = max-1;
1145
				blkno = be32_to_cpu(node->btree[max-1].before);
L
Linus Torvalds 已提交
1146 1147
			} else {
				blk->index = probe;
1148
				blkno = be32_to_cpu(btree->before);
L
Linus Torvalds 已提交
1149
			}
1150
		} else if (blk->magic == XFS_ATTR_LEAF_MAGIC) {
L
Linus Torvalds 已提交
1151 1152
			blk->hashval = xfs_attr_leaf_lasthash(blk->bp, NULL);
			break;
1153
		} else if (blk->magic == XFS_DIR2_LEAFN_MAGIC) {
L
Linus Torvalds 已提交
1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165
			blk->hashval = xfs_dir2_leafn_lasthash(blk->bp, NULL);
			break;
		}
	}

	/*
	 * A leaf block that ends in the hashval that we are interested in
	 * (final hashval == search hashval) means that the next block may
	 * contain more entries with the same hashval, shift upward to the
	 * next leaf and keep searching.
	 */
	for (;;) {
1166
		if (blk->magic == XFS_DIR2_LEAFN_MAGIC) {
L
Linus Torvalds 已提交
1167 1168
			retval = xfs_dir2_leafn_lookup_int(blk->bp, args,
							&blk->index, state);
1169
		} else if (blk->magic == XFS_ATTR_LEAF_MAGIC) {
L
Linus Torvalds 已提交
1170 1171 1172
			retval = xfs_attr_leaf_lookup_int(blk->bp, args);
			blk->index = args->index;
			args->blkno = blk->blkno;
1173 1174 1175
		} else {
			ASSERT(0);
			return XFS_ERROR(EFSCORRUPTED);
L
Linus Torvalds 已提交
1176 1177 1178 1179 1180 1181 1182 1183 1184
		}
		if (((retval == ENOENT) || (retval == ENOATTR)) &&
		    (blk->hashval == args->hashval)) {
			error = xfs_da_path_shift(state, &state->path, 1, 1,
							 &retval);
			if (error)
				return(error);
			if (retval == 0) {
				continue;
1185
			} else if (blk->magic == XFS_ATTR_LEAF_MAGIC) {
L
Linus Torvalds 已提交
1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209
				/* path_shift() gives ENOENT */
				retval = XFS_ERROR(ENOATTR);
			}
		}
		break;
	}
	*result = retval;
	return(0);
}

/*========================================================================
 * Utility routines.
 *========================================================================*/

/*
 * Link a new block into a doubly linked list of blocks (of whatever type).
 */
int							/* error */
xfs_da_blk_link(xfs_da_state_t *state, xfs_da_state_blk_t *old_blk,
			       xfs_da_state_blk_t *new_blk)
{
	xfs_da_blkinfo_t *old_info, *new_info, *tmp_info;
	xfs_da_args_t *args;
	int before=0, error;
1210
	struct xfs_buf *bp;
L
Linus Torvalds 已提交
1211 1212 1213 1214 1215 1216

	/*
	 * Set up environment.
	 */
	args = state->args;
	ASSERT(args != NULL);
1217 1218
	old_info = old_blk->bp->b_addr;
	new_info = new_blk->bp->b_addr;
L
Linus Torvalds 已提交
1219
	ASSERT(old_blk->magic == XFS_DA_NODE_MAGIC ||
1220
	       old_blk->magic == XFS_DIR2_LEAFN_MAGIC ||
L
Linus Torvalds 已提交
1221
	       old_blk->magic == XFS_ATTR_LEAF_MAGIC);
1222 1223
	ASSERT(old_blk->magic == be16_to_cpu(old_info->magic));
	ASSERT(new_blk->magic == be16_to_cpu(new_info->magic));
L
Linus Torvalds 已提交
1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244
	ASSERT(old_blk->magic == new_blk->magic);

	switch (old_blk->magic) {
	case XFS_ATTR_LEAF_MAGIC:
		before = xfs_attr_leaf_order(old_blk->bp, new_blk->bp);
		break;
	case XFS_DIR2_LEAFN_MAGIC:
		before = xfs_dir2_leafn_order(old_blk->bp, new_blk->bp);
		break;
	case XFS_DA_NODE_MAGIC:
		before = xfs_da_node_order(old_blk->bp, new_blk->bp);
		break;
	}

	/*
	 * Link blocks in appropriate order.
	 */
	if (before) {
		/*
		 * Link new block in before existing block.
		 */
1245
		trace_xfs_da_link_before(args);
1246 1247 1248
		new_info->forw = cpu_to_be32(old_blk->blkno);
		new_info->back = old_info->back;
		if (old_info->back) {
L
Linus Torvalds 已提交
1249
			error = xfs_da_read_buf(args->trans, args->dp,
1250
						be32_to_cpu(old_info->back),
1251
						-1, &bp, args->whichfork, NULL);
L
Linus Torvalds 已提交
1252 1253 1254
			if (error)
				return(error);
			ASSERT(bp != NULL);
1255
			tmp_info = bp->b_addr;
1256 1257 1258
			ASSERT(be16_to_cpu(tmp_info->magic) == be16_to_cpu(old_info->magic));
			ASSERT(be32_to_cpu(tmp_info->forw) == old_blk->blkno);
			tmp_info->forw = cpu_to_be32(new_blk->blkno);
1259
			xfs_trans_log_buf(args->trans, bp, 0, sizeof(*tmp_info)-1);
L
Linus Torvalds 已提交
1260
		}
1261
		old_info->back = cpu_to_be32(new_blk->blkno);
L
Linus Torvalds 已提交
1262 1263 1264 1265
	} else {
		/*
		 * Link new block in after existing block.
		 */
1266
		trace_xfs_da_link_after(args);
1267 1268 1269
		new_info->forw = old_info->forw;
		new_info->back = cpu_to_be32(old_blk->blkno);
		if (old_info->forw) {
L
Linus Torvalds 已提交
1270
			error = xfs_da_read_buf(args->trans, args->dp,
1271
						be32_to_cpu(old_info->forw),
1272
						-1, &bp, args->whichfork, NULL);
L
Linus Torvalds 已提交
1273 1274 1275
			if (error)
				return(error);
			ASSERT(bp != NULL);
1276
			tmp_info = bp->b_addr;
1277 1278 1279
			ASSERT(tmp_info->magic == old_info->magic);
			ASSERT(be32_to_cpu(tmp_info->back) == old_blk->blkno);
			tmp_info->back = cpu_to_be32(new_blk->blkno);
1280
			xfs_trans_log_buf(args->trans, bp, 0, sizeof(*tmp_info)-1);
L
Linus Torvalds 已提交
1281
		}
1282
		old_info->forw = cpu_to_be32(new_blk->blkno);
L
Linus Torvalds 已提交
1283 1284
	}

1285 1286
	xfs_trans_log_buf(args->trans, old_blk->bp, 0, sizeof(*tmp_info) - 1);
	xfs_trans_log_buf(args->trans, new_blk->bp, 0, sizeof(*tmp_info) - 1);
L
Linus Torvalds 已提交
1287 1288 1289 1290 1291 1292 1293
	return(0);
}

/*
 * Compare two intermediate nodes for "order".
 */
STATIC int
1294 1295 1296
xfs_da_node_order(
	struct xfs_buf	*node1_bp,
	struct xfs_buf	*node2_bp)
L
Linus Torvalds 已提交
1297 1298 1299
{
	xfs_da_intnode_t *node1, *node2;

1300 1301
	node1 = node1_bp->b_addr;
	node2 = node2_bp->b_addr;
1302 1303
	ASSERT(node1->hdr.info.magic == cpu_to_be16(XFS_DA_NODE_MAGIC) &&
	       node2->hdr.info.magic == cpu_to_be16(XFS_DA_NODE_MAGIC));
1304
	if ((be16_to_cpu(node1->hdr.count) > 0) && (be16_to_cpu(node2->hdr.count) > 0) &&
1305 1306
	    ((be32_to_cpu(node2->btree[0].hashval) <
	      be32_to_cpu(node1->btree[0].hashval)) ||
1307 1308
	     (be32_to_cpu(node2->btree[be16_to_cpu(node2->hdr.count)-1].hashval) <
	      be32_to_cpu(node1->btree[be16_to_cpu(node1->hdr.count)-1].hashval)))) {
L
Linus Torvalds 已提交
1309 1310 1311 1312 1313 1314 1315 1316 1317
		return(1);
	}
	return(0);
}

/*
 * Pick up the last hashvalue from an intermediate node.
 */
STATIC uint
1318 1319 1320
xfs_da_node_lasthash(
	struct xfs_buf	*bp,
	int		*count)
L
Linus Torvalds 已提交
1321 1322 1323
{
	xfs_da_intnode_t *node;

1324
	node = bp->b_addr;
1325
	ASSERT(node->hdr.info.magic == cpu_to_be16(XFS_DA_NODE_MAGIC));
L
Linus Torvalds 已提交
1326
	if (count)
1327
		*count = be16_to_cpu(node->hdr.count);
L
Linus Torvalds 已提交
1328 1329
	if (!node->hdr.count)
		return(0);
1330
	return be32_to_cpu(node->btree[be16_to_cpu(node->hdr.count)-1].hashval);
L
Linus Torvalds 已提交
1331 1332 1333 1334 1335
}

/*
 * Unlink a block from a doubly linked list of blocks.
 */
1336
STATIC int						/* error */
L
Linus Torvalds 已提交
1337 1338 1339 1340 1341
xfs_da_blk_unlink(xfs_da_state_t *state, xfs_da_state_blk_t *drop_blk,
				 xfs_da_state_blk_t *save_blk)
{
	xfs_da_blkinfo_t *drop_info, *save_info, *tmp_info;
	xfs_da_args_t *args;
1342
	struct xfs_buf *bp;
L
Linus Torvalds 已提交
1343 1344 1345 1346 1347 1348 1349
	int error;

	/*
	 * Set up environment.
	 */
	args = state->args;
	ASSERT(args != NULL);
1350 1351
	save_info = save_blk->bp->b_addr;
	drop_info = drop_blk->bp->b_addr;
L
Linus Torvalds 已提交
1352
	ASSERT(save_blk->magic == XFS_DA_NODE_MAGIC ||
1353
	       save_blk->magic == XFS_DIR2_LEAFN_MAGIC ||
L
Linus Torvalds 已提交
1354
	       save_blk->magic == XFS_ATTR_LEAF_MAGIC);
1355 1356
	ASSERT(save_blk->magic == be16_to_cpu(save_info->magic));
	ASSERT(drop_blk->magic == be16_to_cpu(drop_info->magic));
L
Linus Torvalds 已提交
1357
	ASSERT(save_blk->magic == drop_blk->magic);
1358 1359 1360 1361
	ASSERT((be32_to_cpu(save_info->forw) == drop_blk->blkno) ||
	       (be32_to_cpu(save_info->back) == drop_blk->blkno));
	ASSERT((be32_to_cpu(drop_info->forw) == save_blk->blkno) ||
	       (be32_to_cpu(drop_info->back) == save_blk->blkno));
L
Linus Torvalds 已提交
1362 1363 1364 1365

	/*
	 * Unlink the leaf block from the doubly linked chain of leaves.
	 */
1366
	if (be32_to_cpu(save_info->back) == drop_blk->blkno) {
1367
		trace_xfs_da_unlink_back(args);
1368 1369
		save_info->back = drop_info->back;
		if (drop_info->back) {
L
Linus Torvalds 已提交
1370
			error = xfs_da_read_buf(args->trans, args->dp,
1371
						be32_to_cpu(drop_info->back),
1372
						-1, &bp, args->whichfork, NULL);
L
Linus Torvalds 已提交
1373 1374 1375
			if (error)
				return(error);
			ASSERT(bp != NULL);
1376
			tmp_info = bp->b_addr;
1377 1378 1379
			ASSERT(tmp_info->magic == save_info->magic);
			ASSERT(be32_to_cpu(tmp_info->forw) == drop_blk->blkno);
			tmp_info->forw = cpu_to_be32(save_blk->blkno);
1380
			xfs_trans_log_buf(args->trans, bp, 0,
L
Linus Torvalds 已提交
1381 1382 1383
						    sizeof(*tmp_info) - 1);
		}
	} else {
1384
		trace_xfs_da_unlink_forward(args);
1385 1386
		save_info->forw = drop_info->forw;
		if (drop_info->forw) {
L
Linus Torvalds 已提交
1387
			error = xfs_da_read_buf(args->trans, args->dp,
1388
						be32_to_cpu(drop_info->forw),
1389
						-1, &bp, args->whichfork, NULL);
L
Linus Torvalds 已提交
1390 1391 1392
			if (error)
				return(error);
			ASSERT(bp != NULL);
1393
			tmp_info = bp->b_addr;
1394 1395 1396
			ASSERT(tmp_info->magic == save_info->magic);
			ASSERT(be32_to_cpu(tmp_info->back) == drop_blk->blkno);
			tmp_info->back = cpu_to_be32(save_blk->blkno);
1397
			xfs_trans_log_buf(args->trans, bp, 0,
L
Linus Torvalds 已提交
1398 1399 1400 1401
						    sizeof(*tmp_info) - 1);
		}
	}

1402
	xfs_trans_log_buf(args->trans, save_blk->bp, 0, sizeof(*save_info) - 1);
L
Linus Torvalds 已提交
1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424
	return(0);
}

/*
 * Move a path "forward" or "!forward" one block at the current level.
 *
 * This routine will adjust a "path" to point to the next block
 * "forward" (higher hashvalues) or "!forward" (lower hashvals) in the
 * Btree, including updating pointers to the intermediate nodes between
 * the new bottom and the root.
 */
int							/* error */
xfs_da_path_shift(xfs_da_state_t *state, xfs_da_state_path_t *path,
				 int forward, int release, int *result)
{
	xfs_da_state_blk_t *blk;
	xfs_da_blkinfo_t *info;
	xfs_da_intnode_t *node;
	xfs_da_args_t *args;
	xfs_dablk_t blkno=0;
	int level, error;

1425 1426
	trace_xfs_da_path_shift(state->args);

L
Linus Torvalds 已提交
1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438
	/*
	 * Roll up the Btree looking for the first block where our
	 * current index is not at the edge of the block.  Note that
	 * we skip the bottom layer because we want the sibling block.
	 */
	args = state->args;
	ASSERT(args != NULL);
	ASSERT(path != NULL);
	ASSERT((path->active > 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
	level = (path->active-1) - 1;	/* skip bottom layer in path */
	for (blk = &path->blk[level]; level >= 0; blk--, level--) {
		ASSERT(blk->bp != NULL);
1439
		node = blk->bp->b_addr;
1440
		ASSERT(node->hdr.info.magic == cpu_to_be16(XFS_DA_NODE_MAGIC));
1441
		if (forward && (blk->index < be16_to_cpu(node->hdr.count)-1)) {
L
Linus Torvalds 已提交
1442
			blk->index++;
1443
			blkno = be32_to_cpu(node->btree[blk->index].before);
L
Linus Torvalds 已提交
1444 1445 1446
			break;
		} else if (!forward && (blk->index > 0)) {
			blk->index--;
1447
			blkno = be32_to_cpu(node->btree[blk->index].before);
L
Linus Torvalds 已提交
1448 1449 1450 1451 1452
			break;
		}
	}
	if (level < 0) {
		*result = XFS_ERROR(ENOENT);	/* we're out of our tree */
1453
		ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
L
Linus Torvalds 已提交
1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466
		return(0);
	}

	/*
	 * Roll down the edge of the subtree until we reach the
	 * same depth we were at originally.
	 */
	for (blk++, level++; level < path->active; blk++, level++) {
		/*
		 * Release the old block.
		 * (if it's dirty, trans won't actually let go)
		 */
		if (release)
1467
			xfs_trans_brelse(args->trans, blk->bp);
L
Linus Torvalds 已提交
1468 1469 1470 1471 1472 1473

		/*
		 * Read the next child block.
		 */
		blk->blkno = blkno;
		error = xfs_da_read_buf(args->trans, args->dp, blkno, -1,
1474
					&blk->bp, args->whichfork, NULL);
L
Linus Torvalds 已提交
1475 1476 1477
		if (error)
			return(error);
		ASSERT(blk->bp != NULL);
1478
		info = blk->bp->b_addr;
1479 1480 1481
		ASSERT(info->magic == cpu_to_be16(XFS_DA_NODE_MAGIC) ||
		       info->magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
		       info->magic == cpu_to_be16(XFS_ATTR_LEAF_MAGIC));
1482 1483
		blk->magic = be16_to_cpu(info->magic);
		if (blk->magic == XFS_DA_NODE_MAGIC) {
L
Linus Torvalds 已提交
1484
			node = (xfs_da_intnode_t *)info;
1485
			blk->hashval = be32_to_cpu(node->btree[be16_to_cpu(node->hdr.count)-1].hashval);
L
Linus Torvalds 已提交
1486 1487 1488
			if (forward)
				blk->index = 0;
			else
1489
				blk->index = be16_to_cpu(node->hdr.count)-1;
1490
			blkno = be32_to_cpu(node->btree[blk->index].before);
L
Linus Torvalds 已提交
1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504
		} else {
			ASSERT(level == path->active-1);
			blk->index = 0;
			switch(blk->magic) {
			case XFS_ATTR_LEAF_MAGIC:
				blk->hashval = xfs_attr_leaf_lasthash(blk->bp,
								      NULL);
				break;
			case XFS_DIR2_LEAFN_MAGIC:
				blk->hashval = xfs_dir2_leafn_lasthash(blk->bp,
								       NULL);
				break;
			default:
				ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC ||
1505
				       blk->magic == XFS_DIR2_LEAFN_MAGIC);
L
Linus Torvalds 已提交
1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524
				break;
			}
		}
	}
	*result = 0;
	return(0);
}


/*========================================================================
 * Utility routines.
 *========================================================================*/

/*
 * Implement a simple hash on a character string.
 * Rotate the hash value by 7 bits, then XOR each character in.
 * This is implemented with some source-level loop unrolling.
 */
xfs_dahash_t
1525
xfs_da_hashname(const __uint8_t *name, int namelen)
L
Linus Torvalds 已提交
1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546
{
	xfs_dahash_t hash;

	/*
	 * Do four characters at a time as long as we can.
	 */
	for (hash = 0; namelen >= 4; namelen -= 4, name += 4)
		hash = (name[0] << 21) ^ (name[1] << 14) ^ (name[2] << 7) ^
		       (name[3] << 0) ^ rol32(hash, 7 * 4);

	/*
	 * Now do the rest of the characters.
	 */
	switch (namelen) {
	case 3:
		return (name[0] << 14) ^ (name[1] << 7) ^ (name[2] << 0) ^
		       rol32(hash, 7 * 3);
	case 2:
		return (name[0] << 7) ^ (name[1] << 0) ^ rol32(hash, 7 * 2);
	case 1:
		return (name[0] << 0) ^ rol32(hash, 7 * 1);
1547
	default: /* case 0: */
L
Linus Torvalds 已提交
1548 1549 1550 1551
		return hash;
	}
}

1552 1553 1554
enum xfs_dacmp
xfs_da_compname(
	struct xfs_da_args *args,
1555 1556
	const unsigned char *name,
	int		len)
1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573
{
	return (args->namelen == len && memcmp(args->name, name, len) == 0) ?
					XFS_CMP_EXACT : XFS_CMP_DIFFERENT;
}

static xfs_dahash_t
xfs_default_hashname(
	struct xfs_name	*name)
{
	return xfs_da_hashname(name->name, name->len);
}

const struct xfs_nameops xfs_default_nameops = {
	.hashname	= xfs_default_hashname,
	.compname	= xfs_da_compname
};

L
Linus Torvalds 已提交
1574
int
1575 1576 1577 1578
xfs_da_grow_inode_int(
	struct xfs_da_args	*args,
	xfs_fileoff_t		*bno,
	int			count)
L
Linus Torvalds 已提交
1579
{
1580 1581 1582 1583 1584 1585
	struct xfs_trans	*tp = args->trans;
	struct xfs_inode	*dp = args->dp;
	int			w = args->whichfork;
	xfs_drfsbno_t		nblks = dp->i_d.di_nblocks;
	struct xfs_bmbt_irec	map, *mapp;
	int			nmap, error, got, i, mapi;
L
Linus Torvalds 已提交
1586 1587 1588 1589

	/*
	 * Find a spot in the file space to put the new block.
	 */
1590 1591
	error = xfs_bmap_first_unused(tp, dp, count, bno, w);
	if (error)
L
Linus Torvalds 已提交
1592
		return error;
1593

L
Linus Torvalds 已提交
1594 1595 1596 1597 1598
	/*
	 * Try mapping it in one filesystem block.
	 */
	nmap = 1;
	ASSERT(args->firstblock != NULL);
1599 1600
	error = xfs_bmapi_write(tp, dp, *bno, count,
			xfs_bmapi_aflag(w)|XFS_BMAPI_METADATA|XFS_BMAPI_CONTIG,
L
Linus Torvalds 已提交
1601
			args->firstblock, args->total, &map, &nmap,
1602 1603
			args->flist);
	if (error)
L
Linus Torvalds 已提交
1604
		return error;
1605

L
Linus Torvalds 已提交
1606 1607 1608 1609
	ASSERT(nmap <= 1);
	if (nmap == 1) {
		mapp = &map;
		mapi = 1;
1610 1611 1612 1613 1614 1615 1616 1617
	} else if (nmap == 0 && count > 1) {
		xfs_fileoff_t		b;
		int			c;

		/*
		 * If we didn't get it and the block might work if fragmented,
		 * try without the CONTIG flag.  Loop until we get it all.
		 */
L
Linus Torvalds 已提交
1618
		mapp = kmem_alloc(sizeof(*mapp) * count, KM_SLEEP);
1619
		for (b = *bno, mapi = 0; b < *bno + count; ) {
L
Linus Torvalds 已提交
1620
			nmap = MIN(XFS_BMAP_MAX_NMAP, count);
1621
			c = (int)(*bno + count - b);
1622 1623
			error = xfs_bmapi_write(tp, dp, b, c,
					xfs_bmapi_aflag(w)|XFS_BMAPI_METADATA,
L
Linus Torvalds 已提交
1624
					args->firstblock, args->total,
1625 1626 1627
					&mapp[mapi], &nmap, args->flist);
			if (error)
				goto out_free_map;
L
Linus Torvalds 已提交
1628 1629 1630 1631 1632 1633 1634 1635 1636 1637
			if (nmap < 1)
				break;
			mapi += nmap;
			b = mapp[mapi - 1].br_startoff +
			    mapp[mapi - 1].br_blockcount;
		}
	} else {
		mapi = 0;
		mapp = NULL;
	}
1638

L
Linus Torvalds 已提交
1639 1640 1641 1642 1643
	/*
	 * Count the blocks we got, make sure it matches the total.
	 */
	for (i = 0, got = 0; i < mapi; i++)
		got += mapp[i].br_blockcount;
1644
	if (got != count || mapp[0].br_startoff != *bno ||
L
Linus Torvalds 已提交
1645
	    mapp[mapi - 1].br_startoff + mapp[mapi - 1].br_blockcount !=
1646 1647 1648
	    *bno + count) {
		error = XFS_ERROR(ENOSPC);
		goto out_free_map;
L
Linus Torvalds 已提交
1649
	}
1650

1651 1652
	/* account for newly allocated blocks in reserved blocks total */
	args->total -= dp->i_d.di_nblocks - nblks;
1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672

out_free_map:
	if (mapp != &map)
		kmem_free(mapp);
	return error;
}

/*
 * Add a block to the btree ahead of the file.
 * Return the new block number to the caller.
 */
int
xfs_da_grow_inode(
	struct xfs_da_args	*args,
	xfs_dablk_t		*new_blkno)
{
	xfs_fileoff_t		bno;
	int			count;
	int			error;

1673 1674
	trace_xfs_da_grow_inode(args);

1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686
	if (args->whichfork == XFS_DATA_FORK) {
		bno = args->dp->i_mount->m_dirleafblk;
		count = args->dp->i_mount->m_dirblkfsbs;
	} else {
		bno = 0;
		count = 1;
	}

	error = xfs_da_grow_inode_int(args, &bno, count);
	if (!error)
		*new_blkno = (xfs_dablk_t)bno;
	return error;
L
Linus Torvalds 已提交
1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697
}

/*
 * Ick.  We need to always be able to remove a btree block, even
 * if there's no space reservation because the filesystem is full.
 * This is called if xfs_bunmapi on a btree block fails due to ENOSPC.
 * It swaps the target block with the last block in the file.  The
 * last block in the file can always be removed since it can't cause
 * a bmap btree split to do that.
 */
STATIC int
1698 1699 1700 1701
xfs_da_swap_lastblock(
	xfs_da_args_t	*args,
	xfs_dablk_t	*dead_blknop,
	struct xfs_buf	**dead_bufp)
L
Linus Torvalds 已提交
1702 1703
{
	xfs_dablk_t dead_blkno, last_blkno, sib_blkno, par_blkno;
1704
	struct xfs_buf *dead_buf, *last_buf, *sib_buf, *par_buf;
L
Linus Torvalds 已提交
1705 1706 1707 1708 1709 1710 1711 1712 1713 1714
	xfs_fileoff_t lastoff;
	xfs_inode_t *ip;
	xfs_trans_t *tp;
	xfs_mount_t *mp;
	int error, w, entno, level, dead_level;
	xfs_da_blkinfo_t *dead_info, *sib_info;
	xfs_da_intnode_t *par_node, *dead_node;
	xfs_dir2_leaf_t *dead_leaf2;
	xfs_dahash_t dead_hash;

1715 1716
	trace_xfs_da_swap_lastblock(args);

L
Linus Torvalds 已提交
1717 1718 1719 1720 1721 1722 1723
	dead_buf = *dead_bufp;
	dead_blkno = *dead_blknop;
	tp = args->trans;
	ip = args->dp;
	w = args->whichfork;
	ASSERT(w == XFS_DATA_FORK);
	mp = ip->i_mount;
1724 1725
	lastoff = mp->m_dirfreeblk;
	error = xfs_bmap_last_before(tp, ip, &lastoff, w);
L
Linus Torvalds 已提交
1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736
	if (error)
		return error;
	if (unlikely(lastoff == 0)) {
		XFS_ERROR_REPORT("xfs_da_swap_lastblock(1)", XFS_ERRLEVEL_LOW,
				 mp);
		return XFS_ERROR(EFSCORRUPTED);
	}
	/*
	 * Read the last block in the btree space.
	 */
	last_blkno = (xfs_dablk_t)lastoff - mp->m_dirblkfsbs;
1737 1738
	error = xfs_da_read_buf(tp, ip, last_blkno, -1, &last_buf, w, NULL);
	if (error)
L
Linus Torvalds 已提交
1739 1740 1741 1742
		return error;
	/*
	 * Copy the last block into the dead buffer and log it.
	 */
1743 1744 1745
	memcpy(dead_buf->b_addr, last_buf->b_addr, mp->m_dirblksize);
	xfs_trans_log_buf(tp, dead_buf, 0, mp->m_dirblksize - 1);
	dead_info = dead_buf->b_addr;
L
Linus Torvalds 已提交
1746 1747 1748
	/*
	 * Get values from the moved block.
	 */
1749
	if (dead_info->magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC)) {
L
Linus Torvalds 已提交
1750 1751
		dead_leaf2 = (xfs_dir2_leaf_t *)dead_info;
		dead_level = 0;
1752
		dead_hash = be32_to_cpu(dead_leaf2->ents[be16_to_cpu(dead_leaf2->hdr.count) - 1].hashval);
L
Linus Torvalds 已提交
1753
	} else {
1754
		ASSERT(dead_info->magic == cpu_to_be16(XFS_DA_NODE_MAGIC));
L
Linus Torvalds 已提交
1755
		dead_node = (xfs_da_intnode_t *)dead_info;
1756 1757
		dead_level = be16_to_cpu(dead_node->hdr.level);
		dead_hash = be32_to_cpu(dead_node->btree[be16_to_cpu(dead_node->hdr.count) - 1].hashval);
L
Linus Torvalds 已提交
1758 1759 1760 1761 1762
	}
	sib_buf = par_buf = NULL;
	/*
	 * If the moved block has a left sibling, fix up the pointers.
	 */
1763
	if ((sib_blkno = be32_to_cpu(dead_info->back))) {
1764 1765 1766
		error = xfs_da_read_buf(tp, ip, sib_blkno, -1, &sib_buf, w,
					NULL);
		if (error)
L
Linus Torvalds 已提交
1767
			goto done;
1768
		sib_info = sib_buf->b_addr;
L
Linus Torvalds 已提交
1769
		if (unlikely(
1770 1771
		    be32_to_cpu(sib_info->forw) != last_blkno ||
		    sib_info->magic != dead_info->magic)) {
L
Linus Torvalds 已提交
1772 1773 1774 1775 1776
			XFS_ERROR_REPORT("xfs_da_swap_lastblock(2)",
					 XFS_ERRLEVEL_LOW, mp);
			error = XFS_ERROR(EFSCORRUPTED);
			goto done;
		}
1777
		sib_info->forw = cpu_to_be32(dead_blkno);
1778
		xfs_trans_log_buf(tp, sib_buf,
L
Linus Torvalds 已提交
1779 1780 1781 1782 1783 1784 1785
			XFS_DA_LOGRANGE(sib_info, &sib_info->forw,
					sizeof(sib_info->forw)));
		sib_buf = NULL;
	}
	/*
	 * If the moved block has a right sibling, fix up the pointers.
	 */
1786
	if ((sib_blkno = be32_to_cpu(dead_info->forw))) {
1787 1788 1789
		error = xfs_da_read_buf(tp, ip, sib_blkno, -1, &sib_buf, w,
					NULL);
		if (error)
L
Linus Torvalds 已提交
1790
			goto done;
1791
		sib_info = sib_buf->b_addr;
L
Linus Torvalds 已提交
1792
		if (unlikely(
1793 1794
		       be32_to_cpu(sib_info->back) != last_blkno ||
		       sib_info->magic != dead_info->magic)) {
L
Linus Torvalds 已提交
1795 1796 1797 1798 1799
			XFS_ERROR_REPORT("xfs_da_swap_lastblock(3)",
					 XFS_ERRLEVEL_LOW, mp);
			error = XFS_ERROR(EFSCORRUPTED);
			goto done;
		}
1800
		sib_info->back = cpu_to_be32(dead_blkno);
1801
		xfs_trans_log_buf(tp, sib_buf,
L
Linus Torvalds 已提交
1802 1803 1804 1805
			XFS_DA_LOGRANGE(sib_info, &sib_info->back,
					sizeof(sib_info->back)));
		sib_buf = NULL;
	}
1806
	par_blkno = mp->m_dirleafblk;
L
Linus Torvalds 已提交
1807 1808 1809 1810 1811
	level = -1;
	/*
	 * Walk down the tree looking for the parent of the moved block.
	 */
	for (;;) {
1812 1813 1814
		error = xfs_da_read_buf(tp, ip, par_blkno, -1, &par_buf, w,
					NULL);
		if (error)
L
Linus Torvalds 已提交
1815
			goto done;
1816
		par_node = par_buf->b_addr;
1817 1818
		if (unlikely(par_node->hdr.info.magic !=
		    cpu_to_be16(XFS_DA_NODE_MAGIC) ||
1819
		    (level >= 0 && level != be16_to_cpu(par_node->hdr.level) + 1))) {
L
Linus Torvalds 已提交
1820 1821 1822 1823 1824
			XFS_ERROR_REPORT("xfs_da_swap_lastblock(4)",
					 XFS_ERRLEVEL_LOW, mp);
			error = XFS_ERROR(EFSCORRUPTED);
			goto done;
		}
1825
		level = be16_to_cpu(par_node->hdr.level);
L
Linus Torvalds 已提交
1826
		for (entno = 0;
1827
		     entno < be16_to_cpu(par_node->hdr.count) &&
1828
		     be32_to_cpu(par_node->btree[entno].hashval) < dead_hash;
L
Linus Torvalds 已提交
1829 1830
		     entno++)
			continue;
1831
		if (unlikely(entno == be16_to_cpu(par_node->hdr.count))) {
L
Linus Torvalds 已提交
1832 1833 1834 1835 1836
			XFS_ERROR_REPORT("xfs_da_swap_lastblock(5)",
					 XFS_ERRLEVEL_LOW, mp);
			error = XFS_ERROR(EFSCORRUPTED);
			goto done;
		}
1837
		par_blkno = be32_to_cpu(par_node->btree[entno].before);
L
Linus Torvalds 已提交
1838 1839
		if (level == dead_level + 1)
			break;
1840
		xfs_trans_brelse(tp, par_buf);
L
Linus Torvalds 已提交
1841 1842 1843 1844 1845 1846 1847 1848
		par_buf = NULL;
	}
	/*
	 * We're in the right parent block.
	 * Look for the right entry.
	 */
	for (;;) {
		for (;
1849
		     entno < be16_to_cpu(par_node->hdr.count) &&
1850
		     be32_to_cpu(par_node->btree[entno].before) != last_blkno;
L
Linus Torvalds 已提交
1851 1852
		     entno++)
			continue;
1853
		if (entno < be16_to_cpu(par_node->hdr.count))
L
Linus Torvalds 已提交
1854
			break;
1855
		par_blkno = be32_to_cpu(par_node->hdr.info.forw);
1856
		xfs_trans_brelse(tp, par_buf);
L
Linus Torvalds 已提交
1857 1858 1859 1860 1861 1862 1863
		par_buf = NULL;
		if (unlikely(par_blkno == 0)) {
			XFS_ERROR_REPORT("xfs_da_swap_lastblock(6)",
					 XFS_ERRLEVEL_LOW, mp);
			error = XFS_ERROR(EFSCORRUPTED);
			goto done;
		}
1864 1865 1866
		error = xfs_da_read_buf(tp, ip, par_blkno, -1, &par_buf, w,
					NULL);
		if (error)
L
Linus Torvalds 已提交
1867
			goto done;
1868
		par_node = par_buf->b_addr;
L
Linus Torvalds 已提交
1869
		if (unlikely(
1870
		    be16_to_cpu(par_node->hdr.level) != level ||
1871
		    par_node->hdr.info.magic != cpu_to_be16(XFS_DA_NODE_MAGIC))) {
L
Linus Torvalds 已提交
1872 1873 1874 1875 1876 1877 1878 1879 1880 1881
			XFS_ERROR_REPORT("xfs_da_swap_lastblock(7)",
					 XFS_ERRLEVEL_LOW, mp);
			error = XFS_ERROR(EFSCORRUPTED);
			goto done;
		}
		entno = 0;
	}
	/*
	 * Update the parent entry pointing to the moved block.
	 */
1882
	par_node->btree[entno].before = cpu_to_be32(dead_blkno);
1883
	xfs_trans_log_buf(tp, par_buf,
L
Linus Torvalds 已提交
1884 1885 1886 1887 1888 1889 1890
		XFS_DA_LOGRANGE(par_node, &par_node->btree[entno].before,
				sizeof(par_node->btree[entno].before)));
	*dead_blknop = last_blkno;
	*dead_bufp = last_buf;
	return 0;
done:
	if (par_buf)
1891
		xfs_trans_brelse(tp, par_buf);
L
Linus Torvalds 已提交
1892
	if (sib_buf)
1893 1894
		xfs_trans_brelse(tp, sib_buf);
	xfs_trans_brelse(tp, last_buf);
L
Linus Torvalds 已提交
1895 1896 1897 1898 1899 1900 1901
	return error;
}

/*
 * Remove a btree block from a directory or attribute.
 */
int
1902 1903 1904 1905
xfs_da_shrink_inode(
	xfs_da_args_t	*args,
	xfs_dablk_t	dead_blkno,
	struct xfs_buf	*dead_buf)
L
Linus Torvalds 已提交
1906 1907 1908 1909 1910 1911
{
	xfs_inode_t *dp;
	int done, error, w, count;
	xfs_trans_t *tp;
	xfs_mount_t *mp;

1912 1913
	trace_xfs_da_shrink_inode(args);

L
Linus Torvalds 已提交
1914 1915 1916 1917
	dp = args->dp;
	w = args->whichfork;
	tp = args->trans;
	mp = dp->i_mount;
1918
	if (w == XFS_DATA_FORK)
L
Linus Torvalds 已提交
1919 1920 1921 1922 1923 1924 1925 1926 1927
		count = mp->m_dirblkfsbs;
	else
		count = 1;
	for (;;) {
		/*
		 * Remove extents.  If we get ENOSPC for a dir we have to move
		 * the last block to the place we want to kill.
		 */
		if ((error = xfs_bunmapi(tp, dp, dead_blkno, count,
1928
				xfs_bmapi_aflag(w)|XFS_BMAPI_METADATA,
1929
				0, args->firstblock, args->flist,
L
Linus Torvalds 已提交
1930 1931
				&done)) == ENOSPC) {
			if (w != XFS_DATA_FORK)
1932
				break;
L
Linus Torvalds 已提交
1933 1934
			if ((error = xfs_da_swap_lastblock(args, &dead_blkno,
					&dead_buf)))
1935 1936
				break;
		} else {
L
Linus Torvalds 已提交
1937 1938 1939
			break;
		}
	}
1940
	xfs_trans_binval(tp, dead_buf);
L
Linus Torvalds 已提交
1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971
	return error;
}

/*
 * See if the mapping(s) for this btree block are valid, i.e.
 * don't contain holes, are logically contiguous, and cover the whole range.
 */
STATIC int
xfs_da_map_covers_blocks(
	int		nmap,
	xfs_bmbt_irec_t	*mapp,
	xfs_dablk_t	bno,
	int		count)
{
	int		i;
	xfs_fileoff_t	off;

	for (i = 0, off = bno; i < nmap; i++) {
		if (mapp[i].br_startblock == HOLESTARTBLOCK ||
		    mapp[i].br_startblock == DELAYSTARTBLOCK) {
			return 0;
		}
		if (off != mapp[i].br_startoff) {
			return 0;
		}
		off += mapp[i].br_blockcount;
	}
	return off == bno + count;
}

/*
1972 1973 1974 1975 1976 1977
 * Convert a struct xfs_bmbt_irec to a struct xfs_buf_map.
 *
 * For the single map case, it is assumed that the caller has provided a pointer
 * to a valid xfs_buf_map.  For the multiple map case, this function will
 * allocate the xfs_buf_map to hold all the maps and replace the caller's single
 * map pointer with the allocated map.
L
Linus Torvalds 已提交
1978
 */
1979 1980 1981 1982 1983 1984 1985
static int
xfs_buf_map_from_irec(
	struct xfs_mount	*mp,
	struct xfs_buf_map	**mapp,
	unsigned int		*nmaps,
	struct xfs_bmbt_irec	*irecs,
	unsigned int		nirecs)
L
Linus Torvalds 已提交
1986
{
1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037
	struct xfs_buf_map	*map;
	int			i;

	ASSERT(*nmaps == 1);
	ASSERT(nirecs >= 1);

	if (nirecs > 1) {
		map = kmem_zalloc(nirecs * sizeof(struct xfs_buf_map), KM_SLEEP);
		if (!map)
			return ENOMEM;
		*mapp = map;
	}

	*nmaps = nirecs;
	map = *mapp;
	for (i = 0; i < *nmaps; i++) {
		ASSERT(irecs[i].br_startblock != DELAYSTARTBLOCK &&
		       irecs[i].br_startblock != HOLESTARTBLOCK);
		map[i].bm_bn = XFS_FSB_TO_DADDR(mp, irecs[i].br_startblock);
		map[i].bm_len = XFS_FSB_TO_BB(mp, irecs[i].br_blockcount);
	}
	return 0;
}

/*
 * Map the block we are given ready for reading. There are three possible return
 * values:
 *	-1 - will be returned if we land in a hole and mappedbno == -2 so the
 *	     caller knows not to execute a subsequent read.
 *	 0 - if we mapped the block successfully
 *	>0 - positive error number if there was an error.
 */
static int
xfs_dabuf_map(
	struct xfs_trans	*trans,
	struct xfs_inode	*dp,
	xfs_dablk_t		bno,
	xfs_daddr_t		mappedbno,
	int			whichfork,
	struct xfs_buf_map	**map,
	int			*nmaps)
{
	struct xfs_mount	*mp = dp->i_mount;
	int			nfsb;
	int			error = 0;
	struct xfs_bmbt_irec	irec;
	struct xfs_bmbt_irec	*irecs = &irec;
	int			nirecs;

	ASSERT(map && *map);
	ASSERT(*nmaps == 1);
L
Linus Torvalds 已提交
2038

2039
	nfsb = (whichfork == XFS_DATA_FORK) ? mp->m_dirblkfsbs : 1;
2040

L
Linus Torvalds 已提交
2041 2042 2043 2044 2045 2046 2047 2048
	/*
	 * Caller doesn't have a mapping.  -2 means don't complain
	 * if we land in a hole.
	 */
	if (mappedbno == -1 || mappedbno == -2) {
		/*
		 * Optimize the one-block case.
		 */
2049 2050
		if (nfsb != 1)
			irecs = kmem_zalloc(sizeof(irec) * nfsb, KM_SLEEP);
D
Dave Chinner 已提交
2051

2052 2053 2054
		nirecs = nfsb;
		error = xfs_bmapi_read(dp, (xfs_fileoff_t)bno, nfsb, irecs,
				       &nirecs, xfs_bmapi_aflag(whichfork));
D
Dave Chinner 已提交
2055
		if (error)
2056
			goto out;
L
Linus Torvalds 已提交
2057
	} else {
2058 2059 2060 2061 2062
		irecs->br_startblock = XFS_DADDR_TO_FSB(mp, mappedbno);
		irecs->br_startoff = (xfs_fileoff_t)bno;
		irecs->br_blockcount = nfsb;
		irecs->br_state = 0;
		nirecs = 1;
L
Linus Torvalds 已提交
2063
	}
2064 2065 2066

	if (!xfs_da_map_covers_blocks(nirecs, irecs, bno, nfsb)) {
		error = mappedbno == -2 ? -1 : XFS_ERROR(EFSCORRUPTED);
L
Linus Torvalds 已提交
2067 2068
		if (unlikely(error == EFSCORRUPTED)) {
			if (xfs_error_level >= XFS_ERRLEVEL_LOW) {
2069
				int i;
2070 2071
				xfs_alert(mp, "%s: bno %lld dir: inode %lld",
					__func__, (long long)bno,
L
Linus Torvalds 已提交
2072
					(long long)dp->i_ino);
2073
				for (i = 0; i < *nmaps; i++) {
2074 2075
					xfs_alert(mp,
"[%02d] br_startoff %lld br_startblock %lld br_blockcount %lld br_state %d",
L
Linus Torvalds 已提交
2076
						i,
2077 2078 2079 2080
						(long long)irecs[i].br_startoff,
						(long long)irecs[i].br_startblock,
						(long long)irecs[i].br_blockcount,
						irecs[i].br_state);
L
Linus Torvalds 已提交
2081 2082 2083 2084 2085
				}
			}
			XFS_ERROR_REPORT("xfs_da_do_buf(1)",
					 XFS_ERRLEVEL_LOW, mp);
		}
2086
		goto out;
L
Linus Torvalds 已提交
2087
	}
2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103
	error = xfs_buf_map_from_irec(mp, map, nmaps, irecs, nirecs);
out:
	if (irecs != &irec)
		kmem_free(irecs);
	return error;
}

/*
 * Get a buffer for the dir/attr block.
 */
int
xfs_da_get_buf(
	struct xfs_trans	*trans,
	struct xfs_inode	*dp,
	xfs_dablk_t		bno,
	xfs_daddr_t		mappedbno,
2104
	struct xfs_buf		**bpp,
2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120
	int			whichfork)
{
	struct xfs_buf		*bp;
	struct xfs_buf_map	map;
	struct xfs_buf_map	*mapp;
	int			nmap;
	int			error;

	*bpp = NULL;
	mapp = &map;
	nmap = 1;
	error = xfs_dabuf_map(trans, dp, bno, mappedbno, whichfork,
				&mapp, &nmap);
	if (error) {
		/* mapping a hole is not an error, but we don't continue */
		if (error == -1)
L
Linus Torvalds 已提交
2121
			error = 0;
2122
		goto out_free;
L
Linus Torvalds 已提交
2123
	}
2124 2125 2126 2127 2128 2129 2130 2131 2132

	bp = xfs_trans_get_buf_map(trans, dp->i_mount->m_ddev_targp,
				    mapp, nmap, 0);
	error = bp ? bp->b_error : XFS_ERROR(EIO);
	if (error) {
		xfs_trans_brelse(trans, bp);
		goto out_free;
	}

2133
	*bpp = bp;
2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150

out_free:
	if (mapp != &map)
		kmem_free(mapp);

	return error;
}

/*
 * Get a buffer for the dir/attr block, fill in the contents.
 */
int
xfs_da_read_buf(
	struct xfs_trans	*trans,
	struct xfs_inode	*dp,
	xfs_dablk_t		bno,
	xfs_daddr_t		mappedbno,
2151
	struct xfs_buf		**bpp,
2152 2153
	int			whichfork,
	xfs_buf_iodone_t	verifier)
2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174
{
	struct xfs_buf		*bp;
	struct xfs_buf_map	map;
	struct xfs_buf_map	*mapp;
	int			nmap;
	int			error;

	*bpp = NULL;
	mapp = &map;
	nmap = 1;
	error = xfs_dabuf_map(trans, dp, bno, mappedbno, whichfork,
				&mapp, &nmap);
	if (error) {
		/* mapping a hole is not an error, but we don't continue */
		if (error == -1)
			error = 0;
		goto out_free;
	}

	error = xfs_trans_read_buf_map(dp->i_mount, trans,
					dp->i_mount->m_ddev_targp,
2175
					mapp, nmap, 0, &bp, verifier);
2176 2177 2178 2179 2180
	if (error)
		goto out_free;

	if (whichfork == XFS_ATTR_FORK)
		xfs_buf_set_ref(bp, XFS_ATTR_BTREE_REF);
L
Linus Torvalds 已提交
2181
	else
2182 2183
		xfs_buf_set_ref(bp, XFS_DIR_BTREE_REF);

L
Linus Torvalds 已提交
2184
	/*
2185 2186
	 * This verification code will be moved to a CRC verification callback
	 * function so just leave it here unchanged until then.
L
Linus Torvalds 已提交
2187
	 */
2188
	{
2189 2190 2191
		xfs_dir2_data_hdr_t	*hdr = bp->b_addr;
		xfs_dir2_free_t		*free = bp->b_addr;
		xfs_da_blkinfo_t	*info = bp->b_addr;
L
Linus Torvalds 已提交
2192
		uint			magic, magic1;
2193
		struct xfs_mount	*mp = dp->i_mount;
L
Linus Torvalds 已提交
2194

2195
		magic = be16_to_cpu(info->magic);
2196
		magic1 = be32_to_cpu(hdr->magic);
L
Linus Torvalds 已提交
2197 2198 2199 2200 2201 2202 2203
		if (unlikely(
		    XFS_TEST_ERROR((magic != XFS_DA_NODE_MAGIC) &&
				   (magic != XFS_ATTR_LEAF_MAGIC) &&
				   (magic != XFS_DIR2_LEAF1_MAGIC) &&
				   (magic != XFS_DIR2_LEAFN_MAGIC) &&
				   (magic1 != XFS_DIR2_BLOCK_MAGIC) &&
				   (magic1 != XFS_DIR2_DATA_MAGIC) &&
2204
				   (free->hdr.magic != cpu_to_be32(XFS_DIR2_FREE_MAGIC)),
L
Linus Torvalds 已提交
2205 2206
				mp, XFS_ERRTAG_DA_READ_BUF,
				XFS_RANDOM_DA_READ_BUF))) {
2207
			trace_xfs_da_btree_corrupt(bp, _RET_IP_);
L
Linus Torvalds 已提交
2208 2209 2210
			XFS_CORRUPTION_ERROR("xfs_da_do_buf(2)",
					     XFS_ERRLEVEL_LOW, mp, info);
			error = XFS_ERROR(EFSCORRUPTED);
2211
			xfs_trans_brelse(trans, bp);
2212
			goto out_free;
L
Linus Torvalds 已提交
2213 2214
		}
	}
2215
	*bpp = bp;
2216
out_free:
L
Linus Torvalds 已提交
2217
	if (mapp != &map)
2218
		kmem_free(mapp);
L
Linus Torvalds 已提交
2219

2220
	return error;
L
Linus Torvalds 已提交
2221 2222 2223 2224 2225 2226 2227
}

/*
 * Readahead the dir/attr block.
 */
xfs_daddr_t
xfs_da_reada_buf(
2228 2229 2230
	struct xfs_trans	*trans,
	struct xfs_inode	*dp,
	xfs_dablk_t		bno,
2231 2232
	int			whichfork,
	xfs_buf_iodone_t	verifier)
L
Linus Torvalds 已提交
2233
{
2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249
	xfs_daddr_t		mappedbno = -1;
	struct xfs_buf_map	map;
	struct xfs_buf_map	*mapp;
	int			nmap;
	int			error;

	mapp = &map;
	nmap = 1;
	error = xfs_dabuf_map(trans, dp, bno, -1, whichfork,
				&mapp, &nmap);
	if (error) {
		/* mapping a hole is not an error, but we don't continue */
		if (error == -1)
			error = 0;
		goto out_free;
	}
L
Linus Torvalds 已提交
2250

2251
	mappedbno = mapp[0].bm_bn;
2252
	xfs_buf_readahead_map(dp->i_mount->m_ddev_targp, mapp, nmap, NULL);
2253 2254 2255 2256 2257 2258

out_free:
	if (mapp != &map)
		kmem_free(mapp);

	if (error)
L
Linus Torvalds 已提交
2259
		return -1;
2260
	return mappedbno;
L
Linus Torvalds 已提交
2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271
}

kmem_zone_t *xfs_da_state_zone;	/* anchor for state struct zone */

/*
 * Allocate a dir-state structure.
 * We don't put them on the stack since they're large.
 */
xfs_da_state_t *
xfs_da_state_alloc(void)
{
2272
	return kmem_zone_zalloc(xfs_da_state_zone, KM_NOFS);
L
Linus Torvalds 已提交
2273 2274 2275 2276 2277
}

/*
 * Kill the altpath contents of a da-state structure.
 */
2278
STATIC void
L
Linus Torvalds 已提交
2279 2280 2281 2282
xfs_da_state_kill_altpath(xfs_da_state_t *state)
{
	int	i;

2283 2284
	for (i = 0; i < state->altpath.active; i++)
		state->altpath.blk[i].bp = NULL;
L
Linus Torvalds 已提交
2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299
	state->altpath.active = 0;
}

/*
 * Free a da-state structure.
 */
void
xfs_da_state_free(xfs_da_state_t *state)
{
	xfs_da_state_kill_altpath(state);
#ifdef DEBUG
	memset((char *)state, 0, sizeof(*state));
#endif /* DEBUG */
	kmem_zone_free(xfs_da_state_zone, state);
}