xfs_bmap_btree.c 22.2 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2 3
 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
 * All Rights Reserved.
L
Linus Torvalds 已提交
4
 *
5 6
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
L
Linus Torvalds 已提交
7 8
 * published by the Free Software Foundation.
 *
9 10 11 12
 * This program is distributed in the hope that it would be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
L
Linus Torvalds 已提交
13
 *
14 15 16
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write the Free Software Foundation,
 * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
L
Linus Torvalds 已提交
17 18
 */
#include "xfs.h"
19
#include "xfs_fs.h"
20
#include "xfs_shared.h"
21
#include "xfs_format.h"
22 23
#include "xfs_log_format.h"
#include "xfs_trans_resv.h"
24
#include "xfs_bit.h"
L
Linus Torvalds 已提交
25
#include "xfs_mount.h"
26
#include "xfs_defer.h"
L
Linus Torvalds 已提交
27
#include "xfs_inode.h"
28
#include "xfs_trans.h"
29
#include "xfs_inode_item.h"
L
Linus Torvalds 已提交
30
#include "xfs_alloc.h"
31
#include "xfs_btree.h"
32
#include "xfs_bmap_btree.h"
L
Linus Torvalds 已提交
33 34 35
#include "xfs_bmap.h"
#include "xfs_error.h"
#include "xfs_quota.h"
36
#include "xfs_trace.h"
37
#include "xfs_cksum.h"
38
#include "xfs_rmap.h"
L
Linus Torvalds 已提交
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60

/*
 * Determine the extent state.
 */
/* ARGSUSED */
STATIC xfs_exntst_t
xfs_extent_state(
	xfs_filblks_t		blks,
	int			extent_flag)
{
	if (extent_flag) {
		ASSERT(blks != 0);	/* saved for DMIG */
		return XFS_EXT_UNWRITTEN;
	}
	return XFS_EXT_NORM;
}

/*
 * Convert on-disk form of btree root to in-memory form.
 */
void
xfs_bmdr_to_bmbt(
61
	struct xfs_inode	*ip,
L
Linus Torvalds 已提交
62 63
	xfs_bmdr_block_t	*dblock,
	int			dblocklen,
64
	struct xfs_btree_block	*rblock,
L
Linus Torvalds 已提交
65 66
	int			rblocklen)
{
67
	struct xfs_mount	*mp = ip->i_mount;
L
Linus Torvalds 已提交
68 69
	int			dmxr;
	xfs_bmbt_key_t		*fkp;
70
	__be64			*fpp;
L
Linus Torvalds 已提交
71
	xfs_bmbt_key_t		*tkp;
72
	__be64			*tpp;
L
Linus Torvalds 已提交
73

74 75
	xfs_btree_init_block_int(mp, rblock, XFS_BUF_DADDR_NULL,
				 XFS_BTNUM_BMAP, 0, 0, ip->i_ino,
76
				 XFS_BTREE_LONG_PTRS);
77 78 79
	rblock->bb_level = dblock->bb_level;
	ASSERT(be16_to_cpu(rblock->bb_level) > 0);
	rblock->bb_numrecs = dblock->bb_numrecs;
80
	dmxr = xfs_bmdr_maxrecs(dblocklen, 0);
81 82 83
	fkp = XFS_BMDR_KEY_ADDR(dblock, 1);
	tkp = XFS_BMBT_KEY_ADDR(mp, rblock, 1);
	fpp = XFS_BMDR_PTR_ADDR(dblock, 1, dmxr);
84
	tpp = XFS_BMAP_BROOT_PTR_ADDR(mp, rblock, 1, rblocklen);
85
	dmxr = be16_to_cpu(dblock->bb_numrecs);
L
Linus Torvalds 已提交
86
	memcpy(tkp, fkp, sizeof(*fkp) * dmxr);
87
	memcpy(tpp, fpp, sizeof(*fpp) * dmxr);
L
Linus Torvalds 已提交
88 89 90 91 92 93 94
}

/*
 * Convert a compressed bmap extent record to an uncompressed form.
 * This code must be in sync with the routines xfs_bmbt_get_startoff,
 * xfs_bmbt_get_startblock, xfs_bmbt_get_blockcount and xfs_bmbt_get_state.
 */
95
STATIC void
L
Linus Torvalds 已提交
96
__xfs_bmbt_get_all(
97 98
		uint64_t l0,
		uint64_t l1,
L
Linus Torvalds 已提交
99 100 101 102 103 104 105
		xfs_bmbt_irec_t *s)
{
	int	ext_flag;
	xfs_exntst_t st;

	ext_flag = (int)(l0 >> (64 - BMBT_EXNTFLAG_BITLEN));
	s->br_startoff = ((xfs_fileoff_t)l0 &
106 107
			   xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN)) >> 9;
	s->br_startblock = (((xfs_fsblock_t)l0 & xfs_mask64lo(9)) << 43) |
L
Linus Torvalds 已提交
108
			   (((xfs_fsblock_t)l1) >> 21);
109
	s->br_blockcount = (xfs_filblks_t)(l1 & xfs_mask64lo(21));
L
Linus Torvalds 已提交
110 111 112 113 114 115 116 117 118 119 120
	/* This is xfs_extent_state() in-line */
	if (ext_flag) {
		ASSERT(s->br_blockcount != 0);	/* saved for DMIG */
		st = XFS_EXT_UNWRITTEN;
	} else
		st = XFS_EXT_NORM;
	s->br_state = st;
}

void
xfs_bmbt_get_all(
121
	xfs_bmbt_rec_host_t *r,
L
Linus Torvalds 已提交
122 123 124 125 126 127 128 129 130 131
	xfs_bmbt_irec_t *s)
{
	__xfs_bmbt_get_all(r->l0, r->l1, s);
}

/*
 * Extract the blockcount field from an in memory bmap extent record.
 */
xfs_filblks_t
xfs_bmbt_get_blockcount(
132
	xfs_bmbt_rec_host_t	*r)
L
Linus Torvalds 已提交
133
{
134
	return (xfs_filblks_t)(r->l1 & xfs_mask64lo(21));
L
Linus Torvalds 已提交
135 136 137 138 139 140 141
}

/*
 * Extract the startblock field from an in memory bmap extent record.
 */
xfs_fsblock_t
xfs_bmbt_get_startblock(
142
	xfs_bmbt_rec_host_t	*r)
L
Linus Torvalds 已提交
143
{
144
	return (((xfs_fsblock_t)r->l0 & xfs_mask64lo(9)) << 43) |
L
Linus Torvalds 已提交
145 146 147 148 149 150 151 152
	       (((xfs_fsblock_t)r->l1) >> 21);
}

/*
 * Extract the startoff field from an in memory bmap extent record.
 */
xfs_fileoff_t
xfs_bmbt_get_startoff(
153
	xfs_bmbt_rec_host_t	*r)
L
Linus Torvalds 已提交
154 155
{
	return ((xfs_fileoff_t)r->l0 &
156
		 xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN)) >> 9;
L
Linus Torvalds 已提交
157 158 159 160
}

xfs_exntst_t
xfs_bmbt_get_state(
161
	xfs_bmbt_rec_host_t	*r)
L
Linus Torvalds 已提交
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
{
	int	ext_flag;

	ext_flag = (int)((r->l0) >> (64 - BMBT_EXNTFLAG_BITLEN));
	return xfs_extent_state(xfs_bmbt_get_blockcount(r),
				ext_flag);
}

/*
 * Extract the blockcount field from an on disk bmap extent record.
 */
xfs_filblks_t
xfs_bmbt_disk_get_blockcount(
	xfs_bmbt_rec_t	*r)
{
177
	return (xfs_filblks_t)(be64_to_cpu(r->l1) & xfs_mask64lo(21));
L
Linus Torvalds 已提交
178 179 180 181 182 183 184 185 186
}

/*
 * Extract the startoff field from a disk format bmap extent record.
 */
xfs_fileoff_t
xfs_bmbt_disk_get_startoff(
	xfs_bmbt_rec_t	*r)
{
187
	return ((xfs_fileoff_t)be64_to_cpu(r->l0) &
188
		 xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN)) >> 9;
L
Linus Torvalds 已提交
189 190 191 192 193 194 195 196
}


/*
 * Set all the fields in a bmap extent record from the arguments.
 */
void
xfs_bmbt_set_allf(
197 198 199 200 201
	xfs_bmbt_rec_host_t	*r,
	xfs_fileoff_t		startoff,
	xfs_fsblock_t		startblock,
	xfs_filblks_t		blockcount,
	xfs_exntst_t		state)
L
Linus Torvalds 已提交
202
{
203 204 205
	int		extent_flag = (state == XFS_EXT_NORM) ? 0 : 1;

	ASSERT(state == XFS_EXT_NORM || state == XFS_EXT_UNWRITTEN);
206 207
	ASSERT((startoff & xfs_mask64hi(64-BMBT_STARTOFF_BITLEN)) == 0);
	ASSERT((blockcount & xfs_mask64hi(64-BMBT_BLOCKCOUNT_BITLEN)) == 0);
L
Linus Torvalds 已提交
208

209
	ASSERT((startblock & xfs_mask64hi(64-BMBT_STARTBLOCK_BITLEN)) == 0);
210

L
Linus Torvalds 已提交
211
	r->l0 = ((xfs_bmbt_rec_base_t)extent_flag << 63) |
212 213 214 215
		((xfs_bmbt_rec_base_t)startoff << 9) |
		((xfs_bmbt_rec_base_t)startblock >> 43);
	r->l1 = ((xfs_bmbt_rec_base_t)startblock << 21) |
		((xfs_bmbt_rec_base_t)blockcount &
216
		(xfs_bmbt_rec_base_t)xfs_mask64lo(21));
L
Linus Torvalds 已提交
217 218 219 220 221 222
}

/*
 * Set all the fields in a bmap extent record from the uncompressed form.
 */
void
223 224 225
xfs_bmbt_set_all(
	xfs_bmbt_rec_host_t *r,
	xfs_bmbt_irec_t	*s)
L
Linus Torvalds 已提交
226
{
227 228
	xfs_bmbt_set_allf(r, s->br_startoff, s->br_startblock,
			     s->br_blockcount, s->br_state);
L
Linus Torvalds 已提交
229 230
}

231

L
Linus Torvalds 已提交
232 233 234 235 236
/*
 * Set all the fields in a disk format bmap extent record from the arguments.
 */
void
xfs_bmbt_disk_set_allf(
237 238 239 240 241
	xfs_bmbt_rec_t		*r,
	xfs_fileoff_t		startoff,
	xfs_fsblock_t		startblock,
	xfs_filblks_t		blockcount,
	xfs_exntst_t		state)
L
Linus Torvalds 已提交
242
{
243 244 245
	int			extent_flag = (state == XFS_EXT_NORM) ? 0 : 1;

	ASSERT(state == XFS_EXT_NORM || state == XFS_EXT_UNWRITTEN);
246 247 248
	ASSERT((startoff & xfs_mask64hi(64-BMBT_STARTOFF_BITLEN)) == 0);
	ASSERT((blockcount & xfs_mask64hi(64-BMBT_BLOCKCOUNT_BITLEN)) == 0);
	ASSERT((startblock & xfs_mask64hi(64-BMBT_STARTBLOCK_BITLEN)) == 0);
249

250
	r->l0 = cpu_to_be64(
251 252 253
		((xfs_bmbt_rec_base_t)extent_flag << 63) |
		 ((xfs_bmbt_rec_base_t)startoff << 9) |
		 ((xfs_bmbt_rec_base_t)startblock >> 43));
254
	r->l1 = cpu_to_be64(
255 256
		((xfs_bmbt_rec_base_t)startblock << 21) |
		 ((xfs_bmbt_rec_base_t)blockcount &
257
		  (xfs_bmbt_rec_base_t)xfs_mask64lo(21)));
L
Linus Torvalds 已提交
258
}
259 260 261 262

/*
 * Set all the fields in a bmap extent record from the uncompressed form.
 */
263
STATIC void
264 265 266 267 268 269 270
xfs_bmbt_disk_set_all(
	xfs_bmbt_rec_t	*r,
	xfs_bmbt_irec_t *s)
{
	xfs_bmbt_disk_set_allf(r, s->br_startoff, s->br_startblock,
				  s->br_blockcount, s->br_state);
}
L
Linus Torvalds 已提交
271 272 273 274 275 276

/*
 * Set the blockcount field in a bmap extent record.
 */
void
xfs_bmbt_set_blockcount(
277
	xfs_bmbt_rec_host_t *r,
L
Linus Torvalds 已提交
278 279
	xfs_filblks_t	v)
{
280 281 282
	ASSERT((v & xfs_mask64hi(43)) == 0);
	r->l1 = (r->l1 & (xfs_bmbt_rec_base_t)xfs_mask64hi(43)) |
		  (xfs_bmbt_rec_base_t)(v & xfs_mask64lo(21));
L
Linus Torvalds 已提交
283 284 285 286 287 288 289
}

/*
 * Set the startblock field in a bmap extent record.
 */
void
xfs_bmbt_set_startblock(
290
	xfs_bmbt_rec_host_t *r,
L
Linus Torvalds 已提交
291 292
	xfs_fsblock_t	v)
{
293 294
	ASSERT((v & xfs_mask64hi(12)) == 0);
	r->l0 = (r->l0 & (xfs_bmbt_rec_base_t)xfs_mask64hi(55)) |
L
Linus Torvalds 已提交
295
		  (xfs_bmbt_rec_base_t)(v >> 43);
296
	r->l1 = (r->l1 & (xfs_bmbt_rec_base_t)xfs_mask64lo(21)) |
L
Linus Torvalds 已提交
297 298 299 300 301 302 303 304
		  (xfs_bmbt_rec_base_t)(v << 21);
}

/*
 * Set the startoff field in a bmap extent record.
 */
void
xfs_bmbt_set_startoff(
305
	xfs_bmbt_rec_host_t *r,
L
Linus Torvalds 已提交
306 307
	xfs_fileoff_t	v)
{
308 309
	ASSERT((v & xfs_mask64hi(9)) == 0);
	r->l0 = (r->l0 & (xfs_bmbt_rec_base_t) xfs_mask64hi(1)) |
L
Linus Torvalds 已提交
310
		((xfs_bmbt_rec_base_t)v << 9) |
311
		  (r->l0 & (xfs_bmbt_rec_base_t)xfs_mask64lo(9));
L
Linus Torvalds 已提交
312 313 314 315 316 317 318
}

/*
 * Set the extent state field in a bmap extent record.
 */
void
xfs_bmbt_set_state(
319
	xfs_bmbt_rec_host_t *r,
L
Linus Torvalds 已提交
320 321 322 323
	xfs_exntst_t	v)
{
	ASSERT(v == XFS_EXT_NORM || v == XFS_EXT_UNWRITTEN);
	if (v == XFS_EXT_NORM)
324
		r->l0 &= xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN);
L
Linus Torvalds 已提交
325
	else
326
		r->l0 |= xfs_mask64hi(BMBT_EXNTFLAG_BITLEN);
L
Linus Torvalds 已提交
327 328 329 330 331 332 333
}

/*
 * Convert in-memory form of btree root to on-disk form.
 */
void
xfs_bmbt_to_bmdr(
334
	struct xfs_mount	*mp,
335
	struct xfs_btree_block	*rblock,
L
Linus Torvalds 已提交
336 337 338 339 340 341
	int			rblocklen,
	xfs_bmdr_block_t	*dblock,
	int			dblocklen)
{
	int			dmxr;
	xfs_bmbt_key_t		*fkp;
342
	__be64			*fpp;
L
Linus Torvalds 已提交
343
	xfs_bmbt_key_t		*tkp;
344
	__be64			*tpp;
L
Linus Torvalds 已提交
345

346 347
	if (xfs_sb_version_hascrc(&mp->m_sb)) {
		ASSERT(rblock->bb_magic == cpu_to_be32(XFS_BMAP_CRC_MAGIC));
348 349
		ASSERT(uuid_equal(&rblock->bb_u.l.bb_uuid,
		       &mp->m_sb.sb_meta_uuid));
350 351 352 353
		ASSERT(rblock->bb_u.l.bb_blkno ==
		       cpu_to_be64(XFS_BUF_DADDR_NULL));
	} else
		ASSERT(rblock->bb_magic == cpu_to_be32(XFS_BMAP_MAGIC));
C
Christoph Hellwig 已提交
354 355
	ASSERT(rblock->bb_u.l.bb_leftsib == cpu_to_be64(NULLFSBLOCK));
	ASSERT(rblock->bb_u.l.bb_rightsib == cpu_to_be64(NULLFSBLOCK));
356
	ASSERT(rblock->bb_level != 0);
357 358
	dblock->bb_level = rblock->bb_level;
	dblock->bb_numrecs = rblock->bb_numrecs;
359
	dmxr = xfs_bmdr_maxrecs(dblocklen, 0);
360 361
	fkp = XFS_BMBT_KEY_ADDR(mp, rblock, 1);
	tkp = XFS_BMDR_KEY_ADDR(dblock, 1);
362
	fpp = XFS_BMAP_BROOT_PTR_ADDR(mp, rblock, 1, rblocklen);
363
	tpp = XFS_BMDR_PTR_ADDR(dblock, 1, dmxr);
364
	dmxr = be16_to_cpu(dblock->bb_numrecs);
L
Linus Torvalds 已提交
365
	memcpy(tkp, fkp, sizeof(*fkp) * dmxr);
366
	memcpy(tpp, fpp, sizeof(*fpp) * dmxr);
L
Linus Torvalds 已提交
367 368
}

369 370 371 372 373 374 375 376 377 378
STATIC struct xfs_btree_cur *
xfs_bmbt_dup_cursor(
	struct xfs_btree_cur	*cur)
{
	struct xfs_btree_cur	*new;

	new = xfs_bmbt_init_cursor(cur->bc_mp, cur->bc_tp,
			cur->bc_private.b.ip, cur->bc_private.b.whichfork);

	/*
379
	 * Copy the firstblock, dfops, and flags values,
380 381 382
	 * since init cursor doesn't get them.
	 */
	new->bc_private.b.firstblock = cur->bc_private.b.firstblock;
383
	new->bc_private.b.dfops = cur->bc_private.b.dfops;
384 385 386 387 388
	new->bc_private.b.flags = cur->bc_private.b.flags;

	return new;
}

389 390 391 392 393 394 395
STATIC void
xfs_bmbt_update_cursor(
	struct xfs_btree_cur	*src,
	struct xfs_btree_cur	*dst)
{
	ASSERT((dst->bc_private.b.firstblock != NULLFSBLOCK) ||
	       (dst->bc_private.b.ip->i_d.di_flags & XFS_DIFLAG_REALTIME));
396
	ASSERT(dst->bc_private.b.dfops == src->bc_private.b.dfops);
397 398 399 400 401 402 403

	dst->bc_private.b.allocated += src->bc_private.b.allocated;
	dst->bc_private.b.firstblock = src->bc_private.b.firstblock;

	src->bc_private.b.allocated = 0;
}

404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
STATIC int
xfs_bmbt_alloc_block(
	struct xfs_btree_cur	*cur,
	union xfs_btree_ptr	*start,
	union xfs_btree_ptr	*new,
	int			*stat)
{
	xfs_alloc_arg_t		args;		/* block allocation args */
	int			error;		/* error return value */

	memset(&args, 0, sizeof(args));
	args.tp = cur->bc_tp;
	args.mp = cur->bc_mp;
	args.fsbno = cur->bc_private.b.firstblock;
	args.firstblock = args.fsbno;
419 420
	xfs_rmap_ino_bmbt_owner(&args.oinfo, cur->bc_private.b.ip->i_ino,
			cur->bc_private.b.whichfork);
421 422 423 424 425 426 427 428 429 430 431 432 433 434 435

	if (args.fsbno == NULLFSBLOCK) {
		args.fsbno = be64_to_cpu(start->l);
		args.type = XFS_ALLOCTYPE_START_BNO;
		/*
		 * Make sure there is sufficient room left in the AG to
		 * complete a full tree split for an extent insert.  If
		 * we are converting the middle part of an extent then
		 * we may need space for two tree splits.
		 *
		 * We are relying on the caller to make the correct block
		 * reservation for this operation to succeed.  If the
		 * reservation amount is insufficient then we may fail a
		 * block allocation here and corrupt the filesystem.
		 */
436
		args.minleft = args.tp->t_blk_res;
437
	} else if (cur->bc_private.b.dfops->dop_low) {
438 439 440 441 442 443 444
		args.type = XFS_ALLOCTYPE_START_BNO;
	} else {
		args.type = XFS_ALLOCTYPE_NEAR_BNO;
	}

	args.minlen = args.maxlen = args.prod = 1;
	args.wasdel = cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL;
445
	if (!args.wasdel && args.tp->t_blk_res == 0) {
D
Dave Chinner 已提交
446
		error = -ENOSPC;
447 448 449 450 451 452 453 454 455
		goto error0;
	}
	error = xfs_alloc_vextent(&args);
	if (error)
		goto error0;

	if (args.fsbno == NULLFSBLOCK && args.minleft) {
		/*
		 * Could not find an AG with enough free space to satisfy
456
		 * a full btree split.  Try again and if
457 458 459 460 461 462 463
		 * successful activate the lowspace algorithm.
		 */
		args.fsbno = 0;
		args.type = XFS_ALLOCTYPE_FIRST_AG;
		error = xfs_alloc_vextent(&args);
		if (error)
			goto error0;
464
		cur->bc_private.b.dfops->dop_low = true;
465
	}
466
	if (WARN_ON_ONCE(args.fsbno == NULLFSBLOCK)) {
467 468 469 470 471 472 473 474 475
		XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
		*stat = 0;
		return 0;
	}
	ASSERT(args.len == 1);
	cur->bc_private.b.firstblock = args.fsbno;
	cur->bc_private.b.allocated++;
	cur->bc_private.b.ip->i_d.di_nblocks++;
	xfs_trans_log_inode(args.tp, cur->bc_private.b.ip, XFS_ILOG_CORE);
C
Christoph Hellwig 已提交
476
	xfs_trans_mod_dquot_byino(args.tp, cur->bc_private.b.ip,
477 478 479 480 481 482 483 484 485 486 487 488 489
			XFS_TRANS_DQ_BCOUNT, 1L);

	new->l = cpu_to_be64(args.fsbno);

	XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
	*stat = 1;
	return 0;

 error0:
	XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);
	return error;
}

490 491 492 493 494 495 496 497 498
STATIC int
xfs_bmbt_free_block(
	struct xfs_btree_cur	*cur,
	struct xfs_buf		*bp)
{
	struct xfs_mount	*mp = cur->bc_mp;
	struct xfs_inode	*ip = cur->bc_private.b.ip;
	struct xfs_trans	*tp = cur->bc_tp;
	xfs_fsblock_t		fsbno = XFS_DADDR_TO_FSB(mp, XFS_BUF_ADDR(bp));
499
	struct xfs_owner_info	oinfo;
500

501 502
	xfs_rmap_ino_bmbt_owner(&oinfo, ip->i_ino, cur->bc_private.b.whichfork);
	xfs_bmap_add_free(mp, cur->bc_private.b.dfops, fsbno, 1, &oinfo);
503 504 505
	ip->i_d.di_nblocks--;

	xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
C
Christoph Hellwig 已提交
506
	xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, -1L);
507 508 509
	return 0;
}

510 511 512 513 514
STATIC int
xfs_bmbt_get_minrecs(
	struct xfs_btree_cur	*cur,
	int			level)
{
515 516 517 518 519 520 521 522 523 524 525
	if (level == cur->bc_nlevels - 1) {
		struct xfs_ifork	*ifp;

		ifp = XFS_IFORK_PTR(cur->bc_private.b.ip,
				    cur->bc_private.b.whichfork);

		return xfs_bmbt_maxrecs(cur->bc_mp,
					ifp->if_broot_bytes, level == 0) / 2;
	}

	return cur->bc_mp->m_bmap_dmnr[level != 0];
526 527
}

528
int
529 530 531 532
xfs_bmbt_get_maxrecs(
	struct xfs_btree_cur	*cur,
	int			level)
{
533 534 535 536 537 538 539 540 541 542 543 544
	if (level == cur->bc_nlevels - 1) {
		struct xfs_ifork	*ifp;

		ifp = XFS_IFORK_PTR(cur->bc_private.b.ip,
				    cur->bc_private.b.whichfork);

		return xfs_bmbt_maxrecs(cur->bc_mp,
					ifp->if_broot_bytes, level == 0);
	}

	return cur->bc_mp->m_bmap_dmxr[level != 0];

545 546
}

547 548 549 550 551 552 553 554 555 556 557 558 559 560
/*
 * Get the maximum records we could store in the on-disk format.
 *
 * For non-root nodes this is equivalent to xfs_bmbt_get_maxrecs, but
 * for the root node this checks the available space in the dinode fork
 * so that we can resize the in-memory buffer to match it.  After a
 * resize to the maximum size this function returns the same value
 * as xfs_bmbt_get_maxrecs for the root node, too.
 */
STATIC int
xfs_bmbt_get_dmaxrecs(
	struct xfs_btree_cur	*cur,
	int			level)
{
561 562
	if (level != cur->bc_nlevels - 1)
		return cur->bc_mp->m_bmap_dmxr[level != 0];
563
	return xfs_bmdr_maxrecs(cur->bc_private.b.forksize, level == 0);
564 565
}

566 567 568 569 570 571 572 573 574
STATIC void
xfs_bmbt_init_key_from_rec(
	union xfs_btree_key	*key,
	union xfs_btree_rec	*rec)
{
	key->bmbt.br_startoff =
		cpu_to_be64(xfs_bmbt_disk_get_startoff(&rec->bmbt));
}

575 576 577 578 579 580 581 582 583 584
STATIC void
xfs_bmbt_init_high_key_from_rec(
	union xfs_btree_key	*key,
	union xfs_btree_rec	*rec)
{
	key->bmbt.br_startoff = cpu_to_be64(
			xfs_bmbt_disk_get_startoff(&rec->bmbt) +
			xfs_bmbt_disk_get_blockcount(&rec->bmbt) - 1);
}

585 586 587 588 589 590 591 592
STATIC void
xfs_bmbt_init_rec_from_cur(
	struct xfs_btree_cur	*cur,
	union xfs_btree_rec	*rec)
{
	xfs_bmbt_disk_set_all(&rec->bmbt, &cur->bc_rec.b);
}

593 594 595 596 597 598 599 600
STATIC void
xfs_bmbt_init_ptr_from_cur(
	struct xfs_btree_cur	*cur,
	union xfs_btree_ptr	*ptr)
{
	ptr->l = 0;
}

601
STATIC int64_t
602 603 604 605
xfs_bmbt_key_diff(
	struct xfs_btree_cur	*cur,
	union xfs_btree_key	*key)
{
606
	return (int64_t)be64_to_cpu(key->bmbt.br_startoff) -
607 608 609
				      cur->bc_rec.b.br_startoff;
}

610 611 612 613 614 615 616 617 618 619
STATIC int64_t
xfs_bmbt_diff_two_keys(
	struct xfs_btree_cur	*cur,
	union xfs_btree_key	*k1,
	union xfs_btree_key	*k2)
{
	return (int64_t)be64_to_cpu(k1->bmbt.br_startoff) -
			  be64_to_cpu(k2->bmbt.br_startoff);
}

D
Dave Chinner 已提交
620
static bool
621
xfs_bmbt_verify(
622 623 624 625 626 627
	struct xfs_buf		*bp)
{
	struct xfs_mount	*mp = bp->b_target->bt_mount;
	struct xfs_btree_block	*block = XFS_BUF_TO_BLOCK(bp);
	unsigned int		level;

628 629 630 631
	switch (block->bb_magic) {
	case cpu_to_be32(XFS_BMAP_CRC_MAGIC):
		if (!xfs_sb_version_hascrc(&mp->m_sb))
			return false;
632
		if (!uuid_equal(&block->bb_u.l.bb_uuid, &mp->m_sb.sb_meta_uuid))
633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650
			return false;
		if (be64_to_cpu(block->bb_u.l.bb_blkno) != bp->b_bn)
			return false;
		/*
		 * XXX: need a better way of verifying the owner here. Right now
		 * just make sure there has been one set.
		 */
		if (be64_to_cpu(block->bb_u.l.bb_owner) == 0)
			return false;
		/* fall through */
	case cpu_to_be32(XFS_BMAP_MAGIC):
		break;
	default:
		return false;
	}

	/*
	 * numrecs and level verification.
651
	 *
652
	 * We don't know what fork we belong to, so just verify that the level
653 654 655 656
	 * is less than the maximum of the two. Later checks will be more
	 * precise.
	 */
	level = be16_to_cpu(block->bb_level);
657 658 659 660
	if (level > max(mp->m_bm_maxlevels[0], mp->m_bm_maxlevels[1]))
		return false;
	if (be16_to_cpu(block->bb_numrecs) > mp->m_bmap_dmxr[level != 0])
		return false;
661 662

	/* sibling pointer verification */
663
	if (!block->bb_u.l.bb_leftsib ||
C
Christoph Hellwig 已提交
664
	    (block->bb_u.l.bb_leftsib != cpu_to_be64(NULLFSBLOCK) &&
665 666 667
	     !XFS_FSB_SANITY_CHECK(mp, be64_to_cpu(block->bb_u.l.bb_leftsib))))
		return false;
	if (!block->bb_u.l.bb_rightsib ||
C
Christoph Hellwig 已提交
668
	    (block->bb_u.l.bb_rightsib != cpu_to_be64(NULLFSBLOCK) &&
669 670 671 672
	     !XFS_FSB_SANITY_CHECK(mp, be64_to_cpu(block->bb_u.l.bb_rightsib))))
		return false;

	return true;
673
}
674

675 676
static void
xfs_bmbt_read_verify(
677 678
	struct xfs_buf	*bp)
{
679
	if (!xfs_btree_lblock_verify_crc(bp))
D
Dave Chinner 已提交
680
		xfs_buf_ioerror(bp, -EFSBADCRC);
681
	else if (!xfs_bmbt_verify(bp))
D
Dave Chinner 已提交
682
		xfs_buf_ioerror(bp, -EFSCORRUPTED);
683 684 685 686

	if (bp->b_error) {
		trace_xfs_btree_corrupt(bp, _RET_IP_);
		xfs_verifier_error(bp);
687
	}
688 689
}

690 691
static void
xfs_bmbt_write_verify(
692 693
	struct xfs_buf	*bp)
{
694 695
	if (!xfs_bmbt_verify(bp)) {
		trace_xfs_btree_corrupt(bp, _RET_IP_);
D
Dave Chinner 已提交
696
		xfs_buf_ioerror(bp, -EFSCORRUPTED);
697
		xfs_verifier_error(bp);
698 699 700
		return;
	}
	xfs_btree_lblock_calc_crc(bp);
701 702
}

703
const struct xfs_buf_ops xfs_bmbt_buf_ops = {
704
	.name = "xfs_bmbt",
705 706 707 708 709
	.verify_read = xfs_bmbt_read_verify,
	.verify_write = xfs_bmbt_write_verify,
};


710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730
STATIC int
xfs_bmbt_keys_inorder(
	struct xfs_btree_cur	*cur,
	union xfs_btree_key	*k1,
	union xfs_btree_key	*k2)
{
	return be64_to_cpu(k1->bmbt.br_startoff) <
		be64_to_cpu(k2->bmbt.br_startoff);
}

STATIC int
xfs_bmbt_recs_inorder(
	struct xfs_btree_cur	*cur,
	union xfs_btree_rec	*r1,
	union xfs_btree_rec	*r2)
{
	return xfs_bmbt_disk_get_startoff(&r1->bmbt) +
		xfs_bmbt_disk_get_blockcount(&r1->bmbt) <=
		xfs_bmbt_disk_get_startoff(&r2->bmbt);
}

731
static const struct xfs_btree_ops xfs_bmbt_ops = {
732 733 734
	.rec_len		= sizeof(xfs_bmbt_rec_t),
	.key_len		= sizeof(xfs_bmbt_key_t),

735
	.dup_cursor		= xfs_bmbt_dup_cursor,
736
	.update_cursor		= xfs_bmbt_update_cursor,
737
	.alloc_block		= xfs_bmbt_alloc_block,
738
	.free_block		= xfs_bmbt_free_block,
739
	.get_maxrecs		= xfs_bmbt_get_maxrecs,
740
	.get_minrecs		= xfs_bmbt_get_minrecs,
741
	.get_dmaxrecs		= xfs_bmbt_get_dmaxrecs,
742
	.init_key_from_rec	= xfs_bmbt_init_key_from_rec,
743
	.init_high_key_from_rec	= xfs_bmbt_init_high_key_from_rec,
744
	.init_rec_from_cur	= xfs_bmbt_init_rec_from_cur,
745 746
	.init_ptr_from_cur	= xfs_bmbt_init_ptr_from_cur,
	.key_diff		= xfs_bmbt_key_diff,
747
	.diff_two_keys		= xfs_bmbt_diff_two_keys,
748
	.buf_ops		= &xfs_bmbt_buf_ops,
749 750
	.keys_inorder		= xfs_bmbt_keys_inorder,
	.recs_inorder		= xfs_bmbt_recs_inorder,
751 752 753 754 755 756 757 758 759 760 761 762 763 764
};

/*
 * Allocate a new bmap btree cursor.
 */
struct xfs_btree_cur *				/* new bmap btree cursor */
xfs_bmbt_init_cursor(
	struct xfs_mount	*mp,		/* file system mount point */
	struct xfs_trans	*tp,		/* transaction pointer */
	struct xfs_inode	*ip,		/* inode owning the btree */
	int			whichfork)	/* data or attr fork */
{
	struct xfs_ifork	*ifp = XFS_IFORK_PTR(ip, whichfork);
	struct xfs_btree_cur	*cur;
D
Darrick J. Wong 已提交
765
	ASSERT(whichfork != XFS_COW_FORK);
766

767
	cur = kmem_zone_zalloc(xfs_btree_cur_zone, KM_NOFS);
768 769 770 771 772 773

	cur->bc_tp = tp;
	cur->bc_mp = mp;
	cur->bc_nlevels = be16_to_cpu(ifp->if_broot->bb_level) + 1;
	cur->bc_btnum = XFS_BTNUM_BMAP;
	cur->bc_blocklog = mp->m_sb.sb_blocklog;
D
Dave Chinner 已提交
774
	cur->bc_statoff = XFS_STATS_CALC_INDEX(xs_bmbt_2);
775 776

	cur->bc_ops = &xfs_bmbt_ops;
777
	cur->bc_flags = XFS_BTREE_LONG_PTRS | XFS_BTREE_ROOT_IN_INODE;
778 779
	if (xfs_sb_version_hascrc(&mp->m_sb))
		cur->bc_flags |= XFS_BTREE_CRC_BLOCKS;
780 781 782 783

	cur->bc_private.b.forksize = XFS_IFORK_SIZE(ip, whichfork);
	cur->bc_private.b.ip = ip;
	cur->bc_private.b.firstblock = NULLFSBLOCK;
784
	cur->bc_private.b.dfops = NULL;
785 786 787 788 789 790
	cur->bc_private.b.allocated = 0;
	cur->bc_private.b.flags = 0;
	cur->bc_private.b.whichfork = whichfork;

	return cur;
}
791 792 793 794 795 796 797 798 799 800

/*
 * Calculate number of records in a bmap btree block.
 */
int
xfs_bmbt_maxrecs(
	struct xfs_mount	*mp,
	int			blocklen,
	int			leaf)
{
801
	blocklen -= XFS_BMBT_BLOCK_LEN(mp);
802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821

	if (leaf)
		return blocklen / sizeof(xfs_bmbt_rec_t);
	return blocklen / (sizeof(xfs_bmbt_key_t) + sizeof(xfs_bmbt_ptr_t));
}

/*
 * Calculate number of records in a bmap btree inode root.
 */
int
xfs_bmdr_maxrecs(
	int			blocklen,
	int			leaf)
{
	blocklen -= sizeof(xfs_bmdr_block_t);

	if (leaf)
		return blocklen / sizeof(xfs_bmdr_rec_t);
	return blocklen / (sizeof(xfs_bmdr_key_t) + sizeof(xfs_bmdr_ptr_t));
}
822 823 824 825 826 827 828

/*
 * Change the owner of a btree format fork fo the inode passed in. Change it to
 * the owner of that is passed in so that we can change owners before or after
 * we switch forks between inodes. The operation that the caller is doing will
 * determine whether is needs to change owner before or after the switch.
 *
829 830 831 832 833 834 835 836 837 838
 * For demand paged transactional modification, the fork switch should be done
 * after reading in all the blocks, modifying them and pinning them in the
 * transaction. For modification when the buffers are already pinned in memory,
 * the fork switch can be done before changing the owner as we won't need to
 * validate the owner until the btree buffers are unpinned and writes can occur
 * again.
 *
 * For recovery based ownership change, there is no transactional context and
 * so a buffer list must be supplied so that we can record the buffers that we
 * modified for the caller to issue IO on.
839 840 841 842 843 844
 */
int
xfs_bmbt_change_owner(
	struct xfs_trans	*tp,
	struct xfs_inode	*ip,
	int			whichfork,
845 846
	xfs_ino_t		new_owner,
	struct list_head	*buffer_list)
847 848 849 850
{
	struct xfs_btree_cur	*cur;
	int			error;

851 852
	ASSERT(tp || buffer_list);
	ASSERT(!(tp && buffer_list));
853
	if (whichfork == XFS_DATA_FORK)
D
Dan Carpenter 已提交
854
		ASSERT(ip->i_d.di_format == XFS_DINODE_FMT_BTREE);
855
	else
D
Dan Carpenter 已提交
856
		ASSERT(ip->i_d.di_aformat == XFS_DINODE_FMT_BTREE);
857 858

	cur = xfs_bmbt_init_cursor(ip->i_mount, tp, ip, whichfork);
859
	if (!cur)
D
Dave Chinner 已提交
860
		return -ENOMEM;
861
	cur->bc_private.b.flags |= XFS_BTCUR_BPRV_INVALID_OWNER;
862 863

	error = xfs_btree_change_owner(cur, new_owner, buffer_list);
864 865 866
	xfs_btree_del_cursor(cur, error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
	return error;
}