1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
4  * All Rights Reserved.
5  */
6 #include "xfs.h"
7 #include "xfs_fs.h"
8 #include "xfs_shared.h"
9 #include "xfs_format.h"
10 #include "xfs_log_format.h"
11 #include "xfs_trans_resv.h"
12 #include "xfs_bit.h"
13 #include "xfs_mount.h"
14 #include "xfs_inode.h"
15 #include "xfs_trans.h"
16 #include "xfs_buf_item.h"
17 #include "xfs_btree.h"
18 #include "xfs_errortag.h"
19 #include "xfs_error.h"
20 #include "xfs_trace.h"
21 #include "xfs_alloc.h"
22 #include "xfs_log.h"
23 #include "xfs_btree_staging.h"
24 #include "xfs_ag.h"
25 #include "xfs_alloc_btree.h"
26 #include "xfs_ialloc_btree.h"
27 #include "xfs_bmap_btree.h"
28 #include "xfs_rmap_btree.h"
29 #include "xfs_refcount_btree.h"
30 #include "xfs_health.h"
31 #include "xfs_buf_mem.h"
32 #include "xfs_btree_mem.h"
33 
34 /*
35  * Btree magic numbers.
36  */
37 uint32_t
xfs_btree_magic(struct xfs_mount * mp,const struct xfs_btree_ops * ops)38 xfs_btree_magic(
39 	struct xfs_mount		*mp,
40 	const struct xfs_btree_ops	*ops)
41 {
42 	int				idx = xfs_has_crc(mp) ? 1 : 0;
43 	__be32				magic = ops->buf_ops->magic[idx];
44 
45 	/* Ensure we asked for crc for crc-only magics. */
46 	ASSERT(magic != 0);
47 	return be32_to_cpu(magic);
48 }
49 
50 /*
51  * These sibling pointer checks are optimised for null sibling pointers. This
52  * happens a lot, and we don't need to byte swap at runtime if the sibling
53  * pointer is NULL.
54  *
55  * These are explicitly marked at inline because the cost of calling them as
56  * functions instead of inlining them is about 36 bytes extra code per call site
57  * on x86-64. Yes, gcc-11 fails to inline them, and explicit inlining of these
58  * two sibling check functions reduces the compiled code size by over 300
59  * bytes.
60  */
61 static inline xfs_failaddr_t
xfs_btree_check_fsblock_siblings(struct xfs_mount * mp,xfs_fsblock_t fsb,__be64 dsibling)62 xfs_btree_check_fsblock_siblings(
63 	struct xfs_mount	*mp,
64 	xfs_fsblock_t		fsb,
65 	__be64			dsibling)
66 {
67 	xfs_fsblock_t		sibling;
68 
69 	if (dsibling == cpu_to_be64(NULLFSBLOCK))
70 		return NULL;
71 
72 	sibling = be64_to_cpu(dsibling);
73 	if (sibling == fsb)
74 		return __this_address;
75 	if (!xfs_verify_fsbno(mp, sibling))
76 		return __this_address;
77 	return NULL;
78 }
79 
80 static inline xfs_failaddr_t
xfs_btree_check_memblock_siblings(struct xfs_buftarg * btp,xfbno_t bno,__be64 dsibling)81 xfs_btree_check_memblock_siblings(
82 	struct xfs_buftarg	*btp,
83 	xfbno_t			bno,
84 	__be64			dsibling)
85 {
86 	xfbno_t			sibling;
87 
88 	if (dsibling == cpu_to_be64(NULLFSBLOCK))
89 		return NULL;
90 
91 	sibling = be64_to_cpu(dsibling);
92 	if (sibling == bno)
93 		return __this_address;
94 	if (!xmbuf_verify_daddr(btp, xfbno_to_daddr(sibling)))
95 		return __this_address;
96 	return NULL;
97 }
98 
99 static inline xfs_failaddr_t
xfs_btree_check_agblock_siblings(struct xfs_perag * pag,xfs_agblock_t agbno,__be32 dsibling)100 xfs_btree_check_agblock_siblings(
101 	struct xfs_perag	*pag,
102 	xfs_agblock_t		agbno,
103 	__be32			dsibling)
104 {
105 	xfs_agblock_t		sibling;
106 
107 	if (dsibling == cpu_to_be32(NULLAGBLOCK))
108 		return NULL;
109 
110 	sibling = be32_to_cpu(dsibling);
111 	if (sibling == agbno)
112 		return __this_address;
113 	if (!xfs_verify_agbno(pag, sibling))
114 		return __this_address;
115 	return NULL;
116 }
117 
118 static xfs_failaddr_t
__xfs_btree_check_lblock_hdr(struct xfs_btree_cur * cur,struct xfs_btree_block * block,int level,struct xfs_buf * bp)119 __xfs_btree_check_lblock_hdr(
120 	struct xfs_btree_cur	*cur,
121 	struct xfs_btree_block	*block,
122 	int			level,
123 	struct xfs_buf		*bp)
124 {
125 	struct xfs_mount	*mp = cur->bc_mp;
126 
127 	if (xfs_has_crc(mp)) {
128 		if (!uuid_equal(&block->bb_u.l.bb_uuid, &mp->m_sb.sb_meta_uuid))
129 			return __this_address;
130 		if (block->bb_u.l.bb_blkno !=
131 		    cpu_to_be64(bp ? xfs_buf_daddr(bp) : XFS_BUF_DADDR_NULL))
132 			return __this_address;
133 		if (block->bb_u.l.bb_pad != cpu_to_be32(0))
134 			return __this_address;
135 	}
136 
137 	if (be32_to_cpu(block->bb_magic) != xfs_btree_magic(mp, cur->bc_ops))
138 		return __this_address;
139 	if (be16_to_cpu(block->bb_level) != level)
140 		return __this_address;
141 	if (be16_to_cpu(block->bb_numrecs) >
142 	    cur->bc_ops->get_maxrecs(cur, level))
143 		return __this_address;
144 
145 	return NULL;
146 }
147 
148 /*
149  * Check a long btree block header.  Return the address of the failing check,
150  * or NULL if everything is ok.
151  */
152 static xfs_failaddr_t
__xfs_btree_check_fsblock(struct xfs_btree_cur * cur,struct xfs_btree_block * block,int level,struct xfs_buf * bp)153 __xfs_btree_check_fsblock(
154 	struct xfs_btree_cur	*cur,
155 	struct xfs_btree_block	*block,
156 	int			level,
157 	struct xfs_buf		*bp)
158 {
159 	struct xfs_mount	*mp = cur->bc_mp;
160 	xfs_failaddr_t		fa;
161 	xfs_fsblock_t		fsb;
162 
163 	fa = __xfs_btree_check_lblock_hdr(cur, block, level, bp);
164 	if (fa)
165 		return fa;
166 
167 	/*
168 	 * For inode-rooted btrees, the root block sits in the inode fork.  In
169 	 * that case bp is NULL, and the block must not have any siblings.
170 	 */
171 	if (!bp) {
172 		if (block->bb_u.l.bb_leftsib != cpu_to_be64(NULLFSBLOCK))
173 			return __this_address;
174 		if (block->bb_u.l.bb_rightsib != cpu_to_be64(NULLFSBLOCK))
175 			return __this_address;
176 		return NULL;
177 	}
178 
179 	fsb = XFS_DADDR_TO_FSB(mp, xfs_buf_daddr(bp));
180 	fa = xfs_btree_check_fsblock_siblings(mp, fsb,
181 			block->bb_u.l.bb_leftsib);
182 	if (!fa)
183 		fa = xfs_btree_check_fsblock_siblings(mp, fsb,
184 				block->bb_u.l.bb_rightsib);
185 	return fa;
186 }
187 
188 /*
189  * Check an in-memory btree block header.  Return the address of the failing
190  * check, or NULL if everything is ok.
191  */
192 static xfs_failaddr_t
__xfs_btree_check_memblock(struct xfs_btree_cur * cur,struct xfs_btree_block * block,int level,struct xfs_buf * bp)193 __xfs_btree_check_memblock(
194 	struct xfs_btree_cur	*cur,
195 	struct xfs_btree_block	*block,
196 	int			level,
197 	struct xfs_buf		*bp)
198 {
199 	struct xfs_buftarg	*btp = cur->bc_mem.xfbtree->target;
200 	xfs_failaddr_t		fa;
201 	xfbno_t			bno;
202 
203 	fa = __xfs_btree_check_lblock_hdr(cur, block, level, bp);
204 	if (fa)
205 		return fa;
206 
207 	bno = xfs_daddr_to_xfbno(xfs_buf_daddr(bp));
208 	fa = xfs_btree_check_memblock_siblings(btp, bno,
209 			block->bb_u.l.bb_leftsib);
210 	if (!fa)
211 		fa = xfs_btree_check_memblock_siblings(btp, bno,
212 				block->bb_u.l.bb_rightsib);
213 	return fa;
214 }
215 
216 /*
217  * Check a short btree block header.  Return the address of the failing check,
218  * or NULL if everything is ok.
219  */
220 static xfs_failaddr_t
__xfs_btree_check_agblock(struct xfs_btree_cur * cur,struct xfs_btree_block * block,int level,struct xfs_buf * bp)221 __xfs_btree_check_agblock(
222 	struct xfs_btree_cur	*cur,
223 	struct xfs_btree_block	*block,
224 	int			level,
225 	struct xfs_buf		*bp)
226 {
227 	struct xfs_mount	*mp = cur->bc_mp;
228 	struct xfs_perag	*pag = cur->bc_ag.pag;
229 	xfs_failaddr_t		fa;
230 	xfs_agblock_t		agbno;
231 
232 	if (xfs_has_crc(mp)) {
233 		if (!uuid_equal(&block->bb_u.s.bb_uuid, &mp->m_sb.sb_meta_uuid))
234 			return __this_address;
235 		if (block->bb_u.s.bb_blkno != cpu_to_be64(xfs_buf_daddr(bp)))
236 			return __this_address;
237 	}
238 
239 	if (be32_to_cpu(block->bb_magic) != xfs_btree_magic(mp, cur->bc_ops))
240 		return __this_address;
241 	if (be16_to_cpu(block->bb_level) != level)
242 		return __this_address;
243 	if (be16_to_cpu(block->bb_numrecs) >
244 	    cur->bc_ops->get_maxrecs(cur, level))
245 		return __this_address;
246 
247 	agbno = xfs_daddr_to_agbno(mp, xfs_buf_daddr(bp));
248 	fa = xfs_btree_check_agblock_siblings(pag, agbno,
249 			block->bb_u.s.bb_leftsib);
250 	if (!fa)
251 		fa = xfs_btree_check_agblock_siblings(pag, agbno,
252 				block->bb_u.s.bb_rightsib);
253 	return fa;
254 }
255 
256 /*
257  * Internal btree block check.
258  *
259  * Return NULL if the block is ok or the address of the failed check otherwise.
260  */
261 xfs_failaddr_t
__xfs_btree_check_block(struct xfs_btree_cur * cur,struct xfs_btree_block * block,int level,struct xfs_buf * bp)262 __xfs_btree_check_block(
263 	struct xfs_btree_cur	*cur,
264 	struct xfs_btree_block	*block,
265 	int			level,
266 	struct xfs_buf		*bp)
267 {
268 	switch (cur->bc_ops->type) {
269 	case XFS_BTREE_TYPE_MEM:
270 		return __xfs_btree_check_memblock(cur, block, level, bp);
271 	case XFS_BTREE_TYPE_AG:
272 		return __xfs_btree_check_agblock(cur, block, level, bp);
273 	case XFS_BTREE_TYPE_INODE:
274 		return __xfs_btree_check_fsblock(cur, block, level, bp);
275 	default:
276 		ASSERT(0);
277 		return __this_address;
278 	}
279 }
280 
xfs_btree_block_errtag(struct xfs_btree_cur * cur)281 static inline unsigned int xfs_btree_block_errtag(struct xfs_btree_cur *cur)
282 {
283 	if (cur->bc_ops->ptr_len == XFS_BTREE_SHORT_PTR_LEN)
284 		return XFS_ERRTAG_BTREE_CHECK_SBLOCK;
285 	return XFS_ERRTAG_BTREE_CHECK_LBLOCK;
286 }
287 
288 /*
289  * Debug routine: check that block header is ok.
290  */
291 int
xfs_btree_check_block(struct xfs_btree_cur * cur,struct xfs_btree_block * block,int level,struct xfs_buf * bp)292 xfs_btree_check_block(
293 	struct xfs_btree_cur	*cur,	/* btree cursor */
294 	struct xfs_btree_block	*block,	/* generic btree block pointer */
295 	int			level,	/* level of the btree block */
296 	struct xfs_buf		*bp)	/* buffer containing block, if any */
297 {
298 	struct xfs_mount	*mp = cur->bc_mp;
299 	xfs_failaddr_t		fa;
300 
301 	fa = __xfs_btree_check_block(cur, block, level, bp);
302 	if (XFS_IS_CORRUPT(mp, fa != NULL) ||
303 	    XFS_TEST_ERROR(false, mp, xfs_btree_block_errtag(cur))) {
304 		if (bp)
305 			trace_xfs_btree_corrupt(bp, _RET_IP_);
306 		xfs_btree_mark_sick(cur);
307 		return -EFSCORRUPTED;
308 	}
309 	return 0;
310 }
311 
312 int
__xfs_btree_check_ptr(struct xfs_btree_cur * cur,const union xfs_btree_ptr * ptr,int index,int level)313 __xfs_btree_check_ptr(
314 	struct xfs_btree_cur		*cur,
315 	const union xfs_btree_ptr	*ptr,
316 	int				index,
317 	int				level)
318 {
319 	if (level <= 0)
320 		return -EFSCORRUPTED;
321 
322 	switch (cur->bc_ops->type) {
323 	case XFS_BTREE_TYPE_MEM:
324 		if (!xfbtree_verify_bno(cur->bc_mem.xfbtree,
325 				be64_to_cpu((&ptr->l)[index])))
326 			return -EFSCORRUPTED;
327 		break;
328 	case XFS_BTREE_TYPE_INODE:
329 		if (!xfs_verify_fsbno(cur->bc_mp,
330 				be64_to_cpu((&ptr->l)[index])))
331 			return -EFSCORRUPTED;
332 		break;
333 	case XFS_BTREE_TYPE_AG:
334 		if (!xfs_verify_agbno(cur->bc_ag.pag,
335 				be32_to_cpu((&ptr->s)[index])))
336 			return -EFSCORRUPTED;
337 		break;
338 	}
339 
340 	return 0;
341 }
342 
343 /*
344  * Check that a given (indexed) btree pointer at a certain level of a
345  * btree is valid and doesn't point past where it should.
346  */
347 static int
xfs_btree_check_ptr(struct xfs_btree_cur * cur,const union xfs_btree_ptr * ptr,int index,int level)348 xfs_btree_check_ptr(
349 	struct xfs_btree_cur		*cur,
350 	const union xfs_btree_ptr	*ptr,
351 	int				index,
352 	int				level)
353 {
354 	int				error;
355 
356 	error = __xfs_btree_check_ptr(cur, ptr, index, level);
357 	if (error) {
358 		switch (cur->bc_ops->type) {
359 		case XFS_BTREE_TYPE_MEM:
360 			xfs_err(cur->bc_mp,
361 "In-memory: Corrupt %sbt flags 0x%x pointer at level %d index %d fa %pS.",
362 				cur->bc_ops->name, cur->bc_flags, level, index,
363 				__this_address);
364 			break;
365 		case XFS_BTREE_TYPE_INODE:
366 			xfs_err(cur->bc_mp,
367 "Inode %llu fork %d: Corrupt %sbt pointer at level %d index %d.",
368 				cur->bc_ino.ip->i_ino,
369 				cur->bc_ino.whichfork, cur->bc_ops->name,
370 				level, index);
371 			break;
372 		case XFS_BTREE_TYPE_AG:
373 			xfs_err(cur->bc_mp,
374 "AG %u: Corrupt %sbt pointer at level %d index %d.",
375 				cur->bc_ag.pag->pag_agno, cur->bc_ops->name,
376 				level, index);
377 			break;
378 		}
379 		xfs_btree_mark_sick(cur);
380 	}
381 
382 	return error;
383 }
384 
385 #ifdef DEBUG
386 # define xfs_btree_debug_check_ptr	xfs_btree_check_ptr
387 #else
388 # define xfs_btree_debug_check_ptr(...)	(0)
389 #endif
390 
391 /*
392  * Calculate CRC on the whole btree block and stuff it into the
393  * long-form btree header.
394  *
395  * Prior to calculting the CRC, pull the LSN out of the buffer log item and put
396  * it into the buffer so recovery knows what the last modification was that made
397  * it to disk.
398  */
399 void
xfs_btree_fsblock_calc_crc(struct xfs_buf * bp)400 xfs_btree_fsblock_calc_crc(
401 	struct xfs_buf		*bp)
402 {
403 	struct xfs_btree_block	*block = XFS_BUF_TO_BLOCK(bp);
404 	struct xfs_buf_log_item	*bip = bp->b_log_item;
405 
406 	if (!xfs_has_crc(bp->b_mount))
407 		return;
408 	if (bip)
409 		block->bb_u.l.bb_lsn = cpu_to_be64(bip->bli_item.li_lsn);
410 	xfs_buf_update_cksum(bp, XFS_BTREE_LBLOCK_CRC_OFF);
411 }
412 
413 bool
xfs_btree_fsblock_verify_crc(struct xfs_buf * bp)414 xfs_btree_fsblock_verify_crc(
415 	struct xfs_buf		*bp)
416 {
417 	struct xfs_btree_block	*block = XFS_BUF_TO_BLOCK(bp);
418 	struct xfs_mount	*mp = bp->b_mount;
419 
420 	if (xfs_has_crc(mp)) {
421 		if (!xfs_log_check_lsn(mp, be64_to_cpu(block->bb_u.l.bb_lsn)))
422 			return false;
423 		return xfs_buf_verify_cksum(bp, XFS_BTREE_LBLOCK_CRC_OFF);
424 	}
425 
426 	return true;
427 }
428 
429 /*
430  * Calculate CRC on the whole btree block and stuff it into the
431  * short-form btree header.
432  *
433  * Prior to calculting the CRC, pull the LSN out of the buffer log item and put
434  * it into the buffer so recovery knows what the last modification was that made
435  * it to disk.
436  */
437 void
xfs_btree_agblock_calc_crc(struct xfs_buf * bp)438 xfs_btree_agblock_calc_crc(
439 	struct xfs_buf		*bp)
440 {
441 	struct xfs_btree_block	*block = XFS_BUF_TO_BLOCK(bp);
442 	struct xfs_buf_log_item	*bip = bp->b_log_item;
443 
444 	if (!xfs_has_crc(bp->b_mount))
445 		return;
446 	if (bip)
447 		block->bb_u.s.bb_lsn = cpu_to_be64(bip->bli_item.li_lsn);
448 	xfs_buf_update_cksum(bp, XFS_BTREE_SBLOCK_CRC_OFF);
449 }
450 
451 bool
xfs_btree_agblock_verify_crc(struct xfs_buf * bp)452 xfs_btree_agblock_verify_crc(
453 	struct xfs_buf		*bp)
454 {
455 	struct xfs_btree_block  *block = XFS_BUF_TO_BLOCK(bp);
456 	struct xfs_mount	*mp = bp->b_mount;
457 
458 	if (xfs_has_crc(mp)) {
459 		if (!xfs_log_check_lsn(mp, be64_to_cpu(block->bb_u.s.bb_lsn)))
460 			return false;
461 		return xfs_buf_verify_cksum(bp, XFS_BTREE_SBLOCK_CRC_OFF);
462 	}
463 
464 	return true;
465 }
466 
467 static int
xfs_btree_free_block(struct xfs_btree_cur * cur,struct xfs_buf * bp)468 xfs_btree_free_block(
469 	struct xfs_btree_cur	*cur,
470 	struct xfs_buf		*bp)
471 {
472 	int			error;
473 
474 	trace_xfs_btree_free_block(cur, bp);
475 
476 	/*
477 	 * Don't allow block freeing for a staging cursor, because staging
478 	 * cursors do not support regular btree modifications.
479 	 */
480 	if (unlikely(cur->bc_flags & XFS_BTREE_STAGING)) {
481 		ASSERT(0);
482 		return -EFSCORRUPTED;
483 	}
484 
485 	error = cur->bc_ops->free_block(cur, bp);
486 	if (!error) {
487 		xfs_trans_binval(cur->bc_tp, bp);
488 		XFS_BTREE_STATS_INC(cur, free);
489 	}
490 	return error;
491 }
492 
493 /*
494  * Delete the btree cursor.
495  */
496 void
xfs_btree_del_cursor(struct xfs_btree_cur * cur,int error)497 xfs_btree_del_cursor(
498 	struct xfs_btree_cur	*cur,		/* btree cursor */
499 	int			error)		/* del because of error */
500 {
501 	int			i;		/* btree level */
502 
503 	/*
504 	 * Clear the buffer pointers and release the buffers. If we're doing
505 	 * this because of an error, inspect all of the entries in the bc_bufs
506 	 * array for buffers to be unlocked. This is because some of the btree
507 	 * code works from level n down to 0, and if we get an error along the
508 	 * way we won't have initialized all the entries down to 0.
509 	 */
510 	for (i = 0; i < cur->bc_nlevels; i++) {
511 		if (cur->bc_levels[i].bp)
512 			xfs_trans_brelse(cur->bc_tp, cur->bc_levels[i].bp);
513 		else if (!error)
514 			break;
515 	}
516 
517 	/*
518 	 * If we are doing a BMBT update, the number of unaccounted blocks
519 	 * allocated during this cursor life time should be zero. If it's not
520 	 * zero, then we should be shut down or on our way to shutdown due to
521 	 * cancelling a dirty transaction on error.
522 	 */
523 	ASSERT(!xfs_btree_is_bmap(cur->bc_ops) || cur->bc_bmap.allocated == 0 ||
524 	       xfs_is_shutdown(cur->bc_mp) || error != 0);
525 
526 	switch (cur->bc_ops->type) {
527 	case XFS_BTREE_TYPE_AG:
528 		if (cur->bc_ag.pag)
529 			xfs_perag_put(cur->bc_ag.pag);
530 		break;
531 	case XFS_BTREE_TYPE_INODE:
532 		/* nothing to do */
533 		break;
534 	case XFS_BTREE_TYPE_MEM:
535 		if (cur->bc_mem.pag)
536 			xfs_perag_put(cur->bc_mem.pag);
537 		break;
538 	}
539 
540 	kmem_cache_free(cur->bc_cache, cur);
541 }
542 
543 /* Return the buffer target for this btree's buffer. */
544 static inline struct xfs_buftarg *
xfs_btree_buftarg(struct xfs_btree_cur * cur)545 xfs_btree_buftarg(
546 	struct xfs_btree_cur	*cur)
547 {
548 	if (cur->bc_ops->type == XFS_BTREE_TYPE_MEM)
549 		return cur->bc_mem.xfbtree->target;
550 	return cur->bc_mp->m_ddev_targp;
551 }
552 
553 /* Return the block size (in units of 512b sectors) for this btree. */
554 static inline unsigned int
xfs_btree_bbsize(struct xfs_btree_cur * cur)555 xfs_btree_bbsize(
556 	struct xfs_btree_cur	*cur)
557 {
558 	if (cur->bc_ops->type == XFS_BTREE_TYPE_MEM)
559 		return XFBNO_BBSIZE;
560 	return cur->bc_mp->m_bsize;
561 }
562 
563 /*
564  * Duplicate the btree cursor.
565  * Allocate a new one, copy the record, re-get the buffers.
566  */
567 int						/* error */
xfs_btree_dup_cursor(struct xfs_btree_cur * cur,struct xfs_btree_cur ** ncur)568 xfs_btree_dup_cursor(
569 	struct xfs_btree_cur	*cur,		/* input cursor */
570 	struct xfs_btree_cur	**ncur)		/* output cursor */
571 {
572 	struct xfs_mount	*mp = cur->bc_mp;
573 	struct xfs_trans	*tp = cur->bc_tp;
574 	struct xfs_buf		*bp;
575 	struct xfs_btree_cur	*new;
576 	int			error;
577 	int			i;
578 
579 	/*
580 	 * Don't allow staging cursors to be duplicated because they're supposed
581 	 * to be kept private to a single thread.
582 	 */
583 	if (unlikely(cur->bc_flags & XFS_BTREE_STAGING)) {
584 		ASSERT(0);
585 		return -EFSCORRUPTED;
586 	}
587 
588 	/*
589 	 * Allocate a new cursor like the old one.
590 	 */
591 	new = cur->bc_ops->dup_cursor(cur);
592 
593 	/*
594 	 * Copy the record currently in the cursor.
595 	 */
596 	new->bc_rec = cur->bc_rec;
597 
598 	/*
599 	 * For each level current, re-get the buffer and copy the ptr value.
600 	 */
601 	for (i = 0; i < new->bc_nlevels; i++) {
602 		new->bc_levels[i].ptr = cur->bc_levels[i].ptr;
603 		new->bc_levels[i].ra = cur->bc_levels[i].ra;
604 		bp = cur->bc_levels[i].bp;
605 		if (bp) {
606 			error = xfs_trans_read_buf(mp, tp,
607 					xfs_btree_buftarg(cur),
608 					xfs_buf_daddr(bp),
609 					xfs_btree_bbsize(cur), 0, &bp,
610 					cur->bc_ops->buf_ops);
611 			if (xfs_metadata_is_sick(error))
612 				xfs_btree_mark_sick(new);
613 			if (error) {
614 				xfs_btree_del_cursor(new, error);
615 				*ncur = NULL;
616 				return error;
617 			}
618 		}
619 		new->bc_levels[i].bp = bp;
620 	}
621 	*ncur = new;
622 	return 0;
623 }
624 
625 /*
626  * XFS btree block layout and addressing:
627  *
628  * There are two types of blocks in the btree: leaf and non-leaf blocks.
629  *
630  * The leaf record start with a header then followed by records containing
631  * the values.  A non-leaf block also starts with the same header, and
632  * then first contains lookup keys followed by an equal number of pointers
633  * to the btree blocks at the previous level.
634  *
635  *		+--------+-------+-------+-------+-------+-------+-------+
636  * Leaf:	| header | rec 1 | rec 2 | rec 3 | rec 4 | rec 5 | rec N |
637  *		+--------+-------+-------+-------+-------+-------+-------+
638  *
639  *		+--------+-------+-------+-------+-------+-------+-------+
640  * Non-Leaf:	| header | key 1 | key 2 | key N | ptr 1 | ptr 2 | ptr N |
641  *		+--------+-------+-------+-------+-------+-------+-------+
642  *
643  * The header is called struct xfs_btree_block for reasons better left unknown
644  * and comes in different versions for short (32bit) and long (64bit) block
645  * pointers.  The record and key structures are defined by the btree instances
646  * and opaque to the btree core.  The block pointers are simple disk endian
647  * integers, available in a short (32bit) and long (64bit) variant.
648  *
649  * The helpers below calculate the offset of a given record, key or pointer
650  * into a btree block (xfs_btree_*_offset) or return a pointer to the given
651  * record, key or pointer (xfs_btree_*_addr).  Note that all addressing
652  * inside the btree block is done using indices starting at one, not zero!
653  *
654  * If XFS_BTGEO_OVERLAPPING is set, then this btree supports keys containing
655  * overlapping intervals.  In such a tree, records are still sorted lowest to
656  * highest and indexed by the smallest key value that refers to the record.
657  * However, nodes are different: each pointer has two associated keys -- one
658  * indexing the lowest key available in the block(s) below (the same behavior
659  * as the key in a regular btree) and another indexing the highest key
660  * available in the block(s) below.  Because records are /not/ sorted by the
661  * highest key, all leaf block updates require us to compute the highest key
662  * that matches any record in the leaf and to recursively update the high keys
663  * in the nodes going further up in the tree, if necessary.  Nodes look like
664  * this:
665  *
666  *		+--------+-----+-----+-----+-----+-----+-------+-------+-----+
667  * Non-Leaf:	| header | lo1 | hi1 | lo2 | hi2 | ... | ptr 1 | ptr 2 | ... |
668  *		+--------+-----+-----+-----+-----+-----+-------+-------+-----+
669  *
670  * To perform an interval query on an overlapped tree, perform the usual
671  * depth-first search and use the low and high keys to decide if we can skip
672  * that particular node.  If a leaf node is reached, return the records that
673  * intersect the interval.  Note that an interval query may return numerous
674  * entries.  For a non-overlapped tree, simply search for the record associated
675  * with the lowest key and iterate forward until a non-matching record is
676  * found.  Section 14.3 ("Interval Trees") of _Introduction to Algorithms_ by
677  * Cormen, Leiserson, Rivest, and Stein (2nd or 3rd ed. only) discuss this in
678  * more detail.
679  *
680  * Why do we care about overlapping intervals?  Let's say you have a bunch of
681  * reverse mapping records on a reflink filesystem:
682  *
683  * 1: +- file A startblock B offset C length D -----------+
684  * 2:      +- file E startblock F offset G length H --------------+
685  * 3:      +- file I startblock F offset J length K --+
686  * 4:                                                        +- file L... --+
687  *
688  * Now say we want to map block (B+D) into file A at offset (C+D).  Ideally,
689  * we'd simply increment the length of record 1.  But how do we find the record
690  * that ends at (B+D-1) (i.e. record 1)?  A LE lookup of (B+D-1) would return
691  * record 3 because the keys are ordered first by startblock.  An interval
692  * query would return records 1 and 2 because they both overlap (B+D-1), and
693  * from that we can pick out record 1 as the appropriate left neighbor.
694  *
695  * In the non-overlapped case you can do a LE lookup and decrement the cursor
696  * because a record's interval must end before the next record.
697  */
698 
699 /*
700  * Return size of the btree block header for this btree instance.
701  */
xfs_btree_block_len(struct xfs_btree_cur * cur)702 static inline size_t xfs_btree_block_len(struct xfs_btree_cur *cur)
703 {
704 	if (cur->bc_ops->ptr_len == XFS_BTREE_LONG_PTR_LEN) {
705 		if (xfs_has_crc(cur->bc_mp))
706 			return XFS_BTREE_LBLOCK_CRC_LEN;
707 		return XFS_BTREE_LBLOCK_LEN;
708 	}
709 	if (xfs_has_crc(cur->bc_mp))
710 		return XFS_BTREE_SBLOCK_CRC_LEN;
711 	return XFS_BTREE_SBLOCK_LEN;
712 }
713 
714 /*
715  * Calculate offset of the n-th record in a btree block.
716  */
717 STATIC size_t
xfs_btree_rec_offset(struct xfs_btree_cur * cur,int n)718 xfs_btree_rec_offset(
719 	struct xfs_btree_cur	*cur,
720 	int			n)
721 {
722 	return xfs_btree_block_len(cur) +
723 		(n - 1) * cur->bc_ops->rec_len;
724 }
725 
726 /*
727  * Calculate offset of the n-th key in a btree block.
728  */
729 STATIC size_t
xfs_btree_key_offset(struct xfs_btree_cur * cur,int n)730 xfs_btree_key_offset(
731 	struct xfs_btree_cur	*cur,
732 	int			n)
733 {
734 	return xfs_btree_block_len(cur) +
735 		(n - 1) * cur->bc_ops->key_len;
736 }
737 
738 /*
739  * Calculate offset of the n-th high key in a btree block.
740  */
741 STATIC size_t
xfs_btree_high_key_offset(struct xfs_btree_cur * cur,int n)742 xfs_btree_high_key_offset(
743 	struct xfs_btree_cur	*cur,
744 	int			n)
745 {
746 	return xfs_btree_block_len(cur) +
747 		(n - 1) * cur->bc_ops->key_len + (cur->bc_ops->key_len / 2);
748 }
749 
750 /*
751  * Calculate offset of the n-th block pointer in a btree block.
752  */
753 STATIC size_t
xfs_btree_ptr_offset(struct xfs_btree_cur * cur,int n,int level)754 xfs_btree_ptr_offset(
755 	struct xfs_btree_cur	*cur,
756 	int			n,
757 	int			level)
758 {
759 	return xfs_btree_block_len(cur) +
760 		cur->bc_ops->get_maxrecs(cur, level) * cur->bc_ops->key_len +
761 		(n - 1) * cur->bc_ops->ptr_len;
762 }
763 
764 /*
765  * Return a pointer to the n-th record in the btree block.
766  */
767 union xfs_btree_rec *
xfs_btree_rec_addr(struct xfs_btree_cur * cur,int n,struct xfs_btree_block * block)768 xfs_btree_rec_addr(
769 	struct xfs_btree_cur	*cur,
770 	int			n,
771 	struct xfs_btree_block	*block)
772 {
773 	return (union xfs_btree_rec *)
774 		((char *)block + xfs_btree_rec_offset(cur, n));
775 }
776 
777 /*
778  * Return a pointer to the n-th key in the btree block.
779  */
780 union xfs_btree_key *
xfs_btree_key_addr(struct xfs_btree_cur * cur,int n,struct xfs_btree_block * block)781 xfs_btree_key_addr(
782 	struct xfs_btree_cur	*cur,
783 	int			n,
784 	struct xfs_btree_block	*block)
785 {
786 	return (union xfs_btree_key *)
787 		((char *)block + xfs_btree_key_offset(cur, n));
788 }
789 
790 /*
791  * Return a pointer to the n-th high key in the btree block.
792  */
793 union xfs_btree_key *
xfs_btree_high_key_addr(struct xfs_btree_cur * cur,int n,struct xfs_btree_block * block)794 xfs_btree_high_key_addr(
795 	struct xfs_btree_cur	*cur,
796 	int			n,
797 	struct xfs_btree_block	*block)
798 {
799 	return (union xfs_btree_key *)
800 		((char *)block + xfs_btree_high_key_offset(cur, n));
801 }
802 
803 /*
804  * Return a pointer to the n-th block pointer in the btree block.
805  */
806 union xfs_btree_ptr *
xfs_btree_ptr_addr(struct xfs_btree_cur * cur,int n,struct xfs_btree_block * block)807 xfs_btree_ptr_addr(
808 	struct xfs_btree_cur	*cur,
809 	int			n,
810 	struct xfs_btree_block	*block)
811 {
812 	int			level = xfs_btree_get_level(block);
813 
814 	ASSERT(block->bb_level != 0);
815 
816 	return (union xfs_btree_ptr *)
817 		((char *)block + xfs_btree_ptr_offset(cur, n, level));
818 }
819 
820 struct xfs_ifork *
xfs_btree_ifork_ptr(struct xfs_btree_cur * cur)821 xfs_btree_ifork_ptr(
822 	struct xfs_btree_cur	*cur)
823 {
824 	ASSERT(cur->bc_ops->type == XFS_BTREE_TYPE_INODE);
825 
826 	if (cur->bc_flags & XFS_BTREE_STAGING)
827 		return cur->bc_ino.ifake->if_fork;
828 	return xfs_ifork_ptr(cur->bc_ino.ip, cur->bc_ino.whichfork);
829 }
830 
831 /*
832  * Get the root block which is stored in the inode.
833  *
834  * For now this btree implementation assumes the btree root is always
835  * stored in the if_broot field of an inode fork.
836  */
837 STATIC struct xfs_btree_block *
xfs_btree_get_iroot(struct xfs_btree_cur * cur)838 xfs_btree_get_iroot(
839 	struct xfs_btree_cur	*cur)
840 {
841 	struct xfs_ifork	*ifp = xfs_btree_ifork_ptr(cur);
842 
843 	return (struct xfs_btree_block *)ifp->if_broot;
844 }
845 
846 /*
847  * Retrieve the block pointer from the cursor at the given level.
848  * This may be an inode btree root or from a buffer.
849  */
850 struct xfs_btree_block *		/* generic btree block pointer */
xfs_btree_get_block(struct xfs_btree_cur * cur,int level,struct xfs_buf ** bpp)851 xfs_btree_get_block(
852 	struct xfs_btree_cur	*cur,	/* btree cursor */
853 	int			level,	/* level in btree */
854 	struct xfs_buf		**bpp)	/* buffer containing the block */
855 {
856 	if (xfs_btree_at_iroot(cur, level)) {
857 		*bpp = NULL;
858 		return xfs_btree_get_iroot(cur);
859 	}
860 
861 	*bpp = cur->bc_levels[level].bp;
862 	return XFS_BUF_TO_BLOCK(*bpp);
863 }
864 
865 /*
866  * Change the cursor to point to the first record at the given level.
867  * Other levels are unaffected.
868  */
869 STATIC int				/* success=1, failure=0 */
xfs_btree_firstrec(struct xfs_btree_cur * cur,int level)870 xfs_btree_firstrec(
871 	struct xfs_btree_cur	*cur,	/* btree cursor */
872 	int			level)	/* level to change */
873 {
874 	struct xfs_btree_block	*block;	/* generic btree block pointer */
875 	struct xfs_buf		*bp;	/* buffer containing block */
876 
877 	/*
878 	 * Get the block pointer for this level.
879 	 */
880 	block = xfs_btree_get_block(cur, level, &bp);
881 	if (xfs_btree_check_block(cur, block, level, bp))
882 		return 0;
883 	/*
884 	 * It's empty, there is no such record.
885 	 */
886 	if (!block->bb_numrecs)
887 		return 0;
888 	/*
889 	 * Set the ptr value to 1, that's the first record/key.
890 	 */
891 	cur->bc_levels[level].ptr = 1;
892 	return 1;
893 }
894 
895 /*
896  * Change the cursor to point to the last record in the current block
897  * at the given level.  Other levels are unaffected.
898  */
899 STATIC int				/* success=1, failure=0 */
xfs_btree_lastrec(struct xfs_btree_cur * cur,int level)900 xfs_btree_lastrec(
901 	struct xfs_btree_cur	*cur,	/* btree cursor */
902 	int			level)	/* level to change */
903 {
904 	struct xfs_btree_block	*block;	/* generic btree block pointer */
905 	struct xfs_buf		*bp;	/* buffer containing block */
906 
907 	/*
908 	 * Get the block pointer for this level.
909 	 */
910 	block = xfs_btree_get_block(cur, level, &bp);
911 	if (xfs_btree_check_block(cur, block, level, bp))
912 		return 0;
913 	/*
914 	 * It's empty, there is no such record.
915 	 */
916 	if (!block->bb_numrecs)
917 		return 0;
918 	/*
919 	 * Set the ptr value to numrecs, that's the last record/key.
920 	 */
921 	cur->bc_levels[level].ptr = be16_to_cpu(block->bb_numrecs);
922 	return 1;
923 }
924 
925 /*
926  * Compute first and last byte offsets for the fields given.
927  * Interprets the offsets table, which contains struct field offsets.
928  */
929 void
xfs_btree_offsets(uint32_t fields,const short * offsets,int nbits,int * first,int * last)930 xfs_btree_offsets(
931 	uint32_t	fields,		/* bitmask of fields */
932 	const short	*offsets,	/* table of field offsets */
933 	int		nbits,		/* number of bits to inspect */
934 	int		*first,		/* output: first byte offset */
935 	int		*last)		/* output: last byte offset */
936 {
937 	int		i;		/* current bit number */
938 	uint32_t	imask;		/* mask for current bit number */
939 
940 	ASSERT(fields != 0);
941 	/*
942 	 * Find the lowest bit, so the first byte offset.
943 	 */
944 	for (i = 0, imask = 1u; ; i++, imask <<= 1) {
945 		if (imask & fields) {
946 			*first = offsets[i];
947 			break;
948 		}
949 	}
950 	/*
951 	 * Find the highest bit, so the last byte offset.
952 	 */
953 	for (i = nbits - 1, imask = 1u << i; ; i--, imask >>= 1) {
954 		if (imask & fields) {
955 			*last = offsets[i + 1] - 1;
956 			break;
957 		}
958 	}
959 }
960 
961 STATIC int
xfs_btree_readahead_fsblock(struct xfs_btree_cur * cur,int lr,struct xfs_btree_block * block)962 xfs_btree_readahead_fsblock(
963 	struct xfs_btree_cur	*cur,
964 	int			lr,
965 	struct xfs_btree_block	*block)
966 {
967 	struct xfs_mount	*mp = cur->bc_mp;
968 	xfs_fsblock_t		left = be64_to_cpu(block->bb_u.l.bb_leftsib);
969 	xfs_fsblock_t		right = be64_to_cpu(block->bb_u.l.bb_rightsib);
970 	int			rval = 0;
971 
972 	if ((lr & XFS_BTCUR_LEFTRA) && left != NULLFSBLOCK) {
973 		xfs_buf_readahead(mp->m_ddev_targp, XFS_FSB_TO_DADDR(mp, left),
974 				mp->m_bsize, cur->bc_ops->buf_ops);
975 		rval++;
976 	}
977 
978 	if ((lr & XFS_BTCUR_RIGHTRA) && right != NULLFSBLOCK) {
979 		xfs_buf_readahead(mp->m_ddev_targp, XFS_FSB_TO_DADDR(mp, right),
980 				mp->m_bsize, cur->bc_ops->buf_ops);
981 		rval++;
982 	}
983 
984 	return rval;
985 }
986 
987 STATIC int
xfs_btree_readahead_memblock(struct xfs_btree_cur * cur,int lr,struct xfs_btree_block * block)988 xfs_btree_readahead_memblock(
989 	struct xfs_btree_cur	*cur,
990 	int			lr,
991 	struct xfs_btree_block	*block)
992 {
993 	struct xfs_buftarg	*btp = cur->bc_mem.xfbtree->target;
994 	xfbno_t			left = be64_to_cpu(block->bb_u.l.bb_leftsib);
995 	xfbno_t			right = be64_to_cpu(block->bb_u.l.bb_rightsib);
996 	int			rval = 0;
997 
998 	if ((lr & XFS_BTCUR_LEFTRA) && left != NULLFSBLOCK) {
999 		xfs_buf_readahead(btp, xfbno_to_daddr(left), XFBNO_BBSIZE,
1000 				cur->bc_ops->buf_ops);
1001 		rval++;
1002 	}
1003 
1004 	if ((lr & XFS_BTCUR_RIGHTRA) && right != NULLFSBLOCK) {
1005 		xfs_buf_readahead(btp, xfbno_to_daddr(right), XFBNO_BBSIZE,
1006 				cur->bc_ops->buf_ops);
1007 		rval++;
1008 	}
1009 
1010 	return rval;
1011 }
1012 
1013 STATIC int
xfs_btree_readahead_agblock(struct xfs_btree_cur * cur,int lr,struct xfs_btree_block * block)1014 xfs_btree_readahead_agblock(
1015 	struct xfs_btree_cur	*cur,
1016 	int			lr,
1017 	struct xfs_btree_block	*block)
1018 {
1019 	struct xfs_mount	*mp = cur->bc_mp;
1020 	xfs_agnumber_t		agno = cur->bc_ag.pag->pag_agno;
1021 	xfs_agblock_t		left = be32_to_cpu(block->bb_u.s.bb_leftsib);
1022 	xfs_agblock_t		right = be32_to_cpu(block->bb_u.s.bb_rightsib);
1023 	int			rval = 0;
1024 
1025 	if ((lr & XFS_BTCUR_LEFTRA) && left != NULLAGBLOCK) {
1026 		xfs_buf_readahead(mp->m_ddev_targp,
1027 				XFS_AGB_TO_DADDR(mp, agno, left),
1028 				mp->m_bsize, cur->bc_ops->buf_ops);
1029 		rval++;
1030 	}
1031 
1032 	if ((lr & XFS_BTCUR_RIGHTRA) && right != NULLAGBLOCK) {
1033 		xfs_buf_readahead(mp->m_ddev_targp,
1034 				XFS_AGB_TO_DADDR(mp, agno, right),
1035 				mp->m_bsize, cur->bc_ops->buf_ops);
1036 		rval++;
1037 	}
1038 
1039 	return rval;
1040 }
1041 
1042 /*
1043  * Read-ahead btree blocks, at the given level.
1044  * Bits in lr are set from XFS_BTCUR_{LEFT,RIGHT}RA.
1045  */
1046 STATIC int
xfs_btree_readahead(struct xfs_btree_cur * cur,int lev,int lr)1047 xfs_btree_readahead(
1048 	struct xfs_btree_cur	*cur,		/* btree cursor */
1049 	int			lev,		/* level in btree */
1050 	int			lr)		/* left/right bits */
1051 {
1052 	struct xfs_btree_block	*block;
1053 
1054 	/*
1055 	 * No readahead needed if we are at the root level and the
1056 	 * btree root is stored in the inode.
1057 	 */
1058 	if (xfs_btree_at_iroot(cur, lev))
1059 		return 0;
1060 
1061 	if ((cur->bc_levels[lev].ra | lr) == cur->bc_levels[lev].ra)
1062 		return 0;
1063 
1064 	cur->bc_levels[lev].ra |= lr;
1065 	block = XFS_BUF_TO_BLOCK(cur->bc_levels[lev].bp);
1066 
1067 	switch (cur->bc_ops->type) {
1068 	case XFS_BTREE_TYPE_AG:
1069 		return xfs_btree_readahead_agblock(cur, lr, block);
1070 	case XFS_BTREE_TYPE_INODE:
1071 		return xfs_btree_readahead_fsblock(cur, lr, block);
1072 	case XFS_BTREE_TYPE_MEM:
1073 		return xfs_btree_readahead_memblock(cur, lr, block);
1074 	default:
1075 		ASSERT(0);
1076 		return 0;
1077 	}
1078 }
1079 
1080 STATIC int
xfs_btree_ptr_to_daddr(struct xfs_btree_cur * cur,const union xfs_btree_ptr * ptr,xfs_daddr_t * daddr)1081 xfs_btree_ptr_to_daddr(
1082 	struct xfs_btree_cur		*cur,
1083 	const union xfs_btree_ptr	*ptr,
1084 	xfs_daddr_t			*daddr)
1085 {
1086 	int			error;
1087 
1088 	error = xfs_btree_check_ptr(cur, ptr, 0, 1);
1089 	if (error)
1090 		return error;
1091 
1092 	switch (cur->bc_ops->type) {
1093 	case XFS_BTREE_TYPE_AG:
1094 		*daddr = XFS_AGB_TO_DADDR(cur->bc_mp, cur->bc_ag.pag->pag_agno,
1095 				be32_to_cpu(ptr->s));
1096 		break;
1097 	case XFS_BTREE_TYPE_INODE:
1098 		*daddr = XFS_FSB_TO_DADDR(cur->bc_mp, be64_to_cpu(ptr->l));
1099 		break;
1100 	case XFS_BTREE_TYPE_MEM:
1101 		*daddr = xfbno_to_daddr(be64_to_cpu(ptr->l));
1102 		break;
1103 	}
1104 	return 0;
1105 }
1106 
1107 /*
1108  * Readahead @count btree blocks at the given @ptr location.
1109  *
1110  * We don't need to care about long or short form btrees here as we have a
1111  * method of converting the ptr directly to a daddr available to us.
1112  */
1113 STATIC void
xfs_btree_readahead_ptr(struct xfs_btree_cur * cur,union xfs_btree_ptr * ptr,xfs_extlen_t count)1114 xfs_btree_readahead_ptr(
1115 	struct xfs_btree_cur	*cur,
1116 	union xfs_btree_ptr	*ptr,
1117 	xfs_extlen_t		count)
1118 {
1119 	xfs_daddr_t		daddr;
1120 
1121 	if (xfs_btree_ptr_to_daddr(cur, ptr, &daddr))
1122 		return;
1123 	xfs_buf_readahead(xfs_btree_buftarg(cur), daddr,
1124 			xfs_btree_bbsize(cur) * count,
1125 			cur->bc_ops->buf_ops);
1126 }
1127 
1128 /*
1129  * Set the buffer for level "lev" in the cursor to bp, releasing
1130  * any previous buffer.
1131  */
1132 STATIC void
xfs_btree_setbuf(struct xfs_btree_cur * cur,int lev,struct xfs_buf * bp)1133 xfs_btree_setbuf(
1134 	struct xfs_btree_cur	*cur,	/* btree cursor */
1135 	int			lev,	/* level in btree */
1136 	struct xfs_buf		*bp)	/* new buffer to set */
1137 {
1138 	struct xfs_btree_block	*b;	/* btree block */
1139 
1140 	if (cur->bc_levels[lev].bp)
1141 		xfs_trans_brelse(cur->bc_tp, cur->bc_levels[lev].bp);
1142 	cur->bc_levels[lev].bp = bp;
1143 	cur->bc_levels[lev].ra = 0;
1144 
1145 	b = XFS_BUF_TO_BLOCK(bp);
1146 	if (cur->bc_ops->ptr_len == XFS_BTREE_LONG_PTR_LEN) {
1147 		if (b->bb_u.l.bb_leftsib == cpu_to_be64(NULLFSBLOCK))
1148 			cur->bc_levels[lev].ra |= XFS_BTCUR_LEFTRA;
1149 		if (b->bb_u.l.bb_rightsib == cpu_to_be64(NULLFSBLOCK))
1150 			cur->bc_levels[lev].ra |= XFS_BTCUR_RIGHTRA;
1151 	} else {
1152 		if (b->bb_u.s.bb_leftsib == cpu_to_be32(NULLAGBLOCK))
1153 			cur->bc_levels[lev].ra |= XFS_BTCUR_LEFTRA;
1154 		if (b->bb_u.s.bb_rightsib == cpu_to_be32(NULLAGBLOCK))
1155 			cur->bc_levels[lev].ra |= XFS_BTCUR_RIGHTRA;
1156 	}
1157 }
1158 
1159 bool
xfs_btree_ptr_is_null(struct xfs_btree_cur * cur,const union xfs_btree_ptr * ptr)1160 xfs_btree_ptr_is_null(
1161 	struct xfs_btree_cur		*cur,
1162 	const union xfs_btree_ptr	*ptr)
1163 {
1164 	if (cur->bc_ops->ptr_len == XFS_BTREE_LONG_PTR_LEN)
1165 		return ptr->l == cpu_to_be64(NULLFSBLOCK);
1166 	else
1167 		return ptr->s == cpu_to_be32(NULLAGBLOCK);
1168 }
1169 
1170 void
xfs_btree_set_ptr_null(struct xfs_btree_cur * cur,union xfs_btree_ptr * ptr)1171 xfs_btree_set_ptr_null(
1172 	struct xfs_btree_cur	*cur,
1173 	union xfs_btree_ptr	*ptr)
1174 {
1175 	if (cur->bc_ops->ptr_len == XFS_BTREE_LONG_PTR_LEN)
1176 		ptr->l = cpu_to_be64(NULLFSBLOCK);
1177 	else
1178 		ptr->s = cpu_to_be32(NULLAGBLOCK);
1179 }
1180 
1181 static inline bool
xfs_btree_ptrs_equal(struct xfs_btree_cur * cur,union xfs_btree_ptr * ptr1,union xfs_btree_ptr * ptr2)1182 xfs_btree_ptrs_equal(
1183 	struct xfs_btree_cur		*cur,
1184 	union xfs_btree_ptr		*ptr1,
1185 	union xfs_btree_ptr		*ptr2)
1186 {
1187 	if (cur->bc_ops->ptr_len == XFS_BTREE_LONG_PTR_LEN)
1188 		return ptr1->l == ptr2->l;
1189 	return ptr1->s == ptr2->s;
1190 }
1191 
1192 /*
1193  * Get/set/init sibling pointers
1194  */
1195 void
xfs_btree_get_sibling(struct xfs_btree_cur * cur,struct xfs_btree_block * block,union xfs_btree_ptr * ptr,int lr)1196 xfs_btree_get_sibling(
1197 	struct xfs_btree_cur	*cur,
1198 	struct xfs_btree_block	*block,
1199 	union xfs_btree_ptr	*ptr,
1200 	int			lr)
1201 {
1202 	ASSERT(lr == XFS_BB_LEFTSIB || lr == XFS_BB_RIGHTSIB);
1203 
1204 	if (cur->bc_ops->ptr_len == XFS_BTREE_LONG_PTR_LEN) {
1205 		if (lr == XFS_BB_RIGHTSIB)
1206 			ptr->l = block->bb_u.l.bb_rightsib;
1207 		else
1208 			ptr->l = block->bb_u.l.bb_leftsib;
1209 	} else {
1210 		if (lr == XFS_BB_RIGHTSIB)
1211 			ptr->s = block->bb_u.s.bb_rightsib;
1212 		else
1213 			ptr->s = block->bb_u.s.bb_leftsib;
1214 	}
1215 }
1216 
1217 void
xfs_btree_set_sibling(struct xfs_btree_cur * cur,struct xfs_btree_block * block,const union xfs_btree_ptr * ptr,int lr)1218 xfs_btree_set_sibling(
1219 	struct xfs_btree_cur		*cur,
1220 	struct xfs_btree_block		*block,
1221 	const union xfs_btree_ptr	*ptr,
1222 	int				lr)
1223 {
1224 	ASSERT(lr == XFS_BB_LEFTSIB || lr == XFS_BB_RIGHTSIB);
1225 
1226 	if (cur->bc_ops->ptr_len == XFS_BTREE_LONG_PTR_LEN) {
1227 		if (lr == XFS_BB_RIGHTSIB)
1228 			block->bb_u.l.bb_rightsib = ptr->l;
1229 		else
1230 			block->bb_u.l.bb_leftsib = ptr->l;
1231 	} else {
1232 		if (lr == XFS_BB_RIGHTSIB)
1233 			block->bb_u.s.bb_rightsib = ptr->s;
1234 		else
1235 			block->bb_u.s.bb_leftsib = ptr->s;
1236 	}
1237 }
1238 
1239 static void
__xfs_btree_init_block(struct xfs_mount * mp,struct xfs_btree_block * buf,const struct xfs_btree_ops * ops,xfs_daddr_t blkno,__u16 level,__u16 numrecs,__u64 owner)1240 __xfs_btree_init_block(
1241 	struct xfs_mount	*mp,
1242 	struct xfs_btree_block	*buf,
1243 	const struct xfs_btree_ops *ops,
1244 	xfs_daddr_t		blkno,
1245 	__u16			level,
1246 	__u16			numrecs,
1247 	__u64			owner)
1248 {
1249 	bool			crc = xfs_has_crc(mp);
1250 	__u32			magic = xfs_btree_magic(mp, ops);
1251 
1252 	buf->bb_magic = cpu_to_be32(magic);
1253 	buf->bb_level = cpu_to_be16(level);
1254 	buf->bb_numrecs = cpu_to_be16(numrecs);
1255 
1256 	if (ops->ptr_len == XFS_BTREE_LONG_PTR_LEN) {
1257 		buf->bb_u.l.bb_leftsib = cpu_to_be64(NULLFSBLOCK);
1258 		buf->bb_u.l.bb_rightsib = cpu_to_be64(NULLFSBLOCK);
1259 		if (crc) {
1260 			buf->bb_u.l.bb_blkno = cpu_to_be64(blkno);
1261 			buf->bb_u.l.bb_owner = cpu_to_be64(owner);
1262 			uuid_copy(&buf->bb_u.l.bb_uuid, &mp->m_sb.sb_meta_uuid);
1263 			buf->bb_u.l.bb_pad = 0;
1264 			buf->bb_u.l.bb_lsn = 0;
1265 		}
1266 	} else {
1267 		buf->bb_u.s.bb_leftsib = cpu_to_be32(NULLAGBLOCK);
1268 		buf->bb_u.s.bb_rightsib = cpu_to_be32(NULLAGBLOCK);
1269 		if (crc) {
1270 			buf->bb_u.s.bb_blkno = cpu_to_be64(blkno);
1271 			/* owner is a 32 bit value on short blocks */
1272 			buf->bb_u.s.bb_owner = cpu_to_be32((__u32)owner);
1273 			uuid_copy(&buf->bb_u.s.bb_uuid, &mp->m_sb.sb_meta_uuid);
1274 			buf->bb_u.s.bb_lsn = 0;
1275 		}
1276 	}
1277 }
1278 
1279 void
xfs_btree_init_block(struct xfs_mount * mp,struct xfs_btree_block * block,const struct xfs_btree_ops * ops,__u16 level,__u16 numrecs,__u64 owner)1280 xfs_btree_init_block(
1281 	struct xfs_mount	*mp,
1282 	struct xfs_btree_block	*block,
1283 	const struct xfs_btree_ops *ops,
1284 	__u16			level,
1285 	__u16			numrecs,
1286 	__u64			owner)
1287 {
1288 	__xfs_btree_init_block(mp, block, ops, XFS_BUF_DADDR_NULL, level,
1289 			numrecs, owner);
1290 }
1291 
1292 void
xfs_btree_init_buf(struct xfs_mount * mp,struct xfs_buf * bp,const struct xfs_btree_ops * ops,__u16 level,__u16 numrecs,__u64 owner)1293 xfs_btree_init_buf(
1294 	struct xfs_mount		*mp,
1295 	struct xfs_buf			*bp,
1296 	const struct xfs_btree_ops	*ops,
1297 	__u16				level,
1298 	__u16				numrecs,
1299 	__u64				owner)
1300 {
1301 	__xfs_btree_init_block(mp, XFS_BUF_TO_BLOCK(bp), ops,
1302 			xfs_buf_daddr(bp), level, numrecs, owner);
1303 	bp->b_ops = ops->buf_ops;
1304 }
1305 
1306 static inline __u64
xfs_btree_owner(struct xfs_btree_cur * cur)1307 xfs_btree_owner(
1308 	struct xfs_btree_cur    *cur)
1309 {
1310 	switch (cur->bc_ops->type) {
1311 	case XFS_BTREE_TYPE_MEM:
1312 		return cur->bc_mem.xfbtree->owner;
1313 	case XFS_BTREE_TYPE_INODE:
1314 		return cur->bc_ino.ip->i_ino;
1315 	case XFS_BTREE_TYPE_AG:
1316 		return cur->bc_ag.pag->pag_agno;
1317 	default:
1318 		ASSERT(0);
1319 		return 0;
1320 	}
1321 }
1322 
1323 void
xfs_btree_init_block_cur(struct xfs_btree_cur * cur,struct xfs_buf * bp,int level,int numrecs)1324 xfs_btree_init_block_cur(
1325 	struct xfs_btree_cur	*cur,
1326 	struct xfs_buf		*bp,
1327 	int			level,
1328 	int			numrecs)
1329 {
1330 	xfs_btree_init_buf(cur->bc_mp, bp, cur->bc_ops, level, numrecs,
1331 			xfs_btree_owner(cur));
1332 }
1333 
1334 STATIC void
xfs_btree_buf_to_ptr(struct xfs_btree_cur * cur,struct xfs_buf * bp,union xfs_btree_ptr * ptr)1335 xfs_btree_buf_to_ptr(
1336 	struct xfs_btree_cur	*cur,
1337 	struct xfs_buf		*bp,
1338 	union xfs_btree_ptr	*ptr)
1339 {
1340 	switch (cur->bc_ops->type) {
1341 	case XFS_BTREE_TYPE_AG:
1342 		ptr->s = cpu_to_be32(xfs_daddr_to_agbno(cur->bc_mp,
1343 					xfs_buf_daddr(bp)));
1344 		break;
1345 	case XFS_BTREE_TYPE_INODE:
1346 		ptr->l = cpu_to_be64(XFS_DADDR_TO_FSB(cur->bc_mp,
1347 					xfs_buf_daddr(bp)));
1348 		break;
1349 	case XFS_BTREE_TYPE_MEM:
1350 		ptr->l = cpu_to_be64(xfs_daddr_to_xfbno(xfs_buf_daddr(bp)));
1351 		break;
1352 	}
1353 }
1354 
1355 static inline void
xfs_btree_set_refs(struct xfs_btree_cur * cur,struct xfs_buf * bp)1356 xfs_btree_set_refs(
1357 	struct xfs_btree_cur	*cur,
1358 	struct xfs_buf		*bp)
1359 {
1360 	xfs_buf_set_ref(bp, cur->bc_ops->lru_refs);
1361 }
1362 
1363 int
xfs_btree_get_buf_block(struct xfs_btree_cur * cur,const union xfs_btree_ptr * ptr,struct xfs_btree_block ** block,struct xfs_buf ** bpp)1364 xfs_btree_get_buf_block(
1365 	struct xfs_btree_cur		*cur,
1366 	const union xfs_btree_ptr	*ptr,
1367 	struct xfs_btree_block		**block,
1368 	struct xfs_buf			**bpp)
1369 {
1370 	xfs_daddr_t			d;
1371 	int				error;
1372 
1373 	error = xfs_btree_ptr_to_daddr(cur, ptr, &d);
1374 	if (error)
1375 		return error;
1376 	error = xfs_trans_get_buf(cur->bc_tp, xfs_btree_buftarg(cur), d,
1377 			xfs_btree_bbsize(cur), 0, bpp);
1378 	if (error)
1379 		return error;
1380 
1381 	(*bpp)->b_ops = cur->bc_ops->buf_ops;
1382 	*block = XFS_BUF_TO_BLOCK(*bpp);
1383 	return 0;
1384 }
1385 
1386 /*
1387  * Read in the buffer at the given ptr and return the buffer and
1388  * the block pointer within the buffer.
1389  */
1390 int
xfs_btree_read_buf_block(struct xfs_btree_cur * cur,const union xfs_btree_ptr * ptr,int flags,struct xfs_btree_block ** block,struct xfs_buf ** bpp)1391 xfs_btree_read_buf_block(
1392 	struct xfs_btree_cur		*cur,
1393 	const union xfs_btree_ptr	*ptr,
1394 	int				flags,
1395 	struct xfs_btree_block		**block,
1396 	struct xfs_buf			**bpp)
1397 {
1398 	struct xfs_mount	*mp = cur->bc_mp;
1399 	xfs_daddr_t		d;
1400 	int			error;
1401 
1402 	/* need to sort out how callers deal with failures first */
1403 	ASSERT(!(flags & XBF_TRYLOCK));
1404 
1405 	error = xfs_btree_ptr_to_daddr(cur, ptr, &d);
1406 	if (error)
1407 		return error;
1408 	error = xfs_trans_read_buf(mp, cur->bc_tp, xfs_btree_buftarg(cur), d,
1409 			xfs_btree_bbsize(cur), flags, bpp,
1410 			cur->bc_ops->buf_ops);
1411 	if (xfs_metadata_is_sick(error))
1412 		xfs_btree_mark_sick(cur);
1413 	if (error)
1414 		return error;
1415 
1416 	xfs_btree_set_refs(cur, *bpp);
1417 	*block = XFS_BUF_TO_BLOCK(*bpp);
1418 	return 0;
1419 }
1420 
1421 /*
1422  * Copy keys from one btree block to another.
1423  */
1424 void
xfs_btree_copy_keys(struct xfs_btree_cur * cur,union xfs_btree_key * dst_key,const union xfs_btree_key * src_key,int numkeys)1425 xfs_btree_copy_keys(
1426 	struct xfs_btree_cur		*cur,
1427 	union xfs_btree_key		*dst_key,
1428 	const union xfs_btree_key	*src_key,
1429 	int				numkeys)
1430 {
1431 	ASSERT(numkeys >= 0);
1432 	memcpy(dst_key, src_key, numkeys * cur->bc_ops->key_len);
1433 }
1434 
1435 /*
1436  * Copy records from one btree block to another.
1437  */
1438 STATIC void
xfs_btree_copy_recs(struct xfs_btree_cur * cur,union xfs_btree_rec * dst_rec,union xfs_btree_rec * src_rec,int numrecs)1439 xfs_btree_copy_recs(
1440 	struct xfs_btree_cur	*cur,
1441 	union xfs_btree_rec	*dst_rec,
1442 	union xfs_btree_rec	*src_rec,
1443 	int			numrecs)
1444 {
1445 	ASSERT(numrecs >= 0);
1446 	memcpy(dst_rec, src_rec, numrecs * cur->bc_ops->rec_len);
1447 }
1448 
1449 /*
1450  * Copy block pointers from one btree block to another.
1451  */
1452 void
xfs_btree_copy_ptrs(struct xfs_btree_cur * cur,union xfs_btree_ptr * dst_ptr,const union xfs_btree_ptr * src_ptr,int numptrs)1453 xfs_btree_copy_ptrs(
1454 	struct xfs_btree_cur	*cur,
1455 	union xfs_btree_ptr	*dst_ptr,
1456 	const union xfs_btree_ptr *src_ptr,
1457 	int			numptrs)
1458 {
1459 	ASSERT(numptrs >= 0);
1460 	memcpy(dst_ptr, src_ptr, numptrs * cur->bc_ops->ptr_len);
1461 }
1462 
1463 /*
1464  * Shift keys one index left/right inside a single btree block.
1465  */
1466 STATIC void
xfs_btree_shift_keys(struct xfs_btree_cur * cur,union xfs_btree_key * key,int dir,int numkeys)1467 xfs_btree_shift_keys(
1468 	struct xfs_btree_cur	*cur,
1469 	union xfs_btree_key	*key,
1470 	int			dir,
1471 	int			numkeys)
1472 {
1473 	char			*dst_key;
1474 
1475 	ASSERT(numkeys >= 0);
1476 	ASSERT(dir == 1 || dir == -1);
1477 
1478 	dst_key = (char *)key + (dir * cur->bc_ops->key_len);
1479 	memmove(dst_key, key, numkeys * cur->bc_ops->key_len);
1480 }
1481 
1482 /*
1483  * Shift records one index left/right inside a single btree block.
1484  */
1485 STATIC void
xfs_btree_shift_recs(struct xfs_btree_cur * cur,union xfs_btree_rec * rec,int dir,int numrecs)1486 xfs_btree_shift_recs(
1487 	struct xfs_btree_cur	*cur,
1488 	union xfs_btree_rec	*rec,
1489 	int			dir,
1490 	int			numrecs)
1491 {
1492 	char			*dst_rec;
1493 
1494 	ASSERT(numrecs >= 0);
1495 	ASSERT(dir == 1 || dir == -1);
1496 
1497 	dst_rec = (char *)rec + (dir * cur->bc_ops->rec_len);
1498 	memmove(dst_rec, rec, numrecs * cur->bc_ops->rec_len);
1499 }
1500 
1501 /*
1502  * Shift block pointers one index left/right inside a single btree block.
1503  */
1504 STATIC void
xfs_btree_shift_ptrs(struct xfs_btree_cur * cur,union xfs_btree_ptr * ptr,int dir,int numptrs)1505 xfs_btree_shift_ptrs(
1506 	struct xfs_btree_cur	*cur,
1507 	union xfs_btree_ptr	*ptr,
1508 	int			dir,
1509 	int			numptrs)
1510 {
1511 	char			*dst_ptr;
1512 
1513 	ASSERT(numptrs >= 0);
1514 	ASSERT(dir == 1 || dir == -1);
1515 
1516 	dst_ptr = (char *)ptr + (dir * cur->bc_ops->ptr_len);
1517 	memmove(dst_ptr, ptr, numptrs * cur->bc_ops->ptr_len);
1518 }
1519 
1520 /*
1521  * Log key values from the btree block.
1522  */
1523 STATIC void
xfs_btree_log_keys(struct xfs_btree_cur * cur,struct xfs_buf * bp,int first,int last)1524 xfs_btree_log_keys(
1525 	struct xfs_btree_cur	*cur,
1526 	struct xfs_buf		*bp,
1527 	int			first,
1528 	int			last)
1529 {
1530 
1531 	if (bp) {
1532 		xfs_trans_buf_set_type(cur->bc_tp, bp, XFS_BLFT_BTREE_BUF);
1533 		xfs_trans_log_buf(cur->bc_tp, bp,
1534 				  xfs_btree_key_offset(cur, first),
1535 				  xfs_btree_key_offset(cur, last + 1) - 1);
1536 	} else {
1537 		xfs_trans_log_inode(cur->bc_tp, cur->bc_ino.ip,
1538 				xfs_ilog_fbroot(cur->bc_ino.whichfork));
1539 	}
1540 }
1541 
1542 /*
1543  * Log record values from the btree block.
1544  */
1545 void
xfs_btree_log_recs(struct xfs_btree_cur * cur,struct xfs_buf * bp,int first,int last)1546 xfs_btree_log_recs(
1547 	struct xfs_btree_cur	*cur,
1548 	struct xfs_buf		*bp,
1549 	int			first,
1550 	int			last)
1551 {
1552 
1553 	xfs_trans_buf_set_type(cur->bc_tp, bp, XFS_BLFT_BTREE_BUF);
1554 	xfs_trans_log_buf(cur->bc_tp, bp,
1555 			  xfs_btree_rec_offset(cur, first),
1556 			  xfs_btree_rec_offset(cur, last + 1) - 1);
1557 
1558 }
1559 
1560 /*
1561  * Log block pointer fields from a btree block (nonleaf).
1562  */
1563 STATIC void
xfs_btree_log_ptrs(struct xfs_btree_cur * cur,struct xfs_buf * bp,int first,int last)1564 xfs_btree_log_ptrs(
1565 	struct xfs_btree_cur	*cur,	/* btree cursor */
1566 	struct xfs_buf		*bp,	/* buffer containing btree block */
1567 	int			first,	/* index of first pointer to log */
1568 	int			last)	/* index of last pointer to log */
1569 {
1570 
1571 	if (bp) {
1572 		struct xfs_btree_block	*block = XFS_BUF_TO_BLOCK(bp);
1573 		int			level = xfs_btree_get_level(block);
1574 
1575 		xfs_trans_buf_set_type(cur->bc_tp, bp, XFS_BLFT_BTREE_BUF);
1576 		xfs_trans_log_buf(cur->bc_tp, bp,
1577 				xfs_btree_ptr_offset(cur, first, level),
1578 				xfs_btree_ptr_offset(cur, last + 1, level) - 1);
1579 	} else {
1580 		xfs_trans_log_inode(cur->bc_tp, cur->bc_ino.ip,
1581 			xfs_ilog_fbroot(cur->bc_ino.whichfork));
1582 	}
1583 
1584 }
1585 
1586 /*
1587  * Log fields from a btree block header.
1588  */
1589 void
xfs_btree_log_block(struct xfs_btree_cur * cur,struct xfs_buf * bp,uint32_t fields)1590 xfs_btree_log_block(
1591 	struct xfs_btree_cur	*cur,	/* btree cursor */
1592 	struct xfs_buf		*bp,	/* buffer containing btree block */
1593 	uint32_t		fields)	/* mask of fields: XFS_BB_... */
1594 {
1595 	int			first;	/* first byte offset logged */
1596 	int			last;	/* last byte offset logged */
1597 	static const short	soffsets[] = {	/* table of offsets (short) */
1598 		offsetof(struct xfs_btree_block, bb_magic),
1599 		offsetof(struct xfs_btree_block, bb_level),
1600 		offsetof(struct xfs_btree_block, bb_numrecs),
1601 		offsetof(struct xfs_btree_block, bb_u.s.bb_leftsib),
1602 		offsetof(struct xfs_btree_block, bb_u.s.bb_rightsib),
1603 		offsetof(struct xfs_btree_block, bb_u.s.bb_blkno),
1604 		offsetof(struct xfs_btree_block, bb_u.s.bb_lsn),
1605 		offsetof(struct xfs_btree_block, bb_u.s.bb_uuid),
1606 		offsetof(struct xfs_btree_block, bb_u.s.bb_owner),
1607 		offsetof(struct xfs_btree_block, bb_u.s.bb_crc),
1608 		XFS_BTREE_SBLOCK_CRC_LEN
1609 	};
1610 	static const short	loffsets[] = {	/* table of offsets (long) */
1611 		offsetof(struct xfs_btree_block, bb_magic),
1612 		offsetof(struct xfs_btree_block, bb_level),
1613 		offsetof(struct xfs_btree_block, bb_numrecs),
1614 		offsetof(struct xfs_btree_block, bb_u.l.bb_leftsib),
1615 		offsetof(struct xfs_btree_block, bb_u.l.bb_rightsib),
1616 		offsetof(struct xfs_btree_block, bb_u.l.bb_blkno),
1617 		offsetof(struct xfs_btree_block, bb_u.l.bb_lsn),
1618 		offsetof(struct xfs_btree_block, bb_u.l.bb_uuid),
1619 		offsetof(struct xfs_btree_block, bb_u.l.bb_owner),
1620 		offsetof(struct xfs_btree_block, bb_u.l.bb_crc),
1621 		offsetof(struct xfs_btree_block, bb_u.l.bb_pad),
1622 		XFS_BTREE_LBLOCK_CRC_LEN
1623 	};
1624 
1625 	if (bp) {
1626 		int nbits;
1627 
1628 		if (xfs_has_crc(cur->bc_mp)) {
1629 			/*
1630 			 * We don't log the CRC when updating a btree
1631 			 * block but instead recreate it during log
1632 			 * recovery.  As the log buffers have checksums
1633 			 * of their own this is safe and avoids logging a crc
1634 			 * update in a lot of places.
1635 			 */
1636 			if (fields == XFS_BB_ALL_BITS)
1637 				fields = XFS_BB_ALL_BITS_CRC;
1638 			nbits = XFS_BB_NUM_BITS_CRC;
1639 		} else {
1640 			nbits = XFS_BB_NUM_BITS;
1641 		}
1642 		xfs_btree_offsets(fields,
1643 				  (cur->bc_ops->ptr_len == XFS_BTREE_LONG_PTR_LEN) ?
1644 					loffsets : soffsets,
1645 				  nbits, &first, &last);
1646 		xfs_trans_buf_set_type(cur->bc_tp, bp, XFS_BLFT_BTREE_BUF);
1647 		xfs_trans_log_buf(cur->bc_tp, bp, first, last);
1648 	} else {
1649 		xfs_trans_log_inode(cur->bc_tp, cur->bc_ino.ip,
1650 			xfs_ilog_fbroot(cur->bc_ino.whichfork));
1651 	}
1652 }
1653 
1654 /*
1655  * Increment cursor by one record at the level.
1656  * For nonzero levels the leaf-ward information is untouched.
1657  */
1658 int						/* error */
xfs_btree_increment(struct xfs_btree_cur * cur,int level,int * stat)1659 xfs_btree_increment(
1660 	struct xfs_btree_cur	*cur,
1661 	int			level,
1662 	int			*stat)		/* success/failure */
1663 {
1664 	struct xfs_btree_block	*block;
1665 	union xfs_btree_ptr	ptr;
1666 	struct xfs_buf		*bp;
1667 	int			error;		/* error return value */
1668 	int			lev;
1669 
1670 	ASSERT(level < cur->bc_nlevels);
1671 
1672 	/* Read-ahead to the right at this level. */
1673 	xfs_btree_readahead(cur, level, XFS_BTCUR_RIGHTRA);
1674 
1675 	/* Get a pointer to the btree block. */
1676 	block = xfs_btree_get_block(cur, level, &bp);
1677 
1678 #ifdef DEBUG
1679 	error = xfs_btree_check_block(cur, block, level, bp);
1680 	if (error)
1681 		goto error0;
1682 #endif
1683 
1684 	/* We're done if we remain in the block after the increment. */
1685 	if (++cur->bc_levels[level].ptr <= xfs_btree_get_numrecs(block))
1686 		goto out1;
1687 
1688 	/* Fail if we just went off the right edge of the tree. */
1689 	xfs_btree_get_sibling(cur, block, &ptr, XFS_BB_RIGHTSIB);
1690 	if (xfs_btree_ptr_is_null(cur, &ptr))
1691 		goto out0;
1692 
1693 	XFS_BTREE_STATS_INC(cur, increment);
1694 
1695 	/*
1696 	 * March up the tree incrementing pointers.
1697 	 * Stop when we don't go off the right edge of a block.
1698 	 */
1699 	for (lev = level + 1; lev < cur->bc_nlevels; lev++) {
1700 		block = xfs_btree_get_block(cur, lev, &bp);
1701 
1702 #ifdef DEBUG
1703 		error = xfs_btree_check_block(cur, block, lev, bp);
1704 		if (error)
1705 			goto error0;
1706 #endif
1707 
1708 		if (++cur->bc_levels[lev].ptr <= xfs_btree_get_numrecs(block))
1709 			break;
1710 
1711 		/* Read-ahead the right block for the next loop. */
1712 		xfs_btree_readahead(cur, lev, XFS_BTCUR_RIGHTRA);
1713 	}
1714 
1715 	/*
1716 	 * If we went off the root then we are either seriously
1717 	 * confused or have the tree root in an inode.
1718 	 */
1719 	if (lev == cur->bc_nlevels) {
1720 		if (cur->bc_ops->type == XFS_BTREE_TYPE_INODE)
1721 			goto out0;
1722 		ASSERT(0);
1723 		xfs_btree_mark_sick(cur);
1724 		error = -EFSCORRUPTED;
1725 		goto error0;
1726 	}
1727 	ASSERT(lev < cur->bc_nlevels);
1728 
1729 	/*
1730 	 * Now walk back down the tree, fixing up the cursor's buffer
1731 	 * pointers and key numbers.
1732 	 */
1733 	for (block = xfs_btree_get_block(cur, lev, &bp); lev > level; ) {
1734 		union xfs_btree_ptr	*ptrp;
1735 
1736 		ptrp = xfs_btree_ptr_addr(cur, cur->bc_levels[lev].ptr, block);
1737 		--lev;
1738 		error = xfs_btree_read_buf_block(cur, ptrp, 0, &block, &bp);
1739 		if (error)
1740 			goto error0;
1741 
1742 		xfs_btree_setbuf(cur, lev, bp);
1743 		cur->bc_levels[lev].ptr = 1;
1744 	}
1745 out1:
1746 	*stat = 1;
1747 	return 0;
1748 
1749 out0:
1750 	*stat = 0;
1751 	return 0;
1752 
1753 error0:
1754 	return error;
1755 }
1756 
1757 /*
1758  * Decrement cursor by one record at the level.
1759  * For nonzero levels the leaf-ward information is untouched.
1760  */
1761 int						/* error */
xfs_btree_decrement(struct xfs_btree_cur * cur,int level,int * stat)1762 xfs_btree_decrement(
1763 	struct xfs_btree_cur	*cur,
1764 	int			level,
1765 	int			*stat)		/* success/failure */
1766 {
1767 	struct xfs_btree_block	*block;
1768 	struct xfs_buf		*bp;
1769 	int			error;		/* error return value */
1770 	int			lev;
1771 	union xfs_btree_ptr	ptr;
1772 
1773 	ASSERT(level < cur->bc_nlevels);
1774 
1775 	/* Read-ahead to the left at this level. */
1776 	xfs_btree_readahead(cur, level, XFS_BTCUR_LEFTRA);
1777 
1778 	/* We're done if we remain in the block after the decrement. */
1779 	if (--cur->bc_levels[level].ptr > 0)
1780 		goto out1;
1781 
1782 	/* Get a pointer to the btree block. */
1783 	block = xfs_btree_get_block(cur, level, &bp);
1784 
1785 #ifdef DEBUG
1786 	error = xfs_btree_check_block(cur, block, level, bp);
1787 	if (error)
1788 		goto error0;
1789 #endif
1790 
1791 	/* Fail if we just went off the left edge of the tree. */
1792 	xfs_btree_get_sibling(cur, block, &ptr, XFS_BB_LEFTSIB);
1793 	if (xfs_btree_ptr_is_null(cur, &ptr))
1794 		goto out0;
1795 
1796 	XFS_BTREE_STATS_INC(cur, decrement);
1797 
1798 	/*
1799 	 * March up the tree decrementing pointers.
1800 	 * Stop when we don't go off the left edge of a block.
1801 	 */
1802 	for (lev = level + 1; lev < cur->bc_nlevels; lev++) {
1803 		if (--cur->bc_levels[lev].ptr > 0)
1804 			break;
1805 		/* Read-ahead the left block for the next loop. */
1806 		xfs_btree_readahead(cur, lev, XFS_BTCUR_LEFTRA);
1807 	}
1808 
1809 	/*
1810 	 * If we went off the root then we are seriously confused.
1811 	 * or the root of the tree is in an inode.
1812 	 */
1813 	if (lev == cur->bc_nlevels) {
1814 		if (cur->bc_ops->type == XFS_BTREE_TYPE_INODE)
1815 			goto out0;
1816 		ASSERT(0);
1817 		xfs_btree_mark_sick(cur);
1818 		error = -EFSCORRUPTED;
1819 		goto error0;
1820 	}
1821 	ASSERT(lev < cur->bc_nlevels);
1822 
1823 	/*
1824 	 * Now walk back down the tree, fixing up the cursor's buffer
1825 	 * pointers and key numbers.
1826 	 */
1827 	for (block = xfs_btree_get_block(cur, lev, &bp); lev > level; ) {
1828 		union xfs_btree_ptr	*ptrp;
1829 
1830 		ptrp = xfs_btree_ptr_addr(cur, cur->bc_levels[lev].ptr, block);
1831 		--lev;
1832 		error = xfs_btree_read_buf_block(cur, ptrp, 0, &block, &bp);
1833 		if (error)
1834 			goto error0;
1835 		xfs_btree_setbuf(cur, lev, bp);
1836 		cur->bc_levels[lev].ptr = xfs_btree_get_numrecs(block);
1837 	}
1838 out1:
1839 	*stat = 1;
1840 	return 0;
1841 
1842 out0:
1843 	*stat = 0;
1844 	return 0;
1845 
1846 error0:
1847 	return error;
1848 }
1849 
1850 /*
1851  * Check the btree block owner now that we have the context to know who the
1852  * real owner is.
1853  */
1854 static inline xfs_failaddr_t
xfs_btree_check_block_owner(struct xfs_btree_cur * cur,struct xfs_btree_block * block)1855 xfs_btree_check_block_owner(
1856 	struct xfs_btree_cur	*cur,
1857 	struct xfs_btree_block	*block)
1858 {
1859 	__u64			owner;
1860 
1861 	if (!xfs_has_crc(cur->bc_mp) ||
1862 	    (cur->bc_flags & XFS_BTREE_BMBT_INVALID_OWNER))
1863 		return NULL;
1864 
1865 	owner = xfs_btree_owner(cur);
1866 	if (cur->bc_ops->ptr_len == XFS_BTREE_LONG_PTR_LEN) {
1867 		if (be64_to_cpu(block->bb_u.l.bb_owner) != owner)
1868 			return __this_address;
1869 	} else {
1870 		if (be32_to_cpu(block->bb_u.s.bb_owner) != owner)
1871 			return __this_address;
1872 	}
1873 
1874 	return NULL;
1875 }
1876 
1877 int
xfs_btree_lookup_get_block(struct xfs_btree_cur * cur,int level,const union xfs_btree_ptr * pp,struct xfs_btree_block ** blkp)1878 xfs_btree_lookup_get_block(
1879 	struct xfs_btree_cur		*cur,	/* btree cursor */
1880 	int				level,	/* level in the btree */
1881 	const union xfs_btree_ptr	*pp,	/* ptr to btree block */
1882 	struct xfs_btree_block		**blkp) /* return btree block */
1883 {
1884 	struct xfs_buf		*bp;	/* buffer pointer for btree block */
1885 	xfs_daddr_t		daddr;
1886 	int			error = 0;
1887 
1888 	/* special case the root block if in an inode */
1889 	if (xfs_btree_at_iroot(cur, level)) {
1890 		*blkp = xfs_btree_get_iroot(cur);
1891 		return 0;
1892 	}
1893 
1894 	/*
1895 	 * If the old buffer at this level for the disk address we are
1896 	 * looking for re-use it.
1897 	 *
1898 	 * Otherwise throw it away and get a new one.
1899 	 */
1900 	bp = cur->bc_levels[level].bp;
1901 	error = xfs_btree_ptr_to_daddr(cur, pp, &daddr);
1902 	if (error)
1903 		return error;
1904 	if (bp && xfs_buf_daddr(bp) == daddr) {
1905 		*blkp = XFS_BUF_TO_BLOCK(bp);
1906 		return 0;
1907 	}
1908 
1909 	error = xfs_btree_read_buf_block(cur, pp, 0, blkp, &bp);
1910 	if (error)
1911 		return error;
1912 
1913 	/* Check the inode owner since the verifiers don't. */
1914 	if (xfs_btree_check_block_owner(cur, *blkp) != NULL)
1915 		goto out_bad;
1916 
1917 	/* Did we get the level we were looking for? */
1918 	if (be16_to_cpu((*blkp)->bb_level) != level)
1919 		goto out_bad;
1920 
1921 	/* Check that internal nodes have at least one record. */
1922 	if (level != 0 && be16_to_cpu((*blkp)->bb_numrecs) == 0)
1923 		goto out_bad;
1924 
1925 	xfs_btree_setbuf(cur, level, bp);
1926 	return 0;
1927 
1928 out_bad:
1929 	*blkp = NULL;
1930 	xfs_buf_mark_corrupt(bp);
1931 	xfs_trans_brelse(cur->bc_tp, bp);
1932 	xfs_btree_mark_sick(cur);
1933 	return -EFSCORRUPTED;
1934 }
1935 
1936 /*
1937  * Get current search key.  For level 0 we don't actually have a key
1938  * structure so we make one up from the record.  For all other levels
1939  * we just return the right key.
1940  */
1941 STATIC union xfs_btree_key *
xfs_lookup_get_search_key(struct xfs_btree_cur * cur,int level,int keyno,struct xfs_btree_block * block,union xfs_btree_key * kp)1942 xfs_lookup_get_search_key(
1943 	struct xfs_btree_cur	*cur,
1944 	int			level,
1945 	int			keyno,
1946 	struct xfs_btree_block	*block,
1947 	union xfs_btree_key	*kp)
1948 {
1949 	if (level == 0) {
1950 		cur->bc_ops->init_key_from_rec(kp,
1951 				xfs_btree_rec_addr(cur, keyno, block));
1952 		return kp;
1953 	}
1954 
1955 	return xfs_btree_key_addr(cur, keyno, block);
1956 }
1957 
1958 /*
1959  * Initialize a pointer to the root block.
1960  */
1961 void
xfs_btree_init_ptr_from_cur(struct xfs_btree_cur * cur,union xfs_btree_ptr * ptr)1962 xfs_btree_init_ptr_from_cur(
1963 	struct xfs_btree_cur	*cur,
1964 	union xfs_btree_ptr	*ptr)
1965 {
1966 	if (cur->bc_ops->type == XFS_BTREE_TYPE_INODE) {
1967 		/*
1968 		 * Inode-rooted btrees call xfs_btree_get_iroot to find the root
1969 		 * in xfs_btree_lookup_get_block and don't need a pointer here.
1970 		 */
1971 		ptr->l = 0;
1972 	} else if (cur->bc_flags & XFS_BTREE_STAGING) {
1973 		ptr->s = cpu_to_be32(cur->bc_ag.afake->af_root);
1974 	} else {
1975 		cur->bc_ops->init_ptr_from_cur(cur, ptr);
1976 	}
1977 }
1978 
1979 /*
1980  * Lookup the record.  The cursor is made to point to it, based on dir.
1981  * stat is set to 0 if can't find any such record, 1 for success.
1982  */
1983 int					/* error */
xfs_btree_lookup(struct xfs_btree_cur * cur,xfs_lookup_t dir,int * stat)1984 xfs_btree_lookup(
1985 	struct xfs_btree_cur	*cur,	/* btree cursor */
1986 	xfs_lookup_t		dir,	/* <=, ==, or >= */
1987 	int			*stat)	/* success/failure */
1988 {
1989 	struct xfs_btree_block	*block;	/* current btree block */
1990 	int64_t			diff;	/* difference for the current key */
1991 	int			error;	/* error return value */
1992 	int			keyno;	/* current key number */
1993 	int			level;	/* level in the btree */
1994 	union xfs_btree_ptr	*pp;	/* ptr to btree block */
1995 	union xfs_btree_ptr	ptr;	/* ptr to btree block */
1996 
1997 	XFS_BTREE_STATS_INC(cur, lookup);
1998 
1999 	/* No such thing as a zero-level tree. */
2000 	if (XFS_IS_CORRUPT(cur->bc_mp, cur->bc_nlevels == 0)) {
2001 		xfs_btree_mark_sick(cur);
2002 		return -EFSCORRUPTED;
2003 	}
2004 
2005 	block = NULL;
2006 	keyno = 0;
2007 
2008 	/* initialise start pointer from cursor */
2009 	xfs_btree_init_ptr_from_cur(cur, &ptr);
2010 	pp = &ptr;
2011 
2012 	/*
2013 	 * Iterate over each level in the btree, starting at the root.
2014 	 * For each level above the leaves, find the key we need, based
2015 	 * on the lookup record, then follow the corresponding block
2016 	 * pointer down to the next level.
2017 	 */
2018 	for (level = cur->bc_nlevels - 1, diff = 1; level >= 0; level--) {
2019 		/* Get the block we need to do the lookup on. */
2020 		error = xfs_btree_lookup_get_block(cur, level, pp, &block);
2021 		if (error)
2022 			goto error0;
2023 
2024 		if (diff == 0) {
2025 			/*
2026 			 * If we already had a key match at a higher level, we
2027 			 * know we need to use the first entry in this block.
2028 			 */
2029 			keyno = 1;
2030 		} else {
2031 			/* Otherwise search this block. Do a binary search. */
2032 
2033 			int	high;	/* high entry number */
2034 			int	low;	/* low entry number */
2035 
2036 			/* Set low and high entry numbers, 1-based. */
2037 			low = 1;
2038 			high = xfs_btree_get_numrecs(block);
2039 			if (!high) {
2040 				/* Block is empty, must be an empty leaf. */
2041 				if (level != 0 || cur->bc_nlevels != 1) {
2042 					XFS_CORRUPTION_ERROR(__func__,
2043 							XFS_ERRLEVEL_LOW,
2044 							cur->bc_mp, block,
2045 							sizeof(*block));
2046 					xfs_btree_mark_sick(cur);
2047 					return -EFSCORRUPTED;
2048 				}
2049 
2050 				cur->bc_levels[0].ptr = dir != XFS_LOOKUP_LE;
2051 				*stat = 0;
2052 				return 0;
2053 			}
2054 
2055 			/* Binary search the block. */
2056 			while (low <= high) {
2057 				union xfs_btree_key	key;
2058 				union xfs_btree_key	*kp;
2059 
2060 				XFS_BTREE_STATS_INC(cur, compare);
2061 
2062 				/* keyno is average of low and high. */
2063 				keyno = (low + high) >> 1;
2064 
2065 				/* Get current search key */
2066 				kp = xfs_lookup_get_search_key(cur, level,
2067 						keyno, block, &key);
2068 
2069 				/*
2070 				 * Compute difference to get next direction:
2071 				 *  - less than, move right
2072 				 *  - greater than, move left
2073 				 *  - equal, we're done
2074 				 */
2075 				diff = cur->bc_ops->key_diff(cur, kp);
2076 				if (diff < 0)
2077 					low = keyno + 1;
2078 				else if (diff > 0)
2079 					high = keyno - 1;
2080 				else
2081 					break;
2082 			}
2083 		}
2084 
2085 		/*
2086 		 * If there are more levels, set up for the next level
2087 		 * by getting the block number and filling in the cursor.
2088 		 */
2089 		if (level > 0) {
2090 			/*
2091 			 * If we moved left, need the previous key number,
2092 			 * unless there isn't one.
2093 			 */
2094 			if (diff > 0 && --keyno < 1)
2095 				keyno = 1;
2096 			pp = xfs_btree_ptr_addr(cur, keyno, block);
2097 
2098 			error = xfs_btree_debug_check_ptr(cur, pp, 0, level);
2099 			if (error)
2100 				goto error0;
2101 
2102 			cur->bc_levels[level].ptr = keyno;
2103 		}
2104 	}
2105 
2106 	/* Done with the search. See if we need to adjust the results. */
2107 	if (dir != XFS_LOOKUP_LE && diff < 0) {
2108 		keyno++;
2109 		/*
2110 		 * If ge search and we went off the end of the block, but it's
2111 		 * not the last block, we're in the wrong block.
2112 		 */
2113 		xfs_btree_get_sibling(cur, block, &ptr, XFS_BB_RIGHTSIB);
2114 		if (dir == XFS_LOOKUP_GE &&
2115 		    keyno > xfs_btree_get_numrecs(block) &&
2116 		    !xfs_btree_ptr_is_null(cur, &ptr)) {
2117 			int	i;
2118 
2119 			cur->bc_levels[0].ptr = keyno;
2120 			error = xfs_btree_increment(cur, 0, &i);
2121 			if (error)
2122 				goto error0;
2123 			if (XFS_IS_CORRUPT(cur->bc_mp, i != 1)) {
2124 				xfs_btree_mark_sick(cur);
2125 				return -EFSCORRUPTED;
2126 			}
2127 			*stat = 1;
2128 			return 0;
2129 		}
2130 	} else if (dir == XFS_LOOKUP_LE && diff > 0)
2131 		keyno--;
2132 	cur->bc_levels[0].ptr = keyno;
2133 
2134 	/* Return if we succeeded or not. */
2135 	if (keyno == 0 || keyno > xfs_btree_get_numrecs(block))
2136 		*stat = 0;
2137 	else if (dir != XFS_LOOKUP_EQ || diff == 0)
2138 		*stat = 1;
2139 	else
2140 		*stat = 0;
2141 	return 0;
2142 
2143 error0:
2144 	return error;
2145 }
2146 
2147 /* Find the high key storage area from a regular key. */
2148 union xfs_btree_key *
xfs_btree_high_key_from_key(struct xfs_btree_cur * cur,union xfs_btree_key * key)2149 xfs_btree_high_key_from_key(
2150 	struct xfs_btree_cur	*cur,
2151 	union xfs_btree_key	*key)
2152 {
2153 	ASSERT(cur->bc_ops->geom_flags & XFS_BTGEO_OVERLAPPING);
2154 	return (union xfs_btree_key *)((char *)key +
2155 			(cur->bc_ops->key_len / 2));
2156 }
2157 
2158 /* Determine the low (and high if overlapped) keys of a leaf block */
2159 STATIC void
xfs_btree_get_leaf_keys(struct xfs_btree_cur * cur,struct xfs_btree_block * block,union xfs_btree_key * key)2160 xfs_btree_get_leaf_keys(
2161 	struct xfs_btree_cur	*cur,
2162 	struct xfs_btree_block	*block,
2163 	union xfs_btree_key	*key)
2164 {
2165 	union xfs_btree_key	max_hkey;
2166 	union xfs_btree_key	hkey;
2167 	union xfs_btree_rec	*rec;
2168 	union xfs_btree_key	*high;
2169 	int			n;
2170 
2171 	rec = xfs_btree_rec_addr(cur, 1, block);
2172 	cur->bc_ops->init_key_from_rec(key, rec);
2173 
2174 	if (cur->bc_ops->geom_flags & XFS_BTGEO_OVERLAPPING) {
2175 
2176 		cur->bc_ops->init_high_key_from_rec(&max_hkey, rec);
2177 		for (n = 2; n <= xfs_btree_get_numrecs(block); n++) {
2178 			rec = xfs_btree_rec_addr(cur, n, block);
2179 			cur->bc_ops->init_high_key_from_rec(&hkey, rec);
2180 			if (xfs_btree_keycmp_gt(cur, &hkey, &max_hkey))
2181 				max_hkey = hkey;
2182 		}
2183 
2184 		high = xfs_btree_high_key_from_key(cur, key);
2185 		memcpy(high, &max_hkey, cur->bc_ops->key_len / 2);
2186 	}
2187 }
2188 
2189 /* Determine the low (and high if overlapped) keys of a node block */
2190 STATIC void
xfs_btree_get_node_keys(struct xfs_btree_cur * cur,struct xfs_btree_block * block,union xfs_btree_key * key)2191 xfs_btree_get_node_keys(
2192 	struct xfs_btree_cur	*cur,
2193 	struct xfs_btree_block	*block,
2194 	union xfs_btree_key	*key)
2195 {
2196 	union xfs_btree_key	*hkey;
2197 	union xfs_btree_key	*max_hkey;
2198 	union xfs_btree_key	*high;
2199 	int			n;
2200 
2201 	if (cur->bc_ops->geom_flags & XFS_BTGEO_OVERLAPPING) {
2202 		memcpy(key, xfs_btree_key_addr(cur, 1, block),
2203 				cur->bc_ops->key_len / 2);
2204 
2205 		max_hkey = xfs_btree_high_key_addr(cur, 1, block);
2206 		for (n = 2; n <= xfs_btree_get_numrecs(block); n++) {
2207 			hkey = xfs_btree_high_key_addr(cur, n, block);
2208 			if (xfs_btree_keycmp_gt(cur, hkey, max_hkey))
2209 				max_hkey = hkey;
2210 		}
2211 
2212 		high = xfs_btree_high_key_from_key(cur, key);
2213 		memcpy(high, max_hkey, cur->bc_ops->key_len / 2);
2214 	} else {
2215 		memcpy(key, xfs_btree_key_addr(cur, 1, block),
2216 				cur->bc_ops->key_len);
2217 	}
2218 }
2219 
2220 /* Derive the keys for any btree block. */
2221 void
xfs_btree_get_keys(struct xfs_btree_cur * cur,struct xfs_btree_block * block,union xfs_btree_key * key)2222 xfs_btree_get_keys(
2223 	struct xfs_btree_cur	*cur,
2224 	struct xfs_btree_block	*block,
2225 	union xfs_btree_key	*key)
2226 {
2227 	if (be16_to_cpu(block->bb_level) == 0)
2228 		xfs_btree_get_leaf_keys(cur, block, key);
2229 	else
2230 		xfs_btree_get_node_keys(cur, block, key);
2231 }
2232 
2233 /*
2234  * Decide if we need to update the parent keys of a btree block.  For
2235  * a standard btree this is only necessary if we're updating the first
2236  * record/key.  For an overlapping btree, we must always update the
2237  * keys because the highest key can be in any of the records or keys
2238  * in the block.
2239  */
2240 static inline bool
xfs_btree_needs_key_update(struct xfs_btree_cur * cur,int ptr)2241 xfs_btree_needs_key_update(
2242 	struct xfs_btree_cur	*cur,
2243 	int			ptr)
2244 {
2245 	return (cur->bc_ops->geom_flags & XFS_BTGEO_OVERLAPPING) || ptr == 1;
2246 }
2247 
2248 /*
2249  * Update the low and high parent keys of the given level, progressing
2250  * towards the root.  If force_all is false, stop if the keys for a given
2251  * level do not need updating.
2252  */
2253 STATIC int
__xfs_btree_updkeys(struct xfs_btree_cur * cur,int level,struct xfs_btree_block * block,struct xfs_buf * bp0,bool force_all)2254 __xfs_btree_updkeys(
2255 	struct xfs_btree_cur	*cur,
2256 	int			level,
2257 	struct xfs_btree_block	*block,
2258 	struct xfs_buf		*bp0,
2259 	bool			force_all)
2260 {
2261 	union xfs_btree_key	key;	/* keys from current level */
2262 	union xfs_btree_key	*lkey;	/* keys from the next level up */
2263 	union xfs_btree_key	*hkey;
2264 	union xfs_btree_key	*nlkey;	/* keys from the next level up */
2265 	union xfs_btree_key	*nhkey;
2266 	struct xfs_buf		*bp;
2267 	int			ptr;
2268 
2269 	ASSERT(cur->bc_ops->geom_flags & XFS_BTGEO_OVERLAPPING);
2270 
2271 	/* Exit if there aren't any parent levels to update. */
2272 	if (level + 1 >= cur->bc_nlevels)
2273 		return 0;
2274 
2275 	trace_xfs_btree_updkeys(cur, level, bp0);
2276 
2277 	lkey = &key;
2278 	hkey = xfs_btree_high_key_from_key(cur, lkey);
2279 	xfs_btree_get_keys(cur, block, lkey);
2280 	for (level++; level < cur->bc_nlevels; level++) {
2281 #ifdef DEBUG
2282 		int		error;
2283 #endif
2284 		block = xfs_btree_get_block(cur, level, &bp);
2285 		trace_xfs_btree_updkeys(cur, level, bp);
2286 #ifdef DEBUG
2287 		error = xfs_btree_check_block(cur, block, level, bp);
2288 		if (error)
2289 			return error;
2290 #endif
2291 		ptr = cur->bc_levels[level].ptr;
2292 		nlkey = xfs_btree_key_addr(cur, ptr, block);
2293 		nhkey = xfs_btree_high_key_addr(cur, ptr, block);
2294 		if (!force_all &&
2295 		    xfs_btree_keycmp_eq(cur, nlkey, lkey) &&
2296 		    xfs_btree_keycmp_eq(cur, nhkey, hkey))
2297 			break;
2298 		xfs_btree_copy_keys(cur, nlkey, lkey, 1);
2299 		xfs_btree_log_keys(cur, bp, ptr, ptr);
2300 		if (level + 1 >= cur->bc_nlevels)
2301 			break;
2302 		xfs_btree_get_node_keys(cur, block, lkey);
2303 	}
2304 
2305 	return 0;
2306 }
2307 
2308 /* Update all the keys from some level in cursor back to the root. */
2309 STATIC int
xfs_btree_updkeys_force(struct xfs_btree_cur * cur,int level)2310 xfs_btree_updkeys_force(
2311 	struct xfs_btree_cur	*cur,
2312 	int			level)
2313 {
2314 	struct xfs_buf		*bp;
2315 	struct xfs_btree_block	*block;
2316 
2317 	block = xfs_btree_get_block(cur, level, &bp);
2318 	return __xfs_btree_updkeys(cur, level, block, bp, true);
2319 }
2320 
2321 /*
2322  * Update the parent keys of the given level, progressing towards the root.
2323  */
2324 STATIC int
xfs_btree_update_keys(struct xfs_btree_cur * cur,int level)2325 xfs_btree_update_keys(
2326 	struct xfs_btree_cur	*cur,
2327 	int			level)
2328 {
2329 	struct xfs_btree_block	*block;
2330 	struct xfs_buf		*bp;
2331 	union xfs_btree_key	*kp;
2332 	union xfs_btree_key	key;
2333 	int			ptr;
2334 
2335 	ASSERT(level >= 0);
2336 
2337 	block = xfs_btree_get_block(cur, level, &bp);
2338 	if (cur->bc_ops->geom_flags & XFS_BTGEO_OVERLAPPING)
2339 		return __xfs_btree_updkeys(cur, level, block, bp, false);
2340 
2341 	/*
2342 	 * Go up the tree from this level toward the root.
2343 	 * At each level, update the key value to the value input.
2344 	 * Stop when we reach a level where the cursor isn't pointing
2345 	 * at the first entry in the block.
2346 	 */
2347 	xfs_btree_get_keys(cur, block, &key);
2348 	for (level++, ptr = 1; ptr == 1 && level < cur->bc_nlevels; level++) {
2349 #ifdef DEBUG
2350 		int		error;
2351 #endif
2352 		block = xfs_btree_get_block(cur, level, &bp);
2353 #ifdef DEBUG
2354 		error = xfs_btree_check_block(cur, block, level, bp);
2355 		if (error)
2356 			return error;
2357 #endif
2358 		ptr = cur->bc_levels[level].ptr;
2359 		kp = xfs_btree_key_addr(cur, ptr, block);
2360 		xfs_btree_copy_keys(cur, kp, &key, 1);
2361 		xfs_btree_log_keys(cur, bp, ptr, ptr);
2362 	}
2363 
2364 	return 0;
2365 }
2366 
2367 /*
2368  * Update the record referred to by cur to the value in the
2369  * given record. This either works (return 0) or gets an
2370  * EFSCORRUPTED error.
2371  */
2372 int
xfs_btree_update(struct xfs_btree_cur * cur,union xfs_btree_rec * rec)2373 xfs_btree_update(
2374 	struct xfs_btree_cur	*cur,
2375 	union xfs_btree_rec	*rec)
2376 {
2377 	struct xfs_btree_block	*block;
2378 	struct xfs_buf		*bp;
2379 	int			error;
2380 	int			ptr;
2381 	union xfs_btree_rec	*rp;
2382 
2383 	/* Pick up the current block. */
2384 	block = xfs_btree_get_block(cur, 0, &bp);
2385 
2386 #ifdef DEBUG
2387 	error = xfs_btree_check_block(cur, block, 0, bp);
2388 	if (error)
2389 		goto error0;
2390 #endif
2391 	/* Get the address of the rec to be updated. */
2392 	ptr = cur->bc_levels[0].ptr;
2393 	rp = xfs_btree_rec_addr(cur, ptr, block);
2394 
2395 	/* Fill in the new contents and log them. */
2396 	xfs_btree_copy_recs(cur, rp, rec, 1);
2397 	xfs_btree_log_recs(cur, bp, ptr, ptr);
2398 
2399 	/* Pass new key value up to our parent. */
2400 	if (xfs_btree_needs_key_update(cur, ptr)) {
2401 		error = xfs_btree_update_keys(cur, 0);
2402 		if (error)
2403 			goto error0;
2404 	}
2405 
2406 	return 0;
2407 
2408 error0:
2409 	return error;
2410 }
2411 
2412 /*
2413  * Move 1 record left from cur/level if possible.
2414  * Update cur to reflect the new path.
2415  */
2416 STATIC int					/* error */
xfs_btree_lshift(struct xfs_btree_cur * cur,int level,int * stat)2417 xfs_btree_lshift(
2418 	struct xfs_btree_cur	*cur,
2419 	int			level,
2420 	int			*stat)		/* success/failure */
2421 {
2422 	struct xfs_buf		*lbp;		/* left buffer pointer */
2423 	struct xfs_btree_block	*left;		/* left btree block */
2424 	int			lrecs;		/* left record count */
2425 	struct xfs_buf		*rbp;		/* right buffer pointer */
2426 	struct xfs_btree_block	*right;		/* right btree block */
2427 	struct xfs_btree_cur	*tcur;		/* temporary btree cursor */
2428 	int			rrecs;		/* right record count */
2429 	union xfs_btree_ptr	lptr;		/* left btree pointer */
2430 	union xfs_btree_key	*rkp = NULL;	/* right btree key */
2431 	union xfs_btree_ptr	*rpp = NULL;	/* right address pointer */
2432 	union xfs_btree_rec	*rrp = NULL;	/* right record pointer */
2433 	int			error;		/* error return value */
2434 	int			i;
2435 
2436 	if (xfs_btree_at_iroot(cur, level))
2437 		goto out0;
2438 
2439 	/* Set up variables for this block as "right". */
2440 	right = xfs_btree_get_block(cur, level, &rbp);
2441 
2442 #ifdef DEBUG
2443 	error = xfs_btree_check_block(cur, right, level, rbp);
2444 	if (error)
2445 		goto error0;
2446 #endif
2447 
2448 	/* If we've got no left sibling then we can't shift an entry left. */
2449 	xfs_btree_get_sibling(cur, right, &lptr, XFS_BB_LEFTSIB);
2450 	if (xfs_btree_ptr_is_null(cur, &lptr))
2451 		goto out0;
2452 
2453 	/*
2454 	 * If the cursor entry is the one that would be moved, don't
2455 	 * do it... it's too complicated.
2456 	 */
2457 	if (cur->bc_levels[level].ptr <= 1)
2458 		goto out0;
2459 
2460 	/* Set up the left neighbor as "left". */
2461 	error = xfs_btree_read_buf_block(cur, &lptr, 0, &left, &lbp);
2462 	if (error)
2463 		goto error0;
2464 
2465 	/* If it's full, it can't take another entry. */
2466 	lrecs = xfs_btree_get_numrecs(left);
2467 	if (lrecs == cur->bc_ops->get_maxrecs(cur, level))
2468 		goto out0;
2469 
2470 	rrecs = xfs_btree_get_numrecs(right);
2471 
2472 	/*
2473 	 * We add one entry to the left side and remove one for the right side.
2474 	 * Account for it here, the changes will be updated on disk and logged
2475 	 * later.
2476 	 */
2477 	lrecs++;
2478 	rrecs--;
2479 
2480 	XFS_BTREE_STATS_INC(cur, lshift);
2481 	XFS_BTREE_STATS_ADD(cur, moves, 1);
2482 
2483 	/*
2484 	 * If non-leaf, copy a key and a ptr to the left block.
2485 	 * Log the changes to the left block.
2486 	 */
2487 	if (level > 0) {
2488 		/* It's a non-leaf.  Move keys and pointers. */
2489 		union xfs_btree_key	*lkp;	/* left btree key */
2490 		union xfs_btree_ptr	*lpp;	/* left address pointer */
2491 
2492 		lkp = xfs_btree_key_addr(cur, lrecs, left);
2493 		rkp = xfs_btree_key_addr(cur, 1, right);
2494 
2495 		lpp = xfs_btree_ptr_addr(cur, lrecs, left);
2496 		rpp = xfs_btree_ptr_addr(cur, 1, right);
2497 
2498 		error = xfs_btree_debug_check_ptr(cur, rpp, 0, level);
2499 		if (error)
2500 			goto error0;
2501 
2502 		xfs_btree_copy_keys(cur, lkp, rkp, 1);
2503 		xfs_btree_copy_ptrs(cur, lpp, rpp, 1);
2504 
2505 		xfs_btree_log_keys(cur, lbp, lrecs, lrecs);
2506 		xfs_btree_log_ptrs(cur, lbp, lrecs, lrecs);
2507 
2508 		ASSERT(cur->bc_ops->keys_inorder(cur,
2509 			xfs_btree_key_addr(cur, lrecs - 1, left), lkp));
2510 	} else {
2511 		/* It's a leaf.  Move records.  */
2512 		union xfs_btree_rec	*lrp;	/* left record pointer */
2513 
2514 		lrp = xfs_btree_rec_addr(cur, lrecs, left);
2515 		rrp = xfs_btree_rec_addr(cur, 1, right);
2516 
2517 		xfs_btree_copy_recs(cur, lrp, rrp, 1);
2518 		xfs_btree_log_recs(cur, lbp, lrecs, lrecs);
2519 
2520 		ASSERT(cur->bc_ops->recs_inorder(cur,
2521 			xfs_btree_rec_addr(cur, lrecs - 1, left), lrp));
2522 	}
2523 
2524 	xfs_btree_set_numrecs(left, lrecs);
2525 	xfs_btree_log_block(cur, lbp, XFS_BB_NUMRECS);
2526 
2527 	xfs_btree_set_numrecs(right, rrecs);
2528 	xfs_btree_log_block(cur, rbp, XFS_BB_NUMRECS);
2529 
2530 	/*
2531 	 * Slide the contents of right down one entry.
2532 	 */
2533 	XFS_BTREE_STATS_ADD(cur, moves, rrecs - 1);
2534 	if (level > 0) {
2535 		/* It's a nonleaf. operate on keys and ptrs */
2536 		for (i = 0; i < rrecs; i++) {
2537 			error = xfs_btree_debug_check_ptr(cur, rpp, i + 1, level);
2538 			if (error)
2539 				goto error0;
2540 		}
2541 
2542 		xfs_btree_shift_keys(cur,
2543 				xfs_btree_key_addr(cur, 2, right),
2544 				-1, rrecs);
2545 		xfs_btree_shift_ptrs(cur,
2546 				xfs_btree_ptr_addr(cur, 2, right),
2547 				-1, rrecs);
2548 
2549 		xfs_btree_log_keys(cur, rbp, 1, rrecs);
2550 		xfs_btree_log_ptrs(cur, rbp, 1, rrecs);
2551 	} else {
2552 		/* It's a leaf. operate on records */
2553 		xfs_btree_shift_recs(cur,
2554 			xfs_btree_rec_addr(cur, 2, right),
2555 			-1, rrecs);
2556 		xfs_btree_log_recs(cur, rbp, 1, rrecs);
2557 	}
2558 
2559 	/*
2560 	 * Using a temporary cursor, update the parent key values of the
2561 	 * block on the left.
2562 	 */
2563 	if (cur->bc_ops->geom_flags & XFS_BTGEO_OVERLAPPING) {
2564 		error = xfs_btree_dup_cursor(cur, &tcur);
2565 		if (error)
2566 			goto error0;
2567 		i = xfs_btree_firstrec(tcur, level);
2568 		if (XFS_IS_CORRUPT(tcur->bc_mp, i != 1)) {
2569 			xfs_btree_mark_sick(cur);
2570 			error = -EFSCORRUPTED;
2571 			goto error0;
2572 		}
2573 
2574 		error = xfs_btree_decrement(tcur, level, &i);
2575 		if (error)
2576 			goto error1;
2577 
2578 		/* Update the parent high keys of the left block, if needed. */
2579 		error = xfs_btree_update_keys(tcur, level);
2580 		if (error)
2581 			goto error1;
2582 
2583 		xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR);
2584 	}
2585 
2586 	/* Update the parent keys of the right block. */
2587 	error = xfs_btree_update_keys(cur, level);
2588 	if (error)
2589 		goto error0;
2590 
2591 	/* Slide the cursor value left one. */
2592 	cur->bc_levels[level].ptr--;
2593 
2594 	*stat = 1;
2595 	return 0;
2596 
2597 out0:
2598 	*stat = 0;
2599 	return 0;
2600 
2601 error0:
2602 	return error;
2603 
2604 error1:
2605 	xfs_btree_del_cursor(tcur, XFS_BTREE_ERROR);
2606 	return error;
2607 }
2608 
2609 /*
2610  * Move 1 record right from cur/level if possible.
2611  * Update cur to reflect the new path.
2612  */
2613 STATIC int					/* error */
xfs_btree_rshift(struct xfs_btree_cur * cur,int level,int * stat)2614 xfs_btree_rshift(
2615 	struct xfs_btree_cur	*cur,
2616 	int			level,
2617 	int			*stat)		/* success/failure */
2618 {
2619 	struct xfs_buf		*lbp;		/* left buffer pointer */
2620 	struct xfs_btree_block	*left;		/* left btree block */
2621 	struct xfs_buf		*rbp;		/* right buffer pointer */
2622 	struct xfs_btree_block	*right;		/* right btree block */
2623 	struct xfs_btree_cur	*tcur;		/* temporary btree cursor */
2624 	union xfs_btree_ptr	rptr;		/* right block pointer */
2625 	union xfs_btree_key	*rkp;		/* right btree key */
2626 	int			rrecs;		/* right record count */
2627 	int			lrecs;		/* left record count */
2628 	int			error;		/* error return value */
2629 	int			i;		/* loop counter */
2630 
2631 	if (xfs_btree_at_iroot(cur, level))
2632 		goto out0;
2633 
2634 	/* Set up variables for this block as "left". */
2635 	left = xfs_btree_get_block(cur, level, &lbp);
2636 
2637 #ifdef DEBUG
2638 	error = xfs_btree_check_block(cur, left, level, lbp);
2639 	if (error)
2640 		goto error0;
2641 #endif
2642 
2643 	/* If we've got no right sibling then we can't shift an entry right. */
2644 	xfs_btree_get_sibling(cur, left, &rptr, XFS_BB_RIGHTSIB);
2645 	if (xfs_btree_ptr_is_null(cur, &rptr))
2646 		goto out0;
2647 
2648 	/*
2649 	 * If the cursor entry is the one that would be moved, don't
2650 	 * do it... it's too complicated.
2651 	 */
2652 	lrecs = xfs_btree_get_numrecs(left);
2653 	if (cur->bc_levels[level].ptr >= lrecs)
2654 		goto out0;
2655 
2656 	/* Set up the right neighbor as "right". */
2657 	error = xfs_btree_read_buf_block(cur, &rptr, 0, &right, &rbp);
2658 	if (error)
2659 		goto error0;
2660 
2661 	/* If it's full, it can't take another entry. */
2662 	rrecs = xfs_btree_get_numrecs(right);
2663 	if (rrecs == cur->bc_ops->get_maxrecs(cur, level))
2664 		goto out0;
2665 
2666 	XFS_BTREE_STATS_INC(cur, rshift);
2667 	XFS_BTREE_STATS_ADD(cur, moves, rrecs);
2668 
2669 	/*
2670 	 * Make a hole at the start of the right neighbor block, then
2671 	 * copy the last left block entry to the hole.
2672 	 */
2673 	if (level > 0) {
2674 		/* It's a nonleaf. make a hole in the keys and ptrs */
2675 		union xfs_btree_key	*lkp;
2676 		union xfs_btree_ptr	*lpp;
2677 		union xfs_btree_ptr	*rpp;
2678 
2679 		lkp = xfs_btree_key_addr(cur, lrecs, left);
2680 		lpp = xfs_btree_ptr_addr(cur, lrecs, left);
2681 		rkp = xfs_btree_key_addr(cur, 1, right);
2682 		rpp = xfs_btree_ptr_addr(cur, 1, right);
2683 
2684 		for (i = rrecs - 1; i >= 0; i--) {
2685 			error = xfs_btree_debug_check_ptr(cur, rpp, i, level);
2686 			if (error)
2687 				goto error0;
2688 		}
2689 
2690 		xfs_btree_shift_keys(cur, rkp, 1, rrecs);
2691 		xfs_btree_shift_ptrs(cur, rpp, 1, rrecs);
2692 
2693 		error = xfs_btree_debug_check_ptr(cur, lpp, 0, level);
2694 		if (error)
2695 			goto error0;
2696 
2697 		/* Now put the new data in, and log it. */
2698 		xfs_btree_copy_keys(cur, rkp, lkp, 1);
2699 		xfs_btree_copy_ptrs(cur, rpp, lpp, 1);
2700 
2701 		xfs_btree_log_keys(cur, rbp, 1, rrecs + 1);
2702 		xfs_btree_log_ptrs(cur, rbp, 1, rrecs + 1);
2703 
2704 		ASSERT(cur->bc_ops->keys_inorder(cur, rkp,
2705 			xfs_btree_key_addr(cur, 2, right)));
2706 	} else {
2707 		/* It's a leaf. make a hole in the records */
2708 		union xfs_btree_rec	*lrp;
2709 		union xfs_btree_rec	*rrp;
2710 
2711 		lrp = xfs_btree_rec_addr(cur, lrecs, left);
2712 		rrp = xfs_btree_rec_addr(cur, 1, right);
2713 
2714 		xfs_btree_shift_recs(cur, rrp, 1, rrecs);
2715 
2716 		/* Now put the new data in, and log it. */
2717 		xfs_btree_copy_recs(cur, rrp, lrp, 1);
2718 		xfs_btree_log_recs(cur, rbp, 1, rrecs + 1);
2719 	}
2720 
2721 	/*
2722 	 * Decrement and log left's numrecs, bump and log right's numrecs.
2723 	 */
2724 	xfs_btree_set_numrecs(left, --lrecs);
2725 	xfs_btree_log_block(cur, lbp, XFS_BB_NUMRECS);
2726 
2727 	xfs_btree_set_numrecs(right, ++rrecs);
2728 	xfs_btree_log_block(cur, rbp, XFS_BB_NUMRECS);
2729 
2730 	/*
2731 	 * Using a temporary cursor, update the parent key values of the
2732 	 * block on the right.
2733 	 */
2734 	error = xfs_btree_dup_cursor(cur, &tcur);
2735 	if (error)
2736 		goto error0;
2737 	i = xfs_btree_lastrec(tcur, level);
2738 	if (XFS_IS_CORRUPT(tcur->bc_mp, i != 1)) {
2739 		xfs_btree_mark_sick(cur);
2740 		error = -EFSCORRUPTED;
2741 		goto error0;
2742 	}
2743 
2744 	error = xfs_btree_increment(tcur, level, &i);
2745 	if (error)
2746 		goto error1;
2747 
2748 	/* Update the parent high keys of the left block, if needed. */
2749 	if (cur->bc_ops->geom_flags & XFS_BTGEO_OVERLAPPING) {
2750 		error = xfs_btree_update_keys(cur, level);
2751 		if (error)
2752 			goto error1;
2753 	}
2754 
2755 	/* Update the parent keys of the right block. */
2756 	error = xfs_btree_update_keys(tcur, level);
2757 	if (error)
2758 		goto error1;
2759 
2760 	xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR);
2761 
2762 	*stat = 1;
2763 	return 0;
2764 
2765 out0:
2766 	*stat = 0;
2767 	return 0;
2768 
2769 error0:
2770 	return error;
2771 
2772 error1:
2773 	xfs_btree_del_cursor(tcur, XFS_BTREE_ERROR);
2774 	return error;
2775 }
2776 
2777 static inline int
xfs_btree_alloc_block(struct xfs_btree_cur * cur,const union xfs_btree_ptr * hint_block,union xfs_btree_ptr * new_block,int * stat)2778 xfs_btree_alloc_block(
2779 	struct xfs_btree_cur		*cur,
2780 	const union xfs_btree_ptr	*hint_block,
2781 	union xfs_btree_ptr		*new_block,
2782 	int				*stat)
2783 {
2784 	int				error;
2785 
2786 	/*
2787 	 * Don't allow block allocation for a staging cursor, because staging
2788 	 * cursors do not support regular btree modifications.
2789 	 *
2790 	 * Bulk loading uses a separate callback to obtain new blocks from a
2791 	 * preallocated list, which prevents ENOSPC failures during loading.
2792 	 */
2793 	if (unlikely(cur->bc_flags & XFS_BTREE_STAGING)) {
2794 		ASSERT(0);
2795 		return -EFSCORRUPTED;
2796 	}
2797 
2798 	error = cur->bc_ops->alloc_block(cur, hint_block, new_block, stat);
2799 	trace_xfs_btree_alloc_block(cur, new_block, *stat, error);
2800 	return error;
2801 }
2802 
2803 /*
2804  * Split cur/level block in half.
2805  * Return new block number and the key to its first
2806  * record (to be inserted into parent).
2807  */
2808 STATIC int					/* error */
__xfs_btree_split(struct xfs_btree_cur * cur,int level,union xfs_btree_ptr * ptrp,union xfs_btree_key * key,struct xfs_btree_cur ** curp,int * stat)2809 __xfs_btree_split(
2810 	struct xfs_btree_cur	*cur,
2811 	int			level,
2812 	union xfs_btree_ptr	*ptrp,
2813 	union xfs_btree_key	*key,
2814 	struct xfs_btree_cur	**curp,
2815 	int			*stat)		/* success/failure */
2816 {
2817 	union xfs_btree_ptr	lptr;		/* left sibling block ptr */
2818 	struct xfs_buf		*lbp;		/* left buffer pointer */
2819 	struct xfs_btree_block	*left;		/* left btree block */
2820 	union xfs_btree_ptr	rptr;		/* right sibling block ptr */
2821 	struct xfs_buf		*rbp;		/* right buffer pointer */
2822 	struct xfs_btree_block	*right;		/* right btree block */
2823 	union xfs_btree_ptr	rrptr;		/* right-right sibling ptr */
2824 	struct xfs_buf		*rrbp;		/* right-right buffer pointer */
2825 	struct xfs_btree_block	*rrblock;	/* right-right btree block */
2826 	int			lrecs;
2827 	int			rrecs;
2828 	int			src_index;
2829 	int			error;		/* error return value */
2830 	int			i;
2831 
2832 	XFS_BTREE_STATS_INC(cur, split);
2833 
2834 	/* Set up left block (current one). */
2835 	left = xfs_btree_get_block(cur, level, &lbp);
2836 
2837 #ifdef DEBUG
2838 	error = xfs_btree_check_block(cur, left, level, lbp);
2839 	if (error)
2840 		goto error0;
2841 #endif
2842 
2843 	xfs_btree_buf_to_ptr(cur, lbp, &lptr);
2844 
2845 	/* Allocate the new block. If we can't do it, we're toast. Give up. */
2846 	error = xfs_btree_alloc_block(cur, &lptr, &rptr, stat);
2847 	if (error)
2848 		goto error0;
2849 	if (*stat == 0)
2850 		goto out0;
2851 	XFS_BTREE_STATS_INC(cur, alloc);
2852 
2853 	/* Set up the new block as "right". */
2854 	error = xfs_btree_get_buf_block(cur, &rptr, &right, &rbp);
2855 	if (error)
2856 		goto error0;
2857 
2858 	/* Fill in the btree header for the new right block. */
2859 	xfs_btree_init_block_cur(cur, rbp, xfs_btree_get_level(left), 0);
2860 
2861 	/*
2862 	 * Split the entries between the old and the new block evenly.
2863 	 * Make sure that if there's an odd number of entries now, that
2864 	 * each new block will have the same number of entries.
2865 	 */
2866 	lrecs = xfs_btree_get_numrecs(left);
2867 	rrecs = lrecs / 2;
2868 	if ((lrecs & 1) && cur->bc_levels[level].ptr <= rrecs + 1)
2869 		rrecs++;
2870 	src_index = (lrecs - rrecs + 1);
2871 
2872 	XFS_BTREE_STATS_ADD(cur, moves, rrecs);
2873 
2874 	/* Adjust numrecs for the later get_*_keys() calls. */
2875 	lrecs -= rrecs;
2876 	xfs_btree_set_numrecs(left, lrecs);
2877 	xfs_btree_set_numrecs(right, xfs_btree_get_numrecs(right) + rrecs);
2878 
2879 	/*
2880 	 * Copy btree block entries from the left block over to the
2881 	 * new block, the right. Update the right block and log the
2882 	 * changes.
2883 	 */
2884 	if (level > 0) {
2885 		/* It's a non-leaf.  Move keys and pointers. */
2886 		union xfs_btree_key	*lkp;	/* left btree key */
2887 		union xfs_btree_ptr	*lpp;	/* left address pointer */
2888 		union xfs_btree_key	*rkp;	/* right btree key */
2889 		union xfs_btree_ptr	*rpp;	/* right address pointer */
2890 
2891 		lkp = xfs_btree_key_addr(cur, src_index, left);
2892 		lpp = xfs_btree_ptr_addr(cur, src_index, left);
2893 		rkp = xfs_btree_key_addr(cur, 1, right);
2894 		rpp = xfs_btree_ptr_addr(cur, 1, right);
2895 
2896 		for (i = src_index; i < rrecs; i++) {
2897 			error = xfs_btree_debug_check_ptr(cur, lpp, i, level);
2898 			if (error)
2899 				goto error0;
2900 		}
2901 
2902 		/* Copy the keys & pointers to the new block. */
2903 		xfs_btree_copy_keys(cur, rkp, lkp, rrecs);
2904 		xfs_btree_copy_ptrs(cur, rpp, lpp, rrecs);
2905 
2906 		xfs_btree_log_keys(cur, rbp, 1, rrecs);
2907 		xfs_btree_log_ptrs(cur, rbp, 1, rrecs);
2908 
2909 		/* Stash the keys of the new block for later insertion. */
2910 		xfs_btree_get_node_keys(cur, right, key);
2911 	} else {
2912 		/* It's a leaf.  Move records.  */
2913 		union xfs_btree_rec	*lrp;	/* left record pointer */
2914 		union xfs_btree_rec	*rrp;	/* right record pointer */
2915 
2916 		lrp = xfs_btree_rec_addr(cur, src_index, left);
2917 		rrp = xfs_btree_rec_addr(cur, 1, right);
2918 
2919 		/* Copy records to the new block. */
2920 		xfs_btree_copy_recs(cur, rrp, lrp, rrecs);
2921 		xfs_btree_log_recs(cur, rbp, 1, rrecs);
2922 
2923 		/* Stash the keys of the new block for later insertion. */
2924 		xfs_btree_get_leaf_keys(cur, right, key);
2925 	}
2926 
2927 	/*
2928 	 * Find the left block number by looking in the buffer.
2929 	 * Adjust sibling pointers.
2930 	 */
2931 	xfs_btree_get_sibling(cur, left, &rrptr, XFS_BB_RIGHTSIB);
2932 	xfs_btree_set_sibling(cur, right, &rrptr, XFS_BB_RIGHTSIB);
2933 	xfs_btree_set_sibling(cur, right, &lptr, XFS_BB_LEFTSIB);
2934 	xfs_btree_set_sibling(cur, left, &rptr, XFS_BB_RIGHTSIB);
2935 
2936 	xfs_btree_log_block(cur, rbp, XFS_BB_ALL_BITS);
2937 	xfs_btree_log_block(cur, lbp, XFS_BB_NUMRECS | XFS_BB_RIGHTSIB);
2938 
2939 	/*
2940 	 * If there's a block to the new block's right, make that block
2941 	 * point back to right instead of to left.
2942 	 */
2943 	if (!xfs_btree_ptr_is_null(cur, &rrptr)) {
2944 		error = xfs_btree_read_buf_block(cur, &rrptr,
2945 							0, &rrblock, &rrbp);
2946 		if (error)
2947 			goto error0;
2948 		xfs_btree_set_sibling(cur, rrblock, &rptr, XFS_BB_LEFTSIB);
2949 		xfs_btree_log_block(cur, rrbp, XFS_BB_LEFTSIB);
2950 	}
2951 
2952 	/* Update the parent high keys of the left block, if needed. */
2953 	if (cur->bc_ops->geom_flags & XFS_BTGEO_OVERLAPPING) {
2954 		error = xfs_btree_update_keys(cur, level);
2955 		if (error)
2956 			goto error0;
2957 	}
2958 
2959 	/*
2960 	 * If the cursor is really in the right block, move it there.
2961 	 * If it's just pointing past the last entry in left, then we'll
2962 	 * insert there, so don't change anything in that case.
2963 	 */
2964 	if (cur->bc_levels[level].ptr > lrecs + 1) {
2965 		xfs_btree_setbuf(cur, level, rbp);
2966 		cur->bc_levels[level].ptr -= lrecs;
2967 	}
2968 	/*
2969 	 * If there are more levels, we'll need another cursor which refers
2970 	 * the right block, no matter where this cursor was.
2971 	 */
2972 	if (level + 1 < cur->bc_nlevels) {
2973 		error = xfs_btree_dup_cursor(cur, curp);
2974 		if (error)
2975 			goto error0;
2976 		(*curp)->bc_levels[level + 1].ptr++;
2977 	}
2978 	*ptrp = rptr;
2979 	*stat = 1;
2980 	return 0;
2981 out0:
2982 	*stat = 0;
2983 	return 0;
2984 
2985 error0:
2986 	return error;
2987 }
2988 
2989 #ifdef __KERNEL__
2990 struct xfs_btree_split_args {
2991 	struct xfs_btree_cur	*cur;
2992 	int			level;
2993 	union xfs_btree_ptr	*ptrp;
2994 	union xfs_btree_key	*key;
2995 	struct xfs_btree_cur	**curp;
2996 	int			*stat;		/* success/failure */
2997 	int			result;
2998 	bool			kswapd;	/* allocation in kswapd context */
2999 	struct completion	*done;
3000 	struct work_struct	work;
3001 };
3002 
3003 /*
3004  * Stack switching interfaces for allocation
3005  */
3006 static void
xfs_btree_split_worker(struct work_struct * work)3007 xfs_btree_split_worker(
3008 	struct work_struct	*work)
3009 {
3010 	struct xfs_btree_split_args	*args = container_of(work,
3011 						struct xfs_btree_split_args, work);
3012 	unsigned long		pflags;
3013 	unsigned long		new_pflags = 0;
3014 
3015 	/*
3016 	 * we are in a transaction context here, but may also be doing work
3017 	 * in kswapd context, and hence we may need to inherit that state
3018 	 * temporarily to ensure that we don't block waiting for memory reclaim
3019 	 * in any way.
3020 	 */
3021 	if (args->kswapd)
3022 		new_pflags |= PF_MEMALLOC | PF_KSWAPD;
3023 
3024 	current_set_flags_nested(&pflags, new_pflags);
3025 	xfs_trans_set_context(args->cur->bc_tp);
3026 
3027 	args->result = __xfs_btree_split(args->cur, args->level, args->ptrp,
3028 					 args->key, args->curp, args->stat);
3029 
3030 	xfs_trans_clear_context(args->cur->bc_tp);
3031 	current_restore_flags_nested(&pflags, new_pflags);
3032 
3033 	/*
3034 	 * Do not access args after complete() has run here. We don't own args
3035 	 * and the owner may run and free args before we return here.
3036 	 */
3037 	complete(args->done);
3038 
3039 }
3040 
3041 /*
3042  * BMBT split requests often come in with little stack to work on so we push
3043  * them off to a worker thread so there is lots of stack to use. For the other
3044  * btree types, just call directly to avoid the context switch overhead here.
3045  *
3046  * Care must be taken here - the work queue rescuer thread introduces potential
3047  * AGF <> worker queue deadlocks if the BMBT block allocation has to lock new
3048  * AGFs to allocate blocks. A task being run by the rescuer could attempt to
3049  * lock an AGF that is already locked by a task queued to run by the rescuer,
3050  * resulting in an ABBA deadlock as the rescuer cannot run the lock holder to
3051  * release it until the current thread it is running gains the lock.
3052  *
3053  * To avoid this issue, we only ever queue BMBT splits that don't have an AGF
3054  * already locked to allocate from. The only place that doesn't hold an AGF
3055  * locked is unwritten extent conversion at IO completion, but that has already
3056  * been offloaded to a worker thread and hence has no stack consumption issues
3057  * we have to worry about.
3058  */
3059 STATIC int					/* error */
xfs_btree_split(struct xfs_btree_cur * cur,int level,union xfs_btree_ptr * ptrp,union xfs_btree_key * key,struct xfs_btree_cur ** curp,int * stat)3060 xfs_btree_split(
3061 	struct xfs_btree_cur	*cur,
3062 	int			level,
3063 	union xfs_btree_ptr	*ptrp,
3064 	union xfs_btree_key	*key,
3065 	struct xfs_btree_cur	**curp,
3066 	int			*stat)		/* success/failure */
3067 {
3068 	struct xfs_btree_split_args	args;
3069 	DECLARE_COMPLETION_ONSTACK(done);
3070 
3071 	if (!xfs_btree_is_bmap(cur->bc_ops) ||
3072 	    cur->bc_tp->t_highest_agno == NULLAGNUMBER)
3073 		return __xfs_btree_split(cur, level, ptrp, key, curp, stat);
3074 
3075 	args.cur = cur;
3076 	args.level = level;
3077 	args.ptrp = ptrp;
3078 	args.key = key;
3079 	args.curp = curp;
3080 	args.stat = stat;
3081 	args.done = &done;
3082 	args.kswapd = current_is_kswapd();
3083 	INIT_WORK_ONSTACK(&args.work, xfs_btree_split_worker);
3084 	queue_work(xfs_alloc_wq, &args.work);
3085 	wait_for_completion(&done);
3086 	destroy_work_on_stack(&args.work);
3087 	return args.result;
3088 }
3089 #else
3090 #define xfs_btree_split	__xfs_btree_split
3091 #endif /* __KERNEL__ */
3092 
3093 /*
3094  * Copy the old inode root contents into a real block and make the
3095  * broot point to it.
3096  */
3097 int						/* error */
xfs_btree_new_iroot(struct xfs_btree_cur * cur,int * logflags,int * stat)3098 xfs_btree_new_iroot(
3099 	struct xfs_btree_cur	*cur,		/* btree cursor */
3100 	int			*logflags,	/* logging flags for inode */
3101 	int			*stat)		/* return status - 0 fail */
3102 {
3103 	struct xfs_buf		*cbp;		/* buffer for cblock */
3104 	struct xfs_btree_block	*block;		/* btree block */
3105 	struct xfs_btree_block	*cblock;	/* child btree block */
3106 	union xfs_btree_key	*ckp;		/* child key pointer */
3107 	union xfs_btree_ptr	*cpp;		/* child ptr pointer */
3108 	union xfs_btree_key	*kp;		/* pointer to btree key */
3109 	union xfs_btree_ptr	*pp;		/* pointer to block addr */
3110 	union xfs_btree_ptr	nptr;		/* new block addr */
3111 	int			level;		/* btree level */
3112 	int			error;		/* error return code */
3113 	int			i;		/* loop counter */
3114 
3115 	XFS_BTREE_STATS_INC(cur, newroot);
3116 
3117 	ASSERT(cur->bc_ops->type == XFS_BTREE_TYPE_INODE);
3118 
3119 	level = cur->bc_nlevels - 1;
3120 
3121 	block = xfs_btree_get_iroot(cur);
3122 	pp = xfs_btree_ptr_addr(cur, 1, block);
3123 
3124 	/* Allocate the new block. If we can't do it, we're toast. Give up. */
3125 	error = xfs_btree_alloc_block(cur, pp, &nptr, stat);
3126 	if (error)
3127 		goto error0;
3128 	if (*stat == 0)
3129 		return 0;
3130 
3131 	XFS_BTREE_STATS_INC(cur, alloc);
3132 
3133 	/* Copy the root into a real block. */
3134 	error = xfs_btree_get_buf_block(cur, &nptr, &cblock, &cbp);
3135 	if (error)
3136 		goto error0;
3137 
3138 	/*
3139 	 * we can't just memcpy() the root in for CRC enabled btree blocks.
3140 	 * In that case have to also ensure the blkno remains correct
3141 	 */
3142 	memcpy(cblock, block, xfs_btree_block_len(cur));
3143 	if (xfs_has_crc(cur->bc_mp)) {
3144 		__be64 bno = cpu_to_be64(xfs_buf_daddr(cbp));
3145 		if (cur->bc_ops->ptr_len == XFS_BTREE_LONG_PTR_LEN)
3146 			cblock->bb_u.l.bb_blkno = bno;
3147 		else
3148 			cblock->bb_u.s.bb_blkno = bno;
3149 	}
3150 
3151 	be16_add_cpu(&block->bb_level, 1);
3152 	xfs_btree_set_numrecs(block, 1);
3153 	cur->bc_nlevels++;
3154 	ASSERT(cur->bc_nlevels <= cur->bc_maxlevels);
3155 	cur->bc_levels[level + 1].ptr = 1;
3156 
3157 	kp = xfs_btree_key_addr(cur, 1, block);
3158 	ckp = xfs_btree_key_addr(cur, 1, cblock);
3159 	xfs_btree_copy_keys(cur, ckp, kp, xfs_btree_get_numrecs(cblock));
3160 
3161 	cpp = xfs_btree_ptr_addr(cur, 1, cblock);
3162 	for (i = 0; i < be16_to_cpu(cblock->bb_numrecs); i++) {
3163 		error = xfs_btree_debug_check_ptr(cur, pp, i, level);
3164 		if (error)
3165 			goto error0;
3166 	}
3167 
3168 	xfs_btree_copy_ptrs(cur, cpp, pp, xfs_btree_get_numrecs(cblock));
3169 
3170 	error = xfs_btree_debug_check_ptr(cur, &nptr, 0, level);
3171 	if (error)
3172 		goto error0;
3173 
3174 	xfs_btree_copy_ptrs(cur, pp, &nptr, 1);
3175 
3176 	xfs_iroot_realloc(cur->bc_ino.ip,
3177 			  1 - xfs_btree_get_numrecs(cblock),
3178 			  cur->bc_ino.whichfork);
3179 
3180 	xfs_btree_setbuf(cur, level, cbp);
3181 
3182 	/*
3183 	 * Do all this logging at the end so that
3184 	 * the root is at the right level.
3185 	 */
3186 	xfs_btree_log_block(cur, cbp, XFS_BB_ALL_BITS);
3187 	xfs_btree_log_keys(cur, cbp, 1, be16_to_cpu(cblock->bb_numrecs));
3188 	xfs_btree_log_ptrs(cur, cbp, 1, be16_to_cpu(cblock->bb_numrecs));
3189 
3190 	*logflags |=
3191 		XFS_ILOG_CORE | xfs_ilog_fbroot(cur->bc_ino.whichfork);
3192 	*stat = 1;
3193 	return 0;
3194 error0:
3195 	return error;
3196 }
3197 
3198 static void
xfs_btree_set_root(struct xfs_btree_cur * cur,const union xfs_btree_ptr * ptr,int inc)3199 xfs_btree_set_root(
3200 	struct xfs_btree_cur		*cur,
3201 	const union xfs_btree_ptr	*ptr,
3202 	int				inc)
3203 {
3204 	if (cur->bc_flags & XFS_BTREE_STAGING) {
3205 		/* Update the btree root information for a per-AG fake root. */
3206 		cur->bc_ag.afake->af_root = be32_to_cpu(ptr->s);
3207 		cur->bc_ag.afake->af_levels += inc;
3208 	} else {
3209 		cur->bc_ops->set_root(cur, ptr, inc);
3210 	}
3211 }
3212 
3213 /*
3214  * Allocate a new root block, fill it in.
3215  */
3216 STATIC int				/* error */
xfs_btree_new_root(struct xfs_btree_cur * cur,int * stat)3217 xfs_btree_new_root(
3218 	struct xfs_btree_cur	*cur,	/* btree cursor */
3219 	int			*stat)	/* success/failure */
3220 {
3221 	struct xfs_btree_block	*block;	/* one half of the old root block */
3222 	struct xfs_buf		*bp;	/* buffer containing block */
3223 	int			error;	/* error return value */
3224 	struct xfs_buf		*lbp;	/* left buffer pointer */
3225 	struct xfs_btree_block	*left;	/* left btree block */
3226 	struct xfs_buf		*nbp;	/* new (root) buffer */
3227 	struct xfs_btree_block	*new;	/* new (root) btree block */
3228 	int			nptr;	/* new value for key index, 1 or 2 */
3229 	struct xfs_buf		*rbp;	/* right buffer pointer */
3230 	struct xfs_btree_block	*right;	/* right btree block */
3231 	union xfs_btree_ptr	rptr;
3232 	union xfs_btree_ptr	lptr;
3233 
3234 	XFS_BTREE_STATS_INC(cur, newroot);
3235 
3236 	/* initialise our start point from the cursor */
3237 	xfs_btree_init_ptr_from_cur(cur, &rptr);
3238 
3239 	/* Allocate the new block. If we can't do it, we're toast. Give up. */
3240 	error = xfs_btree_alloc_block(cur, &rptr, &lptr, stat);
3241 	if (error)
3242 		goto error0;
3243 	if (*stat == 0)
3244 		goto out0;
3245 	XFS_BTREE_STATS_INC(cur, alloc);
3246 
3247 	/* Set up the new block. */
3248 	error = xfs_btree_get_buf_block(cur, &lptr, &new, &nbp);
3249 	if (error)
3250 		goto error0;
3251 
3252 	/* Set the root in the holding structure  increasing the level by 1. */
3253 	xfs_btree_set_root(cur, &lptr, 1);
3254 
3255 	/*
3256 	 * At the previous root level there are now two blocks: the old root,
3257 	 * and the new block generated when it was split.  We don't know which
3258 	 * one the cursor is pointing at, so we set up variables "left" and
3259 	 * "right" for each case.
3260 	 */
3261 	block = xfs_btree_get_block(cur, cur->bc_nlevels - 1, &bp);
3262 
3263 #ifdef DEBUG
3264 	error = xfs_btree_check_block(cur, block, cur->bc_nlevels - 1, bp);
3265 	if (error)
3266 		goto error0;
3267 #endif
3268 
3269 	xfs_btree_get_sibling(cur, block, &rptr, XFS_BB_RIGHTSIB);
3270 	if (!xfs_btree_ptr_is_null(cur, &rptr)) {
3271 		/* Our block is left, pick up the right block. */
3272 		lbp = bp;
3273 		xfs_btree_buf_to_ptr(cur, lbp, &lptr);
3274 		left = block;
3275 		error = xfs_btree_read_buf_block(cur, &rptr, 0, &right, &rbp);
3276 		if (error)
3277 			goto error0;
3278 		bp = rbp;
3279 		nptr = 1;
3280 	} else {
3281 		/* Our block is right, pick up the left block. */
3282 		rbp = bp;
3283 		xfs_btree_buf_to_ptr(cur, rbp, &rptr);
3284 		right = block;
3285 		xfs_btree_get_sibling(cur, right, &lptr, XFS_BB_LEFTSIB);
3286 		error = xfs_btree_read_buf_block(cur, &lptr, 0, &left, &lbp);
3287 		if (error)
3288 			goto error0;
3289 		bp = lbp;
3290 		nptr = 2;
3291 	}
3292 
3293 	/* Fill in the new block's btree header and log it. */
3294 	xfs_btree_init_block_cur(cur, nbp, cur->bc_nlevels, 2);
3295 	xfs_btree_log_block(cur, nbp, XFS_BB_ALL_BITS);
3296 	ASSERT(!xfs_btree_ptr_is_null(cur, &lptr) &&
3297 			!xfs_btree_ptr_is_null(cur, &rptr));
3298 
3299 	/* Fill in the key data in the new root. */
3300 	if (xfs_btree_get_level(left) > 0) {
3301 		/*
3302 		 * Get the keys for the left block's keys and put them directly
3303 		 * in the parent block.  Do the same for the right block.
3304 		 */
3305 		xfs_btree_get_node_keys(cur, left,
3306 				xfs_btree_key_addr(cur, 1, new));
3307 		xfs_btree_get_node_keys(cur, right,
3308 				xfs_btree_key_addr(cur, 2, new));
3309 	} else {
3310 		/*
3311 		 * Get the keys for the left block's records and put them
3312 		 * directly in the parent block.  Do the same for the right
3313 		 * block.
3314 		 */
3315 		xfs_btree_get_leaf_keys(cur, left,
3316 			xfs_btree_key_addr(cur, 1, new));
3317 		xfs_btree_get_leaf_keys(cur, right,
3318 			xfs_btree_key_addr(cur, 2, new));
3319 	}
3320 	xfs_btree_log_keys(cur, nbp, 1, 2);
3321 
3322 	/* Fill in the pointer data in the new root. */
3323 	xfs_btree_copy_ptrs(cur,
3324 		xfs_btree_ptr_addr(cur, 1, new), &lptr, 1);
3325 	xfs_btree_copy_ptrs(cur,
3326 		xfs_btree_ptr_addr(cur, 2, new), &rptr, 1);
3327 	xfs_btree_log_ptrs(cur, nbp, 1, 2);
3328 
3329 	/* Fix up the cursor. */
3330 	xfs_btree_setbuf(cur, cur->bc_nlevels, nbp);
3331 	cur->bc_levels[cur->bc_nlevels].ptr = nptr;
3332 	cur->bc_nlevels++;
3333 	ASSERT(cur->bc_nlevels <= cur->bc_maxlevels);
3334 	*stat = 1;
3335 	return 0;
3336 error0:
3337 	return error;
3338 out0:
3339 	*stat = 0;
3340 	return 0;
3341 }
3342 
3343 STATIC int
xfs_btree_make_block_unfull(struct xfs_btree_cur * cur,int level,int numrecs,int * oindex,int * index,union xfs_btree_ptr * nptr,struct xfs_btree_cur ** ncur,union xfs_btree_key * key,int * stat)3344 xfs_btree_make_block_unfull(
3345 	struct xfs_btree_cur	*cur,	/* btree cursor */
3346 	int			level,	/* btree level */
3347 	int			numrecs,/* # of recs in block */
3348 	int			*oindex,/* old tree index */
3349 	int			*index,	/* new tree index */
3350 	union xfs_btree_ptr	*nptr,	/* new btree ptr */
3351 	struct xfs_btree_cur	**ncur,	/* new btree cursor */
3352 	union xfs_btree_key	*key,	/* key of new block */
3353 	int			*stat)
3354 {
3355 	int			error = 0;
3356 
3357 	if (xfs_btree_at_iroot(cur, level)) {
3358 		struct xfs_inode *ip = cur->bc_ino.ip;
3359 
3360 		if (numrecs < cur->bc_ops->get_dmaxrecs(cur, level)) {
3361 			/* A root block that can be made bigger. */
3362 			xfs_iroot_realloc(ip, 1, cur->bc_ino.whichfork);
3363 			*stat = 1;
3364 		} else {
3365 			/* A root block that needs replacing */
3366 			int	logflags = 0;
3367 
3368 			error = xfs_btree_new_iroot(cur, &logflags, stat);
3369 			if (error || *stat == 0)
3370 				return error;
3371 
3372 			xfs_trans_log_inode(cur->bc_tp, ip, logflags);
3373 		}
3374 
3375 		return 0;
3376 	}
3377 
3378 	/* First, try shifting an entry to the right neighbor. */
3379 	error = xfs_btree_rshift(cur, level, stat);
3380 	if (error || *stat)
3381 		return error;
3382 
3383 	/* Next, try shifting an entry to the left neighbor. */
3384 	error = xfs_btree_lshift(cur, level, stat);
3385 	if (error)
3386 		return error;
3387 
3388 	if (*stat) {
3389 		*oindex = *index = cur->bc_levels[level].ptr;
3390 		return 0;
3391 	}
3392 
3393 	/*
3394 	 * Next, try splitting the current block in half.
3395 	 *
3396 	 * If this works we have to re-set our variables because we
3397 	 * could be in a different block now.
3398 	 */
3399 	error = xfs_btree_split(cur, level, nptr, key, ncur, stat);
3400 	if (error || *stat == 0)
3401 		return error;
3402 
3403 
3404 	*index = cur->bc_levels[level].ptr;
3405 	return 0;
3406 }
3407 
3408 /*
3409  * Insert one record/level.  Return information to the caller
3410  * allowing the next level up to proceed if necessary.
3411  */
3412 STATIC int
xfs_btree_insrec(struct xfs_btree_cur * cur,int level,union xfs_btree_ptr * ptrp,union xfs_btree_rec * rec,union xfs_btree_key * key,struct xfs_btree_cur ** curp,int * stat)3413 xfs_btree_insrec(
3414 	struct xfs_btree_cur	*cur,	/* btree cursor */
3415 	int			level,	/* level to insert record at */
3416 	union xfs_btree_ptr	*ptrp,	/* i/o: block number inserted */
3417 	union xfs_btree_rec	*rec,	/* record to insert */
3418 	union xfs_btree_key	*key,	/* i/o: block key for ptrp */
3419 	struct xfs_btree_cur	**curp,	/* output: new cursor replacing cur */
3420 	int			*stat)	/* success/failure */
3421 {
3422 	struct xfs_btree_block	*block;	/* btree block */
3423 	struct xfs_buf		*bp;	/* buffer for block */
3424 	union xfs_btree_ptr	nptr;	/* new block ptr */
3425 	struct xfs_btree_cur	*ncur = NULL;	/* new btree cursor */
3426 	union xfs_btree_key	nkey;	/* new block key */
3427 	union xfs_btree_key	*lkey;
3428 	int			optr;	/* old key/record index */
3429 	int			ptr;	/* key/record index */
3430 	int			numrecs;/* number of records */
3431 	int			error;	/* error return value */
3432 	int			i;
3433 	xfs_daddr_t		old_bn;
3434 
3435 	ncur = NULL;
3436 	lkey = &nkey;
3437 
3438 	/*
3439 	 * If we have an external root pointer, and we've made it to the
3440 	 * root level, allocate a new root block and we're done.
3441 	 */
3442 	if (cur->bc_ops->type != XFS_BTREE_TYPE_INODE &&
3443 	    level >= cur->bc_nlevels) {
3444 		error = xfs_btree_new_root(cur, stat);
3445 		xfs_btree_set_ptr_null(cur, ptrp);
3446 
3447 		return error;
3448 	}
3449 
3450 	/* If we're off the left edge, return failure. */
3451 	ptr = cur->bc_levels[level].ptr;
3452 	if (ptr == 0) {
3453 		*stat = 0;
3454 		return 0;
3455 	}
3456 
3457 	optr = ptr;
3458 
3459 	XFS_BTREE_STATS_INC(cur, insrec);
3460 
3461 	/* Get pointers to the btree buffer and block. */
3462 	block = xfs_btree_get_block(cur, level, &bp);
3463 	old_bn = bp ? xfs_buf_daddr(bp) : XFS_BUF_DADDR_NULL;
3464 	numrecs = xfs_btree_get_numrecs(block);
3465 
3466 #ifdef DEBUG
3467 	error = xfs_btree_check_block(cur, block, level, bp);
3468 	if (error)
3469 		goto error0;
3470 
3471 	/* Check that the new entry is being inserted in the right place. */
3472 	if (ptr <= numrecs) {
3473 		if (level == 0) {
3474 			ASSERT(cur->bc_ops->recs_inorder(cur, rec,
3475 				xfs_btree_rec_addr(cur, ptr, block)));
3476 		} else {
3477 			ASSERT(cur->bc_ops->keys_inorder(cur, key,
3478 				xfs_btree_key_addr(cur, ptr, block)));
3479 		}
3480 	}
3481 #endif
3482 
3483 	/*
3484 	 * If the block is full, we can't insert the new entry until we
3485 	 * make the block un-full.
3486 	 */
3487 	xfs_btree_set_ptr_null(cur, &nptr);
3488 	if (numrecs == cur->bc_ops->get_maxrecs(cur, level)) {
3489 		error = xfs_btree_make_block_unfull(cur, level, numrecs,
3490 					&optr, &ptr, &nptr, &ncur, lkey, stat);
3491 		if (error || *stat == 0)
3492 			goto error0;
3493 	}
3494 
3495 	/*
3496 	 * The current block may have changed if the block was
3497 	 * previously full and we have just made space in it.
3498 	 */
3499 	block = xfs_btree_get_block(cur, level, &bp);
3500 	numrecs = xfs_btree_get_numrecs(block);
3501 
3502 #ifdef DEBUG
3503 	error = xfs_btree_check_block(cur, block, level, bp);
3504 	if (error)
3505 		goto error0;
3506 #endif
3507 
3508 	/*
3509 	 * At this point we know there's room for our new entry in the block
3510 	 * we're pointing at.
3511 	 */
3512 	XFS_BTREE_STATS_ADD(cur, moves, numrecs - ptr + 1);
3513 
3514 	if (level > 0) {
3515 		/* It's a nonleaf. make a hole in the keys and ptrs */
3516 		union xfs_btree_key	*kp;
3517 		union xfs_btree_ptr	*pp;
3518 
3519 		kp = xfs_btree_key_addr(cur, ptr, block);
3520 		pp = xfs_btree_ptr_addr(cur, ptr, block);
3521 
3522 		for (i = numrecs - ptr; i >= 0; i--) {
3523 			error = xfs_btree_debug_check_ptr(cur, pp, i, level);
3524 			if (error)
3525 				goto error0;
3526 		}
3527 
3528 		xfs_btree_shift_keys(cur, kp, 1, numrecs - ptr + 1);
3529 		xfs_btree_shift_ptrs(cur, pp, 1, numrecs - ptr + 1);
3530 
3531 		error = xfs_btree_debug_check_ptr(cur, ptrp, 0, level);
3532 		if (error)
3533 			goto error0;
3534 
3535 		/* Now put the new data in, bump numrecs and log it. */
3536 		xfs_btree_copy_keys(cur, kp, key, 1);
3537 		xfs_btree_copy_ptrs(cur, pp, ptrp, 1);
3538 		numrecs++;
3539 		xfs_btree_set_numrecs(block, numrecs);
3540 		xfs_btree_log_ptrs(cur, bp, ptr, numrecs);
3541 		xfs_btree_log_keys(cur, bp, ptr, numrecs);
3542 #ifdef DEBUG
3543 		if (ptr < numrecs) {
3544 			ASSERT(cur->bc_ops->keys_inorder(cur, kp,
3545 				xfs_btree_key_addr(cur, ptr + 1, block)));
3546 		}
3547 #endif
3548 	} else {
3549 		/* It's a leaf. make a hole in the records */
3550 		union xfs_btree_rec             *rp;
3551 
3552 		rp = xfs_btree_rec_addr(cur, ptr, block);
3553 
3554 		xfs_btree_shift_recs(cur, rp, 1, numrecs - ptr + 1);
3555 
3556 		/* Now put the new data in, bump numrecs and log it. */
3557 		xfs_btree_copy_recs(cur, rp, rec, 1);
3558 		xfs_btree_set_numrecs(block, ++numrecs);
3559 		xfs_btree_log_recs(cur, bp, ptr, numrecs);
3560 #ifdef DEBUG
3561 		if (ptr < numrecs) {
3562 			ASSERT(cur->bc_ops->recs_inorder(cur, rp,
3563 				xfs_btree_rec_addr(cur, ptr + 1, block)));
3564 		}
3565 #endif
3566 	}
3567 
3568 	/* Log the new number of records in the btree header. */
3569 	xfs_btree_log_block(cur, bp, XFS_BB_NUMRECS);
3570 
3571 	/*
3572 	 * Update btree keys to reflect the newly added record or keyptr.
3573 	 * There are three cases here to be aware of.  Normally, all we have to
3574 	 * do is walk towards the root, updating keys as necessary.
3575 	 *
3576 	 * If the caller had us target a full block for the insertion, we dealt
3577 	 * with that by calling the _make_block_unfull function.  If the
3578 	 * "make unfull" function splits the block, it'll hand us back the key
3579 	 * and pointer of the new block.  We haven't yet added the new block to
3580 	 * the next level up, so if we decide to add the new record to the new
3581 	 * block (bp->b_bn != old_bn), we have to update the caller's pointer
3582 	 * so that the caller adds the new block with the correct key.
3583 	 *
3584 	 * However, there is a third possibility-- if the selected block is the
3585 	 * root block of an inode-rooted btree and cannot be expanded further,
3586 	 * the "make unfull" function moves the root block contents to a new
3587 	 * block and updates the root block to point to the new block.  In this
3588 	 * case, no block pointer is passed back because the block has already
3589 	 * been added to the btree.  In this case, we need to use the regular
3590 	 * key update function, just like the first case.  This is critical for
3591 	 * overlapping btrees, because the high key must be updated to reflect
3592 	 * the entire tree, not just the subtree accessible through the first
3593 	 * child of the root (which is now two levels down from the root).
3594 	 */
3595 	if (!xfs_btree_ptr_is_null(cur, &nptr) &&
3596 	    bp && xfs_buf_daddr(bp) != old_bn) {
3597 		xfs_btree_get_keys(cur, block, lkey);
3598 	} else if (xfs_btree_needs_key_update(cur, optr)) {
3599 		error = xfs_btree_update_keys(cur, level);
3600 		if (error)
3601 			goto error0;
3602 	}
3603 
3604 	/*
3605 	 * Return the new block number, if any.
3606 	 * If there is one, give back a record value and a cursor too.
3607 	 */
3608 	*ptrp = nptr;
3609 	if (!xfs_btree_ptr_is_null(cur, &nptr)) {
3610 		xfs_btree_copy_keys(cur, key, lkey, 1);
3611 		*curp = ncur;
3612 	}
3613 
3614 	*stat = 1;
3615 	return 0;
3616 
3617 error0:
3618 	if (ncur)
3619 		xfs_btree_del_cursor(ncur, error);
3620 	return error;
3621 }
3622 
3623 /*
3624  * Insert the record at the point referenced by cur.
3625  *
3626  * A multi-level split of the tree on insert will invalidate the original
3627  * cursor.  All callers of this function should assume that the cursor is
3628  * no longer valid and revalidate it.
3629  */
3630 int
xfs_btree_insert(struct xfs_btree_cur * cur,int * stat)3631 xfs_btree_insert(
3632 	struct xfs_btree_cur	*cur,
3633 	int			*stat)
3634 {
3635 	int			error;	/* error return value */
3636 	int			i;	/* result value, 0 for failure */
3637 	int			level;	/* current level number in btree */
3638 	union xfs_btree_ptr	nptr;	/* new block number (split result) */
3639 	struct xfs_btree_cur	*ncur;	/* new cursor (split result) */
3640 	struct xfs_btree_cur	*pcur;	/* previous level's cursor */
3641 	union xfs_btree_key	bkey;	/* key of block to insert */
3642 	union xfs_btree_key	*key;
3643 	union xfs_btree_rec	rec;	/* record to insert */
3644 
3645 	level = 0;
3646 	ncur = NULL;
3647 	pcur = cur;
3648 	key = &bkey;
3649 
3650 	xfs_btree_set_ptr_null(cur, &nptr);
3651 
3652 	/* Make a key out of the record data to be inserted, and save it. */
3653 	cur->bc_ops->init_rec_from_cur(cur, &rec);
3654 	cur->bc_ops->init_key_from_rec(key, &rec);
3655 
3656 	/*
3657 	 * Loop going up the tree, starting at the leaf level.
3658 	 * Stop when we don't get a split block, that must mean that
3659 	 * the insert is finished with this level.
3660 	 */
3661 	do {
3662 		/*
3663 		 * Insert nrec/nptr into this level of the tree.
3664 		 * Note if we fail, nptr will be null.
3665 		 */
3666 		error = xfs_btree_insrec(pcur, level, &nptr, &rec, key,
3667 				&ncur, &i);
3668 		if (error) {
3669 			if (pcur != cur)
3670 				xfs_btree_del_cursor(pcur, XFS_BTREE_ERROR);
3671 			goto error0;
3672 		}
3673 
3674 		if (XFS_IS_CORRUPT(cur->bc_mp, i != 1)) {
3675 			xfs_btree_mark_sick(cur);
3676 			error = -EFSCORRUPTED;
3677 			goto error0;
3678 		}
3679 		level++;
3680 
3681 		/*
3682 		 * See if the cursor we just used is trash.
3683 		 * Can't trash the caller's cursor, but otherwise we should
3684 		 * if ncur is a new cursor or we're about to be done.
3685 		 */
3686 		if (pcur != cur &&
3687 		    (ncur || xfs_btree_ptr_is_null(cur, &nptr))) {
3688 			/* Save the state from the cursor before we trash it */
3689 			if (cur->bc_ops->update_cursor &&
3690 			    !(cur->bc_flags & XFS_BTREE_STAGING))
3691 				cur->bc_ops->update_cursor(pcur, cur);
3692 			cur->bc_nlevels = pcur->bc_nlevels;
3693 			xfs_btree_del_cursor(pcur, XFS_BTREE_NOERROR);
3694 		}
3695 		/* If we got a new cursor, switch to it. */
3696 		if (ncur) {
3697 			pcur = ncur;
3698 			ncur = NULL;
3699 		}
3700 	} while (!xfs_btree_ptr_is_null(cur, &nptr));
3701 
3702 	*stat = i;
3703 	return 0;
3704 error0:
3705 	return error;
3706 }
3707 
3708 /*
3709  * Try to merge a non-leaf block back into the inode root.
3710  *
3711  * Note: the killroot names comes from the fact that we're effectively
3712  * killing the old root block.  But because we can't just delete the
3713  * inode we have to copy the single block it was pointing to into the
3714  * inode.
3715  */
3716 STATIC int
xfs_btree_kill_iroot(struct xfs_btree_cur * cur)3717 xfs_btree_kill_iroot(
3718 	struct xfs_btree_cur	*cur)
3719 {
3720 	int			whichfork = cur->bc_ino.whichfork;
3721 	struct xfs_inode	*ip = cur->bc_ino.ip;
3722 	struct xfs_ifork	*ifp = xfs_ifork_ptr(ip, whichfork);
3723 	struct xfs_btree_block	*block;
3724 	struct xfs_btree_block	*cblock;
3725 	union xfs_btree_key	*kp;
3726 	union xfs_btree_key	*ckp;
3727 	union xfs_btree_ptr	*pp;
3728 	union xfs_btree_ptr	*cpp;
3729 	struct xfs_buf		*cbp;
3730 	int			level;
3731 	int			index;
3732 	int			numrecs;
3733 	int			error;
3734 #ifdef DEBUG
3735 	union xfs_btree_ptr	ptr;
3736 #endif
3737 	int			i;
3738 
3739 	ASSERT(cur->bc_ops->type == XFS_BTREE_TYPE_INODE);
3740 	ASSERT(cur->bc_nlevels > 1);
3741 
3742 	/*
3743 	 * Don't deal with the root block needs to be a leaf case.
3744 	 * We're just going to turn the thing back into extents anyway.
3745 	 */
3746 	level = cur->bc_nlevels - 1;
3747 	if (level == 1)
3748 		goto out0;
3749 
3750 	/*
3751 	 * Give up if the root has multiple children.
3752 	 */
3753 	block = xfs_btree_get_iroot(cur);
3754 	if (xfs_btree_get_numrecs(block) != 1)
3755 		goto out0;
3756 
3757 	cblock = xfs_btree_get_block(cur, level - 1, &cbp);
3758 	numrecs = xfs_btree_get_numrecs(cblock);
3759 
3760 	/*
3761 	 * Only do this if the next level will fit.
3762 	 * Then the data must be copied up to the inode,
3763 	 * instead of freeing the root you free the next level.
3764 	 */
3765 	if (numrecs > cur->bc_ops->get_dmaxrecs(cur, level))
3766 		goto out0;
3767 
3768 	XFS_BTREE_STATS_INC(cur, killroot);
3769 
3770 #ifdef DEBUG
3771 	xfs_btree_get_sibling(cur, block, &ptr, XFS_BB_LEFTSIB);
3772 	ASSERT(xfs_btree_ptr_is_null(cur, &ptr));
3773 	xfs_btree_get_sibling(cur, block, &ptr, XFS_BB_RIGHTSIB);
3774 	ASSERT(xfs_btree_ptr_is_null(cur, &ptr));
3775 #endif
3776 
3777 	index = numrecs - cur->bc_ops->get_maxrecs(cur, level);
3778 	if (index) {
3779 		xfs_iroot_realloc(cur->bc_ino.ip, index,
3780 				  cur->bc_ino.whichfork);
3781 		block = ifp->if_broot;
3782 	}
3783 
3784 	be16_add_cpu(&block->bb_numrecs, index);
3785 	ASSERT(block->bb_numrecs == cblock->bb_numrecs);
3786 
3787 	kp = xfs_btree_key_addr(cur, 1, block);
3788 	ckp = xfs_btree_key_addr(cur, 1, cblock);
3789 	xfs_btree_copy_keys(cur, kp, ckp, numrecs);
3790 
3791 	pp = xfs_btree_ptr_addr(cur, 1, block);
3792 	cpp = xfs_btree_ptr_addr(cur, 1, cblock);
3793 
3794 	for (i = 0; i < numrecs; i++) {
3795 		error = xfs_btree_debug_check_ptr(cur, cpp, i, level - 1);
3796 		if (error)
3797 			return error;
3798 	}
3799 
3800 	xfs_btree_copy_ptrs(cur, pp, cpp, numrecs);
3801 
3802 	error = xfs_btree_free_block(cur, cbp);
3803 	if (error)
3804 		return error;
3805 
3806 	cur->bc_levels[level - 1].bp = NULL;
3807 	be16_add_cpu(&block->bb_level, -1);
3808 	xfs_trans_log_inode(cur->bc_tp, ip,
3809 		XFS_ILOG_CORE | xfs_ilog_fbroot(cur->bc_ino.whichfork));
3810 	cur->bc_nlevels--;
3811 out0:
3812 	return 0;
3813 }
3814 
3815 /*
3816  * Kill the current root node, and replace it with it's only child node.
3817  */
3818 STATIC int
xfs_btree_kill_root(struct xfs_btree_cur * cur,struct xfs_buf * bp,int level,union xfs_btree_ptr * newroot)3819 xfs_btree_kill_root(
3820 	struct xfs_btree_cur	*cur,
3821 	struct xfs_buf		*bp,
3822 	int			level,
3823 	union xfs_btree_ptr	*newroot)
3824 {
3825 	int			error;
3826 
3827 	XFS_BTREE_STATS_INC(cur, killroot);
3828 
3829 	/*
3830 	 * Update the root pointer, decreasing the level by 1 and then
3831 	 * free the old root.
3832 	 */
3833 	xfs_btree_set_root(cur, newroot, -1);
3834 
3835 	error = xfs_btree_free_block(cur, bp);
3836 	if (error)
3837 		return error;
3838 
3839 	cur->bc_levels[level].bp = NULL;
3840 	cur->bc_levels[level].ra = 0;
3841 	cur->bc_nlevels--;
3842 
3843 	return 0;
3844 }
3845 
3846 STATIC int
xfs_btree_dec_cursor(struct xfs_btree_cur * cur,int level,int * stat)3847 xfs_btree_dec_cursor(
3848 	struct xfs_btree_cur	*cur,
3849 	int			level,
3850 	int			*stat)
3851 {
3852 	int			error;
3853 	int			i;
3854 
3855 	if (level > 0) {
3856 		error = xfs_btree_decrement(cur, level, &i);
3857 		if (error)
3858 			return error;
3859 	}
3860 
3861 	*stat = 1;
3862 	return 0;
3863 }
3864 
3865 /*
3866  * Single level of the btree record deletion routine.
3867  * Delete record pointed to by cur/level.
3868  * Remove the record from its block then rebalance the tree.
3869  * Return 0 for error, 1 for done, 2 to go on to the next level.
3870  */
3871 STATIC int					/* error */
xfs_btree_delrec(struct xfs_btree_cur * cur,int level,int * stat)3872 xfs_btree_delrec(
3873 	struct xfs_btree_cur	*cur,		/* btree cursor */
3874 	int			level,		/* level removing record from */
3875 	int			*stat)		/* fail/done/go-on */
3876 {
3877 	struct xfs_btree_block	*block;		/* btree block */
3878 	union xfs_btree_ptr	cptr;		/* current block ptr */
3879 	struct xfs_buf		*bp;		/* buffer for block */
3880 	int			error;		/* error return value */
3881 	int			i;		/* loop counter */
3882 	union xfs_btree_ptr	lptr;		/* left sibling block ptr */
3883 	struct xfs_buf		*lbp;		/* left buffer pointer */
3884 	struct xfs_btree_block	*left;		/* left btree block */
3885 	int			lrecs = 0;	/* left record count */
3886 	int			ptr;		/* key/record index */
3887 	union xfs_btree_ptr	rptr;		/* right sibling block ptr */
3888 	struct xfs_buf		*rbp;		/* right buffer pointer */
3889 	struct xfs_btree_block	*right;		/* right btree block */
3890 	struct xfs_btree_block	*rrblock;	/* right-right btree block */
3891 	struct xfs_buf		*rrbp;		/* right-right buffer pointer */
3892 	int			rrecs = 0;	/* right record count */
3893 	struct xfs_btree_cur	*tcur;		/* temporary btree cursor */
3894 	int			numrecs;	/* temporary numrec count */
3895 
3896 	tcur = NULL;
3897 
3898 	/* Get the index of the entry being deleted, check for nothing there. */
3899 	ptr = cur->bc_levels[level].ptr;
3900 	if (ptr == 0) {
3901 		*stat = 0;
3902 		return 0;
3903 	}
3904 
3905 	/* Get the buffer & block containing the record or key/ptr. */
3906 	block = xfs_btree_get_block(cur, level, &bp);
3907 	numrecs = xfs_btree_get_numrecs(block);
3908 
3909 #ifdef DEBUG
3910 	error = xfs_btree_check_block(cur, block, level, bp);
3911 	if (error)
3912 		goto error0;
3913 #endif
3914 
3915 	/* Fail if we're off the end of the block. */
3916 	if (ptr > numrecs) {
3917 		*stat = 0;
3918 		return 0;
3919 	}
3920 
3921 	XFS_BTREE_STATS_INC(cur, delrec);
3922 	XFS_BTREE_STATS_ADD(cur, moves, numrecs - ptr);
3923 
3924 	/* Excise the entries being deleted. */
3925 	if (level > 0) {
3926 		/* It's a nonleaf. operate on keys and ptrs */
3927 		union xfs_btree_key	*lkp;
3928 		union xfs_btree_ptr	*lpp;
3929 
3930 		lkp = xfs_btree_key_addr(cur, ptr + 1, block);
3931 		lpp = xfs_btree_ptr_addr(cur, ptr + 1, block);
3932 
3933 		for (i = 0; i < numrecs - ptr; i++) {
3934 			error = xfs_btree_debug_check_ptr(cur, lpp, i, level);
3935 			if (error)
3936 				goto error0;
3937 		}
3938 
3939 		if (ptr < numrecs) {
3940 			xfs_btree_shift_keys(cur, lkp, -1, numrecs - ptr);
3941 			xfs_btree_shift_ptrs(cur, lpp, -1, numrecs - ptr);
3942 			xfs_btree_log_keys(cur, bp, ptr, numrecs - 1);
3943 			xfs_btree_log_ptrs(cur, bp, ptr, numrecs - 1);
3944 		}
3945 	} else {
3946 		/* It's a leaf. operate on records */
3947 		if (ptr < numrecs) {
3948 			xfs_btree_shift_recs(cur,
3949 				xfs_btree_rec_addr(cur, ptr + 1, block),
3950 				-1, numrecs - ptr);
3951 			xfs_btree_log_recs(cur, bp, ptr, numrecs - 1);
3952 		}
3953 	}
3954 
3955 	/*
3956 	 * Decrement and log the number of entries in the block.
3957 	 */
3958 	xfs_btree_set_numrecs(block, --numrecs);
3959 	xfs_btree_log_block(cur, bp, XFS_BB_NUMRECS);
3960 
3961 	/*
3962 	 * We're at the root level.  First, shrink the root block in-memory.
3963 	 * Try to get rid of the next level down.  If we can't then there's
3964 	 * nothing left to do.
3965 	 */
3966 	if (xfs_btree_at_iroot(cur, level)) {
3967 		xfs_iroot_realloc(cur->bc_ino.ip, -1, cur->bc_ino.whichfork);
3968 
3969 		error = xfs_btree_kill_iroot(cur);
3970 		if (error)
3971 			goto error0;
3972 
3973 		error = xfs_btree_dec_cursor(cur, level, stat);
3974 		if (error)
3975 			goto error0;
3976 		*stat = 1;
3977 		return 0;
3978 	}
3979 
3980 	/*
3981 	 * If this is the root level, and there's only one entry left, and it's
3982 	 * NOT the leaf level, then we can get rid of this level.
3983 	 */
3984 	if (level == cur->bc_nlevels - 1) {
3985 		if (numrecs == 1 && level > 0) {
3986 			union xfs_btree_ptr	*pp;
3987 			/*
3988 			 * pp is still set to the first pointer in the block.
3989 			 * Make it the new root of the btree.
3990 			 */
3991 			pp = xfs_btree_ptr_addr(cur, 1, block);
3992 			error = xfs_btree_kill_root(cur, bp, level, pp);
3993 			if (error)
3994 				goto error0;
3995 		} else if (level > 0) {
3996 			error = xfs_btree_dec_cursor(cur, level, stat);
3997 			if (error)
3998 				goto error0;
3999 		}
4000 		*stat = 1;
4001 		return 0;
4002 	}
4003 
4004 	/*
4005 	 * If we deleted the leftmost entry in the block, update the
4006 	 * key values above us in the tree.
4007 	 */
4008 	if (xfs_btree_needs_key_update(cur, ptr)) {
4009 		error = xfs_btree_update_keys(cur, level);
4010 		if (error)
4011 			goto error0;
4012 	}
4013 
4014 	/*
4015 	 * If the number of records remaining in the block is at least
4016 	 * the minimum, we're done.
4017 	 */
4018 	if (numrecs >= cur->bc_ops->get_minrecs(cur, level)) {
4019 		error = xfs_btree_dec_cursor(cur, level, stat);
4020 		if (error)
4021 			goto error0;
4022 		return 0;
4023 	}
4024 
4025 	/*
4026 	 * Otherwise, we have to move some records around to keep the
4027 	 * tree balanced.  Look at the left and right sibling blocks to
4028 	 * see if we can re-balance by moving only one record.
4029 	 */
4030 	xfs_btree_get_sibling(cur, block, &rptr, XFS_BB_RIGHTSIB);
4031 	xfs_btree_get_sibling(cur, block, &lptr, XFS_BB_LEFTSIB);
4032 
4033 	if (cur->bc_ops->type == XFS_BTREE_TYPE_INODE) {
4034 		/*
4035 		 * One child of root, need to get a chance to copy its contents
4036 		 * into the root and delete it. Can't go up to next level,
4037 		 * there's nothing to delete there.
4038 		 */
4039 		if (xfs_btree_ptr_is_null(cur, &rptr) &&
4040 		    xfs_btree_ptr_is_null(cur, &lptr) &&
4041 		    level == cur->bc_nlevels - 2) {
4042 			error = xfs_btree_kill_iroot(cur);
4043 			if (!error)
4044 				error = xfs_btree_dec_cursor(cur, level, stat);
4045 			if (error)
4046 				goto error0;
4047 			return 0;
4048 		}
4049 	}
4050 
4051 	ASSERT(!xfs_btree_ptr_is_null(cur, &rptr) ||
4052 	       !xfs_btree_ptr_is_null(cur, &lptr));
4053 
4054 	/*
4055 	 * Duplicate the cursor so our btree manipulations here won't
4056 	 * disrupt the next level up.
4057 	 */
4058 	error = xfs_btree_dup_cursor(cur, &tcur);
4059 	if (error)
4060 		goto error0;
4061 
4062 	/*
4063 	 * If there's a right sibling, see if it's ok to shift an entry
4064 	 * out of it.
4065 	 */
4066 	if (!xfs_btree_ptr_is_null(cur, &rptr)) {
4067 		/*
4068 		 * Move the temp cursor to the last entry in the next block.
4069 		 * Actually any entry but the first would suffice.
4070 		 */
4071 		i = xfs_btree_lastrec(tcur, level);
4072 		if (XFS_IS_CORRUPT(cur->bc_mp, i != 1)) {
4073 			xfs_btree_mark_sick(cur);
4074 			error = -EFSCORRUPTED;
4075 			goto error0;
4076 		}
4077 
4078 		error = xfs_btree_increment(tcur, level, &i);
4079 		if (error)
4080 			goto error0;
4081 		if (XFS_IS_CORRUPT(cur->bc_mp, i != 1)) {
4082 			xfs_btree_mark_sick(cur);
4083 			error = -EFSCORRUPTED;
4084 			goto error0;
4085 		}
4086 
4087 		i = xfs_btree_lastrec(tcur, level);
4088 		if (XFS_IS_CORRUPT(cur->bc_mp, i != 1)) {
4089 			xfs_btree_mark_sick(cur);
4090 			error = -EFSCORRUPTED;
4091 			goto error0;
4092 		}
4093 
4094 		/* Grab a pointer to the block. */
4095 		right = xfs_btree_get_block(tcur, level, &rbp);
4096 #ifdef DEBUG
4097 		error = xfs_btree_check_block(tcur, right, level, rbp);
4098 		if (error)
4099 			goto error0;
4100 #endif
4101 		/* Grab the current block number, for future use. */
4102 		xfs_btree_get_sibling(tcur, right, &cptr, XFS_BB_LEFTSIB);
4103 
4104 		/*
4105 		 * If right block is full enough so that removing one entry
4106 		 * won't make it too empty, and left-shifting an entry out
4107 		 * of right to us works, we're done.
4108 		 */
4109 		if (xfs_btree_get_numrecs(right) - 1 >=
4110 		    cur->bc_ops->get_minrecs(tcur, level)) {
4111 			error = xfs_btree_lshift(tcur, level, &i);
4112 			if (error)
4113 				goto error0;
4114 			if (i) {
4115 				ASSERT(xfs_btree_get_numrecs(block) >=
4116 				       cur->bc_ops->get_minrecs(tcur, level));
4117 
4118 				xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR);
4119 				tcur = NULL;
4120 
4121 				error = xfs_btree_dec_cursor(cur, level, stat);
4122 				if (error)
4123 					goto error0;
4124 				return 0;
4125 			}
4126 		}
4127 
4128 		/*
4129 		 * Otherwise, grab the number of records in right for
4130 		 * future reference, and fix up the temp cursor to point
4131 		 * to our block again (last record).
4132 		 */
4133 		rrecs = xfs_btree_get_numrecs(right);
4134 		if (!xfs_btree_ptr_is_null(cur, &lptr)) {
4135 			i = xfs_btree_firstrec(tcur, level);
4136 			if (XFS_IS_CORRUPT(cur->bc_mp, i != 1)) {
4137 				xfs_btree_mark_sick(cur);
4138 				error = -EFSCORRUPTED;
4139 				goto error0;
4140 			}
4141 
4142 			error = xfs_btree_decrement(tcur, level, &i);
4143 			if (error)
4144 				goto error0;
4145 			if (XFS_IS_CORRUPT(cur->bc_mp, i != 1)) {
4146 				xfs_btree_mark_sick(cur);
4147 				error = -EFSCORRUPTED;
4148 				goto error0;
4149 			}
4150 		}
4151 	}
4152 
4153 	/*
4154 	 * If there's a left sibling, see if it's ok to shift an entry
4155 	 * out of it.
4156 	 */
4157 	if (!xfs_btree_ptr_is_null(cur, &lptr)) {
4158 		/*
4159 		 * Move the temp cursor to the first entry in the
4160 		 * previous block.
4161 		 */
4162 		i = xfs_btree_firstrec(tcur, level);
4163 		if (XFS_IS_CORRUPT(cur->bc_mp, i != 1)) {
4164 			xfs_btree_mark_sick(cur);
4165 			error = -EFSCORRUPTED;
4166 			goto error0;
4167 		}
4168 
4169 		error = xfs_btree_decrement(tcur, level, &i);
4170 		if (error)
4171 			goto error0;
4172 		i = xfs_btree_firstrec(tcur, level);
4173 		if (XFS_IS_CORRUPT(cur->bc_mp, i != 1)) {
4174 			xfs_btree_mark_sick(cur);
4175 			error = -EFSCORRUPTED;
4176 			goto error0;
4177 		}
4178 
4179 		/* Grab a pointer to the block. */
4180 		left = xfs_btree_get_block(tcur, level, &lbp);
4181 #ifdef DEBUG
4182 		error = xfs_btree_check_block(cur, left, level, lbp);
4183 		if (error)
4184 			goto error0;
4185 #endif
4186 		/* Grab the current block number, for future use. */
4187 		xfs_btree_get_sibling(tcur, left, &cptr, XFS_BB_RIGHTSIB);
4188 
4189 		/*
4190 		 * If left block is full enough so that removing one entry
4191 		 * won't make it too empty, and right-shifting an entry out
4192 		 * of left to us works, we're done.
4193 		 */
4194 		if (xfs_btree_get_numrecs(left) - 1 >=
4195 		    cur->bc_ops->get_minrecs(tcur, level)) {
4196 			error = xfs_btree_rshift(tcur, level, &i);
4197 			if (error)
4198 				goto error0;
4199 			if (i) {
4200 				ASSERT(xfs_btree_get_numrecs(block) >=
4201 				       cur->bc_ops->get_minrecs(tcur, level));
4202 				xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR);
4203 				tcur = NULL;
4204 				if (level == 0)
4205 					cur->bc_levels[0].ptr++;
4206 
4207 				*stat = 1;
4208 				return 0;
4209 			}
4210 		}
4211 
4212 		/*
4213 		 * Otherwise, grab the number of records in right for
4214 		 * future reference.
4215 		 */
4216 		lrecs = xfs_btree_get_numrecs(left);
4217 	}
4218 
4219 	/* Delete the temp cursor, we're done with it. */
4220 	xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR);
4221 	tcur = NULL;
4222 
4223 	/* If here, we need to do a join to keep the tree balanced. */
4224 	ASSERT(!xfs_btree_ptr_is_null(cur, &cptr));
4225 
4226 	if (!xfs_btree_ptr_is_null(cur, &lptr) &&
4227 	    lrecs + xfs_btree_get_numrecs(block) <=
4228 			cur->bc_ops->get_maxrecs(cur, level)) {
4229 		/*
4230 		 * Set "right" to be the starting block,
4231 		 * "left" to be the left neighbor.
4232 		 */
4233 		rptr = cptr;
4234 		right = block;
4235 		rbp = bp;
4236 		error = xfs_btree_read_buf_block(cur, &lptr, 0, &left, &lbp);
4237 		if (error)
4238 			goto error0;
4239 
4240 	/*
4241 	 * If that won't work, see if we can join with the right neighbor block.
4242 	 */
4243 	} else if (!xfs_btree_ptr_is_null(cur, &rptr) &&
4244 		   rrecs + xfs_btree_get_numrecs(block) <=
4245 			cur->bc_ops->get_maxrecs(cur, level)) {
4246 		/*
4247 		 * Set "left" to be the starting block,
4248 		 * "right" to be the right neighbor.
4249 		 */
4250 		lptr = cptr;
4251 		left = block;
4252 		lbp = bp;
4253 		error = xfs_btree_read_buf_block(cur, &rptr, 0, &right, &rbp);
4254 		if (error)
4255 			goto error0;
4256 
4257 	/*
4258 	 * Otherwise, we can't fix the imbalance.
4259 	 * Just return.  This is probably a logic error, but it's not fatal.
4260 	 */
4261 	} else {
4262 		error = xfs_btree_dec_cursor(cur, level, stat);
4263 		if (error)
4264 			goto error0;
4265 		return 0;
4266 	}
4267 
4268 	rrecs = xfs_btree_get_numrecs(right);
4269 	lrecs = xfs_btree_get_numrecs(left);
4270 
4271 	/*
4272 	 * We're now going to join "left" and "right" by moving all the stuff
4273 	 * in "right" to "left" and deleting "right".
4274 	 */
4275 	XFS_BTREE_STATS_ADD(cur, moves, rrecs);
4276 	if (level > 0) {
4277 		/* It's a non-leaf.  Move keys and pointers. */
4278 		union xfs_btree_key	*lkp;	/* left btree key */
4279 		union xfs_btree_ptr	*lpp;	/* left address pointer */
4280 		union xfs_btree_key	*rkp;	/* right btree key */
4281 		union xfs_btree_ptr	*rpp;	/* right address pointer */
4282 
4283 		lkp = xfs_btree_key_addr(cur, lrecs + 1, left);
4284 		lpp = xfs_btree_ptr_addr(cur, lrecs + 1, left);
4285 		rkp = xfs_btree_key_addr(cur, 1, right);
4286 		rpp = xfs_btree_ptr_addr(cur, 1, right);
4287 
4288 		for (i = 1; i < rrecs; i++) {
4289 			error = xfs_btree_debug_check_ptr(cur, rpp, i, level);
4290 			if (error)
4291 				goto error0;
4292 		}
4293 
4294 		xfs_btree_copy_keys(cur, lkp, rkp, rrecs);
4295 		xfs_btree_copy_ptrs(cur, lpp, rpp, rrecs);
4296 
4297 		xfs_btree_log_keys(cur, lbp, lrecs + 1, lrecs + rrecs);
4298 		xfs_btree_log_ptrs(cur, lbp, lrecs + 1, lrecs + rrecs);
4299 	} else {
4300 		/* It's a leaf.  Move records.  */
4301 		union xfs_btree_rec	*lrp;	/* left record pointer */
4302 		union xfs_btree_rec	*rrp;	/* right record pointer */
4303 
4304 		lrp = xfs_btree_rec_addr(cur, lrecs + 1, left);
4305 		rrp = xfs_btree_rec_addr(cur, 1, right);
4306 
4307 		xfs_btree_copy_recs(cur, lrp, rrp, rrecs);
4308 		xfs_btree_log_recs(cur, lbp, lrecs + 1, lrecs + rrecs);
4309 	}
4310 
4311 	XFS_BTREE_STATS_INC(cur, join);
4312 
4313 	/*
4314 	 * Fix up the number of records and right block pointer in the
4315 	 * surviving block, and log it.
4316 	 */
4317 	xfs_btree_set_numrecs(left, lrecs + rrecs);
4318 	xfs_btree_get_sibling(cur, right, &cptr, XFS_BB_RIGHTSIB);
4319 	xfs_btree_set_sibling(cur, left, &cptr, XFS_BB_RIGHTSIB);
4320 	xfs_btree_log_block(cur, lbp, XFS_BB_NUMRECS | XFS_BB_RIGHTSIB);
4321 
4322 	/* If there is a right sibling, point it to the remaining block. */
4323 	xfs_btree_get_sibling(cur, left, &cptr, XFS_BB_RIGHTSIB);
4324 	if (!xfs_btree_ptr_is_null(cur, &cptr)) {
4325 		error = xfs_btree_read_buf_block(cur, &cptr, 0, &rrblock, &rrbp);
4326 		if (error)
4327 			goto error0;
4328 		xfs_btree_set_sibling(cur, rrblock, &lptr, XFS_BB_LEFTSIB);
4329 		xfs_btree_log_block(cur, rrbp, XFS_BB_LEFTSIB);
4330 	}
4331 
4332 	/* Free the deleted block. */
4333 	error = xfs_btree_free_block(cur, rbp);
4334 	if (error)
4335 		goto error0;
4336 
4337 	/*
4338 	 * If we joined with the left neighbor, set the buffer in the
4339 	 * cursor to the left block, and fix up the index.
4340 	 */
4341 	if (bp != lbp) {
4342 		cur->bc_levels[level].bp = lbp;
4343 		cur->bc_levels[level].ptr += lrecs;
4344 		cur->bc_levels[level].ra = 0;
4345 	}
4346 	/*
4347 	 * If we joined with the right neighbor and there's a level above
4348 	 * us, increment the cursor at that level.
4349 	 */
4350 	else if (cur->bc_ops->type == XFS_BTREE_TYPE_INODE ||
4351 		 level + 1 < cur->bc_nlevels) {
4352 		error = xfs_btree_increment(cur, level + 1, &i);
4353 		if (error)
4354 			goto error0;
4355 	}
4356 
4357 	/*
4358 	 * Readjust the ptr at this level if it's not a leaf, since it's
4359 	 * still pointing at the deletion point, which makes the cursor
4360 	 * inconsistent.  If this makes the ptr 0, the caller fixes it up.
4361 	 * We can't use decrement because it would change the next level up.
4362 	 */
4363 	if (level > 0)
4364 		cur->bc_levels[level].ptr--;
4365 
4366 	/*
4367 	 * We combined blocks, so we have to update the parent keys if the
4368 	 * btree supports overlapped intervals.  However,
4369 	 * bc_levels[level + 1].ptr points to the old block so that the caller
4370 	 * knows which record to delete.  Therefore, the caller must be savvy
4371 	 * enough to call updkeys for us if we return stat == 2.  The other
4372 	 * exit points from this function don't require deletions further up
4373 	 * the tree, so they can call updkeys directly.
4374 	 */
4375 
4376 	/* Return value means the next level up has something to do. */
4377 	*stat = 2;
4378 	return 0;
4379 
4380 error0:
4381 	if (tcur)
4382 		xfs_btree_del_cursor(tcur, XFS_BTREE_ERROR);
4383 	return error;
4384 }
4385 
4386 /*
4387  * Delete the record pointed to by cur.
4388  * The cursor refers to the place where the record was (could be inserted)
4389  * when the operation returns.
4390  */
4391 int					/* error */
xfs_btree_delete(struct xfs_btree_cur * cur,int * stat)4392 xfs_btree_delete(
4393 	struct xfs_btree_cur	*cur,
4394 	int			*stat)	/* success/failure */
4395 {
4396 	int			error;	/* error return value */
4397 	int			level;
4398 	int			i;
4399 	bool			joined = false;
4400 
4401 	/*
4402 	 * Go up the tree, starting at leaf level.
4403 	 *
4404 	 * If 2 is returned then a join was done; go to the next level.
4405 	 * Otherwise we are done.
4406 	 */
4407 	for (level = 0, i = 2; i == 2; level++) {
4408 		error = xfs_btree_delrec(cur, level, &i);
4409 		if (error)
4410 			goto error0;
4411 		if (i == 2)
4412 			joined = true;
4413 	}
4414 
4415 	/*
4416 	 * If we combined blocks as part of deleting the record, delrec won't
4417 	 * have updated the parent high keys so we have to do that here.
4418 	 */
4419 	if (joined && (cur->bc_ops->geom_flags & XFS_BTGEO_OVERLAPPING)) {
4420 		error = xfs_btree_updkeys_force(cur, 0);
4421 		if (error)
4422 			goto error0;
4423 	}
4424 
4425 	if (i == 0) {
4426 		for (level = 1; level < cur->bc_nlevels; level++) {
4427 			if (cur->bc_levels[level].ptr == 0) {
4428 				error = xfs_btree_decrement(cur, level, &i);
4429 				if (error)
4430 					goto error0;
4431 				break;
4432 			}
4433 		}
4434 	}
4435 
4436 	*stat = i;
4437 	return 0;
4438 error0:
4439 	return error;
4440 }
4441 
4442 /*
4443  * Get the data from the pointed-to record.
4444  */
4445 int					/* error */
xfs_btree_get_rec(struct xfs_btree_cur * cur,union xfs_btree_rec ** recp,int * stat)4446 xfs_btree_get_rec(
4447 	struct xfs_btree_cur	*cur,	/* btree cursor */
4448 	union xfs_btree_rec	**recp,	/* output: btree record */
4449 	int			*stat)	/* output: success/failure */
4450 {
4451 	struct xfs_btree_block	*block;	/* btree block */
4452 	struct xfs_buf		*bp;	/* buffer pointer */
4453 	int			ptr;	/* record number */
4454 #ifdef DEBUG
4455 	int			error;	/* error return value */
4456 #endif
4457 
4458 	ptr = cur->bc_levels[0].ptr;
4459 	block = xfs_btree_get_block(cur, 0, &bp);
4460 
4461 #ifdef DEBUG
4462 	error = xfs_btree_check_block(cur, block, 0, bp);
4463 	if (error)
4464 		return error;
4465 #endif
4466 
4467 	/*
4468 	 * Off the right end or left end, return failure.
4469 	 */
4470 	if (ptr > xfs_btree_get_numrecs(block) || ptr <= 0) {
4471 		*stat = 0;
4472 		return 0;
4473 	}
4474 
4475 	/*
4476 	 * Point to the record and extract its data.
4477 	 */
4478 	*recp = xfs_btree_rec_addr(cur, ptr, block);
4479 	*stat = 1;
4480 	return 0;
4481 }
4482 
4483 /* Visit a block in a btree. */
4484 STATIC int
xfs_btree_visit_block(struct xfs_btree_cur * cur,int level,xfs_btree_visit_blocks_fn fn,void * data)4485 xfs_btree_visit_block(
4486 	struct xfs_btree_cur		*cur,
4487 	int				level,
4488 	xfs_btree_visit_blocks_fn	fn,
4489 	void				*data)
4490 {
4491 	struct xfs_btree_block		*block;
4492 	struct xfs_buf			*bp;
4493 	union xfs_btree_ptr		rptr, bufptr;
4494 	int				error;
4495 
4496 	/* do right sibling readahead */
4497 	xfs_btree_readahead(cur, level, XFS_BTCUR_RIGHTRA);
4498 	block = xfs_btree_get_block(cur, level, &bp);
4499 
4500 	/* process the block */
4501 	error = fn(cur, level, data);
4502 	if (error)
4503 		return error;
4504 
4505 	/* now read rh sibling block for next iteration */
4506 	xfs_btree_get_sibling(cur, block, &rptr, XFS_BB_RIGHTSIB);
4507 	if (xfs_btree_ptr_is_null(cur, &rptr))
4508 		return -ENOENT;
4509 
4510 	/*
4511 	 * We only visit blocks once in this walk, so we have to avoid the
4512 	 * internal xfs_btree_lookup_get_block() optimisation where it will
4513 	 * return the same block without checking if the right sibling points
4514 	 * back to us and creates a cyclic reference in the btree.
4515 	 */
4516 	xfs_btree_buf_to_ptr(cur, bp, &bufptr);
4517 	if (xfs_btree_ptrs_equal(cur, &rptr, &bufptr)) {
4518 		xfs_btree_mark_sick(cur);
4519 		return -EFSCORRUPTED;
4520 	}
4521 
4522 	return xfs_btree_lookup_get_block(cur, level, &rptr, &block);
4523 }
4524 
4525 
4526 /* Visit every block in a btree. */
4527 int
xfs_btree_visit_blocks(struct xfs_btree_cur * cur,xfs_btree_visit_blocks_fn fn,unsigned int flags,void * data)4528 xfs_btree_visit_blocks(
4529 	struct xfs_btree_cur		*cur,
4530 	xfs_btree_visit_blocks_fn	fn,
4531 	unsigned int			flags,
4532 	void				*data)
4533 {
4534 	union xfs_btree_ptr		lptr;
4535 	int				level;
4536 	struct xfs_btree_block		*block = NULL;
4537 	int				error = 0;
4538 
4539 	xfs_btree_init_ptr_from_cur(cur, &lptr);
4540 
4541 	/* for each level */
4542 	for (level = cur->bc_nlevels - 1; level >= 0; level--) {
4543 		/* grab the left hand block */
4544 		error = xfs_btree_lookup_get_block(cur, level, &lptr, &block);
4545 		if (error)
4546 			return error;
4547 
4548 		/* readahead the left most block for the next level down */
4549 		if (level > 0) {
4550 			union xfs_btree_ptr     *ptr;
4551 
4552 			ptr = xfs_btree_ptr_addr(cur, 1, block);
4553 			xfs_btree_readahead_ptr(cur, ptr, 1);
4554 
4555 			/* save for the next iteration of the loop */
4556 			xfs_btree_copy_ptrs(cur, &lptr, ptr, 1);
4557 
4558 			if (!(flags & XFS_BTREE_VISIT_LEAVES))
4559 				continue;
4560 		} else if (!(flags & XFS_BTREE_VISIT_RECORDS)) {
4561 			continue;
4562 		}
4563 
4564 		/* for each buffer in the level */
4565 		do {
4566 			error = xfs_btree_visit_block(cur, level, fn, data);
4567 		} while (!error);
4568 
4569 		if (error != -ENOENT)
4570 			return error;
4571 	}
4572 
4573 	return 0;
4574 }
4575 
4576 /*
4577  * Change the owner of a btree.
4578  *
4579  * The mechanism we use here is ordered buffer logging. Because we don't know
4580  * how many buffers were are going to need to modify, we don't really want to
4581  * have to make transaction reservations for the worst case of every buffer in a
4582  * full size btree as that may be more space that we can fit in the log....
4583  *
4584  * We do the btree walk in the most optimal manner possible - we have sibling
4585  * pointers so we can just walk all the blocks on each level from left to right
4586  * in a single pass, and then move to the next level and do the same. We can
4587  * also do readahead on the sibling pointers to get IO moving more quickly,
4588  * though for slow disks this is unlikely to make much difference to performance
4589  * as the amount of CPU work we have to do before moving to the next block is
4590  * relatively small.
4591  *
4592  * For each btree block that we load, modify the owner appropriately, set the
4593  * buffer as an ordered buffer and log it appropriately. We need to ensure that
4594  * we mark the region we change dirty so that if the buffer is relogged in
4595  * a subsequent transaction the changes we make here as an ordered buffer are
4596  * correctly relogged in that transaction.  If we are in recovery context, then
4597  * just queue the modified buffer as delayed write buffer so the transaction
4598  * recovery completion writes the changes to disk.
4599  */
4600 struct xfs_btree_block_change_owner_info {
4601 	uint64_t		new_owner;
4602 	struct list_head	*buffer_list;
4603 };
4604 
4605 static int
xfs_btree_block_change_owner(struct xfs_btree_cur * cur,int level,void * data)4606 xfs_btree_block_change_owner(
4607 	struct xfs_btree_cur	*cur,
4608 	int			level,
4609 	void			*data)
4610 {
4611 	struct xfs_btree_block_change_owner_info	*bbcoi = data;
4612 	struct xfs_btree_block	*block;
4613 	struct xfs_buf		*bp;
4614 
4615 	/* modify the owner */
4616 	block = xfs_btree_get_block(cur, level, &bp);
4617 	if (cur->bc_ops->ptr_len == XFS_BTREE_LONG_PTR_LEN) {
4618 		if (block->bb_u.l.bb_owner == cpu_to_be64(bbcoi->new_owner))
4619 			return 0;
4620 		block->bb_u.l.bb_owner = cpu_to_be64(bbcoi->new_owner);
4621 	} else {
4622 		if (block->bb_u.s.bb_owner == cpu_to_be32(bbcoi->new_owner))
4623 			return 0;
4624 		block->bb_u.s.bb_owner = cpu_to_be32(bbcoi->new_owner);
4625 	}
4626 
4627 	/*
4628 	 * If the block is a root block hosted in an inode, we might not have a
4629 	 * buffer pointer here and we shouldn't attempt to log the change as the
4630 	 * information is already held in the inode and discarded when the root
4631 	 * block is formatted into the on-disk inode fork. We still change it,
4632 	 * though, so everything is consistent in memory.
4633 	 */
4634 	if (!bp) {
4635 		ASSERT(cur->bc_ops->type == XFS_BTREE_TYPE_INODE);
4636 		ASSERT(level == cur->bc_nlevels - 1);
4637 		return 0;
4638 	}
4639 
4640 	if (cur->bc_tp) {
4641 		if (!xfs_trans_ordered_buf(cur->bc_tp, bp)) {
4642 			xfs_btree_log_block(cur, bp, XFS_BB_OWNER);
4643 			return -EAGAIN;
4644 		}
4645 	} else {
4646 		xfs_buf_delwri_queue(bp, bbcoi->buffer_list);
4647 	}
4648 
4649 	return 0;
4650 }
4651 
4652 int
xfs_btree_change_owner(struct xfs_btree_cur * cur,uint64_t new_owner,struct list_head * buffer_list)4653 xfs_btree_change_owner(
4654 	struct xfs_btree_cur	*cur,
4655 	uint64_t		new_owner,
4656 	struct list_head	*buffer_list)
4657 {
4658 	struct xfs_btree_block_change_owner_info	bbcoi;
4659 
4660 	bbcoi.new_owner = new_owner;
4661 	bbcoi.buffer_list = buffer_list;
4662 
4663 	return xfs_btree_visit_blocks(cur, xfs_btree_block_change_owner,
4664 			XFS_BTREE_VISIT_ALL, &bbcoi);
4665 }
4666 
4667 /* Verify the v5 fields of a long-format btree block. */
4668 xfs_failaddr_t
xfs_btree_fsblock_v5hdr_verify(struct xfs_buf * bp,uint64_t owner)4669 xfs_btree_fsblock_v5hdr_verify(
4670 	struct xfs_buf		*bp,
4671 	uint64_t		owner)
4672 {
4673 	struct xfs_mount	*mp = bp->b_mount;
4674 	struct xfs_btree_block	*block = XFS_BUF_TO_BLOCK(bp);
4675 
4676 	if (!xfs_has_crc(mp))
4677 		return __this_address;
4678 	if (!uuid_equal(&block->bb_u.l.bb_uuid, &mp->m_sb.sb_meta_uuid))
4679 		return __this_address;
4680 	if (block->bb_u.l.bb_blkno != cpu_to_be64(xfs_buf_daddr(bp)))
4681 		return __this_address;
4682 	if (owner != XFS_RMAP_OWN_UNKNOWN &&
4683 	    be64_to_cpu(block->bb_u.l.bb_owner) != owner)
4684 		return __this_address;
4685 	return NULL;
4686 }
4687 
4688 /* Verify a long-format btree block. */
4689 xfs_failaddr_t
xfs_btree_fsblock_verify(struct xfs_buf * bp,unsigned int max_recs)4690 xfs_btree_fsblock_verify(
4691 	struct xfs_buf		*bp,
4692 	unsigned int		max_recs)
4693 {
4694 	struct xfs_mount	*mp = bp->b_mount;
4695 	struct xfs_btree_block	*block = XFS_BUF_TO_BLOCK(bp);
4696 	xfs_fsblock_t		fsb;
4697 	xfs_failaddr_t		fa;
4698 
4699 	ASSERT(!xfs_buftarg_is_mem(bp->b_target));
4700 
4701 	/* numrecs verification */
4702 	if (be16_to_cpu(block->bb_numrecs) > max_recs)
4703 		return __this_address;
4704 
4705 	/* sibling pointer verification */
4706 	fsb = XFS_DADDR_TO_FSB(mp, xfs_buf_daddr(bp));
4707 	fa = xfs_btree_check_fsblock_siblings(mp, fsb,
4708 			block->bb_u.l.bb_leftsib);
4709 	if (!fa)
4710 		fa = xfs_btree_check_fsblock_siblings(mp, fsb,
4711 				block->bb_u.l.bb_rightsib);
4712 	return fa;
4713 }
4714 
4715 /* Verify an in-memory btree block. */
4716 xfs_failaddr_t
xfs_btree_memblock_verify(struct xfs_buf * bp,unsigned int max_recs)4717 xfs_btree_memblock_verify(
4718 	struct xfs_buf		*bp,
4719 	unsigned int		max_recs)
4720 {
4721 	struct xfs_btree_block	*block = XFS_BUF_TO_BLOCK(bp);
4722 	struct xfs_buftarg	*btp = bp->b_target;
4723 	xfs_failaddr_t		fa;
4724 	xfbno_t			bno;
4725 
4726 	ASSERT(xfs_buftarg_is_mem(bp->b_target));
4727 
4728 	/* numrecs verification */
4729 	if (be16_to_cpu(block->bb_numrecs) > max_recs)
4730 		return __this_address;
4731 
4732 	/* sibling pointer verification */
4733 	bno = xfs_daddr_to_xfbno(xfs_buf_daddr(bp));
4734 	fa = xfs_btree_check_memblock_siblings(btp, bno,
4735 			block->bb_u.l.bb_leftsib);
4736 	if (fa)
4737 		return fa;
4738 	fa = xfs_btree_check_memblock_siblings(btp, bno,
4739 			block->bb_u.l.bb_rightsib);
4740 	if (fa)
4741 		return fa;
4742 
4743 	return NULL;
4744 }
4745 /**
4746  * xfs_btree_agblock_v5hdr_verify() -- verify the v5 fields of a short-format
4747  *				      btree block
4748  *
4749  * @bp: buffer containing the btree block
4750  */
4751 xfs_failaddr_t
xfs_btree_agblock_v5hdr_verify(struct xfs_buf * bp)4752 xfs_btree_agblock_v5hdr_verify(
4753 	struct xfs_buf		*bp)
4754 {
4755 	struct xfs_mount	*mp = bp->b_mount;
4756 	struct xfs_btree_block	*block = XFS_BUF_TO_BLOCK(bp);
4757 	struct xfs_perag	*pag = bp->b_pag;
4758 
4759 	if (!xfs_has_crc(mp))
4760 		return __this_address;
4761 	if (!uuid_equal(&block->bb_u.s.bb_uuid, &mp->m_sb.sb_meta_uuid))
4762 		return __this_address;
4763 	if (block->bb_u.s.bb_blkno != cpu_to_be64(xfs_buf_daddr(bp)))
4764 		return __this_address;
4765 	if (pag && be32_to_cpu(block->bb_u.s.bb_owner) != pag->pag_agno)
4766 		return __this_address;
4767 	return NULL;
4768 }
4769 
4770 /**
4771  * xfs_btree_agblock_verify() -- verify a short-format btree block
4772  *
4773  * @bp: buffer containing the btree block
4774  * @max_recs: maximum records allowed in this btree node
4775  */
4776 xfs_failaddr_t
xfs_btree_agblock_verify(struct xfs_buf * bp,unsigned int max_recs)4777 xfs_btree_agblock_verify(
4778 	struct xfs_buf		*bp,
4779 	unsigned int		max_recs)
4780 {
4781 	struct xfs_mount	*mp = bp->b_mount;
4782 	struct xfs_btree_block	*block = XFS_BUF_TO_BLOCK(bp);
4783 	xfs_agblock_t		agbno;
4784 	xfs_failaddr_t		fa;
4785 
4786 	ASSERT(!xfs_buftarg_is_mem(bp->b_target));
4787 
4788 	/* numrecs verification */
4789 	if (be16_to_cpu(block->bb_numrecs) > max_recs)
4790 		return __this_address;
4791 
4792 	/* sibling pointer verification */
4793 	agbno = xfs_daddr_to_agbno(mp, xfs_buf_daddr(bp));
4794 	fa = xfs_btree_check_agblock_siblings(bp->b_pag, agbno,
4795 			block->bb_u.s.bb_leftsib);
4796 	if (!fa)
4797 		fa = xfs_btree_check_agblock_siblings(bp->b_pag, agbno,
4798 				block->bb_u.s.bb_rightsib);
4799 	return fa;
4800 }
4801 
4802 /*
4803  * For the given limits on leaf and keyptr records per block, calculate the
4804  * height of the tree needed to index the number of leaf records.
4805  */
4806 unsigned int
xfs_btree_compute_maxlevels(const unsigned int * limits,unsigned long long records)4807 xfs_btree_compute_maxlevels(
4808 	const unsigned int	*limits,
4809 	unsigned long long	records)
4810 {
4811 	unsigned long long	level_blocks = howmany_64(records, limits[0]);
4812 	unsigned int		height = 1;
4813 
4814 	while (level_blocks > 1) {
4815 		level_blocks = howmany_64(level_blocks, limits[1]);
4816 		height++;
4817 	}
4818 
4819 	return height;
4820 }
4821 
4822 /*
4823  * For the given limits on leaf and keyptr records per block, calculate the
4824  * number of blocks needed to index the given number of leaf records.
4825  */
4826 unsigned long long
xfs_btree_calc_size(const unsigned int * limits,unsigned long long records)4827 xfs_btree_calc_size(
4828 	const unsigned int	*limits,
4829 	unsigned long long	records)
4830 {
4831 	unsigned long long	level_blocks = howmany_64(records, limits[0]);
4832 	unsigned long long	blocks = level_blocks;
4833 
4834 	while (level_blocks > 1) {
4835 		level_blocks = howmany_64(level_blocks, limits[1]);
4836 		blocks += level_blocks;
4837 	}
4838 
4839 	return blocks;
4840 }
4841 
4842 /*
4843  * Given a number of available blocks for the btree to consume with records and
4844  * pointers, calculate the height of the tree needed to index all the records
4845  * that space can hold based on the number of pointers each interior node
4846  * holds.
4847  *
4848  * We start by assuming a single level tree consumes a single block, then track
4849  * the number of blocks each node level consumes until we no longer have space
4850  * to store the next node level. At this point, we are indexing all the leaf
4851  * blocks in the space, and there's no more free space to split the tree any
4852  * further. That's our maximum btree height.
4853  */
4854 unsigned int
xfs_btree_space_to_height(const unsigned int * limits,unsigned long long leaf_blocks)4855 xfs_btree_space_to_height(
4856 	const unsigned int	*limits,
4857 	unsigned long long	leaf_blocks)
4858 {
4859 	/*
4860 	 * The root btree block can have fewer than minrecs pointers in it
4861 	 * because the tree might not be big enough to require that amount of
4862 	 * fanout. Hence it has a minimum size of 2 pointers, not limits[1].
4863 	 */
4864 	unsigned long long	node_blocks = 2;
4865 	unsigned long long	blocks_left = leaf_blocks - 1;
4866 	unsigned int		height = 1;
4867 
4868 	if (leaf_blocks < 1)
4869 		return 0;
4870 
4871 	while (node_blocks < blocks_left) {
4872 		blocks_left -= node_blocks;
4873 		node_blocks *= limits[1];
4874 		height++;
4875 	}
4876 
4877 	return height;
4878 }
4879 
4880 /*
4881  * Query a regular btree for all records overlapping a given interval.
4882  * Start with a LE lookup of the key of low_rec and return all records
4883  * until we find a record with a key greater than the key of high_rec.
4884  */
4885 STATIC int
xfs_btree_simple_query_range(struct xfs_btree_cur * cur,const union xfs_btree_key * low_key,const union xfs_btree_key * high_key,xfs_btree_query_range_fn fn,void * priv)4886 xfs_btree_simple_query_range(
4887 	struct xfs_btree_cur		*cur,
4888 	const union xfs_btree_key	*low_key,
4889 	const union xfs_btree_key	*high_key,
4890 	xfs_btree_query_range_fn	fn,
4891 	void				*priv)
4892 {
4893 	union xfs_btree_rec		*recp;
4894 	union xfs_btree_key		rec_key;
4895 	int				stat;
4896 	bool				firstrec = true;
4897 	int				error;
4898 
4899 	ASSERT(cur->bc_ops->init_high_key_from_rec);
4900 	ASSERT(cur->bc_ops->diff_two_keys);
4901 
4902 	/*
4903 	 * Find the leftmost record.  The btree cursor must be set
4904 	 * to the low record used to generate low_key.
4905 	 */
4906 	stat = 0;
4907 	error = xfs_btree_lookup(cur, XFS_LOOKUP_LE, &stat);
4908 	if (error)
4909 		goto out;
4910 
4911 	/* Nothing?  See if there's anything to the right. */
4912 	if (!stat) {
4913 		error = xfs_btree_increment(cur, 0, &stat);
4914 		if (error)
4915 			goto out;
4916 	}
4917 
4918 	while (stat) {
4919 		/* Find the record. */
4920 		error = xfs_btree_get_rec(cur, &recp, &stat);
4921 		if (error || !stat)
4922 			break;
4923 
4924 		/* Skip if low_key > high_key(rec). */
4925 		if (firstrec) {
4926 			cur->bc_ops->init_high_key_from_rec(&rec_key, recp);
4927 			firstrec = false;
4928 			if (xfs_btree_keycmp_gt(cur, low_key, &rec_key))
4929 				goto advloop;
4930 		}
4931 
4932 		/* Stop if low_key(rec) > high_key. */
4933 		cur->bc_ops->init_key_from_rec(&rec_key, recp);
4934 		if (xfs_btree_keycmp_gt(cur, &rec_key, high_key))
4935 			break;
4936 
4937 		/* Callback */
4938 		error = fn(cur, recp, priv);
4939 		if (error)
4940 			break;
4941 
4942 advloop:
4943 		/* Move on to the next record. */
4944 		error = xfs_btree_increment(cur, 0, &stat);
4945 		if (error)
4946 			break;
4947 	}
4948 
4949 out:
4950 	return error;
4951 }
4952 
4953 /*
4954  * Query an overlapped interval btree for all records overlapping a given
4955  * interval.  This function roughly follows the algorithm given in
4956  * "Interval Trees" of _Introduction to Algorithms_, which is section
4957  * 14.3 in the 2nd and 3rd editions.
4958  *
4959  * First, generate keys for the low and high records passed in.
4960  *
4961  * For any leaf node, generate the high and low keys for the record.
4962  * If the record keys overlap with the query low/high keys, pass the
4963  * record to the function iterator.
4964  *
4965  * For any internal node, compare the low and high keys of each
4966  * pointer against the query low/high keys.  If there's an overlap,
4967  * follow the pointer.
4968  *
4969  * As an optimization, we stop scanning a block when we find a low key
4970  * that is greater than the query's high key.
4971  */
4972 STATIC int
xfs_btree_overlapped_query_range(struct xfs_btree_cur * cur,const union xfs_btree_key * low_key,const union xfs_btree_key * high_key,xfs_btree_query_range_fn fn,void * priv)4973 xfs_btree_overlapped_query_range(
4974 	struct xfs_btree_cur		*cur,
4975 	const union xfs_btree_key	*low_key,
4976 	const union xfs_btree_key	*high_key,
4977 	xfs_btree_query_range_fn	fn,
4978 	void				*priv)
4979 {
4980 	union xfs_btree_ptr		ptr;
4981 	union xfs_btree_ptr		*pp;
4982 	union xfs_btree_key		rec_key;
4983 	union xfs_btree_key		rec_hkey;
4984 	union xfs_btree_key		*lkp;
4985 	union xfs_btree_key		*hkp;
4986 	union xfs_btree_rec		*recp;
4987 	struct xfs_btree_block		*block;
4988 	int				level;
4989 	struct xfs_buf			*bp;
4990 	int				i;
4991 	int				error;
4992 
4993 	/* Load the root of the btree. */
4994 	level = cur->bc_nlevels - 1;
4995 	xfs_btree_init_ptr_from_cur(cur, &ptr);
4996 	error = xfs_btree_lookup_get_block(cur, level, &ptr, &block);
4997 	if (error)
4998 		return error;
4999 	xfs_btree_get_block(cur, level, &bp);
5000 	trace_xfs_btree_overlapped_query_range(cur, level, bp);
5001 #ifdef DEBUG
5002 	error = xfs_btree_check_block(cur, block, level, bp);
5003 	if (error)
5004 		goto out;
5005 #endif
5006 	cur->bc_levels[level].ptr = 1;
5007 
5008 	while (level < cur->bc_nlevels) {
5009 		block = xfs_btree_get_block(cur, level, &bp);
5010 
5011 		/* End of node, pop back towards the root. */
5012 		if (cur->bc_levels[level].ptr >
5013 					be16_to_cpu(block->bb_numrecs)) {
5014 pop_up:
5015 			if (level < cur->bc_nlevels - 1)
5016 				cur->bc_levels[level + 1].ptr++;
5017 			level++;
5018 			continue;
5019 		}
5020 
5021 		if (level == 0) {
5022 			/* Handle a leaf node. */
5023 			recp = xfs_btree_rec_addr(cur, cur->bc_levels[0].ptr,
5024 					block);
5025 
5026 			cur->bc_ops->init_high_key_from_rec(&rec_hkey, recp);
5027 			cur->bc_ops->init_key_from_rec(&rec_key, recp);
5028 
5029 			/*
5030 			 * If (query's high key < record's low key), then there
5031 			 * are no more interesting records in this block.  Pop
5032 			 * up to the leaf level to find more record blocks.
5033 			 *
5034 			 * If (record's high key >= query's low key) and
5035 			 *    (query's high key >= record's low key), then
5036 			 * this record overlaps the query range; callback.
5037 			 */
5038 			if (xfs_btree_keycmp_lt(cur, high_key, &rec_key))
5039 				goto pop_up;
5040 			if (xfs_btree_keycmp_ge(cur, &rec_hkey, low_key)) {
5041 				error = fn(cur, recp, priv);
5042 				if (error)
5043 					break;
5044 			}
5045 			cur->bc_levels[level].ptr++;
5046 			continue;
5047 		}
5048 
5049 		/* Handle an internal node. */
5050 		lkp = xfs_btree_key_addr(cur, cur->bc_levels[level].ptr, block);
5051 		hkp = xfs_btree_high_key_addr(cur, cur->bc_levels[level].ptr,
5052 				block);
5053 		pp = xfs_btree_ptr_addr(cur, cur->bc_levels[level].ptr, block);
5054 
5055 		/*
5056 		 * If (query's high key < pointer's low key), then there are no
5057 		 * more interesting keys in this block.  Pop up one leaf level
5058 		 * to continue looking for records.
5059 		 *
5060 		 * If (pointer's high key >= query's low key) and
5061 		 *    (query's high key >= pointer's low key), then
5062 		 * this record overlaps the query range; follow pointer.
5063 		 */
5064 		if (xfs_btree_keycmp_lt(cur, high_key, lkp))
5065 			goto pop_up;
5066 		if (xfs_btree_keycmp_ge(cur, hkp, low_key)) {
5067 			level--;
5068 			error = xfs_btree_lookup_get_block(cur, level, pp,
5069 					&block);
5070 			if (error)
5071 				goto out;
5072 			xfs_btree_get_block(cur, level, &bp);
5073 			trace_xfs_btree_overlapped_query_range(cur, level, bp);
5074 #ifdef DEBUG
5075 			error = xfs_btree_check_block(cur, block, level, bp);
5076 			if (error)
5077 				goto out;
5078 #endif
5079 			cur->bc_levels[level].ptr = 1;
5080 			continue;
5081 		}
5082 		cur->bc_levels[level].ptr++;
5083 	}
5084 
5085 out:
5086 	/*
5087 	 * If we don't end this function with the cursor pointing at a record
5088 	 * block, a subsequent non-error cursor deletion will not release
5089 	 * node-level buffers, causing a buffer leak.  This is quite possible
5090 	 * with a zero-results range query, so release the buffers if we
5091 	 * failed to return any results.
5092 	 */
5093 	if (cur->bc_levels[0].bp == NULL) {
5094 		for (i = 0; i < cur->bc_nlevels; i++) {
5095 			if (cur->bc_levels[i].bp) {
5096 				xfs_trans_brelse(cur->bc_tp,
5097 						cur->bc_levels[i].bp);
5098 				cur->bc_levels[i].bp = NULL;
5099 				cur->bc_levels[i].ptr = 0;
5100 				cur->bc_levels[i].ra = 0;
5101 			}
5102 		}
5103 	}
5104 
5105 	return error;
5106 }
5107 
5108 static inline void
xfs_btree_key_from_irec(struct xfs_btree_cur * cur,union xfs_btree_key * key,const union xfs_btree_irec * irec)5109 xfs_btree_key_from_irec(
5110 	struct xfs_btree_cur		*cur,
5111 	union xfs_btree_key		*key,
5112 	const union xfs_btree_irec	*irec)
5113 {
5114 	union xfs_btree_rec		rec;
5115 
5116 	cur->bc_rec = *irec;
5117 	cur->bc_ops->init_rec_from_cur(cur, &rec);
5118 	cur->bc_ops->init_key_from_rec(key, &rec);
5119 }
5120 
5121 /*
5122  * Query a btree for all records overlapping a given interval of keys.  The
5123  * supplied function will be called with each record found; return one of the
5124  * XFS_BTREE_QUERY_RANGE_{CONTINUE,ABORT} values or the usual negative error
5125  * code.  This function returns -ECANCELED, zero, or a negative error code.
5126  */
5127 int
xfs_btree_query_range(struct xfs_btree_cur * cur,const union xfs_btree_irec * low_rec,const union xfs_btree_irec * high_rec,xfs_btree_query_range_fn fn,void * priv)5128 xfs_btree_query_range(
5129 	struct xfs_btree_cur		*cur,
5130 	const union xfs_btree_irec	*low_rec,
5131 	const union xfs_btree_irec	*high_rec,
5132 	xfs_btree_query_range_fn	fn,
5133 	void				*priv)
5134 {
5135 	union xfs_btree_key		low_key;
5136 	union xfs_btree_key		high_key;
5137 
5138 	/* Find the keys of both ends of the interval. */
5139 	xfs_btree_key_from_irec(cur, &high_key, high_rec);
5140 	xfs_btree_key_from_irec(cur, &low_key, low_rec);
5141 
5142 	/* Enforce low key <= high key. */
5143 	if (!xfs_btree_keycmp_le(cur, &low_key, &high_key))
5144 		return -EINVAL;
5145 
5146 	if (!(cur->bc_ops->geom_flags & XFS_BTGEO_OVERLAPPING))
5147 		return xfs_btree_simple_query_range(cur, &low_key,
5148 				&high_key, fn, priv);
5149 	return xfs_btree_overlapped_query_range(cur, &low_key, &high_key,
5150 			fn, priv);
5151 }
5152 
5153 /* Query a btree for all records. */
5154 int
xfs_btree_query_all(struct xfs_btree_cur * cur,xfs_btree_query_range_fn fn,void * priv)5155 xfs_btree_query_all(
5156 	struct xfs_btree_cur		*cur,
5157 	xfs_btree_query_range_fn	fn,
5158 	void				*priv)
5159 {
5160 	union xfs_btree_key		low_key;
5161 	union xfs_btree_key		high_key;
5162 
5163 	memset(&cur->bc_rec, 0, sizeof(cur->bc_rec));
5164 	memset(&low_key, 0, sizeof(low_key));
5165 	memset(&high_key, 0xFF, sizeof(high_key));
5166 
5167 	return xfs_btree_simple_query_range(cur, &low_key, &high_key, fn, priv);
5168 }
5169 
5170 static int
xfs_btree_count_blocks_helper(struct xfs_btree_cur * cur,int level,void * data)5171 xfs_btree_count_blocks_helper(
5172 	struct xfs_btree_cur	*cur,
5173 	int			level,
5174 	void			*data)
5175 {
5176 	xfs_filblks_t		*blocks = data;
5177 	(*blocks)++;
5178 
5179 	return 0;
5180 }
5181 
5182 /* Count the blocks in a btree and return the result in *blocks. */
5183 int
xfs_btree_count_blocks(struct xfs_btree_cur * cur,xfs_filblks_t * blocks)5184 xfs_btree_count_blocks(
5185 	struct xfs_btree_cur	*cur,
5186 	xfs_filblks_t		*blocks)
5187 {
5188 	*blocks = 0;
5189 	return xfs_btree_visit_blocks(cur, xfs_btree_count_blocks_helper,
5190 			XFS_BTREE_VISIT_ALL, blocks);
5191 }
5192 
5193 /* Compare two btree pointers. */
5194 int64_t
xfs_btree_diff_two_ptrs(struct xfs_btree_cur * cur,const union xfs_btree_ptr * a,const union xfs_btree_ptr * b)5195 xfs_btree_diff_two_ptrs(
5196 	struct xfs_btree_cur		*cur,
5197 	const union xfs_btree_ptr	*a,
5198 	const union xfs_btree_ptr	*b)
5199 {
5200 	if (cur->bc_ops->ptr_len == XFS_BTREE_LONG_PTR_LEN)
5201 		return (int64_t)be64_to_cpu(a->l) - be64_to_cpu(b->l);
5202 	return (int64_t)be32_to_cpu(a->s) - be32_to_cpu(b->s);
5203 }
5204 
5205 struct xfs_btree_has_records {
5206 	/* Keys for the start and end of the range we want to know about. */
5207 	union xfs_btree_key		start_key;
5208 	union xfs_btree_key		end_key;
5209 
5210 	/* Mask for key comparisons, if desired. */
5211 	const union xfs_btree_key	*key_mask;
5212 
5213 	/* Highest record key we've seen so far. */
5214 	union xfs_btree_key		high_key;
5215 
5216 	enum xbtree_recpacking		outcome;
5217 };
5218 
5219 STATIC int
xfs_btree_has_records_helper(struct xfs_btree_cur * cur,const union xfs_btree_rec * rec,void * priv)5220 xfs_btree_has_records_helper(
5221 	struct xfs_btree_cur		*cur,
5222 	const union xfs_btree_rec	*rec,
5223 	void				*priv)
5224 {
5225 	union xfs_btree_key		rec_key;
5226 	union xfs_btree_key		rec_high_key;
5227 	struct xfs_btree_has_records	*info = priv;
5228 	enum xbtree_key_contig		key_contig;
5229 
5230 	cur->bc_ops->init_key_from_rec(&rec_key, rec);
5231 
5232 	if (info->outcome == XBTREE_RECPACKING_EMPTY) {
5233 		info->outcome = XBTREE_RECPACKING_SPARSE;
5234 
5235 		/*
5236 		 * If the first record we find does not overlap the start key,
5237 		 * then there is a hole at the start of the search range.
5238 		 * Classify this as sparse and stop immediately.
5239 		 */
5240 		if (xfs_btree_masked_keycmp_lt(cur, &info->start_key, &rec_key,
5241 					info->key_mask))
5242 			return -ECANCELED;
5243 	} else {
5244 		/*
5245 		 * If a subsequent record does not overlap with the any record
5246 		 * we've seen so far, there is a hole in the middle of the
5247 		 * search range.  Classify this as sparse and stop.
5248 		 * If the keys overlap and this btree does not allow overlap,
5249 		 * signal corruption.
5250 		 */
5251 		key_contig = cur->bc_ops->keys_contiguous(cur, &info->high_key,
5252 					&rec_key, info->key_mask);
5253 		if (key_contig == XBTREE_KEY_OVERLAP &&
5254 				!(cur->bc_ops->geom_flags & XFS_BTGEO_OVERLAPPING))
5255 			return -EFSCORRUPTED;
5256 		if (key_contig == XBTREE_KEY_GAP)
5257 			return -ECANCELED;
5258 	}
5259 
5260 	/*
5261 	 * If high_key(rec) is larger than any other high key we've seen,
5262 	 * remember it for later.
5263 	 */
5264 	cur->bc_ops->init_high_key_from_rec(&rec_high_key, rec);
5265 	if (xfs_btree_masked_keycmp_gt(cur, &rec_high_key, &info->high_key,
5266 				info->key_mask))
5267 		info->high_key = rec_high_key; /* struct copy */
5268 
5269 	return 0;
5270 }
5271 
5272 /*
5273  * Scan part of the keyspace of a btree and tell us if that keyspace does not
5274  * map to any records; is fully mapped to records; or is partially mapped to
5275  * records.  This is the btree record equivalent to determining if a file is
5276  * sparse.
5277  *
5278  * For most btree types, the record scan should use all available btree key
5279  * fields to compare the keys encountered.  These callers should pass NULL for
5280  * @mask.  However, some callers (e.g.  scanning physical space in the rmapbt)
5281  * want to ignore some part of the btree record keyspace when performing the
5282  * comparison.  These callers should pass in a union xfs_btree_key object with
5283  * the fields that *should* be a part of the comparison set to any nonzero
5284  * value, and the rest zeroed.
5285  */
5286 int
xfs_btree_has_records(struct xfs_btree_cur * cur,const union xfs_btree_irec * low,const union xfs_btree_irec * high,const union xfs_btree_key * mask,enum xbtree_recpacking * outcome)5287 xfs_btree_has_records(
5288 	struct xfs_btree_cur		*cur,
5289 	const union xfs_btree_irec	*low,
5290 	const union xfs_btree_irec	*high,
5291 	const union xfs_btree_key	*mask,
5292 	enum xbtree_recpacking		*outcome)
5293 {
5294 	struct xfs_btree_has_records	info = {
5295 		.outcome		= XBTREE_RECPACKING_EMPTY,
5296 		.key_mask		= mask,
5297 	};
5298 	int				error;
5299 
5300 	/* Not all btrees support this operation. */
5301 	if (!cur->bc_ops->keys_contiguous) {
5302 		ASSERT(0);
5303 		return -EOPNOTSUPP;
5304 	}
5305 
5306 	xfs_btree_key_from_irec(cur, &info.start_key, low);
5307 	xfs_btree_key_from_irec(cur, &info.end_key, high);
5308 
5309 	error = xfs_btree_query_range(cur, low, high,
5310 			xfs_btree_has_records_helper, &info);
5311 	if (error == -ECANCELED)
5312 		goto out;
5313 	if (error)
5314 		return error;
5315 
5316 	if (info.outcome == XBTREE_RECPACKING_EMPTY)
5317 		goto out;
5318 
5319 	/*
5320 	 * If the largest high_key(rec) we saw during the walk is greater than
5321 	 * the end of the search range, classify this as full.  Otherwise,
5322 	 * there is a hole at the end of the search range.
5323 	 */
5324 	if (xfs_btree_masked_keycmp_ge(cur, &info.high_key, &info.end_key,
5325 				mask))
5326 		info.outcome = XBTREE_RECPACKING_FULL;
5327 
5328 out:
5329 	*outcome = info.outcome;
5330 	return 0;
5331 }
5332 
5333 /* Are there more records in this btree? */
5334 bool
xfs_btree_has_more_records(struct xfs_btree_cur * cur)5335 xfs_btree_has_more_records(
5336 	struct xfs_btree_cur	*cur)
5337 {
5338 	struct xfs_btree_block	*block;
5339 	struct xfs_buf		*bp;
5340 
5341 	block = xfs_btree_get_block(cur, 0, &bp);
5342 
5343 	/* There are still records in this block. */
5344 	if (cur->bc_levels[0].ptr < xfs_btree_get_numrecs(block))
5345 		return true;
5346 
5347 	/* There are more record blocks. */
5348 	if (cur->bc_ops->ptr_len == XFS_BTREE_LONG_PTR_LEN)
5349 		return block->bb_u.l.bb_rightsib != cpu_to_be64(NULLFSBLOCK);
5350 	else
5351 		return block->bb_u.s.bb_rightsib != cpu_to_be32(NULLAGBLOCK);
5352 }
5353 
5354 /* Set up all the btree cursor caches. */
5355 int __init
xfs_btree_init_cur_caches(void)5356 xfs_btree_init_cur_caches(void)
5357 {
5358 	int		error;
5359 
5360 	error = xfs_allocbt_init_cur_cache();
5361 	if (error)
5362 		return error;
5363 	error = xfs_inobt_init_cur_cache();
5364 	if (error)
5365 		goto err;
5366 	error = xfs_bmbt_init_cur_cache();
5367 	if (error)
5368 		goto err;
5369 	error = xfs_rmapbt_init_cur_cache();
5370 	if (error)
5371 		goto err;
5372 	error = xfs_refcountbt_init_cur_cache();
5373 	if (error)
5374 		goto err;
5375 
5376 	return 0;
5377 err:
5378 	xfs_btree_destroy_cur_caches();
5379 	return error;
5380 }
5381 
5382 /* Destroy all the btree cursor caches, if they've been allocated. */
5383 void
xfs_btree_destroy_cur_caches(void)5384 xfs_btree_destroy_cur_caches(void)
5385 {
5386 	xfs_allocbt_destroy_cur_cache();
5387 	xfs_inobt_destroy_cur_cache();
5388 	xfs_bmbt_destroy_cur_cache();
5389 	xfs_rmapbt_destroy_cur_cache();
5390 	xfs_refcountbt_destroy_cur_cache();
5391 }
5392 
5393 /* Move the btree cursor before the first record. */
5394 int
xfs_btree_goto_left_edge(struct xfs_btree_cur * cur)5395 xfs_btree_goto_left_edge(
5396 	struct xfs_btree_cur	*cur)
5397 {
5398 	int			stat = 0;
5399 	int			error;
5400 
5401 	memset(&cur->bc_rec, 0, sizeof(cur->bc_rec));
5402 	error = xfs_btree_lookup(cur, XFS_LOOKUP_LE, &stat);
5403 	if (error)
5404 		return error;
5405 	if (!stat)
5406 		return 0;
5407 
5408 	error = xfs_btree_decrement(cur, 0, &stat);
5409 	if (error)
5410 		return error;
5411 	if (stat != 0) {
5412 		ASSERT(0);
5413 		xfs_btree_mark_sick(cur);
5414 		return -EFSCORRUPTED;
5415 	}
5416 
5417 	return 0;
5418 }
5419