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_types.h"
24 #include "xfs_trans.h"
28 #include "xfs_da_btree.h"
29 #include "xfs_bmap_btree.h"
30 #include "xfs_alloc_btree.h"
31 #include "xfs_ialloc_btree.h"
32 #include "xfs_dir2_sf.h"
33 #include "xfs_dinode.h"
34 #include "xfs_inode.h"
35 #include "xfs_btree.h"
36 #include "xfs_mount.h"
37 #include "xfs_itable.h"
38 #include "xfs_dir2_data.h"
39 #include "xfs_dir2_leaf.h"
40 #include "xfs_dir2_block.h"
41 #include "xfs_inode_item.h"
42 #include "xfs_extfree_item.h"
43 #include "xfs_alloc.h"
45 #include "xfs_rtalloc.h"
46 #include "xfs_error.h"
47 #include "xfs_attr_leaf.h"
49 #include "xfs_quota.h"
50 #include "xfs_trans_space.h"
51 #include "xfs_buf_item.h"
52 #include "xfs_filestream.h"
53 #include "xfs_vnodeops.h"
54 #include "xfs_trace.h"
59 xfs_bmap_check_leaf_extents(xfs_btree_cur_t
*cur
, xfs_inode_t
*ip
, int whichfork
);
62 kmem_zone_t
*xfs_bmap_free_item_zone
;
65 * Prototypes for internal bmap routines.
70 * Called from xfs_bmap_add_attrfork to handle extents format files.
72 STATIC
int /* error */
73 xfs_bmap_add_attrfork_extents(
74 xfs_trans_t
*tp
, /* transaction pointer */
75 xfs_inode_t
*ip
, /* incore inode pointer */
76 xfs_fsblock_t
*firstblock
, /* first block allocated */
77 xfs_bmap_free_t
*flist
, /* blocks to free at commit */
78 int *flags
); /* inode logging flags */
81 * Called from xfs_bmap_add_attrfork to handle local format files.
83 STATIC
int /* error */
84 xfs_bmap_add_attrfork_local(
85 xfs_trans_t
*tp
, /* transaction pointer */
86 xfs_inode_t
*ip
, /* incore inode pointer */
87 xfs_fsblock_t
*firstblock
, /* first block allocated */
88 xfs_bmap_free_t
*flist
, /* blocks to free at commit */
89 int *flags
); /* inode logging flags */
92 * Called by xfs_bmap_add_extent to handle cases converting a delayed
93 * allocation to a real allocation.
95 STATIC
int /* error */
96 xfs_bmap_add_extent_delay_real(
97 xfs_inode_t
*ip
, /* incore inode pointer */
98 xfs_extnum_t
*idx
, /* extent number to update/insert */
99 xfs_btree_cur_t
**curp
, /* if *curp is null, not a btree */
100 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
101 xfs_filblks_t
*dnew
, /* new delayed-alloc indirect blocks */
102 xfs_fsblock_t
*first
, /* pointer to firstblock variable */
103 xfs_bmap_free_t
*flist
, /* list of extents to be freed */
104 int *logflagsp
); /* inode logging flags */
107 * Called by xfs_bmap_add_extent to handle cases converting a hole
108 * to a delayed allocation.
110 STATIC
int /* error */
111 xfs_bmap_add_extent_hole_delay(
112 xfs_inode_t
*ip
, /* incore inode pointer */
113 xfs_extnum_t
*idx
, /* extent number to update/insert */
114 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
115 int *logflagsp
); /* inode logging flags */
118 * Called by xfs_bmap_add_extent to handle cases converting a hole
119 * to a real allocation.
121 STATIC
int /* error */
122 xfs_bmap_add_extent_hole_real(
123 xfs_inode_t
*ip
, /* incore inode pointer */
124 xfs_extnum_t
*idx
, /* extent number to update/insert */
125 xfs_btree_cur_t
*cur
, /* if null, not a btree */
126 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
127 int *logflagsp
, /* inode logging flags */
128 int whichfork
); /* data or attr fork */
131 * Called by xfs_bmap_add_extent to handle cases converting an unwritten
132 * allocation to a real allocation or vice versa.
134 STATIC
int /* error */
135 xfs_bmap_add_extent_unwritten_real(
136 xfs_inode_t
*ip
, /* incore inode pointer */
137 xfs_extnum_t
*idx
, /* extent number to update/insert */
138 xfs_btree_cur_t
**curp
, /* if *curp is null, not a btree */
139 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
140 int *logflagsp
); /* inode logging flags */
143 * xfs_bmap_alloc is called by xfs_bmapi to allocate an extent for a file.
144 * It figures out where to ask the underlying allocator to put the new extent.
146 STATIC
int /* error */
148 xfs_bmalloca_t
*ap
); /* bmap alloc argument struct */
151 * Transform a btree format file with only one leaf node, where the
152 * extents list will fit in the inode, into an extents format file.
153 * Since the file extents are already in-core, all we have to do is
154 * give up the space for the btree root and pitch the leaf block.
156 STATIC
int /* error */
157 xfs_bmap_btree_to_extents(
158 xfs_trans_t
*tp
, /* transaction pointer */
159 xfs_inode_t
*ip
, /* incore inode pointer */
160 xfs_btree_cur_t
*cur
, /* btree cursor */
161 int *logflagsp
, /* inode logging flags */
162 int whichfork
); /* data or attr fork */
165 * Remove the entry "free" from the free item list. Prev points to the
166 * previous entry, unless "free" is the head of the list.
170 xfs_bmap_free_t
*flist
, /* free item list header */
171 xfs_bmap_free_item_t
*prev
, /* previous item on list, if any */
172 xfs_bmap_free_item_t
*free
); /* list item to be freed */
175 * Convert an extents-format file into a btree-format file.
176 * The new file will have a root block (in the inode) and a single child block.
178 STATIC
int /* error */
179 xfs_bmap_extents_to_btree(
180 xfs_trans_t
*tp
, /* transaction pointer */
181 xfs_inode_t
*ip
, /* incore inode pointer */
182 xfs_fsblock_t
*firstblock
, /* first-block-allocated */
183 xfs_bmap_free_t
*flist
, /* blocks freed in xaction */
184 xfs_btree_cur_t
**curp
, /* cursor returned to caller */
185 int wasdel
, /* converting a delayed alloc */
186 int *logflagsp
, /* inode logging flags */
187 int whichfork
); /* data or attr fork */
190 * Convert a local file to an extents file.
191 * This code is sort of bogus, since the file data needs to get
192 * logged so it won't be lost. The bmap-level manipulations are ok, though.
194 STATIC
int /* error */
195 xfs_bmap_local_to_extents(
196 xfs_trans_t
*tp
, /* transaction pointer */
197 xfs_inode_t
*ip
, /* incore inode pointer */
198 xfs_fsblock_t
*firstblock
, /* first block allocated in xaction */
199 xfs_extlen_t total
, /* total blocks needed by transaction */
200 int *logflagsp
, /* inode logging flags */
201 int whichfork
); /* data or attr fork */
204 * Search the extents list for the inode, for the extent containing bno.
205 * If bno lies in a hole, point to the next entry. If bno lies past eof,
206 * *eofp will be set, and *prevp will contain the last entry (null if none).
207 * Else, *lastxp will be set to the index of the found
208 * entry; *gotp will contain the entry.
210 STATIC xfs_bmbt_rec_host_t
* /* pointer to found extent entry */
211 xfs_bmap_search_extents(
212 xfs_inode_t
*ip
, /* incore inode pointer */
213 xfs_fileoff_t bno
, /* block number searched for */
214 int whichfork
, /* data or attr fork */
215 int *eofp
, /* out: end of file found */
216 xfs_extnum_t
*lastxp
, /* out: last extent index */
217 xfs_bmbt_irec_t
*gotp
, /* out: extent entry found */
218 xfs_bmbt_irec_t
*prevp
); /* out: previous extent entry found */
221 * Check the last inode extent to determine whether this allocation will result
222 * in blocks being allocated at the end of the file. When we allocate new data
223 * blocks at the end of the file which do not start at the previous data block,
224 * we will try to align the new blocks at stripe unit boundaries.
226 STATIC
int /* error */
228 xfs_inode_t
*ip
, /* incore inode pointer */
229 xfs_fileoff_t off
, /* file offset in fsblocks */
230 int whichfork
, /* data or attribute fork */
231 char *aeof
); /* return value */
234 * Compute the worst-case number of indirect blocks that will be used
235 * for ip's delayed extent of length "len".
238 xfs_bmap_worst_indlen(
239 xfs_inode_t
*ip
, /* incore inode pointer */
240 xfs_filblks_t len
); /* delayed extent length */
244 * Perform various validation checks on the values being returned
248 xfs_bmap_validate_ret(
252 xfs_bmbt_irec_t
*mval
,
256 #define xfs_bmap_validate_ret(bno,len,flags,mval,onmap,nmap)
264 xfs_fsblock_t blockno
,
269 xfs_bmap_count_leaves(
276 xfs_bmap_disk_count_leaves(
277 struct xfs_mount
*mp
,
278 struct xfs_btree_block
*block
,
283 * Bmap internal routines.
286 STATIC
int /* error */
288 struct xfs_btree_cur
*cur
,
292 int *stat
) /* success/failure */
294 cur
->bc_rec
.b
.br_startoff
= off
;
295 cur
->bc_rec
.b
.br_startblock
= bno
;
296 cur
->bc_rec
.b
.br_blockcount
= len
;
297 return xfs_btree_lookup(cur
, XFS_LOOKUP_EQ
, stat
);
300 STATIC
int /* error */
302 struct xfs_btree_cur
*cur
,
306 int *stat
) /* success/failure */
308 cur
->bc_rec
.b
.br_startoff
= off
;
309 cur
->bc_rec
.b
.br_startblock
= bno
;
310 cur
->bc_rec
.b
.br_blockcount
= len
;
311 return xfs_btree_lookup(cur
, XFS_LOOKUP_GE
, stat
);
315 * Update the record referred to by cur to the value given
316 * by [off, bno, len, state].
317 * This either works (return 0) or gets an EFSCORRUPTED error.
321 struct xfs_btree_cur
*cur
,
327 union xfs_btree_rec rec
;
329 xfs_bmbt_disk_set_allf(&rec
.bmbt
, off
, bno
, len
, state
);
330 return xfs_btree_update(cur
, &rec
);
334 * Called from xfs_bmap_add_attrfork to handle btree format files.
336 STATIC
int /* error */
337 xfs_bmap_add_attrfork_btree(
338 xfs_trans_t
*tp
, /* transaction pointer */
339 xfs_inode_t
*ip
, /* incore inode pointer */
340 xfs_fsblock_t
*firstblock
, /* first block allocated */
341 xfs_bmap_free_t
*flist
, /* blocks to free at commit */
342 int *flags
) /* inode logging flags */
344 xfs_btree_cur_t
*cur
; /* btree cursor */
345 int error
; /* error return value */
346 xfs_mount_t
*mp
; /* file system mount struct */
347 int stat
; /* newroot status */
350 if (ip
->i_df
.if_broot_bytes
<= XFS_IFORK_DSIZE(ip
))
351 *flags
|= XFS_ILOG_DBROOT
;
353 cur
= xfs_bmbt_init_cursor(mp
, tp
, ip
, XFS_DATA_FORK
);
354 cur
->bc_private
.b
.flist
= flist
;
355 cur
->bc_private
.b
.firstblock
= *firstblock
;
356 if ((error
= xfs_bmbt_lookup_ge(cur
, 0, 0, 0, &stat
)))
358 /* must be at least one entry */
359 XFS_WANT_CORRUPTED_GOTO(stat
== 1, error0
);
360 if ((error
= xfs_btree_new_iroot(cur
, flags
, &stat
)))
363 xfs_btree_del_cursor(cur
, XFS_BTREE_NOERROR
);
364 return XFS_ERROR(ENOSPC
);
366 *firstblock
= cur
->bc_private
.b
.firstblock
;
367 cur
->bc_private
.b
.allocated
= 0;
368 xfs_btree_del_cursor(cur
, XFS_BTREE_NOERROR
);
372 xfs_btree_del_cursor(cur
, XFS_BTREE_ERROR
);
377 * Called from xfs_bmap_add_attrfork to handle extents format files.
379 STATIC
int /* error */
380 xfs_bmap_add_attrfork_extents(
381 xfs_trans_t
*tp
, /* transaction pointer */
382 xfs_inode_t
*ip
, /* incore inode pointer */
383 xfs_fsblock_t
*firstblock
, /* first block allocated */
384 xfs_bmap_free_t
*flist
, /* blocks to free at commit */
385 int *flags
) /* inode logging flags */
387 xfs_btree_cur_t
*cur
; /* bmap btree cursor */
388 int error
; /* error return value */
390 if (ip
->i_d
.di_nextents
* sizeof(xfs_bmbt_rec_t
) <= XFS_IFORK_DSIZE(ip
))
393 error
= xfs_bmap_extents_to_btree(tp
, ip
, firstblock
, flist
, &cur
, 0,
394 flags
, XFS_DATA_FORK
);
396 cur
->bc_private
.b
.allocated
= 0;
397 xfs_btree_del_cursor(cur
,
398 error
? XFS_BTREE_ERROR
: XFS_BTREE_NOERROR
);
404 * Called from xfs_bmap_add_attrfork to handle local format files.
406 STATIC
int /* error */
407 xfs_bmap_add_attrfork_local(
408 xfs_trans_t
*tp
, /* transaction pointer */
409 xfs_inode_t
*ip
, /* incore inode pointer */
410 xfs_fsblock_t
*firstblock
, /* first block allocated */
411 xfs_bmap_free_t
*flist
, /* blocks to free at commit */
412 int *flags
) /* inode logging flags */
414 xfs_da_args_t dargs
; /* args for dir/attr code */
415 int error
; /* error return value */
416 xfs_mount_t
*mp
; /* mount structure pointer */
418 if (ip
->i_df
.if_bytes
<= XFS_IFORK_DSIZE(ip
))
420 if ((ip
->i_d
.di_mode
& S_IFMT
) == S_IFDIR
) {
422 memset(&dargs
, 0, sizeof(dargs
));
424 dargs
.firstblock
= firstblock
;
426 dargs
.total
= mp
->m_dirblkfsbs
;
427 dargs
.whichfork
= XFS_DATA_FORK
;
429 error
= xfs_dir2_sf_to_block(&dargs
);
431 error
= xfs_bmap_local_to_extents(tp
, ip
, firstblock
, 1, flags
,
437 * Called by xfs_bmapi to update file extent records and the btree
438 * after allocating space (or doing a delayed allocation).
440 STATIC
int /* error */
442 xfs_inode_t
*ip
, /* incore inode pointer */
443 xfs_extnum_t
*idx
, /* extent number to update/insert */
444 xfs_btree_cur_t
**curp
, /* if *curp is null, not a btree */
445 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
446 xfs_fsblock_t
*first
, /* pointer to firstblock variable */
447 xfs_bmap_free_t
*flist
, /* list of extents to be freed */
448 int *logflagsp
, /* inode logging flags */
449 int whichfork
) /* data or attr fork */
451 xfs_btree_cur_t
*cur
; /* btree cursor or null */
452 xfs_filblks_t da_new
; /* new count del alloc blocks used */
453 xfs_filblks_t da_old
; /* old count del alloc blocks used */
454 int error
; /* error return value */
455 xfs_ifork_t
*ifp
; /* inode fork ptr */
456 int logflags
; /* returned value */
457 xfs_extnum_t nextents
; /* number of extents in file now */
459 XFS_STATS_INC(xs_add_exlist
);
462 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
463 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
468 ASSERT(*idx
<= nextents
);
471 * This is the first extent added to a new/empty file.
472 * Special case this one, so other routines get to assume there are
473 * already extents in the list.
476 xfs_iext_insert(ip
, *idx
, 1, new,
477 whichfork
== XFS_ATTR_FORK
? BMAP_ATTRFORK
: 0);
481 if (!isnullstartblock(new->br_startblock
)) {
482 XFS_IFORK_NEXT_SET(ip
, whichfork
, 1);
483 logflags
= XFS_ILOG_CORE
| xfs_ilog_fext(whichfork
);
488 * Any kind of new delayed allocation goes here.
490 else if (isnullstartblock(new->br_startblock
)) {
492 ASSERT((cur
->bc_private
.b
.flags
&
493 XFS_BTCUR_BPRV_WASDEL
) == 0);
494 error
= xfs_bmap_add_extent_hole_delay(ip
, idx
, new,
498 * Real allocation off the end of the file.
500 else if (*idx
== nextents
) {
502 ASSERT((cur
->bc_private
.b
.flags
&
503 XFS_BTCUR_BPRV_WASDEL
) == 0);
504 error
= xfs_bmap_add_extent_hole_real(ip
, idx
, cur
, new,
505 &logflags
, whichfork
);
507 xfs_bmbt_irec_t prev
; /* old extent at offset idx */
510 * Get the record referred to by idx.
512 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, *idx
), &prev
);
514 * If it's a real allocation record, and the new allocation ends
515 * after the start of the referred to record, then we're filling
516 * in a delayed or unwritten allocation with a real one, or
517 * converting real back to unwritten.
519 if (!isnullstartblock(new->br_startblock
) &&
520 new->br_startoff
+ new->br_blockcount
> prev
.br_startoff
) {
521 if (prev
.br_state
!= XFS_EXT_UNWRITTEN
&&
522 isnullstartblock(prev
.br_startblock
)) {
523 da_old
= startblockval(prev
.br_startblock
);
525 ASSERT(cur
->bc_private
.b
.flags
&
526 XFS_BTCUR_BPRV_WASDEL
);
527 error
= xfs_bmap_add_extent_delay_real(ip
,
528 idx
, &cur
, new, &da_new
,
529 first
, flist
, &logflags
);
531 ASSERT(new->br_state
== XFS_EXT_NORM
||
532 new->br_state
== XFS_EXT_UNWRITTEN
);
534 error
= xfs_bmap_add_extent_unwritten_real(ip
,
535 idx
, &cur
, new, &logflags
);
541 * Otherwise we're filling in a hole with an allocation.
545 ASSERT((cur
->bc_private
.b
.flags
&
546 XFS_BTCUR_BPRV_WASDEL
) == 0);
547 error
= xfs_bmap_add_extent_hole_real(ip
, idx
, cur
,
548 new, &logflags
, whichfork
);
554 ASSERT(*curp
== cur
|| *curp
== NULL
);
557 * Convert to a btree if necessary.
559 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_EXTENTS
&&
560 XFS_IFORK_NEXTENTS(ip
, whichfork
) > ifp
->if_ext_max
) {
561 int tmp_logflags
; /* partial log flag return val */
564 error
= xfs_bmap_extents_to_btree(ip
->i_transp
, ip
, first
,
565 flist
, &cur
, da_old
> 0, &tmp_logflags
, whichfork
);
566 logflags
|= tmp_logflags
;
571 * Adjust for changes in reserved delayed indirect blocks.
572 * Nothing to do for disk quotas here.
574 if (da_old
|| da_new
) {
579 nblks
+= cur
->bc_private
.b
.allocated
;
580 ASSERT(nblks
<= da_old
);
582 xfs_icsb_modify_counters(ip
->i_mount
, XFS_SBS_FDBLOCKS
,
583 (int64_t)(da_old
- nblks
), 0);
586 * Clear out the allocated field, done with it now in any case.
589 cur
->bc_private
.b
.allocated
= 0;
595 xfs_bmap_check_leaf_extents(*curp
, ip
, whichfork
);
597 *logflagsp
= logflags
;
602 * Called by xfs_bmap_add_extent to handle cases converting a delayed
603 * allocation to a real allocation.
605 STATIC
int /* error */
606 xfs_bmap_add_extent_delay_real(
607 xfs_inode_t
*ip
, /* incore inode pointer */
608 xfs_extnum_t
*idx
, /* extent number to update/insert */
609 xfs_btree_cur_t
**curp
, /* if *curp is null, not a btree */
610 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
611 xfs_filblks_t
*dnew
, /* new delayed-alloc indirect blocks */
612 xfs_fsblock_t
*first
, /* pointer to firstblock variable */
613 xfs_bmap_free_t
*flist
, /* list of extents to be freed */
614 int *logflagsp
) /* inode logging flags */
616 xfs_btree_cur_t
*cur
; /* btree cursor */
617 int diff
; /* temp value */
618 xfs_bmbt_rec_host_t
*ep
; /* extent entry for idx */
619 int error
; /* error return value */
620 int i
; /* temp state */
621 xfs_ifork_t
*ifp
; /* inode fork pointer */
622 xfs_fileoff_t new_endoff
; /* end offset of new entry */
623 xfs_bmbt_irec_t r
[3]; /* neighbor extent entries */
624 /* left is 0, right is 1, prev is 2 */
625 int rval
=0; /* return value (logging flags) */
626 int state
= 0;/* state bits, accessed thru macros */
627 xfs_filblks_t temp
=0; /* value for dnew calculations */
628 xfs_filblks_t temp2
=0;/* value for dnew calculations */
629 int tmp_rval
; /* partial logging flags */
636 * Set up a bunch of variables to make the tests simpler.
639 ifp
= XFS_IFORK_PTR(ip
, XFS_DATA_FORK
);
640 ep
= xfs_iext_get_ext(ifp
, *idx
);
641 xfs_bmbt_get_all(ep
, &PREV
);
642 new_endoff
= new->br_startoff
+ new->br_blockcount
;
643 ASSERT(PREV
.br_startoff
<= new->br_startoff
);
644 ASSERT(PREV
.br_startoff
+ PREV
.br_blockcount
>= new_endoff
);
647 * Set flags determining what part of the previous delayed allocation
648 * extent is being replaced by a real allocation.
650 if (PREV
.br_startoff
== new->br_startoff
)
651 state
|= BMAP_LEFT_FILLING
;
652 if (PREV
.br_startoff
+ PREV
.br_blockcount
== new_endoff
)
653 state
|= BMAP_RIGHT_FILLING
;
656 * Check and set flags if this segment has a left neighbor.
657 * Don't set contiguous if the combined extent would be too large.
660 state
|= BMAP_LEFT_VALID
;
661 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, *idx
- 1), &LEFT
);
663 if (isnullstartblock(LEFT
.br_startblock
))
664 state
|= BMAP_LEFT_DELAY
;
667 if ((state
& BMAP_LEFT_VALID
) && !(state
& BMAP_LEFT_DELAY
) &&
668 LEFT
.br_startoff
+ LEFT
.br_blockcount
== new->br_startoff
&&
669 LEFT
.br_startblock
+ LEFT
.br_blockcount
== new->br_startblock
&&
670 LEFT
.br_state
== new->br_state
&&
671 LEFT
.br_blockcount
+ new->br_blockcount
<= MAXEXTLEN
)
672 state
|= BMAP_LEFT_CONTIG
;
675 * Check and set flags if this segment has a right neighbor.
676 * Don't set contiguous if the combined extent would be too large.
677 * Also check for all-three-contiguous being too large.
679 if (*idx
< ip
->i_df
.if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
) - 1) {
680 state
|= BMAP_RIGHT_VALID
;
681 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, *idx
+ 1), &RIGHT
);
683 if (isnullstartblock(RIGHT
.br_startblock
))
684 state
|= BMAP_RIGHT_DELAY
;
687 if ((state
& BMAP_RIGHT_VALID
) && !(state
& BMAP_RIGHT_DELAY
) &&
688 new_endoff
== RIGHT
.br_startoff
&&
689 new->br_startblock
+ new->br_blockcount
== RIGHT
.br_startblock
&&
690 new->br_state
== RIGHT
.br_state
&&
691 new->br_blockcount
+ RIGHT
.br_blockcount
<= MAXEXTLEN
&&
692 ((state
& (BMAP_LEFT_CONTIG
| BMAP_LEFT_FILLING
|
693 BMAP_RIGHT_FILLING
)) !=
694 (BMAP_LEFT_CONTIG
| BMAP_LEFT_FILLING
|
695 BMAP_RIGHT_FILLING
) ||
696 LEFT
.br_blockcount
+ new->br_blockcount
+ RIGHT
.br_blockcount
698 state
|= BMAP_RIGHT_CONTIG
;
702 * Switch out based on the FILLING and CONTIG state bits.
704 switch (state
& (BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
|
705 BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
)) {
706 case BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
|
707 BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
:
709 * Filling in all of a previously delayed allocation extent.
710 * The left and right neighbors are both contiguous with new.
713 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
714 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, *idx
),
715 LEFT
.br_blockcount
+ PREV
.br_blockcount
+
716 RIGHT
.br_blockcount
);
717 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
719 xfs_iext_remove(ip
, *idx
+ 1, 2, state
);
720 ip
->i_d
.di_nextents
--;
722 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
724 rval
= XFS_ILOG_CORE
;
725 if ((error
= xfs_bmbt_lookup_eq(cur
, RIGHT
.br_startoff
,
727 RIGHT
.br_blockcount
, &i
)))
729 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
730 if ((error
= xfs_btree_delete(cur
, &i
)))
732 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
733 if ((error
= xfs_btree_decrement(cur
, 0, &i
)))
735 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
736 if ((error
= xfs_bmbt_update(cur
, LEFT
.br_startoff
,
740 RIGHT
.br_blockcount
, LEFT
.br_state
)))
746 case BMAP_LEFT_FILLING
| BMAP_RIGHT_FILLING
| BMAP_LEFT_CONTIG
:
748 * Filling in all of a previously delayed allocation extent.
749 * The left neighbor is contiguous, the right is not.
753 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
754 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, *idx
),
755 LEFT
.br_blockcount
+ PREV
.br_blockcount
);
756 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
758 xfs_iext_remove(ip
, *idx
+ 1, 1, state
);
760 rval
= XFS_ILOG_DEXT
;
763 if ((error
= xfs_bmbt_lookup_eq(cur
, LEFT
.br_startoff
,
764 LEFT
.br_startblock
, LEFT
.br_blockcount
,
767 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
768 if ((error
= xfs_bmbt_update(cur
, LEFT
.br_startoff
,
771 PREV
.br_blockcount
, LEFT
.br_state
)))
777 case BMAP_LEFT_FILLING
| BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
:
779 * Filling in all of a previously delayed allocation extent.
780 * The right neighbor is contiguous, the left is not.
782 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
783 xfs_bmbt_set_startblock(ep
, new->br_startblock
);
784 xfs_bmbt_set_blockcount(ep
,
785 PREV
.br_blockcount
+ RIGHT
.br_blockcount
);
786 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
788 xfs_iext_remove(ip
, *idx
+ 1, 1, state
);
790 rval
= XFS_ILOG_DEXT
;
793 if ((error
= xfs_bmbt_lookup_eq(cur
, RIGHT
.br_startoff
,
795 RIGHT
.br_blockcount
, &i
)))
797 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
798 if ((error
= xfs_bmbt_update(cur
, PREV
.br_startoff
,
801 RIGHT
.br_blockcount
, PREV
.br_state
)))
808 case BMAP_LEFT_FILLING
| BMAP_RIGHT_FILLING
:
810 * Filling in all of a previously delayed allocation extent.
811 * Neither the left nor right neighbors are contiguous with
814 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
815 xfs_bmbt_set_startblock(ep
, new->br_startblock
);
816 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
818 ip
->i_d
.di_nextents
++;
820 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
822 rval
= XFS_ILOG_CORE
;
823 if ((error
= xfs_bmbt_lookup_eq(cur
, new->br_startoff
,
824 new->br_startblock
, new->br_blockcount
,
827 XFS_WANT_CORRUPTED_GOTO(i
== 0, done
);
828 cur
->bc_rec
.b
.br_state
= XFS_EXT_NORM
;
829 if ((error
= xfs_btree_insert(cur
, &i
)))
831 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
837 case BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
:
839 * Filling in the first part of a previous delayed allocation.
840 * The left neighbor is contiguous.
842 trace_xfs_bmap_pre_update(ip
, *idx
- 1, state
, _THIS_IP_
);
843 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, *idx
- 1),
844 LEFT
.br_blockcount
+ new->br_blockcount
);
845 xfs_bmbt_set_startoff(ep
,
846 PREV
.br_startoff
+ new->br_blockcount
);
847 trace_xfs_bmap_post_update(ip
, *idx
- 1, state
, _THIS_IP_
);
849 temp
= PREV
.br_blockcount
- new->br_blockcount
;
850 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
851 xfs_bmbt_set_blockcount(ep
, temp
);
853 rval
= XFS_ILOG_DEXT
;
856 if ((error
= xfs_bmbt_lookup_eq(cur
, LEFT
.br_startoff
,
857 LEFT
.br_startblock
, LEFT
.br_blockcount
,
860 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
861 if ((error
= xfs_bmbt_update(cur
, LEFT
.br_startoff
,
868 temp
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip
, temp
),
869 startblockval(PREV
.br_startblock
));
870 xfs_bmbt_set_startblock(ep
, nullstartblock((int)temp
));
871 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
877 case BMAP_LEFT_FILLING
:
879 * Filling in the first part of a previous delayed allocation.
880 * The left neighbor is not contiguous.
882 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
883 xfs_bmbt_set_startoff(ep
, new_endoff
);
884 temp
= PREV
.br_blockcount
- new->br_blockcount
;
885 xfs_bmbt_set_blockcount(ep
, temp
);
886 xfs_iext_insert(ip
, *idx
, 1, new, state
);
887 ip
->i_d
.di_nextents
++;
889 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
891 rval
= XFS_ILOG_CORE
;
892 if ((error
= xfs_bmbt_lookup_eq(cur
, new->br_startoff
,
893 new->br_startblock
, new->br_blockcount
,
896 XFS_WANT_CORRUPTED_GOTO(i
== 0, done
);
897 cur
->bc_rec
.b
.br_state
= XFS_EXT_NORM
;
898 if ((error
= xfs_btree_insert(cur
, &i
)))
900 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
902 if (ip
->i_d
.di_format
== XFS_DINODE_FMT_EXTENTS
&&
903 ip
->i_d
.di_nextents
> ip
->i_df
.if_ext_max
) {
904 error
= xfs_bmap_extents_to_btree(ip
->i_transp
, ip
,
905 first
, flist
, &cur
, 1, &tmp_rval
,
911 temp
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip
, temp
),
912 startblockval(PREV
.br_startblock
) -
913 (cur
? cur
->bc_private
.b
.allocated
: 0));
914 ep
= xfs_iext_get_ext(ifp
, *idx
+ 1);
915 xfs_bmbt_set_startblock(ep
, nullstartblock((int)temp
));
916 trace_xfs_bmap_post_update(ip
, *idx
+ 1, state
, _THIS_IP_
);
921 case BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
:
923 * Filling in the last part of a previous delayed allocation.
924 * The right neighbor is contiguous with the new allocation.
926 temp
= PREV
.br_blockcount
- new->br_blockcount
;
927 trace_xfs_bmap_pre_update(ip
, *idx
+ 1, state
, _THIS_IP_
);
928 xfs_bmbt_set_blockcount(ep
, temp
);
929 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp
, *idx
+ 1),
930 new->br_startoff
, new->br_startblock
,
931 new->br_blockcount
+ RIGHT
.br_blockcount
,
933 trace_xfs_bmap_post_update(ip
, *idx
+ 1, state
, _THIS_IP_
);
935 rval
= XFS_ILOG_DEXT
;
938 if ((error
= xfs_bmbt_lookup_eq(cur
, RIGHT
.br_startoff
,
940 RIGHT
.br_blockcount
, &i
)))
942 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
943 if ((error
= xfs_bmbt_update(cur
, new->br_startoff
,
951 temp
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip
, temp
),
952 startblockval(PREV
.br_startblock
));
953 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
954 xfs_bmbt_set_startblock(ep
, nullstartblock((int)temp
));
955 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
961 case BMAP_RIGHT_FILLING
:
963 * Filling in the last part of a previous delayed allocation.
964 * The right neighbor is not contiguous.
966 temp
= PREV
.br_blockcount
- new->br_blockcount
;
967 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
968 xfs_bmbt_set_blockcount(ep
, temp
);
969 xfs_iext_insert(ip
, *idx
+ 1, 1, new, state
);
970 ip
->i_d
.di_nextents
++;
972 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
974 rval
= XFS_ILOG_CORE
;
975 if ((error
= xfs_bmbt_lookup_eq(cur
, new->br_startoff
,
976 new->br_startblock
, new->br_blockcount
,
979 XFS_WANT_CORRUPTED_GOTO(i
== 0, done
);
980 cur
->bc_rec
.b
.br_state
= XFS_EXT_NORM
;
981 if ((error
= xfs_btree_insert(cur
, &i
)))
983 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
985 if (ip
->i_d
.di_format
== XFS_DINODE_FMT_EXTENTS
&&
986 ip
->i_d
.di_nextents
> ip
->i_df
.if_ext_max
) {
987 error
= xfs_bmap_extents_to_btree(ip
->i_transp
, ip
,
988 first
, flist
, &cur
, 1, &tmp_rval
,
994 temp
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip
, temp
),
995 startblockval(PREV
.br_startblock
) -
996 (cur
? cur
->bc_private
.b
.allocated
: 0));
997 ep
= xfs_iext_get_ext(ifp
, *idx
);
998 xfs_bmbt_set_startblock(ep
, nullstartblock((int)temp
));
999 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
1007 * Filling in the middle part of a previous delayed allocation.
1008 * Contiguity is impossible here.
1009 * This case is avoided almost all the time.
1011 * We start with a delayed allocation:
1013 * +ddddddddddddddddddddddddddddddddddddddddddddddddddddddd+
1016 * and we are allocating:
1017 * +rrrrrrrrrrrrrrrrr+
1020 * and we set it up for insertion as:
1021 * +ddddddddddddddddddd+rrrrrrrrrrrrrrrrr+ddddddddddddddddd+
1023 * PREV @ idx LEFT RIGHT
1024 * inserted at idx + 1
1026 temp
= new->br_startoff
- PREV
.br_startoff
;
1027 temp2
= PREV
.br_startoff
+ PREV
.br_blockcount
- new_endoff
;
1028 trace_xfs_bmap_pre_update(ip
, *idx
, 0, _THIS_IP_
);
1029 xfs_bmbt_set_blockcount(ep
, temp
); /* truncate PREV */
1031 RIGHT
.br_state
= PREV
.br_state
;
1032 RIGHT
.br_startblock
= nullstartblock(
1033 (int)xfs_bmap_worst_indlen(ip
, temp2
));
1034 RIGHT
.br_startoff
= new_endoff
;
1035 RIGHT
.br_blockcount
= temp2
;
1036 /* insert LEFT (r[0]) and RIGHT (r[1]) at the same time */
1037 xfs_iext_insert(ip
, *idx
+ 1, 2, &LEFT
, state
);
1038 ip
->i_d
.di_nextents
++;
1040 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1042 rval
= XFS_ILOG_CORE
;
1043 if ((error
= xfs_bmbt_lookup_eq(cur
, new->br_startoff
,
1044 new->br_startblock
, new->br_blockcount
,
1047 XFS_WANT_CORRUPTED_GOTO(i
== 0, done
);
1048 cur
->bc_rec
.b
.br_state
= XFS_EXT_NORM
;
1049 if ((error
= xfs_btree_insert(cur
, &i
)))
1051 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1053 if (ip
->i_d
.di_format
== XFS_DINODE_FMT_EXTENTS
&&
1054 ip
->i_d
.di_nextents
> ip
->i_df
.if_ext_max
) {
1055 error
= xfs_bmap_extents_to_btree(ip
->i_transp
, ip
,
1056 first
, flist
, &cur
, 1, &tmp_rval
,
1062 temp
= xfs_bmap_worst_indlen(ip
, temp
);
1063 temp2
= xfs_bmap_worst_indlen(ip
, temp2
);
1064 diff
= (int)(temp
+ temp2
- startblockval(PREV
.br_startblock
) -
1065 (cur
? cur
->bc_private
.b
.allocated
: 0));
1067 xfs_icsb_modify_counters(ip
->i_mount
, XFS_SBS_FDBLOCKS
,
1068 -((int64_t)diff
), 0)) {
1070 * Ick gross gag me with a spoon.
1072 ASSERT(0); /* want to see if this ever happens! */
1078 !xfs_icsb_modify_counters(ip
->i_mount
,
1080 -((int64_t)diff
), 0))
1087 !xfs_icsb_modify_counters(ip
->i_mount
,
1089 -((int64_t)diff
), 0))
1094 ep
= xfs_iext_get_ext(ifp
, *idx
);
1095 xfs_bmbt_set_startblock(ep
, nullstartblock((int)temp
));
1096 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
1097 trace_xfs_bmap_pre_update(ip
, *idx
+ 2, state
, _THIS_IP_
);
1098 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp
, *idx
+ 2),
1099 nullstartblock((int)temp2
));
1100 trace_xfs_bmap_post_update(ip
, *idx
+ 2, state
, _THIS_IP_
);
1103 *dnew
= temp
+ temp2
;
1106 case BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
1107 case BMAP_RIGHT_FILLING
| BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
1108 case BMAP_LEFT_FILLING
| BMAP_RIGHT_CONTIG
:
1109 case BMAP_RIGHT_FILLING
| BMAP_LEFT_CONTIG
:
1110 case BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
1111 case BMAP_LEFT_CONTIG
:
1112 case BMAP_RIGHT_CONTIG
:
1114 * These cases are all impossible.
1128 * Called by xfs_bmap_add_extent to handle cases converting an unwritten
1129 * allocation to a real allocation or vice versa.
1131 STATIC
int /* error */
1132 xfs_bmap_add_extent_unwritten_real(
1133 xfs_inode_t
*ip
, /* incore inode pointer */
1134 xfs_extnum_t
*idx
, /* extent number to update/insert */
1135 xfs_btree_cur_t
**curp
, /* if *curp is null, not a btree */
1136 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
1137 int *logflagsp
) /* inode logging flags */
1139 xfs_btree_cur_t
*cur
; /* btree cursor */
1140 xfs_bmbt_rec_host_t
*ep
; /* extent entry for idx */
1141 int error
; /* error return value */
1142 int i
; /* temp state */
1143 xfs_ifork_t
*ifp
; /* inode fork pointer */
1144 xfs_fileoff_t new_endoff
; /* end offset of new entry */
1145 xfs_exntst_t newext
; /* new extent state */
1146 xfs_exntst_t oldext
; /* old extent state */
1147 xfs_bmbt_irec_t r
[3]; /* neighbor extent entries */
1148 /* left is 0, right is 1, prev is 2 */
1149 int rval
=0; /* return value (logging flags) */
1150 int state
= 0;/* state bits, accessed thru macros */
1156 * Set up a bunch of variables to make the tests simpler.
1160 ifp
= XFS_IFORK_PTR(ip
, XFS_DATA_FORK
);
1161 ep
= xfs_iext_get_ext(ifp
, *idx
);
1162 xfs_bmbt_get_all(ep
, &PREV
);
1163 newext
= new->br_state
;
1164 oldext
= (newext
== XFS_EXT_UNWRITTEN
) ?
1165 XFS_EXT_NORM
: XFS_EXT_UNWRITTEN
;
1166 ASSERT(PREV
.br_state
== oldext
);
1167 new_endoff
= new->br_startoff
+ new->br_blockcount
;
1168 ASSERT(PREV
.br_startoff
<= new->br_startoff
);
1169 ASSERT(PREV
.br_startoff
+ PREV
.br_blockcount
>= new_endoff
);
1172 * Set flags determining what part of the previous oldext allocation
1173 * extent is being replaced by a newext allocation.
1175 if (PREV
.br_startoff
== new->br_startoff
)
1176 state
|= BMAP_LEFT_FILLING
;
1177 if (PREV
.br_startoff
+ PREV
.br_blockcount
== new_endoff
)
1178 state
|= BMAP_RIGHT_FILLING
;
1181 * Check and set flags if this segment has a left neighbor.
1182 * Don't set contiguous if the combined extent would be too large.
1185 state
|= BMAP_LEFT_VALID
;
1186 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, *idx
- 1), &LEFT
);
1188 if (isnullstartblock(LEFT
.br_startblock
))
1189 state
|= BMAP_LEFT_DELAY
;
1192 if ((state
& BMAP_LEFT_VALID
) && !(state
& BMAP_LEFT_DELAY
) &&
1193 LEFT
.br_startoff
+ LEFT
.br_blockcount
== new->br_startoff
&&
1194 LEFT
.br_startblock
+ LEFT
.br_blockcount
== new->br_startblock
&&
1195 LEFT
.br_state
== newext
&&
1196 LEFT
.br_blockcount
+ new->br_blockcount
<= MAXEXTLEN
)
1197 state
|= BMAP_LEFT_CONTIG
;
1200 * Check and set flags if this segment has a right neighbor.
1201 * Don't set contiguous if the combined extent would be too large.
1202 * Also check for all-three-contiguous being too large.
1204 if (*idx
< ip
->i_df
.if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
) - 1) {
1205 state
|= BMAP_RIGHT_VALID
;
1206 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, *idx
+ 1), &RIGHT
);
1207 if (isnullstartblock(RIGHT
.br_startblock
))
1208 state
|= BMAP_RIGHT_DELAY
;
1211 if ((state
& BMAP_RIGHT_VALID
) && !(state
& BMAP_RIGHT_DELAY
) &&
1212 new_endoff
== RIGHT
.br_startoff
&&
1213 new->br_startblock
+ new->br_blockcount
== RIGHT
.br_startblock
&&
1214 newext
== RIGHT
.br_state
&&
1215 new->br_blockcount
+ RIGHT
.br_blockcount
<= MAXEXTLEN
&&
1216 ((state
& (BMAP_LEFT_CONTIG
| BMAP_LEFT_FILLING
|
1217 BMAP_RIGHT_FILLING
)) !=
1218 (BMAP_LEFT_CONTIG
| BMAP_LEFT_FILLING
|
1219 BMAP_RIGHT_FILLING
) ||
1220 LEFT
.br_blockcount
+ new->br_blockcount
+ RIGHT
.br_blockcount
1222 state
|= BMAP_RIGHT_CONTIG
;
1225 * Switch out based on the FILLING and CONTIG state bits.
1227 switch (state
& (BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
|
1228 BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
)) {
1229 case BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
|
1230 BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
:
1232 * Setting all of a previous oldext extent to newext.
1233 * The left and right neighbors are both contiguous with new.
1237 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
1238 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, *idx
),
1239 LEFT
.br_blockcount
+ PREV
.br_blockcount
+
1240 RIGHT
.br_blockcount
);
1241 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
1243 xfs_iext_remove(ip
, *idx
+ 1, 2, state
);
1244 ip
->i_d
.di_nextents
-= 2;
1246 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1248 rval
= XFS_ILOG_CORE
;
1249 if ((error
= xfs_bmbt_lookup_eq(cur
, RIGHT
.br_startoff
,
1250 RIGHT
.br_startblock
,
1251 RIGHT
.br_blockcount
, &i
)))
1253 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1254 if ((error
= xfs_btree_delete(cur
, &i
)))
1256 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1257 if ((error
= xfs_btree_decrement(cur
, 0, &i
)))
1259 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1260 if ((error
= xfs_btree_delete(cur
, &i
)))
1262 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1263 if ((error
= xfs_btree_decrement(cur
, 0, &i
)))
1265 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1266 if ((error
= xfs_bmbt_update(cur
, LEFT
.br_startoff
,
1268 LEFT
.br_blockcount
+ PREV
.br_blockcount
+
1269 RIGHT
.br_blockcount
, LEFT
.br_state
)))
1274 case BMAP_LEFT_FILLING
| BMAP_RIGHT_FILLING
| BMAP_LEFT_CONTIG
:
1276 * Setting all of a previous oldext extent to newext.
1277 * The left neighbor is contiguous, the right is not.
1281 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
1282 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, *idx
),
1283 LEFT
.br_blockcount
+ PREV
.br_blockcount
);
1284 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
1286 xfs_iext_remove(ip
, *idx
+ 1, 1, state
);
1287 ip
->i_d
.di_nextents
--;
1289 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1291 rval
= XFS_ILOG_CORE
;
1292 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
1293 PREV
.br_startblock
, PREV
.br_blockcount
,
1296 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1297 if ((error
= xfs_btree_delete(cur
, &i
)))
1299 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1300 if ((error
= xfs_btree_decrement(cur
, 0, &i
)))
1302 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1303 if ((error
= xfs_bmbt_update(cur
, LEFT
.br_startoff
,
1305 LEFT
.br_blockcount
+ PREV
.br_blockcount
,
1311 case BMAP_LEFT_FILLING
| BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
:
1313 * Setting all of a previous oldext extent to newext.
1314 * The right neighbor is contiguous, the left is not.
1316 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
1317 xfs_bmbt_set_blockcount(ep
,
1318 PREV
.br_blockcount
+ RIGHT
.br_blockcount
);
1319 xfs_bmbt_set_state(ep
, newext
);
1320 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
1321 xfs_iext_remove(ip
, *idx
+ 1, 1, state
);
1322 ip
->i_d
.di_nextents
--;
1324 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1326 rval
= XFS_ILOG_CORE
;
1327 if ((error
= xfs_bmbt_lookup_eq(cur
, RIGHT
.br_startoff
,
1328 RIGHT
.br_startblock
,
1329 RIGHT
.br_blockcount
, &i
)))
1331 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1332 if ((error
= xfs_btree_delete(cur
, &i
)))
1334 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1335 if ((error
= xfs_btree_decrement(cur
, 0, &i
)))
1337 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1338 if ((error
= xfs_bmbt_update(cur
, new->br_startoff
,
1340 new->br_blockcount
+ RIGHT
.br_blockcount
,
1346 case BMAP_LEFT_FILLING
| BMAP_RIGHT_FILLING
:
1348 * Setting all of a previous oldext extent to newext.
1349 * Neither the left nor right neighbors are contiguous with
1352 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
1353 xfs_bmbt_set_state(ep
, newext
);
1354 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
1357 rval
= XFS_ILOG_DEXT
;
1360 if ((error
= xfs_bmbt_lookup_eq(cur
, new->br_startoff
,
1361 new->br_startblock
, new->br_blockcount
,
1364 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1365 if ((error
= xfs_bmbt_update(cur
, new->br_startoff
,
1366 new->br_startblock
, new->br_blockcount
,
1372 case BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
:
1374 * Setting the first part of a previous oldext extent to newext.
1375 * The left neighbor is contiguous.
1377 trace_xfs_bmap_pre_update(ip
, *idx
- 1, state
, _THIS_IP_
);
1378 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, *idx
- 1),
1379 LEFT
.br_blockcount
+ new->br_blockcount
);
1380 xfs_bmbt_set_startoff(ep
,
1381 PREV
.br_startoff
+ new->br_blockcount
);
1382 trace_xfs_bmap_post_update(ip
, *idx
- 1, state
, _THIS_IP_
);
1384 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
1385 xfs_bmbt_set_startblock(ep
,
1386 new->br_startblock
+ new->br_blockcount
);
1387 xfs_bmbt_set_blockcount(ep
,
1388 PREV
.br_blockcount
- new->br_blockcount
);
1389 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
1394 rval
= XFS_ILOG_DEXT
;
1397 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
1398 PREV
.br_startblock
, PREV
.br_blockcount
,
1401 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1402 if ((error
= xfs_bmbt_update(cur
,
1403 PREV
.br_startoff
+ new->br_blockcount
,
1404 PREV
.br_startblock
+ new->br_blockcount
,
1405 PREV
.br_blockcount
- new->br_blockcount
,
1408 if ((error
= xfs_btree_decrement(cur
, 0, &i
)))
1410 if (xfs_bmbt_update(cur
, LEFT
.br_startoff
,
1412 LEFT
.br_blockcount
+ new->br_blockcount
,
1418 case BMAP_LEFT_FILLING
:
1420 * Setting the first part of a previous oldext extent to newext.
1421 * The left neighbor is not contiguous.
1423 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
1424 ASSERT(ep
&& xfs_bmbt_get_state(ep
) == oldext
);
1425 xfs_bmbt_set_startoff(ep
, new_endoff
);
1426 xfs_bmbt_set_blockcount(ep
,
1427 PREV
.br_blockcount
- new->br_blockcount
);
1428 xfs_bmbt_set_startblock(ep
,
1429 new->br_startblock
+ new->br_blockcount
);
1430 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
1432 xfs_iext_insert(ip
, *idx
, 1, new, state
);
1433 ip
->i_d
.di_nextents
++;
1435 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1437 rval
= XFS_ILOG_CORE
;
1438 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
1439 PREV
.br_startblock
, PREV
.br_blockcount
,
1442 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1443 if ((error
= xfs_bmbt_update(cur
,
1444 PREV
.br_startoff
+ new->br_blockcount
,
1445 PREV
.br_startblock
+ new->br_blockcount
,
1446 PREV
.br_blockcount
- new->br_blockcount
,
1449 cur
->bc_rec
.b
= *new;
1450 if ((error
= xfs_btree_insert(cur
, &i
)))
1452 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1456 case BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
:
1458 * Setting the last part of a previous oldext extent to newext.
1459 * The right neighbor is contiguous with the new allocation.
1461 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
1462 xfs_bmbt_set_blockcount(ep
,
1463 PREV
.br_blockcount
- new->br_blockcount
);
1464 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
1468 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
1469 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp
, *idx
),
1470 new->br_startoff
, new->br_startblock
,
1471 new->br_blockcount
+ RIGHT
.br_blockcount
, newext
);
1472 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
1475 rval
= XFS_ILOG_DEXT
;
1478 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
1480 PREV
.br_blockcount
, &i
)))
1482 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1483 if ((error
= xfs_bmbt_update(cur
, PREV
.br_startoff
,
1485 PREV
.br_blockcount
- new->br_blockcount
,
1488 if ((error
= xfs_btree_increment(cur
, 0, &i
)))
1490 if ((error
= xfs_bmbt_update(cur
, new->br_startoff
,
1492 new->br_blockcount
+ RIGHT
.br_blockcount
,
1498 case BMAP_RIGHT_FILLING
:
1500 * Setting the last part of a previous oldext extent to newext.
1501 * The right neighbor is not contiguous.
1503 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
1504 xfs_bmbt_set_blockcount(ep
,
1505 PREV
.br_blockcount
- new->br_blockcount
);
1506 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
1509 xfs_iext_insert(ip
, *idx
, 1, new, state
);
1511 ip
->i_d
.di_nextents
++;
1513 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1515 rval
= XFS_ILOG_CORE
;
1516 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
1517 PREV
.br_startblock
, PREV
.br_blockcount
,
1520 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1521 if ((error
= xfs_bmbt_update(cur
, PREV
.br_startoff
,
1523 PREV
.br_blockcount
- new->br_blockcount
,
1526 if ((error
= xfs_bmbt_lookup_eq(cur
, new->br_startoff
,
1527 new->br_startblock
, new->br_blockcount
,
1530 XFS_WANT_CORRUPTED_GOTO(i
== 0, done
);
1531 cur
->bc_rec
.b
.br_state
= XFS_EXT_NORM
;
1532 if ((error
= xfs_btree_insert(cur
, &i
)))
1534 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1540 * Setting the middle part of a previous oldext extent to
1541 * newext. Contiguity is impossible here.
1542 * One extent becomes three extents.
1544 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
1545 xfs_bmbt_set_blockcount(ep
,
1546 new->br_startoff
- PREV
.br_startoff
);
1547 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
1550 r
[1].br_startoff
= new_endoff
;
1551 r
[1].br_blockcount
=
1552 PREV
.br_startoff
+ PREV
.br_blockcount
- new_endoff
;
1553 r
[1].br_startblock
= new->br_startblock
+ new->br_blockcount
;
1554 r
[1].br_state
= oldext
;
1557 xfs_iext_insert(ip
, *idx
, 2, &r
[0], state
);
1559 ip
->i_d
.di_nextents
+= 2;
1561 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1563 rval
= XFS_ILOG_CORE
;
1564 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
1565 PREV
.br_startblock
, PREV
.br_blockcount
,
1568 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1569 /* new right extent - oldext */
1570 if ((error
= xfs_bmbt_update(cur
, r
[1].br_startoff
,
1571 r
[1].br_startblock
, r
[1].br_blockcount
,
1574 /* new left extent - oldext */
1575 cur
->bc_rec
.b
= PREV
;
1576 cur
->bc_rec
.b
.br_blockcount
=
1577 new->br_startoff
- PREV
.br_startoff
;
1578 if ((error
= xfs_btree_insert(cur
, &i
)))
1580 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1582 * Reset the cursor to the position of the new extent
1583 * we are about to insert as we can't trust it after
1584 * the previous insert.
1586 if ((error
= xfs_bmbt_lookup_eq(cur
, new->br_startoff
,
1587 new->br_startblock
, new->br_blockcount
,
1590 XFS_WANT_CORRUPTED_GOTO(i
== 0, done
);
1591 /* new middle extent - newext */
1592 cur
->bc_rec
.b
.br_state
= new->br_state
;
1593 if ((error
= xfs_btree_insert(cur
, &i
)))
1595 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1599 case BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
1600 case BMAP_RIGHT_FILLING
| BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
1601 case BMAP_LEFT_FILLING
| BMAP_RIGHT_CONTIG
:
1602 case BMAP_RIGHT_FILLING
| BMAP_LEFT_CONTIG
:
1603 case BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
1604 case BMAP_LEFT_CONTIG
:
1605 case BMAP_RIGHT_CONTIG
:
1607 * These cases are all impossible.
1621 * Called by xfs_bmap_add_extent to handle cases converting a hole
1622 * to a delayed allocation.
1625 STATIC
int /* error */
1626 xfs_bmap_add_extent_hole_delay(
1627 xfs_inode_t
*ip
, /* incore inode pointer */
1628 xfs_extnum_t
*idx
, /* extent number to update/insert */
1629 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
1630 int *logflagsp
) /* inode logging flags */
1632 xfs_ifork_t
*ifp
; /* inode fork pointer */
1633 xfs_bmbt_irec_t left
; /* left neighbor extent entry */
1634 xfs_filblks_t newlen
=0; /* new indirect size */
1635 xfs_filblks_t oldlen
=0; /* old indirect size */
1636 xfs_bmbt_irec_t right
; /* right neighbor extent entry */
1637 int state
; /* state bits, accessed thru macros */
1638 xfs_filblks_t temp
=0; /* temp for indirect calculations */
1640 ifp
= XFS_IFORK_PTR(ip
, XFS_DATA_FORK
);
1642 ASSERT(isnullstartblock(new->br_startblock
));
1645 * Check and set flags if this segment has a left neighbor
1648 state
|= BMAP_LEFT_VALID
;
1649 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, *idx
- 1), &left
);
1651 if (isnullstartblock(left
.br_startblock
))
1652 state
|= BMAP_LEFT_DELAY
;
1656 * Check and set flags if the current (right) segment exists.
1657 * If it doesn't exist, we're converting the hole at end-of-file.
1659 if (*idx
< ip
->i_df
.if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
)) {
1660 state
|= BMAP_RIGHT_VALID
;
1661 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, *idx
), &right
);
1663 if (isnullstartblock(right
.br_startblock
))
1664 state
|= BMAP_RIGHT_DELAY
;
1668 * Set contiguity flags on the left and right neighbors.
1669 * Don't let extents get too large, even if the pieces are contiguous.
1671 if ((state
& BMAP_LEFT_VALID
) && (state
& BMAP_LEFT_DELAY
) &&
1672 left
.br_startoff
+ left
.br_blockcount
== new->br_startoff
&&
1673 left
.br_blockcount
+ new->br_blockcount
<= MAXEXTLEN
)
1674 state
|= BMAP_LEFT_CONTIG
;
1676 if ((state
& BMAP_RIGHT_VALID
) && (state
& BMAP_RIGHT_DELAY
) &&
1677 new->br_startoff
+ new->br_blockcount
== right
.br_startoff
&&
1678 new->br_blockcount
+ right
.br_blockcount
<= MAXEXTLEN
&&
1679 (!(state
& BMAP_LEFT_CONTIG
) ||
1680 (left
.br_blockcount
+ new->br_blockcount
+
1681 right
.br_blockcount
<= MAXEXTLEN
)))
1682 state
|= BMAP_RIGHT_CONTIG
;
1685 * Switch out based on the contiguity flags.
1687 switch (state
& (BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
)) {
1688 case BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
1690 * New allocation is contiguous with delayed allocations
1691 * on the left and on the right.
1692 * Merge all three into a single extent record.
1695 temp
= left
.br_blockcount
+ new->br_blockcount
+
1696 right
.br_blockcount
;
1698 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
1699 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, *idx
), temp
);
1700 oldlen
= startblockval(left
.br_startblock
) +
1701 startblockval(new->br_startblock
) +
1702 startblockval(right
.br_startblock
);
1703 newlen
= xfs_bmap_worst_indlen(ip
, temp
);
1704 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp
, *idx
),
1705 nullstartblock((int)newlen
));
1706 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
1708 xfs_iext_remove(ip
, *idx
+ 1, 1, state
);
1711 case BMAP_LEFT_CONTIG
:
1713 * New allocation is contiguous with a delayed allocation
1715 * Merge the new allocation with the left neighbor.
1718 temp
= left
.br_blockcount
+ new->br_blockcount
;
1720 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
1721 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, *idx
), temp
);
1722 oldlen
= startblockval(left
.br_startblock
) +
1723 startblockval(new->br_startblock
);
1724 newlen
= xfs_bmap_worst_indlen(ip
, temp
);
1725 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp
, *idx
),
1726 nullstartblock((int)newlen
));
1727 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
1730 case BMAP_RIGHT_CONTIG
:
1732 * New allocation is contiguous with a delayed allocation
1734 * Merge the new allocation with the right neighbor.
1736 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
1737 temp
= new->br_blockcount
+ right
.br_blockcount
;
1738 oldlen
= startblockval(new->br_startblock
) +
1739 startblockval(right
.br_startblock
);
1740 newlen
= xfs_bmap_worst_indlen(ip
, temp
);
1741 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp
, *idx
),
1743 nullstartblock((int)newlen
), temp
, right
.br_state
);
1744 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
1749 * New allocation is not contiguous with another
1750 * delayed allocation.
1751 * Insert a new entry.
1753 oldlen
= newlen
= 0;
1754 xfs_iext_insert(ip
, *idx
, 1, new, state
);
1757 if (oldlen
!= newlen
) {
1758 ASSERT(oldlen
> newlen
);
1759 xfs_icsb_modify_counters(ip
->i_mount
, XFS_SBS_FDBLOCKS
,
1760 (int64_t)(oldlen
- newlen
), 0);
1762 * Nothing to do for disk quota accounting here.
1770 * Called by xfs_bmap_add_extent to handle cases converting a hole
1771 * to a real allocation.
1773 STATIC
int /* error */
1774 xfs_bmap_add_extent_hole_real(
1775 xfs_inode_t
*ip
, /* incore inode pointer */
1776 xfs_extnum_t
*idx
, /* extent number to update/insert */
1777 xfs_btree_cur_t
*cur
, /* if null, not a btree */
1778 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
1779 int *logflagsp
, /* inode logging flags */
1780 int whichfork
) /* data or attr fork */
1782 int error
; /* error return value */
1783 int i
; /* temp state */
1784 xfs_ifork_t
*ifp
; /* inode fork pointer */
1785 xfs_bmbt_irec_t left
; /* left neighbor extent entry */
1786 xfs_bmbt_irec_t right
; /* right neighbor extent entry */
1787 int rval
=0; /* return value (logging flags) */
1788 int state
; /* state bits, accessed thru macros */
1790 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
1791 ASSERT(*idx
<= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
));
1794 if (whichfork
== XFS_ATTR_FORK
)
1795 state
|= BMAP_ATTRFORK
;
1798 * Check and set flags if this segment has a left neighbor.
1801 state
|= BMAP_LEFT_VALID
;
1802 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, *idx
- 1), &left
);
1803 if (isnullstartblock(left
.br_startblock
))
1804 state
|= BMAP_LEFT_DELAY
;
1808 * Check and set flags if this segment has a current value.
1809 * Not true if we're inserting into the "hole" at eof.
1811 if (*idx
< ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
)) {
1812 state
|= BMAP_RIGHT_VALID
;
1813 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, *idx
), &right
);
1814 if (isnullstartblock(right
.br_startblock
))
1815 state
|= BMAP_RIGHT_DELAY
;
1819 * We're inserting a real allocation between "left" and "right".
1820 * Set the contiguity flags. Don't let extents get too large.
1822 if ((state
& BMAP_LEFT_VALID
) && !(state
& BMAP_LEFT_DELAY
) &&
1823 left
.br_startoff
+ left
.br_blockcount
== new->br_startoff
&&
1824 left
.br_startblock
+ left
.br_blockcount
== new->br_startblock
&&
1825 left
.br_state
== new->br_state
&&
1826 left
.br_blockcount
+ new->br_blockcount
<= MAXEXTLEN
)
1827 state
|= BMAP_LEFT_CONTIG
;
1829 if ((state
& BMAP_RIGHT_VALID
) && !(state
& BMAP_RIGHT_DELAY
) &&
1830 new->br_startoff
+ new->br_blockcount
== right
.br_startoff
&&
1831 new->br_startblock
+ new->br_blockcount
== right
.br_startblock
&&
1832 new->br_state
== right
.br_state
&&
1833 new->br_blockcount
+ right
.br_blockcount
<= MAXEXTLEN
&&
1834 (!(state
& BMAP_LEFT_CONTIG
) ||
1835 left
.br_blockcount
+ new->br_blockcount
+
1836 right
.br_blockcount
<= MAXEXTLEN
))
1837 state
|= BMAP_RIGHT_CONTIG
;
1841 * Select which case we're in here, and implement it.
1843 switch (state
& (BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
)) {
1844 case BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
1846 * New allocation is contiguous with real allocations on the
1847 * left and on the right.
1848 * Merge all three into a single extent record.
1851 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
1852 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, *idx
),
1853 left
.br_blockcount
+ new->br_blockcount
+
1854 right
.br_blockcount
);
1855 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
1857 xfs_iext_remove(ip
, *idx
+ 1, 1, state
);
1859 XFS_IFORK_NEXT_SET(ip
, whichfork
,
1860 XFS_IFORK_NEXTENTS(ip
, whichfork
) - 1);
1862 rval
= XFS_ILOG_CORE
| xfs_ilog_fext(whichfork
);
1864 rval
= XFS_ILOG_CORE
;
1865 if ((error
= xfs_bmbt_lookup_eq(cur
,
1867 right
.br_startblock
,
1868 right
.br_blockcount
, &i
)))
1870 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1871 if ((error
= xfs_btree_delete(cur
, &i
)))
1873 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1874 if ((error
= xfs_btree_decrement(cur
, 0, &i
)))
1876 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1877 if ((error
= xfs_bmbt_update(cur
, left
.br_startoff
,
1879 left
.br_blockcount
+
1880 new->br_blockcount
+
1881 right
.br_blockcount
,
1887 case BMAP_LEFT_CONTIG
:
1889 * New allocation is contiguous with a real allocation
1891 * Merge the new allocation with the left neighbor.
1894 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
1895 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, *idx
),
1896 left
.br_blockcount
+ new->br_blockcount
);
1897 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
1900 rval
= xfs_ilog_fext(whichfork
);
1903 if ((error
= xfs_bmbt_lookup_eq(cur
,
1906 left
.br_blockcount
, &i
)))
1908 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1909 if ((error
= xfs_bmbt_update(cur
, left
.br_startoff
,
1911 left
.br_blockcount
+
1918 case BMAP_RIGHT_CONTIG
:
1920 * New allocation is contiguous with a real allocation
1922 * Merge the new allocation with the right neighbor.
1924 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
1925 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp
, *idx
),
1926 new->br_startoff
, new->br_startblock
,
1927 new->br_blockcount
+ right
.br_blockcount
,
1929 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
1932 rval
= xfs_ilog_fext(whichfork
);
1935 if ((error
= xfs_bmbt_lookup_eq(cur
,
1937 right
.br_startblock
,
1938 right
.br_blockcount
, &i
)))
1940 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1941 if ((error
= xfs_bmbt_update(cur
, new->br_startoff
,
1943 new->br_blockcount
+
1944 right
.br_blockcount
,
1952 * New allocation is not contiguous with another
1954 * Insert a new entry.
1956 xfs_iext_insert(ip
, *idx
, 1, new, state
);
1957 XFS_IFORK_NEXT_SET(ip
, whichfork
,
1958 XFS_IFORK_NEXTENTS(ip
, whichfork
) + 1);
1960 rval
= XFS_ILOG_CORE
| xfs_ilog_fext(whichfork
);
1962 rval
= XFS_ILOG_CORE
;
1963 if ((error
= xfs_bmbt_lookup_eq(cur
,
1966 new->br_blockcount
, &i
)))
1968 XFS_WANT_CORRUPTED_GOTO(i
== 0, done
);
1969 cur
->bc_rec
.b
.br_state
= new->br_state
;
1970 if ((error
= xfs_btree_insert(cur
, &i
)))
1972 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1982 * Adjust the size of the new extent based on di_extsize and rt extsize.
1985 xfs_bmap_extsize_align(
1987 xfs_bmbt_irec_t
*gotp
, /* next extent pointer */
1988 xfs_bmbt_irec_t
*prevp
, /* previous extent pointer */
1989 xfs_extlen_t extsz
, /* align to this extent size */
1990 int rt
, /* is this a realtime inode? */
1991 int eof
, /* is extent at end-of-file? */
1992 int delay
, /* creating delalloc extent? */
1993 int convert
, /* overwriting unwritten extent? */
1994 xfs_fileoff_t
*offp
, /* in/out: aligned offset */
1995 xfs_extlen_t
*lenp
) /* in/out: aligned length */
1997 xfs_fileoff_t orig_off
; /* original offset */
1998 xfs_extlen_t orig_alen
; /* original length */
1999 xfs_fileoff_t orig_end
; /* original off+len */
2000 xfs_fileoff_t nexto
; /* next file offset */
2001 xfs_fileoff_t prevo
; /* previous file offset */
2002 xfs_fileoff_t align_off
; /* temp for offset */
2003 xfs_extlen_t align_alen
; /* temp for length */
2004 xfs_extlen_t temp
; /* temp for calculations */
2009 orig_off
= align_off
= *offp
;
2010 orig_alen
= align_alen
= *lenp
;
2011 orig_end
= orig_off
+ orig_alen
;
2014 * If this request overlaps an existing extent, then don't
2015 * attempt to perform any additional alignment.
2017 if (!delay
&& !eof
&&
2018 (orig_off
>= gotp
->br_startoff
) &&
2019 (orig_end
<= gotp
->br_startoff
+ gotp
->br_blockcount
)) {
2024 * If the file offset is unaligned vs. the extent size
2025 * we need to align it. This will be possible unless
2026 * the file was previously written with a kernel that didn't
2027 * perform this alignment, or if a truncate shot us in the
2030 temp
= do_mod(orig_off
, extsz
);
2036 * Same adjustment for the end of the requested area.
2038 if ((temp
= (align_alen
% extsz
))) {
2039 align_alen
+= extsz
- temp
;
2042 * If the previous block overlaps with this proposed allocation
2043 * then move the start forward without adjusting the length.
2045 if (prevp
->br_startoff
!= NULLFILEOFF
) {
2046 if (prevp
->br_startblock
== HOLESTARTBLOCK
)
2047 prevo
= prevp
->br_startoff
;
2049 prevo
= prevp
->br_startoff
+ prevp
->br_blockcount
;
2052 if (align_off
!= orig_off
&& align_off
< prevo
)
2055 * If the next block overlaps with this proposed allocation
2056 * then move the start back without adjusting the length,
2057 * but not before offset 0.
2058 * This may of course make the start overlap previous block,
2059 * and if we hit the offset 0 limit then the next block
2060 * can still overlap too.
2062 if (!eof
&& gotp
->br_startoff
!= NULLFILEOFF
) {
2063 if ((delay
&& gotp
->br_startblock
== HOLESTARTBLOCK
) ||
2064 (!delay
&& gotp
->br_startblock
== DELAYSTARTBLOCK
))
2065 nexto
= gotp
->br_startoff
+ gotp
->br_blockcount
;
2067 nexto
= gotp
->br_startoff
;
2069 nexto
= NULLFILEOFF
;
2071 align_off
+ align_alen
!= orig_end
&&
2072 align_off
+ align_alen
> nexto
)
2073 align_off
= nexto
> align_alen
? nexto
- align_alen
: 0;
2075 * If we're now overlapping the next or previous extent that
2076 * means we can't fit an extsz piece in this hole. Just move
2077 * the start forward to the first valid spot and set
2078 * the length so we hit the end.
2080 if (align_off
!= orig_off
&& align_off
< prevo
)
2082 if (align_off
+ align_alen
!= orig_end
&&
2083 align_off
+ align_alen
> nexto
&&
2084 nexto
!= NULLFILEOFF
) {
2085 ASSERT(nexto
> prevo
);
2086 align_alen
= nexto
- align_off
;
2090 * If realtime, and the result isn't a multiple of the realtime
2091 * extent size we need to remove blocks until it is.
2093 if (rt
&& (temp
= (align_alen
% mp
->m_sb
.sb_rextsize
))) {
2095 * We're not covering the original request, or
2096 * we won't be able to once we fix the length.
2098 if (orig_off
< align_off
||
2099 orig_end
> align_off
+ align_alen
||
2100 align_alen
- temp
< orig_alen
)
2101 return XFS_ERROR(EINVAL
);
2103 * Try to fix it by moving the start up.
2105 if (align_off
+ temp
<= orig_off
) {
2110 * Try to fix it by moving the end in.
2112 else if (align_off
+ align_alen
- temp
>= orig_end
)
2115 * Set the start to the minimum then trim the length.
2118 align_alen
-= orig_off
- align_off
;
2119 align_off
= orig_off
;
2120 align_alen
-= align_alen
% mp
->m_sb
.sb_rextsize
;
2123 * Result doesn't cover the request, fail it.
2125 if (orig_off
< align_off
|| orig_end
> align_off
+ align_alen
)
2126 return XFS_ERROR(EINVAL
);
2128 ASSERT(orig_off
>= align_off
);
2129 ASSERT(orig_end
<= align_off
+ align_alen
);
2133 if (!eof
&& gotp
->br_startoff
!= NULLFILEOFF
)
2134 ASSERT(align_off
+ align_alen
<= gotp
->br_startoff
);
2135 if (prevp
->br_startoff
!= NULLFILEOFF
)
2136 ASSERT(align_off
>= prevp
->br_startoff
+ prevp
->br_blockcount
);
2144 #define XFS_ALLOC_GAP_UNITS 4
2148 xfs_bmalloca_t
*ap
) /* bmap alloc argument struct */
2150 xfs_fsblock_t adjust
; /* adjustment to block numbers */
2151 xfs_agnumber_t fb_agno
; /* ag number of ap->firstblock */
2152 xfs_mount_t
*mp
; /* mount point structure */
2153 int nullfb
; /* true if ap->firstblock isn't set */
2154 int rt
; /* true if inode is realtime */
2156 #define ISVALID(x,y) \
2158 (x) < mp->m_sb.sb_rblocks : \
2159 XFS_FSB_TO_AGNO(mp, x) == XFS_FSB_TO_AGNO(mp, y) && \
2160 XFS_FSB_TO_AGNO(mp, x) < mp->m_sb.sb_agcount && \
2161 XFS_FSB_TO_AGBNO(mp, x) < mp->m_sb.sb_agblocks)
2163 mp
= ap
->ip
->i_mount
;
2164 nullfb
= ap
->firstblock
== NULLFSBLOCK
;
2165 rt
= XFS_IS_REALTIME_INODE(ap
->ip
) && ap
->userdata
;
2166 fb_agno
= nullfb
? NULLAGNUMBER
: XFS_FSB_TO_AGNO(mp
, ap
->firstblock
);
2168 * If allocating at eof, and there's a previous real block,
2169 * try to use its last block as our starting point.
2171 if (ap
->eof
&& ap
->prevp
->br_startoff
!= NULLFILEOFF
&&
2172 !isnullstartblock(ap
->prevp
->br_startblock
) &&
2173 ISVALID(ap
->prevp
->br_startblock
+ ap
->prevp
->br_blockcount
,
2174 ap
->prevp
->br_startblock
)) {
2175 ap
->rval
= ap
->prevp
->br_startblock
+ ap
->prevp
->br_blockcount
;
2177 * Adjust for the gap between prevp and us.
2180 (ap
->prevp
->br_startoff
+ ap
->prevp
->br_blockcount
);
2182 ISVALID(ap
->rval
+ adjust
, ap
->prevp
->br_startblock
))
2186 * If not at eof, then compare the two neighbor blocks.
2187 * Figure out whether either one gives us a good starting point,
2188 * and pick the better one.
2190 else if (!ap
->eof
) {
2191 xfs_fsblock_t gotbno
; /* right side block number */
2192 xfs_fsblock_t gotdiff
=0; /* right side difference */
2193 xfs_fsblock_t prevbno
; /* left side block number */
2194 xfs_fsblock_t prevdiff
=0; /* left side difference */
2197 * If there's a previous (left) block, select a requested
2198 * start block based on it.
2200 if (ap
->prevp
->br_startoff
!= NULLFILEOFF
&&
2201 !isnullstartblock(ap
->prevp
->br_startblock
) &&
2202 (prevbno
= ap
->prevp
->br_startblock
+
2203 ap
->prevp
->br_blockcount
) &&
2204 ISVALID(prevbno
, ap
->prevp
->br_startblock
)) {
2206 * Calculate gap to end of previous block.
2208 adjust
= prevdiff
= ap
->off
-
2209 (ap
->prevp
->br_startoff
+
2210 ap
->prevp
->br_blockcount
);
2212 * Figure the startblock based on the previous block's
2213 * end and the gap size.
2215 * If the gap is large relative to the piece we're
2216 * allocating, or using it gives us an invalid block
2217 * number, then just use the end of the previous block.
2219 if (prevdiff
<= XFS_ALLOC_GAP_UNITS
* ap
->alen
&&
2220 ISVALID(prevbno
+ prevdiff
,
2221 ap
->prevp
->br_startblock
))
2226 * If the firstblock forbids it, can't use it,
2229 if (!rt
&& !nullfb
&&
2230 XFS_FSB_TO_AGNO(mp
, prevbno
) != fb_agno
)
2231 prevbno
= NULLFSBLOCK
;
2234 * No previous block or can't follow it, just default.
2237 prevbno
= NULLFSBLOCK
;
2239 * If there's a following (right) block, select a requested
2240 * start block based on it.
2242 if (!isnullstartblock(ap
->gotp
->br_startblock
)) {
2244 * Calculate gap to start of next block.
2246 adjust
= gotdiff
= ap
->gotp
->br_startoff
- ap
->off
;
2248 * Figure the startblock based on the next block's
2249 * start and the gap size.
2251 gotbno
= ap
->gotp
->br_startblock
;
2254 * If the gap is large relative to the piece we're
2255 * allocating, or using it gives us an invalid block
2256 * number, then just use the start of the next block
2257 * offset by our length.
2259 if (gotdiff
<= XFS_ALLOC_GAP_UNITS
* ap
->alen
&&
2260 ISVALID(gotbno
- gotdiff
, gotbno
))
2262 else if (ISVALID(gotbno
- ap
->alen
, gotbno
)) {
2264 gotdiff
+= adjust
- ap
->alen
;
2268 * If the firstblock forbids it, can't use it,
2271 if (!rt
&& !nullfb
&&
2272 XFS_FSB_TO_AGNO(mp
, gotbno
) != fb_agno
)
2273 gotbno
= NULLFSBLOCK
;
2276 * No next block, just default.
2279 gotbno
= NULLFSBLOCK
;
2281 * If both valid, pick the better one, else the only good
2282 * one, else ap->rval is already set (to 0 or the inode block).
2284 if (prevbno
!= NULLFSBLOCK
&& gotbno
!= NULLFSBLOCK
)
2285 ap
->rval
= prevdiff
<= gotdiff
? prevbno
: gotbno
;
2286 else if (prevbno
!= NULLFSBLOCK
)
2288 else if (gotbno
!= NULLFSBLOCK
)
2296 xfs_bmalloca_t
*ap
) /* bmap alloc argument struct */
2298 xfs_alloctype_t atype
= 0; /* type for allocation routines */
2299 int error
; /* error return value */
2300 xfs_mount_t
*mp
; /* mount point structure */
2301 xfs_extlen_t prod
= 0; /* product factor for allocators */
2302 xfs_extlen_t ralen
= 0; /* realtime allocation length */
2303 xfs_extlen_t align
; /* minimum allocation alignment */
2306 mp
= ap
->ip
->i_mount
;
2307 align
= xfs_get_extsz_hint(ap
->ip
);
2308 prod
= align
/ mp
->m_sb
.sb_rextsize
;
2309 error
= xfs_bmap_extsize_align(mp
, ap
->gotp
, ap
->prevp
,
2310 align
, 1, ap
->eof
, 0,
2311 ap
->conv
, &ap
->off
, &ap
->alen
);
2315 ASSERT(ap
->alen
% mp
->m_sb
.sb_rextsize
== 0);
2318 * If the offset & length are not perfectly aligned
2319 * then kill prod, it will just get us in trouble.
2321 if (do_mod(ap
->off
, align
) || ap
->alen
% align
)
2324 * Set ralen to be the actual requested length in rtextents.
2326 ralen
= ap
->alen
/ mp
->m_sb
.sb_rextsize
;
2328 * If the old value was close enough to MAXEXTLEN that
2329 * we rounded up to it, cut it back so it's valid again.
2330 * Note that if it's a really large request (bigger than
2331 * MAXEXTLEN), we don't hear about that number, and can't
2332 * adjust the starting point to match it.
2334 if (ralen
* mp
->m_sb
.sb_rextsize
>= MAXEXTLEN
)
2335 ralen
= MAXEXTLEN
/ mp
->m_sb
.sb_rextsize
;
2338 * Lock out other modifications to the RT bitmap inode.
2340 xfs_ilock(mp
->m_rbmip
, XFS_ILOCK_EXCL
);
2341 xfs_trans_ijoin_ref(ap
->tp
, mp
->m_rbmip
, XFS_ILOCK_EXCL
);
2344 * If it's an allocation to an empty file at offset 0,
2345 * pick an extent that will space things out in the rt area.
2347 if (ap
->eof
&& ap
->off
== 0) {
2348 xfs_rtblock_t
uninitialized_var(rtx
); /* realtime extent no */
2350 error
= xfs_rtpick_extent(mp
, ap
->tp
, ralen
, &rtx
);
2353 ap
->rval
= rtx
* mp
->m_sb
.sb_rextsize
;
2358 xfs_bmap_adjacent(ap
);
2361 * Realtime allocation, done through xfs_rtallocate_extent.
2363 atype
= ap
->rval
== 0 ? XFS_ALLOCTYPE_ANY_AG
: XFS_ALLOCTYPE_NEAR_BNO
;
2364 do_div(ap
->rval
, mp
->m_sb
.sb_rextsize
);
2367 if ((error
= xfs_rtallocate_extent(ap
->tp
, ap
->rval
, 1, ap
->alen
,
2368 &ralen
, atype
, ap
->wasdel
, prod
, &rtb
)))
2370 if (rtb
== NULLFSBLOCK
&& prod
> 1 &&
2371 (error
= xfs_rtallocate_extent(ap
->tp
, ap
->rval
, 1,
2372 ap
->alen
, &ralen
, atype
,
2373 ap
->wasdel
, 1, &rtb
)))
2376 if (ap
->rval
!= NULLFSBLOCK
) {
2377 ap
->rval
*= mp
->m_sb
.sb_rextsize
;
2378 ralen
*= mp
->m_sb
.sb_rextsize
;
2380 ap
->ip
->i_d
.di_nblocks
+= ralen
;
2381 xfs_trans_log_inode(ap
->tp
, ap
->ip
, XFS_ILOG_CORE
);
2383 ap
->ip
->i_delayed_blks
-= ralen
;
2385 * Adjust the disk quota also. This was reserved
2388 xfs_trans_mod_dquot_byino(ap
->tp
, ap
->ip
,
2389 ap
->wasdel
? XFS_TRANS_DQ_DELRTBCOUNT
:
2390 XFS_TRANS_DQ_RTBCOUNT
, (long) ralen
);
2398 xfs_bmap_btalloc_nullfb(
2399 struct xfs_bmalloca
*ap
,
2400 struct xfs_alloc_arg
*args
,
2403 struct xfs_mount
*mp
= ap
->ip
->i_mount
;
2404 struct xfs_perag
*pag
;
2405 xfs_agnumber_t ag
, startag
;
2409 if (ap
->userdata
&& xfs_inode_is_filestream(ap
->ip
))
2410 args
->type
= XFS_ALLOCTYPE_NEAR_BNO
;
2412 args
->type
= XFS_ALLOCTYPE_START_BNO
;
2413 args
->total
= ap
->total
;
2416 * Search for an allocation group with a single extent large enough
2417 * for the request. If one isn't found, then adjust the minimum
2418 * allocation size to the largest space found.
2420 startag
= ag
= XFS_FSB_TO_AGNO(mp
, args
->fsbno
);
2421 if (startag
== NULLAGNUMBER
)
2424 pag
= xfs_perag_get(mp
, ag
);
2425 while (*blen
< args
->maxlen
) {
2426 if (!pag
->pagf_init
) {
2427 error
= xfs_alloc_pagf_init(mp
, args
->tp
, ag
,
2428 XFS_ALLOC_FLAG_TRYLOCK
);
2436 * See xfs_alloc_fix_freelist...
2438 if (pag
->pagf_init
) {
2439 xfs_extlen_t longest
;
2440 longest
= xfs_alloc_longest_free_extent(mp
, pag
);
2441 if (*blen
< longest
)
2446 if (xfs_inode_is_filestream(ap
->ip
)) {
2447 if (*blen
>= args
->maxlen
)
2452 * If startag is an invalid AG, we've
2453 * come here once before and
2454 * xfs_filestream_new_ag picked the
2455 * best currently available.
2457 * Don't continue looping, since we
2458 * could loop forever.
2460 if (startag
== NULLAGNUMBER
)
2463 error
= xfs_filestream_new_ag(ap
, &ag
);
2468 /* loop again to set 'blen'*/
2469 startag
= NULLAGNUMBER
;
2470 pag
= xfs_perag_get(mp
, ag
);
2474 if (++ag
== mp
->m_sb
.sb_agcount
)
2479 pag
= xfs_perag_get(mp
, ag
);
2484 * Since the above loop did a BUF_TRYLOCK, it is
2485 * possible that there is space for this request.
2487 if (notinit
|| *blen
< ap
->minlen
)
2488 args
->minlen
= ap
->minlen
;
2490 * If the best seen length is less than the request
2491 * length, use the best as the minimum.
2493 else if (*blen
< args
->maxlen
)
2494 args
->minlen
= *blen
;
2496 * Otherwise we've seen an extent as big as maxlen,
2497 * use that as the minimum.
2500 args
->minlen
= args
->maxlen
;
2503 * set the failure fallback case to look in the selected
2504 * AG as the stream may have moved.
2506 if (xfs_inode_is_filestream(ap
->ip
))
2507 ap
->rval
= args
->fsbno
= XFS_AGB_TO_FSB(mp
, ag
, 0);
2514 xfs_bmalloca_t
*ap
) /* bmap alloc argument struct */
2516 xfs_mount_t
*mp
; /* mount point structure */
2517 xfs_alloctype_t atype
= 0; /* type for allocation routines */
2518 xfs_extlen_t align
; /* minimum allocation alignment */
2519 xfs_agnumber_t fb_agno
; /* ag number of ap->firstblock */
2521 xfs_alloc_arg_t args
;
2523 xfs_extlen_t nextminlen
= 0;
2524 int nullfb
; /* true if ap->firstblock isn't set */
2529 mp
= ap
->ip
->i_mount
;
2530 align
= ap
->userdata
? xfs_get_extsz_hint(ap
->ip
) : 0;
2531 if (unlikely(align
)) {
2532 error
= xfs_bmap_extsize_align(mp
, ap
->gotp
, ap
->prevp
,
2533 align
, 0, ap
->eof
, 0, ap
->conv
,
2534 &ap
->off
, &ap
->alen
);
2538 nullfb
= ap
->firstblock
== NULLFSBLOCK
;
2539 fb_agno
= nullfb
? NULLAGNUMBER
: XFS_FSB_TO_AGNO(mp
, ap
->firstblock
);
2541 if (ap
->userdata
&& xfs_inode_is_filestream(ap
->ip
)) {
2542 ag
= xfs_filestream_lookup_ag(ap
->ip
);
2543 ag
= (ag
!= NULLAGNUMBER
) ? ag
: 0;
2544 ap
->rval
= XFS_AGB_TO_FSB(mp
, ag
, 0);
2546 ap
->rval
= XFS_INO_TO_FSB(mp
, ap
->ip
->i_ino
);
2549 ap
->rval
= ap
->firstblock
;
2551 xfs_bmap_adjacent(ap
);
2554 * If allowed, use ap->rval; otherwise must use firstblock since
2555 * it's in the right allocation group.
2557 if (nullfb
|| XFS_FSB_TO_AGNO(mp
, ap
->rval
) == fb_agno
)
2560 ap
->rval
= ap
->firstblock
;
2562 * Normal allocation, done through xfs_alloc_vextent.
2564 tryagain
= isaligned
= 0;
2567 args
.fsbno
= ap
->rval
;
2569 /* Trim the allocation back to the maximum an AG can fit. */
2570 args
.maxlen
= MIN(ap
->alen
, XFS_ALLOC_AG_MAX_USABLE(mp
));
2571 args
.firstblock
= ap
->firstblock
;
2574 error
= xfs_bmap_btalloc_nullfb(ap
, &args
, &blen
);
2577 } else if (ap
->low
) {
2578 if (xfs_inode_is_filestream(ap
->ip
))
2579 args
.type
= XFS_ALLOCTYPE_FIRST_AG
;
2581 args
.type
= XFS_ALLOCTYPE_START_BNO
;
2582 args
.total
= args
.minlen
= ap
->minlen
;
2584 args
.type
= XFS_ALLOCTYPE_NEAR_BNO
;
2585 args
.total
= ap
->total
;
2586 args
.minlen
= ap
->minlen
;
2588 /* apply extent size hints if obtained earlier */
2589 if (unlikely(align
)) {
2591 if ((args
.mod
= (xfs_extlen_t
)do_mod(ap
->off
, args
.prod
)))
2592 args
.mod
= (xfs_extlen_t
)(args
.prod
- args
.mod
);
2593 } else if (mp
->m_sb
.sb_blocksize
>= PAGE_CACHE_SIZE
) {
2597 args
.prod
= PAGE_CACHE_SIZE
>> mp
->m_sb
.sb_blocklog
;
2598 if ((args
.mod
= (xfs_extlen_t
)(do_mod(ap
->off
, args
.prod
))))
2599 args
.mod
= (xfs_extlen_t
)(args
.prod
- args
.mod
);
2602 * If we are not low on available data blocks, and the
2603 * underlying logical volume manager is a stripe, and
2604 * the file offset is zero then try to allocate data
2605 * blocks on stripe unit boundary.
2606 * NOTE: ap->aeof is only set if the allocation length
2607 * is >= the stripe unit and the allocation offset is
2608 * at the end of file.
2610 if (!ap
->low
&& ap
->aeof
) {
2612 args
.alignment
= mp
->m_dalign
;
2616 * Adjust for alignment
2618 if (blen
> args
.alignment
&& blen
<= args
.maxlen
)
2619 args
.minlen
= blen
- args
.alignment
;
2620 args
.minalignslop
= 0;
2623 * First try an exact bno allocation.
2624 * If it fails then do a near or start bno
2625 * allocation with alignment turned on.
2629 args
.type
= XFS_ALLOCTYPE_THIS_BNO
;
2632 * Compute the minlen+alignment for the
2633 * next case. Set slop so that the value
2634 * of minlen+alignment+slop doesn't go up
2635 * between the calls.
2637 if (blen
> mp
->m_dalign
&& blen
<= args
.maxlen
)
2638 nextminlen
= blen
- mp
->m_dalign
;
2640 nextminlen
= args
.minlen
;
2641 if (nextminlen
+ mp
->m_dalign
> args
.minlen
+ 1)
2643 nextminlen
+ mp
->m_dalign
-
2646 args
.minalignslop
= 0;
2650 args
.minalignslop
= 0;
2652 args
.minleft
= ap
->minleft
;
2653 args
.wasdel
= ap
->wasdel
;
2655 args
.userdata
= ap
->userdata
;
2656 if ((error
= xfs_alloc_vextent(&args
)))
2658 if (tryagain
&& args
.fsbno
== NULLFSBLOCK
) {
2660 * Exact allocation failed. Now try with alignment
2664 args
.fsbno
= ap
->rval
;
2665 args
.alignment
= mp
->m_dalign
;
2666 args
.minlen
= nextminlen
;
2667 args
.minalignslop
= 0;
2669 if ((error
= xfs_alloc_vextent(&args
)))
2672 if (isaligned
&& args
.fsbno
== NULLFSBLOCK
) {
2674 * allocation failed, so turn off alignment and
2678 args
.fsbno
= ap
->rval
;
2680 if ((error
= xfs_alloc_vextent(&args
)))
2683 if (args
.fsbno
== NULLFSBLOCK
&& nullfb
&&
2684 args
.minlen
> ap
->minlen
) {
2685 args
.minlen
= ap
->minlen
;
2686 args
.type
= XFS_ALLOCTYPE_START_BNO
;
2687 args
.fsbno
= ap
->rval
;
2688 if ((error
= xfs_alloc_vextent(&args
)))
2691 if (args
.fsbno
== NULLFSBLOCK
&& nullfb
) {
2693 args
.type
= XFS_ALLOCTYPE_FIRST_AG
;
2694 args
.total
= ap
->minlen
;
2696 if ((error
= xfs_alloc_vextent(&args
)))
2700 if (args
.fsbno
!= NULLFSBLOCK
) {
2701 ap
->firstblock
= ap
->rval
= args
.fsbno
;
2702 ASSERT(nullfb
|| fb_agno
== args
.agno
||
2703 (ap
->low
&& fb_agno
< args
.agno
));
2704 ap
->alen
= args
.len
;
2705 ap
->ip
->i_d
.di_nblocks
+= args
.len
;
2706 xfs_trans_log_inode(ap
->tp
, ap
->ip
, XFS_ILOG_CORE
);
2708 ap
->ip
->i_delayed_blks
-= args
.len
;
2710 * Adjust the disk quota also. This was reserved
2713 xfs_trans_mod_dquot_byino(ap
->tp
, ap
->ip
,
2714 ap
->wasdel
? XFS_TRANS_DQ_DELBCOUNT
:
2715 XFS_TRANS_DQ_BCOUNT
,
2718 ap
->rval
= NULLFSBLOCK
;
2725 * xfs_bmap_alloc is called by xfs_bmapi to allocate an extent for a file.
2726 * It figures out where to ask the underlying allocator to put the new extent.
2730 xfs_bmalloca_t
*ap
) /* bmap alloc argument struct */
2732 if (XFS_IS_REALTIME_INODE(ap
->ip
) && ap
->userdata
)
2733 return xfs_bmap_rtalloc(ap
);
2734 return xfs_bmap_btalloc(ap
);
2738 * Transform a btree format file with only one leaf node, where the
2739 * extents list will fit in the inode, into an extents format file.
2740 * Since the file extents are already in-core, all we have to do is
2741 * give up the space for the btree root and pitch the leaf block.
2743 STATIC
int /* error */
2744 xfs_bmap_btree_to_extents(
2745 xfs_trans_t
*tp
, /* transaction pointer */
2746 xfs_inode_t
*ip
, /* incore inode pointer */
2747 xfs_btree_cur_t
*cur
, /* btree cursor */
2748 int *logflagsp
, /* inode logging flags */
2749 int whichfork
) /* data or attr fork */
2752 struct xfs_btree_block
*cblock
;/* child btree block */
2753 xfs_fsblock_t cbno
; /* child block number */
2754 xfs_buf_t
*cbp
; /* child block's buffer */
2755 int error
; /* error return value */
2756 xfs_ifork_t
*ifp
; /* inode fork data */
2757 xfs_mount_t
*mp
; /* mount point structure */
2758 __be64
*pp
; /* ptr to block address */
2759 struct xfs_btree_block
*rblock
;/* root btree block */
2762 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
2763 ASSERT(ifp
->if_flags
& XFS_IFEXTENTS
);
2764 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_BTREE
);
2765 rblock
= ifp
->if_broot
;
2766 ASSERT(be16_to_cpu(rblock
->bb_level
) == 1);
2767 ASSERT(be16_to_cpu(rblock
->bb_numrecs
) == 1);
2768 ASSERT(xfs_bmbt_maxrecs(mp
, ifp
->if_broot_bytes
, 0) == 1);
2769 pp
= XFS_BMAP_BROOT_PTR_ADDR(mp
, rblock
, 1, ifp
->if_broot_bytes
);
2770 cbno
= be64_to_cpu(*pp
);
2773 if ((error
= xfs_btree_check_lptr(cur
, cbno
, 1)))
2776 if ((error
= xfs_btree_read_bufl(mp
, tp
, cbno
, 0, &cbp
,
2777 XFS_BMAP_BTREE_REF
)))
2779 cblock
= XFS_BUF_TO_BLOCK(cbp
);
2780 if ((error
= xfs_btree_check_block(cur
, cblock
, 0, cbp
)))
2782 xfs_bmap_add_free(cbno
, 1, cur
->bc_private
.b
.flist
, mp
);
2783 ip
->i_d
.di_nblocks
--;
2784 xfs_trans_mod_dquot_byino(tp
, ip
, XFS_TRANS_DQ_BCOUNT
, -1L);
2785 xfs_trans_binval(tp
, cbp
);
2786 if (cur
->bc_bufs
[0] == cbp
)
2787 cur
->bc_bufs
[0] = NULL
;
2788 xfs_iroot_realloc(ip
, -1, whichfork
);
2789 ASSERT(ifp
->if_broot
== NULL
);
2790 ASSERT((ifp
->if_flags
& XFS_IFBROOT
) == 0);
2791 XFS_IFORK_FMT_SET(ip
, whichfork
, XFS_DINODE_FMT_EXTENTS
);
2792 *logflagsp
= XFS_ILOG_CORE
| xfs_ilog_fext(whichfork
);
2797 * Called by xfs_bmapi to update file extent records and the btree
2798 * after removing space (or undoing a delayed allocation).
2800 STATIC
int /* error */
2801 xfs_bmap_del_extent(
2802 xfs_inode_t
*ip
, /* incore inode pointer */
2803 xfs_trans_t
*tp
, /* current transaction pointer */
2804 xfs_extnum_t
*idx
, /* extent number to update/delete */
2805 xfs_bmap_free_t
*flist
, /* list of extents to be freed */
2806 xfs_btree_cur_t
*cur
, /* if null, not a btree */
2807 xfs_bmbt_irec_t
*del
, /* data to remove from extents */
2808 int *logflagsp
, /* inode logging flags */
2809 int whichfork
) /* data or attr fork */
2811 xfs_filblks_t da_new
; /* new delay-alloc indirect blocks */
2812 xfs_filblks_t da_old
; /* old delay-alloc indirect blocks */
2813 xfs_fsblock_t del_endblock
=0; /* first block past del */
2814 xfs_fileoff_t del_endoff
; /* first offset past del */
2815 int delay
; /* current block is delayed allocated */
2816 int do_fx
; /* free extent at end of routine */
2817 xfs_bmbt_rec_host_t
*ep
; /* current extent entry pointer */
2818 int error
; /* error return value */
2819 int flags
; /* inode logging flags */
2820 xfs_bmbt_irec_t got
; /* current extent entry */
2821 xfs_fileoff_t got_endoff
; /* first offset past got */
2822 int i
; /* temp state */
2823 xfs_ifork_t
*ifp
; /* inode fork pointer */
2824 xfs_mount_t
*mp
; /* mount structure */
2825 xfs_filblks_t nblks
; /* quota/sb block count */
2826 xfs_bmbt_irec_t
new; /* new record to be inserted */
2828 uint qfield
; /* quota field to update */
2829 xfs_filblks_t temp
; /* for indirect length calculations */
2830 xfs_filblks_t temp2
; /* for indirect length calculations */
2833 XFS_STATS_INC(xs_del_exlist
);
2835 if (whichfork
== XFS_ATTR_FORK
)
2836 state
|= BMAP_ATTRFORK
;
2839 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
2840 ASSERT((*idx
>= 0) && (*idx
< ifp
->if_bytes
/
2841 (uint
)sizeof(xfs_bmbt_rec_t
)));
2842 ASSERT(del
->br_blockcount
> 0);
2843 ep
= xfs_iext_get_ext(ifp
, *idx
);
2844 xfs_bmbt_get_all(ep
, &got
);
2845 ASSERT(got
.br_startoff
<= del
->br_startoff
);
2846 del_endoff
= del
->br_startoff
+ del
->br_blockcount
;
2847 got_endoff
= got
.br_startoff
+ got
.br_blockcount
;
2848 ASSERT(got_endoff
>= del_endoff
);
2849 delay
= isnullstartblock(got
.br_startblock
);
2850 ASSERT(isnullstartblock(del
->br_startblock
) == delay
);
2855 * If deleting a real allocation, must free up the disk space.
2858 flags
= XFS_ILOG_CORE
;
2860 * Realtime allocation. Free it and record di_nblocks update.
2862 if (whichfork
== XFS_DATA_FORK
&& XFS_IS_REALTIME_INODE(ip
)) {
2866 ASSERT(do_mod(del
->br_blockcount
,
2867 mp
->m_sb
.sb_rextsize
) == 0);
2868 ASSERT(do_mod(del
->br_startblock
,
2869 mp
->m_sb
.sb_rextsize
) == 0);
2870 bno
= del
->br_startblock
;
2871 len
= del
->br_blockcount
;
2872 do_div(bno
, mp
->m_sb
.sb_rextsize
);
2873 do_div(len
, mp
->m_sb
.sb_rextsize
);
2874 if ((error
= xfs_rtfree_extent(ip
->i_transp
, bno
,
2875 (xfs_extlen_t
)len
)))
2878 nblks
= len
* mp
->m_sb
.sb_rextsize
;
2879 qfield
= XFS_TRANS_DQ_RTBCOUNT
;
2882 * Ordinary allocation.
2886 nblks
= del
->br_blockcount
;
2887 qfield
= XFS_TRANS_DQ_BCOUNT
;
2890 * Set up del_endblock and cur for later.
2892 del_endblock
= del
->br_startblock
+ del
->br_blockcount
;
2894 if ((error
= xfs_bmbt_lookup_eq(cur
, got
.br_startoff
,
2895 got
.br_startblock
, got
.br_blockcount
,
2898 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2900 da_old
= da_new
= 0;
2902 da_old
= startblockval(got
.br_startblock
);
2908 * Set flag value to use in switch statement.
2909 * Left-contig is 2, right-contig is 1.
2911 switch (((got
.br_startoff
== del
->br_startoff
) << 1) |
2912 (got_endoff
== del_endoff
)) {
2915 * Matches the whole extent. Delete the entry.
2917 xfs_iext_remove(ip
, *idx
, 1,
2918 whichfork
== XFS_ATTR_FORK
? BMAP_ATTRFORK
: 0);
2923 XFS_IFORK_NEXT_SET(ip
, whichfork
,
2924 XFS_IFORK_NEXTENTS(ip
, whichfork
) - 1);
2925 flags
|= XFS_ILOG_CORE
;
2927 flags
|= xfs_ilog_fext(whichfork
);
2930 if ((error
= xfs_btree_delete(cur
, &i
)))
2932 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2937 * Deleting the first part of the extent.
2939 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
2940 xfs_bmbt_set_startoff(ep
, del_endoff
);
2941 temp
= got
.br_blockcount
- del
->br_blockcount
;
2942 xfs_bmbt_set_blockcount(ep
, temp
);
2944 temp
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip
, temp
),
2946 xfs_bmbt_set_startblock(ep
, nullstartblock((int)temp
));
2947 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
2951 xfs_bmbt_set_startblock(ep
, del_endblock
);
2952 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
2954 flags
|= xfs_ilog_fext(whichfork
);
2957 if ((error
= xfs_bmbt_update(cur
, del_endoff
, del_endblock
,
2958 got
.br_blockcount
- del
->br_blockcount
,
2965 * Deleting the last part of the extent.
2967 temp
= got
.br_blockcount
- del
->br_blockcount
;
2968 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
2969 xfs_bmbt_set_blockcount(ep
, temp
);
2971 temp
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip
, temp
),
2973 xfs_bmbt_set_startblock(ep
, nullstartblock((int)temp
));
2974 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
2978 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
2980 flags
|= xfs_ilog_fext(whichfork
);
2983 if ((error
= xfs_bmbt_update(cur
, got
.br_startoff
,
2985 got
.br_blockcount
- del
->br_blockcount
,
2992 * Deleting the middle of the extent.
2994 temp
= del
->br_startoff
- got
.br_startoff
;
2995 trace_xfs_bmap_pre_update(ip
, *idx
, state
, _THIS_IP_
);
2996 xfs_bmbt_set_blockcount(ep
, temp
);
2997 new.br_startoff
= del_endoff
;
2998 temp2
= got_endoff
- del_endoff
;
2999 new.br_blockcount
= temp2
;
3000 new.br_state
= got
.br_state
;
3002 new.br_startblock
= del_endblock
;
3003 flags
|= XFS_ILOG_CORE
;
3005 if ((error
= xfs_bmbt_update(cur
,
3007 got
.br_startblock
, temp
,
3010 if ((error
= xfs_btree_increment(cur
, 0, &i
)))
3012 cur
->bc_rec
.b
= new;
3013 error
= xfs_btree_insert(cur
, &i
);
3014 if (error
&& error
!= ENOSPC
)
3017 * If get no-space back from btree insert,
3018 * it tried a split, and we have a zero
3019 * block reservation.
3020 * Fix up our state and return the error.
3022 if (error
== ENOSPC
) {
3024 * Reset the cursor, don't trust
3025 * it after any insert operation.
3027 if ((error
= xfs_bmbt_lookup_eq(cur
,
3032 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
3034 * Update the btree record back
3035 * to the original value.
3037 if ((error
= xfs_bmbt_update(cur
,
3044 * Reset the extent record back
3045 * to the original value.
3047 xfs_bmbt_set_blockcount(ep
,
3050 error
= XFS_ERROR(ENOSPC
);
3053 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
3055 flags
|= xfs_ilog_fext(whichfork
);
3056 XFS_IFORK_NEXT_SET(ip
, whichfork
,
3057 XFS_IFORK_NEXTENTS(ip
, whichfork
) + 1);
3059 ASSERT(whichfork
== XFS_DATA_FORK
);
3060 temp
= xfs_bmap_worst_indlen(ip
, temp
);
3061 xfs_bmbt_set_startblock(ep
, nullstartblock((int)temp
));
3062 temp2
= xfs_bmap_worst_indlen(ip
, temp2
);
3063 new.br_startblock
= nullstartblock((int)temp2
);
3064 da_new
= temp
+ temp2
;
3065 while (da_new
> da_old
) {
3069 xfs_bmbt_set_startblock(ep
,
3070 nullstartblock((int)temp
));
3072 if (da_new
== da_old
)
3078 nullstartblock((int)temp2
);
3082 trace_xfs_bmap_post_update(ip
, *idx
, state
, _THIS_IP_
);
3083 xfs_iext_insert(ip
, *idx
+ 1, 1, &new, state
);
3088 * If we need to, add to list of extents to delete.
3091 xfs_bmap_add_free(del
->br_startblock
, del
->br_blockcount
, flist
,
3094 * Adjust inode # blocks in the file.
3097 ip
->i_d
.di_nblocks
-= nblks
;
3099 * Adjust quota data.
3102 xfs_trans_mod_dquot_byino(tp
, ip
, qfield
, (long)-nblks
);
3105 * Account for change in delayed indirect blocks.
3106 * Nothing to do for disk quota accounting here.
3108 ASSERT(da_old
>= da_new
);
3109 if (da_old
> da_new
) {
3110 xfs_icsb_modify_counters(mp
, XFS_SBS_FDBLOCKS
,
3111 (int64_t)(da_old
- da_new
), 0);
3119 * Remove the entry "free" from the free item list. Prev points to the
3120 * previous entry, unless "free" is the head of the list.
3124 xfs_bmap_free_t
*flist
, /* free item list header */
3125 xfs_bmap_free_item_t
*prev
, /* previous item on list, if any */
3126 xfs_bmap_free_item_t
*free
) /* list item to be freed */
3129 prev
->xbfi_next
= free
->xbfi_next
;
3131 flist
->xbf_first
= free
->xbfi_next
;
3133 kmem_zone_free(xfs_bmap_free_item_zone
, free
);
3137 * Convert an extents-format file into a btree-format file.
3138 * The new file will have a root block (in the inode) and a single child block.
3140 STATIC
int /* error */
3141 xfs_bmap_extents_to_btree(
3142 xfs_trans_t
*tp
, /* transaction pointer */
3143 xfs_inode_t
*ip
, /* incore inode pointer */
3144 xfs_fsblock_t
*firstblock
, /* first-block-allocated */
3145 xfs_bmap_free_t
*flist
, /* blocks freed in xaction */
3146 xfs_btree_cur_t
**curp
, /* cursor returned to caller */
3147 int wasdel
, /* converting a delayed alloc */
3148 int *logflagsp
, /* inode logging flags */
3149 int whichfork
) /* data or attr fork */
3151 struct xfs_btree_block
*ablock
; /* allocated (child) bt block */
3152 xfs_buf_t
*abp
; /* buffer for ablock */
3153 xfs_alloc_arg_t args
; /* allocation arguments */
3154 xfs_bmbt_rec_t
*arp
; /* child record pointer */
3155 struct xfs_btree_block
*block
; /* btree root block */
3156 xfs_btree_cur_t
*cur
; /* bmap btree cursor */
3157 xfs_bmbt_rec_host_t
*ep
; /* extent record pointer */
3158 int error
; /* error return value */
3159 xfs_extnum_t i
, cnt
; /* extent record index */
3160 xfs_ifork_t
*ifp
; /* inode fork pointer */
3161 xfs_bmbt_key_t
*kp
; /* root block key pointer */
3162 xfs_mount_t
*mp
; /* mount structure */
3163 xfs_extnum_t nextents
; /* number of file extents */
3164 xfs_bmbt_ptr_t
*pp
; /* root block address pointer */
3166 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
3167 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_EXTENTS
);
3168 ASSERT(ifp
->if_ext_max
==
3169 XFS_IFORK_SIZE(ip
, whichfork
) / (uint
)sizeof(xfs_bmbt_rec_t
));
3171 * Make space in the inode incore.
3173 xfs_iroot_realloc(ip
, 1, whichfork
);
3174 ifp
->if_flags
|= XFS_IFBROOT
;
3179 block
= ifp
->if_broot
;
3180 block
->bb_magic
= cpu_to_be32(XFS_BMAP_MAGIC
);
3181 block
->bb_level
= cpu_to_be16(1);
3182 block
->bb_numrecs
= cpu_to_be16(1);
3183 block
->bb_u
.l
.bb_leftsib
= cpu_to_be64(NULLDFSBNO
);
3184 block
->bb_u
.l
.bb_rightsib
= cpu_to_be64(NULLDFSBNO
);
3187 * Need a cursor. Can't allocate until bb_level is filled in.
3190 cur
= xfs_bmbt_init_cursor(mp
, tp
, ip
, whichfork
);
3191 cur
->bc_private
.b
.firstblock
= *firstblock
;
3192 cur
->bc_private
.b
.flist
= flist
;
3193 cur
->bc_private
.b
.flags
= wasdel
? XFS_BTCUR_BPRV_WASDEL
: 0;
3195 * Convert to a btree with two levels, one record in root.
3197 XFS_IFORK_FMT_SET(ip
, whichfork
, XFS_DINODE_FMT_BTREE
);
3200 args
.firstblock
= *firstblock
;
3201 if (*firstblock
== NULLFSBLOCK
) {
3202 args
.type
= XFS_ALLOCTYPE_START_BNO
;
3203 args
.fsbno
= XFS_INO_TO_FSB(mp
, ip
->i_ino
);
3204 } else if (flist
->xbf_low
) {
3205 args
.type
= XFS_ALLOCTYPE_START_BNO
;
3206 args
.fsbno
= *firstblock
;
3208 args
.type
= XFS_ALLOCTYPE_NEAR_BNO
;
3209 args
.fsbno
= *firstblock
;
3211 args
.minlen
= args
.maxlen
= args
.prod
= 1;
3212 args
.total
= args
.minleft
= args
.alignment
= args
.mod
= args
.isfl
=
3213 args
.minalignslop
= 0;
3214 args
.wasdel
= wasdel
;
3216 if ((error
= xfs_alloc_vextent(&args
))) {
3217 xfs_iroot_realloc(ip
, -1, whichfork
);
3218 xfs_btree_del_cursor(cur
, XFS_BTREE_ERROR
);
3222 * Allocation can't fail, the space was reserved.
3224 ASSERT(args
.fsbno
!= NULLFSBLOCK
);
3225 ASSERT(*firstblock
== NULLFSBLOCK
||
3226 args
.agno
== XFS_FSB_TO_AGNO(mp
, *firstblock
) ||
3228 args
.agno
> XFS_FSB_TO_AGNO(mp
, *firstblock
)));
3229 *firstblock
= cur
->bc_private
.b
.firstblock
= args
.fsbno
;
3230 cur
->bc_private
.b
.allocated
++;
3231 ip
->i_d
.di_nblocks
++;
3232 xfs_trans_mod_dquot_byino(tp
, ip
, XFS_TRANS_DQ_BCOUNT
, 1L);
3233 abp
= xfs_btree_get_bufl(mp
, tp
, args
.fsbno
, 0);
3235 * Fill in the child block.
3237 ablock
= XFS_BUF_TO_BLOCK(abp
);
3238 ablock
->bb_magic
= cpu_to_be32(XFS_BMAP_MAGIC
);
3239 ablock
->bb_level
= 0;
3240 ablock
->bb_u
.l
.bb_leftsib
= cpu_to_be64(NULLDFSBNO
);
3241 ablock
->bb_u
.l
.bb_rightsib
= cpu_to_be64(NULLDFSBNO
);
3242 arp
= XFS_BMBT_REC_ADDR(mp
, ablock
, 1);
3243 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
3244 for (cnt
= i
= 0; i
< nextents
; i
++) {
3245 ep
= xfs_iext_get_ext(ifp
, i
);
3246 if (!isnullstartblock(xfs_bmbt_get_startblock(ep
))) {
3247 arp
->l0
= cpu_to_be64(ep
->l0
);
3248 arp
->l1
= cpu_to_be64(ep
->l1
);
3252 ASSERT(cnt
== XFS_IFORK_NEXTENTS(ip
, whichfork
));
3253 xfs_btree_set_numrecs(ablock
, cnt
);
3256 * Fill in the root key and pointer.
3258 kp
= XFS_BMBT_KEY_ADDR(mp
, block
, 1);
3259 arp
= XFS_BMBT_REC_ADDR(mp
, ablock
, 1);
3260 kp
->br_startoff
= cpu_to_be64(xfs_bmbt_disk_get_startoff(arp
));
3261 pp
= XFS_BMBT_PTR_ADDR(mp
, block
, 1, xfs_bmbt_get_maxrecs(cur
,
3262 be16_to_cpu(block
->bb_level
)));
3263 *pp
= cpu_to_be64(args
.fsbno
);
3266 * Do all this logging at the end so that
3267 * the root is at the right level.
3269 xfs_btree_log_block(cur
, abp
, XFS_BB_ALL_BITS
);
3270 xfs_btree_log_recs(cur
, abp
, 1, be16_to_cpu(ablock
->bb_numrecs
));
3271 ASSERT(*curp
== NULL
);
3273 *logflagsp
= XFS_ILOG_CORE
| xfs_ilog_fbroot(whichfork
);
3278 * Calculate the default attribute fork offset for newly created inodes.
3281 xfs_default_attroffset(
3282 struct xfs_inode
*ip
)
3284 struct xfs_mount
*mp
= ip
->i_mount
;
3287 if (mp
->m_sb
.sb_inodesize
== 256) {
3288 offset
= XFS_LITINO(mp
) -
3289 XFS_BMDR_SPACE_CALC(MINABTPTRS
);
3291 offset
= XFS_BMDR_SPACE_CALC(6 * MINABTPTRS
);
3294 ASSERT(offset
< XFS_LITINO(mp
));
3299 * Helper routine to reset inode di_forkoff field when switching
3300 * attribute fork from local to extent format - we reset it where
3301 * possible to make space available for inline data fork extents.
3304 xfs_bmap_forkoff_reset(
3309 if (whichfork
== XFS_ATTR_FORK
&&
3310 ip
->i_d
.di_format
!= XFS_DINODE_FMT_DEV
&&
3311 ip
->i_d
.di_format
!= XFS_DINODE_FMT_UUID
&&
3312 ip
->i_d
.di_format
!= XFS_DINODE_FMT_BTREE
) {
3313 uint dfl_forkoff
= xfs_default_attroffset(ip
) >> 3;
3315 if (dfl_forkoff
> ip
->i_d
.di_forkoff
) {
3316 ip
->i_d
.di_forkoff
= dfl_forkoff
;
3317 ip
->i_df
.if_ext_max
=
3318 XFS_IFORK_DSIZE(ip
) / sizeof(xfs_bmbt_rec_t
);
3319 ip
->i_afp
->if_ext_max
=
3320 XFS_IFORK_ASIZE(ip
) / sizeof(xfs_bmbt_rec_t
);
3326 * Convert a local file to an extents file.
3327 * This code is out of bounds for data forks of regular files,
3328 * since the file data needs to get logged so things will stay consistent.
3329 * (The bmap-level manipulations are ok, though).
3331 STATIC
int /* error */
3332 xfs_bmap_local_to_extents(
3333 xfs_trans_t
*tp
, /* transaction pointer */
3334 xfs_inode_t
*ip
, /* incore inode pointer */
3335 xfs_fsblock_t
*firstblock
, /* first block allocated in xaction */
3336 xfs_extlen_t total
, /* total blocks needed by transaction */
3337 int *logflagsp
, /* inode logging flags */
3338 int whichfork
) /* data or attr fork */
3340 int error
; /* error return value */
3341 int flags
; /* logging flags returned */
3342 xfs_ifork_t
*ifp
; /* inode fork pointer */
3345 * We don't want to deal with the case of keeping inode data inline yet.
3346 * So sending the data fork of a regular inode is invalid.
3348 ASSERT(!((ip
->i_d
.di_mode
& S_IFMT
) == S_IFREG
&&
3349 whichfork
== XFS_DATA_FORK
));
3350 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
3351 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
);
3354 if (ifp
->if_bytes
) {
3355 xfs_alloc_arg_t args
; /* allocation arguments */
3356 xfs_buf_t
*bp
; /* buffer for extent block */
3357 xfs_bmbt_rec_host_t
*ep
;/* extent record pointer */
3360 args
.mp
= ip
->i_mount
;
3361 args
.firstblock
= *firstblock
;
3362 ASSERT((ifp
->if_flags
&
3363 (XFS_IFINLINE
|XFS_IFEXTENTS
|XFS_IFEXTIREC
)) == XFS_IFINLINE
);
3365 * Allocate a block. We know we need only one, since the
3366 * file currently fits in an inode.
3368 if (*firstblock
== NULLFSBLOCK
) {
3369 args
.fsbno
= XFS_INO_TO_FSB(args
.mp
, ip
->i_ino
);
3370 args
.type
= XFS_ALLOCTYPE_START_BNO
;
3372 args
.fsbno
= *firstblock
;
3373 args
.type
= XFS_ALLOCTYPE_NEAR_BNO
;
3376 args
.mod
= args
.minleft
= args
.alignment
= args
.wasdel
=
3377 args
.isfl
= args
.minalignslop
= 0;
3378 args
.minlen
= args
.maxlen
= args
.prod
= 1;
3379 if ((error
= xfs_alloc_vextent(&args
)))
3382 * Can't fail, the space was reserved.
3384 ASSERT(args
.fsbno
!= NULLFSBLOCK
);
3385 ASSERT(args
.len
== 1);
3386 *firstblock
= args
.fsbno
;
3387 bp
= xfs_btree_get_bufl(args
.mp
, tp
, args
.fsbno
, 0);
3388 memcpy((char *)XFS_BUF_PTR(bp
), ifp
->if_u1
.if_data
,
3390 xfs_trans_log_buf(tp
, bp
, 0, ifp
->if_bytes
- 1);
3391 xfs_bmap_forkoff_reset(args
.mp
, ip
, whichfork
);
3392 xfs_idata_realloc(ip
, -ifp
->if_bytes
, whichfork
);
3393 xfs_iext_add(ifp
, 0, 1);
3394 ep
= xfs_iext_get_ext(ifp
, 0);
3395 xfs_bmbt_set_allf(ep
, 0, args
.fsbno
, 1, XFS_EXT_NORM
);
3396 trace_xfs_bmap_post_update(ip
, 0,
3397 whichfork
== XFS_ATTR_FORK
? BMAP_ATTRFORK
: 0,
3399 XFS_IFORK_NEXT_SET(ip
, whichfork
, 1);
3400 ip
->i_d
.di_nblocks
= 1;
3401 xfs_trans_mod_dquot_byino(tp
, ip
,
3402 XFS_TRANS_DQ_BCOUNT
, 1L);
3403 flags
|= xfs_ilog_fext(whichfork
);
3405 ASSERT(XFS_IFORK_NEXTENTS(ip
, whichfork
) == 0);
3406 xfs_bmap_forkoff_reset(ip
->i_mount
, ip
, whichfork
);
3408 ifp
->if_flags
&= ~XFS_IFINLINE
;
3409 ifp
->if_flags
|= XFS_IFEXTENTS
;
3410 XFS_IFORK_FMT_SET(ip
, whichfork
, XFS_DINODE_FMT_EXTENTS
);
3411 flags
|= XFS_ILOG_CORE
;
3418 * Search the extent records for the entry containing block bno.
3419 * If bno lies in a hole, point to the next entry. If bno lies
3420 * past eof, *eofp will be set, and *prevp will contain the last
3421 * entry (null if none). Else, *lastxp will be set to the index
3422 * of the found entry; *gotp will contain the entry.
3424 STATIC xfs_bmbt_rec_host_t
* /* pointer to found extent entry */
3425 xfs_bmap_search_multi_extents(
3426 xfs_ifork_t
*ifp
, /* inode fork pointer */
3427 xfs_fileoff_t bno
, /* block number searched for */
3428 int *eofp
, /* out: end of file found */
3429 xfs_extnum_t
*lastxp
, /* out: last extent index */
3430 xfs_bmbt_irec_t
*gotp
, /* out: extent entry found */
3431 xfs_bmbt_irec_t
*prevp
) /* out: previous extent entry found */
3433 xfs_bmbt_rec_host_t
*ep
; /* extent record pointer */
3434 xfs_extnum_t lastx
; /* last extent index */
3437 * Initialize the extent entry structure to catch access to
3438 * uninitialized br_startblock field.
3440 gotp
->br_startoff
= 0xffa5a5a5a5a5a5a5LL
;
3441 gotp
->br_blockcount
= 0xa55a5a5a5a5a5a5aLL
;
3442 gotp
->br_state
= XFS_EXT_INVALID
;
3444 gotp
->br_startblock
= 0xffffa5a5a5a5a5a5LL
;
3446 gotp
->br_startblock
= 0xffffa5a5;
3448 prevp
->br_startoff
= NULLFILEOFF
;
3450 ep
= xfs_iext_bno_to_ext(ifp
, bno
, &lastx
);
3452 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, lastx
- 1), prevp
);
3454 if (lastx
< (ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
))) {
3455 xfs_bmbt_get_all(ep
, gotp
);
3469 * Search the extents list for the inode, for the extent containing bno.
3470 * If bno lies in a hole, point to the next entry. If bno lies past eof,
3471 * *eofp will be set, and *prevp will contain the last entry (null if none).
3472 * Else, *lastxp will be set to the index of the found
3473 * entry; *gotp will contain the entry.
3475 STATIC xfs_bmbt_rec_host_t
* /* pointer to found extent entry */
3476 xfs_bmap_search_extents(
3477 xfs_inode_t
*ip
, /* incore inode pointer */
3478 xfs_fileoff_t bno
, /* block number searched for */
3479 int fork
, /* data or attr fork */
3480 int *eofp
, /* out: end of file found */
3481 xfs_extnum_t
*lastxp
, /* out: last extent index */
3482 xfs_bmbt_irec_t
*gotp
, /* out: extent entry found */
3483 xfs_bmbt_irec_t
*prevp
) /* out: previous extent entry found */
3485 xfs_ifork_t
*ifp
; /* inode fork pointer */
3486 xfs_bmbt_rec_host_t
*ep
; /* extent record pointer */
3488 XFS_STATS_INC(xs_look_exlist
);
3489 ifp
= XFS_IFORK_PTR(ip
, fork
);
3491 ep
= xfs_bmap_search_multi_extents(ifp
, bno
, eofp
, lastxp
, gotp
, prevp
);
3493 if (unlikely(!(gotp
->br_startblock
) && (*lastxp
!= NULLEXTNUM
) &&
3494 !(XFS_IS_REALTIME_INODE(ip
) && fork
== XFS_DATA_FORK
))) {
3495 xfs_alert_tag(ip
->i_mount
, XFS_PTAG_FSBLOCK_ZERO
,
3496 "Access to block zero in inode %llu "
3497 "start_block: %llx start_off: %llx "
3498 "blkcnt: %llx extent-state: %x lastx: %x\n",
3499 (unsigned long long)ip
->i_ino
,
3500 (unsigned long long)gotp
->br_startblock
,
3501 (unsigned long long)gotp
->br_startoff
,
3502 (unsigned long long)gotp
->br_blockcount
,
3503 gotp
->br_state
, *lastxp
);
3504 *lastxp
= NULLEXTNUM
;
3512 * Compute the worst-case number of indirect blocks that will be used
3513 * for ip's delayed extent of length "len".
3515 STATIC xfs_filblks_t
3516 xfs_bmap_worst_indlen(
3517 xfs_inode_t
*ip
, /* incore inode pointer */
3518 xfs_filblks_t len
) /* delayed extent length */
3520 int level
; /* btree level number */
3521 int maxrecs
; /* maximum record count at this level */
3522 xfs_mount_t
*mp
; /* mount structure */
3523 xfs_filblks_t rval
; /* return value */
3526 maxrecs
= mp
->m_bmap_dmxr
[0];
3527 for (level
= 0, rval
= 0;
3528 level
< XFS_BM_MAXLEVELS(mp
, XFS_DATA_FORK
);
3531 do_div(len
, maxrecs
);
3534 return rval
+ XFS_BM_MAXLEVELS(mp
, XFS_DATA_FORK
) -
3537 maxrecs
= mp
->m_bmap_dmxr
[1];
3543 * Convert inode from non-attributed to attributed.
3544 * Must not be in a transaction, ip must not be locked.
3546 int /* error code */
3547 xfs_bmap_add_attrfork(
3548 xfs_inode_t
*ip
, /* incore inode pointer */
3549 int size
, /* space new attribute needs */
3550 int rsvd
) /* xact may use reserved blks */
3552 xfs_fsblock_t firstblock
; /* 1st block/ag allocated */
3553 xfs_bmap_free_t flist
; /* freed extent records */
3554 xfs_mount_t
*mp
; /* mount structure */
3555 xfs_trans_t
*tp
; /* transaction pointer */
3556 int blks
; /* space reservation */
3557 int version
= 1; /* superblock attr version */
3558 int committed
; /* xaction was committed */
3559 int logflags
; /* logging flags */
3560 int error
; /* error return value */
3562 ASSERT(XFS_IFORK_Q(ip
) == 0);
3563 ASSERT(ip
->i_df
.if_ext_max
==
3564 XFS_IFORK_DSIZE(ip
) / (uint
)sizeof(xfs_bmbt_rec_t
));
3567 ASSERT(!XFS_NOT_DQATTACHED(mp
, ip
));
3568 tp
= xfs_trans_alloc(mp
, XFS_TRANS_ADDAFORK
);
3569 blks
= XFS_ADDAFORK_SPACE_RES(mp
);
3571 tp
->t_flags
|= XFS_TRANS_RESERVE
;
3572 if ((error
= xfs_trans_reserve(tp
, blks
, XFS_ADDAFORK_LOG_RES(mp
), 0,
3573 XFS_TRANS_PERM_LOG_RES
, XFS_ADDAFORK_LOG_COUNT
)))
3575 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
3576 error
= xfs_trans_reserve_quota_nblks(tp
, ip
, blks
, 0, rsvd
?
3577 XFS_QMOPT_RES_REGBLKS
| XFS_QMOPT_FORCE_RES
:
3578 XFS_QMOPT_RES_REGBLKS
);
3580 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
3581 xfs_trans_cancel(tp
, XFS_TRANS_RELEASE_LOG_RES
);
3584 if (XFS_IFORK_Q(ip
))
3586 if (ip
->i_d
.di_aformat
!= XFS_DINODE_FMT_EXTENTS
) {
3588 * For inodes coming from pre-6.2 filesystems.
3590 ASSERT(ip
->i_d
.di_aformat
== 0);
3591 ip
->i_d
.di_aformat
= XFS_DINODE_FMT_EXTENTS
;
3593 ASSERT(ip
->i_d
.di_anextents
== 0);
3595 xfs_trans_ijoin_ref(tp
, ip
, XFS_ILOCK_EXCL
);
3596 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
3598 switch (ip
->i_d
.di_format
) {
3599 case XFS_DINODE_FMT_DEV
:
3600 ip
->i_d
.di_forkoff
= roundup(sizeof(xfs_dev_t
), 8) >> 3;
3602 case XFS_DINODE_FMT_UUID
:
3603 ip
->i_d
.di_forkoff
= roundup(sizeof(uuid_t
), 8) >> 3;
3605 case XFS_DINODE_FMT_LOCAL
:
3606 case XFS_DINODE_FMT_EXTENTS
:
3607 case XFS_DINODE_FMT_BTREE
:
3608 ip
->i_d
.di_forkoff
= xfs_attr_shortform_bytesfit(ip
, size
);
3609 if (!ip
->i_d
.di_forkoff
)
3610 ip
->i_d
.di_forkoff
= xfs_default_attroffset(ip
) >> 3;
3611 else if (mp
->m_flags
& XFS_MOUNT_ATTR2
)
3616 error
= XFS_ERROR(EINVAL
);
3619 ip
->i_df
.if_ext_max
=
3620 XFS_IFORK_DSIZE(ip
) / (uint
)sizeof(xfs_bmbt_rec_t
);
3621 ASSERT(ip
->i_afp
== NULL
);
3622 ip
->i_afp
= kmem_zone_zalloc(xfs_ifork_zone
, KM_SLEEP
);
3623 ip
->i_afp
->if_ext_max
=
3624 XFS_IFORK_ASIZE(ip
) / (uint
)sizeof(xfs_bmbt_rec_t
);
3625 ip
->i_afp
->if_flags
= XFS_IFEXTENTS
;
3627 xfs_bmap_init(&flist
, &firstblock
);
3628 switch (ip
->i_d
.di_format
) {
3629 case XFS_DINODE_FMT_LOCAL
:
3630 error
= xfs_bmap_add_attrfork_local(tp
, ip
, &firstblock
, &flist
,
3633 case XFS_DINODE_FMT_EXTENTS
:
3634 error
= xfs_bmap_add_attrfork_extents(tp
, ip
, &firstblock
,
3637 case XFS_DINODE_FMT_BTREE
:
3638 error
= xfs_bmap_add_attrfork_btree(tp
, ip
, &firstblock
, &flist
,
3646 xfs_trans_log_inode(tp
, ip
, logflags
);
3649 if (!xfs_sb_version_hasattr(&mp
->m_sb
) ||
3650 (!xfs_sb_version_hasattr2(&mp
->m_sb
) && version
== 2)) {
3651 __int64_t sbfields
= 0;
3653 spin_lock(&mp
->m_sb_lock
);
3654 if (!xfs_sb_version_hasattr(&mp
->m_sb
)) {
3655 xfs_sb_version_addattr(&mp
->m_sb
);
3656 sbfields
|= XFS_SB_VERSIONNUM
;
3658 if (!xfs_sb_version_hasattr2(&mp
->m_sb
) && version
== 2) {
3659 xfs_sb_version_addattr2(&mp
->m_sb
);
3660 sbfields
|= (XFS_SB_VERSIONNUM
| XFS_SB_FEATURES2
);
3663 spin_unlock(&mp
->m_sb_lock
);
3664 xfs_mod_sb(tp
, sbfields
);
3666 spin_unlock(&mp
->m_sb_lock
);
3668 if ((error
= xfs_bmap_finish(&tp
, &flist
, &committed
)))
3670 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
);
3671 ASSERT(ip
->i_df
.if_ext_max
==
3672 XFS_IFORK_DSIZE(ip
) / (uint
)sizeof(xfs_bmbt_rec_t
));
3675 xfs_bmap_cancel(&flist
);
3677 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
3679 xfs_trans_cancel(tp
, XFS_TRANS_RELEASE_LOG_RES
|XFS_TRANS_ABORT
);
3680 ASSERT(ip
->i_df
.if_ext_max
==
3681 XFS_IFORK_DSIZE(ip
) / (uint
)sizeof(xfs_bmbt_rec_t
));
3686 * Add the extent to the list of extents to be free at transaction end.
3687 * The list is maintained sorted (by block number).
3692 xfs_fsblock_t bno
, /* fs block number of extent */
3693 xfs_filblks_t len
, /* length of extent */
3694 xfs_bmap_free_t
*flist
, /* list of extents */
3695 xfs_mount_t
*mp
) /* mount point structure */
3697 xfs_bmap_free_item_t
*cur
; /* current (next) element */
3698 xfs_bmap_free_item_t
*new; /* new element */
3699 xfs_bmap_free_item_t
*prev
; /* previous element */
3701 xfs_agnumber_t agno
;
3702 xfs_agblock_t agbno
;
3704 ASSERT(bno
!= NULLFSBLOCK
);
3706 ASSERT(len
<= MAXEXTLEN
);
3707 ASSERT(!isnullstartblock(bno
));
3708 agno
= XFS_FSB_TO_AGNO(mp
, bno
);
3709 agbno
= XFS_FSB_TO_AGBNO(mp
, bno
);
3710 ASSERT(agno
< mp
->m_sb
.sb_agcount
);
3711 ASSERT(agbno
< mp
->m_sb
.sb_agblocks
);
3712 ASSERT(len
< mp
->m_sb
.sb_agblocks
);
3713 ASSERT(agbno
+ len
<= mp
->m_sb
.sb_agblocks
);
3715 ASSERT(xfs_bmap_free_item_zone
!= NULL
);
3716 new = kmem_zone_alloc(xfs_bmap_free_item_zone
, KM_SLEEP
);
3717 new->xbfi_startblock
= bno
;
3718 new->xbfi_blockcount
= (xfs_extlen_t
)len
;
3719 for (prev
= NULL
, cur
= flist
->xbf_first
;
3721 prev
= cur
, cur
= cur
->xbfi_next
) {
3722 if (cur
->xbfi_startblock
>= bno
)
3726 prev
->xbfi_next
= new;
3728 flist
->xbf_first
= new;
3729 new->xbfi_next
= cur
;
3734 * Compute and fill in the value of the maximum depth of a bmap btree
3735 * in this filesystem. Done once, during mount.
3738 xfs_bmap_compute_maxlevels(
3739 xfs_mount_t
*mp
, /* file system mount structure */
3740 int whichfork
) /* data or attr fork */
3742 int level
; /* btree level */
3743 uint maxblocks
; /* max blocks at this level */
3744 uint maxleafents
; /* max leaf entries possible */
3745 int maxrootrecs
; /* max records in root block */
3746 int minleafrecs
; /* min records in leaf block */
3747 int minnoderecs
; /* min records in node block */
3748 int sz
; /* root block size */
3751 * The maximum number of extents in a file, hence the maximum
3752 * number of leaf entries, is controlled by the type of di_nextents
3753 * (a signed 32-bit number, xfs_extnum_t), or by di_anextents
3754 * (a signed 16-bit number, xfs_aextnum_t).
3756 * Note that we can no longer assume that if we are in ATTR1 that
3757 * the fork offset of all the inodes will be
3758 * (xfs_default_attroffset(ip) >> 3) because we could have mounted
3759 * with ATTR2 and then mounted back with ATTR1, keeping the
3760 * di_forkoff's fixed but probably at various positions. Therefore,
3761 * for both ATTR1 and ATTR2 we have to assume the worst case scenario
3762 * of a minimum size available.
3764 if (whichfork
== XFS_DATA_FORK
) {
3765 maxleafents
= MAXEXTNUM
;
3766 sz
= XFS_BMDR_SPACE_CALC(MINDBTPTRS
);
3768 maxleafents
= MAXAEXTNUM
;
3769 sz
= XFS_BMDR_SPACE_CALC(MINABTPTRS
);
3771 maxrootrecs
= xfs_bmdr_maxrecs(mp
, sz
, 0);
3772 minleafrecs
= mp
->m_bmap_dmnr
[0];
3773 minnoderecs
= mp
->m_bmap_dmnr
[1];
3774 maxblocks
= (maxleafents
+ minleafrecs
- 1) / minleafrecs
;
3775 for (level
= 1; maxblocks
> 1; level
++) {
3776 if (maxblocks
<= maxrootrecs
)
3779 maxblocks
= (maxblocks
+ minnoderecs
- 1) / minnoderecs
;
3781 mp
->m_bm_maxlevels
[whichfork
] = level
;
3785 * Routine to be called at transaction's end by xfs_bmapi, xfs_bunmapi
3786 * caller. Frees all the extents that need freeing, which must be done
3787 * last due to locking considerations. We never free any extents in
3788 * the first transaction.
3790 * Return 1 if the given transaction was committed and a new one
3791 * started, and 0 otherwise in the committed parameter.
3795 xfs_trans_t
**tp
, /* transaction pointer addr */
3796 xfs_bmap_free_t
*flist
, /* i/o: list extents to free */
3797 int *committed
) /* xact committed or not */
3799 xfs_efd_log_item_t
*efd
; /* extent free data */
3800 xfs_efi_log_item_t
*efi
; /* extent free intention */
3801 int error
; /* error return value */
3802 xfs_bmap_free_item_t
*free
; /* free extent item */
3803 unsigned int logres
; /* new log reservation */
3804 unsigned int logcount
; /* new log count */
3805 xfs_mount_t
*mp
; /* filesystem mount structure */
3806 xfs_bmap_free_item_t
*next
; /* next item on free list */
3807 xfs_trans_t
*ntp
; /* new transaction pointer */
3809 ASSERT((*tp
)->t_flags
& XFS_TRANS_PERM_LOG_RES
);
3810 if (flist
->xbf_count
== 0) {
3815 efi
= xfs_trans_get_efi(ntp
, flist
->xbf_count
);
3816 for (free
= flist
->xbf_first
; free
; free
= free
->xbfi_next
)
3817 xfs_trans_log_efi_extent(ntp
, efi
, free
->xbfi_startblock
,
3818 free
->xbfi_blockcount
);
3819 logres
= ntp
->t_log_res
;
3820 logcount
= ntp
->t_log_count
;
3821 ntp
= xfs_trans_dup(*tp
);
3822 error
= xfs_trans_commit(*tp
, 0);
3826 * We have a new transaction, so we should return committed=1,
3827 * even though we're returning an error.
3833 * transaction commit worked ok so we can drop the extra ticket
3834 * reference that we gained in xfs_trans_dup()
3836 xfs_log_ticket_put(ntp
->t_ticket
);
3838 if ((error
= xfs_trans_reserve(ntp
, 0, logres
, 0, XFS_TRANS_PERM_LOG_RES
,
3841 efd
= xfs_trans_get_efd(ntp
, efi
, flist
->xbf_count
);
3842 for (free
= flist
->xbf_first
; free
!= NULL
; free
= next
) {
3843 next
= free
->xbfi_next
;
3844 if ((error
= xfs_free_extent(ntp
, free
->xbfi_startblock
,
3845 free
->xbfi_blockcount
))) {
3847 * The bmap free list will be cleaned up at a
3848 * higher level. The EFI will be canceled when
3849 * this transaction is aborted.
3850 * Need to force shutdown here to make sure it
3851 * happens, since this transaction may not be
3855 if (!XFS_FORCED_SHUTDOWN(mp
))
3856 xfs_force_shutdown(mp
,
3857 (error
== EFSCORRUPTED
) ?
3858 SHUTDOWN_CORRUPT_INCORE
:
3859 SHUTDOWN_META_IO_ERROR
);
3862 xfs_trans_log_efd_extent(ntp
, efd
, free
->xbfi_startblock
,
3863 free
->xbfi_blockcount
);
3864 xfs_bmap_del_free(flist
, NULL
, free
);
3870 * Free up any items left in the list.
3874 xfs_bmap_free_t
*flist
) /* list of bmap_free_items */
3876 xfs_bmap_free_item_t
*free
; /* free list item */
3877 xfs_bmap_free_item_t
*next
;
3879 if (flist
->xbf_count
== 0)
3881 ASSERT(flist
->xbf_first
!= NULL
);
3882 for (free
= flist
->xbf_first
; free
; free
= next
) {
3883 next
= free
->xbfi_next
;
3884 xfs_bmap_del_free(flist
, NULL
, free
);
3886 ASSERT(flist
->xbf_count
== 0);
3890 * Returns the file-relative block number of the first unused block(s)
3891 * in the file with at least "len" logically contiguous blocks free.
3892 * This is the lowest-address hole if the file has holes, else the first block
3893 * past the end of file.
3894 * Return 0 if the file is currently local (in-inode).
3897 xfs_bmap_first_unused(
3898 xfs_trans_t
*tp
, /* transaction pointer */
3899 xfs_inode_t
*ip
, /* incore inode */
3900 xfs_extlen_t len
, /* size of hole to find */
3901 xfs_fileoff_t
*first_unused
, /* unused block */
3902 int whichfork
) /* data or attr fork */
3904 int error
; /* error return value */
3905 int idx
; /* extent record index */
3906 xfs_ifork_t
*ifp
; /* inode fork pointer */
3907 xfs_fileoff_t lastaddr
; /* last block number seen */
3908 xfs_fileoff_t lowest
; /* lowest useful block */
3909 xfs_fileoff_t max
; /* starting useful block */
3910 xfs_fileoff_t off
; /* offset for this block */
3911 xfs_extnum_t nextents
; /* number of extent entries */
3913 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_BTREE
||
3914 XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_EXTENTS
||
3915 XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
);
3916 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
) {
3920 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
3921 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
3922 (error
= xfs_iread_extents(tp
, ip
, whichfork
)))
3924 lowest
= *first_unused
;
3925 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
3926 for (idx
= 0, lastaddr
= 0, max
= lowest
; idx
< nextents
; idx
++) {
3927 xfs_bmbt_rec_host_t
*ep
= xfs_iext_get_ext(ifp
, idx
);
3928 off
= xfs_bmbt_get_startoff(ep
);
3930 * See if the hole before this extent will work.
3932 if (off
>= lowest
+ len
&& off
- max
>= len
) {
3933 *first_unused
= max
;
3936 lastaddr
= off
+ xfs_bmbt_get_blockcount(ep
);
3937 max
= XFS_FILEOFF_MAX(lastaddr
, lowest
);
3939 *first_unused
= max
;
3944 * Returns the file-relative block number of the last block + 1 before
3945 * last_block (input value) in the file.
3946 * This is not based on i_size, it is based on the extent records.
3947 * Returns 0 for local files, as they do not have extent records.
3950 xfs_bmap_last_before(
3951 xfs_trans_t
*tp
, /* transaction pointer */
3952 xfs_inode_t
*ip
, /* incore inode */
3953 xfs_fileoff_t
*last_block
, /* last block */
3954 int whichfork
) /* data or attr fork */
3956 xfs_fileoff_t bno
; /* input file offset */
3957 int eof
; /* hit end of file */
3958 xfs_bmbt_rec_host_t
*ep
; /* pointer to last extent */
3959 int error
; /* error return value */
3960 xfs_bmbt_irec_t got
; /* current extent value */
3961 xfs_ifork_t
*ifp
; /* inode fork pointer */
3962 xfs_extnum_t lastx
; /* last extent used */
3963 xfs_bmbt_irec_t prev
; /* previous extent value */
3965 if (XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
&&
3966 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
&&
3967 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_LOCAL
)
3968 return XFS_ERROR(EIO
);
3969 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
) {
3973 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
3974 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
3975 (error
= xfs_iread_extents(tp
, ip
, whichfork
)))
3977 bno
= *last_block
- 1;
3978 ep
= xfs_bmap_search_extents(ip
, bno
, whichfork
, &eof
, &lastx
, &got
,
3980 if (eof
|| xfs_bmbt_get_startoff(ep
) > bno
) {
3981 if (prev
.br_startoff
== NULLFILEOFF
)
3984 *last_block
= prev
.br_startoff
+ prev
.br_blockcount
;
3987 * Otherwise *last_block is already the right answer.
3993 * Returns the file-relative block number of the first block past eof in
3994 * the file. This is not based on i_size, it is based on the extent records.
3995 * Returns 0 for local files, as they do not have extent records.
3998 xfs_bmap_last_offset(
3999 xfs_trans_t
*tp
, /* transaction pointer */
4000 xfs_inode_t
*ip
, /* incore inode */
4001 xfs_fileoff_t
*last_block
, /* last block */
4002 int whichfork
) /* data or attr fork */
4004 xfs_bmbt_rec_host_t
*ep
; /* pointer to last extent */
4005 int error
; /* error return value */
4006 xfs_ifork_t
*ifp
; /* inode fork pointer */
4007 xfs_extnum_t nextents
; /* number of extent entries */
4009 if (XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
&&
4010 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
&&
4011 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_LOCAL
)
4012 return XFS_ERROR(EIO
);
4013 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
) {
4017 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4018 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
4019 (error
= xfs_iread_extents(tp
, ip
, whichfork
)))
4021 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
4026 ep
= xfs_iext_get_ext(ifp
, nextents
- 1);
4027 *last_block
= xfs_bmbt_get_startoff(ep
) + xfs_bmbt_get_blockcount(ep
);
4032 * Returns whether the selected fork of the inode has exactly one
4033 * block or not. For the data fork we check this matches di_size,
4034 * implying the file's range is 0..bsize-1.
4036 int /* 1=>1 block, 0=>otherwise */
4038 xfs_inode_t
*ip
, /* incore inode */
4039 int whichfork
) /* data or attr fork */
4041 xfs_bmbt_rec_host_t
*ep
; /* ptr to fork's extent */
4042 xfs_ifork_t
*ifp
; /* inode fork pointer */
4043 int rval
; /* return value */
4044 xfs_bmbt_irec_t s
; /* internal version of extent */
4047 if (whichfork
== XFS_DATA_FORK
) {
4048 return ((ip
->i_d
.di_mode
& S_IFMT
) == S_IFREG
) ?
4049 (ip
->i_size
== ip
->i_mount
->m_sb
.sb_blocksize
) :
4050 (ip
->i_d
.di_size
== ip
->i_mount
->m_sb
.sb_blocksize
);
4053 if (XFS_IFORK_NEXTENTS(ip
, whichfork
) != 1)
4055 if (XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
)
4057 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4058 ASSERT(ifp
->if_flags
& XFS_IFEXTENTS
);
4059 ep
= xfs_iext_get_ext(ifp
, 0);
4060 xfs_bmbt_get_all(ep
, &s
);
4061 rval
= s
.br_startoff
== 0 && s
.br_blockcount
== 1;
4062 if (rval
&& whichfork
== XFS_DATA_FORK
)
4063 ASSERT(ip
->i_size
== ip
->i_mount
->m_sb
.sb_blocksize
);
4068 xfs_bmap_sanity_check(
4069 struct xfs_mount
*mp
,
4073 struct xfs_btree_block
*block
= XFS_BUF_TO_BLOCK(bp
);
4075 if (be32_to_cpu(block
->bb_magic
) != XFS_BMAP_MAGIC
||
4076 be16_to_cpu(block
->bb_level
) != level
||
4077 be16_to_cpu(block
->bb_numrecs
) == 0 ||
4078 be16_to_cpu(block
->bb_numrecs
) > mp
->m_bmap_dmxr
[level
!= 0])
4084 * Read in the extents to if_extents.
4085 * All inode fields are set up by caller, we just traverse the btree
4086 * and copy the records in. If the file system cannot contain unwritten
4087 * extents, the records are checked for no "state" flags.
4090 xfs_bmap_read_extents(
4091 xfs_trans_t
*tp
, /* transaction pointer */
4092 xfs_inode_t
*ip
, /* incore inode */
4093 int whichfork
) /* data or attr fork */
4095 struct xfs_btree_block
*block
; /* current btree block */
4096 xfs_fsblock_t bno
; /* block # of "block" */
4097 xfs_buf_t
*bp
; /* buffer for "block" */
4098 int error
; /* error return value */
4099 xfs_exntfmt_t exntf
; /* XFS_EXTFMT_NOSTATE, if checking */
4100 xfs_extnum_t i
, j
; /* index into the extents list */
4101 xfs_ifork_t
*ifp
; /* fork structure */
4102 int level
; /* btree level, for checking */
4103 xfs_mount_t
*mp
; /* file system mount structure */
4104 __be64
*pp
; /* pointer to block address */
4106 xfs_extnum_t room
; /* number of entries there's room for */
4110 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4111 exntf
= (whichfork
!= XFS_DATA_FORK
) ? XFS_EXTFMT_NOSTATE
:
4112 XFS_EXTFMT_INODE(ip
);
4113 block
= ifp
->if_broot
;
4115 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
4117 level
= be16_to_cpu(block
->bb_level
);
4119 pp
= XFS_BMAP_BROOT_PTR_ADDR(mp
, block
, 1, ifp
->if_broot_bytes
);
4120 bno
= be64_to_cpu(*pp
);
4121 ASSERT(bno
!= NULLDFSBNO
);
4122 ASSERT(XFS_FSB_TO_AGNO(mp
, bno
) < mp
->m_sb
.sb_agcount
);
4123 ASSERT(XFS_FSB_TO_AGBNO(mp
, bno
) < mp
->m_sb
.sb_agblocks
);
4125 * Go down the tree until leaf level is reached, following the first
4126 * pointer (leftmost) at each level.
4128 while (level
-- > 0) {
4129 if ((error
= xfs_btree_read_bufl(mp
, tp
, bno
, 0, &bp
,
4130 XFS_BMAP_BTREE_REF
)))
4132 block
= XFS_BUF_TO_BLOCK(bp
);
4133 XFS_WANT_CORRUPTED_GOTO(
4134 xfs_bmap_sanity_check(mp
, bp
, level
),
4138 pp
= XFS_BMBT_PTR_ADDR(mp
, block
, 1, mp
->m_bmap_dmxr
[1]);
4139 bno
= be64_to_cpu(*pp
);
4140 XFS_WANT_CORRUPTED_GOTO(XFS_FSB_SANITY_CHECK(mp
, bno
), error0
);
4141 xfs_trans_brelse(tp
, bp
);
4144 * Here with bp and block set to the leftmost leaf node in the tree.
4146 room
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
4149 * Loop over all leaf nodes. Copy information to the extent records.
4152 xfs_bmbt_rec_t
*frp
;
4153 xfs_fsblock_t nextbno
;
4154 xfs_extnum_t num_recs
;
4158 num_recs
= xfs_btree_get_numrecs(block
);
4159 if (unlikely(i
+ num_recs
> room
)) {
4160 ASSERT(i
+ num_recs
<= room
);
4161 xfs_warn(ip
->i_mount
,
4162 "corrupt dinode %Lu, (btree extents).",
4163 (unsigned long long) ip
->i_ino
);
4164 XFS_CORRUPTION_ERROR("xfs_bmap_read_extents(1)",
4165 XFS_ERRLEVEL_LOW
, ip
->i_mount
, block
);
4168 XFS_WANT_CORRUPTED_GOTO(
4169 xfs_bmap_sanity_check(mp
, bp
, 0),
4172 * Read-ahead the next leaf block, if any.
4174 nextbno
= be64_to_cpu(block
->bb_u
.l
.bb_rightsib
);
4175 if (nextbno
!= NULLFSBLOCK
)
4176 xfs_btree_reada_bufl(mp
, nextbno
, 1);
4178 * Copy records into the extent records.
4180 frp
= XFS_BMBT_REC_ADDR(mp
, block
, 1);
4182 for (j
= 0; j
< num_recs
; j
++, i
++, frp
++) {
4183 xfs_bmbt_rec_host_t
*trp
= xfs_iext_get_ext(ifp
, i
);
4184 trp
->l0
= be64_to_cpu(frp
->l0
);
4185 trp
->l1
= be64_to_cpu(frp
->l1
);
4187 if (exntf
== XFS_EXTFMT_NOSTATE
) {
4189 * Check all attribute bmap btree records and
4190 * any "older" data bmap btree records for a
4191 * set bit in the "extent flag" position.
4193 if (unlikely(xfs_check_nostate_extents(ifp
,
4194 start
, num_recs
))) {
4195 XFS_ERROR_REPORT("xfs_bmap_read_extents(2)",
4201 xfs_trans_brelse(tp
, bp
);
4204 * If we've reached the end, stop.
4206 if (bno
== NULLFSBLOCK
)
4208 if ((error
= xfs_btree_read_bufl(mp
, tp
, bno
, 0, &bp
,
4209 XFS_BMAP_BTREE_REF
)))
4211 block
= XFS_BUF_TO_BLOCK(bp
);
4213 ASSERT(i
== (ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
)));
4214 ASSERT(i
== XFS_IFORK_NEXTENTS(ip
, whichfork
));
4215 XFS_BMAP_TRACE_EXLIST(ip
, i
, whichfork
);
4218 xfs_trans_brelse(tp
, bp
);
4219 return XFS_ERROR(EFSCORRUPTED
);
4224 * Add bmap trace insert entries for all the contents of the extent records.
4227 xfs_bmap_trace_exlist(
4228 xfs_inode_t
*ip
, /* incore inode pointer */
4229 xfs_extnum_t cnt
, /* count of entries in the list */
4230 int whichfork
, /* data or attr fork */
4231 unsigned long caller_ip
)
4233 xfs_extnum_t idx
; /* extent record index */
4234 xfs_ifork_t
*ifp
; /* inode fork pointer */
4237 if (whichfork
== XFS_ATTR_FORK
)
4238 state
|= BMAP_ATTRFORK
;
4240 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4241 ASSERT(cnt
== (ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
)));
4242 for (idx
= 0; idx
< cnt
; idx
++)
4243 trace_xfs_extlist(ip
, idx
, whichfork
, caller_ip
);
4247 * Validate that the bmbt_irecs being returned from bmapi are valid
4248 * given the callers original parameters. Specifically check the
4249 * ranges of the returned irecs to ensure that they only extent beyond
4250 * the given parameters if the XFS_BMAPI_ENTIRE flag was set.
4253 xfs_bmap_validate_ret(
4257 xfs_bmbt_irec_t
*mval
,
4261 int i
; /* index to map values */
4263 ASSERT(ret_nmap
<= nmap
);
4265 for (i
= 0; i
< ret_nmap
; i
++) {
4266 ASSERT(mval
[i
].br_blockcount
> 0);
4267 if (!(flags
& XFS_BMAPI_ENTIRE
)) {
4268 ASSERT(mval
[i
].br_startoff
>= bno
);
4269 ASSERT(mval
[i
].br_blockcount
<= len
);
4270 ASSERT(mval
[i
].br_startoff
+ mval
[i
].br_blockcount
<=
4273 ASSERT(mval
[i
].br_startoff
< bno
+ len
);
4274 ASSERT(mval
[i
].br_startoff
+ mval
[i
].br_blockcount
>
4278 mval
[i
- 1].br_startoff
+ mval
[i
- 1].br_blockcount
==
4279 mval
[i
].br_startoff
);
4280 if ((flags
& XFS_BMAPI_WRITE
) && !(flags
& XFS_BMAPI_DELAY
))
4281 ASSERT(mval
[i
].br_startblock
!= DELAYSTARTBLOCK
&&
4282 mval
[i
].br_startblock
!= HOLESTARTBLOCK
);
4283 ASSERT(mval
[i
].br_state
== XFS_EXT_NORM
||
4284 mval
[i
].br_state
== XFS_EXT_UNWRITTEN
);
4291 * Map file blocks to filesystem blocks.
4292 * File range is given by the bno/len pair.
4293 * Adds blocks to file if a write ("flags & XFS_BMAPI_WRITE" set)
4294 * into a hole or past eof.
4295 * Only allocates blocks from a single allocation group,
4296 * to avoid locking problems.
4297 * The returned value in "firstblock" from the first call in a transaction
4298 * must be remembered and presented to subsequent calls in "firstblock".
4299 * An upper bound for the number of blocks to be allocated is supplied to
4300 * the first call in "total"; if no allocation group has that many free
4301 * blocks then the call will fail (return NULLFSBLOCK in "firstblock").
4305 xfs_trans_t
*tp
, /* transaction pointer */
4306 xfs_inode_t
*ip
, /* incore inode */
4307 xfs_fileoff_t bno
, /* starting file offs. mapped */
4308 xfs_filblks_t len
, /* length to map in file */
4309 int flags
, /* XFS_BMAPI_... */
4310 xfs_fsblock_t
*firstblock
, /* first allocated block
4311 controls a.g. for allocs */
4312 xfs_extlen_t total
, /* total blocks needed */
4313 xfs_bmbt_irec_t
*mval
, /* output: map values */
4314 int *nmap
, /* i/o: mval size/count */
4315 xfs_bmap_free_t
*flist
) /* i/o: list extents to free */
4317 xfs_fsblock_t abno
; /* allocated block number */
4318 xfs_extlen_t alen
; /* allocated extent length */
4319 xfs_fileoff_t aoff
; /* allocated file offset */
4320 xfs_bmalloca_t bma
= { 0 }; /* args for xfs_bmap_alloc */
4321 xfs_btree_cur_t
*cur
; /* bmap btree cursor */
4322 xfs_fileoff_t end
; /* end of mapped file region */
4323 int eof
; /* we've hit the end of extents */
4324 xfs_bmbt_rec_host_t
*ep
; /* extent record pointer */
4325 int error
; /* error return */
4326 xfs_bmbt_irec_t got
; /* current file extent record */
4327 xfs_ifork_t
*ifp
; /* inode fork pointer */
4328 xfs_extlen_t indlen
; /* indirect blocks length */
4329 xfs_extnum_t lastx
; /* last useful extent number */
4330 int logflags
; /* flags for transaction logging */
4331 xfs_extlen_t minleft
; /* min blocks left after allocation */
4332 xfs_extlen_t minlen
; /* min allocation size */
4333 xfs_mount_t
*mp
; /* xfs mount structure */
4334 int n
; /* current extent index */
4335 int nallocs
; /* number of extents alloc'd */
4336 xfs_extnum_t nextents
; /* number of extents in file */
4337 xfs_fileoff_t obno
; /* old block number (offset) */
4338 xfs_bmbt_irec_t prev
; /* previous file extent record */
4339 int tmp_logflags
; /* temp flags holder */
4340 int whichfork
; /* data or attr fork */
4341 char inhole
; /* current location is hole in file */
4342 char wasdelay
; /* old extent was delayed */
4343 char wr
; /* this is a write request */
4344 char rt
; /* this is a realtime file */
4346 xfs_fileoff_t orig_bno
; /* original block number value */
4347 int orig_flags
; /* original flags arg value */
4348 xfs_filblks_t orig_len
; /* original value of len arg */
4349 xfs_bmbt_irec_t
*orig_mval
; /* original value of mval */
4350 int orig_nmap
; /* original value of *nmap */
4359 ASSERT(*nmap
<= XFS_BMAP_MAX_NMAP
|| !(flags
& XFS_BMAPI_WRITE
));
4360 whichfork
= (flags
& XFS_BMAPI_ATTRFORK
) ?
4361 XFS_ATTR_FORK
: XFS_DATA_FORK
;
4363 if (unlikely(XFS_TEST_ERROR(
4364 (XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
&&
4365 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
&&
4366 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_LOCAL
),
4367 mp
, XFS_ERRTAG_BMAPIFORMAT
, XFS_RANDOM_BMAPIFORMAT
))) {
4368 XFS_ERROR_REPORT("xfs_bmapi", XFS_ERRLEVEL_LOW
, mp
);
4369 return XFS_ERROR(EFSCORRUPTED
);
4371 if (XFS_FORCED_SHUTDOWN(mp
))
4372 return XFS_ERROR(EIO
);
4373 rt
= (whichfork
== XFS_DATA_FORK
) && XFS_IS_REALTIME_INODE(ip
);
4374 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4375 ASSERT(ifp
->if_ext_max
==
4376 XFS_IFORK_SIZE(ip
, whichfork
) / (uint
)sizeof(xfs_bmbt_rec_t
));
4377 if ((wr
= (flags
& XFS_BMAPI_WRITE
)) != 0)
4378 XFS_STATS_INC(xs_blk_mapw
);
4380 XFS_STATS_INC(xs_blk_mapr
);
4382 * IGSTATE flag is used to combine extents which
4383 * differ only due to the state of the extents.
4384 * This technique is used from xfs_getbmap()
4385 * when the caller does not wish to see the
4386 * separation (which is the default).
4388 * This technique is also used when writing a
4389 * buffer which has been partially written,
4390 * (usually by being flushed during a chunkread),
4391 * to ensure one write takes place. This also
4392 * prevents a change in the xfs inode extents at
4393 * this time, intentionally. This change occurs
4394 * on completion of the write operation, in
4395 * xfs_strat_comp(), where the xfs_bmapi() call
4396 * is transactioned, and the extents combined.
4398 if ((flags
& XFS_BMAPI_IGSTATE
) && wr
) /* if writing unwritten space */
4399 wr
= 0; /* no allocations are allowed */
4400 ASSERT(wr
|| !(flags
& XFS_BMAPI_DELAY
));
4404 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
) {
4406 if ((error
= xfs_bmap_local_to_extents(tp
, ip
,
4407 firstblock
, total
, &logflags
, whichfork
)))
4410 if (wr
&& *firstblock
== NULLFSBLOCK
) {
4411 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_BTREE
)
4412 minleft
= be16_to_cpu(ifp
->if_broot
->bb_level
) + 1;
4417 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
4418 (error
= xfs_iread_extents(tp
, ip
, whichfork
)))
4420 ep
= xfs_bmap_search_extents(ip
, bno
, whichfork
, &eof
, &lastx
, &got
,
4422 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
4428 while (bno
< end
&& n
< *nmap
) {
4430 * Reading past eof, act as though there's a hole
4434 got
.br_startoff
= end
;
4435 inhole
= eof
|| got
.br_startoff
> bno
;
4436 wasdelay
= wr
&& !inhole
&& !(flags
& XFS_BMAPI_DELAY
) &&
4437 isnullstartblock(got
.br_startblock
);
4439 * First, deal with the hole before the allocated space
4440 * that we found, if any.
4442 if (wr
&& (inhole
|| wasdelay
)) {
4444 * For the wasdelay case, we could also just
4445 * allocate the stuff asked for in this bmap call
4446 * but that wouldn't be as good.
4449 alen
= (xfs_extlen_t
)got
.br_blockcount
;
4450 aoff
= got
.br_startoff
;
4451 if (lastx
!= NULLEXTNUM
&& lastx
) {
4452 ep
= xfs_iext_get_ext(ifp
, lastx
- 1);
4453 xfs_bmbt_get_all(ep
, &prev
);
4456 alen
= (xfs_extlen_t
)
4457 XFS_FILBLKS_MIN(len
, MAXEXTLEN
);
4459 alen
= (xfs_extlen_t
)
4460 XFS_FILBLKS_MIN(alen
,
4461 got
.br_startoff
- bno
);
4464 minlen
= (flags
& XFS_BMAPI_CONTIG
) ? alen
: 1;
4465 if (flags
& XFS_BMAPI_DELAY
) {
4468 /* Figure out the extent size, adjust alen */
4469 extsz
= xfs_get_extsz_hint(ip
);
4472 * make sure we don't exceed a single
4473 * extent length when we align the
4474 * extent by reducing length we are
4475 * going to allocate by the maximum
4476 * amount extent size aligment may
4479 alen
= XFS_FILBLKS_MIN(len
,
4480 MAXEXTLEN
- (2 * extsz
- 1));
4481 error
= xfs_bmap_extsize_align(mp
,
4484 flags
&XFS_BMAPI_DELAY
,
4485 flags
&XFS_BMAPI_CONVERT
,
4491 extsz
= alen
/ mp
->m_sb
.sb_rextsize
;
4494 * Make a transaction-less quota reservation for
4495 * delayed allocation blocks. This number gets
4496 * adjusted later. We return if we haven't
4497 * allocated blocks already inside this loop.
4499 error
= xfs_trans_reserve_quota_nblks(
4500 NULL
, ip
, (long)alen
, 0,
4501 rt
? XFS_QMOPT_RES_RTBLKS
:
4502 XFS_QMOPT_RES_REGBLKS
);
4506 ASSERT(cur
== NULL
);
4513 * Split changing sb for alen and indlen since
4514 * they could be coming from different places.
4516 indlen
= (xfs_extlen_t
)
4517 xfs_bmap_worst_indlen(ip
, alen
);
4521 error
= xfs_mod_incore_sb(mp
,
4523 -((int64_t)extsz
), 0);
4525 error
= xfs_icsb_modify_counters(mp
,
4527 -((int64_t)alen
), 0);
4530 error
= xfs_icsb_modify_counters(mp
,
4532 -((int64_t)indlen
), 0);
4534 xfs_mod_incore_sb(mp
,
4538 xfs_icsb_modify_counters(mp
,
4544 if (XFS_IS_QUOTA_ON(mp
))
4545 /* unreserve the blocks now */
4547 xfs_trans_unreserve_quota_nblks(
4550 XFS_QMOPT_RES_RTBLKS
:
4551 XFS_QMOPT_RES_REGBLKS
);
4555 ip
->i_delayed_blks
+= alen
;
4556 abno
= nullstartblock(indlen
);
4559 * If first time, allocate and fill in
4560 * once-only bma fields.
4562 if (bma
.ip
== NULL
) {
4570 /* Indicate if this is the first user data
4571 * in the file, or just any user data.
4573 if (!(flags
& XFS_BMAPI_METADATA
)) {
4574 bma
.userdata
= (aoff
== 0) ?
4575 XFS_ALLOC_INITIAL_USER_DATA
:
4579 * Fill in changeable bma fields.
4582 bma
.firstblock
= *firstblock
;
4585 bma
.conv
= !!(flags
& XFS_BMAPI_CONVERT
);
4586 bma
.wasdel
= wasdelay
;
4587 bma
.minlen
= minlen
;
4588 bma
.low
= flist
->xbf_low
;
4589 bma
.minleft
= minleft
;
4591 * Only want to do the alignment at the
4592 * eof if it is userdata and allocation length
4593 * is larger than a stripe unit.
4595 if (mp
->m_dalign
&& alen
>= mp
->m_dalign
&&
4596 (!(flags
& XFS_BMAPI_METADATA
)) &&
4597 (whichfork
== XFS_DATA_FORK
)) {
4598 if ((error
= xfs_bmap_isaeof(ip
, aoff
,
4599 whichfork
, &bma
.aeof
)))
4606 if ((error
= xfs_bmap_alloc(&bma
)))
4609 * Copy out result fields.
4612 if ((flist
->xbf_low
= bma
.low
))
4616 ASSERT(*firstblock
== NULLFSBLOCK
||
4617 XFS_FSB_TO_AGNO(mp
, *firstblock
) ==
4618 XFS_FSB_TO_AGNO(mp
, bma
.firstblock
) ||
4620 XFS_FSB_TO_AGNO(mp
, *firstblock
) <
4621 XFS_FSB_TO_AGNO(mp
, bma
.firstblock
)));
4622 *firstblock
= bma
.firstblock
;
4624 cur
->bc_private
.b
.firstblock
=
4626 if (abno
== NULLFSBLOCK
)
4628 if ((ifp
->if_flags
& XFS_IFBROOT
) && !cur
) {
4629 cur
= xfs_bmbt_init_cursor(mp
, tp
,
4631 cur
->bc_private
.b
.firstblock
=
4633 cur
->bc_private
.b
.flist
= flist
;
4636 * Bump the number of extents we've allocated
4642 cur
->bc_private
.b
.flags
=
4643 wasdelay
? XFS_BTCUR_BPRV_WASDEL
: 0;
4644 got
.br_startoff
= aoff
;
4645 got
.br_startblock
= abno
;
4646 got
.br_blockcount
= alen
;
4647 got
.br_state
= XFS_EXT_NORM
; /* assume normal */
4649 * Determine state of extent, and the filesystem.
4650 * A wasdelay extent has been initialized, so
4651 * shouldn't be flagged as unwritten.
4653 if (wr
&& xfs_sb_version_hasextflgbit(&mp
->m_sb
)) {
4654 if (!wasdelay
&& (flags
& XFS_BMAPI_PREALLOC
))
4655 got
.br_state
= XFS_EXT_UNWRITTEN
;
4657 error
= xfs_bmap_add_extent(ip
, &lastx
, &cur
, &got
,
4658 firstblock
, flist
, &tmp_logflags
,
4660 logflags
|= tmp_logflags
;
4663 ep
= xfs_iext_get_ext(ifp
, lastx
);
4664 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
4665 xfs_bmbt_get_all(ep
, &got
);
4666 ASSERT(got
.br_startoff
<= aoff
);
4667 ASSERT(got
.br_startoff
+ got
.br_blockcount
>=
4670 if (flags
& XFS_BMAPI_DELAY
) {
4671 ASSERT(isnullstartblock(got
.br_startblock
));
4672 ASSERT(startblockval(got
.br_startblock
) > 0);
4674 ASSERT(got
.br_state
== XFS_EXT_NORM
||
4675 got
.br_state
== XFS_EXT_UNWRITTEN
);
4678 * Fall down into the found allocated space case.
4680 } else if (inhole
) {
4682 * Reading in a hole.
4684 mval
->br_startoff
= bno
;
4685 mval
->br_startblock
= HOLESTARTBLOCK
;
4686 mval
->br_blockcount
=
4687 XFS_FILBLKS_MIN(len
, got
.br_startoff
- bno
);
4688 mval
->br_state
= XFS_EXT_NORM
;
4689 bno
+= mval
->br_blockcount
;
4690 len
-= mval
->br_blockcount
;
4696 * Then deal with the allocated space we found.
4699 if (!(flags
& XFS_BMAPI_ENTIRE
) &&
4700 (got
.br_startoff
+ got
.br_blockcount
> obno
)) {
4703 ASSERT((bno
>= obno
) || (n
== 0));
4705 mval
->br_startoff
= bno
;
4706 if (isnullstartblock(got
.br_startblock
)) {
4707 ASSERT(!wr
|| (flags
& XFS_BMAPI_DELAY
));
4708 mval
->br_startblock
= DELAYSTARTBLOCK
;
4710 mval
->br_startblock
=
4712 (bno
- got
.br_startoff
);
4714 * Return the minimum of what we got and what we
4715 * asked for for the length. We can use the len
4716 * variable here because it is modified below
4717 * and we could have been there before coming
4718 * here if the first part of the allocation
4719 * didn't overlap what was asked for.
4721 mval
->br_blockcount
=
4722 XFS_FILBLKS_MIN(end
- bno
, got
.br_blockcount
-
4723 (bno
- got
.br_startoff
));
4724 mval
->br_state
= got
.br_state
;
4725 ASSERT(mval
->br_blockcount
<= len
);
4728 if (isnullstartblock(mval
->br_startblock
)) {
4729 ASSERT(!wr
|| (flags
& XFS_BMAPI_DELAY
));
4730 mval
->br_startblock
= DELAYSTARTBLOCK
;
4735 * Check if writing previously allocated but
4736 * unwritten extents.
4739 ((mval
->br_state
== XFS_EXT_UNWRITTEN
&&
4740 ((flags
& (XFS_BMAPI_PREALLOC
|XFS_BMAPI_DELAY
)) == 0)) ||
4741 (mval
->br_state
== XFS_EXT_NORM
&&
4742 ((flags
& (XFS_BMAPI_PREALLOC
|XFS_BMAPI_CONVERT
)) ==
4743 (XFS_BMAPI_PREALLOC
|XFS_BMAPI_CONVERT
))))) {
4745 * Modify (by adding) the state flag, if writing.
4747 ASSERT(mval
->br_blockcount
<= len
);
4748 if ((ifp
->if_flags
& XFS_IFBROOT
) && !cur
) {
4749 cur
= xfs_bmbt_init_cursor(mp
,
4751 cur
->bc_private
.b
.firstblock
=
4753 cur
->bc_private
.b
.flist
= flist
;
4755 mval
->br_state
= (mval
->br_state
== XFS_EXT_UNWRITTEN
)
4757 : XFS_EXT_UNWRITTEN
;
4758 error
= xfs_bmap_add_extent(ip
, &lastx
, &cur
, mval
,
4759 firstblock
, flist
, &tmp_logflags
,
4761 logflags
|= tmp_logflags
;
4764 ep
= xfs_iext_get_ext(ifp
, lastx
);
4765 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
4766 xfs_bmbt_get_all(ep
, &got
);
4768 * We may have combined previously unwritten
4769 * space with written space, so generate
4772 if (mval
->br_blockcount
< len
)
4776 ASSERT((flags
& XFS_BMAPI_ENTIRE
) ||
4777 ((mval
->br_startoff
+ mval
->br_blockcount
) <= end
));
4778 ASSERT((flags
& XFS_BMAPI_ENTIRE
) ||
4779 (mval
->br_blockcount
<= len
) ||
4780 (mval
->br_startoff
< obno
));
4781 bno
= mval
->br_startoff
+ mval
->br_blockcount
;
4783 if (n
> 0 && mval
->br_startoff
== mval
[-1].br_startoff
) {
4784 ASSERT(mval
->br_startblock
== mval
[-1].br_startblock
);
4785 ASSERT(mval
->br_blockcount
> mval
[-1].br_blockcount
);
4786 ASSERT(mval
->br_state
== mval
[-1].br_state
);
4787 mval
[-1].br_blockcount
= mval
->br_blockcount
;
4788 mval
[-1].br_state
= mval
->br_state
;
4789 } else if (n
> 0 && mval
->br_startblock
!= DELAYSTARTBLOCK
&&
4790 mval
[-1].br_startblock
!= DELAYSTARTBLOCK
&&
4791 mval
[-1].br_startblock
!= HOLESTARTBLOCK
&&
4792 mval
->br_startblock
==
4793 mval
[-1].br_startblock
+ mval
[-1].br_blockcount
&&
4794 ((flags
& XFS_BMAPI_IGSTATE
) ||
4795 mval
[-1].br_state
== mval
->br_state
)) {
4796 ASSERT(mval
->br_startoff
==
4797 mval
[-1].br_startoff
+ mval
[-1].br_blockcount
);
4798 mval
[-1].br_blockcount
+= mval
->br_blockcount
;
4800 mval
->br_startblock
== DELAYSTARTBLOCK
&&
4801 mval
[-1].br_startblock
== DELAYSTARTBLOCK
&&
4802 mval
->br_startoff
==
4803 mval
[-1].br_startoff
+ mval
[-1].br_blockcount
) {
4804 mval
[-1].br_blockcount
+= mval
->br_blockcount
;
4805 mval
[-1].br_state
= mval
->br_state
;
4806 } else if (!((n
== 0) &&
4807 ((mval
->br_startoff
+ mval
->br_blockcount
) <=
4813 * If we're done, stop now. Stop when we've allocated
4814 * XFS_BMAP_MAX_NMAP extents no matter what. Otherwise
4815 * the transaction may get too big.
4817 if (bno
>= end
|| n
>= *nmap
|| nallocs
>= *nmap
)
4820 * Else go on to the next record.
4823 if (++lastx
< nextents
) {
4824 ep
= xfs_iext_get_ext(ifp
, lastx
);
4825 xfs_bmbt_get_all(ep
, &got
);
4832 * Transform from btree to extents, give it cur.
4834 if (tp
&& XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_BTREE
&&
4835 XFS_IFORK_NEXTENTS(ip
, whichfork
) <= ifp
->if_ext_max
) {
4837 error
= xfs_bmap_btree_to_extents(tp
, ip
, cur
,
4838 &tmp_logflags
, whichfork
);
4839 logflags
|= tmp_logflags
;
4843 ASSERT(ifp
->if_ext_max
==
4844 XFS_IFORK_SIZE(ip
, whichfork
) / (uint
)sizeof(xfs_bmbt_rec_t
));
4845 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
||
4846 XFS_IFORK_NEXTENTS(ip
, whichfork
) > ifp
->if_ext_max
);
4850 * Log everything. Do this after conversion, there's no point in
4851 * logging the extent records if we've converted to btree format.
4853 if ((logflags
& xfs_ilog_fext(whichfork
)) &&
4854 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
)
4855 logflags
&= ~xfs_ilog_fext(whichfork
);
4856 else if ((logflags
& xfs_ilog_fbroot(whichfork
)) &&
4857 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
)
4858 logflags
&= ~xfs_ilog_fbroot(whichfork
);
4860 * Log whatever the flags say, even if error. Otherwise we might miss
4861 * detecting a case where the data is changed, there's an error,
4862 * and it's not logged so we don't shutdown when we should.
4866 xfs_trans_log_inode(tp
, ip
, logflags
);
4870 ASSERT(*firstblock
== NULLFSBLOCK
||
4871 XFS_FSB_TO_AGNO(mp
, *firstblock
) ==
4873 cur
->bc_private
.b
.firstblock
) ||
4875 XFS_FSB_TO_AGNO(mp
, *firstblock
) <
4877 cur
->bc_private
.b
.firstblock
)));
4878 *firstblock
= cur
->bc_private
.b
.firstblock
;
4880 xfs_btree_del_cursor(cur
,
4881 error
? XFS_BTREE_ERROR
: XFS_BTREE_NOERROR
);
4884 xfs_bmap_validate_ret(orig_bno
, orig_len
, orig_flags
, orig_mval
,
4890 * Map file blocks to filesystem blocks, simple version.
4891 * One block (extent) only, read-only.
4892 * For flags, only the XFS_BMAPI_ATTRFORK flag is examined.
4893 * For the other flag values, the effect is as if XFS_BMAPI_METADATA
4894 * was set and all the others were clear.
4898 xfs_trans_t
*tp
, /* transaction pointer */
4899 xfs_inode_t
*ip
, /* incore inode */
4900 int whichfork
, /* data or attr fork */
4901 xfs_fsblock_t
*fsb
, /* output: mapped block */
4902 xfs_fileoff_t bno
) /* starting file offs. mapped */
4904 int eof
; /* we've hit the end of extents */
4905 int error
; /* error return */
4906 xfs_bmbt_irec_t got
; /* current file extent record */
4907 xfs_ifork_t
*ifp
; /* inode fork pointer */
4908 xfs_extnum_t lastx
; /* last useful extent number */
4909 xfs_bmbt_irec_t prev
; /* previous file extent record */
4911 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4913 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
&&
4914 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
)) {
4915 XFS_ERROR_REPORT("xfs_bmapi_single", XFS_ERRLEVEL_LOW
,
4917 return XFS_ERROR(EFSCORRUPTED
);
4919 if (XFS_FORCED_SHUTDOWN(ip
->i_mount
))
4920 return XFS_ERROR(EIO
);
4921 XFS_STATS_INC(xs_blk_mapr
);
4922 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
4923 (error
= xfs_iread_extents(tp
, ip
, whichfork
)))
4925 (void)xfs_bmap_search_extents(ip
, bno
, whichfork
, &eof
, &lastx
, &got
,
4928 * Reading past eof, act as though there's a hole
4931 if (eof
|| got
.br_startoff
> bno
) {
4935 ASSERT(!isnullstartblock(got
.br_startblock
));
4936 ASSERT(bno
< got
.br_startoff
+ got
.br_blockcount
);
4937 *fsb
= got
.br_startblock
+ (bno
- got
.br_startoff
);
4942 * Unmap (remove) blocks from a file.
4943 * If nexts is nonzero then the number of extents to remove is limited to
4944 * that value. If not all extents in the block range can be removed then
4949 xfs_trans_t
*tp
, /* transaction pointer */
4950 struct xfs_inode
*ip
, /* incore inode */
4951 xfs_fileoff_t bno
, /* starting offset to unmap */
4952 xfs_filblks_t len
, /* length to unmap in file */
4953 int flags
, /* misc flags */
4954 xfs_extnum_t nexts
, /* number of extents max */
4955 xfs_fsblock_t
*firstblock
, /* first allocated block
4956 controls a.g. for allocs */
4957 xfs_bmap_free_t
*flist
, /* i/o: list extents to free */
4958 int *done
) /* set if not done yet */
4960 xfs_btree_cur_t
*cur
; /* bmap btree cursor */
4961 xfs_bmbt_irec_t del
; /* extent being deleted */
4962 int eof
; /* is deleting at eof */
4963 xfs_bmbt_rec_host_t
*ep
; /* extent record pointer */
4964 int error
; /* error return value */
4965 xfs_extnum_t extno
; /* extent number in list */
4966 xfs_bmbt_irec_t got
; /* current extent record */
4967 xfs_ifork_t
*ifp
; /* inode fork pointer */
4968 int isrt
; /* freeing in rt area */
4969 xfs_extnum_t lastx
; /* last extent index used */
4970 int logflags
; /* transaction logging flags */
4971 xfs_extlen_t mod
; /* rt extent offset */
4972 xfs_mount_t
*mp
; /* mount structure */
4973 xfs_extnum_t nextents
; /* number of file extents */
4974 xfs_bmbt_irec_t prev
; /* previous extent record */
4975 xfs_fileoff_t start
; /* first file offset deleted */
4976 int tmp_logflags
; /* partial logging flags */
4977 int wasdel
; /* was a delayed alloc extent */
4978 int whichfork
; /* data or attribute fork */
4981 trace_xfs_bunmap(ip
, bno
, len
, flags
, _RET_IP_
);
4983 whichfork
= (flags
& XFS_BMAPI_ATTRFORK
) ?
4984 XFS_ATTR_FORK
: XFS_DATA_FORK
;
4985 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4987 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
&&
4988 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
)) {
4989 XFS_ERROR_REPORT("xfs_bunmapi", XFS_ERRLEVEL_LOW
,
4991 return XFS_ERROR(EFSCORRUPTED
);
4994 if (XFS_FORCED_SHUTDOWN(mp
))
4995 return XFS_ERROR(EIO
);
4999 ASSERT(ifp
->if_ext_max
==
5000 XFS_IFORK_SIZE(ip
, whichfork
) / (uint
)sizeof(xfs_bmbt_rec_t
));
5001 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
5002 (error
= xfs_iread_extents(tp
, ip
, whichfork
)))
5004 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
5005 if (nextents
== 0) {
5009 XFS_STATS_INC(xs_blk_unmap
);
5010 isrt
= (whichfork
== XFS_DATA_FORK
) && XFS_IS_REALTIME_INODE(ip
);
5012 bno
= start
+ len
- 1;
5013 ep
= xfs_bmap_search_extents(ip
, bno
, whichfork
, &eof
, &lastx
, &got
,
5017 * Check to see if the given block number is past the end of the
5018 * file, back up to the last block if so...
5021 ep
= xfs_iext_get_ext(ifp
, --lastx
);
5022 xfs_bmbt_get_all(ep
, &got
);
5023 bno
= got
.br_startoff
+ got
.br_blockcount
- 1;
5026 if (ifp
->if_flags
& XFS_IFBROOT
) {
5027 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_BTREE
);
5028 cur
= xfs_bmbt_init_cursor(mp
, tp
, ip
, whichfork
);
5029 cur
->bc_private
.b
.firstblock
= *firstblock
;
5030 cur
->bc_private
.b
.flist
= flist
;
5031 cur
->bc_private
.b
.flags
= 0;
5035 while (bno
!= (xfs_fileoff_t
)-1 && bno
>= start
&& lastx
>= 0 &&
5036 (nexts
== 0 || extno
< nexts
)) {
5038 * Is the found extent after a hole in which bno lives?
5039 * Just back up to the previous extent, if so.
5041 if (got
.br_startoff
> bno
) {
5044 ep
= xfs_iext_get_ext(ifp
, lastx
);
5045 xfs_bmbt_get_all(ep
, &got
);
5048 * Is the last block of this extent before the range
5049 * we're supposed to delete? If so, we're done.
5051 bno
= XFS_FILEOFF_MIN(bno
,
5052 got
.br_startoff
+ got
.br_blockcount
- 1);
5056 * Then deal with the (possibly delayed) allocated space
5061 wasdel
= isnullstartblock(del
.br_startblock
);
5062 if (got
.br_startoff
< start
) {
5063 del
.br_startoff
= start
;
5064 del
.br_blockcount
-= start
- got
.br_startoff
;
5066 del
.br_startblock
+= start
- got
.br_startoff
;
5068 if (del
.br_startoff
+ del
.br_blockcount
> bno
+ 1)
5069 del
.br_blockcount
= bno
+ 1 - del
.br_startoff
;
5070 sum
= del
.br_startblock
+ del
.br_blockcount
;
5072 (mod
= do_mod(sum
, mp
->m_sb
.sb_rextsize
))) {
5074 * Realtime extent not lined up at the end.
5075 * The extent could have been split into written
5076 * and unwritten pieces, or we could just be
5077 * unmapping part of it. But we can't really
5078 * get rid of part of a realtime extent.
5080 if (del
.br_state
== XFS_EXT_UNWRITTEN
||
5081 !xfs_sb_version_hasextflgbit(&mp
->m_sb
)) {
5083 * This piece is unwritten, or we're not
5084 * using unwritten extents. Skip over it.
5087 bno
-= mod
> del
.br_blockcount
?
5088 del
.br_blockcount
: mod
;
5089 if (bno
< got
.br_startoff
) {
5091 xfs_bmbt_get_all(xfs_iext_get_ext(
5097 * It's written, turn it unwritten.
5098 * This is better than zeroing it.
5100 ASSERT(del
.br_state
== XFS_EXT_NORM
);
5101 ASSERT(xfs_trans_get_block_res(tp
) > 0);
5103 * If this spans a realtime extent boundary,
5104 * chop it back to the start of the one we end at.
5106 if (del
.br_blockcount
> mod
) {
5107 del
.br_startoff
+= del
.br_blockcount
- mod
;
5108 del
.br_startblock
+= del
.br_blockcount
- mod
;
5109 del
.br_blockcount
= mod
;
5111 del
.br_state
= XFS_EXT_UNWRITTEN
;
5112 error
= xfs_bmap_add_extent(ip
, &lastx
, &cur
, &del
,
5113 firstblock
, flist
, &logflags
,
5119 if (isrt
&& (mod
= do_mod(del
.br_startblock
, mp
->m_sb
.sb_rextsize
))) {
5121 * Realtime extent is lined up at the end but not
5122 * at the front. We'll get rid of full extents if
5125 mod
= mp
->m_sb
.sb_rextsize
- mod
;
5126 if (del
.br_blockcount
> mod
) {
5127 del
.br_blockcount
-= mod
;
5128 del
.br_startoff
+= mod
;
5129 del
.br_startblock
+= mod
;
5130 } else if ((del
.br_startoff
== start
&&
5131 (del
.br_state
== XFS_EXT_UNWRITTEN
||
5132 xfs_trans_get_block_res(tp
) == 0)) ||
5133 !xfs_sb_version_hasextflgbit(&mp
->m_sb
)) {
5135 * Can't make it unwritten. There isn't
5136 * a full extent here so just skip it.
5138 ASSERT(bno
>= del
.br_blockcount
);
5139 bno
-= del
.br_blockcount
;
5140 if (got
.br_startoff
> bno
) {
5142 ep
= xfs_iext_get_ext(ifp
,
5144 xfs_bmbt_get_all(ep
, &got
);
5148 } else if (del
.br_state
== XFS_EXT_UNWRITTEN
) {
5150 * This one is already unwritten.
5151 * It must have a written left neighbor.
5152 * Unwrite the killed part of that one and
5156 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
,
5158 ASSERT(prev
.br_state
== XFS_EXT_NORM
);
5159 ASSERT(!isnullstartblock(prev
.br_startblock
));
5160 ASSERT(del
.br_startblock
==
5161 prev
.br_startblock
+ prev
.br_blockcount
);
5162 if (prev
.br_startoff
< start
) {
5163 mod
= start
- prev
.br_startoff
;
5164 prev
.br_blockcount
-= mod
;
5165 prev
.br_startblock
+= mod
;
5166 prev
.br_startoff
= start
;
5168 prev
.br_state
= XFS_EXT_UNWRITTEN
;
5170 error
= xfs_bmap_add_extent(ip
, &lastx
, &cur
,
5171 &prev
, firstblock
, flist
, &logflags
,
5177 ASSERT(del
.br_state
== XFS_EXT_NORM
);
5178 del
.br_state
= XFS_EXT_UNWRITTEN
;
5179 error
= xfs_bmap_add_extent(ip
, &lastx
, &cur
,
5180 &del
, firstblock
, flist
, &logflags
,
5188 ASSERT(startblockval(del
.br_startblock
) > 0);
5189 /* Update realtime/data freespace, unreserve quota */
5191 xfs_filblks_t rtexts
;
5193 rtexts
= XFS_FSB_TO_B(mp
, del
.br_blockcount
);
5194 do_div(rtexts
, mp
->m_sb
.sb_rextsize
);
5195 xfs_mod_incore_sb(mp
, XFS_SBS_FREXTENTS
,
5196 (int64_t)rtexts
, 0);
5197 (void)xfs_trans_reserve_quota_nblks(NULL
,
5198 ip
, -((long)del
.br_blockcount
), 0,
5199 XFS_QMOPT_RES_RTBLKS
);
5201 xfs_icsb_modify_counters(mp
, XFS_SBS_FDBLOCKS
,
5202 (int64_t)del
.br_blockcount
, 0);
5203 (void)xfs_trans_reserve_quota_nblks(NULL
,
5204 ip
, -((long)del
.br_blockcount
), 0,
5205 XFS_QMOPT_RES_REGBLKS
);
5207 ip
->i_delayed_blks
-= del
.br_blockcount
;
5209 cur
->bc_private
.b
.flags
|=
5210 XFS_BTCUR_BPRV_WASDEL
;
5212 cur
->bc_private
.b
.flags
&= ~XFS_BTCUR_BPRV_WASDEL
;
5214 * If it's the case where the directory code is running
5215 * with no block reservation, and the deleted block is in
5216 * the middle of its extent, and the resulting insert
5217 * of an extent would cause transformation to btree format,
5218 * then reject it. The calling code will then swap
5219 * blocks around instead.
5220 * We have to do this now, rather than waiting for the
5221 * conversion to btree format, since the transaction
5224 if (!wasdel
&& xfs_trans_get_block_res(tp
) == 0 &&
5225 XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_EXTENTS
&&
5226 XFS_IFORK_NEXTENTS(ip
, whichfork
) >= ifp
->if_ext_max
&&
5227 del
.br_startoff
> got
.br_startoff
&&
5228 del
.br_startoff
+ del
.br_blockcount
<
5229 got
.br_startoff
+ got
.br_blockcount
) {
5230 error
= XFS_ERROR(ENOSPC
);
5233 error
= xfs_bmap_del_extent(ip
, tp
, &lastx
, flist
, cur
, &del
,
5234 &tmp_logflags
, whichfork
);
5235 logflags
|= tmp_logflags
;
5238 bno
= del
.br_startoff
- 1;
5241 * If not done go on to the next (previous) record.
5243 if (bno
!= (xfs_fileoff_t
)-1 && bno
>= start
) {
5245 ep
= xfs_iext_get_ext(ifp
, lastx
);
5246 if (xfs_bmbt_get_startoff(ep
) > bno
) {
5248 ep
= xfs_iext_get_ext(ifp
,
5251 xfs_bmbt_get_all(ep
, &got
);
5256 *done
= bno
== (xfs_fileoff_t
)-1 || bno
< start
|| lastx
< 0;
5257 ASSERT(ifp
->if_ext_max
==
5258 XFS_IFORK_SIZE(ip
, whichfork
) / (uint
)sizeof(xfs_bmbt_rec_t
));
5260 * Convert to a btree if necessary.
5262 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_EXTENTS
&&
5263 XFS_IFORK_NEXTENTS(ip
, whichfork
) > ifp
->if_ext_max
) {
5264 ASSERT(cur
== NULL
);
5265 error
= xfs_bmap_extents_to_btree(tp
, ip
, firstblock
, flist
,
5266 &cur
, 0, &tmp_logflags
, whichfork
);
5267 logflags
|= tmp_logflags
;
5272 * transform from btree to extents, give it cur
5274 else if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_BTREE
&&
5275 XFS_IFORK_NEXTENTS(ip
, whichfork
) <= ifp
->if_ext_max
) {
5276 ASSERT(cur
!= NULL
);
5277 error
= xfs_bmap_btree_to_extents(tp
, ip
, cur
, &tmp_logflags
,
5279 logflags
|= tmp_logflags
;
5284 * transform from extents to local?
5286 ASSERT(ifp
->if_ext_max
==
5287 XFS_IFORK_SIZE(ip
, whichfork
) / (uint
)sizeof(xfs_bmbt_rec_t
));
5291 * Log everything. Do this after conversion, there's no point in
5292 * logging the extent records if we've converted to btree format.
5294 if ((logflags
& xfs_ilog_fext(whichfork
)) &&
5295 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
)
5296 logflags
&= ~xfs_ilog_fext(whichfork
);
5297 else if ((logflags
& xfs_ilog_fbroot(whichfork
)) &&
5298 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
)
5299 logflags
&= ~xfs_ilog_fbroot(whichfork
);
5301 * Log inode even in the error case, if the transaction
5302 * is dirty we'll need to shut down the filesystem.
5305 xfs_trans_log_inode(tp
, ip
, logflags
);
5308 *firstblock
= cur
->bc_private
.b
.firstblock
;
5309 cur
->bc_private
.b
.allocated
= 0;
5311 xfs_btree_del_cursor(cur
,
5312 error
? XFS_BTREE_ERROR
: XFS_BTREE_NOERROR
);
5318 * returns 1 for success, 0 if we failed to map the extent.
5321 xfs_getbmapx_fix_eof_hole(
5322 xfs_inode_t
*ip
, /* xfs incore inode pointer */
5323 struct getbmapx
*out
, /* output structure */
5324 int prealloced
, /* this is a file with
5325 * preallocated data space */
5326 __int64_t end
, /* last block requested */
5327 xfs_fsblock_t startblock
)
5330 xfs_mount_t
*mp
; /* file system mount point */
5331 xfs_ifork_t
*ifp
; /* inode fork pointer */
5332 xfs_extnum_t lastx
; /* last extent pointer */
5333 xfs_fileoff_t fileblock
;
5335 if (startblock
== HOLESTARTBLOCK
) {
5337 out
->bmv_block
= -1;
5338 fixlen
= XFS_FSB_TO_BB(mp
, XFS_B_TO_FSB(mp
, ip
->i_size
));
5339 fixlen
-= out
->bmv_offset
;
5340 if (prealloced
&& out
->bmv_offset
+ out
->bmv_length
== end
) {
5341 /* Came to hole at EOF. Trim it. */
5344 out
->bmv_length
= fixlen
;
5347 if (startblock
== DELAYSTARTBLOCK
)
5348 out
->bmv_block
= -2;
5350 out
->bmv_block
= xfs_fsb_to_db(ip
, startblock
);
5351 fileblock
= XFS_BB_TO_FSB(ip
->i_mount
, out
->bmv_offset
);
5352 ifp
= XFS_IFORK_PTR(ip
, XFS_DATA_FORK
);
5353 if (xfs_iext_bno_to_ext(ifp
, fileblock
, &lastx
) &&
5354 (lastx
== (ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
))-1))
5355 out
->bmv_oflags
|= BMV_OF_LAST
;
5362 * Get inode's extents as described in bmv, and format for output.
5363 * Calls formatter to fill the user's buffer until all extents
5364 * are mapped, until the passed-in bmv->bmv_count slots have
5365 * been filled, or until the formatter short-circuits the loop,
5366 * if it is tracking filled-in extents on its own.
5368 int /* error code */
5371 struct getbmapx
*bmv
, /* user bmap structure */
5372 xfs_bmap_format_t formatter
, /* format to user */
5373 void *arg
) /* formatter arg */
5375 __int64_t bmvend
; /* last block requested */
5376 int error
= 0; /* return value */
5377 __int64_t fixlen
; /* length for -1 case */
5378 int i
; /* extent number */
5379 int lock
; /* lock state */
5380 xfs_bmbt_irec_t
*map
; /* buffer for user's data */
5381 xfs_mount_t
*mp
; /* file system mount point */
5382 int nex
; /* # of user extents can do */
5383 int nexleft
; /* # of user extents left */
5384 int subnex
; /* # of bmapi's can do */
5385 int nmap
; /* number of map entries */
5386 struct getbmapx
*out
; /* output structure */
5387 int whichfork
; /* data or attr fork */
5388 int prealloced
; /* this is a file with
5389 * preallocated data space */
5390 int iflags
; /* interface flags */
5391 int bmapi_flags
; /* flags for xfs_bmapi */
5395 iflags
= bmv
->bmv_iflags
;
5396 whichfork
= iflags
& BMV_IF_ATTRFORK
? XFS_ATTR_FORK
: XFS_DATA_FORK
;
5398 if (whichfork
== XFS_ATTR_FORK
) {
5399 if (XFS_IFORK_Q(ip
)) {
5400 if (ip
->i_d
.di_aformat
!= XFS_DINODE_FMT_EXTENTS
&&
5401 ip
->i_d
.di_aformat
!= XFS_DINODE_FMT_BTREE
&&
5402 ip
->i_d
.di_aformat
!= XFS_DINODE_FMT_LOCAL
)
5403 return XFS_ERROR(EINVAL
);
5404 } else if (unlikely(
5405 ip
->i_d
.di_aformat
!= 0 &&
5406 ip
->i_d
.di_aformat
!= XFS_DINODE_FMT_EXTENTS
)) {
5407 XFS_ERROR_REPORT("xfs_getbmap", XFS_ERRLEVEL_LOW
,
5409 return XFS_ERROR(EFSCORRUPTED
);
5415 if (ip
->i_d
.di_format
!= XFS_DINODE_FMT_EXTENTS
&&
5416 ip
->i_d
.di_format
!= XFS_DINODE_FMT_BTREE
&&
5417 ip
->i_d
.di_format
!= XFS_DINODE_FMT_LOCAL
)
5418 return XFS_ERROR(EINVAL
);
5420 if (xfs_get_extsz_hint(ip
) ||
5421 ip
->i_d
.di_flags
& (XFS_DIFLAG_PREALLOC
|XFS_DIFLAG_APPEND
)){
5423 fixlen
= XFS_MAXIOFFSET(mp
);
5426 fixlen
= ip
->i_size
;
5430 if (bmv
->bmv_length
== -1) {
5431 fixlen
= XFS_FSB_TO_BB(mp
, XFS_B_TO_FSB(mp
, fixlen
));
5433 max_t(__int64_t
, fixlen
- bmv
->bmv_offset
, 0);
5434 } else if (bmv
->bmv_length
== 0) {
5435 bmv
->bmv_entries
= 0;
5437 } else if (bmv
->bmv_length
< 0) {
5438 return XFS_ERROR(EINVAL
);
5441 nex
= bmv
->bmv_count
- 1;
5443 return XFS_ERROR(EINVAL
);
5444 bmvend
= bmv
->bmv_offset
+ bmv
->bmv_length
;
5447 if (bmv
->bmv_count
> ULONG_MAX
/ sizeof(struct getbmapx
))
5448 return XFS_ERROR(ENOMEM
);
5449 out
= kmem_zalloc(bmv
->bmv_count
* sizeof(struct getbmapx
), KM_MAYFAIL
);
5451 return XFS_ERROR(ENOMEM
);
5453 xfs_ilock(ip
, XFS_IOLOCK_SHARED
);
5454 if (whichfork
== XFS_DATA_FORK
&& !(iflags
& BMV_IF_DELALLOC
)) {
5455 if (ip
->i_delayed_blks
|| ip
->i_size
> ip
->i_d
.di_size
) {
5456 error
= xfs_flush_pages(ip
, 0, -1, 0, FI_REMAPF
);
5458 goto out_unlock_iolock
;
5461 * even after flushing the inode, there can still be delalloc
5462 * blocks on the inode beyond EOF due to speculative
5463 * preallocation. These are not removed until the release
5464 * function is called or the inode is inactivated. Hence we
5465 * cannot assert here that ip->i_delayed_blks == 0.
5469 lock
= xfs_ilock_map_shared(ip
);
5472 * Don't let nex be bigger than the number of extents
5473 * we can have assuming alternating holes and real extents.
5475 if (nex
> XFS_IFORK_NEXTENTS(ip
, whichfork
) * 2 + 1)
5476 nex
= XFS_IFORK_NEXTENTS(ip
, whichfork
) * 2 + 1;
5478 bmapi_flags
= xfs_bmapi_aflag(whichfork
);
5479 if (!(iflags
& BMV_IF_PREALLOC
))
5480 bmapi_flags
|= XFS_BMAPI_IGSTATE
;
5483 * Allocate enough space to handle "subnex" maps at a time.
5487 map
= kmem_alloc(subnex
* sizeof(*map
), KM_MAYFAIL
| KM_NOFS
);
5489 goto out_unlock_ilock
;
5491 bmv
->bmv_entries
= 0;
5493 if (XFS_IFORK_NEXTENTS(ip
, whichfork
) == 0 &&
5494 (whichfork
== XFS_ATTR_FORK
|| !(iflags
& BMV_IF_DELALLOC
))) {
5502 nmap
= (nexleft
> subnex
) ? subnex
: nexleft
;
5503 error
= xfs_bmapi(NULL
, ip
, XFS_BB_TO_FSBT(mp
, bmv
->bmv_offset
),
5504 XFS_BB_TO_FSB(mp
, bmv
->bmv_length
),
5505 bmapi_flags
, NULL
, 0, map
, &nmap
,
5509 ASSERT(nmap
<= subnex
);
5511 for (i
= 0; i
< nmap
&& nexleft
&& bmv
->bmv_length
; i
++) {
5512 out
[cur_ext
].bmv_oflags
= 0;
5513 if (map
[i
].br_state
== XFS_EXT_UNWRITTEN
)
5514 out
[cur_ext
].bmv_oflags
|= BMV_OF_PREALLOC
;
5515 else if (map
[i
].br_startblock
== DELAYSTARTBLOCK
)
5516 out
[cur_ext
].bmv_oflags
|= BMV_OF_DELALLOC
;
5517 out
[cur_ext
].bmv_offset
=
5518 XFS_FSB_TO_BB(mp
, map
[i
].br_startoff
);
5519 out
[cur_ext
].bmv_length
=
5520 XFS_FSB_TO_BB(mp
, map
[i
].br_blockcount
);
5521 out
[cur_ext
].bmv_unused1
= 0;
5522 out
[cur_ext
].bmv_unused2
= 0;
5523 ASSERT(((iflags
& BMV_IF_DELALLOC
) != 0) ||
5524 (map
[i
].br_startblock
!= DELAYSTARTBLOCK
));
5525 if (map
[i
].br_startblock
== HOLESTARTBLOCK
&&
5526 whichfork
== XFS_ATTR_FORK
) {
5527 /* came to the end of attribute fork */
5528 out
[cur_ext
].bmv_oflags
|= BMV_OF_LAST
;
5532 if (!xfs_getbmapx_fix_eof_hole(ip
, &out
[cur_ext
],
5534 map
[i
].br_startblock
))
5538 out
[cur_ext
].bmv_offset
+
5539 out
[cur_ext
].bmv_length
;
5541 max_t(__int64_t
, 0, bmvend
- bmv
->bmv_offset
);
5544 * In case we don't want to return the hole,
5545 * don't increase cur_ext so that we can reuse
5546 * it in the next loop.
5548 if ((iflags
& BMV_IF_NO_HOLES
) &&
5549 map
[i
].br_startblock
== HOLESTARTBLOCK
) {
5550 memset(&out
[cur_ext
], 0, sizeof(out
[cur_ext
]));
5558 } while (nmap
&& nexleft
&& bmv
->bmv_length
);
5563 xfs_iunlock_map_shared(ip
, lock
);
5565 xfs_iunlock(ip
, XFS_IOLOCK_SHARED
);
5567 for (i
= 0; i
< cur_ext
; i
++) {
5568 int full
= 0; /* user array is full */
5570 /* format results & advance arg */
5571 error
= formatter(&arg
, &out
[i
], &full
);
5581 * Check the last inode extent to determine whether this allocation will result
5582 * in blocks being allocated at the end of the file. When we allocate new data
5583 * blocks at the end of the file which do not start at the previous data block,
5584 * we will try to align the new blocks at stripe unit boundaries.
5586 STATIC
int /* error */
5588 xfs_inode_t
*ip
, /* incore inode pointer */
5589 xfs_fileoff_t off
, /* file offset in fsblocks */
5590 int whichfork
, /* data or attribute fork */
5591 char *aeof
) /* return value */
5593 int error
; /* error return value */
5594 xfs_ifork_t
*ifp
; /* inode fork pointer */
5595 xfs_bmbt_rec_host_t
*lastrec
; /* extent record pointer */
5596 xfs_extnum_t nextents
; /* number of file extents */
5597 xfs_bmbt_irec_t s
; /* expanded extent record */
5599 ASSERT(whichfork
== XFS_DATA_FORK
);
5600 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
5601 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
5602 (error
= xfs_iread_extents(NULL
, ip
, whichfork
)))
5604 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
5605 if (nextents
== 0) {
5610 * Go to the last extent
5612 lastrec
= xfs_iext_get_ext(ifp
, nextents
- 1);
5613 xfs_bmbt_get_all(lastrec
, &s
);
5615 * Check we are allocating in the last extent (for delayed allocations)
5616 * or past the last extent for non-delayed allocations.
5618 *aeof
= (off
>= s
.br_startoff
&&
5619 off
< s
.br_startoff
+ s
.br_blockcount
&&
5620 isnullstartblock(s
.br_startblock
)) ||
5621 off
>= s
.br_startoff
+ s
.br_blockcount
;
5626 * Check if the endoff is outside the last extent. If so the caller will grow
5627 * the allocation to a stripe unit boundary.
5631 xfs_inode_t
*ip
, /* incore inode pointer */
5632 xfs_fileoff_t endoff
, /* file offset in fsblocks */
5633 int whichfork
, /* data or attribute fork */
5634 int *eof
) /* result value */
5636 xfs_fsblock_t blockcount
; /* extent block count */
5637 int error
; /* error return value */
5638 xfs_ifork_t
*ifp
; /* inode fork pointer */
5639 xfs_bmbt_rec_host_t
*lastrec
; /* extent record pointer */
5640 xfs_extnum_t nextents
; /* number of file extents */
5641 xfs_fileoff_t startoff
; /* extent starting file offset */
5643 ASSERT(whichfork
== XFS_DATA_FORK
);
5644 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
5645 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
5646 (error
= xfs_iread_extents(NULL
, ip
, whichfork
)))
5648 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
5649 if (nextents
== 0) {
5654 * Go to the last extent
5656 lastrec
= xfs_iext_get_ext(ifp
, nextents
- 1);
5657 startoff
= xfs_bmbt_get_startoff(lastrec
);
5658 blockcount
= xfs_bmbt_get_blockcount(lastrec
);
5659 *eof
= endoff
>= startoff
+ blockcount
;
5664 STATIC
struct xfs_buf
*
5666 struct xfs_btree_cur
*cur
,
5669 struct xfs_log_item_desc
*lidp
;
5675 for (i
= 0; i
< XFS_BTREE_MAXLEVELS
; i
++) {
5676 if (!cur
->bc_bufs
[i
])
5678 if (XFS_BUF_ADDR(cur
->bc_bufs
[i
]) == bno
)
5679 return cur
->bc_bufs
[i
];
5682 /* Chase down all the log items to see if the bp is there */
5683 list_for_each_entry(lidp
, &cur
->bc_tp
->t_items
, lid_trans
) {
5684 struct xfs_buf_log_item
*bip
;
5685 bip
= (struct xfs_buf_log_item
*)lidp
->lid_item
;
5686 if (bip
->bli_item
.li_type
== XFS_LI_BUF
&&
5687 XFS_BUF_ADDR(bip
->bli_buf
) == bno
)
5688 return bip
->bli_buf
;
5696 struct xfs_btree_block
*block
,
5702 __be64
*pp
, *thispa
; /* pointer to block address */
5703 xfs_bmbt_key_t
*prevp
, *keyp
;
5705 ASSERT(be16_to_cpu(block
->bb_level
) > 0);
5708 for( i
= 1; i
<= xfs_btree_get_numrecs(block
); i
++) {
5709 dmxr
= mp
->m_bmap_dmxr
[0];
5710 keyp
= XFS_BMBT_KEY_ADDR(mp
, block
, i
);
5713 ASSERT(be64_to_cpu(prevp
->br_startoff
) <
5714 be64_to_cpu(keyp
->br_startoff
));
5719 * Compare the block numbers to see if there are dups.
5722 pp
= XFS_BMAP_BROOT_PTR_ADDR(mp
, block
, i
, sz
);
5724 pp
= XFS_BMBT_PTR_ADDR(mp
, block
, i
, dmxr
);
5726 for (j
= i
+1; j
<= be16_to_cpu(block
->bb_numrecs
); j
++) {
5728 thispa
= XFS_BMAP_BROOT_PTR_ADDR(mp
, block
, j
, sz
);
5730 thispa
= XFS_BMBT_PTR_ADDR(mp
, block
, j
, dmxr
);
5731 if (*thispa
== *pp
) {
5732 xfs_warn(mp
, "%s: thispa(%d) == pp(%d) %Ld",
5734 (unsigned long long)be64_to_cpu(*thispa
));
5735 panic("%s: ptrs are equal in node\n",
5743 * Check that the extents for the inode ip are in the right order in all
5748 xfs_bmap_check_leaf_extents(
5749 xfs_btree_cur_t
*cur
, /* btree cursor or null */
5750 xfs_inode_t
*ip
, /* incore inode pointer */
5751 int whichfork
) /* data or attr fork */
5753 struct xfs_btree_block
*block
; /* current btree block */
5754 xfs_fsblock_t bno
; /* block # of "block" */
5755 xfs_buf_t
*bp
; /* buffer for "block" */
5756 int error
; /* error return value */
5757 xfs_extnum_t i
=0, j
; /* index into the extents list */
5758 xfs_ifork_t
*ifp
; /* fork structure */
5759 int level
; /* btree level, for checking */
5760 xfs_mount_t
*mp
; /* file system mount structure */
5761 __be64
*pp
; /* pointer to block address */
5762 xfs_bmbt_rec_t
*ep
; /* pointer to current extent */
5763 xfs_bmbt_rec_t last
= {0, 0}; /* last extent in prev block */
5764 xfs_bmbt_rec_t
*nextp
; /* pointer to next extent */
5767 if (XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
) {
5773 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
5774 block
= ifp
->if_broot
;
5776 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
5778 level
= be16_to_cpu(block
->bb_level
);
5780 xfs_check_block(block
, mp
, 1, ifp
->if_broot_bytes
);
5781 pp
= XFS_BMAP_BROOT_PTR_ADDR(mp
, block
, 1, ifp
->if_broot_bytes
);
5782 bno
= be64_to_cpu(*pp
);
5784 ASSERT(bno
!= NULLDFSBNO
);
5785 ASSERT(XFS_FSB_TO_AGNO(mp
, bno
) < mp
->m_sb
.sb_agcount
);
5786 ASSERT(XFS_FSB_TO_AGBNO(mp
, bno
) < mp
->m_sb
.sb_agblocks
);
5789 * Go down the tree until leaf level is reached, following the first
5790 * pointer (leftmost) at each level.
5792 while (level
-- > 0) {
5793 /* See if buf is in cur first */
5794 bp
= xfs_bmap_get_bp(cur
, XFS_FSB_TO_DADDR(mp
, bno
));
5800 if (!bp
&& (error
= xfs_btree_read_bufl(mp
, NULL
, bno
, 0, &bp
,
5801 XFS_BMAP_BTREE_REF
)))
5803 block
= XFS_BUF_TO_BLOCK(bp
);
5804 XFS_WANT_CORRUPTED_GOTO(
5805 xfs_bmap_sanity_check(mp
, bp
, level
),
5811 * Check this block for basic sanity (increasing keys and
5812 * no duplicate blocks).
5815 xfs_check_block(block
, mp
, 0, 0);
5816 pp
= XFS_BMBT_PTR_ADDR(mp
, block
, 1, mp
->m_bmap_dmxr
[1]);
5817 bno
= be64_to_cpu(*pp
);
5818 XFS_WANT_CORRUPTED_GOTO(XFS_FSB_SANITY_CHECK(mp
, bno
), error0
);
5821 xfs_trans_brelse(NULL
, bp
);
5826 * Here with bp and block set to the leftmost leaf node in the tree.
5831 * Loop over all leaf nodes checking that all extents are in the right order.
5834 xfs_fsblock_t nextbno
;
5835 xfs_extnum_t num_recs
;
5838 num_recs
= xfs_btree_get_numrecs(block
);
5841 * Read-ahead the next leaf block, if any.
5844 nextbno
= be64_to_cpu(block
->bb_u
.l
.bb_rightsib
);
5847 * Check all the extents to make sure they are OK.
5848 * If we had a previous block, the last entry should
5849 * conform with the first entry in this one.
5852 ep
= XFS_BMBT_REC_ADDR(mp
, block
, 1);
5854 ASSERT(xfs_bmbt_disk_get_startoff(&last
) +
5855 xfs_bmbt_disk_get_blockcount(&last
) <=
5856 xfs_bmbt_disk_get_startoff(ep
));
5858 for (j
= 1; j
< num_recs
; j
++) {
5859 nextp
= XFS_BMBT_REC_ADDR(mp
, block
, j
+ 1);
5860 ASSERT(xfs_bmbt_disk_get_startoff(ep
) +
5861 xfs_bmbt_disk_get_blockcount(ep
) <=
5862 xfs_bmbt_disk_get_startoff(nextp
));
5870 xfs_trans_brelse(NULL
, bp
);
5874 * If we've reached the end, stop.
5876 if (bno
== NULLFSBLOCK
)
5879 bp
= xfs_bmap_get_bp(cur
, XFS_FSB_TO_DADDR(mp
, bno
));
5885 if (!bp
&& (error
= xfs_btree_read_bufl(mp
, NULL
, bno
, 0, &bp
,
5886 XFS_BMAP_BTREE_REF
)))
5888 block
= XFS_BUF_TO_BLOCK(bp
);
5892 xfs_trans_brelse(NULL
, bp
);
5897 xfs_warn(mp
, "%s: at error0", __func__
);
5899 xfs_trans_brelse(NULL
, bp
);
5901 xfs_warn(mp
, "%s: BAD after btree leaves for %d extents",
5903 panic("%s: CORRUPTED BTREE OR SOMETHING", __func__
);
5909 * Count fsblocks of the given fork.
5912 xfs_bmap_count_blocks(
5913 xfs_trans_t
*tp
, /* transaction pointer */
5914 xfs_inode_t
*ip
, /* incore inode */
5915 int whichfork
, /* data or attr fork */
5916 int *count
) /* out: count of blocks */
5918 struct xfs_btree_block
*block
; /* current btree block */
5919 xfs_fsblock_t bno
; /* block # of "block" */
5920 xfs_ifork_t
*ifp
; /* fork structure */
5921 int level
; /* btree level, for checking */
5922 xfs_mount_t
*mp
; /* file system mount structure */
5923 __be64
*pp
; /* pointer to block address */
5927 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
5928 if ( XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_EXTENTS
) {
5929 xfs_bmap_count_leaves(ifp
, 0,
5930 ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
),
5936 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
5938 block
= ifp
->if_broot
;
5939 level
= be16_to_cpu(block
->bb_level
);
5941 pp
= XFS_BMAP_BROOT_PTR_ADDR(mp
, block
, 1, ifp
->if_broot_bytes
);
5942 bno
= be64_to_cpu(*pp
);
5943 ASSERT(bno
!= NULLDFSBNO
);
5944 ASSERT(XFS_FSB_TO_AGNO(mp
, bno
) < mp
->m_sb
.sb_agcount
);
5945 ASSERT(XFS_FSB_TO_AGBNO(mp
, bno
) < mp
->m_sb
.sb_agblocks
);
5947 if (unlikely(xfs_bmap_count_tree(mp
, tp
, ifp
, bno
, level
, count
) < 0)) {
5948 XFS_ERROR_REPORT("xfs_bmap_count_blocks(2)", XFS_ERRLEVEL_LOW
,
5950 return XFS_ERROR(EFSCORRUPTED
);
5957 * Recursively walks each level of a btree
5958 * to count total fsblocks is use.
5960 STATIC
int /* error */
5961 xfs_bmap_count_tree(
5962 xfs_mount_t
*mp
, /* file system mount point */
5963 xfs_trans_t
*tp
, /* transaction pointer */
5964 xfs_ifork_t
*ifp
, /* inode fork pointer */
5965 xfs_fsblock_t blockno
, /* file system block number */
5966 int levelin
, /* level in btree */
5967 int *count
) /* Count of blocks */
5970 xfs_buf_t
*bp
, *nbp
;
5971 int level
= levelin
;
5973 xfs_fsblock_t bno
= blockno
;
5974 xfs_fsblock_t nextbno
;
5975 struct xfs_btree_block
*block
, *nextblock
;
5978 if ((error
= xfs_btree_read_bufl(mp
, tp
, bno
, 0, &bp
, XFS_BMAP_BTREE_REF
)))
5981 block
= XFS_BUF_TO_BLOCK(bp
);
5984 /* Not at node above leaves, count this level of nodes */
5985 nextbno
= be64_to_cpu(block
->bb_u
.l
.bb_rightsib
);
5986 while (nextbno
!= NULLFSBLOCK
) {
5987 if ((error
= xfs_btree_read_bufl(mp
, tp
, nextbno
,
5988 0, &nbp
, XFS_BMAP_BTREE_REF
)))
5991 nextblock
= XFS_BUF_TO_BLOCK(nbp
);
5992 nextbno
= be64_to_cpu(nextblock
->bb_u
.l
.bb_rightsib
);
5993 xfs_trans_brelse(tp
, nbp
);
5996 /* Dive to the next level */
5997 pp
= XFS_BMBT_PTR_ADDR(mp
, block
, 1, mp
->m_bmap_dmxr
[1]);
5998 bno
= be64_to_cpu(*pp
);
5999 if (unlikely((error
=
6000 xfs_bmap_count_tree(mp
, tp
, ifp
, bno
, level
, count
)) < 0)) {
6001 xfs_trans_brelse(tp
, bp
);
6002 XFS_ERROR_REPORT("xfs_bmap_count_tree(1)",
6003 XFS_ERRLEVEL_LOW
, mp
);
6004 return XFS_ERROR(EFSCORRUPTED
);
6006 xfs_trans_brelse(tp
, bp
);
6008 /* count all level 1 nodes and their leaves */
6010 nextbno
= be64_to_cpu(block
->bb_u
.l
.bb_rightsib
);
6011 numrecs
= be16_to_cpu(block
->bb_numrecs
);
6012 xfs_bmap_disk_count_leaves(mp
, block
, numrecs
, count
);
6013 xfs_trans_brelse(tp
, bp
);
6014 if (nextbno
== NULLFSBLOCK
)
6017 if ((error
= xfs_btree_read_bufl(mp
, tp
, bno
, 0, &bp
,
6018 XFS_BMAP_BTREE_REF
)))
6021 block
= XFS_BUF_TO_BLOCK(bp
);
6028 * Count leaf blocks given a range of extent records.
6031 xfs_bmap_count_leaves(
6039 for (b
= 0; b
< numrecs
; b
++) {
6040 xfs_bmbt_rec_host_t
*frp
= xfs_iext_get_ext(ifp
, idx
+ b
);
6041 *count
+= xfs_bmbt_get_blockcount(frp
);
6046 * Count leaf blocks given a range of extent records originally
6050 xfs_bmap_disk_count_leaves(
6051 struct xfs_mount
*mp
,
6052 struct xfs_btree_block
*block
,
6057 xfs_bmbt_rec_t
*frp
;
6059 for (b
= 1; b
<= numrecs
; b
++) {
6060 frp
= XFS_BMBT_REC_ADDR(mp
, block
, b
);
6061 *count
+= xfs_bmbt_disk_get_blockcount(frp
);
6066 * dead simple method of punching delalyed allocation blocks from a range in
6067 * the inode. Walks a block at a time so will be slow, but is only executed in
6068 * rare error cases so the overhead is not critical. This will alays punch out
6069 * both the start and end blocks, even if the ranges only partially overlap
6070 * them, so it is up to the caller to ensure that partial blocks are not
6074 xfs_bmap_punch_delalloc_range(
6075 struct xfs_inode
*ip
,
6076 xfs_fileoff_t start_fsb
,
6077 xfs_fileoff_t length
)
6079 xfs_fileoff_t remaining
= length
;
6082 ASSERT(xfs_isilocked(ip
, XFS_ILOCK_EXCL
));
6086 xfs_bmbt_irec_t imap
;
6088 xfs_fsblock_t firstblock
;
6089 xfs_bmap_free_t flist
;
6092 * Map the range first and check that it is a delalloc extent
6093 * before trying to unmap the range. Otherwise we will be
6094 * trying to remove a real extent (which requires a
6095 * transaction) or a hole, which is probably a bad idea...
6097 error
= xfs_bmapi(NULL
, ip
, start_fsb
, 1,
6098 XFS_BMAPI_ENTIRE
, NULL
, 0, &imap
,
6102 /* something screwed, just bail */
6103 if (!XFS_FORCED_SHUTDOWN(ip
->i_mount
)) {
6104 xfs_alert(ip
->i_mount
,
6105 "Failed delalloc mapping lookup ino %lld fsb %lld.",
6106 ip
->i_ino
, start_fsb
);
6114 if (imap
.br_startblock
!= DELAYSTARTBLOCK
) {
6115 /* been converted, ignore */
6118 WARN_ON(imap
.br_blockcount
== 0);
6121 * Note: while we initialise the firstblock/flist pair, they
6122 * should never be used because blocks should never be
6123 * allocated or freed for a delalloc extent and hence we need
6124 * don't cancel or finish them after the xfs_bunmapi() call.
6126 xfs_bmap_init(&flist
, &firstblock
);
6127 error
= xfs_bunmapi(NULL
, ip
, start_fsb
, 1, 0, 1, &firstblock
,
6132 ASSERT(!flist
.xbf_count
&& !flist
.xbf_first
);
6136 } while(remaining
> 0);