blob: 2fb4a2202e1731d153a5250dca593985f0191094 [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"
Dave Chinner6ca1c902013-08-12 20:49:26 +100020#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"
Dave Chinner239880e2013-10-23 10:50:10 +110028#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110029#include "xfs_inode_item.h"
30#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_btree.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110032#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_bmap.h"
34#include "xfs_error.h"
35#include "xfs_quota.h"
Dave Chinner3d3e6f62012-11-12 22:54:08 +110036#include "xfs_trace.h"
Christoph Hellwigee1a47a2013-04-21 14:53:46 -050037#include "xfs_cksum.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110038#include "xfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 * Determine the extent state.
42 */
43/* ARGSUSED */
44STATIC xfs_exntst_t
45xfs_extent_state(
46 xfs_filblks_t blks,
47 int extent_flag)
48{
49 if (extent_flag) {
50 ASSERT(blks != 0); /* saved for DMIG */
51 return XFS_EXT_UNWRITTEN;
52 }
53 return XFS_EXT_NORM;
54}
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/*
57 * Convert on-disk form of btree root to in-memory form.
58 */
59void
60xfs_bmdr_to_bmbt(
Christoph Hellwigee1a47a2013-04-21 14:53:46 -050061 struct xfs_inode *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 xfs_bmdr_block_t *dblock,
63 int dblocklen,
Christoph Hellwig7cc95a82008-10-30 17:14:34 +110064 struct xfs_btree_block *rblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 int rblocklen)
66{
Christoph Hellwigee1a47a2013-04-21 14:53:46 -050067 struct xfs_mount *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 int dmxr;
69 xfs_bmbt_key_t *fkp;
Christoph Hellwig576039c2006-09-28 10:58:06 +100070 __be64 *fpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 xfs_bmbt_key_t *tkp;
Christoph Hellwig576039c2006-09-28 10:58:06 +100072 __be64 *tpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Christoph Hellwigee1a47a2013-04-21 14:53:46 -050074 if (xfs_sb_version_hascrc(&mp->m_sb))
75 xfs_btree_init_block_int(mp, rblock, XFS_BUF_DADDR_NULL,
76 XFS_BMAP_CRC_MAGIC, 0, 0, ip->i_ino,
77 XFS_BTREE_LONG_PTRS | XFS_BTREE_CRC_BLOCKS);
78 else
79 xfs_btree_init_block_int(mp, rblock, XFS_BUF_DADDR_NULL,
80 XFS_BMAP_MAGIC, 0, 0, ip->i_ino,
81 XFS_BTREE_LONG_PTRS);
82
Christoph Hellwig16259e72005-11-02 15:11:25 +110083 rblock->bb_level = dblock->bb_level;
84 ASSERT(be16_to_cpu(rblock->bb_level) > 0);
85 rblock->bb_numrecs = dblock->bb_numrecs;
Christoph Hellwig60197e82008-10-30 17:11:19 +110086 dmxr = xfs_bmdr_maxrecs(mp, dblocklen, 0);
Christoph Hellwig136341b2008-10-30 17:11:40 +110087 fkp = XFS_BMDR_KEY_ADDR(dblock, 1);
88 tkp = XFS_BMBT_KEY_ADDR(mp, rblock, 1);
89 fpp = XFS_BMDR_PTR_ADDR(dblock, 1, dmxr);
Christoph Hellwig60197e82008-10-30 17:11:19 +110090 tpp = XFS_BMAP_BROOT_PTR_ADDR(mp, rblock, 1, rblocklen);
Christoph Hellwig16259e72005-11-02 15:11:25 +110091 dmxr = be16_to_cpu(dblock->bb_numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 memcpy(tkp, fkp, sizeof(*fkp) * dmxr);
Christoph Hellwig576039c2006-09-28 10:58:06 +100093 memcpy(tpp, fpp, sizeof(*fpp) * dmxr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
95
96/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 * Convert a compressed bmap extent record to an uncompressed form.
98 * This code must be in sync with the routines xfs_bmbt_get_startoff,
99 * xfs_bmbt_get_startblock, xfs_bmbt_get_blockcount and xfs_bmbt_get_state.
100 */
Christoph Hellwigb8f82a42009-11-14 16:17:22 +0000101STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102__xfs_bmbt_get_all(
103 __uint64_t l0,
104 __uint64_t l1,
105 xfs_bmbt_irec_t *s)
106{
107 int ext_flag;
108 xfs_exntst_t st;
109
110 ext_flag = (int)(l0 >> (64 - BMBT_EXNTFLAG_BITLEN));
111 s->br_startoff = ((xfs_fileoff_t)l0 &
Eric Sandeenfb825572009-01-09 15:53:54 +1100112 xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN)) >> 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#if XFS_BIG_BLKNOS
Eric Sandeenfb825572009-01-09 15:53:54 +1100114 s->br_startblock = (((xfs_fsblock_t)l0 & xfs_mask64lo(9)) << 43) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 (((xfs_fsblock_t)l1) >> 21);
116#else
117#ifdef DEBUG
118 {
119 xfs_dfsbno_t b;
120
Eric Sandeenfb825572009-01-09 15:53:54 +1100121 b = (((xfs_dfsbno_t)l0 & xfs_mask64lo(9)) << 43) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 (((xfs_dfsbno_t)l1) >> 21);
Eric Sandeen9d87c312009-01-14 23:22:07 -0600123 ASSERT((b >> 32) == 0 || isnulldstartblock(b));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 s->br_startblock = (xfs_fsblock_t)b;
125 }
126#else /* !DEBUG */
127 s->br_startblock = (xfs_fsblock_t)(((xfs_dfsbno_t)l1) >> 21);
128#endif /* DEBUG */
129#endif /* XFS_BIG_BLKNOS */
Eric Sandeenfb825572009-01-09 15:53:54 +1100130 s->br_blockcount = (xfs_filblks_t)(l1 & xfs_mask64lo(21));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 /* This is xfs_extent_state() in-line */
132 if (ext_flag) {
133 ASSERT(s->br_blockcount != 0); /* saved for DMIG */
134 st = XFS_EXT_UNWRITTEN;
135 } else
136 st = XFS_EXT_NORM;
137 s->br_state = st;
138}
139
140void
141xfs_bmbt_get_all(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000142 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 xfs_bmbt_irec_t *s)
144{
145 __xfs_bmbt_get_all(r->l0, r->l1, s);
146}
147
148/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 * Extract the blockcount field from an in memory bmap extent record.
150 */
151xfs_filblks_t
152xfs_bmbt_get_blockcount(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000153 xfs_bmbt_rec_host_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Eric Sandeenfb825572009-01-09 15:53:54 +1100155 return (xfs_filblks_t)(r->l1 & xfs_mask64lo(21));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
158/*
159 * Extract the startblock field from an in memory bmap extent record.
160 */
161xfs_fsblock_t
162xfs_bmbt_get_startblock(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000163 xfs_bmbt_rec_host_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
165#if XFS_BIG_BLKNOS
Eric Sandeenfb825572009-01-09 15:53:54 +1100166 return (((xfs_fsblock_t)r->l0 & xfs_mask64lo(9)) << 43) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 (((xfs_fsblock_t)r->l1) >> 21);
168#else
169#ifdef DEBUG
170 xfs_dfsbno_t b;
171
Eric Sandeenfb825572009-01-09 15:53:54 +1100172 b = (((xfs_dfsbno_t)r->l0 & xfs_mask64lo(9)) << 43) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 (((xfs_dfsbno_t)r->l1) >> 21);
Eric Sandeen9d87c312009-01-14 23:22:07 -0600174 ASSERT((b >> 32) == 0 || isnulldstartblock(b));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 return (xfs_fsblock_t)b;
176#else /* !DEBUG */
177 return (xfs_fsblock_t)(((xfs_dfsbno_t)r->l1) >> 21);
178#endif /* DEBUG */
179#endif /* XFS_BIG_BLKNOS */
180}
181
182/*
183 * Extract the startoff field from an in memory bmap extent record.
184 */
185xfs_fileoff_t
186xfs_bmbt_get_startoff(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000187 xfs_bmbt_rec_host_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
189 return ((xfs_fileoff_t)r->l0 &
Eric Sandeenfb825572009-01-09 15:53:54 +1100190 xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN)) >> 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
192
193xfs_exntst_t
194xfs_bmbt_get_state(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000195 xfs_bmbt_rec_host_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
197 int ext_flag;
198
199 ext_flag = (int)((r->l0) >> (64 - BMBT_EXNTFLAG_BITLEN));
200 return xfs_extent_state(xfs_bmbt_get_blockcount(r),
201 ext_flag);
202}
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204/*
205 * Extract the blockcount field from an on disk bmap extent record.
206 */
207xfs_filblks_t
208xfs_bmbt_disk_get_blockcount(
209 xfs_bmbt_rec_t *r)
210{
Eric Sandeenfb825572009-01-09 15:53:54 +1100211 return (xfs_filblks_t)(be64_to_cpu(r->l1) & xfs_mask64lo(21));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
214/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 * Extract the startoff field from a disk format bmap extent record.
216 */
217xfs_fileoff_t
218xfs_bmbt_disk_get_startoff(
219 xfs_bmbt_rec_t *r)
220{
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +1000221 return ((xfs_fileoff_t)be64_to_cpu(r->l0) &
Eric Sandeenfb825572009-01-09 15:53:54 +1100222 xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN)) >> 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226/*
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000227 * Set all the fields in a bmap extent record from the arguments.
228 */
229void
230xfs_bmbt_set_allf(
231 xfs_bmbt_rec_host_t *r,
232 xfs_fileoff_t startoff,
233 xfs_fsblock_t startblock,
234 xfs_filblks_t blockcount,
235 xfs_exntst_t state)
236{
237 int extent_flag = (state == XFS_EXT_NORM) ? 0 : 1;
238
239 ASSERT(state == XFS_EXT_NORM || state == XFS_EXT_UNWRITTEN);
Eric Sandeenfb825572009-01-09 15:53:54 +1100240 ASSERT((startoff & xfs_mask64hi(64-BMBT_STARTOFF_BITLEN)) == 0);
241 ASSERT((blockcount & xfs_mask64hi(64-BMBT_BLOCKCOUNT_BITLEN)) == 0);
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000242
243#if XFS_BIG_BLKNOS
Eric Sandeenfb825572009-01-09 15:53:54 +1100244 ASSERT((startblock & xfs_mask64hi(64-BMBT_STARTBLOCK_BITLEN)) == 0);
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000245
246 r->l0 = ((xfs_bmbt_rec_base_t)extent_flag << 63) |
247 ((xfs_bmbt_rec_base_t)startoff << 9) |
248 ((xfs_bmbt_rec_base_t)startblock >> 43);
249 r->l1 = ((xfs_bmbt_rec_base_t)startblock << 21) |
250 ((xfs_bmbt_rec_base_t)blockcount &
Eric Sandeenfb825572009-01-09 15:53:54 +1100251 (xfs_bmbt_rec_base_t)xfs_mask64lo(21));
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000252#else /* !XFS_BIG_BLKNOS */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600253 if (isnullstartblock(startblock)) {
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000254 r->l0 = ((xfs_bmbt_rec_base_t)extent_flag << 63) |
255 ((xfs_bmbt_rec_base_t)startoff << 9) |
Eric Sandeenfb825572009-01-09 15:53:54 +1100256 (xfs_bmbt_rec_base_t)xfs_mask64lo(9);
257 r->l1 = xfs_mask64hi(11) |
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000258 ((xfs_bmbt_rec_base_t)startblock << 21) |
259 ((xfs_bmbt_rec_base_t)blockcount &
Eric Sandeenfb825572009-01-09 15:53:54 +1100260 (xfs_bmbt_rec_base_t)xfs_mask64lo(21));
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000261 } else {
262 r->l0 = ((xfs_bmbt_rec_base_t)extent_flag << 63) |
263 ((xfs_bmbt_rec_base_t)startoff << 9);
264 r->l1 = ((xfs_bmbt_rec_base_t)startblock << 21) |
265 ((xfs_bmbt_rec_base_t)blockcount &
Eric Sandeenfb825572009-01-09 15:53:54 +1100266 (xfs_bmbt_rec_base_t)xfs_mask64lo(21));
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000267 }
268#endif /* XFS_BIG_BLKNOS */
269}
270
271/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 * Set all the fields in a bmap extent record from the uncompressed form.
273 */
274void
275xfs_bmbt_set_all(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000276 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 xfs_bmbt_irec_t *s)
278{
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000279 xfs_bmbt_set_allf(r, s->br_startoff, s->br_startblock,
280 s->br_blockcount, s->br_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284/*
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000285 * Set all the fields in a disk format bmap extent record from the arguments.
286 */
287void
288xfs_bmbt_disk_set_allf(
289 xfs_bmbt_rec_t *r,
290 xfs_fileoff_t startoff,
291 xfs_fsblock_t startblock,
292 xfs_filblks_t blockcount,
293 xfs_exntst_t state)
294{
295 int extent_flag = (state == XFS_EXT_NORM) ? 0 : 1;
296
297 ASSERT(state == XFS_EXT_NORM || state == XFS_EXT_UNWRITTEN);
Eric Sandeenfb825572009-01-09 15:53:54 +1100298 ASSERT((startoff & xfs_mask64hi(64-BMBT_STARTOFF_BITLEN)) == 0);
299 ASSERT((blockcount & xfs_mask64hi(64-BMBT_BLOCKCOUNT_BITLEN)) == 0);
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000300
301#if XFS_BIG_BLKNOS
Eric Sandeenfb825572009-01-09 15:53:54 +1100302 ASSERT((startblock & xfs_mask64hi(64-BMBT_STARTBLOCK_BITLEN)) == 0);
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000303
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +1000304 r->l0 = cpu_to_be64(
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000305 ((xfs_bmbt_rec_base_t)extent_flag << 63) |
306 ((xfs_bmbt_rec_base_t)startoff << 9) |
307 ((xfs_bmbt_rec_base_t)startblock >> 43));
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +1000308 r->l1 = cpu_to_be64(
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000309 ((xfs_bmbt_rec_base_t)startblock << 21) |
310 ((xfs_bmbt_rec_base_t)blockcount &
Eric Sandeenfb825572009-01-09 15:53:54 +1100311 (xfs_bmbt_rec_base_t)xfs_mask64lo(21)));
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000312#else /* !XFS_BIG_BLKNOS */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600313 if (isnullstartblock(startblock)) {
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +1000314 r->l0 = cpu_to_be64(
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000315 ((xfs_bmbt_rec_base_t)extent_flag << 63) |
316 ((xfs_bmbt_rec_base_t)startoff << 9) |
Eric Sandeenfb825572009-01-09 15:53:54 +1100317 (xfs_bmbt_rec_base_t)xfs_mask64lo(9));
318 r->l1 = cpu_to_be64(xfs_mask64hi(11) |
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000319 ((xfs_bmbt_rec_base_t)startblock << 21) |
320 ((xfs_bmbt_rec_base_t)blockcount &
Eric Sandeenfb825572009-01-09 15:53:54 +1100321 (xfs_bmbt_rec_base_t)xfs_mask64lo(21)));
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000322 } else {
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +1000323 r->l0 = cpu_to_be64(
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000324 ((xfs_bmbt_rec_base_t)extent_flag << 63) |
325 ((xfs_bmbt_rec_base_t)startoff << 9));
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +1000326 r->l1 = cpu_to_be64(
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000327 ((xfs_bmbt_rec_base_t)startblock << 21) |
328 ((xfs_bmbt_rec_base_t)blockcount &
Eric Sandeenfb825572009-01-09 15:53:54 +1100329 (xfs_bmbt_rec_base_t)xfs_mask64lo(21)));
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000330 }
331#endif /* XFS_BIG_BLKNOS */
332}
333
334/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 * Set all the fields in a bmap extent record from the uncompressed form.
336 */
Eric Sandeen5d77c0d2009-11-19 15:52:00 +0000337STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338xfs_bmbt_disk_set_all(
339 xfs_bmbt_rec_t *r,
340 xfs_bmbt_irec_t *s)
341{
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000342 xfs_bmbt_disk_set_allf(r, s->br_startoff, s->br_startblock,
343 s->br_blockcount, s->br_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346/*
347 * Set the blockcount field in a bmap extent record.
348 */
349void
350xfs_bmbt_set_blockcount(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000351 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 xfs_filblks_t v)
353{
Eric Sandeenfb825572009-01-09 15:53:54 +1100354 ASSERT((v & xfs_mask64hi(43)) == 0);
355 r->l1 = (r->l1 & (xfs_bmbt_rec_base_t)xfs_mask64hi(43)) |
356 (xfs_bmbt_rec_base_t)(v & xfs_mask64lo(21));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358
359/*
360 * Set the startblock field in a bmap extent record.
361 */
362void
363xfs_bmbt_set_startblock(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000364 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 xfs_fsblock_t v)
366{
367#if XFS_BIG_BLKNOS
Eric Sandeenfb825572009-01-09 15:53:54 +1100368 ASSERT((v & xfs_mask64hi(12)) == 0);
369 r->l0 = (r->l0 & (xfs_bmbt_rec_base_t)xfs_mask64hi(55)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 (xfs_bmbt_rec_base_t)(v >> 43);
Eric Sandeenfb825572009-01-09 15:53:54 +1100371 r->l1 = (r->l1 & (xfs_bmbt_rec_base_t)xfs_mask64lo(21)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 (xfs_bmbt_rec_base_t)(v << 21);
373#else /* !XFS_BIG_BLKNOS */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600374 if (isnullstartblock(v)) {
Eric Sandeenfb825572009-01-09 15:53:54 +1100375 r->l0 |= (xfs_bmbt_rec_base_t)xfs_mask64lo(9);
376 r->l1 = (xfs_bmbt_rec_base_t)xfs_mask64hi(11) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 ((xfs_bmbt_rec_base_t)v << 21) |
Eric Sandeenfb825572009-01-09 15:53:54 +1100378 (r->l1 & (xfs_bmbt_rec_base_t)xfs_mask64lo(21));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 } else {
Eric Sandeenfb825572009-01-09 15:53:54 +1100380 r->l0 &= ~(xfs_bmbt_rec_base_t)xfs_mask64lo(9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 r->l1 = ((xfs_bmbt_rec_base_t)v << 21) |
Eric Sandeenfb825572009-01-09 15:53:54 +1100382 (r->l1 & (xfs_bmbt_rec_base_t)xfs_mask64lo(21));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 }
384#endif /* XFS_BIG_BLKNOS */
385}
386
387/*
388 * Set the startoff field in a bmap extent record.
389 */
390void
391xfs_bmbt_set_startoff(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000392 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 xfs_fileoff_t v)
394{
Eric Sandeenfb825572009-01-09 15:53:54 +1100395 ASSERT((v & xfs_mask64hi(9)) == 0);
396 r->l0 = (r->l0 & (xfs_bmbt_rec_base_t) xfs_mask64hi(1)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 ((xfs_bmbt_rec_base_t)v << 9) |
Eric Sandeenfb825572009-01-09 15:53:54 +1100398 (r->l0 & (xfs_bmbt_rec_base_t)xfs_mask64lo(9));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
401/*
402 * Set the extent state field in a bmap extent record.
403 */
404void
405xfs_bmbt_set_state(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000406 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 xfs_exntst_t v)
408{
409 ASSERT(v == XFS_EXT_NORM || v == XFS_EXT_UNWRITTEN);
410 if (v == XFS_EXT_NORM)
Eric Sandeenfb825572009-01-09 15:53:54 +1100411 r->l0 &= xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 else
Eric Sandeenfb825572009-01-09 15:53:54 +1100413 r->l0 |= xfs_mask64hi(BMBT_EXNTFLAG_BITLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415
416/*
417 * Convert in-memory form of btree root to on-disk form.
418 */
419void
420xfs_bmbt_to_bmdr(
Christoph Hellwig60197e82008-10-30 17:11:19 +1100421 struct xfs_mount *mp,
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100422 struct xfs_btree_block *rblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 int rblocklen,
424 xfs_bmdr_block_t *dblock,
425 int dblocklen)
426{
427 int dmxr;
428 xfs_bmbt_key_t *fkp;
Christoph Hellwig576039c2006-09-28 10:58:06 +1000429 __be64 *fpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 xfs_bmbt_key_t *tkp;
Christoph Hellwig576039c2006-09-28 10:58:06 +1000431 __be64 *tpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500433 if (xfs_sb_version_hascrc(&mp->m_sb)) {
434 ASSERT(rblock->bb_magic == cpu_to_be32(XFS_BMAP_CRC_MAGIC));
435 ASSERT(uuid_equal(&rblock->bb_u.l.bb_uuid, &mp->m_sb.sb_uuid));
436 ASSERT(rblock->bb_u.l.bb_blkno ==
437 cpu_to_be64(XFS_BUF_DADDR_NULL));
438 } else
439 ASSERT(rblock->bb_magic == cpu_to_be32(XFS_BMAP_MAGIC));
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200440 ASSERT(rblock->bb_u.l.bb_leftsib == cpu_to_be64(NULLDFSBNO));
441 ASSERT(rblock->bb_u.l.bb_rightsib == cpu_to_be64(NULLDFSBNO));
442 ASSERT(rblock->bb_level != 0);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100443 dblock->bb_level = rblock->bb_level;
444 dblock->bb_numrecs = rblock->bb_numrecs;
Christoph Hellwig60197e82008-10-30 17:11:19 +1100445 dmxr = xfs_bmdr_maxrecs(mp, dblocklen, 0);
Christoph Hellwig136341b2008-10-30 17:11:40 +1100446 fkp = XFS_BMBT_KEY_ADDR(mp, rblock, 1);
447 tkp = XFS_BMDR_KEY_ADDR(dblock, 1);
Christoph Hellwig60197e82008-10-30 17:11:19 +1100448 fpp = XFS_BMAP_BROOT_PTR_ADDR(mp, rblock, 1, rblocklen);
Christoph Hellwig136341b2008-10-30 17:11:40 +1100449 tpp = XFS_BMDR_PTR_ADDR(dblock, 1, dmxr);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100450 dmxr = be16_to_cpu(dblock->bb_numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 memcpy(tkp, fkp, sizeof(*fkp) * dmxr);
Christoph Hellwig576039c2006-09-28 10:58:06 +1000452 memcpy(tpp, fpp, sizeof(*fpp) * dmxr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454
455/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100456 * Check extent records, which have just been read, for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 * any bit in the extent flag field. ASSERT on debug
458 * kernels, as this condition should not occur.
459 * Return an error condition (1) if any flags found,
460 * otherwise return 0.
461 */
462
463int
464xfs_check_nostate_extents(
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100465 xfs_ifork_t *ifp,
466 xfs_extnum_t idx,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 xfs_extnum_t num)
468{
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100469 for (; num > 0; num--, idx++) {
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000470 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if ((ep->l0 >>
472 (64 - BMBT_EXNTFLAG_BITLEN)) != 0) {
473 ASSERT(0);
474 return 1;
475 }
476 }
477 return 0;
478}
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100479
480
481STATIC struct xfs_btree_cur *
482xfs_bmbt_dup_cursor(
483 struct xfs_btree_cur *cur)
484{
485 struct xfs_btree_cur *new;
486
487 new = xfs_bmbt_init_cursor(cur->bc_mp, cur->bc_tp,
488 cur->bc_private.b.ip, cur->bc_private.b.whichfork);
489
490 /*
491 * Copy the firstblock, flist, and flags values,
492 * since init cursor doesn't get them.
493 */
494 new->bc_private.b.firstblock = cur->bc_private.b.firstblock;
495 new->bc_private.b.flist = cur->bc_private.b.flist;
496 new->bc_private.b.flags = cur->bc_private.b.flags;
497
498 return new;
499}
500
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100501STATIC void
502xfs_bmbt_update_cursor(
503 struct xfs_btree_cur *src,
504 struct xfs_btree_cur *dst)
505{
506 ASSERT((dst->bc_private.b.firstblock != NULLFSBLOCK) ||
507 (dst->bc_private.b.ip->i_d.di_flags & XFS_DIFLAG_REALTIME));
508 ASSERT(dst->bc_private.b.flist == src->bc_private.b.flist);
509
510 dst->bc_private.b.allocated += src->bc_private.b.allocated;
511 dst->bc_private.b.firstblock = src->bc_private.b.firstblock;
512
513 src->bc_private.b.allocated = 0;
514}
515
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100516STATIC int
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100517xfs_bmbt_alloc_block(
518 struct xfs_btree_cur *cur,
519 union xfs_btree_ptr *start,
520 union xfs_btree_ptr *new,
521 int length,
522 int *stat)
523{
524 xfs_alloc_arg_t args; /* block allocation args */
525 int error; /* error return value */
526
527 memset(&args, 0, sizeof(args));
528 args.tp = cur->bc_tp;
529 args.mp = cur->bc_mp;
530 args.fsbno = cur->bc_private.b.firstblock;
531 args.firstblock = args.fsbno;
532
533 if (args.fsbno == NULLFSBLOCK) {
534 args.fsbno = be64_to_cpu(start->l);
535 args.type = XFS_ALLOCTYPE_START_BNO;
536 /*
537 * Make sure there is sufficient room left in the AG to
538 * complete a full tree split for an extent insert. If
539 * we are converting the middle part of an extent then
540 * we may need space for two tree splits.
541 *
542 * We are relying on the caller to make the correct block
543 * reservation for this operation to succeed. If the
544 * reservation amount is insufficient then we may fail a
545 * block allocation here and corrupt the filesystem.
546 */
547 args.minleft = xfs_trans_get_block_res(args.tp);
548 } else if (cur->bc_private.b.flist->xbf_low) {
549 args.type = XFS_ALLOCTYPE_START_BNO;
550 } else {
551 args.type = XFS_ALLOCTYPE_NEAR_BNO;
552 }
553
554 args.minlen = args.maxlen = args.prod = 1;
555 args.wasdel = cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL;
556 if (!args.wasdel && xfs_trans_get_block_res(args.tp) == 0) {
557 error = XFS_ERROR(ENOSPC);
558 goto error0;
559 }
560 error = xfs_alloc_vextent(&args);
561 if (error)
562 goto error0;
563
564 if (args.fsbno == NULLFSBLOCK && args.minleft) {
565 /*
566 * Could not find an AG with enough free space to satisfy
567 * a full btree split. Try again without minleft and if
568 * successful activate the lowspace algorithm.
569 */
570 args.fsbno = 0;
571 args.type = XFS_ALLOCTYPE_FIRST_AG;
572 args.minleft = 0;
573 error = xfs_alloc_vextent(&args);
574 if (error)
575 goto error0;
576 cur->bc_private.b.flist->xbf_low = 1;
577 }
578 if (args.fsbno == NULLFSBLOCK) {
579 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
580 *stat = 0;
581 return 0;
582 }
583 ASSERT(args.len == 1);
584 cur->bc_private.b.firstblock = args.fsbno;
585 cur->bc_private.b.allocated++;
586 cur->bc_private.b.ip->i_d.di_nblocks++;
587 xfs_trans_log_inode(args.tp, cur->bc_private.b.ip, XFS_ILOG_CORE);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200588 xfs_trans_mod_dquot_byino(args.tp, cur->bc_private.b.ip,
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100589 XFS_TRANS_DQ_BCOUNT, 1L);
590
591 new->l = cpu_to_be64(args.fsbno);
592
593 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
594 *stat = 1;
595 return 0;
596
597 error0:
598 XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);
599 return error;
600}
601
602STATIC int
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100603xfs_bmbt_free_block(
604 struct xfs_btree_cur *cur,
605 struct xfs_buf *bp)
606{
607 struct xfs_mount *mp = cur->bc_mp;
608 struct xfs_inode *ip = cur->bc_private.b.ip;
609 struct xfs_trans *tp = cur->bc_tp;
610 xfs_fsblock_t fsbno = XFS_DADDR_TO_FSB(mp, XFS_BUF_ADDR(bp));
611
612 xfs_bmap_add_free(fsbno, 1, cur->bc_private.b.flist, mp);
613 ip->i_d.di_nblocks--;
614
615 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200616 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, -1L);
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100617 xfs_trans_binval(tp, bp);
618 return 0;
619}
620
621STATIC int
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100622xfs_bmbt_get_minrecs(
623 struct xfs_btree_cur *cur,
624 int level)
625{
Christoph Hellwig60197e82008-10-30 17:11:19 +1100626 if (level == cur->bc_nlevels - 1) {
627 struct xfs_ifork *ifp;
628
629 ifp = XFS_IFORK_PTR(cur->bc_private.b.ip,
630 cur->bc_private.b.whichfork);
631
632 return xfs_bmbt_maxrecs(cur->bc_mp,
633 ifp->if_broot_bytes, level == 0) / 2;
634 }
635
636 return cur->bc_mp->m_bmap_dmnr[level != 0];
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100637}
638
Christoph Hellwig60197e82008-10-30 17:11:19 +1100639int
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100640xfs_bmbt_get_maxrecs(
641 struct xfs_btree_cur *cur,
642 int level)
643{
Christoph Hellwig60197e82008-10-30 17:11:19 +1100644 if (level == cur->bc_nlevels - 1) {
645 struct xfs_ifork *ifp;
646
647 ifp = XFS_IFORK_PTR(cur->bc_private.b.ip,
648 cur->bc_private.b.whichfork);
649
650 return xfs_bmbt_maxrecs(cur->bc_mp,
651 ifp->if_broot_bytes, level == 0);
652 }
653
654 return cur->bc_mp->m_bmap_dmxr[level != 0];
655
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100656}
657
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100658/*
659 * Get the maximum records we could store in the on-disk format.
660 *
661 * For non-root nodes this is equivalent to xfs_bmbt_get_maxrecs, but
662 * for the root node this checks the available space in the dinode fork
663 * so that we can resize the in-memory buffer to match it. After a
664 * resize to the maximum size this function returns the same value
665 * as xfs_bmbt_get_maxrecs for the root node, too.
666 */
667STATIC int
668xfs_bmbt_get_dmaxrecs(
669 struct xfs_btree_cur *cur,
670 int level)
671{
Christoph Hellwig60197e82008-10-30 17:11:19 +1100672 if (level != cur->bc_nlevels - 1)
673 return cur->bc_mp->m_bmap_dmxr[level != 0];
674 return xfs_bmdr_maxrecs(cur->bc_mp, cur->bc_private.b.forksize,
675 level == 0);
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100676}
677
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100678STATIC void
679xfs_bmbt_init_key_from_rec(
680 union xfs_btree_key *key,
681 union xfs_btree_rec *rec)
682{
683 key->bmbt.br_startoff =
684 cpu_to_be64(xfs_bmbt_disk_get_startoff(&rec->bmbt));
685}
686
687STATIC void
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100688xfs_bmbt_init_rec_from_key(
689 union xfs_btree_key *key,
690 union xfs_btree_rec *rec)
691{
692 ASSERT(key->bmbt.br_startoff != 0);
693
694 xfs_bmbt_disk_set_allf(&rec->bmbt, be64_to_cpu(key->bmbt.br_startoff),
695 0, 0, XFS_EXT_NORM);
696}
697
698STATIC void
699xfs_bmbt_init_rec_from_cur(
700 struct xfs_btree_cur *cur,
701 union xfs_btree_rec *rec)
702{
703 xfs_bmbt_disk_set_all(&rec->bmbt, &cur->bc_rec.b);
704}
705
706STATIC void
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100707xfs_bmbt_init_ptr_from_cur(
708 struct xfs_btree_cur *cur,
709 union xfs_btree_ptr *ptr)
710{
711 ptr->l = 0;
712}
713
714STATIC __int64_t
715xfs_bmbt_key_diff(
716 struct xfs_btree_cur *cur,
717 union xfs_btree_key *key)
718{
719 return (__int64_t)be64_to_cpu(key->bmbt.br_startoff) -
720 cur->bc_rec.b.br_startoff;
721}
722
Dave Chinnerc5c249b2013-08-12 20:49:43 +1000723static bool
Dave Chinner612cfbf2012-11-14 17:52:32 +1100724xfs_bmbt_verify(
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100725 struct xfs_buf *bp)
726{
727 struct xfs_mount *mp = bp->b_target->bt_mount;
728 struct xfs_btree_block *block = XFS_BUF_TO_BLOCK(bp);
729 unsigned int level;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100730
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500731 switch (block->bb_magic) {
732 case cpu_to_be32(XFS_BMAP_CRC_MAGIC):
733 if (!xfs_sb_version_hascrc(&mp->m_sb))
734 return false;
735 if (!uuid_equal(&block->bb_u.l.bb_uuid, &mp->m_sb.sb_uuid))
736 return false;
737 if (be64_to_cpu(block->bb_u.l.bb_blkno) != bp->b_bn)
738 return false;
739 /*
740 * XXX: need a better way of verifying the owner here. Right now
741 * just make sure there has been one set.
742 */
743 if (be64_to_cpu(block->bb_u.l.bb_owner) == 0)
744 return false;
745 /* fall through */
746 case cpu_to_be32(XFS_BMAP_MAGIC):
747 break;
748 default:
749 return false;
750 }
751
752 /*
753 * numrecs and level verification.
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100754 *
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500755 * We don't know what fork we belong to, so just verify that the level
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100756 * is less than the maximum of the two. Later checks will be more
757 * precise.
758 */
759 level = be16_to_cpu(block->bb_level);
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500760 if (level > max(mp->m_bm_maxlevels[0], mp->m_bm_maxlevels[1]))
761 return false;
762 if (be16_to_cpu(block->bb_numrecs) > mp->m_bmap_dmxr[level != 0])
763 return false;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100764
765 /* sibling pointer verification */
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500766 if (!block->bb_u.l.bb_leftsib ||
767 (block->bb_u.l.bb_leftsib != cpu_to_be64(NULLDFSBNO) &&
768 !XFS_FSB_SANITY_CHECK(mp, be64_to_cpu(block->bb_u.l.bb_leftsib))))
769 return false;
770 if (!block->bb_u.l.bb_rightsib ||
771 (block->bb_u.l.bb_rightsib != cpu_to_be64(NULLDFSBNO) &&
772 !XFS_FSB_SANITY_CHECK(mp, be64_to_cpu(block->bb_u.l.bb_rightsib))))
773 return false;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100774
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500775 return true;
Dave Chinner612cfbf2012-11-14 17:52:32 +1100776}
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100777
Dave Chinner1813dd62012-11-14 17:54:40 +1100778static void
779xfs_bmbt_read_verify(
780 struct xfs_buf *bp)
781{
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500782 if (!(xfs_btree_lblock_verify_crc(bp) &&
783 xfs_bmbt_verify(bp))) {
784 trace_xfs_btree_corrupt(bp, _RET_IP_);
785 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW,
786 bp->b_target->bt_mount, bp->b_addr);
787 xfs_buf_ioerror(bp, EFSCORRUPTED);
788 }
Dave Chinner1813dd62012-11-14 17:54:40 +1100789}
790
791static void
Dave Chinner612cfbf2012-11-14 17:52:32 +1100792xfs_bmbt_write_verify(
793 struct xfs_buf *bp)
794{
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500795 if (!xfs_bmbt_verify(bp)) {
796 xfs_warn(bp->b_target->bt_mount, "bmbt daddr 0x%llx failed", bp->b_bn);
797 trace_xfs_btree_corrupt(bp, _RET_IP_);
798 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW,
799 bp->b_target->bt_mount, bp->b_addr);
800 xfs_buf_ioerror(bp, EFSCORRUPTED);
801 return;
802 }
803 xfs_btree_lblock_calc_crc(bp);
Dave Chinner612cfbf2012-11-14 17:52:32 +1100804}
805
Dave Chinner1813dd62012-11-14 17:54:40 +1100806const struct xfs_buf_ops xfs_bmbt_buf_ops = {
807 .verify_read = xfs_bmbt_read_verify,
808 .verify_write = xfs_bmbt_write_verify,
809};
810
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100811
Dave Chinner742ae1e2013-04-30 21:39:34 +1000812#if defined(DEBUG) || defined(XFS_WARN)
Christoph Hellwig4a26e662008-10-30 16:58:32 +1100813STATIC int
814xfs_bmbt_keys_inorder(
815 struct xfs_btree_cur *cur,
816 union xfs_btree_key *k1,
817 union xfs_btree_key *k2)
818{
819 return be64_to_cpu(k1->bmbt.br_startoff) <
820 be64_to_cpu(k2->bmbt.br_startoff);
821}
822
823STATIC int
824xfs_bmbt_recs_inorder(
825 struct xfs_btree_cur *cur,
826 union xfs_btree_rec *r1,
827 union xfs_btree_rec *r2)
828{
829 return xfs_bmbt_disk_get_startoff(&r1->bmbt) +
830 xfs_bmbt_disk_get_blockcount(&r1->bmbt) <=
831 xfs_bmbt_disk_get_startoff(&r2->bmbt);
832}
833#endif /* DEBUG */
834
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100835static const struct xfs_btree_ops xfs_bmbt_ops = {
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100836 .rec_len = sizeof(xfs_bmbt_rec_t),
837 .key_len = sizeof(xfs_bmbt_key_t),
838
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100839 .dup_cursor = xfs_bmbt_dup_cursor,
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100840 .update_cursor = xfs_bmbt_update_cursor,
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100841 .alloc_block = xfs_bmbt_alloc_block,
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100842 .free_block = xfs_bmbt_free_block,
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100843 .get_maxrecs = xfs_bmbt_get_maxrecs,
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100844 .get_minrecs = xfs_bmbt_get_minrecs,
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100845 .get_dmaxrecs = xfs_bmbt_get_dmaxrecs,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100846 .init_key_from_rec = xfs_bmbt_init_key_from_rec,
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100847 .init_rec_from_key = xfs_bmbt_init_rec_from_key,
848 .init_rec_from_cur = xfs_bmbt_init_rec_from_cur,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100849 .init_ptr_from_cur = xfs_bmbt_init_ptr_from_cur,
850 .key_diff = xfs_bmbt_key_diff,
Dave Chinner1813dd62012-11-14 17:54:40 +1100851 .buf_ops = &xfs_bmbt_buf_ops,
Dave Chinner742ae1e2013-04-30 21:39:34 +1000852#if defined(DEBUG) || defined(XFS_WARN)
Christoph Hellwig4a26e662008-10-30 16:58:32 +1100853 .keys_inorder = xfs_bmbt_keys_inorder,
854 .recs_inorder = xfs_bmbt_recs_inorder,
855#endif
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100856};
857
858/*
859 * Allocate a new bmap btree cursor.
860 */
861struct xfs_btree_cur * /* new bmap btree cursor */
862xfs_bmbt_init_cursor(
863 struct xfs_mount *mp, /* file system mount point */
864 struct xfs_trans *tp, /* transaction pointer */
865 struct xfs_inode *ip, /* inode owning the btree */
866 int whichfork) /* data or attr fork */
867{
868 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
869 struct xfs_btree_cur *cur;
870
871 cur = kmem_zone_zalloc(xfs_btree_cur_zone, KM_SLEEP);
872
873 cur->bc_tp = tp;
874 cur->bc_mp = mp;
875 cur->bc_nlevels = be16_to_cpu(ifp->if_broot->bb_level) + 1;
876 cur->bc_btnum = XFS_BTNUM_BMAP;
877 cur->bc_blocklog = mp->m_sb.sb_blocklog;
878
879 cur->bc_ops = &xfs_bmbt_ops;
Christoph Hellwige99ab902008-10-30 16:54:33 +1100880 cur->bc_flags = XFS_BTREE_LONG_PTRS | XFS_BTREE_ROOT_IN_INODE;
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500881 if (xfs_sb_version_hascrc(&mp->m_sb))
882 cur->bc_flags |= XFS_BTREE_CRC_BLOCKS;
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100883
884 cur->bc_private.b.forksize = XFS_IFORK_SIZE(ip, whichfork);
885 cur->bc_private.b.ip = ip;
886 cur->bc_private.b.firstblock = NULLFSBLOCK;
887 cur->bc_private.b.flist = NULL;
888 cur->bc_private.b.allocated = 0;
889 cur->bc_private.b.flags = 0;
890 cur->bc_private.b.whichfork = whichfork;
891
892 return cur;
893}
Christoph Hellwig60197e82008-10-30 17:11:19 +1100894
895/*
896 * Calculate number of records in a bmap btree block.
897 */
898int
899xfs_bmbt_maxrecs(
900 struct xfs_mount *mp,
901 int blocklen,
902 int leaf)
903{
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100904 blocklen -= XFS_BMBT_BLOCK_LEN(mp);
Christoph Hellwig60197e82008-10-30 17:11:19 +1100905
906 if (leaf)
907 return blocklen / sizeof(xfs_bmbt_rec_t);
908 return blocklen / (sizeof(xfs_bmbt_key_t) + sizeof(xfs_bmbt_ptr_t));
909}
910
911/*
912 * Calculate number of records in a bmap btree inode root.
913 */
914int
915xfs_bmdr_maxrecs(
916 struct xfs_mount *mp,
917 int blocklen,
918 int leaf)
919{
920 blocklen -= sizeof(xfs_bmdr_block_t);
921
922 if (leaf)
923 return blocklen / sizeof(xfs_bmdr_rec_t);
924 return blocklen / (sizeof(xfs_bmdr_key_t) + sizeof(xfs_bmdr_ptr_t));
925}
Dave Chinner21b5c972013-08-30 10:23:44 +1000926
927/*
928 * Change the owner of a btree format fork fo the inode passed in. Change it to
929 * the owner of that is passed in so that we can change owners before or after
930 * we switch forks between inodes. The operation that the caller is doing will
931 * determine whether is needs to change owner before or after the switch.
932 *
Dave Chinner638f44162013-08-30 10:23:45 +1000933 * For demand paged transactional modification, the fork switch should be done
934 * after reading in all the blocks, modifying them and pinning them in the
935 * transaction. For modification when the buffers are already pinned in memory,
936 * the fork switch can be done before changing the owner as we won't need to
937 * validate the owner until the btree buffers are unpinned and writes can occur
938 * again.
939 *
940 * For recovery based ownership change, there is no transactional context and
941 * so a buffer list must be supplied so that we can record the buffers that we
942 * modified for the caller to issue IO on.
Dave Chinner21b5c972013-08-30 10:23:44 +1000943 */
944int
945xfs_bmbt_change_owner(
946 struct xfs_trans *tp,
947 struct xfs_inode *ip,
948 int whichfork,
Dave Chinner638f44162013-08-30 10:23:45 +1000949 xfs_ino_t new_owner,
950 struct list_head *buffer_list)
Dave Chinner21b5c972013-08-30 10:23:44 +1000951{
952 struct xfs_btree_cur *cur;
953 int error;
954
Dave Chinner638f44162013-08-30 10:23:45 +1000955 ASSERT(tp || buffer_list);
956 ASSERT(!(tp && buffer_list));
Dave Chinner21b5c972013-08-30 10:23:44 +1000957 if (whichfork == XFS_DATA_FORK)
Dan Carpenteraa9e1042013-09-12 00:17:31 +0300958 ASSERT(ip->i_d.di_format == XFS_DINODE_FMT_BTREE);
Dave Chinner21b5c972013-08-30 10:23:44 +1000959 else
Dan Carpenteraa9e1042013-09-12 00:17:31 +0300960 ASSERT(ip->i_d.di_aformat == XFS_DINODE_FMT_BTREE);
Dave Chinner21b5c972013-08-30 10:23:44 +1000961
962 cur = xfs_bmbt_init_cursor(ip->i_mount, tp, ip, whichfork);
Dave Chinner638f44162013-08-30 10:23:45 +1000963 if (!cur)
964 return ENOMEM;
965
966 error = xfs_btree_change_owner(cur, new_owner, buffer_list);
Dave Chinner21b5c972013-08-30 10:23:44 +1000967 xfs_btree_del_cursor(cur, error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
968 return error;
969}