xfs_dir2_node.c 63.1 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3
 * Copyright (c) 2013 Red Hat, Inc.
4
 * All Rights Reserved.
L
Linus Torvalds 已提交
5
 *
6 7
 * 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 已提交
8 9
 * published by the Free Software Foundation.
 *
10 11 12 13
 * 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 已提交
14
 *
15 16 17
 * 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 已提交
18 19
 */
#include "xfs.h"
20
#include "xfs_fs.h"
L
Linus Torvalds 已提交
21 22 23 24
#include "xfs_types.h"
#include "xfs_log.h"
#include "xfs_trans.h"
#include "xfs_sb.h"
25
#include "xfs_ag.h"
L
Linus Torvalds 已提交
26
#include "xfs_mount.h"
27
#include "xfs_da_btree.h"
L
Linus Torvalds 已提交
28 29 30 31
#include "xfs_bmap_btree.h"
#include "xfs_dinode.h"
#include "xfs_inode.h"
#include "xfs_bmap.h"
C
Christoph Hellwig 已提交
32 33
#include "xfs_dir2_format.h"
#include "xfs_dir2_priv.h"
L
Linus Torvalds 已提交
34
#include "xfs_error.h"
C
Christoph Hellwig 已提交
35
#include "xfs_trace.h"
36 37
#include "xfs_buf_item.h"
#include "xfs_cksum.h"
L
Linus Torvalds 已提交
38 39 40 41

/*
 * Function declarations.
 */
42 43
static int xfs_dir2_leafn_add(struct xfs_buf *bp, xfs_da_args_t *args,
			      int index);
L
Linus Torvalds 已提交
44 45 46
static void xfs_dir2_leafn_rebalance(xfs_da_state_t *state,
				     xfs_da_state_blk_t *blk1,
				     xfs_da_state_blk_t *blk2);
47
static int xfs_dir2_leafn_remove(xfs_da_args_t *args, struct xfs_buf *bp,
L
Linus Torvalds 已提交
48 49 50 51 52
				 int index, xfs_da_state_blk_t *dblk,
				 int *rval);
static int xfs_dir2_node_addname_int(xfs_da_args_t *args,
				     xfs_da_state_blk_t *fblk);

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
/*
 * Check internal consistency of a leafn block.
 */
#ifdef DEBUG
#define	xfs_dir3_leaf_check(mp, bp) \
do { \
	if (!xfs_dir3_leafn_check((mp), (bp))) \
		ASSERT(0); \
} while (0);

static bool
xfs_dir3_leafn_check(
	struct xfs_mount	*mp,
	struct xfs_buf		*bp)
{
	struct xfs_dir2_leaf	*leaf = bp->b_addr;
	struct xfs_dir3_icleaf_hdr leafhdr;

	xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);

	if (leafhdr.magic == XFS_DIR3_LEAFN_MAGIC) {
		struct xfs_dir3_leaf_hdr *leaf3 = bp->b_addr;
		if (be64_to_cpu(leaf3->info.blkno) != bp->b_bn)
			return false;
	} else if (leafhdr.magic != XFS_DIR2_LEAFN_MAGIC)
		return false;

	return xfs_dir3_leaf_check_int(mp, &leafhdr, leaf);
}
#else
#define	xfs_dir3_leaf_check(mp, bp)
#endif

86 87
static bool
xfs_dir3_free_verify(
D
Dave Chinner 已提交
88 89 90 91 92
	struct xfs_buf		*bp)
{
	struct xfs_mount	*mp = bp->b_target->bt_mount;
	struct xfs_dir2_free_hdr *hdr = bp->b_addr;

93 94 95 96 97 98 99 100 101 102 103 104
	if (xfs_sb_version_hascrc(&mp->m_sb)) {
		struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;

		if (hdr3->magic != cpu_to_be32(XFS_DIR3_FREE_MAGIC))
			return false;
		if (!uuid_equal(&hdr3->uuid, &mp->m_sb.sb_uuid))
			return false;
		if (be64_to_cpu(hdr3->blkno) != bp->b_bn)
			return false;
	} else {
		if (hdr->magic != cpu_to_be32(XFS_DIR2_FREE_MAGIC))
			return false;
D
Dave Chinner 已提交
105
	}
106 107 108 109

	/* XXX: should bounds check the xfs_dir3_icfree_hdr here */

	return true;
110
}
D
Dave Chinner 已提交
111

112
static void
113
xfs_dir3_free_read_verify(
114 115
	struct xfs_buf	*bp)
{
116 117 118 119 120 121 122 123 124
	struct xfs_mount	*mp = bp->b_target->bt_mount;

	if ((xfs_sb_version_hascrc(&mp->m_sb) &&
	     !xfs_verify_cksum(bp->b_addr, BBTOB(bp->b_length),
					  XFS_DIR3_FREE_CRC_OFF)) ||
	    !xfs_dir3_free_verify(bp)) {
		XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
		xfs_buf_ioerror(bp, EFSCORRUPTED);
	}
125 126
}

127
static void
128
xfs_dir3_free_write_verify(
129 130
	struct xfs_buf	*bp)
{
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
	struct xfs_mount	*mp = bp->b_target->bt_mount;
	struct xfs_buf_log_item	*bip = bp->b_fspriv;
	struct xfs_dir3_blk_hdr	*hdr3 = bp->b_addr;

	if (!xfs_dir3_free_verify(bp)) {
		XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
		xfs_buf_ioerror(bp, EFSCORRUPTED);
		return;
	}

	if (!xfs_sb_version_hascrc(&mp->m_sb))
		return;

	if (bip)
		hdr3->lsn = cpu_to_be64(bip->bli_item.li_lsn);

	xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length), XFS_DIR3_FREE_CRC_OFF);
D
Dave Chinner 已提交
148 149
}

150
const struct xfs_buf_ops xfs_dir3_free_buf_ops = {
151 152
	.verify_read = xfs_dir3_free_read_verify,
	.verify_write = xfs_dir3_free_write_verify,
153 154
};

155

D
Dave Chinner 已提交
156
static int
157
__xfs_dir3_free_read(
D
Dave Chinner 已提交
158 159 160 161 162 163
	struct xfs_trans	*tp,
	struct xfs_inode	*dp,
	xfs_dablk_t		fbno,
	xfs_daddr_t		mappedbno,
	struct xfs_buf		**bpp)
{
164 165 166
	int			err;

	err = xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp,
167
				XFS_DATA_FORK, &xfs_dir3_free_buf_ops);
168 169 170

	/* try read returns without an error or *bpp if it lands in a hole */
	if (!err && tp && *bpp)
171
		xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_FREE_BUF);
172
	return err;
D
Dave Chinner 已提交
173 174 175 176 177 178 179 180 181
}

int
xfs_dir2_free_read(
	struct xfs_trans	*tp,
	struct xfs_inode	*dp,
	xfs_dablk_t		fbno,
	struct xfs_buf		**bpp)
{
182
	return __xfs_dir3_free_read(tp, dp, fbno, -1, bpp);
D
Dave Chinner 已提交
183 184 185 186 187 188 189 190 191
}

static int
xfs_dir2_free_try_read(
	struct xfs_trans	*tp,
	struct xfs_inode	*dp,
	xfs_dablk_t		fbno,
	struct xfs_buf		**bpp)
{
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 245 246 247 248 249 250 251 252 253 254 255 256 257 258
	return __xfs_dir3_free_read(tp, dp, fbno, -2, bpp);
}


void
xfs_dir3_free_hdr_from_disk(
	struct xfs_dir3_icfree_hdr	*to,
	struct xfs_dir2_free		*from)
{
	if (from->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC)) {
		to->magic = be32_to_cpu(from->hdr.magic);
		to->firstdb = be32_to_cpu(from->hdr.firstdb);
		to->nvalid = be32_to_cpu(from->hdr.nvalid);
		to->nused = be32_to_cpu(from->hdr.nused);
	} else {
		struct xfs_dir3_free_hdr *hdr3 = (struct xfs_dir3_free_hdr *)from;

		to->magic = be32_to_cpu(hdr3->hdr.magic);
		to->firstdb = be32_to_cpu(hdr3->firstdb);
		to->nvalid = be32_to_cpu(hdr3->nvalid);
		to->nused = be32_to_cpu(hdr3->nused);
	}

	ASSERT(to->magic == XFS_DIR2_FREE_MAGIC ||
	       to->magic == XFS_DIR3_FREE_MAGIC);
}

static void
xfs_dir3_free_hdr_to_disk(
	struct xfs_dir2_free		*to,
	struct xfs_dir3_icfree_hdr	*from)
{
	ASSERT(from->magic == XFS_DIR2_FREE_MAGIC ||
	       from->magic == XFS_DIR3_FREE_MAGIC);

	if (from->magic == XFS_DIR2_FREE_MAGIC) {
		to->hdr.magic = cpu_to_be32(from->magic);
		to->hdr.firstdb = cpu_to_be32(from->firstdb);
		to->hdr.nvalid = cpu_to_be32(from->nvalid);
		to->hdr.nused = cpu_to_be32(from->nused);
	} else {
		struct xfs_dir3_free_hdr *hdr3 = (struct xfs_dir3_free_hdr *)to;

		hdr3->hdr.magic = cpu_to_be32(from->magic);
		hdr3->firstdb = cpu_to_be32(from->firstdb);
		hdr3->nvalid = cpu_to_be32(from->nvalid);
		hdr3->nused = cpu_to_be32(from->nused);
	}
}

static int
xfs_dir3_free_get_buf(
	struct xfs_trans	*tp,
	struct xfs_inode	*dp,
	xfs_dir2_db_t		fbno,
	struct xfs_buf		**bpp)
{
	struct xfs_mount	*mp = dp->i_mount;
	struct xfs_buf		*bp;
	int			error;
	struct xfs_dir3_icfree_hdr hdr;

	error = xfs_da_get_buf(tp, dp, xfs_dir2_db_to_da(mp, fbno),
				   -1, &bp, XFS_DATA_FORK);
	if (error)
		return error;

259
	xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_FREE_BUF);
260 261 262 263 264 265
	bp->b_ops = &xfs_dir3_free_buf_ops;

	/*
	 * Initialize the new block to be empty, and remember
	 * its first slot as our empty slot.
	 */
266 267 268
	memset(bp->b_addr, 0, sizeof(struct xfs_dir3_free_hdr));
	memset(&hdr, 0, sizeof(hdr));

269 270 271 272
	if (xfs_sb_version_hascrc(&mp->m_sb)) {
		struct xfs_dir3_free_hdr *hdr3 = bp->b_addr;

		hdr.magic = XFS_DIR3_FREE_MAGIC;
273

274 275 276
		hdr3->hdr.blkno = cpu_to_be64(bp->b_bn);
		hdr3->hdr.owner = cpu_to_be64(dp->i_ino);
		uuid_copy(&hdr3->hdr.uuid, &mp->m_sb.sb_uuid);
277 278
	} else
		hdr.magic = XFS_DIR2_FREE_MAGIC;
279 280 281
	xfs_dir3_free_hdr_to_disk(bp->b_addr, &hdr);
	*bpp = bp;
	return 0;
D
Dave Chinner 已提交
282 283
}

L
Linus Torvalds 已提交
284 285 286
/*
 * Log entries from a freespace block.
 */
287
STATIC void
L
Linus Torvalds 已提交
288
xfs_dir2_free_log_bests(
289 290
	struct xfs_trans	*tp,
	struct xfs_buf		*bp,
L
Linus Torvalds 已提交
291 292 293 294
	int			first,		/* first entry to log */
	int			last)		/* last entry to log */
{
	xfs_dir2_free_t		*free;		/* freespace structure */
295
	__be16			*bests;
L
Linus Torvalds 已提交
296

297
	free = bp->b_addr;
298 299 300
	bests = xfs_dir3_free_bests_p(tp->t_mountp, free);
	ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
	       free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
301
	xfs_trans_log_buf(tp, bp,
302 303 304
		(uint)((char *)&bests[first] - (char *)free),
		(uint)((char *)&bests[last] - (char *)free +
		       sizeof(bests[0]) - 1));
L
Linus Torvalds 已提交
305 306 307 308 309 310 311
}

/*
 * Log header from a freespace block.
 */
static void
xfs_dir2_free_log_header(
312 313
	struct xfs_trans	*tp,
	struct xfs_buf		*bp)
L
Linus Torvalds 已提交
314 315 316
{
	xfs_dir2_free_t		*free;		/* freespace structure */

317
	free = bp->b_addr;
318 319 320
	ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
	       free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
	xfs_trans_log_buf(tp, bp, 0, xfs_dir3_free_hdr_size(tp->t_mountp) - 1);
L
Linus Torvalds 已提交
321 322 323 324 325 326 327 328 329 330
}

/*
 * Convert a leaf-format directory to a node-format directory.
 * We need to change the magic number of the leaf block, and copy
 * the freespace table out of the leaf block into its own block.
 */
int						/* error */
xfs_dir2_leaf_to_node(
	xfs_da_args_t		*args,		/* operation arguments */
331
	struct xfs_buf		*lbp)		/* leaf buffer */
L
Linus Torvalds 已提交
332 333 334
{
	xfs_inode_t		*dp;		/* incore directory inode */
	int			error;		/* error return value */
335
	struct xfs_buf		*fbp;		/* freespace buffer */
L
Linus Torvalds 已提交
336 337
	xfs_dir2_db_t		fdb;		/* freespace block number */
	xfs_dir2_free_t		*free;		/* freespace structure */
338
	__be16			*from;		/* pointer to freespace entry */
L
Linus Torvalds 已提交
339 340 341 342 343 344
	int			i;		/* leaf freespace index */
	xfs_dir2_leaf_t		*leaf;		/* leaf structure */
	xfs_dir2_leaf_tail_t	*ltp;		/* leaf tail structure */
	xfs_mount_t		*mp;		/* filesystem mount point */
	int			n;		/* count of live freespc ents */
	xfs_dir2_data_off_t	off;		/* freespace entry value */
345
	__be16			*to;		/* pointer to freespace entry */
L
Linus Torvalds 已提交
346
	xfs_trans_t		*tp;		/* transaction pointer */
347
	struct xfs_dir3_icfree_hdr freehdr;
L
Linus Torvalds 已提交
348

C
Christoph Hellwig 已提交
349 350
	trace_xfs_dir2_leaf_to_node(args);

L
Linus Torvalds 已提交
351 352 353 354 355 356 357 358 359 360 361 362 363
	dp = args->dp;
	mp = dp->i_mount;
	tp = args->trans;
	/*
	 * Add a freespace block to the directory.
	 */
	if ((error = xfs_dir2_grow_inode(args, XFS_DIR2_FREE_SPACE, &fdb))) {
		return error;
	}
	ASSERT(fdb == XFS_DIR2_FREE_FIRSTDB(mp));
	/*
	 * Get the buffer for the new freespace block.
	 */
364
	error = xfs_dir3_free_get_buf(tp, dp, fdb, &fbp);
365
	if (error)
L
Linus Torvalds 已提交
366
		return error;
367

368
	free = fbp->b_addr;
369
	xfs_dir3_free_hdr_from_disk(&freehdr, free);
370
	leaf = lbp->b_addr;
371
	ltp = xfs_dir2_leaf_tail_p(mp, leaf);
372 373 374
	ASSERT(be32_to_cpu(ltp->bestcount) <=
				(uint)dp->i_d.di_size / mp->m_dirblksize);

L
Linus Torvalds 已提交
375 376 377 378
	/*
	 * Copy freespace entries from the leaf block to the new block.
	 * Count active entries.
	 */
379 380 381
	from = xfs_dir2_leaf_bests_p(ltp);
	to = xfs_dir3_free_bests_p(mp, free);
	for (i = n = 0; i < be32_to_cpu(ltp->bestcount); i++, from++, to++) {
382
		if ((off = be16_to_cpu(*from)) != NULLDATAOFF)
L
Linus Torvalds 已提交
383
			n++;
384
		*to = cpu_to_be16(off);
L
Linus Torvalds 已提交
385
	}
386

L
Linus Torvalds 已提交
387
	/*
388
	 * Now initialize the freespace block header.
L
Linus Torvalds 已提交
389
	 */
390 391 392 393 394
	freehdr.nused = n;
	freehdr.nvalid = be32_to_cpu(ltp->bestcount);

	xfs_dir3_free_hdr_to_disk(fbp->b_addr, &freehdr);
	xfs_dir2_free_log_bests(tp, fbp, 0, freehdr.nvalid - 1);
L
Linus Torvalds 已提交
395
	xfs_dir2_free_log_header(tp, fbp);
396

397 398 399 400 401 402 403 404 405 406 407
	/*
	 * Converting the leaf to a leafnode is just a matter of changing the
	 * magic number and the ops. Do the change directly to the buffer as
	 * it's less work (and less code) than decoding the header to host
	 * format and back again.
	 */
	if (leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC))
		leaf->hdr.info.magic = cpu_to_be16(XFS_DIR2_LEAFN_MAGIC);
	else
		leaf->hdr.info.magic = cpu_to_be16(XFS_DIR3_LEAFN_MAGIC);
	lbp->b_ops = &xfs_dir3_leafn_buf_ops;
408
	xfs_trans_buf_set_type(tp, lbp, XFS_BLFT_DIR_LEAFN_BUF);
409 410
	xfs_dir3_leaf_log_header(tp, lbp);
	xfs_dir3_leaf_check(mp, lbp);
L
Linus Torvalds 已提交
411 412 413 414 415 416 417 418 419
	return 0;
}

/*
 * Add a leaf entry to a leaf block in a node-form directory.
 * The other work necessary is done from the caller.
 */
static int					/* error */
xfs_dir2_leafn_add(
420
	struct xfs_buf		*bp,		/* leaf buffer */
L
Linus Torvalds 已提交
421 422 423 424 425 426 427 428 429 430 431 432 433
	xfs_da_args_t		*args,		/* operation arguments */
	int			index)		/* insertion pt for new entry */
{
	int			compact;	/* compacting stale leaves */
	xfs_inode_t		*dp;		/* incore directory inode */
	int			highstale;	/* next stale entry */
	xfs_dir2_leaf_t		*leaf;		/* leaf structure */
	xfs_dir2_leaf_entry_t	*lep;		/* leaf entry */
	int			lfloghigh;	/* high leaf entry logging */
	int			lfloglow;	/* low leaf entry logging */
	int			lowstale;	/* previous stale entry */
	xfs_mount_t		*mp;		/* filesystem mount point */
	xfs_trans_t		*tp;		/* transaction pointer */
434 435
	struct xfs_dir3_icleaf_hdr leafhdr;
	struct xfs_dir2_leaf_entry *ents;
L
Linus Torvalds 已提交
436

C
Christoph Hellwig 已提交
437 438
	trace_xfs_dir2_leafn_add(args, index);

L
Linus Torvalds 已提交
439 440 441
	dp = args->dp;
	mp = dp->i_mount;
	tp = args->trans;
442
	leaf = bp->b_addr;
443 444
	xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
	ents = xfs_dir3_leaf_ents_p(leaf);
L
Linus Torvalds 已提交
445 446 447 448 449 450 451 452 453 454 455 456 457 458 459

	/*
	 * Quick check just to make sure we are not going to index
	 * into other peoples memory
	 */
	if (index < 0)
		return XFS_ERROR(EFSCORRUPTED);

	/*
	 * If there are already the maximum number of leaf entries in
	 * the block, if there are no stale entries it won't fit.
	 * Caller will do a split.  If there are stale entries we'll do
	 * a compact.
	 */

460 461
	if (leafhdr.count == xfs_dir3_max_leaf_ents(mp, leaf)) {
		if (!leafhdr.stale)
L
Linus Torvalds 已提交
462
			return XFS_ERROR(ENOSPC);
463
		compact = leafhdr.stale > 1;
L
Linus Torvalds 已提交
464 465
	} else
		compact = 0;
466 467 468
	ASSERT(index == 0 || be32_to_cpu(ents[index - 1].hashval) <= args->hashval);
	ASSERT(index == leafhdr.count ||
	       be32_to_cpu(ents[index].hashval) >= args->hashval);
L
Linus Torvalds 已提交
469

470
	if (args->op_flags & XFS_DA_OP_JUSTCHECK)
L
Linus Torvalds 已提交
471 472 473 474 475 476
		return 0;

	/*
	 * Compact out all but one stale leaf entry.  Leaves behind
	 * the entry closest to index.
	 */
477 478 479 480 481 482 483 484
	if (compact)
		xfs_dir3_leaf_compact_x1(&leafhdr, ents, &index, &lowstale,
					 &highstale, &lfloglow, &lfloghigh);
	else if (leafhdr.stale) {
		/*
		 * Set impossible logging indices for this case.
		 */
		lfloglow = leafhdr.count;
L
Linus Torvalds 已提交
485 486
		lfloghigh = -1;
	}
487

L
Linus Torvalds 已提交
488 489 490
	/*
	 * Insert the new entry, log everything.
	 */
491
	lep = xfs_dir3_leaf_find_entry(&leafhdr, ents, index, compact, lowstale,
492 493
				       highstale, &lfloglow, &lfloghigh);

494
	lep->hashval = cpu_to_be32(args->hashval);
495
	lep->address = cpu_to_be32(xfs_dir2_db_off_to_dataptr(mp,
496
				args->blkno, args->index));
497 498 499 500 501

	xfs_dir3_leaf_hdr_to_disk(leaf, &leafhdr);
	xfs_dir3_leaf_log_header(tp, bp);
	xfs_dir3_leaf_log_ents(tp, bp, lfloglow, lfloghigh);
	xfs_dir3_leaf_check(mp, bp);
L
Linus Torvalds 已提交
502 503 504 505
	return 0;
}

#ifdef DEBUG
506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521
static void
xfs_dir2_free_hdr_check(
	struct xfs_mount *mp,
	struct xfs_buf	*bp,
	xfs_dir2_db_t	db)
{
	struct xfs_dir3_icfree_hdr hdr;

	xfs_dir3_free_hdr_from_disk(&hdr, bp->b_addr);

	ASSERT((hdr.firstdb % xfs_dir3_free_max_bests(mp)) == 0);
	ASSERT(hdr.firstdb <= db);
	ASSERT(db < hdr.firstdb + hdr.nvalid);
}
#else
#define xfs_dir2_free_hdr_check(mp, dp, db)
L
Linus Torvalds 已提交
522 523 524 525 526 527 528 529
#endif	/* DEBUG */

/*
 * Return the last hash value in the leaf.
 * Stale entries are ok.
 */
xfs_dahash_t					/* hash value */
xfs_dir2_leafn_lasthash(
530
	struct xfs_buf	*bp,			/* leaf buffer */
L
Linus Torvalds 已提交
531 532
	int		*count)			/* count of entries in leaf */
{
533 534 535 536 537 538 539 540
	struct xfs_dir2_leaf	*leaf = bp->b_addr;
	struct xfs_dir2_leaf_entry *ents;
	struct xfs_dir3_icleaf_hdr leafhdr;

	xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);

	ASSERT(leafhdr.magic == XFS_DIR2_LEAFN_MAGIC ||
	       leafhdr.magic == XFS_DIR3_LEAFN_MAGIC);
L
Linus Torvalds 已提交
541 542

	if (count)
543 544
		*count = leafhdr.count;
	if (!leafhdr.count)
L
Linus Torvalds 已提交
545
		return 0;
546 547 548

	ents = xfs_dir3_leaf_ents_p(leaf);
	return be32_to_cpu(ents[leafhdr.count - 1].hashval);
L
Linus Torvalds 已提交
549 550 551
}

/*
552 553
 * Look up a leaf entry for space to add a name in a node-format leaf block.
 * The extrablk in state is a freespace block.
L
Linus Torvalds 已提交
554
 */
555 556
STATIC int
xfs_dir2_leafn_lookup_for_addname(
557
	struct xfs_buf		*bp,		/* leaf buffer */
L
Linus Torvalds 已提交
558 559 560 561
	xfs_da_args_t		*args,		/* operation arguments */
	int			*indexp,	/* out: leaf entry index */
	xfs_da_state_t		*state)		/* state to fill in */
{
562
	struct xfs_buf		*curbp = NULL;	/* current data/free buffer */
563 564
	xfs_dir2_db_t		curdb = -1;	/* current data block number */
	xfs_dir2_db_t		curfdb = -1;	/* current free block number */
L
Linus Torvalds 已提交
565 566 567
	xfs_inode_t		*dp;		/* incore directory inode */
	int			error;		/* error return value */
	int			fi;		/* free entry index */
568
	xfs_dir2_free_t		*free = NULL;	/* free block structure */
L
Linus Torvalds 已提交
569 570
	int			index;		/* leaf entry index */
	xfs_dir2_leaf_t		*leaf;		/* leaf structure */
571
	int			length;		/* length of new data entry */
L
Linus Torvalds 已提交
572 573 574 575 576
	xfs_dir2_leaf_entry_t	*lep;		/* leaf entry */
	xfs_mount_t		*mp;		/* filesystem mount point */
	xfs_dir2_db_t		newdb;		/* new data block number */
	xfs_dir2_db_t		newfdb;		/* new free block number */
	xfs_trans_t		*tp;		/* transaction pointer */
577 578
	struct xfs_dir2_leaf_entry *ents;
	struct xfs_dir3_icleaf_hdr leafhdr;
L
Linus Torvalds 已提交
579 580 581 582

	dp = args->dp;
	tp = args->trans;
	mp = dp->i_mount;
583
	leaf = bp->b_addr;
584 585 586 587 588 589
	xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
	ents = xfs_dir3_leaf_ents_p(leaf);

	xfs_dir3_leaf_check(mp, bp);
	ASSERT(leafhdr.count > 0);

L
Linus Torvalds 已提交
590 591 592 593 594 595 596
	/*
	 * Look up the hash value in the leaf entries.
	 */
	index = xfs_dir2_leaf_search_hash(args, bp);
	/*
	 * Do we have a buffer coming in?
	 */
597 598
	if (state->extravalid) {
		/* If so, it's a free block buffer, get the block number. */
L
Linus Torvalds 已提交
599
		curbp = state->extrablk.bp;
600
		curfdb = state->extrablk.blkno;
601
		free = curbp->b_addr;
602 603
		ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
		       free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
L
Linus Torvalds 已提交
604
	}
605
	length = xfs_dir2_data_entsize(args->namelen);
L
Linus Torvalds 已提交
606 607 608
	/*
	 * Loop over leaf entries with the right hash value.
	 */
609 610 611
	for (lep = &ents[index];
	     index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
	     lep++, index++) {
L
Linus Torvalds 已提交
612 613 614
		/*
		 * Skip stale leaf entries.
		 */
615
		if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
L
Linus Torvalds 已提交
616 617 618 619
			continue;
		/*
		 * Pull the data block number from the entry.
		 */
620
		newdb = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
L
Linus Torvalds 已提交
621 622 623 624
		/*
		 * For addname, we're looking for a place to put the new entry.
		 * We want to use a data block with an entry of equal
		 * hash value to ours if there is one with room.
625 626 627
		 *
		 * If this block isn't the data block we already have
		 * in hand, take a look at it.
L
Linus Torvalds 已提交
628
		 */
629
		if (newdb != curdb) {
630 631
			__be16 *bests;

632
			curdb = newdb;
L
Linus Torvalds 已提交
633
			/*
634 635
			 * Convert the data block to the free block
			 * holding its freespace information.
L
Linus Torvalds 已提交
636
			 */
637
			newfdb = xfs_dir2_db_to_fdb(mp, newdb);
L
Linus Torvalds 已提交
638
			/*
639
			 * If it's not the one we have in hand, read it in.
L
Linus Torvalds 已提交
640
			 */
641
			if (newfdb != curfdb) {
L
Linus Torvalds 已提交
642
				/*
643
				 * If we had one before, drop it.
L
Linus Torvalds 已提交
644 645
				 */
				if (curbp)
646
					xfs_trans_brelse(tp, curbp);
D
Dave Chinner 已提交
647 648

				error = xfs_dir2_free_read(tp, dp,
649
						xfs_dir2_db_to_da(mp, newfdb),
D
Dave Chinner 已提交
650
						&curbp);
651
				if (error)
L
Linus Torvalds 已提交
652
					return error;
653
				free = curbp->b_addr;
654 655

				xfs_dir2_free_hdr_check(mp, curbp, curdb);
L
Linus Torvalds 已提交
656 657
			}
			/*
658
			 * Get the index for our entry.
L
Linus Torvalds 已提交
659
			 */
660
			fi = xfs_dir2_db_to_fdindex(mp, curdb);
L
Linus Torvalds 已提交
661
			/*
662
			 * If it has room, return it.
L
Linus Torvalds 已提交
663
			 */
664 665
			bests = xfs_dir3_free_bests_p(mp, free);
			if (unlikely(bests[fi] == cpu_to_be16(NULLDATAOFF))) {
666 667 668
				XFS_ERROR_REPORT("xfs_dir2_leafn_lookup_int",
							XFS_ERRLEVEL_LOW, mp);
				if (curfdb != newfdb)
669
					xfs_trans_brelse(tp, curbp);
670
				return XFS_ERROR(EFSCORRUPTED);
L
Linus Torvalds 已提交
671
			}
672
			curfdb = newfdb;
673
			if (be16_to_cpu(bests[fi]) >= length)
674
				goto out;
L
Linus Torvalds 已提交
675 676
		}
	}
677 678 679
	/* Didn't find any space */
	fi = -1;
out:
680
	ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
681 682 683 684 685 686
	if (curbp) {
		/* Giving back a free block. */
		state->extravalid = 1;
		state->extrablk.bp = curbp;
		state->extrablk.index = fi;
		state->extrablk.blkno = curfdb;
687 688 689 690 691 692

		/*
		 * Important: this magic number is not in the buffer - it's for
		 * buffer type information and therefore only the free/data type
		 * matters here, not whether CRCs are enabled or not.
		 */
693 694 695 696
		state->extrablk.magic = XFS_DIR2_FREE_MAGIC;
	} else {
		state->extravalid = 0;
	}
L
Linus Torvalds 已提交
697
	/*
698
	 * Return the index, that will be the insertion point.
L
Linus Torvalds 已提交
699
	 */
700 701 702 703 704 705 706 707 708 709
	*indexp = index;
	return XFS_ERROR(ENOENT);
}

/*
 * Look up a leaf entry in a node-format leaf block.
 * The extrablk in state a data block.
 */
STATIC int
xfs_dir2_leafn_lookup_for_entry(
710
	struct xfs_buf		*bp,		/* leaf buffer */
711 712 713 714
	xfs_da_args_t		*args,		/* operation arguments */
	int			*indexp,	/* out: leaf entry index */
	xfs_da_state_t		*state)		/* state to fill in */
{
715
	struct xfs_buf		*curbp = NULL;	/* current data/free buffer */
716 717 718 719 720 721 722 723 724 725
	xfs_dir2_db_t		curdb = -1;	/* current data block number */
	xfs_dir2_data_entry_t	*dep;		/* data block entry */
	xfs_inode_t		*dp;		/* incore directory inode */
	int			error;		/* error return value */
	int			index;		/* leaf entry index */
	xfs_dir2_leaf_t		*leaf;		/* leaf structure */
	xfs_dir2_leaf_entry_t	*lep;		/* leaf entry */
	xfs_mount_t		*mp;		/* filesystem mount point */
	xfs_dir2_db_t		newdb;		/* new data block number */
	xfs_trans_t		*tp;		/* transaction pointer */
726
	enum xfs_dacmp		cmp;		/* comparison result */
727 728
	struct xfs_dir2_leaf_entry *ents;
	struct xfs_dir3_icleaf_hdr leafhdr;
729 730 731 732

	dp = args->dp;
	tp = args->trans;
	mp = dp->i_mount;
733
	leaf = bp->b_addr;
734 735 736 737 738 739
	xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
	ents = xfs_dir3_leaf_ents_p(leaf);

	xfs_dir3_leaf_check(mp, bp);
	ASSERT(leafhdr.count > 0);

740 741 742 743 744 745 746 747 748 749 750 751 752 753
	/*
	 * Look up the hash value in the leaf entries.
	 */
	index = xfs_dir2_leaf_search_hash(args, bp);
	/*
	 * Do we have a buffer coming in?
	 */
	if (state->extravalid) {
		curbp = state->extrablk.bp;
		curdb = state->extrablk.blkno;
	}
	/*
	 * Loop over leaf entries with the right hash value.
	 */
754 755 756
	for (lep = &ents[index];
	     index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
	     lep++, index++) {
757 758 759 760 761
		/*
		 * Skip stale leaf entries.
		 */
		if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
			continue;
L
Linus Torvalds 已提交
762
		/*
763 764 765 766 767 768 769 770
		 * Pull the data block number from the entry.
		 */
		newdb = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
		/*
		 * Not adding a new entry, so we really want to find
		 * the name given to us.
		 *
		 * If it's a different data block, go get it.
L
Linus Torvalds 已提交
771
		 */
772 773
		if (newdb != curdb) {
			/*
774 775
			 * If we had a block before that we aren't saving
			 * for a CI name, drop it
776
			 */
777 778
			if (curbp && (args->cmpresult == XFS_CMP_DIFFERENT ||
						curdb != state->extrablk.blkno))
779
				xfs_trans_brelse(tp, curbp);
780
			/*
781 782
			 * If needing the block that is saved with a CI match,
			 * use it otherwise read in the new data block.
783
			 */
784 785 786 787 788
			if (args->cmpresult != XFS_CMP_DIFFERENT &&
					newdb == state->extrablk.blkno) {
				ASSERT(state->extravalid);
				curbp = state->extrablk.bp;
			} else {
789
				error = xfs_dir3_data_read(tp, dp,
790
						xfs_dir2_db_to_da(mp, newdb),
791
						-1, &curbp);
792 793 794
				if (error)
					return error;
			}
795
			xfs_dir3_data_check(dp, curbp);
796
			curdb = newdb;
L
Linus Torvalds 已提交
797 798
		}
		/*
799
		 * Point to the data entry.
L
Linus Torvalds 已提交
800
		 */
801
		dep = (xfs_dir2_data_entry_t *)((char *)curbp->b_addr +
802 803
			xfs_dir2_dataptr_to_off(mp, be32_to_cpu(lep->address)));
		/*
804 805
		 * Compare the entry and if it's an exact match, return
		 * EEXIST immediately. If it's the first case-insensitive
806
		 * match, store the block & inode number and continue looking.
807
		 */
808 809
		cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
		if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
810 811 812
			/* If there is a CI match block, drop it */
			if (args->cmpresult != XFS_CMP_DIFFERENT &&
						curdb != state->extrablk.blkno)
813
				xfs_trans_brelse(tp, state->extrablk.bp);
814
			args->cmpresult = cmp;
815
			args->inumber = be64_to_cpu(dep->inumber);
816 817 818 819 820
			*indexp = index;
			state->extravalid = 1;
			state->extrablk.bp = curbp;
			state->extrablk.blkno = curdb;
			state->extrablk.index = (int)((char *)dep -
821
							(char *)curbp->b_addr);
822
			state->extrablk.magic = XFS_DIR2_DATA_MAGIC;
823
			curbp->b_ops = &xfs_dir3_data_buf_ops;
824
			xfs_trans_buf_set_type(tp, curbp, XFS_BLFT_DIR_DATA_BUF);
825
			if (cmp == XFS_CMP_EXACT)
826
				return XFS_ERROR(EEXIST);
L
Linus Torvalds 已提交
827 828
		}
	}
829
	ASSERT(index == leafhdr.count || (args->op_flags & XFS_DA_OP_OKNOENT));
830
	if (curbp) {
831 832 833 834 835 836 837
		if (args->cmpresult == XFS_CMP_DIFFERENT) {
			/* Giving back last used data block. */
			state->extravalid = 1;
			state->extrablk.bp = curbp;
			state->extrablk.index = -1;
			state->extrablk.blkno = curdb;
			state->extrablk.magic = XFS_DIR2_DATA_MAGIC;
838
			curbp->b_ops = &xfs_dir3_data_buf_ops;
839
			xfs_trans_buf_set_type(tp, curbp, XFS_BLFT_DIR_DATA_BUF);
840 841 842
		} else {
			/* If the curbp is not the CI match block, drop it */
			if (state->extrablk.bp != curbp)
843
				xfs_trans_brelse(tp, curbp);
844
		}
845 846 847
	} else {
		state->extravalid = 0;
	}
L
Linus Torvalds 已提交
848
	*indexp = index;
849
	return XFS_ERROR(ENOENT);
850 851 852 853 854 855 856 857 858
}

/*
 * Look up a leaf entry in a node-format leaf block.
 * If this is an addname then the extrablk in state is a freespace block,
 * otherwise it's a data block.
 */
int
xfs_dir2_leafn_lookup_int(
859
	struct xfs_buf		*bp,		/* leaf buffer */
860 861 862 863
	xfs_da_args_t		*args,		/* operation arguments */
	int			*indexp,	/* out: leaf entry index */
	xfs_da_state_t		*state)		/* state to fill in */
{
864
	if (args->op_flags & XFS_DA_OP_ADDNAME)
865 866 867
		return xfs_dir2_leafn_lookup_for_addname(bp, args, indexp,
							state);
	return xfs_dir2_leafn_lookup_for_entry(bp, args, indexp, state);
L
Linus Torvalds 已提交
868 869 870 871 872 873 874
}

/*
 * Move count leaf entries from source to destination leaf.
 * Log entries and headers.  Stale entries are preserved.
 */
static void
875 876 877 878 879 880 881 882 883 884 885
xfs_dir3_leafn_moveents(
	xfs_da_args_t			*args,	/* operation arguments */
	struct xfs_buf			*bp_s,	/* source */
	struct xfs_dir3_icleaf_hdr	*shdr,
	struct xfs_dir2_leaf_entry	*sents,
	int				start_s,/* source leaf index */
	struct xfs_buf			*bp_d,	/* destination */
	struct xfs_dir3_icleaf_hdr	*dhdr,
	struct xfs_dir2_leaf_entry	*dents,
	int				start_d,/* destination leaf index */
	int				count)	/* count of leaves to copy */
L
Linus Torvalds 已提交
886
{
887 888
	struct xfs_trans		*tp = args->trans;
	int				stale;	/* count stale leaves copied */
L
Linus Torvalds 已提交
889

C
Christoph Hellwig 已提交
890 891
	trace_xfs_dir2_leafn_moveents(args, start_s, start_d, count);

L
Linus Torvalds 已提交
892 893 894
	/*
	 * Silently return if nothing to do.
	 */
895
	if (count == 0)
L
Linus Torvalds 已提交
896
		return;
897

L
Linus Torvalds 已提交
898 899 900 901 902
	/*
	 * If the destination index is not the end of the current
	 * destination leaf entries, open up a hole in the destination
	 * to hold the new entries.
	 */
903 904 905 906 907
	if (start_d < dhdr->count) {
		memmove(&dents[start_d + count], &dents[start_d],
			(dhdr->count - start_d) * sizeof(xfs_dir2_leaf_entry_t));
		xfs_dir3_leaf_log_ents(tp, bp_d, start_d + count,
				       count + dhdr->count - 1);
L
Linus Torvalds 已提交
908 909 910 911 912
	}
	/*
	 * If the source has stale leaves, count the ones in the copy range
	 * so we can update the header correctly.
	 */
913
	if (shdr->stale) {
L
Linus Torvalds 已提交
914 915 916
		int	i;			/* temp leaf index */

		for (i = start_s, stale = 0; i < start_s + count; i++) {
917 918
			if (sents[i].address ==
					cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
L
Linus Torvalds 已提交
919 920 921 922 923 924 925
				stale++;
		}
	} else
		stale = 0;
	/*
	 * Copy the leaf entries from source to destination.
	 */
926
	memcpy(&dents[start_d], &sents[start_s],
L
Linus Torvalds 已提交
927
		count * sizeof(xfs_dir2_leaf_entry_t));
928 929
	xfs_dir3_leaf_log_ents(tp, bp_d, start_d, start_d + count - 1);

L
Linus Torvalds 已提交
930 931 932 933
	/*
	 * If there are source entries after the ones we copied,
	 * delete the ones we copied by sliding the next ones down.
	 */
934 935
	if (start_s + count < shdr->count) {
		memmove(&sents[start_s], &sents[start_s + count],
L
Linus Torvalds 已提交
936
			count * sizeof(xfs_dir2_leaf_entry_t));
937
		xfs_dir3_leaf_log_ents(tp, bp_s, start_s, start_s + count - 1);
L
Linus Torvalds 已提交
938
	}
939

L
Linus Torvalds 已提交
940 941 942
	/*
	 * Update the headers and log them.
	 */
943 944 945 946
	shdr->count -= count;
	shdr->stale -= stale;
	dhdr->count += count;
	dhdr->stale += stale;
L
Linus Torvalds 已提交
947 948 949 950 951 952 953 954
}

/*
 * Determine the sort order of two leaf blocks.
 * Returns 1 if both are valid and leaf2 should be before leaf1, else 0.
 */
int						/* sort order */
xfs_dir2_leafn_order(
955 956
	struct xfs_buf		*leaf1_bp,		/* leaf1 buffer */
	struct xfs_buf		*leaf2_bp)		/* leaf2 buffer */
L
Linus Torvalds 已提交
957
{
958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973
	struct xfs_dir2_leaf	*leaf1 = leaf1_bp->b_addr;
	struct xfs_dir2_leaf	*leaf2 = leaf2_bp->b_addr;
	struct xfs_dir2_leaf_entry *ents1;
	struct xfs_dir2_leaf_entry *ents2;
	struct xfs_dir3_icleaf_hdr hdr1;
	struct xfs_dir3_icleaf_hdr hdr2;

	xfs_dir3_leaf_hdr_from_disk(&hdr1, leaf1);
	xfs_dir3_leaf_hdr_from_disk(&hdr2, leaf2);
	ents1 = xfs_dir3_leaf_ents_p(leaf1);
	ents2 = xfs_dir3_leaf_ents_p(leaf2);

	if (hdr1.count > 0 && hdr2.count > 0 &&
	    (be32_to_cpu(ents2[0].hashval) < be32_to_cpu(ents1[0].hashval) ||
	     be32_to_cpu(ents2[hdr2.count - 1].hashval) <
				be32_to_cpu(ents1[hdr1.count - 1].hashval)))
L
Linus Torvalds 已提交
974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996
		return 1;
	return 0;
}

/*
 * Rebalance leaf entries between two leaf blocks.
 * This is actually only called when the second block is new,
 * though the code deals with the general case.
 * A new entry will be inserted in one of the blocks, and that
 * entry is taken into account when balancing.
 */
static void
xfs_dir2_leafn_rebalance(
	xfs_da_state_t		*state,		/* btree cursor */
	xfs_da_state_blk_t	*blk1,		/* first btree block */
	xfs_da_state_blk_t	*blk2)		/* second btree block */
{
	xfs_da_args_t		*args;		/* operation arguments */
	int			count;		/* count (& direction) leaves */
	int			isleft;		/* new goes in left leaf */
	xfs_dir2_leaf_t		*leaf1;		/* first leaf structure */
	xfs_dir2_leaf_t		*leaf2;		/* second leaf structure */
	int			mid;		/* midpoint leaf index */
D
Dave Chinner 已提交
997
#if defined(DEBUG) || defined(XFS_WARN)
L
Linus Torvalds 已提交
998 999 1000 1001
	int			oldstale;	/* old count of stale leaves */
#endif
	int			oldsum;		/* old total leaf count */
	int			swap;		/* swapped leaf blocks */
1002 1003 1004 1005
	struct xfs_dir2_leaf_entry *ents1;
	struct xfs_dir2_leaf_entry *ents2;
	struct xfs_dir3_icleaf_hdr hdr1;
	struct xfs_dir3_icleaf_hdr hdr2;
L
Linus Torvalds 已提交
1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017

	args = state->args;
	/*
	 * If the block order is wrong, swap the arguments.
	 */
	if ((swap = xfs_dir2_leafn_order(blk1->bp, blk2->bp))) {
		xfs_da_state_blk_t	*tmp;	/* temp for block swap */

		tmp = blk1;
		blk1 = blk2;
		blk2 = tmp;
	}
1018 1019
	leaf1 = blk1->bp->b_addr;
	leaf2 = blk2->bp->b_addr;
1020 1021 1022 1023 1024 1025
	xfs_dir3_leaf_hdr_from_disk(&hdr1, leaf1);
	xfs_dir3_leaf_hdr_from_disk(&hdr2, leaf2);
	ents1 = xfs_dir3_leaf_ents_p(leaf1);
	ents2 = xfs_dir3_leaf_ents_p(leaf2);

	oldsum = hdr1.count + hdr2.count;
D
Dave Chinner 已提交
1026
#if defined(DEBUG) || defined(XFS_WARN)
1027
	oldstale = hdr1.stale + hdr2.stale;
L
Linus Torvalds 已提交
1028 1029
#endif
	mid = oldsum >> 1;
1030

L
Linus Torvalds 已提交
1031 1032 1033 1034 1035 1036 1037
	/*
	 * If the old leaf count was odd then the new one will be even,
	 * so we need to divide the new count evenly.
	 */
	if (oldsum & 1) {
		xfs_dahash_t	midhash;	/* middle entry hash value */

1038 1039
		if (mid >= hdr1.count)
			midhash = be32_to_cpu(ents2[mid - hdr1.count].hashval);
L
Linus Torvalds 已提交
1040
		else
1041
			midhash = be32_to_cpu(ents1[mid].hashval);
L
Linus Torvalds 已提交
1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054
		isleft = args->hashval <= midhash;
	}
	/*
	 * If the old count is even then the new count is odd, so there's
	 * no preferred side for the new entry.
	 * Pick the left one.
	 */
	else
		isleft = 1;
	/*
	 * Calculate moved entry count.  Positive means left-to-right,
	 * negative means right-to-left.  Then move the entries.
	 */
1055
	count = hdr1.count - mid + (isleft == 0);
L
Linus Torvalds 已提交
1056
	if (count > 0)
1057 1058 1059
		xfs_dir3_leafn_moveents(args, blk1->bp, &hdr1, ents1,
					hdr1.count - count, blk2->bp,
					&hdr2, ents2, 0, count);
L
Linus Torvalds 已提交
1060
	else if (count < 0)
1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076
		xfs_dir3_leafn_moveents(args, blk2->bp, &hdr2, ents2, 0,
					blk1->bp, &hdr1, ents1,
					hdr1.count, count);

	ASSERT(hdr1.count + hdr2.count == oldsum);
	ASSERT(hdr1.stale + hdr2.stale == oldstale);

	/* log the changes made when moving the entries */
	xfs_dir3_leaf_hdr_to_disk(leaf1, &hdr1);
	xfs_dir3_leaf_hdr_to_disk(leaf2, &hdr2);
	xfs_dir3_leaf_log_header(args->trans, blk1->bp);
	xfs_dir3_leaf_log_header(args->trans, blk2->bp);

	xfs_dir3_leaf_check(args->dp->i_mount, blk1->bp);
	xfs_dir3_leaf_check(args->dp->i_mount, blk2->bp);

L
Linus Torvalds 已提交
1077 1078 1079
	/*
	 * Mark whether we're inserting into the old or new leaf.
	 */
1080
	if (hdr1.count < hdr2.count)
L
Linus Torvalds 已提交
1081
		state->inleaf = swap;
1082
	else if (hdr1.count > hdr2.count)
L
Linus Torvalds 已提交
1083 1084
		state->inleaf = !swap;
	else
1085
		state->inleaf = swap ^ (blk1->index <= hdr1.count);
L
Linus Torvalds 已提交
1086 1087 1088 1089
	/*
	 * Adjust the expected index for insertion.
	 */
	if (!state->inleaf)
1090
		blk2->index = blk1->index - hdr1.count;
1091 1092 1093 1094

	/*
	 * Finally sanity check just to make sure we are not returning a
	 * negative index
L
Linus Torvalds 已提交
1095 1096 1097 1098
	 */
	if(blk2->index < 0) {
		state->inleaf = 1;
		blk2->index = 0;
1099 1100 1101
		xfs_alert(args->dp->i_mount,
	"%s: picked the wrong leaf? reverting original leaf: blk1->index %d\n",
			__func__, blk1->index);
L
Linus Torvalds 已提交
1102 1103 1104
	}
}

D
Dave Chinner 已提交
1105
static int
1106
xfs_dir3_data_block_free(
D
Dave Chinner 已提交
1107 1108 1109 1110 1111 1112 1113 1114 1115 1116
	xfs_da_args_t		*args,
	struct xfs_dir2_data_hdr *hdr,
	struct xfs_dir2_free	*free,
	xfs_dir2_db_t		fdb,
	int			findex,
	struct xfs_buf		*fbp,
	int			longest)
{
	struct xfs_trans	*tp = args->trans;
	int			logfree = 0;
1117 1118
	__be16			*bests;
	struct xfs_dir3_icfree_hdr freehdr;
D
Dave Chinner 已提交
1119

1120
	xfs_dir3_free_hdr_from_disk(&freehdr, free);
D
Dave Chinner 已提交
1121

1122 1123
	bests = xfs_dir3_free_bests_p(tp->t_mountp, free);
	if (hdr) {
D
Dave Chinner 已提交
1124
		/*
1125 1126
		 * Data block is not empty, just set the free entry to the new
		 * value.
D
Dave Chinner 已提交
1127
		 */
1128 1129 1130 1131
		bests[findex] = cpu_to_be16(longest);
		xfs_dir2_free_log_bests(tp, fbp, findex, findex);
		return 0;
	}
D
Dave Chinner 已提交
1132

1133 1134
	/* One less used entry in the free table. */
	freehdr.nused--;
D
Dave Chinner 已提交
1135

1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146
	/*
	 * If this was the last entry in the table, we can trim the table size
	 * back.  There might be other entries at the end referring to
	 * non-existent data blocks, get those too.
	 */
	if (findex == freehdr.nvalid - 1) {
		int	i;		/* free entry index */

		for (i = findex - 1; i >= 0; i--) {
			if (bests[i] != cpu_to_be16(NULLDATAOFF))
				break;
D
Dave Chinner 已提交
1147
		}
1148 1149
		freehdr.nvalid = i + 1;
		logfree = 0;
D
Dave Chinner 已提交
1150
	} else {
1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171
		/* Not the last entry, just punch it out.  */
		bests[findex] = cpu_to_be16(NULLDATAOFF);
		logfree = 1;
	}

	xfs_dir3_free_hdr_to_disk(free, &freehdr);
	xfs_dir2_free_log_header(tp, fbp);

	/*
	 * If there are no useful entries left in the block, get rid of the
	 * block if we can.
	 */
	if (!freehdr.nused) {
		int error;

		error = xfs_dir2_shrink_inode(args, fdb, fbp);
		if (error == 0) {
			fbp = NULL;
			logfree = 0;
		} else if (error != ENOSPC || args->total != 0)
			return error;
D
Dave Chinner 已提交
1172
		/*
1173 1174 1175
		 * It's possible to get ENOSPC if there is no
		 * space reservation.  In this case some one
		 * else will eventually get rid of this block.
D
Dave Chinner 已提交
1176 1177 1178 1179 1180 1181 1182 1183 1184
		 */
	}

	/* Log the free entry that changed, unless we got rid of it.  */
	if (logfree)
		xfs_dir2_free_log_bests(tp, fbp, findex, findex);
	return 0;
}

L
Linus Torvalds 已提交
1185 1186 1187 1188 1189 1190 1191 1192
/*
 * Remove an entry from a node directory.
 * This removes the leaf entry and the data entry,
 * and updates the free block if necessary.
 */
static int					/* error */
xfs_dir2_leafn_remove(
	xfs_da_args_t		*args,		/* operation arguments */
1193
	struct xfs_buf		*bp,		/* leaf buffer */
L
Linus Torvalds 已提交
1194 1195 1196 1197
	int			index,		/* leaf entry index */
	xfs_da_state_blk_t	*dblk,		/* data block */
	int			*rval)		/* resulting block needs join */
{
1198
	xfs_dir2_data_hdr_t	*hdr;		/* data block header */
L
Linus Torvalds 已提交
1199
	xfs_dir2_db_t		db;		/* data block number */
1200
	struct xfs_buf		*dbp;		/* data block buffer */
L
Linus Torvalds 已提交
1201 1202 1203 1204 1205 1206 1207 1208 1209 1210
	xfs_dir2_data_entry_t	*dep;		/* data block entry */
	xfs_inode_t		*dp;		/* incore directory inode */
	xfs_dir2_leaf_t		*leaf;		/* leaf structure */
	xfs_dir2_leaf_entry_t	*lep;		/* leaf entry */
	int			longest;	/* longest data free entry */
	int			off;		/* data block entry offset */
	xfs_mount_t		*mp;		/* filesystem mount point */
	int			needlog;	/* need to log data header */
	int			needscan;	/* need to rescan data frees */
	xfs_trans_t		*tp;		/* transaction pointer */
1211
	struct xfs_dir2_data_free *bf;		/* bestfree table */
1212 1213
	struct xfs_dir3_icleaf_hdr leafhdr;
	struct xfs_dir2_leaf_entry *ents;
L
Linus Torvalds 已提交
1214

C
Christoph Hellwig 已提交
1215 1216
	trace_xfs_dir2_leafn_remove(args, index);

L
Linus Torvalds 已提交
1217 1218 1219
	dp = args->dp;
	tp = args->trans;
	mp = dp->i_mount;
1220
	leaf = bp->b_addr;
1221 1222 1223
	xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
	ents = xfs_dir3_leaf_ents_p(leaf);

L
Linus Torvalds 已提交
1224 1225 1226
	/*
	 * Point to the entry we're removing.
	 */
1227 1228
	lep = &ents[index];

L
Linus Torvalds 已提交
1229 1230 1231
	/*
	 * Extract the data block and offset from the entry.
	 */
1232
	db = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
L
Linus Torvalds 已提交
1233
	ASSERT(dblk->blkno == db);
1234
	off = xfs_dir2_dataptr_to_off(mp, be32_to_cpu(lep->address));
L
Linus Torvalds 已提交
1235
	ASSERT(dblk->index == off);
1236

L
Linus Torvalds 已提交
1237 1238 1239 1240
	/*
	 * Kill the leaf entry by marking it stale.
	 * Log the leaf block changes.
	 */
1241 1242 1243 1244
	leafhdr.stale++;
	xfs_dir3_leaf_hdr_to_disk(leaf, &leafhdr);
	xfs_dir3_leaf_log_header(tp, bp);

1245
	lep->address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
1246 1247
	xfs_dir3_leaf_log_ents(tp, bp, index, index);

L
Linus Torvalds 已提交
1248 1249 1250 1251 1252
	/*
	 * Make the data entry free.  Keep track of the longest freespace
	 * in the data block in case it changes.
	 */
	dbp = dblk->bp;
1253
	hdr = dbp->b_addr;
1254
	dep = (xfs_dir2_data_entry_t *)((char *)hdr + off);
1255 1256
	bf = xfs_dir3_data_bestfree_p(hdr);
	longest = be16_to_cpu(bf[0].length);
L
Linus Torvalds 已提交
1257 1258
	needlog = needscan = 0;
	xfs_dir2_data_make_free(tp, dbp, off,
1259
		xfs_dir2_data_entsize(dep->namelen), &needlog, &needscan);
L
Linus Torvalds 已提交
1260 1261 1262 1263 1264
	/*
	 * Rescan the data block freespaces for bestfree.
	 * Log the data block header if needed.
	 */
	if (needscan)
1265
		xfs_dir2_data_freescan(mp, hdr, &needlog);
L
Linus Torvalds 已提交
1266 1267
	if (needlog)
		xfs_dir2_data_log_header(tp, dbp);
1268
	xfs_dir3_data_check(dp, dbp);
L
Linus Torvalds 已提交
1269 1270 1271 1272
	/*
	 * If the longest data block freespace changes, need to update
	 * the corresponding freeblock entry.
	 */
1273
	if (longest < be16_to_cpu(bf[0].length)) {
L
Linus Torvalds 已提交
1274
		int		error;		/* error return value */
1275
		struct xfs_buf	*fbp;		/* freeblock buffer */
L
Linus Torvalds 已提交
1276 1277 1278 1279 1280 1281 1282 1283
		xfs_dir2_db_t	fdb;		/* freeblock block number */
		int		findex;		/* index in freeblock entries */
		xfs_dir2_free_t	*free;		/* freeblock structure */

		/*
		 * Convert the data block number to a free block,
		 * read in the free block.
		 */
1284
		fdb = xfs_dir2_db_to_fdb(mp, db);
D
Dave Chinner 已提交
1285 1286
		error = xfs_dir2_free_read(tp, dp, xfs_dir2_db_to_da(mp, fdb),
					   &fbp);
1287
		if (error)
L
Linus Torvalds 已提交
1288
			return error;
1289
		free = fbp->b_addr;
1290 1291 1292 1293 1294 1295 1296 1297
#ifdef DEBUG
	{
		struct xfs_dir3_icfree_hdr freehdr;
		xfs_dir3_free_hdr_from_disk(&freehdr, free);
		ASSERT(freehdr.firstdb == xfs_dir3_free_max_bests(mp) *
					  (fdb - XFS_DIR2_FREE_FIRSTDB(mp)));
	}
#endif
L
Linus Torvalds 已提交
1298 1299 1300
		/*
		 * Calculate which entry we need to fix.
		 */
1301
		findex = xfs_dir2_db_to_fdindex(mp, db);
1302
		longest = be16_to_cpu(bf[0].length);
L
Linus Torvalds 已提交
1303 1304 1305 1306
		/*
		 * If the data block is now empty we can get rid of it
		 * (usually).
		 */
1307 1308
		if (longest == mp->m_dirblksize -
			       xfs_dir3_data_entry_offset(hdr)) {
L
Linus Torvalds 已提交
1309 1310 1311 1312 1313 1314
			/*
			 * Try to punch out the data block.
			 */
			error = xfs_dir2_shrink_inode(args, db, dbp);
			if (error == 0) {
				dblk->bp = NULL;
1315
				hdr = NULL;
L
Linus Torvalds 已提交
1316 1317 1318 1319 1320 1321
			}
			/*
			 * We can get ENOSPC if there's no space reservation.
			 * In this case just drop the buffer and some one else
			 * will eventually get rid of the empty block.
			 */
1322
			else if (!(error == ENOSPC && args->total == 0))
L
Linus Torvalds 已提交
1323 1324 1325 1326 1327 1328
				return error;
		}
		/*
		 * If we got rid of the data block, we can eliminate that entry
		 * in the free block.
		 */
1329
		error = xfs_dir3_data_block_free(args, hdr, free,
D
Dave Chinner 已提交
1330 1331 1332
						 fdb, findex, fbp, longest);
		if (error)
			return error;
L
Linus Torvalds 已提交
1333
	}
D
Dave Chinner 已提交
1334

1335
	xfs_dir3_leaf_check(mp, bp);
L
Linus Torvalds 已提交
1336
	/*
M
Malcolm Parsons 已提交
1337
	 * Return indication of whether this leaf block is empty enough
L
Linus Torvalds 已提交
1338 1339
	 * to justify trying to join it with a neighbor.
	 */
1340 1341
	*rval = (xfs_dir3_leaf_hdr_size(leaf) +
		 (uint)sizeof(ents[0]) * (leafhdr.count - leafhdr.stale)) <
L
Linus Torvalds 已提交
1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373
		mp->m_dir_magicpct;
	return 0;
}

/*
 * Split the leaf entries in the old block into old and new blocks.
 */
int						/* error */
xfs_dir2_leafn_split(
	xfs_da_state_t		*state,		/* btree cursor */
	xfs_da_state_blk_t	*oldblk,	/* original block */
	xfs_da_state_blk_t	*newblk)	/* newly created block */
{
	xfs_da_args_t		*args;		/* operation arguments */
	xfs_dablk_t		blkno;		/* new leaf block number */
	int			error;		/* error return value */
	xfs_mount_t		*mp;		/* filesystem mount point */

	/*
	 * Allocate space for a new leaf node.
	 */
	args = state->args;
	mp = args->dp->i_mount;
	ASSERT(args != NULL);
	ASSERT(oldblk->magic == XFS_DIR2_LEAFN_MAGIC);
	error = xfs_da_grow_inode(args, &blkno);
	if (error) {
		return error;
	}
	/*
	 * Initialize the new leaf block.
	 */
1374 1375 1376
	error = xfs_dir3_leaf_get_buf(args, xfs_dir2_da_to_db(mp, blkno),
				      &newblk->bp, XFS_DIR2_LEAFN_MAGIC);
	if (error)
L
Linus Torvalds 已提交
1377
		return error;
1378

L
Linus Torvalds 已提交
1379 1380 1381 1382 1383 1384 1385
	newblk->blkno = blkno;
	newblk->magic = XFS_DIR2_LEAFN_MAGIC;
	/*
	 * Rebalance the entries across the two leaves, link the new
	 * block into the leaves.
	 */
	xfs_dir2_leafn_rebalance(state, oldblk, newblk);
1386
	error = xfs_da3_blk_link(state, oldblk, newblk);
L
Linus Torvalds 已提交
1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401
	if (error) {
		return error;
	}
	/*
	 * Insert the new entry in the correct block.
	 */
	if (state->inleaf)
		error = xfs_dir2_leafn_add(oldblk->bp, args, oldblk->index);
	else
		error = xfs_dir2_leafn_add(newblk->bp, args, newblk->index);
	/*
	 * Update last hashval in each block since we added the name.
	 */
	oldblk->hashval = xfs_dir2_leafn_lasthash(oldblk->bp, NULL);
	newblk->hashval = xfs_dir2_leafn_lasthash(newblk->bp, NULL);
1402 1403
	xfs_dir3_leaf_check(mp, oldblk->bp);
	xfs_dir3_leaf_check(mp, newblk->bp);
L
Linus Torvalds 已提交
1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422
	return error;
}

/*
 * Check a leaf 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.
 */
int						/* error */
xfs_dir2_leafn_toosmall(
	xfs_da_state_t		*state,		/* btree cursor */
	int			*action)	/* resulting action to take */
{
	xfs_da_state_blk_t	*blk;		/* leaf block */
	xfs_dablk_t		blkno;		/* leaf block number */
1423
	struct xfs_buf		*bp;		/* leaf buffer */
L
Linus Torvalds 已提交
1424 1425 1426 1427 1428 1429 1430
	int			bytes;		/* bytes in use */
	int			count;		/* leaf live entry count */
	int			error;		/* error return value */
	int			forward;	/* sibling block direction */
	int			i;		/* sibling counter */
	xfs_dir2_leaf_t		*leaf;		/* leaf structure */
	int			rval;		/* result from path_shift */
1431 1432
	struct xfs_dir3_icleaf_hdr leafhdr;
	struct xfs_dir2_leaf_entry *ents;
L
Linus Torvalds 已提交
1433 1434 1435 1436 1437 1438 1439

	/*
	 * 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];
1440 1441 1442 1443 1444 1445 1446
	leaf = blk->bp->b_addr;
	xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
	ents = xfs_dir3_leaf_ents_p(leaf);
	xfs_dir3_leaf_check(state->args->dp->i_mount, blk->bp);

	count = leafhdr.count - leafhdr.stale;
	bytes = xfs_dir3_leaf_hdr_size(leaf) + count * sizeof(ents[0]);
L
Linus Torvalds 已提交
1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464
	if (bytes > (state->blocksize >> 1)) {
		/*
		 * Blk over 50%, don't try to join.
		 */
		*action = 0;
		return 0;
	}
	/*
	 * Check for the degenerate case of the block being empty.
	 * If the block is empty, we'll simply delete it, no need to
	 * coalesce it with a sibling block.  We choose (arbitrarily)
	 * 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).
		 */
1465
		forward = (leafhdr.forw != 0);
L
Linus Torvalds 已提交
1466
		memcpy(&state->altpath, &state->path, sizeof(state->path));
1467
		error = xfs_da3_path_shift(state, &state->altpath, forward, 0,
L
Linus Torvalds 已提交
1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480
			&rval);
		if (error)
			return error;
		*action = rval ? 2 : 0;
		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.
	 */
1481
	forward = leafhdr.forw < leafhdr.back;
L
Linus Torvalds 已提交
1482
	for (i = 0, bp = NULL; i < 2; forward = !forward, i++) {
1483 1484 1485
		struct xfs_dir3_icleaf_hdr hdr2;

		blkno = forward ? leafhdr.forw : leafhdr.back;
L
Linus Torvalds 已提交
1486 1487 1488 1489 1490
		if (blkno == 0)
			continue;
		/*
		 * Read the sibling leaf block.
		 */
1491
		error = xfs_dir3_leafn_read(state->args->trans, state->args->dp,
D
Dave Chinner 已提交
1492
					    blkno, -1, &bp);
1493
		if (error)
L
Linus Torvalds 已提交
1494
			return error;
D
Dave Chinner 已提交
1495

L
Linus Torvalds 已提交
1496 1497 1498
		/*
		 * Count bytes in the two blocks combined.
		 */
1499
		count = leafhdr.count - leafhdr.stale;
L
Linus Torvalds 已提交
1500
		bytes = state->blocksize - (state->blocksize >> 2);
1501

1502
		leaf = bp->b_addr;
1503 1504 1505 1506 1507
		xfs_dir3_leaf_hdr_from_disk(&hdr2, leaf);
		ents = xfs_dir3_leaf_ents_p(leaf);
		count += hdr2.count - hdr2.stale;
		bytes -= count * sizeof(ents[0]);

L
Linus Torvalds 已提交
1508 1509 1510 1511 1512
		/*
		 * Fits with at least 25% to spare.
		 */
		if (bytes >= 0)
			break;
1513
		xfs_trans_brelse(state->args->trans, bp);
L
Linus Torvalds 已提交
1514 1515 1516 1517 1518 1519 1520 1521
	}
	/*
	 * Didn't like either block, give up.
	 */
	if (i >= 2) {
		*action = 0;
		return 0;
	}
1522

L
Linus Torvalds 已提交
1523 1524 1525 1526 1527 1528
	/*
	 * 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)
1529
		error = xfs_da3_path_shift(state, &state->altpath, forward, 0,
L
Linus Torvalds 已提交
1530 1531
			&rval);
	else
1532
		error = xfs_da3_path_shift(state, &state->path, forward, 0,
L
Linus Torvalds 已提交
1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553
			&rval);
	if (error) {
		return error;
	}
	*action = rval ? 0 : 1;
	return 0;
}

/*
 * Move all the leaf entries from drop_blk to save_blk.
 * This is done as part of a join operation.
 */
void
xfs_dir2_leafn_unbalance(
	xfs_da_state_t		*state,		/* cursor */
	xfs_da_state_blk_t	*drop_blk,	/* dead block */
	xfs_da_state_blk_t	*save_blk)	/* surviving block */
{
	xfs_da_args_t		*args;		/* operation arguments */
	xfs_dir2_leaf_t		*drop_leaf;	/* dead leaf structure */
	xfs_dir2_leaf_t		*save_leaf;	/* surviving leaf structure */
1554 1555 1556 1557
	struct xfs_dir3_icleaf_hdr savehdr;
	struct xfs_dir3_icleaf_hdr drophdr;
	struct xfs_dir2_leaf_entry *sents;
	struct xfs_dir2_leaf_entry *dents;
L
Linus Torvalds 已提交
1558 1559 1560 1561

	args = state->args;
	ASSERT(drop_blk->magic == XFS_DIR2_LEAFN_MAGIC);
	ASSERT(save_blk->magic == XFS_DIR2_LEAFN_MAGIC);
1562 1563
	drop_leaf = drop_blk->bp->b_addr;
	save_leaf = save_blk->bp->b_addr;
1564 1565 1566 1567 1568 1569

	xfs_dir3_leaf_hdr_from_disk(&savehdr, save_leaf);
	xfs_dir3_leaf_hdr_from_disk(&drophdr, drop_leaf);
	sents = xfs_dir3_leaf_ents_p(save_leaf);
	dents = xfs_dir3_leaf_ents_p(drop_leaf);

L
Linus Torvalds 已提交
1570 1571 1572 1573
	/*
	 * If there are any stale leaf entries, take this opportunity
	 * to purge them.
	 */
1574 1575 1576 1577 1578
	if (drophdr.stale)
		xfs_dir3_leaf_compact(args, &drophdr, drop_blk->bp);
	if (savehdr.stale)
		xfs_dir3_leaf_compact(args, &savehdr, save_blk->bp);

L
Linus Torvalds 已提交
1579 1580 1581
	/*
	 * Move the entries from drop to the appropriate end of save.
	 */
1582
	drop_blk->hashval = be32_to_cpu(dents[drophdr.count - 1].hashval);
L
Linus Torvalds 已提交
1583
	if (xfs_dir2_leafn_order(save_blk->bp, drop_blk->bp))
1584 1585 1586
		xfs_dir3_leafn_moveents(args, drop_blk->bp, &drophdr, dents, 0,
					save_blk->bp, &savehdr, sents, 0,
					drophdr.count);
L
Linus Torvalds 已提交
1587
	else
1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600
		xfs_dir3_leafn_moveents(args, drop_blk->bp, &drophdr, dents, 0,
					save_blk->bp, &savehdr, sents,
					savehdr.count, drophdr.count);
	save_blk->hashval = be32_to_cpu(sents[savehdr.count - 1].hashval);

	/* log the changes made when moving the entries */
	xfs_dir3_leaf_hdr_to_disk(save_leaf, &savehdr);
	xfs_dir3_leaf_hdr_to_disk(drop_leaf, &drophdr);
	xfs_dir3_leaf_log_header(args->trans, save_blk->bp);
	xfs_dir3_leaf_log_header(args->trans, drop_blk->bp);

	xfs_dir3_leaf_check(args->dp->i_mount, save_blk->bp);
	xfs_dir3_leaf_check(args->dp->i_mount, drop_blk->bp);
L
Linus Torvalds 已提交
1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614
}

/*
 * Top-level node form directory addname routine.
 */
int						/* error */
xfs_dir2_node_addname(
	xfs_da_args_t		*args)		/* operation arguments */
{
	xfs_da_state_blk_t	*blk;		/* leaf block for insert */
	int			error;		/* error return value */
	int			rval;		/* sub-return value */
	xfs_da_state_t		*state;		/* btree cursor */

C
Christoph Hellwig 已提交
1615 1616
	trace_xfs_dir2_node_addname(args);

L
Linus Torvalds 已提交
1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628
	/*
	 * Allocate and initialize the state (btree cursor).
	 */
	state = xfs_da_state_alloc();
	state->args = args;
	state->mp = args->dp->i_mount;
	state->blocksize = state->mp->m_dirblksize;
	state->node_ents = state->mp->m_dir_node_ents;
	/*
	 * Look up the name.  We're not supposed to find it, but
	 * this gives us the insertion point.
	 */
1629
	error = xfs_da3_node_lookup_int(state, &rval);
L
Linus Torvalds 已提交
1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653
	if (error)
		rval = error;
	if (rval != ENOENT) {
		goto done;
	}
	/*
	 * Add the data entry to a data block.
	 * Extravalid is set to a freeblock found by lookup.
	 */
	rval = xfs_dir2_node_addname_int(args,
		state->extravalid ? &state->extrablk : NULL);
	if (rval) {
		goto done;
	}
	blk = &state->path.blk[state->path.active - 1];
	ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
	/*
	 * Add the new leaf entry.
	 */
	rval = xfs_dir2_leafn_add(blk->bp, args, blk->index);
	if (rval == 0) {
		/*
		 * It worked, fix the hash values up the btree.
		 */
1654
		if (!(args->op_flags & XFS_DA_OP_JUSTCHECK))
1655
			xfs_da3_fixhashpath(state, &state->path);
L
Linus Torvalds 已提交
1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666
	} else {
		/*
		 * It didn't work, we need to split the leaf block.
		 */
		if (args->total == 0) {
			ASSERT(rval == ENOSPC);
			goto done;
		}
		/*
		 * Split the leaf block and insert the new entry.
		 */
1667
		rval = xfs_da3_split(state);
L
Linus Torvalds 已提交
1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683
	}
done:
	xfs_da_state_free(state);
	return rval;
}

/*
 * Add the data entry for a node-format directory name addition.
 * The leaf entry is added in xfs_dir2_leafn_add.
 * We may enter with a freespace block that the lookup found.
 */
static int					/* error */
xfs_dir2_node_addname_int(
	xfs_da_args_t		*args,		/* operation arguments */
	xfs_da_state_blk_t	*fblk)		/* optional freespace block */
{
1684
	xfs_dir2_data_hdr_t	*hdr;		/* data block header */
L
Linus Torvalds 已提交
1685
	xfs_dir2_db_t		dbno;		/* data block number */
1686
	struct xfs_buf		*dbp;		/* data block buffer */
L
Linus Torvalds 已提交
1687 1688 1689 1690 1691
	xfs_dir2_data_entry_t	*dep;		/* data entry pointer */
	xfs_inode_t		*dp;		/* incore directory inode */
	xfs_dir2_data_unused_t	*dup;		/* data unused entry pointer */
	int			error;		/* error return value */
	xfs_dir2_db_t		fbno;		/* freespace block number */
1692
	struct xfs_buf		*fbp;		/* freespace buffer */
L
Linus Torvalds 已提交
1693 1694 1695 1696 1697 1698 1699 1700 1701
	int			findex;		/* freespace entry index */
	xfs_dir2_free_t		*free=NULL;	/* freespace block structure */
	xfs_dir2_db_t		ifbno;		/* initial freespace block no */
	xfs_dir2_db_t		lastfbno=0;	/* highest freespace block no */
	int			length;		/* length of the new entry */
	int			logfree;	/* need to log free entry */
	xfs_mount_t		*mp;		/* filesystem mount point */
	int			needlog;	/* need to log data header */
	int			needscan;	/* need to rescan data frees */
1702
	__be16			*tagp;		/* data entry tag pointer */
L
Linus Torvalds 已提交
1703
	xfs_trans_t		*tp;		/* transaction pointer */
1704 1705
	__be16			*bests;
	struct xfs_dir3_icfree_hdr freehdr;
1706
	struct xfs_dir2_data_free *bf;
L
Linus Torvalds 已提交
1707 1708 1709 1710

	dp = args->dp;
	mp = dp->i_mount;
	tp = args->trans;
1711
	length = xfs_dir2_data_entsize(args->namelen);
L
Linus Torvalds 已提交
1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722
	/*
	 * If we came in with a freespace block that means that lookup
	 * found an entry with our hash value.  This is the freespace
	 * block for that data entry.
	 */
	if (fblk) {
		fbp = fblk->bp;
		/*
		 * Remember initial freespace block number.
		 */
		ifbno = fblk->blkno;
1723
		free = fbp->b_addr;
L
Linus Torvalds 已提交
1724
		findex = fblk->index;
1725 1726 1727
		bests = xfs_dir3_free_bests_p(mp, free);
		xfs_dir3_free_hdr_from_disk(&freehdr, free);

L
Linus Torvalds 已提交
1728 1729 1730 1731 1732 1733
		/*
		 * This means the free entry showed that the data block had
		 * space for our entry, so we remembered it.
		 * Use that data block.
		 */
		if (findex >= 0) {
1734 1735 1736 1737 1738 1739 1740 1741 1742
			ASSERT(findex < freehdr.nvalid);
			ASSERT(be16_to_cpu(bests[findex]) != NULLDATAOFF);
			ASSERT(be16_to_cpu(bests[findex]) >= length);
			dbno = freehdr.firstdb + findex;
		} else {
			/*
			 * The data block looked at didn't have enough room.
			 * We'll start at the beginning of the freespace entries.
			 */
L
Linus Torvalds 已提交
1743 1744 1745
			dbno = -1;
			findex = 0;
		}
1746 1747 1748 1749
	} else {
		/*
		 * Didn't come in with a freespace block, so no data block.
		 */
L
Linus Torvalds 已提交
1750 1751 1752 1753
		ifbno = dbno = -1;
		fbp = NULL;
		findex = 0;
	}
1754

L
Linus Torvalds 已提交
1755 1756 1757 1758 1759 1760 1761 1762 1763 1764
	/*
	 * If we don't have a data block yet, we're going to scan the
	 * freespace blocks looking for one.  Figure out what the
	 * highest freespace block number is.
	 */
	if (dbno == -1) {
		xfs_fileoff_t	fo;		/* freespace block number */

		if ((error = xfs_bmap_last_offset(tp, dp, &fo, XFS_DATA_FORK)))
			return error;
1765
		lastfbno = xfs_dir2_da_to_db(mp, (xfs_dablk_t)fo);
L
Linus Torvalds 已提交
1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799
		fbno = ifbno;
	}
	/*
	 * While we haven't identified a data block, search the freeblock
	 * data for a good data block.  If we find a null freeblock entry,
	 * indicating a hole in the data blocks, remember that.
	 */
	while (dbno == -1) {
		/*
		 * If we don't have a freeblock in hand, get the next one.
		 */
		if (fbp == NULL) {
			/*
			 * Happens the first time through unless lookup gave
			 * us a freespace block to start with.
			 */
			if (++fbno == 0)
				fbno = XFS_DIR2_FREE_FIRSTDB(mp);
			/*
			 * If it's ifbno we already looked at it.
			 */
			if (fbno == ifbno)
				fbno++;
			/*
			 * If it's off the end we're done.
			 */
			if (fbno >= lastfbno)
				break;
			/*
			 * Read the block.  There can be holes in the
			 * freespace blocks, so this might not succeed.
			 * This should be really rare, so there's no reason
			 * to avoid it.
			 */
D
Dave Chinner 已提交
1800 1801 1802
			error = xfs_dir2_free_try_read(tp, dp,
						xfs_dir2_db_to_da(mp, fbno),
						&fbp);
1803
			if (error)
L
Linus Torvalds 已提交
1804
				return error;
1805
			if (!fbp)
L
Linus Torvalds 已提交
1806
				continue;
1807
			free = fbp->b_addr;
L
Linus Torvalds 已提交
1808 1809 1810 1811
			findex = 0;
		}
		/*
		 * Look at the current free entry.  Is it good enough?
1812 1813 1814 1815 1816
		 *
		 * The bests initialisation should be where the bufer is read in
		 * the above branch. But gcc is too stupid to realise that bests
		 * and the freehdr are actually initialised if they are placed
		 * there, so we have to do it here to avoid warnings. Blech.
L
Linus Torvalds 已提交
1817
		 */
1818 1819 1820 1821 1822
		bests = xfs_dir3_free_bests_p(mp, free);
		xfs_dir3_free_hdr_from_disk(&freehdr, free);
		if (be16_to_cpu(bests[findex]) != NULLDATAOFF &&
		    be16_to_cpu(bests[findex]) >= length)
			dbno = freehdr.firstdb + findex;
L
Linus Torvalds 已提交
1823 1824 1825 1826
		else {
			/*
			 * Are we done with the freeblock?
			 */
1827
			if (++findex == freehdr.nvalid) {
L
Linus Torvalds 已提交
1828 1829 1830
				/*
				 * Drop the block.
				 */
1831
				xfs_trans_brelse(tp, fbp);
L
Linus Torvalds 已提交
1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845
				fbp = NULL;
				if (fblk && fblk->bp)
					fblk->bp = NULL;
			}
		}
	}
	/*
	 * If we don't have a data block, we need to allocate one and make
	 * the freespace entries refer to it.
	 */
	if (unlikely(dbno == -1)) {
		/*
		 * Not allowed to allocate, return failure.
		 */
1846
		if ((args->op_flags & XFS_DA_OP_JUSTCHECK) || args->total == 0)
L
Linus Torvalds 已提交
1847
			return XFS_ERROR(ENOSPC);
1848

L
Linus Torvalds 已提交
1849 1850 1851 1852 1853 1854
		/*
		 * Allocate and initialize the new data block.
		 */
		if (unlikely((error = xfs_dir2_grow_inode(args,
							 XFS_DIR2_DATA_SPACE,
							 &dbno)) ||
1855
		    (error = xfs_dir3_data_init(args, dbno, &dbp))))
L
Linus Torvalds 已提交
1856
			return error;
1857

L
Linus Torvalds 已提交
1858 1859 1860 1861
		/*
		 * If (somehow) we have a freespace block, get rid of it.
		 */
		if (fbp)
1862
			xfs_trans_brelse(tp, fbp);
L
Linus Torvalds 已提交
1863 1864 1865 1866 1867 1868 1869
		if (fblk && fblk->bp)
			fblk->bp = NULL;

		/*
		 * Get the freespace block corresponding to the data block
		 * that was just allocated.
		 */
1870
		fbno = xfs_dir2_db_to_fdb(mp, dbno);
D
Dave Chinner 已提交
1871 1872 1873
		error = xfs_dir2_free_try_read(tp, dp,
					       xfs_dir2_db_to_da(mp, fbno),
					       &fbp);
1874
		if (error)
L
Linus Torvalds 已提交
1875
			return error;
1876

L
Linus Torvalds 已提交
1877 1878 1879 1880
		/*
		 * If there wasn't a freespace block, the read will
		 * return a NULL fbp.  Allocate and initialize a new one.
		 */
1881 1882 1883 1884
		if (!fbp) {
			error = xfs_dir2_grow_inode(args, XFS_DIR2_FREE_SPACE,
						    &fbno);
			if (error)
L
Linus Torvalds 已提交
1885 1886
				return error;

1887
			if (unlikely(xfs_dir2_db_to_fdb(mp, dbno) != fbno)) {
1888
				xfs_alert(mp,
J
Jean Delvare 已提交
1889
			"%s: dir ino %llu needed freesp block %lld for\n"
1890 1891
			"  data block %lld, got %lld ifbno %llu lastfbno %d",
					__func__, (unsigned long long)dp->i_ino,
1892
					(long long)xfs_dir2_db_to_fdb(mp, dbno),
L
Linus Torvalds 已提交
1893 1894 1895
					(long long)dbno, (long long)fbno,
					(unsigned long long)ifbno, lastfbno);
				if (fblk) {
1896 1897
					xfs_alert(mp,
				" fblk 0x%p blkno %llu index %d magic 0x%x",
L
Linus Torvalds 已提交
1898 1899 1900 1901 1902
						fblk,
						(unsigned long long)fblk->blkno,
						fblk->index,
						fblk->magic);
				} else {
1903
					xfs_alert(mp, " ... fblk is NULL");
L
Linus Torvalds 已提交
1904 1905 1906 1907 1908 1909 1910 1911 1912
				}
				XFS_ERROR_REPORT("xfs_dir2_node_addname_int",
						 XFS_ERRLEVEL_LOW, mp);
				return XFS_ERROR(EFSCORRUPTED);
			}

			/*
			 * Get a buffer for the new block.
			 */
1913
			error = xfs_dir3_free_get_buf(tp, dp, fbno, &fbp);
1914
			if (error)
L
Linus Torvalds 已提交
1915
				return error;
1916 1917 1918
			free = fbp->b_addr;
			bests = xfs_dir3_free_bests_p(mp, free);
			xfs_dir3_free_hdr_from_disk(&freehdr, free);
L
Linus Torvalds 已提交
1919 1920

			/*
1921
			 * Remember the first slot as our empty slot.
L
Linus Torvalds 已提交
1922
			 */
1923 1924
			freehdr.firstdb = (fbno - XFS_DIR2_FREE_FIRSTDB(mp)) *
					xfs_dir3_free_max_bests(mp);
L
Linus Torvalds 已提交
1925
		} else {
1926
			free = fbp->b_addr;
1927 1928
			bests = xfs_dir3_free_bests_p(mp, free);
			xfs_dir3_free_hdr_from_disk(&freehdr, free);
L
Linus Torvalds 已提交
1929 1930 1931 1932 1933
		}

		/*
		 * Set the freespace block index from the data block number.
		 */
1934
		findex = xfs_dir2_db_to_fdindex(mp, dbno);
L
Linus Torvalds 已提交
1935 1936 1937 1938
		/*
		 * If it's after the end of the current entries in the
		 * freespace block, extend that table.
		 */
1939 1940 1941
		if (findex >= freehdr.nvalid) {
			ASSERT(findex < xfs_dir3_free_max_bests(mp));
			freehdr.nvalid = findex + 1;
L
Linus Torvalds 已提交
1942 1943 1944
			/*
			 * Tag new entry so nused will go up.
			 */
1945
			bests[findex] = cpu_to_be16(NULLDATAOFF);
L
Linus Torvalds 已提交
1946 1947 1948 1949 1950
		}
		/*
		 * If this entry was for an empty data block
		 * (this should always be true) then update the header.
		 */
1951 1952 1953
		if (bests[findex] == cpu_to_be16(NULLDATAOFF)) {
			freehdr.nused++;
			xfs_dir3_free_hdr_to_disk(fbp->b_addr, &freehdr);
L
Linus Torvalds 已提交
1954 1955 1956 1957 1958 1959 1960
			xfs_dir2_free_log_header(tp, fbp);
		}
		/*
		 * Update the real value in the table.
		 * We haven't allocated the data entry yet so this will
		 * change again.
		 */
1961
		hdr = dbp->b_addr;
1962 1963
		bf = xfs_dir3_data_bestfree_p(hdr);
		bests[findex] = bf[0].length;
L
Linus Torvalds 已提交
1964 1965 1966 1967 1968 1969 1970 1971 1972
		logfree = 1;
	}
	/*
	 * We had a data block so we don't have to make a new one.
	 */
	else {
		/*
		 * If just checking, we succeeded.
		 */
1973
		if (args->op_flags & XFS_DA_OP_JUSTCHECK)
L
Linus Torvalds 已提交
1974
			return 0;
1975

L
Linus Torvalds 已提交
1976 1977 1978
		/*
		 * Read the data block in.
		 */
1979
		error = xfs_dir3_data_read(tp, dp, xfs_dir2_db_to_da(mp, dbno),
1980
					   -1, &dbp);
1981
		if (error)
L
Linus Torvalds 已提交
1982
			return error;
1983
		hdr = dbp->b_addr;
1984
		bf = xfs_dir3_data_bestfree_p(hdr);
L
Linus Torvalds 已提交
1985 1986
		logfree = 0;
	}
1987
	ASSERT(be16_to_cpu(bf[0].length) >= length);
L
Linus Torvalds 已提交
1988 1989 1990 1991
	/*
	 * Point to the existing unused space.
	 */
	dup = (xfs_dir2_data_unused_t *)
1992
	      ((char *)hdr + be16_to_cpu(bf[0].offset));
L
Linus Torvalds 已提交
1993 1994 1995 1996 1997
	needscan = needlog = 0;
	/*
	 * Mark the first part of the unused space, inuse for us.
	 */
	xfs_dir2_data_use_free(tp, dbp, dup,
1998
		(xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr), length,
L
Linus Torvalds 已提交
1999 2000 2001 2002 2003
		&needlog, &needscan);
	/*
	 * Fill in the new entry and log it.
	 */
	dep = (xfs_dir2_data_entry_t *)dup;
2004
	dep->inumber = cpu_to_be64(args->inumber);
L
Linus Torvalds 已提交
2005 2006
	dep->namelen = args->namelen;
	memcpy(dep->name, args->name, dep->namelen);
2007
	tagp = xfs_dir2_data_entry_tag_p(dep);
2008
	*tagp = cpu_to_be16((char *)dep - (char *)hdr);
L
Linus Torvalds 已提交
2009 2010 2011 2012 2013
	xfs_dir2_data_log_entry(tp, dbp, dep);
	/*
	 * Rescan the block for bestfree if needed.
	 */
	if (needscan)
2014
		xfs_dir2_data_freescan(mp, hdr, &needlog);
L
Linus Torvalds 已提交
2015 2016 2017 2018 2019 2020 2021 2022
	/*
	 * Log the data block header if needed.
	 */
	if (needlog)
		xfs_dir2_data_log_header(tp, dbp);
	/*
	 * If the freespace entry is now wrong, update it.
	 */
2023
	bests = xfs_dir3_free_bests_p(mp, free); /* gcc is so stupid */
2024 2025
	if (be16_to_cpu(bests[findex]) != be16_to_cpu(bf[0].length)) {
		bests[findex] = bf[0].length;
L
Linus Torvalds 已提交
2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036
		logfree = 1;
	}
	/*
	 * Log the freespace entry if needed.
	 */
	if (logfree)
		xfs_dir2_free_log_bests(tp, fbp, findex, findex);
	/*
	 * Return the data block and offset in args, then drop the data block.
	 */
	args->blkno = (xfs_dablk_t)dbno;
2037
	args->index = be16_to_cpu(*tagp);
L
Linus Torvalds 已提交
2038 2039 2040 2041 2042
	return 0;
}

/*
 * Lookup an entry in a node-format directory.
2043
 * All the real work happens in xfs_da3_node_lookup_int.
L
Linus Torvalds 已提交
2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054
 * The only real output is the inode number of the entry.
 */
int						/* error */
xfs_dir2_node_lookup(
	xfs_da_args_t	*args)			/* operation arguments */
{
	int		error;			/* error return value */
	int		i;			/* btree level */
	int		rval;			/* operation return value */
	xfs_da_state_t	*state;			/* btree cursor */

C
Christoph Hellwig 已提交
2055 2056
	trace_xfs_dir2_node_lookup(args);

L
Linus Torvalds 已提交
2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067
	/*
	 * Allocate and initialize the btree cursor.
	 */
	state = xfs_da_state_alloc();
	state->args = args;
	state->mp = args->dp->i_mount;
	state->blocksize = state->mp->m_dirblksize;
	state->node_ents = state->mp->m_dir_node_ents;
	/*
	 * Fill in the path to the entry in the cursor.
	 */
2068
	error = xfs_da3_node_lookup_int(state, &rval);
L
Linus Torvalds 已提交
2069 2070
	if (error)
		rval = error;
2071 2072 2073 2074
	else if (rval == ENOENT && args->cmpresult == XFS_CMP_CASE) {
		/* If a CI match, dup the actual name and return EEXIST */
		xfs_dir2_data_entry_t	*dep;

2075 2076 2077
		dep = (xfs_dir2_data_entry_t *)
			((char *)state->extrablk.bp->b_addr +
						 state->extrablk.index);
2078 2079
		rval = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
	}
L
Linus Torvalds 已提交
2080 2081 2082 2083
	/*
	 * Release the btree blocks and leaf block.
	 */
	for (i = 0; i < state->path.active; i++) {
2084
		xfs_trans_brelse(args->trans, state->path.blk[i].bp);
L
Linus Torvalds 已提交
2085 2086 2087 2088 2089 2090
		state->path.blk[i].bp = NULL;
	}
	/*
	 * Release the data block if we have it.
	 */
	if (state->extravalid && state->extrablk.bp) {
2091
		xfs_trans_brelse(args->trans, state->extrablk.bp);
L
Linus Torvalds 已提交
2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109
		state->extrablk.bp = NULL;
	}
	xfs_da_state_free(state);
	return rval;
}

/*
 * Remove an entry from a node-format directory.
 */
int						/* error */
xfs_dir2_node_removename(
	xfs_da_args_t		*args)		/* operation arguments */
{
	xfs_da_state_blk_t	*blk;		/* leaf block */
	int			error;		/* error return value */
	int			rval;		/* operation return value */
	xfs_da_state_t		*state;		/* btree cursor */

C
Christoph Hellwig 已提交
2110 2111
	trace_xfs_dir2_node_removename(args);

L
Linus Torvalds 已提交
2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122
	/*
	 * Allocate and initialize the btree cursor.
	 */
	state = xfs_da_state_alloc();
	state->args = args;
	state->mp = args->dp->i_mount;
	state->blocksize = state->mp->m_dirblksize;
	state->node_ents = state->mp->m_dir_node_ents;
	/*
	 * Look up the entry we're deleting, set up the cursor.
	 */
2123
	error = xfs_da3_node_lookup_int(state, &rval);
2124
	if (error)
L
Linus Torvalds 已提交
2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141
		rval = error;
	/*
	 * Didn't find it, upper layer screwed up.
	 */
	if (rval != EEXIST) {
		xfs_da_state_free(state);
		return rval;
	}
	blk = &state->path.blk[state->path.active - 1];
	ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
	ASSERT(state->extravalid);
	/*
	 * Remove the leaf and data entries.
	 * Extrablk refers to the data block.
	 */
	error = xfs_dir2_leafn_remove(args, blk->bp, blk->index,
		&state->extrablk, &rval);
2142
	if (error)
L
Linus Torvalds 已提交
2143 2144 2145 2146
		return error;
	/*
	 * Fix the hash values up the btree.
	 */
2147
	xfs_da3_fixhashpath(state, &state->path);
L
Linus Torvalds 已提交
2148 2149 2150 2151
	/*
	 * If we need to join leaf blocks, do it.
	 */
	if (rval && state->path.active > 1)
2152
		error = xfs_da3_join(state);
L
Linus Torvalds 已提交
2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169
	/*
	 * If no errors so far, try conversion to leaf format.
	 */
	if (!error)
		error = xfs_dir2_node_to_leaf(state);
	xfs_da_state_free(state);
	return error;
}

/*
 * Replace an entry's inode number in a node-format directory.
 */
int						/* error */
xfs_dir2_node_replace(
	xfs_da_args_t		*args)		/* operation arguments */
{
	xfs_da_state_blk_t	*blk;		/* leaf block */
2170
	xfs_dir2_data_hdr_t	*hdr;		/* data block header */
L
Linus Torvalds 已提交
2171 2172 2173 2174 2175 2176 2177 2178 2179
	xfs_dir2_data_entry_t	*dep;		/* data entry changed */
	int			error;		/* error return value */
	int			i;		/* btree level */
	xfs_ino_t		inum;		/* new inode number */
	xfs_dir2_leaf_t		*leaf;		/* leaf structure */
	xfs_dir2_leaf_entry_t	*lep;		/* leaf entry being changed */
	int			rval;		/* internal return value */
	xfs_da_state_t		*state;		/* btree cursor */

C
Christoph Hellwig 已提交
2180 2181
	trace_xfs_dir2_node_replace(args);

L
Linus Torvalds 已提交
2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193
	/*
	 * Allocate and initialize the btree cursor.
	 */
	state = xfs_da_state_alloc();
	state->args = args;
	state->mp = args->dp->i_mount;
	state->blocksize = state->mp->m_dirblksize;
	state->node_ents = state->mp->m_dir_node_ents;
	inum = args->inumber;
	/*
	 * Lookup the entry to change in the btree.
	 */
2194
	error = xfs_da3_node_lookup_int(state, &rval);
L
Linus Torvalds 已提交
2195 2196 2197 2198 2199 2200 2201 2202
	if (error) {
		rval = error;
	}
	/*
	 * It should be found, since the vnodeops layer has looked it up
	 * and locked it.  But paranoia is good.
	 */
	if (rval == EEXIST) {
2203
		struct xfs_dir2_leaf_entry *ents;
L
Linus Torvalds 已提交
2204 2205 2206 2207 2208
		/*
		 * Find the leaf entry.
		 */
		blk = &state->path.blk[state->path.active - 1];
		ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
2209
		leaf = blk->bp->b_addr;
2210 2211
		ents = xfs_dir3_leaf_ents_p(leaf);
		lep = &ents[blk->index];
L
Linus Torvalds 已提交
2212 2213 2214 2215
		ASSERT(state->extravalid);
		/*
		 * Point to the data entry.
		 */
2216
		hdr = state->extrablk.bp->b_addr;
2217 2218
		ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
		       hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC));
L
Linus Torvalds 已提交
2219
		dep = (xfs_dir2_data_entry_t *)
2220
		      ((char *)hdr +
2221
		       xfs_dir2_dataptr_to_off(state->mp, be32_to_cpu(lep->address)));
2222
		ASSERT(inum != be64_to_cpu(dep->inumber));
L
Linus Torvalds 已提交
2223 2224 2225
		/*
		 * Fill in the new inode number and log the entry.
		 */
2226
		dep->inumber = cpu_to_be64(inum);
L
Linus Torvalds 已提交
2227 2228 2229 2230 2231 2232 2233
		xfs_dir2_data_log_entry(args->trans, state->extrablk.bp, dep);
		rval = 0;
	}
	/*
	 * Didn't find it, and we're holding a data block.  Drop it.
	 */
	else if (state->extravalid) {
2234
		xfs_trans_brelse(args->trans, state->extrablk.bp);
L
Linus Torvalds 已提交
2235 2236 2237 2238 2239 2240
		state->extrablk.bp = NULL;
	}
	/*
	 * Release all the buffers in the cursor.
	 */
	for (i = 0; i < state->path.active; i++) {
2241
		xfs_trans_brelse(args->trans, state->path.blk[i].bp);
L
Linus Torvalds 已提交
2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257
		state->path.blk[i].bp = NULL;
	}
	xfs_da_state_free(state);
	return rval;
}

/*
 * Trim off a trailing empty freespace block.
 * Return (in rvalp) 1 if we did it, 0 if not.
 */
int						/* error */
xfs_dir2_node_trim_free(
	xfs_da_args_t		*args,		/* operation arguments */
	xfs_fileoff_t		fo,		/* free block number */
	int			*rvalp)		/* out: did something */
{
2258
	struct xfs_buf		*bp;		/* freespace buffer */
L
Linus Torvalds 已提交
2259 2260 2261 2262 2263
	xfs_inode_t		*dp;		/* incore directory inode */
	int			error;		/* error return code */
	xfs_dir2_free_t		*free;		/* freespace structure */
	xfs_mount_t		*mp;		/* filesystem mount point */
	xfs_trans_t		*tp;		/* transaction pointer */
2264
	struct xfs_dir3_icfree_hdr freehdr;
L
Linus Torvalds 已提交
2265 2266 2267 2268 2269 2270 2271

	dp = args->dp;
	mp = dp->i_mount;
	tp = args->trans;
	/*
	 * Read the freespace block.
	 */
D
Dave Chinner 已提交
2272
	error = xfs_dir2_free_try_read(tp, dp, fo, &bp);
2273
	if (error)
L
Linus Torvalds 已提交
2274 2275 2276 2277 2278
		return error;
	/*
	 * There can be holes in freespace.  If fo is a hole, there's
	 * nothing to do.
	 */
D
Dave Chinner 已提交
2279
	if (!bp)
L
Linus Torvalds 已提交
2280
		return 0;
2281
	free = bp->b_addr;
2282 2283
	xfs_dir3_free_hdr_from_disk(&freehdr, free);

L
Linus Torvalds 已提交
2284 2285 2286
	/*
	 * If there are used entries, there's nothing to do.
	 */
2287
	if (freehdr.nused > 0) {
2288
		xfs_trans_brelse(tp, bp);
L
Linus Torvalds 已提交
2289 2290 2291 2292 2293 2294 2295
		*rvalp = 0;
		return 0;
	}
	/*
	 * Blow the block away.
	 */
	if ((error =
2296
	    xfs_dir2_shrink_inode(args, xfs_dir2_da_to_db(mp, (xfs_dablk_t)fo),
L
Linus Torvalds 已提交
2297 2298 2299 2300 2301 2302 2303
		    bp))) {
		/*
		 * Can't fail with ENOSPC since that only happens with no
		 * space reservation, when breaking up an extent into two
		 * pieces.  This is the last block of an extent.
		 */
		ASSERT(error != ENOSPC);
2304
		xfs_trans_brelse(tp, bp);
L
Linus Torvalds 已提交
2305 2306 2307 2308 2309 2310 2311 2312
		return error;
	}
	/*
	 * Return that we succeeded.
	 */
	*rvalp = 1;
	return 0;
}