]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - libxfs/xfs_bmap_btree.c
xfs: optimize _btree_query_all
[thirdparty/xfsprogs-dev.git] / libxfs / xfs_bmap_btree.c
CommitLineData
2bd0ea18 1/*
da23017d
NS
2 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
5000d01d 4 *
da23017d
NS
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
2bd0ea18 7 * published by the Free Software Foundation.
5000d01d 8 *
da23017d
NS
9 * 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.
5000d01d 13 *
da23017d
NS
14 * 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
2bd0ea18 17 */
9c799827 18#include "libxfs_priv.h"
b626fb59
DC
19#include "xfs_fs.h"
20#include "xfs_shared.h"
21#include "xfs_format.h"
22#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
24#include "xfs_bit.h"
25#include "xfs_mount.h"
f944d3d0 26#include "xfs_defer.h"
b626fb59
DC
27#include "xfs_inode.h"
28#include "xfs_trans.h"
29#include "xfs_alloc.h"
30#include "xfs_btree.h"
31#include "xfs_bmap_btree.h"
32#include "xfs_bmap.h"
33#include "xfs_trace.h"
34#include "xfs_cksum.h"
85aec44f 35#include "xfs_rmap.h"
2bd0ea18 36
2bd0ea18
NS
37/*
38 * Determine the extent state.
39 */
40/* ARGSUSED */
41STATIC xfs_exntst_t
42xfs_extent_state(
43 xfs_filblks_t blks,
44 int extent_flag)
45{
46 if (extent_flag) {
47 ASSERT(blks != 0); /* saved for DMIG */
48 return XFS_EXT_UNWRITTEN;
49 }
50 return XFS_EXT_NORM;
51}
52
2bd0ea18
NS
53/*
54 * Convert on-disk form of btree root to in-memory form.
55 */
56void
57xfs_bmdr_to_bmbt(
5dfa5cd2 58 struct xfs_inode *ip,
2bd0ea18
NS
59 xfs_bmdr_block_t *dblock,
60 int dblocklen,
b3563c19 61 struct xfs_btree_block *rblock,
2bd0ea18
NS
62 int rblocklen)
63{
5dfa5cd2 64 struct xfs_mount *mp = ip->i_mount;
2bd0ea18
NS
65 int dmxr;
66 xfs_bmbt_key_t *fkp;
5e656dbb 67 __be64 *fpp;
2bd0ea18 68 xfs_bmbt_key_t *tkp;
5e656dbb 69 __be64 *tpp;
2bd0ea18 70
e394a4b1
ES
71 xfs_btree_init_block_int(mp, rblock, XFS_BUF_DADDR_NULL,
72 XFS_BTNUM_BMAP, 0, 0, ip->i_ino,
f4241a08 73 XFS_BTREE_LONG_PTRS);
6e3140c7
NS
74 rblock->bb_level = dblock->bb_level;
75 ASSERT(be16_to_cpu(rblock->bb_level) > 0);
76 rblock->bb_numrecs = dblock->bb_numrecs;
ff105f75 77 dmxr = xfs_bmdr_maxrecs(dblocklen, 0);
b3563c19
BN
78 fkp = XFS_BMDR_KEY_ADDR(dblock, 1);
79 tkp = XFS_BMBT_KEY_ADDR(mp, rblock, 1);
80 fpp = XFS_BMDR_PTR_ADDR(dblock, 1, dmxr);
81 tpp = XFS_BMAP_BROOT_PTR_ADDR(mp, rblock, 1, rblocklen);
6e3140c7 82 dmxr = be16_to_cpu(dblock->bb_numrecs);
32181a02 83 memcpy(tkp, fkp, sizeof(*fkp) * dmxr);
5e656dbb 84 memcpy(tpp, fpp, sizeof(*fpp) * dmxr);
2bd0ea18
NS
85}
86
2bd0ea18
NS
87/*
88 * Convert a compressed bmap extent record to an uncompressed form.
89 * This code must be in sync with the routines xfs_bmbt_get_startoff,
90 * xfs_bmbt_get_startblock, xfs_bmbt_get_blockcount and xfs_bmbt_get_state.
91 */
56b2de80 92STATIC void
f9e56f43
NS
93__xfs_bmbt_get_all(
94 __uint64_t l0,
95 __uint64_t l1,
96 xfs_bmbt_irec_t *s)
2bd0ea18
NS
97{
98 int ext_flag;
99 xfs_exntst_t st;
100
4542f191
NS
101 ext_flag = (int)(l0 >> (64 - BMBT_EXNTFLAG_BITLEN));
102 s->br_startoff = ((xfs_fileoff_t)l0 &
56b2de80 103 xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN)) >> 9;
56b2de80 104 s->br_startblock = (((xfs_fsblock_t)l0 & xfs_mask64lo(9)) << 43) |
4542f191 105 (((xfs_fsblock_t)l1) >> 21);
56b2de80 106 s->br_blockcount = (xfs_filblks_t)(l1 & xfs_mask64lo(21));
2bd0ea18
NS
107 /* This is xfs_extent_state() in-line */
108 if (ext_flag) {
109 ASSERT(s->br_blockcount != 0); /* saved for DMIG */
110 st = XFS_EXT_UNWRITTEN;
111 } else
112 st = XFS_EXT_NORM;
113 s->br_state = st;
114}
115
f9e56f43
NS
116void
117xfs_bmbt_get_all(
5e656dbb 118 xfs_bmbt_rec_host_t *r,
f9e56f43
NS
119 xfs_bmbt_irec_t *s)
120{
121 __xfs_bmbt_get_all(r->l0, r->l1, s);
122}
123
2bd0ea18 124/*
b34acbba 125 * Extract the blockcount field from an in memory bmap extent record.
2bd0ea18
NS
126 */
127xfs_filblks_t
128xfs_bmbt_get_blockcount(
5e656dbb 129 xfs_bmbt_rec_host_t *r)
2bd0ea18 130{
56b2de80 131 return (xfs_filblks_t)(r->l1 & xfs_mask64lo(21));
2bd0ea18
NS
132}
133
134/*
b34acbba 135 * Extract the startblock field from an in memory bmap extent record.
2bd0ea18
NS
136 */
137xfs_fsblock_t
138xfs_bmbt_get_startblock(
5e656dbb 139 xfs_bmbt_rec_host_t *r)
2bd0ea18 140{
56b2de80 141 return (((xfs_fsblock_t)r->l0 & xfs_mask64lo(9)) << 43) |
f9e56f43 142 (((xfs_fsblock_t)r->l1) >> 21);
f9e56f43
NS
143}
144
145/*
b34acbba 146 * Extract the startoff field from an in memory bmap extent record.
f9e56f43
NS
147 */
148xfs_fileoff_t
149xfs_bmbt_get_startoff(
5e656dbb 150 xfs_bmbt_rec_host_t *r)
f9e56f43
NS
151{
152 return ((xfs_fileoff_t)r->l0 &
56b2de80 153 xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN)) >> 9;
f9e56f43
NS
154}
155
156xfs_exntst_t
157xfs_bmbt_get_state(
5e656dbb 158 xfs_bmbt_rec_host_t *r)
f9e56f43
NS
159{
160 int ext_flag;
161
162 ext_flag = (int)((r->l0) >> (64 - BMBT_EXNTFLAG_BITLEN));
163 return xfs_extent_state(xfs_bmbt_get_blockcount(r),
b194c7d8 164 ext_flag);
2bd0ea18
NS
165}
166
2bd0ea18 167/*
b194c7d8 168 * Extract the blockcount field from an on disk bmap extent record.
2bd0ea18 169 */
b194c7d8
BN
170xfs_filblks_t
171xfs_bmbt_disk_get_blockcount(
172 xfs_bmbt_rec_t *r)
2bd0ea18 173{
56b2de80 174 return (xfs_filblks_t)(be64_to_cpu(r->l1) & xfs_mask64lo(21));
2bd0ea18
NS
175}
176
2bd0ea18 177/*
b194c7d8 178 * Extract the startoff field from a disk format bmap extent record.
2bd0ea18 179 */
b194c7d8
BN
180xfs_fileoff_t
181xfs_bmbt_disk_get_startoff(
182 xfs_bmbt_rec_t *r)
2bd0ea18 183{
b194c7d8 184 return ((xfs_fileoff_t)be64_to_cpu(r->l0) &
56b2de80 185 xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN)) >> 9;
2bd0ea18
NS
186}
187
b194c7d8 188
f9e56f43
NS
189/*
190 * Set all the fields in a bmap extent record from the arguments.
191 */
192void
193xfs_bmbt_set_allf(
5e656dbb
BN
194 xfs_bmbt_rec_host_t *r,
195 xfs_fileoff_t startoff,
196 xfs_fsblock_t startblock,
197 xfs_filblks_t blockcount,
198 xfs_exntst_t state)
f9e56f43 199{
5e656dbb
BN
200 int extent_flag = (state == XFS_EXT_NORM) ? 0 : 1;
201
202 ASSERT(state == XFS_EXT_NORM || state == XFS_EXT_UNWRITTEN);
56b2de80
DC
203 ASSERT((startoff & xfs_mask64hi(64-BMBT_STARTOFF_BITLEN)) == 0);
204 ASSERT((blockcount & xfs_mask64hi(64-BMBT_BLOCKCOUNT_BITLEN)) == 0);
f9e56f43 205
56b2de80 206 ASSERT((startblock & xfs_mask64hi(64-BMBT_STARTBLOCK_BITLEN)) == 0);
5e656dbb 207
f9e56f43 208 r->l0 = ((xfs_bmbt_rec_base_t)extent_flag << 63) |
5e656dbb
BN
209 ((xfs_bmbt_rec_base_t)startoff << 9) |
210 ((xfs_bmbt_rec_base_t)startblock >> 43);
211 r->l1 = ((xfs_bmbt_rec_base_t)startblock << 21) |
212 ((xfs_bmbt_rec_base_t)blockcount &
56b2de80 213 (xfs_bmbt_rec_base_t)xfs_mask64lo(21));
f9e56f43
NS
214}
215
f9e56f43
NS
216/*
217 * Set all the fields in a bmap extent record from the uncompressed form.
218 */
219void
5e656dbb
BN
220xfs_bmbt_set_all(
221 xfs_bmbt_rec_host_t *r,
222 xfs_bmbt_irec_t *s)
f9e56f43 223{
5e656dbb
BN
224 xfs_bmbt_set_allf(r, s->br_startoff, s->br_startblock,
225 s->br_blockcount, s->br_state);
2bd0ea18
NS
226}
227
5e656dbb 228
2bd0ea18 229/*
f9e56f43 230 * Set all the fields in a disk format bmap extent record from the arguments.
2bd0ea18
NS
231 */
232void
f9e56f43 233xfs_bmbt_disk_set_allf(
5e656dbb
BN
234 xfs_bmbt_rec_t *r,
235 xfs_fileoff_t startoff,
236 xfs_fsblock_t startblock,
237 xfs_filblks_t blockcount,
238 xfs_exntst_t state)
2bd0ea18 239{
5e656dbb
BN
240 int extent_flag = (state == XFS_EXT_NORM) ? 0 : 1;
241
242 ASSERT(state == XFS_EXT_NORM || state == XFS_EXT_UNWRITTEN);
56b2de80
DC
243 ASSERT((startoff & xfs_mask64hi(64-BMBT_STARTOFF_BITLEN)) == 0);
244 ASSERT((blockcount & xfs_mask64hi(64-BMBT_BLOCKCOUNT_BITLEN)) == 0);
56b2de80 245 ASSERT((startblock & xfs_mask64hi(64-BMBT_STARTBLOCK_BITLEN)) == 0);
5e656dbb
BN
246
247 r->l0 = cpu_to_be64(
248 ((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 = cpu_to_be64(
252 ((xfs_bmbt_rec_base_t)startblock << 21) |
253 ((xfs_bmbt_rec_base_t)blockcount &
56b2de80 254 (xfs_bmbt_rec_base_t)xfs_mask64lo(21)));
2bd0ea18 255}
5e656dbb
BN
256
257/*
258 * Set all the fields in a bmap extent record from the uncompressed form.
259 */
56b2de80 260STATIC void
5e656dbb
BN
261xfs_bmbt_disk_set_all(
262 xfs_bmbt_rec_t *r,
263 xfs_bmbt_irec_t *s)
264{
265 xfs_bmbt_disk_set_allf(r, s->br_startoff, s->br_startblock,
266 s->br_blockcount, s->br_state);
267}
2bd0ea18
NS
268
269/*
270 * Set the blockcount field in a bmap extent record.
271 */
272void
273xfs_bmbt_set_blockcount(
5e656dbb 274 xfs_bmbt_rec_host_t *r,
2bd0ea18
NS
275 xfs_filblks_t v)
276{
56b2de80
DC
277 ASSERT((v & xfs_mask64hi(43)) == 0);
278 r->l1 = (r->l1 & (xfs_bmbt_rec_base_t)xfs_mask64hi(43)) |
279 (xfs_bmbt_rec_base_t)(v & xfs_mask64lo(21));
2bd0ea18
NS
280}
281
282/*
283 * Set the startblock field in a bmap extent record.
284 */
285void
286xfs_bmbt_set_startblock(
5e656dbb 287 xfs_bmbt_rec_host_t *r,
2bd0ea18
NS
288 xfs_fsblock_t v)
289{
56b2de80
DC
290 ASSERT((v & xfs_mask64hi(12)) == 0);
291 r->l0 = (r->l0 & (xfs_bmbt_rec_base_t)xfs_mask64hi(55)) |
f9e56f43 292 (xfs_bmbt_rec_base_t)(v >> 43);
56b2de80 293 r->l1 = (r->l1 & (xfs_bmbt_rec_base_t)xfs_mask64lo(21)) |
f9e56f43 294 (xfs_bmbt_rec_base_t)(v << 21);
2bd0ea18
NS
295}
296
297/*
298 * Set the startoff field in a bmap extent record.
299 */
300void
301xfs_bmbt_set_startoff(
5e656dbb 302 xfs_bmbt_rec_host_t *r,
2bd0ea18
NS
303 xfs_fileoff_t v)
304{
56b2de80
DC
305 ASSERT((v & xfs_mask64hi(9)) == 0);
306 r->l0 = (r->l0 & (xfs_bmbt_rec_base_t) xfs_mask64hi(1)) |
2bd0ea18 307 ((xfs_bmbt_rec_base_t)v << 9) |
56b2de80 308 (r->l0 & (xfs_bmbt_rec_base_t)xfs_mask64lo(9));
2bd0ea18
NS
309}
310
311/*
312 * Set the extent state field in a bmap extent record.
313 */
314void
315xfs_bmbt_set_state(
5e656dbb 316 xfs_bmbt_rec_host_t *r,
2bd0ea18
NS
317 xfs_exntst_t v)
318{
319 ASSERT(v == XFS_EXT_NORM || v == XFS_EXT_UNWRITTEN);
320 if (v == XFS_EXT_NORM)
56b2de80 321 r->l0 &= xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN);
2bd0ea18 322 else
56b2de80 323 r->l0 |= xfs_mask64hi(BMBT_EXNTFLAG_BITLEN);
2bd0ea18
NS
324}
325
326/*
327 * Convert in-memory form of btree root to on-disk form.
328 */
329void
330xfs_bmbt_to_bmdr(
b3563c19
BN
331 struct xfs_mount *mp,
332 struct xfs_btree_block *rblock,
2bd0ea18
NS
333 int rblocklen,
334 xfs_bmdr_block_t *dblock,
335 int dblocklen)
336{
337 int dmxr;
338 xfs_bmbt_key_t *fkp;
5e656dbb 339 __be64 *fpp;
2bd0ea18 340 xfs_bmbt_key_t *tkp;
5e656dbb 341 __be64 *tpp;
2bd0ea18 342
5dfa5cd2
DC
343 if (xfs_sb_version_hascrc(&mp->m_sb)) {
344 ASSERT(rblock->bb_magic == cpu_to_be32(XFS_BMAP_CRC_MAGIC));
9c4e12fb
ES
345 ASSERT(uuid_equal(&rblock->bb_u.l.bb_uuid,
346 &mp->m_sb.sb_meta_uuid));
5dfa5cd2
DC
347 ASSERT(rblock->bb_u.l.bb_blkno ==
348 cpu_to_be64(XFS_BUF_DADDR_NULL));
349 } else
350 ASSERT(rblock->bb_magic == cpu_to_be32(XFS_BMAP_MAGIC));
5a35bf2c
DC
351 ASSERT(rblock->bb_u.l.bb_leftsib == cpu_to_be64(NULLFSBLOCK));
352 ASSERT(rblock->bb_u.l.bb_rightsib == cpu_to_be64(NULLFSBLOCK));
a2ceac1f 353 ASSERT(rblock->bb_level != 0);
6e3140c7
NS
354 dblock->bb_level = rblock->bb_level;
355 dblock->bb_numrecs = rblock->bb_numrecs;
ff105f75 356 dmxr = xfs_bmdr_maxrecs(dblocklen, 0);
b3563c19
BN
357 fkp = XFS_BMBT_KEY_ADDR(mp, rblock, 1);
358 tkp = XFS_BMDR_KEY_ADDR(dblock, 1);
359 fpp = XFS_BMAP_BROOT_PTR_ADDR(mp, rblock, 1, rblocklen);
360 tpp = XFS_BMDR_PTR_ADDR(dblock, 1, dmxr);
6e3140c7 361 dmxr = be16_to_cpu(dblock->bb_numrecs);
32181a02 362 memcpy(tkp, fkp, sizeof(*fkp) * dmxr);
5e656dbb 363 memcpy(tpp, fpp, sizeof(*fpp) * dmxr);
2bd0ea18
NS
364}
365
b194c7d8
BN
366STATIC struct xfs_btree_cur *
367xfs_bmbt_dup_cursor(
368 struct xfs_btree_cur *cur)
369{
370 struct xfs_btree_cur *new;
371
372 new = xfs_bmbt_init_cursor(cur->bc_mp, cur->bc_tp,
373 cur->bc_private.b.ip, cur->bc_private.b.whichfork);
374
375 /*
f33cea1a 376 * Copy the firstblock, dfops, and flags values,
b194c7d8
BN
377 * since init cursor doesn't get them.
378 */
379 new->bc_private.b.firstblock = cur->bc_private.b.firstblock;
f33cea1a 380 new->bc_private.b.dfops = cur->bc_private.b.dfops;
b194c7d8
BN
381 new->bc_private.b.flags = cur->bc_private.b.flags;
382
383 return new;
384}
385
386STATIC void
387xfs_bmbt_update_cursor(
388 struct xfs_btree_cur *src,
389 struct xfs_btree_cur *dst)
390{
391 ASSERT((dst->bc_private.b.firstblock != NULLFSBLOCK) ||
392 (dst->bc_private.b.ip->i_d.di_flags & XFS_DIFLAG_REALTIME));
f33cea1a 393 ASSERT(dst->bc_private.b.dfops == src->bc_private.b.dfops);
b194c7d8
BN
394
395 dst->bc_private.b.allocated += src->bc_private.b.allocated;
396 dst->bc_private.b.firstblock = src->bc_private.b.firstblock;
397
398 src->bc_private.b.allocated = 0;
399}
400
401STATIC int
402xfs_bmbt_alloc_block(
403 struct xfs_btree_cur *cur,
404 union xfs_btree_ptr *start,
405 union xfs_btree_ptr *new,
b194c7d8
BN
406 int *stat)
407{
408 xfs_alloc_arg_t args; /* block allocation args */
409 int error; /* error return value */
410
411 memset(&args, 0, sizeof(args));
412 args.tp = cur->bc_tp;
413 args.mp = cur->bc_mp;
414 args.fsbno = cur->bc_private.b.firstblock;
415 args.firstblock = args.fsbno;
85aec44f
DW
416 xfs_rmap_ino_bmbt_owner(&args.oinfo, cur->bc_private.b.ip->i_ino,
417 cur->bc_private.b.whichfork);
b194c7d8
BN
418
419 if (args.fsbno == NULLFSBLOCK) {
420 args.fsbno = be64_to_cpu(start->l);
421 args.type = XFS_ALLOCTYPE_START_BNO;
422 /*
423 * Make sure there is sufficient room left in the AG to
424 * complete a full tree split for an extent insert. If
425 * we are converting the middle part of an extent then
426 * we may need space for two tree splits.
427 *
428 * We are relying on the caller to make the correct block
429 * reservation for this operation to succeed. If the
430 * reservation amount is insufficient then we may fail a
431 * block allocation here and corrupt the filesystem.
432 */
0268fdc3 433 args.minleft = args.tp->t_blk_res;
f33cea1a 434 } else if (cur->bc_private.b.dfops->dop_low) {
b194c7d8
BN
435 args.type = XFS_ALLOCTYPE_START_BNO;
436 } else {
437 args.type = XFS_ALLOCTYPE_NEAR_BNO;
438 }
439
440 args.minlen = args.maxlen = args.prod = 1;
441 args.wasdel = cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL;
0268fdc3 442 if (!args.wasdel && args.tp->t_blk_res == 0) {
12b53197 443 error = -ENOSPC;
b194c7d8
BN
444 goto error0;
445 }
446 error = xfs_alloc_vextent(&args);
447 if (error)
448 goto error0;
449
450 if (args.fsbno == NULLFSBLOCK && args.minleft) {
451 /*
452 * Could not find an AG with enough free space to satisfy
a3b4a951 453 * a full btree split. Try again and if
b194c7d8
BN
454 * successful activate the lowspace algorithm.
455 */
456 args.fsbno = 0;
457 args.type = XFS_ALLOCTYPE_FIRST_AG;
b194c7d8
BN
458 error = xfs_alloc_vextent(&args);
459 if (error)
460 goto error0;
f33cea1a 461 cur->bc_private.b.dfops->dop_low = true;
b194c7d8 462 }
c1587ecf 463 if (WARN_ON_ONCE(args.fsbno == NULLFSBLOCK)) {
b194c7d8
BN
464 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
465 *stat = 0;
466 return 0;
467 }
468 ASSERT(args.len == 1);
469 cur->bc_private.b.firstblock = args.fsbno;
470 cur->bc_private.b.allocated++;
471 cur->bc_private.b.ip->i_d.di_nblocks++;
472 xfs_trans_log_inode(args.tp, cur->bc_private.b.ip, XFS_ILOG_CORE);
56b2de80 473 xfs_trans_mod_dquot_byino(args.tp, cur->bc_private.b.ip,
b194c7d8
BN
474 XFS_TRANS_DQ_BCOUNT, 1L);
475
476 new->l = cpu_to_be64(args.fsbno);
477
478 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
479 *stat = 1;
480 return 0;
481
482 error0:
483 XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);
484 return error;
485}
486
487STATIC int
488xfs_bmbt_free_block(
489 struct xfs_btree_cur *cur,
490 struct xfs_buf *bp)
491{
492 struct xfs_mount *mp = cur->bc_mp;
493 struct xfs_inode *ip = cur->bc_private.b.ip;
494 struct xfs_trans *tp = cur->bc_tp;
495 xfs_fsblock_t fsbno = XFS_DADDR_TO_FSB(mp, XFS_BUF_ADDR(bp));
85aec44f 496 struct xfs_owner_info oinfo;
b194c7d8 497
85aec44f
DW
498 xfs_rmap_ino_bmbt_owner(&oinfo, ip->i_ino, cur->bc_private.b.whichfork);
499 xfs_bmap_add_free(mp, cur->bc_private.b.dfops, fsbno, 1, &oinfo);
b194c7d8
BN
500 ip->i_d.di_nblocks--;
501
502 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
56b2de80 503 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, -1L);
b194c7d8
BN
504 return 0;
505}
506
507STATIC int
508xfs_bmbt_get_minrecs(
509 struct xfs_btree_cur *cur,
510 int level)
511{
b3563c19
BN
512 if (level == cur->bc_nlevels - 1) {
513 struct xfs_ifork *ifp;
514
515 ifp = XFS_IFORK_PTR(cur->bc_private.b.ip,
516 cur->bc_private.b.whichfork);
517
518 return xfs_bmbt_maxrecs(cur->bc_mp,
519 ifp->if_broot_bytes, level == 0) / 2;
520 }
521
522 return cur->bc_mp->m_bmap_dmnr[level != 0];
b194c7d8
BN
523}
524
b3563c19 525int
b194c7d8
BN
526xfs_bmbt_get_maxrecs(
527 struct xfs_btree_cur *cur,
528 int level)
529{
b3563c19
BN
530 if (level == cur->bc_nlevels - 1) {
531 struct xfs_ifork *ifp;
532
533 ifp = XFS_IFORK_PTR(cur->bc_private.b.ip,
534 cur->bc_private.b.whichfork);
535
536 return xfs_bmbt_maxrecs(cur->bc_mp,
537 ifp->if_broot_bytes, level == 0);
538 }
539
540 return cur->bc_mp->m_bmap_dmxr[level != 0];
541
b194c7d8
BN
542}
543
544/*
545 * Get the maximum records we could store in the on-disk format.
546 *
547 * For non-root nodes this is equivalent to xfs_bmbt_get_maxrecs, but
548 * for the root node this checks the available space in the dinode fork
549 * so that we can resize the in-memory buffer to match it. After a
550 * resize to the maximum size this function returns the same value
551 * as xfs_bmbt_get_maxrecs for the root node, too.
552 */
553STATIC int
554xfs_bmbt_get_dmaxrecs(
555 struct xfs_btree_cur *cur,
556 int level)
557{
b3563c19
BN
558 if (level != cur->bc_nlevels - 1)
559 return cur->bc_mp->m_bmap_dmxr[level != 0];
ff105f75 560 return xfs_bmdr_maxrecs(cur->bc_private.b.forksize, level == 0);
b194c7d8
BN
561}
562
563STATIC void
564xfs_bmbt_init_key_from_rec(
565 union xfs_btree_key *key,
566 union xfs_btree_rec *rec)
567{
568 key->bmbt.br_startoff =
569 cpu_to_be64(xfs_bmbt_disk_get_startoff(&rec->bmbt));
570}
571
b194c7d8
BN
572STATIC void
573xfs_bmbt_init_rec_from_cur(
574 struct xfs_btree_cur *cur,
575 union xfs_btree_rec *rec)
576{
577 xfs_bmbt_disk_set_all(&rec->bmbt, &cur->bc_rec.b);
578}
579
580STATIC void
581xfs_bmbt_init_ptr_from_cur(
582 struct xfs_btree_cur *cur,
583 union xfs_btree_ptr *ptr)
584{
585 ptr->l = 0;
586}
587
588STATIC __int64_t
589xfs_bmbt_key_diff(
590 struct xfs_btree_cur *cur,
591 union xfs_btree_key *key)
592{
593 return (__int64_t)be64_to_cpu(key->bmbt.br_startoff) -
594 cur->bc_rec.b.br_startoff;
595}
596
5dfa5cd2 597static bool
a2ceac1f
DC
598xfs_bmbt_verify(
599 struct xfs_buf *bp)
600{
601 struct xfs_mount *mp = bp->b_target->bt_mount;
602 struct xfs_btree_block *block = XFS_BUF_TO_BLOCK(bp);
603 unsigned int level;
a2ceac1f 604
c0adfb03
DC
605 switch (block->bb_magic) {
606 case cpu_to_be32(XFS_BMAP_CRC_MAGIC):
5dfa5cd2
DC
607 if (!xfs_sb_version_hascrc(&mp->m_sb))
608 return false;
9c4e12fb 609 if (!uuid_equal(&block->bb_u.l.bb_uuid, &mp->m_sb.sb_meta_uuid))
5dfa5cd2 610 return false;
c0adfb03 611 if (be64_to_cpu(block->bb_u.l.bb_blkno) != bp->b_bn)
5dfa5cd2
DC
612 return false;
613 /*
614 * XXX: need a better way of verifying the owner here. Right now
615 * just make sure there has been one set.
616 */
617 if (be64_to_cpu(block->bb_u.l.bb_owner) == 0)
618 return false;
619 /* fall through */
c0adfb03 620 case cpu_to_be32(XFS_BMAP_MAGIC):
5dfa5cd2
DC
621 break;
622 default:
623 return false;
624 }
625
626 /*
627 * numrecs and level verification.
a2ceac1f 628 *
5dfa5cd2 629 * We don't know what fork we belong to, so just verify that the level
a2ceac1f
DC
630 * is less than the maximum of the two. Later checks will be more
631 * precise.
632 */
633 level = be16_to_cpu(block->bb_level);
e6d77a21 634 if (level > max(mp->m_bm_maxlevels[0], mp->m_bm_maxlevels[1]))
5dfa5cd2
DC
635 return false;
636 if (be16_to_cpu(block->bb_numrecs) > mp->m_bmap_dmxr[level != 0])
637 return false;
a2ceac1f
DC
638
639 /* sibling pointer verification */
5dfa5cd2 640 if (!block->bb_u.l.bb_leftsib ||
5a35bf2c 641 (block->bb_u.l.bb_leftsib != cpu_to_be64(NULLFSBLOCK) &&
5dfa5cd2
DC
642 !XFS_FSB_SANITY_CHECK(mp, be64_to_cpu(block->bb_u.l.bb_leftsib))))
643 return false;
644 if (!block->bb_u.l.bb_rightsib ||
5a35bf2c 645 (block->bb_u.l.bb_rightsib != cpu_to_be64(NULLFSBLOCK) &&
5dfa5cd2
DC
646 !XFS_FSB_SANITY_CHECK(mp, be64_to_cpu(block->bb_u.l.bb_rightsib))))
647 return false;
648
649 return true;
a2ceac1f
DC
650}
651
652static void
653xfs_bmbt_read_verify(
654 struct xfs_buf *bp)
655{
45922933 656 if (!xfs_btree_lblock_verify_crc(bp))
12b53197 657 xfs_buf_ioerror(bp, -EFSBADCRC);
45922933 658 else if (!xfs_bmbt_verify(bp))
12b53197 659 xfs_buf_ioerror(bp, -EFSCORRUPTED);
45922933
DC
660
661 if (bp->b_error) {
662 trace_xfs_btree_corrupt(bp, _RET_IP_);
663 xfs_verifier_error(bp);
5dfa5cd2 664 }
a2ceac1f
DC
665}
666
667static void
668xfs_bmbt_write_verify(
669 struct xfs_buf *bp)
670{
5dfa5cd2 671 if (!xfs_bmbt_verify(bp)) {
5dfa5cd2 672 trace_xfs_btree_corrupt(bp, _RET_IP_);
12b53197 673 xfs_buf_ioerror(bp, -EFSCORRUPTED);
45922933 674 xfs_verifier_error(bp);
5dfa5cd2
DC
675 return;
676 }
677 xfs_btree_lblock_calc_crc(bp);
a2ceac1f
DC
678}
679
680const struct xfs_buf_ops xfs_bmbt_buf_ops = {
a3fac935 681 .name = "xfs_bmbt",
a2ceac1f
DC
682 .verify_read = xfs_bmbt_read_verify,
683 .verify_write = xfs_bmbt_write_verify,
684};
685
686
c0adfb03 687#if defined(DEBUG) || defined(XFS_WARN)
b194c7d8
BN
688STATIC int
689xfs_bmbt_keys_inorder(
690 struct xfs_btree_cur *cur,
691 union xfs_btree_key *k1,
692 union xfs_btree_key *k2)
693{
694 return be64_to_cpu(k1->bmbt.br_startoff) <
695 be64_to_cpu(k2->bmbt.br_startoff);
696}
697
698STATIC int
699xfs_bmbt_recs_inorder(
700 struct xfs_btree_cur *cur,
701 union xfs_btree_rec *r1,
702 union xfs_btree_rec *r2)
703{
704 return xfs_bmbt_disk_get_startoff(&r1->bmbt) +
705 xfs_bmbt_disk_get_blockcount(&r1->bmbt) <=
706 xfs_bmbt_disk_get_startoff(&r2->bmbt);
707}
708#endif /* DEBUG */
709
b194c7d8
BN
710static const struct xfs_btree_ops xfs_bmbt_ops = {
711 .rec_len = sizeof(xfs_bmbt_rec_t),
712 .key_len = sizeof(xfs_bmbt_key_t),
713
714 .dup_cursor = xfs_bmbt_dup_cursor,
715 .update_cursor = xfs_bmbt_update_cursor,
716 .alloc_block = xfs_bmbt_alloc_block,
717 .free_block = xfs_bmbt_free_block,
718 .get_maxrecs = xfs_bmbt_get_maxrecs,
719 .get_minrecs = xfs_bmbt_get_minrecs,
720 .get_dmaxrecs = xfs_bmbt_get_dmaxrecs,
721 .init_key_from_rec = xfs_bmbt_init_key_from_rec,
b194c7d8
BN
722 .init_rec_from_cur = xfs_bmbt_init_rec_from_cur,
723 .init_ptr_from_cur = xfs_bmbt_init_ptr_from_cur,
724 .key_diff = xfs_bmbt_key_diff,
a2ceac1f 725 .buf_ops = &xfs_bmbt_buf_ops,
c0adfb03 726#if defined(DEBUG) || defined(XFS_WARN)
b194c7d8
BN
727 .keys_inorder = xfs_bmbt_keys_inorder,
728 .recs_inorder = xfs_bmbt_recs_inorder,
729#endif
b194c7d8
BN
730};
731
732/*
733 * Allocate a new bmap btree cursor.
734 */
735struct xfs_btree_cur * /* new bmap btree cursor */
736xfs_bmbt_init_cursor(
737 struct xfs_mount *mp, /* file system mount point */
738 struct xfs_trans *tp, /* transaction pointer */
739 struct xfs_inode *ip, /* inode owning the btree */
740 int whichfork) /* data or attr fork */
741{
742 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
743 struct xfs_btree_cur *cur;
cb8a004a 744 ASSERT(whichfork != XFS_COW_FORK);
b194c7d8 745
762989ef 746 cur = kmem_zone_zalloc(xfs_btree_cur_zone, KM_NOFS);
b194c7d8
BN
747
748 cur->bc_tp = tp;
749 cur->bc_mp = mp;
750 cur->bc_nlevels = be16_to_cpu(ifp->if_broot->bb_level) + 1;
751 cur->bc_btnum = XFS_BTNUM_BMAP;
752 cur->bc_blocklog = mp->m_sb.sb_blocklog;
5d8acc46 753 cur->bc_statoff = XFS_STATS_CALC_INDEX(xs_bmbt_2);
b194c7d8
BN
754
755 cur->bc_ops = &xfs_bmbt_ops;
756 cur->bc_flags = XFS_BTREE_LONG_PTRS | XFS_BTREE_ROOT_IN_INODE;
5dfa5cd2
DC
757 if (xfs_sb_version_hascrc(&mp->m_sb))
758 cur->bc_flags |= XFS_BTREE_CRC_BLOCKS;
b194c7d8
BN
759
760 cur->bc_private.b.forksize = XFS_IFORK_SIZE(ip, whichfork);
761 cur->bc_private.b.ip = ip;
762 cur->bc_private.b.firstblock = NULLFSBLOCK;
f33cea1a 763 cur->bc_private.b.dfops = NULL;
b194c7d8
BN
764 cur->bc_private.b.allocated = 0;
765 cur->bc_private.b.flags = 0;
766 cur->bc_private.b.whichfork = whichfork;
767
768 return cur;
769}
b3563c19
BN
770
771/*
772 * Calculate number of records in a bmap btree block.
773 */
774int
775xfs_bmbt_maxrecs(
776 struct xfs_mount *mp,
777 int blocklen,
778 int leaf)
779{
780 blocklen -= XFS_BMBT_BLOCK_LEN(mp);
781
782 if (leaf)
783 return blocklen / sizeof(xfs_bmbt_rec_t);
784 return blocklen / (sizeof(xfs_bmbt_key_t) + sizeof(xfs_bmbt_ptr_t));
785}
786
787/*
788 * Calculate number of records in a bmap btree inode root.
789 */
790int
791xfs_bmdr_maxrecs(
b3563c19
BN
792 int blocklen,
793 int leaf)
794{
795 blocklen -= sizeof(xfs_bmdr_block_t);
796
797 if (leaf)
798 return blocklen / sizeof(xfs_bmdr_rec_t);
799 return blocklen / (sizeof(xfs_bmdr_key_t) + sizeof(xfs_bmdr_ptr_t));
800}
9c6ebc42
DC
801
802/*
ff105f75 803 * Change the owner of a btree format fork fo the inode passed in. Change it to
9c6ebc42
DC
804 * the owner of that is passed in so that we can change owners before or after
805 * we switch forks between inodes. The operation that the caller is doing will
806 * determine whether is needs to change owner before or after the switch.
807 *
808 * For demand paged transactional modification, the fork switch should be done
809 * after reading in all the blocks, modifying them and pinning them in the
810 * transaction. For modification when the buffers are already pinned in memory,
811 * the fork switch can be done before changing the owner as we won't need to
812 * validate the owner until the btree buffers are unpinned and writes can occur
813 * again.
814 *
815 * For recovery based ownership change, there is no transactional context and
816 * so a buffer list must be supplied so that we can record the buffers that we
817 * modified for the caller to issue IO on.
818 */
819int
820xfs_bmbt_change_owner(
821 struct xfs_trans *tp,
822 struct xfs_inode *ip,
823 int whichfork,
824 xfs_ino_t new_owner,
825 struct list_head *buffer_list)
826{
827 struct xfs_btree_cur *cur;
828 int error;
829
830 ASSERT(tp || buffer_list);
831 ASSERT(!(tp && buffer_list));
832 if (whichfork == XFS_DATA_FORK)
833 ASSERT(ip->i_d.di_format == XFS_DINODE_FMT_BTREE);
834 else
835 ASSERT(ip->i_d.di_aformat == XFS_DINODE_FMT_BTREE);
836
837 cur = xfs_bmbt_init_cursor(ip->i_mount, tp, ip, whichfork);
838 if (!cur)
12b53197 839 return -ENOMEM;
9c6ebc42
DC
840
841 error = xfs_btree_change_owner(cur, new_owner, buffer_list);
842 xfs_btree_del_cursor(cur, error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
843 return error;
844}