blob: 7e2d981626ef93113b4bbc26fda6a4609896e5f7 [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 Chinner632b89e2013-10-29 22:11:58 +110020#include "xfs_shared.h"
Dave Chinner6ca1c902013-08-12 20:49:26 +100021#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_mount.h"
Darrick J. Wong3ab78df2016-08-03 11:15:38 +100026#include "xfs_defer.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"
Darrick J. Wong340785c2016-08-03 11:33:42 +100038#include "xfs_rmap.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
Eric Sandeenb6f41e42017-01-27 23:16:39 -080074 xfs_btree_init_block_int(mp, rblock, XFS_BUF_DADDR_NULL,
75 XFS_BTNUM_BMAP, 0, 0, ip->i_ino,
Eric Sandeenf88ae462017-01-27 23:16:37 -080076 XFS_BTREE_LONG_PTRS);
Christoph Hellwig16259e72005-11-02 15:11:25 +110077 rblock->bb_level = dblock->bb_level;
78 ASSERT(be16_to_cpu(rblock->bb_level) > 0);
79 rblock->bb_numrecs = dblock->bb_numrecs;
Eric Sandeen152d93b2014-04-14 18:58:51 +100080 dmxr = xfs_bmdr_maxrecs(dblocklen, 0);
Christoph Hellwig136341b2008-10-30 17:11:40 +110081 fkp = XFS_BMDR_KEY_ADDR(dblock, 1);
82 tkp = XFS_BMBT_KEY_ADDR(mp, rblock, 1);
83 fpp = XFS_BMDR_PTR_ADDR(dblock, 1, dmxr);
Christoph Hellwig60197e82008-10-30 17:11:19 +110084 tpp = XFS_BMAP_BROOT_PTR_ADDR(mp, rblock, 1, rblocklen);
Christoph Hellwig16259e72005-11-02 15:11:25 +110085 dmxr = be16_to_cpu(dblock->bb_numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 memcpy(tkp, fkp, sizeof(*fkp) * dmxr);
Christoph Hellwig576039c2006-09-28 10:58:06 +100087 memcpy(tpp, fpp, sizeof(*fpp) * dmxr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
90/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 * Convert a compressed bmap extent record to an uncompressed form.
92 * This code must be in sync with the routines xfs_bmbt_get_startoff,
93 * xfs_bmbt_get_startblock, xfs_bmbt_get_blockcount and xfs_bmbt_get_state.
94 */
Christoph Hellwigb8f82a42009-11-14 16:17:22 +000095STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -070096__xfs_bmbt_get_all(
Darrick J. Wongc8ce5402017-06-16 11:00:05 -070097 uint64_t l0,
98 uint64_t l1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 xfs_bmbt_irec_t *s)
100{
101 int ext_flag;
102 xfs_exntst_t st;
103
104 ext_flag = (int)(l0 >> (64 - BMBT_EXNTFLAG_BITLEN));
105 s->br_startoff = ((xfs_fileoff_t)l0 &
Eric Sandeenfb825572009-01-09 15:53:54 +1100106 xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN)) >> 9;
Eric Sandeenfb825572009-01-09 15:53:54 +1100107 s->br_startblock = (((xfs_fsblock_t)l0 & xfs_mask64lo(9)) << 43) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 (((xfs_fsblock_t)l1) >> 21);
Eric Sandeenfb825572009-01-09 15:53:54 +1100109 s->br_blockcount = (xfs_filblks_t)(l1 & xfs_mask64lo(21));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 /* This is xfs_extent_state() in-line */
111 if (ext_flag) {
112 ASSERT(s->br_blockcount != 0); /* saved for DMIG */
113 st = XFS_EXT_UNWRITTEN;
114 } else
115 st = XFS_EXT_NORM;
116 s->br_state = st;
117}
118
119void
120xfs_bmbt_get_all(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000121 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 xfs_bmbt_irec_t *s)
123{
124 __xfs_bmbt_get_all(r->l0, r->l1, s);
125}
126
127/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 * Extract the blockcount field from an in memory bmap extent record.
129 */
130xfs_filblks_t
131xfs_bmbt_get_blockcount(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000132 xfs_bmbt_rec_host_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Eric Sandeenfb825572009-01-09 15:53:54 +1100134 return (xfs_filblks_t)(r->l1 & xfs_mask64lo(21));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
137/*
138 * Extract the startblock field from an in memory bmap extent record.
139 */
140xfs_fsblock_t
141xfs_bmbt_get_startblock(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000142 xfs_bmbt_rec_host_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Eric Sandeenfb825572009-01-09 15:53:54 +1100144 return (((xfs_fsblock_t)r->l0 & xfs_mask64lo(9)) << 43) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 (((xfs_fsblock_t)r->l1) >> 21);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
148/*
149 * Extract the startoff field from an in memory bmap extent record.
150 */
151xfs_fileoff_t
152xfs_bmbt_get_startoff(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000153 xfs_bmbt_rec_host_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 return ((xfs_fileoff_t)r->l0 &
Eric Sandeenfb825572009-01-09 15:53:54 +1100156 xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN)) >> 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
159xfs_exntst_t
160xfs_bmbt_get_state(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000161 xfs_bmbt_rec_host_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
163 int ext_flag;
164
165 ext_flag = (int)((r->l0) >> (64 - BMBT_EXNTFLAG_BITLEN));
166 return xfs_extent_state(xfs_bmbt_get_blockcount(r),
167 ext_flag);
168}
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170/*
171 * Extract the blockcount field from an on disk bmap extent record.
172 */
173xfs_filblks_t
174xfs_bmbt_disk_get_blockcount(
175 xfs_bmbt_rec_t *r)
176{
Eric Sandeenfb825572009-01-09 15:53:54 +1100177 return (xfs_filblks_t)(be64_to_cpu(r->l1) & xfs_mask64lo(21));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
180/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 * Extract the startoff field from a disk format bmap extent record.
182 */
183xfs_fileoff_t
184xfs_bmbt_disk_get_startoff(
185 xfs_bmbt_rec_t *r)
186{
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +1000187 return ((xfs_fileoff_t)be64_to_cpu(r->l0) &
Eric Sandeenfb825572009-01-09 15:53:54 +1100188 xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN)) >> 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192/*
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000193 * Set all the fields in a bmap extent record from the arguments.
194 */
195void
196xfs_bmbt_set_allf(
197 xfs_bmbt_rec_host_t *r,
198 xfs_fileoff_t startoff,
199 xfs_fsblock_t startblock,
200 xfs_filblks_t blockcount,
201 xfs_exntst_t state)
202{
203 int extent_flag = (state == XFS_EXT_NORM) ? 0 : 1;
204
205 ASSERT(state == XFS_EXT_NORM || state == XFS_EXT_UNWRITTEN);
Eric Sandeenfb825572009-01-09 15:53:54 +1100206 ASSERT((startoff & xfs_mask64hi(64-BMBT_STARTOFF_BITLEN)) == 0);
207 ASSERT((blockcount & xfs_mask64hi(64-BMBT_BLOCKCOUNT_BITLEN)) == 0);
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000208
Eric Sandeenfb825572009-01-09 15:53:54 +1100209 ASSERT((startblock & xfs_mask64hi(64-BMBT_STARTBLOCK_BITLEN)) == 0);
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000210
211 r->l0 = ((xfs_bmbt_rec_base_t)extent_flag << 63) |
212 ((xfs_bmbt_rec_base_t)startoff << 9) |
213 ((xfs_bmbt_rec_base_t)startblock >> 43);
214 r->l1 = ((xfs_bmbt_rec_base_t)startblock << 21) |
215 ((xfs_bmbt_rec_base_t)blockcount &
Eric Sandeenfb825572009-01-09 15:53:54 +1100216 (xfs_bmbt_rec_base_t)xfs_mask64lo(21));
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000217}
218
219/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 * Set all the fields in a bmap extent record from the uncompressed form.
221 */
222void
223xfs_bmbt_set_all(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000224 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 xfs_bmbt_irec_t *s)
226{
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000227 xfs_bmbt_set_allf(r, s->br_startoff, s->br_startblock,
228 s->br_blockcount, s->br_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
Christoph Hellwig8cba4342007-08-16 16:23:53 +1000231/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 * Set all the fields in a bmap extent record from the uncompressed form.
233 */
Christoph Hellwiga67d00a2017-10-17 14:16:26 -0700234void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235xfs_bmbt_disk_set_all(
Christoph Hellwiga67d00a2017-10-17 14:16:26 -0700236 struct xfs_bmbt_rec *r,
237 struct xfs_bmbt_irec *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
Christoph Hellwiga67d00a2017-10-17 14:16:26 -0700239 int extent_flag = (s->br_state != XFS_EXT_NORM);
240
241 ASSERT(s->br_state == XFS_EXT_NORM || s->br_state == XFS_EXT_UNWRITTEN);
242 ASSERT(!(s->br_startoff & xfs_mask64hi(64-BMBT_STARTOFF_BITLEN)));
243 ASSERT(!(s->br_blockcount & xfs_mask64hi(64-BMBT_BLOCKCOUNT_BITLEN)));
244 ASSERT(!(s->br_startblock & xfs_mask64hi(64-BMBT_STARTBLOCK_BITLEN)));
245
246 r->l0 = cpu_to_be64(
247 ((xfs_bmbt_rec_base_t)extent_flag << 63) |
248 ((xfs_bmbt_rec_base_t)s->br_startoff << 9) |
249 ((xfs_bmbt_rec_base_t)s->br_startblock >> 43));
250 r->l1 = cpu_to_be64(
251 ((xfs_bmbt_rec_base_t)s->br_startblock << 21) |
252 ((xfs_bmbt_rec_base_t)s->br_blockcount &
253 (xfs_bmbt_rec_base_t)xfs_mask64lo(21)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256/*
257 * Set the blockcount field in a bmap extent record.
258 */
259void
260xfs_bmbt_set_blockcount(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000261 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 xfs_filblks_t v)
263{
Eric Sandeenfb825572009-01-09 15:53:54 +1100264 ASSERT((v & xfs_mask64hi(43)) == 0);
265 r->l1 = (r->l1 & (xfs_bmbt_rec_base_t)xfs_mask64hi(43)) |
266 (xfs_bmbt_rec_base_t)(v & xfs_mask64lo(21));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
269/*
270 * Set the startblock field in a bmap extent record.
271 */
272void
273xfs_bmbt_set_startblock(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000274 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 xfs_fsblock_t v)
276{
Eric Sandeenfb825572009-01-09 15:53:54 +1100277 ASSERT((v & xfs_mask64hi(12)) == 0);
278 r->l0 = (r->l0 & (xfs_bmbt_rec_base_t)xfs_mask64hi(55)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 (xfs_bmbt_rec_base_t)(v >> 43);
Eric Sandeenfb825572009-01-09 15:53:54 +1100280 r->l1 = (r->l1 & (xfs_bmbt_rec_base_t)xfs_mask64lo(21)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 (xfs_bmbt_rec_base_t)(v << 21);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
284/*
285 * Set the startoff field in a bmap extent record.
286 */
287void
288xfs_bmbt_set_startoff(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000289 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 xfs_fileoff_t v)
291{
Eric Sandeenfb825572009-01-09 15:53:54 +1100292 ASSERT((v & xfs_mask64hi(9)) == 0);
293 r->l0 = (r->l0 & (xfs_bmbt_rec_base_t) xfs_mask64hi(1)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 ((xfs_bmbt_rec_base_t)v << 9) |
Eric Sandeenfb825572009-01-09 15:53:54 +1100295 (r->l0 & (xfs_bmbt_rec_base_t)xfs_mask64lo(9));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
298/*
299 * Set the extent state field in a bmap extent record.
300 */
301void
302xfs_bmbt_set_state(
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000303 xfs_bmbt_rec_host_t *r,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 xfs_exntst_t v)
305{
306 ASSERT(v == XFS_EXT_NORM || v == XFS_EXT_UNWRITTEN);
307 if (v == XFS_EXT_NORM)
Eric Sandeenfb825572009-01-09 15:53:54 +1100308 r->l0 &= xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 else
Eric Sandeenfb825572009-01-09 15:53:54 +1100310 r->l0 |= xfs_mask64hi(BMBT_EXNTFLAG_BITLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
313/*
314 * Convert in-memory form of btree root to on-disk form.
315 */
316void
317xfs_bmbt_to_bmdr(
Christoph Hellwig60197e82008-10-30 17:11:19 +1100318 struct xfs_mount *mp,
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100319 struct xfs_btree_block *rblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 int rblocklen,
321 xfs_bmdr_block_t *dblock,
322 int dblocklen)
323{
324 int dmxr;
325 xfs_bmbt_key_t *fkp;
Christoph Hellwig576039c2006-09-28 10:58:06 +1000326 __be64 *fpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 xfs_bmbt_key_t *tkp;
Christoph Hellwig576039c2006-09-28 10:58:06 +1000328 __be64 *tpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500330 if (xfs_sb_version_hascrc(&mp->m_sb)) {
331 ASSERT(rblock->bb_magic == cpu_to_be32(XFS_BMAP_CRC_MAGIC));
Eric Sandeence748ea2015-07-29 11:53:31 +1000332 ASSERT(uuid_equal(&rblock->bb_u.l.bb_uuid,
333 &mp->m_sb.sb_meta_uuid));
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500334 ASSERT(rblock->bb_u.l.bb_blkno ==
335 cpu_to_be64(XFS_BUF_DADDR_NULL));
336 } else
337 ASSERT(rblock->bb_magic == cpu_to_be32(XFS_BMAP_MAGIC));
Christoph Hellwigd5cf09b2014-07-30 09:12:05 +1000338 ASSERT(rblock->bb_u.l.bb_leftsib == cpu_to_be64(NULLFSBLOCK));
339 ASSERT(rblock->bb_u.l.bb_rightsib == cpu_to_be64(NULLFSBLOCK));
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200340 ASSERT(rblock->bb_level != 0);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100341 dblock->bb_level = rblock->bb_level;
342 dblock->bb_numrecs = rblock->bb_numrecs;
Eric Sandeen152d93b2014-04-14 18:58:51 +1000343 dmxr = xfs_bmdr_maxrecs(dblocklen, 0);
Christoph Hellwig136341b2008-10-30 17:11:40 +1100344 fkp = XFS_BMBT_KEY_ADDR(mp, rblock, 1);
345 tkp = XFS_BMDR_KEY_ADDR(dblock, 1);
Christoph Hellwig60197e82008-10-30 17:11:19 +1100346 fpp = XFS_BMAP_BROOT_PTR_ADDR(mp, rblock, 1, rblocklen);
Christoph Hellwig136341b2008-10-30 17:11:40 +1100347 tpp = XFS_BMDR_PTR_ADDR(dblock, 1, dmxr);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100348 dmxr = be16_to_cpu(dblock->bb_numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 memcpy(tkp, fkp, sizeof(*fkp) * dmxr);
Christoph Hellwig576039c2006-09-28 10:58:06 +1000350 memcpy(tpp, fpp, sizeof(*fpp) * dmxr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100353STATIC struct xfs_btree_cur *
354xfs_bmbt_dup_cursor(
355 struct xfs_btree_cur *cur)
356{
357 struct xfs_btree_cur *new;
358
359 new = xfs_bmbt_init_cursor(cur->bc_mp, cur->bc_tp,
360 cur->bc_private.b.ip, cur->bc_private.b.whichfork);
361
362 /*
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000363 * Copy the firstblock, dfops, and flags values,
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100364 * since init cursor doesn't get them.
365 */
366 new->bc_private.b.firstblock = cur->bc_private.b.firstblock;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000367 new->bc_private.b.dfops = cur->bc_private.b.dfops;
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100368 new->bc_private.b.flags = cur->bc_private.b.flags;
369
370 return new;
371}
372
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100373STATIC void
374xfs_bmbt_update_cursor(
375 struct xfs_btree_cur *src,
376 struct xfs_btree_cur *dst)
377{
378 ASSERT((dst->bc_private.b.firstblock != NULLFSBLOCK) ||
379 (dst->bc_private.b.ip->i_d.di_flags & XFS_DIFLAG_REALTIME));
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000380 ASSERT(dst->bc_private.b.dfops == src->bc_private.b.dfops);
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100381
382 dst->bc_private.b.allocated += src->bc_private.b.allocated;
383 dst->bc_private.b.firstblock = src->bc_private.b.firstblock;
384
385 src->bc_private.b.allocated = 0;
386}
387
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100388STATIC int
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100389xfs_bmbt_alloc_block(
390 struct xfs_btree_cur *cur,
391 union xfs_btree_ptr *start,
392 union xfs_btree_ptr *new,
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100393 int *stat)
394{
395 xfs_alloc_arg_t args; /* block allocation args */
396 int error; /* error return value */
397
398 memset(&args, 0, sizeof(args));
399 args.tp = cur->bc_tp;
400 args.mp = cur->bc_mp;
401 args.fsbno = cur->bc_private.b.firstblock;
402 args.firstblock = args.fsbno;
Darrick J. Wong340785c2016-08-03 11:33:42 +1000403 xfs_rmap_ino_bmbt_owner(&args.oinfo, cur->bc_private.b.ip->i_ino,
404 cur->bc_private.b.whichfork);
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100405
406 if (args.fsbno == NULLFSBLOCK) {
407 args.fsbno = be64_to_cpu(start->l);
408 args.type = XFS_ALLOCTYPE_START_BNO;
409 /*
410 * Make sure there is sufficient room left in the AG to
411 * complete a full tree split for an extent insert. If
412 * we are converting the middle part of an extent then
413 * we may need space for two tree splits.
414 *
415 * We are relying on the caller to make the correct block
416 * reservation for this operation to succeed. If the
417 * reservation amount is insufficient then we may fail a
418 * block allocation here and corrupt the filesystem.
419 */
Christoph Hellwiga7e5d032016-03-02 09:58:21 +1100420 args.minleft = args.tp->t_blk_res;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000421 } else if (cur->bc_private.b.dfops->dop_low) {
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100422 args.type = XFS_ALLOCTYPE_START_BNO;
423 } else {
424 args.type = XFS_ALLOCTYPE_NEAR_BNO;
425 }
426
427 args.minlen = args.maxlen = args.prod = 1;
428 args.wasdel = cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL;
Christoph Hellwiga7e5d032016-03-02 09:58:21 +1100429 if (!args.wasdel && args.tp->t_blk_res == 0) {
Dave Chinner24513372014-06-25 14:58:08 +1000430 error = -ENOSPC;
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100431 goto error0;
432 }
433 error = xfs_alloc_vextent(&args);
434 if (error)
435 goto error0;
436
437 if (args.fsbno == NULLFSBLOCK && args.minleft) {
438 /*
439 * Could not find an AG with enough free space to satisfy
Christoph Hellwig255c5162017-01-09 13:36:19 -0800440 * a full btree split. Try again and if
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100441 * successful activate the lowspace algorithm.
442 */
443 args.fsbno = 0;
444 args.type = XFS_ALLOCTYPE_FIRST_AG;
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100445 error = xfs_alloc_vextent(&args);
446 if (error)
447 goto error0;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000448 cur->bc_private.b.dfops->dop_low = true;
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100449 }
Christoph Hellwig2fcc3192017-03-08 10:38:53 -0800450 if (WARN_ON_ONCE(args.fsbno == NULLFSBLOCK)) {
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100451 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
452 *stat = 0;
453 return 0;
454 }
455 ASSERT(args.len == 1);
456 cur->bc_private.b.firstblock = args.fsbno;
457 cur->bc_private.b.allocated++;
458 cur->bc_private.b.ip->i_d.di_nblocks++;
459 xfs_trans_log_inode(args.tp, cur->bc_private.b.ip, XFS_ILOG_CORE);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200460 xfs_trans_mod_dquot_byino(args.tp, cur->bc_private.b.ip,
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100461 XFS_TRANS_DQ_BCOUNT, 1L);
462
463 new->l = cpu_to_be64(args.fsbno);
464
465 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
466 *stat = 1;
467 return 0;
468
469 error0:
470 XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);
471 return error;
472}
473
474STATIC int
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100475xfs_bmbt_free_block(
476 struct xfs_btree_cur *cur,
477 struct xfs_buf *bp)
478{
479 struct xfs_mount *mp = cur->bc_mp;
480 struct xfs_inode *ip = cur->bc_private.b.ip;
481 struct xfs_trans *tp = cur->bc_tp;
482 xfs_fsblock_t fsbno = XFS_DADDR_TO_FSB(mp, XFS_BUF_ADDR(bp));
Darrick J. Wong340785c2016-08-03 11:33:42 +1000483 struct xfs_owner_info oinfo;
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100484
Darrick J. Wong340785c2016-08-03 11:33:42 +1000485 xfs_rmap_ino_bmbt_owner(&oinfo, ip->i_ino, cur->bc_private.b.whichfork);
486 xfs_bmap_add_free(mp, cur->bc_private.b.dfops, fsbno, 1, &oinfo);
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100487 ip->i_d.di_nblocks--;
488
489 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200490 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, -1L);
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100491 return 0;
492}
493
494STATIC int
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100495xfs_bmbt_get_minrecs(
496 struct xfs_btree_cur *cur,
497 int level)
498{
Christoph Hellwig60197e82008-10-30 17:11:19 +1100499 if (level == cur->bc_nlevels - 1) {
500 struct xfs_ifork *ifp;
501
502 ifp = XFS_IFORK_PTR(cur->bc_private.b.ip,
503 cur->bc_private.b.whichfork);
504
505 return xfs_bmbt_maxrecs(cur->bc_mp,
506 ifp->if_broot_bytes, level == 0) / 2;
507 }
508
509 return cur->bc_mp->m_bmap_dmnr[level != 0];
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100510}
511
Christoph Hellwig60197e82008-10-30 17:11:19 +1100512int
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100513xfs_bmbt_get_maxrecs(
514 struct xfs_btree_cur *cur,
515 int level)
516{
Christoph Hellwig60197e82008-10-30 17:11:19 +1100517 if (level == cur->bc_nlevels - 1) {
518 struct xfs_ifork *ifp;
519
520 ifp = XFS_IFORK_PTR(cur->bc_private.b.ip,
521 cur->bc_private.b.whichfork);
522
523 return xfs_bmbt_maxrecs(cur->bc_mp,
524 ifp->if_broot_bytes, level == 0);
525 }
526
527 return cur->bc_mp->m_bmap_dmxr[level != 0];
528
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100529}
530
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100531/*
532 * Get the maximum records we could store in the on-disk format.
533 *
534 * For non-root nodes this is equivalent to xfs_bmbt_get_maxrecs, but
535 * for the root node this checks the available space in the dinode fork
536 * so that we can resize the in-memory buffer to match it. After a
537 * resize to the maximum size this function returns the same value
538 * as xfs_bmbt_get_maxrecs for the root node, too.
539 */
540STATIC int
541xfs_bmbt_get_dmaxrecs(
542 struct xfs_btree_cur *cur,
543 int level)
544{
Christoph Hellwig60197e82008-10-30 17:11:19 +1100545 if (level != cur->bc_nlevels - 1)
546 return cur->bc_mp->m_bmap_dmxr[level != 0];
Eric Sandeen152d93b2014-04-14 18:58:51 +1000547 return xfs_bmdr_maxrecs(cur->bc_private.b.forksize, level == 0);
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100548}
549
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100550STATIC void
551xfs_bmbt_init_key_from_rec(
552 union xfs_btree_key *key,
553 union xfs_btree_rec *rec)
554{
555 key->bmbt.br_startoff =
556 cpu_to_be64(xfs_bmbt_disk_get_startoff(&rec->bmbt));
557}
558
559STATIC void
Darrick J. Wong118bb472017-06-16 11:00:08 -0700560xfs_bmbt_init_high_key_from_rec(
561 union xfs_btree_key *key,
562 union xfs_btree_rec *rec)
563{
564 key->bmbt.br_startoff = cpu_to_be64(
565 xfs_bmbt_disk_get_startoff(&rec->bmbt) +
566 xfs_bmbt_disk_get_blockcount(&rec->bmbt) - 1);
567}
568
569STATIC void
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100570xfs_bmbt_init_rec_from_cur(
571 struct xfs_btree_cur *cur,
572 union xfs_btree_rec *rec)
573{
574 xfs_bmbt_disk_set_all(&rec->bmbt, &cur->bc_rec.b);
575}
576
577STATIC void
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100578xfs_bmbt_init_ptr_from_cur(
579 struct xfs_btree_cur *cur,
580 union xfs_btree_ptr *ptr)
581{
582 ptr->l = 0;
583}
584
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700585STATIC int64_t
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100586xfs_bmbt_key_diff(
587 struct xfs_btree_cur *cur,
588 union xfs_btree_key *key)
589{
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700590 return (int64_t)be64_to_cpu(key->bmbt.br_startoff) -
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100591 cur->bc_rec.b.br_startoff;
592}
593
Darrick J. Wong118bb472017-06-16 11:00:08 -0700594STATIC int64_t
595xfs_bmbt_diff_two_keys(
596 struct xfs_btree_cur *cur,
597 union xfs_btree_key *k1,
598 union xfs_btree_key *k2)
599{
600 return (int64_t)be64_to_cpu(k1->bmbt.br_startoff) -
601 be64_to_cpu(k2->bmbt.br_startoff);
602}
603
Dave Chinnerc5c249b2013-08-12 20:49:43 +1000604static bool
Dave Chinner612cfbf2012-11-14 17:52:32 +1100605xfs_bmbt_verify(
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100606 struct xfs_buf *bp)
607{
608 struct xfs_mount *mp = bp->b_target->bt_mount;
609 struct xfs_btree_block *block = XFS_BUF_TO_BLOCK(bp);
610 unsigned int level;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100611
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500612 switch (block->bb_magic) {
613 case cpu_to_be32(XFS_BMAP_CRC_MAGIC):
614 if (!xfs_sb_version_hascrc(&mp->m_sb))
615 return false;
Eric Sandeence748ea2015-07-29 11:53:31 +1000616 if (!uuid_equal(&block->bb_u.l.bb_uuid, &mp->m_sb.sb_meta_uuid))
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500617 return false;
618 if (be64_to_cpu(block->bb_u.l.bb_blkno) != bp->b_bn)
619 return false;
620 /*
621 * XXX: need a better way of verifying the owner here. Right now
622 * just make sure there has been one set.
623 */
624 if (be64_to_cpu(block->bb_u.l.bb_owner) == 0)
625 return false;
626 /* fall through */
627 case cpu_to_be32(XFS_BMAP_MAGIC):
628 break;
629 default:
630 return false;
631 }
632
633 /*
634 * numrecs and level verification.
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100635 *
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500636 * We don't know what fork we belong to, so just verify that the level
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100637 * is less than the maximum of the two. Later checks will be more
638 * precise.
639 */
640 level = be16_to_cpu(block->bb_level);
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500641 if (level > max(mp->m_bm_maxlevels[0], mp->m_bm_maxlevels[1]))
642 return false;
643 if (be16_to_cpu(block->bb_numrecs) > mp->m_bmap_dmxr[level != 0])
644 return false;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100645
646 /* sibling pointer verification */
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500647 if (!block->bb_u.l.bb_leftsib ||
Christoph Hellwigd5cf09b2014-07-30 09:12:05 +1000648 (block->bb_u.l.bb_leftsib != cpu_to_be64(NULLFSBLOCK) &&
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500649 !XFS_FSB_SANITY_CHECK(mp, be64_to_cpu(block->bb_u.l.bb_leftsib))))
650 return false;
651 if (!block->bb_u.l.bb_rightsib ||
Christoph Hellwigd5cf09b2014-07-30 09:12:05 +1000652 (block->bb_u.l.bb_rightsib != cpu_to_be64(NULLFSBLOCK) &&
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500653 !XFS_FSB_SANITY_CHECK(mp, be64_to_cpu(block->bb_u.l.bb_rightsib))))
654 return false;
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100655
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500656 return true;
Dave Chinner612cfbf2012-11-14 17:52:32 +1100657}
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100658
Dave Chinner1813dd62012-11-14 17:54:40 +1100659static void
660xfs_bmbt_read_verify(
661 struct xfs_buf *bp)
662{
Eric Sandeence5028c2014-02-27 15:23:10 +1100663 if (!xfs_btree_lblock_verify_crc(bp))
Dave Chinner24513372014-06-25 14:58:08 +1000664 xfs_buf_ioerror(bp, -EFSBADCRC);
Eric Sandeence5028c2014-02-27 15:23:10 +1100665 else if (!xfs_bmbt_verify(bp))
Dave Chinner24513372014-06-25 14:58:08 +1000666 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100667
668 if (bp->b_error) {
669 trace_xfs_btree_corrupt(bp, _RET_IP_);
670 xfs_verifier_error(bp);
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500671 }
Dave Chinner1813dd62012-11-14 17:54:40 +1100672}
673
674static void
Dave Chinner612cfbf2012-11-14 17:52:32 +1100675xfs_bmbt_write_verify(
676 struct xfs_buf *bp)
677{
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500678 if (!xfs_bmbt_verify(bp)) {
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500679 trace_xfs_btree_corrupt(bp, _RET_IP_);
Dave Chinner24513372014-06-25 14:58:08 +1000680 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100681 xfs_verifier_error(bp);
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500682 return;
683 }
684 xfs_btree_lblock_calc_crc(bp);
Dave Chinner612cfbf2012-11-14 17:52:32 +1100685}
686
Dave Chinner1813dd62012-11-14 17:54:40 +1100687const struct xfs_buf_ops xfs_bmbt_buf_ops = {
Eric Sandeen233135b2016-01-04 16:10:19 +1100688 .name = "xfs_bmbt",
Dave Chinner1813dd62012-11-14 17:54:40 +1100689 .verify_read = xfs_bmbt_read_verify,
690 .verify_write = xfs_bmbt_write_verify,
691};
692
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100693
Christoph Hellwig4a26e662008-10-30 16:58:32 +1100694STATIC int
695xfs_bmbt_keys_inorder(
696 struct xfs_btree_cur *cur,
697 union xfs_btree_key *k1,
698 union xfs_btree_key *k2)
699{
700 return be64_to_cpu(k1->bmbt.br_startoff) <
701 be64_to_cpu(k2->bmbt.br_startoff);
702}
703
704STATIC int
705xfs_bmbt_recs_inorder(
706 struct xfs_btree_cur *cur,
707 union xfs_btree_rec *r1,
708 union xfs_btree_rec *r2)
709{
710 return xfs_bmbt_disk_get_startoff(&r1->bmbt) +
711 xfs_bmbt_disk_get_blockcount(&r1->bmbt) <=
712 xfs_bmbt_disk_get_startoff(&r2->bmbt);
713}
Christoph Hellwig4a26e662008-10-30 16:58:32 +1100714
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100715static const struct xfs_btree_ops xfs_bmbt_ops = {
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100716 .rec_len = sizeof(xfs_bmbt_rec_t),
717 .key_len = sizeof(xfs_bmbt_key_t),
718
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100719 .dup_cursor = xfs_bmbt_dup_cursor,
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100720 .update_cursor = xfs_bmbt_update_cursor,
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100721 .alloc_block = xfs_bmbt_alloc_block,
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100722 .free_block = xfs_bmbt_free_block,
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100723 .get_maxrecs = xfs_bmbt_get_maxrecs,
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100724 .get_minrecs = xfs_bmbt_get_minrecs,
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100725 .get_dmaxrecs = xfs_bmbt_get_dmaxrecs,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100726 .init_key_from_rec = xfs_bmbt_init_key_from_rec,
Darrick J. Wong118bb472017-06-16 11:00:08 -0700727 .init_high_key_from_rec = xfs_bmbt_init_high_key_from_rec,
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100728 .init_rec_from_cur = xfs_bmbt_init_rec_from_cur,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100729 .init_ptr_from_cur = xfs_bmbt_init_ptr_from_cur,
730 .key_diff = xfs_bmbt_key_diff,
Darrick J. Wong118bb472017-06-16 11:00:08 -0700731 .diff_two_keys = xfs_bmbt_diff_two_keys,
Dave Chinner1813dd62012-11-14 17:54:40 +1100732 .buf_ops = &xfs_bmbt_buf_ops,
Christoph Hellwig4a26e662008-10-30 16:58:32 +1100733 .keys_inorder = xfs_bmbt_keys_inorder,
734 .recs_inorder = xfs_bmbt_recs_inorder,
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100735};
736
737/*
738 * Allocate a new bmap btree cursor.
739 */
740struct xfs_btree_cur * /* new bmap btree cursor */
741xfs_bmbt_init_cursor(
742 struct xfs_mount *mp, /* file system mount point */
743 struct xfs_trans *tp, /* transaction pointer */
744 struct xfs_inode *ip, /* inode owning the btree */
745 int whichfork) /* data or attr fork */
746{
747 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
748 struct xfs_btree_cur *cur;
Darrick J. Wong3993bae2016-10-03 09:11:32 -0700749 ASSERT(whichfork != XFS_COW_FORK);
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100750
Darrick J. Wongb24a9782016-12-09 16:49:54 +1100751 cur = kmem_zone_zalloc(xfs_btree_cur_zone, KM_NOFS);
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100752
753 cur->bc_tp = tp;
754 cur->bc_mp = mp;
755 cur->bc_nlevels = be16_to_cpu(ifp->if_broot->bb_level) + 1;
756 cur->bc_btnum = XFS_BTNUM_BMAP;
757 cur->bc_blocklog = mp->m_sb.sb_blocklog;
Dave Chinner11ef38a2016-12-05 14:38:58 +1100758 cur->bc_statoff = XFS_STATS_CALC_INDEX(xs_bmbt_2);
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100759
760 cur->bc_ops = &xfs_bmbt_ops;
Christoph Hellwige99ab902008-10-30 16:54:33 +1100761 cur->bc_flags = XFS_BTREE_LONG_PTRS | XFS_BTREE_ROOT_IN_INODE;
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500762 if (xfs_sb_version_hascrc(&mp->m_sb))
763 cur->bc_flags |= XFS_BTREE_CRC_BLOCKS;
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100764
765 cur->bc_private.b.forksize = XFS_IFORK_SIZE(ip, whichfork);
766 cur->bc_private.b.ip = ip;
767 cur->bc_private.b.firstblock = NULLFSBLOCK;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000768 cur->bc_private.b.dfops = NULL;
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100769 cur->bc_private.b.allocated = 0;
770 cur->bc_private.b.flags = 0;
771 cur->bc_private.b.whichfork = whichfork;
772
773 return cur;
774}
Christoph Hellwig60197e82008-10-30 17:11:19 +1100775
776/*
777 * Calculate number of records in a bmap btree block.
778 */
779int
780xfs_bmbt_maxrecs(
781 struct xfs_mount *mp,
782 int blocklen,
783 int leaf)
784{
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100785 blocklen -= XFS_BMBT_BLOCK_LEN(mp);
Christoph Hellwig60197e82008-10-30 17:11:19 +1100786
787 if (leaf)
788 return blocklen / sizeof(xfs_bmbt_rec_t);
789 return blocklen / (sizeof(xfs_bmbt_key_t) + sizeof(xfs_bmbt_ptr_t));
790}
791
792/*
793 * Calculate number of records in a bmap btree inode root.
794 */
795int
796xfs_bmdr_maxrecs(
Christoph Hellwig60197e82008-10-30 17:11:19 +1100797 int blocklen,
798 int leaf)
799{
800 blocklen -= sizeof(xfs_bmdr_block_t);
801
802 if (leaf)
803 return blocklen / sizeof(xfs_bmdr_rec_t);
804 return blocklen / (sizeof(xfs_bmdr_key_t) + sizeof(xfs_bmdr_ptr_t));
805}
Dave Chinner21b5c972013-08-30 10:23:44 +1000806
807/*
808 * Change the owner of a btree format fork fo the inode passed in. Change it to
809 * the owner of that is passed in so that we can change owners before or after
810 * we switch forks between inodes. The operation that the caller is doing will
811 * determine whether is needs to change owner before or after the switch.
812 *
Dave Chinner638f44162013-08-30 10:23:45 +1000813 * For demand paged transactional modification, the fork switch should be done
814 * after reading in all the blocks, modifying them and pinning them in the
815 * transaction. For modification when the buffers are already pinned in memory,
816 * the fork switch can be done before changing the owner as we won't need to
817 * validate the owner until the btree buffers are unpinned and writes can occur
818 * again.
819 *
820 * For recovery based ownership change, there is no transactional context and
821 * so a buffer list must be supplied so that we can record the buffers that we
822 * modified for the caller to issue IO on.
Dave Chinner21b5c972013-08-30 10:23:44 +1000823 */
824int
825xfs_bmbt_change_owner(
826 struct xfs_trans *tp,
827 struct xfs_inode *ip,
828 int whichfork,
Dave Chinner638f44162013-08-30 10:23:45 +1000829 xfs_ino_t new_owner,
830 struct list_head *buffer_list)
Dave Chinner21b5c972013-08-30 10:23:44 +1000831{
832 struct xfs_btree_cur *cur;
833 int error;
834
Dave Chinner638f44162013-08-30 10:23:45 +1000835 ASSERT(tp || buffer_list);
836 ASSERT(!(tp && buffer_list));
Dave Chinner21b5c972013-08-30 10:23:44 +1000837 if (whichfork == XFS_DATA_FORK)
Dan Carpenteraa9e1042013-09-12 00:17:31 +0300838 ASSERT(ip->i_d.di_format == XFS_DINODE_FMT_BTREE);
Dave Chinner21b5c972013-08-30 10:23:44 +1000839 else
Dan Carpenteraa9e1042013-09-12 00:17:31 +0300840 ASSERT(ip->i_d.di_aformat == XFS_DINODE_FMT_BTREE);
Dave Chinner21b5c972013-08-30 10:23:44 +1000841
842 cur = xfs_bmbt_init_cursor(ip->i_mount, tp, ip, whichfork);
Dave Chinner638f44162013-08-30 10:23:45 +1000843 if (!cur)
Dave Chinner24513372014-06-25 14:58:08 +1000844 return -ENOMEM;
Brian Foster99c794c2017-08-29 10:08:39 -0700845 cur->bc_private.b.flags |= XFS_BTCUR_BPRV_INVALID_OWNER;
Dave Chinner638f44162013-08-30 10:23:45 +1000846
847 error = xfs_btree_change_owner(cur, new_owner, buffer_list);
Dave Chinner21b5c972013-08-30 10:23:44 +1000848 xfs_btree_del_cursor(cur, error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
849 return error;
850}