xfs_dir2_node.c 63.1 KB
Newer Older
D
Dave Chinner 已提交
1
// SPDX-License-Identifier: GPL-2.0
L
Linus Torvalds 已提交
2
/*
3
 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
4
 * Copyright (c) 2013 Red Hat, Inc.
5
 * All Rights Reserved.
L
Linus Torvalds 已提交
6 7
 */
#include "xfs.h"
8
#include "xfs_fs.h"
9
#include "xfs_shared.h"
10
#include "xfs_format.h"
11 12
#include "xfs_log_format.h"
#include "xfs_trans_resv.h"
L
Linus Torvalds 已提交
13
#include "xfs_mount.h"
14
#include "xfs_da_format.h"
15
#include "xfs_da_btree.h"
L
Linus Torvalds 已提交
16 17
#include "xfs_inode.h"
#include "xfs_bmap.h"
18
#include "xfs_dir2.h"
C
Christoph Hellwig 已提交
19
#include "xfs_dir2_priv.h"
L
Linus Torvalds 已提交
20
#include "xfs_error.h"
C
Christoph Hellwig 已提交
21
#include "xfs_trace.h"
22
#include "xfs_trans.h"
23 24
#include "xfs_buf_item.h"
#include "xfs_cksum.h"
25
#include "xfs_log.h"
L
Linus Torvalds 已提交
26 27 28 29

/*
 * Function declarations.
 */
30 31
static int xfs_dir2_leafn_add(struct xfs_buf *bp, xfs_da_args_t *args,
			      int index);
L
Linus Torvalds 已提交
32 33 34
static void xfs_dir2_leafn_rebalance(xfs_da_state_t *state,
				     xfs_da_state_blk_t *blk1,
				     xfs_da_state_blk_t *blk2);
35
static int xfs_dir2_leafn_remove(xfs_da_args_t *args, struct xfs_buf *bp,
L
Linus Torvalds 已提交
36 37 38 39 40
				 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);

41 42 43 44
/*
 * Check internal consistency of a leafn block.
 */
#ifdef DEBUG
45
static xfs_failaddr_t
46
xfs_dir3_leafn_check(
47
	struct xfs_inode	*dp,
48 49 50 51 52
	struct xfs_buf		*bp)
{
	struct xfs_dir2_leaf	*leaf = bp->b_addr;
	struct xfs_dir3_icleaf_hdr leafhdr;

53
	dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
54 55 56 57

	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)
58
			return __this_address;
59
	} else if (leafhdr.magic != XFS_DIR2_LEAFN_MAGIC)
60
		return __this_address;
61

62
	return xfs_dir3_leaf_check_int(dp->i_mount, dp, &leafhdr, leaf);
63
}
64 65 66 67 68 69 70 71 72 73 74 75

static inline void
xfs_dir3_leaf_check(
	struct xfs_inode	*dp,
	struct xfs_buf		*bp)
{
	xfs_failaddr_t		fa;

	fa = xfs_dir3_leafn_check(dp, bp);
	if (!fa)
		return;
	xfs_corruption_error(__func__, XFS_ERRLEVEL_LOW, dp->i_mount,
76 77
			bp->b_addr, BBTOB(bp->b_length), __FILE__, __LINE__,
			fa);
78 79
	ASSERT(0);
}
80
#else
81
#define	xfs_dir3_leaf_check(dp, bp)
82 83
#endif

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

91 92 93
	if (!xfs_verify_magic(bp, hdr->magic))
		return __this_address;

94 95 96
	if (xfs_sb_version_hascrc(&mp->m_sb)) {
		struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;

97
		if (!uuid_equal(&hdr3->uuid, &mp->m_sb.sb_meta_uuid))
98
			return __this_address;
99
		if (be64_to_cpu(hdr3->blkno) != bp->b_bn)
100
			return __this_address;
101
		if (!xfs_log_check_lsn(mp, be64_to_cpu(hdr3->lsn)))
102
			return __this_address;
D
Dave Chinner 已提交
103
	}
104 105 106

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

107
	return NULL;
108
}
D
Dave Chinner 已提交
109

110
static void
111
xfs_dir3_free_read_verify(
112 113
	struct xfs_buf	*bp)
{
114
	struct xfs_mount	*mp = bp->b_target->bt_mount;
115
	xfs_failaddr_t		fa;
116

117 118
	if (xfs_sb_version_hascrc(&mp->m_sb) &&
	    !xfs_buf_verify_cksum(bp, XFS_DIR3_FREE_CRC_OFF))
119 120 121 122 123 124
		xfs_verifier_error(bp, -EFSBADCRC, __this_address);
	else {
		fa = xfs_dir3_free_verify(bp);
		if (fa)
			xfs_verifier_error(bp, -EFSCORRUPTED, fa);
	}
125 126
}

127
static void
128
xfs_dir3_free_write_verify(
129 130
	struct xfs_buf	*bp)
{
131
	struct xfs_mount	*mp = bp->b_target->bt_mount;
C
Carlos Maiolino 已提交
132
	struct xfs_buf_log_item	*bip = bp->b_log_item;
133
	struct xfs_dir3_blk_hdr	*hdr3 = bp->b_addr;
134
	xfs_failaddr_t		fa;
135

136 137 138
	fa = xfs_dir3_free_verify(bp);
	if (fa) {
		xfs_verifier_error(bp, -EFSCORRUPTED, fa);
139 140 141 142 143 144 145 146 147
		return;
	}

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

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

148
	xfs_buf_update_cksum(bp, XFS_DIR3_FREE_CRC_OFF);
D
Dave Chinner 已提交
149 150
}

151
const struct xfs_buf_ops xfs_dir3_free_buf_ops = {
152
	.name = "xfs_dir3_free",
153 154
	.magic = { cpu_to_be32(XFS_DIR2_FREE_MAGIC),
		   cpu_to_be32(XFS_DIR3_FREE_MAGIC) },
155 156
	.verify_read = xfs_dir3_free_read_verify,
	.verify_write = xfs_dir3_free_write_verify,
157
	.verify_struct = xfs_dir3_free_verify,
158 159
};

160
/* Everything ok in the free block header? */
161
static xfs_failaddr_t
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
xfs_dir3_free_header_check(
	struct xfs_inode	*dp,
	xfs_dablk_t		fbno,
	struct xfs_buf		*bp)
{
	struct xfs_mount	*mp = dp->i_mount;
	unsigned int		firstdb;
	int			maxbests;

	maxbests = dp->d_ops->free_max_bests(mp->m_dir_geo);
	firstdb = (xfs_dir2_da_to_db(mp->m_dir_geo, fbno) -
		   xfs_dir2_byte_to_db(mp->m_dir_geo, XFS_DIR2_FREE_OFFSET)) *
			maxbests;
	if (xfs_sb_version_hascrc(&mp->m_sb)) {
		struct xfs_dir3_free_hdr *hdr3 = bp->b_addr;

		if (be32_to_cpu(hdr3->firstdb) != firstdb)
179
			return __this_address;
180
		if (be32_to_cpu(hdr3->nvalid) > maxbests)
181
			return __this_address;
182
		if (be32_to_cpu(hdr3->nvalid) < be32_to_cpu(hdr3->nused))
183
			return __this_address;
184 185 186 187
	} else {
		struct xfs_dir2_free_hdr *hdr = bp->b_addr;

		if (be32_to_cpu(hdr->firstdb) != firstdb)
188
			return __this_address;
189
		if (be32_to_cpu(hdr->nvalid) > maxbests)
190
			return __this_address;
191
		if (be32_to_cpu(hdr->nvalid) < be32_to_cpu(hdr->nused))
192
			return __this_address;
193
	}
194
	return NULL;
195
}
196

D
Dave Chinner 已提交
197
static int
198
__xfs_dir3_free_read(
D
Dave Chinner 已提交
199 200 201 202 203 204
	struct xfs_trans	*tp,
	struct xfs_inode	*dp,
	xfs_dablk_t		fbno,
	xfs_daddr_t		mappedbno,
	struct xfs_buf		**bpp)
{
205
	xfs_failaddr_t		fa;
206 207 208
	int			err;

	err = xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp,
209
				XFS_DATA_FORK, &xfs_dir3_free_buf_ops);
210 211 212 213
	if (err || !*bpp)
		return err;

	/* Check things that we can't do in the verifier. */
214 215 216
	fa = xfs_dir3_free_header_check(dp, fbno, *bpp);
	if (fa) {
		xfs_verifier_error(*bpp, -EFSCORRUPTED, fa);
217 218 219
		xfs_trans_brelse(tp, *bpp);
		return -EFSCORRUPTED;
	}
220 221

	/* try read returns without an error or *bpp if it lands in a hole */
222
	if (tp)
223
		xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_FREE_BUF);
224 225

	return 0;
D
Dave Chinner 已提交
226 227 228 229 230 231 232 233 234
}

int
xfs_dir2_free_read(
	struct xfs_trans	*tp,
	struct xfs_inode	*dp,
	xfs_dablk_t		fbno,
	struct xfs_buf		**bpp)
{
235
	return __xfs_dir3_free_read(tp, dp, fbno, -1, bpp);
D
Dave Chinner 已提交
236 237 238 239 240 241 242 243 244
}

static int
xfs_dir2_free_try_read(
	struct xfs_trans	*tp,
	struct xfs_inode	*dp,
	xfs_dablk_t		fbno,
	struct xfs_buf		**bpp)
{
245 246 247 248 249
	return __xfs_dir3_free_read(tp, dp, fbno, -2, bpp);
}

static int
xfs_dir3_free_get_buf(
250
	xfs_da_args_t		*args,
251 252 253
	xfs_dir2_db_t		fbno,
	struct xfs_buf		**bpp)
{
254 255
	struct xfs_trans	*tp = args->trans;
	struct xfs_inode	*dp = args->dp;
256 257 258 259 260
	struct xfs_mount	*mp = dp->i_mount;
	struct xfs_buf		*bp;
	int			error;
	struct xfs_dir3_icfree_hdr hdr;

261
	error = xfs_da_get_buf(tp, dp, xfs_dir2_db_to_da(args->geo, fbno),
262 263 264 265
				   -1, &bp, XFS_DATA_FORK);
	if (error)
		return error;

266
	xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_FREE_BUF);
267 268 269 270 271 272
	bp->b_ops = &xfs_dir3_free_buf_ops;

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

276 277 278 279
	if (xfs_sb_version_hascrc(&mp->m_sb)) {
		struct xfs_dir3_free_hdr *hdr3 = bp->b_addr;

		hdr.magic = XFS_DIR3_FREE_MAGIC;
280

281 282
		hdr3->hdr.blkno = cpu_to_be64(bp->b_bn);
		hdr3->hdr.owner = cpu_to_be64(dp->i_ino);
283
		uuid_copy(&hdr3->hdr.uuid, &mp->m_sb.sb_meta_uuid);
284 285
	} else
		hdr.magic = XFS_DIR2_FREE_MAGIC;
286
	dp->d_ops->free_hdr_to_disk(bp->b_addr, &hdr);
287 288
	*bpp = bp;
	return 0;
D
Dave Chinner 已提交
289 290
}

L
Linus Torvalds 已提交
291 292 293
/*
 * Log entries from a freespace block.
 */
294
STATIC void
L
Linus Torvalds 已提交
295
xfs_dir2_free_log_bests(
296
	struct xfs_da_args	*args,
297
	struct xfs_buf		*bp,
L
Linus Torvalds 已提交
298 299 300 301
	int			first,		/* first entry to log */
	int			last)		/* last entry to log */
{
	xfs_dir2_free_t		*free;		/* freespace structure */
302
	__be16			*bests;
L
Linus Torvalds 已提交
303

304
	free = bp->b_addr;
305
	bests = args->dp->d_ops->free_bests_p(free);
306 307
	ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
	       free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
308
	xfs_trans_log_buf(args->trans, bp,
309 310 311
		(uint)((char *)&bests[first] - (char *)free),
		(uint)((char *)&bests[last] - (char *)free +
		       sizeof(bests[0]) - 1));
L
Linus Torvalds 已提交
312 313 314 315 316 317 318
}

/*
 * Log header from a freespace block.
 */
static void
xfs_dir2_free_log_header(
319
	struct xfs_da_args	*args,
320
	struct xfs_buf		*bp)
L
Linus Torvalds 已提交
321
{
322
#ifdef DEBUG
L
Linus Torvalds 已提交
323 324
	xfs_dir2_free_t		*free;		/* freespace structure */

325
	free = bp->b_addr;
326 327
	ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
	       free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
328
#endif
329 330
	xfs_trans_log_buf(args->trans, bp, 0,
			  args->dp->d_ops->free_hdr_size - 1);
L
Linus Torvalds 已提交
331 332 333 334 335 336 337 338 339 340
}

/*
 * 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 */
341
	struct xfs_buf		*lbp)		/* leaf buffer */
L
Linus Torvalds 已提交
342 343 344
{
	xfs_inode_t		*dp;		/* incore directory inode */
	int			error;		/* error return value */
345
	struct xfs_buf		*fbp;		/* freespace buffer */
L
Linus Torvalds 已提交
346 347
	xfs_dir2_db_t		fdb;		/* freespace block number */
	xfs_dir2_free_t		*free;		/* freespace structure */
348
	__be16			*from;		/* pointer to freespace entry */
L
Linus Torvalds 已提交
349 350 351 352 353
	int			i;		/* leaf freespace index */
	xfs_dir2_leaf_t		*leaf;		/* leaf structure */
	xfs_dir2_leaf_tail_t	*ltp;		/* leaf tail structure */
	int			n;		/* count of live freespc ents */
	xfs_dir2_data_off_t	off;		/* freespace entry value */
354
	__be16			*to;		/* pointer to freespace entry */
L
Linus Torvalds 已提交
355
	xfs_trans_t		*tp;		/* transaction pointer */
356
	struct xfs_dir3_icfree_hdr freehdr;
L
Linus Torvalds 已提交
357

C
Christoph Hellwig 已提交
358 359
	trace_xfs_dir2_leaf_to_node(args);

L
Linus Torvalds 已提交
360 361 362 363 364 365 366 367
	dp = args->dp;
	tp = args->trans;
	/*
	 * Add a freespace block to the directory.
	 */
	if ((error = xfs_dir2_grow_inode(args, XFS_DIR2_FREE_SPACE, &fdb))) {
		return error;
	}
368
	ASSERT(fdb == xfs_dir2_byte_to_db(args->geo, XFS_DIR2_FREE_OFFSET));
L
Linus Torvalds 已提交
369 370 371
	/*
	 * Get the buffer for the new freespace block.
	 */
372
	error = xfs_dir3_free_get_buf(args, fdb, &fbp);
373
	if (error)
L
Linus Torvalds 已提交
374
		return error;
375

376
	free = fbp->b_addr;
377
	dp->d_ops->free_hdr_from_disk(&freehdr, free);
378
	leaf = lbp->b_addr;
379
	ltp = xfs_dir2_leaf_tail_p(args->geo, leaf);
380 381 382
	if (be32_to_cpu(ltp->bestcount) >
				(uint)dp->i_d.di_size / args->geo->blksize)
		return -EFSCORRUPTED;
383

L
Linus Torvalds 已提交
384 385 386 387
	/*
	 * Copy freespace entries from the leaf block to the new block.
	 * Count active entries.
	 */
388
	from = xfs_dir2_leaf_bests_p(ltp);
389
	to = dp->d_ops->free_bests_p(free);
390
	for (i = n = 0; i < be32_to_cpu(ltp->bestcount); i++, from++, to++) {
391
		if ((off = be16_to_cpu(*from)) != NULLDATAOFF)
L
Linus Torvalds 已提交
392
			n++;
393
		*to = cpu_to_be16(off);
L
Linus Torvalds 已提交
394
	}
395

L
Linus Torvalds 已提交
396
	/*
397
	 * Now initialize the freespace block header.
L
Linus Torvalds 已提交
398
	 */
399 400 401
	freehdr.nused = n;
	freehdr.nvalid = be32_to_cpu(ltp->bestcount);

402
	dp->d_ops->free_hdr_to_disk(fbp->b_addr, &freehdr);
403 404
	xfs_dir2_free_log_bests(args, fbp, 0, freehdr.nvalid - 1);
	xfs_dir2_free_log_header(args, fbp);
405

406 407 408 409 410 411 412 413 414 415 416
	/*
	 * 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;
417
	xfs_trans_buf_set_type(tp, lbp, XFS_BLFT_DIR_LEAFN_BUF);
418
	xfs_dir3_leaf_log_header(args, lbp);
419
	xfs_dir3_leaf_check(dp, lbp);
L
Linus Torvalds 已提交
420 421 422 423 424 425 426 427 428
	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(
429
	struct xfs_buf		*bp,		/* leaf buffer */
430
	struct xfs_da_args	*args,		/* operation arguments */
L
Linus Torvalds 已提交
431 432
	int			index)		/* insertion pt for new entry */
{
433 434 435 436 437
	struct xfs_dir3_icleaf_hdr leafhdr;
	struct xfs_inode	*dp = args->dp;
	struct xfs_dir2_leaf	*leaf = bp->b_addr;
	struct xfs_dir2_leaf_entry *lep;
	struct xfs_dir2_leaf_entry *ents;
L
Linus Torvalds 已提交
438
	int			compact;	/* compacting stale leaves */
439
	int			highstale = 0;	/* next stale entry */
L
Linus Torvalds 已提交
440 441
	int			lfloghigh;	/* high leaf entry logging */
	int			lfloglow;	/* low leaf entry logging */
442
	int			lowstale = 0;	/* previous stale entry */
L
Linus Torvalds 已提交
443

C
Christoph Hellwig 已提交
444 445
	trace_xfs_dir2_leafn_add(args, index);

446
	dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
447
	ents = dp->d_ops->leaf_ents_p(leaf);
L
Linus Torvalds 已提交
448 449 450 451 452 453

	/*
	 * Quick check just to make sure we are not going to index
	 * into other peoples memory
	 */
	if (index < 0)
D
Dave Chinner 已提交
454
		return -EFSCORRUPTED;
L
Linus Torvalds 已提交
455 456 457 458 459 460 461 462

	/*
	 * 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.
	 */

463
	if (leafhdr.count == dp->d_ops->leaf_max_ents(args->geo)) {
464
		if (!leafhdr.stale)
D
Dave Chinner 已提交
465
			return -ENOSPC;
466
		compact = leafhdr.stale > 1;
L
Linus Torvalds 已提交
467 468
	} else
		compact = 0;
469 470 471
	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 已提交
472

473
	if (args->op_flags & XFS_DA_OP_JUSTCHECK)
L
Linus Torvalds 已提交
474 475 476 477 478 479
		return 0;

	/*
	 * Compact out all but one stale leaf entry.  Leaves behind
	 * the entry closest to index.
	 */
480 481 482 483 484 485 486 487
	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 已提交
488 489
		lfloghigh = -1;
	}
490

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

497
	lep->hashval = cpu_to_be32(args->hashval);
498
	lep->address = cpu_to_be32(xfs_dir2_db_off_to_dataptr(args->geo,
499
				args->blkno, args->index));
500

501
	dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
502 503
	xfs_dir3_leaf_log_header(args, bp);
	xfs_dir3_leaf_log_ents(args, bp, lfloglow, lfloghigh);
504
	xfs_dir3_leaf_check(dp, bp);
L
Linus Torvalds 已提交
505 506 507 508
	return 0;
}

#ifdef DEBUG
509 510
static void
xfs_dir2_free_hdr_check(
511
	struct xfs_inode *dp,
512 513 514 515 516
	struct xfs_buf	*bp,
	xfs_dir2_db_t	db)
{
	struct xfs_dir3_icfree_hdr hdr;

517
	dp->d_ops->free_hdr_from_disk(&hdr, bp->b_addr);
518

519 520
	ASSERT((hdr.firstdb %
		dp->d_ops->free_max_bests(dp->i_mount->m_dir_geo)) == 0);
521 522 523 524
	ASSERT(hdr.firstdb <= db);
	ASSERT(db < hdr.firstdb + hdr.nvalid);
}
#else
525
#define xfs_dir2_free_hdr_check(dp, bp, db)
L
Linus Torvalds 已提交
526 527 528 529 530 531 532
#endif	/* DEBUG */

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

542
	dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
543 544

	ASSERT(leafhdr.magic == XFS_DIR2_LEAFN_MAGIC ||
545 546 547
	       leafhdr.magic == XFS_DIR3_LEAFN_MAGIC ||
	       leafhdr.magic == XFS_DIR2_LEAF1_MAGIC ||
	       leafhdr.magic == XFS_DIR3_LEAF1_MAGIC);
L
Linus Torvalds 已提交
548 549

	if (count)
550 551
		*count = leafhdr.count;
	if (!leafhdr.count)
L
Linus Torvalds 已提交
552
		return 0;
553

554
	ents = dp->d_ops->leaf_ents_p(leaf);
555
	return be32_to_cpu(ents[leafhdr.count - 1].hashval);
L
Linus Torvalds 已提交
556 557 558
}

/*
559 560
 * 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 已提交
561
 */
562 563
STATIC int
xfs_dir2_leafn_lookup_for_addname(
564
	struct xfs_buf		*bp,		/* leaf buffer */
L
Linus Torvalds 已提交
565 566 567 568
	xfs_da_args_t		*args,		/* operation arguments */
	int			*indexp,	/* out: leaf entry index */
	xfs_da_state_t		*state)		/* state to fill in */
{
569
	struct xfs_buf		*curbp = NULL;	/* current data/free buffer */
570 571
	xfs_dir2_db_t		curdb = -1;	/* current data block number */
	xfs_dir2_db_t		curfdb = -1;	/* current free block number */
L
Linus Torvalds 已提交
572 573 574
	xfs_inode_t		*dp;		/* incore directory inode */
	int			error;		/* error return value */
	int			fi;		/* free entry index */
575
	xfs_dir2_free_t		*free = NULL;	/* free block structure */
L
Linus Torvalds 已提交
576 577
	int			index;		/* leaf entry index */
	xfs_dir2_leaf_t		*leaf;		/* leaf structure */
578
	int			length;		/* length of new data entry */
L
Linus Torvalds 已提交
579 580 581 582 583
	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 */
584 585
	struct xfs_dir2_leaf_entry *ents;
	struct xfs_dir3_icleaf_hdr leafhdr;
L
Linus Torvalds 已提交
586 587 588 589

	dp = args->dp;
	tp = args->trans;
	mp = dp->i_mount;
590
	leaf = bp->b_addr;
591
	dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
592
	ents = dp->d_ops->leaf_ents_p(leaf);
593

594
	xfs_dir3_leaf_check(dp, bp);
595 596
	ASSERT(leafhdr.count > 0);

L
Linus Torvalds 已提交
597 598 599 600 601 602 603
	/*
	 * Look up the hash value in the leaf entries.
	 */
	index = xfs_dir2_leaf_search_hash(args, bp);
	/*
	 * Do we have a buffer coming in?
	 */
604 605
	if (state->extravalid) {
		/* If so, it's a free block buffer, get the block number. */
L
Linus Torvalds 已提交
606
		curbp = state->extrablk.bp;
607
		curfdb = state->extrablk.blkno;
608
		free = curbp->b_addr;
609 610
		ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
		       free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
L
Linus Torvalds 已提交
611
	}
612
	length = dp->d_ops->data_entsize(args->namelen);
L
Linus Torvalds 已提交
613 614 615
	/*
	 * Loop over leaf entries with the right hash value.
	 */
616 617 618
	for (lep = &ents[index];
	     index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
	     lep++, index++) {
L
Linus Torvalds 已提交
619 620 621
		/*
		 * Skip stale leaf entries.
		 */
622
		if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
L
Linus Torvalds 已提交
623 624 625 626
			continue;
		/*
		 * Pull the data block number from the entry.
		 */
627 628
		newdb = xfs_dir2_dataptr_to_db(args->geo,
					       be32_to_cpu(lep->address));
L
Linus Torvalds 已提交
629 630 631 632
		/*
		 * 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.
633 634 635
		 *
		 * If this block isn't the data block we already have
		 * in hand, take a look at it.
L
Linus Torvalds 已提交
636
		 */
637
		if (newdb != curdb) {
638 639
			__be16 *bests;

640
			curdb = newdb;
L
Linus Torvalds 已提交
641
			/*
642 643
			 * Convert the data block to the free block
			 * holding its freespace information.
L
Linus Torvalds 已提交
644
			 */
645
			newfdb = dp->d_ops->db_to_fdb(args->geo, newdb);
L
Linus Torvalds 已提交
646
			/*
647
			 * If it's not the one we have in hand, read it in.
L
Linus Torvalds 已提交
648
			 */
649
			if (newfdb != curfdb) {
L
Linus Torvalds 已提交
650
				/*
651
				 * If we had one before, drop it.
L
Linus Torvalds 已提交
652 653
				 */
				if (curbp)
654
					xfs_trans_brelse(tp, curbp);
D
Dave Chinner 已提交
655 656

				error = xfs_dir2_free_read(tp, dp,
657 658
						xfs_dir2_db_to_da(args->geo,
								  newfdb),
D
Dave Chinner 已提交
659
						&curbp);
660
				if (error)
L
Linus Torvalds 已提交
661
					return error;
662
				free = curbp->b_addr;
663

664
				xfs_dir2_free_hdr_check(dp, curbp, curdb);
L
Linus Torvalds 已提交
665 666
			}
			/*
667
			 * Get the index for our entry.
L
Linus Torvalds 已提交
668
			 */
669
			fi = dp->d_ops->db_to_fdindex(args->geo, curdb);
L
Linus Torvalds 已提交
670
			/*
671
			 * If it has room, return it.
L
Linus Torvalds 已提交
672
			 */
673
			bests = dp->d_ops->free_bests_p(free);
674
			if (unlikely(bests[fi] == cpu_to_be16(NULLDATAOFF))) {
675 676 677
				XFS_ERROR_REPORT("xfs_dir2_leafn_lookup_int",
							XFS_ERRLEVEL_LOW, mp);
				if (curfdb != newfdb)
678
					xfs_trans_brelse(tp, curbp);
D
Dave Chinner 已提交
679
				return -EFSCORRUPTED;
L
Linus Torvalds 已提交
680
			}
681
			curfdb = newfdb;
682
			if (be16_to_cpu(bests[fi]) >= length)
683
				goto out;
L
Linus Torvalds 已提交
684 685
		}
	}
686 687 688
	/* Didn't find any space */
	fi = -1;
out:
689
	ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
690 691 692 693 694 695
	if (curbp) {
		/* Giving back a free block. */
		state->extravalid = 1;
		state->extrablk.bp = curbp;
		state->extrablk.index = fi;
		state->extrablk.blkno = curfdb;
696 697 698 699 700 701

		/*
		 * 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.
		 */
702 703 704 705
		state->extrablk.magic = XFS_DIR2_FREE_MAGIC;
	} else {
		state->extravalid = 0;
	}
L
Linus Torvalds 已提交
706
	/*
707
	 * Return the index, that will be the insertion point.
L
Linus Torvalds 已提交
708
	 */
709
	*indexp = index;
D
Dave Chinner 已提交
710
	return -ENOENT;
711 712 713 714 715 716 717 718
}

/*
 * 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(
719
	struct xfs_buf		*bp,		/* leaf buffer */
720 721 722 723
	xfs_da_args_t		*args,		/* operation arguments */
	int			*indexp,	/* out: leaf entry index */
	xfs_da_state_t		*state)		/* state to fill in */
{
724
	struct xfs_buf		*curbp = NULL;	/* current data/free buffer */
725 726 727 728 729 730 731 732 733 734
	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 */
735
	enum xfs_dacmp		cmp;		/* comparison result */
736 737
	struct xfs_dir2_leaf_entry *ents;
	struct xfs_dir3_icleaf_hdr leafhdr;
738 739 740 741

	dp = args->dp;
	tp = args->trans;
	mp = dp->i_mount;
742
	leaf = bp->b_addr;
743
	dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
744
	ents = dp->d_ops->leaf_ents_p(leaf);
745

746
	xfs_dir3_leaf_check(dp, bp);
747 748
	ASSERT(leafhdr.count > 0);

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

/*
 * 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(
872
	struct xfs_buf		*bp,		/* leaf buffer */
873 874 875 876
	xfs_da_args_t		*args,		/* operation arguments */
	int			*indexp,	/* out: leaf entry index */
	xfs_da_state_t		*state)		/* state to fill in */
{
877
	if (args->op_flags & XFS_DA_OP_ADDNAME)
878 879 880
		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 已提交
881 882 883 884 885 886 887
}

/*
 * Move count leaf entries from source to destination leaf.
 * Log entries and headers.  Stale entries are preserved.
 */
static void
888 889 890 891 892 893 894 895 896 897 898
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 已提交
899
{
900
	int				stale;	/* count stale leaves copied */
L
Linus Torvalds 已提交
901

C
Christoph Hellwig 已提交
902 903
	trace_xfs_dir2_leafn_moveents(args, start_s, start_d, count);

L
Linus Torvalds 已提交
904 905 906
	/*
	 * Silently return if nothing to do.
	 */
907
	if (count == 0)
L
Linus Torvalds 已提交
908
		return;
909

L
Linus Torvalds 已提交
910 911 912 913 914
	/*
	 * 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.
	 */
915 916 917
	if (start_d < dhdr->count) {
		memmove(&dents[start_d + count], &dents[start_d],
			(dhdr->count - start_d) * sizeof(xfs_dir2_leaf_entry_t));
918
		xfs_dir3_leaf_log_ents(args, bp_d, start_d + count,
919
				       count + dhdr->count - 1);
L
Linus Torvalds 已提交
920 921 922 923 924
	}
	/*
	 * If the source has stale leaves, count the ones in the copy range
	 * so we can update the header correctly.
	 */
925
	if (shdr->stale) {
L
Linus Torvalds 已提交
926 927 928
		int	i;			/* temp leaf index */

		for (i = start_s, stale = 0; i < start_s + count; i++) {
929 930
			if (sents[i].address ==
					cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
L
Linus Torvalds 已提交
931 932 933 934 935 936 937
				stale++;
		}
	} else
		stale = 0;
	/*
	 * Copy the leaf entries from source to destination.
	 */
938
	memcpy(&dents[start_d], &sents[start_s],
L
Linus Torvalds 已提交
939
		count * sizeof(xfs_dir2_leaf_entry_t));
940
	xfs_dir3_leaf_log_ents(args, bp_d, start_d, start_d + count - 1);
941

L
Linus Torvalds 已提交
942 943 944 945
	/*
	 * If there are source entries after the ones we copied,
	 * delete the ones we copied by sliding the next ones down.
	 */
946 947
	if (start_s + count < shdr->count) {
		memmove(&sents[start_s], &sents[start_s + count],
L
Linus Torvalds 已提交
948
			count * sizeof(xfs_dir2_leaf_entry_t));
949
		xfs_dir3_leaf_log_ents(args, bp_s, start_s, start_s + count - 1);
L
Linus Torvalds 已提交
950
	}
951

L
Linus Torvalds 已提交
952 953 954
	/*
	 * Update the headers and log them.
	 */
955 956 957 958
	shdr->count -= count;
	shdr->stale -= stale;
	dhdr->count += count;
	dhdr->stale += stale;
L
Linus Torvalds 已提交
959 960 961 962 963 964 965 966
}

/*
 * 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(
967
	struct xfs_inode	*dp,
968 969
	struct xfs_buf		*leaf1_bp,		/* leaf1 buffer */
	struct xfs_buf		*leaf2_bp)		/* leaf2 buffer */
L
Linus Torvalds 已提交
970
{
971 972 973 974 975 976 977
	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;

978 979
	dp->d_ops->leaf_hdr_from_disk(&hdr1, leaf1);
	dp->d_ops->leaf_hdr_from_disk(&hdr2, leaf2);
980 981
	ents1 = dp->d_ops->leaf_ents_p(leaf1);
	ents2 = dp->d_ops->leaf_ents_p(leaf2);
982 983 984 985 986

	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 已提交
987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009
		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 已提交
1010
#if defined(DEBUG) || defined(XFS_WARN)
L
Linus Torvalds 已提交
1011 1012 1013
	int			oldstale;	/* old count of stale leaves */
#endif
	int			oldsum;		/* old total leaf count */
1014
	int			swap_blocks;	/* swapped leaf blocks */
1015 1016 1017 1018
	struct xfs_dir2_leaf_entry *ents1;
	struct xfs_dir2_leaf_entry *ents2;
	struct xfs_dir3_icleaf_hdr hdr1;
	struct xfs_dir3_icleaf_hdr hdr2;
1019
	struct xfs_inode	*dp = state->args->dp;
L
Linus Torvalds 已提交
1020 1021 1022 1023 1024

	args = state->args;
	/*
	 * If the block order is wrong, swap the arguments.
	 */
1025 1026 1027
	swap_blocks = xfs_dir2_leafn_order(dp, blk1->bp, blk2->bp);
	if (swap_blocks)
		swap(blk1, blk2);
L
Linus Torvalds 已提交
1028

1029 1030
	leaf1 = blk1->bp->b_addr;
	leaf2 = blk2->bp->b_addr;
1031 1032
	dp->d_ops->leaf_hdr_from_disk(&hdr1, leaf1);
	dp->d_ops->leaf_hdr_from_disk(&hdr2, leaf2);
1033 1034
	ents1 = dp->d_ops->leaf_ents_p(leaf1);
	ents2 = dp->d_ops->leaf_ents_p(leaf2);
1035 1036

	oldsum = hdr1.count + hdr2.count;
D
Dave Chinner 已提交
1037
#if defined(DEBUG) || defined(XFS_WARN)
1038
	oldstale = hdr1.stale + hdr2.stale;
L
Linus Torvalds 已提交
1039 1040
#endif
	mid = oldsum >> 1;
1041

L
Linus Torvalds 已提交
1042 1043 1044 1045 1046 1047 1048
	/*
	 * 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 */

1049 1050
		if (mid >= hdr1.count)
			midhash = be32_to_cpu(ents2[mid - hdr1.count].hashval);
L
Linus Torvalds 已提交
1051
		else
1052
			midhash = be32_to_cpu(ents1[mid].hashval);
L
Linus Torvalds 已提交
1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065
		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.
	 */
1066
	count = hdr1.count - mid + (isleft == 0);
L
Linus Torvalds 已提交
1067
	if (count > 0)
1068 1069 1070
		xfs_dir3_leafn_moveents(args, blk1->bp, &hdr1, ents1,
					hdr1.count - count, blk2->bp,
					&hdr2, ents2, 0, count);
L
Linus Torvalds 已提交
1071
	else if (count < 0)
1072 1073 1074 1075 1076 1077 1078 1079
		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 */
1080 1081
	dp->d_ops->leaf_hdr_to_disk(leaf1, &hdr1);
	dp->d_ops->leaf_hdr_to_disk(leaf2, &hdr2);
1082 1083
	xfs_dir3_leaf_log_header(args, blk1->bp);
	xfs_dir3_leaf_log_header(args, blk2->bp);
1084

1085 1086
	xfs_dir3_leaf_check(dp, blk1->bp);
	xfs_dir3_leaf_check(dp, blk2->bp);
1087

L
Linus Torvalds 已提交
1088 1089 1090
	/*
	 * Mark whether we're inserting into the old or new leaf.
	 */
1091
	if (hdr1.count < hdr2.count)
1092
		state->inleaf = swap_blocks;
1093
	else if (hdr1.count > hdr2.count)
1094
		state->inleaf = !swap_blocks;
L
Linus Torvalds 已提交
1095
	else
1096
		state->inleaf = swap_blocks ^ (blk1->index <= hdr1.count);
L
Linus Torvalds 已提交
1097 1098 1099 1100
	/*
	 * Adjust the expected index for insertion.
	 */
	if (!state->inleaf)
1101
		blk2->index = blk1->index - hdr1.count;
1102 1103 1104 1105

	/*
	 * Finally sanity check just to make sure we are not returning a
	 * negative index
L
Linus Torvalds 已提交
1106
	 */
1107
	if (blk2->index < 0) {
L
Linus Torvalds 已提交
1108 1109
		state->inleaf = 1;
		blk2->index = 0;
1110
		xfs_alert(dp->i_mount,
1111
	"%s: picked the wrong leaf? reverting original leaf: blk1->index %d",
1112
			__func__, blk1->index);
L
Linus Torvalds 已提交
1113 1114 1115
	}
}

D
Dave Chinner 已提交
1116
static int
1117
xfs_dir3_data_block_free(
D
Dave Chinner 已提交
1118 1119 1120 1121 1122 1123 1124 1125 1126
	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)
{
	int			logfree = 0;
1127 1128
	__be16			*bests;
	struct xfs_dir3_icfree_hdr freehdr;
1129
	struct xfs_inode	*dp = args->dp;
D
Dave Chinner 已提交
1130

1131
	dp->d_ops->free_hdr_from_disk(&freehdr, free);
1132
	bests = dp->d_ops->free_bests_p(free);
1133
	if (hdr) {
D
Dave Chinner 已提交
1134
		/*
1135 1136
		 * Data block is not empty, just set the free entry to the new
		 * value.
D
Dave Chinner 已提交
1137
		 */
1138
		bests[findex] = cpu_to_be16(longest);
1139
		xfs_dir2_free_log_bests(args, fbp, findex, findex);
1140 1141
		return 0;
	}
D
Dave Chinner 已提交
1142

1143 1144
	/* One less used entry in the free table. */
	freehdr.nused--;
D
Dave Chinner 已提交
1145

1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156
	/*
	 * 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 已提交
1157
		}
1158 1159
		freehdr.nvalid = i + 1;
		logfree = 0;
D
Dave Chinner 已提交
1160
	} else {
1161 1162 1163 1164 1165
		/* Not the last entry, just punch it out.  */
		bests[findex] = cpu_to_be16(NULLDATAOFF);
		logfree = 1;
	}

1166
	dp->d_ops->free_hdr_to_disk(free, &freehdr);
1167
	xfs_dir2_free_log_header(args, fbp);
1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179

	/*
	 * 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;
D
Dave Chinner 已提交
1180
		} else if (error != -ENOSPC || args->total != 0)
1181
			return error;
D
Dave Chinner 已提交
1182
		/*
1183 1184 1185
		 * 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 已提交
1186 1187 1188 1189 1190
		 */
	}

	/* Log the free entry that changed, unless we got rid of it.  */
	if (logfree)
1191
		xfs_dir2_free_log_bests(args, fbp, findex, findex);
D
Dave Chinner 已提交
1192 1193 1194
	return 0;
}

L
Linus Torvalds 已提交
1195 1196 1197 1198 1199 1200 1201 1202
/*
 * 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 */
1203
	struct xfs_buf		*bp,		/* leaf buffer */
L
Linus Torvalds 已提交
1204 1205 1206 1207
	int			index,		/* leaf entry index */
	xfs_da_state_blk_t	*dblk,		/* data block */
	int			*rval)		/* resulting block needs join */
{
1208
	xfs_dir2_data_hdr_t	*hdr;		/* data block header */
L
Linus Torvalds 已提交
1209
	xfs_dir2_db_t		db;		/* data block number */
1210
	struct xfs_buf		*dbp;		/* data block buffer */
L
Linus Torvalds 已提交
1211 1212 1213 1214 1215 1216 1217 1218 1219
	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 */
	int			needlog;	/* need to log data header */
	int			needscan;	/* need to rescan data frees */
	xfs_trans_t		*tp;		/* transaction pointer */
1220
	struct xfs_dir2_data_free *bf;		/* bestfree table */
1221 1222
	struct xfs_dir3_icleaf_hdr leafhdr;
	struct xfs_dir2_leaf_entry *ents;
L
Linus Torvalds 已提交
1223

C
Christoph Hellwig 已提交
1224 1225
	trace_xfs_dir2_leafn_remove(args, index);

L
Linus Torvalds 已提交
1226 1227
	dp = args->dp;
	tp = args->trans;
1228
	leaf = bp->b_addr;
1229
	dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
1230
	ents = dp->d_ops->leaf_ents_p(leaf);
1231

L
Linus Torvalds 已提交
1232 1233 1234
	/*
	 * Point to the entry we're removing.
	 */
1235 1236
	lep = &ents[index];

L
Linus Torvalds 已提交
1237 1238 1239
	/*
	 * Extract the data block and offset from the entry.
	 */
1240
	db = xfs_dir2_dataptr_to_db(args->geo, be32_to_cpu(lep->address));
L
Linus Torvalds 已提交
1241
	ASSERT(dblk->blkno == db);
1242
	off = xfs_dir2_dataptr_to_off(args->geo, be32_to_cpu(lep->address));
L
Linus Torvalds 已提交
1243
	ASSERT(dblk->index == off);
1244

L
Linus Torvalds 已提交
1245 1246 1247 1248
	/*
	 * Kill the leaf entry by marking it stale.
	 * Log the leaf block changes.
	 */
1249
	leafhdr.stale++;
1250
	dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
1251
	xfs_dir3_leaf_log_header(args, bp);
1252

1253
	lep->address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
1254
	xfs_dir3_leaf_log_ents(args, bp, index, index);
1255

L
Linus Torvalds 已提交
1256 1257 1258 1259 1260
	/*
	 * Make the data entry free.  Keep track of the longest freespace
	 * in the data block in case it changes.
	 */
	dbp = dblk->bp;
1261
	hdr = dbp->b_addr;
1262
	dep = (xfs_dir2_data_entry_t *)((char *)hdr + off);
1263
	bf = dp->d_ops->data_bestfree_p(hdr);
1264
	longest = be16_to_cpu(bf[0].length);
L
Linus Torvalds 已提交
1265
	needlog = needscan = 0;
1266
	xfs_dir2_data_make_free(args, dbp, off,
1267
		dp->d_ops->data_entsize(dep->namelen), &needlog, &needscan);
L
Linus Torvalds 已提交
1268 1269 1270 1271 1272
	/*
	 * Rescan the data block freespaces for bestfree.
	 * Log the data block header if needed.
	 */
	if (needscan)
1273
		xfs_dir2_data_freescan(dp, hdr, &needlog);
L
Linus Torvalds 已提交
1274
	if (needlog)
1275
		xfs_dir2_data_log_header(args, dbp);
1276
	xfs_dir3_data_check(dp, dbp);
L
Linus Torvalds 已提交
1277 1278 1279 1280
	/*
	 * If the longest data block freespace changes, need to update
	 * the corresponding freeblock entry.
	 */
1281
	if (longest < be16_to_cpu(bf[0].length)) {
L
Linus Torvalds 已提交
1282
		int		error;		/* error return value */
1283
		struct xfs_buf	*fbp;		/* freeblock buffer */
L
Linus Torvalds 已提交
1284 1285 1286 1287 1288 1289 1290 1291
		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.
		 */
1292
		fdb = dp->d_ops->db_to_fdb(args->geo, db);
1293 1294
		error = xfs_dir2_free_read(tp, dp,
					   xfs_dir2_db_to_da(args->geo, fdb),
D
Dave Chinner 已提交
1295
					   &fbp);
1296
		if (error)
L
Linus Torvalds 已提交
1297
			return error;
1298
		free = fbp->b_addr;
1299 1300 1301
#ifdef DEBUG
	{
		struct xfs_dir3_icfree_hdr freehdr;
1302
		dp->d_ops->free_hdr_from_disk(&freehdr, free);
1303
		ASSERT(freehdr.firstdb == dp->d_ops->free_max_bests(args->geo) *
1304 1305
			(fdb - xfs_dir2_byte_to_db(args->geo,
						   XFS_DIR2_FREE_OFFSET)));
1306 1307
	}
#endif
L
Linus Torvalds 已提交
1308 1309 1310
		/*
		 * Calculate which entry we need to fix.
		 */
1311
		findex = dp->d_ops->db_to_fdindex(args->geo, db);
1312
		longest = be16_to_cpu(bf[0].length);
L
Linus Torvalds 已提交
1313 1314 1315 1316
		/*
		 * If the data block is now empty we can get rid of it
		 * (usually).
		 */
1317
		if (longest == args->geo->blksize -
1318
			       dp->d_ops->data_entry_offset) {
L
Linus Torvalds 已提交
1319 1320 1321 1322 1323 1324
			/*
			 * Try to punch out the data block.
			 */
			error = xfs_dir2_shrink_inode(args, db, dbp);
			if (error == 0) {
				dblk->bp = NULL;
1325
				hdr = NULL;
L
Linus Torvalds 已提交
1326 1327 1328 1329 1330 1331
			}
			/*
			 * 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.
			 */
D
Dave Chinner 已提交
1332
			else if (!(error == -ENOSPC && args->total == 0))
L
Linus Torvalds 已提交
1333 1334 1335 1336 1337 1338
				return error;
		}
		/*
		 * If we got rid of the data block, we can eliminate that entry
		 * in the free block.
		 */
1339
		error = xfs_dir3_data_block_free(args, hdr, free,
D
Dave Chinner 已提交
1340 1341 1342
						 fdb, findex, fbp, longest);
		if (error)
			return error;
L
Linus Torvalds 已提交
1343
	}
D
Dave Chinner 已提交
1344

1345
	xfs_dir3_leaf_check(dp, bp);
L
Linus Torvalds 已提交
1346
	/*
M
Malcolm Parsons 已提交
1347
	 * Return indication of whether this leaf block is empty enough
L
Linus Torvalds 已提交
1348 1349
	 * to justify trying to join it with a neighbor.
	 */
1350
	*rval = (dp->d_ops->leaf_hdr_size +
1351
		 (uint)sizeof(ents[0]) * (leafhdr.count - leafhdr.stale)) <
1352
		args->geo->magicpct;
L
Linus Torvalds 已提交
1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367
	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 */
1368
	struct xfs_inode	*dp;
L
Linus Torvalds 已提交
1369 1370 1371 1372 1373

	/*
	 * Allocate space for a new leaf node.
	 */
	args = state->args;
1374
	dp = args->dp;
L
Linus Torvalds 已提交
1375 1376 1377 1378 1379 1380 1381 1382
	ASSERT(oldblk->magic == XFS_DIR2_LEAFN_MAGIC);
	error = xfs_da_grow_inode(args, &blkno);
	if (error) {
		return error;
	}
	/*
	 * Initialize the new leaf block.
	 */
1383
	error = xfs_dir3_leaf_get_buf(args, xfs_dir2_da_to_db(args->geo, blkno),
1384 1385
				      &newblk->bp, XFS_DIR2_LEAFN_MAGIC);
	if (error)
L
Linus Torvalds 已提交
1386
		return error;
1387

L
Linus Torvalds 已提交
1388 1389 1390 1391 1392 1393 1394
	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);
1395
	error = xfs_da3_blk_link(state, oldblk, newblk);
L
Linus Torvalds 已提交
1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408
	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.
	 */
1409 1410
	oldblk->hashval = xfs_dir2_leaf_lasthash(dp, oldblk->bp, NULL);
	newblk->hashval = xfs_dir2_leaf_lasthash(dp, newblk->bp, NULL);
1411 1412
	xfs_dir3_leaf_check(dp, oldblk->bp);
	xfs_dir3_leaf_check(dp, newblk->bp);
L
Linus Torvalds 已提交
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431
	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 */
1432
	struct xfs_buf		*bp;		/* leaf buffer */
L
Linus Torvalds 已提交
1433 1434 1435 1436 1437 1438 1439
	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 */
1440 1441
	struct xfs_dir3_icleaf_hdr leafhdr;
	struct xfs_dir2_leaf_entry *ents;
1442
	struct xfs_inode	*dp = state->args->dp;
L
Linus Torvalds 已提交
1443 1444 1445 1446 1447 1448 1449

	/*
	 * 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];
1450
	leaf = blk->bp->b_addr;
1451
	dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
1452 1453
	ents = dp->d_ops->leaf_ents_p(leaf);
	xfs_dir3_leaf_check(dp, blk->bp);
1454 1455

	count = leafhdr.count - leafhdr.stale;
1456
	bytes = dp->d_ops->leaf_hdr_size + count * sizeof(ents[0]);
1457
	if (bytes > (state->args->geo->blksize >> 1)) {
L
Linus Torvalds 已提交
1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474
		/*
		 * 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).
		 */
1475
		forward = (leafhdr.forw != 0);
L
Linus Torvalds 已提交
1476
		memcpy(&state->altpath, &state->path, sizeof(state->path));
1477
		error = xfs_da3_path_shift(state, &state->altpath, forward, 0,
L
Linus Torvalds 已提交
1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490
			&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.
	 */
1491
	forward = leafhdr.forw < leafhdr.back;
L
Linus Torvalds 已提交
1492
	for (i = 0, bp = NULL; i < 2; forward = !forward, i++) {
1493 1494 1495
		struct xfs_dir3_icleaf_hdr hdr2;

		blkno = forward ? leafhdr.forw : leafhdr.back;
L
Linus Torvalds 已提交
1496 1497 1498 1499 1500
		if (blkno == 0)
			continue;
		/*
		 * Read the sibling leaf block.
		 */
1501
		error = xfs_dir3_leafn_read(state->args->trans, dp,
D
Dave Chinner 已提交
1502
					    blkno, -1, &bp);
1503
		if (error)
L
Linus Torvalds 已提交
1504
			return error;
D
Dave Chinner 已提交
1505

L
Linus Torvalds 已提交
1506 1507 1508
		/*
		 * Count bytes in the two blocks combined.
		 */
1509
		count = leafhdr.count - leafhdr.stale;
1510 1511
		bytes = state->args->geo->blksize -
			(state->args->geo->blksize >> 2);
1512

1513
		leaf = bp->b_addr;
1514
		dp->d_ops->leaf_hdr_from_disk(&hdr2, leaf);
1515
		ents = dp->d_ops->leaf_ents_p(leaf);
1516 1517 1518
		count += hdr2.count - hdr2.stale;
		bytes -= count * sizeof(ents[0]);

L
Linus Torvalds 已提交
1519 1520 1521 1522 1523
		/*
		 * Fits with at least 25% to spare.
		 */
		if (bytes >= 0)
			break;
1524
		xfs_trans_brelse(state->args->trans, bp);
L
Linus Torvalds 已提交
1525 1526 1527 1528 1529 1530 1531 1532
	}
	/*
	 * Didn't like either block, give up.
	 */
	if (i >= 2) {
		*action = 0;
		return 0;
	}
1533

L
Linus Torvalds 已提交
1534 1535 1536 1537 1538 1539
	/*
	 * 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)
1540
		error = xfs_da3_path_shift(state, &state->altpath, forward, 0,
L
Linus Torvalds 已提交
1541 1542
			&rval);
	else
1543
		error = xfs_da3_path_shift(state, &state->path, forward, 0,
L
Linus Torvalds 已提交
1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564
			&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 */
1565 1566 1567 1568
	struct xfs_dir3_icleaf_hdr savehdr;
	struct xfs_dir3_icleaf_hdr drophdr;
	struct xfs_dir2_leaf_entry *sents;
	struct xfs_dir2_leaf_entry *dents;
1569
	struct xfs_inode	*dp = state->args->dp;
L
Linus Torvalds 已提交
1570 1571 1572 1573

	args = state->args;
	ASSERT(drop_blk->magic == XFS_DIR2_LEAFN_MAGIC);
	ASSERT(save_blk->magic == XFS_DIR2_LEAFN_MAGIC);
1574 1575
	drop_leaf = drop_blk->bp->b_addr;
	save_leaf = save_blk->bp->b_addr;
1576

1577 1578 1579 1580
	dp->d_ops->leaf_hdr_from_disk(&savehdr, save_leaf);
	dp->d_ops->leaf_hdr_from_disk(&drophdr, drop_leaf);
	sents = dp->d_ops->leaf_ents_p(save_leaf);
	dents = dp->d_ops->leaf_ents_p(drop_leaf);
1581

L
Linus Torvalds 已提交
1582 1583 1584 1585
	/*
	 * If there are any stale leaf entries, take this opportunity
	 * to purge them.
	 */
1586 1587 1588 1589 1590
	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 已提交
1591 1592 1593
	/*
	 * Move the entries from drop to the appropriate end of save.
	 */
1594
	drop_blk->hashval = be32_to_cpu(dents[drophdr.count - 1].hashval);
1595
	if (xfs_dir2_leafn_order(dp, save_blk->bp, drop_blk->bp))
1596 1597 1598
		xfs_dir3_leafn_moveents(args, drop_blk->bp, &drophdr, dents, 0,
					save_blk->bp, &savehdr, sents, 0,
					drophdr.count);
L
Linus Torvalds 已提交
1599
	else
1600 1601 1602 1603 1604 1605
		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 */
1606 1607
	dp->d_ops->leaf_hdr_to_disk(save_leaf, &savehdr);
	dp->d_ops->leaf_hdr_to_disk(drop_leaf, &drophdr);
1608 1609
	xfs_dir3_leaf_log_header(args, save_blk->bp);
	xfs_dir3_leaf_log_header(args, drop_blk->bp);
1610

1611 1612
	xfs_dir3_leaf_check(dp, save_blk->bp);
	xfs_dir3_leaf_check(dp, drop_blk->bp);
L
Linus Torvalds 已提交
1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626
}

/*
 * 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 已提交
1627 1628
	trace_xfs_dir2_node_addname(args);

L
Linus Torvalds 已提交
1629 1630 1631 1632 1633 1634 1635 1636 1637 1638
	/*
	 * Allocate and initialize the state (btree cursor).
	 */
	state = xfs_da_state_alloc();
	state->args = args;
	state->mp = args->dp->i_mount;
	/*
	 * Look up the name.  We're not supposed to find it, but
	 * this gives us the insertion point.
	 */
1639
	error = xfs_da3_node_lookup_int(state, &rval);
L
Linus Torvalds 已提交
1640 1641
	if (error)
		rval = error;
D
Dave Chinner 已提交
1642
	if (rval != -ENOENT) {
L
Linus Torvalds 已提交
1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663
		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.
		 */
1664
		if (!(args->op_flags & XFS_DA_OP_JUSTCHECK))
1665
			xfs_da3_fixhashpath(state, &state->path);
L
Linus Torvalds 已提交
1666 1667 1668 1669 1670
	} else {
		/*
		 * It didn't work, we need to split the leaf block.
		 */
		if (args->total == 0) {
D
Dave Chinner 已提交
1671
			ASSERT(rval == -ENOSPC);
L
Linus Torvalds 已提交
1672 1673 1674 1675 1676
			goto done;
		}
		/*
		 * Split the leaf block and insert the new entry.
		 */
1677
		rval = xfs_da3_split(state);
L
Linus Torvalds 已提交
1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693
	}
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 */
{
1694
	xfs_dir2_data_hdr_t	*hdr;		/* data block header */
L
Linus Torvalds 已提交
1695
	xfs_dir2_db_t		dbno;		/* data block number */
1696
	struct xfs_buf		*dbp;		/* data block buffer */
L
Linus Torvalds 已提交
1697 1698 1699 1700 1701
	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 */
1702
	struct xfs_buf		*fbp;		/* freespace buffer */
L
Linus Torvalds 已提交
1703 1704 1705 1706 1707 1708 1709 1710 1711
	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 */
1712
	__be16			*tagp;		/* data entry tag pointer */
L
Linus Torvalds 已提交
1713
	xfs_trans_t		*tp;		/* transaction pointer */
1714 1715
	__be16			*bests;
	struct xfs_dir3_icfree_hdr freehdr;
1716
	struct xfs_dir2_data_free *bf;
1717
	xfs_dir2_data_aoff_t	aoff;
L
Linus Torvalds 已提交
1718 1719 1720 1721

	dp = args->dp;
	mp = dp->i_mount;
	tp = args->trans;
1722
	length = dp->d_ops->data_entsize(args->namelen);
L
Linus Torvalds 已提交
1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733
	/*
	 * 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;
1734
		free = fbp->b_addr;
L
Linus Torvalds 已提交
1735
		findex = fblk->index;
1736
		bests = dp->d_ops->free_bests_p(free);
1737
		dp->d_ops->free_hdr_from_disk(&freehdr, free);
1738

L
Linus Torvalds 已提交
1739 1740 1741 1742 1743 1744
		/*
		 * 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) {
1745 1746 1747 1748 1749 1750 1751 1752 1753
			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 已提交
1754 1755 1756
			dbno = -1;
			findex = 0;
		}
1757 1758 1759 1760
	} else {
		/*
		 * Didn't come in with a freespace block, so no data block.
		 */
L
Linus Torvalds 已提交
1761 1762 1763 1764
		ifbno = dbno = -1;
		fbp = NULL;
		findex = 0;
	}
1765

L
Linus Torvalds 已提交
1766 1767 1768 1769 1770 1771 1772 1773
	/*
	 * 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 */

1774
		if ((error = xfs_bmap_last_offset(dp, &fo, XFS_DATA_FORK)))
L
Linus Torvalds 已提交
1775
			return error;
1776
		lastfbno = xfs_dir2_da_to_db(args->geo, (xfs_dablk_t)fo);
L
Linus Torvalds 已提交
1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793
		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)
1794
				fbno = xfs_dir2_byte_to_db(args->geo,
1795
							XFS_DIR2_FREE_OFFSET);
L
Linus Torvalds 已提交
1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811
			/*
			 * 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 已提交
1812
			error = xfs_dir2_free_try_read(tp, dp,
1813 1814
					xfs_dir2_db_to_da(args->geo, fbno),
					&fbp);
1815
			if (error)
L
Linus Torvalds 已提交
1816
				return error;
1817
			if (!fbp)
L
Linus Torvalds 已提交
1818
				continue;
1819
			free = fbp->b_addr;
L
Linus Torvalds 已提交
1820 1821 1822 1823
			findex = 0;
		}
		/*
		 * Look at the current free entry.  Is it good enough?
1824 1825 1826 1827 1828
		 *
		 * 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 已提交
1829
		 */
1830
		bests = dp->d_ops->free_bests_p(free);
1831
		dp->d_ops->free_hdr_from_disk(&freehdr, free);
1832 1833 1834
		if (be16_to_cpu(bests[findex]) != NULLDATAOFF &&
		    be16_to_cpu(bests[findex]) >= length)
			dbno = freehdr.firstdb + findex;
L
Linus Torvalds 已提交
1835 1836 1837 1838
		else {
			/*
			 * Are we done with the freeblock?
			 */
1839
			if (++findex == freehdr.nvalid) {
L
Linus Torvalds 已提交
1840 1841 1842
				/*
				 * Drop the block.
				 */
1843
				xfs_trans_brelse(tp, fbp);
L
Linus Torvalds 已提交
1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857
				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.
		 */
1858
		if ((args->op_flags & XFS_DA_OP_JUSTCHECK) || args->total == 0)
D
Dave Chinner 已提交
1859
			return -ENOSPC;
1860

L
Linus Torvalds 已提交
1861 1862 1863 1864 1865 1866
		/*
		 * Allocate and initialize the new data block.
		 */
		if (unlikely((error = xfs_dir2_grow_inode(args,
							 XFS_DIR2_DATA_SPACE,
							 &dbno)) ||
1867
		    (error = xfs_dir3_data_init(args, dbno, &dbp))))
L
Linus Torvalds 已提交
1868
			return error;
1869

L
Linus Torvalds 已提交
1870 1871 1872 1873
		/*
		 * If (somehow) we have a freespace block, get rid of it.
		 */
		if (fbp)
1874
			xfs_trans_brelse(tp, fbp);
L
Linus Torvalds 已提交
1875 1876 1877 1878 1879 1880 1881
		if (fblk && fblk->bp)
			fblk->bp = NULL;

		/*
		 * Get the freespace block corresponding to the data block
		 * that was just allocated.
		 */
1882
		fbno = dp->d_ops->db_to_fdb(args->geo, dbno);
D
Dave Chinner 已提交
1883
		error = xfs_dir2_free_try_read(tp, dp,
1884 1885
				       xfs_dir2_db_to_da(args->geo, fbno),
				       &fbp);
1886
		if (error)
L
Linus Torvalds 已提交
1887
			return error;
1888

L
Linus Torvalds 已提交
1889 1890 1891 1892
		/*
		 * If there wasn't a freespace block, the read will
		 * return a NULL fbp.  Allocate and initialize a new one.
		 */
1893 1894 1895 1896
		if (!fbp) {
			error = xfs_dir2_grow_inode(args, XFS_DIR2_FREE_SPACE,
						    &fbno);
			if (error)
L
Linus Torvalds 已提交
1897 1898
				return error;

1899
			if (dp->d_ops->db_to_fdb(args->geo, dbno) != fbno) {
1900
				xfs_alert(mp,
1901
"%s: dir ino %llu needed freesp block %lld for data block %lld, got %lld ifbno %llu lastfbno %d",
1902
					__func__, (unsigned long long)dp->i_ino,
1903 1904
					(long long)dp->d_ops->db_to_fdb(
								args->geo, dbno),
L
Linus Torvalds 已提交
1905 1906 1907
					(long long)dbno, (long long)fbno,
					(unsigned long long)ifbno, lastfbno);
				if (fblk) {
1908
					xfs_alert(mp,
1909
				" fblk "PTR_FMT" blkno %llu index %d magic 0x%x",
L
Linus Torvalds 已提交
1910 1911 1912 1913 1914
						fblk,
						(unsigned long long)fblk->blkno,
						fblk->index,
						fblk->magic);
				} else {
1915
					xfs_alert(mp, " ... fblk is NULL");
L
Linus Torvalds 已提交
1916 1917 1918
				}
				XFS_ERROR_REPORT("xfs_dir2_node_addname_int",
						 XFS_ERRLEVEL_LOW, mp);
D
Dave Chinner 已提交
1919
				return -EFSCORRUPTED;
L
Linus Torvalds 已提交
1920 1921 1922 1923 1924
			}

			/*
			 * Get a buffer for the new block.
			 */
1925
			error = xfs_dir3_free_get_buf(args, fbno, &fbp);
1926
			if (error)
L
Linus Torvalds 已提交
1927
				return error;
1928
			free = fbp->b_addr;
1929
			bests = dp->d_ops->free_bests_p(free);
1930
			dp->d_ops->free_hdr_from_disk(&freehdr, free);
L
Linus Torvalds 已提交
1931 1932

			/*
1933
			 * Remember the first slot as our empty slot.
L
Linus Torvalds 已提交
1934
			 */
1935
			freehdr.firstdb =
1936
				(fbno - xfs_dir2_byte_to_db(args->geo,
1937
							XFS_DIR2_FREE_OFFSET)) *
1938
					dp->d_ops->free_max_bests(args->geo);
L
Linus Torvalds 已提交
1939
		} else {
1940
			free = fbp->b_addr;
1941
			bests = dp->d_ops->free_bests_p(free);
1942
			dp->d_ops->free_hdr_from_disk(&freehdr, free);
L
Linus Torvalds 已提交
1943 1944 1945 1946 1947
		}

		/*
		 * Set the freespace block index from the data block number.
		 */
1948
		findex = dp->d_ops->db_to_fdindex(args->geo, dbno);
L
Linus Torvalds 已提交
1949 1950 1951 1952
		/*
		 * If it's after the end of the current entries in the
		 * freespace block, extend that table.
		 */
1953
		if (findex >= freehdr.nvalid) {
1954
			ASSERT(findex < dp->d_ops->free_max_bests(args->geo));
1955
			freehdr.nvalid = findex + 1;
L
Linus Torvalds 已提交
1956 1957 1958
			/*
			 * Tag new entry so nused will go up.
			 */
1959
			bests[findex] = cpu_to_be16(NULLDATAOFF);
L
Linus Torvalds 已提交
1960 1961 1962 1963 1964
		}
		/*
		 * If this entry was for an empty data block
		 * (this should always be true) then update the header.
		 */
1965 1966
		if (bests[findex] == cpu_to_be16(NULLDATAOFF)) {
			freehdr.nused++;
1967
			dp->d_ops->free_hdr_to_disk(fbp->b_addr, &freehdr);
1968
			xfs_dir2_free_log_header(args, fbp);
L
Linus Torvalds 已提交
1969 1970 1971 1972 1973 1974
		}
		/*
		 * Update the real value in the table.
		 * We haven't allocated the data entry yet so this will
		 * change again.
		 */
1975
		hdr = dbp->b_addr;
1976
		bf = dp->d_ops->data_bestfree_p(hdr);
1977
		bests[findex] = bf[0].length;
L
Linus Torvalds 已提交
1978 1979 1980 1981 1982 1983 1984 1985 1986
		logfree = 1;
	}
	/*
	 * We had a data block so we don't have to make a new one.
	 */
	else {
		/*
		 * If just checking, we succeeded.
		 */
1987
		if (args->op_flags & XFS_DA_OP_JUSTCHECK)
L
Linus Torvalds 已提交
1988
			return 0;
1989

L
Linus Torvalds 已提交
1990 1991 1992
		/*
		 * Read the data block in.
		 */
1993 1994
		error = xfs_dir3_data_read(tp, dp,
					   xfs_dir2_db_to_da(args->geo, dbno),
1995
					   -1, &dbp);
1996
		if (error)
L
Linus Torvalds 已提交
1997
			return error;
1998
		hdr = dbp->b_addr;
1999
		bf = dp->d_ops->data_bestfree_p(hdr);
L
Linus Torvalds 已提交
2000 2001
		logfree = 0;
	}
2002
	ASSERT(be16_to_cpu(bf[0].length) >= length);
L
Linus Torvalds 已提交
2003 2004 2005 2006
	/*
	 * Point to the existing unused space.
	 */
	dup = (xfs_dir2_data_unused_t *)
2007
	      ((char *)hdr + be16_to_cpu(bf[0].offset));
L
Linus Torvalds 已提交
2008 2009 2010 2011
	needscan = needlog = 0;
	/*
	 * Mark the first part of the unused space, inuse for us.
	 */
2012 2013 2014 2015 2016 2017 2018
	aoff = (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr);
	error = xfs_dir2_data_use_free(args, dbp, dup, aoff, length,
			&needlog, &needscan);
	if (error) {
		xfs_trans_brelse(tp, dbp);
		return error;
	}
L
Linus Torvalds 已提交
2019 2020 2021 2022
	/*
	 * Fill in the new entry and log it.
	 */
	dep = (xfs_dir2_data_entry_t *)dup;
2023
	dep->inumber = cpu_to_be64(args->inumber);
L
Linus Torvalds 已提交
2024 2025
	dep->namelen = args->namelen;
	memcpy(dep->name, args->name, dep->namelen);
2026 2027
	dp->d_ops->data_put_ftype(dep, args->filetype);
	tagp = dp->d_ops->data_entry_tag_p(dep);
2028
	*tagp = cpu_to_be16((char *)dep - (char *)hdr);
2029
	xfs_dir2_data_log_entry(args, dbp, dep);
L
Linus Torvalds 已提交
2030 2031 2032 2033
	/*
	 * Rescan the block for bestfree if needed.
	 */
	if (needscan)
2034
		xfs_dir2_data_freescan(dp, hdr, &needlog);
L
Linus Torvalds 已提交
2035 2036 2037 2038
	/*
	 * Log the data block header if needed.
	 */
	if (needlog)
2039
		xfs_dir2_data_log_header(args, dbp);
L
Linus Torvalds 已提交
2040 2041 2042
	/*
	 * If the freespace entry is now wrong, update it.
	 */
2043
	bests = dp->d_ops->free_bests_p(free); /* gcc is so stupid */
2044 2045
	if (be16_to_cpu(bests[findex]) != be16_to_cpu(bf[0].length)) {
		bests[findex] = bf[0].length;
L
Linus Torvalds 已提交
2046 2047 2048 2049 2050 2051
		logfree = 1;
	}
	/*
	 * Log the freespace entry if needed.
	 */
	if (logfree)
2052
		xfs_dir2_free_log_bests(args, fbp, findex, findex);
L
Linus Torvalds 已提交
2053 2054 2055 2056
	/*
	 * Return the data block and offset in args, then drop the data block.
	 */
	args->blkno = (xfs_dablk_t)dbno;
2057
	args->index = be16_to_cpu(*tagp);
L
Linus Torvalds 已提交
2058 2059 2060 2061 2062
	return 0;
}

/*
 * Lookup an entry in a node-format directory.
2063
 * All the real work happens in xfs_da3_node_lookup_int.
L
Linus Torvalds 已提交
2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074
 * 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 已提交
2075 2076
	trace_xfs_dir2_node_lookup(args);

L
Linus Torvalds 已提交
2077 2078 2079 2080 2081 2082 2083 2084 2085
	/*
	 * Allocate and initialize the btree cursor.
	 */
	state = xfs_da_state_alloc();
	state->args = args;
	state->mp = args->dp->i_mount;
	/*
	 * Fill in the path to the entry in the cursor.
	 */
2086
	error = xfs_da3_node_lookup_int(state, &rval);
L
Linus Torvalds 已提交
2087 2088
	if (error)
		rval = error;
D
Dave Chinner 已提交
2089 2090
	else if (rval == -ENOENT && args->cmpresult == XFS_CMP_CASE) {
		/* If a CI match, dup the actual name and return -EEXIST */
2091 2092
		xfs_dir2_data_entry_t	*dep;

2093 2094 2095
		dep = (xfs_dir2_data_entry_t *)
			((char *)state->extrablk.bp->b_addr +
						 state->extrablk.index);
2096 2097
		rval = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
	}
L
Linus Torvalds 已提交
2098 2099 2100 2101
	/*
	 * Release the btree blocks and leaf block.
	 */
	for (i = 0; i < state->path.active; i++) {
2102
		xfs_trans_brelse(args->trans, state->path.blk[i].bp);
L
Linus Torvalds 已提交
2103 2104 2105 2106 2107 2108
		state->path.blk[i].bp = NULL;
	}
	/*
	 * Release the data block if we have it.
	 */
	if (state->extravalid && state->extrablk.bp) {
2109
		xfs_trans_brelse(args->trans, state->extrablk.bp);
L
Linus Torvalds 已提交
2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120
		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(
2121
	struct xfs_da_args	*args)		/* operation arguments */
L
Linus Torvalds 已提交
2122
{
2123
	struct xfs_da_state_blk	*blk;		/* leaf block */
L
Linus Torvalds 已提交
2124 2125
	int			error;		/* error return value */
	int			rval;		/* operation return value */
2126
	struct xfs_da_state	*state;		/* btree cursor */
L
Linus Torvalds 已提交
2127

C
Christoph Hellwig 已提交
2128 2129
	trace_xfs_dir2_node_removename(args);

L
Linus Torvalds 已提交
2130 2131 2132 2133 2134 2135
	/*
	 * Allocate and initialize the btree cursor.
	 */
	state = xfs_da_state_alloc();
	state->args = args;
	state->mp = args->dp->i_mount;
2136 2137

	/* Look up the entry we're deleting, set up the cursor. */
2138
	error = xfs_da3_node_lookup_int(state, &rval);
2139
	if (error)
2140 2141 2142
		goto out_free;

	/* Didn't find it, upper layer screwed up. */
D
Dave Chinner 已提交
2143
	if (rval != -EEXIST) {
2144 2145
		error = rval;
		goto out_free;
L
Linus Torvalds 已提交
2146
	}
2147

L
Linus Torvalds 已提交
2148 2149 2150 2151 2152 2153 2154 2155 2156
	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);
2157
	if (error)
2158
		goto out_free;
L
Linus Torvalds 已提交
2159 2160 2161
	/*
	 * Fix the hash values up the btree.
	 */
2162
	xfs_da3_fixhashpath(state, &state->path);
L
Linus Torvalds 已提交
2163 2164 2165 2166
	/*
	 * If we need to join leaf blocks, do it.
	 */
	if (rval && state->path.active > 1)
2167
		error = xfs_da3_join(state);
L
Linus Torvalds 已提交
2168 2169 2170 2171 2172
	/*
	 * If no errors so far, try conversion to leaf format.
	 */
	if (!error)
		error = xfs_dir2_node_to_leaf(state);
2173
out_free:
L
Linus Torvalds 已提交
2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185
	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 */
2186
	xfs_dir2_data_hdr_t	*hdr;		/* data block header */
L
Linus Torvalds 已提交
2187 2188 2189 2190
	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 */
2191
	int			ftype;		/* new file type */
L
Linus Torvalds 已提交
2192 2193 2194 2195 2196
	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 已提交
2197 2198
	trace_xfs_dir2_node_replace(args);

L
Linus Torvalds 已提交
2199 2200 2201 2202 2203 2204
	/*
	 * Allocate and initialize the btree cursor.
	 */
	state = xfs_da_state_alloc();
	state->args = args;
	state->mp = args->dp->i_mount;
2205 2206 2207 2208 2209

	/*
	 * We have to save new inode number and ftype since
	 * xfs_da3_node_lookup_int() is going to overwrite them
	 */
L
Linus Torvalds 已提交
2210
	inum = args->inumber;
2211 2212
	ftype = args->filetype;

L
Linus Torvalds 已提交
2213 2214 2215
	/*
	 * Lookup the entry to change in the btree.
	 */
2216
	error = xfs_da3_node_lookup_int(state, &rval);
L
Linus Torvalds 已提交
2217 2218 2219 2220 2221 2222 2223
	if (error) {
		rval = error;
	}
	/*
	 * It should be found, since the vnodeops layer has looked it up
	 * and locked it.  But paranoia is good.
	 */
D
Dave Chinner 已提交
2224
	if (rval == -EEXIST) {
2225
		struct xfs_dir2_leaf_entry *ents;
L
Linus Torvalds 已提交
2226 2227 2228 2229 2230
		/*
		 * Find the leaf entry.
		 */
		blk = &state->path.blk[state->path.active - 1];
		ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
2231
		leaf = blk->bp->b_addr;
2232
		ents = args->dp->d_ops->leaf_ents_p(leaf);
2233
		lep = &ents[blk->index];
L
Linus Torvalds 已提交
2234 2235 2236 2237
		ASSERT(state->extravalid);
		/*
		 * Point to the data entry.
		 */
2238
		hdr = state->extrablk.bp->b_addr;
2239 2240
		ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
		       hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC));
L
Linus Torvalds 已提交
2241
		dep = (xfs_dir2_data_entry_t *)
2242
		      ((char *)hdr +
2243 2244
		       xfs_dir2_dataptr_to_off(args->geo,
					       be32_to_cpu(lep->address)));
2245
		ASSERT(inum != be64_to_cpu(dep->inumber));
L
Linus Torvalds 已提交
2246 2247 2248
		/*
		 * Fill in the new inode number and log the entry.
		 */
2249
		dep->inumber = cpu_to_be64(inum);
2250
		args->dp->d_ops->data_put_ftype(dep, ftype);
2251
		xfs_dir2_data_log_entry(args, state->extrablk.bp, dep);
L
Linus Torvalds 已提交
2252 2253 2254 2255 2256 2257
		rval = 0;
	}
	/*
	 * Didn't find it, and we're holding a data block.  Drop it.
	 */
	else if (state->extravalid) {
2258
		xfs_trans_brelse(args->trans, state->extrablk.bp);
L
Linus Torvalds 已提交
2259 2260 2261 2262 2263 2264
		state->extrablk.bp = NULL;
	}
	/*
	 * Release all the buffers in the cursor.
	 */
	for (i = 0; i < state->path.active; i++) {
2265
		xfs_trans_brelse(args->trans, state->path.blk[i].bp);
L
Linus Torvalds 已提交
2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281
		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 */
{
2282
	struct xfs_buf		*bp;		/* freespace buffer */
L
Linus Torvalds 已提交
2283 2284 2285 2286
	xfs_inode_t		*dp;		/* incore directory inode */
	int			error;		/* error return code */
	xfs_dir2_free_t		*free;		/* freespace structure */
	xfs_trans_t		*tp;		/* transaction pointer */
2287
	struct xfs_dir3_icfree_hdr freehdr;
L
Linus Torvalds 已提交
2288 2289 2290

	dp = args->dp;
	tp = args->trans;
2291 2292 2293

	*rvalp = 0;

L
Linus Torvalds 已提交
2294 2295 2296
	/*
	 * Read the freespace block.
	 */
D
Dave Chinner 已提交
2297
	error = xfs_dir2_free_try_read(tp, dp, fo, &bp);
2298
	if (error)
L
Linus Torvalds 已提交
2299 2300 2301 2302 2303
		return error;
	/*
	 * There can be holes in freespace.  If fo is a hole, there's
	 * nothing to do.
	 */
D
Dave Chinner 已提交
2304
	if (!bp)
L
Linus Torvalds 已提交
2305
		return 0;
2306
	free = bp->b_addr;
2307
	dp->d_ops->free_hdr_from_disk(&freehdr, free);
2308

L
Linus Torvalds 已提交
2309 2310 2311
	/*
	 * If there are used entries, there's nothing to do.
	 */
2312
	if (freehdr.nused > 0) {
2313
		xfs_trans_brelse(tp, bp);
L
Linus Torvalds 已提交
2314 2315 2316 2317 2318
		return 0;
	}
	/*
	 * Blow the block away.
	 */
2319 2320 2321
	error = xfs_dir2_shrink_inode(args,
			xfs_dir2_da_to_db(args->geo, (xfs_dablk_t)fo), bp);
	if (error) {
L
Linus Torvalds 已提交
2322 2323 2324 2325 2326
		/*
		 * 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.
		 */
D
Dave Chinner 已提交
2327
		ASSERT(error != -ENOSPC);
2328
		xfs_trans_brelse(tp, bp);
L
Linus Torvalds 已提交
2329 2330 2331 2332 2333 2334 2335 2336
		return error;
	}
	/*
	 * Return that we succeeded.
	 */
	*rvalp = 1;
	return 0;
}