blob: 4d793e4ccdcc720d53502c93b74ad4eb622f3dd8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_trans.h"
25#include "xfs_sb.h"
26#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_dir2.h"
28#include "xfs_dmapi.h"
29#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110034#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_dinode.h"
36#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110037#include "xfs_btree.h"
38#include "xfs_ialloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "xfs_error.h"
40
41/*
42 * Cursor allocation zone.
43 */
44kmem_zone_t *xfs_btree_cur_zone;
45
46/*
47 * Btree magic numbers.
48 */
Christoph Hellwigcdcf43332008-08-13 16:23:50 +100049const __uint32_t xfs_magics[XFS_BTNUM_MAX] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 XFS_ABTB_MAGIC, XFS_ABTC_MAGIC, XFS_BMAP_MAGIC, XFS_IBT_MAGIC
51};
52
53/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 * Checking routine: return maxrecs for the block.
55 */
56STATIC int /* number of records fitting in block */
57xfs_btree_maxrecs(
58 xfs_btree_cur_t *cur, /* btree cursor */
59 xfs_btree_block_t *block) /* generic btree block pointer */
60{
61 switch (cur->bc_btnum) {
62 case XFS_BTNUM_BNO:
63 case XFS_BTNUM_CNT:
Christoph Hellwig16259e72005-11-02 15:11:25 +110064 return (int)XFS_ALLOC_BLOCK_MAXRECS(
Christoph Hellwigf2277f02008-10-30 16:53:47 +110065 be16_to_cpu(block->bb_level), cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 case XFS_BTNUM_BMAP:
Christoph Hellwig16259e72005-11-02 15:11:25 +110067 return (int)XFS_BMAP_BLOCK_IMAXRECS(
Christoph Hellwigf2277f02008-10-30 16:53:47 +110068 be16_to_cpu(block->bb_level), cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 case XFS_BTNUM_INO:
Christoph Hellwig16259e72005-11-02 15:11:25 +110070 return (int)XFS_INOBT_BLOCK_MAXRECS(
Christoph Hellwigf2277f02008-10-30 16:53:47 +110071 be16_to_cpu(block->bb_level), cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 default:
73 ASSERT(0);
74 return 0;
75 }
76}
77
78/*
79 * External routines.
80 */
81
82#ifdef DEBUG
83/*
84 * Debug routine: check that block header is ok.
85 */
86void
87xfs_btree_check_block(
88 xfs_btree_cur_t *cur, /* btree cursor */
89 xfs_btree_block_t *block, /* generic btree block pointer */
90 int level, /* level of the btree block */
91 xfs_buf_t *bp) /* buffer containing block, if any */
92{
Christoph Hellwige99ab902008-10-30 16:54:33 +110093 if (cur->bc_flags & XFS_BTREE_LONG_PTRS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 xfs_btree_check_lblock(cur, (xfs_btree_lblock_t *)block, level,
95 bp);
96 else
97 xfs_btree_check_sblock(cur, (xfs_btree_sblock_t *)block, level,
98 bp);
99}
100
101/*
102 * Debug routine: check that keys are in the right order.
103 */
104void
105xfs_btree_check_key(
106 xfs_btnum_t btnum, /* btree identifier */
107 void *ak1, /* pointer to left (lower) key */
108 void *ak2) /* pointer to right (higher) key */
109{
110 switch (btnum) {
111 case XFS_BTNUM_BNO: {
112 xfs_alloc_key_t *k1;
113 xfs_alloc_key_t *k2;
114
115 k1 = ak1;
116 k2 = ak2;
Christoph Hellwig16259e72005-11-02 15:11:25 +1100117 ASSERT(be32_to_cpu(k1->ar_startblock) < be32_to_cpu(k2->ar_startblock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 break;
119 }
120 case XFS_BTNUM_CNT: {
121 xfs_alloc_key_t *k1;
122 xfs_alloc_key_t *k2;
123
124 k1 = ak1;
125 k2 = ak2;
Christoph Hellwig16259e72005-11-02 15:11:25 +1100126 ASSERT(be32_to_cpu(k1->ar_blockcount) < be32_to_cpu(k2->ar_blockcount) ||
127 (k1->ar_blockcount == k2->ar_blockcount &&
128 be32_to_cpu(k1->ar_startblock) < be32_to_cpu(k2->ar_startblock)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 break;
130 }
131 case XFS_BTNUM_BMAP: {
132 xfs_bmbt_key_t *k1;
133 xfs_bmbt_key_t *k2;
134
135 k1 = ak1;
136 k2 = ak2;
Christoph Hellwig8801bb92006-09-28 10:58:17 +1000137 ASSERT(be64_to_cpu(k1->br_startoff) < be64_to_cpu(k2->br_startoff));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 break;
139 }
140 case XFS_BTNUM_INO: {
141 xfs_inobt_key_t *k1;
142 xfs_inobt_key_t *k2;
143
144 k1 = ak1;
145 k2 = ak2;
Christoph Hellwig61a25842006-09-28 10:57:04 +1000146 ASSERT(be32_to_cpu(k1->ir_startino) < be32_to_cpu(k2->ir_startino));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 break;
148 }
149 default:
150 ASSERT(0);
151 }
152}
153#endif /* DEBUG */
154
155/*
156 * Checking routine: check that long form block header is ok.
157 */
158/* ARGSUSED */
159int /* error (0 or EFSCORRUPTED) */
160xfs_btree_check_lblock(
161 xfs_btree_cur_t *cur, /* btree cursor */
162 xfs_btree_lblock_t *block, /* btree long form block pointer */
163 int level, /* level of the btree block */
164 xfs_buf_t *bp) /* buffer for block, if any */
165{
166 int lblock_ok; /* block passes checks */
167 xfs_mount_t *mp; /* file system mount point */
168
169 mp = cur->bc_mp;
170 lblock_ok =
Christoph Hellwig16259e72005-11-02 15:11:25 +1100171 be32_to_cpu(block->bb_magic) == xfs_magics[cur->bc_btnum] &&
172 be16_to_cpu(block->bb_level) == level &&
173 be16_to_cpu(block->bb_numrecs) <=
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 xfs_btree_maxrecs(cur, (xfs_btree_block_t *)block) &&
175 block->bb_leftsib &&
Christoph Hellwig16259e72005-11-02 15:11:25 +1100176 (be64_to_cpu(block->bb_leftsib) == NULLDFSBNO ||
177 XFS_FSB_SANITY_CHECK(mp, be64_to_cpu(block->bb_leftsib))) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 block->bb_rightsib &&
Christoph Hellwig16259e72005-11-02 15:11:25 +1100179 (be64_to_cpu(block->bb_rightsib) == NULLDFSBNO ||
180 XFS_FSB_SANITY_CHECK(mp, be64_to_cpu(block->bb_rightsib)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 if (unlikely(XFS_TEST_ERROR(!lblock_ok, mp, XFS_ERRTAG_BTREE_CHECK_LBLOCK,
182 XFS_RANDOM_BTREE_CHECK_LBLOCK))) {
183 if (bp)
184 xfs_buftrace("LBTREE ERROR", bp);
185 XFS_ERROR_REPORT("xfs_btree_check_lblock", XFS_ERRLEVEL_LOW,
186 mp);
187 return XFS_ERROR(EFSCORRUPTED);
188 }
189 return 0;
190}
191
192/*
193 * Checking routine: check that (long) pointer is ok.
194 */
195int /* error (0 or EFSCORRUPTED) */
196xfs_btree_check_lptr(
197 xfs_btree_cur_t *cur, /* btree cursor */
198 xfs_dfsbno_t ptr, /* btree block disk address */
199 int level) /* btree block level */
200{
201 xfs_mount_t *mp; /* file system mount point */
202
203 mp = cur->bc_mp;
204 XFS_WANT_CORRUPTED_RETURN(
205 level > 0 &&
206 ptr != NULLDFSBNO &&
207 XFS_FSB_SANITY_CHECK(mp, ptr));
208 return 0;
209}
210
211#ifdef DEBUG
212/*
213 * Debug routine: check that records are in the right order.
214 */
215void
216xfs_btree_check_rec(
217 xfs_btnum_t btnum, /* btree identifier */
218 void *ar1, /* pointer to left (lower) record */
219 void *ar2) /* pointer to right (higher) record */
220{
221 switch (btnum) {
222 case XFS_BTNUM_BNO: {
223 xfs_alloc_rec_t *r1;
224 xfs_alloc_rec_t *r2;
225
226 r1 = ar1;
227 r2 = ar2;
Christoph Hellwig16259e72005-11-02 15:11:25 +1100228 ASSERT(be32_to_cpu(r1->ar_startblock) +
229 be32_to_cpu(r1->ar_blockcount) <=
230 be32_to_cpu(r2->ar_startblock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 break;
232 }
233 case XFS_BTNUM_CNT: {
234 xfs_alloc_rec_t *r1;
235 xfs_alloc_rec_t *r2;
236
237 r1 = ar1;
238 r2 = ar2;
Christoph Hellwig16259e72005-11-02 15:11:25 +1100239 ASSERT(be32_to_cpu(r1->ar_blockcount) < be32_to_cpu(r2->ar_blockcount) ||
240 (r1->ar_blockcount == r2->ar_blockcount &&
241 be32_to_cpu(r1->ar_startblock) < be32_to_cpu(r2->ar_startblock)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 break;
243 }
244 case XFS_BTNUM_BMAP: {
245 xfs_bmbt_rec_t *r1;
246 xfs_bmbt_rec_t *r2;
247
248 r1 = ar1;
249 r2 = ar2;
250 ASSERT(xfs_bmbt_disk_get_startoff(r1) +
251 xfs_bmbt_disk_get_blockcount(r1) <=
252 xfs_bmbt_disk_get_startoff(r2));
253 break;
254 }
255 case XFS_BTNUM_INO: {
256 xfs_inobt_rec_t *r1;
257 xfs_inobt_rec_t *r2;
258
259 r1 = ar1;
260 r2 = ar2;
Christoph Hellwig61a25842006-09-28 10:57:04 +1000261 ASSERT(be32_to_cpu(r1->ir_startino) + XFS_INODES_PER_CHUNK <=
262 be32_to_cpu(r2->ir_startino));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 break;
264 }
265 default:
266 ASSERT(0);
267 }
268}
269#endif /* DEBUG */
270
271/*
272 * Checking routine: check that block header is ok.
273 */
274/* ARGSUSED */
275int /* error (0 or EFSCORRUPTED) */
276xfs_btree_check_sblock(
277 xfs_btree_cur_t *cur, /* btree cursor */
278 xfs_btree_sblock_t *block, /* btree short form block pointer */
279 int level, /* level of the btree block */
280 xfs_buf_t *bp) /* buffer containing block */
281{
282 xfs_buf_t *agbp; /* buffer for ag. freespace struct */
283 xfs_agf_t *agf; /* ag. freespace structure */
284 xfs_agblock_t agflen; /* native ag. freespace length */
285 int sblock_ok; /* block passes checks */
286
287 agbp = cur->bc_private.a.agbp;
288 agf = XFS_BUF_TO_AGF(agbp);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100289 agflen = be32_to_cpu(agf->agf_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 sblock_ok =
Christoph Hellwig16259e72005-11-02 15:11:25 +1100291 be32_to_cpu(block->bb_magic) == xfs_magics[cur->bc_btnum] &&
292 be16_to_cpu(block->bb_level) == level &&
293 be16_to_cpu(block->bb_numrecs) <=
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 xfs_btree_maxrecs(cur, (xfs_btree_block_t *)block) &&
Christoph Hellwig16259e72005-11-02 15:11:25 +1100295 (be32_to_cpu(block->bb_leftsib) == NULLAGBLOCK ||
296 be32_to_cpu(block->bb_leftsib) < agflen) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 block->bb_leftsib &&
Christoph Hellwig16259e72005-11-02 15:11:25 +1100298 (be32_to_cpu(block->bb_rightsib) == NULLAGBLOCK ||
299 be32_to_cpu(block->bb_rightsib) < agflen) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 block->bb_rightsib;
301 if (unlikely(XFS_TEST_ERROR(!sblock_ok, cur->bc_mp,
302 XFS_ERRTAG_BTREE_CHECK_SBLOCK,
303 XFS_RANDOM_BTREE_CHECK_SBLOCK))) {
304 if (bp)
305 xfs_buftrace("SBTREE ERROR", bp);
306 XFS_ERROR_REPORT("xfs_btree_check_sblock", XFS_ERRLEVEL_LOW,
307 cur->bc_mp);
308 return XFS_ERROR(EFSCORRUPTED);
309 }
310 return 0;
311}
312
313/*
314 * Checking routine: check that (short) pointer is ok.
315 */
316int /* error (0 or EFSCORRUPTED) */
317xfs_btree_check_sptr(
318 xfs_btree_cur_t *cur, /* btree cursor */
319 xfs_agblock_t ptr, /* btree block disk address */
320 int level) /* btree block level */
321{
322 xfs_buf_t *agbp; /* buffer for ag. freespace struct */
323 xfs_agf_t *agf; /* ag. freespace structure */
324
325 agbp = cur->bc_private.a.agbp;
326 agf = XFS_BUF_TO_AGF(agbp);
327 XFS_WANT_CORRUPTED_RETURN(
328 level > 0 &&
329 ptr != NULLAGBLOCK && ptr != 0 &&
Christoph Hellwig16259e72005-11-02 15:11:25 +1100330 ptr < be32_to_cpu(agf->agf_length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 return 0;
332}
333
334/*
335 * Delete the btree cursor.
336 */
337void
338xfs_btree_del_cursor(
339 xfs_btree_cur_t *cur, /* btree cursor */
340 int error) /* del because of error */
341{
342 int i; /* btree level */
343
344 /*
345 * Clear the buffer pointers, and release the buffers.
346 * If we're doing this in the face of an error, we
347 * need to make sure to inspect all of the entries
348 * in the bc_bufs array for buffers to be unlocked.
349 * This is because some of the btree code works from
350 * level n down to 0, and if we get an error along
351 * the way we won't have initialized all the entries
352 * down to 0.
353 */
354 for (i = 0; i < cur->bc_nlevels; i++) {
355 if (cur->bc_bufs[i])
356 xfs_btree_setbuf(cur, i, NULL);
357 else if (!error)
358 break;
359 }
360 /*
361 * Can't free a bmap cursor without having dealt with the
362 * allocated indirect blocks' accounting.
363 */
364 ASSERT(cur->bc_btnum != XFS_BTNUM_BMAP ||
365 cur->bc_private.b.allocated == 0);
366 /*
367 * Free the cursor.
368 */
369 kmem_zone_free(xfs_btree_cur_zone, cur);
370}
371
372/*
373 * Duplicate the btree cursor.
374 * Allocate a new one, copy the record, re-get the buffers.
375 */
376int /* error */
377xfs_btree_dup_cursor(
378 xfs_btree_cur_t *cur, /* input cursor */
379 xfs_btree_cur_t **ncur) /* output cursor */
380{
381 xfs_buf_t *bp; /* btree block's buffer pointer */
382 int error; /* error return value */
383 int i; /* level number of btree block */
384 xfs_mount_t *mp; /* mount structure for filesystem */
385 xfs_btree_cur_t *new; /* new cursor value */
386 xfs_trans_t *tp; /* transaction pointer, can be NULL */
387
388 tp = cur->bc_tp;
389 mp = cur->bc_mp;
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 /*
392 * Allocate a new cursor like the old one.
393 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100394 new = cur->bc_ops->dup_cursor(cur);
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 /*
397 * Copy the record currently in the cursor.
398 */
399 new->bc_rec = cur->bc_rec;
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 /*
402 * For each level current, re-get the buffer and copy the ptr value.
403 */
404 for (i = 0; i < new->bc_nlevels; i++) {
405 new->bc_ptrs[i] = cur->bc_ptrs[i];
406 new->bc_ra[i] = cur->bc_ra[i];
407 if ((bp = cur->bc_bufs[i])) {
408 if ((error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp,
409 XFS_BUF_ADDR(bp), mp->m_bsize, 0, &bp))) {
410 xfs_btree_del_cursor(new, error);
411 *ncur = NULL;
412 return error;
413 }
414 new->bc_bufs[i] = bp;
415 ASSERT(bp);
416 ASSERT(!XFS_BUF_GETERROR(bp));
417 } else
418 new->bc_bufs[i] = NULL;
419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 *ncur = new;
421 return 0;
422}
423
424/*
Christoph Hellwig8186e512008-10-30 16:54:22 +1100425 * Get a the root block which is stored in the inode.
426 *
427 * For now this btree implementation assumes the btree root is always
428 * stored in the if_broot field of an inode fork.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 */
Christoph Hellwig8186e512008-10-30 16:54:22 +1100430STATIC struct xfs_btree_block *
431xfs_btree_get_iroot(
432 struct xfs_btree_cur *cur)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
Christoph Hellwig8186e512008-10-30 16:54:22 +1100434 struct xfs_ifork *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Christoph Hellwig8186e512008-10-30 16:54:22 +1100436 ifp = XFS_IFORK_PTR(cur->bc_private.b.ip, cur->bc_private.b.whichfork);
437 return (struct xfs_btree_block *)ifp->if_broot;
438}
439
440/*
441 * Retrieve the block pointer from the cursor at the given level.
442 * This may be an inode btree root or from a buffer.
443 */
444STATIC struct xfs_btree_block * /* generic btree block pointer */
445xfs_btree_get_block(
446 struct xfs_btree_cur *cur, /* btree cursor */
447 int level, /* level in btree */
448 struct xfs_buf **bpp) /* buffer containing the block */
449{
450 if ((cur->bc_flags & XFS_BTREE_ROOT_IN_INODE) &&
451 (level == cur->bc_nlevels - 1)) {
452 *bpp = NULL;
453 return xfs_btree_get_iroot(cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
Christoph Hellwig8186e512008-10-30 16:54:22 +1100455
456 *bpp = cur->bc_bufs[level];
457 return XFS_BUF_TO_BLOCK(*bpp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
460/*
461 * Get a buffer for the block, return it with no data read.
462 * Long-form addressing.
463 */
464xfs_buf_t * /* buffer for fsbno */
465xfs_btree_get_bufl(
466 xfs_mount_t *mp, /* file system mount point */
467 xfs_trans_t *tp, /* transaction pointer */
468 xfs_fsblock_t fsbno, /* file system block number */
469 uint lock) /* lock flags for get_buf */
470{
471 xfs_buf_t *bp; /* buffer pointer (return value) */
472 xfs_daddr_t d; /* real disk block address */
473
474 ASSERT(fsbno != NULLFSBLOCK);
475 d = XFS_FSB_TO_DADDR(mp, fsbno);
476 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d, mp->m_bsize, lock);
477 ASSERT(bp);
478 ASSERT(!XFS_BUF_GETERROR(bp));
479 return bp;
480}
481
482/*
483 * Get a buffer for the block, return it with no data read.
484 * Short-form addressing.
485 */
486xfs_buf_t * /* buffer for agno/agbno */
487xfs_btree_get_bufs(
488 xfs_mount_t *mp, /* file system mount point */
489 xfs_trans_t *tp, /* transaction pointer */
490 xfs_agnumber_t agno, /* allocation group number */
491 xfs_agblock_t agbno, /* allocation group block number */
492 uint lock) /* lock flags for get_buf */
493{
494 xfs_buf_t *bp; /* buffer pointer (return value) */
495 xfs_daddr_t d; /* real disk block address */
496
497 ASSERT(agno != NULLAGNUMBER);
498 ASSERT(agbno != NULLAGBLOCK);
499 d = XFS_AGB_TO_DADDR(mp, agno, agbno);
500 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d, mp->m_bsize, lock);
501 ASSERT(bp);
502 ASSERT(!XFS_BUF_GETERROR(bp));
503 return bp;
504}
505
506/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 * Check for the cursor referring to the last block at the given level.
508 */
509int /* 1=is last block, 0=not last block */
510xfs_btree_islastblock(
511 xfs_btree_cur_t *cur, /* btree cursor */
512 int level) /* level to check */
513{
514 xfs_btree_block_t *block; /* generic btree block pointer */
515 xfs_buf_t *bp; /* buffer containing block */
516
517 block = xfs_btree_get_block(cur, level, &bp);
518 xfs_btree_check_block(cur, block, level, bp);
Christoph Hellwige99ab902008-10-30 16:54:33 +1100519 if (cur->bc_flags & XFS_BTREE_LONG_PTRS)
Christoph Hellwig16259e72005-11-02 15:11:25 +1100520 return be64_to_cpu(block->bb_u.l.bb_rightsib) == NULLDFSBNO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 else
Christoph Hellwig16259e72005-11-02 15:11:25 +1100522 return be32_to_cpu(block->bb_u.s.bb_rightsib) == NULLAGBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
524
525/*
Christoph Hellwigcdcf43332008-08-13 16:23:50 +1000526 * Change the cursor to point to the first record at the given level.
527 * Other levels are unaffected.
528 */
529int /* success=1, failure=0 */
530xfs_btree_firstrec(
531 xfs_btree_cur_t *cur, /* btree cursor */
532 int level) /* level to change */
533{
534 xfs_btree_block_t *block; /* generic btree block pointer */
535 xfs_buf_t *bp; /* buffer containing block */
536
537 /*
538 * Get the block pointer for this level.
539 */
540 block = xfs_btree_get_block(cur, level, &bp);
541 xfs_btree_check_block(cur, block, level, bp);
542 /*
543 * It's empty, there is no such record.
544 */
Christoph Hellwigf2277f02008-10-30 16:53:47 +1100545 if (!block->bb_numrecs)
Christoph Hellwigcdcf43332008-08-13 16:23:50 +1000546 return 0;
547 /*
548 * Set the ptr value to 1, that's the first record/key.
549 */
550 cur->bc_ptrs[level] = 1;
551 return 1;
552}
553
554/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 * Change the cursor to point to the last record in the current block
556 * at the given level. Other levels are unaffected.
557 */
558int /* success=1, failure=0 */
559xfs_btree_lastrec(
560 xfs_btree_cur_t *cur, /* btree cursor */
561 int level) /* level to change */
562{
563 xfs_btree_block_t *block; /* generic btree block pointer */
564 xfs_buf_t *bp; /* buffer containing block */
565
566 /*
567 * Get the block pointer for this level.
568 */
569 block = xfs_btree_get_block(cur, level, &bp);
570 xfs_btree_check_block(cur, block, level, bp);
571 /*
572 * It's empty, there is no such record.
573 */
Christoph Hellwigf2277f02008-10-30 16:53:47 +1100574 if (!block->bb_numrecs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 return 0;
576 /*
577 * Set the ptr value to numrecs, that's the last record/key.
578 */
Christoph Hellwigf2277f02008-10-30 16:53:47 +1100579 cur->bc_ptrs[level] = be16_to_cpu(block->bb_numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 return 1;
581}
582
583/*
584 * Compute first and last byte offsets for the fields given.
585 * Interprets the offsets table, which contains struct field offsets.
586 */
587void
588xfs_btree_offsets(
589 __int64_t fields, /* bitmask of fields */
590 const short *offsets, /* table of field offsets */
591 int nbits, /* number of bits to inspect */
592 int *first, /* output: first byte offset */
593 int *last) /* output: last byte offset */
594{
595 int i; /* current bit number */
596 __int64_t imask; /* mask for current bit number */
597
598 ASSERT(fields != 0);
599 /*
600 * Find the lowest bit, so the first byte offset.
601 */
602 for (i = 0, imask = 1LL; ; i++, imask <<= 1) {
603 if (imask & fields) {
604 *first = offsets[i];
605 break;
606 }
607 }
608 /*
609 * Find the highest bit, so the last byte offset.
610 */
611 for (i = nbits - 1, imask = 1LL << i; ; i--, imask >>= 1) {
612 if (imask & fields) {
613 *last = offsets[i + 1] - 1;
614 break;
615 }
616 }
617}
618
619/*
620 * Get a buffer for the block, return it read in.
621 * Long-form addressing.
622 */
623int /* error */
624xfs_btree_read_bufl(
625 xfs_mount_t *mp, /* file system mount point */
626 xfs_trans_t *tp, /* transaction pointer */
627 xfs_fsblock_t fsbno, /* file system block number */
628 uint lock, /* lock flags for read_buf */
629 xfs_buf_t **bpp, /* buffer for fsbno */
630 int refval) /* ref count value for buffer */
631{
632 xfs_buf_t *bp; /* return value */
633 xfs_daddr_t d; /* real disk block address */
634 int error;
635
636 ASSERT(fsbno != NULLFSBLOCK);
637 d = XFS_FSB_TO_DADDR(mp, fsbno);
638 if ((error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp, d,
639 mp->m_bsize, lock, &bp))) {
640 return error;
641 }
642 ASSERT(!bp || !XFS_BUF_GETERROR(bp));
643 if (bp != NULL) {
644 XFS_BUF_SET_VTYPE_REF(bp, B_FS_MAP, refval);
645 }
646 *bpp = bp;
647 return 0;
648}
649
650/*
651 * Get a buffer for the block, return it read in.
652 * Short-form addressing.
653 */
654int /* error */
655xfs_btree_read_bufs(
656 xfs_mount_t *mp, /* file system mount point */
657 xfs_trans_t *tp, /* transaction pointer */
658 xfs_agnumber_t agno, /* allocation group number */
659 xfs_agblock_t agbno, /* allocation group block number */
660 uint lock, /* lock flags for read_buf */
661 xfs_buf_t **bpp, /* buffer for agno/agbno */
662 int refval) /* ref count value for buffer */
663{
664 xfs_buf_t *bp; /* return value */
665 xfs_daddr_t d; /* real disk block address */
666 int error;
667
668 ASSERT(agno != NULLAGNUMBER);
669 ASSERT(agbno != NULLAGBLOCK);
670 d = XFS_AGB_TO_DADDR(mp, agno, agbno);
671 if ((error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp, d,
672 mp->m_bsize, lock, &bp))) {
673 return error;
674 }
675 ASSERT(!bp || !XFS_BUF_GETERROR(bp));
676 if (bp != NULL) {
677 switch (refval) {
678 case XFS_ALLOC_BTREE_REF:
679 XFS_BUF_SET_VTYPE_REF(bp, B_FS_MAP, refval);
680 break;
681 case XFS_INO_BTREE_REF:
682 XFS_BUF_SET_VTYPE_REF(bp, B_FS_INOMAP, refval);
683 break;
684 }
685 }
686 *bpp = bp;
687 return 0;
688}
689
690/*
691 * Read-ahead the block, don't wait for it, don't return a buffer.
692 * Long-form addressing.
693 */
694/* ARGSUSED */
695void
696xfs_btree_reada_bufl(
697 xfs_mount_t *mp, /* file system mount point */
698 xfs_fsblock_t fsbno, /* file system block number */
699 xfs_extlen_t count) /* count of filesystem blocks */
700{
701 xfs_daddr_t d;
702
703 ASSERT(fsbno != NULLFSBLOCK);
704 d = XFS_FSB_TO_DADDR(mp, fsbno);
705 xfs_baread(mp->m_ddev_targp, d, mp->m_bsize * count);
706}
707
708/*
709 * Read-ahead the block, don't wait for it, don't return a buffer.
710 * Short-form addressing.
711 */
712/* ARGSUSED */
713void
714xfs_btree_reada_bufs(
715 xfs_mount_t *mp, /* file system mount point */
716 xfs_agnumber_t agno, /* allocation group number */
717 xfs_agblock_t agbno, /* allocation group block number */
718 xfs_extlen_t count) /* count of filesystem blocks */
719{
720 xfs_daddr_t d;
721
722 ASSERT(agno != NULLAGNUMBER);
723 ASSERT(agbno != NULLAGBLOCK);
724 d = XFS_AGB_TO_DADDR(mp, agno, agbno);
725 xfs_baread(mp->m_ddev_targp, d, mp->m_bsize * count);
726}
727
Christoph Hellwigb524bfe2008-10-30 16:54:43 +1100728STATIC int
729xfs_btree_readahead_lblock(
730 struct xfs_btree_cur *cur,
731 int lr,
732 struct xfs_btree_block *block)
733{
734 int rval = 0;
735 xfs_fsblock_t left = be64_to_cpu(block->bb_u.l.bb_leftsib);
736 xfs_fsblock_t right = be64_to_cpu(block->bb_u.l.bb_rightsib);
737
738 if ((lr & XFS_BTCUR_LEFTRA) && left != NULLDFSBNO) {
739 xfs_btree_reada_bufl(cur->bc_mp, left, 1);
740 rval++;
741 }
742
743 if ((lr & XFS_BTCUR_RIGHTRA) && right != NULLDFSBNO) {
744 xfs_btree_reada_bufl(cur->bc_mp, right, 1);
745 rval++;
746 }
747
748 return rval;
749}
750
751STATIC int
752xfs_btree_readahead_sblock(
753 struct xfs_btree_cur *cur,
754 int lr,
755 struct xfs_btree_block *block)
756{
757 int rval = 0;
758 xfs_agblock_t left = be32_to_cpu(block->bb_u.s.bb_leftsib);
759 xfs_agblock_t right = be32_to_cpu(block->bb_u.s.bb_rightsib);
760
761
762 if ((lr & XFS_BTCUR_LEFTRA) && left != NULLAGBLOCK) {
763 xfs_btree_reada_bufs(cur->bc_mp, cur->bc_private.a.agno,
764 left, 1);
765 rval++;
766 }
767
768 if ((lr & XFS_BTCUR_RIGHTRA) && right != NULLAGBLOCK) {
769 xfs_btree_reada_bufs(cur->bc_mp, cur->bc_private.a.agno,
770 right, 1);
771 rval++;
772 }
773
774 return rval;
775}
776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777/*
778 * Read-ahead btree blocks, at the given level.
779 * Bits in lr are set from XFS_BTCUR_{LEFT,RIGHT}RA.
780 */
781int
Christoph Hellwigb524bfe2008-10-30 16:54:43 +1100782xfs_btree_readahead(
783 struct xfs_btree_cur *cur, /* btree cursor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 int lev, /* level in btree */
785 int lr) /* left/right bits */
786{
Christoph Hellwigb524bfe2008-10-30 16:54:43 +1100787 struct xfs_btree_block *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Christoph Hellwigb524bfe2008-10-30 16:54:43 +1100789 /*
790 * No readahead needed if we are at the root level and the
791 * btree root is stored in the inode.
792 */
793 if ((cur->bc_flags & XFS_BTREE_ROOT_IN_INODE) &&
794 (lev == cur->bc_nlevels - 1))
795 return 0;
796
797 if ((cur->bc_ra[lev] | lr) == cur->bc_ra[lev])
798 return 0;
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 cur->bc_ra[lev] |= lr;
Christoph Hellwigb524bfe2008-10-30 16:54:43 +1100801 block = XFS_BUF_TO_BLOCK(cur->bc_bufs[lev]);
802
803 if (cur->bc_flags & XFS_BTREE_LONG_PTRS)
804 return xfs_btree_readahead_lblock(cur, lr, block);
805 return xfs_btree_readahead_sblock(cur, lr, block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
808/*
809 * Set the buffer for level "lev" in the cursor to bp, releasing
810 * any previous buffer.
811 */
812void
813xfs_btree_setbuf(
814 xfs_btree_cur_t *cur, /* btree cursor */
815 int lev, /* level in btree */
816 xfs_buf_t *bp) /* new buffer to set */
817{
818 xfs_btree_block_t *b; /* btree block */
819 xfs_buf_t *obp; /* old buffer pointer */
820
821 obp = cur->bc_bufs[lev];
822 if (obp)
823 xfs_trans_brelse(cur->bc_tp, obp);
824 cur->bc_bufs[lev] = bp;
825 cur->bc_ra[lev] = 0;
826 if (!bp)
827 return;
828 b = XFS_BUF_TO_BLOCK(bp);
Christoph Hellwige99ab902008-10-30 16:54:33 +1100829 if (cur->bc_flags & XFS_BTREE_LONG_PTRS) {
Christoph Hellwig16259e72005-11-02 15:11:25 +1100830 if (be64_to_cpu(b->bb_u.l.bb_leftsib) == NULLDFSBNO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 cur->bc_ra[lev] |= XFS_BTCUR_LEFTRA;
Christoph Hellwig16259e72005-11-02 15:11:25 +1100832 if (be64_to_cpu(b->bb_u.l.bb_rightsib) == NULLDFSBNO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 cur->bc_ra[lev] |= XFS_BTCUR_RIGHTRA;
834 } else {
Christoph Hellwig16259e72005-11-02 15:11:25 +1100835 if (be32_to_cpu(b->bb_u.s.bb_leftsib) == NULLAGBLOCK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 cur->bc_ra[lev] |= XFS_BTCUR_LEFTRA;
Christoph Hellwig16259e72005-11-02 15:11:25 +1100837 if (be32_to_cpu(b->bb_u.s.bb_rightsib) == NULLAGBLOCK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 cur->bc_ra[lev] |= XFS_BTCUR_RIGHTRA;
839 }
840}