2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
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.
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.
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
20 #include "xfs_shared.h"
21 #include "xfs_format.h"
22 #include "xfs_log_format.h"
23 #include "xfs_trans_resv.h"
28 #include "xfs_mount.h"
29 #include "xfs_da_format.h"
30 #include "xfs_da_btree.h"
32 #include "xfs_inode.h"
33 #include "xfs_btree.h"
34 #include "xfs_trans.h"
35 #include "xfs_inode_item.h"
36 #include "xfs_extfree_item.h"
37 #include "xfs_alloc.h"
39 #include "xfs_bmap_util.h"
40 #include "xfs_bmap_btree.h"
41 #include "xfs_rtalloc.h"
42 #include "xfs_error.h"
43 #include "xfs_quota.h"
44 #include "xfs_trans_space.h"
45 #include "xfs_buf_item.h"
46 #include "xfs_trace.h"
47 #include "xfs_symlink.h"
48 #include "xfs_attr_leaf.h"
49 #include "xfs_dinode.h"
50 #include "xfs_filestream.h"
53 kmem_zone_t
*xfs_bmap_free_item_zone
;
56 * Miscellaneous helper functions
60 * Compute and fill in the value of the maximum depth of a bmap btree
61 * in this filesystem. Done once, during mount.
64 xfs_bmap_compute_maxlevels(
65 xfs_mount_t
*mp
, /* file system mount structure */
66 int whichfork
) /* data or attr fork */
68 int level
; /* btree level */
69 uint maxblocks
; /* max blocks at this level */
70 uint maxleafents
; /* max leaf entries possible */
71 int maxrootrecs
; /* max records in root block */
72 int minleafrecs
; /* min records in leaf block */
73 int minnoderecs
; /* min records in node block */
74 int sz
; /* root block size */
77 * The maximum number of extents in a file, hence the maximum
78 * number of leaf entries, is controlled by the type of di_nextents
79 * (a signed 32-bit number, xfs_extnum_t), or by di_anextents
80 * (a signed 16-bit number, xfs_aextnum_t).
82 * Note that we can no longer assume that if we are in ATTR1 that
83 * the fork offset of all the inodes will be
84 * (xfs_default_attroffset(ip) >> 3) because we could have mounted
85 * with ATTR2 and then mounted back with ATTR1, keeping the
86 * di_forkoff's fixed but probably at various positions. Therefore,
87 * for both ATTR1 and ATTR2 we have to assume the worst case scenario
88 * of a minimum size available.
90 if (whichfork
== XFS_DATA_FORK
) {
91 maxleafents
= MAXEXTNUM
;
92 sz
= XFS_BMDR_SPACE_CALC(MINDBTPTRS
);
94 maxleafents
= MAXAEXTNUM
;
95 sz
= XFS_BMDR_SPACE_CALC(MINABTPTRS
);
97 maxrootrecs
= xfs_bmdr_maxrecs(sz
, 0);
98 minleafrecs
= mp
->m_bmap_dmnr
[0];
99 minnoderecs
= mp
->m_bmap_dmnr
[1];
100 maxblocks
= (maxleafents
+ minleafrecs
- 1) / minleafrecs
;
101 for (level
= 1; maxblocks
> 1; level
++) {
102 if (maxblocks
<= maxrootrecs
)
105 maxblocks
= (maxblocks
+ minnoderecs
- 1) / minnoderecs
;
107 mp
->m_bm_maxlevels
[whichfork
] = level
;
110 STATIC
int /* error */
112 struct xfs_btree_cur
*cur
,
116 int *stat
) /* success/failure */
118 cur
->bc_rec
.b
.br_startoff
= off
;
119 cur
->bc_rec
.b
.br_startblock
= bno
;
120 cur
->bc_rec
.b
.br_blockcount
= len
;
121 return xfs_btree_lookup(cur
, XFS_LOOKUP_EQ
, stat
);
124 STATIC
int /* error */
126 struct xfs_btree_cur
*cur
,
130 int *stat
) /* success/failure */
132 cur
->bc_rec
.b
.br_startoff
= off
;
133 cur
->bc_rec
.b
.br_startblock
= bno
;
134 cur
->bc_rec
.b
.br_blockcount
= len
;
135 return xfs_btree_lookup(cur
, XFS_LOOKUP_GE
, stat
);
139 * Check if the inode needs to be converted to btree format.
141 static inline bool xfs_bmap_needs_btree(struct xfs_inode
*ip
, int whichfork
)
143 return XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_EXTENTS
&&
144 XFS_IFORK_NEXTENTS(ip
, whichfork
) >
145 XFS_IFORK_MAXEXT(ip
, whichfork
);
149 * Check if the inode should be converted to extent format.
151 static inline bool xfs_bmap_wants_extents(struct xfs_inode
*ip
, int whichfork
)
153 return XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_BTREE
&&
154 XFS_IFORK_NEXTENTS(ip
, whichfork
) <=
155 XFS_IFORK_MAXEXT(ip
, whichfork
);
159 * Update the record referred to by cur to the value given
160 * by [off, bno, len, state].
161 * This either works (return 0) or gets an EFSCORRUPTED error.
165 struct xfs_btree_cur
*cur
,
171 union xfs_btree_rec rec
;
173 xfs_bmbt_disk_set_allf(&rec
.bmbt
, off
, bno
, len
, state
);
174 return xfs_btree_update(cur
, &rec
);
178 * Compute the worst-case number of indirect blocks that will be used
179 * for ip's delayed extent of length "len".
182 xfs_bmap_worst_indlen(
183 xfs_inode_t
*ip
, /* incore inode pointer */
184 xfs_filblks_t len
) /* delayed extent length */
186 int level
; /* btree level number */
187 int maxrecs
; /* maximum record count at this level */
188 xfs_mount_t
*mp
; /* mount structure */
189 xfs_filblks_t rval
; /* return value */
192 maxrecs
= mp
->m_bmap_dmxr
[0];
193 for (level
= 0, rval
= 0;
194 level
< XFS_BM_MAXLEVELS(mp
, XFS_DATA_FORK
);
197 do_div(len
, maxrecs
);
200 return rval
+ XFS_BM_MAXLEVELS(mp
, XFS_DATA_FORK
) -
203 maxrecs
= mp
->m_bmap_dmxr
[1];
209 * Calculate the default attribute fork offset for newly created inodes.
212 xfs_default_attroffset(
213 struct xfs_inode
*ip
)
215 struct xfs_mount
*mp
= ip
->i_mount
;
218 if (mp
->m_sb
.sb_inodesize
== 256) {
219 offset
= XFS_LITINO(mp
, ip
->i_d
.di_version
) -
220 XFS_BMDR_SPACE_CALC(MINABTPTRS
);
222 offset
= XFS_BMDR_SPACE_CALC(6 * MINABTPTRS
);
225 ASSERT(offset
< XFS_LITINO(mp
, ip
->i_d
.di_version
));
230 * Helper routine to reset inode di_forkoff field when switching
231 * attribute fork from local to extent format - we reset it where
232 * possible to make space available for inline data fork extents.
235 xfs_bmap_forkoff_reset(
239 if (whichfork
== XFS_ATTR_FORK
&&
240 ip
->i_d
.di_format
!= XFS_DINODE_FMT_DEV
&&
241 ip
->i_d
.di_format
!= XFS_DINODE_FMT_UUID
&&
242 ip
->i_d
.di_format
!= XFS_DINODE_FMT_BTREE
) {
243 uint dfl_forkoff
= xfs_default_attroffset(ip
) >> 3;
245 if (dfl_forkoff
> ip
->i_d
.di_forkoff
)
246 ip
->i_d
.di_forkoff
= dfl_forkoff
;
251 * Debug/sanity checking code
255 xfs_bmap_sanity_check(
256 struct xfs_mount
*mp
,
260 struct xfs_btree_block
*block
= XFS_BUF_TO_BLOCK(bp
);
262 if (block
->bb_magic
!= cpu_to_be32(XFS_BMAP_CRC_MAGIC
) &&
263 block
->bb_magic
!= cpu_to_be32(XFS_BMAP_MAGIC
))
266 if (be16_to_cpu(block
->bb_level
) != level
||
267 be16_to_cpu(block
->bb_numrecs
) == 0 ||
268 be16_to_cpu(block
->bb_numrecs
) > mp
->m_bmap_dmxr
[level
!= 0])
275 STATIC
struct xfs_buf
*
277 struct xfs_btree_cur
*cur
,
280 struct xfs_log_item_desc
*lidp
;
286 for (i
= 0; i
< XFS_BTREE_MAXLEVELS
; i
++) {
287 if (!cur
->bc_bufs
[i
])
289 if (XFS_BUF_ADDR(cur
->bc_bufs
[i
]) == bno
)
290 return cur
->bc_bufs
[i
];
293 /* Chase down all the log items to see if the bp is there */
294 list_for_each_entry(lidp
, &cur
->bc_tp
->t_items
, lid_trans
) {
295 struct xfs_buf_log_item
*bip
;
296 bip
= (struct xfs_buf_log_item
*)lidp
->lid_item
;
297 if (bip
->bli_item
.li_type
== XFS_LI_BUF
&&
298 XFS_BUF_ADDR(bip
->bli_buf
) == bno
)
307 struct xfs_btree_block
*block
,
313 __be64
*pp
, *thispa
; /* pointer to block address */
314 xfs_bmbt_key_t
*prevp
, *keyp
;
316 ASSERT(be16_to_cpu(block
->bb_level
) > 0);
319 for( i
= 1; i
<= xfs_btree_get_numrecs(block
); i
++) {
320 dmxr
= mp
->m_bmap_dmxr
[0];
321 keyp
= XFS_BMBT_KEY_ADDR(mp
, block
, i
);
324 ASSERT(be64_to_cpu(prevp
->br_startoff
) <
325 be64_to_cpu(keyp
->br_startoff
));
330 * Compare the block numbers to see if there are dups.
333 pp
= XFS_BMAP_BROOT_PTR_ADDR(mp
, block
, i
, sz
);
335 pp
= XFS_BMBT_PTR_ADDR(mp
, block
, i
, dmxr
);
337 for (j
= i
+1; j
<= be16_to_cpu(block
->bb_numrecs
); j
++) {
339 thispa
= XFS_BMAP_BROOT_PTR_ADDR(mp
, block
, j
, sz
);
341 thispa
= XFS_BMBT_PTR_ADDR(mp
, block
, j
, dmxr
);
342 if (*thispa
== *pp
) {
343 xfs_warn(mp
, "%s: thispa(%d) == pp(%d) %Ld",
345 (unsigned long long)be64_to_cpu(*thispa
));
346 panic("%s: ptrs are equal in node\n",
354 * Check that the extents for the inode ip are in the right order in all
359 xfs_bmap_check_leaf_extents(
360 xfs_btree_cur_t
*cur
, /* btree cursor or null */
361 xfs_inode_t
*ip
, /* incore inode pointer */
362 int whichfork
) /* data or attr fork */
364 struct xfs_btree_block
*block
; /* current btree block */
365 xfs_fsblock_t bno
; /* block # of "block" */
366 xfs_buf_t
*bp
; /* buffer for "block" */
367 int error
; /* error return value */
368 xfs_extnum_t i
=0, j
; /* index into the extents list */
369 xfs_ifork_t
*ifp
; /* fork structure */
370 int level
; /* btree level, for checking */
371 xfs_mount_t
*mp
; /* file system mount structure */
372 __be64
*pp
; /* pointer to block address */
373 xfs_bmbt_rec_t
*ep
; /* pointer to current extent */
374 xfs_bmbt_rec_t last
= {0, 0}; /* last extent in prev block */
375 xfs_bmbt_rec_t
*nextp
; /* pointer to next extent */
378 if (XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
) {
384 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
385 block
= ifp
->if_broot
;
387 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
389 level
= be16_to_cpu(block
->bb_level
);
391 xfs_check_block(block
, mp
, 1, ifp
->if_broot_bytes
);
392 pp
= XFS_BMAP_BROOT_PTR_ADDR(mp
, block
, 1, ifp
->if_broot_bytes
);
393 bno
= be64_to_cpu(*pp
);
395 ASSERT(bno
!= NULLDFSBNO
);
396 ASSERT(XFS_FSB_TO_AGNO(mp
, bno
) < mp
->m_sb
.sb_agcount
);
397 ASSERT(XFS_FSB_TO_AGBNO(mp
, bno
) < mp
->m_sb
.sb_agblocks
);
400 * Go down the tree until leaf level is reached, following the first
401 * pointer (leftmost) at each level.
403 while (level
-- > 0) {
404 /* See if buf is in cur first */
406 bp
= xfs_bmap_get_bp(cur
, XFS_FSB_TO_DADDR(mp
, bno
));
409 error
= xfs_btree_read_bufl(mp
, NULL
, bno
, 0, &bp
,
415 block
= XFS_BUF_TO_BLOCK(bp
);
416 XFS_WANT_CORRUPTED_GOTO(
417 xfs_bmap_sanity_check(mp
, bp
, level
),
423 * Check this block for basic sanity (increasing keys and
424 * no duplicate blocks).
427 xfs_check_block(block
, mp
, 0, 0);
428 pp
= XFS_BMBT_PTR_ADDR(mp
, block
, 1, mp
->m_bmap_dmxr
[1]);
429 bno
= be64_to_cpu(*pp
);
430 XFS_WANT_CORRUPTED_GOTO(XFS_FSB_SANITY_CHECK(mp
, bno
), error0
);
433 xfs_trans_brelse(NULL
, bp
);
438 * Here with bp and block set to the leftmost leaf node in the tree.
443 * Loop over all leaf nodes checking that all extents are in the right order.
446 xfs_fsblock_t nextbno
;
447 xfs_extnum_t num_recs
;
450 num_recs
= xfs_btree_get_numrecs(block
);
453 * Read-ahead the next leaf block, if any.
456 nextbno
= be64_to_cpu(block
->bb_u
.l
.bb_rightsib
);
459 * Check all the extents to make sure they are OK.
460 * If we had a previous block, the last entry should
461 * conform with the first entry in this one.
464 ep
= XFS_BMBT_REC_ADDR(mp
, block
, 1);
466 ASSERT(xfs_bmbt_disk_get_startoff(&last
) +
467 xfs_bmbt_disk_get_blockcount(&last
) <=
468 xfs_bmbt_disk_get_startoff(ep
));
470 for (j
= 1; j
< num_recs
; j
++) {
471 nextp
= XFS_BMBT_REC_ADDR(mp
, block
, j
+ 1);
472 ASSERT(xfs_bmbt_disk_get_startoff(ep
) +
473 xfs_bmbt_disk_get_blockcount(ep
) <=
474 xfs_bmbt_disk_get_startoff(nextp
));
482 xfs_trans_brelse(NULL
, bp
);
486 * If we've reached the end, stop.
488 if (bno
== NULLFSBLOCK
)
492 bp
= xfs_bmap_get_bp(cur
, XFS_FSB_TO_DADDR(mp
, bno
));
495 error
= xfs_btree_read_bufl(mp
, NULL
, bno
, 0, &bp
,
501 block
= XFS_BUF_TO_BLOCK(bp
);
505 xfs_trans_brelse(NULL
, bp
);
510 xfs_warn(mp
, "%s: at error0", __func__
);
512 xfs_trans_brelse(NULL
, bp
);
514 xfs_warn(mp
, "%s: BAD after btree leaves for %d extents",
516 panic("%s: CORRUPTED BTREE OR SOMETHING", __func__
);
521 * Add bmap trace insert entries for all the contents of the extent records.
524 xfs_bmap_trace_exlist(
525 xfs_inode_t
*ip
, /* incore inode pointer */
526 xfs_extnum_t cnt
, /* count of entries in the list */
527 int whichfork
, /* data or attr fork */
528 unsigned long caller_ip
)
530 xfs_extnum_t idx
; /* extent record index */
531 xfs_ifork_t
*ifp
; /* inode fork pointer */
534 if (whichfork
== XFS_ATTR_FORK
)
535 state
|= BMAP_ATTRFORK
;
537 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
538 ASSERT(cnt
== (ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
)));
539 for (idx
= 0; idx
< cnt
; idx
++)
540 trace_xfs_extlist(ip
, idx
, whichfork
, caller_ip
);
544 * Validate that the bmbt_irecs being returned from bmapi are valid
545 * given the caller's original parameters. Specifically check the
546 * ranges of the returned irecs to ensure that they only extend beyond
547 * the given parameters if the XFS_BMAPI_ENTIRE flag was set.
550 xfs_bmap_validate_ret(
554 xfs_bmbt_irec_t
*mval
,
558 int i
; /* index to map values */
560 ASSERT(ret_nmap
<= nmap
);
562 for (i
= 0; i
< ret_nmap
; i
++) {
563 ASSERT(mval
[i
].br_blockcount
> 0);
564 if (!(flags
& XFS_BMAPI_ENTIRE
)) {
565 ASSERT(mval
[i
].br_startoff
>= bno
);
566 ASSERT(mval
[i
].br_blockcount
<= len
);
567 ASSERT(mval
[i
].br_startoff
+ mval
[i
].br_blockcount
<=
570 ASSERT(mval
[i
].br_startoff
< bno
+ len
);
571 ASSERT(mval
[i
].br_startoff
+ mval
[i
].br_blockcount
>
575 mval
[i
- 1].br_startoff
+ mval
[i
- 1].br_blockcount
==
576 mval
[i
].br_startoff
);
577 ASSERT(mval
[i
].br_startblock
!= DELAYSTARTBLOCK
&&
578 mval
[i
].br_startblock
!= HOLESTARTBLOCK
);
579 ASSERT(mval
[i
].br_state
== XFS_EXT_NORM
||
580 mval
[i
].br_state
== XFS_EXT_UNWRITTEN
);
585 #define xfs_bmap_check_leaf_extents(cur, ip, whichfork) do { } while (0)
586 #define xfs_bmap_validate_ret(bno,len,flags,mval,onmap,nmap)
590 * bmap free list manipulation functions
594 * Add the extent to the list of extents to be free at transaction end.
595 * The list is maintained sorted (by block number).
599 xfs_fsblock_t bno
, /* fs block number of extent */
600 xfs_filblks_t len
, /* length of extent */
601 xfs_bmap_free_t
*flist
, /* list of extents */
602 xfs_mount_t
*mp
) /* mount point structure */
604 xfs_bmap_free_item_t
*cur
; /* current (next) element */
605 xfs_bmap_free_item_t
*new; /* new element */
606 xfs_bmap_free_item_t
*prev
; /* previous element */
611 ASSERT(bno
!= NULLFSBLOCK
);
613 ASSERT(len
<= MAXEXTLEN
);
614 ASSERT(!isnullstartblock(bno
));
615 agno
= XFS_FSB_TO_AGNO(mp
, bno
);
616 agbno
= XFS_FSB_TO_AGBNO(mp
, bno
);
617 ASSERT(agno
< mp
->m_sb
.sb_agcount
);
618 ASSERT(agbno
< mp
->m_sb
.sb_agblocks
);
619 ASSERT(len
< mp
->m_sb
.sb_agblocks
);
620 ASSERT(agbno
+ len
<= mp
->m_sb
.sb_agblocks
);
622 ASSERT(xfs_bmap_free_item_zone
!= NULL
);
623 new = kmem_zone_alloc(xfs_bmap_free_item_zone
, KM_SLEEP
);
624 new->xbfi_startblock
= bno
;
625 new->xbfi_blockcount
= (xfs_extlen_t
)len
;
626 for (prev
= NULL
, cur
= flist
->xbf_first
;
628 prev
= cur
, cur
= cur
->xbfi_next
) {
629 if (cur
->xbfi_startblock
>= bno
)
633 prev
->xbfi_next
= new;
635 flist
->xbf_first
= new;
636 new->xbfi_next
= cur
;
641 * Remove the entry "free" from the free item list. Prev points to the
642 * previous entry, unless "free" is the head of the list.
646 xfs_bmap_free_t
*flist
, /* free item list header */
647 xfs_bmap_free_item_t
*prev
, /* previous item on list, if any */
648 xfs_bmap_free_item_t
*free
) /* list item to be freed */
651 prev
->xbfi_next
= free
->xbfi_next
;
653 flist
->xbf_first
= free
->xbfi_next
;
655 kmem_zone_free(xfs_bmap_free_item_zone
, free
);
659 * Free up any items left in the list.
663 xfs_bmap_free_t
*flist
) /* list of bmap_free_items */
665 xfs_bmap_free_item_t
*free
; /* free list item */
666 xfs_bmap_free_item_t
*next
;
668 if (flist
->xbf_count
== 0)
670 ASSERT(flist
->xbf_first
!= NULL
);
671 for (free
= flist
->xbf_first
; free
; free
= next
) {
672 next
= free
->xbfi_next
;
673 xfs_bmap_del_free(flist
, NULL
, free
);
675 ASSERT(flist
->xbf_count
== 0);
679 * Inode fork format manipulation functions
683 * Transform a btree format file with only one leaf node, where the
684 * extents list will fit in the inode, into an extents format file.
685 * Since the file extents are already in-core, all we have to do is
686 * give up the space for the btree root and pitch the leaf block.
688 STATIC
int /* error */
689 xfs_bmap_btree_to_extents(
690 xfs_trans_t
*tp
, /* transaction pointer */
691 xfs_inode_t
*ip
, /* incore inode pointer */
692 xfs_btree_cur_t
*cur
, /* btree cursor */
693 int *logflagsp
, /* inode logging flags */
694 int whichfork
) /* data or attr fork */
697 struct xfs_btree_block
*cblock
;/* child btree block */
698 xfs_fsblock_t cbno
; /* child block number */
699 xfs_buf_t
*cbp
; /* child block's buffer */
700 int error
; /* error return value */
701 xfs_ifork_t
*ifp
; /* inode fork data */
702 xfs_mount_t
*mp
; /* mount point structure */
703 __be64
*pp
; /* ptr to block address */
704 struct xfs_btree_block
*rblock
;/* root btree block */
707 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
708 ASSERT(ifp
->if_flags
& XFS_IFEXTENTS
);
709 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_BTREE
);
710 rblock
= ifp
->if_broot
;
711 ASSERT(be16_to_cpu(rblock
->bb_level
) == 1);
712 ASSERT(be16_to_cpu(rblock
->bb_numrecs
) == 1);
713 ASSERT(xfs_bmbt_maxrecs(mp
, ifp
->if_broot_bytes
, 0) == 1);
714 pp
= XFS_BMAP_BROOT_PTR_ADDR(mp
, rblock
, 1, ifp
->if_broot_bytes
);
715 cbno
= be64_to_cpu(*pp
);
718 if ((error
= xfs_btree_check_lptr(cur
, cbno
, 1)))
721 error
= xfs_btree_read_bufl(mp
, tp
, cbno
, 0, &cbp
, XFS_BMAP_BTREE_REF
,
725 cblock
= XFS_BUF_TO_BLOCK(cbp
);
726 if ((error
= xfs_btree_check_block(cur
, cblock
, 0, cbp
)))
728 xfs_bmap_add_free(cbno
, 1, cur
->bc_private
.b
.flist
, mp
);
729 ip
->i_d
.di_nblocks
--;
730 xfs_trans_mod_dquot_byino(tp
, ip
, XFS_TRANS_DQ_BCOUNT
, -1L);
731 xfs_trans_binval(tp
, cbp
);
732 if (cur
->bc_bufs
[0] == cbp
)
733 cur
->bc_bufs
[0] = NULL
;
734 xfs_iroot_realloc(ip
, -1, whichfork
);
735 ASSERT(ifp
->if_broot
== NULL
);
736 ASSERT((ifp
->if_flags
& XFS_IFBROOT
) == 0);
737 XFS_IFORK_FMT_SET(ip
, whichfork
, XFS_DINODE_FMT_EXTENTS
);
738 *logflagsp
= XFS_ILOG_CORE
| xfs_ilog_fext(whichfork
);
743 * Convert an extents-format file into a btree-format file.
744 * The new file will have a root block (in the inode) and a single child block.
746 STATIC
int /* error */
747 xfs_bmap_extents_to_btree(
748 xfs_trans_t
*tp
, /* transaction pointer */
749 xfs_inode_t
*ip
, /* incore inode pointer */
750 xfs_fsblock_t
*firstblock
, /* first-block-allocated */
751 xfs_bmap_free_t
*flist
, /* blocks freed in xaction */
752 xfs_btree_cur_t
**curp
, /* cursor returned to caller */
753 int wasdel
, /* converting a delayed alloc */
754 int *logflagsp
, /* inode logging flags */
755 int whichfork
) /* data or attr fork */
757 struct xfs_btree_block
*ablock
; /* allocated (child) bt block */
758 xfs_buf_t
*abp
; /* buffer for ablock */
759 xfs_alloc_arg_t args
; /* allocation arguments */
760 xfs_bmbt_rec_t
*arp
; /* child record pointer */
761 struct xfs_btree_block
*block
; /* btree root block */
762 xfs_btree_cur_t
*cur
; /* bmap btree cursor */
763 xfs_bmbt_rec_host_t
*ep
; /* extent record pointer */
764 int error
; /* error return value */
765 xfs_extnum_t i
, cnt
; /* extent record index */
766 xfs_ifork_t
*ifp
; /* inode fork pointer */
767 xfs_bmbt_key_t
*kp
; /* root block key pointer */
768 xfs_mount_t
*mp
; /* mount structure */
769 xfs_extnum_t nextents
; /* number of file extents */
770 xfs_bmbt_ptr_t
*pp
; /* root block address pointer */
773 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
774 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_EXTENTS
);
777 * Make space in the inode incore.
779 xfs_iroot_realloc(ip
, 1, whichfork
);
780 ifp
->if_flags
|= XFS_IFBROOT
;
785 block
= ifp
->if_broot
;
786 if (xfs_sb_version_hascrc(&mp
->m_sb
))
787 xfs_btree_init_block_int(mp
, block
, XFS_BUF_DADDR_NULL
,
788 XFS_BMAP_CRC_MAGIC
, 1, 1, ip
->i_ino
,
789 XFS_BTREE_LONG_PTRS
| XFS_BTREE_CRC_BLOCKS
);
791 xfs_btree_init_block_int(mp
, block
, XFS_BUF_DADDR_NULL
,
792 XFS_BMAP_MAGIC
, 1, 1, ip
->i_ino
,
793 XFS_BTREE_LONG_PTRS
);
796 * Need a cursor. Can't allocate until bb_level is filled in.
798 cur
= xfs_bmbt_init_cursor(mp
, tp
, ip
, whichfork
);
799 cur
->bc_private
.b
.firstblock
= *firstblock
;
800 cur
->bc_private
.b
.flist
= flist
;
801 cur
->bc_private
.b
.flags
= wasdel
? XFS_BTCUR_BPRV_WASDEL
: 0;
803 * Convert to a btree with two levels, one record in root.
805 XFS_IFORK_FMT_SET(ip
, whichfork
, XFS_DINODE_FMT_BTREE
);
806 memset(&args
, 0, sizeof(args
));
809 args
.firstblock
= *firstblock
;
810 if (*firstblock
== NULLFSBLOCK
) {
811 args
.type
= XFS_ALLOCTYPE_START_BNO
;
812 args
.fsbno
= XFS_INO_TO_FSB(mp
, ip
->i_ino
);
813 } else if (flist
->xbf_low
) {
814 args
.type
= XFS_ALLOCTYPE_START_BNO
;
815 args
.fsbno
= *firstblock
;
817 args
.type
= XFS_ALLOCTYPE_NEAR_BNO
;
818 args
.fsbno
= *firstblock
;
820 args
.minlen
= args
.maxlen
= args
.prod
= 1;
821 args
.wasdel
= wasdel
;
823 if ((error
= xfs_alloc_vextent(&args
))) {
824 xfs_iroot_realloc(ip
, -1, whichfork
);
825 xfs_btree_del_cursor(cur
, XFS_BTREE_ERROR
);
829 * Allocation can't fail, the space was reserved.
831 ASSERT(args
.fsbno
!= NULLFSBLOCK
);
832 ASSERT(*firstblock
== NULLFSBLOCK
||
833 args
.agno
== XFS_FSB_TO_AGNO(mp
, *firstblock
) ||
835 args
.agno
> XFS_FSB_TO_AGNO(mp
, *firstblock
)));
836 *firstblock
= cur
->bc_private
.b
.firstblock
= args
.fsbno
;
837 cur
->bc_private
.b
.allocated
++;
838 ip
->i_d
.di_nblocks
++;
839 xfs_trans_mod_dquot_byino(tp
, ip
, XFS_TRANS_DQ_BCOUNT
, 1L);
840 abp
= xfs_btree_get_bufl(mp
, tp
, args
.fsbno
, 0);
842 * Fill in the child block.
844 abp
->b_ops
= &xfs_bmbt_buf_ops
;
845 ablock
= XFS_BUF_TO_BLOCK(abp
);
846 if (xfs_sb_version_hascrc(&mp
->m_sb
))
847 xfs_btree_init_block_int(mp
, ablock
, abp
->b_bn
,
848 XFS_BMAP_CRC_MAGIC
, 0, 0, ip
->i_ino
,
849 XFS_BTREE_LONG_PTRS
| XFS_BTREE_CRC_BLOCKS
);
851 xfs_btree_init_block_int(mp
, ablock
, abp
->b_bn
,
852 XFS_BMAP_MAGIC
, 0, 0, ip
->i_ino
,
853 XFS_BTREE_LONG_PTRS
);
855 arp
= XFS_BMBT_REC_ADDR(mp
, ablock
, 1);
856 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
857 for (cnt
= i
= 0; i
< nextents
; i
++) {
858 ep
= xfs_iext_get_ext(ifp
, i
);
859 if (!isnullstartblock(xfs_bmbt_get_startblock(ep
))) {
860 arp
->l0
= cpu_to_be64(ep
->l0
);
861 arp
->l1
= cpu_to_be64(ep
->l1
);
865 ASSERT(cnt
== XFS_IFORK_NEXTENTS(ip
, whichfork
));
866 xfs_btree_set_numrecs(ablock
, cnt
);
869 * Fill in the root key and pointer.
871 kp
= XFS_BMBT_KEY_ADDR(mp
, block
, 1);
872 arp
= XFS_BMBT_REC_ADDR(mp
, ablock
, 1);
873 kp
->br_startoff
= cpu_to_be64(xfs_bmbt_disk_get_startoff(arp
));
874 pp
= XFS_BMBT_PTR_ADDR(mp
, block
, 1, xfs_bmbt_get_maxrecs(cur
,
875 be16_to_cpu(block
->bb_level
)));
876 *pp
= cpu_to_be64(args
.fsbno
);
879 * Do all this logging at the end so that
880 * the root is at the right level.
882 xfs_btree_log_block(cur
, abp
, XFS_BB_ALL_BITS
);
883 xfs_btree_log_recs(cur
, abp
, 1, be16_to_cpu(ablock
->bb_numrecs
));
884 ASSERT(*curp
== NULL
);
886 *logflagsp
= XFS_ILOG_CORE
| xfs_ilog_fbroot(whichfork
);
891 * Convert a local file to an extents file.
892 * This code is out of bounds for data forks of regular files,
893 * since the file data needs to get logged so things will stay consistent.
894 * (The bmap-level manipulations are ok, though).
897 xfs_bmap_local_to_extents_empty(
898 struct xfs_inode
*ip
,
901 struct xfs_ifork
*ifp
= XFS_IFORK_PTR(ip
, whichfork
);
903 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
);
904 ASSERT(ifp
->if_bytes
== 0);
905 ASSERT(XFS_IFORK_NEXTENTS(ip
, whichfork
) == 0);
907 xfs_bmap_forkoff_reset(ip
, whichfork
);
908 ifp
->if_flags
&= ~XFS_IFINLINE
;
909 ifp
->if_flags
|= XFS_IFEXTENTS
;
910 XFS_IFORK_FMT_SET(ip
, whichfork
, XFS_DINODE_FMT_EXTENTS
);
914 STATIC
int /* error */
915 xfs_bmap_local_to_extents(
916 xfs_trans_t
*tp
, /* transaction pointer */
917 xfs_inode_t
*ip
, /* incore inode pointer */
918 xfs_fsblock_t
*firstblock
, /* first block allocated in xaction */
919 xfs_extlen_t total
, /* total blocks needed by transaction */
920 int *logflagsp
, /* inode logging flags */
922 void (*init_fn
)(struct xfs_trans
*tp
,
924 struct xfs_inode
*ip
,
925 struct xfs_ifork
*ifp
))
928 int flags
; /* logging flags returned */
929 xfs_ifork_t
*ifp
; /* inode fork pointer */
930 xfs_alloc_arg_t args
; /* allocation arguments */
931 xfs_buf_t
*bp
; /* buffer for extent block */
932 xfs_bmbt_rec_host_t
*ep
; /* extent record pointer */
935 * We don't want to deal with the case of keeping inode data inline yet.
936 * So sending the data fork of a regular inode is invalid.
938 ASSERT(!(S_ISREG(ip
->i_d
.di_mode
) && whichfork
== XFS_DATA_FORK
));
939 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
940 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
);
942 if (!ifp
->if_bytes
) {
943 xfs_bmap_local_to_extents_empty(ip
, whichfork
);
944 flags
= XFS_ILOG_CORE
;
950 ASSERT((ifp
->if_flags
& (XFS_IFINLINE
|XFS_IFEXTENTS
|XFS_IFEXTIREC
)) ==
952 memset(&args
, 0, sizeof(args
));
954 args
.mp
= ip
->i_mount
;
955 args
.firstblock
= *firstblock
;
957 * Allocate a block. We know we need only one, since the
958 * file currently fits in an inode.
960 if (*firstblock
== NULLFSBLOCK
) {
961 args
.fsbno
= XFS_INO_TO_FSB(args
.mp
, ip
->i_ino
);
962 args
.type
= XFS_ALLOCTYPE_START_BNO
;
964 args
.fsbno
= *firstblock
;
965 args
.type
= XFS_ALLOCTYPE_NEAR_BNO
;
968 args
.minlen
= args
.maxlen
= args
.prod
= 1;
969 error
= xfs_alloc_vextent(&args
);
973 /* Can't fail, the space was reserved. */
974 ASSERT(args
.fsbno
!= NULLFSBLOCK
);
975 ASSERT(args
.len
== 1);
976 *firstblock
= args
.fsbno
;
977 bp
= xfs_btree_get_bufl(args
.mp
, tp
, args
.fsbno
, 0);
980 * Initialise the block and copy the data
982 * Note: init_fn must set the buffer log item type correctly!
984 init_fn(tp
, bp
, ip
, ifp
);
986 /* account for the change in fork size and log everything */
987 xfs_trans_log_buf(tp
, bp
, 0, ifp
->if_bytes
- 1);
988 xfs_idata_realloc(ip
, -ifp
->if_bytes
, whichfork
);
989 xfs_bmap_local_to_extents_empty(ip
, whichfork
);
990 flags
|= XFS_ILOG_CORE
;
992 xfs_iext_add(ifp
, 0, 1);
993 ep
= xfs_iext_get_ext(ifp
, 0);
994 xfs_bmbt_set_allf(ep
, 0, args
.fsbno
, 1, XFS_EXT_NORM
);
995 trace_xfs_bmap_post_update(ip
, 0,
996 whichfork
== XFS_ATTR_FORK
? BMAP_ATTRFORK
: 0,
998 XFS_IFORK_NEXT_SET(ip
, whichfork
, 1);
999 ip
->i_d
.di_nblocks
= 1;
1000 xfs_trans_mod_dquot_byino(tp
, ip
,
1001 XFS_TRANS_DQ_BCOUNT
, 1L);
1002 flags
|= xfs_ilog_fext(whichfork
);
1010 * Called from xfs_bmap_add_attrfork to handle btree format files.
1012 STATIC
int /* error */
1013 xfs_bmap_add_attrfork_btree(
1014 xfs_trans_t
*tp
, /* transaction pointer */
1015 xfs_inode_t
*ip
, /* incore inode pointer */
1016 xfs_fsblock_t
*firstblock
, /* first block allocated */
1017 xfs_bmap_free_t
*flist
, /* blocks to free at commit */
1018 int *flags
) /* inode logging flags */
1020 xfs_btree_cur_t
*cur
; /* btree cursor */
1021 int error
; /* error return value */
1022 xfs_mount_t
*mp
; /* file system mount struct */
1023 int stat
; /* newroot status */
1026 if (ip
->i_df
.if_broot_bytes
<= XFS_IFORK_DSIZE(ip
))
1027 *flags
|= XFS_ILOG_DBROOT
;
1029 cur
= xfs_bmbt_init_cursor(mp
, tp
, ip
, XFS_DATA_FORK
);
1030 cur
->bc_private
.b
.flist
= flist
;
1031 cur
->bc_private
.b
.firstblock
= *firstblock
;
1032 if ((error
= xfs_bmbt_lookup_ge(cur
, 0, 0, 0, &stat
)))
1034 /* must be at least one entry */
1035 XFS_WANT_CORRUPTED_GOTO(stat
== 1, error0
);
1036 if ((error
= xfs_btree_new_iroot(cur
, flags
, &stat
)))
1039 xfs_btree_del_cursor(cur
, XFS_BTREE_NOERROR
);
1040 return XFS_ERROR(ENOSPC
);
1042 *firstblock
= cur
->bc_private
.b
.firstblock
;
1043 cur
->bc_private
.b
.allocated
= 0;
1044 xfs_btree_del_cursor(cur
, XFS_BTREE_NOERROR
);
1048 xfs_btree_del_cursor(cur
, XFS_BTREE_ERROR
);
1053 * Called from xfs_bmap_add_attrfork to handle extents format files.
1055 STATIC
int /* error */
1056 xfs_bmap_add_attrfork_extents(
1057 xfs_trans_t
*tp
, /* transaction pointer */
1058 xfs_inode_t
*ip
, /* incore inode pointer */
1059 xfs_fsblock_t
*firstblock
, /* first block allocated */
1060 xfs_bmap_free_t
*flist
, /* blocks to free at commit */
1061 int *flags
) /* inode logging flags */
1063 xfs_btree_cur_t
*cur
; /* bmap btree cursor */
1064 int error
; /* error return value */
1066 if (ip
->i_d
.di_nextents
* sizeof(xfs_bmbt_rec_t
) <= XFS_IFORK_DSIZE(ip
))
1069 error
= xfs_bmap_extents_to_btree(tp
, ip
, firstblock
, flist
, &cur
, 0,
1070 flags
, XFS_DATA_FORK
);
1072 cur
->bc_private
.b
.allocated
= 0;
1073 xfs_btree_del_cursor(cur
,
1074 error
? XFS_BTREE_ERROR
: XFS_BTREE_NOERROR
);
1080 * Called from xfs_bmap_add_attrfork to handle local format files. Each
1081 * different data fork content type needs a different callout to do the
1082 * conversion. Some are basic and only require special block initialisation
1083 * callouts for the data formating, others (directories) are so specialised they
1084 * handle everything themselves.
1086 * XXX (dgc): investigate whether directory conversion can use the generic
1087 * formatting callout. It should be possible - it's just a very complex
1090 STATIC
int /* error */
1091 xfs_bmap_add_attrfork_local(
1092 xfs_trans_t
*tp
, /* transaction pointer */
1093 xfs_inode_t
*ip
, /* incore inode pointer */
1094 xfs_fsblock_t
*firstblock
, /* first block allocated */
1095 xfs_bmap_free_t
*flist
, /* blocks to free at commit */
1096 int *flags
) /* inode logging flags */
1098 xfs_da_args_t dargs
; /* args for dir/attr code */
1100 if (ip
->i_df
.if_bytes
<= XFS_IFORK_DSIZE(ip
))
1103 if (S_ISDIR(ip
->i_d
.di_mode
)) {
1104 memset(&dargs
, 0, sizeof(dargs
));
1105 dargs
.geo
= ip
->i_mount
->m_dir_geo
;
1107 dargs
.firstblock
= firstblock
;
1108 dargs
.flist
= flist
;
1109 dargs
.total
= dargs
.geo
->fsbcount
;
1110 dargs
.whichfork
= XFS_DATA_FORK
;
1112 return xfs_dir2_sf_to_block(&dargs
);
1115 if (S_ISLNK(ip
->i_d
.di_mode
))
1116 return xfs_bmap_local_to_extents(tp
, ip
, firstblock
, 1,
1117 flags
, XFS_DATA_FORK
,
1118 xfs_symlink_local_to_remote
);
1120 /* should only be called for types that support local format data */
1122 return EFSCORRUPTED
;
1126 * Convert inode from non-attributed to attributed.
1127 * Must not be in a transaction, ip must not be locked.
1129 int /* error code */
1130 xfs_bmap_add_attrfork(
1131 xfs_inode_t
*ip
, /* incore inode pointer */
1132 int size
, /* space new attribute needs */
1133 int rsvd
) /* xact may use reserved blks */
1135 xfs_fsblock_t firstblock
; /* 1st block/ag allocated */
1136 xfs_bmap_free_t flist
; /* freed extent records */
1137 xfs_mount_t
*mp
; /* mount structure */
1138 xfs_trans_t
*tp
; /* transaction pointer */
1139 int blks
; /* space reservation */
1140 int version
= 1; /* superblock attr version */
1141 int committed
; /* xaction was committed */
1142 int logflags
; /* logging flags */
1143 int error
; /* error return value */
1144 int cancel_flags
= 0;
1146 ASSERT(XFS_IFORK_Q(ip
) == 0);
1149 ASSERT(!XFS_NOT_DQATTACHED(mp
, ip
));
1150 tp
= xfs_trans_alloc(mp
, XFS_TRANS_ADDAFORK
);
1151 blks
= XFS_ADDAFORK_SPACE_RES(mp
);
1153 tp
->t_flags
|= XFS_TRANS_RESERVE
;
1154 error
= xfs_trans_reserve(tp
, &M_RES(mp
)->tr_addafork
, blks
, 0);
1156 xfs_trans_cancel(tp
, 0);
1159 cancel_flags
= XFS_TRANS_RELEASE_LOG_RES
;
1160 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
1161 error
= xfs_trans_reserve_quota_nblks(tp
, ip
, blks
, 0, rsvd
?
1162 XFS_QMOPT_RES_REGBLKS
| XFS_QMOPT_FORCE_RES
:
1163 XFS_QMOPT_RES_REGBLKS
);
1166 cancel_flags
|= XFS_TRANS_ABORT
;
1167 if (XFS_IFORK_Q(ip
))
1169 if (ip
->i_d
.di_aformat
!= XFS_DINODE_FMT_EXTENTS
) {
1171 * For inodes coming from pre-6.2 filesystems.
1173 ASSERT(ip
->i_d
.di_aformat
== 0);
1174 ip
->i_d
.di_aformat
= XFS_DINODE_FMT_EXTENTS
;
1176 ASSERT(ip
->i_d
.di_anextents
== 0);
1178 xfs_trans_ijoin(tp
, ip
, 0);
1179 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
1181 switch (ip
->i_d
.di_format
) {
1182 case XFS_DINODE_FMT_DEV
:
1183 ip
->i_d
.di_forkoff
= roundup(sizeof(xfs_dev_t
), 8) >> 3;
1185 case XFS_DINODE_FMT_UUID
:
1186 ip
->i_d
.di_forkoff
= roundup(sizeof(uuid_t
), 8) >> 3;
1188 case XFS_DINODE_FMT_LOCAL
:
1189 case XFS_DINODE_FMT_EXTENTS
:
1190 case XFS_DINODE_FMT_BTREE
:
1191 ip
->i_d
.di_forkoff
= xfs_attr_shortform_bytesfit(ip
, size
);
1192 if (!ip
->i_d
.di_forkoff
)
1193 ip
->i_d
.di_forkoff
= xfs_default_attroffset(ip
) >> 3;
1194 else if (mp
->m_flags
& XFS_MOUNT_ATTR2
)
1199 error
= XFS_ERROR(EINVAL
);
1203 ASSERT(ip
->i_afp
== NULL
);
1204 ip
->i_afp
= kmem_zone_zalloc(xfs_ifork_zone
, KM_SLEEP
);
1205 ip
->i_afp
->if_flags
= XFS_IFEXTENTS
;
1207 xfs_bmap_init(&flist
, &firstblock
);
1208 switch (ip
->i_d
.di_format
) {
1209 case XFS_DINODE_FMT_LOCAL
:
1210 error
= xfs_bmap_add_attrfork_local(tp
, ip
, &firstblock
, &flist
,
1213 case XFS_DINODE_FMT_EXTENTS
:
1214 error
= xfs_bmap_add_attrfork_extents(tp
, ip
, &firstblock
,
1217 case XFS_DINODE_FMT_BTREE
:
1218 error
= xfs_bmap_add_attrfork_btree(tp
, ip
, &firstblock
, &flist
,
1226 xfs_trans_log_inode(tp
, ip
, logflags
);
1229 if (!xfs_sb_version_hasattr(&mp
->m_sb
) ||
1230 (!xfs_sb_version_hasattr2(&mp
->m_sb
) && version
== 2)) {
1231 __int64_t sbfields
= 0;
1233 spin_lock(&mp
->m_sb_lock
);
1234 if (!xfs_sb_version_hasattr(&mp
->m_sb
)) {
1235 xfs_sb_version_addattr(&mp
->m_sb
);
1236 sbfields
|= XFS_SB_VERSIONNUM
;
1238 if (!xfs_sb_version_hasattr2(&mp
->m_sb
) && version
== 2) {
1239 xfs_sb_version_addattr2(&mp
->m_sb
);
1240 sbfields
|= (XFS_SB_VERSIONNUM
| XFS_SB_FEATURES2
);
1243 spin_unlock(&mp
->m_sb_lock
);
1244 xfs_mod_sb(tp
, sbfields
);
1246 spin_unlock(&mp
->m_sb_lock
);
1249 error
= xfs_bmap_finish(&tp
, &flist
, &committed
);
1252 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
);
1253 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
1257 xfs_bmap_cancel(&flist
);
1259 xfs_trans_cancel(tp
, cancel_flags
);
1260 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
1265 * Internal and external extent tree search functions.
1269 * Read in the extents to if_extents.
1270 * All inode fields are set up by caller, we just traverse the btree
1271 * and copy the records in. If the file system cannot contain unwritten
1272 * extents, the records are checked for no "state" flags.
1275 xfs_bmap_read_extents(
1276 xfs_trans_t
*tp
, /* transaction pointer */
1277 xfs_inode_t
*ip
, /* incore inode */
1278 int whichfork
) /* data or attr fork */
1280 struct xfs_btree_block
*block
; /* current btree block */
1281 xfs_fsblock_t bno
; /* block # of "block" */
1282 xfs_buf_t
*bp
; /* buffer for "block" */
1283 int error
; /* error return value */
1284 xfs_exntfmt_t exntf
; /* XFS_EXTFMT_NOSTATE, if checking */
1285 xfs_extnum_t i
, j
; /* index into the extents list */
1286 xfs_ifork_t
*ifp
; /* fork structure */
1287 int level
; /* btree level, for checking */
1288 xfs_mount_t
*mp
; /* file system mount structure */
1289 __be64
*pp
; /* pointer to block address */
1291 xfs_extnum_t room
; /* number of entries there's room for */
1295 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
1296 exntf
= (whichfork
!= XFS_DATA_FORK
) ? XFS_EXTFMT_NOSTATE
:
1297 XFS_EXTFMT_INODE(ip
);
1298 block
= ifp
->if_broot
;
1300 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
1302 level
= be16_to_cpu(block
->bb_level
);
1304 pp
= XFS_BMAP_BROOT_PTR_ADDR(mp
, block
, 1, ifp
->if_broot_bytes
);
1305 bno
= be64_to_cpu(*pp
);
1306 ASSERT(bno
!= NULLDFSBNO
);
1307 ASSERT(XFS_FSB_TO_AGNO(mp
, bno
) < mp
->m_sb
.sb_agcount
);
1308 ASSERT(XFS_FSB_TO_AGBNO(mp
, bno
) < mp
->m_sb
.sb_agblocks
);
1310 * Go down the tree until leaf level is reached, following the first
1311 * pointer (leftmost) at each level.
1313 while (level
-- > 0) {
1314 error
= xfs_btree_read_bufl(mp
, tp
, bno
, 0, &bp
,
1315 XFS_BMAP_BTREE_REF
, &xfs_bmbt_buf_ops
);
1318 block
= XFS_BUF_TO_BLOCK(bp
);
1319 XFS_WANT_CORRUPTED_GOTO(
1320 xfs_bmap_sanity_check(mp
, bp
, level
),
1324 pp
= XFS_BMBT_PTR_ADDR(mp
, block
, 1, mp
->m_bmap_dmxr
[1]);
1325 bno
= be64_to_cpu(*pp
);
1326 XFS_WANT_CORRUPTED_GOTO(XFS_FSB_SANITY_CHECK(mp
, bno
), error0
);
1327 xfs_trans_brelse(tp
, bp
);
1330 * Here with bp and block set to the leftmost leaf node in the tree.
1332 room
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
1335 * Loop over all leaf nodes. Copy information to the extent records.
1338 xfs_bmbt_rec_t
*frp
;
1339 xfs_fsblock_t nextbno
;
1340 xfs_extnum_t num_recs
;
1343 num_recs
= xfs_btree_get_numrecs(block
);
1344 if (unlikely(i
+ num_recs
> room
)) {
1345 ASSERT(i
+ num_recs
<= room
);
1346 xfs_warn(ip
->i_mount
,
1347 "corrupt dinode %Lu, (btree extents).",
1348 (unsigned long long) ip
->i_ino
);
1349 XFS_CORRUPTION_ERROR("xfs_bmap_read_extents(1)",
1350 XFS_ERRLEVEL_LOW
, ip
->i_mount
, block
);
1353 XFS_WANT_CORRUPTED_GOTO(
1354 xfs_bmap_sanity_check(mp
, bp
, 0),
1357 * Read-ahead the next leaf block, if any.
1359 nextbno
= be64_to_cpu(block
->bb_u
.l
.bb_rightsib
);
1360 if (nextbno
!= NULLFSBLOCK
)
1361 xfs_btree_reada_bufl(mp
, nextbno
, 1,
1364 * Copy records into the extent records.
1366 frp
= XFS_BMBT_REC_ADDR(mp
, block
, 1);
1368 for (j
= 0; j
< num_recs
; j
++, i
++, frp
++) {
1369 xfs_bmbt_rec_host_t
*trp
= xfs_iext_get_ext(ifp
, i
);
1370 trp
->l0
= be64_to_cpu(frp
->l0
);
1371 trp
->l1
= be64_to_cpu(frp
->l1
);
1373 if (exntf
== XFS_EXTFMT_NOSTATE
) {
1375 * Check all attribute bmap btree records and
1376 * any "older" data bmap btree records for a
1377 * set bit in the "extent flag" position.
1379 if (unlikely(xfs_check_nostate_extents(ifp
,
1380 start
, num_recs
))) {
1381 XFS_ERROR_REPORT("xfs_bmap_read_extents(2)",
1387 xfs_trans_brelse(tp
, bp
);
1390 * If we've reached the end, stop.
1392 if (bno
== NULLFSBLOCK
)
1394 error
= xfs_btree_read_bufl(mp
, tp
, bno
, 0, &bp
,
1395 XFS_BMAP_BTREE_REF
, &xfs_bmbt_buf_ops
);
1398 block
= XFS_BUF_TO_BLOCK(bp
);
1400 ASSERT(i
== (ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
)));
1401 ASSERT(i
== XFS_IFORK_NEXTENTS(ip
, whichfork
));
1402 XFS_BMAP_TRACE_EXLIST(ip
, i
, whichfork
);
1405 xfs_trans_brelse(tp
, bp
);
1406 return XFS_ERROR(EFSCORRUPTED
);
1411 * Search the extent records for the entry containing block bno.
1412 * If bno lies in a hole, point to the next entry. If bno lies
1413 * past eof, *eofp will be set, and *prevp will contain the last
1414 * entry (null if none). Else, *lastxp will be set to the index
1415 * of the found entry; *gotp will contain the entry.
1417 STATIC xfs_bmbt_rec_host_t
* /* pointer to found extent entry */
1418 xfs_bmap_search_multi_extents(
1419 xfs_ifork_t
*ifp
, /* inode fork pointer */
1420 xfs_fileoff_t bno
, /* block number searched for */
1421 int *eofp
, /* out: end of file found */
1422 xfs_extnum_t
*lastxp
, /* out: last extent index */
1423 xfs_bmbt_irec_t
*gotp
, /* out: extent entry found */
1424 xfs_bmbt_irec_t
*prevp
) /* out: previous extent entry found */
1426 xfs_bmbt_rec_host_t
*ep
; /* extent record pointer */
1427 xfs_extnum_t lastx
; /* last extent index */
1430 * Initialize the extent entry structure to catch access to
1431 * uninitialized br_startblock field.
1433 gotp
->br_startoff
= 0xffa5a5a5a5a5a5a5LL
;
1434 gotp
->br_blockcount
= 0xa55a5a5a5a5a5a5aLL
;
1435 gotp
->br_state
= XFS_EXT_INVALID
;
1437 gotp
->br_startblock
= 0xffffa5a5a5a5a5a5LL
;
1439 gotp
->br_startblock
= 0xffffa5a5;
1441 prevp
->br_startoff
= NULLFILEOFF
;
1443 ep
= xfs_iext_bno_to_ext(ifp
, bno
, &lastx
);
1445 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, lastx
- 1), prevp
);
1447 if (lastx
< (ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
))) {
1448 xfs_bmbt_get_all(ep
, gotp
);
1462 * Search the extents list for the inode, for the extent containing bno.
1463 * If bno lies in a hole, point to the next entry. If bno lies past eof,
1464 * *eofp will be set, and *prevp will contain the last entry (null if none).
1465 * Else, *lastxp will be set to the index of the found
1466 * entry; *gotp will contain the entry.
1468 STATIC xfs_bmbt_rec_host_t
* /* pointer to found extent entry */
1469 xfs_bmap_search_extents(
1470 xfs_inode_t
*ip
, /* incore inode pointer */
1471 xfs_fileoff_t bno
, /* block number searched for */
1472 int fork
, /* data or attr fork */
1473 int *eofp
, /* out: end of file found */
1474 xfs_extnum_t
*lastxp
, /* out: last extent index */
1475 xfs_bmbt_irec_t
*gotp
, /* out: extent entry found */
1476 xfs_bmbt_irec_t
*prevp
) /* out: previous extent entry found */
1478 xfs_ifork_t
*ifp
; /* inode fork pointer */
1479 xfs_bmbt_rec_host_t
*ep
; /* extent record pointer */
1481 XFS_STATS_INC(xs_look_exlist
);
1482 ifp
= XFS_IFORK_PTR(ip
, fork
);
1484 ep
= xfs_bmap_search_multi_extents(ifp
, bno
, eofp
, lastxp
, gotp
, prevp
);
1486 if (unlikely(!(gotp
->br_startblock
) && (*lastxp
!= NULLEXTNUM
) &&
1487 !(XFS_IS_REALTIME_INODE(ip
) && fork
== XFS_DATA_FORK
))) {
1488 xfs_alert_tag(ip
->i_mount
, XFS_PTAG_FSBLOCK_ZERO
,
1489 "Access to block zero in inode %llu "
1490 "start_block: %llx start_off: %llx "
1491 "blkcnt: %llx extent-state: %x lastx: %x",
1492 (unsigned long long)ip
->i_ino
,
1493 (unsigned long long)gotp
->br_startblock
,
1494 (unsigned long long)gotp
->br_startoff
,
1495 (unsigned long long)gotp
->br_blockcount
,
1496 gotp
->br_state
, *lastxp
);
1497 *lastxp
= NULLEXTNUM
;
1505 * Returns the file-relative block number of the first unused block(s)
1506 * in the file with at least "len" logically contiguous blocks free.
1507 * This is the lowest-address hole if the file has holes, else the first block
1508 * past the end of file.
1509 * Return 0 if the file is currently local (in-inode).
1512 xfs_bmap_first_unused(
1513 xfs_trans_t
*tp
, /* transaction pointer */
1514 xfs_inode_t
*ip
, /* incore inode */
1515 xfs_extlen_t len
, /* size of hole to find */
1516 xfs_fileoff_t
*first_unused
, /* unused block */
1517 int whichfork
) /* data or attr fork */
1519 int error
; /* error return value */
1520 int idx
; /* extent record index */
1521 xfs_ifork_t
*ifp
; /* inode fork pointer */
1522 xfs_fileoff_t lastaddr
; /* last block number seen */
1523 xfs_fileoff_t lowest
; /* lowest useful block */
1524 xfs_fileoff_t max
; /* starting useful block */
1525 xfs_fileoff_t off
; /* offset for this block */
1526 xfs_extnum_t nextents
; /* number of extent entries */
1528 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_BTREE
||
1529 XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_EXTENTS
||
1530 XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
);
1531 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
) {
1535 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
1536 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
1537 (error
= xfs_iread_extents(tp
, ip
, whichfork
)))
1539 lowest
= *first_unused
;
1540 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
1541 for (idx
= 0, lastaddr
= 0, max
= lowest
; idx
< nextents
; idx
++) {
1542 xfs_bmbt_rec_host_t
*ep
= xfs_iext_get_ext(ifp
, idx
);
1543 off
= xfs_bmbt_get_startoff(ep
);
1545 * See if the hole before this extent will work.
1547 if (off
>= lowest
+ len
&& off
- max
>= len
) {
1548 *first_unused
= max
;
1551 lastaddr
= off
+ xfs_bmbt_get_blockcount(ep
);
1552 max
= XFS_FILEOFF_MAX(lastaddr
, lowest
);
1554 *first_unused
= max
;
1559 * Returns the file-relative block number of the last block - 1 before
1560 * last_block (input value) in the file.
1561 * This is not based on i_size, it is based on the extent records.
1562 * Returns 0 for local files, as they do not have extent records.
1565 xfs_bmap_last_before(
1566 xfs_trans_t
*tp
, /* transaction pointer */
1567 xfs_inode_t
*ip
, /* incore inode */
1568 xfs_fileoff_t
*last_block
, /* last block */
1569 int whichfork
) /* data or attr fork */
1571 xfs_fileoff_t bno
; /* input file offset */
1572 int eof
; /* hit end of file */
1573 xfs_bmbt_rec_host_t
*ep
; /* pointer to last extent */
1574 int error
; /* error return value */
1575 xfs_bmbt_irec_t got
; /* current extent value */
1576 xfs_ifork_t
*ifp
; /* inode fork pointer */
1577 xfs_extnum_t lastx
; /* last extent used */
1578 xfs_bmbt_irec_t prev
; /* previous extent value */
1580 if (XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
&&
1581 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
&&
1582 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_LOCAL
)
1583 return XFS_ERROR(EIO
);
1584 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
) {
1588 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
1589 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
1590 (error
= xfs_iread_extents(tp
, ip
, whichfork
)))
1592 bno
= *last_block
- 1;
1593 ep
= xfs_bmap_search_extents(ip
, bno
, whichfork
, &eof
, &lastx
, &got
,
1595 if (eof
|| xfs_bmbt_get_startoff(ep
) > bno
) {
1596 if (prev
.br_startoff
== NULLFILEOFF
)
1599 *last_block
= prev
.br_startoff
+ prev
.br_blockcount
;
1602 * Otherwise *last_block is already the right answer.
1608 xfs_bmap_last_extent(
1609 struct xfs_trans
*tp
,
1610 struct xfs_inode
*ip
,
1612 struct xfs_bmbt_irec
*rec
,
1615 struct xfs_ifork
*ifp
= XFS_IFORK_PTR(ip
, whichfork
);
1619 if (!(ifp
->if_flags
& XFS_IFEXTENTS
)) {
1620 error
= xfs_iread_extents(tp
, ip
, whichfork
);
1625 nextents
= ifp
->if_bytes
/ sizeof(xfs_bmbt_rec_t
);
1626 if (nextents
== 0) {
1631 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, nextents
- 1), rec
);
1637 * Check the last inode extent to determine whether this allocation will result
1638 * in blocks being allocated at the end of the file. When we allocate new data
1639 * blocks at the end of the file which do not start at the previous data block,
1640 * we will try to align the new blocks at stripe unit boundaries.
1642 * Returns 1 in bma->aeof if the file (fork) is empty as any new write will be
1643 * at, or past the EOF.
1647 struct xfs_bmalloca
*bma
,
1650 struct xfs_bmbt_irec rec
;
1655 error
= xfs_bmap_last_extent(NULL
, bma
->ip
, whichfork
, &rec
,
1666 * Check if we are allocation or past the last extent, or at least into
1667 * the last delayed allocated extent.
1669 bma
->aeof
= bma
->offset
>= rec
.br_startoff
+ rec
.br_blockcount
||
1670 (bma
->offset
>= rec
.br_startoff
&&
1671 isnullstartblock(rec
.br_startblock
));
1676 * Returns the file-relative block number of the first block past eof in
1677 * the file. This is not based on i_size, it is based on the extent records.
1678 * Returns 0 for local files, as they do not have extent records.
1681 xfs_bmap_last_offset(
1682 struct xfs_inode
*ip
,
1683 xfs_fileoff_t
*last_block
,
1686 struct xfs_bmbt_irec rec
;
1692 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
)
1695 if (XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
&&
1696 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
)
1697 return XFS_ERROR(EIO
);
1699 error
= xfs_bmap_last_extent(NULL
, ip
, whichfork
, &rec
, &is_empty
);
1700 if (error
|| is_empty
)
1703 *last_block
= rec
.br_startoff
+ rec
.br_blockcount
;
1708 * Returns whether the selected fork of the inode has exactly one
1709 * block or not. For the data fork we check this matches di_size,
1710 * implying the file's range is 0..bsize-1.
1712 int /* 1=>1 block, 0=>otherwise */
1714 xfs_inode_t
*ip
, /* incore inode */
1715 int whichfork
) /* data or attr fork */
1717 xfs_bmbt_rec_host_t
*ep
; /* ptr to fork's extent */
1718 xfs_ifork_t
*ifp
; /* inode fork pointer */
1719 int rval
; /* return value */
1720 xfs_bmbt_irec_t s
; /* internal version of extent */
1723 if (whichfork
== XFS_DATA_FORK
)
1724 return XFS_ISIZE(ip
) == ip
->i_mount
->m_sb
.sb_blocksize
;
1726 if (XFS_IFORK_NEXTENTS(ip
, whichfork
) != 1)
1728 if (XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
)
1730 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
1731 ASSERT(ifp
->if_flags
& XFS_IFEXTENTS
);
1732 ep
= xfs_iext_get_ext(ifp
, 0);
1733 xfs_bmbt_get_all(ep
, &s
);
1734 rval
= s
.br_startoff
== 0 && s
.br_blockcount
== 1;
1735 if (rval
&& whichfork
== XFS_DATA_FORK
)
1736 ASSERT(XFS_ISIZE(ip
) == ip
->i_mount
->m_sb
.sb_blocksize
);
1741 * Extent tree manipulation functions used during allocation.
1745 * Convert a delayed allocation to a real allocation.
1747 STATIC
int /* error */
1748 xfs_bmap_add_extent_delay_real(
1749 struct xfs_bmalloca
*bma
)
1751 struct xfs_bmbt_irec
*new = &bma
->got
;
1752 int diff
; /* temp value */
1753 xfs_bmbt_rec_host_t
*ep
; /* extent entry for idx */
1754 int error
; /* error return value */
1755 int i
; /* temp state */
1756 xfs_ifork_t
*ifp
; /* inode fork pointer */
1757 xfs_fileoff_t new_endoff
; /* end offset of new entry */
1758 xfs_bmbt_irec_t r
[3]; /* neighbor extent entries */
1759 /* left is 0, right is 1, prev is 2 */
1760 int rval
=0; /* return value (logging flags) */
1761 int state
= 0;/* state bits, accessed thru macros */
1762 xfs_filblks_t da_new
; /* new count del alloc blocks used */
1763 xfs_filblks_t da_old
; /* old count del alloc blocks used */
1764 xfs_filblks_t temp
=0; /* value for da_new calculations */
1765 xfs_filblks_t temp2
=0;/* value for da_new calculations */
1766 int tmp_rval
; /* partial logging flags */
1768 ifp
= XFS_IFORK_PTR(bma
->ip
, XFS_DATA_FORK
);
1770 ASSERT(bma
->idx
>= 0);
1771 ASSERT(bma
->idx
<= ifp
->if_bytes
/ sizeof(struct xfs_bmbt_rec
));
1772 ASSERT(!isnullstartblock(new->br_startblock
));
1774 (bma
->cur
->bc_private
.b
.flags
& XFS_BTCUR_BPRV_WASDEL
));
1776 XFS_STATS_INC(xs_add_exlist
);
1783 * Set up a bunch of variables to make the tests simpler.
1785 ep
= xfs_iext_get_ext(ifp
, bma
->idx
);
1786 xfs_bmbt_get_all(ep
, &PREV
);
1787 new_endoff
= new->br_startoff
+ new->br_blockcount
;
1788 ASSERT(PREV
.br_startoff
<= new->br_startoff
);
1789 ASSERT(PREV
.br_startoff
+ PREV
.br_blockcount
>= new_endoff
);
1791 da_old
= startblockval(PREV
.br_startblock
);
1795 * Set flags determining what part of the previous delayed allocation
1796 * extent is being replaced by a real allocation.
1798 if (PREV
.br_startoff
== new->br_startoff
)
1799 state
|= BMAP_LEFT_FILLING
;
1800 if (PREV
.br_startoff
+ PREV
.br_blockcount
== new_endoff
)
1801 state
|= BMAP_RIGHT_FILLING
;
1804 * Check and set flags if this segment has a left neighbor.
1805 * Don't set contiguous if the combined extent would be too large.
1808 state
|= BMAP_LEFT_VALID
;
1809 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, bma
->idx
- 1), &LEFT
);
1811 if (isnullstartblock(LEFT
.br_startblock
))
1812 state
|= BMAP_LEFT_DELAY
;
1815 if ((state
& BMAP_LEFT_VALID
) && !(state
& BMAP_LEFT_DELAY
) &&
1816 LEFT
.br_startoff
+ LEFT
.br_blockcount
== new->br_startoff
&&
1817 LEFT
.br_startblock
+ LEFT
.br_blockcount
== new->br_startblock
&&
1818 LEFT
.br_state
== new->br_state
&&
1819 LEFT
.br_blockcount
+ new->br_blockcount
<= MAXEXTLEN
)
1820 state
|= BMAP_LEFT_CONTIG
;
1823 * Check and set flags if this segment has a right neighbor.
1824 * Don't set contiguous if the combined extent would be too large.
1825 * Also check for all-three-contiguous being too large.
1827 if (bma
->idx
< bma
->ip
->i_df
.if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
) - 1) {
1828 state
|= BMAP_RIGHT_VALID
;
1829 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, bma
->idx
+ 1), &RIGHT
);
1831 if (isnullstartblock(RIGHT
.br_startblock
))
1832 state
|= BMAP_RIGHT_DELAY
;
1835 if ((state
& BMAP_RIGHT_VALID
) && !(state
& BMAP_RIGHT_DELAY
) &&
1836 new_endoff
== RIGHT
.br_startoff
&&
1837 new->br_startblock
+ new->br_blockcount
== RIGHT
.br_startblock
&&
1838 new->br_state
== RIGHT
.br_state
&&
1839 new->br_blockcount
+ RIGHT
.br_blockcount
<= MAXEXTLEN
&&
1840 ((state
& (BMAP_LEFT_CONTIG
| BMAP_LEFT_FILLING
|
1841 BMAP_RIGHT_FILLING
)) !=
1842 (BMAP_LEFT_CONTIG
| BMAP_LEFT_FILLING
|
1843 BMAP_RIGHT_FILLING
) ||
1844 LEFT
.br_blockcount
+ new->br_blockcount
+ RIGHT
.br_blockcount
1846 state
|= BMAP_RIGHT_CONTIG
;
1850 * Switch out based on the FILLING and CONTIG state bits.
1852 switch (state
& (BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
|
1853 BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
)) {
1854 case BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
|
1855 BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
:
1857 * Filling in all of a previously delayed allocation extent.
1858 * The left and right neighbors are both contiguous with new.
1861 trace_xfs_bmap_pre_update(bma
->ip
, bma
->idx
, state
, _THIS_IP_
);
1862 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, bma
->idx
),
1863 LEFT
.br_blockcount
+ PREV
.br_blockcount
+
1864 RIGHT
.br_blockcount
);
1865 trace_xfs_bmap_post_update(bma
->ip
, bma
->idx
, state
, _THIS_IP_
);
1867 xfs_iext_remove(bma
->ip
, bma
->idx
+ 1, 2, state
);
1868 bma
->ip
->i_d
.di_nextents
--;
1869 if (bma
->cur
== NULL
)
1870 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1872 rval
= XFS_ILOG_CORE
;
1873 error
= xfs_bmbt_lookup_eq(bma
->cur
, RIGHT
.br_startoff
,
1874 RIGHT
.br_startblock
,
1875 RIGHT
.br_blockcount
, &i
);
1878 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1879 error
= xfs_btree_delete(bma
->cur
, &i
);
1882 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1883 error
= xfs_btree_decrement(bma
->cur
, 0, &i
);
1886 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1887 error
= xfs_bmbt_update(bma
->cur
, LEFT
.br_startoff
,
1889 LEFT
.br_blockcount
+
1890 PREV
.br_blockcount
+
1891 RIGHT
.br_blockcount
, LEFT
.br_state
);
1897 case BMAP_LEFT_FILLING
| BMAP_RIGHT_FILLING
| BMAP_LEFT_CONTIG
:
1899 * Filling in all of a previously delayed allocation extent.
1900 * The left neighbor is contiguous, the right is not.
1904 trace_xfs_bmap_pre_update(bma
->ip
, bma
->idx
, state
, _THIS_IP_
);
1905 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, bma
->idx
),
1906 LEFT
.br_blockcount
+ PREV
.br_blockcount
);
1907 trace_xfs_bmap_post_update(bma
->ip
, bma
->idx
, state
, _THIS_IP_
);
1909 xfs_iext_remove(bma
->ip
, bma
->idx
+ 1, 1, state
);
1910 if (bma
->cur
== NULL
)
1911 rval
= XFS_ILOG_DEXT
;
1914 error
= xfs_bmbt_lookup_eq(bma
->cur
, LEFT
.br_startoff
,
1915 LEFT
.br_startblock
, LEFT
.br_blockcount
,
1919 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1920 error
= xfs_bmbt_update(bma
->cur
, LEFT
.br_startoff
,
1922 LEFT
.br_blockcount
+
1923 PREV
.br_blockcount
, LEFT
.br_state
);
1929 case BMAP_LEFT_FILLING
| BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
:
1931 * Filling in all of a previously delayed allocation extent.
1932 * The right neighbor is contiguous, the left is not.
1934 trace_xfs_bmap_pre_update(bma
->ip
, bma
->idx
, state
, _THIS_IP_
);
1935 xfs_bmbt_set_startblock(ep
, new->br_startblock
);
1936 xfs_bmbt_set_blockcount(ep
,
1937 PREV
.br_blockcount
+ RIGHT
.br_blockcount
);
1938 trace_xfs_bmap_post_update(bma
->ip
, bma
->idx
, state
, _THIS_IP_
);
1940 xfs_iext_remove(bma
->ip
, bma
->idx
+ 1, 1, state
);
1941 if (bma
->cur
== NULL
)
1942 rval
= XFS_ILOG_DEXT
;
1945 error
= xfs_bmbt_lookup_eq(bma
->cur
, RIGHT
.br_startoff
,
1946 RIGHT
.br_startblock
,
1947 RIGHT
.br_blockcount
, &i
);
1950 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1951 error
= xfs_bmbt_update(bma
->cur
, PREV
.br_startoff
,
1953 PREV
.br_blockcount
+
1954 RIGHT
.br_blockcount
, PREV
.br_state
);
1960 case BMAP_LEFT_FILLING
| BMAP_RIGHT_FILLING
:
1962 * Filling in all of a previously delayed allocation extent.
1963 * Neither the left nor right neighbors are contiguous with
1966 trace_xfs_bmap_pre_update(bma
->ip
, bma
->idx
, state
, _THIS_IP_
);
1967 xfs_bmbt_set_startblock(ep
, new->br_startblock
);
1968 trace_xfs_bmap_post_update(bma
->ip
, bma
->idx
, state
, _THIS_IP_
);
1970 bma
->ip
->i_d
.di_nextents
++;
1971 if (bma
->cur
== NULL
)
1972 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1974 rval
= XFS_ILOG_CORE
;
1975 error
= xfs_bmbt_lookup_eq(bma
->cur
, new->br_startoff
,
1976 new->br_startblock
, new->br_blockcount
,
1980 XFS_WANT_CORRUPTED_GOTO(i
== 0, done
);
1981 bma
->cur
->bc_rec
.b
.br_state
= XFS_EXT_NORM
;
1982 error
= xfs_btree_insert(bma
->cur
, &i
);
1985 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1989 case BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
:
1991 * Filling in the first part of a previous delayed allocation.
1992 * The left neighbor is contiguous.
1994 trace_xfs_bmap_pre_update(bma
->ip
, bma
->idx
- 1, state
, _THIS_IP_
);
1995 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, bma
->idx
- 1),
1996 LEFT
.br_blockcount
+ new->br_blockcount
);
1997 xfs_bmbt_set_startoff(ep
,
1998 PREV
.br_startoff
+ new->br_blockcount
);
1999 trace_xfs_bmap_post_update(bma
->ip
, bma
->idx
- 1, state
, _THIS_IP_
);
2001 temp
= PREV
.br_blockcount
- new->br_blockcount
;
2002 trace_xfs_bmap_pre_update(bma
->ip
, bma
->idx
, state
, _THIS_IP_
);
2003 xfs_bmbt_set_blockcount(ep
, temp
);
2004 if (bma
->cur
== NULL
)
2005 rval
= XFS_ILOG_DEXT
;
2008 error
= xfs_bmbt_lookup_eq(bma
->cur
, LEFT
.br_startoff
,
2009 LEFT
.br_startblock
, LEFT
.br_blockcount
,
2013 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2014 error
= xfs_bmbt_update(bma
->cur
, LEFT
.br_startoff
,
2016 LEFT
.br_blockcount
+
2022 da_new
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma
->ip
, temp
),
2023 startblockval(PREV
.br_startblock
));
2024 xfs_bmbt_set_startblock(ep
, nullstartblock(da_new
));
2025 trace_xfs_bmap_post_update(bma
->ip
, bma
->idx
, state
, _THIS_IP_
);
2030 case BMAP_LEFT_FILLING
:
2032 * Filling in the first part of a previous delayed allocation.
2033 * The left neighbor is not contiguous.
2035 trace_xfs_bmap_pre_update(bma
->ip
, bma
->idx
, state
, _THIS_IP_
);
2036 xfs_bmbt_set_startoff(ep
, new_endoff
);
2037 temp
= PREV
.br_blockcount
- new->br_blockcount
;
2038 xfs_bmbt_set_blockcount(ep
, temp
);
2039 xfs_iext_insert(bma
->ip
, bma
->idx
, 1, new, state
);
2040 bma
->ip
->i_d
.di_nextents
++;
2041 if (bma
->cur
== NULL
)
2042 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
2044 rval
= XFS_ILOG_CORE
;
2045 error
= xfs_bmbt_lookup_eq(bma
->cur
, new->br_startoff
,
2046 new->br_startblock
, new->br_blockcount
,
2050 XFS_WANT_CORRUPTED_GOTO(i
== 0, done
);
2051 bma
->cur
->bc_rec
.b
.br_state
= XFS_EXT_NORM
;
2052 error
= xfs_btree_insert(bma
->cur
, &i
);
2055 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2058 if (xfs_bmap_needs_btree(bma
->ip
, XFS_DATA_FORK
)) {
2059 error
= xfs_bmap_extents_to_btree(bma
->tp
, bma
->ip
,
2060 bma
->firstblock
, bma
->flist
,
2061 &bma
->cur
, 1, &tmp_rval
, XFS_DATA_FORK
);
2066 da_new
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma
->ip
, temp
),
2067 startblockval(PREV
.br_startblock
) -
2068 (bma
->cur
? bma
->cur
->bc_private
.b
.allocated
: 0));
2069 ep
= xfs_iext_get_ext(ifp
, bma
->idx
+ 1);
2070 xfs_bmbt_set_startblock(ep
, nullstartblock(da_new
));
2071 trace_xfs_bmap_post_update(bma
->ip
, bma
->idx
+ 1, state
, _THIS_IP_
);
2074 case BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
:
2076 * Filling in the last part of a previous delayed allocation.
2077 * The right neighbor is contiguous with the new allocation.
2079 temp
= PREV
.br_blockcount
- new->br_blockcount
;
2080 trace_xfs_bmap_pre_update(bma
->ip
, bma
->idx
+ 1, state
, _THIS_IP_
);
2081 xfs_bmbt_set_blockcount(ep
, temp
);
2082 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp
, bma
->idx
+ 1),
2083 new->br_startoff
, new->br_startblock
,
2084 new->br_blockcount
+ RIGHT
.br_blockcount
,
2086 trace_xfs_bmap_post_update(bma
->ip
, bma
->idx
+ 1, state
, _THIS_IP_
);
2087 if (bma
->cur
== NULL
)
2088 rval
= XFS_ILOG_DEXT
;
2091 error
= xfs_bmbt_lookup_eq(bma
->cur
, RIGHT
.br_startoff
,
2092 RIGHT
.br_startblock
,
2093 RIGHT
.br_blockcount
, &i
);
2096 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2097 error
= xfs_bmbt_update(bma
->cur
, new->br_startoff
,
2099 new->br_blockcount
+
2100 RIGHT
.br_blockcount
,
2106 da_new
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma
->ip
, temp
),
2107 startblockval(PREV
.br_startblock
));
2108 trace_xfs_bmap_pre_update(bma
->ip
, bma
->idx
, state
, _THIS_IP_
);
2109 xfs_bmbt_set_startblock(ep
, nullstartblock(da_new
));
2110 trace_xfs_bmap_post_update(bma
->ip
, bma
->idx
, state
, _THIS_IP_
);
2115 case BMAP_RIGHT_FILLING
:
2117 * Filling in the last part of a previous delayed allocation.
2118 * The right neighbor is not contiguous.
2120 temp
= PREV
.br_blockcount
- new->br_blockcount
;
2121 trace_xfs_bmap_pre_update(bma
->ip
, bma
->idx
, state
, _THIS_IP_
);
2122 xfs_bmbt_set_blockcount(ep
, temp
);
2123 xfs_iext_insert(bma
->ip
, bma
->idx
+ 1, 1, new, state
);
2124 bma
->ip
->i_d
.di_nextents
++;
2125 if (bma
->cur
== NULL
)
2126 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
2128 rval
= XFS_ILOG_CORE
;
2129 error
= xfs_bmbt_lookup_eq(bma
->cur
, new->br_startoff
,
2130 new->br_startblock
, new->br_blockcount
,
2134 XFS_WANT_CORRUPTED_GOTO(i
== 0, done
);
2135 bma
->cur
->bc_rec
.b
.br_state
= XFS_EXT_NORM
;
2136 error
= xfs_btree_insert(bma
->cur
, &i
);
2139 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2142 if (xfs_bmap_needs_btree(bma
->ip
, XFS_DATA_FORK
)) {
2143 error
= xfs_bmap_extents_to_btree(bma
->tp
, bma
->ip
,
2144 bma
->firstblock
, bma
->flist
, &bma
->cur
, 1,
2145 &tmp_rval
, XFS_DATA_FORK
);
2150 da_new
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma
->ip
, temp
),
2151 startblockval(PREV
.br_startblock
) -
2152 (bma
->cur
? bma
->cur
->bc_private
.b
.allocated
: 0));
2153 ep
= xfs_iext_get_ext(ifp
, bma
->idx
);
2154 xfs_bmbt_set_startblock(ep
, nullstartblock(da_new
));
2155 trace_xfs_bmap_post_update(bma
->ip
, bma
->idx
, state
, _THIS_IP_
);
2162 * Filling in the middle part of a previous delayed allocation.
2163 * Contiguity is impossible here.
2164 * This case is avoided almost all the time.
2166 * We start with a delayed allocation:
2168 * +ddddddddddddddddddddddddddddddddddddddddddddddddddddddd+
2171 * and we are allocating:
2172 * +rrrrrrrrrrrrrrrrr+
2175 * and we set it up for insertion as:
2176 * +ddddddddddddddddddd+rrrrrrrrrrrrrrrrr+ddddddddddddddddd+
2178 * PREV @ idx LEFT RIGHT
2179 * inserted at idx + 1
2181 temp
= new->br_startoff
- PREV
.br_startoff
;
2182 temp2
= PREV
.br_startoff
+ PREV
.br_blockcount
- new_endoff
;
2183 trace_xfs_bmap_pre_update(bma
->ip
, bma
->idx
, 0, _THIS_IP_
);
2184 xfs_bmbt_set_blockcount(ep
, temp
); /* truncate PREV */
2186 RIGHT
.br_state
= PREV
.br_state
;
2187 RIGHT
.br_startblock
= nullstartblock(
2188 (int)xfs_bmap_worst_indlen(bma
->ip
, temp2
));
2189 RIGHT
.br_startoff
= new_endoff
;
2190 RIGHT
.br_blockcount
= temp2
;
2191 /* insert LEFT (r[0]) and RIGHT (r[1]) at the same time */
2192 xfs_iext_insert(bma
->ip
, bma
->idx
+ 1, 2, &LEFT
, state
);
2193 bma
->ip
->i_d
.di_nextents
++;
2194 if (bma
->cur
== NULL
)
2195 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
2197 rval
= XFS_ILOG_CORE
;
2198 error
= xfs_bmbt_lookup_eq(bma
->cur
, new->br_startoff
,
2199 new->br_startblock
, new->br_blockcount
,
2203 XFS_WANT_CORRUPTED_GOTO(i
== 0, done
);
2204 bma
->cur
->bc_rec
.b
.br_state
= XFS_EXT_NORM
;
2205 error
= xfs_btree_insert(bma
->cur
, &i
);
2208 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2211 if (xfs_bmap_needs_btree(bma
->ip
, XFS_DATA_FORK
)) {
2212 error
= xfs_bmap_extents_to_btree(bma
->tp
, bma
->ip
,
2213 bma
->firstblock
, bma
->flist
, &bma
->cur
,
2214 1, &tmp_rval
, XFS_DATA_FORK
);
2219 temp
= xfs_bmap_worst_indlen(bma
->ip
, temp
);
2220 temp2
= xfs_bmap_worst_indlen(bma
->ip
, temp2
);
2221 diff
= (int)(temp
+ temp2
- startblockval(PREV
.br_startblock
) -
2222 (bma
->cur
? bma
->cur
->bc_private
.b
.allocated
: 0));
2224 error
= xfs_icsb_modify_counters(bma
->ip
->i_mount
,
2226 -((int64_t)diff
), 0);
2232 ep
= xfs_iext_get_ext(ifp
, bma
->idx
);
2233 xfs_bmbt_set_startblock(ep
, nullstartblock((int)temp
));
2234 trace_xfs_bmap_post_update(bma
->ip
, bma
->idx
, state
, _THIS_IP_
);
2235 trace_xfs_bmap_pre_update(bma
->ip
, bma
->idx
+ 2, state
, _THIS_IP_
);
2236 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp
, bma
->idx
+ 2),
2237 nullstartblock((int)temp2
));
2238 trace_xfs_bmap_post_update(bma
->ip
, bma
->idx
+ 2, state
, _THIS_IP_
);
2241 da_new
= temp
+ temp2
;
2244 case BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
2245 case BMAP_RIGHT_FILLING
| BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
2246 case BMAP_LEFT_FILLING
| BMAP_RIGHT_CONTIG
:
2247 case BMAP_RIGHT_FILLING
| BMAP_LEFT_CONTIG
:
2248 case BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
2249 case BMAP_LEFT_CONTIG
:
2250 case BMAP_RIGHT_CONTIG
:
2252 * These cases are all impossible.
2257 /* convert to a btree if necessary */
2258 if (xfs_bmap_needs_btree(bma
->ip
, XFS_DATA_FORK
)) {
2259 int tmp_logflags
; /* partial log flag return val */
2261 ASSERT(bma
->cur
== NULL
);
2262 error
= xfs_bmap_extents_to_btree(bma
->tp
, bma
->ip
,
2263 bma
->firstblock
, bma
->flist
, &bma
->cur
,
2264 da_old
> 0, &tmp_logflags
, XFS_DATA_FORK
);
2265 bma
->logflags
|= tmp_logflags
;
2270 /* adjust for changes in reserved delayed indirect blocks */
2271 if (da_old
|| da_new
) {
2274 temp
+= bma
->cur
->bc_private
.b
.allocated
;
2275 ASSERT(temp
<= da_old
);
2277 xfs_icsb_modify_counters(bma
->ip
->i_mount
,
2279 (int64_t)(da_old
- temp
), 0);
2282 /* clear out the allocated field, done with it now in any case. */
2284 bma
->cur
->bc_private
.b
.allocated
= 0;
2286 xfs_bmap_check_leaf_extents(bma
->cur
, bma
->ip
, XFS_DATA_FORK
);
2288 bma
->logflags
|= rval
;
2296 * Convert an unwritten allocation to a real allocation or vice versa.
2298 STATIC
int /* error */
2299 xfs_bmap_add_extent_unwritten_real(
2300 struct xfs_trans
*tp
,
2301 xfs_inode_t
*ip
, /* incore inode pointer */
2302 xfs_extnum_t
*idx
, /* extent number to update/insert */
2303 xfs_btree_cur_t
**curp
, /* if *curp is null, not a btree */
2304 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
2305 xfs_fsblock_t
*first
, /* pointer to firstblock variable */
2306 xfs_bmap_free_t
*flist
, /* list of extents to be freed */
2307 int *logflagsp
) /* inode logging flags */
2309 xfs_btree_cur_t
*cur
; /* btree cursor */
2310 xfs_bmbt_rec_host_t
*ep
; /* extent entry for idx */
2311 int error
; /* error return value */
2312 int i
; /* temp state */
2313 xfs_ifork_t
*ifp
; /* inode fork pointer */
2314 xfs_fileoff_t new_endoff
; /* end offset of new entry */
2315 xfs_exntst_t newext
; /* new extent state */
2316 xfs_exntst_t oldext
; /* old extent state */
2317 xfs_bmbt_irec_t r
[3]; /* neighbor extent entries */
2318 /* left is 0, right is 1, prev is 2 */
2319 int rval
=0; /* return value (logging flags) */
2320 int state
= 0;/* state bits, accessed thru macros */
2325 ifp
= XFS_IFORK_PTR(ip
, XFS_DATA_FORK
);
2328 ASSERT(*idx
<= ifp
->if_bytes
/ sizeof(struct xfs_bmbt_rec
));
2329 ASSERT(!isnullstartblock(new->br_startblock
));
2331 XFS_STATS_INC(xs_add_exlist
);
2338 * Set up a bunch of variables to make the tests simpler.
2341 ep
= xfs_iext_get_ext(ifp
, *idx
);
2342 xfs_bmbt_get_all(ep
, &PREV
);
2343 newext
= new->br_state
;
2344 oldext
= (newext
== XFS_EXT_UNWRITTEN
) ?
2345 XFS_EXT_NORM
: XFS_EXT_UNWRITTEN
;
2346 ASSERT(PREV
.br_state
== oldext
);
2347 new_endoff
= new->br_startoff
+ new->br_blockcount
;
2348 ASSERT(PREV
.br_startoff
<= new->br_startoff
);
2349 ASSERT(PREV
.br_startoff
+ PREV
.br_blockcount
>= new_endoff
);
2352 * Set flags determining what part of the previous oldext allocation
2353 * extent is being replaced by a newext allocation.
2355 if (PREV
.br_startoff
== new->br_startoff
)
2356 state
|= BMAP_LEFT_FILLING
;
2357 if (PREV
.br_startoff
+ PREV
.br_blockcount
== new_endoff
)
2358 state
|= BMAP_RIGHT_FILLING
;
2361 * Check and set flags if this segment has a left neighbor.
2362 * Don't set contiguous if the combined extent would be too large.
2365 state
|= BMAP_LEFT_VALID
;
2366 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, *idx
- 1), &LEFT
);
2368 if (isnullstartblock(LEFT
.br_startblock
))
2369 state
|= BMAP_LEFT_DELAY
;
2372 if ((state
& BMAP_LEFT_VALID
) && !(state
& BMAP_LEFT_DELAY
) &&
2373 LEFT
.br_startoff
+ LEFT
.br_blockcount
== new->br_startoff
&&
2374 LEFT
.br_startblock
+ LEFT
.br_blockcount
== new->br_startblock
&&
2375 LEFT
.br_state
== newext
&&
2376 LEFT
.br_blockcount
+ new->br_blockcount
<= MAXEXTLEN
)
2377 state
|= BMAP_LEFT_CONTIG
;
2380 * Check and set flags if this segment has a right neighbor.
2381 * Don't set contiguous if the combined extent would be too large.
2382 * Also check for all-three-contiguous being too large.
2384 if (*idx
< ip
->i_df
.if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
) - 1) {
2385 state
|= BMAP_RIGHT_VALID
;
2386 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, *idx
+ 1), &RIGHT
);
2387 if (isnullstartblock(RIGHT
.br_startblock
))
2388 state
|= BMAP_RIGHT_DELAY
;
2391 if ((state
& BMAP_RIGHT_VALID
) && !(state
& BMAP_RIGHT_DELAY
) &&
2392 new_endoff
== RIGHT
.br_startoff
&&
2393 new->br_startblock
+ new->br_blockcount
== RIGHT
.br_startblock
&&
2394 newext
== RIGHT
.br_state
&&
2395 new->br_blockcount
+ RIGHT
.br_blockcount
<= MAXEXTLEN
&&
2396 ((state
& (BMAP_LEFT_CONTIG
| BMAP_LEFT_FILLING
|
2397 BMAP_RIGHT_FILLING
)) !=
2398 (BMAP_LEFT_CONTIG
| BMAP_LEFT_FILLING
|
2399 BMAP_RIGHT_FILLING
) ||
2400 LEFT
.br_blockcount
+ new->br_blockcount
+ RIGHT
.br_blockcount
2402 state
|= BMAP_RIGHT_CONTIG
;
2405 * Switch out based on the FILLING and CONTIG state bits.
2407 switch (state
& (BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
|
2408 BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
)) {
2409 case BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
|
2410 BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
:
2412 * Setting all of a previous oldext extent to newext.
2413 * The left and right neighbors are both contiguous with new.
2417 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
2418 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, *idx
),
2419 LEFT
.br_blockcount
+ PREV
.br_blockcount
+
2420 RIGHT
.br_blockcount
);
2421 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
2423 xfs_iext_remove(ip
, *idx
+ 1, 2, state
);
2424 ip
->i_d
.di_nextents
-= 2;
2426 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
2428 rval
= XFS_ILOG_CORE
;
2429 if ((error
= xfs_bmbt_lookup_eq(cur
, RIGHT
.br_startoff
,
2430 RIGHT
.br_startblock
,
2431 RIGHT
.br_blockcount
, &i
)))
2433 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2434 if ((error
= xfs_btree_delete(cur
, &i
)))
2436 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2437 if ((error
= xfs_btree_decrement(cur
, 0, &i
)))
2439 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2440 if ((error
= xfs_btree_delete(cur
, &i
)))
2442 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2443 if ((error
= xfs_btree_decrement(cur
, 0, &i
)))
2445 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2446 if ((error
= xfs_bmbt_update(cur
, LEFT
.br_startoff
,
2448 LEFT
.br_blockcount
+ PREV
.br_blockcount
+
2449 RIGHT
.br_blockcount
, LEFT
.br_state
)))
2454 case BMAP_LEFT_FILLING
| BMAP_RIGHT_FILLING
| BMAP_LEFT_CONTIG
:
2456 * Setting all of a previous oldext extent to newext.
2457 * The left neighbor is contiguous, the right is not.
2461 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
2462 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, *idx
),
2463 LEFT
.br_blockcount
+ PREV
.br_blockcount
);
2464 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
2466 xfs_iext_remove(ip
, *idx
+ 1, 1, state
);
2467 ip
->i_d
.di_nextents
--;
2469 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
2471 rval
= XFS_ILOG_CORE
;
2472 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
2473 PREV
.br_startblock
, PREV
.br_blockcount
,
2476 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2477 if ((error
= xfs_btree_delete(cur
, &i
)))
2479 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2480 if ((error
= xfs_btree_decrement(cur
, 0, &i
)))
2482 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2483 if ((error
= xfs_bmbt_update(cur
, LEFT
.br_startoff
,
2485 LEFT
.br_blockcount
+ PREV
.br_blockcount
,
2491 case BMAP_LEFT_FILLING
| BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
:
2493 * Setting all of a previous oldext extent to newext.
2494 * The right neighbor is contiguous, the left is not.
2496 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
2497 xfs_bmbt_set_blockcount(ep
,
2498 PREV
.br_blockcount
+ RIGHT
.br_blockcount
);
2499 xfs_bmbt_set_state(ep
, newext
);
2500 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
2501 xfs_iext_remove(ip
, *idx
+ 1, 1, state
);
2502 ip
->i_d
.di_nextents
--;
2504 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
2506 rval
= XFS_ILOG_CORE
;
2507 if ((error
= xfs_bmbt_lookup_eq(cur
, RIGHT
.br_startoff
,
2508 RIGHT
.br_startblock
,
2509 RIGHT
.br_blockcount
, &i
)))
2511 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2512 if ((error
= xfs_btree_delete(cur
, &i
)))
2514 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2515 if ((error
= xfs_btree_decrement(cur
, 0, &i
)))
2517 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2518 if ((error
= xfs_bmbt_update(cur
, new->br_startoff
,
2520 new->br_blockcount
+ RIGHT
.br_blockcount
,
2526 case BMAP_LEFT_FILLING
| BMAP_RIGHT_FILLING
:
2528 * Setting all of a previous oldext extent to newext.
2529 * Neither the left nor right neighbors are contiguous with
2532 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
2533 xfs_bmbt_set_state(ep
, newext
);
2534 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
2537 rval
= XFS_ILOG_DEXT
;
2540 if ((error
= xfs_bmbt_lookup_eq(cur
, new->br_startoff
,
2541 new->br_startblock
, new->br_blockcount
,
2544 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2545 if ((error
= xfs_bmbt_update(cur
, new->br_startoff
,
2546 new->br_startblock
, new->br_blockcount
,
2552 case BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
:
2554 * Setting the first part of a previous oldext extent to newext.
2555 * The left neighbor is contiguous.
2557 trace_xfs_bmap_pre_update(ip
, *idx
- 1, state
, _THIS_IP_
);
2558 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, *idx
- 1),
2559 LEFT
.br_blockcount
+ new->br_blockcount
);
2560 xfs_bmbt_set_startoff(ep
,
2561 PREV
.br_startoff
+ new->br_blockcount
);
2562 trace_xfs_bmap_post_update(ip
, *idx
- 1, state
, _THIS_IP_
);
2564 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
2565 xfs_bmbt_set_startblock(ep
,
2566 new->br_startblock
+ new->br_blockcount
);
2567 xfs_bmbt_set_blockcount(ep
,
2568 PREV
.br_blockcount
- new->br_blockcount
);
2569 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
2574 rval
= XFS_ILOG_DEXT
;
2577 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
2578 PREV
.br_startblock
, PREV
.br_blockcount
,
2581 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2582 if ((error
= xfs_bmbt_update(cur
,
2583 PREV
.br_startoff
+ new->br_blockcount
,
2584 PREV
.br_startblock
+ new->br_blockcount
,
2585 PREV
.br_blockcount
- new->br_blockcount
,
2588 if ((error
= xfs_btree_decrement(cur
, 0, &i
)))
2590 error
= xfs_bmbt_update(cur
, LEFT
.br_startoff
,
2592 LEFT
.br_blockcount
+ new->br_blockcount
,
2599 case BMAP_LEFT_FILLING
:
2601 * Setting the first part of a previous oldext extent to newext.
2602 * The left neighbor is not contiguous.
2604 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
2605 ASSERT(ep
&& xfs_bmbt_get_state(ep
) == oldext
);
2606 xfs_bmbt_set_startoff(ep
, new_endoff
);
2607 xfs_bmbt_set_blockcount(ep
,
2608 PREV
.br_blockcount
- new->br_blockcount
);
2609 xfs_bmbt_set_startblock(ep
,
2610 new->br_startblock
+ new->br_blockcount
);
2611 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
2613 xfs_iext_insert(ip
, *idx
, 1, new, state
);
2614 ip
->i_d
.di_nextents
++;
2616 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
2618 rval
= XFS_ILOG_CORE
;
2619 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
2620 PREV
.br_startblock
, PREV
.br_blockcount
,
2623 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2624 if ((error
= xfs_bmbt_update(cur
,
2625 PREV
.br_startoff
+ new->br_blockcount
,
2626 PREV
.br_startblock
+ new->br_blockcount
,
2627 PREV
.br_blockcount
- new->br_blockcount
,
2630 cur
->bc_rec
.b
= *new;
2631 if ((error
= xfs_btree_insert(cur
, &i
)))
2633 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2637 case BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
:
2639 * Setting the last part of a previous oldext extent to newext.
2640 * The right neighbor is contiguous with the new allocation.
2642 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
2643 xfs_bmbt_set_blockcount(ep
,
2644 PREV
.br_blockcount
- new->br_blockcount
);
2645 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
2649 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
2650 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp
, *idx
),
2651 new->br_startoff
, new->br_startblock
,
2652 new->br_blockcount
+ RIGHT
.br_blockcount
, newext
);
2653 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
2656 rval
= XFS_ILOG_DEXT
;
2659 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
2661 PREV
.br_blockcount
, &i
)))
2663 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2664 if ((error
= xfs_bmbt_update(cur
, PREV
.br_startoff
,
2666 PREV
.br_blockcount
- new->br_blockcount
,
2669 if ((error
= xfs_btree_increment(cur
, 0, &i
)))
2671 if ((error
= xfs_bmbt_update(cur
, new->br_startoff
,
2673 new->br_blockcount
+ RIGHT
.br_blockcount
,
2679 case BMAP_RIGHT_FILLING
:
2681 * Setting the last part of a previous oldext extent to newext.
2682 * The right neighbor is not contiguous.
2684 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
2685 xfs_bmbt_set_blockcount(ep
,
2686 PREV
.br_blockcount
- new->br_blockcount
);
2687 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
2690 xfs_iext_insert(ip
, *idx
, 1, new, state
);
2692 ip
->i_d
.di_nextents
++;
2694 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
2696 rval
= XFS_ILOG_CORE
;
2697 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
2698 PREV
.br_startblock
, PREV
.br_blockcount
,
2701 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2702 if ((error
= xfs_bmbt_update(cur
, PREV
.br_startoff
,
2704 PREV
.br_blockcount
- new->br_blockcount
,
2707 if ((error
= xfs_bmbt_lookup_eq(cur
, new->br_startoff
,
2708 new->br_startblock
, new->br_blockcount
,
2711 XFS_WANT_CORRUPTED_GOTO(i
== 0, done
);
2712 cur
->bc_rec
.b
.br_state
= XFS_EXT_NORM
;
2713 if ((error
= xfs_btree_insert(cur
, &i
)))
2715 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2721 * Setting the middle part of a previous oldext extent to
2722 * newext. Contiguity is impossible here.
2723 * One extent becomes three extents.
2725 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
2726 xfs_bmbt_set_blockcount(ep
,
2727 new->br_startoff
- PREV
.br_startoff
);
2728 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
2731 r
[1].br_startoff
= new_endoff
;
2732 r
[1].br_blockcount
=
2733 PREV
.br_startoff
+ PREV
.br_blockcount
- new_endoff
;
2734 r
[1].br_startblock
= new->br_startblock
+ new->br_blockcount
;
2735 r
[1].br_state
= oldext
;
2738 xfs_iext_insert(ip
, *idx
, 2, &r
[0], state
);
2740 ip
->i_d
.di_nextents
+= 2;
2742 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
2744 rval
= XFS_ILOG_CORE
;
2745 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
2746 PREV
.br_startblock
, PREV
.br_blockcount
,
2749 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2750 /* new right extent - oldext */
2751 if ((error
= xfs_bmbt_update(cur
, r
[1].br_startoff
,
2752 r
[1].br_startblock
, r
[1].br_blockcount
,
2755 /* new left extent - oldext */
2756 cur
->bc_rec
.b
= PREV
;
2757 cur
->bc_rec
.b
.br_blockcount
=
2758 new->br_startoff
- PREV
.br_startoff
;
2759 if ((error
= xfs_btree_insert(cur
, &i
)))
2761 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2763 * Reset the cursor to the position of the new extent
2764 * we are about to insert as we can't trust it after
2765 * the previous insert.
2767 if ((error
= xfs_bmbt_lookup_eq(cur
, new->br_startoff
,
2768 new->br_startblock
, new->br_blockcount
,
2771 XFS_WANT_CORRUPTED_GOTO(i
== 0, done
);
2772 /* new middle extent - newext */
2773 cur
->bc_rec
.b
.br_state
= new->br_state
;
2774 if ((error
= xfs_btree_insert(cur
, &i
)))
2776 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2780 case BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
2781 case BMAP_RIGHT_FILLING
| BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
2782 case BMAP_LEFT_FILLING
| BMAP_RIGHT_CONTIG
:
2783 case BMAP_RIGHT_FILLING
| BMAP_LEFT_CONTIG
:
2784 case BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
2785 case BMAP_LEFT_CONTIG
:
2786 case BMAP_RIGHT_CONTIG
:
2788 * These cases are all impossible.
2793 /* convert to a btree if necessary */
2794 if (xfs_bmap_needs_btree(ip
, XFS_DATA_FORK
)) {
2795 int tmp_logflags
; /* partial log flag return val */
2797 ASSERT(cur
== NULL
);
2798 error
= xfs_bmap_extents_to_btree(tp
, ip
, first
, flist
, &cur
,
2799 0, &tmp_logflags
, XFS_DATA_FORK
);
2800 *logflagsp
|= tmp_logflags
;
2805 /* clear out the allocated field, done with it now in any case. */
2807 cur
->bc_private
.b
.allocated
= 0;
2811 xfs_bmap_check_leaf_extents(*curp
, ip
, XFS_DATA_FORK
);
2821 * Convert a hole to a delayed allocation.
2824 xfs_bmap_add_extent_hole_delay(
2825 xfs_inode_t
*ip
, /* incore inode pointer */
2826 xfs_extnum_t
*idx
, /* extent number to update/insert */
2827 xfs_bmbt_irec_t
*new) /* new data to add to file extents */
2829 xfs_ifork_t
*ifp
; /* inode fork pointer */
2830 xfs_bmbt_irec_t left
; /* left neighbor extent entry */
2831 xfs_filblks_t newlen
=0; /* new indirect size */
2832 xfs_filblks_t oldlen
=0; /* old indirect size */
2833 xfs_bmbt_irec_t right
; /* right neighbor extent entry */
2834 int state
; /* state bits, accessed thru macros */
2835 xfs_filblks_t temp
=0; /* temp for indirect calculations */
2837 ifp
= XFS_IFORK_PTR(ip
, XFS_DATA_FORK
);
2839 ASSERT(isnullstartblock(new->br_startblock
));
2842 * Check and set flags if this segment has a left neighbor
2845 state
|= BMAP_LEFT_VALID
;
2846 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, *idx
- 1), &left
);
2848 if (isnullstartblock(left
.br_startblock
))
2849 state
|= BMAP_LEFT_DELAY
;
2853 * Check and set flags if the current (right) segment exists.
2854 * If it doesn't exist, we're converting the hole at end-of-file.
2856 if (*idx
< ip
->i_df
.if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
)) {
2857 state
|= BMAP_RIGHT_VALID
;
2858 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, *idx
), &right
);
2860 if (isnullstartblock(right
.br_startblock
))
2861 state
|= BMAP_RIGHT_DELAY
;
2865 * Set contiguity flags on the left and right neighbors.
2866 * Don't let extents get too large, even if the pieces are contiguous.
2868 if ((state
& BMAP_LEFT_VALID
) && (state
& BMAP_LEFT_DELAY
) &&
2869 left
.br_startoff
+ left
.br_blockcount
== new->br_startoff
&&
2870 left
.br_blockcount
+ new->br_blockcount
<= MAXEXTLEN
)
2871 state
|= BMAP_LEFT_CONTIG
;
2873 if ((state
& BMAP_RIGHT_VALID
) && (state
& BMAP_RIGHT_DELAY
) &&
2874 new->br_startoff
+ new->br_blockcount
== right
.br_startoff
&&
2875 new->br_blockcount
+ right
.br_blockcount
<= MAXEXTLEN
&&
2876 (!(state
& BMAP_LEFT_CONTIG
) ||
2877 (left
.br_blockcount
+ new->br_blockcount
+
2878 right
.br_blockcount
<= MAXEXTLEN
)))
2879 state
|= BMAP_RIGHT_CONTIG
;
2882 * Switch out based on the contiguity flags.
2884 switch (state
& (BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
)) {
2885 case BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
2887 * New allocation is contiguous with delayed allocations
2888 * on the left and on the right.
2889 * Merge all three into a single extent record.
2892 temp
= left
.br_blockcount
+ new->br_blockcount
+
2893 right
.br_blockcount
;
2895 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
2896 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, *idx
), temp
);
2897 oldlen
= startblockval(left
.br_startblock
) +
2898 startblockval(new->br_startblock
) +
2899 startblockval(right
.br_startblock
);
2900 newlen
= xfs_bmap_worst_indlen(ip
, temp
);
2901 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp
, *idx
),
2902 nullstartblock((int)newlen
));
2903 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
2905 xfs_iext_remove(ip
, *idx
+ 1, 1, state
);
2908 case BMAP_LEFT_CONTIG
:
2910 * New allocation is contiguous with a delayed allocation
2912 * Merge the new allocation with the left neighbor.
2915 temp
= left
.br_blockcount
+ new->br_blockcount
;
2917 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
2918 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, *idx
), temp
);
2919 oldlen
= startblockval(left
.br_startblock
) +
2920 startblockval(new->br_startblock
);
2921 newlen
= xfs_bmap_worst_indlen(ip
, temp
);
2922 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp
, *idx
),
2923 nullstartblock((int)newlen
));
2924 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
2927 case BMAP_RIGHT_CONTIG
:
2929 * New allocation is contiguous with a delayed allocation
2931 * Merge the new allocation with the right neighbor.
2933 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
2934 temp
= new->br_blockcount
+ right
.br_blockcount
;
2935 oldlen
= startblockval(new->br_startblock
) +
2936 startblockval(right
.br_startblock
);
2937 newlen
= xfs_bmap_worst_indlen(ip
, temp
);
2938 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp
, *idx
),
2940 nullstartblock((int)newlen
), temp
, right
.br_state
);
2941 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
2946 * New allocation is not contiguous with another
2947 * delayed allocation.
2948 * Insert a new entry.
2950 oldlen
= newlen
= 0;
2951 xfs_iext_insert(ip
, *idx
, 1, new, state
);
2954 if (oldlen
!= newlen
) {
2955 ASSERT(oldlen
> newlen
);
2956 xfs_icsb_modify_counters(ip
->i_mount
, XFS_SBS_FDBLOCKS
,
2957 (int64_t)(oldlen
- newlen
), 0);
2959 * Nothing to do for disk quota accounting here.
2965 * Convert a hole to a real allocation.
2967 STATIC
int /* error */
2968 xfs_bmap_add_extent_hole_real(
2969 struct xfs_bmalloca
*bma
,
2972 struct xfs_bmbt_irec
*new = &bma
->got
;
2973 int error
; /* error return value */
2974 int i
; /* temp state */
2975 xfs_ifork_t
*ifp
; /* inode fork pointer */
2976 xfs_bmbt_irec_t left
; /* left neighbor extent entry */
2977 xfs_bmbt_irec_t right
; /* right neighbor extent entry */
2978 int rval
=0; /* return value (logging flags) */
2979 int state
; /* state bits, accessed thru macros */
2981 ifp
= XFS_IFORK_PTR(bma
->ip
, whichfork
);
2983 ASSERT(bma
->idx
>= 0);
2984 ASSERT(bma
->idx
<= ifp
->if_bytes
/ sizeof(struct xfs_bmbt_rec
));
2985 ASSERT(!isnullstartblock(new->br_startblock
));
2987 !(bma
->cur
->bc_private
.b
.flags
& XFS_BTCUR_BPRV_WASDEL
));
2989 XFS_STATS_INC(xs_add_exlist
);
2992 if (whichfork
== XFS_ATTR_FORK
)
2993 state
|= BMAP_ATTRFORK
;
2996 * Check and set flags if this segment has a left neighbor.
2999 state
|= BMAP_LEFT_VALID
;
3000 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, bma
->idx
- 1), &left
);
3001 if (isnullstartblock(left
.br_startblock
))
3002 state
|= BMAP_LEFT_DELAY
;
3006 * Check and set flags if this segment has a current value.
3007 * Not true if we're inserting into the "hole" at eof.
3009 if (bma
->idx
< ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
)) {
3010 state
|= BMAP_RIGHT_VALID
;
3011 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, bma
->idx
), &right
);
3012 if (isnullstartblock(right
.br_startblock
))
3013 state
|= BMAP_RIGHT_DELAY
;
3017 * We're inserting a real allocation between "left" and "right".
3018 * Set the contiguity flags. Don't let extents get too large.
3020 if ((state
& BMAP_LEFT_VALID
) && !(state
& BMAP_LEFT_DELAY
) &&
3021 left
.br_startoff
+ left
.br_blockcount
== new->br_startoff
&&
3022 left
.br_startblock
+ left
.br_blockcount
== new->br_startblock
&&
3023 left
.br_state
== new->br_state
&&
3024 left
.br_blockcount
+ new->br_blockcount
<= MAXEXTLEN
)
3025 state
|= BMAP_LEFT_CONTIG
;
3027 if ((state
& BMAP_RIGHT_VALID
) && !(state
& BMAP_RIGHT_DELAY
) &&
3028 new->br_startoff
+ new->br_blockcount
== right
.br_startoff
&&
3029 new->br_startblock
+ new->br_blockcount
== right
.br_startblock
&&
3030 new->br_state
== right
.br_state
&&
3031 new->br_blockcount
+ right
.br_blockcount
<= MAXEXTLEN
&&
3032 (!(state
& BMAP_LEFT_CONTIG
) ||
3033 left
.br_blockcount
+ new->br_blockcount
+
3034 right
.br_blockcount
<= MAXEXTLEN
))
3035 state
|= BMAP_RIGHT_CONTIG
;
3039 * Select which case we're in here, and implement it.
3041 switch (state
& (BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
)) {
3042 case BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
3044 * New allocation is contiguous with real allocations on the
3045 * left and on the right.
3046 * Merge all three into a single extent record.
3049 trace_xfs_bmap_pre_update(bma
->ip
, bma
->idx
, state
, _THIS_IP_
);
3050 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, bma
->idx
),
3051 left
.br_blockcount
+ new->br_blockcount
+
3052 right
.br_blockcount
);
3053 trace_xfs_bmap_post_update(bma
->ip
, bma
->idx
, state
, _THIS_IP_
);
3055 xfs_iext_remove(bma
->ip
, bma
->idx
+ 1, 1, state
);
3057 XFS_IFORK_NEXT_SET(bma
->ip
, whichfork
,
3058 XFS_IFORK_NEXTENTS(bma
->ip
, whichfork
) - 1);
3059 if (bma
->cur
== NULL
) {
3060 rval
= XFS_ILOG_CORE
| xfs_ilog_fext(whichfork
);
3062 rval
= XFS_ILOG_CORE
;
3063 error
= xfs_bmbt_lookup_eq(bma
->cur
, right
.br_startoff
,
3064 right
.br_startblock
, right
.br_blockcount
,
3068 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
3069 error
= xfs_btree_delete(bma
->cur
, &i
);
3072 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
3073 error
= xfs_btree_decrement(bma
->cur
, 0, &i
);
3076 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
3077 error
= xfs_bmbt_update(bma
->cur
, left
.br_startoff
,
3079 left
.br_blockcount
+
3080 new->br_blockcount
+
3081 right
.br_blockcount
,
3088 case BMAP_LEFT_CONTIG
:
3090 * New allocation is contiguous with a real allocation
3092 * Merge the new allocation with the left neighbor.
3095 trace_xfs_bmap_pre_update(bma
->ip
, bma
->idx
, state
, _THIS_IP_
);
3096 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, bma
->idx
),
3097 left
.br_blockcount
+ new->br_blockcount
);
3098 trace_xfs_bmap_post_update(bma
->ip
, bma
->idx
, state
, _THIS_IP_
);
3100 if (bma
->cur
== NULL
) {
3101 rval
= xfs_ilog_fext(whichfork
);
3104 error
= xfs_bmbt_lookup_eq(bma
->cur
, left
.br_startoff
,
3105 left
.br_startblock
, left
.br_blockcount
,
3109 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
3110 error
= xfs_bmbt_update(bma
->cur
, left
.br_startoff
,
3112 left
.br_blockcount
+
3120 case BMAP_RIGHT_CONTIG
:
3122 * New allocation is contiguous with a real allocation
3124 * Merge the new allocation with the right neighbor.
3126 trace_xfs_bmap_pre_update(bma
->ip
, bma
->idx
, state
, _THIS_IP_
);
3127 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp
, bma
->idx
),
3128 new->br_startoff
, new->br_startblock
,
3129 new->br_blockcount
+ right
.br_blockcount
,
3131 trace_xfs_bmap_post_update(bma
->ip
, bma
->idx
, state
, _THIS_IP_
);
3133 if (bma
->cur
== NULL
) {
3134 rval
= xfs_ilog_fext(whichfork
);
3137 error
= xfs_bmbt_lookup_eq(bma
->cur
,
3139 right
.br_startblock
,
3140 right
.br_blockcount
, &i
);
3143 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
3144 error
= xfs_bmbt_update(bma
->cur
, new->br_startoff
,
3146 new->br_blockcount
+
3147 right
.br_blockcount
,
3156 * New allocation is not contiguous with another
3158 * Insert a new entry.
3160 xfs_iext_insert(bma
->ip
, bma
->idx
, 1, new, state
);
3161 XFS_IFORK_NEXT_SET(bma
->ip
, whichfork
,
3162 XFS_IFORK_NEXTENTS(bma
->ip
, whichfork
) + 1);
3163 if (bma
->cur
== NULL
) {
3164 rval
= XFS_ILOG_CORE
| xfs_ilog_fext(whichfork
);
3166 rval
= XFS_ILOG_CORE
;
3167 error
= xfs_bmbt_lookup_eq(bma
->cur
,
3170 new->br_blockcount
, &i
);
3173 XFS_WANT_CORRUPTED_GOTO(i
== 0, done
);
3174 bma
->cur
->bc_rec
.b
.br_state
= new->br_state
;
3175 error
= xfs_btree_insert(bma
->cur
, &i
);
3178 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
3183 /* convert to a btree if necessary */
3184 if (xfs_bmap_needs_btree(bma
->ip
, whichfork
)) {
3185 int tmp_logflags
; /* partial log flag return val */
3187 ASSERT(bma
->cur
== NULL
);
3188 error
= xfs_bmap_extents_to_btree(bma
->tp
, bma
->ip
,
3189 bma
->firstblock
, bma
->flist
, &bma
->cur
,
3190 0, &tmp_logflags
, whichfork
);
3191 bma
->logflags
|= tmp_logflags
;
3196 /* clear out the allocated field, done with it now in any case. */
3198 bma
->cur
->bc_private
.b
.allocated
= 0;
3200 xfs_bmap_check_leaf_extents(bma
->cur
, bma
->ip
, whichfork
);
3202 bma
->logflags
|= rval
;
3207 * Functions used in the extent read, allocate and remove paths
3211 * Adjust the size of the new extent based on di_extsize and rt extsize.
3214 xfs_bmap_extsize_align(
3216 xfs_bmbt_irec_t
*gotp
, /* next extent pointer */
3217 xfs_bmbt_irec_t
*prevp
, /* previous extent pointer */
3218 xfs_extlen_t extsz
, /* align to this extent size */
3219 int rt
, /* is this a realtime inode? */
3220 int eof
, /* is extent at end-of-file? */
3221 int delay
, /* creating delalloc extent? */
3222 int convert
, /* overwriting unwritten extent? */
3223 xfs_fileoff_t
*offp
, /* in/out: aligned offset */
3224 xfs_extlen_t
*lenp
) /* in/out: aligned length */
3226 xfs_fileoff_t orig_off
; /* original offset */
3227 xfs_extlen_t orig_alen
; /* original length */
3228 xfs_fileoff_t orig_end
; /* original off+len */
3229 xfs_fileoff_t nexto
; /* next file offset */
3230 xfs_fileoff_t prevo
; /* previous file offset */
3231 xfs_fileoff_t align_off
; /* temp for offset */
3232 xfs_extlen_t align_alen
; /* temp for length */
3233 xfs_extlen_t temp
; /* temp for calculations */
3238 orig_off
= align_off
= *offp
;
3239 orig_alen
= align_alen
= *lenp
;
3240 orig_end
= orig_off
+ orig_alen
;
3243 * If this request overlaps an existing extent, then don't
3244 * attempt to perform any additional alignment.
3246 if (!delay
&& !eof
&&
3247 (orig_off
>= gotp
->br_startoff
) &&
3248 (orig_end
<= gotp
->br_startoff
+ gotp
->br_blockcount
)) {
3253 * If the file offset is unaligned vs. the extent size
3254 * we need to align it. This will be possible unless
3255 * the file was previously written with a kernel that didn't
3256 * perform this alignment, or if a truncate shot us in the
3259 temp
= do_mod(orig_off
, extsz
);
3265 * Same adjustment for the end of the requested area.
3267 if ((temp
= (align_alen
% extsz
))) {
3268 align_alen
+= extsz
- temp
;
3271 * If the previous block overlaps with this proposed allocation
3272 * then move the start forward without adjusting the length.
3274 if (prevp
->br_startoff
!= NULLFILEOFF
) {
3275 if (prevp
->br_startblock
== HOLESTARTBLOCK
)
3276 prevo
= prevp
->br_startoff
;
3278 prevo
= prevp
->br_startoff
+ prevp
->br_blockcount
;
3281 if (align_off
!= orig_off
&& align_off
< prevo
)
3284 * If the next block overlaps with this proposed allocation
3285 * then move the start back without adjusting the length,
3286 * but not before offset 0.
3287 * This may of course make the start overlap previous block,
3288 * and if we hit the offset 0 limit then the next block
3289 * can still overlap too.
3291 if (!eof
&& gotp
->br_startoff
!= NULLFILEOFF
) {
3292 if ((delay
&& gotp
->br_startblock
== HOLESTARTBLOCK
) ||
3293 (!delay
&& gotp
->br_startblock
== DELAYSTARTBLOCK
))
3294 nexto
= gotp
->br_startoff
+ gotp
->br_blockcount
;
3296 nexto
= gotp
->br_startoff
;
3298 nexto
= NULLFILEOFF
;
3300 align_off
+ align_alen
!= orig_end
&&
3301 align_off
+ align_alen
> nexto
)
3302 align_off
= nexto
> align_alen
? nexto
- align_alen
: 0;
3304 * If we're now overlapping the next or previous extent that
3305 * means we can't fit an extsz piece in this hole. Just move
3306 * the start forward to the first valid spot and set
3307 * the length so we hit the end.
3309 if (align_off
!= orig_off
&& align_off
< prevo
)
3311 if (align_off
+ align_alen
!= orig_end
&&
3312 align_off
+ align_alen
> nexto
&&
3313 nexto
!= NULLFILEOFF
) {
3314 ASSERT(nexto
> prevo
);
3315 align_alen
= nexto
- align_off
;
3319 * If realtime, and the result isn't a multiple of the realtime
3320 * extent size we need to remove blocks until it is.
3322 if (rt
&& (temp
= (align_alen
% mp
->m_sb
.sb_rextsize
))) {
3324 * We're not covering the original request, or
3325 * we won't be able to once we fix the length.
3327 if (orig_off
< align_off
||
3328 orig_end
> align_off
+ align_alen
||
3329 align_alen
- temp
< orig_alen
)
3330 return XFS_ERROR(EINVAL
);
3332 * Try to fix it by moving the start up.
3334 if (align_off
+ temp
<= orig_off
) {
3339 * Try to fix it by moving the end in.
3341 else if (align_off
+ align_alen
- temp
>= orig_end
)
3344 * Set the start to the minimum then trim the length.
3347 align_alen
-= orig_off
- align_off
;
3348 align_off
= orig_off
;
3349 align_alen
-= align_alen
% mp
->m_sb
.sb_rextsize
;
3352 * Result doesn't cover the request, fail it.
3354 if (orig_off
< align_off
|| orig_end
> align_off
+ align_alen
)
3355 return XFS_ERROR(EINVAL
);
3357 ASSERT(orig_off
>= align_off
);
3358 ASSERT(orig_end
<= align_off
+ align_alen
);
3362 if (!eof
&& gotp
->br_startoff
!= NULLFILEOFF
)
3363 ASSERT(align_off
+ align_alen
<= gotp
->br_startoff
);
3364 if (prevp
->br_startoff
!= NULLFILEOFF
)
3365 ASSERT(align_off
>= prevp
->br_startoff
+ prevp
->br_blockcount
);
3373 #define XFS_ALLOC_GAP_UNITS 4
3377 struct xfs_bmalloca
*ap
) /* bmap alloc argument struct */
3379 xfs_fsblock_t adjust
; /* adjustment to block numbers */
3380 xfs_agnumber_t fb_agno
; /* ag number of ap->firstblock */
3381 xfs_mount_t
*mp
; /* mount point structure */
3382 int nullfb
; /* true if ap->firstblock isn't set */
3383 int rt
; /* true if inode is realtime */
3385 #define ISVALID(x,y) \
3387 (x) < mp->m_sb.sb_rblocks : \
3388 XFS_FSB_TO_AGNO(mp, x) == XFS_FSB_TO_AGNO(mp, y) && \
3389 XFS_FSB_TO_AGNO(mp, x) < mp->m_sb.sb_agcount && \
3390 XFS_FSB_TO_AGBNO(mp, x) < mp->m_sb.sb_agblocks)
3392 mp
= ap
->ip
->i_mount
;
3393 nullfb
= *ap
->firstblock
== NULLFSBLOCK
;
3394 rt
= XFS_IS_REALTIME_INODE(ap
->ip
) && ap
->userdata
;
3395 fb_agno
= nullfb
? NULLAGNUMBER
: XFS_FSB_TO_AGNO(mp
, *ap
->firstblock
);
3397 * If allocating at eof, and there's a previous real block,
3398 * try to use its last block as our starting point.
3400 if (ap
->eof
&& ap
->prev
.br_startoff
!= NULLFILEOFF
&&
3401 !isnullstartblock(ap
->prev
.br_startblock
) &&
3402 ISVALID(ap
->prev
.br_startblock
+ ap
->prev
.br_blockcount
,
3403 ap
->prev
.br_startblock
)) {
3404 ap
->blkno
= ap
->prev
.br_startblock
+ ap
->prev
.br_blockcount
;
3406 * Adjust for the gap between prevp and us.
3408 adjust
= ap
->offset
-
3409 (ap
->prev
.br_startoff
+ ap
->prev
.br_blockcount
);
3411 ISVALID(ap
->blkno
+ adjust
, ap
->prev
.br_startblock
))
3412 ap
->blkno
+= adjust
;
3415 * If not at eof, then compare the two neighbor blocks.
3416 * Figure out whether either one gives us a good starting point,
3417 * and pick the better one.
3419 else if (!ap
->eof
) {
3420 xfs_fsblock_t gotbno
; /* right side block number */
3421 xfs_fsblock_t gotdiff
=0; /* right side difference */
3422 xfs_fsblock_t prevbno
; /* left side block number */
3423 xfs_fsblock_t prevdiff
=0; /* left side difference */
3426 * If there's a previous (left) block, select a requested
3427 * start block based on it.
3429 if (ap
->prev
.br_startoff
!= NULLFILEOFF
&&
3430 !isnullstartblock(ap
->prev
.br_startblock
) &&
3431 (prevbno
= ap
->prev
.br_startblock
+
3432 ap
->prev
.br_blockcount
) &&
3433 ISVALID(prevbno
, ap
->prev
.br_startblock
)) {
3435 * Calculate gap to end of previous block.
3437 adjust
= prevdiff
= ap
->offset
-
3438 (ap
->prev
.br_startoff
+
3439 ap
->prev
.br_blockcount
);
3441 * Figure the startblock based on the previous block's
3442 * end and the gap size.
3444 * If the gap is large relative to the piece we're
3445 * allocating, or using it gives us an invalid block
3446 * number, then just use the end of the previous block.
3448 if (prevdiff
<= XFS_ALLOC_GAP_UNITS
* ap
->length
&&
3449 ISVALID(prevbno
+ prevdiff
,
3450 ap
->prev
.br_startblock
))
3455 * If the firstblock forbids it, can't use it,
3458 if (!rt
&& !nullfb
&&
3459 XFS_FSB_TO_AGNO(mp
, prevbno
) != fb_agno
)
3460 prevbno
= NULLFSBLOCK
;
3463 * No previous block or can't follow it, just default.
3466 prevbno
= NULLFSBLOCK
;
3468 * If there's a following (right) block, select a requested
3469 * start block based on it.
3471 if (!isnullstartblock(ap
->got
.br_startblock
)) {
3473 * Calculate gap to start of next block.
3475 adjust
= gotdiff
= ap
->got
.br_startoff
- ap
->offset
;
3477 * Figure the startblock based on the next block's
3478 * start and the gap size.
3480 gotbno
= ap
->got
.br_startblock
;
3483 * If the gap is large relative to the piece we're
3484 * allocating, or using it gives us an invalid block
3485 * number, then just use the start of the next block
3486 * offset by our length.
3488 if (gotdiff
<= XFS_ALLOC_GAP_UNITS
* ap
->length
&&
3489 ISVALID(gotbno
- gotdiff
, gotbno
))
3491 else if (ISVALID(gotbno
- ap
->length
, gotbno
)) {
3492 gotbno
-= ap
->length
;
3493 gotdiff
+= adjust
- ap
->length
;
3497 * If the firstblock forbids it, can't use it,
3500 if (!rt
&& !nullfb
&&
3501 XFS_FSB_TO_AGNO(mp
, gotbno
) != fb_agno
)
3502 gotbno
= NULLFSBLOCK
;
3505 * No next block, just default.
3508 gotbno
= NULLFSBLOCK
;
3510 * If both valid, pick the better one, else the only good
3511 * one, else ap->blkno is already set (to 0 or the inode block).
3513 if (prevbno
!= NULLFSBLOCK
&& gotbno
!= NULLFSBLOCK
)
3514 ap
->blkno
= prevdiff
<= gotdiff
? prevbno
: gotbno
;
3515 else if (prevbno
!= NULLFSBLOCK
)
3516 ap
->blkno
= prevbno
;
3517 else if (gotbno
!= NULLFSBLOCK
)
3524 xfs_bmap_longest_free_extent(
3525 struct xfs_trans
*tp
,
3530 struct xfs_mount
*mp
= tp
->t_mountp
;
3531 struct xfs_perag
*pag
;
3532 xfs_extlen_t longest
;
3535 pag
= xfs_perag_get(mp
, ag
);
3536 if (!pag
->pagf_init
) {
3537 error
= xfs_alloc_pagf_init(mp
, tp
, ag
, XFS_ALLOC_FLAG_TRYLOCK
);
3541 if (!pag
->pagf_init
) {
3547 longest
= xfs_alloc_longest_free_extent(mp
, pag
);
3548 if (*blen
< longest
)
3557 xfs_bmap_select_minlen(
3558 struct xfs_bmalloca
*ap
,
3559 struct xfs_alloc_arg
*args
,
3563 if (notinit
|| *blen
< ap
->minlen
) {
3565 * Since we did a BUF_TRYLOCK above, it is possible that
3566 * there is space for this request.
3568 args
->minlen
= ap
->minlen
;
3569 } else if (*blen
< args
->maxlen
) {
3571 * If the best seen length is less than the request length,
3572 * use the best as the minimum.
3574 args
->minlen
= *blen
;
3577 * Otherwise we've seen an extent as big as maxlen, use that
3580 args
->minlen
= args
->maxlen
;
3585 xfs_bmap_btalloc_nullfb(
3586 struct xfs_bmalloca
*ap
,
3587 struct xfs_alloc_arg
*args
,
3590 struct xfs_mount
*mp
= ap
->ip
->i_mount
;
3591 xfs_agnumber_t ag
, startag
;
3595 args
->type
= XFS_ALLOCTYPE_START_BNO
;
3596 args
->total
= ap
->total
;
3598 startag
= ag
= XFS_FSB_TO_AGNO(mp
, args
->fsbno
);
3599 if (startag
== NULLAGNUMBER
)
3602 while (*blen
< args
->maxlen
) {
3603 error
= xfs_bmap_longest_free_extent(args
->tp
, ag
, blen
,
3608 if (++ag
== mp
->m_sb
.sb_agcount
)
3614 xfs_bmap_select_minlen(ap
, args
, blen
, notinit
);
3619 xfs_bmap_btalloc_filestreams(
3620 struct xfs_bmalloca
*ap
,
3621 struct xfs_alloc_arg
*args
,
3624 struct xfs_mount
*mp
= ap
->ip
->i_mount
;
3629 args
->type
= XFS_ALLOCTYPE_NEAR_BNO
;
3630 args
->total
= ap
->total
;
3632 ag
= XFS_FSB_TO_AGNO(mp
, args
->fsbno
);
3633 if (ag
== NULLAGNUMBER
)
3636 error
= xfs_bmap_longest_free_extent(args
->tp
, ag
, blen
, ¬init
);
3640 if (*blen
< args
->maxlen
) {
3641 error
= xfs_filestream_new_ag(ap
, &ag
);
3645 error
= xfs_bmap_longest_free_extent(args
->tp
, ag
, blen
,
3652 xfs_bmap_select_minlen(ap
, args
, blen
, notinit
);
3655 * Set the failure fallback case to look in the selected AG as stream
3658 ap
->blkno
= args
->fsbno
= XFS_AGB_TO_FSB(mp
, ag
, 0);
3664 struct xfs_bmalloca
*ap
) /* bmap alloc argument struct */
3666 xfs_mount_t
*mp
; /* mount point structure */
3667 xfs_alloctype_t atype
= 0; /* type for allocation routines */
3668 xfs_extlen_t align
; /* minimum allocation alignment */
3669 xfs_agnumber_t fb_agno
; /* ag number of ap->firstblock */
3671 xfs_alloc_arg_t args
;
3673 xfs_extlen_t nextminlen
= 0;
3674 int nullfb
; /* true if ap->firstblock isn't set */
3682 mp
= ap
->ip
->i_mount
;
3684 /* stripe alignment for allocation is determined by mount parameters */
3686 if (mp
->m_swidth
&& (mp
->m_flags
& XFS_MOUNT_SWALLOC
))
3687 stripe_align
= mp
->m_swidth
;
3688 else if (mp
->m_dalign
)
3689 stripe_align
= mp
->m_dalign
;
3691 align
= ap
->userdata
? xfs_get_extsz_hint(ap
->ip
) : 0;
3692 if (unlikely(align
)) {
3693 error
= xfs_bmap_extsize_align(mp
, &ap
->got
, &ap
->prev
,
3694 align
, 0, ap
->eof
, 0, ap
->conv
,
3695 &ap
->offset
, &ap
->length
);
3701 nullfb
= *ap
->firstblock
== NULLFSBLOCK
;
3702 fb_agno
= nullfb
? NULLAGNUMBER
: XFS_FSB_TO_AGNO(mp
, *ap
->firstblock
);
3704 if (ap
->userdata
&& xfs_inode_is_filestream(ap
->ip
)) {
3705 ag
= xfs_filestream_lookup_ag(ap
->ip
);
3706 ag
= (ag
!= NULLAGNUMBER
) ? ag
: 0;
3707 ap
->blkno
= XFS_AGB_TO_FSB(mp
, ag
, 0);
3709 ap
->blkno
= XFS_INO_TO_FSB(mp
, ap
->ip
->i_ino
);
3712 ap
->blkno
= *ap
->firstblock
;
3714 xfs_bmap_adjacent(ap
);
3717 * If allowed, use ap->blkno; otherwise must use firstblock since
3718 * it's in the right allocation group.
3720 if (nullfb
|| XFS_FSB_TO_AGNO(mp
, ap
->blkno
) == fb_agno
)
3723 ap
->blkno
= *ap
->firstblock
;
3725 * Normal allocation, done through xfs_alloc_vextent.
3727 tryagain
= isaligned
= 0;
3728 memset(&args
, 0, sizeof(args
));
3731 args
.fsbno
= ap
->blkno
;
3733 /* Trim the allocation back to the maximum an AG can fit. */
3734 args
.maxlen
= MIN(ap
->length
, XFS_ALLOC_AG_MAX_USABLE(mp
));
3735 args
.firstblock
= *ap
->firstblock
;
3739 * Search for an allocation group with a single extent large
3740 * enough for the request. If one isn't found, then adjust
3741 * the minimum allocation size to the largest space found.
3743 if (ap
->userdata
&& xfs_inode_is_filestream(ap
->ip
))
3744 error
= xfs_bmap_btalloc_filestreams(ap
, &args
, &blen
);
3746 error
= xfs_bmap_btalloc_nullfb(ap
, &args
, &blen
);
3749 } else if (ap
->flist
->xbf_low
) {
3750 if (xfs_inode_is_filestream(ap
->ip
))
3751 args
.type
= XFS_ALLOCTYPE_FIRST_AG
;
3753 args
.type
= XFS_ALLOCTYPE_START_BNO
;
3754 args
.total
= args
.minlen
= ap
->minlen
;
3756 args
.type
= XFS_ALLOCTYPE_NEAR_BNO
;
3757 args
.total
= ap
->total
;
3758 args
.minlen
= ap
->minlen
;
3760 /* apply extent size hints if obtained earlier */
3761 if (unlikely(align
)) {
3763 if ((args
.mod
= (xfs_extlen_t
)do_mod(ap
->offset
, args
.prod
)))
3764 args
.mod
= (xfs_extlen_t
)(args
.prod
- args
.mod
);
3765 } else if (mp
->m_sb
.sb_blocksize
>= PAGE_CACHE_SIZE
) {
3769 args
.prod
= PAGE_CACHE_SIZE
>> mp
->m_sb
.sb_blocklog
;
3770 if ((args
.mod
= (xfs_extlen_t
)(do_mod(ap
->offset
, args
.prod
))))
3771 args
.mod
= (xfs_extlen_t
)(args
.prod
- args
.mod
);
3774 * If we are not low on available data blocks, and the
3775 * underlying logical volume manager is a stripe, and
3776 * the file offset is zero then try to allocate data
3777 * blocks on stripe unit boundary.
3778 * NOTE: ap->aeof is only set if the allocation length
3779 * is >= the stripe unit and the allocation offset is
3780 * at the end of file.
3782 if (!ap
->flist
->xbf_low
&& ap
->aeof
) {
3784 args
.alignment
= stripe_align
;
3788 * Adjust for alignment
3790 if (blen
> args
.alignment
&& blen
<= args
.maxlen
)
3791 args
.minlen
= blen
- args
.alignment
;
3792 args
.minalignslop
= 0;
3795 * First try an exact bno allocation.
3796 * If it fails then do a near or start bno
3797 * allocation with alignment turned on.
3801 args
.type
= XFS_ALLOCTYPE_THIS_BNO
;
3804 * Compute the minlen+alignment for the
3805 * next case. Set slop so that the value
3806 * of minlen+alignment+slop doesn't go up
3807 * between the calls.
3809 if (blen
> stripe_align
&& blen
<= args
.maxlen
)
3810 nextminlen
= blen
- stripe_align
;
3812 nextminlen
= args
.minlen
;
3813 if (nextminlen
+ stripe_align
> args
.minlen
+ 1)
3815 nextminlen
+ stripe_align
-
3818 args
.minalignslop
= 0;
3822 args
.minalignslop
= 0;
3824 args
.minleft
= ap
->minleft
;
3825 args
.wasdel
= ap
->wasdel
;
3827 args
.userdata
= ap
->userdata
;
3828 if ((error
= xfs_alloc_vextent(&args
)))
3830 if (tryagain
&& args
.fsbno
== NULLFSBLOCK
) {
3832 * Exact allocation failed. Now try with alignment
3836 args
.fsbno
= ap
->blkno
;
3837 args
.alignment
= stripe_align
;
3838 args
.minlen
= nextminlen
;
3839 args
.minalignslop
= 0;
3841 if ((error
= xfs_alloc_vextent(&args
)))
3844 if (isaligned
&& args
.fsbno
== NULLFSBLOCK
) {
3846 * allocation failed, so turn off alignment and
3850 args
.fsbno
= ap
->blkno
;
3852 if ((error
= xfs_alloc_vextent(&args
)))
3855 if (args
.fsbno
== NULLFSBLOCK
&& nullfb
&&
3856 args
.minlen
> ap
->minlen
) {
3857 args
.minlen
= ap
->minlen
;
3858 args
.type
= XFS_ALLOCTYPE_START_BNO
;
3859 args
.fsbno
= ap
->blkno
;
3860 if ((error
= xfs_alloc_vextent(&args
)))
3863 if (args
.fsbno
== NULLFSBLOCK
&& nullfb
) {
3865 args
.type
= XFS_ALLOCTYPE_FIRST_AG
;
3866 args
.total
= ap
->minlen
;
3868 if ((error
= xfs_alloc_vextent(&args
)))
3870 ap
->flist
->xbf_low
= 1;
3872 if (args
.fsbno
!= NULLFSBLOCK
) {
3874 * check the allocation happened at the same or higher AG than
3875 * the first block that was allocated.
3877 ASSERT(*ap
->firstblock
== NULLFSBLOCK
||
3878 XFS_FSB_TO_AGNO(mp
, *ap
->firstblock
) ==
3879 XFS_FSB_TO_AGNO(mp
, args
.fsbno
) ||
3880 (ap
->flist
->xbf_low
&&
3881 XFS_FSB_TO_AGNO(mp
, *ap
->firstblock
) <
3882 XFS_FSB_TO_AGNO(mp
, args
.fsbno
)));
3884 ap
->blkno
= args
.fsbno
;
3885 if (*ap
->firstblock
== NULLFSBLOCK
)
3886 *ap
->firstblock
= args
.fsbno
;
3887 ASSERT(nullfb
|| fb_agno
== args
.agno
||
3888 (ap
->flist
->xbf_low
&& fb_agno
< args
.agno
));
3889 ap
->length
= args
.len
;
3890 ap
->ip
->i_d
.di_nblocks
+= args
.len
;
3891 xfs_trans_log_inode(ap
->tp
, ap
->ip
, XFS_ILOG_CORE
);
3893 ap
->ip
->i_delayed_blks
-= args
.len
;
3895 * Adjust the disk quota also. This was reserved
3898 xfs_trans_mod_dquot_byino(ap
->tp
, ap
->ip
,
3899 ap
->wasdel
? XFS_TRANS_DQ_DELBCOUNT
:
3900 XFS_TRANS_DQ_BCOUNT
,
3903 ap
->blkno
= NULLFSBLOCK
;
3910 * xfs_bmap_alloc is called by xfs_bmapi to allocate an extent for a file.
3911 * It figures out where to ask the underlying allocator to put the new extent.
3915 struct xfs_bmalloca
*ap
) /* bmap alloc argument struct */
3917 if (XFS_IS_REALTIME_INODE(ap
->ip
) && ap
->userdata
)
3918 return xfs_bmap_rtalloc(ap
);
3919 return xfs_bmap_btalloc(ap
);
3923 * Trim the returned map to the required bounds
3927 struct xfs_bmbt_irec
*mval
,
3928 struct xfs_bmbt_irec
*got
,
3936 if ((flags
& XFS_BMAPI_ENTIRE
) ||
3937 got
->br_startoff
+ got
->br_blockcount
<= obno
) {
3939 if (isnullstartblock(got
->br_startblock
))
3940 mval
->br_startblock
= DELAYSTARTBLOCK
;
3946 ASSERT((*bno
>= obno
) || (n
== 0));
3948 mval
->br_startoff
= *bno
;
3949 if (isnullstartblock(got
->br_startblock
))
3950 mval
->br_startblock
= DELAYSTARTBLOCK
;
3952 mval
->br_startblock
= got
->br_startblock
+
3953 (*bno
- got
->br_startoff
);
3955 * Return the minimum of what we got and what we asked for for
3956 * the length. We can use the len variable here because it is
3957 * modified below and we could have been there before coming
3958 * here if the first part of the allocation didn't overlap what
3961 mval
->br_blockcount
= XFS_FILBLKS_MIN(end
- *bno
,
3962 got
->br_blockcount
- (*bno
- got
->br_startoff
));
3963 mval
->br_state
= got
->br_state
;
3964 ASSERT(mval
->br_blockcount
<= len
);
3969 * Update and validate the extent map to return
3972 xfs_bmapi_update_map(
3973 struct xfs_bmbt_irec
**map
,
3981 xfs_bmbt_irec_t
*mval
= *map
;
3983 ASSERT((flags
& XFS_BMAPI_ENTIRE
) ||
3984 ((mval
->br_startoff
+ mval
->br_blockcount
) <= end
));
3985 ASSERT((flags
& XFS_BMAPI_ENTIRE
) || (mval
->br_blockcount
<= *len
) ||
3986 (mval
->br_startoff
< obno
));
3988 *bno
= mval
->br_startoff
+ mval
->br_blockcount
;
3990 if (*n
> 0 && mval
->br_startoff
== mval
[-1].br_startoff
) {
3991 /* update previous map with new information */
3992 ASSERT(mval
->br_startblock
== mval
[-1].br_startblock
);
3993 ASSERT(mval
->br_blockcount
> mval
[-1].br_blockcount
);
3994 ASSERT(mval
->br_state
== mval
[-1].br_state
);
3995 mval
[-1].br_blockcount
= mval
->br_blockcount
;
3996 mval
[-1].br_state
= mval
->br_state
;
3997 } else if (*n
> 0 && mval
->br_startblock
!= DELAYSTARTBLOCK
&&
3998 mval
[-1].br_startblock
!= DELAYSTARTBLOCK
&&
3999 mval
[-1].br_startblock
!= HOLESTARTBLOCK
&&
4000 mval
->br_startblock
== mval
[-1].br_startblock
+
4001 mval
[-1].br_blockcount
&&
4002 ((flags
& XFS_BMAPI_IGSTATE
) ||
4003 mval
[-1].br_state
== mval
->br_state
)) {
4004 ASSERT(mval
->br_startoff
==
4005 mval
[-1].br_startoff
+ mval
[-1].br_blockcount
);
4006 mval
[-1].br_blockcount
+= mval
->br_blockcount
;
4007 } else if (*n
> 0 &&
4008 mval
->br_startblock
== DELAYSTARTBLOCK
&&
4009 mval
[-1].br_startblock
== DELAYSTARTBLOCK
&&
4010 mval
->br_startoff
==
4011 mval
[-1].br_startoff
+ mval
[-1].br_blockcount
) {
4012 mval
[-1].br_blockcount
+= mval
->br_blockcount
;
4013 mval
[-1].br_state
= mval
->br_state
;
4014 } else if (!((*n
== 0) &&
4015 ((mval
->br_startoff
+ mval
->br_blockcount
) <=
4024 * Map file blocks to filesystem blocks without allocation.
4028 struct xfs_inode
*ip
,
4031 struct xfs_bmbt_irec
*mval
,
4035 struct xfs_mount
*mp
= ip
->i_mount
;
4036 struct xfs_ifork
*ifp
;
4037 struct xfs_bmbt_irec got
;
4038 struct xfs_bmbt_irec prev
;
4045 int whichfork
= (flags
& XFS_BMAPI_ATTRFORK
) ?
4046 XFS_ATTR_FORK
: XFS_DATA_FORK
;
4049 ASSERT(!(flags
& ~(XFS_BMAPI_ATTRFORK
|XFS_BMAPI_ENTIRE
|
4050 XFS_BMAPI_IGSTATE
)));
4051 ASSERT(xfs_isilocked(ip
, XFS_ILOCK_SHARED
|XFS_ILOCK_EXCL
));
4053 if (unlikely(XFS_TEST_ERROR(
4054 (XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
&&
4055 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
),
4056 mp
, XFS_ERRTAG_BMAPIFORMAT
, XFS_RANDOM_BMAPIFORMAT
))) {
4057 XFS_ERROR_REPORT("xfs_bmapi_read", XFS_ERRLEVEL_LOW
, mp
);
4058 return XFS_ERROR(EFSCORRUPTED
);
4061 if (XFS_FORCED_SHUTDOWN(mp
))
4062 return XFS_ERROR(EIO
);
4064 XFS_STATS_INC(xs_blk_mapr
);
4066 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4068 if (!(ifp
->if_flags
& XFS_IFEXTENTS
)) {
4069 error
= xfs_iread_extents(NULL
, ip
, whichfork
);
4074 xfs_bmap_search_extents(ip
, bno
, whichfork
, &eof
, &lastx
, &got
, &prev
);
4078 while (bno
< end
&& n
< *nmap
) {
4079 /* Reading past eof, act as though there's a hole up to end. */
4081 got
.br_startoff
= end
;
4082 if (got
.br_startoff
> bno
) {
4083 /* Reading in a hole. */
4084 mval
->br_startoff
= bno
;
4085 mval
->br_startblock
= HOLESTARTBLOCK
;
4086 mval
->br_blockcount
=
4087 XFS_FILBLKS_MIN(len
, got
.br_startoff
- bno
);
4088 mval
->br_state
= XFS_EXT_NORM
;
4089 bno
+= mval
->br_blockcount
;
4090 len
-= mval
->br_blockcount
;
4096 /* set up the extent map to return. */
4097 xfs_bmapi_trim_map(mval
, &got
, &bno
, len
, obno
, end
, n
, flags
);
4098 xfs_bmapi_update_map(&mval
, &bno
, &len
, obno
, end
, &n
, flags
);
4100 /* If we're done, stop now. */
4101 if (bno
>= end
|| n
>= *nmap
)
4104 /* Else go on to the next record. */
4105 if (++lastx
< ifp
->if_bytes
/ sizeof(xfs_bmbt_rec_t
))
4106 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, lastx
), &got
);
4115 xfs_bmapi_reserve_delalloc(
4116 struct xfs_inode
*ip
,
4119 struct xfs_bmbt_irec
*got
,
4120 struct xfs_bmbt_irec
*prev
,
4121 xfs_extnum_t
*lastx
,
4124 struct xfs_mount
*mp
= ip
->i_mount
;
4125 struct xfs_ifork
*ifp
= XFS_IFORK_PTR(ip
, XFS_DATA_FORK
);
4127 xfs_extlen_t indlen
;
4128 char rt
= XFS_IS_REALTIME_INODE(ip
);
4132 alen
= XFS_FILBLKS_MIN(len
, MAXEXTLEN
);
4134 alen
= XFS_FILBLKS_MIN(alen
, got
->br_startoff
- aoff
);
4136 /* Figure out the extent size, adjust alen */
4137 extsz
= xfs_get_extsz_hint(ip
);
4140 * Make sure we don't exceed a single extent length when we
4141 * align the extent by reducing length we are going to
4142 * allocate by the maximum amount extent size aligment may
4145 alen
= XFS_FILBLKS_MIN(len
, MAXEXTLEN
- (2 * extsz
- 1));
4146 error
= xfs_bmap_extsize_align(mp
, got
, prev
, extsz
, rt
, eof
,
4147 1, 0, &aoff
, &alen
);
4152 extsz
= alen
/ mp
->m_sb
.sb_rextsize
;
4155 * Make a transaction-less quota reservation for delayed allocation
4156 * blocks. This number gets adjusted later. We return if we haven't
4157 * allocated blocks already inside this loop.
4159 error
= xfs_trans_reserve_quota_nblks(NULL
, ip
, (long)alen
, 0,
4160 rt
? XFS_QMOPT_RES_RTBLKS
: XFS_QMOPT_RES_REGBLKS
);
4165 * Split changing sb for alen and indlen since they could be coming
4166 * from different places.
4168 indlen
= (xfs_extlen_t
)xfs_bmap_worst_indlen(ip
, alen
);
4172 error
= xfs_mod_incore_sb(mp
, XFS_SBS_FREXTENTS
,
4173 -((int64_t)extsz
), 0);
4175 error
= xfs_icsb_modify_counters(mp
, XFS_SBS_FDBLOCKS
,
4176 -((int64_t)alen
), 0);
4180 goto out_unreserve_quota
;
4182 error
= xfs_icsb_modify_counters(mp
, XFS_SBS_FDBLOCKS
,
4183 -((int64_t)indlen
), 0);
4185 goto out_unreserve_blocks
;
4188 ip
->i_delayed_blks
+= alen
;
4190 got
->br_startoff
= aoff
;
4191 got
->br_startblock
= nullstartblock(indlen
);
4192 got
->br_blockcount
= alen
;
4193 got
->br_state
= XFS_EXT_NORM
;
4194 xfs_bmap_add_extent_hole_delay(ip
, lastx
, got
);
4197 * Update our extent pointer, given that xfs_bmap_add_extent_hole_delay
4198 * might have merged it into one of the neighbouring ones.
4200 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, *lastx
), got
);
4202 ASSERT(got
->br_startoff
<= aoff
);
4203 ASSERT(got
->br_startoff
+ got
->br_blockcount
>= aoff
+ alen
);
4204 ASSERT(isnullstartblock(got
->br_startblock
));
4205 ASSERT(got
->br_state
== XFS_EXT_NORM
);
4208 out_unreserve_blocks
:
4210 xfs_mod_incore_sb(mp
, XFS_SBS_FREXTENTS
, extsz
, 0);
4212 xfs_icsb_modify_counters(mp
, XFS_SBS_FDBLOCKS
, alen
, 0);
4213 out_unreserve_quota
:
4214 if (XFS_IS_QUOTA_ON(mp
))
4215 xfs_trans_unreserve_quota_nblks(NULL
, ip
, (long)alen
, 0, rt
?
4216 XFS_QMOPT_RES_RTBLKS
: XFS_QMOPT_RES_REGBLKS
);
4221 * Map file blocks to filesystem blocks, adding delayed allocations as needed.
4225 struct xfs_inode
*ip
, /* incore inode */
4226 xfs_fileoff_t bno
, /* starting file offs. mapped */
4227 xfs_filblks_t len
, /* length to map in file */
4228 struct xfs_bmbt_irec
*mval
, /* output: map values */
4229 int *nmap
, /* i/o: mval size/count */
4230 int flags
) /* XFS_BMAPI_... */
4232 struct xfs_mount
*mp
= ip
->i_mount
;
4233 struct xfs_ifork
*ifp
= XFS_IFORK_PTR(ip
, XFS_DATA_FORK
);
4234 struct xfs_bmbt_irec got
; /* current file extent record */
4235 struct xfs_bmbt_irec prev
; /* previous file extent record */
4236 xfs_fileoff_t obno
; /* old block number (offset) */
4237 xfs_fileoff_t end
; /* end of mapped file region */
4238 xfs_extnum_t lastx
; /* last useful extent number */
4239 int eof
; /* we've hit the end of extents */
4240 int n
= 0; /* current extent index */
4244 ASSERT(*nmap
<= XFS_BMAP_MAX_NMAP
);
4245 ASSERT(!(flags
& ~XFS_BMAPI_ENTIRE
));
4246 ASSERT(xfs_isilocked(ip
, XFS_ILOCK_EXCL
));
4248 if (unlikely(XFS_TEST_ERROR(
4249 (XFS_IFORK_FORMAT(ip
, XFS_DATA_FORK
) != XFS_DINODE_FMT_EXTENTS
&&
4250 XFS_IFORK_FORMAT(ip
, XFS_DATA_FORK
) != XFS_DINODE_FMT_BTREE
),
4251 mp
, XFS_ERRTAG_BMAPIFORMAT
, XFS_RANDOM_BMAPIFORMAT
))) {
4252 XFS_ERROR_REPORT("xfs_bmapi_delay", XFS_ERRLEVEL_LOW
, mp
);
4253 return XFS_ERROR(EFSCORRUPTED
);
4256 if (XFS_FORCED_SHUTDOWN(mp
))
4257 return XFS_ERROR(EIO
);
4259 XFS_STATS_INC(xs_blk_mapw
);
4261 if (!(ifp
->if_flags
& XFS_IFEXTENTS
)) {
4262 error
= xfs_iread_extents(NULL
, ip
, XFS_DATA_FORK
);
4267 xfs_bmap_search_extents(ip
, bno
, XFS_DATA_FORK
, &eof
, &lastx
, &got
, &prev
);
4271 while (bno
< end
&& n
< *nmap
) {
4272 if (eof
|| got
.br_startoff
> bno
) {
4273 error
= xfs_bmapi_reserve_delalloc(ip
, bno
, len
, &got
,
4274 &prev
, &lastx
, eof
);
4284 /* set up the extent map to return. */
4285 xfs_bmapi_trim_map(mval
, &got
, &bno
, len
, obno
, end
, n
, flags
);
4286 xfs_bmapi_update_map(&mval
, &bno
, &len
, obno
, end
, &n
, flags
);
4288 /* If we're done, stop now. */
4289 if (bno
>= end
|| n
>= *nmap
)
4292 /* Else go on to the next record. */
4294 if (++lastx
< ifp
->if_bytes
/ sizeof(xfs_bmbt_rec_t
))
4295 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, lastx
), &got
);
4307 struct xfs_bmalloca
*bma
)
4309 struct xfs_mount
*mp
= bma
->ip
->i_mount
;
4310 int whichfork
= (bma
->flags
& XFS_BMAPI_ATTRFORK
) ?
4311 XFS_ATTR_FORK
: XFS_DATA_FORK
;
4312 struct xfs_ifork
*ifp
= XFS_IFORK_PTR(bma
->ip
, whichfork
);
4313 int tmp_logflags
= 0;
4316 ASSERT(bma
->length
> 0);
4319 * For the wasdelay case, we could also just allocate the stuff asked
4320 * for in this bmap call but that wouldn't be as good.
4323 bma
->length
= (xfs_extlen_t
)bma
->got
.br_blockcount
;
4324 bma
->offset
= bma
->got
.br_startoff
;
4325 if (bma
->idx
!= NULLEXTNUM
&& bma
->idx
) {
4326 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, bma
->idx
- 1),
4330 bma
->length
= XFS_FILBLKS_MIN(bma
->length
, MAXEXTLEN
);
4332 bma
->length
= XFS_FILBLKS_MIN(bma
->length
,
4333 bma
->got
.br_startoff
- bma
->offset
);
4337 * Indicate if this is the first user data in the file, or just any
4340 if (!(bma
->flags
& XFS_BMAPI_METADATA
)) {
4341 bma
->userdata
= (bma
->offset
== 0) ?
4342 XFS_ALLOC_INITIAL_USER_DATA
: XFS_ALLOC_USERDATA
;
4345 bma
->minlen
= (bma
->flags
& XFS_BMAPI_CONTIG
) ? bma
->length
: 1;
4348 * Only want to do the alignment at the eof if it is userdata and
4349 * allocation length is larger than a stripe unit.
4351 if (mp
->m_dalign
&& bma
->length
>= mp
->m_dalign
&&
4352 !(bma
->flags
& XFS_BMAPI_METADATA
) && whichfork
== XFS_DATA_FORK
) {
4353 error
= xfs_bmap_isaeof(bma
, whichfork
);
4358 error
= xfs_bmap_alloc(bma
);
4362 if (bma
->flist
->xbf_low
)
4365 bma
->cur
->bc_private
.b
.firstblock
= *bma
->firstblock
;
4366 if (bma
->blkno
== NULLFSBLOCK
)
4368 if ((ifp
->if_flags
& XFS_IFBROOT
) && !bma
->cur
) {
4369 bma
->cur
= xfs_bmbt_init_cursor(mp
, bma
->tp
, bma
->ip
, whichfork
);
4370 bma
->cur
->bc_private
.b
.firstblock
= *bma
->firstblock
;
4371 bma
->cur
->bc_private
.b
.flist
= bma
->flist
;
4374 * Bump the number of extents we've allocated
4380 bma
->cur
->bc_private
.b
.flags
=
4381 bma
->wasdel
? XFS_BTCUR_BPRV_WASDEL
: 0;
4383 bma
->got
.br_startoff
= bma
->offset
;
4384 bma
->got
.br_startblock
= bma
->blkno
;
4385 bma
->got
.br_blockcount
= bma
->length
;
4386 bma
->got
.br_state
= XFS_EXT_NORM
;
4389 * A wasdelay extent has been initialized, so shouldn't be flagged
4392 if (!bma
->wasdel
&& (bma
->flags
& XFS_BMAPI_PREALLOC
) &&
4393 xfs_sb_version_hasextflgbit(&mp
->m_sb
))
4394 bma
->got
.br_state
= XFS_EXT_UNWRITTEN
;
4397 error
= xfs_bmap_add_extent_delay_real(bma
);
4399 error
= xfs_bmap_add_extent_hole_real(bma
, whichfork
);
4401 bma
->logflags
|= tmp_logflags
;
4406 * Update our extent pointer, given that xfs_bmap_add_extent_delay_real
4407 * or xfs_bmap_add_extent_hole_real might have merged it into one of
4408 * the neighbouring ones.
4410 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, bma
->idx
), &bma
->got
);
4412 ASSERT(bma
->got
.br_startoff
<= bma
->offset
);
4413 ASSERT(bma
->got
.br_startoff
+ bma
->got
.br_blockcount
>=
4414 bma
->offset
+ bma
->length
);
4415 ASSERT(bma
->got
.br_state
== XFS_EXT_NORM
||
4416 bma
->got
.br_state
== XFS_EXT_UNWRITTEN
);
4421 xfs_bmapi_convert_unwritten(
4422 struct xfs_bmalloca
*bma
,
4423 struct xfs_bmbt_irec
*mval
,
4427 int whichfork
= (flags
& XFS_BMAPI_ATTRFORK
) ?
4428 XFS_ATTR_FORK
: XFS_DATA_FORK
;
4429 struct xfs_ifork
*ifp
= XFS_IFORK_PTR(bma
->ip
, whichfork
);
4430 int tmp_logflags
= 0;
4433 /* check if we need to do unwritten->real conversion */
4434 if (mval
->br_state
== XFS_EXT_UNWRITTEN
&&
4435 (flags
& XFS_BMAPI_PREALLOC
))
4438 /* check if we need to do real->unwritten conversion */
4439 if (mval
->br_state
== XFS_EXT_NORM
&&
4440 (flags
& (XFS_BMAPI_PREALLOC
| XFS_BMAPI_CONVERT
)) !=
4441 (XFS_BMAPI_PREALLOC
| XFS_BMAPI_CONVERT
))
4445 * Modify (by adding) the state flag, if writing.
4447 ASSERT(mval
->br_blockcount
<= len
);
4448 if ((ifp
->if_flags
& XFS_IFBROOT
) && !bma
->cur
) {
4449 bma
->cur
= xfs_bmbt_init_cursor(bma
->ip
->i_mount
, bma
->tp
,
4450 bma
->ip
, whichfork
);
4451 bma
->cur
->bc_private
.b
.firstblock
= *bma
->firstblock
;
4452 bma
->cur
->bc_private
.b
.flist
= bma
->flist
;
4454 mval
->br_state
= (mval
->br_state
== XFS_EXT_UNWRITTEN
)
4455 ? XFS_EXT_NORM
: XFS_EXT_UNWRITTEN
;
4457 error
= xfs_bmap_add_extent_unwritten_real(bma
->tp
, bma
->ip
, &bma
->idx
,
4458 &bma
->cur
, mval
, bma
->firstblock
, bma
->flist
,
4460 bma
->logflags
|= tmp_logflags
;
4465 * Update our extent pointer, given that
4466 * xfs_bmap_add_extent_unwritten_real might have merged it into one
4467 * of the neighbouring ones.
4469 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, bma
->idx
), &bma
->got
);
4472 * We may have combined previously unwritten space with written space,
4473 * so generate another request.
4475 if (mval
->br_blockcount
< len
)
4481 * Map file blocks to filesystem blocks, and allocate blocks or convert the
4482 * extent state if necessary. Details behaviour is controlled by the flags
4483 * parameter. Only allocates blocks from a single allocation group, to avoid
4486 * The returned value in "firstblock" from the first call in a transaction
4487 * must be remembered and presented to subsequent calls in "firstblock".
4488 * An upper bound for the number of blocks to be allocated is supplied to
4489 * the first call in "total"; if no allocation group has that many free
4490 * blocks then the call will fail (return NULLFSBLOCK in "firstblock").
4494 struct xfs_trans
*tp
, /* transaction pointer */
4495 struct xfs_inode
*ip
, /* incore inode */
4496 xfs_fileoff_t bno
, /* starting file offs. mapped */
4497 xfs_filblks_t len
, /* length to map in file */
4498 int flags
, /* XFS_BMAPI_... */
4499 xfs_fsblock_t
*firstblock
, /* first allocated block
4500 controls a.g. for allocs */
4501 xfs_extlen_t total
, /* total blocks needed */
4502 struct xfs_bmbt_irec
*mval
, /* output: map values */
4503 int *nmap
, /* i/o: mval size/count */
4504 struct xfs_bmap_free
*flist
) /* i/o: list extents to free */
4506 struct xfs_mount
*mp
= ip
->i_mount
;
4507 struct xfs_ifork
*ifp
;
4508 struct xfs_bmalloca bma
= { NULL
}; /* args for xfs_bmap_alloc */
4509 xfs_fileoff_t end
; /* end of mapped file region */
4510 int eof
; /* after the end of extents */
4511 int error
; /* error return */
4512 int n
; /* current extent index */
4513 xfs_fileoff_t obno
; /* old block number (offset) */
4514 int whichfork
; /* data or attr fork */
4515 char inhole
; /* current location is hole in file */
4516 char wasdelay
; /* old extent was delayed */
4519 xfs_fileoff_t orig_bno
; /* original block number value */
4520 int orig_flags
; /* original flags arg value */
4521 xfs_filblks_t orig_len
; /* original value of len arg */
4522 struct xfs_bmbt_irec
*orig_mval
; /* original value of mval */
4523 int orig_nmap
; /* original value of *nmap */
4531 whichfork
= (flags
& XFS_BMAPI_ATTRFORK
) ?
4532 XFS_ATTR_FORK
: XFS_DATA_FORK
;
4535 ASSERT(*nmap
<= XFS_BMAP_MAX_NMAP
);
4536 ASSERT(!(flags
& XFS_BMAPI_IGSTATE
));
4539 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_LOCAL
);
4540 ASSERT(xfs_isilocked(ip
, XFS_ILOCK_EXCL
));
4542 if (unlikely(XFS_TEST_ERROR(
4543 (XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
&&
4544 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
),
4545 mp
, XFS_ERRTAG_BMAPIFORMAT
, XFS_RANDOM_BMAPIFORMAT
))) {
4546 XFS_ERROR_REPORT("xfs_bmapi_write", XFS_ERRLEVEL_LOW
, mp
);
4547 return XFS_ERROR(EFSCORRUPTED
);
4550 if (XFS_FORCED_SHUTDOWN(mp
))
4551 return XFS_ERROR(EIO
);
4553 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4555 XFS_STATS_INC(xs_blk_mapw
);
4557 if (*firstblock
== NULLFSBLOCK
) {
4558 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_BTREE
)
4559 bma
.minleft
= be16_to_cpu(ifp
->if_broot
->bb_level
) + 1;
4566 if (!(ifp
->if_flags
& XFS_IFEXTENTS
)) {
4567 error
= xfs_iread_extents(tp
, ip
, whichfork
);
4572 xfs_bmap_search_extents(ip
, bno
, whichfork
, &eof
, &bma
.idx
, &bma
.got
,
4583 bma
.firstblock
= firstblock
;
4585 while (bno
< end
&& n
< *nmap
) {
4586 inhole
= eof
|| bma
.got
.br_startoff
> bno
;
4587 wasdelay
= !inhole
&& isnullstartblock(bma
.got
.br_startblock
);
4590 * First, deal with the hole before the allocated space
4591 * that we found, if any.
4593 if (inhole
|| wasdelay
) {
4595 bma
.conv
= !!(flags
& XFS_BMAPI_CONVERT
);
4596 bma
.wasdel
= wasdelay
;
4601 * There's a 32/64 bit type mismatch between the
4602 * allocation length request (which can be 64 bits in
4603 * length) and the bma length request, which is
4604 * xfs_extlen_t and therefore 32 bits. Hence we have to
4605 * check for 32-bit overflows and handle them here.
4607 if (len
> (xfs_filblks_t
)MAXEXTLEN
)
4608 bma
.length
= MAXEXTLEN
;
4613 ASSERT(bma
.length
> 0);
4614 error
= xfs_bmapi_allocate(&bma
);
4617 if (bma
.blkno
== NULLFSBLOCK
)
4621 /* Deal with the allocated space we found. */
4622 xfs_bmapi_trim_map(mval
, &bma
.got
, &bno
, len
, obno
,
4625 /* Execute unwritten extent conversion if necessary */
4626 error
= xfs_bmapi_convert_unwritten(&bma
, mval
, len
, flags
);
4627 if (error
== EAGAIN
)
4632 /* update the extent map to return */
4633 xfs_bmapi_update_map(&mval
, &bno
, &len
, obno
, end
, &n
, flags
);
4636 * If we're done, stop now. Stop when we've allocated
4637 * XFS_BMAP_MAX_NMAP extents no matter what. Otherwise
4638 * the transaction may get too big.
4640 if (bno
>= end
|| n
>= *nmap
|| bma
.nallocs
>= *nmap
)
4643 /* Else go on to the next record. */
4645 if (++bma
.idx
< ifp
->if_bytes
/ sizeof(xfs_bmbt_rec_t
)) {
4646 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, bma
.idx
),
4654 * Transform from btree to extents, give it cur.
4656 if (xfs_bmap_wants_extents(ip
, whichfork
)) {
4657 int tmp_logflags
= 0;
4660 error
= xfs_bmap_btree_to_extents(tp
, ip
, bma
.cur
,
4661 &tmp_logflags
, whichfork
);
4662 bma
.logflags
|= tmp_logflags
;
4667 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
||
4668 XFS_IFORK_NEXTENTS(ip
, whichfork
) >
4669 XFS_IFORK_MAXEXT(ip
, whichfork
));
4673 * Log everything. Do this after conversion, there's no point in
4674 * logging the extent records if we've converted to btree format.
4676 if ((bma
.logflags
& xfs_ilog_fext(whichfork
)) &&
4677 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
)
4678 bma
.logflags
&= ~xfs_ilog_fext(whichfork
);
4679 else if ((bma
.logflags
& xfs_ilog_fbroot(whichfork
)) &&
4680 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
)
4681 bma
.logflags
&= ~xfs_ilog_fbroot(whichfork
);
4683 * Log whatever the flags say, even if error. Otherwise we might miss
4684 * detecting a case where the data is changed, there's an error,
4685 * and it's not logged so we don't shutdown when we should.
4688 xfs_trans_log_inode(tp
, ip
, bma
.logflags
);
4692 ASSERT(*firstblock
== NULLFSBLOCK
||
4693 XFS_FSB_TO_AGNO(mp
, *firstblock
) ==
4695 bma
.cur
->bc_private
.b
.firstblock
) ||
4697 XFS_FSB_TO_AGNO(mp
, *firstblock
) <
4699 bma
.cur
->bc_private
.b
.firstblock
)));
4700 *firstblock
= bma
.cur
->bc_private
.b
.firstblock
;
4702 xfs_btree_del_cursor(bma
.cur
,
4703 error
? XFS_BTREE_ERROR
: XFS_BTREE_NOERROR
);
4706 xfs_bmap_validate_ret(orig_bno
, orig_len
, orig_flags
, orig_mval
,
4712 * Called by xfs_bmapi to update file extent records and the btree
4713 * after removing space (or undoing a delayed allocation).
4715 STATIC
int /* error */
4716 xfs_bmap_del_extent(
4717 xfs_inode_t
*ip
, /* incore inode pointer */
4718 xfs_trans_t
*tp
, /* current transaction pointer */
4719 xfs_extnum_t
*idx
, /* extent number to update/delete */
4720 xfs_bmap_free_t
*flist
, /* list of extents to be freed */
4721 xfs_btree_cur_t
*cur
, /* if null, not a btree */
4722 xfs_bmbt_irec_t
*del
, /* data to remove from extents */
4723 int *logflagsp
, /* inode logging flags */
4724 int whichfork
) /* data or attr fork */
4726 xfs_filblks_t da_new
; /* new delay-alloc indirect blocks */
4727 xfs_filblks_t da_old
; /* old delay-alloc indirect blocks */
4728 xfs_fsblock_t del_endblock
=0; /* first block past del */
4729 xfs_fileoff_t del_endoff
; /* first offset past del */
4730 int delay
; /* current block is delayed allocated */
4731 int do_fx
; /* free extent at end of routine */
4732 xfs_bmbt_rec_host_t
*ep
; /* current extent entry pointer */
4733 int error
; /* error return value */
4734 int flags
; /* inode logging flags */
4735 xfs_bmbt_irec_t got
; /* current extent entry */
4736 xfs_fileoff_t got_endoff
; /* first offset past got */
4737 int i
; /* temp state */
4738 xfs_ifork_t
*ifp
; /* inode fork pointer */
4739 xfs_mount_t
*mp
; /* mount structure */
4740 xfs_filblks_t nblks
; /* quota/sb block count */
4741 xfs_bmbt_irec_t
new; /* new record to be inserted */
4743 uint qfield
; /* quota field to update */
4744 xfs_filblks_t temp
; /* for indirect length calculations */
4745 xfs_filblks_t temp2
; /* for indirect length calculations */
4748 XFS_STATS_INC(xs_del_exlist
);
4750 if (whichfork
== XFS_ATTR_FORK
)
4751 state
|= BMAP_ATTRFORK
;
4754 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4755 ASSERT((*idx
>= 0) && (*idx
< ifp
->if_bytes
/
4756 (uint
)sizeof(xfs_bmbt_rec_t
)));
4757 ASSERT(del
->br_blockcount
> 0);
4758 ep
= xfs_iext_get_ext(ifp
, *idx
);
4759 xfs_bmbt_get_all(ep
, &got
);
4760 ASSERT(got
.br_startoff
<= del
->br_startoff
);
4761 del_endoff
= del
->br_startoff
+ del
->br_blockcount
;
4762 got_endoff
= got
.br_startoff
+ got
.br_blockcount
;
4763 ASSERT(got_endoff
>= del_endoff
);
4764 delay
= isnullstartblock(got
.br_startblock
);
4765 ASSERT(isnullstartblock(del
->br_startblock
) == delay
);
4770 * If deleting a real allocation, must free up the disk space.
4773 flags
= XFS_ILOG_CORE
;
4775 * Realtime allocation. Free it and record di_nblocks update.
4777 if (whichfork
== XFS_DATA_FORK
&& XFS_IS_REALTIME_INODE(ip
)) {
4781 ASSERT(do_mod(del
->br_blockcount
,
4782 mp
->m_sb
.sb_rextsize
) == 0);
4783 ASSERT(do_mod(del
->br_startblock
,
4784 mp
->m_sb
.sb_rextsize
) == 0);
4785 bno
= del
->br_startblock
;
4786 len
= del
->br_blockcount
;
4787 do_div(bno
, mp
->m_sb
.sb_rextsize
);
4788 do_div(len
, mp
->m_sb
.sb_rextsize
);
4789 error
= xfs_rtfree_extent(tp
, bno
, (xfs_extlen_t
)len
);
4793 nblks
= len
* mp
->m_sb
.sb_rextsize
;
4794 qfield
= XFS_TRANS_DQ_RTBCOUNT
;
4797 * Ordinary allocation.
4801 nblks
= del
->br_blockcount
;
4802 qfield
= XFS_TRANS_DQ_BCOUNT
;
4805 * Set up del_endblock and cur for later.
4807 del_endblock
= del
->br_startblock
+ del
->br_blockcount
;
4809 if ((error
= xfs_bmbt_lookup_eq(cur
, got
.br_startoff
,
4810 got
.br_startblock
, got
.br_blockcount
,
4813 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
4815 da_old
= da_new
= 0;
4817 da_old
= startblockval(got
.br_startblock
);
4823 * Set flag value to use in switch statement.
4824 * Left-contig is 2, right-contig is 1.
4826 switch (((got
.br_startoff
== del
->br_startoff
) << 1) |
4827 (got_endoff
== del_endoff
)) {
4830 * Matches the whole extent. Delete the entry.
4832 xfs_iext_remove(ip
, *idx
, 1,
4833 whichfork
== XFS_ATTR_FORK
? BMAP_ATTRFORK
: 0);
4838 XFS_IFORK_NEXT_SET(ip
, whichfork
,
4839 XFS_IFORK_NEXTENTS(ip
, whichfork
) - 1);
4840 flags
|= XFS_ILOG_CORE
;
4842 flags
|= xfs_ilog_fext(whichfork
);
4845 if ((error
= xfs_btree_delete(cur
, &i
)))
4847 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
4852 * Deleting the first part of the extent.
4854 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
4855 xfs_bmbt_set_startoff(ep
, del_endoff
);
4856 temp
= got
.br_blockcount
- del
->br_blockcount
;
4857 xfs_bmbt_set_blockcount(ep
, temp
);
4859 temp
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip
, temp
),
4861 xfs_bmbt_set_startblock(ep
, nullstartblock((int)temp
));
4862 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
4866 xfs_bmbt_set_startblock(ep
, del_endblock
);
4867 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
4869 flags
|= xfs_ilog_fext(whichfork
);
4872 if ((error
= xfs_bmbt_update(cur
, del_endoff
, del_endblock
,
4873 got
.br_blockcount
- del
->br_blockcount
,
4880 * Deleting the last part of the extent.
4882 temp
= got
.br_blockcount
- del
->br_blockcount
;
4883 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
4884 xfs_bmbt_set_blockcount(ep
, temp
);
4886 temp
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip
, temp
),
4888 xfs_bmbt_set_startblock(ep
, nullstartblock((int)temp
));
4889 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
4893 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
4895 flags
|= xfs_ilog_fext(whichfork
);
4898 if ((error
= xfs_bmbt_update(cur
, got
.br_startoff
,
4900 got
.br_blockcount
- del
->br_blockcount
,
4907 * Deleting the middle of the extent.
4909 temp
= del
->br_startoff
- got
.br_startoff
;
4910 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
4911 xfs_bmbt_set_blockcount(ep
, temp
);
4912 new.br_startoff
= del_endoff
;
4913 temp2
= got_endoff
- del_endoff
;
4914 new.br_blockcount
= temp2
;
4915 new.br_state
= got
.br_state
;
4917 new.br_startblock
= del_endblock
;
4918 flags
|= XFS_ILOG_CORE
;
4920 if ((error
= xfs_bmbt_update(cur
,
4922 got
.br_startblock
, temp
,
4925 if ((error
= xfs_btree_increment(cur
, 0, &i
)))
4927 cur
->bc_rec
.b
= new;
4928 error
= xfs_btree_insert(cur
, &i
);
4929 if (error
&& error
!= ENOSPC
)
4932 * If get no-space back from btree insert,
4933 * it tried a split, and we have a zero
4934 * block reservation.
4935 * Fix up our state and return the error.
4937 if (error
== ENOSPC
) {
4939 * Reset the cursor, don't trust
4940 * it after any insert operation.
4942 if ((error
= xfs_bmbt_lookup_eq(cur
,
4947 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
4949 * Update the btree record back
4950 * to the original value.
4952 if ((error
= xfs_bmbt_update(cur
,
4959 * Reset the extent record back
4960 * to the original value.
4962 xfs_bmbt_set_blockcount(ep
,
4965 error
= XFS_ERROR(ENOSPC
);
4968 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
4970 flags
|= xfs_ilog_fext(whichfork
);
4971 XFS_IFORK_NEXT_SET(ip
, whichfork
,
4972 XFS_IFORK_NEXTENTS(ip
, whichfork
) + 1);
4974 ASSERT(whichfork
== XFS_DATA_FORK
);
4975 temp
= xfs_bmap_worst_indlen(ip
, temp
);
4976 xfs_bmbt_set_startblock(ep
, nullstartblock((int)temp
));
4977 temp2
= xfs_bmap_worst_indlen(ip
, temp2
);
4978 new.br_startblock
= nullstartblock((int)temp2
);
4979 da_new
= temp
+ temp2
;
4980 while (da_new
> da_old
) {
4984 xfs_bmbt_set_startblock(ep
,
4985 nullstartblock((int)temp
));
4987 if (da_new
== da_old
)
4993 nullstartblock((int)temp2
);
4997 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
4998 xfs_iext_insert(ip
, *idx
+ 1, 1, &new, state
);
5003 * If we need to, add to list of extents to delete.
5006 xfs_bmap_add_free(del
->br_startblock
, del
->br_blockcount
, flist
,
5009 * Adjust inode # blocks in the file.
5012 ip
->i_d
.di_nblocks
-= nblks
;
5014 * Adjust quota data.
5017 xfs_trans_mod_dquot_byino(tp
, ip
, qfield
, (long)-nblks
);
5020 * Account for change in delayed indirect blocks.
5021 * Nothing to do for disk quota accounting here.
5023 ASSERT(da_old
>= da_new
);
5024 if (da_old
> da_new
) {
5025 xfs_icsb_modify_counters(mp
, XFS_SBS_FDBLOCKS
,
5026 (int64_t)(da_old
- da_new
), 0);
5034 * Unmap (remove) blocks from a file.
5035 * If nexts is nonzero then the number of extents to remove is limited to
5036 * that value. If not all extents in the block range can be removed then
5041 xfs_trans_t
*tp
, /* transaction pointer */
5042 struct xfs_inode
*ip
, /* incore inode */
5043 xfs_fileoff_t bno
, /* starting offset to unmap */
5044 xfs_filblks_t len
, /* length to unmap in file */
5045 int flags
, /* misc flags */
5046 xfs_extnum_t nexts
, /* number of extents max */
5047 xfs_fsblock_t
*firstblock
, /* first allocated block
5048 controls a.g. for allocs */
5049 xfs_bmap_free_t
*flist
, /* i/o: list extents to free */
5050 int *done
) /* set if not done yet */
5052 xfs_btree_cur_t
*cur
; /* bmap btree cursor */
5053 xfs_bmbt_irec_t del
; /* extent being deleted */
5054 int eof
; /* is deleting at eof */
5055 xfs_bmbt_rec_host_t
*ep
; /* extent record pointer */
5056 int error
; /* error return value */
5057 xfs_extnum_t extno
; /* extent number in list */
5058 xfs_bmbt_irec_t got
; /* current extent record */
5059 xfs_ifork_t
*ifp
; /* inode fork pointer */
5060 int isrt
; /* freeing in rt area */
5061 xfs_extnum_t lastx
; /* last extent index used */
5062 int logflags
; /* transaction logging flags */
5063 xfs_extlen_t mod
; /* rt extent offset */
5064 xfs_mount_t
*mp
; /* mount structure */
5065 xfs_extnum_t nextents
; /* number of file extents */
5066 xfs_bmbt_irec_t prev
; /* previous extent record */
5067 xfs_fileoff_t start
; /* first file offset deleted */
5068 int tmp_logflags
; /* partial logging flags */
5069 int wasdel
; /* was a delayed alloc extent */
5070 int whichfork
; /* data or attribute fork */
5073 trace_xfs_bunmap(ip
, bno
, len
, flags
, _RET_IP_
);
5075 whichfork
= (flags
& XFS_BMAPI_ATTRFORK
) ?
5076 XFS_ATTR_FORK
: XFS_DATA_FORK
;
5077 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
5079 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
&&
5080 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
)) {
5081 XFS_ERROR_REPORT("xfs_bunmapi", XFS_ERRLEVEL_LOW
,
5083 return XFS_ERROR(EFSCORRUPTED
);
5086 if (XFS_FORCED_SHUTDOWN(mp
))
5087 return XFS_ERROR(EIO
);
5089 ASSERT(xfs_isilocked(ip
, XFS_ILOCK_EXCL
));
5093 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
5094 (error
= xfs_iread_extents(tp
, ip
, whichfork
)))
5096 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
5097 if (nextents
== 0) {
5101 XFS_STATS_INC(xs_blk_unmap
);
5102 isrt
= (whichfork
== XFS_DATA_FORK
) && XFS_IS_REALTIME_INODE(ip
);
5104 bno
= start
+ len
- 1;
5105 ep
= xfs_bmap_search_extents(ip
, bno
, whichfork
, &eof
, &lastx
, &got
,
5109 * Check to see if the given block number is past the end of the
5110 * file, back up to the last block if so...
5113 ep
= xfs_iext_get_ext(ifp
, --lastx
);
5114 xfs_bmbt_get_all(ep
, &got
);
5115 bno
= got
.br_startoff
+ got
.br_blockcount
- 1;
5118 if (ifp
->if_flags
& XFS_IFBROOT
) {
5119 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_BTREE
);
5120 cur
= xfs_bmbt_init_cursor(mp
, tp
, ip
, whichfork
);
5121 cur
->bc_private
.b
.firstblock
= *firstblock
;
5122 cur
->bc_private
.b
.flist
= flist
;
5123 cur
->bc_private
.b
.flags
= 0;
5129 * Synchronize by locking the bitmap inode.
5131 xfs_ilock(mp
->m_rbmip
, XFS_ILOCK_EXCL
);
5132 xfs_trans_ijoin(tp
, mp
->m_rbmip
, XFS_ILOCK_EXCL
);
5136 while (bno
!= (xfs_fileoff_t
)-1 && bno
>= start
&& lastx
>= 0 &&
5137 (nexts
== 0 || extno
< nexts
)) {
5139 * Is the found extent after a hole in which bno lives?
5140 * Just back up to the previous extent, if so.
5142 if (got
.br_startoff
> bno
) {
5145 ep
= xfs_iext_get_ext(ifp
, lastx
);
5146 xfs_bmbt_get_all(ep
, &got
);
5149 * Is the last block of this extent before the range
5150 * we're supposed to delete? If so, we're done.
5152 bno
= XFS_FILEOFF_MIN(bno
,
5153 got
.br_startoff
+ got
.br_blockcount
- 1);
5157 * Then deal with the (possibly delayed) allocated space
5162 wasdel
= isnullstartblock(del
.br_startblock
);
5163 if (got
.br_startoff
< start
) {
5164 del
.br_startoff
= start
;
5165 del
.br_blockcount
-= start
- got
.br_startoff
;
5167 del
.br_startblock
+= start
- got
.br_startoff
;
5169 if (del
.br_startoff
+ del
.br_blockcount
> bno
+ 1)
5170 del
.br_blockcount
= bno
+ 1 - del
.br_startoff
;
5171 sum
= del
.br_startblock
+ del
.br_blockcount
;
5173 (mod
= do_mod(sum
, mp
->m_sb
.sb_rextsize
))) {
5175 * Realtime extent not lined up at the end.
5176 * The extent could have been split into written
5177 * and unwritten pieces, or we could just be
5178 * unmapping part of it. But we can't really
5179 * get rid of part of a realtime extent.
5181 if (del
.br_state
== XFS_EXT_UNWRITTEN
||
5182 !xfs_sb_version_hasextflgbit(&mp
->m_sb
)) {
5184 * This piece is unwritten, or we're not
5185 * using unwritten extents. Skip over it.
5188 bno
-= mod
> del
.br_blockcount
?
5189 del
.br_blockcount
: mod
;
5190 if (bno
< got
.br_startoff
) {
5192 xfs_bmbt_get_all(xfs_iext_get_ext(
5198 * It's written, turn it unwritten.
5199 * This is better than zeroing it.
5201 ASSERT(del
.br_state
== XFS_EXT_NORM
);
5202 ASSERT(xfs_trans_get_block_res(tp
) > 0);
5204 * If this spans a realtime extent boundary,
5205 * chop it back to the start of the one we end at.
5207 if (del
.br_blockcount
> mod
) {
5208 del
.br_startoff
+= del
.br_blockcount
- mod
;
5209 del
.br_startblock
+= del
.br_blockcount
- mod
;
5210 del
.br_blockcount
= mod
;
5212 del
.br_state
= XFS_EXT_UNWRITTEN
;
5213 error
= xfs_bmap_add_extent_unwritten_real(tp
, ip
,
5214 &lastx
, &cur
, &del
, firstblock
, flist
,
5220 if (isrt
&& (mod
= do_mod(del
.br_startblock
, mp
->m_sb
.sb_rextsize
))) {
5222 * Realtime extent is lined up at the end but not
5223 * at the front. We'll get rid of full extents if
5226 mod
= mp
->m_sb
.sb_rextsize
- mod
;
5227 if (del
.br_blockcount
> mod
) {
5228 del
.br_blockcount
-= mod
;
5229 del
.br_startoff
+= mod
;
5230 del
.br_startblock
+= mod
;
5231 } else if ((del
.br_startoff
== start
&&
5232 (del
.br_state
== XFS_EXT_UNWRITTEN
||
5233 xfs_trans_get_block_res(tp
) == 0)) ||
5234 !xfs_sb_version_hasextflgbit(&mp
->m_sb
)) {
5236 * Can't make it unwritten. There isn't
5237 * a full extent here so just skip it.
5239 ASSERT(bno
>= del
.br_blockcount
);
5240 bno
-= del
.br_blockcount
;
5241 if (got
.br_startoff
> bno
) {
5243 ep
= xfs_iext_get_ext(ifp
,
5245 xfs_bmbt_get_all(ep
, &got
);
5249 } else if (del
.br_state
== XFS_EXT_UNWRITTEN
) {
5251 * This one is already unwritten.
5252 * It must have a written left neighbor.
5253 * Unwrite the killed part of that one and
5257 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
,
5259 ASSERT(prev
.br_state
== XFS_EXT_NORM
);
5260 ASSERT(!isnullstartblock(prev
.br_startblock
));
5261 ASSERT(del
.br_startblock
==
5262 prev
.br_startblock
+ prev
.br_blockcount
);
5263 if (prev
.br_startoff
< start
) {
5264 mod
= start
- prev
.br_startoff
;
5265 prev
.br_blockcount
-= mod
;
5266 prev
.br_startblock
+= mod
;
5267 prev
.br_startoff
= start
;
5269 prev
.br_state
= XFS_EXT_UNWRITTEN
;
5271 error
= xfs_bmap_add_extent_unwritten_real(tp
,
5272 ip
, &lastx
, &cur
, &prev
,
5273 firstblock
, flist
, &logflags
);
5278 ASSERT(del
.br_state
== XFS_EXT_NORM
);
5279 del
.br_state
= XFS_EXT_UNWRITTEN
;
5280 error
= xfs_bmap_add_extent_unwritten_real(tp
,
5281 ip
, &lastx
, &cur
, &del
,
5282 firstblock
, flist
, &logflags
);
5289 ASSERT(startblockval(del
.br_startblock
) > 0);
5290 /* Update realtime/data freespace, unreserve quota */
5292 xfs_filblks_t rtexts
;
5294 rtexts
= XFS_FSB_TO_B(mp
, del
.br_blockcount
);
5295 do_div(rtexts
, mp
->m_sb
.sb_rextsize
);
5296 xfs_mod_incore_sb(mp
, XFS_SBS_FREXTENTS
,
5297 (int64_t)rtexts
, 0);
5298 (void)xfs_trans_reserve_quota_nblks(NULL
,
5299 ip
, -((long)del
.br_blockcount
), 0,
5300 XFS_QMOPT_RES_RTBLKS
);
5302 xfs_icsb_modify_counters(mp
, XFS_SBS_FDBLOCKS
,
5303 (int64_t)del
.br_blockcount
, 0);
5304 (void)xfs_trans_reserve_quota_nblks(NULL
,
5305 ip
, -((long)del
.br_blockcount
), 0,
5306 XFS_QMOPT_RES_REGBLKS
);
5308 ip
->i_delayed_blks
-= del
.br_blockcount
;
5310 cur
->bc_private
.b
.flags
|=
5311 XFS_BTCUR_BPRV_WASDEL
;
5313 cur
->bc_private
.b
.flags
&= ~XFS_BTCUR_BPRV_WASDEL
;
5315 * If it's the case where the directory code is running
5316 * with no block reservation, and the deleted block is in
5317 * the middle of its extent, and the resulting insert
5318 * of an extent would cause transformation to btree format,
5319 * then reject it. The calling code will then swap
5320 * blocks around instead.
5321 * We have to do this now, rather than waiting for the
5322 * conversion to btree format, since the transaction
5325 if (!wasdel
&& xfs_trans_get_block_res(tp
) == 0 &&
5326 XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_EXTENTS
&&
5327 XFS_IFORK_NEXTENTS(ip
, whichfork
) >= /* Note the >= */
5328 XFS_IFORK_MAXEXT(ip
, whichfork
) &&
5329 del
.br_startoff
> got
.br_startoff
&&
5330 del
.br_startoff
+ del
.br_blockcount
<
5331 got
.br_startoff
+ got
.br_blockcount
) {
5332 error
= XFS_ERROR(ENOSPC
);
5335 error
= xfs_bmap_del_extent(ip
, tp
, &lastx
, flist
, cur
, &del
,
5336 &tmp_logflags
, whichfork
);
5337 logflags
|= tmp_logflags
;
5340 bno
= del
.br_startoff
- 1;
5343 * If not done go on to the next (previous) record.
5345 if (bno
!= (xfs_fileoff_t
)-1 && bno
>= start
) {
5347 ep
= xfs_iext_get_ext(ifp
, lastx
);
5348 if (xfs_bmbt_get_startoff(ep
) > bno
) {
5350 ep
= xfs_iext_get_ext(ifp
,
5353 xfs_bmbt_get_all(ep
, &got
);
5358 *done
= bno
== (xfs_fileoff_t
)-1 || bno
< start
|| lastx
< 0;
5361 * Convert to a btree if necessary.
5363 if (xfs_bmap_needs_btree(ip
, whichfork
)) {
5364 ASSERT(cur
== NULL
);
5365 error
= xfs_bmap_extents_to_btree(tp
, ip
, firstblock
, flist
,
5366 &cur
, 0, &tmp_logflags
, whichfork
);
5367 logflags
|= tmp_logflags
;
5372 * transform from btree to extents, give it cur
5374 else if (xfs_bmap_wants_extents(ip
, whichfork
)) {
5375 ASSERT(cur
!= NULL
);
5376 error
= xfs_bmap_btree_to_extents(tp
, ip
, cur
, &tmp_logflags
,
5378 logflags
|= tmp_logflags
;
5383 * transform from extents to local?
5388 * Log everything. Do this after conversion, there's no point in
5389 * logging the extent records if we've converted to btree format.
5391 if ((logflags
& xfs_ilog_fext(whichfork
)) &&
5392 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
)
5393 logflags
&= ~xfs_ilog_fext(whichfork
);
5394 else if ((logflags
& xfs_ilog_fbroot(whichfork
)) &&
5395 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
)
5396 logflags
&= ~xfs_ilog_fbroot(whichfork
);
5398 * Log inode even in the error case, if the transaction
5399 * is dirty we'll need to shut down the filesystem.
5402 xfs_trans_log_inode(tp
, ip
, logflags
);
5405 *firstblock
= cur
->bc_private
.b
.firstblock
;
5406 cur
->bc_private
.b
.allocated
= 0;
5408 xfs_btree_del_cursor(cur
,
5409 error
? XFS_BTREE_ERROR
: XFS_BTREE_NOERROR
);
5415 * Shift extent records to the left to cover a hole.
5417 * The maximum number of extents to be shifted in a single operation
5418 * is @num_exts, and @current_ext keeps track of the current extent
5419 * index we have shifted. @offset_shift_fsb is the length by which each
5420 * extent is shifted. If there is no hole to shift the extents
5421 * into, this will be considered invalid operation and we abort immediately.
5424 xfs_bmap_shift_extents(
5425 struct xfs_trans
*tp
,
5426 struct xfs_inode
*ip
,
5428 xfs_fileoff_t start_fsb
,
5429 xfs_fileoff_t offset_shift_fsb
,
5430 xfs_extnum_t
*current_ext
,
5431 xfs_fsblock_t
*firstblock
,
5432 struct xfs_bmap_free
*flist
,
5435 struct xfs_btree_cur
*cur
;
5436 struct xfs_bmbt_rec_host
*gotp
;
5437 struct xfs_bmbt_irec got
;
5438 struct xfs_bmbt_irec left
;
5439 struct xfs_mount
*mp
= ip
->i_mount
;
5440 struct xfs_ifork
*ifp
;
5441 xfs_extnum_t nexts
= 0;
5442 xfs_fileoff_t startoff
;
5445 int whichfork
= XFS_DATA_FORK
;
5447 xfs_filblks_t blockcount
= 0;
5450 if (unlikely(XFS_TEST_ERROR(
5451 (XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
&&
5452 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
),
5453 mp
, XFS_ERRTAG_BMAPIFORMAT
, XFS_RANDOM_BMAPIFORMAT
))) {
5454 XFS_ERROR_REPORT("xfs_bmap_shift_extents",
5455 XFS_ERRLEVEL_LOW
, mp
);
5456 return XFS_ERROR(EFSCORRUPTED
);
5459 if (XFS_FORCED_SHUTDOWN(mp
))
5460 return XFS_ERROR(EIO
);
5462 ASSERT(current_ext
!= NULL
);
5464 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
5465 if (!(ifp
->if_flags
& XFS_IFEXTENTS
)) {
5466 /* Read in all the extents */
5467 error
= xfs_iread_extents(tp
, ip
, whichfork
);
5473 * If *current_ext is 0, we would need to lookup the extent
5474 * from where we would start shifting and store it in gotp.
5476 if (!*current_ext
) {
5477 gotp
= xfs_iext_bno_to_ext(ifp
, start_fsb
, current_ext
);
5479 * gotp can be null in 2 cases: 1) if there are no extents
5480 * or 2) start_fsb lies in a hole beyond which there are
5481 * no extents. Either way, we are done.
5489 /* We are going to change core inode */
5490 logflags
= XFS_ILOG_CORE
;
5491 if (ifp
->if_flags
& XFS_IFBROOT
) {
5492 cur
= xfs_bmbt_init_cursor(mp
, tp
, ip
, whichfork
);
5493 cur
->bc_private
.b
.firstblock
= *firstblock
;
5494 cur
->bc_private
.b
.flist
= flist
;
5495 cur
->bc_private
.b
.flags
= 0;
5498 logflags
|= XFS_ILOG_DEXT
;
5502 * There may be delalloc extents in the data fork before the range we
5503 * are collapsing out, so we cannot
5504 * use the count of real extents here. Instead we have to calculate it
5505 * from the incore fork.
5507 total_extents
= ifp
->if_bytes
/ sizeof(xfs_bmbt_rec_t
);
5508 while (nexts
++ < num_exts
&& *current_ext
< total_extents
) {
5510 gotp
= xfs_iext_get_ext(ifp
, *current_ext
);
5511 xfs_bmbt_get_all(gotp
, &got
);
5512 startoff
= got
.br_startoff
- offset_shift_fsb
;
5515 * Before shifting extent into hole, make sure that the hole
5516 * is large enough to accomodate the shift.
5519 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
,
5520 *current_ext
- 1), &left
);
5522 if (startoff
< left
.br_startoff
+ left
.br_blockcount
)
5523 error
= XFS_ERROR(EINVAL
);
5524 } else if (offset_shift_fsb
> got
.br_startoff
) {
5526 * When first extent is shifted, offset_shift_fsb
5527 * should be less than the stating offset of
5530 error
= XFS_ERROR(EINVAL
);
5537 error
= xfs_bmbt_lookup_eq(cur
, got
.br_startoff
,
5543 XFS_WANT_CORRUPTED_GOTO(i
== 1, del_cursor
);
5546 /* Check if we can merge 2 adjacent extents */
5548 left
.br_startoff
+ left
.br_blockcount
== startoff
&&
5549 left
.br_startblock
+ left
.br_blockcount
==
5550 got
.br_startblock
&&
5551 left
.br_state
== got
.br_state
&&
5552 left
.br_blockcount
+ got
.br_blockcount
<= MAXEXTLEN
) {
5553 blockcount
= left
.br_blockcount
+
5555 xfs_iext_remove(ip
, *current_ext
, 1, 0);
5557 error
= xfs_btree_delete(cur
, &i
);
5560 XFS_WANT_CORRUPTED_GOTO(i
== 1, del_cursor
);
5562 XFS_IFORK_NEXT_SET(ip
, whichfork
,
5563 XFS_IFORK_NEXTENTS(ip
, whichfork
) - 1);
5564 gotp
= xfs_iext_get_ext(ifp
, --*current_ext
);
5565 xfs_bmbt_get_all(gotp
, &got
);
5567 /* Make cursor point to the extent we will update */
5569 error
= xfs_bmbt_lookup_eq(cur
, got
.br_startoff
,
5575 XFS_WANT_CORRUPTED_GOTO(i
== 1, del_cursor
);
5578 xfs_bmbt_set_blockcount(gotp
, blockcount
);
5579 got
.br_blockcount
= blockcount
;
5581 /* We have to update the startoff */
5582 xfs_bmbt_set_startoff(gotp
, startoff
);
5583 got
.br_startoff
= startoff
;
5587 error
= xfs_bmbt_update(cur
, got
.br_startoff
,
5596 total_extents
= ifp
->if_bytes
/ sizeof(xfs_bmbt_rec_t
);
5599 /* Check if we are done */
5600 if (*current_ext
== total_extents
)
5605 xfs_btree_del_cursor(cur
,
5606 error
? XFS_BTREE_ERROR
: XFS_BTREE_NOERROR
);
5608 xfs_trans_log_inode(tp
, ip
, logflags
);