2 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * 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.
14 * 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
20 #include "xfs_types.h"
22 #include "xfs_trans.h"
25 #include "xfs_mount.h"
26 #include "xfs_bmap_btree.h"
27 #include "xfs_alloc_btree.h"
28 #include "xfs_ialloc_btree.h"
29 #include "xfs_dinode.h"
30 #include "xfs_inode.h"
31 #include "xfs_btree.h"
32 #include "xfs_alloc.h"
33 #include "xfs_extent_busy.h"
34 #include "xfs_error.h"
35 #include "xfs_trace.h"
36 #include "xfs_cksum.h"
39 STATIC
struct xfs_btree_cur
*
40 xfs_allocbt_dup_cursor(
41 struct xfs_btree_cur
*cur
)
43 return xfs_allocbt_init_cursor(cur
->bc_mp
, cur
->bc_tp
,
44 cur
->bc_private
.a
.agbp
, cur
->bc_private
.a
.agno
,
50 struct xfs_btree_cur
*cur
,
51 union xfs_btree_ptr
*ptr
,
54 struct xfs_buf
*agbp
= cur
->bc_private
.a
.agbp
;
55 struct xfs_agf
*agf
= XFS_BUF_TO_AGF(agbp
);
56 xfs_agnumber_t seqno
= be32_to_cpu(agf
->agf_seqno
);
57 int btnum
= cur
->bc_btnum
;
58 struct xfs_perag
*pag
= xfs_perag_get(cur
->bc_mp
, seqno
);
62 agf
->agf_roots
[btnum
] = ptr
->s
;
63 be32_add_cpu(&agf
->agf_levels
[btnum
], inc
);
64 pag
->pagf_levels
[btnum
] += inc
;
67 xfs_alloc_log_agf(cur
->bc_tp
, agbp
, XFS_AGF_ROOTS
| XFS_AGF_LEVELS
);
71 xfs_allocbt_alloc_block(
72 struct xfs_btree_cur
*cur
,
73 union xfs_btree_ptr
*start
,
74 union xfs_btree_ptr
*new,
81 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ENTRY
);
83 /* Allocate the new block from the freelist. If we can't, give up. */
84 error
= xfs_alloc_get_freelist(cur
->bc_tp
, cur
->bc_private
.a
.agbp
,
87 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ERROR
);
91 if (bno
== NULLAGBLOCK
) {
92 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
97 xfs_extent_busy_reuse(cur
->bc_mp
, cur
->bc_private
.a
.agno
, bno
, 1, false);
99 xfs_trans_agbtree_delta(cur
->bc_tp
, 1);
100 new->s
= cpu_to_be32(bno
);
102 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
108 xfs_allocbt_free_block(
109 struct xfs_btree_cur
*cur
,
112 struct xfs_buf
*agbp
= cur
->bc_private
.a
.agbp
;
113 struct xfs_agf
*agf
= XFS_BUF_TO_AGF(agbp
);
117 bno
= xfs_daddr_to_agbno(cur
->bc_mp
, XFS_BUF_ADDR(bp
));
118 error
= xfs_alloc_put_freelist(cur
->bc_tp
, agbp
, NULL
, bno
, 1);
122 xfs_extent_busy_insert(cur
->bc_tp
, be32_to_cpu(agf
->agf_seqno
), bno
, 1,
123 XFS_EXTENT_BUSY_SKIP_DISCARD
);
124 xfs_trans_agbtree_delta(cur
->bc_tp
, -1);
126 xfs_trans_binval(cur
->bc_tp
, bp
);
131 * Update the longest extent in the AGF
134 xfs_allocbt_update_lastrec(
135 struct xfs_btree_cur
*cur
,
136 struct xfs_btree_block
*block
,
137 union xfs_btree_rec
*rec
,
141 struct xfs_agf
*agf
= XFS_BUF_TO_AGF(cur
->bc_private
.a
.agbp
);
142 xfs_agnumber_t seqno
= be32_to_cpu(agf
->agf_seqno
);
143 struct xfs_perag
*pag
;
147 ASSERT(cur
->bc_btnum
== XFS_BTNUM_CNT
);
152 * If this is the last leaf block and it's the last record,
153 * then update the size of the longest extent in the AG.
155 if (ptr
!= xfs_btree_get_numrecs(block
))
157 len
= rec
->alloc
.ar_blockcount
;
160 if (be32_to_cpu(rec
->alloc
.ar_blockcount
) <=
161 be32_to_cpu(agf
->agf_longest
))
163 len
= rec
->alloc
.ar_blockcount
;
166 numrecs
= xfs_btree_get_numrecs(block
);
169 ASSERT(ptr
== numrecs
+ 1);
172 xfs_alloc_rec_t
*rrp
;
174 rrp
= XFS_ALLOC_REC_ADDR(cur
->bc_mp
, block
, numrecs
);
175 len
= rrp
->ar_blockcount
;
186 agf
->agf_longest
= len
;
187 pag
= xfs_perag_get(cur
->bc_mp
, seqno
);
188 pag
->pagf_longest
= be32_to_cpu(len
);
190 xfs_alloc_log_agf(cur
->bc_tp
, cur
->bc_private
.a
.agbp
, XFS_AGF_LONGEST
);
194 xfs_allocbt_get_minrecs(
195 struct xfs_btree_cur
*cur
,
198 return cur
->bc_mp
->m_alloc_mnr
[level
!= 0];
202 xfs_allocbt_get_maxrecs(
203 struct xfs_btree_cur
*cur
,
206 return cur
->bc_mp
->m_alloc_mxr
[level
!= 0];
210 xfs_allocbt_init_key_from_rec(
211 union xfs_btree_key
*key
,
212 union xfs_btree_rec
*rec
)
214 ASSERT(rec
->alloc
.ar_startblock
!= 0);
216 key
->alloc
.ar_startblock
= rec
->alloc
.ar_startblock
;
217 key
->alloc
.ar_blockcount
= rec
->alloc
.ar_blockcount
;
221 xfs_allocbt_init_rec_from_key(
222 union xfs_btree_key
*key
,
223 union xfs_btree_rec
*rec
)
225 ASSERT(key
->alloc
.ar_startblock
!= 0);
227 rec
->alloc
.ar_startblock
= key
->alloc
.ar_startblock
;
228 rec
->alloc
.ar_blockcount
= key
->alloc
.ar_blockcount
;
232 xfs_allocbt_init_rec_from_cur(
233 struct xfs_btree_cur
*cur
,
234 union xfs_btree_rec
*rec
)
236 ASSERT(cur
->bc_rec
.a
.ar_startblock
!= 0);
238 rec
->alloc
.ar_startblock
= cpu_to_be32(cur
->bc_rec
.a
.ar_startblock
);
239 rec
->alloc
.ar_blockcount
= cpu_to_be32(cur
->bc_rec
.a
.ar_blockcount
);
243 xfs_allocbt_init_ptr_from_cur(
244 struct xfs_btree_cur
*cur
,
245 union xfs_btree_ptr
*ptr
)
247 struct xfs_agf
*agf
= XFS_BUF_TO_AGF(cur
->bc_private
.a
.agbp
);
249 ASSERT(cur
->bc_private
.a
.agno
== be32_to_cpu(agf
->agf_seqno
));
250 ASSERT(agf
->agf_roots
[cur
->bc_btnum
] != 0);
252 ptr
->s
= agf
->agf_roots
[cur
->bc_btnum
];
256 xfs_allocbt_key_diff(
257 struct xfs_btree_cur
*cur
,
258 union xfs_btree_key
*key
)
260 xfs_alloc_rec_incore_t
*rec
= &cur
->bc_rec
.a
;
261 xfs_alloc_key_t
*kp
= &key
->alloc
;
264 if (cur
->bc_btnum
== XFS_BTNUM_BNO
) {
265 return (__int64_t
)be32_to_cpu(kp
->ar_startblock
) -
269 diff
= (__int64_t
)be32_to_cpu(kp
->ar_blockcount
) - rec
->ar_blockcount
;
273 return (__int64_t
)be32_to_cpu(kp
->ar_startblock
) - rec
->ar_startblock
;
280 struct xfs_mount
*mp
= bp
->b_target
->bt_mount
;
281 struct xfs_btree_block
*block
= XFS_BUF_TO_BLOCK(bp
);
282 struct xfs_perag
*pag
= bp
->b_pag
;
286 * magic number and level verification
288 * During growfs operations, we can't verify the exact level or owner as
289 * the perag is not fully initialised and hence not attached to the
290 * buffer. In this case, check against the maximum tree depth.
292 * Similarly, during log recovery we will have a perag structure
293 * attached, but the agf information will not yet have been initialised
294 * from the on disk AGF. Again, we can only check against maximum limits
297 level
= be16_to_cpu(block
->bb_level
);
298 switch (block
->bb_magic
) {
299 case cpu_to_be32(XFS_ABTB_CRC_MAGIC
):
300 if (!xfs_sb_version_hascrc(&mp
->m_sb
))
302 if (!uuid_equal(&block
->bb_u
.s
.bb_uuid
, &mp
->m_sb
.sb_uuid
))
304 if (block
->bb_u
.s
.bb_blkno
!= cpu_to_be64(bp
->b_bn
))
307 be32_to_cpu(block
->bb_u
.s
.bb_owner
) != pag
->pag_agno
)
310 case cpu_to_be32(XFS_ABTB_MAGIC
):
311 if (pag
&& pag
->pagf_init
) {
312 if (level
>= pag
->pagf_levels
[XFS_BTNUM_BNOi
])
314 } else if (level
>= mp
->m_ag_maxlevels
)
317 case cpu_to_be32(XFS_ABTC_CRC_MAGIC
):
318 if (!xfs_sb_version_hascrc(&mp
->m_sb
))
320 if (!uuid_equal(&block
->bb_u
.s
.bb_uuid
, &mp
->m_sb
.sb_uuid
))
322 if (block
->bb_u
.s
.bb_blkno
!= cpu_to_be64(bp
->b_bn
))
325 be32_to_cpu(block
->bb_u
.s
.bb_owner
) != pag
->pag_agno
)
328 case cpu_to_be32(XFS_ABTC_MAGIC
):
329 if (pag
&& pag
->pagf_init
) {
330 if (level
>= pag
->pagf_levels
[XFS_BTNUM_CNTi
])
332 } else if (level
>= mp
->m_ag_maxlevels
)
339 /* numrecs verification */
340 if (be16_to_cpu(block
->bb_numrecs
) > mp
->m_alloc_mxr
[level
!= 0])
343 /* sibling pointer verification */
344 if (!block
->bb_u
.s
.bb_leftsib
||
345 (be32_to_cpu(block
->bb_u
.s
.bb_leftsib
) >= mp
->m_sb
.sb_agblocks
&&
346 block
->bb_u
.s
.bb_leftsib
!= cpu_to_be32(NULLAGBLOCK
)))
348 if (!block
->bb_u
.s
.bb_rightsib
||
349 (be32_to_cpu(block
->bb_u
.s
.bb_rightsib
) >= mp
->m_sb
.sb_agblocks
&&
350 block
->bb_u
.s
.bb_rightsib
!= cpu_to_be32(NULLAGBLOCK
)))
357 xfs_allocbt_read_verify(
360 if (!(xfs_btree_sblock_verify_crc(bp
) &&
361 xfs_allocbt_verify(bp
))) {
362 trace_xfs_btree_corrupt(bp
, _RET_IP_
);
363 XFS_CORRUPTION_ERROR(__func__
, XFS_ERRLEVEL_LOW
,
364 bp
->b_target
->bt_mount
, bp
->b_addr
);
365 xfs_buf_ioerror(bp
, EFSCORRUPTED
);
370 xfs_allocbt_write_verify(
373 if (!xfs_allocbt_verify(bp
)) {
374 trace_xfs_btree_corrupt(bp
, _RET_IP_
);
375 XFS_CORRUPTION_ERROR(__func__
, XFS_ERRLEVEL_LOW
,
376 bp
->b_target
->bt_mount
, bp
->b_addr
);
377 xfs_buf_ioerror(bp
, EFSCORRUPTED
);
379 xfs_btree_sblock_calc_crc(bp
);
383 const struct xfs_buf_ops xfs_allocbt_buf_ops
= {
384 .verify_read
= xfs_allocbt_read_verify
,
385 .verify_write
= xfs_allocbt_write_verify
,
389 #if defined(DEBUG) || defined(XFS_WARN)
391 xfs_allocbt_keys_inorder(
392 struct xfs_btree_cur
*cur
,
393 union xfs_btree_key
*k1
,
394 union xfs_btree_key
*k2
)
396 if (cur
->bc_btnum
== XFS_BTNUM_BNO
) {
397 return be32_to_cpu(k1
->alloc
.ar_startblock
) <
398 be32_to_cpu(k2
->alloc
.ar_startblock
);
400 return be32_to_cpu(k1
->alloc
.ar_blockcount
) <
401 be32_to_cpu(k2
->alloc
.ar_blockcount
) ||
402 (k1
->alloc
.ar_blockcount
== k2
->alloc
.ar_blockcount
&&
403 be32_to_cpu(k1
->alloc
.ar_startblock
) <
404 be32_to_cpu(k2
->alloc
.ar_startblock
));
409 xfs_allocbt_recs_inorder(
410 struct xfs_btree_cur
*cur
,
411 union xfs_btree_rec
*r1
,
412 union xfs_btree_rec
*r2
)
414 if (cur
->bc_btnum
== XFS_BTNUM_BNO
) {
415 return be32_to_cpu(r1
->alloc
.ar_startblock
) +
416 be32_to_cpu(r1
->alloc
.ar_blockcount
) <=
417 be32_to_cpu(r2
->alloc
.ar_startblock
);
419 return be32_to_cpu(r1
->alloc
.ar_blockcount
) <
420 be32_to_cpu(r2
->alloc
.ar_blockcount
) ||
421 (r1
->alloc
.ar_blockcount
== r2
->alloc
.ar_blockcount
&&
422 be32_to_cpu(r1
->alloc
.ar_startblock
) <
423 be32_to_cpu(r2
->alloc
.ar_startblock
));
428 static const struct xfs_btree_ops xfs_allocbt_ops
= {
429 .rec_len
= sizeof(xfs_alloc_rec_t
),
430 .key_len
= sizeof(xfs_alloc_key_t
),
432 .dup_cursor
= xfs_allocbt_dup_cursor
,
433 .set_root
= xfs_allocbt_set_root
,
434 .alloc_block
= xfs_allocbt_alloc_block
,
435 .free_block
= xfs_allocbt_free_block
,
436 .update_lastrec
= xfs_allocbt_update_lastrec
,
437 .get_minrecs
= xfs_allocbt_get_minrecs
,
438 .get_maxrecs
= xfs_allocbt_get_maxrecs
,
439 .init_key_from_rec
= xfs_allocbt_init_key_from_rec
,
440 .init_rec_from_key
= xfs_allocbt_init_rec_from_key
,
441 .init_rec_from_cur
= xfs_allocbt_init_rec_from_cur
,
442 .init_ptr_from_cur
= xfs_allocbt_init_ptr_from_cur
,
443 .key_diff
= xfs_allocbt_key_diff
,
444 .buf_ops
= &xfs_allocbt_buf_ops
,
445 #if defined(DEBUG) || defined(XFS_WARN)
446 .keys_inorder
= xfs_allocbt_keys_inorder
,
447 .recs_inorder
= xfs_allocbt_recs_inorder
,
452 * Allocate a new allocation btree cursor.
454 struct xfs_btree_cur
* /* new alloc btree cursor */
455 xfs_allocbt_init_cursor(
456 struct xfs_mount
*mp
, /* file system mount point */
457 struct xfs_trans
*tp
, /* transaction pointer */
458 struct xfs_buf
*agbp
, /* buffer for agf structure */
459 xfs_agnumber_t agno
, /* allocation group number */
460 xfs_btnum_t btnum
) /* btree identifier */
462 struct xfs_agf
*agf
= XFS_BUF_TO_AGF(agbp
);
463 struct xfs_btree_cur
*cur
;
465 ASSERT(btnum
== XFS_BTNUM_BNO
|| btnum
== XFS_BTNUM_CNT
);
467 cur
= kmem_zone_zalloc(xfs_btree_cur_zone
, KM_SLEEP
);
471 cur
->bc_btnum
= btnum
;
472 cur
->bc_blocklog
= mp
->m_sb
.sb_blocklog
;
473 cur
->bc_ops
= &xfs_allocbt_ops
;
475 if (btnum
== XFS_BTNUM_CNT
) {
476 cur
->bc_nlevels
= be32_to_cpu(agf
->agf_levels
[XFS_BTNUM_CNT
]);
477 cur
->bc_flags
= XFS_BTREE_LASTREC_UPDATE
;
479 cur
->bc_nlevels
= be32_to_cpu(agf
->agf_levels
[XFS_BTNUM_BNO
]);
482 cur
->bc_private
.a
.agbp
= agbp
;
483 cur
->bc_private
.a
.agno
= agno
;
485 if (xfs_sb_version_hascrc(&mp
->m_sb
))
486 cur
->bc_flags
|= XFS_BTREE_CRC_BLOCKS
;
492 * Calculate number of records in an alloc btree block.
496 struct xfs_mount
*mp
,
500 blocklen
-= XFS_ALLOC_BLOCK_LEN(mp
);
503 return blocklen
/ sizeof(xfs_alloc_rec_t
);
504 return blocklen
/ (sizeof(xfs_alloc_key_t
) + sizeof(xfs_alloc_ptr_t
));