blob: 735a33252eb2027c73485d72acad0d7f05a45b75 [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Nathan Scott7b718762005-11-02 14:58:39 +11003 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +11007#include "xfs_fs.h"
Dave Chinner632b89e2013-10-29 22:11:58 +11008#include "xfs_shared.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +11009#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110010#include "xfs_log_format.h"
11#include "xfs_trans_resv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110012#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "xfs_mount.h"
Nathan Scotta844f452005-11-02 14:38:42 +110014#include "xfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include "xfs_btree.h"
16#include "xfs_ialloc.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110017#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs_alloc.h"
19#include "xfs_error.h"
Dave Chinner3d3e6f62012-11-12 22:54:08 +110020#include "xfs_trace.h"
Christoph Hellwigee1a47a2013-04-21 14:53:46 -050021#include "xfs_cksum.h"
Dave Chinner239880e2013-10-23 10:50:10 +110022#include "xfs_trans.h"
Darrick J. Wong340785c2016-08-03 11:33:42 +100023#include "xfs_rmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Christoph Hellwig91cca5df2008-10-30 16:58:01 +110026STATIC int
27xfs_inobt_get_minrecs(
28 struct xfs_btree_cur *cur,
29 int level)
30{
31 return cur->bc_mp->m_inobt_mnr[level != 0];
32}
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Christoph Hellwig561f7d12008-10-30 16:53:59 +110034STATIC struct xfs_btree_cur *
35xfs_inobt_dup_cursor(
36 struct xfs_btree_cur *cur)
37{
38 return xfs_inobt_init_cursor(cur->bc_mp, cur->bc_tp,
Brian Foster57bd3db2014-04-24 16:00:50 +100039 cur->bc_private.a.agbp, cur->bc_private.a.agno,
40 cur->bc_btnum);
Christoph Hellwig561f7d12008-10-30 16:53:59 +110041}
42
Christoph Hellwig344207c2008-10-30 16:57:16 +110043STATIC void
44xfs_inobt_set_root(
45 struct xfs_btree_cur *cur,
46 union xfs_btree_ptr *nptr,
47 int inc) /* level change */
48{
49 struct xfs_buf *agbp = cur->bc_private.a.agbp;
50 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
51
52 agi->agi_root = nptr->s;
53 be32_add_cpu(&agi->agi_level, inc);
54 xfs_ialloc_log_agi(cur->bc_tp, agbp, XFS_AGI_ROOT | XFS_AGI_LEVEL);
55}
56
Brian Fosteraafc3c22014-04-24 16:00:52 +100057STATIC void
58xfs_finobt_set_root(
59 struct xfs_btree_cur *cur,
60 union xfs_btree_ptr *nptr,
61 int inc) /* level change */
62{
63 struct xfs_buf *agbp = cur->bc_private.a.agbp;
64 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
65
66 agi->agi_free_root = nptr->s;
67 be32_add_cpu(&agi->agi_free_level, inc);
68 xfs_ialloc_log_agi(cur->bc_tp, agbp,
69 XFS_AGI_FREE_ROOT | XFS_AGI_FREE_LEVEL);
70}
71
Christoph Hellwigce5e42d2008-10-30 16:55:23 +110072STATIC int
Christoph Hellwig76d771b2017-01-25 07:49:35 -080073__xfs_inobt_alloc_block(
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +110074 struct xfs_btree_cur *cur,
75 union xfs_btree_ptr *start,
76 union xfs_btree_ptr *new,
Christoph Hellwig76d771b2017-01-25 07:49:35 -080077 int *stat,
78 enum xfs_ag_resv_type resv)
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +110079{
80 xfs_alloc_arg_t args; /* block allocation args */
81 int error; /* error return value */
82 xfs_agblock_t sbno = be32_to_cpu(start->s);
83
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +110084 memset(&args, 0, sizeof(args));
85 args.tp = cur->bc_tp;
86 args.mp = cur->bc_mp;
Darrick J. Wong340785c2016-08-03 11:33:42 +100087 xfs_rmap_ag_owner(&args.oinfo, XFS_RMAP_OWN_INOBT);
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +110088 args.fsbno = XFS_AGB_TO_FSB(args.mp, cur->bc_private.a.agno, sbno);
89 args.minlen = 1;
90 args.maxlen = 1;
91 args.prod = 1;
92 args.type = XFS_ALLOCTYPE_NEAR_BNO;
Christoph Hellwig76d771b2017-01-25 07:49:35 -080093 args.resv = resv;
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +110094
95 error = xfs_alloc_vextent(&args);
Carlos Maiolinoe157ebd2018-03-06 17:03:30 -080096 if (error)
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +110097 return error;
Carlos Maiolinoe157ebd2018-03-06 17:03:30 -080098
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +110099 if (args.fsbno == NULLFSBLOCK) {
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100100 *stat = 0;
101 return 0;
102 }
103 ASSERT(args.len == 1);
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100104
105 new->s = cpu_to_be32(XFS_FSB_TO_AGBNO(args.mp, args.fsbno));
106 *stat = 1;
107 return 0;
108}
109
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100110STATIC int
Christoph Hellwig76d771b2017-01-25 07:49:35 -0800111xfs_inobt_alloc_block(
112 struct xfs_btree_cur *cur,
113 union xfs_btree_ptr *start,
114 union xfs_btree_ptr *new,
115 int *stat)
116{
117 return __xfs_inobt_alloc_block(cur, start, new, stat, XFS_AG_RESV_NONE);
118}
119
120STATIC int
121xfs_finobt_alloc_block(
122 struct xfs_btree_cur *cur,
123 union xfs_btree_ptr *start,
124 union xfs_btree_ptr *new,
125 int *stat)
126{
Brian Fosterad90bb52018-01-12 14:07:21 -0800127 if (cur->bc_mp->m_inotbt_nores)
128 return xfs_inobt_alloc_block(cur, start, new, stat);
Christoph Hellwig76d771b2017-01-25 07:49:35 -0800129 return __xfs_inobt_alloc_block(cur, start, new, stat,
130 XFS_AG_RESV_METADATA);
131}
132
133STATIC int
Brian Fosterad90bb52018-01-12 14:07:21 -0800134__xfs_inobt_free_block(
135 struct xfs_btree_cur *cur,
136 struct xfs_buf *bp,
137 enum xfs_ag_resv_type resv)
138{
139 struct xfs_owner_info oinfo;
140
141 xfs_rmap_ag_owner(&oinfo, XFS_RMAP_OWN_INOBT);
142 return xfs_free_extent(cur->bc_tp,
143 XFS_DADDR_TO_FSB(cur->bc_mp, XFS_BUF_ADDR(bp)), 1,
144 &oinfo, resv);
145}
146
147STATIC int
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100148xfs_inobt_free_block(
149 struct xfs_btree_cur *cur,
150 struct xfs_buf *bp)
151{
Brian Fosterad90bb52018-01-12 14:07:21 -0800152 return __xfs_inobt_free_block(cur, bp, XFS_AG_RESV_NONE);
153}
Darrick J. Wong340785c2016-08-03 11:33:42 +1000154
Brian Fosterad90bb52018-01-12 14:07:21 -0800155STATIC int
156xfs_finobt_free_block(
157 struct xfs_btree_cur *cur,
158 struct xfs_buf *bp)
159{
160 if (cur->bc_mp->m_inotbt_nores)
161 return xfs_inobt_free_block(cur, bp);
162 return __xfs_inobt_free_block(cur, bp, XFS_AG_RESV_METADATA);
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100163}
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100164
165STATIC int
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100166xfs_inobt_get_maxrecs(
167 struct xfs_btree_cur *cur,
168 int level)
169{
170 return cur->bc_mp->m_inobt_mxr[level != 0];
171}
172
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100173STATIC void
174xfs_inobt_init_key_from_rec(
175 union xfs_btree_key *key,
176 union xfs_btree_rec *rec)
177{
178 key->inobt.ir_startino = rec->inobt.ir_startino;
179}
180
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100181STATIC void
Darrick J. Wong118bb472017-06-16 11:00:08 -0700182xfs_inobt_init_high_key_from_rec(
183 union xfs_btree_key *key,
184 union xfs_btree_rec *rec)
185{
186 __u32 x;
187
188 x = be32_to_cpu(rec->inobt.ir_startino);
189 x += XFS_INODES_PER_CHUNK - 1;
190 key->inobt.ir_startino = cpu_to_be32(x);
191}
192
193STATIC void
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100194xfs_inobt_init_rec_from_cur(
195 struct xfs_btree_cur *cur,
196 union xfs_btree_rec *rec)
197{
198 rec->inobt.ir_startino = cpu_to_be32(cur->bc_rec.i.ir_startino);
Brian Foster54190402015-05-29 09:03:04 +1000199 if (xfs_sb_version_hassparseinodes(&cur->bc_mp->m_sb)) {
200 rec->inobt.ir_u.sp.ir_holemask =
201 cpu_to_be16(cur->bc_rec.i.ir_holemask);
202 rec->inobt.ir_u.sp.ir_count = cur->bc_rec.i.ir_count;
203 rec->inobt.ir_u.sp.ir_freecount = cur->bc_rec.i.ir_freecount;
204 } else {
205 /* ir_holemask/ir_count not supported on-disk */
206 rec->inobt.ir_u.f.ir_freecount =
207 cpu_to_be32(cur->bc_rec.i.ir_freecount);
208 }
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100209 rec->inobt.ir_free = cpu_to_be64(cur->bc_rec.i.ir_free);
210}
211
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100212/*
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200213 * initial value of ptr for lookup
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100214 */
215STATIC void
216xfs_inobt_init_ptr_from_cur(
217 struct xfs_btree_cur *cur,
218 union xfs_btree_ptr *ptr)
219{
220 struct xfs_agi *agi = XFS_BUF_TO_AGI(cur->bc_private.a.agbp);
221
222 ASSERT(cur->bc_private.a.agno == be32_to_cpu(agi->agi_seqno));
223
224 ptr->s = agi->agi_root;
225}
226
Brian Fosteraafc3c22014-04-24 16:00:52 +1000227STATIC void
228xfs_finobt_init_ptr_from_cur(
229 struct xfs_btree_cur *cur,
230 union xfs_btree_ptr *ptr)
231{
232 struct xfs_agi *agi = XFS_BUF_TO_AGI(cur->bc_private.a.agbp);
233
234 ASSERT(cur->bc_private.a.agno == be32_to_cpu(agi->agi_seqno));
235 ptr->s = agi->agi_free_root;
236}
237
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700238STATIC int64_t
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100239xfs_inobt_key_diff(
240 struct xfs_btree_cur *cur,
241 union xfs_btree_key *key)
242{
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700243 return (int64_t)be32_to_cpu(key->inobt.ir_startino) -
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100244 cur->bc_rec.i.ir_startino;
245}
246
Darrick J. Wong118bb472017-06-16 11:00:08 -0700247STATIC int64_t
248xfs_inobt_diff_two_keys(
249 struct xfs_btree_cur *cur,
250 union xfs_btree_key *k1,
251 union xfs_btree_key *k2)
252{
253 return (int64_t)be32_to_cpu(k1->inobt.ir_startino) -
254 be32_to_cpu(k2->inobt.ir_startino);
255}
256
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800257static xfs_failaddr_t
Dave Chinner612cfbf2012-11-14 17:52:32 +1100258xfs_inobt_verify(
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100259 struct xfs_buf *bp)
260{
261 struct xfs_mount *mp = bp->b_target->bt_mount;
262 struct xfs_btree_block *block = XFS_BUF_TO_BLOCK(bp);
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800263 xfs_failaddr_t fa;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100264 unsigned int level;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100265
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500266 /*
267 * During growfs operations, we can't verify the exact owner as the
268 * perag is not fully initialised and hence not attached to the buffer.
269 *
270 * Similarly, during log recovery we will have a perag structure
271 * attached, but the agi information will not yet have been initialised
272 * from the on disk AGI. We don't currently use any of this information,
273 * but beware of the landmine (i.e. need to check pag->pagi_init) if we
274 * ever do.
275 */
276 switch (block->bb_magic) {
277 case cpu_to_be32(XFS_IBT_CRC_MAGIC):
Brian Fosteraafc3c22014-04-24 16:00:52 +1000278 case cpu_to_be32(XFS_FIBT_CRC_MAGIC):
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800279 fa = xfs_btree_sblock_v5hdr_verify(bp);
280 if (fa)
281 return fa;
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500282 /* fall through */
283 case cpu_to_be32(XFS_IBT_MAGIC):
Brian Fosteraafc3c22014-04-24 16:00:52 +1000284 case cpu_to_be32(XFS_FIBT_MAGIC):
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500285 break;
286 default:
Darrick J. Wong2e050e62018-05-24 08:54:59 -0700287 return __this_address;
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500288 }
289
Darrick J. Wongc5ab1312016-01-04 16:13:21 +1100290 /* level verification */
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100291 level = be16_to_cpu(block->bb_level);
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500292 if (level >= mp->m_in_maxlevels)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800293 return __this_address;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100294
Darrick J. Wongc5ab1312016-01-04 16:13:21 +1100295 return xfs_btree_sblock_verify(bp, mp->m_inobt_mxr[level != 0]);
Dave Chinner612cfbf2012-11-14 17:52:32 +1100296}
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100297
Dave Chinner612cfbf2012-11-14 17:52:32 +1100298static void
Dave Chinner1813dd62012-11-14 17:54:40 +1100299xfs_inobt_read_verify(
300 struct xfs_buf *bp)
301{
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800302 xfs_failaddr_t fa;
303
Eric Sandeence5028c2014-02-27 15:23:10 +1100304 if (!xfs_btree_sblock_verify_crc(bp))
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800305 xfs_verifier_error(bp, -EFSBADCRC, __this_address);
306 else {
307 fa = xfs_inobt_verify(bp);
308 if (fa)
309 xfs_verifier_error(bp, -EFSCORRUPTED, fa);
310 }
Eric Sandeence5028c2014-02-27 15:23:10 +1100311
Darrick J. Wong31ca03c2018-01-08 10:51:02 -0800312 if (bp->b_error)
Eric Sandeence5028c2014-02-27 15:23:10 +1100313 trace_xfs_btree_corrupt(bp, _RET_IP_);
Dave Chinner1813dd62012-11-14 17:54:40 +1100314}
315
316static void
Dave Chinner612cfbf2012-11-14 17:52:32 +1100317xfs_inobt_write_verify(
318 struct xfs_buf *bp)
319{
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800320 xfs_failaddr_t fa;
321
322 fa = xfs_inobt_verify(bp);
323 if (fa) {
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500324 trace_xfs_btree_corrupt(bp, _RET_IP_);
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800325 xfs_verifier_error(bp, -EFSCORRUPTED, fa);
Eric Sandeene0d2c232014-02-27 15:14:31 +1100326 return;
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500327 }
328 xfs_btree_sblock_calc_crc(bp);
329
Dave Chinner612cfbf2012-11-14 17:52:32 +1100330}
331
Dave Chinner1813dd62012-11-14 17:54:40 +1100332const struct xfs_buf_ops xfs_inobt_buf_ops = {
Eric Sandeen233135b2016-01-04 16:10:19 +1100333 .name = "xfs_inobt",
Dave Chinner1813dd62012-11-14 17:54:40 +1100334 .verify_read = xfs_inobt_read_verify,
335 .verify_write = xfs_inobt_write_verify,
Darrick J. Wongb5572592018-01-08 10:51:08 -0800336 .verify_struct = xfs_inobt_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100337};
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100338
Christoph Hellwig4a26e662008-10-30 16:58:32 +1100339STATIC int
340xfs_inobt_keys_inorder(
341 struct xfs_btree_cur *cur,
342 union xfs_btree_key *k1,
343 union xfs_btree_key *k2)
344{
345 return be32_to_cpu(k1->inobt.ir_startino) <
346 be32_to_cpu(k2->inobt.ir_startino);
347}
348
349STATIC int
350xfs_inobt_recs_inorder(
351 struct xfs_btree_cur *cur,
352 union xfs_btree_rec *r1,
353 union xfs_btree_rec *r2)
354{
355 return be32_to_cpu(r1->inobt.ir_startino) + XFS_INODES_PER_CHUNK <=
356 be32_to_cpu(r2->inobt.ir_startino);
357}
Christoph Hellwig4a26e662008-10-30 16:58:32 +1100358
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100359static const struct xfs_btree_ops xfs_inobt_ops = {
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100360 .rec_len = sizeof(xfs_inobt_rec_t),
361 .key_len = sizeof(xfs_inobt_key_t),
362
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100363 .dup_cursor = xfs_inobt_dup_cursor,
Christoph Hellwig344207c2008-10-30 16:57:16 +1100364 .set_root = xfs_inobt_set_root,
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100365 .alloc_block = xfs_inobt_alloc_block,
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100366 .free_block = xfs_inobt_free_block,
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100367 .get_minrecs = xfs_inobt_get_minrecs,
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100368 .get_maxrecs = xfs_inobt_get_maxrecs,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100369 .init_key_from_rec = xfs_inobt_init_key_from_rec,
Darrick J. Wong118bb472017-06-16 11:00:08 -0700370 .init_high_key_from_rec = xfs_inobt_init_high_key_from_rec,
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100371 .init_rec_from_cur = xfs_inobt_init_rec_from_cur,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100372 .init_ptr_from_cur = xfs_inobt_init_ptr_from_cur,
373 .key_diff = xfs_inobt_key_diff,
Dave Chinner1813dd62012-11-14 17:54:40 +1100374 .buf_ops = &xfs_inobt_buf_ops,
Darrick J. Wong118bb472017-06-16 11:00:08 -0700375 .diff_two_keys = xfs_inobt_diff_two_keys,
Christoph Hellwig4a26e662008-10-30 16:58:32 +1100376 .keys_inorder = xfs_inobt_keys_inorder,
377 .recs_inorder = xfs_inobt_recs_inorder,
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100378};
379
Brian Fosteraafc3c22014-04-24 16:00:52 +1000380static const struct xfs_btree_ops xfs_finobt_ops = {
381 .rec_len = sizeof(xfs_inobt_rec_t),
382 .key_len = sizeof(xfs_inobt_key_t),
383
384 .dup_cursor = xfs_inobt_dup_cursor,
385 .set_root = xfs_finobt_set_root,
Christoph Hellwig76d771b2017-01-25 07:49:35 -0800386 .alloc_block = xfs_finobt_alloc_block,
Brian Fosterad90bb52018-01-12 14:07:21 -0800387 .free_block = xfs_finobt_free_block,
Brian Fosteraafc3c22014-04-24 16:00:52 +1000388 .get_minrecs = xfs_inobt_get_minrecs,
389 .get_maxrecs = xfs_inobt_get_maxrecs,
390 .init_key_from_rec = xfs_inobt_init_key_from_rec,
Darrick J. Wong118bb472017-06-16 11:00:08 -0700391 .init_high_key_from_rec = xfs_inobt_init_high_key_from_rec,
Brian Fosteraafc3c22014-04-24 16:00:52 +1000392 .init_rec_from_cur = xfs_inobt_init_rec_from_cur,
393 .init_ptr_from_cur = xfs_finobt_init_ptr_from_cur,
394 .key_diff = xfs_inobt_key_diff,
395 .buf_ops = &xfs_inobt_buf_ops,
Darrick J. Wong118bb472017-06-16 11:00:08 -0700396 .diff_two_keys = xfs_inobt_diff_two_keys,
Brian Fosteraafc3c22014-04-24 16:00:52 +1000397 .keys_inorder = xfs_inobt_keys_inorder,
398 .recs_inorder = xfs_inobt_recs_inorder,
Brian Fosteraafc3c22014-04-24 16:00:52 +1000399};
400
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100401/*
402 * Allocate a new inode btree cursor.
403 */
404struct xfs_btree_cur * /* new inode btree cursor */
405xfs_inobt_init_cursor(
406 struct xfs_mount *mp, /* file system mount point */
407 struct xfs_trans *tp, /* transaction pointer */
408 struct xfs_buf *agbp, /* buffer for agi structure */
Brian Foster57bd3db2014-04-24 16:00:50 +1000409 xfs_agnumber_t agno, /* allocation group number */
410 xfs_btnum_t btnum) /* ialloc or free ino btree */
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100411{
412 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
413 struct xfs_btree_cur *cur;
414
Darrick J. Wongb24a9782016-12-09 16:49:54 +1100415 cur = kmem_zone_zalloc(xfs_btree_cur_zone, KM_NOFS);
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100416
417 cur->bc_tp = tp;
418 cur->bc_mp = mp;
Brian Foster57bd3db2014-04-24 16:00:50 +1000419 cur->bc_btnum = btnum;
Brian Fosteraafc3c22014-04-24 16:00:52 +1000420 if (btnum == XFS_BTNUM_INO) {
421 cur->bc_nlevels = be32_to_cpu(agi->agi_level);
422 cur->bc_ops = &xfs_inobt_ops;
Dave Chinner11ef38a2016-12-05 14:38:58 +1100423 cur->bc_statoff = XFS_STATS_CALC_INDEX(xs_ibt_2);
Brian Fosteraafc3c22014-04-24 16:00:52 +1000424 } else {
425 cur->bc_nlevels = be32_to_cpu(agi->agi_free_level);
426 cur->bc_ops = &xfs_finobt_ops;
Dave Chinner11ef38a2016-12-05 14:38:58 +1100427 cur->bc_statoff = XFS_STATS_CALC_INDEX(xs_fibt_2);
Brian Fosteraafc3c22014-04-24 16:00:52 +1000428 }
429
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100430 cur->bc_blocklog = mp->m_sb.sb_blocklog;
431
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500432 if (xfs_sb_version_hascrc(&mp->m_sb))
433 cur->bc_flags |= XFS_BTREE_CRC_BLOCKS;
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100434
435 cur->bc_private.a.agbp = agbp;
436 cur->bc_private.a.agno = agno;
437
438 return cur;
439}
Christoph Hellwig60197e82008-10-30 17:11:19 +1100440
441/*
442 * Calculate number of records in an inobt btree block.
443 */
444int
445xfs_inobt_maxrecs(
446 struct xfs_mount *mp,
447 int blocklen,
448 int leaf)
449{
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100450 blocklen -= XFS_INOBT_BLOCK_LEN(mp);
Christoph Hellwig60197e82008-10-30 17:11:19 +1100451
452 if (leaf)
453 return blocklen / sizeof(xfs_inobt_rec_t);
454 return blocklen / (sizeof(xfs_inobt_key_t) + sizeof(xfs_inobt_ptr_t));
455}
Brian Foster4148c342015-05-29 09:09:05 +1000456
457/*
458 * Convert the inode record holemask to an inode allocation bitmap. The inode
459 * allocation bitmap is inode granularity and specifies whether an inode is
460 * physically allocated on disk (not whether the inode is considered allocated
461 * or free by the fs).
462 *
463 * A bit value of 1 means the inode is allocated, a value of 0 means it is free.
464 */
465uint64_t
466xfs_inobt_irec_to_allocmask(
467 struct xfs_inobt_rec_incore *rec)
468{
469 uint64_t bitmap = 0;
470 uint64_t inodespbit;
471 int nextbit;
472 uint allocbitmap;
473
474 /*
475 * The holemask has 16-bits for a 64 inode record. Therefore each
476 * holemask bit represents multiple inodes. Create a mask of bits to set
477 * in the allocmask for each holemask bit.
478 */
479 inodespbit = (1 << XFS_INODES_PER_HOLEMASK_BIT) - 1;
480
481 /*
482 * Allocated inodes are represented by 0 bits in holemask. Invert the 0
483 * bits to 1 and convert to a uint so we can use xfs_next_bit(). Mask
484 * anything beyond the 16 holemask bits since this casts to a larger
485 * type.
486 */
487 allocbitmap = ~rec->ir_holemask & ((1 << XFS_INOBT_HOLEMASK_BITS) - 1);
488
489 /*
490 * allocbitmap is the inverted holemask so every set bit represents
491 * allocated inodes. To expand from 16-bit holemask granularity to
492 * 64-bit (e.g., bit-per-inode), set inodespbit bits in the target
493 * bitmap for every holemask bit.
494 */
495 nextbit = xfs_next_bit(&allocbitmap, 1, 0);
496 while (nextbit != -1) {
497 ASSERT(nextbit < (sizeof(rec->ir_holemask) * NBBY));
498
499 bitmap |= (inodespbit <<
500 (nextbit * XFS_INODES_PER_HOLEMASK_BIT));
501
502 nextbit = xfs_next_bit(&allocbitmap, 1, nextbit + 1);
503 }
504
505 return bitmap;
506}
Brian Foster56d11152015-05-29 09:18:32 +1000507
508#if defined(DEBUG) || defined(XFS_WARN)
509/*
510 * Verify that an in-core inode record has a valid inode count.
511 */
512int
513xfs_inobt_rec_check_count(
514 struct xfs_mount *mp,
515 struct xfs_inobt_rec_incore *rec)
516{
517 int inocount = 0;
518 int nextbit = 0;
519 uint64_t allocbmap;
520 int wordsz;
521
522 wordsz = sizeof(allocbmap) / sizeof(unsigned int);
523 allocbmap = xfs_inobt_irec_to_allocmask(rec);
524
525 nextbit = xfs_next_bit((uint *) &allocbmap, wordsz, nextbit);
526 while (nextbit != -1) {
527 inocount++;
528 nextbit = xfs_next_bit((uint *) &allocbmap, wordsz,
529 nextbit + 1);
530 }
531
532 if (inocount != rec->ir_count)
533 return -EFSCORRUPTED;
534
535 return 0;
536}
537#endif /* DEBUG */
Christoph Hellwig76d771b2017-01-25 07:49:35 -0800538
539static xfs_extlen_t
540xfs_inobt_max_size(
541 struct xfs_mount *mp)
542{
543 /* Bail out if we're uninitialized, which can happen in mkfs. */
544 if (mp->m_inobt_mxr[0] == 0)
545 return 0;
546
Eric Sandeena1f69412018-04-06 10:09:42 -0700547 return xfs_btree_calc_size(mp->m_inobt_mnr,
Christoph Hellwig76d771b2017-01-25 07:49:35 -0800548 (uint64_t)mp->m_sb.sb_agblocks * mp->m_sb.sb_inopblock /
549 XFS_INODES_PER_CHUNK);
550}
551
552static int
553xfs_inobt_count_blocks(
554 struct xfs_mount *mp,
555 xfs_agnumber_t agno,
556 xfs_btnum_t btnum,
557 xfs_extlen_t *tree_blocks)
558{
559 struct xfs_buf *agbp;
560 struct xfs_btree_cur *cur;
561 int error;
562
563 error = xfs_ialloc_read_agi(mp, NULL, agno, &agbp);
564 if (error)
565 return error;
566
567 cur = xfs_inobt_init_cursor(mp, NULL, agbp, agno, btnum);
568 error = xfs_btree_count_blocks(cur, tree_blocks);
Darrick J. Wong0b04b6b82018-07-19 12:26:31 -0700569 xfs_btree_del_cursor(cur, error);
Christoph Hellwig76d771b2017-01-25 07:49:35 -0800570 xfs_buf_relse(agbp);
571
572 return error;
573}
574
575/*
576 * Figure out how many blocks to reserve and how many are used by this btree.
577 */
578int
579xfs_finobt_calc_reserves(
580 struct xfs_mount *mp,
581 xfs_agnumber_t agno,
582 xfs_extlen_t *ask,
583 xfs_extlen_t *used)
584{
585 xfs_extlen_t tree_len = 0;
586 int error;
587
588 if (!xfs_sb_version_hasfinobt(&mp->m_sb))
589 return 0;
590
591 error = xfs_inobt_count_blocks(mp, agno, XFS_BTNUM_FINO, &tree_len);
592 if (error)
593 return error;
594
595 *ask += xfs_inobt_max_size(mp);
596 *used += tree_len;
597 return 0;
598}
Darrick J. Wong14861c42018-05-09 10:02:01 -0700599
600/* Calculate the inobt btree size for some records. */
601xfs_extlen_t
602xfs_iallocbt_calc_size(
603 struct xfs_mount *mp,
604 unsigned long long len)
605{
606 return xfs_btree_calc_size(mp->m_inobt_mnr, len);
607}