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