blob: 4e029cc238e683d8cb4413ec7d1010eae4d451ed [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"
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,
Brian Foster57bd3db2014-04-24 16:00:50 +100051 cur->bc_private.a.agbp, cur->bc_private.a.agno,
52 cur->bc_btnum);
Christoph Hellwig561f7d12008-10-30 16:53:59 +110053}
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
Brian Fosteraafc3c22014-04-24 16:00:52 +100069STATIC void
70xfs_finobt_set_root(
71 struct xfs_btree_cur *cur,
72 union xfs_btree_ptr *nptr,
73 int inc) /* level change */
74{
75 struct xfs_buf *agbp = cur->bc_private.a.agbp;
76 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
77
78 agi->agi_free_root = nptr->s;
79 be32_add_cpu(&agi->agi_free_level, inc);
80 xfs_ialloc_log_agi(cur->bc_tp, agbp,
81 XFS_AGI_FREE_ROOT | XFS_AGI_FREE_LEVEL);
82}
83
Christoph Hellwigce5e42d2008-10-30 16:55:23 +110084STATIC int
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +110085xfs_inobt_alloc_block(
86 struct xfs_btree_cur *cur,
87 union xfs_btree_ptr *start,
88 union xfs_btree_ptr *new,
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +110089 int *stat)
90{
91 xfs_alloc_arg_t args; /* block allocation args */
92 int error; /* error return value */
93 xfs_agblock_t sbno = be32_to_cpu(start->s);
94
95 XFS_BTREE_TRACE_CURSOR(cur, XBT_ENTRY);
96
97 memset(&args, 0, sizeof(args));
98 args.tp = cur->bc_tp;
99 args.mp = cur->bc_mp;
100 args.fsbno = XFS_AGB_TO_FSB(args.mp, cur->bc_private.a.agno, sbno);
101 args.minlen = 1;
102 args.maxlen = 1;
103 args.prod = 1;
104 args.type = XFS_ALLOCTYPE_NEAR_BNO;
105
106 error = xfs_alloc_vextent(&args);
107 if (error) {
108 XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);
109 return error;
110 }
111 if (args.fsbno == NULLFSBLOCK) {
112 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
113 *stat = 0;
114 return 0;
115 }
116 ASSERT(args.len == 1);
117 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
118
119 new->s = cpu_to_be32(XFS_FSB_TO_AGBNO(args.mp, args.fsbno));
120 *stat = 1;
121 return 0;
122}
123
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100124STATIC int
125xfs_inobt_free_block(
126 struct xfs_btree_cur *cur,
127 struct xfs_buf *bp)
128{
129 xfs_fsblock_t fsbno;
130 int error;
131
132 fsbno = XFS_DADDR_TO_FSB(cur->bc_mp, XFS_BUF_ADDR(bp));
133 error = xfs_free_extent(cur->bc_tp, fsbno, 1);
134 if (error)
135 return error;
136
137 xfs_trans_binval(cur->bc_tp, bp);
138 return error;
139}
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100140
141STATIC int
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100142xfs_inobt_get_maxrecs(
143 struct xfs_btree_cur *cur,
144 int level)
145{
146 return cur->bc_mp->m_inobt_mxr[level != 0];
147}
148
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100149STATIC void
150xfs_inobt_init_key_from_rec(
151 union xfs_btree_key *key,
152 union xfs_btree_rec *rec)
153{
154 key->inobt.ir_startino = rec->inobt.ir_startino;
155}
156
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100157STATIC void
158xfs_inobt_init_rec_from_key(
159 union xfs_btree_key *key,
160 union xfs_btree_rec *rec)
161{
162 rec->inobt.ir_startino = key->inobt.ir_startino;
163}
164
165STATIC void
166xfs_inobt_init_rec_from_cur(
167 struct xfs_btree_cur *cur,
168 union xfs_btree_rec *rec)
169{
170 rec->inobt.ir_startino = cpu_to_be32(cur->bc_rec.i.ir_startino);
171 rec->inobt.ir_freecount = cpu_to_be32(cur->bc_rec.i.ir_freecount);
172 rec->inobt.ir_free = cpu_to_be64(cur->bc_rec.i.ir_free);
173}
174
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100175/*
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200176 * initial value of ptr for lookup
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100177 */
178STATIC void
179xfs_inobt_init_ptr_from_cur(
180 struct xfs_btree_cur *cur,
181 union xfs_btree_ptr *ptr)
182{
183 struct xfs_agi *agi = XFS_BUF_TO_AGI(cur->bc_private.a.agbp);
184
185 ASSERT(cur->bc_private.a.agno == be32_to_cpu(agi->agi_seqno));
186
187 ptr->s = agi->agi_root;
188}
189
Brian Fosteraafc3c22014-04-24 16:00:52 +1000190STATIC void
191xfs_finobt_init_ptr_from_cur(
192 struct xfs_btree_cur *cur,
193 union xfs_btree_ptr *ptr)
194{
195 struct xfs_agi *agi = XFS_BUF_TO_AGI(cur->bc_private.a.agbp);
196
197 ASSERT(cur->bc_private.a.agno == be32_to_cpu(agi->agi_seqno));
198 ptr->s = agi->agi_free_root;
199}
200
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100201STATIC __int64_t
202xfs_inobt_key_diff(
203 struct xfs_btree_cur *cur,
204 union xfs_btree_key *key)
205{
206 return (__int64_t)be32_to_cpu(key->inobt.ir_startino) -
207 cur->bc_rec.i.ir_startino;
208}
209
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500210static int
Dave Chinner612cfbf2012-11-14 17:52:32 +1100211xfs_inobt_verify(
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100212 struct xfs_buf *bp)
213{
214 struct xfs_mount *mp = bp->b_target->bt_mount;
215 struct xfs_btree_block *block = XFS_BUF_TO_BLOCK(bp);
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500216 struct xfs_perag *pag = bp->b_pag;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100217 unsigned int level;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100218
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500219 /*
220 * During growfs operations, we can't verify the exact owner as the
221 * perag is not fully initialised and hence not attached to the buffer.
222 *
223 * Similarly, during log recovery we will have a perag structure
224 * attached, but the agi information will not yet have been initialised
225 * from the on disk AGI. We don't currently use any of this information,
226 * but beware of the landmine (i.e. need to check pag->pagi_init) if we
227 * ever do.
228 */
229 switch (block->bb_magic) {
230 case cpu_to_be32(XFS_IBT_CRC_MAGIC):
Brian Fosteraafc3c22014-04-24 16:00:52 +1000231 case cpu_to_be32(XFS_FIBT_CRC_MAGIC):
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500232 if (!xfs_sb_version_hascrc(&mp->m_sb))
233 return false;
234 if (!uuid_equal(&block->bb_u.s.bb_uuid, &mp->m_sb.sb_uuid))
235 return false;
236 if (block->bb_u.s.bb_blkno != cpu_to_be64(bp->b_bn))
237 return false;
238 if (pag &&
239 be32_to_cpu(block->bb_u.s.bb_owner) != pag->pag_agno)
240 return false;
241 /* fall through */
242 case cpu_to_be32(XFS_IBT_MAGIC):
Brian Fosteraafc3c22014-04-24 16:00:52 +1000243 case cpu_to_be32(XFS_FIBT_MAGIC):
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500244 break;
245 default:
246 return 0;
247 }
248
249 /* numrecs and level verification */
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100250 level = be16_to_cpu(block->bb_level);
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500251 if (level >= mp->m_in_maxlevels)
252 return false;
253 if (be16_to_cpu(block->bb_numrecs) > mp->m_inobt_mxr[level != 0])
254 return false;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100255
256 /* sibling pointer verification */
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500257 if (!block->bb_u.s.bb_leftsib ||
258 (be32_to_cpu(block->bb_u.s.bb_leftsib) >= mp->m_sb.sb_agblocks &&
259 block->bb_u.s.bb_leftsib != cpu_to_be32(NULLAGBLOCK)))
260 return false;
261 if (!block->bb_u.s.bb_rightsib ||
262 (be32_to_cpu(block->bb_u.s.bb_rightsib) >= mp->m_sb.sb_agblocks &&
263 block->bb_u.s.bb_rightsib != cpu_to_be32(NULLAGBLOCK)))
264 return false;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100265
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500266 return true;
Dave Chinner612cfbf2012-11-14 17:52:32 +1100267}
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100268
Dave Chinner612cfbf2012-11-14 17:52:32 +1100269static void
Dave Chinner1813dd62012-11-14 17:54:40 +1100270xfs_inobt_read_verify(
271 struct xfs_buf *bp)
272{
Eric Sandeence5028c2014-02-27 15:23:10 +1100273 if (!xfs_btree_sblock_verify_crc(bp))
Dave Chinner24513372014-06-25 14:58:08 +1000274 xfs_buf_ioerror(bp, -EFSBADCRC);
Eric Sandeence5028c2014-02-27 15:23:10 +1100275 else if (!xfs_inobt_verify(bp))
Dave Chinner24513372014-06-25 14:58:08 +1000276 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100277
278 if (bp->b_error) {
279 trace_xfs_btree_corrupt(bp, _RET_IP_);
280 xfs_verifier_error(bp);
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500281 }
Dave Chinner1813dd62012-11-14 17:54:40 +1100282}
283
284static void
Dave Chinner612cfbf2012-11-14 17:52:32 +1100285xfs_inobt_write_verify(
286 struct xfs_buf *bp)
287{
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500288 if (!xfs_inobt_verify(bp)) {
289 trace_xfs_btree_corrupt(bp, _RET_IP_);
Dave Chinner24513372014-06-25 14:58:08 +1000290 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100291 xfs_verifier_error(bp);
Eric Sandeene0d2c232014-02-27 15:14:31 +1100292 return;
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500293 }
294 xfs_btree_sblock_calc_crc(bp);
295
Dave Chinner612cfbf2012-11-14 17:52:32 +1100296}
297
Dave Chinner1813dd62012-11-14 17:54:40 +1100298const struct xfs_buf_ops xfs_inobt_buf_ops = {
299 .verify_read = xfs_inobt_read_verify,
300 .verify_write = xfs_inobt_write_verify,
301};
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100302
Dave Chinner742ae1e2013-04-30 21:39:34 +1000303#if defined(DEBUG) || defined(XFS_WARN)
Christoph Hellwig4a26e662008-10-30 16:58:32 +1100304STATIC int
305xfs_inobt_keys_inorder(
306 struct xfs_btree_cur *cur,
307 union xfs_btree_key *k1,
308 union xfs_btree_key *k2)
309{
310 return be32_to_cpu(k1->inobt.ir_startino) <
311 be32_to_cpu(k2->inobt.ir_startino);
312}
313
314STATIC int
315xfs_inobt_recs_inorder(
316 struct xfs_btree_cur *cur,
317 union xfs_btree_rec *r1,
318 union xfs_btree_rec *r2)
319{
320 return be32_to_cpu(r1->inobt.ir_startino) + XFS_INODES_PER_CHUNK <=
321 be32_to_cpu(r2->inobt.ir_startino);
322}
323#endif /* DEBUG */
324
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100325static const struct xfs_btree_ops xfs_inobt_ops = {
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100326 .rec_len = sizeof(xfs_inobt_rec_t),
327 .key_len = sizeof(xfs_inobt_key_t),
328
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100329 .dup_cursor = xfs_inobt_dup_cursor,
Christoph Hellwig344207c2008-10-30 16:57:16 +1100330 .set_root = xfs_inobt_set_root,
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100331 .alloc_block = xfs_inobt_alloc_block,
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100332 .free_block = xfs_inobt_free_block,
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100333 .get_minrecs = xfs_inobt_get_minrecs,
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100334 .get_maxrecs = xfs_inobt_get_maxrecs,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100335 .init_key_from_rec = xfs_inobt_init_key_from_rec,
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100336 .init_rec_from_key = xfs_inobt_init_rec_from_key,
337 .init_rec_from_cur = xfs_inobt_init_rec_from_cur,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100338 .init_ptr_from_cur = xfs_inobt_init_ptr_from_cur,
339 .key_diff = xfs_inobt_key_diff,
Dave Chinner1813dd62012-11-14 17:54:40 +1100340 .buf_ops = &xfs_inobt_buf_ops,
Dave Chinner742ae1e2013-04-30 21:39:34 +1000341#if defined(DEBUG) || defined(XFS_WARN)
Christoph Hellwig4a26e662008-10-30 16:58:32 +1100342 .keys_inorder = xfs_inobt_keys_inorder,
343 .recs_inorder = xfs_inobt_recs_inorder,
344#endif
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100345};
346
Brian Fosteraafc3c22014-04-24 16:00:52 +1000347static const struct xfs_btree_ops xfs_finobt_ops = {
348 .rec_len = sizeof(xfs_inobt_rec_t),
349 .key_len = sizeof(xfs_inobt_key_t),
350
351 .dup_cursor = xfs_inobt_dup_cursor,
352 .set_root = xfs_finobt_set_root,
353 .alloc_block = xfs_inobt_alloc_block,
354 .free_block = xfs_inobt_free_block,
355 .get_minrecs = xfs_inobt_get_minrecs,
356 .get_maxrecs = xfs_inobt_get_maxrecs,
357 .init_key_from_rec = xfs_inobt_init_key_from_rec,
358 .init_rec_from_key = xfs_inobt_init_rec_from_key,
359 .init_rec_from_cur = xfs_inobt_init_rec_from_cur,
360 .init_ptr_from_cur = xfs_finobt_init_ptr_from_cur,
361 .key_diff = xfs_inobt_key_diff,
362 .buf_ops = &xfs_inobt_buf_ops,
363#if defined(DEBUG) || defined(XFS_WARN)
364 .keys_inorder = xfs_inobt_keys_inorder,
365 .recs_inorder = xfs_inobt_recs_inorder,
366#endif
367};
368
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100369/*
370 * Allocate a new inode btree cursor.
371 */
372struct xfs_btree_cur * /* new inode btree cursor */
373xfs_inobt_init_cursor(
374 struct xfs_mount *mp, /* file system mount point */
375 struct xfs_trans *tp, /* transaction pointer */
376 struct xfs_buf *agbp, /* buffer for agi structure */
Brian Foster57bd3db2014-04-24 16:00:50 +1000377 xfs_agnumber_t agno, /* allocation group number */
378 xfs_btnum_t btnum) /* ialloc or free ino btree */
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100379{
380 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
381 struct xfs_btree_cur *cur;
382
383 cur = kmem_zone_zalloc(xfs_btree_cur_zone, KM_SLEEP);
384
385 cur->bc_tp = tp;
386 cur->bc_mp = mp;
Brian Foster57bd3db2014-04-24 16:00:50 +1000387 cur->bc_btnum = btnum;
Brian Fosteraafc3c22014-04-24 16:00:52 +1000388 if (btnum == XFS_BTNUM_INO) {
389 cur->bc_nlevels = be32_to_cpu(agi->agi_level);
390 cur->bc_ops = &xfs_inobt_ops;
391 } else {
392 cur->bc_nlevels = be32_to_cpu(agi->agi_free_level);
393 cur->bc_ops = &xfs_finobt_ops;
394 }
395
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100396 cur->bc_blocklog = mp->m_sb.sb_blocklog;
397
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500398 if (xfs_sb_version_hascrc(&mp->m_sb))
399 cur->bc_flags |= XFS_BTREE_CRC_BLOCKS;
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100400
401 cur->bc_private.a.agbp = agbp;
402 cur->bc_private.a.agno = agno;
403
404 return cur;
405}
Christoph Hellwig60197e82008-10-30 17:11:19 +1100406
407/*
408 * Calculate number of records in an inobt btree block.
409 */
410int
411xfs_inobt_maxrecs(
412 struct xfs_mount *mp,
413 int blocklen,
414 int leaf)
415{
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100416 blocklen -= XFS_INOBT_BLOCK_LEN(mp);
Christoph Hellwig60197e82008-10-30 17:11:19 +1100417
418 if (leaf)
419 return blocklen / sizeof(xfs_inobt_rec_t);
420 return blocklen / (sizeof(xfs_inobt_key_t) + sizeof(xfs_inobt_ptr_t));
421}