blob: 7e309b11e87d75240cfdb41428d1f13dc7d470b8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2001,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"
Dave Chinner632b89e2013-10-29 22:11:58 +110020#include "xfs_shared.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110021#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110022#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110024#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_sb.h"
26#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_mount.h"
Nathan Scotta844f452005-11-02 14:38:42 +110028#include "xfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_btree.h"
30#include "xfs_ialloc.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110031#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_alloc.h"
33#include "xfs_error.h"
Dave Chinner3d3e6f62012-11-12 22:54:08 +110034#include "xfs_trace.h"
Christoph Hellwigee1a47a2013-04-21 14:53:46 -050035#include "xfs_cksum.h"
Dave Chinner239880e2013-10-23 10:50:10 +110036#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Christoph Hellwig91cca5df2008-10-30 16:58:01 +110039STATIC int
40xfs_inobt_get_minrecs(
41 struct xfs_btree_cur *cur,
42 int level)
43{
44 return cur->bc_mp->m_inobt_mnr[level != 0];
45}
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Christoph Hellwig561f7d12008-10-30 16:53:59 +110047STATIC struct xfs_btree_cur *
48xfs_inobt_dup_cursor(
49 struct xfs_btree_cur *cur)
50{
51 return xfs_inobt_init_cursor(cur->bc_mp, cur->bc_tp,
52 cur->bc_private.a.agbp, cur->bc_private.a.agno);
53}
54
Christoph Hellwig344207c2008-10-30 16:57:16 +110055STATIC void
56xfs_inobt_set_root(
57 struct xfs_btree_cur *cur,
58 union xfs_btree_ptr *nptr,
59 int inc) /* level change */
60{
61 struct xfs_buf *agbp = cur->bc_private.a.agbp;
62 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
63
64 agi->agi_root = nptr->s;
65 be32_add_cpu(&agi->agi_level, inc);
66 xfs_ialloc_log_agi(cur->bc_tp, agbp, XFS_AGI_ROOT | XFS_AGI_LEVEL);
67}
68
Christoph Hellwigce5e42d2008-10-30 16:55:23 +110069STATIC int
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +110070xfs_inobt_alloc_block(
71 struct xfs_btree_cur *cur,
72 union xfs_btree_ptr *start,
73 union xfs_btree_ptr *new,
74 int length,
75 int *stat)
76{
77 xfs_alloc_arg_t args; /* block allocation args */
78 int error; /* error return value */
79 xfs_agblock_t sbno = be32_to_cpu(start->s);
80
81 XFS_BTREE_TRACE_CURSOR(cur, XBT_ENTRY);
82
83 memset(&args, 0, sizeof(args));
84 args.tp = cur->bc_tp;
85 args.mp = cur->bc_mp;
86 args.fsbno = XFS_AGB_TO_FSB(args.mp, cur->bc_private.a.agno, sbno);
87 args.minlen = 1;
88 args.maxlen = 1;
89 args.prod = 1;
90 args.type = XFS_ALLOCTYPE_NEAR_BNO;
91
92 error = xfs_alloc_vextent(&args);
93 if (error) {
94 XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);
95 return error;
96 }
97 if (args.fsbno == NULLFSBLOCK) {
98 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
99 *stat = 0;
100 return 0;
101 }
102 ASSERT(args.len == 1);
103 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
104
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
111xfs_inobt_free_block(
112 struct xfs_btree_cur *cur,
113 struct xfs_buf *bp)
114{
115 xfs_fsblock_t fsbno;
116 int error;
117
118 fsbno = XFS_DADDR_TO_FSB(cur->bc_mp, XFS_BUF_ADDR(bp));
119 error = xfs_free_extent(cur->bc_tp, fsbno, 1);
120 if (error)
121 return error;
122
123 xfs_trans_binval(cur->bc_tp, bp);
124 return error;
125}
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100126
127STATIC int
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100128xfs_inobt_get_maxrecs(
129 struct xfs_btree_cur *cur,
130 int level)
131{
132 return cur->bc_mp->m_inobt_mxr[level != 0];
133}
134
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100135STATIC void
136xfs_inobt_init_key_from_rec(
137 union xfs_btree_key *key,
138 union xfs_btree_rec *rec)
139{
140 key->inobt.ir_startino = rec->inobt.ir_startino;
141}
142
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100143STATIC void
144xfs_inobt_init_rec_from_key(
145 union xfs_btree_key *key,
146 union xfs_btree_rec *rec)
147{
148 rec->inobt.ir_startino = key->inobt.ir_startino;
149}
150
151STATIC void
152xfs_inobt_init_rec_from_cur(
153 struct xfs_btree_cur *cur,
154 union xfs_btree_rec *rec)
155{
156 rec->inobt.ir_startino = cpu_to_be32(cur->bc_rec.i.ir_startino);
157 rec->inobt.ir_freecount = cpu_to_be32(cur->bc_rec.i.ir_freecount);
158 rec->inobt.ir_free = cpu_to_be64(cur->bc_rec.i.ir_free);
159}
160
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100161/*
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200162 * initial value of ptr for lookup
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100163 */
164STATIC void
165xfs_inobt_init_ptr_from_cur(
166 struct xfs_btree_cur *cur,
167 union xfs_btree_ptr *ptr)
168{
169 struct xfs_agi *agi = XFS_BUF_TO_AGI(cur->bc_private.a.agbp);
170
171 ASSERT(cur->bc_private.a.agno == be32_to_cpu(agi->agi_seqno));
172
173 ptr->s = agi->agi_root;
174}
175
176STATIC __int64_t
177xfs_inobt_key_diff(
178 struct xfs_btree_cur *cur,
179 union xfs_btree_key *key)
180{
181 return (__int64_t)be32_to_cpu(key->inobt.ir_startino) -
182 cur->bc_rec.i.ir_startino;
183}
184
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500185static int
Dave Chinner612cfbf2012-11-14 17:52:32 +1100186xfs_inobt_verify(
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100187 struct xfs_buf *bp)
188{
189 struct xfs_mount *mp = bp->b_target->bt_mount;
190 struct xfs_btree_block *block = XFS_BUF_TO_BLOCK(bp);
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500191 struct xfs_perag *pag = bp->b_pag;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100192 unsigned int level;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100193
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500194 /*
195 * During growfs operations, we can't verify the exact owner as the
196 * perag is not fully initialised and hence not attached to the buffer.
197 *
198 * Similarly, during log recovery we will have a perag structure
199 * attached, but the agi information will not yet have been initialised
200 * from the on disk AGI. We don't currently use any of this information,
201 * but beware of the landmine (i.e. need to check pag->pagi_init) if we
202 * ever do.
203 */
204 switch (block->bb_magic) {
205 case cpu_to_be32(XFS_IBT_CRC_MAGIC):
206 if (!xfs_sb_version_hascrc(&mp->m_sb))
207 return false;
208 if (!uuid_equal(&block->bb_u.s.bb_uuid, &mp->m_sb.sb_uuid))
209 return false;
210 if (block->bb_u.s.bb_blkno != cpu_to_be64(bp->b_bn))
211 return false;
212 if (pag &&
213 be32_to_cpu(block->bb_u.s.bb_owner) != pag->pag_agno)
214 return false;
215 /* fall through */
216 case cpu_to_be32(XFS_IBT_MAGIC):
217 break;
218 default:
219 return 0;
220 }
221
222 /* numrecs and level verification */
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100223 level = be16_to_cpu(block->bb_level);
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500224 if (level >= mp->m_in_maxlevels)
225 return false;
226 if (be16_to_cpu(block->bb_numrecs) > mp->m_inobt_mxr[level != 0])
227 return false;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100228
229 /* sibling pointer verification */
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500230 if (!block->bb_u.s.bb_leftsib ||
231 (be32_to_cpu(block->bb_u.s.bb_leftsib) >= mp->m_sb.sb_agblocks &&
232 block->bb_u.s.bb_leftsib != cpu_to_be32(NULLAGBLOCK)))
233 return false;
234 if (!block->bb_u.s.bb_rightsib ||
235 (be32_to_cpu(block->bb_u.s.bb_rightsib) >= mp->m_sb.sb_agblocks &&
236 block->bb_u.s.bb_rightsib != cpu_to_be32(NULLAGBLOCK)))
237 return false;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100238
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500239 return true;
Dave Chinner612cfbf2012-11-14 17:52:32 +1100240}
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100241
Dave Chinner612cfbf2012-11-14 17:52:32 +1100242static void
Dave Chinner1813dd62012-11-14 17:54:40 +1100243xfs_inobt_read_verify(
244 struct xfs_buf *bp)
245{
Eric Sandeence5028c2014-02-27 15:23:10 +1100246 if (!xfs_btree_sblock_verify_crc(bp))
247 xfs_buf_ioerror(bp, EFSBADCRC);
248 else if (!xfs_inobt_verify(bp))
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500249 xfs_buf_ioerror(bp, EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100250
251 if (bp->b_error) {
252 trace_xfs_btree_corrupt(bp, _RET_IP_);
253 xfs_verifier_error(bp);
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500254 }
Dave Chinner1813dd62012-11-14 17:54:40 +1100255}
256
257static void
Dave Chinner612cfbf2012-11-14 17:52:32 +1100258xfs_inobt_write_verify(
259 struct xfs_buf *bp)
260{
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500261 if (!xfs_inobt_verify(bp)) {
262 trace_xfs_btree_corrupt(bp, _RET_IP_);
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500263 xfs_buf_ioerror(bp, EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100264 xfs_verifier_error(bp);
Eric Sandeene0d2c232014-02-27 15:14:31 +1100265 return;
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500266 }
267 xfs_btree_sblock_calc_crc(bp);
268
Dave Chinner612cfbf2012-11-14 17:52:32 +1100269}
270
Dave Chinner1813dd62012-11-14 17:54:40 +1100271const struct xfs_buf_ops xfs_inobt_buf_ops = {
272 .verify_read = xfs_inobt_read_verify,
273 .verify_write = xfs_inobt_write_verify,
274};
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100275
Dave Chinner742ae1e2013-04-30 21:39:34 +1000276#if defined(DEBUG) || defined(XFS_WARN)
Christoph Hellwig4a26e662008-10-30 16:58:32 +1100277STATIC int
278xfs_inobt_keys_inorder(
279 struct xfs_btree_cur *cur,
280 union xfs_btree_key *k1,
281 union xfs_btree_key *k2)
282{
283 return be32_to_cpu(k1->inobt.ir_startino) <
284 be32_to_cpu(k2->inobt.ir_startino);
285}
286
287STATIC int
288xfs_inobt_recs_inorder(
289 struct xfs_btree_cur *cur,
290 union xfs_btree_rec *r1,
291 union xfs_btree_rec *r2)
292{
293 return be32_to_cpu(r1->inobt.ir_startino) + XFS_INODES_PER_CHUNK <=
294 be32_to_cpu(r2->inobt.ir_startino);
295}
296#endif /* DEBUG */
297
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100298static const struct xfs_btree_ops xfs_inobt_ops = {
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100299 .rec_len = sizeof(xfs_inobt_rec_t),
300 .key_len = sizeof(xfs_inobt_key_t),
301
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100302 .dup_cursor = xfs_inobt_dup_cursor,
Christoph Hellwig344207c2008-10-30 16:57:16 +1100303 .set_root = xfs_inobt_set_root,
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100304 .alloc_block = xfs_inobt_alloc_block,
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100305 .free_block = xfs_inobt_free_block,
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100306 .get_minrecs = xfs_inobt_get_minrecs,
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100307 .get_maxrecs = xfs_inobt_get_maxrecs,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100308 .init_key_from_rec = xfs_inobt_init_key_from_rec,
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100309 .init_rec_from_key = xfs_inobt_init_rec_from_key,
310 .init_rec_from_cur = xfs_inobt_init_rec_from_cur,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100311 .init_ptr_from_cur = xfs_inobt_init_ptr_from_cur,
312 .key_diff = xfs_inobt_key_diff,
Dave Chinner1813dd62012-11-14 17:54:40 +1100313 .buf_ops = &xfs_inobt_buf_ops,
Dave Chinner742ae1e2013-04-30 21:39:34 +1000314#if defined(DEBUG) || defined(XFS_WARN)
Christoph Hellwig4a26e662008-10-30 16:58:32 +1100315 .keys_inorder = xfs_inobt_keys_inorder,
316 .recs_inorder = xfs_inobt_recs_inorder,
317#endif
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100318};
319
320/*
321 * Allocate a new inode btree cursor.
322 */
323struct xfs_btree_cur * /* new inode btree cursor */
324xfs_inobt_init_cursor(
325 struct xfs_mount *mp, /* file system mount point */
326 struct xfs_trans *tp, /* transaction pointer */
327 struct xfs_buf *agbp, /* buffer for agi structure */
328 xfs_agnumber_t agno) /* allocation group number */
329{
330 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
331 struct xfs_btree_cur *cur;
332
333 cur = kmem_zone_zalloc(xfs_btree_cur_zone, KM_SLEEP);
334
335 cur->bc_tp = tp;
336 cur->bc_mp = mp;
337 cur->bc_nlevels = be32_to_cpu(agi->agi_level);
338 cur->bc_btnum = XFS_BTNUM_INO;
339 cur->bc_blocklog = mp->m_sb.sb_blocklog;
340
341 cur->bc_ops = &xfs_inobt_ops;
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500342 if (xfs_sb_version_hascrc(&mp->m_sb))
343 cur->bc_flags |= XFS_BTREE_CRC_BLOCKS;
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100344
345 cur->bc_private.a.agbp = agbp;
346 cur->bc_private.a.agno = agno;
347
348 return cur;
349}
Christoph Hellwig60197e82008-10-30 17:11:19 +1100350
351/*
352 * Calculate number of records in an inobt btree block.
353 */
354int
355xfs_inobt_maxrecs(
356 struct xfs_mount *mp,
357 int blocklen,
358 int leaf)
359{
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100360 blocklen -= XFS_INOBT_BLOCK_LEN(mp);
Christoph Hellwig60197e82008-10-30 17:11:19 +1100361
362 if (leaf)
363 return blocklen / sizeof(xfs_inobt_rec_t);
364 return blocklen / (sizeof(xfs_inobt_key_t) + sizeof(xfs_inobt_ptr_t));
365}