blob: 1fa142dc86cbd6397dc52e0b7bf9191d12f74eeb [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 Chinnera4fbe6a2013-10-23 10:51:50 +110020#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110021#include "xfs_log_format.h"
22#include "xfs_trans_resv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_sb.h"
25#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_mount.h"
Nathan Scotta844f452005-11-02 14:38:42 +110027#include "xfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_btree.h"
29#include "xfs_ialloc.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110030#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_alloc.h"
32#include "xfs_error.h"
Dave Chinner3d3e6f62012-11-12 22:54:08 +110033#include "xfs_trace.h"
Christoph Hellwigee1a47a2013-04-21 14:53:46 -050034#include "xfs_cksum.h"
Dave Chinner239880e2013-10-23 10:50:10 +110035#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Christoph Hellwig91cca5df2008-10-30 16:58:01 +110038STATIC int
39xfs_inobt_get_minrecs(
40 struct xfs_btree_cur *cur,
41 int level)
42{
43 return cur->bc_mp->m_inobt_mnr[level != 0];
44}
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Christoph Hellwig561f7d12008-10-30 16:53:59 +110046STATIC struct xfs_btree_cur *
47xfs_inobt_dup_cursor(
48 struct xfs_btree_cur *cur)
49{
50 return xfs_inobt_init_cursor(cur->bc_mp, cur->bc_tp,
51 cur->bc_private.a.agbp, cur->bc_private.a.agno);
52}
53
Christoph Hellwig344207c2008-10-30 16:57:16 +110054STATIC void
55xfs_inobt_set_root(
56 struct xfs_btree_cur *cur,
57 union xfs_btree_ptr *nptr,
58 int inc) /* level change */
59{
60 struct xfs_buf *agbp = cur->bc_private.a.agbp;
61 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
62
63 agi->agi_root = nptr->s;
64 be32_add_cpu(&agi->agi_level, inc);
65 xfs_ialloc_log_agi(cur->bc_tp, agbp, XFS_AGI_ROOT | XFS_AGI_LEVEL);
66}
67
Christoph Hellwigce5e42d2008-10-30 16:55:23 +110068STATIC int
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +110069xfs_inobt_alloc_block(
70 struct xfs_btree_cur *cur,
71 union xfs_btree_ptr *start,
72 union xfs_btree_ptr *new,
73 int length,
74 int *stat)
75{
76 xfs_alloc_arg_t args; /* block allocation args */
77 int error; /* error return value */
78 xfs_agblock_t sbno = be32_to_cpu(start->s);
79
80 XFS_BTREE_TRACE_CURSOR(cur, XBT_ENTRY);
81
82 memset(&args, 0, sizeof(args));
83 args.tp = cur->bc_tp;
84 args.mp = cur->bc_mp;
85 args.fsbno = XFS_AGB_TO_FSB(args.mp, cur->bc_private.a.agno, sbno);
86 args.minlen = 1;
87 args.maxlen = 1;
88 args.prod = 1;
89 args.type = XFS_ALLOCTYPE_NEAR_BNO;
90
91 error = xfs_alloc_vextent(&args);
92 if (error) {
93 XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);
94 return error;
95 }
96 if (args.fsbno == NULLFSBLOCK) {
97 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
98 *stat = 0;
99 return 0;
100 }
101 ASSERT(args.len == 1);
102 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
103
104 new->s = cpu_to_be32(XFS_FSB_TO_AGBNO(args.mp, args.fsbno));
105 *stat = 1;
106 return 0;
107}
108
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100109STATIC int
110xfs_inobt_free_block(
111 struct xfs_btree_cur *cur,
112 struct xfs_buf *bp)
113{
114 xfs_fsblock_t fsbno;
115 int error;
116
117 fsbno = XFS_DADDR_TO_FSB(cur->bc_mp, XFS_BUF_ADDR(bp));
118 error = xfs_free_extent(cur->bc_tp, fsbno, 1);
119 if (error)
120 return error;
121
122 xfs_trans_binval(cur->bc_tp, bp);
123 return error;
124}
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100125
126STATIC int
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100127xfs_inobt_get_maxrecs(
128 struct xfs_btree_cur *cur,
129 int level)
130{
131 return cur->bc_mp->m_inobt_mxr[level != 0];
132}
133
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100134STATIC void
135xfs_inobt_init_key_from_rec(
136 union xfs_btree_key *key,
137 union xfs_btree_rec *rec)
138{
139 key->inobt.ir_startino = rec->inobt.ir_startino;
140}
141
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100142STATIC void
143xfs_inobt_init_rec_from_key(
144 union xfs_btree_key *key,
145 union xfs_btree_rec *rec)
146{
147 rec->inobt.ir_startino = key->inobt.ir_startino;
148}
149
150STATIC void
151xfs_inobt_init_rec_from_cur(
152 struct xfs_btree_cur *cur,
153 union xfs_btree_rec *rec)
154{
155 rec->inobt.ir_startino = cpu_to_be32(cur->bc_rec.i.ir_startino);
156 rec->inobt.ir_freecount = cpu_to_be32(cur->bc_rec.i.ir_freecount);
157 rec->inobt.ir_free = cpu_to_be64(cur->bc_rec.i.ir_free);
158}
159
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100160/*
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200161 * initial value of ptr for lookup
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100162 */
163STATIC void
164xfs_inobt_init_ptr_from_cur(
165 struct xfs_btree_cur *cur,
166 union xfs_btree_ptr *ptr)
167{
168 struct xfs_agi *agi = XFS_BUF_TO_AGI(cur->bc_private.a.agbp);
169
170 ASSERT(cur->bc_private.a.agno == be32_to_cpu(agi->agi_seqno));
171
172 ptr->s = agi->agi_root;
173}
174
175STATIC __int64_t
176xfs_inobt_key_diff(
177 struct xfs_btree_cur *cur,
178 union xfs_btree_key *key)
179{
180 return (__int64_t)be32_to_cpu(key->inobt.ir_startino) -
181 cur->bc_rec.i.ir_startino;
182}
183
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500184static int
Dave Chinner612cfbf2012-11-14 17:52:32 +1100185xfs_inobt_verify(
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100186 struct xfs_buf *bp)
187{
188 struct xfs_mount *mp = bp->b_target->bt_mount;
189 struct xfs_btree_block *block = XFS_BUF_TO_BLOCK(bp);
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500190 struct xfs_perag *pag = bp->b_pag;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100191 unsigned int level;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100192
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500193 /*
194 * During growfs operations, we can't verify the exact owner as the
195 * perag is not fully initialised and hence not attached to the buffer.
196 *
197 * Similarly, during log recovery we will have a perag structure
198 * attached, but the agi information will not yet have been initialised
199 * from the on disk AGI. We don't currently use any of this information,
200 * but beware of the landmine (i.e. need to check pag->pagi_init) if we
201 * ever do.
202 */
203 switch (block->bb_magic) {
204 case cpu_to_be32(XFS_IBT_CRC_MAGIC):
205 if (!xfs_sb_version_hascrc(&mp->m_sb))
206 return false;
207 if (!uuid_equal(&block->bb_u.s.bb_uuid, &mp->m_sb.sb_uuid))
208 return false;
209 if (block->bb_u.s.bb_blkno != cpu_to_be64(bp->b_bn))
210 return false;
211 if (pag &&
212 be32_to_cpu(block->bb_u.s.bb_owner) != pag->pag_agno)
213 return false;
214 /* fall through */
215 case cpu_to_be32(XFS_IBT_MAGIC):
216 break;
217 default:
218 return 0;
219 }
220
221 /* numrecs and level verification */
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100222 level = be16_to_cpu(block->bb_level);
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500223 if (level >= mp->m_in_maxlevels)
224 return false;
225 if (be16_to_cpu(block->bb_numrecs) > mp->m_inobt_mxr[level != 0])
226 return false;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100227
228 /* sibling pointer verification */
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500229 if (!block->bb_u.s.bb_leftsib ||
230 (be32_to_cpu(block->bb_u.s.bb_leftsib) >= mp->m_sb.sb_agblocks &&
231 block->bb_u.s.bb_leftsib != cpu_to_be32(NULLAGBLOCK)))
232 return false;
233 if (!block->bb_u.s.bb_rightsib ||
234 (be32_to_cpu(block->bb_u.s.bb_rightsib) >= mp->m_sb.sb_agblocks &&
235 block->bb_u.s.bb_rightsib != cpu_to_be32(NULLAGBLOCK)))
236 return false;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100237
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500238 return true;
Dave Chinner612cfbf2012-11-14 17:52:32 +1100239}
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100240
Dave Chinner612cfbf2012-11-14 17:52:32 +1100241static void
Dave Chinner1813dd62012-11-14 17:54:40 +1100242xfs_inobt_read_verify(
243 struct xfs_buf *bp)
244{
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500245 if (!(xfs_btree_sblock_verify_crc(bp) &&
246 xfs_inobt_verify(bp))) {
247 trace_xfs_btree_corrupt(bp, _RET_IP_);
248 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW,
249 bp->b_target->bt_mount, bp->b_addr);
250 xfs_buf_ioerror(bp, EFSCORRUPTED);
251 }
Dave Chinner1813dd62012-11-14 17:54:40 +1100252}
253
254static void
Dave Chinner612cfbf2012-11-14 17:52:32 +1100255xfs_inobt_write_verify(
256 struct xfs_buf *bp)
257{
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500258 if (!xfs_inobt_verify(bp)) {
259 trace_xfs_btree_corrupt(bp, _RET_IP_);
260 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW,
261 bp->b_target->bt_mount, bp->b_addr);
262 xfs_buf_ioerror(bp, EFSCORRUPTED);
263 }
264 xfs_btree_sblock_calc_crc(bp);
265
Dave Chinner612cfbf2012-11-14 17:52:32 +1100266}
267
Dave Chinner1813dd62012-11-14 17:54:40 +1100268const struct xfs_buf_ops xfs_inobt_buf_ops = {
269 .verify_read = xfs_inobt_read_verify,
270 .verify_write = xfs_inobt_write_verify,
271};
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100272
Dave Chinner742ae1e2013-04-30 21:39:34 +1000273#if defined(DEBUG) || defined(XFS_WARN)
Christoph Hellwig4a26e662008-10-30 16:58:32 +1100274STATIC int
275xfs_inobt_keys_inorder(
276 struct xfs_btree_cur *cur,
277 union xfs_btree_key *k1,
278 union xfs_btree_key *k2)
279{
280 return be32_to_cpu(k1->inobt.ir_startino) <
281 be32_to_cpu(k2->inobt.ir_startino);
282}
283
284STATIC int
285xfs_inobt_recs_inorder(
286 struct xfs_btree_cur *cur,
287 union xfs_btree_rec *r1,
288 union xfs_btree_rec *r2)
289{
290 return be32_to_cpu(r1->inobt.ir_startino) + XFS_INODES_PER_CHUNK <=
291 be32_to_cpu(r2->inobt.ir_startino);
292}
293#endif /* DEBUG */
294
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100295static const struct xfs_btree_ops xfs_inobt_ops = {
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100296 .rec_len = sizeof(xfs_inobt_rec_t),
297 .key_len = sizeof(xfs_inobt_key_t),
298
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100299 .dup_cursor = xfs_inobt_dup_cursor,
Christoph Hellwig344207c2008-10-30 16:57:16 +1100300 .set_root = xfs_inobt_set_root,
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100301 .alloc_block = xfs_inobt_alloc_block,
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100302 .free_block = xfs_inobt_free_block,
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100303 .get_minrecs = xfs_inobt_get_minrecs,
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100304 .get_maxrecs = xfs_inobt_get_maxrecs,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100305 .init_key_from_rec = xfs_inobt_init_key_from_rec,
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100306 .init_rec_from_key = xfs_inobt_init_rec_from_key,
307 .init_rec_from_cur = xfs_inobt_init_rec_from_cur,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100308 .init_ptr_from_cur = xfs_inobt_init_ptr_from_cur,
309 .key_diff = xfs_inobt_key_diff,
Dave Chinner1813dd62012-11-14 17:54:40 +1100310 .buf_ops = &xfs_inobt_buf_ops,
Dave Chinner742ae1e2013-04-30 21:39:34 +1000311#if defined(DEBUG) || defined(XFS_WARN)
Christoph Hellwig4a26e662008-10-30 16:58:32 +1100312 .keys_inorder = xfs_inobt_keys_inorder,
313 .recs_inorder = xfs_inobt_recs_inorder,
314#endif
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100315};
316
317/*
318 * Allocate a new inode btree cursor.
319 */
320struct xfs_btree_cur * /* new inode btree cursor */
321xfs_inobt_init_cursor(
322 struct xfs_mount *mp, /* file system mount point */
323 struct xfs_trans *tp, /* transaction pointer */
324 struct xfs_buf *agbp, /* buffer for agi structure */
325 xfs_agnumber_t agno) /* allocation group number */
326{
327 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
328 struct xfs_btree_cur *cur;
329
330 cur = kmem_zone_zalloc(xfs_btree_cur_zone, KM_SLEEP);
331
332 cur->bc_tp = tp;
333 cur->bc_mp = mp;
334 cur->bc_nlevels = be32_to_cpu(agi->agi_level);
335 cur->bc_btnum = XFS_BTNUM_INO;
336 cur->bc_blocklog = mp->m_sb.sb_blocklog;
337
338 cur->bc_ops = &xfs_inobt_ops;
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500339 if (xfs_sb_version_hascrc(&mp->m_sb))
340 cur->bc_flags |= XFS_BTREE_CRC_BLOCKS;
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100341
342 cur->bc_private.a.agbp = agbp;
343 cur->bc_private.a.agno = agno;
344
345 return cur;
346}
Christoph Hellwig60197e82008-10-30 17:11:19 +1100347
348/*
349 * Calculate number of records in an inobt btree block.
350 */
351int
352xfs_inobt_maxrecs(
353 struct xfs_mount *mp,
354 int blocklen,
355 int leaf)
356{
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100357 blocklen -= XFS_INOBT_BLOCK_LEN(mp);
Christoph Hellwig60197e82008-10-30 17:11:19 +1100358
359 if (leaf)
360 return blocklen / sizeof(xfs_inobt_rec_t);
361 return blocklen / (sizeof(xfs_inobt_key_t) + sizeof(xfs_inobt_ptr_t));
362}