blob: 0c61a22be6fd630668a16d0f92b3db625fa03173 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2003,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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
23#include "xfs_trans.h"
24#include "xfs_sb.h"
25#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110028#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_ialloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110030#include "xfs_dinode.h"
31#include "xfs_inode.h"
32#include "xfs_inode_item.h"
33#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_itable.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_bmap.h"
37#include "xfs_error.h"
38#include "xfs_quota.h"
Dave Chinner3d3e6f62012-11-12 22:54:08 +110039#include "xfs_trace.h"
Christoph Hellwigee1a47a2013-04-21 14:53:46 -050040#include "xfs_cksum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * Determine the extent state.
44 */
45/* ARGSUSED */
46STATIC xfs_exntst_t
47xfs_extent_state(
48 xfs_filblks_t blks,
49 int extent_flag)
50{
51 if (extent_flag) {
52 ASSERT(blks != 0); /* saved for DMIG */
53 return XFS_EXT_UNWRITTEN;
54 }
55 return XFS_EXT_NORM;
56}
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/*
59 * Convert on-disk form of btree root to in-memory form.
60 */
61void
62xfs_bmdr_to_bmbt(
Christoph Hellwigee1a47a2013-04-21 14:53:46 -050063 struct xfs_inode *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 xfs_bmdr_block_t *dblock,
65 int dblocklen,
Christoph Hellwig7cc95a82008-10-30 17:14:34 +110066 struct xfs_btree_block *rblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 int rblocklen)
68{
Christoph Hellwigee1a47a2013-04-21 14:53:46 -050069 struct xfs_mount *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 int dmxr;
71 xfs_bmbt_key_t *fkp;
Christoph Hellwig576039c2006-09-28 10:58:06 +100072 __be64 *fpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 xfs_bmbt_key_t *tkp;
Christoph Hellwig576039c2006-09-28 10:58:06 +100074 __be64 *tpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Christoph Hellwigee1a47a2013-04-21 14:53:46 -050076 if (xfs_sb_version_hascrc(&mp->m_sb))
77 xfs_btree_init_block_int(mp, rblock, XFS_BUF_DADDR_NULL,
78 XFS_BMAP_CRC_MAGIC, 0, 0, ip->i_ino,
79 XFS_BTREE_LONG_PTRS | XFS_BTREE_CRC_BLOCKS);
80 else
81 xfs_btree_init_block_int(mp, rblock, XFS_BUF_DADDR_NULL,
82 XFS_BMAP_MAGIC, 0, 0, ip->i_ino,
83 XFS_BTREE_LONG_PTRS);
84
Christoph Hellwig16259e72005-11-02 15:11:25 +110085 rblock->bb_level = dblock->bb_level;
86 ASSERT(be16_to_cpu(rblock->bb_level) > 0);
87 rblock->bb_numrecs = dblock->bb_numrecs;
Christoph Hellwig60197e82008-10-30 17:11:19 +110088 dmxr = xfs_bmdr_maxrecs(mp, dblocklen, 0);
Christoph Hellwig136341b2008-10-30 17:11:40 +110089 fkp = XFS_BMDR_KEY_ADDR(dblock, 1);
90 tkp = XFS_BMBT_KEY_ADDR(mp, rblock, 1);
91 fpp = XFS_BMDR_PTR_ADDR(dblock, 1, dmxr);
Christoph Hellwig60197e82008-10-30 17:11:19 +110092 tpp = XFS_BMAP_BROOT_PTR_ADDR(mp, rblock, 1, rblocklen);
Christoph Hellwig16259e72005-11-02 15:11:25 +110093 dmxr = be16_to_cpu(dblock->bb_numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 memcpy(tkp, fkp, sizeof(*fkp) * dmxr);
Christoph Hellwig576039c2006-09-28 10:58:06 +100095 memcpy(tpp, fpp, sizeof(*fpp) * dmxr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
98/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 * Convert a compressed bmap extent record to an uncompressed form.
100 * This code must be in sync with the routines xfs_bmbt_get_startoff,
101 * xfs_bmbt_get_startblock, xfs_bmbt_get_blockcount and xfs_bmbt_get_state.
102 */
Christoph Hellwigb8f82a42009-11-14 16:17:22 +0000103STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104__xfs_bmbt_get_all(
105 __uint64_t l0,
106 __uint64_t l1,
107 xfs_bmbt_irec_t *s)
108{
109 int ext_flag;
110 xfs_exntst_t st;
111
112 ext_flag = (int)(l0 >> (64 - BMBT_EXNTFLAG_BITLEN));
113 s->br_startoff = ((xfs_fileoff_t)l0 &
Eric Sandeenfb825572009-01-09 15:53:54 +1100114 xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN)) >> 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#if XFS_BIG_BLKNOS
Eric Sandeenfb825572009-01-09 15:53:54 +1100116 s->br_startblock = (((xfs_fsblock_t)l0 & xfs_mask64lo(9)) << 43) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 (((xfs_fsblock_t)l1) >> 21);
118#else
119#ifdef DEBUG
120 {
121 xfs_dfsbno_t b;
122
Eric Sandeenfb825572009-01-09 15:53:54 +1100123 b = (((xfs_dfsbno_t)l0 & xfs_mask64lo(9)) << 43) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 (((xfs_dfsbno_t)l1) >> 21);
Eric Sandeen9d87c312009-01-14 23:22:07 -0600125 ASSERT((b >> 32) == 0 || isnulldstartblock(b));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 s->br_startblock = (xfs_fsblock_t)b;
127 }
128#else /* !DEBUG */
129 s->br_startblock = (xfs_fsblock_t)(((xfs_dfsbno_t)l1) >> 21);
130#endif /* DEBUG */
131#endif /* XFS_BIG_BLKNOS */
Eric Sandeenfb825572009-01-09 15:53:54 +1100132 s->br_blockcount = (xfs_filblks_t)(l1 & xfs_mask64lo(21));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 /* This is xfs_extent_state() in-line */
134 if (ext_flag) {
135 ASSERT(s->br_blockcount != 0); /* saved for DMIG */
136 st = XFS_EXT_UNWRITTEN;
137 } else
138 st = XFS_EXT_NORM;
139 s->br_state = st;
140}
141
142void
143xfs_bmbt_get_all(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000144 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 xfs_bmbt_irec_t *s)
146{
147 __xfs_bmbt_get_all(r->l0, r->l1, s);
148}
149
150/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 * Extract the blockcount field from an in memory bmap extent record.
152 */
153xfs_filblks_t
154xfs_bmbt_get_blockcount(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000155 xfs_bmbt_rec_host_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Eric Sandeenfb825572009-01-09 15:53:54 +1100157 return (xfs_filblks_t)(r->l1 & xfs_mask64lo(21));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
160/*
161 * Extract the startblock field from an in memory bmap extent record.
162 */
163xfs_fsblock_t
164xfs_bmbt_get_startblock(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000165 xfs_bmbt_rec_host_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
167#if XFS_BIG_BLKNOS
Eric Sandeenfb825572009-01-09 15:53:54 +1100168 return (((xfs_fsblock_t)r->l0 & xfs_mask64lo(9)) << 43) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 (((xfs_fsblock_t)r->l1) >> 21);
170#else
171#ifdef DEBUG
172 xfs_dfsbno_t b;
173
Eric Sandeenfb825572009-01-09 15:53:54 +1100174 b = (((xfs_dfsbno_t)r->l0 & xfs_mask64lo(9)) << 43) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 (((xfs_dfsbno_t)r->l1) >> 21);
Eric Sandeen9d87c312009-01-14 23:22:07 -0600176 ASSERT((b >> 32) == 0 || isnulldstartblock(b));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 return (xfs_fsblock_t)b;
178#else /* !DEBUG */
179 return (xfs_fsblock_t)(((xfs_dfsbno_t)r->l1) >> 21);
180#endif /* DEBUG */
181#endif /* XFS_BIG_BLKNOS */
182}
183
184/*
185 * Extract the startoff field from an in memory bmap extent record.
186 */
187xfs_fileoff_t
188xfs_bmbt_get_startoff(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000189 xfs_bmbt_rec_host_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
191 return ((xfs_fileoff_t)r->l0 &
Eric Sandeenfb825572009-01-09 15:53:54 +1100192 xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN)) >> 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
195xfs_exntst_t
196xfs_bmbt_get_state(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000197 xfs_bmbt_rec_host_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
199 int ext_flag;
200
201 ext_flag = (int)((r->l0) >> (64 - BMBT_EXNTFLAG_BITLEN));
202 return xfs_extent_state(xfs_bmbt_get_blockcount(r),
203 ext_flag);
204}
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206/*
207 * Extract the blockcount field from an on disk bmap extent record.
208 */
209xfs_filblks_t
210xfs_bmbt_disk_get_blockcount(
211 xfs_bmbt_rec_t *r)
212{
Eric Sandeenfb825572009-01-09 15:53:54 +1100213 return (xfs_filblks_t)(be64_to_cpu(r->l1) & xfs_mask64lo(21));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
216/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 * Extract the startoff field from a disk format bmap extent record.
218 */
219xfs_fileoff_t
220xfs_bmbt_disk_get_startoff(
221 xfs_bmbt_rec_t *r)
222{
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +1000223 return ((xfs_fileoff_t)be64_to_cpu(r->l0) &
Eric Sandeenfb825572009-01-09 15:53:54 +1100224 xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN)) >> 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228/*
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000229 * Set all the fields in a bmap extent record from the arguments.
230 */
231void
232xfs_bmbt_set_allf(
233 xfs_bmbt_rec_host_t *r,
234 xfs_fileoff_t startoff,
235 xfs_fsblock_t startblock,
236 xfs_filblks_t blockcount,
237 xfs_exntst_t state)
238{
239 int extent_flag = (state == XFS_EXT_NORM) ? 0 : 1;
240
241 ASSERT(state == XFS_EXT_NORM || state == XFS_EXT_UNWRITTEN);
Eric Sandeenfb825572009-01-09 15:53:54 +1100242 ASSERT((startoff & xfs_mask64hi(64-BMBT_STARTOFF_BITLEN)) == 0);
243 ASSERT((blockcount & xfs_mask64hi(64-BMBT_BLOCKCOUNT_BITLEN)) == 0);
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000244
245#if XFS_BIG_BLKNOS
Eric Sandeenfb825572009-01-09 15:53:54 +1100246 ASSERT((startblock & xfs_mask64hi(64-BMBT_STARTBLOCK_BITLEN)) == 0);
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000247
248 r->l0 = ((xfs_bmbt_rec_base_t)extent_flag << 63) |
249 ((xfs_bmbt_rec_base_t)startoff << 9) |
250 ((xfs_bmbt_rec_base_t)startblock >> 43);
251 r->l1 = ((xfs_bmbt_rec_base_t)startblock << 21) |
252 ((xfs_bmbt_rec_base_t)blockcount &
Eric Sandeenfb825572009-01-09 15:53:54 +1100253 (xfs_bmbt_rec_base_t)xfs_mask64lo(21));
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000254#else /* !XFS_BIG_BLKNOS */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600255 if (isnullstartblock(startblock)) {
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000256 r->l0 = ((xfs_bmbt_rec_base_t)extent_flag << 63) |
257 ((xfs_bmbt_rec_base_t)startoff << 9) |
Eric Sandeenfb825572009-01-09 15:53:54 +1100258 (xfs_bmbt_rec_base_t)xfs_mask64lo(9);
259 r->l1 = xfs_mask64hi(11) |
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000260 ((xfs_bmbt_rec_base_t)startblock << 21) |
261 ((xfs_bmbt_rec_base_t)blockcount &
Eric Sandeenfb825572009-01-09 15:53:54 +1100262 (xfs_bmbt_rec_base_t)xfs_mask64lo(21));
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000263 } else {
264 r->l0 = ((xfs_bmbt_rec_base_t)extent_flag << 63) |
265 ((xfs_bmbt_rec_base_t)startoff << 9);
266 r->l1 = ((xfs_bmbt_rec_base_t)startblock << 21) |
267 ((xfs_bmbt_rec_base_t)blockcount &
Eric Sandeenfb825572009-01-09 15:53:54 +1100268 (xfs_bmbt_rec_base_t)xfs_mask64lo(21));
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000269 }
270#endif /* XFS_BIG_BLKNOS */
271}
272
273/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 * Set all the fields in a bmap extent record from the uncompressed form.
275 */
276void
277xfs_bmbt_set_all(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000278 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 xfs_bmbt_irec_t *s)
280{
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000281 xfs_bmbt_set_allf(r, s->br_startoff, s->br_startblock,
282 s->br_blockcount, s->br_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286/*
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000287 * Set all the fields in a disk format bmap extent record from the arguments.
288 */
289void
290xfs_bmbt_disk_set_allf(
291 xfs_bmbt_rec_t *r,
292 xfs_fileoff_t startoff,
293 xfs_fsblock_t startblock,
294 xfs_filblks_t blockcount,
295 xfs_exntst_t state)
296{
297 int extent_flag = (state == XFS_EXT_NORM) ? 0 : 1;
298
299 ASSERT(state == XFS_EXT_NORM || state == XFS_EXT_UNWRITTEN);
Eric Sandeenfb825572009-01-09 15:53:54 +1100300 ASSERT((startoff & xfs_mask64hi(64-BMBT_STARTOFF_BITLEN)) == 0);
301 ASSERT((blockcount & xfs_mask64hi(64-BMBT_BLOCKCOUNT_BITLEN)) == 0);
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000302
303#if XFS_BIG_BLKNOS
Eric Sandeenfb825572009-01-09 15:53:54 +1100304 ASSERT((startblock & xfs_mask64hi(64-BMBT_STARTBLOCK_BITLEN)) == 0);
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000305
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +1000306 r->l0 = cpu_to_be64(
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000307 ((xfs_bmbt_rec_base_t)extent_flag << 63) |
308 ((xfs_bmbt_rec_base_t)startoff << 9) |
309 ((xfs_bmbt_rec_base_t)startblock >> 43));
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +1000310 r->l1 = cpu_to_be64(
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000311 ((xfs_bmbt_rec_base_t)startblock << 21) |
312 ((xfs_bmbt_rec_base_t)blockcount &
Eric Sandeenfb825572009-01-09 15:53:54 +1100313 (xfs_bmbt_rec_base_t)xfs_mask64lo(21)));
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000314#else /* !XFS_BIG_BLKNOS */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600315 if (isnullstartblock(startblock)) {
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +1000316 r->l0 = cpu_to_be64(
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000317 ((xfs_bmbt_rec_base_t)extent_flag << 63) |
318 ((xfs_bmbt_rec_base_t)startoff << 9) |
Eric Sandeenfb825572009-01-09 15:53:54 +1100319 (xfs_bmbt_rec_base_t)xfs_mask64lo(9));
320 r->l1 = cpu_to_be64(xfs_mask64hi(11) |
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000321 ((xfs_bmbt_rec_base_t)startblock << 21) |
322 ((xfs_bmbt_rec_base_t)blockcount &
Eric Sandeenfb825572009-01-09 15:53:54 +1100323 (xfs_bmbt_rec_base_t)xfs_mask64lo(21)));
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000324 } else {
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +1000325 r->l0 = cpu_to_be64(
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000326 ((xfs_bmbt_rec_base_t)extent_flag << 63) |
327 ((xfs_bmbt_rec_base_t)startoff << 9));
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +1000328 r->l1 = cpu_to_be64(
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000329 ((xfs_bmbt_rec_base_t)startblock << 21) |
330 ((xfs_bmbt_rec_base_t)blockcount &
Eric Sandeenfb825572009-01-09 15:53:54 +1100331 (xfs_bmbt_rec_base_t)xfs_mask64lo(21)));
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000332 }
333#endif /* XFS_BIG_BLKNOS */
334}
335
336/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 * Set all the fields in a bmap extent record from the uncompressed form.
338 */
Eric Sandeen5d77c0d2009-11-19 15:52:00 +0000339STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340xfs_bmbt_disk_set_all(
341 xfs_bmbt_rec_t *r,
342 xfs_bmbt_irec_t *s)
343{
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000344 xfs_bmbt_disk_set_allf(r, s->br_startoff, s->br_startblock,
345 s->br_blockcount, s->br_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348/*
349 * Set the blockcount field in a bmap extent record.
350 */
351void
352xfs_bmbt_set_blockcount(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000353 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 xfs_filblks_t v)
355{
Eric Sandeenfb825572009-01-09 15:53:54 +1100356 ASSERT((v & xfs_mask64hi(43)) == 0);
357 r->l1 = (r->l1 & (xfs_bmbt_rec_base_t)xfs_mask64hi(43)) |
358 (xfs_bmbt_rec_base_t)(v & xfs_mask64lo(21));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360
361/*
362 * Set the startblock field in a bmap extent record.
363 */
364void
365xfs_bmbt_set_startblock(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000366 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 xfs_fsblock_t v)
368{
369#if XFS_BIG_BLKNOS
Eric Sandeenfb825572009-01-09 15:53:54 +1100370 ASSERT((v & xfs_mask64hi(12)) == 0);
371 r->l0 = (r->l0 & (xfs_bmbt_rec_base_t)xfs_mask64hi(55)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 (xfs_bmbt_rec_base_t)(v >> 43);
Eric Sandeenfb825572009-01-09 15:53:54 +1100373 r->l1 = (r->l1 & (xfs_bmbt_rec_base_t)xfs_mask64lo(21)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 (xfs_bmbt_rec_base_t)(v << 21);
375#else /* !XFS_BIG_BLKNOS */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600376 if (isnullstartblock(v)) {
Eric Sandeenfb825572009-01-09 15:53:54 +1100377 r->l0 |= (xfs_bmbt_rec_base_t)xfs_mask64lo(9);
378 r->l1 = (xfs_bmbt_rec_base_t)xfs_mask64hi(11) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 ((xfs_bmbt_rec_base_t)v << 21) |
Eric Sandeenfb825572009-01-09 15:53:54 +1100380 (r->l1 & (xfs_bmbt_rec_base_t)xfs_mask64lo(21));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 } else {
Eric Sandeenfb825572009-01-09 15:53:54 +1100382 r->l0 &= ~(xfs_bmbt_rec_base_t)xfs_mask64lo(9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 r->l1 = ((xfs_bmbt_rec_base_t)v << 21) |
Eric Sandeenfb825572009-01-09 15:53:54 +1100384 (r->l1 & (xfs_bmbt_rec_base_t)xfs_mask64lo(21));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
386#endif /* XFS_BIG_BLKNOS */
387}
388
389/*
390 * Set the startoff field in a bmap extent record.
391 */
392void
393xfs_bmbt_set_startoff(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000394 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 xfs_fileoff_t v)
396{
Eric Sandeenfb825572009-01-09 15:53:54 +1100397 ASSERT((v & xfs_mask64hi(9)) == 0);
398 r->l0 = (r->l0 & (xfs_bmbt_rec_base_t) xfs_mask64hi(1)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 ((xfs_bmbt_rec_base_t)v << 9) |
Eric Sandeenfb825572009-01-09 15:53:54 +1100400 (r->l0 & (xfs_bmbt_rec_base_t)xfs_mask64lo(9));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
403/*
404 * Set the extent state field in a bmap extent record.
405 */
406void
407xfs_bmbt_set_state(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000408 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 xfs_exntst_t v)
410{
411 ASSERT(v == XFS_EXT_NORM || v == XFS_EXT_UNWRITTEN);
412 if (v == XFS_EXT_NORM)
Eric Sandeenfb825572009-01-09 15:53:54 +1100413 r->l0 &= xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 else
Eric Sandeenfb825572009-01-09 15:53:54 +1100415 r->l0 |= xfs_mask64hi(BMBT_EXNTFLAG_BITLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
418/*
419 * Convert in-memory form of btree root to on-disk form.
420 */
421void
422xfs_bmbt_to_bmdr(
Christoph Hellwig60197e82008-10-30 17:11:19 +1100423 struct xfs_mount *mp,
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100424 struct xfs_btree_block *rblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 int rblocklen,
426 xfs_bmdr_block_t *dblock,
427 int dblocklen)
428{
429 int dmxr;
430 xfs_bmbt_key_t *fkp;
Christoph Hellwig576039c2006-09-28 10:58:06 +1000431 __be64 *fpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 xfs_bmbt_key_t *tkp;
Christoph Hellwig576039c2006-09-28 10:58:06 +1000433 __be64 *tpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500435 if (xfs_sb_version_hascrc(&mp->m_sb)) {
436 ASSERT(rblock->bb_magic == cpu_to_be32(XFS_BMAP_CRC_MAGIC));
437 ASSERT(uuid_equal(&rblock->bb_u.l.bb_uuid, &mp->m_sb.sb_uuid));
438 ASSERT(rblock->bb_u.l.bb_blkno ==
439 cpu_to_be64(XFS_BUF_DADDR_NULL));
440 } else
441 ASSERT(rblock->bb_magic == cpu_to_be32(XFS_BMAP_MAGIC));
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200442 ASSERT(rblock->bb_u.l.bb_leftsib == cpu_to_be64(NULLDFSBNO));
443 ASSERT(rblock->bb_u.l.bb_rightsib == cpu_to_be64(NULLDFSBNO));
444 ASSERT(rblock->bb_level != 0);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100445 dblock->bb_level = rblock->bb_level;
446 dblock->bb_numrecs = rblock->bb_numrecs;
Christoph Hellwig60197e82008-10-30 17:11:19 +1100447 dmxr = xfs_bmdr_maxrecs(mp, dblocklen, 0);
Christoph Hellwig136341b2008-10-30 17:11:40 +1100448 fkp = XFS_BMBT_KEY_ADDR(mp, rblock, 1);
449 tkp = XFS_BMDR_KEY_ADDR(dblock, 1);
Christoph Hellwig60197e82008-10-30 17:11:19 +1100450 fpp = XFS_BMAP_BROOT_PTR_ADDR(mp, rblock, 1, rblocklen);
Christoph Hellwig136341b2008-10-30 17:11:40 +1100451 tpp = XFS_BMDR_PTR_ADDR(dblock, 1, dmxr);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100452 dmxr = be16_to_cpu(dblock->bb_numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 memcpy(tkp, fkp, sizeof(*fkp) * dmxr);
Christoph Hellwig576039c2006-09-28 10:58:06 +1000454 memcpy(tpp, fpp, sizeof(*fpp) * dmxr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455}
456
457/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100458 * Check extent records, which have just been read, for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 * any bit in the extent flag field. ASSERT on debug
460 * kernels, as this condition should not occur.
461 * Return an error condition (1) if any flags found,
462 * otherwise return 0.
463 */
464
465int
466xfs_check_nostate_extents(
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100467 xfs_ifork_t *ifp,
468 xfs_extnum_t idx,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 xfs_extnum_t num)
470{
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100471 for (; num > 0; num--, idx++) {
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000472 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 if ((ep->l0 >>
474 (64 - BMBT_EXNTFLAG_BITLEN)) != 0) {
475 ASSERT(0);
476 return 1;
477 }
478 }
479 return 0;
480}
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100481
482
483STATIC struct xfs_btree_cur *
484xfs_bmbt_dup_cursor(
485 struct xfs_btree_cur *cur)
486{
487 struct xfs_btree_cur *new;
488
489 new = xfs_bmbt_init_cursor(cur->bc_mp, cur->bc_tp,
490 cur->bc_private.b.ip, cur->bc_private.b.whichfork);
491
492 /*
493 * Copy the firstblock, flist, and flags values,
494 * since init cursor doesn't get them.
495 */
496 new->bc_private.b.firstblock = cur->bc_private.b.firstblock;
497 new->bc_private.b.flist = cur->bc_private.b.flist;
498 new->bc_private.b.flags = cur->bc_private.b.flags;
499
500 return new;
501}
502
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100503STATIC void
504xfs_bmbt_update_cursor(
505 struct xfs_btree_cur *src,
506 struct xfs_btree_cur *dst)
507{
508 ASSERT((dst->bc_private.b.firstblock != NULLFSBLOCK) ||
509 (dst->bc_private.b.ip->i_d.di_flags & XFS_DIFLAG_REALTIME));
510 ASSERT(dst->bc_private.b.flist == src->bc_private.b.flist);
511
512 dst->bc_private.b.allocated += src->bc_private.b.allocated;
513 dst->bc_private.b.firstblock = src->bc_private.b.firstblock;
514
515 src->bc_private.b.allocated = 0;
516}
517
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100518STATIC int
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100519xfs_bmbt_alloc_block(
520 struct xfs_btree_cur *cur,
521 union xfs_btree_ptr *start,
522 union xfs_btree_ptr *new,
523 int length,
524 int *stat)
525{
526 xfs_alloc_arg_t args; /* block allocation args */
527 int error; /* error return value */
528
529 memset(&args, 0, sizeof(args));
530 args.tp = cur->bc_tp;
531 args.mp = cur->bc_mp;
532 args.fsbno = cur->bc_private.b.firstblock;
533 args.firstblock = args.fsbno;
534
535 if (args.fsbno == NULLFSBLOCK) {
536 args.fsbno = be64_to_cpu(start->l);
537 args.type = XFS_ALLOCTYPE_START_BNO;
538 /*
539 * Make sure there is sufficient room left in the AG to
540 * complete a full tree split for an extent insert. If
541 * we are converting the middle part of an extent then
542 * we may need space for two tree splits.
543 *
544 * We are relying on the caller to make the correct block
545 * reservation for this operation to succeed. If the
546 * reservation amount is insufficient then we may fail a
547 * block allocation here and corrupt the filesystem.
548 */
549 args.minleft = xfs_trans_get_block_res(args.tp);
550 } else if (cur->bc_private.b.flist->xbf_low) {
551 args.type = XFS_ALLOCTYPE_START_BNO;
552 } else {
553 args.type = XFS_ALLOCTYPE_NEAR_BNO;
554 }
555
556 args.minlen = args.maxlen = args.prod = 1;
557 args.wasdel = cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL;
558 if (!args.wasdel && xfs_trans_get_block_res(args.tp) == 0) {
559 error = XFS_ERROR(ENOSPC);
560 goto error0;
561 }
562 error = xfs_alloc_vextent(&args);
563 if (error)
564 goto error0;
565
566 if (args.fsbno == NULLFSBLOCK && args.minleft) {
567 /*
568 * Could not find an AG with enough free space to satisfy
569 * a full btree split. Try again without minleft and if
570 * successful activate the lowspace algorithm.
571 */
572 args.fsbno = 0;
573 args.type = XFS_ALLOCTYPE_FIRST_AG;
574 args.minleft = 0;
575 error = xfs_alloc_vextent(&args);
576 if (error)
577 goto error0;
578 cur->bc_private.b.flist->xbf_low = 1;
579 }
580 if (args.fsbno == NULLFSBLOCK) {
581 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
582 *stat = 0;
583 return 0;
584 }
585 ASSERT(args.len == 1);
586 cur->bc_private.b.firstblock = args.fsbno;
587 cur->bc_private.b.allocated++;
588 cur->bc_private.b.ip->i_d.di_nblocks++;
589 xfs_trans_log_inode(args.tp, cur->bc_private.b.ip, XFS_ILOG_CORE);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200590 xfs_trans_mod_dquot_byino(args.tp, cur->bc_private.b.ip,
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100591 XFS_TRANS_DQ_BCOUNT, 1L);
592
593 new->l = cpu_to_be64(args.fsbno);
594
595 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
596 *stat = 1;
597 return 0;
598
599 error0:
600 XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);
601 return error;
602}
603
604STATIC int
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100605xfs_bmbt_free_block(
606 struct xfs_btree_cur *cur,
607 struct xfs_buf *bp)
608{
609 struct xfs_mount *mp = cur->bc_mp;
610 struct xfs_inode *ip = cur->bc_private.b.ip;
611 struct xfs_trans *tp = cur->bc_tp;
612 xfs_fsblock_t fsbno = XFS_DADDR_TO_FSB(mp, XFS_BUF_ADDR(bp));
613
614 xfs_bmap_add_free(fsbno, 1, cur->bc_private.b.flist, mp);
615 ip->i_d.di_nblocks--;
616
617 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200618 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, -1L);
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100619 xfs_trans_binval(tp, bp);
620 return 0;
621}
622
623STATIC int
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100624xfs_bmbt_get_minrecs(
625 struct xfs_btree_cur *cur,
626 int level)
627{
Christoph Hellwig60197e82008-10-30 17:11:19 +1100628 if (level == cur->bc_nlevels - 1) {
629 struct xfs_ifork *ifp;
630
631 ifp = XFS_IFORK_PTR(cur->bc_private.b.ip,
632 cur->bc_private.b.whichfork);
633
634 return xfs_bmbt_maxrecs(cur->bc_mp,
635 ifp->if_broot_bytes, level == 0) / 2;
636 }
637
638 return cur->bc_mp->m_bmap_dmnr[level != 0];
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100639}
640
Christoph Hellwig60197e82008-10-30 17:11:19 +1100641int
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100642xfs_bmbt_get_maxrecs(
643 struct xfs_btree_cur *cur,
644 int level)
645{
Christoph Hellwig60197e82008-10-30 17:11:19 +1100646 if (level == cur->bc_nlevels - 1) {
647 struct xfs_ifork *ifp;
648
649 ifp = XFS_IFORK_PTR(cur->bc_private.b.ip,
650 cur->bc_private.b.whichfork);
651
652 return xfs_bmbt_maxrecs(cur->bc_mp,
653 ifp->if_broot_bytes, level == 0);
654 }
655
656 return cur->bc_mp->m_bmap_dmxr[level != 0];
657
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100658}
659
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100660/*
661 * Get the maximum records we could store in the on-disk format.
662 *
663 * For non-root nodes this is equivalent to xfs_bmbt_get_maxrecs, but
664 * for the root node this checks the available space in the dinode fork
665 * so that we can resize the in-memory buffer to match it. After a
666 * resize to the maximum size this function returns the same value
667 * as xfs_bmbt_get_maxrecs for the root node, too.
668 */
669STATIC int
670xfs_bmbt_get_dmaxrecs(
671 struct xfs_btree_cur *cur,
672 int level)
673{
Christoph Hellwig60197e82008-10-30 17:11:19 +1100674 if (level != cur->bc_nlevels - 1)
675 return cur->bc_mp->m_bmap_dmxr[level != 0];
676 return xfs_bmdr_maxrecs(cur->bc_mp, cur->bc_private.b.forksize,
677 level == 0);
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100678}
679
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100680STATIC void
681xfs_bmbt_init_key_from_rec(
682 union xfs_btree_key *key,
683 union xfs_btree_rec *rec)
684{
685 key->bmbt.br_startoff =
686 cpu_to_be64(xfs_bmbt_disk_get_startoff(&rec->bmbt));
687}
688
689STATIC void
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100690xfs_bmbt_init_rec_from_key(
691 union xfs_btree_key *key,
692 union xfs_btree_rec *rec)
693{
694 ASSERT(key->bmbt.br_startoff != 0);
695
696 xfs_bmbt_disk_set_allf(&rec->bmbt, be64_to_cpu(key->bmbt.br_startoff),
697 0, 0, XFS_EXT_NORM);
698}
699
700STATIC void
701xfs_bmbt_init_rec_from_cur(
702 struct xfs_btree_cur *cur,
703 union xfs_btree_rec *rec)
704{
705 xfs_bmbt_disk_set_all(&rec->bmbt, &cur->bc_rec.b);
706}
707
708STATIC void
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100709xfs_bmbt_init_ptr_from_cur(
710 struct xfs_btree_cur *cur,
711 union xfs_btree_ptr *ptr)
712{
713 ptr->l = 0;
714}
715
716STATIC __int64_t
717xfs_bmbt_key_diff(
718 struct xfs_btree_cur *cur,
719 union xfs_btree_key *key)
720{
721 return (__int64_t)be64_to_cpu(key->bmbt.br_startoff) -
722 cur->bc_rec.b.br_startoff;
723}
724
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500725static int
Dave Chinner612cfbf2012-11-14 17:52:32 +1100726xfs_bmbt_verify(
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100727 struct xfs_buf *bp)
728{
729 struct xfs_mount *mp = bp->b_target->bt_mount;
730 struct xfs_btree_block *block = XFS_BUF_TO_BLOCK(bp);
731 unsigned int level;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100732
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500733 switch (block->bb_magic) {
734 case cpu_to_be32(XFS_BMAP_CRC_MAGIC):
735 if (!xfs_sb_version_hascrc(&mp->m_sb))
736 return false;
737 if (!uuid_equal(&block->bb_u.l.bb_uuid, &mp->m_sb.sb_uuid))
738 return false;
739 if (be64_to_cpu(block->bb_u.l.bb_blkno) != bp->b_bn)
740 return false;
741 /*
742 * XXX: need a better way of verifying the owner here. Right now
743 * just make sure there has been one set.
744 */
745 if (be64_to_cpu(block->bb_u.l.bb_owner) == 0)
746 return false;
747 /* fall through */
748 case cpu_to_be32(XFS_BMAP_MAGIC):
749 break;
750 default:
751 return false;
752 }
753
754 /*
755 * numrecs and level verification.
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100756 *
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500757 * We don't know what fork we belong to, so just verify that the level
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100758 * is less than the maximum of the two. Later checks will be more
759 * precise.
760 */
761 level = be16_to_cpu(block->bb_level);
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500762 if (level > max(mp->m_bm_maxlevels[0], mp->m_bm_maxlevels[1]))
763 return false;
764 if (be16_to_cpu(block->bb_numrecs) > mp->m_bmap_dmxr[level != 0])
765 return false;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100766
767 /* sibling pointer verification */
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500768 if (!block->bb_u.l.bb_leftsib ||
769 (block->bb_u.l.bb_leftsib != cpu_to_be64(NULLDFSBNO) &&
770 !XFS_FSB_SANITY_CHECK(mp, be64_to_cpu(block->bb_u.l.bb_leftsib))))
771 return false;
772 if (!block->bb_u.l.bb_rightsib ||
773 (block->bb_u.l.bb_rightsib != cpu_to_be64(NULLDFSBNO) &&
774 !XFS_FSB_SANITY_CHECK(mp, be64_to_cpu(block->bb_u.l.bb_rightsib))))
775 return false;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100776
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500777 return true;
778
Dave Chinner612cfbf2012-11-14 17:52:32 +1100779}
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100780
Dave Chinner1813dd62012-11-14 17:54:40 +1100781static void
782xfs_bmbt_read_verify(
783 struct xfs_buf *bp)
784{
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500785 if (!(xfs_btree_lblock_verify_crc(bp) &&
786 xfs_bmbt_verify(bp))) {
787 trace_xfs_btree_corrupt(bp, _RET_IP_);
788 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW,
789 bp->b_target->bt_mount, bp->b_addr);
790 xfs_buf_ioerror(bp, EFSCORRUPTED);
791 }
792
Dave Chinner1813dd62012-11-14 17:54:40 +1100793}
794
795static void
Dave Chinner612cfbf2012-11-14 17:52:32 +1100796xfs_bmbt_write_verify(
797 struct xfs_buf *bp)
798{
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500799 if (!xfs_bmbt_verify(bp)) {
800 xfs_warn(bp->b_target->bt_mount, "bmbt daddr 0x%llx failed", bp->b_bn);
801 trace_xfs_btree_corrupt(bp, _RET_IP_);
802 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW,
803 bp->b_target->bt_mount, bp->b_addr);
804 xfs_buf_ioerror(bp, EFSCORRUPTED);
805 return;
806 }
807 xfs_btree_lblock_calc_crc(bp);
Dave Chinner612cfbf2012-11-14 17:52:32 +1100808}
809
Dave Chinner1813dd62012-11-14 17:54:40 +1100810const struct xfs_buf_ops xfs_bmbt_buf_ops = {
811 .verify_read = xfs_bmbt_read_verify,
812 .verify_write = xfs_bmbt_write_verify,
813};
814
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100815
Dave Chinner742ae1e2013-04-30 21:39:34 +1000816#if defined(DEBUG) || defined(XFS_WARN)
Christoph Hellwig4a26e662008-10-30 16:58:32 +1100817STATIC int
818xfs_bmbt_keys_inorder(
819 struct xfs_btree_cur *cur,
820 union xfs_btree_key *k1,
821 union xfs_btree_key *k2)
822{
823 return be64_to_cpu(k1->bmbt.br_startoff) <
824 be64_to_cpu(k2->bmbt.br_startoff);
825}
826
827STATIC int
828xfs_bmbt_recs_inorder(
829 struct xfs_btree_cur *cur,
830 union xfs_btree_rec *r1,
831 union xfs_btree_rec *r2)
832{
833 return xfs_bmbt_disk_get_startoff(&r1->bmbt) +
834 xfs_bmbt_disk_get_blockcount(&r1->bmbt) <=
835 xfs_bmbt_disk_get_startoff(&r2->bmbt);
836}
837#endif /* DEBUG */
838
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100839static const struct xfs_btree_ops xfs_bmbt_ops = {
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100840 .rec_len = sizeof(xfs_bmbt_rec_t),
841 .key_len = sizeof(xfs_bmbt_key_t),
842
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100843 .dup_cursor = xfs_bmbt_dup_cursor,
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100844 .update_cursor = xfs_bmbt_update_cursor,
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100845 .alloc_block = xfs_bmbt_alloc_block,
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100846 .free_block = xfs_bmbt_free_block,
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100847 .get_maxrecs = xfs_bmbt_get_maxrecs,
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100848 .get_minrecs = xfs_bmbt_get_minrecs,
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100849 .get_dmaxrecs = xfs_bmbt_get_dmaxrecs,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100850 .init_key_from_rec = xfs_bmbt_init_key_from_rec,
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100851 .init_rec_from_key = xfs_bmbt_init_rec_from_key,
852 .init_rec_from_cur = xfs_bmbt_init_rec_from_cur,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100853 .init_ptr_from_cur = xfs_bmbt_init_ptr_from_cur,
854 .key_diff = xfs_bmbt_key_diff,
Dave Chinner1813dd62012-11-14 17:54:40 +1100855 .buf_ops = &xfs_bmbt_buf_ops,
Dave Chinner742ae1e2013-04-30 21:39:34 +1000856#if defined(DEBUG) || defined(XFS_WARN)
Christoph Hellwig4a26e662008-10-30 16:58:32 +1100857 .keys_inorder = xfs_bmbt_keys_inorder,
858 .recs_inorder = xfs_bmbt_recs_inorder,
859#endif
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100860};
861
862/*
863 * Allocate a new bmap btree cursor.
864 */
865struct xfs_btree_cur * /* new bmap btree cursor */
866xfs_bmbt_init_cursor(
867 struct xfs_mount *mp, /* file system mount point */
868 struct xfs_trans *tp, /* transaction pointer */
869 struct xfs_inode *ip, /* inode owning the btree */
870 int whichfork) /* data or attr fork */
871{
872 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
873 struct xfs_btree_cur *cur;
874
875 cur = kmem_zone_zalloc(xfs_btree_cur_zone, KM_SLEEP);
876
877 cur->bc_tp = tp;
878 cur->bc_mp = mp;
879 cur->bc_nlevels = be16_to_cpu(ifp->if_broot->bb_level) + 1;
880 cur->bc_btnum = XFS_BTNUM_BMAP;
881 cur->bc_blocklog = mp->m_sb.sb_blocklog;
882
883 cur->bc_ops = &xfs_bmbt_ops;
Christoph Hellwige99ab902008-10-30 16:54:33 +1100884 cur->bc_flags = XFS_BTREE_LONG_PTRS | XFS_BTREE_ROOT_IN_INODE;
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500885 if (xfs_sb_version_hascrc(&mp->m_sb))
886 cur->bc_flags |= XFS_BTREE_CRC_BLOCKS;
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100887
888 cur->bc_private.b.forksize = XFS_IFORK_SIZE(ip, whichfork);
889 cur->bc_private.b.ip = ip;
890 cur->bc_private.b.firstblock = NULLFSBLOCK;
891 cur->bc_private.b.flist = NULL;
892 cur->bc_private.b.allocated = 0;
893 cur->bc_private.b.flags = 0;
894 cur->bc_private.b.whichfork = whichfork;
895
896 return cur;
897}
Christoph Hellwig60197e82008-10-30 17:11:19 +1100898
899/*
900 * Calculate number of records in a bmap btree block.
901 */
902int
903xfs_bmbt_maxrecs(
904 struct xfs_mount *mp,
905 int blocklen,
906 int leaf)
907{
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100908 blocklen -= XFS_BMBT_BLOCK_LEN(mp);
Christoph Hellwig60197e82008-10-30 17:11:19 +1100909
910 if (leaf)
911 return blocklen / sizeof(xfs_bmbt_rec_t);
912 return blocklen / (sizeof(xfs_bmbt_key_t) + sizeof(xfs_bmbt_ptr_t));
913}
914
915/*
916 * Calculate number of records in a bmap btree inode root.
917 */
918int
919xfs_bmdr_maxrecs(
920 struct xfs_mount *mp,
921 int blocklen,
922 int leaf)
923{
924 blocklen -= sizeof(xfs_bmdr_block_t);
925
926 if (leaf)
927 return blocklen / sizeof(xfs_bmdr_rec_t);
928 return blocklen / (sizeof(xfs_bmdr_key_t) + sizeof(xfs_bmdr_ptr_t));
929}